Switch to using the standard uart console driver instead of the special

driver for early boot debugging.
This commit is contained in:
Ian Lepore 2013-10-20 21:03:15 +00:00
parent 90a306d8af
commit 62e8bfb82a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=256804
2 changed files with 9 additions and 10 deletions

View File

@ -12,8 +12,11 @@ arm/freescale/imx/imx53_machdep.c standard
arm/freescale/imx/common.c standard
arm/freescale/imx/bus_space.c standard
# Dummy serial console
arm/freescale/imx/console.c standard
# Special serial console for debuging early boot code
#arm/freescale/imx/console.c standard
# UART driver (includes serial console support)
dev/uart/uart_dev_imx.c optional uart
# TrustZone Interrupt Controller
arm/freescale/imx/tzic.c standard
@ -33,9 +36,6 @@ arm/freescale/imx/imx51_ccm.c standard
# i.MX5xx PATA controller
dev/ata/chipsets/ata-fsl.c optional imxata
# UART driver
#dev/uart/uart_dev_imx.c optional uart
# USB join controller (1 OTG, 3 EHCI)
dev/usb/controller/ehci_imx.c optional ehci

View File

@ -70,9 +70,9 @@
};
/* UART1, console */
UART1: serial@53fbc000 {
console: serial@53fbc000 {
status = "okay";
clock-frequency = <3000000>; /* XXX */
clock-frequency = <0>; /* won't load w/o this */
};
clock@53fd4000 {
@ -111,13 +111,12 @@
};
aliases {
UART1 = &UART1;
SSI2 = &SSI2;
};
chosen {
bootargs = "-v";
stdin = "UART1";
stdout = "UART1";
stdin = &console;
stdout = &console;
};
};