From: Tim Harvey Date: Sat, 9 May 2015 01:28:29 +0000 (-0700) Subject: imx: ventana: enable DM_SERIAL X-Git-Tag: KARO-TXSD-2017-03-15~4489 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=d41c8c8ece89132220dc1f60d92c3b8158f1575f;p=karo-tx-uboot.git imx: ventana: enable DM_SERIAL mxc_serial supports DM so lets use it. Signed-off-by: Tim Harvey --- diff --git a/board/gateworks/gw_ventana/gw_ventana.c b/board/gateworks/gw_ventana/gw_ventana.c index 8818be4b72..554cd844b8 100644 --- a/board/gateworks/gw_ventana/gw_ventana.c +++ b/board/gateworks/gw_ventana/gw_ventana.c @@ -22,6 +22,7 @@ #include #include #include +#include #include #include #include @@ -1820,3 +1821,11 @@ int ft_board_setup(void *blob, bd_t *bd) } #endif /* defined(CONFIG_OF_FLAT_TREE) && defined(CONFIG_OF_BOARD_SETUP) */ +static struct mxc_serial_platdata ventana_mxc_serial_plat = { + .reg = (struct mxc_uart *)UART2_BASE, +}; + +U_BOOT_DEVICE(ventana_serial) = { + .name = "serial_mxc", + .platdata = &ventana_mxc_serial_plat, +}; diff --git a/include/configs/gw_ventana.h b/include/configs/gw_ventana.h index c8645cac4a..cefd16fb28 100644 --- a/include/configs/gw_ventana.h +++ b/include/configs/gw_ventana.h @@ -49,6 +49,7 @@ #ifndef CONFIG_SPL_BUILD #define CONFIG_DM #define CONFIG_DM_GPIO +#define CONFIG_DM_SERIAL #define CONFIG_CMD_DM #endif