|
@@ -120,15 +120,19 @@ int serial_console_init(void)
|
|
|
if (dt_is_compatible(devp, "ns16550") ||
|
|
|
dt_is_compatible(devp, "pnpPNP,501"))
|
|
|
rc = ns16550_console_init(devp, &serial_cd);
|
|
|
+#ifdef CONFIG_EMBEDDED6xx
|
|
|
else if (dt_is_compatible(devp, "marvell,mv64360-mpsc"))
|
|
|
rc = mpsc_console_init(devp, &serial_cd);
|
|
|
+#endif
|
|
|
else if (dt_is_compatible(devp, "fsl,cpm1-scc-uart") ||
|
|
|
dt_is_compatible(devp, "fsl,cpm1-smc-uart") ||
|
|
|
dt_is_compatible(devp, "fsl,cpm2-scc-uart") ||
|
|
|
dt_is_compatible(devp, "fsl,cpm2-smc-uart"))
|
|
|
rc = cpm_console_init(devp, &serial_cd);
|
|
|
+#ifdef CONFIG_PPC_MPC52XX
|
|
|
else if (dt_is_compatible(devp, "fsl,mpc5200-psc-uart"))
|
|
|
rc = mpc5200_psc_console_init(devp, &serial_cd);
|
|
|
+#endif
|
|
|
else if (dt_is_compatible(devp, "xlnx,opb-uartlite-1.00.b") ||
|
|
|
dt_is_compatible(devp, "xlnx,xps-uartlite-1.00.a"))
|
|
|
rc = uartlite_console_init(devp, &serial_cd);
|