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