loader.c 19.7 KB
Newer Older
B
bellard 已提交
1 2
/*
 * QEMU Executable loader
3
 *
B
bellard 已提交
4
 * Copyright (c) 2006 Fabrice Bellard
5
 *
B
bellard 已提交
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
 * 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.
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
 *
 * Gunzip functionality in this file is derived from u-boot:
 *
 * (C) Copyright 2008 Semihalf
 *
 * (C) Copyright 2000-2005
 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License as
 * published by the Free Software Foundation; either version 2 of
 * the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.	 See the
 * GNU General Public License for more details.
 *
41
 * You should have received a copy of the GNU General Public License along
42
 * with this program; if not, see <http://www.gnu.org/licenses/>.
B
bellard 已提交
43
 */
44

B
Blue Swirl 已提交
45
#include "hw.h"
B
bellard 已提交
46
#include "disas.h"
47
#include "monitor.h"
48
#include "sysemu.h"
P
pbrook 已提交
49
#include "uboot_image.h"
B
Blue Swirl 已提交
50
#include "loader.h"
51
#include "fw_cfg.h"
B
bellard 已提交
52

53 54
#include <zlib.h>

P
Paul Brook 已提交
55 56
static int roms_loaded;

B
bellard 已提交
57 58 59 60 61 62 63 64 65 66 67 68 69
/* return the size or -1 if error */
int get_image_size(const char *filename)
{
    int fd, size;
    fd = open(filename, O_RDONLY | O_BINARY);
    if (fd < 0)
        return -1;
    size = lseek(fd, 0, SEEK_END);
    close(fd);
    return size;
}

/* return the size or -1 if error */
70
/* deprecated, because caller does not specify buffer size! */
B
bellard 已提交
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
int load_image(const char *filename, uint8_t *addr)
{
    int fd, size;
    fd = open(filename, O_RDONLY | O_BINARY);
    if (fd < 0)
        return -1;
    size = lseek(fd, 0, SEEK_END);
    lseek(fd, 0, SEEK_SET);
    if (read(fd, addr, size) != size) {
        close(fd);
        return -1;
    }
    close(fd);
    return size;
}

87
/* read()-like version */
88 89
ssize_t read_targphys(const char *name,
                      int fd, target_phys_addr_t dst_addr, size_t nbytes)
90
{
91
    uint8_t *buf;
92
    ssize_t did;
93

94
    buf = g_malloc(nbytes);
95 96 97
    did = read(fd, buf, nbytes);
    if (did > 0)
        rom_add_blob_fixed("read", buf, did, dst_addr);
98
    g_free(buf);
99
    return did;
100 101 102 103
}

/* return the size or -1 if error */
int load_image_targphys(const char *filename,
A
Anthony Liguori 已提交
104
			target_phys_addr_t addr, int max_sz)
105
{
106
    int size;
107

108 109
    size = get_image_size(filename);
    if (size > 0)
G
Gleb Natapov 已提交
110
        rom_add_file_fixed(filename, addr, -1);
111
    return size;
112 113
}

114
void pstrcpy_targphys(const char *name, target_phys_addr_t dest, int buf_size,
115 116 117
                      const char *source)
{
    const char *nulp;
118
    char *ptr;
119 120 121 122

    if (buf_size <= 0) return;
    nulp = memchr(source, 0, buf_size);
    if (nulp) {
123
        rom_add_blob_fixed(name, source, (nulp - source) + 1, dest);
124
    } else {
125 126 127
        rom_add_blob_fixed(name, source, buf_size, dest);
        ptr = rom_ptr(dest + buf_size - 1);
        *ptr = 0;
128 129 130
    }
}

B
bellard 已提交
131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165
/* A.OUT loader */

struct exec
{
  uint32_t a_info;   /* Use macros N_MAGIC, etc for access */
  uint32_t a_text;   /* length of text, in bytes */
  uint32_t a_data;   /* length of data, in bytes */
  uint32_t a_bss;    /* length of uninitialized data area, in bytes */
  uint32_t a_syms;   /* length of symbol table data in file, in bytes */
  uint32_t a_entry;  /* start address */
  uint32_t a_trsize; /* length of relocation info for text, in bytes */
  uint32_t a_drsize; /* length of relocation info for data, in bytes */
};

static void bswap_ahdr(struct exec *e)
{
    bswap32s(&e->a_info);
    bswap32s(&e->a_text);
    bswap32s(&e->a_data);
    bswap32s(&e->a_bss);
    bswap32s(&e->a_syms);
    bswap32s(&e->a_entry);
    bswap32s(&e->a_trsize);
    bswap32s(&e->a_drsize);
}

#define N_MAGIC(exec) ((exec).a_info & 0xffff)
#define OMAGIC 0407
#define NMAGIC 0410
#define ZMAGIC 0413
#define QMAGIC 0314
#define _N_HDROFF(x) (1024 - sizeof (struct exec))
#define N_TXTOFF(x)							\
    (N_MAGIC(x) == ZMAGIC ? _N_HDROFF((x)) + sizeof (struct exec) :	\
     (N_MAGIC(x) == QMAGIC ? 0 : sizeof (struct exec)))
B
Blue Swirl 已提交
166 167
#define N_TXTADDR(x, target_page_size) (N_MAGIC(x) == QMAGIC ? target_page_size : 0)
#define _N_SEGMENT_ROUND(x, target_page_size) (((x) + target_page_size - 1) & ~(target_page_size - 1))
B
bellard 已提交
168

B
Blue Swirl 已提交
169
#define _N_TXTENDADDR(x, target_page_size) (N_TXTADDR(x, target_page_size)+(x).a_text)
B
bellard 已提交
170

B
Blue Swirl 已提交
171 172 173
#define N_DATADDR(x, target_page_size) \
    (N_MAGIC(x)==OMAGIC? (_N_TXTENDADDR(x, target_page_size)) \
     : (_N_SEGMENT_ROUND (_N_TXTENDADDR(x, target_page_size), target_page_size)))
B
bellard 已提交
174 175


A
Anthony Liguori 已提交
176 177
int load_aout(const char *filename, target_phys_addr_t addr, int max_sz,
              int bswap_needed, target_phys_addr_t target_page_size)
B
bellard 已提交
178
{
179 180
    int fd;
    ssize_t size, ret;
B
bellard 已提交
181 182 183 184 185 186 187 188 189 190 191
    struct exec e;
    uint32_t magic;

    fd = open(filename, O_RDONLY | O_BINARY);
    if (fd < 0)
        return -1;

    size = read(fd, &e, sizeof(e));
    if (size < 0)
        goto fail;

B
Blue Swirl 已提交
192 193 194
    if (bswap_needed) {
        bswap_ahdr(&e);
    }
B
bellard 已提交
195 196 197 198 199 200

    magic = N_MAGIC(e);
    switch (magic) {
    case ZMAGIC:
    case QMAGIC:
    case OMAGIC:
201 202
        if (e.a_text + e.a_data > max_sz)
            goto fail;
B
bellard 已提交
203
	lseek(fd, N_TXTOFF(e), SEEK_SET);
204
	size = read_targphys(filename, fd, addr, e.a_text + e.a_data);
B
bellard 已提交
205 206 207 208
	if (size < 0)
	    goto fail;
	break;
    case NMAGIC:
B
Blue Swirl 已提交
209
        if (N_DATADDR(e, target_page_size) + e.a_data > max_sz)
210
            goto fail;
B
bellard 已提交
211
	lseek(fd, N_TXTOFF(e), SEEK_SET);
212
	size = read_targphys(filename, fd, addr, e.a_text);
B
bellard 已提交
213 214
	if (size < 0)
	    goto fail;
215
        ret = read_targphys(filename, fd, addr + N_DATADDR(e, target_page_size),
B
Blue Swirl 已提交
216
                            e.a_data);
B
bellard 已提交
217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237
	if (ret < 0)
	    goto fail;
	size += ret;
	break;
    default:
	goto fail;
    }
    close(fd);
    return size;
 fail:
    close(fd);
    return -1;
}

/* ELF loader */

static void *load_at(int fd, int offset, int size)
{
    void *ptr;
    if (lseek(fd, offset, SEEK_SET) < 0)
        return NULL;
238
    ptr = g_malloc(size);
B
bellard 已提交
239
    if (read(fd, ptr, size) != size) {
240
        g_free(ptr);
B
bellard 已提交
241 242 243 244 245
        return NULL;
    }
    return ptr;
}

246 247 248
#ifdef ELF_CLASS
#undef ELF_CLASS
#endif
B
bellard 已提交
249 250 251 252 253 254

#define ELF_CLASS   ELFCLASS32
#include "elf.h"

#define SZ		32
#define elf_word        uint32_t
255
#define elf_sword        int32_t
B
bellard 已提交
256 257 258 259 260 261 262 263 264
#define bswapSZs	bswap32s
#include "elf_ops.h"

#undef elfhdr
#undef elf_phdr
#undef elf_shdr
#undef elf_sym
#undef elf_note
#undef elf_word
265
#undef elf_sword
B
bellard 已提交
266 267 268 269 270 271 272 273
#undef bswapSZs
#undef SZ
#define elfhdr		elf64_hdr
#define elf_phdr	elf64_phdr
#define elf_note	elf64_note
#define elf_shdr	elf64_shdr
#define elf_sym		elf64_sym
#define elf_word        uint64_t
274
#define elf_sword        int64_t
B
bellard 已提交
275 276 277 278 279
#define bswapSZs	bswap64s
#define SZ		64
#include "elf_ops.h"

/* return < 0 if error, otherwise the number of bytes loaded in memory */
280 281 282
int load_elf(const char *filename, uint64_t (*translate_fn)(void *, uint64_t),
             void *translate_opaque, uint64_t *pentry, uint64_t *lowaddr,
             uint64_t *highaddr, int big_endian, int elf_machine, int clear_lsb)
B
bellard 已提交
283
{
B
Blue Swirl 已提交
284
    int fd, data_order, target_data_order, must_swab, ret;
B
bellard 已提交
285 286
    uint8_t e_ident[EI_NIDENT];

B
bellard 已提交
287
    fd = open(filename, O_RDONLY | O_BINARY);
B
bellard 已提交
288 289 290 291 292 293 294 295 296 297 298
    if (fd < 0) {
        perror(filename);
        return -1;
    }
    if (read(fd, e_ident, sizeof(e_ident)) != sizeof(e_ident))
        goto fail;
    if (e_ident[0] != ELFMAG0 ||
        e_ident[1] != ELFMAG1 ||
        e_ident[2] != ELFMAG2 ||
        e_ident[3] != ELFMAG3)
        goto fail;
299
#ifdef HOST_WORDS_BIGENDIAN
B
bellard 已提交
300 301 302 303 304
    data_order = ELFDATA2MSB;
#else
    data_order = ELFDATA2LSB;
#endif
    must_swab = data_order != e_ident[EI_DATA];
B
Blue Swirl 已提交
305 306 307 308 309
    if (big_endian) {
        target_data_order = ELFDATA2MSB;
    } else {
        target_data_order = ELFDATA2LSB;
    }
310

B
Blue Swirl 已提交
311 312 313
    if (target_data_order != e_ident[EI_DATA]) {
        goto fail;
    }
314

B
bellard 已提交
315 316
    lseek(fd, 0, SEEK_SET);
    if (e_ident[EI_CLASS] == ELFCLASS64) {
317 318
        ret = load_elf64(filename, fd, translate_fn, translate_opaque, must_swab,
                         pentry, lowaddr, highaddr, elf_machine, clear_lsb);
B
bellard 已提交
319
    } else {
320 321
        ret = load_elf32(filename, fd, translate_fn, translate_opaque, must_swab,
                         pentry, lowaddr, highaddr, elf_machine, clear_lsb);
B
bellard 已提交
322 323 324 325 326 327 328 329 330
    }

    close(fd);
    return ret;

 fail:
    close(fd);
    return -1;
}
P
pbrook 已提交
331

A
Anthony Liguori 已提交
332
static void bswap_uboot_header(uboot_image_header_t *hdr)
P
pbrook 已提交
333
{
334
#ifndef HOST_WORDS_BIGENDIAN
P
pbrook 已提交
335 336 337 338 339 340 341 342 343 344
    bswap32s(&hdr->ih_magic);
    bswap32s(&hdr->ih_hcrc);
    bswap32s(&hdr->ih_time);
    bswap32s(&hdr->ih_size);
    bswap32s(&hdr->ih_load);
    bswap32s(&hdr->ih_ep);
    bswap32s(&hdr->ih_dcrc);
#endif
}

345 346 347 348 349 350 351 352 353 354

#define ZALLOC_ALIGNMENT	16

static void *zalloc(void *x, unsigned items, unsigned size)
{
    void *p;

    size *= items;
    size = (size + ZALLOC_ALIGNMENT - 1) & ~(ZALLOC_ALIGNMENT - 1);

355
    p = g_malloc(size);
356 357 358 359

    return (p);
}

S
Stefan Weil 已提交
360
static void zfree(void *x, void *addr)
361
{
362
    g_free(addr);
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 402 403 404 405 406 407
}


#define HEAD_CRC	2
#define EXTRA_FIELD	4
#define ORIG_NAME	8
#define COMMENT		0x10
#define RESERVED	0xe0

#define DEFLATED	8

/* This is the maximum in uboot, so if a uImage overflows this, it would
 * overflow on real hardware too. */
#define UBOOT_MAX_GUNZIP_BYTES 0x800000

static ssize_t gunzip(void *dst, size_t dstlen, uint8_t *src,
                      size_t srclen)
{
    z_stream s;
    ssize_t dstbytes;
    int r, i, flags;

    /* skip header */
    i = 10;
    flags = src[3];
    if (src[2] != DEFLATED || (flags & RESERVED) != 0) {
        puts ("Error: Bad gzipped data\n");
        return -1;
    }
    if ((flags & EXTRA_FIELD) != 0)
        i = 12 + src[10] + (src[11] << 8);
    if ((flags & ORIG_NAME) != 0)
        while (src[i++] != 0)
            ;
    if ((flags & COMMENT) != 0)
        while (src[i++] != 0)
            ;
    if ((flags & HEAD_CRC) != 0)
        i += 2;
    if (i >= srclen) {
        puts ("Error: gunzip out of data in header\n");
        return -1;
    }

    s.zalloc = zalloc;
S
Stefan Weil 已提交
408
    s.zfree = zfree;
409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429

    r = inflateInit2(&s, -MAX_WBITS);
    if (r != Z_OK) {
        printf ("Error: inflateInit2() returned %d\n", r);
        return (-1);
    }
    s.next_in = src + i;
    s.avail_in = srclen - i;
    s.next_out = dst;
    s.avail_out = dstlen;
    r = inflate(&s, Z_FINISH);
    if (r != Z_OK && r != Z_STREAM_END) {
        printf ("Error: inflate() returned %d\n", r);
        return -1;
    }
    dstbytes = s.next_out - (unsigned char *) dst;
    inflateEnd(&s);

    return dstbytes;
}

P
pbrook 已提交
430
/* Load a U-Boot image.  */
A
Anthony Liguori 已提交
431 432
int load_uimage(const char *filename, target_phys_addr_t *ep,
                target_phys_addr_t *loadaddr, int *is_linux)
P
pbrook 已提交
433 434 435
{
    int fd;
    int size;
A
Anthony Liguori 已提交
436 437
    uboot_image_header_t h;
    uboot_image_header_t *hdr = &h;
P
pbrook 已提交
438
    uint8_t *data = NULL;
439
    int ret = -1;
P
pbrook 已提交
440 441 442 443 444

    fd = open(filename, O_RDONLY | O_BINARY);
    if (fd < 0)
        return -1;

A
Anthony Liguori 已提交
445
    size = read(fd, hdr, sizeof(uboot_image_header_t));
P
pbrook 已提交
446
    if (size < 0)
447
        goto out;
P
pbrook 已提交
448 449 450 451

    bswap_uboot_header(hdr);

    if (hdr->ih_magic != IH_MAGIC)
452
        goto out;
P
pbrook 已提交
453

454 455 456
    /* TODO: Implement other image types.  */
    if (hdr->ih_type != IH_TYPE_KERNEL) {
        fprintf(stderr, "Can only load u-boot image type \"kernel\"\n");
457
        goto out;
P
pbrook 已提交
458 459
    }

460 461 462 463 464 465 466 467
    switch (hdr->ih_comp) {
    case IH_COMP_NONE:
    case IH_COMP_GZIP:
        break;
    default:
        fprintf(stderr,
                "Unable to load u-boot images with compression type %d\n",
                hdr->ih_comp);
468
        goto out;
P
pbrook 已提交
469 470 471 472
    }

    /* TODO: Check CPU type.  */
    if (is_linux) {
473
        if (hdr->ih_os == IH_OS_LINUX)
P
pbrook 已提交
474 475 476 477 478 479
            *is_linux = 1;
        else
            *is_linux = 0;
    }

    *ep = hdr->ih_ep;
480
    data = g_malloc(hdr->ih_size);
P
pbrook 已提交
481 482 483

    if (read(fd, data, hdr->ih_size) != hdr->ih_size) {
        fprintf(stderr, "Error reading file\n");
484
        goto out;
P
pbrook 已提交
485 486
    }

487 488 489 490 491 492 493
    if (hdr->ih_comp == IH_COMP_GZIP) {
        uint8_t *compressed_data;
        size_t max_bytes;
        ssize_t bytes;

        compressed_data = data;
        max_bytes = UBOOT_MAX_GUNZIP_BYTES;
494
        data = g_malloc(max_bytes);
495 496

        bytes = gunzip(data, max_bytes, compressed_data, hdr->ih_size);
497
        g_free(compressed_data);
498 499 500 501 502 503 504
        if (bytes < 0) {
            fprintf(stderr, "Unable to decompress gzipped image!\n");
            goto out;
        }
        hdr->ih_size = bytes;
    }

505
    rom_add_blob_fixed(filename, data, hdr->ih_size, hdr->ih_load);
P
pbrook 已提交
506

507 508 509
    if (loadaddr)
        *loadaddr = hdr->ih_load;

510
    ret = hdr->ih_size;
P
pbrook 已提交
511

512
out:
P
pbrook 已提交
513
    if (data)
514
        g_free(data);
P
pbrook 已提交
515
    close(fd);
516
    return ret;
P
pbrook 已提交
517
}
518 519 520 521 522 523 524 525 526 527 528 529 530 531 532

/*
 * Functions for reboot-persistent memory regions.
 *  - used for vga bios and option roms.
 *  - also linux kernel (-kernel / -initrd).
 */

typedef struct Rom Rom;

struct Rom {
    char *name;
    char *path;
    size_t romsize;
    uint8_t *data;
    int isrom;
533 534
    char *fw_dir;
    char *fw_file;
535 536 537 538 539

    target_phys_addr_t addr;
    QTAILQ_ENTRY(Rom) next;
};

G
Gerd Hoffmann 已提交
540
static FWCfgState *fw_cfg;
541 542 543 544 545 546
static QTAILQ_HEAD(, Rom) roms = QTAILQ_HEAD_INITIALIZER(roms);

static void rom_insert(Rom *rom)
{
    Rom *item;

P
Paul Brook 已提交
547 548 549 550
    if (roms_loaded) {
        hw_error ("ROM images must be loaded at startup\n");
    }

551 552
    /* list is ordered by load address */
    QTAILQ_FOREACH(item, &roms, next) {
553
        if (rom->addr >= item->addr)
554 555 556 557 558 559 560
            continue;
        QTAILQ_INSERT_BEFORE(item, rom, next);
        return;
    }
    QTAILQ_INSERT_TAIL(&roms, rom, next);
}

G
Gerd Hoffmann 已提交
561
int rom_add_file(const char *file, const char *fw_dir,
G
Gleb Natapov 已提交
562
                 target_phys_addr_t addr, int32_t bootindex)
563 564 565
{
    Rom *rom;
    int rc, fd = -1;
G
Gleb Natapov 已提交
566
    char devpath[100];
567

568 569
    rom = g_malloc0(sizeof(*rom));
    rom->name = g_strdup(file);
570 571
    rom->path = qemu_find_file(QEMU_FILE_TYPE_BIOS, rom->name);
    if (rom->path == NULL) {
572
        rom->path = g_strdup(file);
573 574
    }

575
    fd = open(rom->path, O_RDONLY | O_BINARY);
576 577 578 579 580 581
    if (fd == -1) {
        fprintf(stderr, "Could not open option rom '%s': %s\n",
                rom->path, strerror(errno));
        goto err;
    }

G
Gerd Hoffmann 已提交
582
    if (fw_dir) {
583 584
        rom->fw_dir  = g_strdup(fw_dir);
        rom->fw_file = g_strdup(file);
G
Gerd Hoffmann 已提交
585
    }
586
    rom->addr    = addr;
587
    rom->romsize = lseek(fd, 0, SEEK_END);
588
    rom->data    = g_malloc0(rom->romsize);
589 590 591 592 593 594 595 596 597
    lseek(fd, 0, SEEK_SET);
    rc = read(fd, rom->data, rom->romsize);
    if (rc != rom->romsize) {
        fprintf(stderr, "rom: file %-20s: read error: rc=%d (expected %zd)\n",
                rom->name, rc, rom->romsize);
        goto err;
    }
    close(fd);
    rom_insert(rom);
598 599 600 601 602 603 604 605 606 607 608 609 610
    if (rom->fw_file && fw_cfg) {
        const char *basename;
        char fw_file_name[56];

        basename = strrchr(rom->fw_file, '/');
        if (basename) {
            basename++;
        } else {
            basename = rom->fw_file;
        }
        snprintf(fw_file_name, sizeof(fw_file_name), "%s/%s", rom->fw_dir,
                 basename);
        fw_cfg_add_file(fw_cfg, fw_file_name, rom->data, rom->romsize);
G
Gleb Natapov 已提交
611 612 613
        snprintf(devpath, sizeof(devpath), "/rom@%s", fw_file_name);
    } else {
        snprintf(devpath, sizeof(devpath), "/rom@" TARGET_FMT_plx, addr);
614
    }
G
Gleb Natapov 已提交
615 616

    add_boot_device_path(bootindex, NULL, devpath);
617 618 619 620 621
    return 0;

err:
    if (fd != -1)
        close(fd);
622 623 624 625
    g_free(rom->data);
    g_free(rom->path);
    g_free(rom->name);
    g_free(rom);
626 627 628 629
    return -1;
}

int rom_add_blob(const char *name, const void *blob, size_t len,
630
                 target_phys_addr_t addr)
631 632 633
{
    Rom *rom;

634 635
    rom = g_malloc0(sizeof(*rom));
    rom->name    = g_strdup(name);
636
    rom->addr    = addr;
637
    rom->romsize = len;
638
    rom->data    = g_malloc0(rom->romsize);
639 640 641 642 643
    memcpy(rom->data, blob, len);
    rom_insert(rom);
    return 0;
}

644 645
int rom_add_vga(const char *file)
{
G
Gleb Natapov 已提交
646
    return rom_add_file(file, "vgaroms", 0, -1);
647 648
}

G
Gleb Natapov 已提交
649
int rom_add_option(const char *file, int32_t bootindex)
650
{
G
Gleb Natapov 已提交
651
    return rom_add_file(file, "genroms", 0, bootindex);
652 653
}

654 655 656 657 658
static void rom_reset(void *unused)
{
    Rom *rom;

    QTAILQ_FOREACH(rom, &roms, next) {
659 660 661
        if (rom->fw_file) {
            continue;
        }
G
Gerd Hoffmann 已提交
662
        if (rom->data == NULL) {
663
            continue;
G
Gerd Hoffmann 已提交
664
        }
665 666 667
        cpu_physical_memory_write_rom(rom->addr, rom->data, rom->romsize);
        if (rom->isrom) {
            /* rom needs to be written only once */
668
            g_free(rom->data);
669 670 671 672 673 674 675 676 677 678 679 680
            rom->data = NULL;
        }
    }
}

int rom_load_all(void)
{
    target_phys_addr_t addr = 0;
    int memtype;
    Rom *rom;

    QTAILQ_FOREACH(rom, &roms, next) {
681 682 683
        if (rom->fw_file) {
            continue;
        }
684 685 686 687 688 689
        if (addr > rom->addr) {
            fprintf(stderr, "rom: requested regions overlap "
                    "(rom %s. free=0x" TARGET_FMT_plx
                    ", addr=0x" TARGET_FMT_plx ")\n",
                    rom->name, addr, rom->addr);
            return -1;
690
        }
691
        addr  = rom->addr;
692 693 694 695 696 697
        addr += rom->romsize;
        memtype = cpu_get_physical_page_desc(rom->addr) & (3 << IO_MEM_SHIFT);
        if (memtype == IO_MEM_ROM)
            rom->isrom = 1;
    }
    qemu_register_reset(rom_reset, NULL);
P
Paul Brook 已提交
698
    roms_loaded = 1;
699 700 701
    return 0;
}

G
Gerd Hoffmann 已提交
702
void rom_set_fw(void *f)
703
{
G
Gerd Hoffmann 已提交
704
    fw_cfg = f;
705 706
}

707 708 709 710 711
static Rom *find_rom(target_phys_addr_t addr)
{
    Rom *rom;

    QTAILQ_FOREACH(rom, &roms, next) {
712 713 714
        if (rom->fw_file) {
            continue;
        }
G
Gerd Hoffmann 已提交
715
        if (rom->addr > addr) {
716
            continue;
G
Gerd Hoffmann 已提交
717 718
        }
        if (rom->addr + rom->romsize < addr) {
719
            continue;
G
Gerd Hoffmann 已提交
720
        }
721 722 723 724 725
        return rom;
    }
    return NULL;
}

K
Kevin Wolf 已提交
726 727 728 729 730
/*
 * Copies memory from registered ROMs to dest. Any memory that is contained in
 * a ROM between addr and addr + size is copied. Note that this can involve
 * multiple ROMs, which need not start at addr and need not end at addr + size.
 */
A
Alexander Graf 已提交
731 732 733 734 735 736 737 738
int rom_copy(uint8_t *dest, target_phys_addr_t addr, size_t size)
{
    target_phys_addr_t end = addr + size;
    uint8_t *s, *d = dest;
    size_t l = 0;
    Rom *rom;

    QTAILQ_FOREACH(rom, &roms, next) {
739 740 741
        if (rom->fw_file) {
            continue;
        }
G
Gerd Hoffmann 已提交
742
        if (rom->addr + rom->romsize < addr) {
743
            continue;
G
Gerd Hoffmann 已提交
744 745
        }
        if (rom->addr > end) {
A
Alexander Graf 已提交
746
            break;
G
Gerd Hoffmann 已提交
747 748
        }
        if (!rom->data) {
A
Alexander Graf 已提交
749
            continue;
G
Gerd Hoffmann 已提交
750
        }
A
Alexander Graf 已提交
751

752
        d = dest + (rom->addr - addr);
A
Alexander Graf 已提交
753 754 755 756 757 758 759 760 761 762 763 764 765
        s = rom->data;
        l = rom->romsize;

        if ((d + l) > (dest + size)) {
            l = dest - d;
        }

        memcpy(d, s, l);
    }

    return (d + l) - dest;
}

766 767 768 769 770 771 772
void *rom_ptr(target_phys_addr_t addr)
{
    Rom *rom;

    rom = find_rom(addr);
    if (!rom || !rom->data)
        return NULL;
773
    return rom->data + (addr - rom->addr);
774 775
}

776 777 778 779 780
void do_info_roms(Monitor *mon)
{
    Rom *rom;

    QTAILQ_FOREACH(rom, &roms, next) {
781
        if (!rom->fw_file) {
782
            monitor_printf(mon, "addr=" TARGET_FMT_plx
783
                           " size=0x%06zx mem=%s name=\"%s\"\n",
784 785 786 787
                           rom->addr, rom->romsize,
                           rom->isrom ? "rom" : "ram",
                           rom->name);
        } else {
G
Gerd Hoffmann 已提交
788
            monitor_printf(mon, "fw=%s/%s"
789
                           " size=0x%06zx name=\"%s\"\n",
G
Gerd Hoffmann 已提交
790
                           rom->fw_dir,
791 792 793 794
                           rom->fw_file,
                           rom->romsize,
                           rom->name);
        }
795 796
    }
}