[PATCH v1 00/17] Add boot LoongArch elf kernel with FDT

Song Gao posted 17 patches 11 months, 3 weeks ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20231208090042.2672425-1-gaosong@loongson.cn
Maintainers: Song Gao <gaosong@loongson.cn>
There is a newer version of this series
hw/loongarch/boot.c                | 354 +++++++++++++++++++++++++++++
hw/loongarch/meson.build           |   1 +
hw/loongarch/virt.c                | 350 +++++++++++++++-------------
include/hw/intc/loongarch_extioi.h |   1 +
include/hw/loongarch/boot.h        | 111 +++++++++
include/hw/loongarch/virt.h        |  14 ++
include/hw/pci-host/ls7a.h         |   2 +
target/loongarch/cpu.h             |   2 +
8 files changed, 681 insertions(+), 154 deletions(-)
create mode 100644 hw/loongarch/boot.c
create mode 100644 include/hw/loongarch/boot.h
[PATCH v1 00/17] Add boot LoongArch elf kernel with FDT
Posted by Song Gao 11 months, 3 weeks ago
Hi, All

We already support boot efi kernel with bios, but not support boot elf kernel. 
This series adds boot elf kernel with FDT.

'LoongArch supports ACPI and FDT. The information that needs to be passed
 to the kernel includes the memmap, the initrd, the command line, optionally
 the ACPI/FDT tables, and so on'  see [1].

Patch 2-8 : Create efi system table, and three efi configuration table 
            boot_memmap, initd, FDT. 
Patch 9-17 : Fixes FDT problems.

Test:
  We can get vmlinux and ramdisk from [2]. or build them with
cross-tools [3], but build kernel need config 'CONFIG_PCI_HOST_GENERIC=y'.


Please review! 

Thanks.
Song Gao

[1]: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/Documentation/arch/loongarch/booting.rst?h=v6.7-rc4

[2]: https://github.com/gaosong-loongson/loongarch-binary

[3]: https://github.com/loongson/build-tools/releases/download/2023.08.08/CLFS-loongarch64-8.1-x86_64-cross-tools-gcc-glibc.tar.xz

Song Gao (17):
  hw/loongarch: Move boot fucntions to boot.c
  hw/loongarch: Add load initrd
  hw/loongarch: Add init_cmdline
  hw/loongarch: Add slave cpu boot_code
  hw/loongarch: Init efi_system_table
  hw/loongarch: Init efi_boot_memmap table
  hw/loongarch: Init efi_initrd table
  hw/loongarch: Init efi_fdt table
  hw/loongarch: Fix fdt memory node wrong 'reg'
  hw/loongarch: fdt adds cpu interrupt controller node
  hw/loongarch: fdt adds Extend I/O Interrupt Controller
  hw/loongarch: fdt adds pch_pic Controller
  hw/loongarch: fdt adds pch_msi Controller
  hw/loongarch: fdt adds pcie irq_map node
  hw/loongarch: fdt remove unused irqchip node
  hw/loongarch: Add cells missing from uart node
  hw/loongarch: Add cells missing from rtc node

 hw/loongarch/boot.c                | 354 +++++++++++++++++++++++++++++
 hw/loongarch/meson.build           |   1 +
 hw/loongarch/virt.c                | 350 +++++++++++++++-------------
 include/hw/intc/loongarch_extioi.h |   1 +
 include/hw/loongarch/boot.h        | 111 +++++++++
 include/hw/loongarch/virt.h        |  14 ++
 include/hw/pci-host/ls7a.h         |   2 +
 target/loongarch/cpu.h             |   2 +
 8 files changed, 681 insertions(+), 154 deletions(-)
 create mode 100644 hw/loongarch/boot.c
 create mode 100644 include/hw/loongarch/boot.h

-- 
2.25.1