blob: cb76031223635b7e7c6dea3ae501cafcf167935a [file] [log] [blame]
bellard34751872005-07-02 14:31:34 +00001/*
blueswir1c7ba2182008-07-22 07:07:34 +00002 * QEMU Sun4u/Sun4v System Emulator
ths5fafdf22007-09-16 21:08:06 +00003 *
bellard34751872005-07-02 14:31:34 +00004 * Copyright (c) 2005 Fabrice Bellard
ths5fafdf22007-09-16 21:08:06 +00005 *
bellard34751872005-07-02 14:31:34 +00006 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
23 */
pbrook87ecb682007-11-17 17:14:51 +000024#include "hw.h"
25#include "pci.h"
Michael S. Tsirkin18e08a52009-11-11 14:59:56 +020026#include "apb_pci.h"
pbrook87ecb682007-11-17 17:14:51 +000027#include "pc.h"
28#include "nvram.h"
29#include "fdc.h"
30#include "net.h"
31#include "qemu-timer.h"
32#include "sysemu.h"
33#include "boards.h"
blueswir1d2c63fc2007-11-14 19:35:16 +000034#include "firmware_abi.h"
blueswir13cce6242008-09-18 18:27:29 +000035#include "fw_cfg.h"
Blue Swirl1baffa42009-07-21 09:58:02 +000036#include "sysbus.h"
Gerd Hoffmann977e1242009-08-20 15:22:20 +020037#include "ide.h"
Blue Swirlca20cf32009-09-20 14:58:02 +000038#include "loader.h"
39#include "elf.h"
Blue Swirl24463332010-08-24 15:22:24 +000040#include "blockdev.h"
bellard34751872005-07-02 14:31:34 +000041
blueswir19d926592008-09-22 19:50:28 +000042//#define DEBUG_IRQ
Blue Swirlb430a222009-12-30 12:27:17 +000043//#define DEBUG_EBUS
Igor V. Kovalenko8f4efc52010-01-28 00:00:53 +030044//#define DEBUG_TIMER
blueswir19d926592008-09-22 19:50:28 +000045
46#ifdef DEBUG_IRQ
Blue Swirlb430a222009-12-30 12:27:17 +000047#define CPUIRQ_DPRINTF(fmt, ...) \
Blue Swirl001faf32009-05-13 17:53:17 +000048 do { printf("CPUIRQ: " fmt , ## __VA_ARGS__); } while (0)
blueswir19d926592008-09-22 19:50:28 +000049#else
Blue Swirlb430a222009-12-30 12:27:17 +000050#define CPUIRQ_DPRINTF(fmt, ...)
51#endif
52
53#ifdef DEBUG_EBUS
54#define EBUS_DPRINTF(fmt, ...) \
55 do { printf("EBUS: " fmt , ## __VA_ARGS__); } while (0)
56#else
57#define EBUS_DPRINTF(fmt, ...)
blueswir19d926592008-09-22 19:50:28 +000058#endif
59
Igor V. Kovalenko8f4efc52010-01-28 00:00:53 +030060#ifdef DEBUG_TIMER
61#define TIMER_DPRINTF(fmt, ...) \
62 do { printf("TIMER: " fmt , ## __VA_ARGS__); } while (0)
63#else
64#define TIMER_DPRINTF(fmt, ...)
65#endif
66
bellard83469012005-07-23 14:27:54 +000067#define KERNEL_LOAD_ADDR 0x00404000
68#define CMDLINE_ADDR 0x003ff000
69#define INITRD_LOAD_ADDR 0x00300000
blueswir1ac2e9d62008-04-27 15:29:18 +000070#define PROM_SIZE_MAX (4 * 1024 * 1024)
blueswir1f930d072007-10-06 11:28:21 +000071#define PROM_VADDR 0x000ffd00000ULL
bellard83469012005-07-23 14:27:54 +000072#define APB_SPECIAL_BASE 0x1fe00000000ULL
blueswir1f930d072007-10-06 11:28:21 +000073#define APB_MEM_BASE 0x1ff00000000ULL
Igor V. Kovalenkod63baf92010-05-25 16:09:03 +040074#define APB_PCI_IO_BASE (APB_SPECIAL_BASE + 0x02000000ULL)
blueswir1f930d072007-10-06 11:28:21 +000075#define PROM_FILENAME "openbios-sparc64"
bellard83469012005-07-23 14:27:54 +000076#define NVRAM_SIZE 0x2000
thse4bcb142007-12-02 04:51:10 +000077#define MAX_IDE_BUS 2
blueswir13cce6242008-09-18 18:27:29 +000078#define BIOS_CFG_IOPORT 0x510
Blue Swirl75896902009-08-08 10:44:56 +000079#define FW_CFG_SPARC64_WIDTH (FW_CFG_ARCH_LOCAL + 0x00)
80#define FW_CFG_SPARC64_HEIGHT (FW_CFG_ARCH_LOCAL + 0x01)
81#define FW_CFG_SPARC64_DEPTH (FW_CFG_ARCH_LOCAL + 0x02)
bellard34751872005-07-02 14:31:34 +000082
blueswir19d926592008-09-22 19:50:28 +000083#define MAX_PILS 16
84
blueswir18fa211e2008-12-23 08:47:26 +000085#define TICK_MAX 0x7fffffffffffffffULL
86
blueswir1c7ba2182008-07-22 07:07:34 +000087struct hwdef {
88 const char * const default_cpu_model;
blueswir1905fdcb2008-09-18 18:33:18 +000089 uint16_t machine_id;
blueswir1e87231d2008-09-26 19:48:58 +000090 uint64_t prom_addr;
91 uint64_t console_serial_base;
blueswir1c7ba2182008-07-22 07:07:34 +000092};
93
Avi Kivityc5e6fb72011-08-08 16:09:22 +030094typedef struct EbusState {
95 PCIDevice pci_dev;
96 MemoryRegion bar0;
97 MemoryRegion bar1;
98} EbusState;
99
bellard34751872005-07-02 14:31:34 +0000100int DMA_get_channel_mode (int nchan)
101{
102 return 0;
103}
104int DMA_read_memory (int nchan, void *buf, int pos, int size)
105{
106 return 0;
107}
108int DMA_write_memory (int nchan, void *buf, int pos, int size)
109{
110 return 0;
111}
112void DMA_hold_DREQ (int nchan) {}
113void DMA_release_DREQ (int nchan) {}
114void DMA_schedule(int nchan) {}
Blue Swirl4556bd82010-05-22 08:00:52 +0000115
116void DMA_init(int high_page_enable, qemu_irq *cpu_request_exit)
117{
118}
119
bellard34751872005-07-02 14:31:34 +0000120void DMA_register_channel (int nchan,
121 DMA_transfer_handler transfer_handler,
122 void *opaque)
123{
124}
125
blueswir1513f7892009-03-08 09:51:29 +0000126static int fw_cfg_boot_set(void *opaque, const char *boot_device)
blueswir181864572008-06-20 16:25:56 +0000127{
blueswir1513f7892009-03-08 09:51:29 +0000128 fw_cfg_add_i16(opaque, FW_CFG_BOOT_DEVICE, boot_device[0]);
blueswir181864572008-06-20 16:25:56 +0000129 return 0;
130}
131
Blue Swirl43a34702010-02-07 08:05:03 +0000132static int sun4u_NVRAM_set_params(M48t59State *nvram, uint16_t NVRAM_size,
133 const char *arch, ram_addr_t RAM_size,
134 const char *boot_devices,
135 uint32_t kernel_image, uint32_t kernel_size,
136 const char *cmdline,
137 uint32_t initrd_image, uint32_t initrd_size,
138 uint32_t NVRAM_image,
139 int width, int height, int depth,
140 const uint8_t *macaddr)
bellard34751872005-07-02 14:31:34 +0000141{
blueswir166508602007-05-01 14:16:52 +0000142 unsigned int i;
143 uint32_t start, end;
blueswir1d2c63fc2007-11-14 19:35:16 +0000144 uint8_t image[0x1ff0];
blueswir1d2c63fc2007-11-14 19:35:16 +0000145 struct OpenBIOS_nvpart_v1 *part_header;
bellard34751872005-07-02 14:31:34 +0000146
blueswir1d2c63fc2007-11-14 19:35:16 +0000147 memset(image, '\0', sizeof(image));
148
blueswir1513f7892009-03-08 09:51:29 +0000149 start = 0;
bellard34751872005-07-02 14:31:34 +0000150
blueswir166508602007-05-01 14:16:52 +0000151 // OpenBIOS nvram variables
152 // Variable partition
blueswir1d2c63fc2007-11-14 19:35:16 +0000153 part_header = (struct OpenBIOS_nvpart_v1 *)&image[start];
154 part_header->signature = OPENBIOS_PART_SYSTEM;
blueswir1363a37d2008-08-21 17:58:08 +0000155 pstrcpy(part_header->name, sizeof(part_header->name), "system");
blueswir166508602007-05-01 14:16:52 +0000156
blueswir1d2c63fc2007-11-14 19:35:16 +0000157 end = start + sizeof(struct OpenBIOS_nvpart_v1);
blueswir166508602007-05-01 14:16:52 +0000158 for (i = 0; i < nb_prom_envs; i++)
blueswir1d2c63fc2007-11-14 19:35:16 +0000159 end = OpenBIOS_set_var(image, end, prom_envs[i]);
blueswir166508602007-05-01 14:16:52 +0000160
blueswir1d2c63fc2007-11-14 19:35:16 +0000161 // End marker
162 image[end++] = '\0';
163
blueswir166508602007-05-01 14:16:52 +0000164 end = start + ((end - start + 15) & ~15);
blueswir1d2c63fc2007-11-14 19:35:16 +0000165 OpenBIOS_finish_partition(part_header, end - start);
blueswir166508602007-05-01 14:16:52 +0000166
167 // free partition
168 start = end;
blueswir1d2c63fc2007-11-14 19:35:16 +0000169 part_header = (struct OpenBIOS_nvpart_v1 *)&image[start];
170 part_header->signature = OPENBIOS_PART_FREE;
blueswir1363a37d2008-08-21 17:58:08 +0000171 pstrcpy(part_header->name, sizeof(part_header->name), "free");
blueswir166508602007-05-01 14:16:52 +0000172
173 end = 0x1fd0;
blueswir1d2c63fc2007-11-14 19:35:16 +0000174 OpenBIOS_finish_partition(part_header, end - start);
175
blueswir10d31cb92008-07-15 14:54:01 +0000176 Sun_init_header((struct Sun_nvram *)&image[0x1fd8], macaddr, 0x80);
177
blueswir1d2c63fc2007-11-14 19:35:16 +0000178 for (i = 0; i < sizeof(image); i++)
179 m48t59_write(nvram, i, image[i]);
blueswir166508602007-05-01 14:16:52 +0000180
bellard83469012005-07-23 14:27:54 +0000181 return 0;
bellard34751872005-07-02 14:31:34 +0000182}
Blue Swirl636aa702009-07-21 10:49:47 +0000183static unsigned long sun4u_load_kernel(const char *kernel_filename,
184 const char *initrd_filename,
Anthony Liguoric227f092009-10-01 16:12:16 -0500185 ram_addr_t RAM_size, long *initrd_size)
Blue Swirl636aa702009-07-21 10:49:47 +0000186{
187 int linux_boot;
188 unsigned int i;
189 long kernel_size;
Blue Swirl6908d9c2010-01-24 21:18:00 +0000190 uint8_t *ptr;
Blue Swirl636aa702009-07-21 10:49:47 +0000191
192 linux_boot = (kernel_filename != NULL);
193
194 kernel_size = 0;
195 if (linux_boot) {
Blue Swirlca20cf32009-09-20 14:58:02 +0000196 int bswap_needed;
197
198#ifdef BSWAP_NEEDED
199 bswap_needed = 1;
200#else
201 bswap_needed = 0;
202#endif
Aurelien Jarno409dbce2010-03-14 21:20:59 +0100203 kernel_size = load_elf(kernel_filename, NULL, NULL, NULL,
204 NULL, NULL, 1, ELF_MACHINE, 0);
Blue Swirl636aa702009-07-21 10:49:47 +0000205 if (kernel_size < 0)
206 kernel_size = load_aout(kernel_filename, KERNEL_LOAD_ADDR,
Blue Swirlca20cf32009-09-20 14:58:02 +0000207 RAM_size - KERNEL_LOAD_ADDR, bswap_needed,
208 TARGET_PAGE_SIZE);
Blue Swirl636aa702009-07-21 10:49:47 +0000209 if (kernel_size < 0)
210 kernel_size = load_image_targphys(kernel_filename,
211 KERNEL_LOAD_ADDR,
212 RAM_size - KERNEL_LOAD_ADDR);
213 if (kernel_size < 0) {
214 fprintf(stderr, "qemu: could not load kernel '%s'\n",
215 kernel_filename);
216 exit(1);
217 }
218
219 /* load initrd */
220 *initrd_size = 0;
221 if (initrd_filename) {
222 *initrd_size = load_image_targphys(initrd_filename,
223 INITRD_LOAD_ADDR,
224 RAM_size - INITRD_LOAD_ADDR);
225 if (*initrd_size < 0) {
226 fprintf(stderr, "qemu: could not load initial ram disk '%s'\n",
227 initrd_filename);
228 exit(1);
229 }
230 }
231 if (*initrd_size > 0) {
232 for (i = 0; i < 64 * TARGET_PAGE_SIZE; i += TARGET_PAGE_SIZE) {
Blue Swirl6908d9c2010-01-24 21:18:00 +0000233 ptr = rom_ptr(KERNEL_LOAD_ADDR + i);
234 if (ldl_p(ptr + 8) == 0x48647253) { /* HdrS */
235 stl_p(ptr + 24, INITRD_LOAD_ADDR + KERNEL_LOAD_ADDR - 0x4000);
236 stl_p(ptr + 28, *initrd_size);
Blue Swirl636aa702009-07-21 10:49:47 +0000237 break;
238 }
239 }
240 }
241 }
242 return kernel_size;
243}
bellard34751872005-07-02 14:31:34 +0000244
blueswir1b4950062009-03-07 10:50:46 +0000245void pic_info(Monitor *mon)
bellard34751872005-07-02 14:31:34 +0000246{
247}
248
blueswir1b4950062009-03-07 10:50:46 +0000249void irq_info(Monitor *mon)
bellard34751872005-07-02 14:31:34 +0000250{
251}
252
blueswir19d926592008-09-22 19:50:28 +0000253void cpu_check_irqs(CPUState *env)
254{
Igor V. Kovalenkod532b262010-01-07 23:28:31 +0300255 uint32_t pil = env->pil_in |
256 (env->softint & ~(SOFTINT_TIMER | SOFTINT_STIMER));
blueswir19d926592008-09-22 19:50:28 +0000257
Igor V. Kovalenkod532b262010-01-07 23:28:31 +0300258 /* check if TM or SM in SOFTINT are set
259 setting these also causes interrupt 14 */
260 if (env->softint & (SOFTINT_TIMER | SOFTINT_STIMER)) {
261 pil |= 1 << 14;
262 }
263
264 if (!pil) {
265 if (env->interrupt_request & CPU_INTERRUPT_HARD) {
266 CPUIRQ_DPRINTF("Reset CPU IRQ (current interrupt %x)\n",
267 env->interrupt_index);
268 env->interrupt_index = 0;
269 cpu_reset_interrupt(env, CPU_INTERRUPT_HARD);
270 }
271 return;
272 }
273
274 if (cpu_interrupts_enabled(env)) {
275
blueswir19d926592008-09-22 19:50:28 +0000276 unsigned int i;
277
Igor V. Kovalenkod532b262010-01-07 23:28:31 +0300278 for (i = 15; i > env->psrpil; i--) {
blueswir19d926592008-09-22 19:50:28 +0000279 if (pil & (1 << i)) {
280 int old_interrupt = env->interrupt_index;
Igor V. Kovalenkod532b262010-01-07 23:28:31 +0300281 int new_interrupt = TT_EXTINT | i;
blueswir19d926592008-09-22 19:50:28 +0000282
Igor V. Kovalenkod532b262010-01-07 23:28:31 +0300283 if (env->tl > 0 && cpu_tsptr(env)->tt > new_interrupt) {
284 CPUIRQ_DPRINTF("Not setting CPU IRQ: TL=%d "
285 "current %x >= pending %x\n",
286 env->tl, cpu_tsptr(env)->tt, new_interrupt);
287 } else if (old_interrupt != new_interrupt) {
288 env->interrupt_index = new_interrupt;
289 CPUIRQ_DPRINTF("Set CPU IRQ %d old=%x new=%x\n", i,
290 old_interrupt, new_interrupt);
blueswir19d926592008-09-22 19:50:28 +0000291 cpu_interrupt(env, CPU_INTERRUPT_HARD);
292 }
293 break;
294 }
295 }
Igor V. Kovalenkod532b262010-01-07 23:28:31 +0300296 } else {
297 CPUIRQ_DPRINTF("Interrupts disabled, pil=%08x pil_in=%08x softint=%08x "
298 "current interrupt %x\n",
299 pil, env->pil_in, env->softint, env->interrupt_index);
blueswir19d926592008-09-22 19:50:28 +0000300 }
301}
302
Igor V. Kovalenko8f4efc52010-01-28 00:00:53 +0300303static void cpu_kick_irq(CPUState *env)
304{
305 env->halted = 0;
306 cpu_check_irqs(env);
Paolo Bonzini94ad5b02011-03-12 17:43:57 +0100307 qemu_cpu_kick(env);
Igor V. Kovalenko8f4efc52010-01-28 00:00:53 +0300308}
309
blueswir19d926592008-09-22 19:50:28 +0000310static void cpu_set_irq(void *opaque, int irq, int level)
311{
312 CPUState *env = opaque;
313
314 if (level) {
Blue Swirlb430a222009-12-30 12:27:17 +0000315 CPUIRQ_DPRINTF("Raise CPU IRQ %d\n", irq);
blueswir19d926592008-09-22 19:50:28 +0000316 env->pil_in |= 1 << irq;
Paolo Bonzini94ad5b02011-03-12 17:43:57 +0100317 cpu_kick_irq(env);
blueswir19d926592008-09-22 19:50:28 +0000318 } else {
Blue Swirlb430a222009-12-30 12:27:17 +0000319 CPUIRQ_DPRINTF("Lower CPU IRQ %d\n", irq);
blueswir19d926592008-09-22 19:50:28 +0000320 env->pil_in &= ~(1 << irq);
321 cpu_check_irqs(env);
322 }
323}
324
blueswir1e87231d2008-09-26 19:48:58 +0000325typedef struct ResetData {
326 CPUState *env;
Blue Swirl44a99352009-11-07 10:05:03 +0000327 uint64_t prom_addr;
blueswir1e87231d2008-09-26 19:48:58 +0000328} ResetData;
329
Igor V. Kovalenko8f4efc52010-01-28 00:00:53 +0300330void cpu_put_timer(QEMUFile *f, CPUTimer *s)
331{
332 qemu_put_be32s(f, &s->frequency);
333 qemu_put_be32s(f, &s->disabled);
334 qemu_put_be64s(f, &s->disabled_mask);
335 qemu_put_sbe64s(f, &s->clock_offset);
336
337 qemu_put_timer(f, s->qtimer);
338}
339
340void cpu_get_timer(QEMUFile *f, CPUTimer *s)
341{
342 qemu_get_be32s(f, &s->frequency);
343 qemu_get_be32s(f, &s->disabled);
344 qemu_get_be64s(f, &s->disabled_mask);
345 qemu_get_sbe64s(f, &s->clock_offset);
346
347 qemu_get_timer(f, s->qtimer);
348}
349
350static CPUTimer* cpu_timer_create(const char* name, CPUState *env,
351 QEMUBHFunc *cb, uint32_t frequency,
352 uint64_t disabled_mask)
353{
354 CPUTimer *timer = qemu_mallocz(sizeof (CPUTimer));
355
356 timer->name = name;
357 timer->frequency = frequency;
358 timer->disabled_mask = disabled_mask;
359
360 timer->disabled = 1;
Paolo Bonzini74475452011-03-11 16:47:48 +0100361 timer->clock_offset = qemu_get_clock_ns(vm_clock);
Igor V. Kovalenko8f4efc52010-01-28 00:00:53 +0300362
Paolo Bonzini74475452011-03-11 16:47:48 +0100363 timer->qtimer = qemu_new_timer_ns(vm_clock, cb, env);
Igor V. Kovalenko8f4efc52010-01-28 00:00:53 +0300364
365 return timer;
366}
367
368static void cpu_timer_reset(CPUTimer *timer)
369{
370 timer->disabled = 1;
Paolo Bonzini74475452011-03-11 16:47:48 +0100371 timer->clock_offset = qemu_get_clock_ns(vm_clock);
Igor V. Kovalenko8f4efc52010-01-28 00:00:53 +0300372
373 qemu_del_timer(timer->qtimer);
374}
375
bellardc68ea702005-11-21 23:33:12 +0000376static void main_cpu_reset(void *opaque)
377{
blueswir1e87231d2008-09-26 19:48:58 +0000378 ResetData *s = (ResetData *)opaque;
379 CPUState *env = s->env;
Blue Swirl44a99352009-11-07 10:05:03 +0000380 static unsigned int nr_resets;
blueswir120c9f092007-05-25 18:50:28 +0000381
bellardc68ea702005-11-21 23:33:12 +0000382 cpu_reset(env);
Igor V. Kovalenko8f4efc52010-01-28 00:00:53 +0300383
384 cpu_timer_reset(env->tick);
385 cpu_timer_reset(env->stick);
386 cpu_timer_reset(env->hstick);
387
blueswir1e87231d2008-09-26 19:48:58 +0000388 env->gregs[1] = 0; // Memory start
389 env->gregs[2] = ram_size; // Memory size
390 env->gregs[3] = 0; // Machine description XXX
Blue Swirl44a99352009-11-07 10:05:03 +0000391 if (nr_resets++ == 0) {
392 /* Power on reset */
393 env->pc = s->prom_addr + 0x20ULL;
394 } else {
395 env->pc = s->prom_addr + 0x40ULL;
396 }
blueswir1e87231d2008-09-26 19:48:58 +0000397 env->npc = env->pc + 4;
blueswir120c9f092007-05-25 18:50:28 +0000398}
399
blueswir122548762008-05-10 10:12:00 +0000400static void tick_irq(void *opaque)
blueswir120c9f092007-05-25 18:50:28 +0000401{
402 CPUState *env = opaque;
403
Igor V. Kovalenko8f4efc52010-01-28 00:00:53 +0300404 CPUTimer* timer = env->tick;
405
406 if (timer->disabled) {
407 CPUIRQ_DPRINTF("tick_irq: softint disabled\n");
408 return;
409 } else {
410 CPUIRQ_DPRINTF("tick: fire\n");
blueswir18fa211e2008-12-23 08:47:26 +0000411 }
Igor V. Kovalenko8f4efc52010-01-28 00:00:53 +0300412
413 env->softint |= SOFTINT_TIMER;
414 cpu_kick_irq(env);
blueswir120c9f092007-05-25 18:50:28 +0000415}
416
blueswir122548762008-05-10 10:12:00 +0000417static void stick_irq(void *opaque)
blueswir120c9f092007-05-25 18:50:28 +0000418{
419 CPUState *env = opaque;
420
Igor V. Kovalenko8f4efc52010-01-28 00:00:53 +0300421 CPUTimer* timer = env->stick;
422
423 if (timer->disabled) {
424 CPUIRQ_DPRINTF("stick_irq: softint disabled\n");
425 return;
426 } else {
427 CPUIRQ_DPRINTF("stick: fire\n");
blueswir18fa211e2008-12-23 08:47:26 +0000428 }
Igor V. Kovalenko8f4efc52010-01-28 00:00:53 +0300429
430 env->softint |= SOFTINT_STIMER;
431 cpu_kick_irq(env);
blueswir120c9f092007-05-25 18:50:28 +0000432}
433
blueswir122548762008-05-10 10:12:00 +0000434static void hstick_irq(void *opaque)
blueswir120c9f092007-05-25 18:50:28 +0000435{
436 CPUState *env = opaque;
437
Igor V. Kovalenko8f4efc52010-01-28 00:00:53 +0300438 CPUTimer* timer = env->hstick;
439
440 if (timer->disabled) {
441 CPUIRQ_DPRINTF("hstick_irq: softint disabled\n");
442 return;
443 } else {
444 CPUIRQ_DPRINTF("hstick: fire\n");
blueswir18fa211e2008-12-23 08:47:26 +0000445 }
Igor V. Kovalenko8f4efc52010-01-28 00:00:53 +0300446
447 env->softint |= SOFTINT_STIMER;
448 cpu_kick_irq(env);
bellardc68ea702005-11-21 23:33:12 +0000449}
450
Igor V. Kovalenko8f4efc52010-01-28 00:00:53 +0300451static int64_t cpu_to_timer_ticks(int64_t cpu_ticks, uint32_t frequency)
blueswir1f4b1a842008-10-03 19:04:42 +0000452{
Igor V. Kovalenko8f4efc52010-01-28 00:00:53 +0300453 return muldiv64(cpu_ticks, get_ticks_per_sec(), frequency);
blueswir1f4b1a842008-10-03 19:04:42 +0000454}
455
Igor V. Kovalenko8f4efc52010-01-28 00:00:53 +0300456static uint64_t timer_to_cpu_ticks(int64_t timer_ticks, uint32_t frequency)
blueswir1f4b1a842008-10-03 19:04:42 +0000457{
Igor V. Kovalenko8f4efc52010-01-28 00:00:53 +0300458 return muldiv64(timer_ticks, frequency, get_ticks_per_sec());
blueswir1f4b1a842008-10-03 19:04:42 +0000459}
460
Igor V. Kovalenko8f4efc52010-01-28 00:00:53 +0300461void cpu_tick_set_count(CPUTimer *timer, uint64_t count)
blueswir1f4b1a842008-10-03 19:04:42 +0000462{
Igor V. Kovalenko8f4efc52010-01-28 00:00:53 +0300463 uint64_t real_count = count & ~timer->disabled_mask;
464 uint64_t disabled_bit = count & timer->disabled_mask;
465
Paolo Bonzini74475452011-03-11 16:47:48 +0100466 int64_t vm_clock_offset = qemu_get_clock_ns(vm_clock) -
Igor V. Kovalenko8f4efc52010-01-28 00:00:53 +0300467 cpu_to_timer_ticks(real_count, timer->frequency);
468
469 TIMER_DPRINTF("%s set_count count=0x%016lx (%s) p=%p\n",
470 timer->name, real_count,
471 timer->disabled?"disabled":"enabled", timer);
472
473 timer->disabled = disabled_bit ? 1 : 0;
474 timer->clock_offset = vm_clock_offset;
475}
476
477uint64_t cpu_tick_get_count(CPUTimer *timer)
478{
479 uint64_t real_count = timer_to_cpu_ticks(
Paolo Bonzini74475452011-03-11 16:47:48 +0100480 qemu_get_clock_ns(vm_clock) - timer->clock_offset,
Igor V. Kovalenko8f4efc52010-01-28 00:00:53 +0300481 timer->frequency);
482
483 TIMER_DPRINTF("%s get_count count=0x%016lx (%s) p=%p\n",
484 timer->name, real_count,
485 timer->disabled?"disabled":"enabled", timer);
486
487 if (timer->disabled)
488 real_count |= timer->disabled_mask;
489
490 return real_count;
491}
492
493void cpu_tick_set_limit(CPUTimer *timer, uint64_t limit)
494{
Paolo Bonzini74475452011-03-11 16:47:48 +0100495 int64_t now = qemu_get_clock_ns(vm_clock);
Igor V. Kovalenko8f4efc52010-01-28 00:00:53 +0300496
497 uint64_t real_limit = limit & ~timer->disabled_mask;
498 timer->disabled = (limit & timer->disabled_mask) ? 1 : 0;
499
500 int64_t expires = cpu_to_timer_ticks(real_limit, timer->frequency) +
501 timer->clock_offset;
502
503 if (expires < now) {
504 expires = now + 1;
505 }
506
507 TIMER_DPRINTF("%s set_limit limit=0x%016lx (%s) p=%p "
508 "called with limit=0x%016lx at 0x%016lx (delta=0x%016lx)\n",
509 timer->name, real_limit,
510 timer->disabled?"disabled":"enabled",
511 timer, limit,
512 timer_to_cpu_ticks(now - timer->clock_offset,
513 timer->frequency),
514 timer_to_cpu_ticks(expires - now, timer->frequency));
515
516 if (!real_limit) {
517 TIMER_DPRINTF("%s set_limit limit=ZERO - not starting timer\n",
518 timer->name);
519 qemu_del_timer(timer->qtimer);
520 } else if (timer->disabled) {
521 qemu_del_timer(timer->qtimer);
522 } else {
523 qemu_mod_timer(timer->qtimer, expires);
524 }
blueswir1f4b1a842008-10-03 19:04:42 +0000525}
526
Blue Swirl1387fe42009-08-28 19:04:13 +0000527static void dummy_isa_irq_handler(void *opaque, int n, int level)
528{
529}
530
blueswir1c190ea02009-01-10 11:33:32 +0000531/* EBUS (Eight bit bus) bridge */
532static void
533pci_ebus_init(PCIBus *bus, int devfn)
534{
Blue Swirl1387fe42009-08-28 19:04:13 +0000535 qemu_irq *isa_irq;
536
Blue Swirl53e3c4f2009-07-12 08:54:49 +0000537 pci_create_simple(bus, devfn, "ebus");
Blue Swirl1387fe42009-08-28 19:04:13 +0000538 isa_irq = qemu_allocate_irqs(dummy_isa_irq_handler, NULL, 16);
539 isa_bus_irqs(isa_irq);
Blue Swirl53e3c4f2009-07-12 08:54:49 +0000540}
blueswir1c190ea02009-01-10 11:33:32 +0000541
Gerd Hoffmann81a322d2009-08-14 10:36:05 +0200542static int
Avi Kivityc5e6fb72011-08-08 16:09:22 +0300543pci_ebus_init1(PCIDevice *pci_dev)
Blue Swirl53e3c4f2009-07-12 08:54:49 +0000544{
Avi Kivityc5e6fb72011-08-08 16:09:22 +0300545 EbusState *s = DO_UPCAST(EbusState, pci_dev, pci_dev);
Blue Swirl0c5b8d82009-08-13 17:51:46 +0000546
Avi Kivityc5e6fb72011-08-08 16:09:22 +0300547 isa_bus_new(&pci_dev->qdev);
blueswir1c190ea02009-01-10 11:33:32 +0000548
Avi Kivityc5e6fb72011-08-08 16:09:22 +0300549 pci_dev->config[0x04] = 0x06; // command = bus master, pci mem
550 pci_dev->config[0x05] = 0x00;
551 pci_dev->config[0x06] = 0xa0; // status = fast back-to-back, 66MHz, no error
552 pci_dev->config[0x07] = 0x03; // status = medium devsel
553 pci_dev->config[0x09] = 0x00; // programming i/f
554 pci_dev->config[0x0D] = 0x0a; // latency_timer
555
556 isa_mmio_setup(&s->bar0, 0x1000000);
557 pci_register_bar_region(pci_dev, 0, PCI_BASE_ADDRESS_SPACE_MEMORY,
558 &s->bar0);
559 isa_mmio_setup(&s->bar1, 0x800000);
560 pci_register_bar_region(pci_dev, 1, PCI_BASE_ADDRESS_SPACE_MEMORY,
561 &s->bar1);
Gerd Hoffmann81a322d2009-08-14 10:36:05 +0200562 return 0;
blueswir1c190ea02009-01-10 11:33:32 +0000563}
564
Blue Swirl53e3c4f2009-07-12 08:54:49 +0000565static PCIDeviceInfo ebus_info = {
566 .qdev.name = "ebus",
Avi Kivityc5e6fb72011-08-08 16:09:22 +0300567 .qdev.size = sizeof(EbusState),
Blue Swirl53e3c4f2009-07-12 08:54:49 +0000568 .init = pci_ebus_init1,
Isaku Yamahatae8b36ba2011-05-25 10:58:27 +0900569 .vendor_id = PCI_VENDOR_ID_SUN,
570 .device_id = PCI_DEVICE_ID_SUN_EBUS,
571 .revision = 0x01,
572 .class_id = PCI_CLASS_BRIDGE_OTHER,
Blue Swirl53e3c4f2009-07-12 08:54:49 +0000573};
574
575static void pci_ebus_register(void)
576{
577 pci_qdev_register(&ebus_info);
578}
579
580device_init(pci_ebus_register);
581
Aurelien Jarno409dbce2010-03-14 21:20:59 +0100582static uint64_t translate_prom_address(void *opaque, uint64_t addr)
583{
584 target_phys_addr_t *base_addr = (target_phys_addr_t *)opaque;
585 return addr + *base_addr - PROM_VADDR;
586}
587
Blue Swirl1baffa42009-07-21 09:58:02 +0000588/* Boot PROM (OpenBIOS) */
Anthony Liguoric227f092009-10-01 16:12:16 -0500589static void prom_init(target_phys_addr_t addr, const char *bios_name)
Blue Swirl1baffa42009-07-21 09:58:02 +0000590{
591 DeviceState *dev;
592 SysBusDevice *s;
593 char *filename;
594 int ret;
595
596 dev = qdev_create(NULL, "openprom");
Markus Armbrustere23a1b32009-10-07 01:15:58 +0200597 qdev_init_nofail(dev);
Blue Swirl1baffa42009-07-21 09:58:02 +0000598 s = sysbus_from_qdev(dev);
599
600 sysbus_mmio_map(s, 0, addr);
601
602 /* load boot prom */
603 if (bios_name == NULL) {
604 bios_name = PROM_FILENAME;
605 }
606 filename = qemu_find_file(QEMU_FILE_TYPE_BIOS, bios_name);
607 if (filename) {
Aurelien Jarno409dbce2010-03-14 21:20:59 +0100608 ret = load_elf(filename, translate_prom_address, &addr,
609 NULL, NULL, NULL, 1, ELF_MACHINE, 0);
Blue Swirl1baffa42009-07-21 09:58:02 +0000610 if (ret < 0 || ret > PROM_SIZE_MAX) {
611 ret = load_image_targphys(filename, addr, PROM_SIZE_MAX);
612 }
613 qemu_free(filename);
614 } else {
615 ret = -1;
616 }
617 if (ret < 0 || ret > PROM_SIZE_MAX) {
618 fprintf(stderr, "qemu: could not load prom '%s'\n", bios_name);
619 exit(1);
620 }
621}
622
Gerd Hoffmann81a322d2009-08-14 10:36:05 +0200623static int prom_init1(SysBusDevice *dev)
Blue Swirl1baffa42009-07-21 09:58:02 +0000624{
Anthony Liguoric227f092009-10-01 16:12:16 -0500625 ram_addr_t prom_offset;
Blue Swirl1baffa42009-07-21 09:58:02 +0000626
Alex Williamson1724f042010-06-25 11:09:35 -0600627 prom_offset = qemu_ram_alloc(NULL, "sun4u.prom", PROM_SIZE_MAX);
Blue Swirl1baffa42009-07-21 09:58:02 +0000628 sysbus_init_mmio(dev, PROM_SIZE_MAX, prom_offset | IO_MEM_ROM);
Gerd Hoffmann81a322d2009-08-14 10:36:05 +0200629 return 0;
Blue Swirl1baffa42009-07-21 09:58:02 +0000630}
631
632static SysBusDeviceInfo prom_info = {
633 .init = prom_init1,
634 .qdev.name = "openprom",
635 .qdev.size = sizeof(SysBusDevice),
636 .qdev.props = (Property[]) {
637 {/* end of property list */}
638 }
639};
640
641static void prom_register_devices(void)
642{
643 sysbus_register_withprop(&prom_info);
644}
645
646device_init(prom_register_devices);
647
Blue Swirlbda42032009-07-21 10:04:47 +0000648
649typedef struct RamDevice
650{
651 SysBusDevice busdev;
Blue Swirl04843622009-07-21 11:20:11 +0000652 uint64_t size;
Blue Swirlbda42032009-07-21 10:04:47 +0000653} RamDevice;
654
655/* System RAM */
Gerd Hoffmann81a322d2009-08-14 10:36:05 +0200656static int ram_init1(SysBusDevice *dev)
Blue Swirlbda42032009-07-21 10:04:47 +0000657{
Anthony Liguoric227f092009-10-01 16:12:16 -0500658 ram_addr_t RAM_size, ram_offset;
Blue Swirlbda42032009-07-21 10:04:47 +0000659 RamDevice *d = FROM_SYSBUS(RamDevice, dev);
660
661 RAM_size = d->size;
662
Alex Williamson1724f042010-06-25 11:09:35 -0600663 ram_offset = qemu_ram_alloc(NULL, "sun4u.ram", RAM_size);
Blue Swirlbda42032009-07-21 10:04:47 +0000664 sysbus_init_mmio(dev, RAM_size, ram_offset);
Gerd Hoffmann81a322d2009-08-14 10:36:05 +0200665 return 0;
Blue Swirlbda42032009-07-21 10:04:47 +0000666}
667
Anthony Liguoric227f092009-10-01 16:12:16 -0500668static void ram_init(target_phys_addr_t addr, ram_addr_t RAM_size)
Blue Swirlbda42032009-07-21 10:04:47 +0000669{
670 DeviceState *dev;
671 SysBusDevice *s;
672 RamDevice *d;
673
674 /* allocate RAM */
675 dev = qdev_create(NULL, "memory");
676 s = sysbus_from_qdev(dev);
677
678 d = FROM_SYSBUS(RamDevice, s);
679 d->size = RAM_size;
Markus Armbrustere23a1b32009-10-07 01:15:58 +0200680 qdev_init_nofail(dev);
Blue Swirlbda42032009-07-21 10:04:47 +0000681
682 sysbus_mmio_map(s, 0, addr);
683}
684
685static SysBusDeviceInfo ram_info = {
686 .init = ram_init1,
687 .qdev.name = "memory",
688 .qdev.size = sizeof(RamDevice),
689 .qdev.props = (Property[]) {
Gerd Hoffmann32a7ee92009-08-03 17:35:36 +0200690 DEFINE_PROP_UINT64("size", RamDevice, size, 0),
691 DEFINE_PROP_END_OF_LIST(),
Blue Swirlbda42032009-07-21 10:04:47 +0000692 }
693};
694
695static void ram_register_devices(void)
696{
697 sysbus_register_withprop(&ram_info);
698}
699
700device_init(ram_register_devices);
701
Blue Swirl7b833f52009-07-21 10:46:23 +0000702static CPUState *cpu_devinit(const char *cpu_model, const struct hwdef *hwdef)
bellard34751872005-07-02 14:31:34 +0000703{
bellardc68ea702005-11-21 23:33:12 +0000704 CPUState *env;
blueswir1e87231d2008-09-26 19:48:58 +0000705 ResetData *reset_info;
bellard34751872005-07-02 14:31:34 +0000706
Igor V. Kovalenko8f4efc52010-01-28 00:00:53 +0300707 uint32_t tick_frequency = 100*1000000;
708 uint32_t stick_frequency = 100*1000000;
709 uint32_t hstick_frequency = 100*1000000;
710
blueswir1c7ba2182008-07-22 07:07:34 +0000711 if (!cpu_model)
712 cpu_model = hwdef->default_cpu_model;
bellardaaed9092007-11-10 15:15:54 +0000713 env = cpu_init(cpu_model);
714 if (!env) {
blueswir162724a32007-03-25 07:55:52 +0000715 fprintf(stderr, "Unable to find Sparc CPU definition\n");
716 exit(1);
717 }
blueswir120c9f092007-05-25 18:50:28 +0000718
Igor V. Kovalenko8f4efc52010-01-28 00:00:53 +0300719 env->tick = cpu_timer_create("tick", env, tick_irq,
720 tick_frequency, TICK_NPT_MASK);
blueswir120c9f092007-05-25 18:50:28 +0000721
Igor V. Kovalenko8f4efc52010-01-28 00:00:53 +0300722 env->stick = cpu_timer_create("stick", env, stick_irq,
723 stick_frequency, TICK_INT_DIS);
724
725 env->hstick = cpu_timer_create("hstick", env, hstick_irq,
726 hstick_frequency, TICK_INT_DIS);
blueswir1e87231d2008-09-26 19:48:58 +0000727
728 reset_info = qemu_mallocz(sizeof(ResetData));
729 reset_info->env = env;
Blue Swirl44a99352009-11-07 10:05:03 +0000730 reset_info->prom_addr = hwdef->prom_addr;
Jan Kiszkaa08d4362009-06-27 09:25:07 +0200731 qemu_register_reset(main_cpu_reset, reset_info);
bellardc68ea702005-11-21 23:33:12 +0000732
Blue Swirl7b833f52009-07-21 10:46:23 +0000733 return env;
734}
735
Anthony Liguoric227f092009-10-01 16:12:16 -0500736static void sun4uv_init(ram_addr_t RAM_size,
Blue Swirl7b833f52009-07-21 10:46:23 +0000737 const char *boot_devices,
738 const char *kernel_filename, const char *kernel_cmdline,
739 const char *initrd_filename, const char *cpu_model,
740 const struct hwdef *hwdef)
741{
742 CPUState *env;
Blue Swirl43a34702010-02-07 08:05:03 +0000743 M48t59State *nvram;
Blue Swirl7b833f52009-07-21 10:46:23 +0000744 unsigned int i;
745 long initrd_size, kernel_size;
746 PCIBus *pci_bus, *pci_bus2, *pci_bus3;
747 qemu_irq *irq;
Gerd Hoffmannf455e982009-08-28 15:47:03 +0200748 DriveInfo *hd[MAX_IDE_BUS * MAX_IDE_DEVS];
Gerd Hoffmannfd8014e2009-09-22 13:53:18 +0200749 DriveInfo *fd[MAX_FD];
Blue Swirl7b833f52009-07-21 10:46:23 +0000750 void *fw_cfg;
751
Blue Swirl7b833f52009-07-21 10:46:23 +0000752 /* init CPUs */
753 env = cpu_devinit(cpu_model, hwdef);
754
Blue Swirlbda42032009-07-21 10:04:47 +0000755 /* set up devices */
756 ram_init(0, RAM_size);
bellard34751872005-07-02 14:31:34 +0000757
Blue Swirl1baffa42009-07-21 09:58:02 +0000758 prom_init(hwdef->prom_addr, bios_name);
bellard34751872005-07-02 14:31:34 +0000759
Igor Kovalenko7d552732009-07-12 07:43:00 +0000760
761 irq = qemu_allocate_irqs(cpu_set_irq, env, MAX_PILS);
762 pci_bus = pci_apb_init(APB_SPECIAL_BASE, APB_MEM_BASE, irq, &pci_bus2,
blueswir1c190ea02009-01-10 11:33:32 +0000763 &pci_bus3);
Igor V. Kovalenkod63baf92010-05-25 16:09:03 +0400764 isa_mem_base = APB_PCI_IO_BASE;
Gerd Hoffmann78895422010-10-15 11:45:13 +0200765 pci_vga_init(pci_bus);
bellard83469012005-07-23 14:27:54 +0000766
blueswir1c190ea02009-01-10 11:33:32 +0000767 // XXX Should be pci_bus3
768 pci_ebus_init(pci_bus, -1);
769
blueswir1e87231d2008-09-26 19:48:58 +0000770 i = 0;
771 if (hwdef->console_serial_base) {
772 serial_mm_init(hwdef->console_serial_base, 0, NULL, 115200,
Blue Swirl2d483772010-03-21 19:47:11 +0000773 serial_hds[i], 1, 1);
blueswir1e87231d2008-09-26 19:48:58 +0000774 i++;
775 }
776 for(; i < MAX_SERIAL_PORTS; i++) {
bellard83469012005-07-23 14:27:54 +0000777 if (serial_hds[i]) {
Gerd Hoffmannac0be992009-09-22 13:53:21 +0200778 serial_isa_init(i, serial_hds[i]);
bellard83469012005-07-23 14:27:54 +0000779 }
780 }
781
782 for(i = 0; i < MAX_PARALLEL_PORTS; i++) {
783 if (parallel_hds[i]) {
Gerd Hoffmann021f0672009-09-22 13:53:22 +0200784 parallel_init(i, parallel_hds[i]);
bellard83469012005-07-23 14:27:54 +0000785 }
786 }
787
aliguoricb457d72009-01-13 19:47:10 +0000788 for(i = 0; i < nb_nics; i++)
Markus Armbruster07caea32009-09-25 03:53:51 +0200789 pci_nic_init_nofail(&nd_table[i], "ne2k_pci", NULL);
bellard83469012005-07-23 14:27:54 +0000790
Isaku Yamahata75717902011-04-03 20:32:46 +0900791 ide_drive_get(hd, MAX_IDE_BUS);
thse4bcb142007-12-02 04:51:10 +0000792
blueswir13b898dd2009-01-17 18:41:53 +0000793 pci_cmd646_ide_init(pci_bus, hd, 1);
794
Gerd Hoffmann2e15e232009-09-10 11:43:27 +0200795 isa_create_simple("i8042");
thse4bcb142007-12-02 04:51:10 +0000796 for(i = 0; i < MAX_FD; i++) {
Gerd Hoffmannfd8014e2009-09-22 13:53:18 +0200797 fd[i] = drive_get(IF_FLOPPY, 0, i);
thse4bcb142007-12-02 04:51:10 +0000798 }
Gerd Hoffmann86c86152009-09-10 11:43:26 +0200799 fdctrl_init_isa(fd);
Blue Swirlf80237d2009-09-14 15:33:28 +0000800 nvram = m48t59_init_isa(0x0074, NVRAM_SIZE, 59);
Blue Swirl636aa702009-07-21 10:49:47 +0000801
802 initrd_size = 0;
803 kernel_size = sun4u_load_kernel(kernel_filename, initrd_filename,
804 ram_size, &initrd_size);
805
blueswir122548762008-05-10 10:12:00 +0000806 sun4u_NVRAM_set_params(nvram, NVRAM_SIZE, "Sun4u", RAM_size, boot_devices,
blueswir10d31cb92008-07-15 14:54:01 +0000807 KERNEL_LOAD_ADDR, kernel_size,
808 kernel_cmdline,
809 INITRD_LOAD_ADDR, initrd_size,
810 /* XXX: need an option to load a NVRAM image */
811 0,
812 graphic_width, graphic_height, graphic_depth,
813 (uint8_t *)&nd_table[0].macaddr);
bellard83469012005-07-23 14:27:54 +0000814
blueswir13cce6242008-09-18 18:27:29 +0000815 fw_cfg = fw_cfg_init(BIOS_CFG_IOPORT, BIOS_CFG_IOPORT + 1, 0, 0);
816 fw_cfg_add_i32(fw_cfg, FW_CFG_ID, 1);
blueswir1905fdcb2008-09-18 18:33:18 +0000817 fw_cfg_add_i64(fw_cfg, FW_CFG_RAM_SIZE, (uint64_t)ram_size);
818 fw_cfg_add_i16(fw_cfg, FW_CFG_MACHINE_ID, hwdef->machine_id);
blueswir1513f7892009-03-08 09:51:29 +0000819 fw_cfg_add_i32(fw_cfg, FW_CFG_KERNEL_ADDR, KERNEL_LOAD_ADDR);
820 fw_cfg_add_i32(fw_cfg, FW_CFG_KERNEL_SIZE, kernel_size);
821 if (kernel_cmdline) {
Blue Swirl9c9b0512010-01-09 21:27:04 +0000822 fw_cfg_add_i32(fw_cfg, FW_CFG_CMDLINE_SIZE,
823 strlen(kernel_cmdline) + 1);
Blue Swirl6bb4ca52009-12-27 18:25:49 +0000824 fw_cfg_add_bytes(fw_cfg, FW_CFG_CMDLINE_DATA,
825 (uint8_t*)strdup(kernel_cmdline),
826 strlen(kernel_cmdline) + 1);
blueswir1513f7892009-03-08 09:51:29 +0000827 } else {
Blue Swirl9c9b0512010-01-09 21:27:04 +0000828 fw_cfg_add_i32(fw_cfg, FW_CFG_CMDLINE_SIZE, 0);
blueswir1513f7892009-03-08 09:51:29 +0000829 }
830 fw_cfg_add_i32(fw_cfg, FW_CFG_INITRD_ADDR, INITRD_LOAD_ADDR);
831 fw_cfg_add_i32(fw_cfg, FW_CFG_INITRD_SIZE, initrd_size);
832 fw_cfg_add_i16(fw_cfg, FW_CFG_BOOT_DEVICE, boot_devices[0]);
Blue Swirl75896902009-08-08 10:44:56 +0000833
834 fw_cfg_add_i16(fw_cfg, FW_CFG_SPARC64_WIDTH, graphic_width);
835 fw_cfg_add_i16(fw_cfg, FW_CFG_SPARC64_HEIGHT, graphic_height);
836 fw_cfg_add_i16(fw_cfg, FW_CFG_SPARC64_DEPTH, graphic_depth);
837
blueswir1513f7892009-03-08 09:51:29 +0000838 qemu_register_boot_set(fw_cfg_boot_set, fw_cfg);
bellard34751872005-07-02 14:31:34 +0000839}
840
blueswir1905fdcb2008-09-18 18:33:18 +0000841enum {
842 sun4u_id = 0,
843 sun4v_id = 64,
blueswir1e87231d2008-09-26 19:48:58 +0000844 niagara_id,
blueswir1905fdcb2008-09-18 18:33:18 +0000845};
846
blueswir1c7ba2182008-07-22 07:07:34 +0000847static const struct hwdef hwdefs[] = {
848 /* Sun4u generic PC-like machine */
849 {
Igor V. Kovalenko5910b042010-05-25 16:08:57 +0400850 .default_cpu_model = "TI UltraSparc IIi",
blueswir1905fdcb2008-09-18 18:33:18 +0000851 .machine_id = sun4u_id,
blueswir1e87231d2008-09-26 19:48:58 +0000852 .prom_addr = 0x1fff0000000ULL,
853 .console_serial_base = 0,
blueswir1c7ba2182008-07-22 07:07:34 +0000854 },
855 /* Sun4v generic PC-like machine */
856 {
857 .default_cpu_model = "Sun UltraSparc T1",
blueswir1905fdcb2008-09-18 18:33:18 +0000858 .machine_id = sun4v_id,
blueswir1e87231d2008-09-26 19:48:58 +0000859 .prom_addr = 0x1fff0000000ULL,
860 .console_serial_base = 0,
861 },
862 /* Sun4v generic Niagara machine */
863 {
864 .default_cpu_model = "Sun UltraSparc T1",
865 .machine_id = niagara_id,
866 .prom_addr = 0xfff0000000ULL,
867 .console_serial_base = 0xfff0c2c000ULL,
blueswir1c7ba2182008-07-22 07:07:34 +0000868 },
869};
870
871/* Sun4u hardware initialisation */
Anthony Liguoric227f092009-10-01 16:12:16 -0500872static void sun4u_init(ram_addr_t RAM_size,
aliguori3023f332009-01-16 19:04:14 +0000873 const char *boot_devices,
blueswir1c7ba2182008-07-22 07:07:34 +0000874 const char *kernel_filename, const char *kernel_cmdline,
875 const char *initrd_filename, const char *cpu_model)
876{
Paul Brookfbe1b592009-05-13 17:56:25 +0100877 sun4uv_init(RAM_size, boot_devices, kernel_filename,
blueswir1c7ba2182008-07-22 07:07:34 +0000878 kernel_cmdline, initrd_filename, cpu_model, &hwdefs[0]);
879}
880
881/* Sun4v hardware initialisation */
Anthony Liguoric227f092009-10-01 16:12:16 -0500882static void sun4v_init(ram_addr_t RAM_size,
aliguori3023f332009-01-16 19:04:14 +0000883 const char *boot_devices,
blueswir1c7ba2182008-07-22 07:07:34 +0000884 const char *kernel_filename, const char *kernel_cmdline,
885 const char *initrd_filename, const char *cpu_model)
886{
Paul Brookfbe1b592009-05-13 17:56:25 +0100887 sun4uv_init(RAM_size, boot_devices, kernel_filename,
blueswir1c7ba2182008-07-22 07:07:34 +0000888 kernel_cmdline, initrd_filename, cpu_model, &hwdefs[1]);
889}
890
blueswir1e87231d2008-09-26 19:48:58 +0000891/* Niagara hardware initialisation */
Anthony Liguoric227f092009-10-01 16:12:16 -0500892static void niagara_init(ram_addr_t RAM_size,
aliguori3023f332009-01-16 19:04:14 +0000893 const char *boot_devices,
blueswir1e87231d2008-09-26 19:48:58 +0000894 const char *kernel_filename, const char *kernel_cmdline,
895 const char *initrd_filename, const char *cpu_model)
896{
Paul Brookfbe1b592009-05-13 17:56:25 +0100897 sun4uv_init(RAM_size, boot_devices, kernel_filename,
blueswir1e87231d2008-09-26 19:48:58 +0000898 kernel_cmdline, initrd_filename, cpu_model, &hwdefs[2]);
899}
900
Anthony Liguorif80f9ec2009-05-20 18:38:09 -0500901static QEMUMachine sun4u_machine = {
blueswir166de7332008-08-12 15:51:09 +0000902 .name = "sun4u",
903 .desc = "Sun4u platform",
904 .init = sun4u_init,
blueswir11bcee012008-11-02 16:51:02 +0000905 .max_cpus = 1, // XXX for now
Anthony Liguori0c257432009-05-21 20:41:01 -0500906 .is_default = 1,
bellard34751872005-07-02 14:31:34 +0000907};
blueswir1c7ba2182008-07-22 07:07:34 +0000908
Anthony Liguorif80f9ec2009-05-20 18:38:09 -0500909static QEMUMachine sun4v_machine = {
blueswir166de7332008-08-12 15:51:09 +0000910 .name = "sun4v",
911 .desc = "Sun4v platform",
912 .init = sun4v_init,
blueswir11bcee012008-11-02 16:51:02 +0000913 .max_cpus = 1, // XXX for now
blueswir1c7ba2182008-07-22 07:07:34 +0000914};
blueswir1e87231d2008-09-26 19:48:58 +0000915
Anthony Liguorif80f9ec2009-05-20 18:38:09 -0500916static QEMUMachine niagara_machine = {
blueswir1e87231d2008-09-26 19:48:58 +0000917 .name = "Niagara",
918 .desc = "Sun4v platform, Niagara",
919 .init = niagara_init,
blueswir11bcee012008-11-02 16:51:02 +0000920 .max_cpus = 1, // XXX for now
blueswir1e87231d2008-09-26 19:48:58 +0000921};
Anthony Liguorif80f9ec2009-05-20 18:38:09 -0500922
923static void sun4u_machine_init(void)
924{
925 qemu_register_machine(&sun4u_machine);
926 qemu_register_machine(&sun4v_machine);
927 qemu_register_machine(&niagara_machine);
928}
929
930machine_init(sun4u_machine_init);