Skip to content
Snippets Groups Projects
Commit 6213a68f authored by Matt Porter's avatar Matt Porter Committed by Tom Rini
Browse files

ns16550: enable quirks for ti814x


TI814X requires the same quirks as AM33XX to be enabled.

Signed-off-by: default avatarMatt Porter <mporter@ti.com>
Reviewed-by: default avatarTom Rini <trini@ti.com>
parent 26fa5784
No related branches found
No related tags found
No related merge requests found
...@@ -43,7 +43,7 @@ void NS16550_init(NS16550_t com_port, int baud_divisor) ...@@ -43,7 +43,7 @@ void NS16550_init(NS16550_t com_port, int baud_divisor)
serial_out(CONFIG_SYS_NS16550_IER, &com_port->ier); serial_out(CONFIG_SYS_NS16550_IER, &com_port->ier);
#if (defined(CONFIG_OMAP) && !defined(CONFIG_OMAP3_ZOOM2)) || \ #if (defined(CONFIG_OMAP) && !defined(CONFIG_OMAP3_ZOOM2)) || \
defined(CONFIG_AM33XX) defined(CONFIG_AM33XX) || defined(CONFIG_TI814X)
serial_out(0x7, &com_port->mdr1); /* mode select reset TL16C750*/ serial_out(0x7, &com_port->mdr1); /* mode select reset TL16C750*/
#endif #endif
serial_out(UART_LCR_BKSE | UART_LCRVAL, &com_port->lcr); serial_out(UART_LCR_BKSE | UART_LCRVAL, &com_port->lcr);
...@@ -57,7 +57,8 @@ void NS16550_init(NS16550_t com_port, int baud_divisor) ...@@ -57,7 +57,8 @@ void NS16550_init(NS16550_t com_port, int baud_divisor)
serial_out((baud_divisor >> 8) & 0xff, &com_port->dlm); serial_out((baud_divisor >> 8) & 0xff, &com_port->dlm);
serial_out(UART_LCRVAL, &com_port->lcr); serial_out(UART_LCRVAL, &com_port->lcr);
#if (defined(CONFIG_OMAP) && !defined(CONFIG_OMAP3_ZOOM2)) || \ #if (defined(CONFIG_OMAP) && !defined(CONFIG_OMAP3_ZOOM2)) || \
defined(CONFIG_AM33XX) || defined(CONFIG_SOC_DA8XX) defined(CONFIG_AM33XX) || defined(CONFIG_SOC_DA8XX) || \
defined(CONFIG_TI814X)
#if defined(CONFIG_APTIX) #if defined(CONFIG_APTIX)
/* /13 mode so Aptix 6MHz can hit 115200 */ /* /13 mode so Aptix 6MHz can hit 115200 */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment