]> git.kernelconcepts.de Git - karo-tx-uboot.git/commit
x86: Support QEMU x86 targets
authorBin Meng <bmeng.cn@gmail.com>
Thu, 7 May 2015 13:34:08 +0000 (21:34 +0800)
committerLothar Waßmann <LW@KARO-electronics.de>
Tue, 8 Sep 2015 20:48:14 +0000 (22:48 +0200)
commit4eb45672eec8b0326ca27bf9742effc2efd5723a
treed70448e93e8f324f4b3ae257d28281613bbb60fe
parent5f70d54d01f15c5c9b8e0f0840b53e934e07ab87
x86: Support QEMU x86 targets

This commit introduces the initial U-Boot support for QEMU x86 targets.
U-Boot can boot from coreboot as a payload, or directly without coreboot.

Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Acked-by: Simon Glass <sjg@chromium.org>
Tested-by: Simon Glass <sjg@chromium.org>
Merged in patch 'x86: qemu: Add CMD_NET to qemu-x86_defconfig
   https://patchwork.ozlabs.org/patch/479745/
20 files changed:
arch/x86/Kconfig
arch/x86/cpu/Makefile
arch/x86/cpu/qemu/Kconfig [new file with mode: 0644]
arch/x86/cpu/qemu/Makefile [new file with mode: 0644]
arch/x86/cpu/qemu/car.S [new file with mode: 0644]
arch/x86/cpu/qemu/dram.c [new file with mode: 0644]
arch/x86/cpu/qemu/pci.c [new file with mode: 0644]
arch/x86/cpu/qemu/qemu.c [new file with mode: 0644]
arch/x86/dts/Makefile
arch/x86/dts/qemu-x86.dts [new file with mode: 0644]
arch/x86/include/asm/arch-qemu/gpio.h [new file with mode: 0644]
arch/x86/include/asm/arch-qemu/qemu.h [new file with mode: 0644]
board/emulation/Kconfig [new file with mode: 0644]
board/emulation/qemu-x86/Kconfig [new file with mode: 0644]
board/emulation/qemu-x86/MAINTAINERS [new file with mode: 0644]
board/emulation/qemu-x86/Makefile [new file with mode: 0644]
board/emulation/qemu-x86/qemu-x86.c [new file with mode: 0644]
board/emulation/qemu-x86/start.S [new file with mode: 0644]
configs/qemu-x86_defconfig [new file with mode: 0644]
include/configs/qemu-x86.h [new file with mode: 0644]