2 * Copyright (c) 2011, Max Filippov, Open Source and Linux Lab.
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.
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.
28 #include "qemu/osdep.h"
29 #include "qemu/units.h"
30 #include "qapi/error.h"
32 #include "sysemu/sysemu.h"
33 #include "hw/boards.h"
34 #include "hw/loader.h"
36 #include "exec/memory.h"
37 #include "exec/address-spaces.h"
38 #include "hw/char/serial.h"
40 #include "hw/sysbus.h"
41 #include "hw/block/flash.h"
42 #include "chardev/char.h"
43 #include "sysemu/device_tree.h"
44 #include "qemu/error-report.h"
45 #include "qemu/option.h"
46 #include "bootparam.h"
47 #include "xtensa_memory.h"
48 #include "hw/xtensa/mx_pic.h"
50 typedef struct XtfpgaFlashDesc
{
57 typedef struct XtfpgaBoardDesc
{
58 const XtfpgaFlashDesc
*flash
;
63 typedef struct XtfpgaFpgaState
{
70 static void xtfpga_fpga_reset(void *opaque
)
72 XtfpgaFpgaState
*s
= opaque
;
78 static uint64_t xtfpga_fpga_read(void *opaque
, hwaddr addr
,
81 XtfpgaFpgaState
*s
= opaque
;
84 case 0x0: /*build date code*/
87 case 0x4: /*processor clock frequency, Hz*/
90 case 0x8: /*LEDs (off = 0, on = 1)*/
93 case 0xc: /*DIP switches (off = 0, on = 1)*/
99 static void xtfpga_fpga_write(void *opaque
, hwaddr addr
,
100 uint64_t val
, unsigned size
)
102 XtfpgaFpgaState
*s
= opaque
;
105 case 0x8: /*LEDs (off = 0, on = 1)*/
109 case 0x10: /*board reset*/
111 qemu_system_reset_request(SHUTDOWN_CAUSE_GUEST_RESET
);
117 static const MemoryRegionOps xtfpga_fpga_ops
= {
118 .read
= xtfpga_fpga_read
,
119 .write
= xtfpga_fpga_write
,
120 .endianness
= DEVICE_NATIVE_ENDIAN
,
123 static XtfpgaFpgaState
*xtfpga_fpga_init(MemoryRegion
*address_space
,
124 hwaddr base
, uint32_t freq
)
126 XtfpgaFpgaState
*s
= g_malloc(sizeof(XtfpgaFpgaState
));
128 memory_region_init_io(&s
->iomem
, NULL
, &xtfpga_fpga_ops
, s
,
129 "xtfpga.fpga", 0x10000);
130 memory_region_add_subregion(address_space
, base
, &s
->iomem
);
132 xtfpga_fpga_reset(s
);
133 qemu_register_reset(xtfpga_fpga_reset
, s
);
137 static void xtfpga_net_init(MemoryRegion
*address_space
,
141 qemu_irq irq
, NICInfo
*nd
)
147 dev
= qdev_create(NULL
, "open_eth");
148 qdev_set_nic_properties(dev
, nd
);
149 qdev_init_nofail(dev
);
151 s
= SYS_BUS_DEVICE(dev
);
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));
158 ram
= g_malloc(sizeof(*ram
));
159 memory_region_init_ram_nomigrate(ram
, OBJECT(s
), "open_eth.ram", 16 * KiB
,
161 vmstate_register_ram_global(ram
);
162 memory_region_add_subregion(address_space
, buffers
, ram
);
165 static pflash_t
*xtfpga_flash_init(MemoryRegion
*address_space
,
166 const XtfpgaBoardDesc
*board
,
167 DriveInfo
*dinfo
, int be
)
170 DeviceState
*dev
= qdev_create(NULL
, "cfi.pflash01");
172 qdev_prop_set_drive(dev
, "drive", blk_by_legacy_dinfo(dinfo
),
174 qdev_prop_set_uint32(dev
, "num-blocks",
175 board
->flash
->size
/ board
->flash
->sector_size
);
176 qdev_prop_set_uint64(dev
, "sector-length", board
->flash
->sector_size
);
177 qdev_prop_set_uint8(dev
, "width", 2);
178 qdev_prop_set_bit(dev
, "big-endian", be
);
179 qdev_prop_set_string(dev
, "name", "xtfpga.io.flash");
180 qdev_init_nofail(dev
);
181 s
= SYS_BUS_DEVICE(dev
);
182 memory_region_add_subregion(address_space
, board
->flash
->base
,
183 sysbus_mmio_get_region(s
, 0));
184 return OBJECT_CHECK(pflash_t
, (dev
), "cfi.pflash01");
187 static uint64_t translate_phys_addr(void *opaque
, uint64_t addr
)
189 XtensaCPU
*cpu
= opaque
;
191 return cpu_get_phys_page_debug(CPU(cpu
), addr
);
194 static void xtfpga_reset(void *opaque
)
196 XtensaCPU
*cpu
= opaque
;
201 static uint64_t xtfpga_io_read(void *opaque
, hwaddr addr
,
207 static void xtfpga_io_write(void *opaque
, hwaddr addr
,
208 uint64_t val
, unsigned size
)
212 static const MemoryRegionOps xtfpga_io_ops
= {
213 .read
= xtfpga_io_read
,
214 .write
= xtfpga_io_write
,
215 .endianness
= DEVICE_NATIVE_ENDIAN
,
218 static void xtfpga_init(const XtfpgaBoardDesc
*board
, MachineState
*machine
)
220 #ifdef TARGET_WORDS_BIGENDIAN
225 MemoryRegion
*system_memory
= get_system_memory();
226 XtensaCPU
*cpu
= NULL
;
227 CPUXtensaState
*env
= NULL
;
228 MemoryRegion
*system_io
;
229 XtensaMxPic
*mx_pic
= NULL
;
232 pflash_t
*flash
= NULL
;
233 QemuOpts
*machine_opts
= qemu_get_machine_opts();
234 const char *kernel_filename
= qemu_opt_get(machine_opts
, "kernel");
235 const char *kernel_cmdline
= qemu_opt_get(machine_opts
, "append");
236 const char *dtb_filename
= qemu_opt_get(machine_opts
, "dtb");
237 const char *initrd_filename
= qemu_opt_get(machine_opts
, "initrd");
238 const unsigned system_io_size
= 224 * MiB
;
239 uint32_t freq
= 10000000;
243 mx_pic
= xtensa_mx_pic_init(31);
244 qemu_register_reset(xtensa_mx_pic_reset
, mx_pic
);
246 for (n
= 0; n
< smp_cpus
; n
++) {
247 CPUXtensaState
*cenv
= NULL
;
249 cpu
= XTENSA_CPU(cpu_create(machine
->cpu_type
));
253 freq
= env
->config
->clock_freq_khz
* 1000;
257 MemoryRegion
*mx_eri
;
259 mx_eri
= xtensa_mx_pic_register_cpu(mx_pic
,
260 xtensa_get_extints(cenv
),
261 xtensa_get_runstall(cenv
));
262 memory_region_add_subregion(xtensa_get_er_region(cenv
),
265 cenv
->sregs
[PRID
] = n
;
266 xtensa_select_static_vectors(cenv
, n
!= 0);
267 qemu_register_reset(xtfpga_reset
, cpu
);
268 /* Need MMU initialized prior to ELF loading,
269 * so that ELF gets loaded into virtual addresses
274 extints
= xtensa_mx_pic_get_extints(mx_pic
);
276 extints
= xtensa_get_extints(env
);
280 XtensaMemory sysram
= env
->config
->sysram
;
282 sysram
.location
[0].size
= machine
->ram_size
;
283 xtensa_create_memory_regions(&env
->config
->instrom
, "xtensa.instrom",
285 xtensa_create_memory_regions(&env
->config
->instram
, "xtensa.instram",
287 xtensa_create_memory_regions(&env
->config
->datarom
, "xtensa.datarom",
289 xtensa_create_memory_regions(&env
->config
->dataram
, "xtensa.dataram",
291 xtensa_create_memory_regions(&sysram
, "xtensa.sysram",
295 system_io
= g_malloc(sizeof(*system_io
));
296 memory_region_init_io(system_io
, NULL
, &xtfpga_io_ops
, NULL
, "xtfpga.io",
298 memory_region_add_subregion(system_memory
, board
->io
[0], system_io
);
300 MemoryRegion
*io
= g_malloc(sizeof(*io
));
302 memory_region_init_alias(io
, NULL
, "xtfpga.io.cached",
303 system_io
, 0, system_io_size
);
304 memory_region_add_subregion(system_memory
, board
->io
[1], io
);
306 xtfpga_fpga_init(system_io
, 0x0d020000, freq
);
307 if (nd_table
[0].used
) {
308 xtfpga_net_init(system_io
, 0x0d030000, 0x0d030400, 0x0d800000,
309 extints
[1], nd_table
);
312 serial_mm_init(system_io
, 0x0d050020, 2, extints
[0],
313 115200, serial_hd(0), DEVICE_NATIVE_ENDIAN
);
315 dinfo
= drive_get(IF_PFLASH
, 0, 0);
317 flash
= xtfpga_flash_init(system_io
, board
, dinfo
, be
);
320 /* Use presence of kernel file name as 'boot from SRAM' switch. */
321 if (kernel_filename
) {
322 uint32_t entry_point
= env
->pc
;
323 size_t bp_size
= 3 * get_tag_size(0); /* first/last and memory tags */
324 uint32_t tagptr
= env
->config
->sysrom
.location
[0].addr
+
327 BpMemInfo memory_location
= {
328 .type
= tswap32(MEMORY_TYPE_CONVENTIONAL
),
329 .start
= tswap32(env
->config
->sysram
.location
[0].addr
),
330 .end
= tswap32(env
->config
->sysram
.location
[0].addr
+
333 uint32_t lowmem_end
= machine
->ram_size
< 0x08000000 ?
334 machine
->ram_size
: 0x08000000;
335 uint32_t cur_lowmem
= QEMU_ALIGN_UP(lowmem_end
/ 2, 4096);
337 lowmem_end
+= env
->config
->sysram
.location
[0].addr
;
338 cur_lowmem
+= env
->config
->sysram
.location
[0].addr
;
340 xtensa_create_memory_regions(&env
->config
->sysrom
, "xtensa.sysrom",
343 if (kernel_cmdline
) {
344 bp_size
+= get_tag_size(strlen(kernel_cmdline
) + 1);
347 bp_size
+= get_tag_size(sizeof(uint32_t));
349 if (initrd_filename
) {
350 bp_size
+= get_tag_size(sizeof(BpMemInfo
));
353 /* Put kernel bootparameters to the end of that SRAM */
354 tagptr
= (tagptr
- bp_size
) & ~0xff;
355 cur_tagptr
= put_tag(tagptr
, BP_TAG_FIRST
, 0, NULL
);
356 cur_tagptr
= put_tag(cur_tagptr
, BP_TAG_MEMORY
,
357 sizeof(memory_location
), &memory_location
);
359 if (kernel_cmdline
) {
360 cur_tagptr
= put_tag(cur_tagptr
, BP_TAG_COMMAND_LINE
,
361 strlen(kernel_cmdline
) + 1, kernel_cmdline
);
366 void *fdt
= load_device_tree(dtb_filename
, &fdt_size
);
367 uint32_t dtb_addr
= tswap32(cur_lowmem
);
370 error_report("could not load DTB '%s'", dtb_filename
);
374 cpu_physical_memory_write(cur_lowmem
, fdt
, fdt_size
);
375 cur_tagptr
= put_tag(cur_tagptr
, BP_TAG_FDT
,
376 sizeof(dtb_addr
), &dtb_addr
);
377 cur_lowmem
= QEMU_ALIGN_UP(cur_lowmem
+ fdt_size
, 4 * KiB
);
381 error_report("could not load DTB '%s': "
382 "FDT support is not configured in QEMU",
387 if (initrd_filename
) {
388 BpMemInfo initrd_location
= { 0 };
389 int initrd_size
= load_ramdisk(initrd_filename
, cur_lowmem
,
390 lowmem_end
- cur_lowmem
);
392 if (initrd_size
< 0) {
393 initrd_size
= load_image_targphys(initrd_filename
,
395 lowmem_end
- cur_lowmem
);
397 if (initrd_size
< 0) {
398 error_report("could not load initrd '%s'", initrd_filename
);
401 initrd_location
.start
= tswap32(cur_lowmem
);
402 initrd_location
.end
= tswap32(cur_lowmem
+ initrd_size
);
403 cur_tagptr
= put_tag(cur_tagptr
, BP_TAG_INITRD
,
404 sizeof(initrd_location
), &initrd_location
);
405 cur_lowmem
= QEMU_ALIGN_UP(cur_lowmem
+ initrd_size
, 4 * KiB
);
407 cur_tagptr
= put_tag(cur_tagptr
, BP_TAG_LAST
, 0, NULL
);
408 env
->regs
[2] = tagptr
;
411 uint64_t elf_lowaddr
;
412 int success
= load_elf(kernel_filename
, NULL
, translate_phys_addr
, cpu
,
413 &elf_entry
, &elf_lowaddr
, NULL
, be
, EM_XTENSA
, 0, 0);
415 entry_point
= elf_entry
;
419 success
= load_uimage(kernel_filename
, &ep
, NULL
, &is_linux
,
420 translate_phys_addr
, cpu
);
421 if (success
> 0 && is_linux
) {
424 error_report("could not load kernel '%s'",
429 if (entry_point
!= env
->pc
) {
431 #ifdef TARGET_WORDS_BIGENDIAN
432 0x60, 0x00, 0x08, /* j 1f */
433 0x00, /* .literal_position */
434 0x00, 0x00, 0x00, 0x00, /* .literal entry_pc */
435 0x00, 0x00, 0x00, 0x00, /* .literal entry_a2 */
437 0x10, 0xff, 0xfe, /* l32r a0, entry_pc */
438 0x12, 0xff, 0xfe, /* l32r a2, entry_a2 */
439 0x0a, 0x00, 0x00, /* jx a0 */
441 0x06, 0x02, 0x00, /* j 1f */
442 0x00, /* .literal_position */
443 0x00, 0x00, 0x00, 0x00, /* .literal entry_pc */
444 0x00, 0x00, 0x00, 0x00, /* .literal entry_a2 */
446 0x01, 0xfe, 0xff, /* l32r a0, entry_pc */
447 0x21, 0xfe, 0xff, /* l32r a2, entry_a2 */
448 0xa0, 0x00, 0x00, /* jx a0 */
451 uint32_t entry_pc
= tswap32(entry_point
);
452 uint32_t entry_a2
= tswap32(tagptr
);
454 memcpy(boot
+ 4, &entry_pc
, sizeof(entry_pc
));
455 memcpy(boot
+ 8, &entry_a2
, sizeof(entry_a2
));
456 cpu_physical_memory_write(env
->pc
, boot
, sizeof(boot
));
460 MemoryRegion
*flash_mr
= pflash_cfi01_get_memory(flash
);
461 MemoryRegion
*flash_io
= g_malloc(sizeof(*flash_io
));
462 uint32_t size
= env
->config
->sysrom
.location
[0].size
;
464 if (board
->flash
->size
- board
->flash
->boot_base
< size
) {
465 size
= board
->flash
->size
- board
->flash
->boot_base
;
468 memory_region_init_alias(flash_io
, NULL
, "xtfpga.flash",
469 flash_mr
, board
->flash
->boot_base
, size
);
470 memory_region_add_subregion(system_memory
,
471 env
->config
->sysrom
.location
[0].addr
,
474 xtensa_create_memory_regions(&env
->config
->sysrom
, "xtensa.sysrom",
480 #define XTFPGA_MMU_RESERVED_MEMORY_SIZE (128 * MiB)
482 static const hwaddr xtfpga_mmu_io
[2] = {
486 static const hwaddr xtfpga_nommu_io
[2] = {
491 static const XtfpgaFlashDesc lx60_flash
= {
494 .sector_size
= 0x10000,
497 static void xtfpga_lx60_init(MachineState
*machine
)
499 static const XtfpgaBoardDesc lx60_board
= {
500 .flash
= &lx60_flash
,
501 .sram_size
= 0x20000,
504 xtfpga_init(&lx60_board
, machine
);
507 static void xtfpga_lx60_nommu_init(MachineState
*machine
)
509 static const XtfpgaBoardDesc lx60_board
= {
510 .flash
= &lx60_flash
,
511 .sram_size
= 0x20000,
512 .io
= xtfpga_nommu_io
,
514 xtfpga_init(&lx60_board
, machine
);
517 static const XtfpgaFlashDesc lx200_flash
= {
520 .sector_size
= 0x20000,
523 static void xtfpga_lx200_init(MachineState
*machine
)
525 static const XtfpgaBoardDesc lx200_board
= {
526 .flash
= &lx200_flash
,
527 .sram_size
= 0x2000000,
530 xtfpga_init(&lx200_board
, machine
);
533 static void xtfpga_lx200_nommu_init(MachineState
*machine
)
535 static const XtfpgaBoardDesc lx200_board
= {
536 .flash
= &lx200_flash
,
537 .sram_size
= 0x2000000,
538 .io
= xtfpga_nommu_io
,
540 xtfpga_init(&lx200_board
, machine
);
543 static const XtfpgaFlashDesc ml605_flash
= {
546 .sector_size
= 0x20000,
549 static void xtfpga_ml605_init(MachineState
*machine
)
551 static const XtfpgaBoardDesc ml605_board
= {
552 .flash
= &ml605_flash
,
553 .sram_size
= 0x2000000,
556 xtfpga_init(&ml605_board
, machine
);
559 static void xtfpga_ml605_nommu_init(MachineState
*machine
)
561 static const XtfpgaBoardDesc ml605_board
= {
562 .flash
= &ml605_flash
,
563 .sram_size
= 0x2000000,
564 .io
= xtfpga_nommu_io
,
566 xtfpga_init(&ml605_board
, machine
);
569 static const XtfpgaFlashDesc kc705_flash
= {
572 .boot_base
= 0x06000000,
573 .sector_size
= 0x20000,
576 static void xtfpga_kc705_init(MachineState
*machine
)
578 static const XtfpgaBoardDesc kc705_board
= {
579 .flash
= &kc705_flash
,
580 .sram_size
= 0x2000000,
583 xtfpga_init(&kc705_board
, machine
);
586 static void xtfpga_kc705_nommu_init(MachineState
*machine
)
588 static const XtfpgaBoardDesc kc705_board
= {
589 .flash
= &kc705_flash
,
590 .sram_size
= 0x2000000,
591 .io
= xtfpga_nommu_io
,
593 xtfpga_init(&kc705_board
, machine
);
596 static void xtfpga_lx60_class_init(ObjectClass
*oc
, void *data
)
598 MachineClass
*mc
= MACHINE_CLASS(oc
);
600 mc
->desc
= "lx60 EVB (" XTENSA_DEFAULT_CPU_MODEL
")";
601 mc
->init
= xtfpga_lx60_init
;
603 mc
->default_cpu_type
= XTENSA_DEFAULT_CPU_TYPE
;
604 mc
->default_ram_size
= 64 * MiB
;
607 static const TypeInfo xtfpga_lx60_type
= {
608 .name
= MACHINE_TYPE_NAME("lx60"),
609 .parent
= TYPE_MACHINE
,
610 .class_init
= xtfpga_lx60_class_init
,
613 static void xtfpga_lx60_nommu_class_init(ObjectClass
*oc
, void *data
)
615 MachineClass
*mc
= MACHINE_CLASS(oc
);
617 mc
->desc
= "lx60 noMMU EVB (" XTENSA_DEFAULT_CPU_NOMMU_MODEL
")";
618 mc
->init
= xtfpga_lx60_nommu_init
;
620 mc
->default_cpu_type
= XTENSA_DEFAULT_CPU_NOMMU_TYPE
;
621 mc
->default_ram_size
= 64 * MiB
;
624 static const TypeInfo xtfpga_lx60_nommu_type
= {
625 .name
= MACHINE_TYPE_NAME("lx60-nommu"),
626 .parent
= TYPE_MACHINE
,
627 .class_init
= xtfpga_lx60_nommu_class_init
,
630 static void xtfpga_lx200_class_init(ObjectClass
*oc
, void *data
)
632 MachineClass
*mc
= MACHINE_CLASS(oc
);
634 mc
->desc
= "lx200 EVB (" XTENSA_DEFAULT_CPU_MODEL
")";
635 mc
->init
= xtfpga_lx200_init
;
637 mc
->default_cpu_type
= XTENSA_DEFAULT_CPU_TYPE
;
638 mc
->default_ram_size
= 96 * MiB
;
641 static const TypeInfo xtfpga_lx200_type
= {
642 .name
= MACHINE_TYPE_NAME("lx200"),
643 .parent
= TYPE_MACHINE
,
644 .class_init
= xtfpga_lx200_class_init
,
647 static void xtfpga_lx200_nommu_class_init(ObjectClass
*oc
, void *data
)
649 MachineClass
*mc
= MACHINE_CLASS(oc
);
651 mc
->desc
= "lx200 noMMU EVB (" XTENSA_DEFAULT_CPU_NOMMU_MODEL
")";
652 mc
->init
= xtfpga_lx200_nommu_init
;
654 mc
->default_cpu_type
= XTENSA_DEFAULT_CPU_NOMMU_TYPE
;
655 mc
->default_ram_size
= 96 * MiB
;
658 static const TypeInfo xtfpga_lx200_nommu_type
= {
659 .name
= MACHINE_TYPE_NAME("lx200-nommu"),
660 .parent
= TYPE_MACHINE
,
661 .class_init
= xtfpga_lx200_nommu_class_init
,
664 static void xtfpga_ml605_class_init(ObjectClass
*oc
, void *data
)
666 MachineClass
*mc
= MACHINE_CLASS(oc
);
668 mc
->desc
= "ml605 EVB (" XTENSA_DEFAULT_CPU_MODEL
")";
669 mc
->init
= xtfpga_ml605_init
;
671 mc
->default_cpu_type
= XTENSA_DEFAULT_CPU_TYPE
;
672 mc
->default_ram_size
= 512 * MiB
- XTFPGA_MMU_RESERVED_MEMORY_SIZE
;
675 static const TypeInfo xtfpga_ml605_type
= {
676 .name
= MACHINE_TYPE_NAME("ml605"),
677 .parent
= TYPE_MACHINE
,
678 .class_init
= xtfpga_ml605_class_init
,
681 static void xtfpga_ml605_nommu_class_init(ObjectClass
*oc
, void *data
)
683 MachineClass
*mc
= MACHINE_CLASS(oc
);
685 mc
->desc
= "ml605 noMMU EVB (" XTENSA_DEFAULT_CPU_NOMMU_MODEL
")";
686 mc
->init
= xtfpga_ml605_nommu_init
;
688 mc
->default_cpu_type
= XTENSA_DEFAULT_CPU_NOMMU_TYPE
;
689 mc
->default_ram_size
= 256 * MiB
;
692 static const TypeInfo xtfpga_ml605_nommu_type
= {
693 .name
= MACHINE_TYPE_NAME("ml605-nommu"),
694 .parent
= TYPE_MACHINE
,
695 .class_init
= xtfpga_ml605_nommu_class_init
,
698 static void xtfpga_kc705_class_init(ObjectClass
*oc
, void *data
)
700 MachineClass
*mc
= MACHINE_CLASS(oc
);
702 mc
->desc
= "kc705 EVB (" XTENSA_DEFAULT_CPU_MODEL
")";
703 mc
->init
= xtfpga_kc705_init
;
705 mc
->default_cpu_type
= XTENSA_DEFAULT_CPU_TYPE
;
706 mc
->default_ram_size
= 1 * GiB
- XTFPGA_MMU_RESERVED_MEMORY_SIZE
;
709 static const TypeInfo xtfpga_kc705_type
= {
710 .name
= MACHINE_TYPE_NAME("kc705"),
711 .parent
= TYPE_MACHINE
,
712 .class_init
= xtfpga_kc705_class_init
,
715 static void xtfpga_kc705_nommu_class_init(ObjectClass
*oc
, void *data
)
717 MachineClass
*mc
= MACHINE_CLASS(oc
);
719 mc
->desc
= "kc705 noMMU EVB (" XTENSA_DEFAULT_CPU_NOMMU_MODEL
")";
720 mc
->init
= xtfpga_kc705_nommu_init
;
722 mc
->default_cpu_type
= XTENSA_DEFAULT_CPU_NOMMU_TYPE
;
723 mc
->default_ram_size
= 256 * MiB
;
726 static const TypeInfo xtfpga_kc705_nommu_type
= {
727 .name
= MACHINE_TYPE_NAME("kc705-nommu"),
728 .parent
= TYPE_MACHINE
,
729 .class_init
= xtfpga_kc705_nommu_class_init
,
732 static void xtfpga_machines_init(void)
734 type_register_static(&xtfpga_lx60_type
);
735 type_register_static(&xtfpga_lx200_type
);
736 type_register_static(&xtfpga_ml605_type
);
737 type_register_static(&xtfpga_kc705_type
);
738 type_register_static(&xtfpga_lx60_nommu_type
);
739 type_register_static(&xtfpga_lx200_nommu_type
);
740 type_register_static(&xtfpga_ml605_nommu_type
);
741 type_register_static(&xtfpga_kc705_nommu_type
);
744 type_init(xtfpga_machines_init
)