
As suggested by Graeme Russ this series attempts to remove old unused boards and code from x86 U-Boot. This includes:
- Dumping the eNET boards - Dumping the SC520 CPU - Dumping 16-bit 'Real Mode' support (other than what is needed for the reset vector and protected mode switch)
No restructuring is attempted by this series.
Simon Glass (4): x86: Remove eNET boards x86: Remove sc520 cpu x86: Remove all real mode code x86: Remove 16-bit reset code
Makefile | 4 - README | 9 - arch/x86/config.mk | 1 - arch/x86/cpu/Makefile | 1 - arch/x86/cpu/resetvec.S | 38 -- arch/x86/cpu/sc520/Makefile | 58 --- arch/x86/cpu/sc520/asm-offsets.c | 45 --- arch/x86/cpu/sc520/sc520.c | 66 ---- arch/x86/cpu/sc520/sc520_car.S | 94 ----- arch/x86/cpu/sc520/sc520_pci.c | 142 -------- arch/x86/cpu/sc520/sc520_reset.c | 40 --- arch/x86/cpu/sc520/sc520_sdram.c | 479 ------------------------ arch/x86/cpu/sc520/sc520_ssi.c | 93 ----- arch/x86/cpu/sc520/sc520_timer.c | 89 ----- arch/x86/cpu/start16.S | 146 -------- arch/x86/cpu/u-boot.lds | 25 -- arch/x86/include/asm/arch-sc520/pci.h | 79 ---- arch/x86/include/asm/arch-sc520/sc520.h | 372 ------------------- arch/x86/include/asm/arch-sc520/ssi.h | 34 -- arch/x86/include/asm/realmode.h | 36 -- arch/x86/lib/Makefile | 10 - arch/x86/lib/bios.S | 569 ----------------------------- arch/x86/lib/bios.h | 3 - arch/x86/lib/bios_pci.S | 447 ----------------------- arch/x86/lib/bios_setup.c | 179 --------- arch/x86/lib/realmode.c | 93 ----- arch/x86/lib/realmode_switch.S | 232 ------------ arch/x86/lib/video.c | 6 - arch/x86/lib/video_bios.c | 196 ---------- arch/x86/lib/zimage.c | 23 -- board/eNET/Makefile | 52 --- board/eNET/eNET.c | 284 --------------- board/eNET/eNET_pci.c | 128 ------- board/eNET/eNET_start.S | 30 -- board/eNET/eNET_start16.S | 87 ----- board/eNET/hardware.h | 36 -- boards.cfg | 2 - include/configs/coreboot.h | 1 - include/configs/eNET.h | 619 -------------------------------- 39 files changed, 4848 deletions(-) delete mode 100644 arch/x86/cpu/resetvec.S delete mode 100644 arch/x86/cpu/sc520/Makefile delete mode 100644 arch/x86/cpu/sc520/asm-offsets.c delete mode 100644 arch/x86/cpu/sc520/sc520.c delete mode 100644 arch/x86/cpu/sc520/sc520_car.S delete mode 100644 arch/x86/cpu/sc520/sc520_pci.c delete mode 100644 arch/x86/cpu/sc520/sc520_reset.c delete mode 100644 arch/x86/cpu/sc520/sc520_sdram.c delete mode 100644 arch/x86/cpu/sc520/sc520_ssi.c delete mode 100644 arch/x86/cpu/sc520/sc520_timer.c delete mode 100644 arch/x86/cpu/start16.S delete mode 100644 arch/x86/include/asm/arch-sc520/pci.h delete mode 100644 arch/x86/include/asm/arch-sc520/sc520.h delete mode 100644 arch/x86/include/asm/arch-sc520/ssi.h delete mode 100644 arch/x86/include/asm/realmode.h delete mode 100644 arch/x86/lib/bios.S delete mode 100644 arch/x86/lib/bios_pci.S delete mode 100644 arch/x86/lib/bios_setup.c delete mode 100644 arch/x86/lib/realmode.c delete mode 100644 arch/x86/lib/realmode_switch.S delete mode 100644 arch/x86/lib/video_bios.c delete mode 100644 board/eNET/Makefile delete mode 100644 board/eNET/eNET.c delete mode 100644 board/eNET/eNET_pci.c delete mode 100644 board/eNET/eNET_start.S delete mode 100644 board/eNET/eNET_start16.S delete mode 100644 board/eNET/hardware.h delete mode 100644 include/configs/eNET.h