]> git.proxmox.com Git - mirror_qemu.git/blame - hw/mips_r4k.c
added cpu_model parameter to cpu_init()
[mirror_qemu.git] / hw / mips_r4k.c
CommitLineData
e16fe40c
TS
1/*
2 * QEMU/MIPS pseudo-board
3 *
4 * emulates a simple machine with ISA-like bus.
5 * ISA IO space mapped to the 0x14000000 (PHYS) and
6 * ISA memory at the 0x10000000 (PHYS, 16Mb in size).
7 * All peripherial devices are attached to this "bus" with
8 * the standard PC ISA addresses.
9*/
6af0bf9c
FB
10#include "vl.h"
11
2909b29a 12#ifdef TARGET_WORDS_BIGENDIAN
6af0bf9c 13#define BIOS_FILENAME "mips_bios.bin"
f7bcd4e3
TS
14#else
15#define BIOS_FILENAME "mipsel_bios.bin"
16#endif
44cbbf18 17
60aa19ab 18#ifdef TARGET_MIPS64
74287114 19#define PHYS_TO_VIRT(x) ((x) | ~0x7fffffffULL)
5dc4b744 20#else
74287114 21#define PHYS_TO_VIRT(x) ((x) | ~0x7fffffffU)
5dc4b744 22#endif
6af0bf9c 23
5dc4b744 24#define VIRT_TO_PHYS_ADDEND (-((int64_t)(int32_t)0x80000000))
66a93e0f 25
58126404
PB
26static const int ide_iobase[2] = { 0x1f0, 0x170 };
27static const int ide_iobase2[2] = { 0x3f6, 0x376 };
28static const int ide_irq[2] = { 14, 15 };
29
eddbd288
TS
30static int serial_io[MAX_SERIAL_PORTS] = { 0x3f8, 0x2f8, 0x3e8, 0x2e8 };
31static int serial_irq[MAX_SERIAL_PORTS] = { 4, 3, 4, 3 };
32
6af0bf9c
FB
33extern FILE *logfile;
34
e16fe40c 35static PITState *pit; /* PIT i8254 */
697584ab 36
e16fe40c 37/*i8254 PIT is attached to the IRQ0 at PIC i8259 */
6af0bf9c 38
7df526e3
TS
39static struct _loaderparams {
40 int ram_size;
41 const char *kernel_filename;
42 const char *kernel_cmdline;
43 const char *initrd_filename;
44} loaderparams;
45
6ae81775
TS
46static void mips_qemu_writel (void *opaque, target_phys_addr_t addr,
47 uint32_t val)
48{
49 if ((addr & 0xffff) == 0 && val == 42)
50 qemu_system_reset_request ();
51 else if ((addr & 0xffff) == 4 && val == 42)
52 qemu_system_shutdown_request ();
53}
54
55static uint32_t mips_qemu_readl (void *opaque, target_phys_addr_t addr)
56{
57 return 0;
58}
59
60static CPUWriteMemoryFunc *mips_qemu_write[] = {
61 &mips_qemu_writel,
62 &mips_qemu_writel,
63 &mips_qemu_writel,
64};
65
66static CPUReadMemoryFunc *mips_qemu_read[] = {
67 &mips_qemu_readl,
68 &mips_qemu_readl,
69 &mips_qemu_readl,
70};
71
72static int mips_qemu_iomemtype = 0;
73
7df526e3 74static void load_kernel (CPUState *env)
6ae81775 75{
74287114 76 int64_t entry, kernel_low, kernel_high;
6ae81775 77 long kernel_size, initrd_size;
74287114 78 ram_addr_t initrd_offset;
6ae81775 79
7df526e3 80 kernel_size = load_elf(loaderparams.kernel_filename, VIRT_TO_PHYS_ADDEND,
74287114 81 &entry, &kernel_low, &kernel_high);
c570fd16
TS
82 if (kernel_size >= 0) {
83 if ((entry & ~0x7fffffffULL) == 0x80000000)
5dc4b744 84 entry = (int32_t)entry;
ead9360e 85 env->PC[env->current_tc] = entry;
c570fd16 86 } else {
9042c0e2 87 fprintf(stderr, "qemu: could not load kernel '%s'\n",
7df526e3 88 loaderparams.kernel_filename);
9042c0e2 89 exit(1);
6ae81775
TS
90 }
91
92 /* load initrd */
93 initrd_size = 0;
74287114 94 initrd_offset = 0;
7df526e3
TS
95 if (loaderparams.initrd_filename) {
96 initrd_size = get_image_size (loaderparams.initrd_filename);
74287114
TS
97 if (initrd_size > 0) {
98 initrd_offset = (kernel_high + ~TARGET_PAGE_MASK) & TARGET_PAGE_MASK;
99 if (initrd_offset + initrd_size > ram_size) {
100 fprintf(stderr,
101 "qemu: memory too small for initial ram disk '%s'\n",
7df526e3 102 loaderparams.initrd_filename);
74287114
TS
103 exit(1);
104 }
7df526e3 105 initrd_size = load_image(loaderparams.initrd_filename,
74287114
TS
106 phys_ram_base + initrd_offset);
107 }
6ae81775
TS
108 if (initrd_size == (target_ulong) -1) {
109 fprintf(stderr, "qemu: could not load initial ram disk '%s'\n",
7df526e3 110 loaderparams.initrd_filename);
6ae81775
TS
111 exit(1);
112 }
113 }
114
115 /* Store command line. */
116 if (initrd_size > 0) {
117 int ret;
118 ret = sprintf(phys_ram_base + (16 << 20) - 256,
3594c774 119 "rd_start=0x" TARGET_FMT_lx " rd_size=%li ",
74287114 120 PHYS_TO_VIRT((uint32_t)initrd_offset),
6ae81775 121 initrd_size);
7df526e3
TS
122 strcpy (phys_ram_base + (16 << 20) - 256 + ret,
123 loaderparams.kernel_cmdline);
6ae81775
TS
124 }
125 else {
7df526e3
TS
126 strcpy (phys_ram_base + (16 << 20) - 256,
127 loaderparams.kernel_cmdline);
6ae81775
TS
128 }
129
44cbbf18
TS
130 *(int32_t *)(phys_ram_base + (16 << 20) - 260) = tswap32 (0x12345678);
131 *(int32_t *)(phys_ram_base + (16 << 20) - 264) = tswap32 (ram_size);
6ae81775
TS
132}
133
134static void main_cpu_reset(void *opaque)
135{
136 CPUState *env = opaque;
137 cpu_reset(env);
138
7df526e3
TS
139 if (loaderparams.kernel_filename)
140 load_kernel (env);
6ae81775 141}
66a93e0f 142
70705261 143static
6ac0e82d 144void mips_r4k_init (int ram_size, int vga_ram_size, const char *boot_device,
6af0bf9c
FB
145 DisplayState *ds, const char **fd_filename, int snapshot,
146 const char *kernel_filename, const char *kernel_cmdline,
94fc95cd 147 const char *initrd_filename, const char *cpu_model)
6af0bf9c
FB
148{
149 char buf[1024];
6af0bf9c 150 unsigned long bios_offset;
f7bcd4e3 151 int bios_size;
c68ea704 152 CPUState *env;
153a08db 153 RTCState *rtc_state;
58126404 154 int i;
33d68b5f 155 mips_def_t *def;
d537cf6c 156 qemu_irq *i8259;
c68ea704 157
33d68b5f
TS
158 /* init CPUs */
159 if (cpu_model == NULL) {
60aa19ab 160#ifdef TARGET_MIPS64
33d68b5f
TS
161 cpu_model = "R4000";
162#else
1c32f43e 163 cpu_model = "24Kf";
33d68b5f
TS
164#endif
165 }
aaed909a
FB
166 env = cpu_init(cpu_model);
167 if (!env) {
168 fprintf(stderr, "Unable to find CPU definition\n");
169 exit(1);
170 }
c68ea704 171 register_savevm("cpu", 0, 3, cpu_save, cpu_load, env);
6ae81775 172 qemu_register_reset(main_cpu_reset, env);
c68ea704 173
6af0bf9c
FB
174 /* allocate RAM */
175 cpu_register_physical_memory(0, ram_size, IO_MEM_RAM);
66a93e0f 176
6ae81775
TS
177 if (!mips_qemu_iomemtype) {
178 mips_qemu_iomemtype = cpu_register_io_memory(0, mips_qemu_read,
33d68b5f 179 mips_qemu_write, NULL);
6ae81775
TS
180 }
181 cpu_register_physical_memory(0x1fbf0000, 0x10000, mips_qemu_iomemtype);
182
66a93e0f
FB
183 /* Try to load a BIOS image. If this fails, we continue regardless,
184 but initialize the hardware ourselves. When a kernel gets
185 preloaded we also initialize the hardware, since the BIOS wasn't
186 run. */
6af0bf9c 187 bios_offset = ram_size + vga_ram_size;
1192dad8
JM
188 if (bios_name == NULL)
189 bios_name = BIOS_FILENAME;
190 snprintf(buf, sizeof(buf), "%s/%s", bios_dir, bios_name);
f7bcd4e3 191 bios_size = load_image(buf, phys_ram_base + bios_offset);
2909b29a 192 if ((bios_size > 0) && (bios_size <= BIOS_SIZE)) {
44cbbf18 193 cpu_register_physical_memory(0x1fc00000,
66a93e0f 194 BIOS_SIZE, bios_offset | IO_MEM_ROM);
66a93e0f
FB
195 } else {
196 /* not fatal */
197 fprintf(stderr, "qemu: Warning, could not load MIPS bios '%s'\n",
198 buf);
6af0bf9c 199 }
66a93e0f 200
66a93e0f 201 if (kernel_filename) {
7df526e3
TS
202 loaderparams.ram_size = ram_size;
203 loaderparams.kernel_filename = kernel_filename;
204 loaderparams.kernel_cmdline = kernel_cmdline;
205 loaderparams.initrd_filename = initrd_filename;
206 load_kernel (env);
6af0bf9c 207 }
6af0bf9c 208
e16fe40c 209 /* Init CPU internal devices */
d537cf6c 210 cpu_mips_irq_init_cpu(env);
c68ea704 211 cpu_mips_clock_init(env);
6af0bf9c
FB
212 cpu_mips_irqctrl_init();
213
d537cf6c
PB
214 /* The PIC is attached to the MIPS CPU INT0 pin */
215 i8259 = i8259_init(env->irq[2]);
216
217 rtc_state = rtc_init(0x70, i8259[8]);
afdfa781 218
0699b548 219 /* Register 64 KB of ISA IO space at 0x14000000 */
aef445bd 220 isa_mmio_init(0x14000000, 0x00010000);
0699b548
FB
221 isa_mem_base = 0x10000000;
222
d537cf6c 223 pit = pit_init(0x40, i8259[0]);
afdfa781 224
eddbd288
TS
225 for(i = 0; i < MAX_SERIAL_PORTS; i++) {
226 if (serial_hds[i]) {
d537cf6c 227 serial_init(serial_io[i], i8259[serial_irq[i]], serial_hds[i]);
eddbd288
TS
228 }
229 }
230
5fafdf24 231 isa_vga_init(ds, phys_ram_base + ram_size, ram_size,
89b6b508 232 vga_ram_size);
9827e95c 233
a41b2ff2
PB
234 if (nd_table[0].vlan) {
235 if (nd_table[0].model == NULL
236 || strcmp(nd_table[0].model, "ne2k_isa") == 0) {
d537cf6c 237 isa_ne2000_init(0x300, i8259[9], &nd_table[0]);
c4a7060c
BS
238 } else if (strcmp(nd_table[0].model, "?") == 0) {
239 fprintf(stderr, "qemu: Supported NICs: ne2k_isa\n");
240 exit (1);
a41b2ff2
PB
241 } else {
242 fprintf(stderr, "qemu: Unsupported NIC: %s\n", nd_table[0].model);
243 exit (1);
244 }
245 }
58126404
PB
246
247 for(i = 0; i < 2; i++)
d537cf6c 248 isa_ide_init(ide_iobase[i], ide_iobase2[i], i8259[ide_irq[i]],
58126404 249 bs_table[2 * i], bs_table[2 * i + 1]);
70705261 250
d537cf6c 251 i8042_init(i8259[1], i8259[12], 0x60);
9542611a 252 ds1225y_init(0x9000, "nvram");
6af0bf9c
FB
253}
254
255QEMUMachine mips_machine = {
256 "mips",
257 "mips r4k platform",
258 mips_r4k_init,
259};