diff options
author | ian <ian@FreeBSD.org> | 2014-05-14 20:11:20 +0000 |
---|---|---|
committer | ian <ian@FreeBSD.org> | 2014-05-14 20:11:20 +0000 |
commit | f6194d9105a20998792570a5c3733a06ebe6f906 (patch) | |
tree | 5b6fd5c8a0ce1d17498d3870c53104c8d7f0c61f /sys/dev/uart | |
parent | 057c7452877929463827f58db062e6c8a7e70e1e (diff) | |
download | FreeBSD-src-f6194d9105a20998792570a5c3733a06ebe6f906.zip FreeBSD-src-f6194d9105a20998792570a5c3733a06ebe6f906.tar.gz |
MFC r256839, r256948, r256950, r257299, r257414, r258057, r259090
Add configuration for the Freescale i.MX53 Quick Start Board.
Add the Raspberry Pi BSC (I2C compliant) controller driver.
Add Radxa Rock board (by radxa.com) support.
Digi-CCWMX53: enable ffec and uart, USB.
Add support for Freescale Vybrid Family VF600
Move and rename dwc otg driver to more generic one as it appears to work
for rk3188 SoC based board too.
Diffstat (limited to 'sys/dev/uart')
-rw-r--r-- | sys/dev/uart/uart.h | 1 | ||||
-rw-r--r-- | sys/dev/uart/uart_bus_fdt.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/sys/dev/uart/uart.h b/sys/dev/uart/uart.h index 095d368..4874488 100644 --- a/sys/dev/uart/uart.h +++ b/sys/dev/uart/uart.h @@ -75,6 +75,7 @@ extern struct uart_class uart_lpc_class __attribute__((weak)); extern struct uart_class uart_pl011_class __attribute__((weak)); extern struct uart_class uart_cdnc_class __attribute__((weak)); extern struct uart_class uart_ti8250_class __attribute__((weak)); +extern struct uart_class uart_vybrid_class __attribute__((weak)); #ifdef FDT struct ofw_compat_data; diff --git a/sys/dev/uart/uart_bus_fdt.c b/sys/dev/uart/uart_bus_fdt.c index 5a0ebd7..a98c50a 100644 --- a/sys/dev/uart/uart_bus_fdt.c +++ b/sys/dev/uart/uart_bus_fdt.c @@ -80,6 +80,7 @@ static struct ofw_compat_data compat_data[] = { {"fsl,imx27-uart", (uintptr_t)&uart_imx_class}, {"fsl,imx25-uart", (uintptr_t)&uart_imx_class}, {"fsl,imx21-uart", (uintptr_t)&uart_imx_class}, + {"fsl,mvf600-uart", (uintptr_t)&uart_vybrid_class}, {"lpc,uart", (uintptr_t)&uart_lpc_class}, {"ti,ns16550", (uintptr_t)&uart_ti8250_class}, {"ns16550", (uintptr_t)&uart_ns8250_class}, |