[RFC PATCH 0/7] provide ELF/KEXEC support for MIPS ath79 and malta
Oleksij Rempel
linux at rempel-privat.de
Sun Apr 29 06:09:00 PDT 2018
This patch set is a squashed and rebased patch set of work done by:
Antony Pavlov and Yegor Yefremov.
This code suppose provide kernel start support for some MIPS machines.
For example ath79 (Atheros) and malta should be able to work with it.
So far only kernel and cmdline passing is supported. ARM and other arches would
probably work with some more or less work.
Antony Pavlov (5):
resource: add create_resource() helper function
filetype: add ELF type
bootm: add kexec ELF support
MIPS: add kexec ELF loading support
MIPS: malta: enable kexec
Oleksij Rempel (2):
MIPS: ath79: add kexec support
MIPS: configs: add KEXEC=y to atheros devices
arch/mips/Kconfig | 2 +
arch/mips/configs/8devices-lima_defconfig | 1 +
arch/mips/configs/black-swift_defconfig | 1 +
arch/mips/configs/dptechnics-dpt-module_defconfig | 1 +
arch/mips/configs/tplink-mr3020_defconfig | 1 +
arch/mips/configs/tplink-wdr4300_defconfig | 1 +
arch/mips/include/asm/elf.h | 8 +-
arch/mips/lib/Makefile | 3 +
arch/mips/lib/kexec-mips.c | 272 +++++++++
arch/mips/lib/machine_kexec.h | 21 +
arch/mips/lib/relocate_kernel.S | 108 ++++
arch/mips/mach-ath79/Makefile | 1 +
arch/mips/mach-ath79/reboot.c | 42 ++
arch/mips/mach-malta/Makefile | 1 +
arch/mips/mach-malta/reboot.c | 106 ++++
commands/Kconfig | 7 +
common/Kconfig | 3 +
common/filetype.c | 5 +
common/resource.c | 15 +
include/bootm.h | 3 +
include/filetype.h | 1 +
include/linux/ioport.h | 2 +
include/linux/reboot.h | 14 +
lib/Makefile | 1 +
lib/kexec/Makefile | 4 +
lib/kexec/kexec-bootm-elf.c | 37 ++
lib/kexec/kexec-elf-exec.c | 79 +++
lib/kexec/kexec-elf.c | 678 ++++++++++++++++++++++
lib/kexec/kexec-elf.h | 66 +++
lib/kexec/kexec.c | 281 +++++++++
lib/kexec/kexec.h | 92 +++
31 files changed, 1856 insertions(+), 1 deletion(-)
create mode 100644 arch/mips/lib/kexec-mips.c
create mode 100644 arch/mips/lib/machine_kexec.h
create mode 100644 arch/mips/lib/relocate_kernel.S
create mode 100644 arch/mips/mach-ath79/reboot.c
create mode 100644 arch/mips/mach-malta/reboot.c
create mode 100644 include/linux/reboot.h
create mode 100644 lib/kexec/Makefile
create mode 100644 lib/kexec/kexec-bootm-elf.c
create mode 100644 lib/kexec/kexec-elf-exec.c
create mode 100644 lib/kexec/kexec-elf.c
create mode 100644 lib/kexec/kexec-elf.h
create mode 100644 lib/kexec/kexec.c
create mode 100644 lib/kexec/kexec.h
--
2.14.1
More information about the barebox
mailing list