fw_cfg: add API to find FW cfg object
[qemu.git] / hw / nvram / fw_cfg.c
blobdf3f089fd40cc7ab838a05b41d10bf8e813397d3
1 /*
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
22 * THE SOFTWARE.
24 #include "hw/hw.h"
25 #include "sysemu/sysemu.h"
26 #include "hw/isa/isa.h"
27 #include "hw/nvram/fw_cfg.h"
28 #include "hw/sysbus.h"
29 #include "trace.h"
30 #include "qemu/error-report.h"
31 #include "qemu/config-file.h"
33 #define FW_CFG_SIZE 2
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 {
40 uint32_t len;
41 uint8_t *data;
42 void *callback_opaque;
43 FWCfgCallback callback;
44 } FWCfgEntry;
46 struct FWCfgState {
47 SysBusDevice busdev;
48 MemoryRegion ctl_iomem, data_iomem, comb_iomem;
49 uint32_t ctl_iobase, data_iobase;
50 FWCfgEntry entries[2][FW_CFG_MAX_ENTRY];
51 FWCfgFiles *files;
52 uint16_t cur_entry;
53 uint32_t cur_offset;
54 Notifier machine_ready;
57 #define JPG_FILE 0
58 #define BMP_FILE 1
60 static char *read_splashfile(char *filename, gsize *file_sizep,
61 int *file_typep)
63 GError *err = NULL;
64 gboolean res;
65 gchar *content;
66 int file_type;
67 unsigned int filehead;
68 int bmp_bpp;
70 res = g_file_get_contents(filename, &content, file_sizep, &err);
71 if (res == FALSE) {
72 error_report("failed to read splash file '%s'", filename);
73 g_error_free(err);
74 return NULL;
77 /* check file size */
78 if (*file_sizep < 30) {
79 goto error;
82 /* check magic ID */
83 filehead = ((content[0] & 0xff) + (content[1] << 8)) & 0xffff;
84 if (filehead == 0xd8ff) {
85 file_type = JPG_FILE;
86 } else if (filehead == 0x4d42) {
87 file_type = BMP_FILE;
88 } else {
89 goto error;
92 /* check BMP bpp */
93 if (file_type == BMP_FILE) {
94 bmp_bpp = (content[28] + (content[29] << 8)) & 0xffff;
95 if (bmp_bpp != 24) {
96 goto error;
100 /* return values */
101 *file_typep = file_type;
103 return content;
105 error:
106 error_report("splash file '%s' format not recognized; must be JPEG "
107 "or 24 bit BMP", filename);
108 g_free(content);
109 return NULL;
112 static void fw_cfg_bootsplash(FWCfgState *s)
114 int boot_splash_time = -1;
115 const char *boot_splash_filename = NULL;
116 char *p;
117 char *filename, *file_data;
118 gsize file_size;
119 int file_type;
120 const char *temp;
122 /* get user configuration */
123 QemuOptsList *plist = qemu_find_opts("boot-opts");
124 QemuOpts *opts = QTAILQ_FIRST(&plist->head);
125 if (opts != NULL) {
126 temp = qemu_opt_get(opts, "splash");
127 if (temp != NULL) {
128 boot_splash_filename = temp;
130 temp = qemu_opt_get(opts, "splash-time");
131 if (temp != NULL) {
132 p = (char *)temp;
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);
155 return;
158 /* loading file data */
159 file_data = read_splashfile(filename, &file_size, &file_type);
160 if (file_data == NULL) {
161 g_free(filename);
162 return;
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;
170 /* insert data */
171 if (file_type == JPG_FILE) {
172 fw_cfg_add_file(s, "bootsplash.jpg",
173 boot_splash_filedata, boot_splash_filedata_size);
174 } else {
175 fw_cfg_add_file(s, "bootsplash.bmp",
176 boot_splash_filedata, boot_splash_filedata_size);
178 g_free(filename);
182 static void fw_cfg_reboot(FWCfgState *s)
184 int reboot_timeout = -1;
185 char *p;
186 const char *temp;
188 /* get user configuration */
189 QemuOptsList *plist = qemu_find_opts("boot-opts");
190 QemuOpts *opts = QTAILQ_FIRST(&plist->head);
191 if (opts != NULL) {
192 temp = qemu_opt_get(opts, "reboot-timeout");
193 if (temp != NULL) {
194 p = (char *)temp;
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);
218 s->cur_offset = 0;
223 static int fw_cfg_select(FWCfgState *s, uint16_t key)
225 int ret;
227 s->cur_offset = 0;
228 if ((key & FW_CFG_ENTRY_MASK) >= FW_CFG_MAX_ENTRY) {
229 s->cur_entry = FW_CFG_INVALID;
230 ret = 0;
231 } else {
232 s->cur_entry = key;
233 ret = 1;
236 trace_fw_cfg_select(s, key, ret);
237 return 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];
244 uint8_t ret;
246 if (s->cur_entry == FW_CFG_INVALID || !e->data || s->cur_offset >= e->len)
247 ret = 0;
248 else
249 ret = e->data[s->cur_offset++];
251 trace_fw_cfg_read(s, ret);
252 return ret;
255 static uint64_t fw_cfg_data_mem_read(void *opaque, hwaddr addr,
256 unsigned size)
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,
280 unsigned size)
282 return fw_cfg_read(opaque);
285 static void fw_cfg_comb_write(void *opaque, hwaddr addr,
286 uint64_t value, unsigned size)
288 switch (size) {
289 case 1:
290 fw_cfg_write(opaque, (uint8_t)value);
291 break;
292 case 2:
293 fw_cfg_select(opaque, (uint16_t)value);
294 break;
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,
314 .valid = {
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);
331 fw_cfg_select(s, 0);
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)
341 uint32_t *v = pv;
342 *v = qemu_get_be16(f);
343 return 0;
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,
355 .put = put_unused,
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 = {
368 .name = "fw_cfg",
369 .version_id = 2,
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)
401 uint16_t *copy;
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)
410 uint32_t *copy;
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)
419 uint64_t *copy;
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)
446 int i, index;
447 size_t dsize;
449 if (!s->files) {
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),
461 filename);
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);
465 return;
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)
478 size_t len;
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)
488 DeviceState *dev;
489 SysBusDevice *d;
490 FWCfgState *s;
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 if (!object_resolve_path(FW_CFG_PATH, NULL)) {
500 object_property_add_child(qdev_get_machine(), FW_CFG_NAME, OBJECT(s),
501 NULL);
504 qdev_init_nofail(dev);
506 if (ctl_addr) {
507 sysbus_mmio_map(d, 0, ctl_addr);
509 if (data_addr) {
510 sysbus_mmio_map(d, 1, data_addr);
512 fw_cfg_add_bytes(s, FW_CFG_SIGNATURE, (char *)"QEMU", 4);
513 fw_cfg_add_bytes(s, FW_CFG_UUID, qemu_uuid, 16);
514 fw_cfg_add_i16(s, FW_CFG_NOGRAPHIC, (uint16_t)(display_type == DT_NOGRAPHIC));
515 fw_cfg_add_i16(s, FW_CFG_NB_CPUS, (uint16_t)smp_cpus);
516 fw_cfg_add_i16(s, FW_CFG_BOOT_MENU, (uint16_t)boot_menu);
517 fw_cfg_bootsplash(s);
518 fw_cfg_reboot(s);
520 s->machine_ready.notify = fw_cfg_machine_ready;
521 qemu_add_machine_init_done_notifier(&s->machine_ready);
523 return s;
526 static int fw_cfg_init1(SysBusDevice *dev)
528 FWCfgState *s = FROM_SYSBUS(FWCfgState, dev);
530 memory_region_init_io(&s->ctl_iomem, &fw_cfg_ctl_mem_ops, s,
531 "fwcfg.ctl", FW_CFG_SIZE);
532 sysbus_init_mmio(dev, &s->ctl_iomem);
533 memory_region_init_io(&s->data_iomem, &fw_cfg_data_mem_ops, s,
534 "fwcfg.data", FW_CFG_DATA_SIZE);
535 sysbus_init_mmio(dev, &s->data_iomem);
536 /* In case ctl and data overlap: */
537 memory_region_init_io(&s->comb_iomem, &fw_cfg_comb_mem_ops, s,
538 "fwcfg", FW_CFG_SIZE);
540 if (s->ctl_iobase + 1 == s->data_iobase) {
541 sysbus_add_io(dev, s->ctl_iobase, &s->comb_iomem);
542 } else {
543 if (s->ctl_iobase) {
544 sysbus_add_io(dev, s->ctl_iobase, &s->ctl_iomem);
546 if (s->data_iobase) {
547 sysbus_add_io(dev, s->data_iobase, &s->data_iomem);
550 return 0;
553 static Property fw_cfg_properties[] = {
554 DEFINE_PROP_HEX32("ctl_iobase", FWCfgState, ctl_iobase, -1),
555 DEFINE_PROP_HEX32("data_iobase", FWCfgState, data_iobase, -1),
556 DEFINE_PROP_END_OF_LIST(),
559 FWCfgState *fw_cfg_find(void)
561 return OBJECT_CHECK(FWCfgState, object_resolve_path(FW_CFG_PATH, NULL),
562 TYPE_FW_CFG);
565 static void fw_cfg_class_init(ObjectClass *klass, void *data)
567 DeviceClass *dc = DEVICE_CLASS(klass);
568 SysBusDeviceClass *k = SYS_BUS_DEVICE_CLASS(klass);
570 k->init = fw_cfg_init1;
571 dc->no_user = 1;
572 dc->reset = fw_cfg_reset;
573 dc->vmsd = &vmstate_fw_cfg;
574 dc->props = fw_cfg_properties;
577 static const TypeInfo fw_cfg_info = {
578 .name = TYPE_FW_CFG,
579 .parent = TYPE_SYS_BUS_DEVICE,
580 .instance_size = sizeof(FWCfgState),
581 .class_init = fw_cfg_class_init,
584 static void fw_cfg_register_types(void)
586 type_register_static(&fw_cfg_info);
589 type_init(fw_cfg_register_types)