
This series contains patches to enable additional coreboot features including the frame buffer and device tree control.
Gabe Black (7): x86: Allow compiling out realmode/bios code x86: Add an fdt pointer to the global data structure x86: Add a minimal device tree for alex x86 x86: Add a default implementation for cleanup_before_linux() x86: Add a dummy implementation for timer_get_us x86: Initialize the device tree pointer to NULL in i386. x86: Include types.h explicitly in the i386 version of io.h
Simon Glass (2): x86: Remove coreboot start16 code x86: Define CONFIG_SYS_VSNPRINTF for coreboot
Stefan Reinauer (3): x86: video: Add coreboot framebuffer support x86: Fix typo in pcat_timer.c x86: Don't spam POST80 codes with slow IO functions
arch/x86/cpu/Makefile | 2 +- arch/x86/cpu/cpu.c | 6 ++ arch/x86/cpu/timer.c | 17 ++++ arch/x86/include/asm/global_data.h | 1 + arch/x86/include/asm/io.h | 4 +- arch/x86/include/asm/u-boot-x86.h | 1 + arch/x86/lib/Makefile | 9 ++- arch/x86/lib/pcat_timer.c | 2 +- arch/x86/lib/video.c | 2 + arch/x86/lib/zimage.c | 4 +- board/chromebook-x86/coreboot/Makefile | 1 - board/chromebook-x86/coreboot/coreboot_start16.S | 33 ------- board/chromebook-x86/dts/x86-alex.dts | 30 +++++++ drivers/video/Makefile | 1 + drivers/video/coreboot_fb.c | 102 ++++++++++++++++++++++ include/configs/coreboot.h | 1 + 16 files changed, 174 insertions(+), 42 deletions(-) create mode 100644 arch/x86/cpu/timer.c delete mode 100644 board/chromebook-x86/coreboot/coreboot_start16.S create mode 100644 board/chromebook-x86/dts/x86-alex.dts create mode 100644 drivers/video/coreboot_fb.c