4 * Copyright IBM, Corp. 2012
7 * Christian Borntraeger <borntraeger@de.ibm.com>
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 S390IPLState
*get_ipl_device(void)
100 return S390_IPL(object_resolve_path_type("", TYPE_S390_IPL
, NULL
));
103 static uint64_t bios_translate_addr(void *opaque
, uint64_t srcaddr
)
105 uint64_t dstaddr
= *(uint64_t *) opaque
;
107 * Assuming that our s390-ccw.img was linked for starting at address 0,
108 * we can simply add the destination address for the final location
110 return srcaddr
+ dstaddr
;
113 static int s390_ipl_init(SysBusDevice
*dev
)
115 S390IPLState
*ipl
= S390_IPL(dev
);
116 uint64_t pentry
= KERN_IMAGE_START
;
123 * Always load the bios if it was enforced,
124 * even if an external kernel has been defined.
126 if (!ipl
->kernel
|| ipl
->enforce_bios
) {
127 uint64_t fwbase
= (MIN(ram_size
, 0x80000000U
) - 0x200000) & ~0xffffUL
;
129 if (bios_name
== NULL
) {
130 bios_name
= ipl
->firmware
;
133 bios_filename
= qemu_find_file(QEMU_FILE_TYPE_BIOS
, bios_name
);
134 if (bios_filename
== NULL
) {
135 hw_error("could not find stage1 bootloader\n");
138 bios_size
= load_elf(bios_filename
, bios_translate_addr
, &fwbase
,
139 &ipl
->bios_start_addr
, NULL
, NULL
, 1,
142 /* Adjust ELF start address to final location */
143 ipl
->bios_start_addr
+= fwbase
;
145 /* Try to load non-ELF file (e.g. s390-zipl.rom) */
146 bios_size
= load_image_targphys(bios_filename
, ZIPL_IMAGE_START
,
148 ipl
->bios_start_addr
= ZIPL_IMAGE_START
;
150 g_free(bios_filename
);
152 if (bios_size
== -1) {
153 hw_error("could not load bootloader '%s'\n", bios_name
);
156 /* default boot target is the bios */
157 ipl
->start_addr
= ipl
->bios_start_addr
;
161 kernel_size
= load_elf(ipl
->kernel
, NULL
, NULL
, &pentry
, NULL
,
162 NULL
, 1, EM_S390
, 0);
163 if (kernel_size
< 0) {
164 kernel_size
= load_image_targphys(ipl
->kernel
, 0, ram_size
);
166 if (kernel_size
< 0) {
167 fprintf(stderr
, "could not load kernel '%s'\n", ipl
->kernel
);
171 * Is it a Linux kernel (starting at 0x10000)? If yes, we fill in the
172 * kernel parameters here as well. Note: For old kernels (up to 3.2)
173 * we can not rely on the ELF entry point - it was 0x800 (the SALIPL
174 * loader) and it won't work. For this case we force it to 0x10000, too.
176 if (pentry
== KERN_IMAGE_START
|| pentry
== 0x800) {
177 ipl
->start_addr
= KERN_IMAGE_START
;
178 /* Overwrite parameters in the kernel image, which are "rom" */
179 strcpy(rom_ptr(KERN_PARM_AREA
), ipl
->cmdline
);
181 ipl
->start_addr
= pentry
;
185 ram_addr_t initrd_offset
;
188 initrd_offset
= INITRD_START
;
189 while (kernel_size
+ 0x100000 > initrd_offset
) {
190 initrd_offset
+= 0x100000;
192 initrd_size
= load_image_targphys(ipl
->initrd
, initrd_offset
,
193 ram_size
- initrd_offset
);
194 if (initrd_size
== -1) {
195 fprintf(stderr
, "qemu: could not load initrd '%s'\n",
201 * we have to overwrite values in the kernel image,
204 stq_p(rom_ptr(INITRD_PARM_START
), initrd_offset
);
205 stq_p(rom_ptr(INITRD_PARM_SIZE
), initrd_size
);
211 static Property s390_ipl_properties
[] = {
212 DEFINE_PROP_STRING("kernel", S390IPLState
, kernel
),
213 DEFINE_PROP_STRING("initrd", S390IPLState
, initrd
),
214 DEFINE_PROP_STRING("cmdline", S390IPLState
, cmdline
),
215 DEFINE_PROP_STRING("firmware", S390IPLState
, firmware
),
216 DEFINE_PROP_BOOL("enforce_bios", S390IPLState
, enforce_bios
, false),
217 DEFINE_PROP_END_OF_LIST(),
221 * In addition to updating the iplstate, this function returns:
222 * - 0 if system was ipled with external kernel
223 * - -1 if no valid boot device was found
224 * - ccw id of the boot device otherwise
226 static uint64_t s390_update_iplstate(S390IPLState
*ipl
)
230 if (ipl
->iplb_valid
) {
233 ipl
->devno
= ipl
->iplb
.devno
;
241 dev_st
= get_boot_device(0);
243 VirtioCcwDevice
*ccw_dev
= (VirtioCcwDevice
*) object_dynamic_cast(
244 OBJECT(qdev_get_parent_bus(dev_st
)->parent
),
245 TYPE_VIRTIO_CCW_DEVICE
);
247 ipl
->cssid
= ccw_dev
->sch
->cssid
;
248 ipl
->ssid
= ccw_dev
->sch
->ssid
;
249 ipl
->devno
= ccw_dev
->sch
->devno
;
256 return (uint32_t) (ipl
->cssid
<< 24 | ipl
->ssid
<< 16 | ipl
->devno
);
259 void s390_ipl_update_diag308(IplParameterBlock
*iplb
)
261 S390IPLState
*ipl
= get_ipl_device();
264 ipl
->iplb_valid
= true;
267 IplParameterBlock
*s390_ipl_get_iplb(void)
269 S390IPLState
*ipl
= get_ipl_device();
271 if (!ipl
->iplb_valid
) {
277 void s390_reipl_request(void)
279 S390IPLState
*ipl
= get_ipl_device();
281 ipl
->reipl_requested
= true;
282 qemu_system_reset_request();
285 void s390_ipl_prepare_cpu(S390CPU
*cpu
)
287 S390IPLState
*ipl
= get_ipl_device();
289 cpu
->env
.psw
.addr
= ipl
->start_addr
;
290 cpu
->env
.psw
.mask
= IPL_PSW_MASK
;
292 if (!ipl
->kernel
|| ipl
->iplb_valid
) {
293 cpu
->env
.psw
.addr
= ipl
->bios_start_addr
;
294 cpu
->env
.regs
[7] = s390_update_iplstate(ipl
);
298 static void s390_ipl_reset(DeviceState
*dev
)
300 S390IPLState
*ipl
= S390_IPL(dev
);
302 if (!ipl
->reipl_requested
) {
303 ipl
->iplb_valid
= false;
305 ipl
->reipl_requested
= false;
308 static void s390_ipl_class_init(ObjectClass
*klass
, void *data
)
310 DeviceClass
*dc
= DEVICE_CLASS(klass
);
311 SysBusDeviceClass
*k
= SYS_BUS_DEVICE_CLASS(klass
);
313 k
->init
= s390_ipl_init
;
314 dc
->props
= s390_ipl_properties
;
315 dc
->reset
= s390_ipl_reset
;
316 dc
->vmsd
= &vmstate_ipl
;
317 set_bit(DEVICE_CATEGORY_MISC
, dc
->categories
);
320 static const TypeInfo s390_ipl_info
= {
321 .class_init
= s390_ipl_class_init
,
322 .parent
= TYPE_SYS_BUS_DEVICE
,
324 .instance_size
= sizeof(S390IPLState
),
327 static void s390_ipl_register_types(void)
329 type_register_static(&s390_ipl_info
);
332 type_init(s390_ipl_register_types
)