diff options
Diffstat (limited to 'sys/dev/uart/uart_dev_snps.c')
| -rw-r--r-- | sys/dev/uart/uart_dev_snps.c | 10 | 
1 files changed, 10 insertions, 0 deletions
diff --git a/sys/dev/uart/uart_dev_snps.c b/sys/dev/uart/uart_dev_snps.c index 6067920e3c2a..0372a220282b 100644 --- a/sys/dev/uart/uart_dev_snps.c +++ b/sys/dev/uart/uart_dev_snps.c @@ -113,7 +113,17 @@ struct uart_class uart_snps_class = {  	.uc_rclk = 0,  }; +struct uart_class uart_snps_jh7110_class = { +	"snps", +	snps_methods, +	sizeof(struct snps_softc), +	.uc_ops = &uart_ns8250_ops, +	.uc_range = 8, +	.uc_rclk = 24000000, +}; +  static struct ofw_compat_data compat_data[] = { +	{ "starfive,jh7110-uart",	(uintptr_t)&uart_snps_jh7110_class },  	{ "snps,dw-apb-uart",		(uintptr_t)&uart_snps_class },  	{ "marvell,armada-38x-uart",	(uintptr_t)&uart_snps_class },  	{ NULL,				(uintptr_t)NULL }  | 
