Statistics
| Branch: | Revision:

root / hw / milkymist.c @ 06114d72

History | View | Annotate | Download (6.7 kB)

1 5052d227 Michael Walle
/*
2 5052d227 Michael Walle
 *  QEMU model for the Milkymist board.
3 5052d227 Michael Walle
 *
4 5052d227 Michael Walle
 *  Copyright (c) 2010 Michael Walle <michael@walle.cc>
5 5052d227 Michael Walle
 *
6 5052d227 Michael Walle
 * This library is free software; you can redistribute it and/or
7 5052d227 Michael Walle
 * modify it under the terms of the GNU Lesser General Public
8 5052d227 Michael Walle
 * License as published by the Free Software Foundation; either
9 5052d227 Michael Walle
 * version 2 of the License, or (at your option) any later version.
10 5052d227 Michael Walle
 *
11 5052d227 Michael Walle
 * This library is distributed in the hope that it will be useful,
12 5052d227 Michael Walle
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 5052d227 Michael Walle
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 5052d227 Michael Walle
 * Lesser General Public License for more details.
15 5052d227 Michael Walle
 *
16 5052d227 Michael Walle
 * You should have received a copy of the GNU Lesser General Public
17 5052d227 Michael Walle
 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
18 5052d227 Michael Walle
 */
19 5052d227 Michael Walle
20 5052d227 Michael Walle
#include "sysbus.h"
21 5052d227 Michael Walle
#include "hw.h"
22 5052d227 Michael Walle
#include "net.h"
23 5052d227 Michael Walle
#include "flash.h"
24 5052d227 Michael Walle
#include "sysemu.h"
25 5052d227 Michael Walle
#include "devices.h"
26 5052d227 Michael Walle
#include "boards.h"
27 5052d227 Michael Walle
#include "loader.h"
28 5052d227 Michael Walle
#include "elf.h"
29 5052d227 Michael Walle
#include "blockdev.h"
30 5052d227 Michael Walle
#include "milkymist-hw.h"
31 5052d227 Michael Walle
#include "lm32.h"
32 c50a6def Avi Kivity
#include "exec-memory.h"
33 5052d227 Michael Walle
34 5052d227 Michael Walle
#define BIOS_FILENAME    "mmone-bios.bin"
35 5052d227 Michael Walle
#define BIOS_OFFSET      0x00860000
36 5052d227 Michael Walle
#define BIOS_SIZE        (512*1024)
37 5052d227 Michael Walle
#define KERNEL_LOAD_ADDR 0x40000000
38 5052d227 Michael Walle
39 5052d227 Michael Walle
typedef struct {
40 5052d227 Michael Walle
    CPUState *env;
41 5052d227 Michael Walle
    target_phys_addr_t bootstrap_pc;
42 5052d227 Michael Walle
    target_phys_addr_t flash_base;
43 5052d227 Michael Walle
    target_phys_addr_t initrd_base;
44 5052d227 Michael Walle
    size_t initrd_size;
45 5052d227 Michael Walle
    target_phys_addr_t cmdline_base;
46 5052d227 Michael Walle
} ResetInfo;
47 5052d227 Michael Walle
48 5052d227 Michael Walle
static void cpu_irq_handler(void *opaque, int irq, int level)
49 5052d227 Michael Walle
{
50 5052d227 Michael Walle
    CPUState *env = opaque;
51 5052d227 Michael Walle
52 5052d227 Michael Walle
    if (level) {
53 5052d227 Michael Walle
        cpu_interrupt(env, CPU_INTERRUPT_HARD);
54 5052d227 Michael Walle
    } else {
55 5052d227 Michael Walle
        cpu_reset_interrupt(env, CPU_INTERRUPT_HARD);
56 5052d227 Michael Walle
    }
57 5052d227 Michael Walle
}
58 5052d227 Michael Walle
59 5052d227 Michael Walle
static void main_cpu_reset(void *opaque)
60 5052d227 Michael Walle
{
61 5052d227 Michael Walle
    ResetInfo *reset_info = opaque;
62 5052d227 Michael Walle
    CPUState *env = reset_info->env;
63 5052d227 Michael Walle
64 5052d227 Michael Walle
    cpu_reset(env);
65 5052d227 Michael Walle
66 5052d227 Michael Walle
    /* init defaults */
67 5052d227 Michael Walle
    env->pc = reset_info->bootstrap_pc;
68 5052d227 Michael Walle
    env->regs[R_R1] = reset_info->cmdline_base;
69 5052d227 Michael Walle
    env->regs[R_R2] = reset_info->initrd_base;
70 5052d227 Michael Walle
    env->regs[R_R3] = reset_info->initrd_base + reset_info->initrd_size;
71 5052d227 Michael Walle
    env->eba = reset_info->flash_base;
72 5052d227 Michael Walle
    env->deba = reset_info->flash_base;
73 5052d227 Michael Walle
}
74 5052d227 Michael Walle
75 5052d227 Michael Walle
static void
76 5052d227 Michael Walle
milkymist_init(ram_addr_t ram_size_not_used,
77 5052d227 Michael Walle
                          const char *boot_device,
78 5052d227 Michael Walle
                          const char *kernel_filename,
79 5052d227 Michael Walle
                          const char *kernel_cmdline,
80 5052d227 Michael Walle
                          const char *initrd_filename, const char *cpu_model)
81 5052d227 Michael Walle
{
82 5052d227 Michael Walle
    CPUState *env;
83 5052d227 Michael Walle
    int kernel_size;
84 5052d227 Michael Walle
    DriveInfo *dinfo;
85 c50a6def Avi Kivity
    MemoryRegion *address_space_mem = get_system_memory();
86 c50a6def Avi Kivity
    MemoryRegion *phys_sdram = g_new(MemoryRegion, 1);
87 5052d227 Michael Walle
    qemu_irq irq[32], *cpu_irq;
88 5052d227 Michael Walle
    int i;
89 5052d227 Michael Walle
    char *bios_filename;
90 5052d227 Michael Walle
    ResetInfo *reset_info;
91 5052d227 Michael Walle
92 5052d227 Michael Walle
    /* memory map */
93 5052d227 Michael Walle
    target_phys_addr_t flash_base   = 0x00000000;
94 5052d227 Michael Walle
    size_t flash_sector_size        = 128 * 1024;
95 5052d227 Michael Walle
    size_t flash_size               = 32 * 1024 * 1024;
96 5052d227 Michael Walle
    target_phys_addr_t sdram_base   = 0x40000000;
97 5052d227 Michael Walle
    size_t sdram_size               = 128 * 1024 * 1024;
98 5052d227 Michael Walle
99 5052d227 Michael Walle
    target_phys_addr_t initrd_base  = sdram_base + 0x1002000;
100 5052d227 Michael Walle
    target_phys_addr_t cmdline_base = sdram_base + 0x1000000;
101 5052d227 Michael Walle
    size_t initrd_max = sdram_size - 0x1002000;
102 5052d227 Michael Walle
103 7267c094 Anthony Liguori
    reset_info = g_malloc0(sizeof(ResetInfo));
104 5052d227 Michael Walle
105 5052d227 Michael Walle
    if (cpu_model == NULL) {
106 5052d227 Michael Walle
        cpu_model = "lm32-full";
107 5052d227 Michael Walle
    }
108 5052d227 Michael Walle
    env = cpu_init(cpu_model);
109 5052d227 Michael Walle
    reset_info->env = env;
110 5052d227 Michael Walle
111 5052d227 Michael Walle
    cpu_lm32_set_phys_msb_ignore(env, 1);
112 5052d227 Michael Walle
113 c5705a77 Avi Kivity
    memory_region_init_ram(phys_sdram, "milkymist.sdram", sdram_size);
114 c5705a77 Avi Kivity
    vmstate_register_ram_global(phys_sdram);
115 c50a6def Avi Kivity
    memory_region_add_subregion(address_space_mem, sdram_base, phys_sdram);
116 5052d227 Michael Walle
117 5052d227 Michael Walle
    dinfo = drive_get(IF_PFLASH, 0, 0);
118 5052d227 Michael Walle
    /* Numonyx JS28F256J3F105 */
119 cfe5f011 Avi Kivity
    pflash_cfi01_register(flash_base, NULL, "milkymist.flash", flash_size,
120 5052d227 Michael Walle
                          dinfo ? dinfo->bdrv : NULL, flash_sector_size,
121 5052d227 Michael Walle
                          flash_size / flash_sector_size, 2,
122 01e0451a Anthony Liguori
                          0x00, 0x89, 0x00, 0x1d, 1);
123 5052d227 Michael Walle
124 5052d227 Michael Walle
    /* create irq lines */
125 5052d227 Michael Walle
    cpu_irq = qemu_allocate_irqs(cpu_irq_handler, env, 1);
126 5052d227 Michael Walle
    env->pic_state = lm32_pic_init(*cpu_irq);
127 5052d227 Michael Walle
    for (i = 0; i < 32; i++) {
128 5052d227 Michael Walle
        irq[i] = qdev_get_gpio_in(env->pic_state, i);
129 5052d227 Michael Walle
    }
130 5052d227 Michael Walle
131 5052d227 Michael Walle
    /* load bios rom */
132 5052d227 Michael Walle
    if (bios_name == NULL) {
133 5052d227 Michael Walle
        bios_name = BIOS_FILENAME;
134 5052d227 Michael Walle
    }
135 5052d227 Michael Walle
    bios_filename = qemu_find_file(QEMU_FILE_TYPE_BIOS, bios_name);
136 5052d227 Michael Walle
137 5052d227 Michael Walle
    if (bios_filename) {
138 5052d227 Michael Walle
        load_image_targphys(bios_filename, BIOS_OFFSET, BIOS_SIZE);
139 5052d227 Michael Walle
    }
140 5052d227 Michael Walle
141 5052d227 Michael Walle
    reset_info->bootstrap_pc = BIOS_OFFSET;
142 5052d227 Michael Walle
143 5052d227 Michael Walle
    /* if no kernel is given no valid bios rom is a fatal error */
144 5052d227 Michael Walle
    if (!kernel_filename && !dinfo && !bios_filename) {
145 5052d227 Michael Walle
        fprintf(stderr, "qemu: could not load Milkymist One bios '%s'\n",
146 5052d227 Michael Walle
                bios_name);
147 5052d227 Michael Walle
        exit(1);
148 5052d227 Michael Walle
    }
149 5052d227 Michael Walle
150 fcfa3397 Michael Walle
    milkymist_uart_create(0x60000000, irq[0]);
151 779277ca Michael Walle
    milkymist_sysctl_create(0x60001000, irq[1], irq[2], irq[3],
152 5052d227 Michael Walle
            80000000, 0x10014d31, 0x0000041f, 0x00000001);
153 5052d227 Michael Walle
    milkymist_hpdmc_create(0x60002000);
154 5052d227 Michael Walle
    milkymist_vgafb_create(0x60003000, 0x40000000, 0x0fffffff);
155 5052d227 Michael Walle
    milkymist_memcard_create(0x60004000);
156 779277ca Michael Walle
    milkymist_ac97_create(0x60005000, irq[4], irq[5], irq[6], irq[7]);
157 779277ca Michael Walle
    milkymist_pfpu_create(0x60006000, irq[8]);
158 779277ca Michael Walle
    milkymist_tmu2_create(0x60007000, irq[9]);
159 779277ca Michael Walle
    milkymist_minimac2_create(0x60008000, 0x30000000, irq[10], irq[11]);
160 779277ca Michael Walle
    milkymist_softusb_create(0x6000f000, irq[15],
161 5052d227 Michael Walle
            0x20000000, 0x1000, 0x20020000, 0x2000);
162 5052d227 Michael Walle
163 5052d227 Michael Walle
    /* make sure juart isn't the first chardev */
164 5052d227 Michael Walle
    env->juart_state = lm32_juart_init();
165 5052d227 Michael Walle
166 5052d227 Michael Walle
    if (kernel_filename) {
167 5052d227 Michael Walle
        uint64_t entry;
168 5052d227 Michael Walle
169 5052d227 Michael Walle
        /* Boots a kernel elf binary.  */
170 5052d227 Michael Walle
        kernel_size = load_elf(kernel_filename, NULL, NULL, &entry, NULL, NULL,
171 5052d227 Michael Walle
                               1, ELF_MACHINE, 0);
172 5052d227 Michael Walle
        reset_info->bootstrap_pc = entry;
173 5052d227 Michael Walle
174 5052d227 Michael Walle
        if (kernel_size < 0) {
175 5052d227 Michael Walle
            kernel_size = load_image_targphys(kernel_filename, sdram_base,
176 5052d227 Michael Walle
                                              sdram_size);
177 5052d227 Michael Walle
            reset_info->bootstrap_pc = sdram_base;
178 5052d227 Michael Walle
        }
179 5052d227 Michael Walle
180 5052d227 Michael Walle
        if (kernel_size < 0) {
181 5052d227 Michael Walle
            fprintf(stderr, "qemu: could not load kernel '%s'\n",
182 5052d227 Michael Walle
                    kernel_filename);
183 5052d227 Michael Walle
            exit(1);
184 5052d227 Michael Walle
        }
185 5052d227 Michael Walle
    }
186 5052d227 Michael Walle
187 5052d227 Michael Walle
    if (kernel_cmdline && strlen(kernel_cmdline)) {
188 5052d227 Michael Walle
        pstrcpy_targphys("cmdline", cmdline_base, TARGET_PAGE_SIZE,
189 5052d227 Michael Walle
                kernel_cmdline);
190 5052d227 Michael Walle
        reset_info->cmdline_base = (uint32_t)cmdline_base;
191 5052d227 Michael Walle
    }
192 5052d227 Michael Walle
193 5052d227 Michael Walle
    if (initrd_filename) {
194 5052d227 Michael Walle
        size_t initrd_size;
195 5052d227 Michael Walle
        initrd_size = load_image_targphys(initrd_filename, initrd_base,
196 5052d227 Michael Walle
                initrd_max);
197 5052d227 Michael Walle
        reset_info->initrd_base = (uint32_t)initrd_base;
198 5052d227 Michael Walle
        reset_info->initrd_size = (uint32_t)initrd_size;
199 5052d227 Michael Walle
    }
200 5052d227 Michael Walle
201 5052d227 Michael Walle
    qemu_register_reset(main_cpu_reset, reset_info);
202 5052d227 Michael Walle
}
203 5052d227 Michael Walle
204 5052d227 Michael Walle
static QEMUMachine milkymist_machine = {
205 5052d227 Michael Walle
    .name = "milkymist",
206 5052d227 Michael Walle
    .desc = "Milkymist One",
207 5052d227 Michael Walle
    .init = milkymist_init,
208 5052d227 Michael Walle
    .is_default = 0
209 5052d227 Michael Walle
};
210 5052d227 Michael Walle
211 5052d227 Michael Walle
static void milkymist_machine_init(void)
212 5052d227 Michael Walle
{
213 5052d227 Michael Walle
    qemu_register_machine(&milkymist_machine);
214 5052d227 Michael Walle
}
215 5052d227 Michael Walle
216 5052d227 Michael Walle
machine_init(milkymist_machine_init);