blob: e4817e6b7fb776321772d11e55349b41e086db6e [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
ths2909b292007-01-06 02:24:15 +000012#ifdef TARGET_WORDS_BIGENDIAN
bellard6af0bf92005-07-02 14:58:51 +000013#define BIOS_FILENAME "mips_bios.bin"
thsf7bcd4e2007-01-06 01:37:51 +000014#else
15#define BIOS_FILENAME "mipsel_bios.bin"
16#endif
ths44cbbf12007-01-24 22:00:13 +000017
ths60aa19a2007-04-01 12:36:18 +000018#ifdef TARGET_MIPS64
ths74287112007-04-01 17:56:37 +000019#define PHYS_TO_VIRT(x) ((x) | ~0x7fffffffULL)
ths5dc4b742006-12-21 13:48:28 +000020#else
ths74287112007-04-01 17:56:37 +000021#define PHYS_TO_VIRT(x) ((x) | ~0x7fffffffU)
ths5dc4b742006-12-21 13:48:28 +000022#endif
bellard6af0bf92005-07-02 14:58:51 +000023
ths5dc4b742006-12-21 13:48:28 +000024#define VIRT_TO_PHYS_ADDEND (-((int64_t)(int32_t)0x80000000))
bellard66a93e02006-04-26 22:06:55 +000025
pbrook58126402006-10-29 15:38:28 +000026static const int ide_iobase[2] = { 0x1f0, 0x170 };
27static const int ide_iobase2[2] = { 0x3f6, 0x376 };
28static const int ide_irq[2] = { 14, 15 };
29
thseddbd282006-12-23 00:23:19 +000030static int serial_io[MAX_SERIAL_PORTS] = { 0x3f8, 0x2f8, 0x3e8, 0x2e8 };
31static int serial_irq[MAX_SERIAL_PORTS] = { 4, 3, 4, 3 };
32
bellard6af0bf92005-07-02 14:58:51 +000033extern FILE *logfile;
34
thse16fe402006-12-06 21:38:37 +000035static PITState *pit; /* PIT i8254 */
bellard697584a2005-08-21 09:41:56 +000036
thse16fe402006-12-06 21:38:37 +000037/*i8254 PIT is attached to the IRQ0 at PIC i8259 */
bellard6af0bf92005-07-02 14:58:51 +000038
ths7df526e2007-11-09 17:52:11 +000039static struct _loaderparams {
40 int ram_size;
41 const char *kernel_filename;
42 const char *kernel_cmdline;
43 const char *initrd_filename;
44} loaderparams;
45
ths6ae81772006-12-06 17:48:52 +000046static void mips_qemu_writel (void *opaque, target_phys_addr_t addr,
47 uint32_t val)
48{
49 if ((addr & 0xffff) == 0 && val == 42)
50 qemu_system_reset_request ();
51 else if ((addr & 0xffff) == 4 && val == 42)
52 qemu_system_shutdown_request ();
53}
54
55static uint32_t mips_qemu_readl (void *opaque, target_phys_addr_t addr)
56{
57 return 0;
58}
59
60static CPUWriteMemoryFunc *mips_qemu_write[] = {
61 &mips_qemu_writel,
62 &mips_qemu_writel,
63 &mips_qemu_writel,
64};
65
66static CPUReadMemoryFunc *mips_qemu_read[] = {
67 &mips_qemu_readl,
68 &mips_qemu_readl,
69 &mips_qemu_readl,
70};
71
72static int mips_qemu_iomemtype = 0;
73
ths7df526e2007-11-09 17:52:11 +000074static void load_kernel (CPUState *env)
ths6ae81772006-12-06 17:48:52 +000075{
ths74287112007-04-01 17:56:37 +000076 int64_t entry, kernel_low, kernel_high;
ths6ae81772006-12-06 17:48:52 +000077 long kernel_size, initrd_size;
ths74287112007-04-01 17:56:37 +000078 ram_addr_t initrd_offset;
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,
ths74287112007-04-01 17:56:37 +000081 &entry, &kernel_low, &kernel_high);
thsc570fd12006-12-21 01:19:56 +000082 if (kernel_size >= 0) {
83 if ((entry & ~0x7fffffffULL) == 0x80000000)
ths5dc4b742006-12-21 13:48:28 +000084 entry = (int32_t)entry;
thsead93602007-09-06 00:18:15 +000085 env->PC[env->current_tc] = entry;
thsc570fd12006-12-21 01:19:56 +000086 } else {
ths9042c0e2006-12-23 14:18:40 +000087 fprintf(stderr, "qemu: could not load kernel '%s'\n",
ths7df526e2007-11-09 17:52:11 +000088 loaderparams.kernel_filename);
ths9042c0e2006-12-23 14:18:40 +000089 exit(1);
ths6ae81772006-12-06 17:48:52 +000090 }
91
92 /* load initrd */
93 initrd_size = 0;
ths74287112007-04-01 17:56:37 +000094 initrd_offset = 0;
ths7df526e2007-11-09 17:52:11 +000095 if (loaderparams.initrd_filename) {
96 initrd_size = get_image_size (loaderparams.initrd_filename);
ths74287112007-04-01 17:56:37 +000097 if (initrd_size > 0) {
98 initrd_offset = (kernel_high + ~TARGET_PAGE_MASK) & TARGET_PAGE_MASK;
99 if (initrd_offset + initrd_size > ram_size) {
100 fprintf(stderr,
101 "qemu: memory too small for initial ram disk '%s'\n",
ths7df526e2007-11-09 17:52:11 +0000102 loaderparams.initrd_filename);
ths74287112007-04-01 17:56:37 +0000103 exit(1);
104 }
ths7df526e2007-11-09 17:52:11 +0000105 initrd_size = load_image(loaderparams.initrd_filename,
ths74287112007-04-01 17:56:37 +0000106 phys_ram_base + initrd_offset);
107 }
ths6ae81772006-12-06 17:48:52 +0000108 if (initrd_size == (target_ulong) -1) {
109 fprintf(stderr, "qemu: could not load initial ram disk '%s'\n",
ths7df526e2007-11-09 17:52:11 +0000110 loaderparams.initrd_filename);
ths6ae81772006-12-06 17:48:52 +0000111 exit(1);
112 }
113 }
114
115 /* Store command line. */
116 if (initrd_size > 0) {
117 int ret;
118 ret = sprintf(phys_ram_base + (16 << 20) - 256,
ths3594c772007-02-20 23:37:21 +0000119 "rd_start=0x" TARGET_FMT_lx " rd_size=%li ",
ths74287112007-04-01 17:56:37 +0000120 PHYS_TO_VIRT((uint32_t)initrd_offset),
ths6ae81772006-12-06 17:48:52 +0000121 initrd_size);
ths7df526e2007-11-09 17:52:11 +0000122 strcpy (phys_ram_base + (16 << 20) - 256 + ret,
123 loaderparams.kernel_cmdline);
ths6ae81772006-12-06 17:48:52 +0000124 }
125 else {
ths7df526e2007-11-09 17:52:11 +0000126 strcpy (phys_ram_base + (16 << 20) - 256,
127 loaderparams.kernel_cmdline);
ths6ae81772006-12-06 17:48:52 +0000128 }
129
ths44cbbf12007-01-24 22:00:13 +0000130 *(int32_t *)(phys_ram_base + (16 << 20) - 260) = tswap32 (0x12345678);
131 *(int32_t *)(phys_ram_base + (16 << 20) - 264) = tswap32 (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);
ths51b27722007-05-30 20:46:02 +0000138 cpu_mips_register(env, NULL);
ths6ae81772006-12-06 17:48:52 +0000139
ths7df526e2007-11-09 17:52:11 +0000140 if (loaderparams.kernel_filename)
141 load_kernel (env);
ths6ae81772006-12-06 17:48:52 +0000142}
bellard66a93e02006-04-26 22:06:55 +0000143
ths70705262007-02-18 00:10:59 +0000144static
balrog6ac0e822007-10-31 01:54:04 +0000145void mips_r4k_init (int ram_size, int vga_ram_size, const char *boot_device,
bellard6af0bf92005-07-02 14:58:51 +0000146 DisplayState *ds, const char **fd_filename, int snapshot,
147 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];
bellard6af0bf92005-07-02 14:58:51 +0000151 unsigned long bios_offset;
thsf7bcd4e2007-01-06 01:37:51 +0000152 int bios_size;
bellardc68ea702005-11-21 23:33:12 +0000153 CPUState *env;
ths153a08d2007-03-17 15:21:30 +0000154 RTCState *rtc_state;
pbrook58126402006-10-29 15:38:28 +0000155 int i;
ths33d68b52007-03-18 00:30:29 +0000156 mips_def_t *def;
pbrookd537cf62007-04-07 18:14:41 +0000157 qemu_irq *i8259;
bellardc68ea702005-11-21 23:33:12 +0000158
ths33d68b52007-03-18 00:30:29 +0000159 /* init CPUs */
160 if (cpu_model == NULL) {
ths60aa19a2007-04-01 12:36:18 +0000161#ifdef TARGET_MIPS64
ths33d68b52007-03-18 00:30:29 +0000162 cpu_model = "R4000";
163#else
ths1c32f432007-04-28 21:07:41 +0000164 cpu_model = "24Kf";
ths33d68b52007-03-18 00:30:29 +0000165#endif
166 }
167 if (mips_find_by_name(cpu_model, &def) != 0)
168 def = NULL;
bellardc68ea702005-11-21 23:33:12 +0000169 env = cpu_init();
ths33d68b52007-03-18 00:30:29 +0000170 cpu_mips_register(env, def);
bellardc68ea702005-11-21 23:33:12 +0000171 register_savevm("cpu", 0, 3, cpu_save, cpu_load, env);
ths6ae81772006-12-06 17:48:52 +0000172 qemu_register_reset(main_cpu_reset, env);
bellardc68ea702005-11-21 23:33:12 +0000173
bellard6af0bf92005-07-02 14:58:51 +0000174 /* allocate RAM */
175 cpu_register_physical_memory(0, ram_size, IO_MEM_RAM);
bellard66a93e02006-04-26 22:06:55 +0000176
ths6ae81772006-12-06 17:48:52 +0000177 if (!mips_qemu_iomemtype) {
178 mips_qemu_iomemtype = cpu_register_io_memory(0, mips_qemu_read,
ths33d68b52007-03-18 00:30:29 +0000179 mips_qemu_write, NULL);
ths6ae81772006-12-06 17:48:52 +0000180 }
181 cpu_register_physical_memory(0x1fbf0000, 0x10000, mips_qemu_iomemtype);
182
bellard66a93e02006-04-26 22:06:55 +0000183 /* Try to load a BIOS image. If this fails, we continue regardless,
184 but initialize the hardware ourselves. When a kernel gets
185 preloaded we also initialize the hardware, since the BIOS wasn't
186 run. */
bellard6af0bf92005-07-02 14:58:51 +0000187 bios_offset = ram_size + vga_ram_size;
j_mayer1192dad2007-10-05 13:08:35 +0000188 if (bios_name == NULL)
189 bios_name = BIOS_FILENAME;
190 snprintf(buf, sizeof(buf), "%s/%s", bios_dir, bios_name);
thsf7bcd4e2007-01-06 01:37:51 +0000191 bios_size = load_image(buf, phys_ram_base + bios_offset);
ths2909b292007-01-06 02:24:15 +0000192 if ((bios_size > 0) && (bios_size <= BIOS_SIZE)) {
ths44cbbf12007-01-24 22:00:13 +0000193 cpu_register_physical_memory(0x1fc00000,
bellard66a93e02006-04-26 22:06:55 +0000194 BIOS_SIZE, bios_offset | IO_MEM_ROM);
bellard66a93e02006-04-26 22:06:55 +0000195 } else {
196 /* not fatal */
197 fprintf(stderr, "qemu: Warning, could not load MIPS bios '%s'\n",
198 buf);
bellard6af0bf92005-07-02 14:58:51 +0000199 }
bellard66a93e02006-04-26 22:06:55 +0000200
bellard66a93e02006-04-26 22:06:55 +0000201 if (kernel_filename) {
ths7df526e2007-11-09 17:52:11 +0000202 loaderparams.ram_size = ram_size;
203 loaderparams.kernel_filename = kernel_filename;
204 loaderparams.kernel_cmdline = kernel_cmdline;
205 loaderparams.initrd_filename = initrd_filename;
206 load_kernel (env);
bellard6af0bf92005-07-02 14:58:51 +0000207 }
bellard6af0bf92005-07-02 14:58:51 +0000208
thse16fe402006-12-06 21:38:37 +0000209 /* Init CPU internal devices */
pbrookd537cf62007-04-07 18:14:41 +0000210 cpu_mips_irq_init_cpu(env);
bellardc68ea702005-11-21 23:33:12 +0000211 cpu_mips_clock_init(env);
bellard6af0bf92005-07-02 14:58:51 +0000212 cpu_mips_irqctrl_init();
213
pbrookd537cf62007-04-07 18:14:41 +0000214 /* The PIC is attached to the MIPS CPU INT0 pin */
215 i8259 = i8259_init(env->irq[2]);
216
217 rtc_state = rtc_init(0x70, i8259[8]);
thsafdfa782006-12-07 18:15:35 +0000218
bellard0699b542005-07-02 15:20:29 +0000219 /* Register 64 KB of ISA IO space at 0x14000000 */
pbrookaef445b2006-09-18 01:15:29 +0000220 isa_mmio_init(0x14000000, 0x00010000);
bellard0699b542005-07-02 15:20:29 +0000221 isa_mem_base = 0x10000000;
222
pbrookd537cf62007-04-07 18:14:41 +0000223 pit = pit_init(0x40, i8259[0]);
thsafdfa782006-12-07 18:15:35 +0000224
thseddbd282006-12-23 00:23:19 +0000225 for(i = 0; i < MAX_SERIAL_PORTS; i++) {
226 if (serial_hds[i]) {
pbrookd537cf62007-04-07 18:14:41 +0000227 serial_init(serial_io[i], i8259[serial_irq[i]], serial_hds[i]);
thseddbd282006-12-23 00:23:19 +0000228 }
229 }
230
ths5fafdf22007-09-16 21:08:06 +0000231 isa_vga_init(ds, phys_ram_base + ram_size, ram_size,
bellard89b6b502006-08-17 10:45:20 +0000232 vga_ram_size);
bellard9827e952005-07-02 15:26:04 +0000233
pbrooka41b2ff2006-02-05 04:14:41 +0000234 if (nd_table[0].vlan) {
235 if (nd_table[0].model == NULL
236 || strcmp(nd_table[0].model, "ne2k_isa") == 0) {
pbrookd537cf62007-04-07 18:14:41 +0000237 isa_ne2000_init(0x300, i8259[9], &nd_table[0]);
blueswir1c4a70602007-05-27 19:41:17 +0000238 } else if (strcmp(nd_table[0].model, "?") == 0) {
239 fprintf(stderr, "qemu: Supported NICs: ne2k_isa\n");
240 exit (1);
pbrooka41b2ff2006-02-05 04:14:41 +0000241 } else {
242 fprintf(stderr, "qemu: Unsupported NIC: %s\n", nd_table[0].model);
243 exit (1);
244 }
245 }
pbrook58126402006-10-29 15:38:28 +0000246
247 for(i = 0; i < 2; i++)
pbrookd537cf62007-04-07 18:14:41 +0000248 isa_ide_init(ide_iobase[i], ide_iobase2[i], i8259[ide_irq[i]],
pbrook58126402006-10-29 15:38:28 +0000249 bs_table[2 * i], bs_table[2 * i + 1]);
ths70705262007-02-18 00:10:59 +0000250
pbrookd537cf62007-04-07 18:14:41 +0000251 i8042_init(i8259[1], i8259[12], 0x60);
ths95426112007-02-28 21:36:41 +0000252 ds1225y_init(0x9000, "nvram");
bellard6af0bf92005-07-02 14:58:51 +0000253}
254
255QEMUMachine mips_machine = {
256 "mips",
257 "mips r4k platform",
258 mips_r4k_init,
259};