[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 02/17] hw/loongarch: Add load initrd
From: |
Song Gao |
Subject: |
[PULL 02/17] hw/loongarch: Add load initrd |
Date: |
Thu, 7 Mar 2024 22:51:52 +0800 |
we load initrd ramdisk after kernel_high address
Signed-off-by: Song Gao <gaosong@loongson.cn>
Message-Id: <20240301093839.663947-3-gaosong@loongson.cn>
---
hw/loongarch/boot.c | 29 ++++++++++++++++++++++++++++-
1 file changed, 28 insertions(+), 1 deletion(-)
diff --git a/hw/loongarch/boot.c b/hw/loongarch/boot.c
index 0f2bc15fdf..3075c276d4 100644
--- a/hw/loongarch/boot.c
+++ b/hw/loongarch/boot.c
@@ -21,7 +21,8 @@ static uint64_t cpu_loongarch_virt_to_phys(void *opaque,
uint64_t addr)
static int64_t load_kernel_info(struct loongarch_boot_info *info)
{
- uint64_t kernel_entry, kernel_low, kernel_high;
+ uint64_t kernel_entry, kernel_low, kernel_high, initrd_size;
+ ram_addr_t initrd_offset;
ssize_t kernel_size;
kernel_size = load_elf(info->kernel_filename, NULL,
@@ -36,6 +37,32 @@ static int64_t load_kernel_info(struct loongarch_boot_info
*info)
load_elf_strerror(kernel_size));
exit(1);
}
+
+ if (info->initrd_filename) {
+ initrd_size = get_image_size(info->initrd_filename);
+ if (initrd_size > 0) {
+ initrd_offset = ROUND_UP(kernel_high + 4 * kernel_size, 64 * KiB);
+
+ if (initrd_offset + initrd_size > info->ram_size) {
+ error_report("memory too small for initial ram disk '%s'",
+ info->initrd_filename);
+ exit(1);
+ }
+
+ initrd_size = load_image_targphys(info->initrd_filename,
initrd_offset,
+ info->ram_size - initrd_offset);
+ }
+
+ if (initrd_size == (target_ulong)-1) {
+ error_report("could not load initial ram disk '%s'",
+ info->initrd_filename);
+ exit(1);
+ }
+ } else {
+ error_report("Need initrd!");
+ exit(1);
+ }
+
return kernel_entry;
}
--
2.34.1
- [PULL 00/17] loongarch-to-apply queue, Song Gao, 2024/03/07
- [PULL 05/17] hw/loongarch: Init efi_system_table, Song Gao, 2024/03/07
- [PULL 02/17] hw/loongarch: Add load initrd,
Song Gao <=
- [PULL 03/17] hw/loongarch: Add slave cpu boot_code, Song Gao, 2024/03/07
- [PULL 04/17] hw/loongarch: Add init_cmdline, Song Gao, 2024/03/07
- [PULL 01/17] hw/loongarch: Move boot fucntions to boot.c, Song Gao, 2024/03/07
- [PULL 09/17] hw/loongarch: Fix fdt memory node wrong 'reg', Song Gao, 2024/03/07
- [PULL 06/17] hw/loongarch: Init efi_boot_memmap table, Song Gao, 2024/03/07
- [PULL 10/17] hw/loongarch: fdt adds cpu interrupt controller node, Song Gao, 2024/03/07
- [PULL 07/17] hw/loongarch: Init efi_initrd table, Song Gao, 2024/03/07
- [PULL 08/17] hw/loongarch: Init efi_fdt table, Song Gao, 2024/03/07
- [PULL 11/17] hw/loongarch: fdt adds Extend I/O Interrupt Controller, Song Gao, 2024/03/07
- [PULL 15/17] hw/loongarch: fdt remove unused irqchip node, Song Gao, 2024/03/07