diff options
author | ian <ian@FreeBSD.org> | 2015-05-23 20:54:25 +0000 |
---|---|---|
committer | ian <ian@FreeBSD.org> | 2015-05-23 20:54:25 +0000 |
commit | f3f411e10b20906a8640a6316ddcc3c1f24725e3 (patch) | |
tree | b8226cf0be8fe4cd6baeb7595bf89042db51e870 /sys/dev/uart/uart_dev_pl011.c | |
parent | ce1bf49e72ea9be2396679cd9569beeec685e9c6 (diff) | |
download | FreeBSD-src-f3f411e10b20906a8640a6316ddcc3c1f24725e3.zip FreeBSD-src-f3f411e10b20906a8640a6316ddcc3c1f24725e3.tar.gz |
MFC r279723, r279724:
Define new linker set, UART_FDT_CLASS_AND_DEVICE, for registering full
(class and device) FDT UART. Define second one, UART_FDT_CLASS, for UART
class only.
Move the uart_class definitions and fdt compat data into the individual
uart implementations, and export them using the new linker-set mechanism.
Diffstat (limited to 'sys/dev/uart/uart_dev_pl011.c')
-rw-r--r-- | sys/dev/uart/uart_dev_pl011.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/sys/dev/uart/uart_dev_pl011.c b/sys/dev/uart/uart_dev_pl011.c index 1d17286..9084c35 100644 --- a/sys/dev/uart/uart_dev_pl011.c +++ b/sys/dev/uart/uart_dev_pl011.c @@ -35,6 +35,7 @@ __FBSDID("$FreeBSD$"); #include <dev/uart/uart.h> #include <dev/uart/uart_cpu.h> +#include <dev/uart/uart_cpu_fdt.h> #include <dev/uart/uart_bus.h> #include "uart_if.h" @@ -266,7 +267,7 @@ static kobj_method_t uart_pl011_methods[] = { { 0, 0 } }; -struct uart_class uart_pl011_class = { +static struct uart_class uart_pl011_class = { "uart_pl011", uart_pl011_methods, sizeof(struct uart_pl011_softc), @@ -275,6 +276,12 @@ struct uart_class uart_pl011_class = { .uc_rclk = 0 }; +static struct ofw_compat_data compat_data[] = { + {"arm,pl011", (uintptr_t)&uart_pl011_class}, + {NULL, (uintptr_t)NULL}, +}; +UART_FDT_CLASS_AND_DEVICE(compat_data); + static int uart_pl011_bus_attach(struct uart_softc *sc) { |