
This patch set adds initial support for the MIPS Malta CoreLV board emulated under Qemu.
The patches are against the master branch of the MIPS custodian tree.
Gabor Juhos (10): MIPS: qemu-malta: add support for emulated MIPS Malta board MIPS: qemu-malta: add reset support MIPS: qemu-malta: enable flash support MIPS: import gt64120.h header from Linux 3.8-rc3 MIPS: qemu-malta: setup GT64120 registers as done by YAMON MIPS: qemu-malta: add PCI support net: pcnet: use pci_virt_to_mem to obtain buffer addresses MIPS: qemu-malta: bring up ethernet MIPS: bootm.c: add YAMON style Linux preparation/jump code MIPS: start.S: emulate REVISION register for qemu-malta
arch/mips/cpu/mips32/start.S | 6 + arch/mips/include/asm/gt64120.h | 550 ++++++++++++++++++++++++++++++++++++++ arch/mips/include/asm/malta.h | 23 ++ arch/mips/lib/bootm.c | 60 ++++- board/qemu-malta/Makefile | 48 ++++ board/qemu-malta/lowlevel_init.S | 70 +++++ board/qemu-malta/pci.c | 173 ++++++++++++ board/qemu-malta/qemu-malta.c | 37 +++ board/qemu-malta/u-boot.lds | 78 ++++++ boards.cfg | 2 + drivers/net/pcnet.c | 2 +- include/configs/qemu-malta.h | 119 +++++++++ 12 files changed, 1165 insertions(+), 3 deletions(-) create mode 100644 arch/mips/include/asm/gt64120.h create mode 100644 arch/mips/include/asm/malta.h create mode 100644 board/qemu-malta/Makefile create mode 100644 board/qemu-malta/lowlevel_init.S create mode 100644 board/qemu-malta/pci.c create mode 100644 board/qemu-malta/qemu-malta.c create mode 100644 board/qemu-malta/u-boot.lds create mode 100644 include/configs/qemu-malta.h
-- 1.7.10