[U-Boot] [PATCH] serial: omap: Add support for AM654 uart controller

AM654 uses a UART controller that is compatible (partially) with existing OMAP UART, Introduce a compatible for adding support for this controller.
Signed-off-by: Lokesh Vutla lokeshvutla@ti.com --- - Similar kernel patch: https://lore.kernel.org/patchwork/patch/949227/
drivers/serial/serial_omap.c | 1 + 1 file changed, 1 insertion(+)
diff --git a/drivers/serial/serial_omap.c b/drivers/serial/serial_omap.c index d8a047bb71..af3c755f96 100644 --- a/drivers/serial/serial_omap.c +++ b/drivers/serial/serial_omap.c @@ -104,6 +104,7 @@ static const struct udevice_id omap_serial_ids[] = { { .compatible = "ti,am3352-uart", }, { .compatible = "ti,am4372-uart", }, { .compatible = "ti,dra742-uart", }, + { .compatible = "ti,am654-uart", }, {} }; #endif /* OF_CONTROL && !OF_PLATDATA */

On Fri, Sep 14, 2018 at 07:43:35PM +0530, Lokesh Vutla wrote:
AM654 uses a UART controller that is compatible (partially) with existing OMAP UART, Introduce a compatible for adding support for this controller.
Signed-off-by: Lokesh Vutla lokeshvutla@ti.com
Applied to u-boot/master, thanks!
participants (2)
-
Lokesh Vutla
-
Tom Rini