]> git.proxmox.com Git - mirror_qemu.git/blame - hw/xtensa/xtfpga.c
hw: Replace global smp variables with MachineState for all remaining archs
[mirror_qemu.git] / hw / xtensa / xtfpga.c
CommitLineData
0200db65
MF
1/*
2 * Copyright (c) 2011, Max Filippov, Open Source and Linux Lab.
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are met:
7 * * Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * * Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
12 * * Neither the name of the Open Source and Linux Lab nor the
13 * names of its contributors may be used to endorse or promote products
14 * derived from this software without specific prior written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
17 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
20 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
21 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
22 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
23 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
25 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 */
27
09aae23d 28#include "qemu/osdep.h"
b941329d 29#include "qemu/units.h"
da34e65c 30#include "qapi/error.h"
4771d756 31#include "cpu.h"
9c17d615 32#include "sysemu/sysemu.h"
83c9f4ca
PB
33#include "hw/boards.h"
34#include "hw/loader.h"
0200db65 35#include "elf.h"
022c62cb
PB
36#include "exec/memory.h"
37#include "exec/address-spaces.h"
0d09e41a 38#include "hw/char/serial.h"
1422e32d 39#include "net/net.h"
83c9f4ca 40#include "hw/sysbus.h"
0d09e41a 41#include "hw/block/flash.h"
8228e353 42#include "chardev/char.h"
996dfe98 43#include "sysemu/device_tree.h"
8488ab02 44#include "qemu/error-report.h"
922a01a0 45#include "qemu/option.h"
b707ab75 46#include "bootparam.h"
e53fa62c 47#include "xtensa_memory.h"
1acd90bf 48#include "hw/xtensa/mx_pic.h"
82b25dc8 49
740ad9f7
MF
50typedef struct XtfpgaFlashDesc {
51 hwaddr base;
52 size_t size;
53 size_t boot_base;
54 size_t sector_size;
55} XtfpgaFlashDesc;
56
188ce01d 57typedef struct XtfpgaBoardDesc {
740ad9f7 58 const XtfpgaFlashDesc *flash;
82b25dc8 59 size_t sram_size;
85e2d8d5 60 const hwaddr *io;
188ce01d 61} XtfpgaBoardDesc;
0200db65 62
188ce01d 63typedef struct XtfpgaFpgaState {
0200db65 64 MemoryRegion iomem;
fff7bf14 65 uint32_t freq;
0200db65
MF
66 uint32_t leds;
67 uint32_t switches;
188ce01d 68} XtfpgaFpgaState;
0200db65 69
188ce01d 70static void xtfpga_fpga_reset(void *opaque)
0200db65 71{
188ce01d 72 XtfpgaFpgaState *s = opaque;
0200db65
MF
73
74 s->leds = 0;
75 s->switches = 0;
76}
77
188ce01d 78static uint64_t xtfpga_fpga_read(void *opaque, hwaddr addr,
0200db65
MF
79 unsigned size)
80{
188ce01d 81 XtfpgaFpgaState *s = opaque;
0200db65
MF
82
83 switch (addr) {
84 case 0x0: /*build date code*/
556ba668 85 return 0x09272011;
0200db65
MF
86
87 case 0x4: /*processor clock frequency, Hz*/
fff7bf14 88 return s->freq;
0200db65
MF
89
90 case 0x8: /*LEDs (off = 0, on = 1)*/
91 return s->leds;
92
93 case 0xc: /*DIP switches (off = 0, on = 1)*/
94 return s->switches;
95 }
96 return 0;
97}
98
188ce01d 99static void xtfpga_fpga_write(void *opaque, hwaddr addr,
0200db65
MF
100 uint64_t val, unsigned size)
101{
188ce01d 102 XtfpgaFpgaState *s = opaque;
0200db65
MF
103
104 switch (addr) {
105 case 0x8: /*LEDs (off = 0, on = 1)*/
106 s->leds = val;
107 break;
108
109 case 0x10: /*board reset*/
110 if (val == 0xdead) {
cf83f140 111 qemu_system_reset_request(SHUTDOWN_CAUSE_GUEST_RESET);
0200db65
MF
112 }
113 break;
114 }
115}
116
188ce01d
MF
117static const MemoryRegionOps xtfpga_fpga_ops = {
118 .read = xtfpga_fpga_read,
119 .write = xtfpga_fpga_write,
0200db65
MF
120 .endianness = DEVICE_NATIVE_ENDIAN,
121};
122
188ce01d 123static XtfpgaFpgaState *xtfpga_fpga_init(MemoryRegion *address_space,
fff7bf14 124 hwaddr base, uint32_t freq)
0200db65 125{
188ce01d 126 XtfpgaFpgaState *s = g_malloc(sizeof(XtfpgaFpgaState));
0200db65 127
188ce01d 128 memory_region_init_io(&s->iomem, NULL, &xtfpga_fpga_ops, s,
fff7bf14 129 "xtfpga.fpga", 0x10000);
0200db65 130 memory_region_add_subregion(address_space, base, &s->iomem);
fff7bf14 131 s->freq = freq;
188ce01d
MF
132 xtfpga_fpga_reset(s);
133 qemu_register_reset(xtfpga_fpga_reset, s);
0200db65
MF
134 return s;
135}
136
188ce01d 137static void xtfpga_net_init(MemoryRegion *address_space,
a8170e5e
AK
138 hwaddr base,
139 hwaddr descriptors,
140 hwaddr buffers,
0200db65
MF
141 qemu_irq irq, NICInfo *nd)
142{
143 DeviceState *dev;
144 SysBusDevice *s;
145 MemoryRegion *ram;
146
147 dev = qdev_create(NULL, "open_eth");
148 qdev_set_nic_properties(dev, nd);
149 qdev_init_nofail(dev);
150
1356b98d 151 s = SYS_BUS_DEVICE(dev);
0200db65
MF
152 sysbus_connect_irq(s, 0, irq);
153 memory_region_add_subregion(address_space, base,
154 sysbus_mmio_get_region(s, 0));
155 memory_region_add_subregion(address_space, descriptors,
156 sysbus_mmio_get_region(s, 1));
157
158 ram = g_malloc(sizeof(*ram));
b941329d 159 memory_region_init_ram_nomigrate(ram, OBJECT(s), "open_eth.ram", 16 * KiB,
f8ed85ac 160 &error_fatal);
c5705a77 161 vmstate_register_ram_global(ram);
0200db65
MF
162 memory_region_add_subregion(address_space, buffers, ram);
163}
164
16434065
MA
165static PFlashCFI01 *xtfpga_flash_init(MemoryRegion *address_space,
166 const XtfpgaBoardDesc *board,
167 DriveInfo *dinfo, int be)
68931a40
MF
168{
169 SysBusDevice *s;
81c7db72 170 DeviceState *dev = qdev_create(NULL, TYPE_PFLASH_CFI01);
68931a40
MF
171
172 qdev_prop_set_drive(dev, "drive", blk_by_legacy_dinfo(dinfo),
173 &error_abort);
174 qdev_prop_set_uint32(dev, "num-blocks",
740ad9f7
MF
175 board->flash->size / board->flash->sector_size);
176 qdev_prop_set_uint64(dev, "sector-length", board->flash->sector_size);
f9a555e4 177 qdev_prop_set_uint8(dev, "width", 2);
68931a40 178 qdev_prop_set_bit(dev, "big-endian", be);
188ce01d 179 qdev_prop_set_string(dev, "name", "xtfpga.io.flash");
68931a40
MF
180 qdev_init_nofail(dev);
181 s = SYS_BUS_DEVICE(dev);
740ad9f7 182 memory_region_add_subregion(address_space, board->flash->base,
68931a40 183 sysbus_mmio_get_region(s, 0));
81c7db72 184 return PFLASH_CFI01(dev);
68931a40
MF
185}
186
00b941e5 187static uint64_t translate_phys_addr(void *opaque, uint64_t addr)
0200db65 188{
00b941e5
AF
189 XtensaCPU *cpu = opaque;
190
191 return cpu_get_phys_page_debug(CPU(cpu), addr);
0200db65
MF
192}
193
188ce01d 194static void xtfpga_reset(void *opaque)
0200db65 195{
eded1267 196 XtensaCPU *cpu = opaque;
1bba0dc9 197
eded1267 198 cpu_reset(CPU(cpu));
0200db65
MF
199}
200
188ce01d 201static uint64_t xtfpga_io_read(void *opaque, hwaddr addr,
8bb3b575
MF
202 unsigned size)
203{
204 return 0;
205}
206
188ce01d 207static void xtfpga_io_write(void *opaque, hwaddr addr,
8bb3b575
MF
208 uint64_t val, unsigned size)
209{
210}
211
188ce01d
MF
212static const MemoryRegionOps xtfpga_io_ops = {
213 .read = xtfpga_io_read,
214 .write = xtfpga_io_write,
8bb3b575
MF
215 .endianness = DEVICE_NATIVE_ENDIAN,
216};
217
188ce01d 218static void xtfpga_init(const XtfpgaBoardDesc *board, MachineState *machine)
0200db65
MF
219{
220#ifdef TARGET_WORDS_BIGENDIAN
221 int be = 1;
222#else
223 int be = 0;
224#endif
225 MemoryRegion *system_memory = get_system_memory();
adbb0f75 226 XtensaCPU *cpu = NULL;
5bfcb36e 227 CPUXtensaState *env = NULL;
e53fa62c 228 MemoryRegion *system_io;
1acd90bf 229 XtensaMxPic *mx_pic = NULL;
66f03d7e 230 qemu_irq *extints;
82b25dc8 231 DriveInfo *dinfo;
16434065 232 PFlashCFI01 *flash = NULL;
37b259d0 233 QemuOpts *machine_opts = qemu_get_machine_opts();
37b259d0
MF
234 const char *kernel_filename = qemu_opt_get(machine_opts, "kernel");
235 const char *kernel_cmdline = qemu_opt_get(machine_opts, "append");
996dfe98 236 const char *dtb_filename = qemu_opt_get(machine_opts, "dtb");
f55b32e7 237 const char *initrd_filename = qemu_opt_get(machine_opts, "initrd");
b941329d 238 const unsigned system_io_size = 224 * MiB;
fff7bf14 239 uint32_t freq = 10000000;
0200db65 240 int n;
33decbd2 241 unsigned int smp_cpus = machine->smp.cpus;
0200db65 242
1acd90bf
MF
243 if (smp_cpus > 1) {
244 mx_pic = xtensa_mx_pic_init(31);
245 qemu_register_reset(xtensa_mx_pic_reset, mx_pic);
246 }
0200db65 247 for (n = 0; n < smp_cpus; n++) {
288a3f2e
MF
248 CPUXtensaState *cenv = NULL;
249
f83eb10d 250 cpu = XTENSA_CPU(cpu_create(machine->cpu_type));
288a3f2e
MF
251 cenv = &cpu->env;
252 if (!env) {
253 env = cenv;
fff7bf14 254 freq = env->config->clock_freq_khz * 1000;
288a3f2e 255 }
adbb0f75 256
1acd90bf
MF
257 if (mx_pic) {
258 MemoryRegion *mx_eri;
259
260 mx_eri = xtensa_mx_pic_register_cpu(mx_pic,
261 xtensa_get_extints(cenv),
262 xtensa_get_runstall(cenv));
263 memory_region_add_subregion(xtensa_get_er_region(cenv),
264 0, mx_eri);
265 }
288a3f2e 266 cenv->sregs[PRID] = n;
1acd90bf 267 xtensa_select_static_vectors(cenv, n != 0);
188ce01d 268 qemu_register_reset(xtfpga_reset, cpu);
0200db65
MF
269 /* Need MMU initialized prior to ELF loading,
270 * so that ELF gets loaded into virtual addresses
271 */
adbb0f75 272 cpu_reset(CPU(cpu));
0200db65 273 }
1acd90bf
MF
274 if (smp_cpus > 1) {
275 extints = xtensa_mx_pic_get_extints(mx_pic);
276 } else {
277 extints = xtensa_get_extints(env);
278 }
0200db65 279
e53fa62c
MF
280 if (env) {
281 XtensaMemory sysram = env->config->sysram;
282
283 sysram.location[0].size = machine->ram_size;
284 xtensa_create_memory_regions(&env->config->instrom, "xtensa.instrom",
285 system_memory);
286 xtensa_create_memory_regions(&env->config->instram, "xtensa.instram",
287 system_memory);
288 xtensa_create_memory_regions(&env->config->datarom, "xtensa.datarom",
289 system_memory);
290 xtensa_create_memory_regions(&env->config->dataram, "xtensa.dataram",
291 system_memory);
292 xtensa_create_memory_regions(&sysram, "xtensa.sysram",
293 system_memory);
294 }
0200db65 295
0200db65 296 system_io = g_malloc(sizeof(*system_io));
188ce01d 297 memory_region_init_io(system_io, NULL, &xtfpga_io_ops, NULL, "xtfpga.io",
85e2d8d5
MF
298 system_io_size);
299 memory_region_add_subregion(system_memory, board->io[0], system_io);
300 if (board->io[1]) {
301 MemoryRegion *io = g_malloc(sizeof(*io));
302
303 memory_region_init_alias(io, NULL, "xtfpga.io.cached",
304 system_io, 0, system_io_size);
305 memory_region_add_subregion(system_memory, board->io[1], io);
306 }
fff7bf14 307 xtfpga_fpga_init(system_io, 0x0d020000, freq);
a005d073 308 if (nd_table[0].used) {
188ce01d 309 xtfpga_net_init(system_io, 0x0d030000, 0x0d030400, 0x0d800000,
66f03d7e 310 extints[1], nd_table);
0200db65
MF
311 }
312
66f03d7e
MF
313 serial_mm_init(system_io, 0x0d050020, 2, extints[0],
314 115200, serial_hd(0), DEVICE_NATIVE_ENDIAN);
0200db65 315
82b25dc8
MF
316 dinfo = drive_get(IF_PFLASH, 0, 0);
317 if (dinfo) {
68931a40 318 flash = xtfpga_flash_init(system_io, board, dinfo, be);
82b25dc8
MF
319 }
320
321 /* Use presence of kernel file name as 'boot from SRAM' switch. */
0200db65 322 if (kernel_filename) {
364d4802 323 uint32_t entry_point = env->pc;
b6edea8b 324 size_t bp_size = 3 * get_tag_size(0); /* first/last and memory tags */
e53fa62c
MF
325 uint32_t tagptr = env->config->sysrom.location[0].addr +
326 board->sram_size;
a9a28591 327 uint32_t cur_tagptr;
b6edea8b
MF
328 BpMemInfo memory_location = {
329 .type = tswap32(MEMORY_TYPE_CONVENTIONAL),
e53fa62c
MF
330 .start = tswap32(env->config->sysram.location[0].addr),
331 .end = tswap32(env->config->sysram.location[0].addr +
332 machine->ram_size),
b6edea8b 333 };
996dfe98
MF
334 uint32_t lowmem_end = machine->ram_size < 0x08000000 ?
335 machine->ram_size : 0x08000000;
336 uint32_t cur_lowmem = QEMU_ALIGN_UP(lowmem_end / 2, 4096);
a9a28591 337
e53fa62c
MF
338 lowmem_end += env->config->sysram.location[0].addr;
339 cur_lowmem += env->config->sysram.location[0].addr;
340
341 xtensa_create_memory_regions(&env->config->sysrom, "xtensa.sysrom",
342 system_memory);
292627bb 343
a9a28591
MF
344 if (kernel_cmdline) {
345 bp_size += get_tag_size(strlen(kernel_cmdline) + 1);
346 }
996dfe98
MF
347 if (dtb_filename) {
348 bp_size += get_tag_size(sizeof(uint32_t));
349 }
f55b32e7
MF
350 if (initrd_filename) {
351 bp_size += get_tag_size(sizeof(BpMemInfo));
352 }
a9a28591 353
292627bb 354 /* Put kernel bootparameters to the end of that SRAM */
a9a28591
MF
355 tagptr = (tagptr - bp_size) & ~0xff;
356 cur_tagptr = put_tag(tagptr, BP_TAG_FIRST, 0, NULL);
b6edea8b
MF
357 cur_tagptr = put_tag(cur_tagptr, BP_TAG_MEMORY,
358 sizeof(memory_location), &memory_location);
a9a28591 359
292627bb 360 if (kernel_cmdline) {
a9a28591
MF
361 cur_tagptr = put_tag(cur_tagptr, BP_TAG_COMMAND_LINE,
362 strlen(kernel_cmdline) + 1, kernel_cmdline);
292627bb 363 }
0e80359e 364#ifdef CONFIG_FDT
996dfe98
MF
365 if (dtb_filename) {
366 int fdt_size;
367 void *fdt = load_device_tree(dtb_filename, &fdt_size);
368 uint32_t dtb_addr = tswap32(cur_lowmem);
369
370 if (!fdt) {
ebbb419a 371 error_report("could not load DTB '%s'", dtb_filename);
996dfe98
MF
372 exit(EXIT_FAILURE);
373 }
374
375 cpu_physical_memory_write(cur_lowmem, fdt, fdt_size);
376 cur_tagptr = put_tag(cur_tagptr, BP_TAG_FDT,
377 sizeof(dtb_addr), &dtb_addr);
b941329d 378 cur_lowmem = QEMU_ALIGN_UP(cur_lowmem + fdt_size, 4 * KiB);
996dfe98 379 }
0e80359e
MF
380#else
381 if (dtb_filename) {
382 error_report("could not load DTB '%s': "
383 "FDT support is not configured in QEMU",
384 dtb_filename);
385 exit(EXIT_FAILURE);
386 }
387#endif
f55b32e7
MF
388 if (initrd_filename) {
389 BpMemInfo initrd_location = { 0 };
390 int initrd_size = load_ramdisk(initrd_filename, cur_lowmem,
391 lowmem_end - cur_lowmem);
392
393 if (initrd_size < 0) {
394 initrd_size = load_image_targphys(initrd_filename,
395 cur_lowmem,
396 lowmem_end - cur_lowmem);
397 }
398 if (initrd_size < 0) {
ebbb419a 399 error_report("could not load initrd '%s'", initrd_filename);
f55b32e7
MF
400 exit(EXIT_FAILURE);
401 }
402 initrd_location.start = tswap32(cur_lowmem);
403 initrd_location.end = tswap32(cur_lowmem + initrd_size);
404 cur_tagptr = put_tag(cur_tagptr, BP_TAG_INITRD,
405 sizeof(initrd_location), &initrd_location);
b941329d 406 cur_lowmem = QEMU_ALIGN_UP(cur_lowmem + initrd_size, 4 * KiB);
f55b32e7 407 }
a9a28591
MF
408 cur_tagptr = put_tag(cur_tagptr, BP_TAG_LAST, 0, NULL);
409 env->regs[2] = tagptr;
410
0200db65
MF
411 uint64_t elf_entry;
412 uint64_t elf_lowaddr;
4366e1db 413 int success = load_elf(kernel_filename, NULL, translate_phys_addr, cpu,
7ef295ea 414 &elf_entry, &elf_lowaddr, NULL, be, EM_XTENSA, 0, 0);
0200db65 415 if (success > 0) {
364d4802
MF
416 entry_point = elf_entry;
417 } else {
418 hwaddr ep;
419 int is_linux;
25bda50a 420 success = load_uimage(kernel_filename, &ep, NULL, &is_linux,
6d2e4530 421 translate_phys_addr, cpu);
364d4802
MF
422 if (success > 0 && is_linux) {
423 entry_point = ep;
424 } else {
ebbb419a 425 error_report("could not load kernel '%s'",
364d4802
MF
426 kernel_filename);
427 exit(EXIT_FAILURE);
428 }
429 }
430 if (entry_point != env->pc) {
339ef8fb 431 uint8_t boot[] = {
364d4802 432#ifdef TARGET_WORDS_BIGENDIAN
339ef8fb
MF
433 0x60, 0x00, 0x08, /* j 1f */
434 0x00, /* .literal_position */
435 0x00, 0x00, 0x00, 0x00, /* .literal entry_pc */
436 0x00, 0x00, 0x00, 0x00, /* .literal entry_a2 */
437 /* 1: */
438 0x10, 0xff, 0xfe, /* l32r a0, entry_pc */
439 0x12, 0xff, 0xfe, /* l32r a2, entry_a2 */
440 0x0a, 0x00, 0x00, /* jx a0 */
364d4802 441#else
339ef8fb
MF
442 0x06, 0x02, 0x00, /* j 1f */
443 0x00, /* .literal_position */
444 0x00, 0x00, 0x00, 0x00, /* .literal entry_pc */
445 0x00, 0x00, 0x00, 0x00, /* .literal entry_a2 */
446 /* 1: */
447 0x01, 0xfe, 0xff, /* l32r a0, entry_pc */
448 0x21, 0xfe, 0xff, /* l32r a2, entry_a2 */
449 0xa0, 0x00, 0x00, /* jx a0 */
364d4802
MF
450#endif
451 };
339ef8fb
MF
452 uint32_t entry_pc = tswap32(entry_point);
453 uint32_t entry_a2 = tswap32(tagptr);
454
455 memcpy(boot + 4, &entry_pc, sizeof(entry_pc));
456 memcpy(boot + 8, &entry_a2, sizeof(entry_a2));
457 cpu_physical_memory_write(env->pc, boot, sizeof(boot));
0200db65 458 }
82b25dc8
MF
459 } else {
460 if (flash) {
461 MemoryRegion *flash_mr = pflash_cfi01_get_memory(flash);
462 MemoryRegion *flash_io = g_malloc(sizeof(*flash_io));
e53fa62c
MF
463 uint32_t size = env->config->sysrom.location[0].size;
464
740ad9f7
MF
465 if (board->flash->size - board->flash->boot_base < size) {
466 size = board->flash->size - board->flash->boot_base;
e53fa62c 467 }
82b25dc8 468
188ce01d 469 memory_region_init_alias(flash_io, NULL, "xtfpga.flash",
740ad9f7 470 flash_mr, board->flash->boot_base, size);
e53fa62c
MF
471 memory_region_add_subregion(system_memory,
472 env->config->sysrom.location[0].addr,
473 flash_io);
474 } else {
475 xtensa_create_memory_regions(&env->config->sysrom, "xtensa.sysrom",
476 system_memory);
82b25dc8 477 }
0200db65
MF
478 }
479}
480
59b5e9bb
MF
481#define XTFPGA_MMU_RESERVED_MEMORY_SIZE (128 * MiB)
482
85e2d8d5
MF
483static const hwaddr xtfpga_mmu_io[2] = {
484 0xf0000000,
485};
486
487static const hwaddr xtfpga_nommu_io[2] = {
488 0x90000000,
489 0x70000000,
490};
491
740ad9f7
MF
492static const XtfpgaFlashDesc lx60_flash = {
493 .base = 0x08000000,
494 .size = 0x00400000,
495 .sector_size = 0x10000,
496};
497
188ce01d 498static void xtfpga_lx60_init(MachineState *machine)
0200db65 499{
188ce01d 500 static const XtfpgaBoardDesc lx60_board = {
740ad9f7 501 .flash = &lx60_flash,
82b25dc8 502 .sram_size = 0x20000,
85e2d8d5
MF
503 .io = xtfpga_mmu_io,
504 };
505 xtfpga_init(&lx60_board, machine);
506}
507
508static void xtfpga_lx60_nommu_init(MachineState *machine)
509{
510 static const XtfpgaBoardDesc lx60_board = {
511 .flash = &lx60_flash,
512 .sram_size = 0x20000,
513 .io = xtfpga_nommu_io,
82b25dc8 514 };
188ce01d 515 xtfpga_init(&lx60_board, machine);
82b25dc8
MF
516}
517
740ad9f7
MF
518static const XtfpgaFlashDesc lx200_flash = {
519 .base = 0x08000000,
520 .size = 0x01000000,
521 .sector_size = 0x20000,
522};
523
188ce01d 524static void xtfpga_lx200_init(MachineState *machine)
82b25dc8 525{
188ce01d 526 static const XtfpgaBoardDesc lx200_board = {
740ad9f7 527 .flash = &lx200_flash,
82b25dc8 528 .sram_size = 0x2000000,
85e2d8d5
MF
529 .io = xtfpga_mmu_io,
530 };
531 xtfpga_init(&lx200_board, machine);
532}
533
534static void xtfpga_lx200_nommu_init(MachineState *machine)
535{
536 static const XtfpgaBoardDesc lx200_board = {
537 .flash = &lx200_flash,
538 .sram_size = 0x2000000,
539 .io = xtfpga_nommu_io,
82b25dc8 540 };
188ce01d 541 xtfpga_init(&lx200_board, machine);
0200db65
MF
542}
543
740ad9f7
MF
544static const XtfpgaFlashDesc ml605_flash = {
545 .base = 0x08000000,
546 .size = 0x01000000,
547 .sector_size = 0x20000,
548};
549
188ce01d 550static void xtfpga_ml605_init(MachineState *machine)
e0db904d 551{
188ce01d 552 static const XtfpgaBoardDesc ml605_board = {
740ad9f7 553 .flash = &ml605_flash,
e0db904d 554 .sram_size = 0x2000000,
85e2d8d5
MF
555 .io = xtfpga_mmu_io,
556 };
557 xtfpga_init(&ml605_board, machine);
558}
559
560static void xtfpga_ml605_nommu_init(MachineState *machine)
561{
562 static const XtfpgaBoardDesc ml605_board = {
563 .flash = &ml605_flash,
564 .sram_size = 0x2000000,
565 .io = xtfpga_nommu_io,
e0db904d 566 };
188ce01d 567 xtfpga_init(&ml605_board, machine);
e0db904d
MF
568}
569
740ad9f7
MF
570static const XtfpgaFlashDesc kc705_flash = {
571 .base = 0x00000000,
572 .size = 0x08000000,
573 .boot_base = 0x06000000,
574 .sector_size = 0x20000,
575};
576
188ce01d 577static void xtfpga_kc705_init(MachineState *machine)
e0db904d 578{
188ce01d 579 static const XtfpgaBoardDesc kc705_board = {
740ad9f7 580 .flash = &kc705_flash,
e0db904d 581 .sram_size = 0x2000000,
85e2d8d5
MF
582 .io = xtfpga_mmu_io,
583 };
584 xtfpga_init(&kc705_board, machine);
585}
586
587static void xtfpga_kc705_nommu_init(MachineState *machine)
588{
589 static const XtfpgaBoardDesc kc705_board = {
590 .flash = &kc705_flash,
591 .sram_size = 0x2000000,
592 .io = xtfpga_nommu_io,
e0db904d 593 };
188ce01d 594 xtfpga_init(&kc705_board, machine);
e0db904d
MF
595}
596
188ce01d 597static void xtfpga_lx60_class_init(ObjectClass *oc, void *data)
e264d29d 598{
8a661aea
AF
599 MachineClass *mc = MACHINE_CLASS(oc);
600
e264d29d 601 mc->desc = "lx60 EVB (" XTENSA_DEFAULT_CPU_MODEL ")";
188ce01d 602 mc->init = xtfpga_lx60_init;
174e09b7 603 mc->max_cpus = 32;
f83eb10d 604 mc->default_cpu_type = XTENSA_DEFAULT_CPU_TYPE;
59b5e9bb 605 mc->default_ram_size = 64 * MiB;
e264d29d 606}
0200db65 607
188ce01d 608static const TypeInfo xtfpga_lx60_type = {
8a661aea
AF
609 .name = MACHINE_TYPE_NAME("lx60"),
610 .parent = TYPE_MACHINE,
188ce01d 611 .class_init = xtfpga_lx60_class_init,
8a661aea 612};
82b25dc8 613
85e2d8d5
MF
614static void xtfpga_lx60_nommu_class_init(ObjectClass *oc, void *data)
615{
616 MachineClass *mc = MACHINE_CLASS(oc);
617
a3c5e49d 618 mc->desc = "lx60 noMMU EVB (" XTENSA_DEFAULT_CPU_NOMMU_MODEL ")";
85e2d8d5 619 mc->init = xtfpga_lx60_nommu_init;
174e09b7 620 mc->max_cpus = 32;
a3c5e49d 621 mc->default_cpu_type = XTENSA_DEFAULT_CPU_NOMMU_TYPE;
59b5e9bb 622 mc->default_ram_size = 64 * MiB;
85e2d8d5
MF
623}
624
625static const TypeInfo xtfpga_lx60_nommu_type = {
626 .name = MACHINE_TYPE_NAME("lx60-nommu"),
627 .parent = TYPE_MACHINE,
628 .class_init = xtfpga_lx60_nommu_class_init,
629};
630
188ce01d 631static void xtfpga_lx200_class_init(ObjectClass *oc, void *data)
e264d29d 632{
8a661aea
AF
633 MachineClass *mc = MACHINE_CLASS(oc);
634
e264d29d 635 mc->desc = "lx200 EVB (" XTENSA_DEFAULT_CPU_MODEL ")";
188ce01d 636 mc->init = xtfpga_lx200_init;
174e09b7 637 mc->max_cpus = 32;
f83eb10d 638 mc->default_cpu_type = XTENSA_DEFAULT_CPU_TYPE;
59b5e9bb 639 mc->default_ram_size = 96 * MiB;
e264d29d 640}
e0db904d 641
188ce01d 642static const TypeInfo xtfpga_lx200_type = {
8a661aea
AF
643 .name = MACHINE_TYPE_NAME("lx200"),
644 .parent = TYPE_MACHINE,
188ce01d 645 .class_init = xtfpga_lx200_class_init,
8a661aea 646};
e264d29d 647
85e2d8d5
MF
648static void xtfpga_lx200_nommu_class_init(ObjectClass *oc, void *data)
649{
650 MachineClass *mc = MACHINE_CLASS(oc);
651
a3c5e49d 652 mc->desc = "lx200 noMMU EVB (" XTENSA_DEFAULT_CPU_NOMMU_MODEL ")";
85e2d8d5 653 mc->init = xtfpga_lx200_nommu_init;
174e09b7 654 mc->max_cpus = 32;
a3c5e49d 655 mc->default_cpu_type = XTENSA_DEFAULT_CPU_NOMMU_TYPE;
59b5e9bb 656 mc->default_ram_size = 96 * MiB;
85e2d8d5
MF
657}
658
659static const TypeInfo xtfpga_lx200_nommu_type = {
660 .name = MACHINE_TYPE_NAME("lx200-nommu"),
661 .parent = TYPE_MACHINE,
662 .class_init = xtfpga_lx200_nommu_class_init,
663};
664
188ce01d 665static void xtfpga_ml605_class_init(ObjectClass *oc, void *data)
e264d29d 666{
8a661aea
AF
667 MachineClass *mc = MACHINE_CLASS(oc);
668
e264d29d 669 mc->desc = "ml605 EVB (" XTENSA_DEFAULT_CPU_MODEL ")";
188ce01d 670 mc->init = xtfpga_ml605_init;
174e09b7 671 mc->max_cpus = 32;
f83eb10d 672 mc->default_cpu_type = XTENSA_DEFAULT_CPU_TYPE;
59b5e9bb 673 mc->default_ram_size = 512 * MiB - XTFPGA_MMU_RESERVED_MEMORY_SIZE;
e264d29d
EH
674}
675
188ce01d 676static const TypeInfo xtfpga_ml605_type = {
8a661aea
AF
677 .name = MACHINE_TYPE_NAME("ml605"),
678 .parent = TYPE_MACHINE,
188ce01d 679 .class_init = xtfpga_ml605_class_init,
8a661aea 680};
e0db904d 681
85e2d8d5
MF
682static void xtfpga_ml605_nommu_class_init(ObjectClass *oc, void *data)
683{
684 MachineClass *mc = MACHINE_CLASS(oc);
685
a3c5e49d 686 mc->desc = "ml605 noMMU EVB (" XTENSA_DEFAULT_CPU_NOMMU_MODEL ")";
85e2d8d5 687 mc->init = xtfpga_ml605_nommu_init;
174e09b7 688 mc->max_cpus = 32;
a3c5e49d 689 mc->default_cpu_type = XTENSA_DEFAULT_CPU_NOMMU_TYPE;
59b5e9bb 690 mc->default_ram_size = 256 * MiB;
85e2d8d5
MF
691}
692
693static const TypeInfo xtfpga_ml605_nommu_type = {
694 .name = MACHINE_TYPE_NAME("ml605-nommu"),
695 .parent = TYPE_MACHINE,
696 .class_init = xtfpga_ml605_nommu_class_init,
697};
698
188ce01d 699static void xtfpga_kc705_class_init(ObjectClass *oc, void *data)
0200db65 700{
8a661aea
AF
701 MachineClass *mc = MACHINE_CLASS(oc);
702
e264d29d 703 mc->desc = "kc705 EVB (" XTENSA_DEFAULT_CPU_MODEL ")";
188ce01d 704 mc->init = xtfpga_kc705_init;
174e09b7 705 mc->max_cpus = 32;
f83eb10d 706 mc->default_cpu_type = XTENSA_DEFAULT_CPU_TYPE;
59b5e9bb 707 mc->default_ram_size = 1 * GiB - XTFPGA_MMU_RESERVED_MEMORY_SIZE;
0200db65
MF
708}
709
188ce01d 710static const TypeInfo xtfpga_kc705_type = {
8a661aea
AF
711 .name = MACHINE_TYPE_NAME("kc705"),
712 .parent = TYPE_MACHINE,
188ce01d 713 .class_init = xtfpga_kc705_class_init,
8a661aea
AF
714};
715
85e2d8d5
MF
716static void xtfpga_kc705_nommu_class_init(ObjectClass *oc, void *data)
717{
718 MachineClass *mc = MACHINE_CLASS(oc);
719
a3c5e49d 720 mc->desc = "kc705 noMMU EVB (" XTENSA_DEFAULT_CPU_NOMMU_MODEL ")";
85e2d8d5 721 mc->init = xtfpga_kc705_nommu_init;
174e09b7 722 mc->max_cpus = 32;
a3c5e49d 723 mc->default_cpu_type = XTENSA_DEFAULT_CPU_NOMMU_TYPE;
59b5e9bb 724 mc->default_ram_size = 256 * MiB;
85e2d8d5
MF
725}
726
727static const TypeInfo xtfpga_kc705_nommu_type = {
728 .name = MACHINE_TYPE_NAME("kc705-nommu"),
729 .parent = TYPE_MACHINE,
730 .class_init = xtfpga_kc705_nommu_class_init,
731};
732
188ce01d 733static void xtfpga_machines_init(void)
8a661aea 734{
188ce01d
MF
735 type_register_static(&xtfpga_lx60_type);
736 type_register_static(&xtfpga_lx200_type);
737 type_register_static(&xtfpga_ml605_type);
738 type_register_static(&xtfpga_kc705_type);
85e2d8d5
MF
739 type_register_static(&xtfpga_lx60_nommu_type);
740 type_register_static(&xtfpga_lx200_nommu_type);
741 type_register_static(&xtfpga_ml605_nommu_type);
742 type_register_static(&xtfpga_kc705_nommu_type);
8a661aea
AF
743}
744
188ce01d 745type_init(xtfpga_machines_init)