| 
									
										
										
										
											2012-03-04 21:03:51 +10:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Microblaze kernel loader | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Copyright (c) 2012 Peter Crosthwaite <peter.crosthwaite@petalogix.com> | 
					
						
							|  |  |  |  * Copyright (c) 2012 PetaLogix | 
					
						
							|  |  |  |  * Copyright (c) 2009 Edgar E. Iglesias. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Permission is hereby granted, free of charge, to any person obtaining a copy | 
					
						
							|  |  |  |  * of this software and associated documentation files (the "Software"), to deal | 
					
						
							|  |  |  |  * in the Software without restriction, including without limitation the rights | 
					
						
							|  |  |  |  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | 
					
						
							|  |  |  |  * copies of the Software, and to permit persons to whom the Software is | 
					
						
							|  |  |  |  * furnished to do so, subject to the following conditions: | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * The above copyright notice and this permission notice shall be included in | 
					
						
							|  |  |  |  * all copies or substantial portions of the Software. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | 
					
						
							|  |  |  |  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | 
					
						
							|  |  |  |  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | 
					
						
							|  |  |  |  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | 
					
						
							|  |  |  |  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | 
					
						
							|  |  |  |  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | 
					
						
							|  |  |  |  * THE SOFTWARE. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-26 18:05:31 +00:00
										 |  |  | #include "qemu/osdep.h"
 | 
					
						
							| 
									
										
										
										
											2016-01-19 21:51:44 +01:00
										 |  |  | #include "qemu-common.h"
 | 
					
						
							|  |  |  | #include "cpu.h"
 | 
					
						
							| 
									
										
										
										
											2012-12-17 18:20:00 +01:00
										 |  |  | #include "qemu/option.h"
 | 
					
						
							|  |  |  | #include "qemu/config-file.h"
 | 
					
						
							| 
									
										
										
										
											2013-05-05 11:06:37 +02:00
										 |  |  | #include "qemu/error-report.h"
 | 
					
						
							| 
									
										
										
										
											2012-12-17 18:20:04 +01:00
										 |  |  | #include "sysemu/device_tree.h"
 | 
					
						
							| 
									
										
										
										
											2019-08-12 07:23:38 +02:00
										 |  |  | #include "sysemu/reset.h"
 | 
					
						
							| 
									
										
										
										
											2013-07-04 15:09:21 +02:00
										 |  |  | #include "sysemu/sysemu.h"
 | 
					
						
							| 
									
										
										
										
											2013-02-04 15:40:22 +01:00
										 |  |  | #include "hw/loader.h"
 | 
					
						
							| 
									
										
										
										
											2012-03-04 21:03:51 +10:00
										 |  |  | #include "elf.h"
 | 
					
						
							| 
									
										
										
										
											2016-03-20 19:16:19 +02:00
										 |  |  | #include "qemu/cutils.h"
 | 
					
						
							| 
									
										
										
										
											2012-03-04 21:03:51 +10:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-18 17:36:02 +01:00
										 |  |  | #include "boot.h"
 | 
					
						
							| 
									
										
										
										
											2012-03-04 21:03:51 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  | static struct | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2012-05-05 12:30:53 +02:00
										 |  |  |     void (*machine_cpu_reset)(MicroBlazeCPU *); | 
					
						
							| 
									
										
										
										
											2012-03-04 21:03:51 +10:00
										 |  |  |     uint32_t bootstrap_pc; | 
					
						
							|  |  |  |     uint32_t cmdline; | 
					
						
							| 
									
										
										
										
											2013-05-05 11:06:37 +02:00
										 |  |  |     uint32_t initrd_start; | 
					
						
							|  |  |  |     uint32_t initrd_end; | 
					
						
							| 
									
										
										
										
											2012-03-04 21:03:51 +10:00
										 |  |  |     uint32_t fdt; | 
					
						
							|  |  |  | } boot_info; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void main_cpu_reset(void *opaque) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2012-05-05 12:30:53 +02:00
										 |  |  |     MicroBlazeCPU *cpu = opaque; | 
					
						
							| 
									
										
										
										
											2015-06-23 20:19:23 -07:00
										 |  |  |     CPUState *cs = CPU(cpu); | 
					
						
							| 
									
										
										
										
											2012-05-05 12:30:53 +02:00
										 |  |  |     CPUMBState *env = &cpu->env; | 
					
						
							| 
									
										
										
										
											2012-03-04 21:03:51 +10:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-23 20:19:23 -07:00
										 |  |  |     cpu_reset(cs); | 
					
						
							| 
									
										
										
										
											2012-03-04 21:03:51 +10:00
										 |  |  |     env->regs[5] = boot_info.cmdline; | 
					
						
							| 
									
										
										
										
											2013-05-05 11:06:37 +02:00
										 |  |  |     env->regs[6] = boot_info.initrd_start; | 
					
						
							| 
									
										
										
										
											2012-03-04 21:03:51 +10:00
										 |  |  |     env->regs[7] = boot_info.fdt; | 
					
						
							| 
									
										
										
										
											2015-06-23 20:19:23 -07:00
										 |  |  |     cpu_set_pc(cs, boot_info.bootstrap_pc); | 
					
						
							| 
									
										
										
										
											2012-03-04 21:03:51 +10:00
										 |  |  |     if (boot_info.machine_cpu_reset) { | 
					
						
							| 
									
										
										
										
											2012-05-05 12:30:53 +02:00
										 |  |  |         boot_info.machine_cpu_reset(cpu); | 
					
						
							| 
									
										
										
										
											2012-03-04 21:03:51 +10:00
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-23 12:30:10 +02:00
										 |  |  | static int microblaze_load_dtb(hwaddr addr, | 
					
						
							| 
									
										
										
										
											2013-05-05 10:52:41 +02:00
										 |  |  |                                uint32_t ramsize, | 
					
						
							| 
									
										
										
										
											2013-05-05 11:06:37 +02:00
										 |  |  |                                uint32_t initrd_start, | 
					
						
							|  |  |  |                                uint32_t initrd_end, | 
					
						
							| 
									
										
										
										
											2013-05-05 10:52:41 +02:00
										 |  |  |                                const char *kernel_cmdline, | 
					
						
							|  |  |  |                                const char *dtb_filename) | 
					
						
							| 
									
										
										
										
											2012-03-04 21:03:51 +10:00
										 |  |  | { | 
					
						
							|  |  |  |     int fdt_size; | 
					
						
							| 
									
										
										
										
											2012-03-04 21:03:55 +10:00
										 |  |  |     void *fdt = NULL; | 
					
						
							| 
									
										
										
										
											2012-03-04 21:03:51 +10:00
										 |  |  |     int r; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-04 21:03:55 +10:00
										 |  |  |     if (dtb_filename) { | 
					
						
							|  |  |  |         fdt = load_device_tree(dtb_filename, &fdt_size); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2012-03-04 21:03:51 +10:00
										 |  |  |     if (!fdt) { | 
					
						
							| 
									
										
										
										
											2012-03-04 21:03:55 +10:00
										 |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2012-03-04 21:03:51 +10:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (kernel_cmdline) { | 
					
						
							| 
									
										
										
										
											2013-11-11 18:14:41 +10:00
										 |  |  |         r = qemu_fdt_setprop_string(fdt, "/chosen", "bootargs", | 
					
						
							|  |  |  |                                     kernel_cmdline); | 
					
						
							| 
									
										
										
										
											2012-03-04 21:03:51 +10:00
										 |  |  |         if (r < 0) { | 
					
						
							|  |  |  |             fprintf(stderr, "couldn't set /chosen/bootargs\n"); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-05 11:06:37 +02:00
										 |  |  |     if (initrd_start) { | 
					
						
							| 
									
										
										
										
											2013-11-11 18:14:41 +10:00
										 |  |  |         qemu_fdt_setprop_cell(fdt, "/chosen", "linux,initrd-start", | 
					
						
							|  |  |  |                               initrd_start); | 
					
						
							| 
									
										
										
										
											2013-05-05 11:06:37 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-11 18:14:41 +10:00
										 |  |  |         qemu_fdt_setprop_cell(fdt, "/chosen", "linux,initrd-end", | 
					
						
							|  |  |  |                               initrd_end); | 
					
						
							| 
									
										
										
										
											2013-05-05 11:06:37 +02:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-12 20:53:58 +02:00
										 |  |  |     cpu_physical_memory_write(addr, fdt, fdt_size); | 
					
						
							| 
									
										
										
										
											2019-10-01 15:36:22 +02:00
										 |  |  |     g_free(fdt); | 
					
						
							| 
									
										
										
										
											2012-03-04 21:03:51 +10:00
										 |  |  |     return fdt_size; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static uint64_t translate_kernel_address(void *opaque, uint64_t addr) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return addr - 0x30000000LL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-23 12:30:10 +02:00
										 |  |  | void microblaze_load_kernel(MicroBlazeCPU *cpu, hwaddr ddr_base, | 
					
						
							| 
									
										
										
										
											2013-05-05 11:06:37 +02:00
										 |  |  |                             uint32_t ramsize, | 
					
						
							|  |  |  |                             const char *initrd_filename, | 
					
						
							|  |  |  |                             const char *dtb_filename, | 
					
						
							| 
									
										
										
										
											2012-05-05 12:30:53 +02:00
										 |  |  |                             void (*machine_cpu_reset)(MicroBlazeCPU *)) | 
					
						
							| 
									
										
										
										
											2012-03-04 21:03:51 +10:00
										 |  |  | { | 
					
						
							|  |  |  |     QemuOpts *machine_opts; | 
					
						
							| 
									
										
										
										
											2013-07-04 15:09:21 +02:00
										 |  |  |     const char *kernel_filename; | 
					
						
							|  |  |  |     const char *kernel_cmdline; | 
					
						
							|  |  |  |     const char *dtb_arg; | 
					
						
							| 
									
										
										
										
											2015-03-05 11:05:20 +08:00
										 |  |  |     char *filename = NULL; | 
					
						
							| 
									
										
										
										
											2013-07-04 15:09:21 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     machine_opts = qemu_get_machine_opts(); | 
					
						
							|  |  |  |     kernel_filename = qemu_opt_get(machine_opts, "kernel"); | 
					
						
							|  |  |  |     kernel_cmdline = qemu_opt_get(machine_opts, "append"); | 
					
						
							|  |  |  |     dtb_arg = qemu_opt_get(machine_opts, "dtb"); | 
					
						
							| 
									
										
										
										
											2015-03-05 11:05:20 +08:00
										 |  |  |     /* default to pcbios dtb as passed by machine_init */ | 
					
						
							| 
									
										
										
										
											2018-01-22 11:43:16 -08:00
										 |  |  |     if (!dtb_arg && dtb_filename) { | 
					
						
							| 
									
										
										
										
											2015-03-05 11:05:20 +08:00
										 |  |  |         filename = qemu_find_file(QEMU_FILE_TYPE_BIOS, dtb_filename); | 
					
						
							| 
									
										
										
										
											2012-03-04 21:03:51 +10:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     boot_info.machine_cpu_reset = machine_cpu_reset; | 
					
						
							| 
									
										
										
										
											2012-05-05 12:30:53 +02:00
										 |  |  |     qemu_register_reset(main_cpu_reset, cpu); | 
					
						
							| 
									
										
										
										
											2012-03-04 21:03:51 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (kernel_filename) { | 
					
						
							|  |  |  |         int kernel_size; | 
					
						
							| 
									
										
										
										
											2020-07-05 19:22:11 +02:00
										 |  |  |         uint64_t entry, high; | 
					
						
							| 
									
										
										
										
											2012-03-04 21:03:51 +10:00
										 |  |  |         uint32_t base32; | 
					
						
							|  |  |  |         int big_endian = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef TARGET_WORDS_BIGENDIAN
 | 
					
						
							|  |  |  |         big_endian = 1; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         /* Boots a kernel elf binary.  */ | 
					
						
							| 
									
										
										
										
											2019-01-15 12:18:03 +00:00
										 |  |  |         kernel_size = load_elf(kernel_filename, NULL, NULL, NULL, | 
					
						
							| 
									
										
										
										
											2020-07-05 19:22:11 +02:00
										 |  |  |                                &entry, NULL, &high, NULL, | 
					
						
							| 
									
										
										
										
											2016-03-04 11:30:21 +00:00
										 |  |  |                                big_endian, EM_MICROBLAZE, 0, 0); | 
					
						
							| 
									
										
										
										
											2012-03-04 21:03:51 +10:00
										 |  |  |         base32 = entry; | 
					
						
							|  |  |  |         if (base32 == 0xc0000000) { | 
					
						
							| 
									
										
										
										
											2019-01-15 12:18:03 +00:00
										 |  |  |             kernel_size = load_elf(kernel_filename, NULL, | 
					
						
							|  |  |  |                                    translate_kernel_address, NULL, | 
					
						
							| 
									
										
										
										
											2020-01-26 23:55:04 +01:00
										 |  |  |                                    &entry, NULL, NULL, NULL, | 
					
						
							| 
									
										
										
										
											2016-03-04 11:30:21 +00:00
										 |  |  |                                    big_endian, EM_MICROBLAZE, 0, 0); | 
					
						
							| 
									
										
										
										
											2012-03-04 21:03:51 +10:00
										 |  |  |         } | 
					
						
							|  |  |  |         /* Always boot into physical ram.  */ | 
					
						
							| 
									
										
										
										
											2014-04-28 17:12:58 -07:00
										 |  |  |         boot_info.bootstrap_pc = (uint32_t)entry; | 
					
						
							| 
									
										
										
										
											2012-03-04 21:03:51 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  |         /* If it wasn't an ELF image, try an u-boot image.  */ | 
					
						
							|  |  |  |         if (kernel_size < 0) { | 
					
						
							| 
									
										
										
										
											2019-01-07 08:31:50 +00:00
										 |  |  |             hwaddr uentry, loadaddr = LOAD_UIMAGE_LOADADDR_INVALID; | 
					
						
							| 
									
										
										
										
											2012-03-04 21:03:51 +10:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-19 07:42:22 +04:00
										 |  |  |             kernel_size = load_uimage(kernel_filename, &uentry, &loadaddr, 0, | 
					
						
							|  |  |  |                                       NULL, NULL); | 
					
						
							| 
									
										
										
										
											2012-03-04 21:03:51 +10:00
										 |  |  |             boot_info.bootstrap_pc = uentry; | 
					
						
							|  |  |  |             high = (loadaddr + kernel_size + 3) & ~3; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         /* Not an ELF image nor an u-boot image, try a RAW image.  */ | 
					
						
							|  |  |  |         if (kernel_size < 0) { | 
					
						
							|  |  |  |             kernel_size = load_image_targphys(kernel_filename, ddr_base, | 
					
						
							|  |  |  |                                               ram_size); | 
					
						
							|  |  |  |             boot_info.bootstrap_pc = ddr_base; | 
					
						
							|  |  |  |             high = (ddr_base + kernel_size + 3) & ~3; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-05 11:06:37 +02:00
										 |  |  |         if (initrd_filename) { | 
					
						
							|  |  |  |             int initrd_size; | 
					
						
							|  |  |  |             uint32_t initrd_offset; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             high = ROUND_UP(high + kernel_size, 4); | 
					
						
							|  |  |  |             boot_info.initrd_start = high; | 
					
						
							|  |  |  |             initrd_offset = boot_info.initrd_start - ddr_base; | 
					
						
							| 
									
										
										
										
											2013-05-03 15:19:45 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |             initrd_size = load_ramdisk(initrd_filename, | 
					
						
							|  |  |  |                                        boot_info.initrd_start, | 
					
						
							|  |  |  |                                        ram_size - initrd_offset); | 
					
						
							|  |  |  |             if (initrd_size < 0) { | 
					
						
							|  |  |  |                 initrd_size = load_image_targphys(initrd_filename, | 
					
						
							|  |  |  |                                                   boot_info.initrd_start, | 
					
						
							|  |  |  |                                                   ram_size - initrd_offset); | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2013-05-05 11:06:37 +02:00
										 |  |  |             if (initrd_size < 0) { | 
					
						
							| 
									
										
										
										
											2017-04-13 21:44:39 +05:30
										 |  |  |                 error_report("could not load initrd '%s'", | 
					
						
							| 
									
										
										
										
											2013-05-05 11:06:37 +02:00
										 |  |  |                              initrd_filename); | 
					
						
							|  |  |  |                 exit(EXIT_FAILURE); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             boot_info.initrd_end = boot_info.initrd_start + initrd_size; | 
					
						
							|  |  |  |             high = ROUND_UP(high + initrd_size, 4); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-04 21:03:51 +10:00
										 |  |  |         boot_info.cmdline = high + 4096; | 
					
						
							|  |  |  |         if (kernel_cmdline && strlen(kernel_cmdline)) { | 
					
						
							|  |  |  |             pstrcpy_targphys("cmdline", boot_info.cmdline, 256, kernel_cmdline); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         /* Provide a device-tree.  */ | 
					
						
							|  |  |  |         boot_info.fdt = boot_info.cmdline + 4096; | 
					
						
							| 
									
										
										
										
											2013-05-05 10:52:41 +02:00
										 |  |  |         microblaze_load_dtb(boot_info.fdt, ram_size, | 
					
						
							| 
									
										
										
										
											2013-05-05 11:06:37 +02:00
										 |  |  |                             boot_info.initrd_start, | 
					
						
							|  |  |  |                             boot_info.initrd_end, | 
					
						
							| 
									
										
										
										
											2013-05-05 10:52:41 +02:00
										 |  |  |                             kernel_cmdline, | 
					
						
							| 
									
										
										
										
											2015-03-05 11:05:20 +08:00
										 |  |  |                             /* Preference a -dtb argument */ | 
					
						
							|  |  |  |                             dtb_arg ? dtb_arg : filename); | 
					
						
							| 
									
										
										
										
											2012-03-04 21:03:51 +10:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-03-05 11:05:20 +08:00
										 |  |  |     g_free(filename); | 
					
						
							| 
									
										
										
										
											2012-03-04 21:03:51 +10:00
										 |  |  | } |