fw_cfg.c 27.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
/*
 * QEMU Firmware configuration device emulation
 *
 * Copyright (c) 2008 Gleb Natapov
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */
24
#include "hw/hw.h"
25
#include "sysemu/sysemu.h"
M
Marc Marí 已提交
26
#include "sysemu/dma.h"
P
Paolo Bonzini 已提交
27 28
#include "hw/isa/isa.h"
#include "hw/nvram/fw_cfg.h"
29
#include "hw/sysbus.h"
30
#include "trace.h"
31 32
#include "qemu/error-report.h"
#include "qemu/config-file.h"
33

M
Marc Marí 已提交
34
#define FW_CFG_CTL_SIZE 2
35 36
#define FW_CFG_NAME "fw_cfg"
#define FW_CFG_PATH "/machine/" FW_CFG_NAME
37 38 39 40 41 42 43 44

#define TYPE_FW_CFG     "fw_cfg"
#define TYPE_FW_CFG_IO  "fw_cfg_io"
#define TYPE_FW_CFG_MEM "fw_cfg_mem"

#define FW_CFG(obj)     OBJECT_CHECK(FWCfgState,    (obj), TYPE_FW_CFG)
#define FW_CFG_IO(obj)  OBJECT_CHECK(FWCfgIoState,  (obj), TYPE_FW_CFG_IO)
#define FW_CFG_MEM(obj) OBJECT_CHECK(FWCfgMemState, (obj), TYPE_FW_CFG_MEM)
45

M
Marc Marí 已提交
46 47 48 49 50 51 52 53 54 55
/* FW_CFG_VERSION bits */
#define FW_CFG_VERSION      0x01
#define FW_CFG_VERSION_DMA  0x02

/* FW_CFG_DMA_CONTROL bits */
#define FW_CFG_DMA_CTL_ERROR   0x01
#define FW_CFG_DMA_CTL_READ    0x02
#define FW_CFG_DMA_CTL_SKIP    0x04
#define FW_CFG_DMA_CTL_SELECT  0x08

56 57
#define FW_CFG_DMA_SIGNATURE 0x51454d5520434647ULL /* "QEMU CFG" */

B
Blue Swirl 已提交
58
typedef struct FWCfgEntry {
59
    uint32_t len;
60 61
    uint8_t *data;
    void *callback_opaque;
62
    FWCfgReadCallback read_callback;
63 64
} FWCfgEntry;

B
Blue Swirl 已提交
65
struct FWCfgState {
H
Hu Tao 已提交
66 67 68 69
    /*< private >*/
    SysBusDevice parent_obj;
    /*< public >*/

70
    FWCfgEntry entries[2][FW_CFG_MAX_ENTRY];
G
Gerd Hoffmann 已提交
71
    FWCfgFiles *files;
72
    uint16_t cur_entry;
73
    uint32_t cur_offset;
G
Gleb Natapov 已提交
74
    Notifier machine_ready;
M
Marc Marí 已提交
75 76 77 78 79

    bool dma_enabled;
    dma_addr_t dma_addr;
    AddressSpace *dma_as;
    MemoryRegion dma_iomem;
G
Gerd Hoffmann 已提交
80
};
81

82 83 84 85 86 87
struct FWCfgIoState {
    /*< private >*/
    FWCfgState parent_obj;
    /*< public >*/

    MemoryRegion comb_iomem;
M
Marc Marí 已提交
88
    uint32_t iobase, dma_iobase;
89 90 91 92 93 94 95 96
};

struct FWCfgMemState {
    /*< private >*/
    FWCfgState parent_obj;
    /*< public >*/

    MemoryRegion ctl_iomem, data_iomem;
97 98
    uint32_t data_width;
    MemoryRegionOps wide_data_ops;
99 100
};

W
wayne 已提交
101 102 103
#define JPG_FILE 0
#define BMP_FILE 1

104
static char *read_splashfile(char *filename, gsize *file_sizep,
105
                             int *file_typep)
W
wayne 已提交
106
{
107 108 109
    GError *err = NULL;
    gboolean res;
    gchar *content;
110 111
    int file_type;
    unsigned int filehead;
W
wayne 已提交
112 113
    int bmp_bpp;

114
    res = g_file_get_contents(filename, &content, file_sizep, &err);
115 116 117 118
    if (res == FALSE) {
        error_report("failed to read splash file '%s'", filename);
        g_error_free(err);
        return NULL;
W
wayne 已提交
119
    }
120

W
wayne 已提交
121
    /* check file size */
122 123
    if (*file_sizep < 30) {
        goto error;
W
wayne 已提交
124
    }
125

W
wayne 已提交
126
    /* check magic ID */
127 128
    filehead = ((content[0] & 0xff) + (content[1] << 8)) & 0xffff;
    if (filehead == 0xd8ff) {
W
wayne 已提交
129
        file_type = JPG_FILE;
130 131
    } else if (filehead == 0x4d42) {
        file_type = BMP_FILE;
W
wayne 已提交
132
    } else {
133
        goto error;
W
wayne 已提交
134
    }
135

W
wayne 已提交
136 137
    /* check BMP bpp */
    if (file_type == BMP_FILE) {
138
        bmp_bpp = (content[28] + (content[29] << 8)) & 0xffff;
W
wayne 已提交
139
        if (bmp_bpp != 24) {
140
            goto error;
W
wayne 已提交
141 142
        }
    }
143

W
wayne 已提交
144 145
    /* return values */
    *file_typep = file_type;
146 147 148 149 150 151 152 153

    return content;

error:
    error_report("splash file '%s' format not recognized; must be JPEG "
                 "or 24 bit BMP", filename);
    g_free(content);
    return NULL;
W
wayne 已提交
154 155 156 157 158 159 160
}

static void fw_cfg_bootsplash(FWCfgState *s)
{
    int boot_splash_time = -1;
    const char *boot_splash_filename = NULL;
    char *p;
161
    char *filename, *file_data;
162
    gsize file_size;
163
    int file_type;
W
wayne 已提交
164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200
    const char *temp;

    /* get user configuration */
    QemuOptsList *plist = qemu_find_opts("boot-opts");
    QemuOpts *opts = QTAILQ_FIRST(&plist->head);
    if (opts != NULL) {
        temp = qemu_opt_get(opts, "splash");
        if (temp != NULL) {
            boot_splash_filename = temp;
        }
        temp = qemu_opt_get(opts, "splash-time");
        if (temp != NULL) {
            p = (char *)temp;
            boot_splash_time = strtol(p, (char **)&p, 10);
        }
    }

    /* insert splash time if user configurated */
    if (boot_splash_time >= 0) {
        /* validate the input */
        if (boot_splash_time > 0xffff) {
            error_report("splash time is big than 65535, force it to 65535.");
            boot_splash_time = 0xffff;
        }
        /* use little endian format */
        qemu_extra_params_fw[0] = (uint8_t)(boot_splash_time & 0xff);
        qemu_extra_params_fw[1] = (uint8_t)((boot_splash_time >> 8) & 0xff);
        fw_cfg_add_file(s, "etc/boot-menu-wait", qemu_extra_params_fw, 2);
    }

    /* insert splash file if user configurated */
    if (boot_splash_filename != NULL) {
        filename = qemu_find_file(QEMU_FILE_TYPE_BIOS, boot_splash_filename);
        if (filename == NULL) {
            error_report("failed to find file '%s'.", boot_splash_filename);
            return;
        }
201 202 203 204

        /* loading file data */
        file_data = read_splashfile(filename, &file_size, &file_type);
        if (file_data == NULL) {
205
            g_free(filename);
W
wayne 已提交
206 207
            return;
        }
208
        g_free(boot_splash_filedata);
209
        boot_splash_filedata = (uint8_t *)file_data;
W
wayne 已提交
210
        boot_splash_filedata_size = file_size;
211

W
wayne 已提交
212 213 214 215 216 217 218 219
        /* insert data */
        if (file_type == JPG_FILE) {
            fw_cfg_add_file(s, "bootsplash.jpg",
                    boot_splash_filedata, boot_splash_filedata_size);
        } else {
            fw_cfg_add_file(s, "bootsplash.bmp",
                    boot_splash_filedata, boot_splash_filedata_size);
        }
220
        g_free(filename);
W
wayne 已提交
221 222 223
    }
}

224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247
static void fw_cfg_reboot(FWCfgState *s)
{
    int reboot_timeout = -1;
    char *p;
    const char *temp;

    /* get user configuration */
    QemuOptsList *plist = qemu_find_opts("boot-opts");
    QemuOpts *opts = QTAILQ_FIRST(&plist->head);
    if (opts != NULL) {
        temp = qemu_opt_get(opts, "reboot-timeout");
        if (temp != NULL) {
            p = (char *)temp;
            reboot_timeout = strtol(p, (char **)&p, 10);
        }
    }
    /* validate the input */
    if (reboot_timeout > 0xffff) {
        error_report("reboot timeout is larger than 65535, force it to 65535.");
        reboot_timeout = 0xffff;
    }
    fw_cfg_add_file(s, "etc/boot-fail-wait", g_memdup(&reboot_timeout, 4), 4);
}

248 249
static void fw_cfg_write(FWCfgState *s, uint8_t value)
{
250
    /* nothing, write support removed in QEMU v2.4+ */
251 252 253 254
}

static int fw_cfg_select(FWCfgState *s, uint16_t key)
{
255 256
    int arch, ret;
    FWCfgEntry *e;
257 258 259 260 261 262 263 264

    s->cur_offset = 0;
    if ((key & FW_CFG_ENTRY_MASK) >= FW_CFG_MAX_ENTRY) {
        s->cur_entry = FW_CFG_INVALID;
        ret = 0;
    } else {
        s->cur_entry = key;
        ret = 1;
265 266 267 268 269 270
        /* entry successfully selected, now run callback if present */
        arch = !!(key & FW_CFG_ARCH_LOCAL);
        e = &s->entries[arch][key & FW_CFG_ENTRY_MASK];
        if (e->read_callback) {
            e->read_callback(e->callback_opaque, s->cur_offset);
        }
271 272
    }

273
    trace_fw_cfg_select(s, key, ret);
274 275 276 277 278 279 280 281 282 283 284
    return ret;
}

static uint8_t fw_cfg_read(FWCfgState *s)
{
    int arch = !!(s->cur_entry & FW_CFG_ARCH_LOCAL);
    FWCfgEntry *e = &s->entries[arch][s->cur_entry & FW_CFG_ENTRY_MASK];
    uint8_t ret;

    if (s->cur_entry == FW_CFG_INVALID || !e->data || s->cur_offset >= e->len)
        ret = 0;
285
    else {
286
        ret = e->data[s->cur_offset++];
287
    }
288

289
    trace_fw_cfg_read(s, ret);
290 291 292
    return ret;
}

A
Avi Kivity 已提交
293
static uint64_t fw_cfg_data_mem_read(void *opaque, hwaddr addr,
A
Avi Kivity 已提交
294
                                     unsigned size)
295
{
296
    FWCfgState *s = opaque;
297
    uint64_t value = 0;
298 299 300
    unsigned i;

    for (i = 0; i < size; ++i) {
301
        value = (value << 8) | fw_cfg_read(s);
302
    }
303
    return value;
304 305
}

A
Avi Kivity 已提交
306
static void fw_cfg_data_mem_write(void *opaque, hwaddr addr,
A
Avi Kivity 已提交
307
                                  uint64_t value, unsigned size)
308
{
309
    FWCfgState *s = opaque;
310
    unsigned i = size;
311

312 313 314
    do {
        fw_cfg_write(s, value >> (8 * --i));
    } while (i);
315 316
}

M
Marc Marí 已提交
317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401
static void fw_cfg_dma_transfer(FWCfgState *s)
{
    dma_addr_t len;
    FWCfgDmaAccess dma;
    int arch;
    FWCfgEntry *e;
    int read;
    dma_addr_t dma_addr;

    /* Reset the address before the next access */
    dma_addr = s->dma_addr;
    s->dma_addr = 0;

    if (dma_memory_read(s->dma_as, dma_addr, &dma, sizeof(dma))) {
        stl_be_dma(s->dma_as, dma_addr + offsetof(FWCfgDmaAccess, control),
                   FW_CFG_DMA_CTL_ERROR);
        return;
    }

    dma.address = be64_to_cpu(dma.address);
    dma.length = be32_to_cpu(dma.length);
    dma.control = be32_to_cpu(dma.control);

    if (dma.control & FW_CFG_DMA_CTL_SELECT) {
        fw_cfg_select(s, dma.control >> 16);
    }

    arch = !!(s->cur_entry & FW_CFG_ARCH_LOCAL);
    e = &s->entries[arch][s->cur_entry & FW_CFG_ENTRY_MASK];

    if (dma.control & FW_CFG_DMA_CTL_READ) {
        read = 1;
    } else if (dma.control & FW_CFG_DMA_CTL_SKIP) {
        read = 0;
    } else {
        dma.length = 0;
    }

    dma.control = 0;

    while (dma.length > 0 && !(dma.control & FW_CFG_DMA_CTL_ERROR)) {
        if (s->cur_entry == FW_CFG_INVALID || !e->data ||
                                s->cur_offset >= e->len) {
            len = dma.length;

            /* If the access is not a read access, it will be a skip access,
             * tested before.
             */
            if (read) {
                if (dma_memory_set(s->dma_as, dma.address, 0, len)) {
                    dma.control |= FW_CFG_DMA_CTL_ERROR;
                }
            }

        } else {
            if (dma.length <= (e->len - s->cur_offset)) {
                len = dma.length;
            } else {
                len = (e->len - s->cur_offset);
            }

            /* If the access is not a read access, it will be a skip access,
             * tested before.
             */
            if (read) {
                if (dma_memory_write(s->dma_as, dma.address,
                                    &e->data[s->cur_offset], len)) {
                    dma.control |= FW_CFG_DMA_CTL_ERROR;
                }
            }

            s->cur_offset += len;
        }

        dma.address += len;
        dma.length  -= len;

    }

    stl_be_dma(s->dma_as, dma_addr + offsetof(FWCfgDmaAccess, control),
                dma.control);

    trace_fw_cfg_read(s, 0);
}

402 403 404 405 406 407 408
static uint64_t fw_cfg_dma_mem_read(void *opaque, hwaddr addr,
                                    unsigned size)
{
    /* Return a signature value (and handle various read sizes) */
    return extract64(FW_CFG_DMA_SIGNATURE, (8 - addr - size) * 8, size * 8);
}

M
Marc Marí 已提交
409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431
static void fw_cfg_dma_mem_write(void *opaque, hwaddr addr,
                                 uint64_t value, unsigned size)
{
    FWCfgState *s = opaque;

    if (size == 4) {
        if (addr == 0) {
            /* FWCfgDmaAccess high address */
            s->dma_addr = value << 32;
        } else if (addr == 4) {
            /* FWCfgDmaAccess low address */
            s->dma_addr |= value;
            fw_cfg_dma_transfer(s);
        }
    } else if (size == 8 && addr == 0) {
        s->dma_addr = value;
        fw_cfg_dma_transfer(s);
    }
}

static bool fw_cfg_dma_mem_valid(void *opaque, hwaddr addr,
                                  unsigned size, bool is_write)
{
432 433
    return !is_write || ((size == 4 && (addr == 0 || addr == 4)) ||
                         (size == 8 && addr == 0));
M
Marc Marí 已提交
434 435
}

436 437 438 439
static bool fw_cfg_data_mem_valid(void *opaque, hwaddr addr,
                                  unsigned size, bool is_write)
{
    return addr == 0;
440 441
}

A
Avi Kivity 已提交
442
static void fw_cfg_ctl_mem_write(void *opaque, hwaddr addr,
A
Avi Kivity 已提交
443
                                 uint64_t value, unsigned size)
444 445 446 447
{
    fw_cfg_select(opaque, (uint16_t)value);
}

A
Avi Kivity 已提交
448
static bool fw_cfg_ctl_mem_valid(void *opaque, hwaddr addr,
A
Avi Kivity 已提交
449
                                 unsigned size, bool is_write)
450
{
A
Avi Kivity 已提交
451
    return is_write && size == 2;
452 453
}

A
Avi Kivity 已提交
454
static uint64_t fw_cfg_comb_read(void *opaque, hwaddr addr,
A
Avi Kivity 已提交
455
                                 unsigned size)
456
{
A
Avi Kivity 已提交
457
    return fw_cfg_read(opaque);
458 459
}

A
Avi Kivity 已提交
460
static void fw_cfg_comb_write(void *opaque, hwaddr addr,
A
Avi Kivity 已提交
461
                              uint64_t value, unsigned size)
462
{
A
Avi Kivity 已提交
463 464 465 466 467 468 469 470
    switch (size) {
    case 1:
        fw_cfg_write(opaque, (uint8_t)value);
        break;
    case 2:
        fw_cfg_select(opaque, (uint16_t)value);
        break;
    }
471 472
}

A
Avi Kivity 已提交
473
static bool fw_cfg_comb_valid(void *opaque, hwaddr addr,
A
Avi Kivity 已提交
474 475 476 477
                                  unsigned size, bool is_write)
{
    return (size == 1) || (is_write && size == 2);
}
478

A
Avi Kivity 已提交
479 480
static const MemoryRegionOps fw_cfg_ctl_mem_ops = {
    .write = fw_cfg_ctl_mem_write,
481
    .endianness = DEVICE_BIG_ENDIAN,
A
Avi Kivity 已提交
482
    .valid.accepts = fw_cfg_ctl_mem_valid,
483 484
};

A
Avi Kivity 已提交
485 486 487
static const MemoryRegionOps fw_cfg_data_mem_ops = {
    .read = fw_cfg_data_mem_read,
    .write = fw_cfg_data_mem_write,
488
    .endianness = DEVICE_BIG_ENDIAN,
A
Avi Kivity 已提交
489 490 491
    .valid = {
        .min_access_size = 1,
        .max_access_size = 1,
492
        .accepts = fw_cfg_data_mem_valid,
A
Avi Kivity 已提交
493
    },
494 495
};

A
Avi Kivity 已提交
496 497 498
static const MemoryRegionOps fw_cfg_comb_mem_ops = {
    .read = fw_cfg_comb_read,
    .write = fw_cfg_comb_write,
499
    .endianness = DEVICE_LITTLE_ENDIAN,
A
Avi Kivity 已提交
500
    .valid.accepts = fw_cfg_comb_valid,
501 502
};

M
Marc Marí 已提交
503
static const MemoryRegionOps fw_cfg_dma_mem_ops = {
504
    .read = fw_cfg_dma_mem_read,
M
Marc Marí 已提交
505 506 507 508 509 510 511
    .write = fw_cfg_dma_mem_write,
    .endianness = DEVICE_BIG_ENDIAN,
    .valid.accepts = fw_cfg_dma_mem_valid,
    .valid.max_access_size = 8,
    .impl.max_access_size = 8,
};

B
Blue Swirl 已提交
512
static void fw_cfg_reset(DeviceState *d)
513
{
H
Hu Tao 已提交
514
    FWCfgState *s = FW_CFG(d);
515

516 517
    /* we never register a read callback for FW_CFG_SIGNATURE */
    fw_cfg_select(s, FW_CFG_SIGNATURE);
518 519
}

520 521 522 523 524 525 526 527 528 529 530 531 532 533
/* Save restore 32 bit int as uint16_t
   This is a Big hack, but it is how the old state did it.
   Or we broke compatibility in the state, or we can't use struct tm
 */

static int get_uint32_as_uint16(QEMUFile *f, void *pv, size_t size)
{
    uint32_t *v = pv;
    *v = qemu_get_be16(f);
    return 0;
}

static void put_unused(QEMUFile *f, void *pv, size_t size)
{
534
    fprintf(stderr, "uint32_as_uint16 is only used for backward compatibility.\n");
535 536 537
    fprintf(stderr, "This functions shouldn't be called.\n");
}

B
Blue Swirl 已提交
538
static const VMStateInfo vmstate_hack_uint32_as_uint16 = {
539 540 541 542 543 544 545 546 547 548 549 550 551 552
    .name = "int32_as_uint16",
    .get  = get_uint32_as_uint16,
    .put  = put_unused,
};

#define VMSTATE_UINT16_HACK(_f, _s, _t)                                    \
    VMSTATE_SINGLE_TEST(_f, _s, _t, 0, vmstate_hack_uint32_as_uint16, uint32_t)


static bool is_version_1(void *opaque, int version_id)
{
    return version_id == 1;
}

M
Marc Marí 已提交
553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568
static bool fw_cfg_dma_enabled(void *opaque)
{
    FWCfgState *s = opaque;

    return s->dma_enabled;
}

static const VMStateDescription vmstate_fw_cfg_dma = {
    .name = "fw_cfg/dma",
    .needed = fw_cfg_dma_enabled,
    .fields = (VMStateField[]) {
        VMSTATE_UINT64(dma_addr, FWCfgState),
        VMSTATE_END_OF_LIST()
    },
};

J
Juan Quintela 已提交
569 570
static const VMStateDescription vmstate_fw_cfg = {
    .name = "fw_cfg",
571
    .version_id = 2,
J
Juan Quintela 已提交
572
    .minimum_version_id = 1,
573
    .fields = (VMStateField[]) {
J
Juan Quintela 已提交
574
        VMSTATE_UINT16(cur_entry, FWCfgState),
575 576
        VMSTATE_UINT16_HACK(cur_offset, FWCfgState, is_version_1),
        VMSTATE_UINT32_V(cur_offset, FWCfgState, 2),
J
Juan Quintela 已提交
577
        VMSTATE_END_OF_LIST()
M
Marc Marí 已提交
578 579 580 581
    },
    .subsections = (const VMStateDescription*[]) {
        &vmstate_fw_cfg_dma,
        NULL,
J
Juan Quintela 已提交
582 583
    }
};
584

585 586 587 588
static void fw_cfg_add_bytes_read_callback(FWCfgState *s, uint16_t key,
                                           FWCfgReadCallback callback,
                                           void *callback_opaque,
                                           void *data, size_t len)
589 590 591 592 593
{
    int arch = !!(key & FW_CFG_ARCH_LOCAL);

    key &= FW_CFG_ENTRY_MASK;

594
    assert(key < FW_CFG_MAX_ENTRY && len < UINT32_MAX);
595
    assert(s->entries[arch][key].data == NULL); /* avoid key conflict */
596 597

    s->entries[arch][key].data = data;
598
    s->entries[arch][key].len = (uint32_t)len;
599 600 601 602
    s->entries[arch][key].read_callback = callback;
    s->entries[arch][key].callback_opaque = callback_opaque;
}

603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621
static void *fw_cfg_modify_bytes_read(FWCfgState *s, uint16_t key,
                                              void *data, size_t len)
{
    void *ptr;
    int arch = !!(key & FW_CFG_ARCH_LOCAL);

    key &= FW_CFG_ENTRY_MASK;

    assert(key < FW_CFG_MAX_ENTRY && len < UINT32_MAX);

    /* return the old data to the function caller, avoid memory leak */
    ptr = s->entries[arch][key].data;
    s->entries[arch][key].data = data;
    s->entries[arch][key].len = len;
    s->entries[arch][key].callback_opaque = NULL;

    return ptr;
}

622 623 624
void fw_cfg_add_bytes(FWCfgState *s, uint16_t key, void *data, size_t len)
{
    fw_cfg_add_bytes_read_callback(s, key, NULL, NULL, data, len);
625 626
}

627 628 629 630
void fw_cfg_add_string(FWCfgState *s, uint16_t key, const char *value)
{
    size_t sz = strlen(value) + 1;

631
    fw_cfg_add_bytes(s, key, g_memdup(value, sz), sz);
632 633
}

634
void fw_cfg_add_i16(FWCfgState *s, uint16_t key, uint16_t value)
635 636 637
{
    uint16_t *copy;

638
    copy = g_malloc(sizeof(value));
639
    *copy = cpu_to_le16(value);
640
    fw_cfg_add_bytes(s, key, copy, sizeof(value));
641 642
}

643 644 645 646 647 648 649 650 651 652
void fw_cfg_modify_i16(FWCfgState *s, uint16_t key, uint16_t value)
{
    uint16_t *copy, *old;

    copy = g_malloc(sizeof(value));
    *copy = cpu_to_le16(value);
    old = fw_cfg_modify_bytes_read(s, key, copy, sizeof(value));
    g_free(old);
}

653
void fw_cfg_add_i32(FWCfgState *s, uint16_t key, uint32_t value)
654 655 656
{
    uint32_t *copy;

657
    copy = g_malloc(sizeof(value));
658
    *copy = cpu_to_le32(value);
659
    fw_cfg_add_bytes(s, key, copy, sizeof(value));
660 661
}

662
void fw_cfg_add_i64(FWCfgState *s, uint16_t key, uint64_t value)
663 664 665
{
    uint64_t *copy;

666
    copy = g_malloc(sizeof(value));
667
    *copy = cpu_to_le64(value);
668
    fw_cfg_add_bytes(s, key, copy, sizeof(value));
669 670
}

671 672 673
void fw_cfg_add_file_callback(FWCfgState *s,  const char *filename,
                              FWCfgReadCallback callback, void *callback_opaque,
                              void *data, size_t len)
G
Gerd Hoffmann 已提交
674
{
G
Gerd Hoffmann 已提交
675
    int i, index;
676
    size_t dsize;
G
Gerd Hoffmann 已提交
677 678

    if (!s->files) {
679
        dsize = sizeof(uint32_t) + sizeof(FWCfgFile) * FW_CFG_FILE_SLOTS;
680
        s->files = g_malloc0(dsize);
681
        fw_cfg_add_bytes(s, FW_CFG_FILE_DIR, s->files, dsize);
G
Gerd Hoffmann 已提交
682 683 684
    }

    index = be32_to_cpu(s->files->count);
685
    assert(index < FW_CFG_FILE_SLOTS);
G
Gerd Hoffmann 已提交
686

687 688
    pstrcpy(s->files->f[index].name, sizeof(s->files->f[index].name),
            filename);
G
Gerd Hoffmann 已提交
689 690
    for (i = 0; i < index; i++) {
        if (strcmp(s->files->f[index].name, s->files->f[i].name) == 0) {
691 692 693
            error_report("duplicate fw_cfg file name: %s",
                         s->files->f[index].name);
            exit(1);
G
Gerd Hoffmann 已提交
694
        }
G
Gerd Hoffmann 已提交
695
    }
G
Gerd Hoffmann 已提交
696

697 698 699
    fw_cfg_add_bytes_read_callback(s, FW_CFG_FILE_FIRST + index,
                                   callback, callback_opaque, data, len);

G
Gerd Hoffmann 已提交
700 701
    s->files->f[index].size   = cpu_to_be32(len);
    s->files->f[index].select = cpu_to_be16(FW_CFG_FILE_FIRST + index);
702
    trace_fw_cfg_add_file(s, index, s->files->f[index].name, len);
G
Gerd Hoffmann 已提交
703 704 705 706

    s->files->count = cpu_to_be32(index+1);
}

707 708 709 710 711 712
void fw_cfg_add_file(FWCfgState *s,  const char *filename,
                     void *data, size_t len)
{
    fw_cfg_add_file_callback(s, filename, NULL, NULL, data, len);
}

713 714 715 716
void *fw_cfg_modify_file(FWCfgState *s, const char *filename,
                        void *data, size_t len)
{
    int i, index;
717
    void *ptr = NULL;
718 719 720 721 722 723 724 725

    assert(s->files);

    index = be32_to_cpu(s->files->count);
    assert(index < FW_CFG_FILE_SLOTS);

    for (i = 0; i < index; i++) {
        if (strcmp(filename, s->files->f[i].name) == 0) {
726 727 728 729
            ptr = fw_cfg_modify_bytes_read(s, FW_CFG_FILE_FIRST + i,
                                           data, len);
            s->files->f[i].size   = cpu_to_be32(len);
            return ptr;
730 731 732 733 734 735 736 737
        }
    }
    /* add new one */
    fw_cfg_add_file_callback(s, filename, NULL, NULL, data, len);
    return NULL;
}

static void fw_cfg_machine_reset(void *opaque)
G
Gleb Natapov 已提交
738
{
739
    void *ptr;
740
    size_t len;
741
    FWCfgState *s = opaque;
742
    char *bootindex = get_boot_devices_list(&len, false);
G
Gleb Natapov 已提交
743

744 745 746 747 748 749 750 751
    ptr = fw_cfg_modify_file(s, "bootorder", (uint8_t *)bootindex, len);
    g_free(ptr);
}

static void fw_cfg_machine_ready(struct Notifier *n, void *data)
{
    FWCfgState *s = container_of(n, FWCfgState, machine_ready);
    qemu_register_reset(fw_cfg_machine_reset, s);
G
Gleb Natapov 已提交
752 753
}

754

B
Blue Swirl 已提交
755

756 757 758
static void fw_cfg_init1(DeviceState *dev)
{
    FWCfgState *s = FW_CFG(dev);
759

760 761 762
    assert(!object_resolve_path(FW_CFG_PATH, NULL));

    object_property_add_child(qdev_get_machine(), FW_CFG_NAME, OBJECT(s), NULL);
763 764 765

    qdev_init_nofail(dev);

766
    fw_cfg_add_bytes(s, FW_CFG_SIGNATURE, (char *)"QEMU", 4);
767
    fw_cfg_add_bytes(s, FW_CFG_UUID, qemu_uuid, 16);
768
    fw_cfg_add_i16(s, FW_CFG_NOGRAPHIC, (uint16_t)(display_type == DT_NOGRAPHIC));
769
    fw_cfg_add_i16(s, FW_CFG_NB_CPUS, (uint16_t)smp_cpus);
770
    fw_cfg_add_i16(s, FW_CFG_BOOT_MENU, (uint16_t)boot_menu);
W
wayne 已提交
771
    fw_cfg_bootsplash(s);
772
    fw_cfg_reboot(s);
G
Gleb Natapov 已提交
773 774 775

    s->machine_ready.notify = fw_cfg_machine_ready;
    qemu_add_machine_init_done_notifier(&s->machine_ready);
776
}
B
Blue Swirl 已提交
777

M
Marc Marí 已提交
778 779
FWCfgState *fw_cfg_init_io_dma(uint32_t iobase, uint32_t dma_iobase,
                                AddressSpace *dma_as)
B
Blue Swirl 已提交
780
{
781
    DeviceState *dev;
M
Marc Marí 已提交
782 783 784
    FWCfgState *s;
    uint32_t version = FW_CFG_VERSION;
    bool dma_enabled = dma_iobase && dma_as;
B
Blue Swirl 已提交
785

786 787
    dev = qdev_create(NULL, TYPE_FW_CFG_IO);
    qdev_prop_set_uint32(dev, "iobase", iobase);
M
Marc Marí 已提交
788 789 790
    qdev_prop_set_uint32(dev, "dma_iobase", dma_iobase);
    qdev_prop_set_bit(dev, "dma_enabled", dma_enabled);

791
    fw_cfg_init1(dev);
M
Marc Marí 已提交
792 793 794 795 796 797 798 799 800 801 802
    s = FW_CFG(dev);

    if (dma_enabled) {
        /* 64 bits for the address field */
        s->dma_as = dma_as;
        s->dma_addr = 0;

        version |= FW_CFG_VERSION_DMA;
    }

    fw_cfg_add_i32(s, FW_CFG_ID, version);
803

M
Marc Marí 已提交
804 805 806 807 808 809
    return s;
}

FWCfgState *fw_cfg_init_io(uint32_t iobase)
{
    return fw_cfg_init_io_dma(iobase, 0, NULL);
H
Hu Tao 已提交
810 811
}

M
Marc Marí 已提交
812 813 814
FWCfgState *fw_cfg_init_mem_wide(hwaddr ctl_addr,
                                 hwaddr data_addr, uint32_t data_width,
                                 hwaddr dma_addr, AddressSpace *dma_as)
H
Hu Tao 已提交
815
{
816 817
    DeviceState *dev;
    SysBusDevice *sbd;
M
Marc Marí 已提交
818 819 820
    FWCfgState *s;
    uint32_t version = FW_CFG_VERSION;
    bool dma_enabled = dma_addr && dma_as;
H
Hu Tao 已提交
821

822
    dev = qdev_create(NULL, TYPE_FW_CFG_MEM);
823
    qdev_prop_set_uint32(dev, "data_width", data_width);
M
Marc Marí 已提交
824
    qdev_prop_set_bit(dev, "dma_enabled", dma_enabled);
825

826 827 828 829 830 831
    fw_cfg_init1(dev);

    sbd = SYS_BUS_DEVICE(dev);
    sysbus_mmio_map(sbd, 0, ctl_addr);
    sysbus_mmio_map(sbd, 1, data_addr);

M
Marc Marí 已提交
832 833 834 835 836 837 838 839 840 841 842 843
    s = FW_CFG(dev);

    if (dma_enabled) {
        s->dma_as = dma_as;
        s->dma_addr = 0;
        sysbus_mmio_map(sbd, 2, dma_addr);
        version |= FW_CFG_VERSION_DMA;
    }

    fw_cfg_add_i32(s, FW_CFG_ID, version);

    return s;
844 845
}

846 847 848
FWCfgState *fw_cfg_init_mem(hwaddr ctl_addr, hwaddr data_addr)
{
    return fw_cfg_init_mem_wide(ctl_addr, data_addr,
M
Marc Marí 已提交
849 850
                                fw_cfg_data_mem_ops.valid.max_access_size,
                                0, NULL);
851 852
}

853

854 855
FWCfgState *fw_cfg_find(void)
{
H
Hu Tao 已提交
856
    return FW_CFG(object_resolve_path(FW_CFG_PATH, NULL));
857 858
}

859 860
static void fw_cfg_class_init(ObjectClass *klass, void *data)
{
861
    DeviceClass *dc = DEVICE_CLASS(klass);
862

863 864
    dc->reset = fw_cfg_reset;
    dc->vmsd = &vmstate_fw_cfg;
865 866
}

867
static const TypeInfo fw_cfg_info = {
868
    .name          = TYPE_FW_CFG,
869 870 871
    .parent        = TYPE_SYS_BUS_DEVICE,
    .instance_size = sizeof(FWCfgState),
    .class_init    = fw_cfg_class_init,
B
Blue Swirl 已提交
872 873
};

874 875 876

static Property fw_cfg_io_properties[] = {
    DEFINE_PROP_UINT32("iobase", FWCfgIoState, iobase, -1),
M
Marc Marí 已提交
877 878 879
    DEFINE_PROP_UINT32("dma_iobase", FWCfgIoState, dma_iobase, -1),
    DEFINE_PROP_BOOL("dma_enabled", FWCfgIoState, parent_obj.dma_enabled,
                     false),
880 881 882 883 884 885 886 887 888
    DEFINE_PROP_END_OF_LIST(),
};

static void fw_cfg_io_realize(DeviceState *dev, Error **errp)
{
    FWCfgIoState *s = FW_CFG_IO(dev);
    SysBusDevice *sbd = SYS_BUS_DEVICE(dev);

    memory_region_init_io(&s->comb_iomem, OBJECT(s), &fw_cfg_comb_mem_ops,
M
Marc Marí 已提交
889
                          FW_CFG(s), "fwcfg", FW_CFG_CTL_SIZE);
890
    sysbus_add_io(sbd, s->iobase, &s->comb_iomem);
M
Marc Marí 已提交
891 892 893 894 895 896 897

    if (FW_CFG(s)->dma_enabled) {
        memory_region_init_io(&FW_CFG(s)->dma_iomem, OBJECT(s),
                              &fw_cfg_dma_mem_ops, FW_CFG(s), "fwcfg.dma",
                              sizeof(dma_addr_t));
        sysbus_add_io(sbd, s->dma_iobase, &FW_CFG(s)->dma_iomem);
    }
898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915
}

static void fw_cfg_io_class_init(ObjectClass *klass, void *data)
{
    DeviceClass *dc = DEVICE_CLASS(klass);

    dc->realize = fw_cfg_io_realize;
    dc->props = fw_cfg_io_properties;
}

static const TypeInfo fw_cfg_io_info = {
    .name          = TYPE_FW_CFG_IO,
    .parent        = TYPE_FW_CFG,
    .instance_size = sizeof(FWCfgIoState),
    .class_init    = fw_cfg_io_class_init,
};


916 917
static Property fw_cfg_mem_properties[] = {
    DEFINE_PROP_UINT32("data_width", FWCfgMemState, data_width, -1),
M
Marc Marí 已提交
918 919
    DEFINE_PROP_BOOL("dma_enabled", FWCfgMemState, parent_obj.dma_enabled,
                     false),
920 921 922
    DEFINE_PROP_END_OF_LIST(),
};

923 924 925 926
static void fw_cfg_mem_realize(DeviceState *dev, Error **errp)
{
    FWCfgMemState *s = FW_CFG_MEM(dev);
    SysBusDevice *sbd = SYS_BUS_DEVICE(dev);
927
    const MemoryRegionOps *data_ops = &fw_cfg_data_mem_ops;
928 929

    memory_region_init_io(&s->ctl_iomem, OBJECT(s), &fw_cfg_ctl_mem_ops,
M
Marc Marí 已提交
930
                          FW_CFG(s), "fwcfg.ctl", FW_CFG_CTL_SIZE);
931 932
    sysbus_init_mmio(sbd, &s->ctl_iomem);

933 934 935 936 937 938 939 940 941 942 943 944 945 946
    if (s->data_width > data_ops->valid.max_access_size) {
        /* memberwise copy because the "old_mmio" member is const */
        s->wide_data_ops.read       = data_ops->read;
        s->wide_data_ops.write      = data_ops->write;
        s->wide_data_ops.endianness = data_ops->endianness;
        s->wide_data_ops.valid      = data_ops->valid;
        s->wide_data_ops.impl       = data_ops->impl;

        s->wide_data_ops.valid.max_access_size = s->data_width;
        s->wide_data_ops.impl.max_access_size  = s->data_width;
        data_ops = &s->wide_data_ops;
    }
    memory_region_init_io(&s->data_iomem, OBJECT(s), data_ops, FW_CFG(s),
                          "fwcfg.data", data_ops->valid.max_access_size);
947
    sysbus_init_mmio(sbd, &s->data_iomem);
M
Marc Marí 已提交
948 949 950 951 952 953 954

    if (FW_CFG(s)->dma_enabled) {
        memory_region_init_io(&FW_CFG(s)->dma_iomem, OBJECT(s),
                              &fw_cfg_dma_mem_ops, FW_CFG(s), "fwcfg.dma",
                              sizeof(dma_addr_t));
        sysbus_init_mmio(sbd, &FW_CFG(s)->dma_iomem);
    }
955 956 957 958 959 960 961
}

static void fw_cfg_mem_class_init(ObjectClass *klass, void *data)
{
    DeviceClass *dc = DEVICE_CLASS(klass);

    dc->realize = fw_cfg_mem_realize;
962
    dc->props = fw_cfg_mem_properties;
963 964 965 966 967 968 969 970 971 972
}

static const TypeInfo fw_cfg_mem_info = {
    .name          = TYPE_FW_CFG_MEM,
    .parent        = TYPE_FW_CFG,
    .instance_size = sizeof(FWCfgMemState),
    .class_init    = fw_cfg_mem_class_init,
};


A
Andreas Färber 已提交
973
static void fw_cfg_register_types(void)
B
Blue Swirl 已提交
974
{
975
    type_register_static(&fw_cfg_info);
976 977
    type_register_static(&fw_cfg_io_info);
    type_register_static(&fw_cfg_mem_info);
B
Blue Swirl 已提交
978 979
}

A
Andreas Färber 已提交
980
type_init(fw_cfg_register_types)