2 * QEMU Firmware configuration device emulation
4 * Copyright (c) 2008 Gleb Natapov
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25 #include "sysemu/sysemu.h"
26 #include "hw/isa/isa.h"
27 #include "hw/nvram/fw_cfg.h"
28 #include "hw/sysbus.h"
30 #include "qemu/error-report.h"
31 #include "qemu/config-file.h"
34 #define FW_CFG_DATA_SIZE 1
35 #define TYPE_FW_CFG "fw_cfg"
36 #define FW_CFG_NAME "fw_cfg"
37 #define FW_CFG_PATH "/machine/" FW_CFG_NAME
39 typedef struct FWCfgEntry
{
42 void *callback_opaque
;
43 FWCfgCallback callback
;
48 MemoryRegion ctl_iomem
, data_iomem
, comb_iomem
;
49 uint32_t ctl_iobase
, data_iobase
;
50 FWCfgEntry entries
[2][FW_CFG_MAX_ENTRY
];
54 Notifier machine_ready
;
60 static char *read_splashfile(char *filename
, gsize
*file_sizep
,
67 unsigned int filehead
;
70 res
= g_file_get_contents(filename
, &content
, file_sizep
, &err
);
72 error_report("failed to read splash file '%s'", filename
);
78 if (*file_sizep
< 30) {
83 filehead
= ((content
[0] & 0xff) + (content
[1] << 8)) & 0xffff;
84 if (filehead
== 0xd8ff) {
86 } else if (filehead
== 0x4d42) {
93 if (file_type
== BMP_FILE
) {
94 bmp_bpp
= (content
[28] + (content
[29] << 8)) & 0xffff;
101 *file_typep
= file_type
;
106 error_report("splash file '%s' format not recognized; must be JPEG "
107 "or 24 bit BMP", filename
);
112 static void fw_cfg_bootsplash(FWCfgState
*s
)
114 int boot_splash_time
= -1;
115 const char *boot_splash_filename
= NULL
;
117 char *filename
, *file_data
;
122 /* get user configuration */
123 QemuOptsList
*plist
= qemu_find_opts("boot-opts");
124 QemuOpts
*opts
= QTAILQ_FIRST(&plist
->head
);
126 temp
= qemu_opt_get(opts
, "splash");
128 boot_splash_filename
= temp
;
130 temp
= qemu_opt_get(opts
, "splash-time");
133 boot_splash_time
= strtol(p
, (char **)&p
, 10);
137 /* insert splash time if user configurated */
138 if (boot_splash_time
>= 0) {
139 /* validate the input */
140 if (boot_splash_time
> 0xffff) {
141 error_report("splash time is big than 65535, force it to 65535.");
142 boot_splash_time
= 0xffff;
144 /* use little endian format */
145 qemu_extra_params_fw
[0] = (uint8_t)(boot_splash_time
& 0xff);
146 qemu_extra_params_fw
[1] = (uint8_t)((boot_splash_time
>> 8) & 0xff);
147 fw_cfg_add_file(s
, "etc/boot-menu-wait", qemu_extra_params_fw
, 2);
150 /* insert splash file if user configurated */
151 if (boot_splash_filename
!= NULL
) {
152 filename
= qemu_find_file(QEMU_FILE_TYPE_BIOS
, boot_splash_filename
);
153 if (filename
== NULL
) {
154 error_report("failed to find file '%s'.", boot_splash_filename
);
158 /* loading file data */
159 file_data
= read_splashfile(filename
, &file_size
, &file_type
);
160 if (file_data
== NULL
) {
164 if (boot_splash_filedata
!= NULL
) {
165 g_free(boot_splash_filedata
);
167 boot_splash_filedata
= (uint8_t *)file_data
;
168 boot_splash_filedata_size
= file_size
;
171 if (file_type
== JPG_FILE
) {
172 fw_cfg_add_file(s
, "bootsplash.jpg",
173 boot_splash_filedata
, boot_splash_filedata_size
);
175 fw_cfg_add_file(s
, "bootsplash.bmp",
176 boot_splash_filedata
, boot_splash_filedata_size
);
182 static void fw_cfg_reboot(FWCfgState
*s
)
184 int reboot_timeout
= -1;
188 /* get user configuration */
189 QemuOptsList
*plist
= qemu_find_opts("boot-opts");
190 QemuOpts
*opts
= QTAILQ_FIRST(&plist
->head
);
192 temp
= qemu_opt_get(opts
, "reboot-timeout");
195 reboot_timeout
= strtol(p
, (char **)&p
, 10);
198 /* validate the input */
199 if (reboot_timeout
> 0xffff) {
200 error_report("reboot timeout is larger than 65535, force it to 65535.");
201 reboot_timeout
= 0xffff;
203 fw_cfg_add_file(s
, "etc/boot-fail-wait", g_memdup(&reboot_timeout
, 4), 4);
206 static void fw_cfg_write(FWCfgState
*s
, uint8_t value
)
208 int arch
= !!(s
->cur_entry
& FW_CFG_ARCH_LOCAL
);
209 FWCfgEntry
*e
= &s
->entries
[arch
][s
->cur_entry
& FW_CFG_ENTRY_MASK
];
211 trace_fw_cfg_write(s
, value
);
213 if (s
->cur_entry
& FW_CFG_WRITE_CHANNEL
&& e
->callback
&&
214 s
->cur_offset
< e
->len
) {
215 e
->data
[s
->cur_offset
++] = value
;
216 if (s
->cur_offset
== e
->len
) {
217 e
->callback(e
->callback_opaque
, e
->data
);
223 static int fw_cfg_select(FWCfgState
*s
, uint16_t key
)
228 if ((key
& FW_CFG_ENTRY_MASK
) >= FW_CFG_MAX_ENTRY
) {
229 s
->cur_entry
= FW_CFG_INVALID
;
236 trace_fw_cfg_select(s
, key
, ret
);
240 static uint8_t fw_cfg_read(FWCfgState
*s
)
242 int arch
= !!(s
->cur_entry
& FW_CFG_ARCH_LOCAL
);
243 FWCfgEntry
*e
= &s
->entries
[arch
][s
->cur_entry
& FW_CFG_ENTRY_MASK
];
246 if (s
->cur_entry
== FW_CFG_INVALID
|| !e
->data
|| s
->cur_offset
>= e
->len
)
249 ret
= e
->data
[s
->cur_offset
++];
251 trace_fw_cfg_read(s
, ret
);
255 static uint64_t fw_cfg_data_mem_read(void *opaque
, hwaddr addr
,
258 return fw_cfg_read(opaque
);
261 static void fw_cfg_data_mem_write(void *opaque
, hwaddr addr
,
262 uint64_t value
, unsigned size
)
264 fw_cfg_write(opaque
, (uint8_t)value
);
267 static void fw_cfg_ctl_mem_write(void *opaque
, hwaddr addr
,
268 uint64_t value
, unsigned size
)
270 fw_cfg_select(opaque
, (uint16_t)value
);
273 static bool fw_cfg_ctl_mem_valid(void *opaque
, hwaddr addr
,
274 unsigned size
, bool is_write
)
276 return is_write
&& size
== 2;
279 static uint64_t fw_cfg_comb_read(void *opaque
, hwaddr addr
,
282 return fw_cfg_read(opaque
);
285 static void fw_cfg_comb_write(void *opaque
, hwaddr addr
,
286 uint64_t value
, unsigned size
)
290 fw_cfg_write(opaque
, (uint8_t)value
);
293 fw_cfg_select(opaque
, (uint16_t)value
);
298 static bool fw_cfg_comb_valid(void *opaque
, hwaddr addr
,
299 unsigned size
, bool is_write
)
301 return (size
== 1) || (is_write
&& size
== 2);
304 static const MemoryRegionOps fw_cfg_ctl_mem_ops
= {
305 .write
= fw_cfg_ctl_mem_write
,
306 .endianness
= DEVICE_NATIVE_ENDIAN
,
307 .valid
.accepts
= fw_cfg_ctl_mem_valid
,
310 static const MemoryRegionOps fw_cfg_data_mem_ops
= {
311 .read
= fw_cfg_data_mem_read
,
312 .write
= fw_cfg_data_mem_write
,
313 .endianness
= DEVICE_NATIVE_ENDIAN
,
315 .min_access_size
= 1,
316 .max_access_size
= 1,
320 static const MemoryRegionOps fw_cfg_comb_mem_ops
= {
321 .read
= fw_cfg_comb_read
,
322 .write
= fw_cfg_comb_write
,
323 .endianness
= DEVICE_NATIVE_ENDIAN
,
324 .valid
.accepts
= fw_cfg_comb_valid
,
327 static void fw_cfg_reset(DeviceState
*d
)
329 FWCfgState
*s
= DO_UPCAST(FWCfgState
, busdev
.qdev
, d
);
334 /* Save restore 32 bit int as uint16_t
335 This is a Big hack, but it is how the old state did it.
336 Or we broke compatibility in the state, or we can't use struct tm
339 static int get_uint32_as_uint16(QEMUFile
*f
, void *pv
, size_t size
)
342 *v
= qemu_get_be16(f
);
346 static void put_unused(QEMUFile
*f
, void *pv
, size_t size
)
348 fprintf(stderr
, "uint32_as_uint16 is only used for backward compatibility.\n");
349 fprintf(stderr
, "This functions shouldn't be called.\n");
352 static const VMStateInfo vmstate_hack_uint32_as_uint16
= {
353 .name
= "int32_as_uint16",
354 .get
= get_uint32_as_uint16
,
358 #define VMSTATE_UINT16_HACK(_f, _s, _t) \
359 VMSTATE_SINGLE_TEST(_f, _s, _t, 0, vmstate_hack_uint32_as_uint16, uint32_t)
362 static bool is_version_1(void *opaque
, int version_id
)
364 return version_id
== 1;
367 static const VMStateDescription vmstate_fw_cfg
= {
370 .minimum_version_id
= 1,
371 .minimum_version_id_old
= 1,
372 .fields
= (VMStateField
[]) {
373 VMSTATE_UINT16(cur_entry
, FWCfgState
),
374 VMSTATE_UINT16_HACK(cur_offset
, FWCfgState
, is_version_1
),
375 VMSTATE_UINT32_V(cur_offset
, FWCfgState
, 2),
376 VMSTATE_END_OF_LIST()
380 void fw_cfg_add_bytes(FWCfgState
*s
, uint16_t key
, void *data
, size_t len
)
382 int arch
= !!(key
& FW_CFG_ARCH_LOCAL
);
384 key
&= FW_CFG_ENTRY_MASK
;
386 assert(key
< FW_CFG_MAX_ENTRY
&& len
< UINT32_MAX
);
388 s
->entries
[arch
][key
].data
= data
;
389 s
->entries
[arch
][key
].len
= (uint32_t)len
;
392 void fw_cfg_add_string(FWCfgState
*s
, uint16_t key
, const char *value
)
394 size_t sz
= strlen(value
) + 1;
396 return fw_cfg_add_bytes(s
, key
, g_memdup(value
, sz
), sz
);
399 void fw_cfg_add_i16(FWCfgState
*s
, uint16_t key
, uint16_t value
)
403 copy
= g_malloc(sizeof(value
));
404 *copy
= cpu_to_le16(value
);
405 fw_cfg_add_bytes(s
, key
, copy
, sizeof(value
));
408 void fw_cfg_add_i32(FWCfgState
*s
, uint16_t key
, uint32_t value
)
412 copy
= g_malloc(sizeof(value
));
413 *copy
= cpu_to_le32(value
);
414 fw_cfg_add_bytes(s
, key
, copy
, sizeof(value
));
417 void fw_cfg_add_i64(FWCfgState
*s
, uint16_t key
, uint64_t value
)
421 copy
= g_malloc(sizeof(value
));
422 *copy
= cpu_to_le64(value
);
423 fw_cfg_add_bytes(s
, key
, copy
, sizeof(value
));
426 void fw_cfg_add_callback(FWCfgState
*s
, uint16_t key
, FWCfgCallback callback
,
427 void *callback_opaque
, void *data
, size_t len
)
429 int arch
= !!(key
& FW_CFG_ARCH_LOCAL
);
431 assert(key
& FW_CFG_WRITE_CHANNEL
);
433 key
&= FW_CFG_ENTRY_MASK
;
435 assert(key
< FW_CFG_MAX_ENTRY
&& len
<= UINT32_MAX
);
437 s
->entries
[arch
][key
].data
= data
;
438 s
->entries
[arch
][key
].len
= (uint32_t)len
;
439 s
->entries
[arch
][key
].callback_opaque
= callback_opaque
;
440 s
->entries
[arch
][key
].callback
= callback
;
443 void fw_cfg_add_file(FWCfgState
*s
, const char *filename
,
444 void *data
, size_t len
)
450 dsize
= sizeof(uint32_t) + sizeof(FWCfgFile
) * FW_CFG_FILE_SLOTS
;
451 s
->files
= g_malloc0(dsize
);
452 fw_cfg_add_bytes(s
, FW_CFG_FILE_DIR
, s
->files
, dsize
);
455 index
= be32_to_cpu(s
->files
->count
);
456 assert(index
< FW_CFG_FILE_SLOTS
);
458 fw_cfg_add_bytes(s
, FW_CFG_FILE_FIRST
+ index
, data
, len
);
460 pstrcpy(s
->files
->f
[index
].name
, sizeof(s
->files
->f
[index
].name
),
462 for (i
= 0; i
< index
; i
++) {
463 if (strcmp(s
->files
->f
[index
].name
, s
->files
->f
[i
].name
) == 0) {
464 trace_fw_cfg_add_file_dupe(s
, s
->files
->f
[index
].name
);
469 s
->files
->f
[index
].size
= cpu_to_be32(len
);
470 s
->files
->f
[index
].select
= cpu_to_be16(FW_CFG_FILE_FIRST
+ index
);
471 trace_fw_cfg_add_file(s
, index
, s
->files
->f
[index
].name
, len
);
473 s
->files
->count
= cpu_to_be32(index
+1);
476 static void fw_cfg_machine_ready(struct Notifier
*n
, void *data
)
479 FWCfgState
*s
= container_of(n
, FWCfgState
, machine_ready
);
480 char *bootindex
= get_boot_devices_list(&len
);
482 fw_cfg_add_file(s
, "bootorder", (uint8_t*)bootindex
, len
);
485 FWCfgState
*fw_cfg_init(uint32_t ctl_port
, uint32_t data_port
,
486 hwaddr ctl_addr
, hwaddr data_addr
)
492 dev
= qdev_create(NULL
, "fw_cfg");
493 qdev_prop_set_uint32(dev
, "ctl_iobase", ctl_port
);
494 qdev_prop_set_uint32(dev
, "data_iobase", data_port
);
495 d
= SYS_BUS_DEVICE(dev
);
497 s
= DO_UPCAST(FWCfgState
, busdev
.qdev
, dev
);
499 assert(!object_resolve_path(FW_CFG_PATH
, NULL
));
501 object_property_add_child(qdev_get_machine(), FW_CFG_NAME
, OBJECT(s
), NULL
);
503 qdev_init_nofail(dev
);
506 sysbus_mmio_map(d
, 0, ctl_addr
);
509 sysbus_mmio_map(d
, 1, data_addr
);
511 fw_cfg_add_bytes(s
, FW_CFG_SIGNATURE
, (char *)"QEMU", 4);
512 fw_cfg_add_bytes(s
, FW_CFG_UUID
, qemu_uuid
, 16);
513 fw_cfg_add_i16(s
, FW_CFG_NOGRAPHIC
, (uint16_t)(display_type
== DT_NOGRAPHIC
));
514 fw_cfg_add_i16(s
, FW_CFG_NB_CPUS
, (uint16_t)smp_cpus
);
515 fw_cfg_add_i16(s
, FW_CFG_BOOT_MENU
, (uint16_t)boot_menu
);
516 fw_cfg_bootsplash(s
);
519 s
->machine_ready
.notify
= fw_cfg_machine_ready
;
520 qemu_add_machine_init_done_notifier(&s
->machine_ready
);
525 static int fw_cfg_init1(SysBusDevice
*dev
)
527 FWCfgState
*s
= FROM_SYSBUS(FWCfgState
, dev
);
529 memory_region_init_io(&s
->ctl_iomem
, OBJECT(s
), &fw_cfg_ctl_mem_ops
, s
,
530 "fwcfg.ctl", FW_CFG_SIZE
);
531 sysbus_init_mmio(dev
, &s
->ctl_iomem
);
532 memory_region_init_io(&s
->data_iomem
, OBJECT(s
), &fw_cfg_data_mem_ops
, s
,
533 "fwcfg.data", FW_CFG_DATA_SIZE
);
534 sysbus_init_mmio(dev
, &s
->data_iomem
);
535 /* In case ctl and data overlap: */
536 memory_region_init_io(&s
->comb_iomem
, OBJECT(s
), &fw_cfg_comb_mem_ops
, s
,
537 "fwcfg", FW_CFG_SIZE
);
539 if (s
->ctl_iobase
+ 1 == s
->data_iobase
) {
540 sysbus_add_io(dev
, s
->ctl_iobase
, &s
->comb_iomem
);
543 sysbus_add_io(dev
, s
->ctl_iobase
, &s
->ctl_iomem
);
545 if (s
->data_iobase
) {
546 sysbus_add_io(dev
, s
->data_iobase
, &s
->data_iomem
);
552 static Property fw_cfg_properties
[] = {
553 DEFINE_PROP_HEX32("ctl_iobase", FWCfgState
, ctl_iobase
, -1),
554 DEFINE_PROP_HEX32("data_iobase", FWCfgState
, data_iobase
, -1),
555 DEFINE_PROP_END_OF_LIST(),
558 FWCfgState
*fw_cfg_find(void)
560 return OBJECT_CHECK(FWCfgState
, object_resolve_path(FW_CFG_PATH
, NULL
),
564 static void fw_cfg_class_init(ObjectClass
*klass
, void *data
)
566 DeviceClass
*dc
= DEVICE_CLASS(klass
);
567 SysBusDeviceClass
*k
= SYS_BUS_DEVICE_CLASS(klass
);
569 k
->init
= fw_cfg_init1
;
571 dc
->reset
= fw_cfg_reset
;
572 dc
->vmsd
= &vmstate_fw_cfg
;
573 dc
->props
= fw_cfg_properties
;
576 static const TypeInfo fw_cfg_info
= {
578 .parent
= TYPE_SYS_BUS_DEVICE
,
579 .instance_size
= sizeof(FWCfgState
),
580 .class_init
= fw_cfg_class_init
,
583 static void fw_cfg_register_types(void)
585 type_register_static(&fw_cfg_info
);
588 type_init(fw_cfg_register_types
)