blob: 63bd158244121f3fe2391e1aaadf89753325d819 [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"
bellard6af0bf92005-07-02 14:58:51 +000017
ths2909b292007-01-06 02:24:15 +000018#ifdef TARGET_WORDS_BIGENDIAN
bellard6af0bf92005-07-02 14:58:51 +000019#define BIOS_FILENAME "mips_bios.bin"
thsf7bcd4e2007-01-06 01:37:51 +000020#else
21#define BIOS_FILENAME "mipsel_bios.bin"
22#endif
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
bellard6af0bf92005-07-02 14:58:51 +000037extern FILE *logfile;
38
thse16fe402006-12-06 21:38:37 +000039static PITState *pit; /* PIT i8254 */
bellard697584a2005-08-21 09:41:56 +000040
ths1b660742007-12-07 01:13:37 +000041/* i8254 PIT is attached to the IRQ0 at PIC i8259 */
bellard6af0bf92005-07-02 14:58:51 +000042
ths7df526e2007-11-09 17:52:11 +000043static struct _loaderparams {
44 int ram_size;
45 const char *kernel_filename;
46 const char *kernel_cmdline;
47 const char *initrd_filename;
48} loaderparams;
49
ths6ae81772006-12-06 17:48:52 +000050static 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
ths7df526e2007-11-09 17:52:11 +000078static void load_kernel (CPUState *env)
ths6ae81772006-12-06 17:48:52 +000079{
ths74287112007-04-01 17:56:37 +000080 int64_t entry, kernel_low, kernel_high;
ths6ae81772006-12-06 17:48:52 +000081 long kernel_size, initrd_size;
ths74287112007-04-01 17:56:37 +000082 ram_addr_t initrd_offset;
ths6ae81772006-12-06 17:48:52 +000083
ths7df526e2007-11-09 17:52:11 +000084 kernel_size = load_elf(loaderparams.kernel_filename, VIRT_TO_PHYS_ADDEND,
ths74287112007-04-01 17:56:37 +000085 &entry, &kernel_low, &kernel_high);
thsc570fd12006-12-21 01:19:56 +000086 if (kernel_size >= 0) {
87 if ((entry & ~0x7fffffffULL) == 0x80000000)
ths5dc4b742006-12-21 13:48:28 +000088 entry = (int32_t)entry;
thsead93602007-09-06 00:18:15 +000089 env->PC[env->current_tc] = entry;
thsc570fd12006-12-21 01:19:56 +000090 } else {
ths9042c0e2006-12-23 14:18:40 +000091 fprintf(stderr, "qemu: could not load kernel '%s'\n",
ths7df526e2007-11-09 17:52:11 +000092 loaderparams.kernel_filename);
ths9042c0e2006-12-23 14:18:40 +000093 exit(1);
ths6ae81772006-12-06 17:48:52 +000094 }
95
96 /* load initrd */
97 initrd_size = 0;
ths74287112007-04-01 17:56:37 +000098 initrd_offset = 0;
ths7df526e2007-11-09 17:52:11 +000099 if (loaderparams.initrd_filename) {
100 initrd_size = get_image_size (loaderparams.initrd_filename);
ths74287112007-04-01 17:56:37 +0000101 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",
ths7df526e2007-11-09 17:52:11 +0000106 loaderparams.initrd_filename);
ths74287112007-04-01 17:56:37 +0000107 exit(1);
108 }
ths7df526e2007-11-09 17:52:11 +0000109 initrd_size = load_image(loaderparams.initrd_filename,
ths74287112007-04-01 17:56:37 +0000110 phys_ram_base + initrd_offset);
111 }
ths6ae81772006-12-06 17:48:52 +0000112 if (initrd_size == (target_ulong) -1) {
113 fprintf(stderr, "qemu: could not load initial ram disk '%s'\n",
ths7df526e2007-11-09 17:52:11 +0000114 loaderparams.initrd_filename);
ths6ae81772006-12-06 17:48:52 +0000115 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,
ths3594c772007-02-20 23:37:21 +0000123 "rd_start=0x" TARGET_FMT_lx " rd_size=%li ",
ths74287112007-04-01 17:56:37 +0000124 PHYS_TO_VIRT((uint32_t)initrd_offset),
ths6ae81772006-12-06 17:48:52 +0000125 initrd_size);
ths7df526e2007-11-09 17:52:11 +0000126 strcpy (phys_ram_base + (16 << 20) - 256 + ret,
127 loaderparams.kernel_cmdline);
ths6ae81772006-12-06 17:48:52 +0000128 }
129 else {
ths7df526e2007-11-09 17:52:11 +0000130 strcpy (phys_ram_base + (16 << 20) - 256,
131 loaderparams.kernel_cmdline);
ths6ae81772006-12-06 17:48:52 +0000132 }
133
ths44cbbf12007-01-24 22:00:13 +0000134 *(int32_t *)(phys_ram_base + (16 << 20) - 260) = tswap32 (0x12345678);
135 *(int32_t *)(phys_ram_base + (16 << 20) - 264) = tswap32 (ram_size);
ths6ae81772006-12-06 17:48:52 +0000136}
137
138static void main_cpu_reset(void *opaque)
139{
140 CPUState *env = opaque;
141 cpu_reset(env);
142
ths7df526e2007-11-09 17:52:11 +0000143 if (loaderparams.kernel_filename)
144 load_kernel (env);
ths6ae81772006-12-06 17:48:52 +0000145}
bellard66a93e02006-04-26 22:06:55 +0000146
ths70705262007-02-18 00:10:59 +0000147static
blueswir1b881c2c2007-11-18 08:46:58 +0000148void mips_r4k_init (int ram_size, int vga_ram_size,
149 const char *boot_device, DisplayState *ds,
bellard6af0bf92005-07-02 14:58:51 +0000150 const char *kernel_filename, const char *kernel_cmdline,
j_mayer94fc95c2007-03-05 19:44:02 +0000151 const char *initrd_filename, const char *cpu_model)
bellard6af0bf92005-07-02 14:58:51 +0000152{
153 char buf[1024];
bellard6af0bf92005-07-02 14:58:51 +0000154 unsigned long bios_offset;
thsf7bcd4e2007-01-06 01:37:51 +0000155 int bios_size;
bellardc68ea702005-11-21 23:33:12 +0000156 CPUState *env;
ths153a08d2007-03-17 15:21:30 +0000157 RTCState *rtc_state;
pbrook58126402006-10-29 15:38:28 +0000158 int i;
pbrookd537cf62007-04-07 18:14:41 +0000159 qemu_irq *i8259;
thse4bcb142007-12-02 04:51:10 +0000160 int index;
161 BlockDriverState *hd[MAX_IDE_BUS * MAX_IDE_DEVS];
bellardc68ea702005-11-21 23:33:12 +0000162
ths33d68b52007-03-18 00:30:29 +0000163 /* init CPUs */
164 if (cpu_model == NULL) {
ths60aa19a2007-04-01 12:36:18 +0000165#ifdef TARGET_MIPS64
ths33d68b52007-03-18 00:30:29 +0000166 cpu_model = "R4000";
167#else
ths1c32f432007-04-28 21:07:41 +0000168 cpu_model = "24Kf";
ths33d68b52007-03-18 00:30:29 +0000169#endif
170 }
bellardaaed9092007-11-10 15:15:54 +0000171 env = cpu_init(cpu_model);
172 if (!env) {
173 fprintf(stderr, "Unable to find CPU definition\n");
174 exit(1);
175 }
bellardc68ea702005-11-21 23:33:12 +0000176 register_savevm("cpu", 0, 3, cpu_save, cpu_load, env);
ths6ae81772006-12-06 17:48:52 +0000177 qemu_register_reset(main_cpu_reset, env);
bellardc68ea702005-11-21 23:33:12 +0000178
bellard6af0bf92005-07-02 14:58:51 +0000179 /* allocate RAM */
180 cpu_register_physical_memory(0, ram_size, IO_MEM_RAM);
bellard66a93e02006-04-26 22:06:55 +0000181
ths6ae81772006-12-06 17:48:52 +0000182 if (!mips_qemu_iomemtype) {
183 mips_qemu_iomemtype = cpu_register_io_memory(0, mips_qemu_read,
ths33d68b52007-03-18 00:30:29 +0000184 mips_qemu_write, NULL);
ths6ae81772006-12-06 17:48:52 +0000185 }
186 cpu_register_physical_memory(0x1fbf0000, 0x10000, mips_qemu_iomemtype);
187
bellard66a93e02006-04-26 22:06:55 +0000188 /* 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. */
bellard6af0bf92005-07-02 14:58:51 +0000192 bios_offset = ram_size + vga_ram_size;
j_mayer1192dad2007-10-05 13:08:35 +0000193 if (bios_name == NULL)
194 bios_name = BIOS_FILENAME;
195 snprintf(buf, sizeof(buf), "%s/%s", bios_dir, bios_name);
thsf7bcd4e2007-01-06 01:37:51 +0000196 bios_size = load_image(buf, phys_ram_base + bios_offset);
ths2909b292007-01-06 02:24:15 +0000197 if ((bios_size > 0) && (bios_size <= BIOS_SIZE)) {
ths44cbbf12007-01-24 22:00:13 +0000198 cpu_register_physical_memory(0x1fc00000,
bellard66a93e02006-04-26 22:06:55 +0000199 BIOS_SIZE, bios_offset | IO_MEM_ROM);
bellard66a93e02006-04-26 22:06:55 +0000200 } else {
201 /* not fatal */
202 fprintf(stderr, "qemu: Warning, could not load MIPS bios '%s'\n",
203 buf);
bellard6af0bf92005-07-02 14:58:51 +0000204 }
bellard66a93e02006-04-26 22:06:55 +0000205
bellard66a93e02006-04-26 22:06:55 +0000206 if (kernel_filename) {
ths7df526e2007-11-09 17:52:11 +0000207 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);
bellard6af0bf92005-07-02 14:58:51 +0000212 }
bellard6af0bf92005-07-02 14:58:51 +0000213
thse16fe402006-12-06 21:38:37 +0000214 /* Init CPU internal devices */
pbrookd537cf62007-04-07 18:14:41 +0000215 cpu_mips_irq_init_cpu(env);
bellardc68ea702005-11-21 23:33:12 +0000216 cpu_mips_clock_init(env);
bellard6af0bf92005-07-02 14:58:51 +0000217 cpu_mips_irqctrl_init();
218
pbrookd537cf62007-04-07 18:14:41 +0000219 /* 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]);
thsafdfa782006-12-07 18:15:35 +0000223
bellard0699b542005-07-02 15:20:29 +0000224 /* Register 64 KB of ISA IO space at 0x14000000 */
pbrookaef445b2006-09-18 01:15:29 +0000225 isa_mmio_init(0x14000000, 0x00010000);
bellard0699b542005-07-02 15:20:29 +0000226 isa_mem_base = 0x10000000;
227
pbrookd537cf62007-04-07 18:14:41 +0000228 pit = pit_init(0x40, i8259[0]);
thsafdfa782006-12-07 18:15:35 +0000229
thseddbd282006-12-23 00:23:19 +0000230 for(i = 0; i < MAX_SERIAL_PORTS; i++) {
231 if (serial_hds[i]) {
pbrookd537cf62007-04-07 18:14:41 +0000232 serial_init(serial_io[i], i8259[serial_irq[i]], serial_hds[i]);
thseddbd282006-12-23 00:23:19 +0000233 }
234 }
235
ths5fafdf22007-09-16 21:08:06 +0000236 isa_vga_init(ds, phys_ram_base + ram_size, ram_size,
bellard89b6b502006-08-17 10:45:20 +0000237 vga_ram_size);
bellard9827e952005-07-02 15:26:04 +0000238
pbrooka41b2ff2006-02-05 04:14:41 +0000239 if (nd_table[0].vlan) {
240 if (nd_table[0].model == NULL
241 || strcmp(nd_table[0].model, "ne2k_isa") == 0) {
pbrookd537cf62007-04-07 18:14:41 +0000242 isa_ne2000_init(0x300, i8259[9], &nd_table[0]);
blueswir1c4a70602007-05-27 19:41:17 +0000243 } else if (strcmp(nd_table[0].model, "?") == 0) {
244 fprintf(stderr, "qemu: Supported NICs: ne2k_isa\n");
245 exit (1);
pbrooka41b2ff2006-02-05 04:14:41 +0000246 } else {
247 fprintf(stderr, "qemu: Unsupported NIC: %s\n", nd_table[0].model);
248 exit (1);
249 }
250 }
pbrook58126402006-10-29 15:38:28 +0000251
thse4bcb142007-12-02 04:51:10 +0000252 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++)
pbrookd537cf62007-04-07 18:14:41 +0000266 isa_ide_init(ide_iobase[i], ide_iobase2[i], i8259[ide_irq[i]],
thse4bcb142007-12-02 04:51:10 +0000267 hd[MAX_IDE_DEVS * i],
268 hd[MAX_IDE_DEVS * i + 1]);
ths70705262007-02-18 00:10:59 +0000269
pbrookd537cf62007-04-07 18:14:41 +0000270 i8042_init(i8259[1], i8259[12], 0x60);
bellard6af0bf92005-07-02 14:58:51 +0000271}
272
273QEMUMachine mips_machine = {
274 "mips",
275 "mips r4k platform",
276 mips_r4k_init,
277};