bellard | 3475187 | 2005-07-02 14:31:34 +0000 | [diff] [blame] | 1 | /* |
blueswir1 | c7ba218 | 2008-07-22 07:07:34 +0000 | [diff] [blame] | 2 | * QEMU Sun4u/Sun4v System Emulator |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 3 | * |
bellard | 3475187 | 2005-07-02 14:31:34 +0000 | [diff] [blame] | 4 | * Copyright (c) 2005 Fabrice Bellard |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 5 | * |
bellard | 3475187 | 2005-07-02 14:31:34 +0000 | [diff] [blame] | 6 | * 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 | */ |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 24 | #include "hw.h" |
| 25 | #include "pci.h" |
Michael S. Tsirkin | 18e08a5 | 2009-11-11 14:59:56 +0200 | [diff] [blame] | 26 | #include "apb_pci.h" |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 27 | #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" |
blueswir1 | d2c63fc | 2007-11-14 19:35:16 +0000 | [diff] [blame] | 34 | #include "firmware_abi.h" |
blueswir1 | 3cce624 | 2008-09-18 18:27:29 +0000 | [diff] [blame] | 35 | #include "fw_cfg.h" |
Blue Swirl | 1baffa4 | 2009-07-21 09:58:02 +0000 | [diff] [blame] | 36 | #include "sysbus.h" |
Gerd Hoffmann | 977e124 | 2009-08-20 15:22:20 +0200 | [diff] [blame] | 37 | #include "ide.h" |
Blue Swirl | ca20cf3 | 2009-09-20 14:58:02 +0000 | [diff] [blame] | 38 | #include "loader.h" |
| 39 | #include "elf.h" |
Blue Swirl | 2446333 | 2010-08-24 15:22:24 +0000 | [diff] [blame] | 40 | #include "blockdev.h" |
Richard Henderson | 39186d8 | 2011-08-11 16:07:16 -0700 | [diff] [blame] | 41 | #include "exec-memory.h" |
bellard | 3475187 | 2005-07-02 14:31:34 +0000 | [diff] [blame] | 42 | |
blueswir1 | 9d92659 | 2008-09-22 19:50:28 +0000 | [diff] [blame] | 43 | //#define DEBUG_IRQ |
Blue Swirl | b430a22 | 2009-12-30 12:27:17 +0000 | [diff] [blame] | 44 | //#define DEBUG_EBUS |
Igor V. Kovalenko | 8f4efc5 | 2010-01-28 00:00:53 +0300 | [diff] [blame] | 45 | //#define DEBUG_TIMER |
blueswir1 | 9d92659 | 2008-09-22 19:50:28 +0000 | [diff] [blame] | 46 | |
| 47 | #ifdef DEBUG_IRQ |
Blue Swirl | b430a22 | 2009-12-30 12:27:17 +0000 | [diff] [blame] | 48 | #define CPUIRQ_DPRINTF(fmt, ...) \ |
Blue Swirl | 001faf3 | 2009-05-13 17:53:17 +0000 | [diff] [blame] | 49 | do { printf("CPUIRQ: " fmt , ## __VA_ARGS__); } while (0) |
blueswir1 | 9d92659 | 2008-09-22 19:50:28 +0000 | [diff] [blame] | 50 | #else |
Blue Swirl | b430a22 | 2009-12-30 12:27:17 +0000 | [diff] [blame] | 51 | #define CPUIRQ_DPRINTF(fmt, ...) |
| 52 | #endif |
| 53 | |
| 54 | #ifdef DEBUG_EBUS |
| 55 | #define EBUS_DPRINTF(fmt, ...) \ |
| 56 | do { printf("EBUS: " fmt , ## __VA_ARGS__); } while (0) |
| 57 | #else |
| 58 | #define EBUS_DPRINTF(fmt, ...) |
blueswir1 | 9d92659 | 2008-09-22 19:50:28 +0000 | [diff] [blame] | 59 | #endif |
| 60 | |
Igor V. Kovalenko | 8f4efc5 | 2010-01-28 00:00:53 +0300 | [diff] [blame] | 61 | #ifdef DEBUG_TIMER |
| 62 | #define TIMER_DPRINTF(fmt, ...) \ |
| 63 | do { printf("TIMER: " fmt , ## __VA_ARGS__); } while (0) |
| 64 | #else |
| 65 | #define TIMER_DPRINTF(fmt, ...) |
| 66 | #endif |
| 67 | |
bellard | 8346901 | 2005-07-23 14:27:54 +0000 | [diff] [blame] | 68 | #define KERNEL_LOAD_ADDR 0x00404000 |
| 69 | #define CMDLINE_ADDR 0x003ff000 |
| 70 | #define INITRD_LOAD_ADDR 0x00300000 |
blueswir1 | ac2e9d6 | 2008-04-27 15:29:18 +0000 | [diff] [blame] | 71 | #define PROM_SIZE_MAX (4 * 1024 * 1024) |
blueswir1 | f930d07 | 2007-10-06 11:28:21 +0000 | [diff] [blame] | 72 | #define PROM_VADDR 0x000ffd00000ULL |
bellard | 8346901 | 2005-07-23 14:27:54 +0000 | [diff] [blame] | 73 | #define APB_SPECIAL_BASE 0x1fe00000000ULL |
blueswir1 | f930d07 | 2007-10-06 11:28:21 +0000 | [diff] [blame] | 74 | #define APB_MEM_BASE 0x1ff00000000ULL |
Igor V. Kovalenko | d63baf9 | 2010-05-25 16:09:03 +0400 | [diff] [blame] | 75 | #define APB_PCI_IO_BASE (APB_SPECIAL_BASE + 0x02000000ULL) |
blueswir1 | f930d07 | 2007-10-06 11:28:21 +0000 | [diff] [blame] | 76 | #define PROM_FILENAME "openbios-sparc64" |
bellard | 8346901 | 2005-07-23 14:27:54 +0000 | [diff] [blame] | 77 | #define NVRAM_SIZE 0x2000 |
ths | e4bcb14 | 2007-12-02 04:51:10 +0000 | [diff] [blame] | 78 | #define MAX_IDE_BUS 2 |
blueswir1 | 3cce624 | 2008-09-18 18:27:29 +0000 | [diff] [blame] | 79 | #define BIOS_CFG_IOPORT 0x510 |
Blue Swirl | 7589690 | 2009-08-08 10:44:56 +0000 | [diff] [blame] | 80 | #define FW_CFG_SPARC64_WIDTH (FW_CFG_ARCH_LOCAL + 0x00) |
| 81 | #define FW_CFG_SPARC64_HEIGHT (FW_CFG_ARCH_LOCAL + 0x01) |
| 82 | #define FW_CFG_SPARC64_DEPTH (FW_CFG_ARCH_LOCAL + 0x02) |
bellard | 3475187 | 2005-07-02 14:31:34 +0000 | [diff] [blame] | 83 | |
blueswir1 | 9d92659 | 2008-09-22 19:50:28 +0000 | [diff] [blame] | 84 | #define MAX_PILS 16 |
| 85 | |
blueswir1 | 8fa211e | 2008-12-23 08:47:26 +0000 | [diff] [blame] | 86 | #define TICK_MAX 0x7fffffffffffffffULL |
| 87 | |
blueswir1 | c7ba218 | 2008-07-22 07:07:34 +0000 | [diff] [blame] | 88 | struct hwdef { |
| 89 | const char * const default_cpu_model; |
blueswir1 | 905fdcb | 2008-09-18 18:33:18 +0000 | [diff] [blame] | 90 | uint16_t machine_id; |
blueswir1 | e87231d | 2008-09-26 19:48:58 +0000 | [diff] [blame] | 91 | uint64_t prom_addr; |
| 92 | uint64_t console_serial_base; |
blueswir1 | c7ba218 | 2008-07-22 07:07:34 +0000 | [diff] [blame] | 93 | }; |
| 94 | |
Avi Kivity | c5e6fb7 | 2011-08-08 16:09:22 +0300 | [diff] [blame] | 95 | typedef struct EbusState { |
| 96 | PCIDevice pci_dev; |
| 97 | MemoryRegion bar0; |
| 98 | MemoryRegion bar1; |
| 99 | } EbusState; |
| 100 | |
bellard | 3475187 | 2005-07-02 14:31:34 +0000 | [diff] [blame] | 101 | int DMA_get_channel_mode (int nchan) |
| 102 | { |
| 103 | return 0; |
| 104 | } |
| 105 | int DMA_read_memory (int nchan, void *buf, int pos, int size) |
| 106 | { |
| 107 | return 0; |
| 108 | } |
| 109 | int DMA_write_memory (int nchan, void *buf, int pos, int size) |
| 110 | { |
| 111 | return 0; |
| 112 | } |
| 113 | void DMA_hold_DREQ (int nchan) {} |
| 114 | void DMA_release_DREQ (int nchan) {} |
| 115 | void DMA_schedule(int nchan) {} |
Blue Swirl | 4556bd8 | 2010-05-22 08:00:52 +0000 | [diff] [blame] | 116 | |
| 117 | void DMA_init(int high_page_enable, qemu_irq *cpu_request_exit) |
| 118 | { |
| 119 | } |
| 120 | |
bellard | 3475187 | 2005-07-02 14:31:34 +0000 | [diff] [blame] | 121 | void DMA_register_channel (int nchan, |
| 122 | DMA_transfer_handler transfer_handler, |
| 123 | void *opaque) |
| 124 | { |
| 125 | } |
| 126 | |
blueswir1 | 513f789 | 2009-03-08 09:51:29 +0000 | [diff] [blame] | 127 | static int fw_cfg_boot_set(void *opaque, const char *boot_device) |
blueswir1 | 8186457 | 2008-06-20 16:25:56 +0000 | [diff] [blame] | 128 | { |
blueswir1 | 513f789 | 2009-03-08 09:51:29 +0000 | [diff] [blame] | 129 | fw_cfg_add_i16(opaque, FW_CFG_BOOT_DEVICE, boot_device[0]); |
blueswir1 | 8186457 | 2008-06-20 16:25:56 +0000 | [diff] [blame] | 130 | return 0; |
| 131 | } |
| 132 | |
Blue Swirl | 43a3470 | 2010-02-07 08:05:03 +0000 | [diff] [blame] | 133 | static int sun4u_NVRAM_set_params(M48t59State *nvram, uint16_t NVRAM_size, |
| 134 | const char *arch, ram_addr_t RAM_size, |
| 135 | const char *boot_devices, |
| 136 | uint32_t kernel_image, uint32_t kernel_size, |
| 137 | const char *cmdline, |
| 138 | uint32_t initrd_image, uint32_t initrd_size, |
| 139 | uint32_t NVRAM_image, |
| 140 | int width, int height, int depth, |
| 141 | const uint8_t *macaddr) |
bellard | 3475187 | 2005-07-02 14:31:34 +0000 | [diff] [blame] | 142 | { |
blueswir1 | 6650860 | 2007-05-01 14:16:52 +0000 | [diff] [blame] | 143 | unsigned int i; |
| 144 | uint32_t start, end; |
blueswir1 | d2c63fc | 2007-11-14 19:35:16 +0000 | [diff] [blame] | 145 | uint8_t image[0x1ff0]; |
blueswir1 | d2c63fc | 2007-11-14 19:35:16 +0000 | [diff] [blame] | 146 | struct OpenBIOS_nvpart_v1 *part_header; |
bellard | 3475187 | 2005-07-02 14:31:34 +0000 | [diff] [blame] | 147 | |
blueswir1 | d2c63fc | 2007-11-14 19:35:16 +0000 | [diff] [blame] | 148 | memset(image, '\0', sizeof(image)); |
| 149 | |
blueswir1 | 513f789 | 2009-03-08 09:51:29 +0000 | [diff] [blame] | 150 | start = 0; |
bellard | 3475187 | 2005-07-02 14:31:34 +0000 | [diff] [blame] | 151 | |
blueswir1 | 6650860 | 2007-05-01 14:16:52 +0000 | [diff] [blame] | 152 | // OpenBIOS nvram variables |
| 153 | // Variable partition |
blueswir1 | d2c63fc | 2007-11-14 19:35:16 +0000 | [diff] [blame] | 154 | part_header = (struct OpenBIOS_nvpart_v1 *)&image[start]; |
| 155 | part_header->signature = OPENBIOS_PART_SYSTEM; |
blueswir1 | 363a37d | 2008-08-21 17:58:08 +0000 | [diff] [blame] | 156 | pstrcpy(part_header->name, sizeof(part_header->name), "system"); |
blueswir1 | 6650860 | 2007-05-01 14:16:52 +0000 | [diff] [blame] | 157 | |
blueswir1 | d2c63fc | 2007-11-14 19:35:16 +0000 | [diff] [blame] | 158 | end = start + sizeof(struct OpenBIOS_nvpart_v1); |
blueswir1 | 6650860 | 2007-05-01 14:16:52 +0000 | [diff] [blame] | 159 | for (i = 0; i < nb_prom_envs; i++) |
blueswir1 | d2c63fc | 2007-11-14 19:35:16 +0000 | [diff] [blame] | 160 | end = OpenBIOS_set_var(image, end, prom_envs[i]); |
blueswir1 | 6650860 | 2007-05-01 14:16:52 +0000 | [diff] [blame] | 161 | |
blueswir1 | d2c63fc | 2007-11-14 19:35:16 +0000 | [diff] [blame] | 162 | // End marker |
| 163 | image[end++] = '\0'; |
| 164 | |
blueswir1 | 6650860 | 2007-05-01 14:16:52 +0000 | [diff] [blame] | 165 | end = start + ((end - start + 15) & ~15); |
blueswir1 | d2c63fc | 2007-11-14 19:35:16 +0000 | [diff] [blame] | 166 | OpenBIOS_finish_partition(part_header, end - start); |
blueswir1 | 6650860 | 2007-05-01 14:16:52 +0000 | [diff] [blame] | 167 | |
| 168 | // free partition |
| 169 | start = end; |
blueswir1 | d2c63fc | 2007-11-14 19:35:16 +0000 | [diff] [blame] | 170 | part_header = (struct OpenBIOS_nvpart_v1 *)&image[start]; |
| 171 | part_header->signature = OPENBIOS_PART_FREE; |
blueswir1 | 363a37d | 2008-08-21 17:58:08 +0000 | [diff] [blame] | 172 | pstrcpy(part_header->name, sizeof(part_header->name), "free"); |
blueswir1 | 6650860 | 2007-05-01 14:16:52 +0000 | [diff] [blame] | 173 | |
| 174 | end = 0x1fd0; |
blueswir1 | d2c63fc | 2007-11-14 19:35:16 +0000 | [diff] [blame] | 175 | OpenBIOS_finish_partition(part_header, end - start); |
| 176 | |
blueswir1 | 0d31cb9 | 2008-07-15 14:54:01 +0000 | [diff] [blame] | 177 | Sun_init_header((struct Sun_nvram *)&image[0x1fd8], macaddr, 0x80); |
| 178 | |
blueswir1 | d2c63fc | 2007-11-14 19:35:16 +0000 | [diff] [blame] | 179 | for (i = 0; i < sizeof(image); i++) |
| 180 | m48t59_write(nvram, i, image[i]); |
blueswir1 | 6650860 | 2007-05-01 14:16:52 +0000 | [diff] [blame] | 181 | |
bellard | 8346901 | 2005-07-23 14:27:54 +0000 | [diff] [blame] | 182 | return 0; |
bellard | 3475187 | 2005-07-02 14:31:34 +0000 | [diff] [blame] | 183 | } |
Blue Swirl | 636aa70 | 2009-07-21 10:49:47 +0000 | [diff] [blame] | 184 | static unsigned long sun4u_load_kernel(const char *kernel_filename, |
| 185 | const char *initrd_filename, |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 186 | ram_addr_t RAM_size, long *initrd_size) |
Blue Swirl | 636aa70 | 2009-07-21 10:49:47 +0000 | [diff] [blame] | 187 | { |
| 188 | int linux_boot; |
| 189 | unsigned int i; |
| 190 | long kernel_size; |
Blue Swirl | 6908d9c | 2010-01-24 21:18:00 +0000 | [diff] [blame] | 191 | uint8_t *ptr; |
Blue Swirl | 636aa70 | 2009-07-21 10:49:47 +0000 | [diff] [blame] | 192 | |
| 193 | linux_boot = (kernel_filename != NULL); |
| 194 | |
| 195 | kernel_size = 0; |
| 196 | if (linux_boot) { |
Blue Swirl | ca20cf3 | 2009-09-20 14:58:02 +0000 | [diff] [blame] | 197 | int bswap_needed; |
| 198 | |
| 199 | #ifdef BSWAP_NEEDED |
| 200 | bswap_needed = 1; |
| 201 | #else |
| 202 | bswap_needed = 0; |
| 203 | #endif |
Aurelien Jarno | 409dbce | 2010-03-14 21:20:59 +0100 | [diff] [blame] | 204 | kernel_size = load_elf(kernel_filename, NULL, NULL, NULL, |
| 205 | NULL, NULL, 1, ELF_MACHINE, 0); |
Blue Swirl | 636aa70 | 2009-07-21 10:49:47 +0000 | [diff] [blame] | 206 | if (kernel_size < 0) |
| 207 | kernel_size = load_aout(kernel_filename, KERNEL_LOAD_ADDR, |
Blue Swirl | ca20cf3 | 2009-09-20 14:58:02 +0000 | [diff] [blame] | 208 | RAM_size - KERNEL_LOAD_ADDR, bswap_needed, |
| 209 | TARGET_PAGE_SIZE); |
Blue Swirl | 636aa70 | 2009-07-21 10:49:47 +0000 | [diff] [blame] | 210 | if (kernel_size < 0) |
| 211 | kernel_size = load_image_targphys(kernel_filename, |
| 212 | KERNEL_LOAD_ADDR, |
| 213 | RAM_size - KERNEL_LOAD_ADDR); |
| 214 | if (kernel_size < 0) { |
| 215 | fprintf(stderr, "qemu: could not load kernel '%s'\n", |
| 216 | kernel_filename); |
| 217 | exit(1); |
| 218 | } |
| 219 | |
| 220 | /* load initrd */ |
| 221 | *initrd_size = 0; |
| 222 | if (initrd_filename) { |
| 223 | *initrd_size = load_image_targphys(initrd_filename, |
| 224 | INITRD_LOAD_ADDR, |
| 225 | RAM_size - INITRD_LOAD_ADDR); |
| 226 | if (*initrd_size < 0) { |
| 227 | fprintf(stderr, "qemu: could not load initial ram disk '%s'\n", |
| 228 | initrd_filename); |
| 229 | exit(1); |
| 230 | } |
| 231 | } |
| 232 | if (*initrd_size > 0) { |
| 233 | for (i = 0; i < 64 * TARGET_PAGE_SIZE; i += TARGET_PAGE_SIZE) { |
Blue Swirl | 6908d9c | 2010-01-24 21:18:00 +0000 | [diff] [blame] | 234 | ptr = rom_ptr(KERNEL_LOAD_ADDR + i); |
| 235 | if (ldl_p(ptr + 8) == 0x48647253) { /* HdrS */ |
| 236 | stl_p(ptr + 24, INITRD_LOAD_ADDR + KERNEL_LOAD_ADDR - 0x4000); |
| 237 | stl_p(ptr + 28, *initrd_size); |
Blue Swirl | 636aa70 | 2009-07-21 10:49:47 +0000 | [diff] [blame] | 238 | break; |
| 239 | } |
| 240 | } |
| 241 | } |
| 242 | } |
| 243 | return kernel_size; |
| 244 | } |
bellard | 3475187 | 2005-07-02 14:31:34 +0000 | [diff] [blame] | 245 | |
blueswir1 | 9d92659 | 2008-09-22 19:50:28 +0000 | [diff] [blame] | 246 | void cpu_check_irqs(CPUState *env) |
| 247 | { |
Igor V. Kovalenko | d532b26 | 2010-01-07 23:28:31 +0300 | [diff] [blame] | 248 | uint32_t pil = env->pil_in | |
| 249 | (env->softint & ~(SOFTINT_TIMER | SOFTINT_STIMER)); |
blueswir1 | 9d92659 | 2008-09-22 19:50:28 +0000 | [diff] [blame] | 250 | |
Igor V. Kovalenko | d532b26 | 2010-01-07 23:28:31 +0300 | [diff] [blame] | 251 | /* check if TM or SM in SOFTINT are set |
| 252 | setting these also causes interrupt 14 */ |
| 253 | if (env->softint & (SOFTINT_TIMER | SOFTINT_STIMER)) { |
| 254 | pil |= 1 << 14; |
| 255 | } |
| 256 | |
Artyom Tarasenko | 9f94778 | 2011-07-25 19:22:38 +0200 | [diff] [blame] | 257 | /* The bit corresponding to psrpil is (1<< psrpil), the next bit |
| 258 | is (2 << psrpil). */ |
| 259 | if (pil < (2 << env->psrpil)){ |
Igor V. Kovalenko | d532b26 | 2010-01-07 23:28:31 +0300 | [diff] [blame] | 260 | if (env->interrupt_request & CPU_INTERRUPT_HARD) { |
| 261 | CPUIRQ_DPRINTF("Reset CPU IRQ (current interrupt %x)\n", |
| 262 | env->interrupt_index); |
| 263 | env->interrupt_index = 0; |
| 264 | cpu_reset_interrupt(env, CPU_INTERRUPT_HARD); |
| 265 | } |
| 266 | return; |
| 267 | } |
| 268 | |
| 269 | if (cpu_interrupts_enabled(env)) { |
| 270 | |
blueswir1 | 9d92659 | 2008-09-22 19:50:28 +0000 | [diff] [blame] | 271 | unsigned int i; |
| 272 | |
Igor V. Kovalenko | d532b26 | 2010-01-07 23:28:31 +0300 | [diff] [blame] | 273 | for (i = 15; i > env->psrpil; i--) { |
blueswir1 | 9d92659 | 2008-09-22 19:50:28 +0000 | [diff] [blame] | 274 | if (pil & (1 << i)) { |
| 275 | int old_interrupt = env->interrupt_index; |
Igor V. Kovalenko | d532b26 | 2010-01-07 23:28:31 +0300 | [diff] [blame] | 276 | int new_interrupt = TT_EXTINT | i; |
blueswir1 | 9d92659 | 2008-09-22 19:50:28 +0000 | [diff] [blame] | 277 | |
Igor V. Kovalenko | d532b26 | 2010-01-07 23:28:31 +0300 | [diff] [blame] | 278 | if (env->tl > 0 && cpu_tsptr(env)->tt > new_interrupt) { |
| 279 | CPUIRQ_DPRINTF("Not setting CPU IRQ: TL=%d " |
| 280 | "current %x >= pending %x\n", |
| 281 | env->tl, cpu_tsptr(env)->tt, new_interrupt); |
| 282 | } else if (old_interrupt != new_interrupt) { |
| 283 | env->interrupt_index = new_interrupt; |
| 284 | CPUIRQ_DPRINTF("Set CPU IRQ %d old=%x new=%x\n", i, |
| 285 | old_interrupt, new_interrupt); |
blueswir1 | 9d92659 | 2008-09-22 19:50:28 +0000 | [diff] [blame] | 286 | cpu_interrupt(env, CPU_INTERRUPT_HARD); |
| 287 | } |
| 288 | break; |
| 289 | } |
| 290 | } |
Artyom Tarasenko | 9f94778 | 2011-07-25 19:22:38 +0200 | [diff] [blame] | 291 | } else if (env->interrupt_request & CPU_INTERRUPT_HARD) { |
Igor V. Kovalenko | d532b26 | 2010-01-07 23:28:31 +0300 | [diff] [blame] | 292 | CPUIRQ_DPRINTF("Interrupts disabled, pil=%08x pil_in=%08x softint=%08x " |
| 293 | "current interrupt %x\n", |
| 294 | pil, env->pil_in, env->softint, env->interrupt_index); |
Artyom Tarasenko | 9f94778 | 2011-07-25 19:22:38 +0200 | [diff] [blame] | 295 | env->interrupt_index = 0; |
| 296 | cpu_reset_interrupt(env, CPU_INTERRUPT_HARD); |
blueswir1 | 9d92659 | 2008-09-22 19:50:28 +0000 | [diff] [blame] | 297 | } |
| 298 | } |
| 299 | |
Igor V. Kovalenko | 8f4efc5 | 2010-01-28 00:00:53 +0300 | [diff] [blame] | 300 | static void cpu_kick_irq(CPUState *env) |
| 301 | { |
| 302 | env->halted = 0; |
| 303 | cpu_check_irqs(env); |
Paolo Bonzini | 94ad5b0 | 2011-03-12 17:43:57 +0100 | [diff] [blame] | 304 | qemu_cpu_kick(env); |
Igor V. Kovalenko | 8f4efc5 | 2010-01-28 00:00:53 +0300 | [diff] [blame] | 305 | } |
| 306 | |
blueswir1 | 9d92659 | 2008-09-22 19:50:28 +0000 | [diff] [blame] | 307 | static void cpu_set_irq(void *opaque, int irq, int level) |
| 308 | { |
| 309 | CPUState *env = opaque; |
| 310 | |
| 311 | if (level) { |
Blue Swirl | b430a22 | 2009-12-30 12:27:17 +0000 | [diff] [blame] | 312 | CPUIRQ_DPRINTF("Raise CPU IRQ %d\n", irq); |
blueswir1 | 9d92659 | 2008-09-22 19:50:28 +0000 | [diff] [blame] | 313 | env->pil_in |= 1 << irq; |
Paolo Bonzini | 94ad5b0 | 2011-03-12 17:43:57 +0100 | [diff] [blame] | 314 | cpu_kick_irq(env); |
blueswir1 | 9d92659 | 2008-09-22 19:50:28 +0000 | [diff] [blame] | 315 | } else { |
Blue Swirl | b430a22 | 2009-12-30 12:27:17 +0000 | [diff] [blame] | 316 | CPUIRQ_DPRINTF("Lower CPU IRQ %d\n", irq); |
blueswir1 | 9d92659 | 2008-09-22 19:50:28 +0000 | [diff] [blame] | 317 | env->pil_in &= ~(1 << irq); |
| 318 | cpu_check_irqs(env); |
| 319 | } |
| 320 | } |
| 321 | |
blueswir1 | e87231d | 2008-09-26 19:48:58 +0000 | [diff] [blame] | 322 | typedef struct ResetData { |
| 323 | CPUState *env; |
Blue Swirl | 44a9935 | 2009-11-07 10:05:03 +0000 | [diff] [blame] | 324 | uint64_t prom_addr; |
blueswir1 | e87231d | 2008-09-26 19:48:58 +0000 | [diff] [blame] | 325 | } ResetData; |
| 326 | |
Igor V. Kovalenko | 8f4efc5 | 2010-01-28 00:00:53 +0300 | [diff] [blame] | 327 | void cpu_put_timer(QEMUFile *f, CPUTimer *s) |
| 328 | { |
| 329 | qemu_put_be32s(f, &s->frequency); |
| 330 | qemu_put_be32s(f, &s->disabled); |
| 331 | qemu_put_be64s(f, &s->disabled_mask); |
| 332 | qemu_put_sbe64s(f, &s->clock_offset); |
| 333 | |
| 334 | qemu_put_timer(f, s->qtimer); |
| 335 | } |
| 336 | |
| 337 | void cpu_get_timer(QEMUFile *f, CPUTimer *s) |
| 338 | { |
| 339 | qemu_get_be32s(f, &s->frequency); |
| 340 | qemu_get_be32s(f, &s->disabled); |
| 341 | qemu_get_be64s(f, &s->disabled_mask); |
| 342 | qemu_get_sbe64s(f, &s->clock_offset); |
| 343 | |
| 344 | qemu_get_timer(f, s->qtimer); |
| 345 | } |
| 346 | |
| 347 | static CPUTimer* cpu_timer_create(const char* name, CPUState *env, |
| 348 | QEMUBHFunc *cb, uint32_t frequency, |
| 349 | uint64_t disabled_mask) |
| 350 | { |
Anthony Liguori | 7267c09 | 2011-08-20 22:09:37 -0500 | [diff] [blame] | 351 | CPUTimer *timer = g_malloc0(sizeof (CPUTimer)); |
Igor V. Kovalenko | 8f4efc5 | 2010-01-28 00:00:53 +0300 | [diff] [blame] | 352 | |
| 353 | timer->name = name; |
| 354 | timer->frequency = frequency; |
| 355 | timer->disabled_mask = disabled_mask; |
| 356 | |
| 357 | timer->disabled = 1; |
Paolo Bonzini | 7447545 | 2011-03-11 16:47:48 +0100 | [diff] [blame] | 358 | timer->clock_offset = qemu_get_clock_ns(vm_clock); |
Igor V. Kovalenko | 8f4efc5 | 2010-01-28 00:00:53 +0300 | [diff] [blame] | 359 | |
Paolo Bonzini | 7447545 | 2011-03-11 16:47:48 +0100 | [diff] [blame] | 360 | timer->qtimer = qemu_new_timer_ns(vm_clock, cb, env); |
Igor V. Kovalenko | 8f4efc5 | 2010-01-28 00:00:53 +0300 | [diff] [blame] | 361 | |
| 362 | return timer; |
| 363 | } |
| 364 | |
| 365 | static void cpu_timer_reset(CPUTimer *timer) |
| 366 | { |
| 367 | timer->disabled = 1; |
Paolo Bonzini | 7447545 | 2011-03-11 16:47:48 +0100 | [diff] [blame] | 368 | timer->clock_offset = qemu_get_clock_ns(vm_clock); |
Igor V. Kovalenko | 8f4efc5 | 2010-01-28 00:00:53 +0300 | [diff] [blame] | 369 | |
| 370 | qemu_del_timer(timer->qtimer); |
| 371 | } |
| 372 | |
bellard | c68ea70 | 2005-11-21 23:33:12 +0000 | [diff] [blame] | 373 | static void main_cpu_reset(void *opaque) |
| 374 | { |
blueswir1 | e87231d | 2008-09-26 19:48:58 +0000 | [diff] [blame] | 375 | ResetData *s = (ResetData *)opaque; |
| 376 | CPUState *env = s->env; |
Blue Swirl | 44a9935 | 2009-11-07 10:05:03 +0000 | [diff] [blame] | 377 | static unsigned int nr_resets; |
blueswir1 | 20c9f09 | 2007-05-25 18:50:28 +0000 | [diff] [blame] | 378 | |
bellard | c68ea70 | 2005-11-21 23:33:12 +0000 | [diff] [blame] | 379 | cpu_reset(env); |
Igor V. Kovalenko | 8f4efc5 | 2010-01-28 00:00:53 +0300 | [diff] [blame] | 380 | |
| 381 | cpu_timer_reset(env->tick); |
| 382 | cpu_timer_reset(env->stick); |
| 383 | cpu_timer_reset(env->hstick); |
| 384 | |
blueswir1 | e87231d | 2008-09-26 19:48:58 +0000 | [diff] [blame] | 385 | env->gregs[1] = 0; // Memory start |
| 386 | env->gregs[2] = ram_size; // Memory size |
| 387 | env->gregs[3] = 0; // Machine description XXX |
Blue Swirl | 44a9935 | 2009-11-07 10:05:03 +0000 | [diff] [blame] | 388 | if (nr_resets++ == 0) { |
| 389 | /* Power on reset */ |
| 390 | env->pc = s->prom_addr + 0x20ULL; |
| 391 | } else { |
| 392 | env->pc = s->prom_addr + 0x40ULL; |
| 393 | } |
blueswir1 | e87231d | 2008-09-26 19:48:58 +0000 | [diff] [blame] | 394 | env->npc = env->pc + 4; |
blueswir1 | 20c9f09 | 2007-05-25 18:50:28 +0000 | [diff] [blame] | 395 | } |
| 396 | |
blueswir1 | 2254876 | 2008-05-10 10:12:00 +0000 | [diff] [blame] | 397 | static void tick_irq(void *opaque) |
blueswir1 | 20c9f09 | 2007-05-25 18:50:28 +0000 | [diff] [blame] | 398 | { |
| 399 | CPUState *env = opaque; |
| 400 | |
Igor V. Kovalenko | 8f4efc5 | 2010-01-28 00:00:53 +0300 | [diff] [blame] | 401 | CPUTimer* timer = env->tick; |
| 402 | |
| 403 | if (timer->disabled) { |
| 404 | CPUIRQ_DPRINTF("tick_irq: softint disabled\n"); |
| 405 | return; |
| 406 | } else { |
| 407 | CPUIRQ_DPRINTF("tick: fire\n"); |
blueswir1 | 8fa211e | 2008-12-23 08:47:26 +0000 | [diff] [blame] | 408 | } |
Igor V. Kovalenko | 8f4efc5 | 2010-01-28 00:00:53 +0300 | [diff] [blame] | 409 | |
| 410 | env->softint |= SOFTINT_TIMER; |
| 411 | cpu_kick_irq(env); |
blueswir1 | 20c9f09 | 2007-05-25 18:50:28 +0000 | [diff] [blame] | 412 | } |
| 413 | |
blueswir1 | 2254876 | 2008-05-10 10:12:00 +0000 | [diff] [blame] | 414 | static void stick_irq(void *opaque) |
blueswir1 | 20c9f09 | 2007-05-25 18:50:28 +0000 | [diff] [blame] | 415 | { |
| 416 | CPUState *env = opaque; |
| 417 | |
Igor V. Kovalenko | 8f4efc5 | 2010-01-28 00:00:53 +0300 | [diff] [blame] | 418 | CPUTimer* timer = env->stick; |
| 419 | |
| 420 | if (timer->disabled) { |
| 421 | CPUIRQ_DPRINTF("stick_irq: softint disabled\n"); |
| 422 | return; |
| 423 | } else { |
| 424 | CPUIRQ_DPRINTF("stick: fire\n"); |
blueswir1 | 8fa211e | 2008-12-23 08:47:26 +0000 | [diff] [blame] | 425 | } |
Igor V. Kovalenko | 8f4efc5 | 2010-01-28 00:00:53 +0300 | [diff] [blame] | 426 | |
| 427 | env->softint |= SOFTINT_STIMER; |
| 428 | cpu_kick_irq(env); |
blueswir1 | 20c9f09 | 2007-05-25 18:50:28 +0000 | [diff] [blame] | 429 | } |
| 430 | |
blueswir1 | 2254876 | 2008-05-10 10:12:00 +0000 | [diff] [blame] | 431 | static void hstick_irq(void *opaque) |
blueswir1 | 20c9f09 | 2007-05-25 18:50:28 +0000 | [diff] [blame] | 432 | { |
| 433 | CPUState *env = opaque; |
| 434 | |
Igor V. Kovalenko | 8f4efc5 | 2010-01-28 00:00:53 +0300 | [diff] [blame] | 435 | CPUTimer* timer = env->hstick; |
| 436 | |
| 437 | if (timer->disabled) { |
| 438 | CPUIRQ_DPRINTF("hstick_irq: softint disabled\n"); |
| 439 | return; |
| 440 | } else { |
| 441 | CPUIRQ_DPRINTF("hstick: fire\n"); |
blueswir1 | 8fa211e | 2008-12-23 08:47:26 +0000 | [diff] [blame] | 442 | } |
Igor V. Kovalenko | 8f4efc5 | 2010-01-28 00:00:53 +0300 | [diff] [blame] | 443 | |
| 444 | env->softint |= SOFTINT_STIMER; |
| 445 | cpu_kick_irq(env); |
bellard | c68ea70 | 2005-11-21 23:33:12 +0000 | [diff] [blame] | 446 | } |
| 447 | |
Igor V. Kovalenko | 8f4efc5 | 2010-01-28 00:00:53 +0300 | [diff] [blame] | 448 | static int64_t cpu_to_timer_ticks(int64_t cpu_ticks, uint32_t frequency) |
blueswir1 | f4b1a84 | 2008-10-03 19:04:42 +0000 | [diff] [blame] | 449 | { |
Igor V. Kovalenko | 8f4efc5 | 2010-01-28 00:00:53 +0300 | [diff] [blame] | 450 | return muldiv64(cpu_ticks, get_ticks_per_sec(), frequency); |
blueswir1 | f4b1a84 | 2008-10-03 19:04:42 +0000 | [diff] [blame] | 451 | } |
| 452 | |
Igor V. Kovalenko | 8f4efc5 | 2010-01-28 00:00:53 +0300 | [diff] [blame] | 453 | static uint64_t timer_to_cpu_ticks(int64_t timer_ticks, uint32_t frequency) |
blueswir1 | f4b1a84 | 2008-10-03 19:04:42 +0000 | [diff] [blame] | 454 | { |
Igor V. Kovalenko | 8f4efc5 | 2010-01-28 00:00:53 +0300 | [diff] [blame] | 455 | return muldiv64(timer_ticks, frequency, get_ticks_per_sec()); |
blueswir1 | f4b1a84 | 2008-10-03 19:04:42 +0000 | [diff] [blame] | 456 | } |
| 457 | |
Igor V. Kovalenko | 8f4efc5 | 2010-01-28 00:00:53 +0300 | [diff] [blame] | 458 | void cpu_tick_set_count(CPUTimer *timer, uint64_t count) |
blueswir1 | f4b1a84 | 2008-10-03 19:04:42 +0000 | [diff] [blame] | 459 | { |
Igor V. Kovalenko | 8f4efc5 | 2010-01-28 00:00:53 +0300 | [diff] [blame] | 460 | uint64_t real_count = count & ~timer->disabled_mask; |
| 461 | uint64_t disabled_bit = count & timer->disabled_mask; |
| 462 | |
Paolo Bonzini | 7447545 | 2011-03-11 16:47:48 +0100 | [diff] [blame] | 463 | int64_t vm_clock_offset = qemu_get_clock_ns(vm_clock) - |
Igor V. Kovalenko | 8f4efc5 | 2010-01-28 00:00:53 +0300 | [diff] [blame] | 464 | cpu_to_timer_ticks(real_count, timer->frequency); |
| 465 | |
| 466 | TIMER_DPRINTF("%s set_count count=0x%016lx (%s) p=%p\n", |
| 467 | timer->name, real_count, |
| 468 | timer->disabled?"disabled":"enabled", timer); |
| 469 | |
| 470 | timer->disabled = disabled_bit ? 1 : 0; |
| 471 | timer->clock_offset = vm_clock_offset; |
| 472 | } |
| 473 | |
| 474 | uint64_t cpu_tick_get_count(CPUTimer *timer) |
| 475 | { |
| 476 | uint64_t real_count = timer_to_cpu_ticks( |
Paolo Bonzini | 7447545 | 2011-03-11 16:47:48 +0100 | [diff] [blame] | 477 | qemu_get_clock_ns(vm_clock) - timer->clock_offset, |
Igor V. Kovalenko | 8f4efc5 | 2010-01-28 00:00:53 +0300 | [diff] [blame] | 478 | timer->frequency); |
| 479 | |
| 480 | TIMER_DPRINTF("%s get_count count=0x%016lx (%s) p=%p\n", |
| 481 | timer->name, real_count, |
| 482 | timer->disabled?"disabled":"enabled", timer); |
| 483 | |
| 484 | if (timer->disabled) |
| 485 | real_count |= timer->disabled_mask; |
| 486 | |
| 487 | return real_count; |
| 488 | } |
| 489 | |
| 490 | void cpu_tick_set_limit(CPUTimer *timer, uint64_t limit) |
| 491 | { |
Paolo Bonzini | 7447545 | 2011-03-11 16:47:48 +0100 | [diff] [blame] | 492 | int64_t now = qemu_get_clock_ns(vm_clock); |
Igor V. Kovalenko | 8f4efc5 | 2010-01-28 00:00:53 +0300 | [diff] [blame] | 493 | |
| 494 | uint64_t real_limit = limit & ~timer->disabled_mask; |
| 495 | timer->disabled = (limit & timer->disabled_mask) ? 1 : 0; |
| 496 | |
| 497 | int64_t expires = cpu_to_timer_ticks(real_limit, timer->frequency) + |
| 498 | timer->clock_offset; |
| 499 | |
| 500 | if (expires < now) { |
| 501 | expires = now + 1; |
| 502 | } |
| 503 | |
| 504 | TIMER_DPRINTF("%s set_limit limit=0x%016lx (%s) p=%p " |
| 505 | "called with limit=0x%016lx at 0x%016lx (delta=0x%016lx)\n", |
| 506 | timer->name, real_limit, |
| 507 | timer->disabled?"disabled":"enabled", |
| 508 | timer, limit, |
| 509 | timer_to_cpu_ticks(now - timer->clock_offset, |
| 510 | timer->frequency), |
| 511 | timer_to_cpu_ticks(expires - now, timer->frequency)); |
| 512 | |
| 513 | if (!real_limit) { |
| 514 | TIMER_DPRINTF("%s set_limit limit=ZERO - not starting timer\n", |
| 515 | timer->name); |
| 516 | qemu_del_timer(timer->qtimer); |
| 517 | } else if (timer->disabled) { |
| 518 | qemu_del_timer(timer->qtimer); |
| 519 | } else { |
| 520 | qemu_mod_timer(timer->qtimer, expires); |
| 521 | } |
blueswir1 | f4b1a84 | 2008-10-03 19:04:42 +0000 | [diff] [blame] | 522 | } |
| 523 | |
Blue Swirl | 1387fe4 | 2009-08-28 19:04:13 +0000 | [diff] [blame] | 524 | static void dummy_isa_irq_handler(void *opaque, int n, int level) |
| 525 | { |
| 526 | } |
| 527 | |
blueswir1 | c190ea0 | 2009-01-10 11:33:32 +0000 | [diff] [blame] | 528 | /* EBUS (Eight bit bus) bridge */ |
| 529 | static void |
| 530 | pci_ebus_init(PCIBus *bus, int devfn) |
| 531 | { |
Blue Swirl | 1387fe4 | 2009-08-28 19:04:13 +0000 | [diff] [blame] | 532 | qemu_irq *isa_irq; |
| 533 | |
Blue Swirl | 53e3c4f | 2009-07-12 08:54:49 +0000 | [diff] [blame] | 534 | pci_create_simple(bus, devfn, "ebus"); |
Blue Swirl | 1387fe4 | 2009-08-28 19:04:13 +0000 | [diff] [blame] | 535 | isa_irq = qemu_allocate_irqs(dummy_isa_irq_handler, NULL, 16); |
| 536 | isa_bus_irqs(isa_irq); |
Blue Swirl | 53e3c4f | 2009-07-12 08:54:49 +0000 | [diff] [blame] | 537 | } |
blueswir1 | c190ea0 | 2009-01-10 11:33:32 +0000 | [diff] [blame] | 538 | |
Gerd Hoffmann | 81a322d | 2009-08-14 10:36:05 +0200 | [diff] [blame] | 539 | static int |
Avi Kivity | c5e6fb7 | 2011-08-08 16:09:22 +0300 | [diff] [blame] | 540 | pci_ebus_init1(PCIDevice *pci_dev) |
Blue Swirl | 53e3c4f | 2009-07-12 08:54:49 +0000 | [diff] [blame] | 541 | { |
Avi Kivity | c5e6fb7 | 2011-08-08 16:09:22 +0300 | [diff] [blame] | 542 | EbusState *s = DO_UPCAST(EbusState, pci_dev, pci_dev); |
Blue Swirl | 0c5b8d8 | 2009-08-13 17:51:46 +0000 | [diff] [blame] | 543 | |
Richard Henderson | c2d0d01 | 2011-08-10 15:28:11 -0700 | [diff] [blame] | 544 | isa_bus_new(&pci_dev->qdev, pci_address_space_io(pci_dev)); |
blueswir1 | c190ea0 | 2009-01-10 11:33:32 +0000 | [diff] [blame] | 545 | |
Avi Kivity | c5e6fb7 | 2011-08-08 16:09:22 +0300 | [diff] [blame] | 546 | pci_dev->config[0x04] = 0x06; // command = bus master, pci mem |
| 547 | pci_dev->config[0x05] = 0x00; |
| 548 | pci_dev->config[0x06] = 0xa0; // status = fast back-to-back, 66MHz, no error |
| 549 | pci_dev->config[0x07] = 0x03; // status = medium devsel |
| 550 | pci_dev->config[0x09] = 0x00; // programming i/f |
| 551 | pci_dev->config[0x0D] = 0x0a; // latency_timer |
| 552 | |
| 553 | isa_mmio_setup(&s->bar0, 0x1000000); |
Avi Kivity | e824b2c | 2011-08-08 16:09:31 +0300 | [diff] [blame] | 554 | pci_register_bar(pci_dev, 0, PCI_BASE_ADDRESS_SPACE_MEMORY, &s->bar0); |
Avi Kivity | c5e6fb7 | 2011-08-08 16:09:22 +0300 | [diff] [blame] | 555 | isa_mmio_setup(&s->bar1, 0x800000); |
Avi Kivity | e824b2c | 2011-08-08 16:09:31 +0300 | [diff] [blame] | 556 | pci_register_bar(pci_dev, 1, PCI_BASE_ADDRESS_SPACE_MEMORY, &s->bar1); |
Gerd Hoffmann | 81a322d | 2009-08-14 10:36:05 +0200 | [diff] [blame] | 557 | return 0; |
blueswir1 | c190ea0 | 2009-01-10 11:33:32 +0000 | [diff] [blame] | 558 | } |
| 559 | |
Blue Swirl | 53e3c4f | 2009-07-12 08:54:49 +0000 | [diff] [blame] | 560 | static PCIDeviceInfo ebus_info = { |
| 561 | .qdev.name = "ebus", |
Avi Kivity | c5e6fb7 | 2011-08-08 16:09:22 +0300 | [diff] [blame] | 562 | .qdev.size = sizeof(EbusState), |
Blue Swirl | 53e3c4f | 2009-07-12 08:54:49 +0000 | [diff] [blame] | 563 | .init = pci_ebus_init1, |
Isaku Yamahata | e8b36ba | 2011-05-25 10:58:27 +0900 | [diff] [blame] | 564 | .vendor_id = PCI_VENDOR_ID_SUN, |
| 565 | .device_id = PCI_DEVICE_ID_SUN_EBUS, |
| 566 | .revision = 0x01, |
| 567 | .class_id = PCI_CLASS_BRIDGE_OTHER, |
Blue Swirl | 53e3c4f | 2009-07-12 08:54:49 +0000 | [diff] [blame] | 568 | }; |
| 569 | |
| 570 | static void pci_ebus_register(void) |
| 571 | { |
| 572 | pci_qdev_register(&ebus_info); |
| 573 | } |
| 574 | |
| 575 | device_init(pci_ebus_register); |
| 576 | |
Aurelien Jarno | 409dbce | 2010-03-14 21:20:59 +0100 | [diff] [blame] | 577 | static uint64_t translate_prom_address(void *opaque, uint64_t addr) |
| 578 | { |
| 579 | target_phys_addr_t *base_addr = (target_phys_addr_t *)opaque; |
| 580 | return addr + *base_addr - PROM_VADDR; |
| 581 | } |
| 582 | |
Blue Swirl | 1baffa4 | 2009-07-21 09:58:02 +0000 | [diff] [blame] | 583 | /* Boot PROM (OpenBIOS) */ |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 584 | static void prom_init(target_phys_addr_t addr, const char *bios_name) |
Blue Swirl | 1baffa4 | 2009-07-21 09:58:02 +0000 | [diff] [blame] | 585 | { |
| 586 | DeviceState *dev; |
| 587 | SysBusDevice *s; |
| 588 | char *filename; |
| 589 | int ret; |
| 590 | |
| 591 | dev = qdev_create(NULL, "openprom"); |
Markus Armbruster | e23a1b3 | 2009-10-07 01:15:58 +0200 | [diff] [blame] | 592 | qdev_init_nofail(dev); |
Blue Swirl | 1baffa4 | 2009-07-21 09:58:02 +0000 | [diff] [blame] | 593 | s = sysbus_from_qdev(dev); |
| 594 | |
| 595 | sysbus_mmio_map(s, 0, addr); |
| 596 | |
| 597 | /* load boot prom */ |
| 598 | if (bios_name == NULL) { |
| 599 | bios_name = PROM_FILENAME; |
| 600 | } |
| 601 | filename = qemu_find_file(QEMU_FILE_TYPE_BIOS, bios_name); |
| 602 | if (filename) { |
Aurelien Jarno | 409dbce | 2010-03-14 21:20:59 +0100 | [diff] [blame] | 603 | ret = load_elf(filename, translate_prom_address, &addr, |
| 604 | NULL, NULL, NULL, 1, ELF_MACHINE, 0); |
Blue Swirl | 1baffa4 | 2009-07-21 09:58:02 +0000 | [diff] [blame] | 605 | if (ret < 0 || ret > PROM_SIZE_MAX) { |
| 606 | ret = load_image_targphys(filename, addr, PROM_SIZE_MAX); |
| 607 | } |
Anthony Liguori | 7267c09 | 2011-08-20 22:09:37 -0500 | [diff] [blame] | 608 | g_free(filename); |
Blue Swirl | 1baffa4 | 2009-07-21 09:58:02 +0000 | [diff] [blame] | 609 | } else { |
| 610 | ret = -1; |
| 611 | } |
| 612 | if (ret < 0 || ret > PROM_SIZE_MAX) { |
| 613 | fprintf(stderr, "qemu: could not load prom '%s'\n", bios_name); |
| 614 | exit(1); |
| 615 | } |
| 616 | } |
| 617 | |
Gerd Hoffmann | 81a322d | 2009-08-14 10:36:05 +0200 | [diff] [blame] | 618 | static int prom_init1(SysBusDevice *dev) |
Blue Swirl | 1baffa4 | 2009-07-21 09:58:02 +0000 | [diff] [blame] | 619 | { |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 620 | ram_addr_t prom_offset; |
Blue Swirl | 1baffa4 | 2009-07-21 09:58:02 +0000 | [diff] [blame] | 621 | |
Alex Williamson | 1724f04 | 2010-06-25 11:09:35 -0600 | [diff] [blame] | 622 | prom_offset = qemu_ram_alloc(NULL, "sun4u.prom", PROM_SIZE_MAX); |
Blue Swirl | 1baffa4 | 2009-07-21 09:58:02 +0000 | [diff] [blame] | 623 | sysbus_init_mmio(dev, PROM_SIZE_MAX, prom_offset | IO_MEM_ROM); |
Gerd Hoffmann | 81a322d | 2009-08-14 10:36:05 +0200 | [diff] [blame] | 624 | return 0; |
Blue Swirl | 1baffa4 | 2009-07-21 09:58:02 +0000 | [diff] [blame] | 625 | } |
| 626 | |
| 627 | static SysBusDeviceInfo prom_info = { |
| 628 | .init = prom_init1, |
| 629 | .qdev.name = "openprom", |
| 630 | .qdev.size = sizeof(SysBusDevice), |
| 631 | .qdev.props = (Property[]) { |
| 632 | {/* end of property list */} |
| 633 | } |
| 634 | }; |
| 635 | |
| 636 | static void prom_register_devices(void) |
| 637 | { |
| 638 | sysbus_register_withprop(&prom_info); |
| 639 | } |
| 640 | |
| 641 | device_init(prom_register_devices); |
| 642 | |
Blue Swirl | bda4203 | 2009-07-21 10:04:47 +0000 | [diff] [blame] | 643 | |
| 644 | typedef struct RamDevice |
| 645 | { |
| 646 | SysBusDevice busdev; |
Blue Swirl | 0484362 | 2009-07-21 11:20:11 +0000 | [diff] [blame] | 647 | uint64_t size; |
Blue Swirl | bda4203 | 2009-07-21 10:04:47 +0000 | [diff] [blame] | 648 | } RamDevice; |
| 649 | |
| 650 | /* System RAM */ |
Gerd Hoffmann | 81a322d | 2009-08-14 10:36:05 +0200 | [diff] [blame] | 651 | static int ram_init1(SysBusDevice *dev) |
Blue Swirl | bda4203 | 2009-07-21 10:04:47 +0000 | [diff] [blame] | 652 | { |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 653 | ram_addr_t RAM_size, ram_offset; |
Blue Swirl | bda4203 | 2009-07-21 10:04:47 +0000 | [diff] [blame] | 654 | RamDevice *d = FROM_SYSBUS(RamDevice, dev); |
| 655 | |
| 656 | RAM_size = d->size; |
| 657 | |
Alex Williamson | 1724f04 | 2010-06-25 11:09:35 -0600 | [diff] [blame] | 658 | ram_offset = qemu_ram_alloc(NULL, "sun4u.ram", RAM_size); |
Blue Swirl | bda4203 | 2009-07-21 10:04:47 +0000 | [diff] [blame] | 659 | sysbus_init_mmio(dev, RAM_size, ram_offset); |
Gerd Hoffmann | 81a322d | 2009-08-14 10:36:05 +0200 | [diff] [blame] | 660 | return 0; |
Blue Swirl | bda4203 | 2009-07-21 10:04:47 +0000 | [diff] [blame] | 661 | } |
| 662 | |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 663 | static void ram_init(target_phys_addr_t addr, ram_addr_t RAM_size) |
Blue Swirl | bda4203 | 2009-07-21 10:04:47 +0000 | [diff] [blame] | 664 | { |
| 665 | DeviceState *dev; |
| 666 | SysBusDevice *s; |
| 667 | RamDevice *d; |
| 668 | |
| 669 | /* allocate RAM */ |
| 670 | dev = qdev_create(NULL, "memory"); |
| 671 | s = sysbus_from_qdev(dev); |
| 672 | |
| 673 | d = FROM_SYSBUS(RamDevice, s); |
| 674 | d->size = RAM_size; |
Markus Armbruster | e23a1b3 | 2009-10-07 01:15:58 +0200 | [diff] [blame] | 675 | qdev_init_nofail(dev); |
Blue Swirl | bda4203 | 2009-07-21 10:04:47 +0000 | [diff] [blame] | 676 | |
| 677 | sysbus_mmio_map(s, 0, addr); |
| 678 | } |
| 679 | |
| 680 | static SysBusDeviceInfo ram_info = { |
| 681 | .init = ram_init1, |
| 682 | .qdev.name = "memory", |
| 683 | .qdev.size = sizeof(RamDevice), |
| 684 | .qdev.props = (Property[]) { |
Gerd Hoffmann | 32a7ee9 | 2009-08-03 17:35:36 +0200 | [diff] [blame] | 685 | DEFINE_PROP_UINT64("size", RamDevice, size, 0), |
| 686 | DEFINE_PROP_END_OF_LIST(), |
Blue Swirl | bda4203 | 2009-07-21 10:04:47 +0000 | [diff] [blame] | 687 | } |
| 688 | }; |
| 689 | |
| 690 | static void ram_register_devices(void) |
| 691 | { |
| 692 | sysbus_register_withprop(&ram_info); |
| 693 | } |
| 694 | |
| 695 | device_init(ram_register_devices); |
| 696 | |
Blue Swirl | 7b833f5 | 2009-07-21 10:46:23 +0000 | [diff] [blame] | 697 | static CPUState *cpu_devinit(const char *cpu_model, const struct hwdef *hwdef) |
bellard | 3475187 | 2005-07-02 14:31:34 +0000 | [diff] [blame] | 698 | { |
bellard | c68ea70 | 2005-11-21 23:33:12 +0000 | [diff] [blame] | 699 | CPUState *env; |
blueswir1 | e87231d | 2008-09-26 19:48:58 +0000 | [diff] [blame] | 700 | ResetData *reset_info; |
bellard | 3475187 | 2005-07-02 14:31:34 +0000 | [diff] [blame] | 701 | |
Igor V. Kovalenko | 8f4efc5 | 2010-01-28 00:00:53 +0300 | [diff] [blame] | 702 | uint32_t tick_frequency = 100*1000000; |
| 703 | uint32_t stick_frequency = 100*1000000; |
| 704 | uint32_t hstick_frequency = 100*1000000; |
| 705 | |
blueswir1 | c7ba218 | 2008-07-22 07:07:34 +0000 | [diff] [blame] | 706 | if (!cpu_model) |
| 707 | cpu_model = hwdef->default_cpu_model; |
bellard | aaed909 | 2007-11-10 15:15:54 +0000 | [diff] [blame] | 708 | env = cpu_init(cpu_model); |
| 709 | if (!env) { |
blueswir1 | 62724a3 | 2007-03-25 07:55:52 +0000 | [diff] [blame] | 710 | fprintf(stderr, "Unable to find Sparc CPU definition\n"); |
| 711 | exit(1); |
| 712 | } |
blueswir1 | 20c9f09 | 2007-05-25 18:50:28 +0000 | [diff] [blame] | 713 | |
Igor V. Kovalenko | 8f4efc5 | 2010-01-28 00:00:53 +0300 | [diff] [blame] | 714 | env->tick = cpu_timer_create("tick", env, tick_irq, |
| 715 | tick_frequency, TICK_NPT_MASK); |
blueswir1 | 20c9f09 | 2007-05-25 18:50:28 +0000 | [diff] [blame] | 716 | |
Igor V. Kovalenko | 8f4efc5 | 2010-01-28 00:00:53 +0300 | [diff] [blame] | 717 | env->stick = cpu_timer_create("stick", env, stick_irq, |
| 718 | stick_frequency, TICK_INT_DIS); |
| 719 | |
| 720 | env->hstick = cpu_timer_create("hstick", env, hstick_irq, |
| 721 | hstick_frequency, TICK_INT_DIS); |
blueswir1 | e87231d | 2008-09-26 19:48:58 +0000 | [diff] [blame] | 722 | |
Anthony Liguori | 7267c09 | 2011-08-20 22:09:37 -0500 | [diff] [blame] | 723 | reset_info = g_malloc0(sizeof(ResetData)); |
blueswir1 | e87231d | 2008-09-26 19:48:58 +0000 | [diff] [blame] | 724 | reset_info->env = env; |
Blue Swirl | 44a9935 | 2009-11-07 10:05:03 +0000 | [diff] [blame] | 725 | reset_info->prom_addr = hwdef->prom_addr; |
Jan Kiszka | a08d436 | 2009-06-27 09:25:07 +0200 | [diff] [blame] | 726 | qemu_register_reset(main_cpu_reset, reset_info); |
bellard | c68ea70 | 2005-11-21 23:33:12 +0000 | [diff] [blame] | 727 | |
Blue Swirl | 7b833f5 | 2009-07-21 10:46:23 +0000 | [diff] [blame] | 728 | return env; |
| 729 | } |
| 730 | |
Richard Henderson | 38bc50f | 2011-08-11 16:07:21 -0700 | [diff] [blame] | 731 | static void sun4uv_init(MemoryRegion *address_space_mem, |
| 732 | ram_addr_t RAM_size, |
Blue Swirl | 7b833f5 | 2009-07-21 10:46:23 +0000 | [diff] [blame] | 733 | const char *boot_devices, |
| 734 | const char *kernel_filename, const char *kernel_cmdline, |
| 735 | const char *initrd_filename, const char *cpu_model, |
| 736 | const struct hwdef *hwdef) |
| 737 | { |
| 738 | CPUState *env; |
Blue Swirl | 43a3470 | 2010-02-07 08:05:03 +0000 | [diff] [blame] | 739 | M48t59State *nvram; |
Blue Swirl | 7b833f5 | 2009-07-21 10:46:23 +0000 | [diff] [blame] | 740 | unsigned int i; |
| 741 | long initrd_size, kernel_size; |
| 742 | PCIBus *pci_bus, *pci_bus2, *pci_bus3; |
| 743 | qemu_irq *irq; |
Gerd Hoffmann | f455e98 | 2009-08-28 15:47:03 +0200 | [diff] [blame] | 744 | DriveInfo *hd[MAX_IDE_BUS * MAX_IDE_DEVS]; |
Gerd Hoffmann | fd8014e | 2009-09-22 13:53:18 +0200 | [diff] [blame] | 745 | DriveInfo *fd[MAX_FD]; |
Blue Swirl | 7b833f5 | 2009-07-21 10:46:23 +0000 | [diff] [blame] | 746 | void *fw_cfg; |
| 747 | |
Blue Swirl | 7b833f5 | 2009-07-21 10:46:23 +0000 | [diff] [blame] | 748 | /* init CPUs */ |
| 749 | env = cpu_devinit(cpu_model, hwdef); |
| 750 | |
Blue Swirl | bda4203 | 2009-07-21 10:04:47 +0000 | [diff] [blame] | 751 | /* set up devices */ |
| 752 | ram_init(0, RAM_size); |
bellard | 3475187 | 2005-07-02 14:31:34 +0000 | [diff] [blame] | 753 | |
Blue Swirl | 1baffa4 | 2009-07-21 09:58:02 +0000 | [diff] [blame] | 754 | prom_init(hwdef->prom_addr, bios_name); |
bellard | 3475187 | 2005-07-02 14:31:34 +0000 | [diff] [blame] | 755 | |
Igor Kovalenko | 7d55273 | 2009-07-12 07:43:00 +0000 | [diff] [blame] | 756 | |
| 757 | irq = qemu_allocate_irqs(cpu_set_irq, env, MAX_PILS); |
| 758 | pci_bus = pci_apb_init(APB_SPECIAL_BASE, APB_MEM_BASE, irq, &pci_bus2, |
blueswir1 | c190ea0 | 2009-01-10 11:33:32 +0000 | [diff] [blame] | 759 | &pci_bus3); |
Gerd Hoffmann | 7889542 | 2010-10-15 11:45:13 +0200 | [diff] [blame] | 760 | pci_vga_init(pci_bus); |
bellard | 8346901 | 2005-07-23 14:27:54 +0000 | [diff] [blame] | 761 | |
blueswir1 | c190ea0 | 2009-01-10 11:33:32 +0000 | [diff] [blame] | 762 | // XXX Should be pci_bus3 |
| 763 | pci_ebus_init(pci_bus, -1); |
| 764 | |
blueswir1 | e87231d | 2008-09-26 19:48:58 +0000 | [diff] [blame] | 765 | i = 0; |
| 766 | if (hwdef->console_serial_base) { |
Richard Henderson | 38bc50f | 2011-08-11 16:07:21 -0700 | [diff] [blame] | 767 | serial_mm_init(address_space_mem, hwdef->console_serial_base, 0, |
Richard Henderson | 39186d8 | 2011-08-11 16:07:16 -0700 | [diff] [blame] | 768 | NULL, 115200, serial_hds[i], DEVICE_BIG_ENDIAN); |
blueswir1 | e87231d | 2008-09-26 19:48:58 +0000 | [diff] [blame] | 769 | i++; |
| 770 | } |
| 771 | for(; i < MAX_SERIAL_PORTS; i++) { |
bellard | 8346901 | 2005-07-23 14:27:54 +0000 | [diff] [blame] | 772 | if (serial_hds[i]) { |
Gerd Hoffmann | ac0be99 | 2009-09-22 13:53:21 +0200 | [diff] [blame] | 773 | serial_isa_init(i, serial_hds[i]); |
bellard | 8346901 | 2005-07-23 14:27:54 +0000 | [diff] [blame] | 774 | } |
| 775 | } |
| 776 | |
| 777 | for(i = 0; i < MAX_PARALLEL_PORTS; i++) { |
| 778 | if (parallel_hds[i]) { |
Gerd Hoffmann | 021f067 | 2009-09-22 13:53:22 +0200 | [diff] [blame] | 779 | parallel_init(i, parallel_hds[i]); |
bellard | 8346901 | 2005-07-23 14:27:54 +0000 | [diff] [blame] | 780 | } |
| 781 | } |
| 782 | |
aliguori | cb457d7 | 2009-01-13 19:47:10 +0000 | [diff] [blame] | 783 | for(i = 0; i < nb_nics; i++) |
Markus Armbruster | 07caea3 | 2009-09-25 03:53:51 +0200 | [diff] [blame] | 784 | pci_nic_init_nofail(&nd_table[i], "ne2k_pci", NULL); |
bellard | 8346901 | 2005-07-23 14:27:54 +0000 | [diff] [blame] | 785 | |
Isaku Yamahata | 7571790 | 2011-04-03 20:32:46 +0900 | [diff] [blame] | 786 | ide_drive_get(hd, MAX_IDE_BUS); |
ths | e4bcb14 | 2007-12-02 04:51:10 +0000 | [diff] [blame] | 787 | |
blueswir1 | 3b898dd | 2009-01-17 18:41:53 +0000 | [diff] [blame] | 788 | pci_cmd646_ide_init(pci_bus, hd, 1); |
| 789 | |
Gerd Hoffmann | 2e15e23 | 2009-09-10 11:43:27 +0200 | [diff] [blame] | 790 | isa_create_simple("i8042"); |
ths | e4bcb14 | 2007-12-02 04:51:10 +0000 | [diff] [blame] | 791 | for(i = 0; i < MAX_FD; i++) { |
Gerd Hoffmann | fd8014e | 2009-09-22 13:53:18 +0200 | [diff] [blame] | 792 | fd[i] = drive_get(IF_FLOPPY, 0, i); |
ths | e4bcb14 | 2007-12-02 04:51:10 +0000 | [diff] [blame] | 793 | } |
Gerd Hoffmann | 86c8615 | 2009-09-10 11:43:26 +0200 | [diff] [blame] | 794 | fdctrl_init_isa(fd); |
Blue Swirl | f80237d | 2009-09-14 15:33:28 +0000 | [diff] [blame] | 795 | nvram = m48t59_init_isa(0x0074, NVRAM_SIZE, 59); |
Blue Swirl | 636aa70 | 2009-07-21 10:49:47 +0000 | [diff] [blame] | 796 | |
| 797 | initrd_size = 0; |
| 798 | kernel_size = sun4u_load_kernel(kernel_filename, initrd_filename, |
| 799 | ram_size, &initrd_size); |
| 800 | |
blueswir1 | 2254876 | 2008-05-10 10:12:00 +0000 | [diff] [blame] | 801 | sun4u_NVRAM_set_params(nvram, NVRAM_SIZE, "Sun4u", RAM_size, boot_devices, |
blueswir1 | 0d31cb9 | 2008-07-15 14:54:01 +0000 | [diff] [blame] | 802 | KERNEL_LOAD_ADDR, kernel_size, |
| 803 | kernel_cmdline, |
| 804 | INITRD_LOAD_ADDR, initrd_size, |
| 805 | /* XXX: need an option to load a NVRAM image */ |
| 806 | 0, |
| 807 | graphic_width, graphic_height, graphic_depth, |
| 808 | (uint8_t *)&nd_table[0].macaddr); |
bellard | 8346901 | 2005-07-23 14:27:54 +0000 | [diff] [blame] | 809 | |
blueswir1 | 3cce624 | 2008-09-18 18:27:29 +0000 | [diff] [blame] | 810 | fw_cfg = fw_cfg_init(BIOS_CFG_IOPORT, BIOS_CFG_IOPORT + 1, 0, 0); |
| 811 | fw_cfg_add_i32(fw_cfg, FW_CFG_ID, 1); |
blueswir1 | 905fdcb | 2008-09-18 18:33:18 +0000 | [diff] [blame] | 812 | fw_cfg_add_i64(fw_cfg, FW_CFG_RAM_SIZE, (uint64_t)ram_size); |
| 813 | fw_cfg_add_i16(fw_cfg, FW_CFG_MACHINE_ID, hwdef->machine_id); |
blueswir1 | 513f789 | 2009-03-08 09:51:29 +0000 | [diff] [blame] | 814 | fw_cfg_add_i32(fw_cfg, FW_CFG_KERNEL_ADDR, KERNEL_LOAD_ADDR); |
| 815 | fw_cfg_add_i32(fw_cfg, FW_CFG_KERNEL_SIZE, kernel_size); |
| 816 | if (kernel_cmdline) { |
Blue Swirl | 9c9b051 | 2010-01-09 21:27:04 +0000 | [diff] [blame] | 817 | fw_cfg_add_i32(fw_cfg, FW_CFG_CMDLINE_SIZE, |
| 818 | strlen(kernel_cmdline) + 1); |
Blue Swirl | 6bb4ca5 | 2009-12-27 18:25:49 +0000 | [diff] [blame] | 819 | fw_cfg_add_bytes(fw_cfg, FW_CFG_CMDLINE_DATA, |
| 820 | (uint8_t*)strdup(kernel_cmdline), |
| 821 | strlen(kernel_cmdline) + 1); |
blueswir1 | 513f789 | 2009-03-08 09:51:29 +0000 | [diff] [blame] | 822 | } else { |
Blue Swirl | 9c9b051 | 2010-01-09 21:27:04 +0000 | [diff] [blame] | 823 | fw_cfg_add_i32(fw_cfg, FW_CFG_CMDLINE_SIZE, 0); |
blueswir1 | 513f789 | 2009-03-08 09:51:29 +0000 | [diff] [blame] | 824 | } |
| 825 | fw_cfg_add_i32(fw_cfg, FW_CFG_INITRD_ADDR, INITRD_LOAD_ADDR); |
| 826 | fw_cfg_add_i32(fw_cfg, FW_CFG_INITRD_SIZE, initrd_size); |
| 827 | fw_cfg_add_i16(fw_cfg, FW_CFG_BOOT_DEVICE, boot_devices[0]); |
Blue Swirl | 7589690 | 2009-08-08 10:44:56 +0000 | [diff] [blame] | 828 | |
| 829 | fw_cfg_add_i16(fw_cfg, FW_CFG_SPARC64_WIDTH, graphic_width); |
| 830 | fw_cfg_add_i16(fw_cfg, FW_CFG_SPARC64_HEIGHT, graphic_height); |
| 831 | fw_cfg_add_i16(fw_cfg, FW_CFG_SPARC64_DEPTH, graphic_depth); |
| 832 | |
blueswir1 | 513f789 | 2009-03-08 09:51:29 +0000 | [diff] [blame] | 833 | qemu_register_boot_set(fw_cfg_boot_set, fw_cfg); |
bellard | 3475187 | 2005-07-02 14:31:34 +0000 | [diff] [blame] | 834 | } |
| 835 | |
blueswir1 | 905fdcb | 2008-09-18 18:33:18 +0000 | [diff] [blame] | 836 | enum { |
| 837 | sun4u_id = 0, |
| 838 | sun4v_id = 64, |
blueswir1 | e87231d | 2008-09-26 19:48:58 +0000 | [diff] [blame] | 839 | niagara_id, |
blueswir1 | 905fdcb | 2008-09-18 18:33:18 +0000 | [diff] [blame] | 840 | }; |
| 841 | |
blueswir1 | c7ba218 | 2008-07-22 07:07:34 +0000 | [diff] [blame] | 842 | static const struct hwdef hwdefs[] = { |
| 843 | /* Sun4u generic PC-like machine */ |
| 844 | { |
Igor V. Kovalenko | 5910b04 | 2010-05-25 16:08:57 +0400 | [diff] [blame] | 845 | .default_cpu_model = "TI UltraSparc IIi", |
blueswir1 | 905fdcb | 2008-09-18 18:33:18 +0000 | [diff] [blame] | 846 | .machine_id = sun4u_id, |
blueswir1 | e87231d | 2008-09-26 19:48:58 +0000 | [diff] [blame] | 847 | .prom_addr = 0x1fff0000000ULL, |
| 848 | .console_serial_base = 0, |
blueswir1 | c7ba218 | 2008-07-22 07:07:34 +0000 | [diff] [blame] | 849 | }, |
| 850 | /* Sun4v generic PC-like machine */ |
| 851 | { |
| 852 | .default_cpu_model = "Sun UltraSparc T1", |
blueswir1 | 905fdcb | 2008-09-18 18:33:18 +0000 | [diff] [blame] | 853 | .machine_id = sun4v_id, |
blueswir1 | e87231d | 2008-09-26 19:48:58 +0000 | [diff] [blame] | 854 | .prom_addr = 0x1fff0000000ULL, |
| 855 | .console_serial_base = 0, |
| 856 | }, |
| 857 | /* Sun4v generic Niagara machine */ |
| 858 | { |
| 859 | .default_cpu_model = "Sun UltraSparc T1", |
| 860 | .machine_id = niagara_id, |
| 861 | .prom_addr = 0xfff0000000ULL, |
| 862 | .console_serial_base = 0xfff0c2c000ULL, |
blueswir1 | c7ba218 | 2008-07-22 07:07:34 +0000 | [diff] [blame] | 863 | }, |
| 864 | }; |
| 865 | |
| 866 | /* Sun4u hardware initialisation */ |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 867 | static void sun4u_init(ram_addr_t RAM_size, |
aliguori | 3023f33 | 2009-01-16 19:04:14 +0000 | [diff] [blame] | 868 | const char *boot_devices, |
blueswir1 | c7ba218 | 2008-07-22 07:07:34 +0000 | [diff] [blame] | 869 | const char *kernel_filename, const char *kernel_cmdline, |
| 870 | const char *initrd_filename, const char *cpu_model) |
| 871 | { |
Richard Henderson | 38bc50f | 2011-08-11 16:07:21 -0700 | [diff] [blame] | 872 | sun4uv_init(get_system_memory(), RAM_size, boot_devices, kernel_filename, |
blueswir1 | c7ba218 | 2008-07-22 07:07:34 +0000 | [diff] [blame] | 873 | kernel_cmdline, initrd_filename, cpu_model, &hwdefs[0]); |
| 874 | } |
| 875 | |
| 876 | /* Sun4v hardware initialisation */ |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 877 | static void sun4v_init(ram_addr_t RAM_size, |
aliguori | 3023f33 | 2009-01-16 19:04:14 +0000 | [diff] [blame] | 878 | const char *boot_devices, |
blueswir1 | c7ba218 | 2008-07-22 07:07:34 +0000 | [diff] [blame] | 879 | const char *kernel_filename, const char *kernel_cmdline, |
| 880 | const char *initrd_filename, const char *cpu_model) |
| 881 | { |
Richard Henderson | 38bc50f | 2011-08-11 16:07:21 -0700 | [diff] [blame] | 882 | sun4uv_init(get_system_memory(), RAM_size, boot_devices, kernel_filename, |
blueswir1 | c7ba218 | 2008-07-22 07:07:34 +0000 | [diff] [blame] | 883 | kernel_cmdline, initrd_filename, cpu_model, &hwdefs[1]); |
| 884 | } |
| 885 | |
blueswir1 | e87231d | 2008-09-26 19:48:58 +0000 | [diff] [blame] | 886 | /* Niagara hardware initialisation */ |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 887 | static void niagara_init(ram_addr_t RAM_size, |
aliguori | 3023f33 | 2009-01-16 19:04:14 +0000 | [diff] [blame] | 888 | const char *boot_devices, |
blueswir1 | e87231d | 2008-09-26 19:48:58 +0000 | [diff] [blame] | 889 | const char *kernel_filename, const char *kernel_cmdline, |
| 890 | const char *initrd_filename, const char *cpu_model) |
| 891 | { |
Richard Henderson | 38bc50f | 2011-08-11 16:07:21 -0700 | [diff] [blame] | 892 | sun4uv_init(get_system_memory(), RAM_size, boot_devices, kernel_filename, |
blueswir1 | e87231d | 2008-09-26 19:48:58 +0000 | [diff] [blame] | 893 | kernel_cmdline, initrd_filename, cpu_model, &hwdefs[2]); |
| 894 | } |
| 895 | |
Anthony Liguori | f80f9ec | 2009-05-20 18:38:09 -0500 | [diff] [blame] | 896 | static QEMUMachine sun4u_machine = { |
blueswir1 | 66de733 | 2008-08-12 15:51:09 +0000 | [diff] [blame] | 897 | .name = "sun4u", |
| 898 | .desc = "Sun4u platform", |
| 899 | .init = sun4u_init, |
blueswir1 | 1bcee01 | 2008-11-02 16:51:02 +0000 | [diff] [blame] | 900 | .max_cpus = 1, // XXX for now |
Anthony Liguori | 0c25743 | 2009-05-21 20:41:01 -0500 | [diff] [blame] | 901 | .is_default = 1, |
bellard | 3475187 | 2005-07-02 14:31:34 +0000 | [diff] [blame] | 902 | }; |
blueswir1 | c7ba218 | 2008-07-22 07:07:34 +0000 | [diff] [blame] | 903 | |
Anthony Liguori | f80f9ec | 2009-05-20 18:38:09 -0500 | [diff] [blame] | 904 | static QEMUMachine sun4v_machine = { |
blueswir1 | 66de733 | 2008-08-12 15:51:09 +0000 | [diff] [blame] | 905 | .name = "sun4v", |
| 906 | .desc = "Sun4v platform", |
| 907 | .init = sun4v_init, |
blueswir1 | 1bcee01 | 2008-11-02 16:51:02 +0000 | [diff] [blame] | 908 | .max_cpus = 1, // XXX for now |
blueswir1 | c7ba218 | 2008-07-22 07:07:34 +0000 | [diff] [blame] | 909 | }; |
blueswir1 | e87231d | 2008-09-26 19:48:58 +0000 | [diff] [blame] | 910 | |
Anthony Liguori | f80f9ec | 2009-05-20 18:38:09 -0500 | [diff] [blame] | 911 | static QEMUMachine niagara_machine = { |
blueswir1 | e87231d | 2008-09-26 19:48:58 +0000 | [diff] [blame] | 912 | .name = "Niagara", |
| 913 | .desc = "Sun4v platform, Niagara", |
| 914 | .init = niagara_init, |
blueswir1 | 1bcee01 | 2008-11-02 16:51:02 +0000 | [diff] [blame] | 915 | .max_cpus = 1, // XXX for now |
blueswir1 | e87231d | 2008-09-26 19:48:58 +0000 | [diff] [blame] | 916 | }; |
Anthony Liguori | f80f9ec | 2009-05-20 18:38:09 -0500 | [diff] [blame] | 917 | |
| 918 | static void sun4u_machine_init(void) |
| 919 | { |
| 920 | qemu_register_machine(&sun4u_machine); |
| 921 | qemu_register_machine(&sun4v_machine); |
| 922 | qemu_register_machine(&niagara_machine); |
| 923 | } |
| 924 | |
| 925 | machine_init(sun4u_machine_init); |