4 * Copyright (c) 2016 Marek Vasut <marek.vasut@gmail.com>
6 * Based on microblaze kernel loader
8 * Copyright (c) 2012 Peter Crosthwaite <peter.crosthwaite@petalogix.com>
9 * Copyright (c) 2012 PetaLogix
10 * Copyright (c) 2009 Edgar E. Iglesias.
12 * Permission is hereby granted, free of charge, to any person obtaining a copy
13 * of this software and associated documentation files (the "Software"), to deal
14 * in the Software without restriction, including without limitation the rights
15 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
16 * copies of the Software, and to permit persons to whom the Software is
17 * furnished to do so, subject to the following conditions:
19 * The above copyright notice and this permission notice shall be included in
20 * all copies or substantial portions of the Software.
22 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
23 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
24 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
25 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
26 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
27 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
31 #include "qemu/osdep.h"
32 #include "qemu-common.h"
34 #include "qemu/option.h"
35 #include "qemu/config-file.h"
36 #include "qemu/error-report.h"
37 #include "sysemu/device_tree.h"
38 #include "sysemu/sysemu.h"
39 #include "hw/loader.h"
41 #include "qemu/cutils.h"
45 #define NIOS2_MAGIC 0x534f494e
47 static struct nios2_boot_info
{
48 void (*machine_cpu_reset
)(Nios2CPU
*);
49 uint32_t bootstrap_pc
;
51 uint32_t initrd_start
;
56 static void main_cpu_reset(void *opaque
)
58 Nios2CPU
*cpu
= opaque
;
59 CPUState
*cs
= CPU(cpu
);
60 CPUNios2State
*env
= &cpu
->env
;
64 env
->regs
[R_ARG0
] = NIOS2_MAGIC
;
65 env
->regs
[R_ARG1
] = boot_info
.initrd_start
;
66 env
->regs
[R_ARG2
] = boot_info
.fdt
;
67 env
->regs
[R_ARG3
] = boot_info
.cmdline
;
69 cpu_set_pc(cs
, boot_info
.bootstrap_pc
);
70 if (boot_info
.machine_cpu_reset
) {
71 boot_info
.machine_cpu_reset(cpu
);
75 static uint64_t translate_kernel_address(void *opaque
, uint64_t addr
)
77 return addr
- 0xc0000000LL
;
80 static int nios2_load_dtb(struct nios2_boot_info bi
, const uint32_t ramsize
,
81 const char *kernel_cmdline
, const char *dtb_filename
)
88 fdt
= load_device_tree(dtb_filename
, &fdt_size
);
95 r
= qemu_fdt_setprop_string(fdt
, "/chosen", "bootargs",
98 fprintf(stderr
, "couldn't set /chosen/bootargs\n");
102 if (bi
.initrd_start
) {
103 qemu_fdt_setprop_cell(fdt
, "/chosen", "linux,initrd-start",
104 translate_kernel_address(NULL
, bi
.initrd_start
));
106 qemu_fdt_setprop_cell(fdt
, "/chosen", "linux,initrd-end",
107 translate_kernel_address(NULL
, bi
.initrd_end
));
110 cpu_physical_memory_write(bi
.fdt
, fdt
, fdt_size
);
114 void nios2_load_kernel(Nios2CPU
*cpu
, hwaddr ddr_base
,
116 const char *initrd_filename
,
117 const char *dtb_filename
,
118 void (*machine_cpu_reset
)(Nios2CPU
*))
120 QemuOpts
*machine_opts
;
121 const char *kernel_filename
;
122 const char *kernel_cmdline
;
124 char *filename
= NULL
;
126 machine_opts
= qemu_get_machine_opts();
127 kernel_filename
= qemu_opt_get(machine_opts
, "kernel");
128 kernel_cmdline
= qemu_opt_get(machine_opts
, "append");
129 dtb_arg
= qemu_opt_get(machine_opts
, "dtb");
130 /* default to pcbios dtb as passed by machine_init */
132 filename
= qemu_find_file(QEMU_FILE_TYPE_BIOS
, dtb_filename
);
135 boot_info
.machine_cpu_reset
= machine_cpu_reset
;
136 qemu_register_reset(main_cpu_reset
, cpu
);
138 if (kernel_filename
) {
139 int kernel_size
, fdt_size
;
140 uint64_t entry
, low
, high
;
144 #ifdef TARGET_WORDS_BIGENDIAN
148 /* Boots a kernel elf binary. */
149 kernel_size
= load_elf(kernel_filename
, NULL
, NULL
,
151 big_endian
, EM_ALTERA_NIOS2
, 0, 0);
153 if (base32
== 0xc0000000) {
154 kernel_size
= load_elf(kernel_filename
, translate_kernel_address
,
155 NULL
, &entry
, NULL
, NULL
,
156 big_endian
, EM_ALTERA_NIOS2
, 0, 0);
159 /* Always boot into physical ram. */
160 boot_info
.bootstrap_pc
= ddr_base
+ 0xc0000000 + (entry
& 0x07ffffff);
162 /* If it wasn't an ELF image, try an u-boot image. */
163 if (kernel_size
< 0) {
164 hwaddr uentry
, loadaddr
;
166 kernel_size
= load_uimage(kernel_filename
, &uentry
, &loadaddr
, 0,
168 boot_info
.bootstrap_pc
= uentry
;
169 high
= loadaddr
+ kernel_size
;
172 /* Not an ELF image nor an u-boot image, try a RAW image. */
173 if (kernel_size
< 0) {
174 kernel_size
= load_image_targphys(kernel_filename
, ddr_base
,
176 boot_info
.bootstrap_pc
= ddr_base
;
177 high
= ddr_base
+ kernel_size
;
180 high
= ROUND_UP(high
, 1024 * 1024);
182 /* If initrd is available, it goes after the kernel, aligned to 1M. */
183 if (initrd_filename
) {
185 uint32_t initrd_offset
;
187 boot_info
.initrd_start
= high
;
188 initrd_offset
= boot_info
.initrd_start
- ddr_base
;
190 initrd_size
= load_ramdisk(initrd_filename
,
191 boot_info
.initrd_start
,
192 ram_size
- initrd_offset
);
193 if (initrd_size
< 0) {
194 initrd_size
= load_image_targphys(initrd_filename
,
195 boot_info
.initrd_start
,
196 ram_size
- initrd_offset
);
198 if (initrd_size
< 0) {
199 error_report("could not load initrd '%s'",
205 high
= ROUND_UP(high
, 4);
206 boot_info
.initrd_end
= high
;
208 /* Device tree must be placed right after initrd (if available) */
209 boot_info
.fdt
= high
;
210 fdt_size
= nios2_load_dtb(boot_info
, ram_size
, kernel_cmdline
,
211 /* Preference a -dtb argument */
212 dtb_arg
? dtb_arg
: filename
);
215 /* Kernel command is at the end, 4k aligned. */
216 boot_info
.cmdline
= ROUND_UP(high
, 4096);
217 if (kernel_cmdline
&& strlen(kernel_cmdline
)) {
218 pstrcpy_targphys("cmdline", boot_info
.cmdline
, 256, kernel_cmdline
);