]> git.proxmox.com Git - qemu.git/blame - hw/mips_r4k.c
Add new Etherboot ROMs for PXE boot.
[qemu.git] / hw / mips_r4k.c
CommitLineData
e16fe40c
TS
1/*
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*/
6af0bf9c
FB
10#include "vl.h"
11
6af0bf9c
FB
12#define BIOS_FILENAME "mips_bios.bin"
13//#define BIOS_FILENAME "system.bin"
5dc4b744 14#ifdef MIPS_HAS_MIPS64
f8c6ff6c 15#define INITRD_LOAD_ADDR (int64_t)(int32_t)0x80800000
5dc4b744
TS
16#else
17#define INITRD_LOAD_ADDR (int32_t)0x80800000
18#endif
6af0bf9c 19
5dc4b744 20#define VIRT_TO_PHYS_ADDEND (-((int64_t)(int32_t)0x80000000))
66a93e0f 21
58126404
PB
22static const int ide_iobase[2] = { 0x1f0, 0x170 };
23static const int ide_iobase2[2] = { 0x3f6, 0x376 };
24static const int ide_irq[2] = { 14, 15 };
25
eddbd288
TS
26static int serial_io[MAX_SERIAL_PORTS] = { 0x3f8, 0x2f8, 0x3e8, 0x2e8 };
27static int serial_irq[MAX_SERIAL_PORTS] = { 4, 3, 4, 3 };
28
6af0bf9c
FB
29extern FILE *logfile;
30
e16fe40c 31static PITState *pit; /* PIT i8254 */
697584ab 32
e16fe40c
TS
33/*i8254 PIT is attached to the IRQ0 at PIC i8259 */
34/*The PIC is attached to the MIPS CPU INT0 pin */
73133662 35static void pic_irq_request(void *opaque, int level)
6af0bf9c 36{
c68ea704 37 CPUState *env = first_cpu;
73133662 38 if (level) {
c68ea704
FB
39 env->CP0_Cause |= 0x00000400;
40 cpu_interrupt(env, CPU_INTERRUPT_HARD);
6af0bf9c 41 } else {
c68ea704
FB
42 env->CP0_Cause &= ~0x00000400;
43 cpu_reset_interrupt(env, CPU_INTERRUPT_HARD);
6af0bf9c 44 }
6af0bf9c
FB
45}
46
6ae81775
TS
47static 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);
c570fd16
TS
83 if (kernel_size >= 0) {
84 if ((entry & ~0x7fffffffULL) == 0x80000000)
5dc4b744 85 entry = (int32_t)entry;
6ae81775 86 env->PC = entry;
c570fd16 87 } else {
9042c0e2
TS
88 fprintf(stderr, "qemu: could not load kernel '%s'\n",
89 kernel_filename);
90 exit(1);
6ae81775
TS
91 }
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,
c570fd16 109 "rd_start=0x" TLSZ " rd_size=%li ",
6ae81775
TS
110 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}
66a93e0f 131
6af0bf9c
FB
132void 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];
6af0bf9c 138 unsigned long bios_offset;
6af0bf9c 139 int ret;
c68ea704 140 CPUState *env;
afdfa781 141 static RTCState *rtc_state;
58126404 142 int i;
c68ea704
FB
143
144 env = cpu_init();
145 register_savevm("cpu", 0, 3, cpu_save, cpu_load, env);
6ae81775 146 qemu_register_reset(main_cpu_reset, env);
c68ea704 147
6af0bf9c
FB
148 /* allocate RAM */
149 cpu_register_physical_memory(0, ram_size, IO_MEM_RAM);
66a93e0f 150
6ae81775
TS
151 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
66a93e0f
FB
157 /* 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. */
6af0bf9c
FB
161 bios_offset = ram_size + vga_ram_size;
162 snprintf(buf, sizeof(buf), "%s/%s", bios_dir, BIOS_FILENAME);
6af0bf9c 163 ret = load_image(buf, phys_ram_base + bios_offset);
66a93e0f
FB
164 if (ret == BIOS_SIZE) {
165 cpu_register_physical_memory((uint32_t)(0x1fc00000),
166 BIOS_SIZE, bios_offset | IO_MEM_ROM);
66a93e0f
FB
167 } else {
168 /* not fatal */
169 fprintf(stderr, "qemu: Warning, could not load MIPS bios '%s'\n",
170 buf);
6af0bf9c 171 }
66a93e0f 172
66a93e0f 173 if (kernel_filename) {
6ae81775
TS
174 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;
6af0bf9c 180 }
6af0bf9c 181
e16fe40c 182 /* Init CPU internal devices */
c68ea704 183 cpu_mips_clock_init(env);
6af0bf9c
FB
184 cpu_mips_irqctrl_init();
185
afdfa781
TS
186 rtc_state = rtc_init(0x70, 8);
187
0699b548 188 /* Register 64 KB of ISA IO space at 0x14000000 */
aef445bd 189 isa_mmio_init(0x14000000, 0x00010000);
0699b548
FB
190 isa_mem_base = 0x10000000;
191
c68ea704 192 isa_pic = pic_init(pic_irq_request, env);
697584ab 193 pit = pit_init(0x40, 0);
afdfa781 194
eddbd288
TS
195 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
89b6b508
FB
202 isa_vga_init(ds, phys_ram_base + ram_size, ram_size,
203 vga_ram_size);
9827e95c 204
a41b2ff2
PB
205 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 }
58126404
PB
214
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]);
6af0bf9c
FB
218}
219
220QEMUMachine mips_machine = {
221 "mips",
222 "mips r4k platform",
223 mips_r4k_init,
224};