Statistics
| Branch: | Revision:

root / hw / milkymist.c @ f8f48b69

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 "flash.h"
23 9c17d615 Paolo Bonzini
#include "sysemu/sysemu.h"
24 5052d227 Michael Walle
#include "devices.h"
25 5052d227 Michael Walle
#include "boards.h"
26 5052d227 Michael Walle
#include "loader.h"
27 5052d227 Michael Walle
#include "elf.h"
28 9c17d615 Paolo Bonzini
#include "sysemu/blockdev.h"
29 5052d227 Michael Walle
#include "milkymist-hw.h"
30 5052d227 Michael Walle
#include "lm32.h"
31 022c62cb Paolo Bonzini
#include "exec/address-spaces.h"
32 5052d227 Michael Walle
33 5052d227 Michael Walle
#define BIOS_FILENAME    "mmone-bios.bin"
34 5052d227 Michael Walle
#define BIOS_OFFSET      0x00860000
35 5052d227 Michael Walle
#define BIOS_SIZE        (512*1024)
36 5052d227 Michael Walle
#define KERNEL_LOAD_ADDR 0x40000000
37 5052d227 Michael Walle
38 5052d227 Michael Walle
typedef struct {
39 f6932a86 Andreas Färber
    LM32CPU *cpu;
40 a8170e5e Avi Kivity
    hwaddr bootstrap_pc;
41 a8170e5e Avi Kivity
    hwaddr flash_base;
42 a8170e5e Avi Kivity
    hwaddr initrd_base;
43 5052d227 Michael Walle
    size_t initrd_size;
44 a8170e5e Avi Kivity
    hwaddr cmdline_base;
45 5052d227 Michael Walle
} ResetInfo;
46 5052d227 Michael Walle
47 5052d227 Michael Walle
static void cpu_irq_handler(void *opaque, int irq, int level)
48 5052d227 Michael Walle
{
49 93a67402 Andreas Färber
    CPULM32State *env = opaque;
50 5052d227 Michael Walle
51 5052d227 Michael Walle
    if (level) {
52 5052d227 Michael Walle
        cpu_interrupt(env, CPU_INTERRUPT_HARD);
53 5052d227 Michael Walle
    } else {
54 5052d227 Michael Walle
        cpu_reset_interrupt(env, CPU_INTERRUPT_HARD);
55 5052d227 Michael Walle
    }
56 5052d227 Michael Walle
}
57 5052d227 Michael Walle
58 5052d227 Michael Walle
static void main_cpu_reset(void *opaque)
59 5052d227 Michael Walle
{
60 5052d227 Michael Walle
    ResetInfo *reset_info = opaque;
61 f6932a86 Andreas Färber
    CPULM32State *env = &reset_info->cpu->env;
62 5052d227 Michael Walle
63 f6932a86 Andreas Färber
    cpu_reset(CPU(reset_info->cpu));
64 5052d227 Michael Walle
65 5052d227 Michael Walle
    /* init defaults */
66 5052d227 Michael Walle
    env->pc = reset_info->bootstrap_pc;
67 5052d227 Michael Walle
    env->regs[R_R1] = reset_info->cmdline_base;
68 5052d227 Michael Walle
    env->regs[R_R2] = reset_info->initrd_base;
69 5052d227 Michael Walle
    env->regs[R_R3] = reset_info->initrd_base + reset_info->initrd_size;
70 5052d227 Michael Walle
    env->eba = reset_info->flash_base;
71 5052d227 Michael Walle
    env->deba = reset_info->flash_base;
72 5052d227 Michael Walle
}
73 5052d227 Michael Walle
74 5052d227 Michael Walle
static void
75 5f072e1f Eduardo Habkost
milkymist_init(QEMUMachineInitArgs *args)
76 5052d227 Michael Walle
{
77 5f072e1f Eduardo Habkost
    const char *cpu_model = args->cpu_model;
78 5f072e1f Eduardo Habkost
    const char *kernel_filename = args->kernel_filename;
79 5f072e1f Eduardo Habkost
    const char *kernel_cmdline = args->kernel_cmdline;
80 5f072e1f Eduardo Habkost
    const char *initrd_filename = args->initrd_filename;
81 1328cc01 Andreas Färber
    LM32CPU *cpu;
82 93a67402 Andreas Färber
    CPULM32State *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 a8170e5e Avi Kivity
    hwaddr 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 a8170e5e Avi Kivity
    hwaddr sdram_base   = 0x40000000;
97 5052d227 Michael Walle
    size_t sdram_size               = 128 * 1024 * 1024;
98 5052d227 Michael Walle
99 a8170e5e Avi Kivity
    hwaddr initrd_base  = sdram_base + 0x1002000;
100 a8170e5e Avi Kivity
    hwaddr 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 1328cc01 Andreas Färber
    cpu = cpu_lm32_init(cpu_model);
109 1328cc01 Andreas Färber
    env = &cpu->env;
110 f6932a86 Andreas Färber
    reset_info->cpu = cpu;
111 5052d227 Michael Walle
112 5052d227 Michael Walle
    cpu_lm32_set_phys_msb_ignore(env, 1);
113 5052d227 Michael Walle
114 c5705a77 Avi Kivity
    memory_region_init_ram(phys_sdram, "milkymist.sdram", sdram_size);
115 c5705a77 Avi Kivity
    vmstate_register_ram_global(phys_sdram);
116 c50a6def Avi Kivity
    memory_region_add_subregion(address_space_mem, sdram_base, phys_sdram);
117 5052d227 Michael Walle
118 5052d227 Michael Walle
    dinfo = drive_get(IF_PFLASH, 0, 0);
119 5052d227 Michael Walle
    /* Numonyx JS28F256J3F105 */
120 cfe5f011 Avi Kivity
    pflash_cfi01_register(flash_base, NULL, "milkymist.flash", flash_size,
121 5052d227 Michael Walle
                          dinfo ? dinfo->bdrv : NULL, flash_sector_size,
122 5052d227 Michael Walle
                          flash_size / flash_sector_size, 2,
123 01e0451a Anthony Liguori
                          0x00, 0x89, 0x00, 0x1d, 1);
124 5052d227 Michael Walle
125 5052d227 Michael Walle
    /* create irq lines */
126 5052d227 Michael Walle
    cpu_irq = qemu_allocate_irqs(cpu_irq_handler, env, 1);
127 5052d227 Michael Walle
    env->pic_state = lm32_pic_init(*cpu_irq);
128 5052d227 Michael Walle
    for (i = 0; i < 32; i++) {
129 5052d227 Michael Walle
        irq[i] = qdev_get_gpio_in(env->pic_state, i);
130 5052d227 Michael Walle
    }
131 5052d227 Michael Walle
132 5052d227 Michael Walle
    /* load bios rom */
133 5052d227 Michael Walle
    if (bios_name == NULL) {
134 5052d227 Michael Walle
        bios_name = BIOS_FILENAME;
135 5052d227 Michael Walle
    }
136 5052d227 Michael Walle
    bios_filename = qemu_find_file(QEMU_FILE_TYPE_BIOS, bios_name);
137 5052d227 Michael Walle
138 5052d227 Michael Walle
    if (bios_filename) {
139 5052d227 Michael Walle
        load_image_targphys(bios_filename, BIOS_OFFSET, BIOS_SIZE);
140 5052d227 Michael Walle
    }
141 5052d227 Michael Walle
142 5052d227 Michael Walle
    reset_info->bootstrap_pc = BIOS_OFFSET;
143 5052d227 Michael Walle
144 5052d227 Michael Walle
    /* if no kernel is given no valid bios rom is a fatal error */
145 5052d227 Michael Walle
    if (!kernel_filename && !dinfo && !bios_filename) {
146 5052d227 Michael Walle
        fprintf(stderr, "qemu: could not load Milkymist One bios '%s'\n",
147 5052d227 Michael Walle
                bios_name);
148 5052d227 Michael Walle
        exit(1);
149 5052d227 Michael Walle
    }
150 5052d227 Michael Walle
151 fcfa3397 Michael Walle
    milkymist_uart_create(0x60000000, irq[0]);
152 779277ca Michael Walle
    milkymist_sysctl_create(0x60001000, irq[1], irq[2], irq[3],
153 5052d227 Michael Walle
            80000000, 0x10014d31, 0x0000041f, 0x00000001);
154 5052d227 Michael Walle
    milkymist_hpdmc_create(0x60002000);
155 5052d227 Michael Walle
    milkymist_vgafb_create(0x60003000, 0x40000000, 0x0fffffff);
156 5052d227 Michael Walle
    milkymist_memcard_create(0x60004000);
157 779277ca Michael Walle
    milkymist_ac97_create(0x60005000, irq[4], irq[5], irq[6], irq[7]);
158 779277ca Michael Walle
    milkymist_pfpu_create(0x60006000, irq[8]);
159 779277ca Michael Walle
    milkymist_tmu2_create(0x60007000, irq[9]);
160 779277ca Michael Walle
    milkymist_minimac2_create(0x60008000, 0x30000000, irq[10], irq[11]);
161 779277ca Michael Walle
    milkymist_softusb_create(0x6000f000, irq[15],
162 5052d227 Michael Walle
            0x20000000, 0x1000, 0x20020000, 0x2000);
163 5052d227 Michael Walle
164 5052d227 Michael Walle
    /* make sure juart isn't the first chardev */
165 5052d227 Michael Walle
    env->juart_state = lm32_juart_init();
166 5052d227 Michael Walle
167 5052d227 Michael Walle
    if (kernel_filename) {
168 5052d227 Michael Walle
        uint64_t entry;
169 5052d227 Michael Walle
170 5052d227 Michael Walle
        /* Boots a kernel elf binary.  */
171 5052d227 Michael Walle
        kernel_size = load_elf(kernel_filename, NULL, NULL, &entry, NULL, NULL,
172 5052d227 Michael Walle
                               1, ELF_MACHINE, 0);
173 5052d227 Michael Walle
        reset_info->bootstrap_pc = entry;
174 5052d227 Michael Walle
175 5052d227 Michael Walle
        if (kernel_size < 0) {
176 5052d227 Michael Walle
            kernel_size = load_image_targphys(kernel_filename, sdram_base,
177 5052d227 Michael Walle
                                              sdram_size);
178 5052d227 Michael Walle
            reset_info->bootstrap_pc = sdram_base;
179 5052d227 Michael Walle
        }
180 5052d227 Michael Walle
181 5052d227 Michael Walle
        if (kernel_size < 0) {
182 5052d227 Michael Walle
            fprintf(stderr, "qemu: could not load kernel '%s'\n",
183 5052d227 Michael Walle
                    kernel_filename);
184 5052d227 Michael Walle
            exit(1);
185 5052d227 Michael Walle
        }
186 5052d227 Michael Walle
    }
187 5052d227 Michael Walle
188 5052d227 Michael Walle
    if (kernel_cmdline && strlen(kernel_cmdline)) {
189 5052d227 Michael Walle
        pstrcpy_targphys("cmdline", cmdline_base, TARGET_PAGE_SIZE,
190 5052d227 Michael Walle
                kernel_cmdline);
191 5052d227 Michael Walle
        reset_info->cmdline_base = (uint32_t)cmdline_base;
192 5052d227 Michael Walle
    }
193 5052d227 Michael Walle
194 5052d227 Michael Walle
    if (initrd_filename) {
195 5052d227 Michael Walle
        size_t initrd_size;
196 5052d227 Michael Walle
        initrd_size = load_image_targphys(initrd_filename, initrd_base,
197 5052d227 Michael Walle
                initrd_max);
198 5052d227 Michael Walle
        reset_info->initrd_base = (uint32_t)initrd_base;
199 5052d227 Michael Walle
        reset_info->initrd_size = (uint32_t)initrd_size;
200 5052d227 Michael Walle
    }
201 5052d227 Michael Walle
202 5052d227 Michael Walle
    qemu_register_reset(main_cpu_reset, reset_info);
203 5052d227 Michael Walle
}
204 5052d227 Michael Walle
205 5052d227 Michael Walle
static QEMUMachine milkymist_machine = {
206 5052d227 Michael Walle
    .name = "milkymist",
207 5052d227 Michael Walle
    .desc = "Milkymist One",
208 5052d227 Michael Walle
    .init = milkymist_init,
209 5052d227 Michael Walle
    .is_default = 0
210 5052d227 Michael Walle
};
211 5052d227 Michael Walle
212 5052d227 Michael Walle
static void milkymist_machine_init(void)
213 5052d227 Michael Walle
{
214 5052d227 Michael Walle
    qemu_register_machine(&milkymist_machine);
215 5052d227 Michael Walle
}
216 5052d227 Michael Walle
217 5052d227 Michael Walle
machine_init(milkymist_machine_init);