fw_cfg.c 9.8 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 24
/*
 * 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.
 */
#include "hw.h"
25
#include "sysemu.h"
26 27 28 29 30 31 32
#include "isa.h"
#include "fw_cfg.h"

/* debug firmware config */
//#define DEBUG_FW_CFG

#ifdef DEBUG_FW_CFG
33 34
#define FW_CFG_DPRINTF(fmt, ...)                        \
    do { printf("FW_CFG: " fmt , ## __VA_ARGS__); } while (0)
35
#else
36
#define FW_CFG_DPRINTF(fmt, ...)
37 38 39 40
#endif

#define FW_CFG_SIZE 2

B
Blue Swirl 已提交
41
typedef struct FWCfgEntry {
42
    uint32_t len;
43 44 45 46 47
    uint8_t *data;
    void *callback_opaque;
    FWCfgCallback callback;
} FWCfgEntry;

B
Blue Swirl 已提交
48
struct FWCfgState {
49
    FWCfgEntry entries[2][FW_CFG_MAX_ENTRY];
G
Gerd Hoffmann 已提交
50
    FWCfgFiles *files;
51
    uint16_t cur_entry;
52
    uint32_t cur_offset;
G
Gerd Hoffmann 已提交
53
};
54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111

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

    FW_CFG_DPRINTF("write %d\n", value);

    if (s->cur_entry & FW_CFG_WRITE_CHANNEL && s->cur_offset < e->len) {
        e->data[s->cur_offset++] = value;
        if (s->cur_offset == e->len) {
            e->callback(e->callback_opaque, e->data);
            s->cur_offset = 0;
        }
    }
}

static int fw_cfg_select(FWCfgState *s, uint16_t key)
{
    int ret;

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

    FW_CFG_DPRINTF("select key %d (%sfound)\n", key, ret ? "" : "not ");

    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;
    else
        ret = e->data[s->cur_offset++];

    FW_CFG_DPRINTF("read %d\n", ret);

    return ret;
}

static uint32_t fw_cfg_io_readb(void *opaque, uint32_t addr)
{
    return fw_cfg_read(opaque);
}

static void fw_cfg_io_writeb(void *opaque, uint32_t addr, uint32_t value)
{
112
    fw_cfg_write(opaque, (uint8_t)value);
113 114 115 116 117 118 119
}

static void fw_cfg_io_writew(void *opaque, uint32_t addr, uint32_t value)
{
    fw_cfg_select(opaque, (uint16_t)value);
}

A
Anthony Liguori 已提交
120
static uint32_t fw_cfg_mem_readb(void *opaque, target_phys_addr_t addr)
121 122 123 124
{
    return fw_cfg_read(opaque);
}

A
Anthony Liguori 已提交
125
static void fw_cfg_mem_writeb(void *opaque, target_phys_addr_t addr,
126 127
                              uint32_t value)
{
128
    fw_cfg_write(opaque, (uint8_t)value);
129 130
}

A
Anthony Liguori 已提交
131
static void fw_cfg_mem_writew(void *opaque, target_phys_addr_t addr,
132 133 134 135 136
                              uint32_t value)
{
    fw_cfg_select(opaque, (uint16_t)value);
}

137
static CPUReadMemoryFunc * const fw_cfg_ctl_mem_read[3] = {
138 139 140 141 142
    NULL,
    NULL,
    NULL,
};

143
static CPUWriteMemoryFunc * const fw_cfg_ctl_mem_write[3] = {
144 145 146 147 148
    NULL,
    fw_cfg_mem_writew,
    NULL,
};

149
static CPUReadMemoryFunc * const fw_cfg_data_mem_read[3] = {
150 151 152 153 154
    fw_cfg_mem_readb,
    NULL,
    NULL,
};

155
static CPUWriteMemoryFunc * const fw_cfg_data_mem_write[3] = {
156 157 158 159 160 161 162 163 164 165 166 167
    fw_cfg_mem_writeb,
    NULL,
    NULL,
};

static void fw_cfg_reset(void *opaque)
{
    FWCfgState *s = opaque;

    fw_cfg_select(s, 0);
}

168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185
/* 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)
{
    fprintf(stderr, "uint32_as_uint16 is only used for backward compatibilty.\n");
    fprintf(stderr, "This functions shouldn't be called.\n");
}

B
Blue Swirl 已提交
186
static const VMStateInfo vmstate_hack_uint32_as_uint16 = {
187 188 189 190 191 192 193 194 195 196 197 198 199 200
    .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;
}

J
Juan Quintela 已提交
201 202
static const VMStateDescription vmstate_fw_cfg = {
    .name = "fw_cfg",
203
    .version_id = 2,
J
Juan Quintela 已提交
204 205 206 207
    .minimum_version_id = 1,
    .minimum_version_id_old = 1,
    .fields      = (VMStateField []) {
        VMSTATE_UINT16(cur_entry, FWCfgState),
208 209
        VMSTATE_UINT16_HACK(cur_offset, FWCfgState, is_version_1),
        VMSTATE_UINT32_V(cur_offset, FWCfgState, 2),
J
Juan Quintela 已提交
210 211 212
        VMSTATE_END_OF_LIST()
    }
};
213

G
Gerd Hoffmann 已提交
214
int fw_cfg_add_bytes(FWCfgState *s, uint16_t key, uint8_t *data, uint32_t len)
215 216 217 218 219 220 221 222 223 224 225 226 227 228
{
    int arch = !!(key & FW_CFG_ARCH_LOCAL);

    key &= FW_CFG_ENTRY_MASK;

    if (key >= FW_CFG_MAX_ENTRY)
        return 0;

    s->entries[arch][key].data = data;
    s->entries[arch][key].len = len;

    return 1;
}

G
Gerd Hoffmann 已提交
229
int fw_cfg_add_i16(FWCfgState *s, uint16_t key, uint16_t value)
230 231 232 233 234
{
    uint16_t *copy;

    copy = qemu_malloc(sizeof(value));
    *copy = cpu_to_le16(value);
G
Gerd Hoffmann 已提交
235
    return fw_cfg_add_bytes(s, key, (uint8_t *)copy, sizeof(value));
236 237
}

G
Gerd Hoffmann 已提交
238
int fw_cfg_add_i32(FWCfgState *s, uint16_t key, uint32_t value)
239 240 241 242 243
{
    uint32_t *copy;

    copy = qemu_malloc(sizeof(value));
    *copy = cpu_to_le32(value);
G
Gerd Hoffmann 已提交
244
    return fw_cfg_add_bytes(s, key, (uint8_t *)copy, sizeof(value));
245 246
}

G
Gerd Hoffmann 已提交
247
int fw_cfg_add_i64(FWCfgState *s, uint16_t key, uint64_t value)
248 249 250 251 252
{
    uint64_t *copy;

    copy = qemu_malloc(sizeof(value));
    *copy = cpu_to_le64(value);
G
Gerd Hoffmann 已提交
253
    return fw_cfg_add_bytes(s, key, (uint8_t *)copy, sizeof(value));
254 255
}

G
Gerd Hoffmann 已提交
256
int fw_cfg_add_callback(FWCfgState *s, uint16_t key, FWCfgCallback callback,
257 258 259 260
                        void *callback_opaque, uint8_t *data, size_t len)
{
    int arch = !!(key & FW_CFG_ARCH_LOCAL);

261 262 263
    if (!(key & FW_CFG_WRITE_CHANNEL))
        return 0;

264 265
    key &= FW_CFG_ENTRY_MASK;

266
    if (key >= FW_CFG_MAX_ENTRY || len > 65535)
267 268 269 270 271 272 273 274 275 276
        return 0;

    s->entries[arch][key].data = data;
    s->entries[arch][key].len = len;
    s->entries[arch][key].callback_opaque = callback_opaque;
    s->entries[arch][key].callback = callback;

    return 1;
}

G
Gerd Hoffmann 已提交
277 278 279 280
int fw_cfg_add_file(FWCfgState *s,  const char *dir, const char *filename,
                    uint8_t *data, uint32_t len)
{
    const char *basename;
G
Gerd Hoffmann 已提交
281
    int i, index;
G
Gerd Hoffmann 已提交
282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302

    if (!s->files) {
        int dsize = sizeof(uint32_t) + sizeof(FWCfgFile) * FW_CFG_FILE_SLOTS;
        s->files = qemu_mallocz(dsize);
        fw_cfg_add_bytes(s, FW_CFG_FILE_DIR, (uint8_t*)s->files, dsize);
    }

    index = be32_to_cpu(s->files->count);
    if (index == FW_CFG_FILE_SLOTS) {
        fprintf(stderr, "fw_cfg: out of file slots\n");
        return 0;
    }

    fw_cfg_add_bytes(s, FW_CFG_FILE_FIRST + index, data, len);

    basename = strrchr(filename, '/');
    if (basename) {
        basename++;
    } else {
        basename = filename;
    }
G
Gerd Hoffmann 已提交
303 304 305 306 307 308 309 310 311

    snprintf(s->files->f[index].name, sizeof(s->files->f[index].name),
             "%s/%s", dir, basename);
    for (i = 0; i < index; i++) {
        if (strcmp(s->files->f[index].name, s->files->f[i].name) == 0) {
            FW_CFG_DPRINTF("%s: skip duplicate: %s\n", __FUNCTION__,
                           s->files->f[index].name);
            return 1;
        }
G
Gerd Hoffmann 已提交
312
    }
G
Gerd Hoffmann 已提交
313

G
Gerd Hoffmann 已提交
314 315 316 317 318 319 320 321 322
    s->files->f[index].size   = cpu_to_be32(len);
    s->files->f[index].select = cpu_to_be16(FW_CFG_FILE_FIRST + index);
    FW_CFG_DPRINTF("%s: #%d: %s (%d bytes)\n", __FUNCTION__,
                   index, s->files->f[index].name, len);

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

G
Gerd Hoffmann 已提交
323 324
FWCfgState *fw_cfg_init(uint32_t ctl_port, uint32_t data_port,
                        target_phys_addr_t ctl_addr, target_phys_addr_t data_addr)
325 326 327 328 329 330 331 332 333 334 335 336 337 338
{
    FWCfgState *s;
    int io_ctl_memory, io_data_memory;

    s = qemu_mallocz(sizeof(FWCfgState));

    if (ctl_port) {
        register_ioport_write(ctl_port, 2, 2, fw_cfg_io_writew, s);
    }
    if (data_port) {
        register_ioport_read(data_port, 1, 1, fw_cfg_io_readb, s);
        register_ioport_write(data_port, 1, 1, fw_cfg_io_writeb, s);
    }
    if (ctl_addr) {
339
        io_ctl_memory = cpu_register_io_memory(fw_cfg_ctl_mem_read,
340 341 342 343
                                           fw_cfg_ctl_mem_write, s);
        cpu_register_physical_memory(ctl_addr, FW_CFG_SIZE, io_ctl_memory);
    }
    if (data_addr) {
344
        io_data_memory = cpu_register_io_memory(fw_cfg_data_mem_read,
345 346 347 348
                                           fw_cfg_data_mem_write, s);
        cpu_register_physical_memory(data_addr, FW_CFG_SIZE, io_data_memory);
    }
    fw_cfg_add_bytes(s, FW_CFG_SIGNATURE, (uint8_t *)"QEMU", 4);
349
    fw_cfg_add_bytes(s, FW_CFG_UUID, qemu_uuid, 16);
350
    fw_cfg_add_i16(s, FW_CFG_NOGRAPHIC, (uint16_t)(display_type == DT_NOGRAPHIC));
351
    fw_cfg_add_i16(s, FW_CFG_NB_CPUS, (uint16_t)smp_cpus);
352
    fw_cfg_add_i16(s, FW_CFG_MAX_CPUS, (uint16_t)max_cpus);
353
    fw_cfg_add_i16(s, FW_CFG_BOOT_MENU, (uint16_t)boot_menu);
354

J
Juan Quintela 已提交
355
    vmstate_register(-1, &vmstate_fw_cfg, s);
356
    qemu_register_reset(fw_cfg_reset, s);
357 358 359

    return s;
}