@@ -47,14 +47,18 @@
#elif defined(CONFIG_SYS_MX27_UART6)
#define UART_PHYS 0x1001c000
#elif defined(CONFIG_SYS_MX35_UART1) || defined(CONFIG_SYS_MX51_UART1) || \
- defined(CONFIG_SYS_MX53_UART1)
+ defined(CONFIG_SYS_MX53_UART1) || defined(CONFIG_MX6Q_UART1)
#define UART_PHYS UART1_BASE_ADDR
#elif defined(CONFIG_SYS_MX35_UART2) || defined(CONFIG_SYS_MX51_UART2) || \
- defined(CONFIG_SYS_MX53_UART2)
+ defined(CONFIG_SYS_MX53_UART2) || defined(CONFIG_MX6Q_UART2)
#define UART_PHYS UART2_BASE_ADDR
#elif defined(CONFIG_SYS_MX35_UART3) || defined(CONFIG_SYS_MX51_UART3) || \
- defined(CONFIG_SYS_MX53_UART3)
+ defined(CONFIG_SYS_MX53_UART3) || defined(CONFIG_MX6Q_UART3)
#define UART_PHYS UART3_BASE_ADDR
+#elif defined(CONFIG_MX6Q_UART4)
+#define UART_PHYS UART4_BASE_ADDR
+#elif defined(CONFIG_MX6Q_UART5)
+#define UART_PHYS UART5_BASE_ADDR
#else
#error "define CONFIG_SYS_MXxx_UARTx to use the MXC UART driver"
#endif
Signed-off-by: Jason Liu <jason.hui@linaro.org> --- drivers/serial/serial_mxc.c | 10 +++++++--- 1 files changed, 7 insertions(+), 3 deletions(-)