blob: d72d768a0a9af40c7c209cc613325e0ccb1014f2 [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*/
bellard6af0bf92005-07-02 14:58:51 +000010#include "vl.h"
11
bellard6af0bf92005-07-02 14:58:51 +000012#define BIOS_FILENAME "mips_bios.bin"
13//#define BIOS_FILENAME "system.bin"
ths5dc4b742006-12-21 13:48:28 +000014#ifdef MIPS_HAS_MIPS64
15#define INITRD_LOAD_ADDR (int64_t)0x80800000
16#else
17#define INITRD_LOAD_ADDR (int32_t)0x80800000
18#endif
bellard6af0bf92005-07-02 14:58:51 +000019
ths5dc4b742006-12-21 13:48:28 +000020#define VIRT_TO_PHYS_ADDEND (-((int64_t)(int32_t)0x80000000))
bellard66a93e02006-04-26 22:06:55 +000021
pbrook58126402006-10-29 15:38:28 +000022static const int ide_iobase[2] = { 0x1f0, 0x170 };
23static const int ide_iobase2[2] = { 0x3f6, 0x376 };
24static const int ide_irq[2] = { 14, 15 };
25
thseddbd282006-12-23 00:23:19 +000026static int serial_io[MAX_SERIAL_PORTS] = { 0x3f8, 0x2f8, 0x3e8, 0x2e8 };
27static int serial_irq[MAX_SERIAL_PORTS] = { 4, 3, 4, 3 };
28
bellard6af0bf92005-07-02 14:58:51 +000029extern FILE *logfile;
30
thse16fe402006-12-06 21:38:37 +000031static PITState *pit; /* PIT i8254 */
bellard697584a2005-08-21 09:41:56 +000032
thse16fe402006-12-06 21:38:37 +000033/*i8254 PIT is attached to the IRQ0 at PIC i8259 */
34/*The PIC is attached to the MIPS CPU INT0 pin */
bellard73133662005-07-02 18:11:03 +000035static void pic_irq_request(void *opaque, int level)
bellard6af0bf92005-07-02 14:58:51 +000036{
bellardc68ea702005-11-21 23:33:12 +000037 CPUState *env = first_cpu;
bellard73133662005-07-02 18:11:03 +000038 if (level) {
bellardc68ea702005-11-21 23:33:12 +000039 env->CP0_Cause |= 0x00000400;
40 cpu_interrupt(env, CPU_INTERRUPT_HARD);
bellard6af0bf92005-07-02 14:58:51 +000041 } else {
bellardc68ea702005-11-21 23:33:12 +000042 env->CP0_Cause &= ~0x00000400;
43 cpu_reset_interrupt(env, CPU_INTERRUPT_HARD);
bellard6af0bf92005-07-02 14:58:51 +000044 }
45}
46
ths6ae81772006-12-06 17:48:52 +000047static void mips_qemu_writel (void *opaque, target_phys_addr_t addr,
48 uint32_t val)
49{
50 if ((addr & 0xffff) == 0 && val == 42)
51 qemu_system_reset_request ();
52 else if ((addr & 0xffff) == 4 && val == 42)
53 qemu_system_shutdown_request ();
54}
55
56static uint32_t mips_qemu_readl (void *opaque, target_phys_addr_t addr)
57{
58 return 0;
59}
60
61static CPUWriteMemoryFunc *mips_qemu_write[] = {
62 &mips_qemu_writel,
63 &mips_qemu_writel,
64 &mips_qemu_writel,
65};
66
67static CPUReadMemoryFunc *mips_qemu_read[] = {
68 &mips_qemu_readl,
69 &mips_qemu_readl,
70 &mips_qemu_readl,
71};
72
73static int mips_qemu_iomemtype = 0;
74
75void load_kernel (CPUState *env, int ram_size, const char *kernel_filename,
76 const char *kernel_cmdline,
77 const char *initrd_filename)
78{
79 int64_t entry = 0;
80 long kernel_size, initrd_size;
81
82 kernel_size = load_elf(kernel_filename, VIRT_TO_PHYS_ADDEND, &entry);
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;
ths6ae81772006-12-06 17:48:52 +000086 env->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",
89 kernel_filename);
90 exit(1);
ths6ae81772006-12-06 17:48:52 +000091 }
92
93 /* load initrd */
94 initrd_size = 0;
95 if (initrd_filename) {
96 initrd_size = load_image(initrd_filename,
97 phys_ram_base + INITRD_LOAD_ADDR + VIRT_TO_PHYS_ADDEND);
98 if (initrd_size == (target_ulong) -1) {
99 fprintf(stderr, "qemu: could not load initial ram disk '%s'\n",
100 initrd_filename);
101 exit(1);
102 }
103 }
104
105 /* Store command line. */
106 if (initrd_size > 0) {
107 int ret;
108 ret = sprintf(phys_ram_base + (16 << 20) - 256,
thsc570fd12006-12-21 01:19:56 +0000109 "rd_start=0x" TLSZ " rd_size=%li ",
ths6ae81772006-12-06 17:48:52 +0000110 INITRD_LOAD_ADDR,
111 initrd_size);
112 strcpy (phys_ram_base + (16 << 20) - 256 + ret, kernel_cmdline);
113 }
114 else {
115 strcpy (phys_ram_base + (16 << 20) - 256, kernel_cmdline);
116 }
117
118 *(int *)(phys_ram_base + (16 << 20) - 260) = tswap32 (0x12345678);
119 *(int *)(phys_ram_base + (16 << 20) - 264) = tswap32 (ram_size);
120}
121
122static void main_cpu_reset(void *opaque)
123{
124 CPUState *env = opaque;
125 cpu_reset(env);
126
127 if (env->kernel_filename)
128 load_kernel (env, env->ram_size, env->kernel_filename,
129 env->kernel_cmdline, env->initrd_filename);
130}
bellard66a93e02006-04-26 22:06:55 +0000131
bellard6af0bf92005-07-02 14:58:51 +0000132void mips_r4k_init (int ram_size, int vga_ram_size, int boot_device,
133 DisplayState *ds, const char **fd_filename, int snapshot,
134 const char *kernel_filename, const char *kernel_cmdline,
135 const char *initrd_filename)
136{
137 char buf[1024];
bellard6af0bf92005-07-02 14:58:51 +0000138 unsigned long bios_offset;
bellard6af0bf92005-07-02 14:58:51 +0000139 int ret;
bellardc68ea702005-11-21 23:33:12 +0000140 CPUState *env;
thsafdfa782006-12-07 18:15:35 +0000141 static RTCState *rtc_state;
pbrook58126402006-10-29 15:38:28 +0000142 int i;
bellardc68ea702005-11-21 23:33:12 +0000143
144 env = cpu_init();
145 register_savevm("cpu", 0, 3, cpu_save, cpu_load, env);
ths6ae81772006-12-06 17:48:52 +0000146 qemu_register_reset(main_cpu_reset, env);
bellardc68ea702005-11-21 23:33:12 +0000147
bellard6af0bf92005-07-02 14:58:51 +0000148 /* allocate RAM */
149 cpu_register_physical_memory(0, ram_size, IO_MEM_RAM);
bellard66a93e02006-04-26 22:06:55 +0000150
ths6ae81772006-12-06 17:48:52 +0000151 if (!mips_qemu_iomemtype) {
152 mips_qemu_iomemtype = cpu_register_io_memory(0, mips_qemu_read,
153 mips_qemu_write, NULL);
154 }
155 cpu_register_physical_memory(0x1fbf0000, 0x10000, mips_qemu_iomemtype);
156
bellard66a93e02006-04-26 22:06:55 +0000157 /* Try to load a BIOS image. If this fails, we continue regardless,
158 but initialize the hardware ourselves. When a kernel gets
159 preloaded we also initialize the hardware, since the BIOS wasn't
160 run. */
bellard6af0bf92005-07-02 14:58:51 +0000161 bios_offset = ram_size + vga_ram_size;
162 snprintf(buf, sizeof(buf), "%s/%s", bios_dir, BIOS_FILENAME);
bellard6af0bf92005-07-02 14:58:51 +0000163 ret = load_image(buf, phys_ram_base + bios_offset);
bellard66a93e02006-04-26 22:06:55 +0000164 if (ret == BIOS_SIZE) {
165 cpu_register_physical_memory((uint32_t)(0x1fc00000),
166 BIOS_SIZE, bios_offset | IO_MEM_ROM);
bellard66a93e02006-04-26 22:06:55 +0000167 } else {
168 /* not fatal */
169 fprintf(stderr, "qemu: Warning, could not load MIPS bios '%s'\n",
170 buf);
bellard6af0bf92005-07-02 14:58:51 +0000171 }
bellard66a93e02006-04-26 22:06:55 +0000172
bellard66a93e02006-04-26 22:06:55 +0000173 if (kernel_filename) {
ths6ae81772006-12-06 17:48:52 +0000174 load_kernel (env, ram_size, kernel_filename, kernel_cmdline,
175 initrd_filename);
176 env->ram_size = ram_size;
177 env->kernel_filename = kernel_filename;
178 env->kernel_cmdline = kernel_cmdline;
179 env->initrd_filename = initrd_filename;
bellard6af0bf92005-07-02 14:58:51 +0000180 }
bellard6af0bf92005-07-02 14:58:51 +0000181
thse16fe402006-12-06 21:38:37 +0000182 /* Init CPU internal devices */
bellardc68ea702005-11-21 23:33:12 +0000183 cpu_mips_clock_init(env);
bellard6af0bf92005-07-02 14:58:51 +0000184 cpu_mips_irqctrl_init();
185
thsafdfa782006-12-07 18:15:35 +0000186 rtc_state = rtc_init(0x70, 8);
187
bellard0699b542005-07-02 15:20:29 +0000188 /* Register 64 KB of ISA IO space at 0x14000000 */
pbrookaef445b2006-09-18 01:15:29 +0000189 isa_mmio_init(0x14000000, 0x00010000);
bellard0699b542005-07-02 15:20:29 +0000190 isa_mem_base = 0x10000000;
191
bellardc68ea702005-11-21 23:33:12 +0000192 isa_pic = pic_init(pic_irq_request, env);
bellard697584a2005-08-21 09:41:56 +0000193 pit = pit_init(0x40, 0);
thsafdfa782006-12-07 18:15:35 +0000194
thseddbd282006-12-23 00:23:19 +0000195 for(i = 0; i < MAX_SERIAL_PORTS; i++) {
196 if (serial_hds[i]) {
197 serial_init(&pic_set_irq_new, isa_pic,
198 serial_io[i], serial_irq[i], serial_hds[i]);
199 }
200 }
201
bellard89b6b502006-08-17 10:45:20 +0000202 isa_vga_init(ds, phys_ram_base + ram_size, ram_size,
203 vga_ram_size);
bellard9827e952005-07-02 15:26:04 +0000204
pbrooka41b2ff2006-02-05 04:14:41 +0000205 if (nd_table[0].vlan) {
206 if (nd_table[0].model == NULL
207 || strcmp(nd_table[0].model, "ne2k_isa") == 0) {
208 isa_ne2000_init(0x300, 9, &nd_table[0]);
209 } else {
210 fprintf(stderr, "qemu: Unsupported NIC: %s\n", nd_table[0].model);
211 exit (1);
212 }
213 }
pbrook58126402006-10-29 15:38:28 +0000214
215 for(i = 0; i < 2; i++)
216 isa_ide_init(ide_iobase[i], ide_iobase2[i], ide_irq[i],
217 bs_table[2 * i], bs_table[2 * i + 1]);
bellard6af0bf92005-07-02 14:58:51 +0000218}
219
220QEMUMachine mips_machine = {
221 "mips",
222 "mips r4k platform",
223 mips_r4k_init,
224};