blob: 47b51c7b0df29ea3686c87d49bbe59d5d3a4eebd [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
ths6ae81772006-12-06 17:48:52 +000039static void mips_qemu_writel (void *opaque, target_phys_addr_t addr,
40 uint32_t val)
41{
42 if ((addr & 0xffff) == 0 && val == 42)
43 qemu_system_reset_request ();
44 else if ((addr & 0xffff) == 4 && val == 42)
45 qemu_system_shutdown_request ();
46}
47
48static uint32_t mips_qemu_readl (void *opaque, target_phys_addr_t addr)
49{
50 return 0;
51}
52
53static CPUWriteMemoryFunc *mips_qemu_write[] = {
54 &mips_qemu_writel,
55 &mips_qemu_writel,
56 &mips_qemu_writel,
57};
58
59static CPUReadMemoryFunc *mips_qemu_read[] = {
60 &mips_qemu_readl,
61 &mips_qemu_readl,
62 &mips_qemu_readl,
63};
64
65static int mips_qemu_iomemtype = 0;
66
67void load_kernel (CPUState *env, int ram_size, const char *kernel_filename,
68 const char *kernel_cmdline,
69 const char *initrd_filename)
70{
ths74287112007-04-01 17:56:37 +000071 int64_t entry, kernel_low, kernel_high;
ths6ae81772006-12-06 17:48:52 +000072 long kernel_size, initrd_size;
ths74287112007-04-01 17:56:37 +000073 ram_addr_t initrd_offset;
ths6ae81772006-12-06 17:48:52 +000074
ths74287112007-04-01 17:56:37 +000075 kernel_size = load_elf(kernel_filename, VIRT_TO_PHYS_ADDEND,
76 &entry, &kernel_low, &kernel_high);
thsc570fd12006-12-21 01:19:56 +000077 if (kernel_size >= 0) {
78 if ((entry & ~0x7fffffffULL) == 0x80000000)
ths5dc4b742006-12-21 13:48:28 +000079 entry = (int32_t)entry;
thsead93602007-09-06 00:18:15 +000080 env->PC[env->current_tc] = entry;
thsc570fd12006-12-21 01:19:56 +000081 } else {
ths9042c0e2006-12-23 14:18:40 +000082 fprintf(stderr, "qemu: could not load kernel '%s'\n",
83 kernel_filename);
84 exit(1);
ths6ae81772006-12-06 17:48:52 +000085 }
86
87 /* load initrd */
88 initrd_size = 0;
ths74287112007-04-01 17:56:37 +000089 initrd_offset = 0;
ths6ae81772006-12-06 17:48:52 +000090 if (initrd_filename) {
ths74287112007-04-01 17:56:37 +000091 initrd_size = get_image_size (initrd_filename);
92 if (initrd_size > 0) {
93 initrd_offset = (kernel_high + ~TARGET_PAGE_MASK) & TARGET_PAGE_MASK;
94 if (initrd_offset + initrd_size > ram_size) {
95 fprintf(stderr,
96 "qemu: memory too small for initial ram disk '%s'\n",
97 initrd_filename);
98 exit(1);
99 }
100 initrd_size = load_image(initrd_filename,
101 phys_ram_base + initrd_offset);
102 }
ths6ae81772006-12-06 17:48:52 +0000103 if (initrd_size == (target_ulong) -1) {
104 fprintf(stderr, "qemu: could not load initial ram disk '%s'\n",
105 initrd_filename);
106 exit(1);
107 }
108 }
109
110 /* Store command line. */
111 if (initrd_size > 0) {
112 int ret;
113 ret = sprintf(phys_ram_base + (16 << 20) - 256,
ths3594c772007-02-20 23:37:21 +0000114 "rd_start=0x" TARGET_FMT_lx " rd_size=%li ",
ths74287112007-04-01 17:56:37 +0000115 PHYS_TO_VIRT((uint32_t)initrd_offset),
ths6ae81772006-12-06 17:48:52 +0000116 initrd_size);
117 strcpy (phys_ram_base + (16 << 20) - 256 + ret, kernel_cmdline);
118 }
119 else {
120 strcpy (phys_ram_base + (16 << 20) - 256, kernel_cmdline);
121 }
122
ths44cbbf12007-01-24 22:00:13 +0000123 *(int32_t *)(phys_ram_base + (16 << 20) - 260) = tswap32 (0x12345678);
124 *(int32_t *)(phys_ram_base + (16 << 20) - 264) = tswap32 (ram_size);
ths6ae81772006-12-06 17:48:52 +0000125}
126
127static void main_cpu_reset(void *opaque)
128{
129 CPUState *env = opaque;
130 cpu_reset(env);
ths51b27722007-05-30 20:46:02 +0000131 cpu_mips_register(env, NULL);
ths6ae81772006-12-06 17:48:52 +0000132
133 if (env->kernel_filename)
134 load_kernel (env, env->ram_size, env->kernel_filename,
135 env->kernel_cmdline, env->initrd_filename);
136}
bellard66a93e02006-04-26 22:06:55 +0000137
ths70705262007-02-18 00:10:59 +0000138static
bellard6af0bf92005-07-02 14:58:51 +0000139void mips_r4k_init (int ram_size, int vga_ram_size, int boot_device,
140 DisplayState *ds, const char **fd_filename, int snapshot,
141 const char *kernel_filename, const char *kernel_cmdline,
j_mayer94fc95c2007-03-05 19:44:02 +0000142 const char *initrd_filename, const char *cpu_model)
bellard6af0bf92005-07-02 14:58:51 +0000143{
144 char buf[1024];
bellard6af0bf92005-07-02 14:58:51 +0000145 unsigned long bios_offset;
thsf7bcd4e2007-01-06 01:37:51 +0000146 int bios_size;
bellardc68ea702005-11-21 23:33:12 +0000147 CPUState *env;
ths153a08d2007-03-17 15:21:30 +0000148 RTCState *rtc_state;
pbrook58126402006-10-29 15:38:28 +0000149 int i;
ths33d68b52007-03-18 00:30:29 +0000150 mips_def_t *def;
pbrookd537cf62007-04-07 18:14:41 +0000151 qemu_irq *i8259;
bellardc68ea702005-11-21 23:33:12 +0000152
ths33d68b52007-03-18 00:30:29 +0000153 /* init CPUs */
154 if (cpu_model == NULL) {
ths60aa19a2007-04-01 12:36:18 +0000155#ifdef TARGET_MIPS64
ths33d68b52007-03-18 00:30:29 +0000156 cpu_model = "R4000";
157#else
ths1c32f432007-04-28 21:07:41 +0000158 cpu_model = "24Kf";
ths33d68b52007-03-18 00:30:29 +0000159#endif
160 }
161 if (mips_find_by_name(cpu_model, &def) != 0)
162 def = NULL;
bellardc68ea702005-11-21 23:33:12 +0000163 env = cpu_init();
ths33d68b52007-03-18 00:30:29 +0000164 cpu_mips_register(env, def);
bellardc68ea702005-11-21 23:33:12 +0000165 register_savevm("cpu", 0, 3, cpu_save, cpu_load, env);
ths6ae81772006-12-06 17:48:52 +0000166 qemu_register_reset(main_cpu_reset, env);
bellardc68ea702005-11-21 23:33:12 +0000167
bellard6af0bf92005-07-02 14:58:51 +0000168 /* allocate RAM */
169 cpu_register_physical_memory(0, ram_size, IO_MEM_RAM);
bellard66a93e02006-04-26 22:06:55 +0000170
ths6ae81772006-12-06 17:48:52 +0000171 if (!mips_qemu_iomemtype) {
172 mips_qemu_iomemtype = cpu_register_io_memory(0, mips_qemu_read,
ths33d68b52007-03-18 00:30:29 +0000173 mips_qemu_write, NULL);
ths6ae81772006-12-06 17:48:52 +0000174 }
175 cpu_register_physical_memory(0x1fbf0000, 0x10000, mips_qemu_iomemtype);
176
bellard66a93e02006-04-26 22:06:55 +0000177 /* Try to load a BIOS image. If this fails, we continue regardless,
178 but initialize the hardware ourselves. When a kernel gets
179 preloaded we also initialize the hardware, since the BIOS wasn't
180 run. */
bellard6af0bf92005-07-02 14:58:51 +0000181 bios_offset = ram_size + vga_ram_size;
j_mayer1192dad2007-10-05 13:08:35 +0000182 if (bios_name == NULL)
183 bios_name = BIOS_FILENAME;
184 snprintf(buf, sizeof(buf), "%s/%s", bios_dir, bios_name);
thsf7bcd4e2007-01-06 01:37:51 +0000185 bios_size = load_image(buf, phys_ram_base + bios_offset);
ths2909b292007-01-06 02:24:15 +0000186 if ((bios_size > 0) && (bios_size <= BIOS_SIZE)) {
ths44cbbf12007-01-24 22:00:13 +0000187 cpu_register_physical_memory(0x1fc00000,
bellard66a93e02006-04-26 22:06:55 +0000188 BIOS_SIZE, bios_offset | IO_MEM_ROM);
bellard66a93e02006-04-26 22:06:55 +0000189 } else {
190 /* not fatal */
191 fprintf(stderr, "qemu: Warning, could not load MIPS bios '%s'\n",
192 buf);
bellard6af0bf92005-07-02 14:58:51 +0000193 }
bellard66a93e02006-04-26 22:06:55 +0000194
bellard66a93e02006-04-26 22:06:55 +0000195 if (kernel_filename) {
ths6ae81772006-12-06 17:48:52 +0000196 load_kernel (env, ram_size, kernel_filename, kernel_cmdline,
197 initrd_filename);
198 env->ram_size = ram_size;
199 env->kernel_filename = kernel_filename;
200 env->kernel_cmdline = kernel_cmdline;
201 env->initrd_filename = initrd_filename;
bellard6af0bf92005-07-02 14:58:51 +0000202 }
bellard6af0bf92005-07-02 14:58:51 +0000203
thse16fe402006-12-06 21:38:37 +0000204 /* Init CPU internal devices */
pbrookd537cf62007-04-07 18:14:41 +0000205 cpu_mips_irq_init_cpu(env);
bellardc68ea702005-11-21 23:33:12 +0000206 cpu_mips_clock_init(env);
bellard6af0bf92005-07-02 14:58:51 +0000207 cpu_mips_irqctrl_init();
208
pbrookd537cf62007-04-07 18:14:41 +0000209 /* The PIC is attached to the MIPS CPU INT0 pin */
210 i8259 = i8259_init(env->irq[2]);
211
212 rtc_state = rtc_init(0x70, i8259[8]);
thsafdfa782006-12-07 18:15:35 +0000213
bellard0699b542005-07-02 15:20:29 +0000214 /* Register 64 KB of ISA IO space at 0x14000000 */
pbrookaef445b2006-09-18 01:15:29 +0000215 isa_mmio_init(0x14000000, 0x00010000);
bellard0699b542005-07-02 15:20:29 +0000216 isa_mem_base = 0x10000000;
217
pbrookd537cf62007-04-07 18:14:41 +0000218 pit = pit_init(0x40, i8259[0]);
thsafdfa782006-12-07 18:15:35 +0000219
thseddbd282006-12-23 00:23:19 +0000220 for(i = 0; i < MAX_SERIAL_PORTS; i++) {
221 if (serial_hds[i]) {
pbrookd537cf62007-04-07 18:14:41 +0000222 serial_init(serial_io[i], i8259[serial_irq[i]], serial_hds[i]);
thseddbd282006-12-23 00:23:19 +0000223 }
224 }
225
ths5fafdf22007-09-16 21:08:06 +0000226 isa_vga_init(ds, phys_ram_base + ram_size, ram_size,
bellard89b6b502006-08-17 10:45:20 +0000227 vga_ram_size);
bellard9827e952005-07-02 15:26:04 +0000228
pbrooka41b2ff2006-02-05 04:14:41 +0000229 if (nd_table[0].vlan) {
230 if (nd_table[0].model == NULL
231 || strcmp(nd_table[0].model, "ne2k_isa") == 0) {
pbrookd537cf62007-04-07 18:14:41 +0000232 isa_ne2000_init(0x300, i8259[9], &nd_table[0]);
blueswir1c4a70602007-05-27 19:41:17 +0000233 } else if (strcmp(nd_table[0].model, "?") == 0) {
234 fprintf(stderr, "qemu: Supported NICs: ne2k_isa\n");
235 exit (1);
pbrooka41b2ff2006-02-05 04:14:41 +0000236 } else {
237 fprintf(stderr, "qemu: Unsupported NIC: %s\n", nd_table[0].model);
238 exit (1);
239 }
240 }
pbrook58126402006-10-29 15:38:28 +0000241
242 for(i = 0; i < 2; i++)
pbrookd537cf62007-04-07 18:14:41 +0000243 isa_ide_init(ide_iobase[i], ide_iobase2[i], i8259[ide_irq[i]],
pbrook58126402006-10-29 15:38:28 +0000244 bs_table[2 * i], bs_table[2 * i + 1]);
ths70705262007-02-18 00:10:59 +0000245
pbrookd537cf62007-04-07 18:14:41 +0000246 i8042_init(i8259[1], i8259[12], 0x60);
ths95426112007-02-28 21:36:41 +0000247 ds1225y_init(0x9000, "nvram");
bellard6af0bf92005-07-02 14:58:51 +0000248}
249
250QEMUMachine mips_machine = {
251 "mips",
252 "mips r4k platform",
253 mips_r4k_init,
254};