Statistics
| Branch: | Revision:

root / hw / ppc440_bamboo.c @ 9306acb5

History | View | Annotate | Download (5.7 kB)

1 2c9fade2 aurel32
/*
2 2c9fade2 aurel32
 * Qemu PowerPC 440 Bamboo board emulation
3 2c9fade2 aurel32
 *
4 2c9fade2 aurel32
 * Copyright 2007 IBM Corporation.
5 2c9fade2 aurel32
 * Authors:
6 2c9fade2 aurel32
 *         Jerone Young <jyoung5@us.ibm.com>
7 2c9fade2 aurel32
 *         Christian Ehrhardt <ehrhardt@linux.vnet.ibm.com>
8 2c9fade2 aurel32
 *         Hollis Blanchard <hollisb@us.ibm.com>
9 2c9fade2 aurel32
 *
10 2c9fade2 aurel32
 * This work is licensed under the GNU GPL license version 2 or later.
11 2c9fade2 aurel32
 *
12 2c9fade2 aurel32
 */
13 2c9fade2 aurel32
14 2c9fade2 aurel32
#include "config.h"
15 2c9fade2 aurel32
#include "qemu-common.h"
16 2c9fade2 aurel32
#include "net.h"
17 2c9fade2 aurel32
#include "hw.h"
18 2c9fade2 aurel32
#include "pci.h"
19 2c9fade2 aurel32
#include "virtio-blk.h"
20 5fc1503e aliguori
#include "virtio-console.h"
21 2c9fade2 aurel32
#include "boards.h"
22 2c9fade2 aurel32
#include "sysemu.h"
23 2c9fade2 aurel32
#include "ppc440.h"
24 2c9fade2 aurel32
#include "kvm.h"
25 2c9fade2 aurel32
#include "kvm_ppc.h"
26 2c9fade2 aurel32
#include "device_tree.h"
27 2c9fade2 aurel32
28 2c9fade2 aurel32
#define BINARY_DEVICE_TREE_FILE "bamboo.dtb"
29 2c9fade2 aurel32
30 7ec632b4 pbrook
static void *bamboo_load_device_tree(target_phys_addr_t addr,
31 2c9fade2 aurel32
                                     uint32_t ramsize,
32 2c9fade2 aurel32
                                     target_phys_addr_t initrd_base,
33 2c9fade2 aurel32
                                     target_phys_addr_t initrd_size,
34 2c9fade2 aurel32
                                     const char *kernel_cmdline)
35 2c9fade2 aurel32
{
36 2c9fade2 aurel32
    void *fdt = NULL;
37 2c9fade2 aurel32
#ifdef HAVE_FDT
38 2c9fade2 aurel32
    uint32_t mem_reg_property[] = { 0, 0, ramsize };
39 2c9fade2 aurel32
    char *path;
40 7ec632b4 pbrook
    int fdt_size;
41 2c9fade2 aurel32
    int pathlen;
42 2c9fade2 aurel32
    int ret;
43 2c9fade2 aurel32
44 2c9fade2 aurel32
    pathlen = snprintf(NULL, 0, "%s/%s", bios_dir, BINARY_DEVICE_TREE_FILE) + 1;
45 2c9fade2 aurel32
    path = qemu_malloc(pathlen);
46 2c9fade2 aurel32
47 2c9fade2 aurel32
    snprintf(path, pathlen, "%s/%s", bios_dir, BINARY_DEVICE_TREE_FILE);
48 2c9fade2 aurel32
49 7ec632b4 pbrook
    fdt = load_device_tree(path, &fdt_size);
50 2c9fade2 aurel32
    free(path);
51 2c9fade2 aurel32
    if (fdt == NULL)
52 2c9fade2 aurel32
        goto out;
53 2c9fade2 aurel32
54 2c9fade2 aurel32
    /* Manipulate device tree in memory. */
55 2c9fade2 aurel32
56 2c9fade2 aurel32
    ret = qemu_devtree_setprop(fdt, "/memory", "reg", mem_reg_property,
57 2c9fade2 aurel32
                               sizeof(mem_reg_property));
58 2c9fade2 aurel32
    if (ret < 0)
59 2c9fade2 aurel32
        fprintf(stderr, "couldn't set /memory/reg\n");
60 2c9fade2 aurel32
61 2c9fade2 aurel32
    ret = qemu_devtree_setprop_cell(fdt, "/chosen", "linux,initrd-start",
62 2c9fade2 aurel32
                                    initrd_base);
63 2c9fade2 aurel32
    if (ret < 0)
64 2c9fade2 aurel32
        fprintf(stderr, "couldn't set /chosen/linux,initrd-start\n");
65 2c9fade2 aurel32
66 2c9fade2 aurel32
    ret = qemu_devtree_setprop_cell(fdt, "/chosen", "linux,initrd-end",
67 2c9fade2 aurel32
                                    (initrd_base + initrd_size));
68 2c9fade2 aurel32
    if (ret < 0)
69 2c9fade2 aurel32
        fprintf(stderr, "couldn't set /chosen/linux,initrd-end\n");
70 2c9fade2 aurel32
71 2c9fade2 aurel32
    ret = qemu_devtree_setprop_string(fdt, "/chosen", "bootargs",
72 2c9fade2 aurel32
                                      kernel_cmdline);
73 2c9fade2 aurel32
    if (ret < 0)
74 2c9fade2 aurel32
        fprintf(stderr, "couldn't set /chosen/bootargs\n");
75 2c9fade2 aurel32
76 2c9fade2 aurel32
    if (kvm_enabled())
77 2c9fade2 aurel32
        kvmppc_fdt_update(fdt);
78 2c9fade2 aurel32
79 7ec632b4 pbrook
    cpu_physical_memory_write (addr, (void *)fdt, fdt_size);
80 7ec632b4 pbrook
81 2c9fade2 aurel32
out:
82 2c9fade2 aurel32
#endif
83 2c9fade2 aurel32
84 2c9fade2 aurel32
    return fdt;
85 2c9fade2 aurel32
}
86 2c9fade2 aurel32
87 2c9fade2 aurel32
static void bamboo_init(ram_addr_t ram_size, int vga_ram_size,
88 a147d62b blueswir1
                        const char *boot_device,
89 2c9fade2 aurel32
                        const char *kernel_filename,
90 2c9fade2 aurel32
                        const char *kernel_cmdline,
91 2c9fade2 aurel32
                        const char *initrd_filename,
92 2c9fade2 aurel32
                        const char *cpu_model)
93 2c9fade2 aurel32
{
94 2c9fade2 aurel32
    unsigned int pci_irq_nrs[4] = { 28, 27, 26, 25 };
95 2c9fade2 aurel32
    PCIBus *pcibus;
96 2c9fade2 aurel32
    CPUState *env;
97 2c9fade2 aurel32
    uint64_t elf_entry;
98 2c9fade2 aurel32
    uint64_t elf_lowaddr;
99 2c9fade2 aurel32
    target_ulong entry = 0;
100 2c9fade2 aurel32
    target_ulong loadaddr = 0;
101 2c9fade2 aurel32
    target_long kernel_size = 0;
102 2c9fade2 aurel32
    target_ulong initrd_base = 0;
103 2c9fade2 aurel32
    target_long initrd_size = 0;
104 2c9fade2 aurel32
    target_ulong dt_base = 0;
105 2c9fade2 aurel32
    void *fdt;
106 2c9fade2 aurel32
    int i;
107 2c9fade2 aurel32
108 2c9fade2 aurel32
    /* Setup CPU. */
109 2c9fade2 aurel32
    env = ppc440ep_init(&ram_size, &pcibus, pci_irq_nrs, 1);
110 2c9fade2 aurel32
111 2c9fade2 aurel32
    if (pcibus) {
112 2c9fade2 aurel32
        int unit_id = 0;
113 2c9fade2 aurel32
114 2c9fade2 aurel32
        /* Add virtio block devices. */
115 2c9fade2 aurel32
        while ((i = drive_get_index(IF_VIRTIO, 0, unit_id)) != -1) {
116 2c9fade2 aurel32
            virtio_blk_init(pcibus, drives_table[i].bdrv);
117 2c9fade2 aurel32
            unit_id++;
118 2c9fade2 aurel32
        }
119 2c9fade2 aurel32
120 5fc1503e aliguori
        /* Add virtio console devices */
121 5fc1503e aliguori
        for(i = 0; i < MAX_VIRTIO_CONSOLES; i++) {
122 5fc1503e aliguori
            if (virtcon_hds[i])
123 5fc1503e aliguori
                virtio_console_init(pcibus, virtcon_hds[i]);
124 5fc1503e aliguori
        }
125 5fc1503e aliguori
126 2c9fade2 aurel32
        /* Register network interfaces. */
127 2c9fade2 aurel32
        for (i = 0; i < nb_nics; i++) {
128 cb457d76 aliguori
            /* There are no PCI NICs on the Bamboo board, but there are
129 cb457d76 aliguori
             * PCI slots, so we can pick whatever default model we want. */
130 cb457d76 aliguori
            pci_nic_init(pcibus, &nd_table[i], -1, "e1000");
131 2c9fade2 aurel32
        }
132 2c9fade2 aurel32
    }
133 2c9fade2 aurel32
134 2c9fade2 aurel32
    /* Load kernel. */
135 2c9fade2 aurel32
    if (kernel_filename) {
136 2c9fade2 aurel32
        kernel_size = load_uimage(kernel_filename, &entry, &loadaddr, NULL);
137 2c9fade2 aurel32
        if (kernel_size < 0) {
138 2c9fade2 aurel32
            kernel_size = load_elf(kernel_filename, 0, &elf_entry, &elf_lowaddr,
139 2c9fade2 aurel32
                                   NULL);
140 2c9fade2 aurel32
            entry = elf_entry;
141 2c9fade2 aurel32
            loadaddr = elf_lowaddr;
142 2c9fade2 aurel32
        }
143 2c9fade2 aurel32
        /* XXX try again as binary */
144 2c9fade2 aurel32
        if (kernel_size < 0) {
145 2c9fade2 aurel32
            fprintf(stderr, "qemu: could not load kernel '%s'\n",
146 2c9fade2 aurel32
                    kernel_filename);
147 2c9fade2 aurel32
            exit(1);
148 2c9fade2 aurel32
        }
149 2c9fade2 aurel32
    }
150 2c9fade2 aurel32
151 2c9fade2 aurel32
    /* Load initrd. */
152 2c9fade2 aurel32
    if (initrd_filename) {
153 2c9fade2 aurel32
        initrd_base = kernel_size + loadaddr;
154 dcac9679 pbrook
        initrd_size = load_image_targphys(initrd_filename, initrd_base,
155 dcac9679 pbrook
                                          ram_size - initrd_base);
156 2c9fade2 aurel32
157 2c9fade2 aurel32
        if (initrd_size < 0) {
158 2c9fade2 aurel32
            fprintf(stderr, "qemu: could not load initial ram disk '%s'\n",
159 2c9fade2 aurel32
                    initrd_filename);
160 2c9fade2 aurel32
            exit(1);
161 2c9fade2 aurel32
        }
162 2c9fade2 aurel32
    }
163 2c9fade2 aurel32
164 2c9fade2 aurel32
    /* If we're loading a kernel directly, we must load the device tree too. */
165 2c9fade2 aurel32
    if (kernel_filename) {
166 2c9fade2 aurel32
        if (initrd_base)
167 2c9fade2 aurel32
            dt_base = initrd_base + initrd_size;
168 2c9fade2 aurel32
        else
169 2c9fade2 aurel32
            dt_base = kernel_size + loadaddr;
170 2c9fade2 aurel32
171 7ec632b4 pbrook
        fdt = bamboo_load_device_tree(dt_base, ram_size,
172 2c9fade2 aurel32
                                      initrd_base, initrd_size, kernel_cmdline);
173 2c9fade2 aurel32
        if (fdt == NULL) {
174 2c9fade2 aurel32
            fprintf(stderr, "couldn't load device tree\n");
175 2c9fade2 aurel32
            exit(1);
176 2c9fade2 aurel32
        }
177 2c9fade2 aurel32
178 2c9fade2 aurel32
        /* Set initial guest state. */
179 2c9fade2 aurel32
        env->gpr[1] = (16<<20) - 8;
180 2c9fade2 aurel32
        env->gpr[3] = dt_base;
181 2c9fade2 aurel32
        env->nip = entry;
182 2c9fade2 aurel32
        /* XXX we currently depend on KVM to create some initial TLB entries. */
183 2c9fade2 aurel32
    }
184 2c9fade2 aurel32
185 2c9fade2 aurel32
    if (kvm_enabled())
186 2c9fade2 aurel32
        kvmppc_init();
187 2c9fade2 aurel32
}
188 2c9fade2 aurel32
189 2c9fade2 aurel32
QEMUMachine bamboo_machine = {
190 2c9fade2 aurel32
    .name = "bamboo",
191 2c9fade2 aurel32
    .desc = "bamboo",
192 2c9fade2 aurel32
    .init = bamboo_init,
193 2c9fade2 aurel32
};