1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29#include "qemu/osdep.h"
30#include "qapi/error.h"
31#include "qemu-common.h"
32#include "cpu.h"
33
34#include "hw/sysbus.h"
35#include "hw/char/serial.h"
36#include "hw/boards.h"
37#include "exec/memory.h"
38#include "exec/address-spaces.h"
39#include "qemu/config-file.h"
40
41#include "boot.h"
42
43#define BINARY_DEVICE_TREE_FILE "generic-nommu.dtb"
44
45static void nios2_generic_nommu_init(MachineState *machine)
46{
47 Nios2CPU *cpu;
48 MemoryRegion *address_space_mem = get_system_memory();
49 MemoryRegion *phys_tcm = g_new(MemoryRegion, 1);
50 MemoryRegion *phys_tcm_alias = g_new(MemoryRegion, 1);
51 MemoryRegion *phys_ram = g_new(MemoryRegion, 1);
52 MemoryRegion *phys_ram_alias = g_new(MemoryRegion, 1);
53 ram_addr_t tcm_base = 0x0;
54 ram_addr_t tcm_size = 0x1000;
55 ram_addr_t ram_base = 0x10000000;
56 ram_addr_t ram_size = 0x08000000;
57
58
59 memory_region_init_ram(phys_tcm, NULL, "nios2.tcm", tcm_size,
60 &error_abort);
61 memory_region_init_alias(phys_tcm_alias, NULL, "nios2.tcm.alias",
62 phys_tcm, 0, tcm_size);
63 memory_region_add_subregion(address_space_mem, tcm_base, phys_tcm);
64 memory_region_add_subregion(address_space_mem, 0xc0000000 + tcm_base,
65 phys_tcm_alias);
66
67
68 memory_region_init_ram(phys_ram, NULL, "nios2.ram", ram_size,
69 &error_abort);
70 memory_region_init_alias(phys_ram_alias, NULL, "nios2.ram.alias",
71 phys_ram, 0, ram_size);
72 memory_region_add_subregion(address_space_mem, ram_base, phys_ram);
73 memory_region_add_subregion(address_space_mem, 0xc0000000 + ram_base,
74 phys_ram_alias);
75
76 cpu = NIOS2_CPU(cpu_create(TYPE_NIOS2_CPU));
77
78
79 cpu->mmu_present = false;
80
81
82 cpu->reset_addr = ram_base;
83
84
85 cpu->exception_addr = ram_base + 0x20;
86
87
88
89
90
91 cpu->fast_tlb_miss_addr = 0x7fff400;
92
93 nios2_load_kernel(cpu, ram_base, ram_size, machine->initrd_filename,
94 BINARY_DEVICE_TREE_FILE, NULL);
95}
96
97static void nios2_generic_nommu_machine_init(struct MachineClass *mc)
98{
99 mc->desc = "Generic NOMMU Nios II design";
100 mc->init = nios2_generic_nommu_init;
101}
102
103DEFINE_MACHINE("nios2-generic-nommu", nios2_generic_nommu_machine_init);
104