fw_cfg.c 34.5 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.
 */
P
Peter Maydell 已提交
24
#include "qemu/osdep.h"
25
#include "hw/hw.h"
26
#include "sysemu/sysemu.h"
M
Marc Marí 已提交
27
#include "sysemu/dma.h"
28
#include "hw/boards.h"
P
Paolo Bonzini 已提交
29 30
#include "hw/isa/isa.h"
#include "hw/nvram/fw_cfg.h"
31
#include "hw/sysbus.h"
32
#include "trace.h"
33 34
#include "qemu/error-report.h"
#include "qemu/config-file.h"
35
#include "qemu/cutils.h"
36
#include "qapi/error.h"
37

38 39
#define FW_CFG_NAME "fw_cfg"
#define FW_CFG_PATH "/machine/" FW_CFG_NAME
40 41 42 43 44 45 46 47

#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)
48

M
Marc Marí 已提交
49 50 51 52 53 54 55 56 57
/* 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
58
#define FW_CFG_DMA_CTL_WRITE   0x10
M
Marc Marí 已提交
59

60 61
#define FW_CFG_DMA_SIGNATURE 0x51454d5520434647ULL /* "QEMU CFG" */

B
Blue Swirl 已提交
62
typedef struct FWCfgEntry {
63
    uint32_t len;
64
    bool allow_write;
65 66
    uint8_t *data;
    void *callback_opaque;
67
    FWCfgReadCallback read_callback;
68 69
} FWCfgEntry;

B
Blue Swirl 已提交
70
struct FWCfgState {
H
Hu Tao 已提交
71 72 73 74
    /*< private >*/
    SysBusDevice parent_obj;
    /*< public >*/

75 76 77
    uint16_t file_slots;
    FWCfgEntry *entries[2];
    int *entry_order;
G
Gerd Hoffmann 已提交
78
    FWCfgFiles *files;
79
    uint16_t cur_entry;
80
    uint32_t cur_offset;
G
Gleb Natapov 已提交
81
    Notifier machine_ready;
M
Marc Marí 已提交
82

G
Gerd Hoffmann 已提交
83 84
    int fw_cfg_order_override;

M
Marc Marí 已提交
85 86 87 88
    bool dma_enabled;
    dma_addr_t dma_addr;
    AddressSpace *dma_as;
    MemoryRegion dma_iomem;
G
Gerd Hoffmann 已提交
89
};
90

91 92 93 94 95 96
struct FWCfgIoState {
    /*< private >*/
    FWCfgState parent_obj;
    /*< public >*/

    MemoryRegion comb_iomem;
M
Marc Marí 已提交
97
    uint32_t iobase, dma_iobase;
98 99 100 101 102 103 104 105
};

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

    MemoryRegion ctl_iomem, data_iomem;
106 107
    uint32_t data_width;
    MemoryRegionOps wide_data_ops;
108 109
};

W
wayne 已提交
110 111 112
#define JPG_FILE 0
#define BMP_FILE 1

113
static char *read_splashfile(char *filename, gsize *file_sizep,
114
                             int *file_typep)
W
wayne 已提交
115
{
116 117 118
    GError *err = NULL;
    gboolean res;
    gchar *content;
119 120
    int file_type;
    unsigned int filehead;
W
wayne 已提交
121 122
    int bmp_bpp;

123
    res = g_file_get_contents(filename, &content, file_sizep, &err);
124 125 126 127
    if (res == FALSE) {
        error_report("failed to read splash file '%s'", filename);
        g_error_free(err);
        return NULL;
W
wayne 已提交
128
    }
129

W
wayne 已提交
130
    /* check file size */
131 132
    if (*file_sizep < 30) {
        goto error;
W
wayne 已提交
133
    }
134

W
wayne 已提交
135
    /* check magic ID */
136 137
    filehead = ((content[0] & 0xff) + (content[1] << 8)) & 0xffff;
    if (filehead == 0xd8ff) {
W
wayne 已提交
138
        file_type = JPG_FILE;
139 140
    } else if (filehead == 0x4d42) {
        file_type = BMP_FILE;
W
wayne 已提交
141
    } else {
142
        goto error;
W
wayne 已提交
143
    }
144

W
wayne 已提交
145 146
    /* check BMP bpp */
    if (file_type == BMP_FILE) {
147
        bmp_bpp = (content[28] + (content[29] << 8)) & 0xffff;
W
wayne 已提交
148
        if (bmp_bpp != 24) {
149
            goto error;
W
wayne 已提交
150 151
        }
    }
152

W
wayne 已提交
153 154
    /* return values */
    *file_typep = file_type;
155 156 157 158 159 160 161 162

    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 已提交
163 164 165 166 167 168 169
}

static void fw_cfg_bootsplash(FWCfgState *s)
{
    int boot_splash_time = -1;
    const char *boot_splash_filename = NULL;
    char *p;
170
    char *filename, *file_data;
171
    gsize file_size;
172
    int file_type;
W
wayne 已提交
173 174 175 176 177 178 179 180 181 182 183 184 185
    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;
L
Laurent Vivier 已提交
186
            boot_splash_time = strtol(p, &p, 10);
W
wayne 已提交
187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209
        }
    }

    /* 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;
        }
210 211 212 213

        /* loading file data */
        file_data = read_splashfile(filename, &file_size, &file_type);
        if (file_data == NULL) {
214
            g_free(filename);
W
wayne 已提交
215 216
            return;
        }
217
        g_free(boot_splash_filedata);
218
        boot_splash_filedata = (uint8_t *)file_data;
W
wayne 已提交
219
        boot_splash_filedata_size = file_size;
220

W
wayne 已提交
221 222 223 224 225 226 227 228
        /* 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);
        }
229
        g_free(filename);
W
wayne 已提交
230 231 232
    }
}

233 234 235 236 237 238 239 240 241 242 243 244 245
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;
L
Laurent Vivier 已提交
246
            reboot_timeout = strtol(p, &p, 10);
247 248 249 250 251 252 253 254 255 256
        }
    }
    /* 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);
}

257 258
static void fw_cfg_write(FWCfgState *s, uint8_t value)
{
259
    /* nothing, write support removed in QEMU v2.4+ */
260 261
}

262 263 264 265 266 267 268 269 270 271 272
static inline uint16_t fw_cfg_file_slots(const FWCfgState *s)
{
    return s->file_slots;
}

/* Note: this function returns an exclusive limit. */
static inline uint32_t fw_cfg_max_entry(const FWCfgState *s)
{
    return FW_CFG_FILE_FIRST + fw_cfg_file_slots(s);
}

273 274
static int fw_cfg_select(FWCfgState *s, uint16_t key)
{
275 276
    int arch, ret;
    FWCfgEntry *e;
277 278

    s->cur_offset = 0;
279
    if ((key & FW_CFG_ENTRY_MASK) >= fw_cfg_max_entry(s)) {
280 281 282 283 284
        s->cur_entry = FW_CFG_INVALID;
        ret = 0;
    } else {
        s->cur_entry = key;
        ret = 1;
285 286 287 288
        /* 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) {
289
            e->read_callback(e->callback_opaque);
290
        }
291 292
    }

293
    trace_fw_cfg_select(s, key, ret);
294 295 296
    return ret;
}

297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326
static uint64_t fw_cfg_data_read(void *opaque, hwaddr addr, unsigned size)
{
    FWCfgState *s = opaque;
    int arch = !!(s->cur_entry & FW_CFG_ARCH_LOCAL);
    FWCfgEntry *e = (s->cur_entry == FW_CFG_INVALID) ? NULL :
                    &s->entries[arch][s->cur_entry & FW_CFG_ENTRY_MASK];
    uint64_t value = 0;

    assert(size > 0 && size <= sizeof(value));
    if (s->cur_entry != FW_CFG_INVALID && e->data && s->cur_offset < e->len) {
        /* The least significant 'size' bytes of the return value are
         * expected to contain a string preserving portion of the item
         * data, padded with zeros on the right in case we run out early.
         * In technical terms, we're composing the host-endian representation
         * of the big endian interpretation of the fw_cfg string.
         */
        do {
            value = (value << 8) | e->data[s->cur_offset++];
        } while (--size && s->cur_offset < e->len);
        /* If size is still not zero, we *did* run out early, so continue
         * left-shifting, to add the appropriate number of padding zeros
         * on the right.
         */
        value <<= 8 * size;
    }

    trace_fw_cfg_read(s, value);
    return value;
}

A
Avi Kivity 已提交
327
static void fw_cfg_data_mem_write(void *opaque, hwaddr addr,
A
Avi Kivity 已提交
328
                                  uint64_t value, unsigned size)
329
{
330
    FWCfgState *s = opaque;
331
    unsigned i = size;
332

333 334 335
    do {
        fw_cfg_write(s, value >> (8 * --i));
    } while (i);
336 337
}

M
Marc Marí 已提交
338 339 340 341 342 343
static void fw_cfg_dma_transfer(FWCfgState *s)
{
    dma_addr_t len;
    FWCfgDmaAccess dma;
    int arch;
    FWCfgEntry *e;
344
    int read = 0, write = 0;
M
Marc Marí 已提交
345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365
    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);
366 367
    e = (s->cur_entry == FW_CFG_INVALID) ? NULL :
        &s->entries[arch][s->cur_entry & FW_CFG_ENTRY_MASK];
M
Marc Marí 已提交
368 369 370

    if (dma.control & FW_CFG_DMA_CTL_READ) {
        read = 1;
371 372 373 374
        write = 0;
    } else if (dma.control & FW_CFG_DMA_CTL_WRITE) {
        read = 0;
        write = 1;
M
Marc Marí 已提交
375 376
    } else if (dma.control & FW_CFG_DMA_CTL_SKIP) {
        read = 0;
377
        write = 0;
M
Marc Marí 已提交
378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396
    } 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;
                }
            }
397 398 399
            if (write) {
                dma.control |= FW_CFG_DMA_CTL_ERROR;
            }
M
Marc Marí 已提交
400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415
        } 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;
                }
            }
416 417 418 419 420 421 422 423
            if (write) {
                if (!e->allow_write ||
                    len != dma.length ||
                    dma_memory_read(s->dma_as, dma.address,
                                    &e->data[s->cur_offset], len)) {
                    dma.control |= FW_CFG_DMA_CTL_ERROR;
                }
            }
M
Marc Marí 已提交
424 425 426 427 428 429 430 431 432 433 434 435 436 437 438

            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);
}

439 440 441 442 443 444 445
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í 已提交
446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468
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)
{
469 470
    return !is_write || ((size == 4 && (addr == 0 || addr == 4)) ||
                         (size == 8 && addr == 0));
M
Marc Marí 已提交
471 472
}

473 474 475 476
static bool fw_cfg_data_mem_valid(void *opaque, hwaddr addr,
                                  unsigned size, bool is_write)
{
    return addr == 0;
477 478
}

A
Avi Kivity 已提交
479
static void fw_cfg_ctl_mem_write(void *opaque, hwaddr addr,
A
Avi Kivity 已提交
480
                                 uint64_t value, unsigned size)
481 482 483 484
{
    fw_cfg_select(opaque, (uint16_t)value);
}

A
Avi Kivity 已提交
485
static bool fw_cfg_ctl_mem_valid(void *opaque, hwaddr addr,
A
Avi Kivity 已提交
486
                                 unsigned size, bool is_write)
487
{
A
Avi Kivity 已提交
488
    return is_write && size == 2;
489 490
}

A
Avi Kivity 已提交
491
static void fw_cfg_comb_write(void *opaque, hwaddr addr,
A
Avi Kivity 已提交
492
                              uint64_t value, unsigned size)
493
{
A
Avi Kivity 已提交
494 495 496 497 498 499 500 501
    switch (size) {
    case 1:
        fw_cfg_write(opaque, (uint8_t)value);
        break;
    case 2:
        fw_cfg_select(opaque, (uint16_t)value);
        break;
    }
502 503
}

A
Avi Kivity 已提交
504
static bool fw_cfg_comb_valid(void *opaque, hwaddr addr,
A
Avi Kivity 已提交
505 506 507 508
                                  unsigned size, bool is_write)
{
    return (size == 1) || (is_write && size == 2);
}
509

A
Avi Kivity 已提交
510 511
static const MemoryRegionOps fw_cfg_ctl_mem_ops = {
    .write = fw_cfg_ctl_mem_write,
512
    .endianness = DEVICE_BIG_ENDIAN,
A
Avi Kivity 已提交
513
    .valid.accepts = fw_cfg_ctl_mem_valid,
514 515
};

A
Avi Kivity 已提交
516
static const MemoryRegionOps fw_cfg_data_mem_ops = {
517
    .read = fw_cfg_data_read,
A
Avi Kivity 已提交
518
    .write = fw_cfg_data_mem_write,
519
    .endianness = DEVICE_BIG_ENDIAN,
A
Avi Kivity 已提交
520 521 522
    .valid = {
        .min_access_size = 1,
        .max_access_size = 1,
523
        .accepts = fw_cfg_data_mem_valid,
A
Avi Kivity 已提交
524
    },
525 526
};

A
Avi Kivity 已提交
527
static const MemoryRegionOps fw_cfg_comb_mem_ops = {
528
    .read = fw_cfg_data_read,
A
Avi Kivity 已提交
529
    .write = fw_cfg_comb_write,
530
    .endianness = DEVICE_LITTLE_ENDIAN,
A
Avi Kivity 已提交
531
    .valid.accepts = fw_cfg_comb_valid,
532 533
};

M
Marc Marí 已提交
534
static const MemoryRegionOps fw_cfg_dma_mem_ops = {
535
    .read = fw_cfg_dma_mem_read,
M
Marc Marí 已提交
536 537 538 539 540 541 542
    .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 已提交
543
static void fw_cfg_reset(DeviceState *d)
544
{
H
Hu Tao 已提交
545
    FWCfgState *s = FW_CFG(d);
546

547 548
    /* we never register a read callback for FW_CFG_SIGNATURE */
    fw_cfg_select(s, FW_CFG_SIGNATURE);
549 550
}

551 552 553 554 555 556 557 558 559 560 561 562 563 564
/* 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)
{
565
    fprintf(stderr, "uint32_as_uint16 is only used for backward compatibility.\n");
566 567 568
    fprintf(stderr, "This functions shouldn't be called.\n");
}

B
Blue Swirl 已提交
569
static const VMStateInfo vmstate_hack_uint32_as_uint16 = {
570 571 572 573 574 575 576 577 578 579 580 581 582 583
    .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;
}

584
bool fw_cfg_dma_enabled(void *opaque)
M
Marc Marí 已提交
585 586 587 588 589 590 591 592 593 594 595 596 597 598 599
{
    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 已提交
600 601
static const VMStateDescription vmstate_fw_cfg = {
    .name = "fw_cfg",
602
    .version_id = 2,
J
Juan Quintela 已提交
603
    .minimum_version_id = 1,
604
    .fields = (VMStateField[]) {
J
Juan Quintela 已提交
605
        VMSTATE_UINT16(cur_entry, FWCfgState),
606 607
        VMSTATE_UINT16_HACK(cur_offset, FWCfgState, is_version_1),
        VMSTATE_UINT32_V(cur_offset, FWCfgState, 2),
J
Juan Quintela 已提交
608
        VMSTATE_END_OF_LIST()
M
Marc Marí 已提交
609 610 611 612
    },
    .subsections = (const VMStateDescription*[]) {
        &vmstate_fw_cfg_dma,
        NULL,
J
Juan Quintela 已提交
613 614
    }
};
615

616 617 618
static void fw_cfg_add_bytes_read_callback(FWCfgState *s, uint16_t key,
                                           FWCfgReadCallback callback,
                                           void *callback_opaque,
619 620
                                           void *data, size_t len,
                                           bool read_only)
621 622 623 624 625
{
    int arch = !!(key & FW_CFG_ARCH_LOCAL);

    key &= FW_CFG_ENTRY_MASK;

626
    assert(key < fw_cfg_max_entry(s) && len < UINT32_MAX);
627
    assert(s->entries[arch][key].data == NULL); /* avoid key conflict */
628 629

    s->entries[arch][key].data = data;
630
    s->entries[arch][key].len = (uint32_t)len;
631 632
    s->entries[arch][key].read_callback = callback;
    s->entries[arch][key].callback_opaque = callback_opaque;
633
    s->entries[arch][key].allow_write = !read_only;
634 635
}

636 637 638 639 640 641 642 643
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;

644
    assert(key < fw_cfg_max_entry(s) && len < UINT32_MAX);
645 646 647 648 649 650

    /* 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;
651
    s->entries[arch][key].allow_write = false;
652 653 654 655

    return ptr;
}

656 657
void fw_cfg_add_bytes(FWCfgState *s, uint16_t key, void *data, size_t len)
{
658
    fw_cfg_add_bytes_read_callback(s, key, NULL, NULL, data, len, true);
659 660
}

661 662 663 664
void fw_cfg_add_string(FWCfgState *s, uint16_t key, const char *value)
{
    size_t sz = strlen(value) + 1;

665
    fw_cfg_add_bytes(s, key, g_memdup(value, sz), sz);
666 667
}

668
void fw_cfg_add_i16(FWCfgState *s, uint16_t key, uint16_t value)
669 670 671
{
    uint16_t *copy;

672
    copy = g_malloc(sizeof(value));
673
    *copy = cpu_to_le16(value);
674
    fw_cfg_add_bytes(s, key, copy, sizeof(value));
675 676
}

677 678 679 680 681 682 683 684 685 686
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);
}

687
void fw_cfg_add_i32(FWCfgState *s, uint16_t key, uint32_t value)
688 689 690
{
    uint32_t *copy;

691
    copy = g_malloc(sizeof(value));
692
    *copy = cpu_to_le32(value);
693
    fw_cfg_add_bytes(s, key, copy, sizeof(value));
694 695
}

696
void fw_cfg_add_i64(FWCfgState *s, uint16_t key, uint64_t value)
697 698 699
{
    uint64_t *copy;

700
    copy = g_malloc(sizeof(value));
701
    *copy = cpu_to_le64(value);
702
    fw_cfg_add_bytes(s, key, copy, sizeof(value));
703 704
}

G
Gerd Hoffmann 已提交
705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763
void fw_cfg_set_order_override(FWCfgState *s, int order)
{
    assert(s->fw_cfg_order_override == 0);
    s->fw_cfg_order_override = order;
}

void fw_cfg_reset_order_override(FWCfgState *s)
{
    assert(s->fw_cfg_order_override != 0);
    s->fw_cfg_order_override = 0;
}

/*
 * This is the legacy order list.  For legacy systems, files are in
 * the fw_cfg in the order defined below, by the "order" value.  Note
 * that some entries (VGA ROMs, NIC option ROMS, etc.) go into a
 * specific area, but there may be more than one and they occur in the
 * order that the user specifies them on the command line.  Those are
 * handled in a special manner, using the order override above.
 *
 * For non-legacy, the files are sorted by filename to avoid this kind
 * of complexity in the future.
 *
 * This is only for x86, other arches don't implement versioning so
 * they won't set legacy mode.
 */
static struct {
    const char *name;
    int order;
} fw_cfg_order[] = {
    { "etc/boot-menu-wait", 10 },
    { "bootsplash.jpg", 11 },
    { "bootsplash.bmp", 12 },
    { "etc/boot-fail-wait", 15 },
    { "etc/smbios/smbios-tables", 20 },
    { "etc/smbios/smbios-anchor", 30 },
    { "etc/e820", 40 },
    { "etc/reserved-memory-end", 50 },
    { "genroms/kvmvapic.bin", 55 },
    { "genroms/linuxboot.bin", 60 },
    { }, /* VGA ROMs from pc_vga_init come here, 70. */
    { }, /* NIC option ROMs from pc_nic_init come here, 80. */
    { "etc/system-states", 90 },
    { }, /* User ROMs come here, 100. */
    { }, /* Device FW comes here, 110. */
    { "etc/extra-pci-roots", 120 },
    { "etc/acpi/tables", 130 },
    { "etc/table-loader", 140 },
    { "etc/tpm/log", 150 },
    { "etc/acpi/rsdp", 160 },
    { "bootorder", 170 },

#define FW_CFG_ORDER_OVERRIDE_LAST 200
};

static int get_fw_cfg_order(FWCfgState *s, const char *name)
{
    int i;

C
Cao jin 已提交
764 765 766
    if (s->fw_cfg_order_override > 0) {
        return s->fw_cfg_order_override;
    }
G
Gerd Hoffmann 已提交
767 768

    for (i = 0; i < ARRAY_SIZE(fw_cfg_order); i++) {
C
Cao jin 已提交
769 770 771 772 773 774 775
        if (fw_cfg_order[i].name == NULL) {
            continue;
        }

        if (strcmp(name, fw_cfg_order[i].name) == 0) {
            return fw_cfg_order[i].order;
        }
G
Gerd Hoffmann 已提交
776
    }
C
Cao jin 已提交
777

G
Gerd Hoffmann 已提交
778
    /* Stick unknown stuff at the end. */
779
    error_report("warning: Unknown firmware file in legacy mode: %s", name);
G
Gerd Hoffmann 已提交
780 781 782
    return FW_CFG_ORDER_OVERRIDE_LAST;
}

783 784
void fw_cfg_add_file_callback(FWCfgState *s,  const char *filename,
                              FWCfgReadCallback callback, void *callback_opaque,
785
                              void *data, size_t len, bool read_only)
G
Gerd Hoffmann 已提交
786
{
G
Gerd Hoffmann 已提交
787
    int i, index, count;
788
    size_t dsize;
G
Gerd Hoffmann 已提交
789 790
    MachineClass *mc = MACHINE_GET_CLASS(qdev_get_machine());
    int order = 0;
G
Gerd Hoffmann 已提交
791 792

    if (!s->files) {
793
        dsize = sizeof(uint32_t) + sizeof(FWCfgFile) * fw_cfg_file_slots(s);
794
        s->files = g_malloc0(dsize);
795
        fw_cfg_add_bytes(s, FW_CFG_FILE_DIR, s->files, dsize);
G
Gerd Hoffmann 已提交
796 797
    }

G
Gerd Hoffmann 已提交
798
    count = be32_to_cpu(s->files->count);
799
    assert(count < fw_cfg_file_slots(s));
G
Gerd Hoffmann 已提交
800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834

    /* Find the insertion point. */
    if (mc->legacy_fw_cfg_order) {
        /*
         * Sort by order. For files with the same order, we keep them
         * in the sequence in which they were added.
         */
        order = get_fw_cfg_order(s, filename);
        for (index = count;
             index > 0 && order < s->entry_order[index - 1];
             index--);
    } else {
        /* Sort by file name. */
        for (index = count;
             index > 0 && strcmp(filename, s->files->f[index - 1].name) < 0;
             index--);
    }

    /*
     * Move all the entries from the index point and after down one
     * to create a slot for the new entry.  Because calculations are
     * being done with the index, make it so that "i" is the current
     * index and "i - 1" is the one being copied from, thus the
     * unusual start and end in the for statement.
     */
    for (i = count + 1; i > index; i--) {
        s->files->f[i] = s->files->f[i - 1];
        s->files->f[i].select = cpu_to_be16(FW_CFG_FILE_FIRST + i);
        s->entries[0][FW_CFG_FILE_FIRST + i] =
            s->entries[0][FW_CFG_FILE_FIRST + i - 1];
        s->entry_order[i] = s->entry_order[i - 1];
    }

    memset(&s->files->f[index], 0, sizeof(FWCfgFile));
    memset(&s->entries[0][FW_CFG_FILE_FIRST + index], 0, sizeof(FWCfgEntry));
G
Gerd Hoffmann 已提交
835

G
Gerd Hoffmann 已提交
836 837 838 839
    pstrcpy(s->files->f[index].name, sizeof(s->files->f[index].name), filename);
    for (i = 0; i <= count; i++) {
        if (i != index &&
            strcmp(s->files->f[index].name, s->files->f[i].name) == 0) {
840 841 842
            error_report("duplicate fw_cfg file name: %s",
                         s->files->f[index].name);
            exit(1);
G
Gerd Hoffmann 已提交
843
        }
G
Gerd Hoffmann 已提交
844
    }
G
Gerd Hoffmann 已提交
845

846
    fw_cfg_add_bytes_read_callback(s, FW_CFG_FILE_FIRST + index,
847 848
                                   callback, callback_opaque, data, len,
                                   read_only);
849

G
Gerd Hoffmann 已提交
850 851
    s->files->f[index].size   = cpu_to_be32(len);
    s->files->f[index].select = cpu_to_be16(FW_CFG_FILE_FIRST + index);
G
Gerd Hoffmann 已提交
852
    s->entry_order[index] = order;
853
    trace_fw_cfg_add_file(s, index, s->files->f[index].name, len);
G
Gerd Hoffmann 已提交
854

G
Gerd Hoffmann 已提交
855
    s->files->count = cpu_to_be32(count+1);
G
Gerd Hoffmann 已提交
856 857
}

858 859 860
void fw_cfg_add_file(FWCfgState *s,  const char *filename,
                     void *data, size_t len)
{
861
    fw_cfg_add_file_callback(s, filename, NULL, NULL, data, len, true);
862 863
}

864 865 866 867
void *fw_cfg_modify_file(FWCfgState *s, const char *filename,
                        void *data, size_t len)
{
    int i, index;
868
    void *ptr = NULL;
869 870 871 872

    assert(s->files);

    index = be32_to_cpu(s->files->count);
873
    assert(index < fw_cfg_file_slots(s));
874 875 876

    for (i = 0; i < index; i++) {
        if (strcmp(filename, s->files->f[i].name) == 0) {
877 878 879 880
            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;
881 882 883
        }
    }
    /* add new one */
884
    fw_cfg_add_file_callback(s, filename, NULL, NULL, data, len, true);
885 886 887 888
    return NULL;
}

static void fw_cfg_machine_reset(void *opaque)
G
Gleb Natapov 已提交
889
{
890
    void *ptr;
891
    size_t len;
892
    FWCfgState *s = opaque;
893
    char *bootindex = get_boot_devices_list(&len, false);
G
Gleb Natapov 已提交
894

895 896 897 898 899 900 901 902
    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 已提交
903 904
}

905

B
Blue Swirl 已提交
906

907 908 909
static void fw_cfg_init1(DeviceState *dev)
{
    FWCfgState *s = FW_CFG(dev);
910
    MachineState *machine = MACHINE(qdev_get_machine());
911

912 913
    assert(!object_resolve_path(FW_CFG_PATH, NULL));

914
    object_property_add_child(OBJECT(machine), FW_CFG_NAME, OBJECT(s), NULL);
915 916 917

    qdev_init_nofail(dev);

918
    fw_cfg_add_bytes(s, FW_CFG_SIGNATURE, (char *)"QEMU", 4);
F
Fam Zheng 已提交
919
    fw_cfg_add_bytes(s, FW_CFG_UUID, &qemu_uuid, 16);
920
    fw_cfg_add_i16(s, FW_CFG_NOGRAPHIC, (uint16_t)!machine->enable_graphics);
921
    fw_cfg_add_i16(s, FW_CFG_BOOT_MENU, (uint16_t)boot_menu);
W
wayne 已提交
922
    fw_cfg_bootsplash(s);
923
    fw_cfg_reboot(s);
G
Gleb Natapov 已提交
924 925 926

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

M
Marc Marí 已提交
929 930
FWCfgState *fw_cfg_init_io_dma(uint32_t iobase, uint32_t dma_iobase,
                                AddressSpace *dma_as)
B
Blue Swirl 已提交
931
{
932
    DeviceState *dev;
M
Marc Marí 已提交
933 934
    FWCfgState *s;
    uint32_t version = FW_CFG_VERSION;
935
    bool dma_requested = dma_iobase && dma_as;
B
Blue Swirl 已提交
936

937 938
    dev = qdev_create(NULL, TYPE_FW_CFG_IO);
    qdev_prop_set_uint32(dev, "iobase", iobase);
M
Marc Marí 已提交
939
    qdev_prop_set_uint32(dev, "dma_iobase", dma_iobase);
940 941 942
    if (!dma_requested) {
        qdev_prop_set_bit(dev, "dma_enabled", false);
    }
M
Marc Marí 已提交
943

944
    fw_cfg_init1(dev);
M
Marc Marí 已提交
945 946
    s = FW_CFG(dev);

947
    if (s->dma_enabled) {
M
Marc Marí 已提交
948 949 950 951 952 953 954 955
        /* 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);
956

M
Marc Marí 已提交
957 958 959 960 961 962
    return s;
}

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

M
Marc Marí 已提交
965 966 967
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 已提交
968
{
969 970
    DeviceState *dev;
    SysBusDevice *sbd;
M
Marc Marí 已提交
971 972
    FWCfgState *s;
    uint32_t version = FW_CFG_VERSION;
973
    bool dma_requested = dma_addr && dma_as;
H
Hu Tao 已提交
974

975
    dev = qdev_create(NULL, TYPE_FW_CFG_MEM);
976
    qdev_prop_set_uint32(dev, "data_width", data_width);
977 978 979
    if (!dma_requested) {
        qdev_prop_set_bit(dev, "dma_enabled", false);
    }
980

981 982 983 984 985 986
    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í 已提交
987 988
    s = FW_CFG(dev);

989
    if (s->dma_enabled) {
M
Marc Marí 已提交
990 991 992 993 994 995 996 997 998
        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;
999 1000
}

1001 1002 1003
FWCfgState *fw_cfg_init_mem(hwaddr ctl_addr, hwaddr data_addr)
{
    return fw_cfg_init_mem_wide(ctl_addr, data_addr,
M
Marc Marí 已提交
1004 1005
                                fw_cfg_data_mem_ops.valid.max_access_size,
                                0, NULL);
1006 1007
}

1008

1009 1010
FWCfgState *fw_cfg_find(void)
{
H
Hu Tao 已提交
1011
    return FW_CFG(object_resolve_path(FW_CFG_PATH, NULL));
1012 1013
}

1014 1015
static void fw_cfg_class_init(ObjectClass *klass, void *data)
{
1016
    DeviceClass *dc = DEVICE_CLASS(klass);
1017

1018 1019
    dc->reset = fw_cfg_reset;
    dc->vmsd = &vmstate_fw_cfg;
1020 1021
}

1022
static const TypeInfo fw_cfg_info = {
1023
    .name          = TYPE_FW_CFG,
1024
    .parent        = TYPE_SYS_BUS_DEVICE,
1025
    .abstract      = true,
1026 1027
    .instance_size = sizeof(FWCfgState),
    .class_init    = fw_cfg_class_init,
B
Blue Swirl 已提交
1028 1029
};

1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053
static void fw_cfg_file_slots_allocate(FWCfgState *s, Error **errp)
{
    uint16_t file_slots_max;

    if (fw_cfg_file_slots(s) < FW_CFG_FILE_SLOTS_MIN) {
        error_setg(errp, "\"file_slots\" must be at least 0x%x",
                   FW_CFG_FILE_SLOTS_MIN);
        return;
    }

    /* (UINT16_MAX & FW_CFG_ENTRY_MASK) is the highest inclusive selector value
     * that we permit. The actual (exclusive) value coming from the
     * configuration is (FW_CFG_FILE_FIRST + fw_cfg_file_slots(s)). */
    file_slots_max = (UINT16_MAX & FW_CFG_ENTRY_MASK) - FW_CFG_FILE_FIRST + 1;
    if (fw_cfg_file_slots(s) > file_slots_max) {
        error_setg(errp, "\"file_slots\" must not exceed 0x%" PRIx16,
                   file_slots_max);
        return;
    }

    s->entries[0] = g_new0(FWCfgEntry, fw_cfg_max_entry(s));
    s->entries[1] = g_new0(FWCfgEntry, fw_cfg_max_entry(s));
    s->entry_order = g_new0(int, fw_cfg_max_entry(s));
}
1054 1055 1056

static Property fw_cfg_io_properties[] = {
    DEFINE_PROP_UINT32("iobase", FWCfgIoState, iobase, -1),
M
Marc Marí 已提交
1057 1058
    DEFINE_PROP_UINT32("dma_iobase", FWCfgIoState, dma_iobase, -1),
    DEFINE_PROP_BOOL("dma_enabled", FWCfgIoState, parent_obj.dma_enabled,
1059
                     true),
1060 1061
    DEFINE_PROP_UINT16("x-file-slots", FWCfgIoState, parent_obj.file_slots,
                       FW_CFG_FILE_SLOTS_MIN),
1062 1063 1064 1065 1066 1067 1068
    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);
1069 1070 1071 1072 1073 1074 1075
    Error *local_err = NULL;

    fw_cfg_file_slots_allocate(FW_CFG(s), &local_err);
    if (local_err) {
        error_propagate(errp, local_err);
        return;
    }
1076

1077 1078 1079
    /* when using port i/o, the 8-bit data register ALWAYS overlaps
     * with half of the 16-bit control register. Hence, the total size
     * of the i/o region used is FW_CFG_CTL_SIZE */
1080
    memory_region_init_io(&s->comb_iomem, OBJECT(s), &fw_cfg_comb_mem_ops,
M
Marc Marí 已提交
1081
                          FW_CFG(s), "fwcfg", FW_CFG_CTL_SIZE);
1082
    sysbus_add_io(sbd, s->iobase, &s->comb_iomem);
M
Marc Marí 已提交
1083 1084 1085 1086 1087 1088 1089

    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);
    }
1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107
}

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,
};


1108 1109
static Property fw_cfg_mem_properties[] = {
    DEFINE_PROP_UINT32("data_width", FWCfgMemState, data_width, -1),
M
Marc Marí 已提交
1110
    DEFINE_PROP_BOOL("dma_enabled", FWCfgMemState, parent_obj.dma_enabled,
1111
                     true),
1112 1113
    DEFINE_PROP_UINT16("x-file-slots", FWCfgMemState, parent_obj.file_slots,
                       FW_CFG_FILE_SLOTS_MIN),
1114 1115 1116
    DEFINE_PROP_END_OF_LIST(),
};

1117 1118 1119 1120
static void fw_cfg_mem_realize(DeviceState *dev, Error **errp)
{
    FWCfgMemState *s = FW_CFG_MEM(dev);
    SysBusDevice *sbd = SYS_BUS_DEVICE(dev);
1121
    const MemoryRegionOps *data_ops = &fw_cfg_data_mem_ops;
1122 1123 1124 1125 1126 1127 1128
    Error *local_err = NULL;

    fw_cfg_file_slots_allocate(FW_CFG(s), &local_err);
    if (local_err) {
        error_propagate(errp, local_err);
        return;
    }
1129 1130

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

1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147
    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);
1148
    sysbus_init_mmio(sbd, &s->data_iomem);
M
Marc Marí 已提交
1149 1150 1151 1152 1153 1154 1155

    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);
    }
1156 1157 1158 1159 1160 1161 1162
}

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

    dc->realize = fw_cfg_mem_realize;
1163
    dc->props = fw_cfg_mem_properties;
1164 1165 1166 1167 1168 1169 1170 1171 1172 1173
}

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 已提交
1174
static void fw_cfg_register_types(void)
B
Blue Swirl 已提交
1175
{
1176
    type_register_static(&fw_cfg_info);
1177 1178
    type_register_static(&fw_cfg_io_info);
    type_register_static(&fw_cfg_mem_info);
B
Blue Swirl 已提交
1179 1180
}

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