diff options
author | Simon Glass <sjg@chromium.org> | 2014-10-10 07:49:20 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2014-10-23 19:45:45 -0600 |
commit | e98a03ca68ca0edd08c260126aacc8c0f550804a (patch) | |
tree | fdfa45d062d384369bc0271b4671028043a5faa9 /arch | |
parent | d1259c9f5fec24294344ebe5a66ec52376b3d46b (diff) | |
download | u-boot-imx-e98a03ca68ca0edd08c260126aacc8c0f550804a.zip u-boot-imx-e98a03ca68ca0edd08c260126aacc8c0f550804a.tar.gz u-boot-imx-e98a03ca68ca0edd08c260126aacc8c0f550804a.tar.bz2 |
dm: x86: Convert coreboot serial to use driver model
This makes use of the existing device tree node to use driver model
for the serial console.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/x86/dts/coreboot.dtsi | 4 | ||||
-rw-r--r-- | arch/x86/include/asm/ibmpc.h | 10 |
2 files changed, 2 insertions, 12 deletions
diff --git a/arch/x86/dts/coreboot.dtsi b/arch/x86/dts/coreboot.dtsi index c989152..c8dc4ce 100644 --- a/arch/x86/dts/coreboot.dtsi +++ b/arch/x86/dts/coreboot.dtsi @@ -1,8 +1,8 @@ /include/ "skeleton.dtsi" / { - aliases { - console = "/serial"; + chosen { + stdout-path = "/serial"; }; serial { diff --git a/arch/x86/include/asm/ibmpc.h b/arch/x86/include/asm/ibmpc.h index 0f9665f..e6d183b 100644 --- a/arch/x86/include/asm/ibmpc.h +++ b/arch/x86/include/asm/ibmpc.h @@ -18,14 +18,4 @@ #define SYSCTLA 0x92 #define SLAVE_PIC 0xa0 -#if 1 -#define UART0_BASE 0x3f8 -#define UART1_BASE 0x2f8 -#else -/* FixMe: uarts swapped */ -#define UART0_BASE 0x2f8 -#define UART1_BASE 0x3f8 -#endif - - #endif |