4 * Copyright IBM, Corp. 2012
9 * This work is licensed under the terms of the GNU GPL, version 2 or (at your
10 * option) any later version. See the COPYING file in the top-level directory.
14 #include "sysemu/sysemu.h"
17 #include "hw/loader.h"
18 #include "hw/sysbus.h"
19 #include "hw/s390x/virtio-ccw.h"
20 #include "hw/s390x/css.h"
23 #define KERN_IMAGE_START 0x010000UL
24 #define KERN_PARM_AREA 0x010480UL
25 #define INITRD_START 0x800000UL
26 #define INITRD_PARM_START 0x010408UL
27 #define INITRD_PARM_SIZE 0x010410UL
28 #define PARMFILE_START 0x001000UL
29 #define ZIPL_IMAGE_START 0x009000UL
30 #define IPL_PSW_MASK (PSW_MASK_32 | PSW_MASK_64)
32 #define TYPE_S390_IPL "s390-ipl"
33 #define S390_IPL(obj) \
34 OBJECT_CHECK(S390IPLState, (obj), TYPE_S390_IPL)
36 #define S390_IPL_CLASS(klass) \
37 OBJECT_CLASS_CHECK(S390IPLState, (klass), TYPE_S390_IPL)
38 #define S390_IPL_GET_CLASS(obj) \
39 OBJECT_GET_CLASS(S390IPLState, (obj), TYPE_S390_IPL)
42 typedef struct S390IPLClass {
44 SysBusDeviceClass parent_class;
47 void (*parent_reset) (SysBusDevice *dev);
50 typedef struct S390IPLState {
52 SysBusDevice parent_obj;
54 uint64_t bios_start_addr;
56 IplParameterBlock iplb;
70 static const VMStateDescription vmstate_iplb = {
73 .minimum_version_id = 0,
74 .fields = (VMStateField[]) {
75 VMSTATE_UINT8_ARRAY(reserved1, IplParameterBlock, 110),
76 VMSTATE_UINT16(devno, IplParameterBlock),
77 VMSTATE_UINT8_ARRAY(reserved2, IplParameterBlock, 88),
82 static const VMStateDescription vmstate_ipl = {
85 .minimum_version_id = 0,
86 .fields = (VMStateField[]) {
87 VMSTATE_UINT64(start_addr, S390IPLState),
88 VMSTATE_UINT64(bios_start_addr, S390IPLState),
89 VMSTATE_STRUCT(iplb, S390IPLState, 0, vmstate_iplb, IplParameterBlock),
90 VMSTATE_BOOL(iplb_valid, S390IPLState),
91 VMSTATE_UINT8(cssid, S390IPLState),
92 VMSTATE_UINT8(ssid, S390IPLState),
93 VMSTATE_UINT16(devno, S390IPLState),
98 static uint64_t bios_translate_addr(void *opaque, uint64_t srcaddr)
100 uint64_t dstaddr = *(uint64_t *) opaque;
102 * Assuming that our s390-ccw.img was linked for starting at address 0,
103 * we can simply add the destination address for the final location
105 return srcaddr + dstaddr;
108 static int s390_ipl_init(SysBusDevice *dev)
110 S390IPLState *ipl = S390_IPL(dev);
111 uint64_t pentry = KERN_IMAGE_START;
118 * Always load the bios if it was enforced,
119 * even if an external kernel has been defined.
121 if (!ipl->kernel || ipl->enforce_bios) {
122 uint64_t fwbase = (MIN(ram_size, 0x80000000U) - 0x200000) & ~0xffffUL;
124 if (bios_name == NULL) {
125 bios_name = ipl->firmware;
128 bios_filename = qemu_find_file(QEMU_FILE_TYPE_BIOS, bios_name);
129 if (bios_filename == NULL) {
130 hw_error("could not find stage1 bootloader\n");
133 bios_size = load_elf(bios_filename, bios_translate_addr, &fwbase,
134 &ipl->bios_start_addr, NULL, NULL, 1,
137 /* Adjust ELF start address to final location */
138 ipl->bios_start_addr += fwbase;
140 /* Try to load non-ELF file (e.g. s390-zipl.rom) */
141 bios_size = load_image_targphys(bios_filename, ZIPL_IMAGE_START,
143 ipl->bios_start_addr = ZIPL_IMAGE_START;
145 g_free(bios_filename);
147 if (bios_size == -1) {
148 hw_error("could not load bootloader '%s'\n", bios_name);
151 /* default boot target is the bios */
152 ipl->start_addr = ipl->bios_start_addr;
156 kernel_size = load_elf(ipl->kernel, NULL, NULL, &pentry, NULL,
157 NULL, 1, ELF_MACHINE, 0);
158 if (kernel_size < 0) {
159 kernel_size = load_image_targphys(ipl->kernel, 0, ram_size);
161 if (kernel_size < 0) {
162 fprintf(stderr, "could not load kernel '%s'\n", ipl->kernel);
166 * Is it a Linux kernel (starting at 0x10000)? If yes, we fill in the
167 * kernel parameters here as well. Note: For old kernels (up to 3.2)
168 * we can not rely on the ELF entry point - it was 0x800 (the SALIPL
169 * loader) and it won't work. For this case we force it to 0x10000, too.
171 if (pentry == KERN_IMAGE_START || pentry == 0x800) {
172 ipl->start_addr = KERN_IMAGE_START;
173 /* Overwrite parameters in the kernel image, which are "rom" */
174 strcpy(rom_ptr(KERN_PARM_AREA), ipl->cmdline);
176 ipl->start_addr = pentry;
180 ram_addr_t initrd_offset;
183 initrd_offset = INITRD_START;
184 while (kernel_size + 0x100000 > initrd_offset) {
185 initrd_offset += 0x100000;
187 initrd_size = load_image_targphys(ipl->initrd, initrd_offset,
188 ram_size - initrd_offset);
189 if (initrd_size == -1) {
190 fprintf(stderr, "qemu: could not load initrd '%s'\n",
196 * we have to overwrite values in the kernel image,
199 stq_p(rom_ptr(INITRD_PARM_START), initrd_offset);
200 stq_p(rom_ptr(INITRD_PARM_SIZE), initrd_size);
206 static Property s390_ipl_properties[] = {
207 DEFINE_PROP_STRING("kernel", S390IPLState, kernel),
208 DEFINE_PROP_STRING("initrd", S390IPLState, initrd),
209 DEFINE_PROP_STRING("cmdline", S390IPLState, cmdline),
210 DEFINE_PROP_STRING("firmware", S390IPLState, firmware),
211 DEFINE_PROP_BOOL("enforce_bios", S390IPLState, enforce_bios, false),
212 DEFINE_PROP_END_OF_LIST(),
216 * In addition to updating the iplstate, this function returns:
217 * - 0 if system was ipled with external kernel
218 * - -1 if no valid boot device was found
219 * - ccw id of the boot device otherwise
221 static uint32_t s390_update_iplstate(CPUS390XState *env, S390IPLState *ipl)
225 if (ipl->iplb_valid) {
228 ipl->devno = ipl->iplb.devno;
236 dev_st = get_boot_device(0);
238 VirtioCcwDevice *ccw_dev = (VirtioCcwDevice *) object_dynamic_cast(
239 OBJECT(qdev_get_parent_bus(dev_st)->parent),
240 TYPE_VIRTIO_CCW_DEVICE);
242 ipl->cssid = ccw_dev->sch->cssid;
243 ipl->ssid = ccw_dev->sch->ssid;
244 ipl->devno = ccw_dev->sch->devno;
251 return ipl->cssid << 24 | ipl->ssid << 16 | ipl->devno;
254 int s390_ipl_update_diag308(IplParameterBlock *iplb)
258 ipl = S390_IPL(object_resolve_path(TYPE_S390_IPL, NULL));
261 ipl->iplb_valid = true;
267 IplParameterBlock *s390_ipl_get_iplb(void)
271 ipl = S390_IPL(object_resolve_path(TYPE_S390_IPL, NULL));
272 if (!ipl || !ipl->iplb_valid) {
278 void s390_reipl_request(void)
282 ipl = S390_IPL(object_resolve_path(TYPE_S390_IPL, NULL));
283 ipl->reipl_requested = true;
284 qemu_system_reset_request();
287 static void s390_ipl_reset(DeviceState *dev)
289 S390IPLState *ipl = S390_IPL(dev);
290 S390CPU *cpu = S390_CPU(qemu_get_cpu(0));
291 CPUS390XState *env = &cpu->env;
293 env->psw.addr = ipl->start_addr;
294 env->psw.mask = IPL_PSW_MASK;
296 if (!ipl->reipl_requested) {
297 ipl->iplb_valid = false;
299 ipl->reipl_requested = false;
301 if (!ipl->kernel || ipl->iplb_valid) {
302 env->psw.addr = ipl->bios_start_addr;
303 env->regs[7] = s390_update_iplstate(env, ipl);
306 s390_cpu_set_state(CPU_STATE_OPERATING, cpu);
309 static void s390_ipl_class_init(ObjectClass *klass, void *data)
311 DeviceClass *dc = DEVICE_CLASS(klass);
312 SysBusDeviceClass *k = SYS_BUS_DEVICE_CLASS(klass);
314 k->init = s390_ipl_init;
315 dc->props = s390_ipl_properties;
316 dc->reset = s390_ipl_reset;
317 dc->vmsd = &vmstate_ipl;
318 set_bit(DEVICE_CATEGORY_MISC, dc->categories);
321 static const TypeInfo s390_ipl_info = {
322 .class_init = s390_ipl_class_init,
323 .parent = TYPE_SYS_BUS_DEVICE,
325 .instance_size = sizeof(S390IPLState),
328 static void s390_ipl_register_types(void)
330 type_register_static(&s390_ipl_info);
333 type_init(s390_ipl_register_types)