blob: b3abc61551f2edfd730d331a0d68e36cc848b5f3 [file] [log] [blame]
thse16fe402006-12-06 21:38:37 +00001/*
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*/
pbrook87ecb682007-11-17 17:14:51 +000010#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"
thsb305b5b2008-04-20 06:28:28 +000017#include "flash.h"
blueswir13b3fb322008-10-04 07:20:07 +000018#include "qemu-log.h"
Paul Brookbba831e2009-05-19 14:52:42 +010019#include "mips-bios.h"
Gerd Hoffmannec820262009-08-20 15:22:19 +020020#include "ide.h"
Blue Swirlca20cf32009-09-20 14:58:02 +000021#include "loader.h"
22#include "elf.h"
ths44cbbf12007-01-24 22:00:13 +000023
pbrookc6ee6072007-11-11 12:02:33 +000024#define PHYS_TO_VIRT(x) ((x) | ~(target_ulong)0x7fffffff)
bellard6af0bf92005-07-02 14:58:51 +000025
ths5dc4b742006-12-21 13:48:28 +000026#define VIRT_TO_PHYS_ADDEND (-((int64_t)(int32_t)0x80000000))
bellard66a93e02006-04-26 22:06:55 +000027
thse4bcb142007-12-02 04:51:10 +000028#define MAX_IDE_BUS 2
29
pbrook58126402006-10-29 15:38:28 +000030static const int ide_iobase[2] = { 0x1f0, 0x170 };
31static const int ide_iobase2[2] = { 0x3f6, 0x376 };
32static const int ide_irq[2] = { 14, 15 };
33
thseddbd282006-12-23 00:23:19 +000034static int serial_io[MAX_SERIAL_PORTS] = { 0x3f8, 0x2f8, 0x3e8, 0x2e8 };
35static int serial_irq[MAX_SERIAL_PORTS] = { 4, 3, 4, 3 };
36
thse16fe402006-12-06 21:38:37 +000037static PITState *pit; /* PIT i8254 */
bellard697584a2005-08-21 09:41:56 +000038
ths1b660742007-12-07 01:13:37 +000039/* i8254 PIT is attached to the IRQ0 at PIC i8259 */
bellard6af0bf92005-07-02 14:58:51 +000040
ths7df526e2007-11-09 17:52:11 +000041static struct _loaderparams {
42 int ram_size;
43 const char *kernel_filename;
44 const char *kernel_cmdline;
45 const char *initrd_filename;
46} loaderparams;
47
ths6ae81772006-12-06 17:48:52 +000048static void mips_qemu_writel (void *opaque, target_phys_addr_t addr,
49 uint32_t val)
50{
51 if ((addr & 0xffff) == 0 && val == 42)
52 qemu_system_reset_request ();
53 else if ((addr & 0xffff) == 4 && val == 42)
54 qemu_system_shutdown_request ();
55}
56
57static uint32_t mips_qemu_readl (void *opaque, target_phys_addr_t addr)
58{
59 return 0;
60}
61
Blue Swirld60efc62009-08-25 18:29:31 +000062static CPUWriteMemoryFunc * const mips_qemu_write[] = {
ths6ae81772006-12-06 17:48:52 +000063 &mips_qemu_writel,
64 &mips_qemu_writel,
65 &mips_qemu_writel,
66};
67
Blue Swirld60efc62009-08-25 18:29:31 +000068static CPUReadMemoryFunc * const mips_qemu_read[] = {
ths6ae81772006-12-06 17:48:52 +000069 &mips_qemu_readl,
70 &mips_qemu_readl,
71 &mips_qemu_readl,
72};
73
74static int mips_qemu_iomemtype = 0;
75
ths7df526e2007-11-09 17:52:11 +000076static void load_kernel (CPUState *env)
ths6ae81772006-12-06 17:48:52 +000077{
ths74287112007-04-01 17:56:37 +000078 int64_t entry, kernel_low, kernel_high;
ths6ae81772006-12-06 17:48:52 +000079 long kernel_size, initrd_size;
ths74287112007-04-01 17:56:37 +000080 ram_addr_t initrd_offset;
pbrookd7585252009-04-10 03:36:49 +000081 int ret;
Blue Swirlca20cf32009-09-20 14:58:02 +000082 int big_endian;
ths6ae81772006-12-06 17:48:52 +000083
Blue Swirlca20cf32009-09-20 14:58:02 +000084#ifdef TARGET_WORDS_BIGENDIAN
85 big_endian = 1;
86#else
87 big_endian = 0;
88#endif
ths7df526e2007-11-09 17:52:11 +000089 kernel_size = load_elf(loaderparams.kernel_filename, VIRT_TO_PHYS_ADDEND,
blueswir1b55266b2008-09-20 08:07:15 +000090 (uint64_t *)&entry, (uint64_t *)&kernel_low,
Blue Swirlca20cf32009-09-20 14:58:02 +000091 (uint64_t *)&kernel_high, big_endian, ELF_MACHINE, 1);
thsc570fd12006-12-21 01:19:56 +000092 if (kernel_size >= 0) {
93 if ((entry & ~0x7fffffffULL) == 0x80000000)
ths5dc4b742006-12-21 13:48:28 +000094 entry = (int32_t)entry;
thsb5dc7732008-06-27 10:02:35 +000095 env->active_tc.PC = entry;
thsc570fd12006-12-21 01:19:56 +000096 } else {
ths9042c0e2006-12-23 14:18:40 +000097 fprintf(stderr, "qemu: could not load kernel '%s'\n",
ths7df526e2007-11-09 17:52:11 +000098 loaderparams.kernel_filename);
ths9042c0e2006-12-23 14:18:40 +000099 exit(1);
ths6ae81772006-12-06 17:48:52 +0000100 }
101
102 /* load initrd */
103 initrd_size = 0;
ths74287112007-04-01 17:56:37 +0000104 initrd_offset = 0;
ths7df526e2007-11-09 17:52:11 +0000105 if (loaderparams.initrd_filename) {
106 initrd_size = get_image_size (loaderparams.initrd_filename);
ths74287112007-04-01 17:56:37 +0000107 if (initrd_size > 0) {
108 initrd_offset = (kernel_high + ~TARGET_PAGE_MASK) & TARGET_PAGE_MASK;
109 if (initrd_offset + initrd_size > ram_size) {
110 fprintf(stderr,
111 "qemu: memory too small for initial ram disk '%s'\n",
ths7df526e2007-11-09 17:52:11 +0000112 loaderparams.initrd_filename);
ths74287112007-04-01 17:56:37 +0000113 exit(1);
114 }
pbrookdcac9672009-04-09 20:05:49 +0000115 initrd_size = load_image_targphys(loaderparams.initrd_filename,
116 initrd_offset,
117 ram_size - initrd_offset);
ths74287112007-04-01 17:56:37 +0000118 }
ths6ae81772006-12-06 17:48:52 +0000119 if (initrd_size == (target_ulong) -1) {
120 fprintf(stderr, "qemu: could not load initial ram disk '%s'\n",
ths7df526e2007-11-09 17:52:11 +0000121 loaderparams.initrd_filename);
ths6ae81772006-12-06 17:48:52 +0000122 exit(1);
123 }
124 }
125
126 /* Store command line. */
127 if (initrd_size > 0) {
pbrookd7585252009-04-10 03:36:49 +0000128 char buf[64];
129 ret = snprintf(buf, 64, "rd_start=0x" TARGET_FMT_lx " rd_size=%li ",
130 PHYS_TO_VIRT((uint32_t)initrd_offset),
131 initrd_size);
132 cpu_physical_memory_write((16 << 20) - 256, (void *)buf, 64);
133 } else {
134 ret = 0;
ths6ae81772006-12-06 17:48:52 +0000135 }
pbrookd7585252009-04-10 03:36:49 +0000136 pstrcpy_targphys((16 << 20) - 256 + ret, 256,
137 loaderparams.kernel_cmdline);
ths6ae81772006-12-06 17:48:52 +0000138
pbrookd7585252009-04-10 03:36:49 +0000139 stl_phys((16 << 20) - 260, 0x12345678);
140 stl_phys((16 << 20) - 264, ram_size);
ths6ae81772006-12-06 17:48:52 +0000141}
142
143static void main_cpu_reset(void *opaque)
144{
145 CPUState *env = opaque;
146 cpu_reset(env);
147
ths7df526e2007-11-09 17:52:11 +0000148 if (loaderparams.kernel_filename)
149 load_kernel (env);
ths6ae81772006-12-06 17:48:52 +0000150}
bellard66a93e02006-04-26 22:06:55 +0000151
thsb305b5b2008-04-20 06:28:28 +0000152static const int sector_len = 32 * 1024;
ths70705262007-02-18 00:10:59 +0000153static
Paul Brookfbe1b592009-05-13 17:56:25 +0100154void mips_r4k_init (ram_addr_t ram_size,
aliguori3023f332009-01-16 19:04:14 +0000155 const char *boot_device,
bellard6af0bf92005-07-02 14:58:51 +0000156 const char *kernel_filename, const char *kernel_cmdline,
j_mayer94fc95c2007-03-05 19:44:02 +0000157 const char *initrd_filename, const char *cpu_model)
bellard6af0bf92005-07-02 14:58:51 +0000158{
Paul Brook5cea8592009-05-30 00:52:44 +0100159 char *filename;
pbrookdcac9672009-04-09 20:05:49 +0000160 ram_addr_t ram_offset;
pbrookdcac9672009-04-09 20:05:49 +0000161 ram_addr_t bios_offset;
thsf7bcd4e2007-01-06 01:37:51 +0000162 int bios_size;
bellardc68ea702005-11-21 23:33:12 +0000163 CPUState *env;
ths153a08d2007-03-17 15:21:30 +0000164 RTCState *rtc_state;
pbrook58126402006-10-29 15:38:28 +0000165 int i;
pbrookd537cf62007-04-07 18:14:41 +0000166 qemu_irq *i8259;
Gerd Hoffmannf455e982009-08-28 15:47:03 +0200167 DriveInfo *hd[MAX_IDE_BUS * MAX_IDE_DEVS];
Gerd Hoffmann751c6a12009-07-22 16:42:57 +0200168 DriveInfo *dinfo;
bellardc68ea702005-11-21 23:33:12 +0000169
ths33d68b52007-03-18 00:30:29 +0000170 /* init CPUs */
171 if (cpu_model == NULL) {
ths60aa19a2007-04-01 12:36:18 +0000172#ifdef TARGET_MIPS64
ths33d68b52007-03-18 00:30:29 +0000173 cpu_model = "R4000";
174#else
ths1c32f432007-04-28 21:07:41 +0000175 cpu_model = "24Kf";
ths33d68b52007-03-18 00:30:29 +0000176#endif
177 }
bellardaaed9092007-11-10 15:15:54 +0000178 env = cpu_init(cpu_model);
179 if (!env) {
180 fprintf(stderr, "Unable to find CPU definition\n");
181 exit(1);
182 }
Jan Kiszkaa08d4362009-06-27 09:25:07 +0200183 qemu_register_reset(main_cpu_reset, env);
bellardc68ea702005-11-21 23:33:12 +0000184
bellard6af0bf92005-07-02 14:58:51 +0000185 /* allocate RAM */
aurel320ccff152009-01-24 15:07:25 +0000186 if (ram_size > (256 << 20)) {
187 fprintf(stderr,
188 "qemu: Too much memory for this machine: %d MB, maximum 256 MB\n",
189 ((unsigned int)ram_size / (1 << 20)));
190 exit(1);
191 }
pbrookdcac9672009-04-09 20:05:49 +0000192 ram_offset = qemu_ram_alloc(ram_size);
pbrookdcac9672009-04-09 20:05:49 +0000193
194 cpu_register_physical_memory(0, ram_size, ram_offset | IO_MEM_RAM);
bellard66a93e02006-04-26 22:06:55 +0000195
ths6ae81772006-12-06 17:48:52 +0000196 if (!mips_qemu_iomemtype) {
Avi Kivity1eed09c2009-06-14 11:38:51 +0300197 mips_qemu_iomemtype = cpu_register_io_memory(mips_qemu_read,
ths33d68b52007-03-18 00:30:29 +0000198 mips_qemu_write, NULL);
ths6ae81772006-12-06 17:48:52 +0000199 }
200 cpu_register_physical_memory(0x1fbf0000, 0x10000, mips_qemu_iomemtype);
201
bellard66a93e02006-04-26 22:06:55 +0000202 /* Try to load a BIOS image. If this fails, we continue regardless,
203 but initialize the hardware ourselves. When a kernel gets
204 preloaded we also initialize the hardware, since the BIOS wasn't
205 run. */
j_mayer1192dad2007-10-05 13:08:35 +0000206 if (bios_name == NULL)
207 bios_name = BIOS_FILENAME;
Paul Brook5cea8592009-05-30 00:52:44 +0100208 filename = qemu_find_file(QEMU_FILE_TYPE_BIOS, bios_name);
209 if (filename) {
210 bios_size = get_image_size(filename);
211 } else {
212 bios_size = -1;
213 }
ths2909b292007-01-06 02:24:15 +0000214 if ((bios_size > 0) && (bios_size <= BIOS_SIZE)) {
pbrookdcac9672009-04-09 20:05:49 +0000215 bios_offset = qemu_ram_alloc(BIOS_SIZE);
216 cpu_register_physical_memory(0x1fc00000, BIOS_SIZE,
217 bios_offset | IO_MEM_ROM);
218
Paul Brook5cea8592009-05-30 00:52:44 +0100219 load_image_targphys(filename, 0x1fc00000, BIOS_SIZE);
Gerd Hoffmann751c6a12009-07-22 16:42:57 +0200220 } else if ((dinfo = drive_get(IF_PFLASH, 0, 0)) != NULL) {
thsb305b5b2008-04-20 06:28:28 +0000221 uint32_t mips_rom = 0x00400000;
pbrookdcac9672009-04-09 20:05:49 +0000222 bios_offset = qemu_ram_alloc(mips_rom);
223 if (!pflash_cfi01_register(0x1fc00000, bios_offset,
Gerd Hoffmann751c6a12009-07-22 16:42:57 +0200224 dinfo->bdrv, sector_len, mips_rom / sector_len,
thsb305b5b2008-04-20 06:28:28 +0000225 4, 0, 0, 0, 0)) {
226 fprintf(stderr, "qemu: Error registering flash memory.\n");
227 }
228 }
229 else {
bellard66a93e02006-04-26 22:06:55 +0000230 /* not fatal */
231 fprintf(stderr, "qemu: Warning, could not load MIPS bios '%s'\n",
Paul Brook5cea8592009-05-30 00:52:44 +0100232 bios_name);
233 }
234 if (filename) {
235 qemu_free(filename);
bellard6af0bf92005-07-02 14:58:51 +0000236 }
bellard66a93e02006-04-26 22:06:55 +0000237
bellard66a93e02006-04-26 22:06:55 +0000238 if (kernel_filename) {
ths7df526e2007-11-09 17:52:11 +0000239 loaderparams.ram_size = ram_size;
240 loaderparams.kernel_filename = kernel_filename;
241 loaderparams.kernel_cmdline = kernel_cmdline;
242 loaderparams.initrd_filename = initrd_filename;
243 load_kernel (env);
bellard6af0bf92005-07-02 14:58:51 +0000244 }
bellard6af0bf92005-07-02 14:58:51 +0000245
thse16fe402006-12-06 21:38:37 +0000246 /* Init CPU internal devices */
pbrookd537cf62007-04-07 18:14:41 +0000247 cpu_mips_irq_init_cpu(env);
bellardc68ea702005-11-21 23:33:12 +0000248 cpu_mips_clock_init(env);
bellard6af0bf92005-07-02 14:58:51 +0000249
pbrookd537cf62007-04-07 18:14:41 +0000250 /* The PIC is attached to the MIPS CPU INT0 pin */
251 i8259 = i8259_init(env->irq[2]);
Gerd Hoffmann11d23c32009-09-10 11:43:34 +0200252 isa_bus_new(NULL);
253 isa_bus_irqs(i8259);
pbrookd537cf62007-04-07 18:14:41 +0000254
Gerd Hoffmann32e0c822009-09-10 11:43:35 +0200255 rtc_state = rtc_init(2000);
thsafdfa782006-12-07 18:15:35 +0000256
bellard0699b542005-07-02 15:20:29 +0000257 /* Register 64 KB of ISA IO space at 0x14000000 */
pbrookaef445b2006-09-18 01:15:29 +0000258 isa_mmio_init(0x14000000, 0x00010000);
bellard0699b542005-07-02 15:20:29 +0000259 isa_mem_base = 0x10000000;
260
pbrookd537cf62007-04-07 18:14:41 +0000261 pit = pit_init(0x40, i8259[0]);
thsafdfa782006-12-07 18:15:35 +0000262
thseddbd282006-12-23 00:23:19 +0000263 for(i = 0; i < MAX_SERIAL_PORTS; i++) {
264 if (serial_hds[i]) {
aurel32b6cd0ea2008-05-04 21:42:11 +0000265 serial_init(serial_io[i], i8259[serial_irq[i]], 115200,
266 serial_hds[i]);
thseddbd282006-12-23 00:23:19 +0000267 }
268 }
269
Paul Brookfbe1b592009-05-13 17:56:25 +0100270 isa_vga_init();
bellard9827e952005-07-02 15:26:04 +0000271
aliguori0ae18ce2009-01-13 19:39:36 +0000272 if (nd_table[0].vlan)
Gerd Hoffmann9453c5b2009-09-10 11:43:33 +0200273 isa_ne2000_init(0x300, 9, &nd_table[0]);
pbrook58126402006-10-29 15:38:28 +0000274
thse4bcb142007-12-02 04:51:10 +0000275 if (drive_get_max_bus(IF_IDE) >= MAX_IDE_BUS) {
276 fprintf(stderr, "qemu: too many IDE bus\n");
277 exit(1);
278 }
279
280 for(i = 0; i < MAX_IDE_BUS * MAX_IDE_DEVS; i++) {
Gerd Hoffmannf455e982009-08-28 15:47:03 +0200281 hd[i] = drive_get(IF_IDE, i / MAX_IDE_DEVS, i % MAX_IDE_DEVS);
thse4bcb142007-12-02 04:51:10 +0000282 }
283
284 for(i = 0; i < MAX_IDE_BUS; i++)
Gerd Hoffmanndea21e92009-09-15 20:05:00 +0000285 isa_ide_init(ide_iobase[i], ide_iobase2[i], ide_irq[i],
thse4bcb142007-12-02 04:51:10 +0000286 hd[MAX_IDE_DEVS * i],
287 hd[MAX_IDE_DEVS * i + 1]);
ths70705262007-02-18 00:10:59 +0000288
Gerd Hoffmann11d23c32009-09-10 11:43:34 +0200289 isa_create_simple("i8042");
bellard6af0bf92005-07-02 14:58:51 +0000290}
291
Anthony Liguorif80f9ec2009-05-20 18:38:09 -0500292static QEMUMachine mips_machine = {
thseec27432008-08-13 13:01:28 +0000293 .name = "mips",
294 .desc = "mips r4k platform",
295 .init = mips_r4k_init,
bellard6af0bf92005-07-02 14:58:51 +0000296};
Anthony Liguorif80f9ec2009-05-20 18:38:09 -0500297
298static void mips_machine_init(void)
299{
300 qemu_register_machine(&mips_machine);
301}
302
303machine_init(mips_machine_init);