blob: 6892060a7e5f2b2589bbb90f45e9df768ac1a79c [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"
ths44cbbf12007-01-24 22:00:13 +000020
pbrookc6ee6072007-11-11 12:02:33 +000021#define PHYS_TO_VIRT(x) ((x) | ~(target_ulong)0x7fffffff)
bellard6af0bf92005-07-02 14:58:51 +000022
ths5dc4b742006-12-21 13:48:28 +000023#define VIRT_TO_PHYS_ADDEND (-((int64_t)(int32_t)0x80000000))
bellard66a93e02006-04-26 22:06:55 +000024
thse4bcb142007-12-02 04:51:10 +000025#define MAX_IDE_BUS 2
26
pbrook58126402006-10-29 15:38:28 +000027static const int ide_iobase[2] = { 0x1f0, 0x170 };
28static const int ide_iobase2[2] = { 0x3f6, 0x376 };
29static const int ide_irq[2] = { 14, 15 };
30
thseddbd282006-12-23 00:23:19 +000031static int serial_io[MAX_SERIAL_PORTS] = { 0x3f8, 0x2f8, 0x3e8, 0x2e8 };
32static int serial_irq[MAX_SERIAL_PORTS] = { 4, 3, 4, 3 };
33
thse16fe402006-12-06 21:38:37 +000034static PITState *pit; /* PIT i8254 */
bellard697584a2005-08-21 09:41:56 +000035
ths1b660742007-12-07 01:13:37 +000036/* i8254 PIT is attached to the IRQ0 at PIC i8259 */
bellard6af0bf92005-07-02 14:58:51 +000037
ths7df526e2007-11-09 17:52:11 +000038static struct _loaderparams {
39 int ram_size;
40 const char *kernel_filename;
41 const char *kernel_cmdline;
42 const char *initrd_filename;
43} loaderparams;
44
ths6ae81772006-12-06 17:48:52 +000045static void mips_qemu_writel (void *opaque, target_phys_addr_t addr,
46 uint32_t val)
47{
48 if ((addr & 0xffff) == 0 && val == 42)
49 qemu_system_reset_request ();
50 else if ((addr & 0xffff) == 4 && val == 42)
51 qemu_system_shutdown_request ();
52}
53
54static uint32_t mips_qemu_readl (void *opaque, target_phys_addr_t addr)
55{
56 return 0;
57}
58
59static CPUWriteMemoryFunc *mips_qemu_write[] = {
60 &mips_qemu_writel,
61 &mips_qemu_writel,
62 &mips_qemu_writel,
63};
64
65static CPUReadMemoryFunc *mips_qemu_read[] = {
66 &mips_qemu_readl,
67 &mips_qemu_readl,
68 &mips_qemu_readl,
69};
70
71static int mips_qemu_iomemtype = 0;
72
ths7df526e2007-11-09 17:52:11 +000073static void load_kernel (CPUState *env)
ths6ae81772006-12-06 17:48:52 +000074{
ths74287112007-04-01 17:56:37 +000075 int64_t entry, kernel_low, kernel_high;
ths6ae81772006-12-06 17:48:52 +000076 long kernel_size, initrd_size;
ths74287112007-04-01 17:56:37 +000077 ram_addr_t initrd_offset;
pbrookd7585252009-04-10 03:36:49 +000078 int ret;
ths6ae81772006-12-06 17:48:52 +000079
ths7df526e2007-11-09 17:52:11 +000080 kernel_size = load_elf(loaderparams.kernel_filename, VIRT_TO_PHYS_ADDEND,
blueswir1b55266b2008-09-20 08:07:15 +000081 (uint64_t *)&entry, (uint64_t *)&kernel_low,
82 (uint64_t *)&kernel_high);
thsc570fd12006-12-21 01:19:56 +000083 if (kernel_size >= 0) {
84 if ((entry & ~0x7fffffffULL) == 0x80000000)
ths5dc4b742006-12-21 13:48:28 +000085 entry = (int32_t)entry;
thsb5dc7732008-06-27 10:02:35 +000086 env->active_tc.PC = entry;
thsc570fd12006-12-21 01:19:56 +000087 } else {
ths9042c0e2006-12-23 14:18:40 +000088 fprintf(stderr, "qemu: could not load kernel '%s'\n",
ths7df526e2007-11-09 17:52:11 +000089 loaderparams.kernel_filename);
ths9042c0e2006-12-23 14:18:40 +000090 exit(1);
ths6ae81772006-12-06 17:48:52 +000091 }
92
93 /* load initrd */
94 initrd_size = 0;
ths74287112007-04-01 17:56:37 +000095 initrd_offset = 0;
ths7df526e2007-11-09 17:52:11 +000096 if (loaderparams.initrd_filename) {
97 initrd_size = get_image_size (loaderparams.initrd_filename);
ths74287112007-04-01 17:56:37 +000098 if (initrd_size > 0) {
99 initrd_offset = (kernel_high + ~TARGET_PAGE_MASK) & TARGET_PAGE_MASK;
100 if (initrd_offset + initrd_size > ram_size) {
101 fprintf(stderr,
102 "qemu: memory too small for initial ram disk '%s'\n",
ths7df526e2007-11-09 17:52:11 +0000103 loaderparams.initrd_filename);
ths74287112007-04-01 17:56:37 +0000104 exit(1);
105 }
pbrookdcac9672009-04-09 20:05:49 +0000106 initrd_size = load_image_targphys(loaderparams.initrd_filename,
107 initrd_offset,
108 ram_size - initrd_offset);
ths74287112007-04-01 17:56:37 +0000109 }
ths6ae81772006-12-06 17:48:52 +0000110 if (initrd_size == (target_ulong) -1) {
111 fprintf(stderr, "qemu: could not load initial ram disk '%s'\n",
ths7df526e2007-11-09 17:52:11 +0000112 loaderparams.initrd_filename);
ths6ae81772006-12-06 17:48:52 +0000113 exit(1);
114 }
115 }
116
117 /* Store command line. */
118 if (initrd_size > 0) {
pbrookd7585252009-04-10 03:36:49 +0000119 char buf[64];
120 ret = snprintf(buf, 64, "rd_start=0x" TARGET_FMT_lx " rd_size=%li ",
121 PHYS_TO_VIRT((uint32_t)initrd_offset),
122 initrd_size);
123 cpu_physical_memory_write((16 << 20) - 256, (void *)buf, 64);
124 } else {
125 ret = 0;
ths6ae81772006-12-06 17:48:52 +0000126 }
pbrookd7585252009-04-10 03:36:49 +0000127 pstrcpy_targphys((16 << 20) - 256 + ret, 256,
128 loaderparams.kernel_cmdline);
ths6ae81772006-12-06 17:48:52 +0000129
pbrookd7585252009-04-10 03:36:49 +0000130 stl_phys((16 << 20) - 260, 0x12345678);
131 stl_phys((16 << 20) - 264, ram_size);
ths6ae81772006-12-06 17:48:52 +0000132}
133
134static void main_cpu_reset(void *opaque)
135{
136 CPUState *env = opaque;
137 cpu_reset(env);
138
ths7df526e2007-11-09 17:52:11 +0000139 if (loaderparams.kernel_filename)
140 load_kernel (env);
ths6ae81772006-12-06 17:48:52 +0000141}
bellard66a93e02006-04-26 22:06:55 +0000142
thsb305b5b2008-04-20 06:28:28 +0000143static const int sector_len = 32 * 1024;
ths70705262007-02-18 00:10:59 +0000144static
Paul Brookfbe1b592009-05-13 17:56:25 +0100145void mips_r4k_init (ram_addr_t ram_size,
aliguori3023f332009-01-16 19:04:14 +0000146 const char *boot_device,
bellard6af0bf92005-07-02 14:58:51 +0000147 const char *kernel_filename, const char *kernel_cmdline,
j_mayer94fc95c2007-03-05 19:44:02 +0000148 const char *initrd_filename, const char *cpu_model)
bellard6af0bf92005-07-02 14:58:51 +0000149{
150 char buf[1024];
pbrookdcac9672009-04-09 20:05:49 +0000151 ram_addr_t ram_offset;
pbrookdcac9672009-04-09 20:05:49 +0000152 ram_addr_t bios_offset;
thsf7bcd4e2007-01-06 01:37:51 +0000153 int bios_size;
bellardc68ea702005-11-21 23:33:12 +0000154 CPUState *env;
ths153a08d2007-03-17 15:21:30 +0000155 RTCState *rtc_state;
pbrook58126402006-10-29 15:38:28 +0000156 int i;
pbrookd537cf62007-04-07 18:14:41 +0000157 qemu_irq *i8259;
thse4bcb142007-12-02 04:51:10 +0000158 int index;
159 BlockDriverState *hd[MAX_IDE_BUS * MAX_IDE_DEVS];
bellardc68ea702005-11-21 23:33:12 +0000160
ths33d68b52007-03-18 00:30:29 +0000161 /* init CPUs */
162 if (cpu_model == NULL) {
ths60aa19a2007-04-01 12:36:18 +0000163#ifdef TARGET_MIPS64
ths33d68b52007-03-18 00:30:29 +0000164 cpu_model = "R4000";
165#else
ths1c32f432007-04-28 21:07:41 +0000166 cpu_model = "24Kf";
ths33d68b52007-03-18 00:30:29 +0000167#endif
168 }
bellardaaed9092007-11-10 15:15:54 +0000169 env = cpu_init(cpu_model);
170 if (!env) {
171 fprintf(stderr, "Unable to find CPU definition\n");
172 exit(1);
173 }
ths6ae81772006-12-06 17:48:52 +0000174 qemu_register_reset(main_cpu_reset, env);
bellardc68ea702005-11-21 23:33:12 +0000175
bellard6af0bf92005-07-02 14:58:51 +0000176 /* allocate RAM */
aurel320ccff152009-01-24 15:07:25 +0000177 if (ram_size > (256 << 20)) {
178 fprintf(stderr,
179 "qemu: Too much memory for this machine: %d MB, maximum 256 MB\n",
180 ((unsigned int)ram_size / (1 << 20)));
181 exit(1);
182 }
pbrookdcac9672009-04-09 20:05:49 +0000183 ram_offset = qemu_ram_alloc(ram_size);
pbrookdcac9672009-04-09 20:05:49 +0000184
185 cpu_register_physical_memory(0, ram_size, ram_offset | IO_MEM_RAM);
bellard66a93e02006-04-26 22:06:55 +0000186
ths6ae81772006-12-06 17:48:52 +0000187 if (!mips_qemu_iomemtype) {
188 mips_qemu_iomemtype = cpu_register_io_memory(0, mips_qemu_read,
ths33d68b52007-03-18 00:30:29 +0000189 mips_qemu_write, NULL);
ths6ae81772006-12-06 17:48:52 +0000190 }
191 cpu_register_physical_memory(0x1fbf0000, 0x10000, mips_qemu_iomemtype);
192
bellard66a93e02006-04-26 22:06:55 +0000193 /* Try to load a BIOS image. If this fails, we continue regardless,
194 but initialize the hardware ourselves. When a kernel gets
195 preloaded we also initialize the hardware, since the BIOS wasn't
196 run. */
j_mayer1192dad2007-10-05 13:08:35 +0000197 if (bios_name == NULL)
198 bios_name = BIOS_FILENAME;
199 snprintf(buf, sizeof(buf), "%s/%s", bios_dir, bios_name);
pbrookdcac9672009-04-09 20:05:49 +0000200 bios_size = get_image_size(buf);
ths2909b292007-01-06 02:24:15 +0000201 if ((bios_size > 0) && (bios_size <= BIOS_SIZE)) {
pbrookdcac9672009-04-09 20:05:49 +0000202 bios_offset = qemu_ram_alloc(BIOS_SIZE);
203 cpu_register_physical_memory(0x1fc00000, BIOS_SIZE,
204 bios_offset | IO_MEM_ROM);
205
206 load_image_targphys(buf, 0x1fc00000, BIOS_SIZE);
thsb305b5b2008-04-20 06:28:28 +0000207 } else if ((index = drive_get_index(IF_PFLASH, 0, 0)) > -1) {
208 uint32_t mips_rom = 0x00400000;
pbrookdcac9672009-04-09 20:05:49 +0000209 bios_offset = qemu_ram_alloc(mips_rom);
210 if (!pflash_cfi01_register(0x1fc00000, bios_offset,
thsb305b5b2008-04-20 06:28:28 +0000211 drives_table[index].bdrv, sector_len, mips_rom / sector_len,
212 4, 0, 0, 0, 0)) {
213 fprintf(stderr, "qemu: Error registering flash memory.\n");
214 }
215 }
216 else {
bellard66a93e02006-04-26 22:06:55 +0000217 /* not fatal */
218 fprintf(stderr, "qemu: Warning, could not load MIPS bios '%s'\n",
219 buf);
bellard6af0bf92005-07-02 14:58:51 +0000220 }
bellard66a93e02006-04-26 22:06:55 +0000221
bellard66a93e02006-04-26 22:06:55 +0000222 if (kernel_filename) {
ths7df526e2007-11-09 17:52:11 +0000223 loaderparams.ram_size = ram_size;
224 loaderparams.kernel_filename = kernel_filename;
225 loaderparams.kernel_cmdline = kernel_cmdline;
226 loaderparams.initrd_filename = initrd_filename;
227 load_kernel (env);
bellard6af0bf92005-07-02 14:58:51 +0000228 }
bellard6af0bf92005-07-02 14:58:51 +0000229
thse16fe402006-12-06 21:38:37 +0000230 /* Init CPU internal devices */
pbrookd537cf62007-04-07 18:14:41 +0000231 cpu_mips_irq_init_cpu(env);
bellardc68ea702005-11-21 23:33:12 +0000232 cpu_mips_clock_init(env);
bellard6af0bf92005-07-02 14:58:51 +0000233
pbrookd537cf62007-04-07 18:14:41 +0000234 /* The PIC is attached to the MIPS CPU INT0 pin */
235 i8259 = i8259_init(env->irq[2]);
236
aurel3242fc73a2009-01-24 18:06:21 +0000237 rtc_state = rtc_init(0x70, i8259[8], 2000);
thsafdfa782006-12-07 18:15:35 +0000238
bellard0699b542005-07-02 15:20:29 +0000239 /* Register 64 KB of ISA IO space at 0x14000000 */
pbrookaef445b2006-09-18 01:15:29 +0000240 isa_mmio_init(0x14000000, 0x00010000);
bellard0699b542005-07-02 15:20:29 +0000241 isa_mem_base = 0x10000000;
242
pbrookd537cf62007-04-07 18:14:41 +0000243 pit = pit_init(0x40, i8259[0]);
thsafdfa782006-12-07 18:15:35 +0000244
thseddbd282006-12-23 00:23:19 +0000245 for(i = 0; i < MAX_SERIAL_PORTS; i++) {
246 if (serial_hds[i]) {
aurel32b6cd0ea2008-05-04 21:42:11 +0000247 serial_init(serial_io[i], i8259[serial_irq[i]], 115200,
248 serial_hds[i]);
thseddbd282006-12-23 00:23:19 +0000249 }
250 }
251
Paul Brookfbe1b592009-05-13 17:56:25 +0100252 isa_vga_init();
bellard9827e952005-07-02 15:26:04 +0000253
aliguori0ae18ce2009-01-13 19:39:36 +0000254 if (nd_table[0].vlan)
255 isa_ne2000_init(0x300, i8259[9], &nd_table[0]);
pbrook58126402006-10-29 15:38:28 +0000256
thse4bcb142007-12-02 04:51:10 +0000257 if (drive_get_max_bus(IF_IDE) >= MAX_IDE_BUS) {
258 fprintf(stderr, "qemu: too many IDE bus\n");
259 exit(1);
260 }
261
262 for(i = 0; i < MAX_IDE_BUS * MAX_IDE_DEVS; i++) {
263 index = drive_get_index(IF_IDE, i / MAX_IDE_DEVS, i % MAX_IDE_DEVS);
264 if (index != -1)
265 hd[i] = drives_table[index].bdrv;
266 else
267 hd[i] = NULL;
268 }
269
270 for(i = 0; i < MAX_IDE_BUS; i++)
pbrookd537cf62007-04-07 18:14:41 +0000271 isa_ide_init(ide_iobase[i], ide_iobase2[i], i8259[ide_irq[i]],
thse4bcb142007-12-02 04:51:10 +0000272 hd[MAX_IDE_DEVS * i],
273 hd[MAX_IDE_DEVS * i + 1]);
ths70705262007-02-18 00:10:59 +0000274
pbrookd537cf62007-04-07 18:14:41 +0000275 i8042_init(i8259[1], i8259[12], 0x60);
bellard6af0bf92005-07-02 14:58:51 +0000276}
277
Anthony Liguorif80f9ec2009-05-20 18:38:09 -0500278static QEMUMachine mips_machine = {
thseec27432008-08-13 13:01:28 +0000279 .name = "mips",
280 .desc = "mips r4k platform",
281 .init = mips_r4k_init,
bellard6af0bf92005-07-02 14:58:51 +0000282};
Anthony Liguorif80f9ec2009-05-20 18:38:09 -0500283
284static void mips_machine_init(void)
285{
286 qemu_register_machine(&mips_machine);
287}
288
289machine_init(mips_machine_init);