Add support for memory mapped UARTs to coreboot and add the OXPCIe952 as an
authorStefan Reinauer <reinauer@google.com>
Tue, 26 Apr 2011 23:47:04 +0000 (23:47 +0000)
committerStefan Reinauer <stepan@openbios.org>
Tue, 26 Apr 2011 23:47:04 +0000 (23:47 +0000)
commit4885daadb33bea37ef3970696d3cf0d05e9852a3
tree9b068b5645f5aa60fd310919c0a08ce3dea34b3f
parent3187d0267d4b456eb43bca21a817c78687d6f73b
Add support for memory mapped UARTs to coreboot and add the OXPCIe952 as an
example.

This newer version reflects the recent changes to further simplify the console
code and partly gets rid of some hacks in the previous version.

Signed-off-by: Stefan Reinauer <reinauer@google.com>
Acked-by: Peter Stuge <peter@stuge.se>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6544 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
20 files changed:
src/Kconfig
src/arch/x86/boot/coreboot_table.c
src/arch/x86/lib/romstage_console.c
src/console/Kconfig
src/console/Makefile.inc
src/console/console.c
src/console/uart8250mem_console.c [new file with mode: 0644]
src/cpu/x86/smm/smiutil.c
src/drivers/Kconfig
src/drivers/Makefile.inc
src/drivers/oxford/Kconfig [new file with mode: 0644]
src/drivers/oxford/Makefile.inc [new file with mode: 0644]
src/drivers/oxford/oxpcie/Kconfig [new file with mode: 0644]
src/drivers/oxford/oxpcie/Makefile.inc [new file with mode: 0644]
src/drivers/oxford/oxpcie/oxpcie.c [new file with mode: 0644]
src/drivers/oxford/oxpcie/oxpcie_early.c [new file with mode: 0644]
src/include/boot/coreboot_tables.h
src/include/uart8250.h
src/lib/Makefile.inc
src/lib/uart8250mem.c [new file with mode: 0644]