]>
Commit | Line | Data |
---|---|---|
3475187d | 1 | /* |
c7ba218d | 2 | * QEMU Sun4u/Sun4v System Emulator |
5fafdf24 | 3 | * |
3475187d | 4 | * Copyright (c) 2005 Fabrice Bellard |
5fafdf24 | 5 | * |
3475187d FB |
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 | */ | |
d6454270 | 24 | |
db5ebe5f | 25 | #include "qemu/osdep.h" |
0a2e467b | 26 | #include "qemu/units.h" |
29bd7231 | 27 | #include "qemu/error-report.h" |
da34e65c | 28 | #include "qapi/error.h" |
4771d756 PB |
29 | #include "qemu-common.h" |
30 | #include "cpu.h" | |
83c9f4ca | 31 | #include "hw/pci/pci.h" |
4272ad40 | 32 | #include "hw/pci/pci_bridge.h" |
6864fa38 | 33 | #include "hw/pci/pci_bus.h" |
0ea833c2 | 34 | #include "hw/pci/pci_host.h" |
a27bd6c7 | 35 | #include "hw/qdev-properties.h" |
9b301794 | 36 | #include "hw/pci-host/sabre.h" |
0d09e41a | 37 | #include "hw/char/serial.h" |
bb3d5ea8 | 38 | #include "hw/char/parallel.h" |
0d09e41a | 39 | #include "hw/timer/m48t59.h" |
d6454270 | 40 | #include "migration/vmstate.h" |
47973a2d | 41 | #include "hw/input/i8042.h" |
0d09e41a | 42 | #include "hw/block/fdc.h" |
1422e32d | 43 | #include "net/net.h" |
1de7afc9 | 44 | #include "qemu/timer.h" |
9c17d615 | 45 | #include "sysemu/sysemu.h" |
83c9f4ca | 46 | #include "hw/boards.h" |
c6363bae | 47 | #include "hw/nvram/sun_nvram.h" |
2024c014 | 48 | #include "hw/nvram/chrp_nvram.h" |
fff54d22 | 49 | #include "hw/sparc/sparc64.h" |
0d09e41a | 50 | #include "hw/nvram/fw_cfg.h" |
83c9f4ca PB |
51 | #include "hw/sysbus.h" |
52 | #include "hw/ide.h" | |
6864fa38 | 53 | #include "hw/ide/pci.h" |
83c9f4ca | 54 | #include "hw/loader.h" |
0a1d5c45 | 55 | #include "hw/fw-path-provider.h" |
ca20cf32 | 56 | #include "elf.h" |
69520948 | 57 | #include "trace.h" |
3475187d | 58 | |
83469015 FB |
59 | #define KERNEL_LOAD_ADDR 0x00404000 |
60 | #define CMDLINE_ADDR 0x003ff000 | |
0a2e467b | 61 | #define PROM_SIZE_MAX (4 * MiB) |
f930d07e | 62 | #define PROM_VADDR 0x000ffd00000ULL |
5795162a MCA |
63 | #define PBM_SPECIAL_BASE 0x1fe00000000ULL |
64 | #define PBM_MEM_BASE 0x1ff00000000ULL | |
65 | #define PBM_PCI_IO_BASE (PBM_SPECIAL_BASE + 0x02000000ULL) | |
f930d07e | 66 | #define PROM_FILENAME "openbios-sparc64" |
83469015 | 67 | #define NVRAM_SIZE 0x2000 |
e4bcb14c | 68 | #define MAX_IDE_BUS 2 |
3cce6243 | 69 | #define BIOS_CFG_IOPORT 0x510 |
7589690c BS |
70 | #define FW_CFG_SPARC64_WIDTH (FW_CFG_ARCH_LOCAL + 0x00) |
71 | #define FW_CFG_SPARC64_HEIGHT (FW_CFG_ARCH_LOCAL + 0x01) | |
72 | #define FW_CFG_SPARC64_DEPTH (FW_CFG_ARCH_LOCAL + 0x02) | |
3475187d | 73 | |
852e82f3 | 74 | #define IVEC_MAX 0x40 |
9d926598 | 75 | |
c7ba218d | 76 | struct hwdef { |
905fdcb5 | 77 | uint16_t machine_id; |
e87231d4 BS |
78 | uint64_t prom_addr; |
79 | uint64_t console_serial_base; | |
c7ba218d BS |
80 | }; |
81 | ||
c5e6fb7e | 82 | typedef struct EbusState { |
ad6856e8 MCA |
83 | /*< private >*/ |
84 | PCIDevice parent_obj; | |
85 | ||
8c40b8d9 | 86 | ISABus *isa_bus; |
4b10c8d7 | 87 | qemu_irq isa_bus_irqs[ISA_NUM_IRQS]; |
0fe22ffb | 88 | uint64_t console_serial_base; |
c5e6fb7e AK |
89 | MemoryRegion bar0; |
90 | MemoryRegion bar1; | |
91 | } EbusState; | |
92 | ||
ad6856e8 MCA |
93 | #define TYPE_EBUS "ebus" |
94 | #define EBUS(obj) OBJECT_CHECK(EbusState, (obj), TYPE_EBUS) | |
95 | ||
a2b45ea5 PMD |
96 | const char *fw_cfg_arch_key_name(uint16_t key) |
97 | { | |
98 | static const struct { | |
99 | uint16_t key; | |
100 | const char *name; | |
101 | } fw_cfg_arch_wellknown_keys[] = { | |
102 | {FW_CFG_SPARC64_WIDTH, "width"}, | |
103 | {FW_CFG_SPARC64_HEIGHT, "height"}, | |
104 | {FW_CFG_SPARC64_DEPTH, "depth"}, | |
105 | }; | |
106 | ||
107 | for (size_t i = 0; i < ARRAY_SIZE(fw_cfg_arch_wellknown_keys); i++) { | |
108 | if (fw_cfg_arch_wellknown_keys[i].key == key) { | |
109 | return fw_cfg_arch_wellknown_keys[i].name; | |
110 | } | |
111 | } | |
112 | return NULL; | |
113 | } | |
114 | ||
ddcd5531 GA |
115 | static void fw_cfg_boot_set(void *opaque, const char *boot_device, |
116 | Error **errp) | |
81864572 | 117 | { |
48779e50 | 118 | fw_cfg_modify_i16(opaque, FW_CFG_BOOT_DEVICE, boot_device[0]); |
81864572 BS |
119 | } |
120 | ||
31688246 | 121 | static int sun4u_NVRAM_set_params(Nvram *nvram, uint16_t NVRAM_size, |
43a34704 BS |
122 | const char *arch, ram_addr_t RAM_size, |
123 | const char *boot_devices, | |
124 | uint32_t kernel_image, uint32_t kernel_size, | |
125 | const char *cmdline, | |
126 | uint32_t initrd_image, uint32_t initrd_size, | |
127 | uint32_t NVRAM_image, | |
128 | int width, int height, int depth, | |
129 | const uint8_t *macaddr) | |
83469015 | 130 | { |
66508601 | 131 | unsigned int i; |
2024c014 | 132 | int sysp_end; |
d2c63fc1 | 133 | uint8_t image[0x1ff0]; |
31688246 | 134 | NvramClass *k = NVRAM_GET_CLASS(nvram); |
d2c63fc1 BS |
135 | |
136 | memset(image, '\0', sizeof(image)); | |
137 | ||
2024c014 TH |
138 | /* OpenBIOS nvram variables partition */ |
139 | sysp_end = chrp_nvram_create_system_partition(image, 0); | |
83469015 | 140 | |
2024c014 TH |
141 | /* Free space partition */ |
142 | chrp_nvram_create_free_partition(&image[sysp_end], 0x1fd0 - sysp_end); | |
d2c63fc1 | 143 | |
0d31cb99 BS |
144 | Sun_init_header((struct Sun_nvram *)&image[0x1fd8], macaddr, 0x80); |
145 | ||
31688246 HP |
146 | for (i = 0; i < sizeof(image); i++) { |
147 | (k->write)(nvram, i, image[i]); | |
148 | } | |
66508601 | 149 | |
83469015 | 150 | return 0; |
3475187d | 151 | } |
5f2bf0fe BS |
152 | |
153 | static uint64_t sun4u_load_kernel(const char *kernel_filename, | |
154 | const char *initrd_filename, | |
155 | ram_addr_t RAM_size, uint64_t *initrd_size, | |
156 | uint64_t *initrd_addr, uint64_t *kernel_addr, | |
157 | uint64_t *kernel_entry) | |
636aa70a BS |
158 | { |
159 | int linux_boot; | |
160 | unsigned int i; | |
161 | long kernel_size; | |
6908d9ce | 162 | uint8_t *ptr; |
3ac24188 | 163 | uint64_t kernel_top = 0; |
636aa70a BS |
164 | |
165 | linux_boot = (kernel_filename != NULL); | |
166 | ||
167 | kernel_size = 0; | |
168 | if (linux_boot) { | |
ca20cf32 BS |
169 | int bswap_needed; |
170 | ||
171 | #ifdef BSWAP_NEEDED | |
172 | bswap_needed = 1; | |
173 | #else | |
174 | bswap_needed = 0; | |
175 | #endif | |
4366e1db | 176 | kernel_size = load_elf(kernel_filename, NULL, NULL, NULL, kernel_entry, |
7ef295ea | 177 | kernel_addr, &kernel_top, 1, EM_SPARCV9, 0, 0); |
5f2bf0fe BS |
178 | if (kernel_size < 0) { |
179 | *kernel_addr = KERNEL_LOAD_ADDR; | |
180 | *kernel_entry = KERNEL_LOAD_ADDR; | |
636aa70a | 181 | kernel_size = load_aout(kernel_filename, KERNEL_LOAD_ADDR, |
ca20cf32 BS |
182 | RAM_size - KERNEL_LOAD_ADDR, bswap_needed, |
183 | TARGET_PAGE_SIZE); | |
5f2bf0fe BS |
184 | } |
185 | if (kernel_size < 0) { | |
636aa70a BS |
186 | kernel_size = load_image_targphys(kernel_filename, |
187 | KERNEL_LOAD_ADDR, | |
188 | RAM_size - KERNEL_LOAD_ADDR); | |
5f2bf0fe | 189 | } |
636aa70a | 190 | if (kernel_size < 0) { |
29bd7231 | 191 | error_report("could not load kernel '%s'", kernel_filename); |
636aa70a BS |
192 | exit(1); |
193 | } | |
5f2bf0fe | 194 | /* load initrd above kernel */ |
636aa70a | 195 | *initrd_size = 0; |
3ac24188 | 196 | if (initrd_filename && kernel_top) { |
5f2bf0fe BS |
197 | *initrd_addr = TARGET_PAGE_ALIGN(kernel_top); |
198 | ||
636aa70a | 199 | *initrd_size = load_image_targphys(initrd_filename, |
5f2bf0fe BS |
200 | *initrd_addr, |
201 | RAM_size - *initrd_addr); | |
202 | if ((int)*initrd_size < 0) { | |
29bd7231 AF |
203 | error_report("could not load initial ram disk '%s'", |
204 | initrd_filename); | |
636aa70a BS |
205 | exit(1); |
206 | } | |
207 | } | |
208 | if (*initrd_size > 0) { | |
209 | for (i = 0; i < 64 * TARGET_PAGE_SIZE; i += TARGET_PAGE_SIZE) { | |
0f0f8b61 TH |
210 | ptr = rom_ptr(*kernel_addr + i, 32); |
211 | if (ptr && ldl_p(ptr + 8) == 0x48647253) { /* HdrS */ | |
5f2bf0fe | 212 | stl_p(ptr + 24, *initrd_addr + *kernel_addr); |
6908d9ce | 213 | stl_p(ptr + 28, *initrd_size); |
636aa70a BS |
214 | break; |
215 | } | |
216 | } | |
217 | } | |
218 | } | |
219 | return kernel_size; | |
220 | } | |
3475187d | 221 | |
e87231d4 | 222 | typedef struct ResetData { |
403d7a2d | 223 | SPARCCPU *cpu; |
44a99354 | 224 | uint64_t prom_addr; |
e87231d4 BS |
225 | } ResetData; |
226 | ||
25c5d5ac MCA |
227 | #define TYPE_SUN4U_POWER "power" |
228 | #define SUN4U_POWER(obj) OBJECT_CHECK(PowerDevice, (obj), TYPE_SUN4U_POWER) | |
229 | ||
230 | typedef struct PowerDevice { | |
231 | SysBusDevice parent_obj; | |
232 | ||
233 | MemoryRegion power_mmio; | |
234 | } PowerDevice; | |
235 | ||
236 | /* Power */ | |
ad280559 PP |
237 | static uint64_t power_mem_read(void *opaque, hwaddr addr, unsigned size) |
238 | { | |
239 | return 0; | |
240 | } | |
241 | ||
25c5d5ac MCA |
242 | static void power_mem_write(void *opaque, hwaddr addr, |
243 | uint64_t val, unsigned size) | |
244 | { | |
245 | /* According to a real Ultra 5, bit 24 controls the power */ | |
246 | if (val & 0x1000000) { | |
247 | qemu_system_shutdown_request(SHUTDOWN_CAUSE_GUEST_SHUTDOWN); | |
248 | } | |
249 | } | |
250 | ||
251 | static const MemoryRegionOps power_mem_ops = { | |
ad280559 | 252 | .read = power_mem_read, |
25c5d5ac MCA |
253 | .write = power_mem_write, |
254 | .endianness = DEVICE_NATIVE_ENDIAN, | |
255 | .valid = { | |
256 | .min_access_size = 4, | |
257 | .max_access_size = 4, | |
258 | }, | |
259 | }; | |
260 | ||
261 | static void power_realize(DeviceState *dev, Error **errp) | |
262 | { | |
263 | PowerDevice *d = SUN4U_POWER(dev); | |
264 | SysBusDevice *sbd = SYS_BUS_DEVICE(dev); | |
265 | ||
266 | memory_region_init_io(&d->power_mmio, OBJECT(dev), &power_mem_ops, d, | |
267 | "power", sizeof(uint32_t)); | |
268 | ||
269 | sysbus_init_mmio(sbd, &d->power_mmio); | |
270 | } | |
271 | ||
272 | static void power_class_init(ObjectClass *klass, void *data) | |
273 | { | |
274 | DeviceClass *dc = DEVICE_CLASS(klass); | |
275 | ||
276 | dc->realize = power_realize; | |
277 | } | |
278 | ||
279 | static const TypeInfo power_info = { | |
280 | .name = TYPE_SUN4U_POWER, | |
281 | .parent = TYPE_SYS_BUS_DEVICE, | |
282 | .instance_size = sizeof(PowerDevice), | |
283 | .class_init = power_class_init, | |
284 | }; | |
285 | ||
4b10c8d7 | 286 | static void ebus_isa_irq_handler(void *opaque, int n, int level) |
1387fe4a | 287 | { |
4b10c8d7 MCA |
288 | EbusState *s = EBUS(opaque); |
289 | qemu_irq irq = s->isa_bus_irqs[n]; | |
290 | ||
291 | /* Pass ISA bus IRQs onto their gpio equivalent */ | |
69520948 | 292 | trace_ebus_isa_irq_handler(n, level); |
4b10c8d7 MCA |
293 | if (irq) { |
294 | qemu_set_irq(irq, level); | |
361dea40 | 295 | } |
1387fe4a BS |
296 | } |
297 | ||
c190ea07 | 298 | /* EBUS (Eight bit bus) bridge */ |
ad6856e8 | 299 | static void ebus_realize(PCIDevice *pci_dev, Error **errp) |
53e3c4f9 | 300 | { |
ad6856e8 | 301 | EbusState *s = EBUS(pci_dev); |
25c5d5ac | 302 | SysBusDevice *sbd; |
0fe22ffb | 303 | DeviceState *dev; |
c796edda | 304 | qemu_irq *isa_irq; |
0fe22ffb MCA |
305 | DriveInfo *fd[MAX_FD]; |
306 | int i; | |
c5e6fb7e | 307 | |
8c40b8d9 MCA |
308 | s->isa_bus = isa_bus_new(DEVICE(pci_dev), get_system_memory(), |
309 | pci_address_space_io(pci_dev), errp); | |
310 | if (!s->isa_bus) { | |
311 | error_setg(errp, "unable to instantiate EBUS ISA bus"); | |
d10e5432 MA |
312 | return; |
313 | } | |
c5e6fb7e | 314 | |
4b10c8d7 MCA |
315 | /* ISA bus */ |
316 | isa_irq = qemu_allocate_irqs(ebus_isa_irq_handler, s, ISA_NUM_IRQS); | |
c796edda | 317 | isa_bus_irqs(s->isa_bus, isa_irq); |
4b10c8d7 MCA |
318 | qdev_init_gpio_out_named(DEVICE(s), s->isa_bus_irqs, "isa-irq", |
319 | ISA_NUM_IRQS); | |
c796edda | 320 | |
0fe22ffb MCA |
321 | /* Serial ports */ |
322 | i = 0; | |
323 | if (s->console_serial_base) { | |
324 | serial_mm_init(pci_address_space(pci_dev), s->console_serial_base, | |
9bca0edb | 325 | 0, NULL, 115200, serial_hd(i), DEVICE_BIG_ENDIAN); |
0fe22ffb MCA |
326 | i++; |
327 | } | |
def337ff | 328 | serial_hds_isa_init(s->isa_bus, i, MAX_ISA_SERIAL_PORTS); |
0fe22ffb MCA |
329 | |
330 | /* Parallel ports */ | |
331 | parallel_hds_isa_init(s->isa_bus, MAX_PARALLEL_PORTS); | |
332 | ||
333 | /* Keyboard */ | |
334 | isa_create_simple(s->isa_bus, "i8042"); | |
335 | ||
336 | /* Floppy */ | |
337 | for (i = 0; i < MAX_FD; i++) { | |
338 | fd[i] = drive_get(IF_FLOPPY, 0, i); | |
339 | } | |
340 | dev = DEVICE(isa_create(s->isa_bus, TYPE_ISA_FDC)); | |
341 | if (fd[0]) { | |
342 | qdev_prop_set_drive(dev, "driveA", blk_by_legacy_dinfo(fd[0]), | |
343 | &error_abort); | |
344 | } | |
345 | if (fd[1]) { | |
346 | qdev_prop_set_drive(dev, "driveB", blk_by_legacy_dinfo(fd[1]), | |
347 | &error_abort); | |
348 | } | |
349 | qdev_prop_set_uint32(dev, "dma", -1); | |
350 | qdev_init_nofail(dev); | |
351 | ||
25c5d5ac MCA |
352 | /* Power */ |
353 | dev = qdev_create(NULL, TYPE_SUN4U_POWER); | |
354 | qdev_init_nofail(dev); | |
355 | sbd = SYS_BUS_DEVICE(dev); | |
356 | memory_region_add_subregion(pci_address_space_io(pci_dev), 0x7240, | |
357 | sysbus_mmio_get_region(sbd, 0)); | |
358 | ||
0fe22ffb | 359 | /* PCI */ |
c5e6fb7e AK |
360 | pci_dev->config[0x04] = 0x06; // command = bus master, pci mem |
361 | pci_dev->config[0x05] = 0x00; | |
362 | pci_dev->config[0x06] = 0xa0; // status = fast back-to-back, 66MHz, no error | |
363 | pci_dev->config[0x07] = 0x03; // status = medium devsel | |
364 | pci_dev->config[0x09] = 0x00; // programming i/f | |
365 | pci_dev->config[0x0D] = 0x0a; // latency_timer | |
366 | ||
0a70e094 PB |
367 | memory_region_init_alias(&s->bar0, OBJECT(s), "bar0", get_system_io(), |
368 | 0, 0x1000000); | |
e824b2cc | 369 | pci_register_bar(pci_dev, 0, PCI_BASE_ADDRESS_SPACE_MEMORY, &s->bar0); |
0a70e094 | 370 | memory_region_init_alias(&s->bar1, OBJECT(s), "bar1", get_system_io(), |
25c5d5ac | 371 | 0, 0x8000); |
a1cf8be5 | 372 | pci_register_bar(pci_dev, 1, PCI_BASE_ADDRESS_SPACE_IO, &s->bar1); |
c190ea07 BS |
373 | } |
374 | ||
0fe22ffb MCA |
375 | static Property ebus_properties[] = { |
376 | DEFINE_PROP_UINT64("console-serial-base", EbusState, | |
377 | console_serial_base, 0), | |
378 | DEFINE_PROP_END_OF_LIST(), | |
379 | }; | |
380 | ||
40021f08 AL |
381 | static void ebus_class_init(ObjectClass *klass, void *data) |
382 | { | |
383 | PCIDeviceClass *k = PCI_DEVICE_CLASS(klass); | |
0fe22ffb | 384 | DeviceClass *dc = DEVICE_CLASS(klass); |
40021f08 | 385 | |
ad6856e8 | 386 | k->realize = ebus_realize; |
40021f08 AL |
387 | k->vendor_id = PCI_VENDOR_ID_SUN; |
388 | k->device_id = PCI_DEVICE_ID_SUN_EBUS; | |
389 | k->revision = 0x01; | |
390 | k->class_id = PCI_CLASS_BRIDGE_OTHER; | |
0fe22ffb | 391 | dc->props = ebus_properties; |
40021f08 AL |
392 | } |
393 | ||
8c43a6f0 | 394 | static const TypeInfo ebus_info = { |
ad6856e8 | 395 | .name = TYPE_EBUS, |
39bffca2 | 396 | .parent = TYPE_PCI_DEVICE, |
39bffca2 | 397 | .class_init = ebus_class_init, |
ad6856e8 | 398 | .instance_size = sizeof(EbusState), |
fd3b02c8 EH |
399 | .interfaces = (InterfaceInfo[]) { |
400 | { INTERFACE_CONVENTIONAL_PCI_DEVICE }, | |
401 | { }, | |
402 | }, | |
53e3c4f9 BS |
403 | }; |
404 | ||
13575cf6 AF |
405 | #define TYPE_OPENPROM "openprom" |
406 | #define OPENPROM(obj) OBJECT_CHECK(PROMState, (obj), TYPE_OPENPROM) | |
407 | ||
d4edce38 | 408 | typedef struct PROMState { |
13575cf6 AF |
409 | SysBusDevice parent_obj; |
410 | ||
d4edce38 AK |
411 | MemoryRegion prom; |
412 | } PROMState; | |
413 | ||
409dbce5 AJ |
414 | static uint64_t translate_prom_address(void *opaque, uint64_t addr) |
415 | { | |
a8170e5e | 416 | hwaddr *base_addr = (hwaddr *)opaque; |
409dbce5 AJ |
417 | return addr + *base_addr - PROM_VADDR; |
418 | } | |
419 | ||
1baffa46 | 420 | /* Boot PROM (OpenBIOS) */ |
a8170e5e | 421 | static void prom_init(hwaddr addr, const char *bios_name) |
1baffa46 BS |
422 | { |
423 | DeviceState *dev; | |
424 | SysBusDevice *s; | |
425 | char *filename; | |
426 | int ret; | |
427 | ||
13575cf6 | 428 | dev = qdev_create(NULL, TYPE_OPENPROM); |
e23a1b33 | 429 | qdev_init_nofail(dev); |
1356b98d | 430 | s = SYS_BUS_DEVICE(dev); |
1baffa46 BS |
431 | |
432 | sysbus_mmio_map(s, 0, addr); | |
433 | ||
434 | /* load boot prom */ | |
435 | if (bios_name == NULL) { | |
436 | bios_name = PROM_FILENAME; | |
437 | } | |
438 | filename = qemu_find_file(QEMU_FILE_TYPE_BIOS, bios_name); | |
439 | if (filename) { | |
4366e1db | 440 | ret = load_elf(filename, NULL, translate_prom_address, &addr, |
7ef295ea | 441 | NULL, NULL, NULL, 1, EM_SPARCV9, 0, 0); |
1baffa46 BS |
442 | if (ret < 0 || ret > PROM_SIZE_MAX) { |
443 | ret = load_image_targphys(filename, addr, PROM_SIZE_MAX); | |
444 | } | |
7267c094 | 445 | g_free(filename); |
1baffa46 BS |
446 | } else { |
447 | ret = -1; | |
448 | } | |
449 | if (ret < 0 || ret > PROM_SIZE_MAX) { | |
29bd7231 | 450 | error_report("could not load prom '%s'", bios_name); |
1baffa46 BS |
451 | exit(1); |
452 | } | |
453 | } | |
454 | ||
92b19880 | 455 | static void prom_realize(DeviceState *ds, Error **errp) |
1baffa46 | 456 | { |
92b19880 TH |
457 | PROMState *s = OPENPROM(ds); |
458 | SysBusDevice *dev = SYS_BUS_DEVICE(ds); | |
459 | Error *local_err = NULL; | |
460 | ||
461 | memory_region_init_ram_nomigrate(&s->prom, OBJECT(ds), "sun4u.prom", | |
462 | PROM_SIZE_MAX, &local_err); | |
463 | if (local_err) { | |
464 | error_propagate(errp, local_err); | |
465 | return; | |
466 | } | |
1baffa46 | 467 | |
c5705a77 | 468 | vmstate_register_ram_global(&s->prom); |
d4edce38 | 469 | memory_region_set_readonly(&s->prom, true); |
750ecd44 | 470 | sysbus_init_mmio(dev, &s->prom); |
1baffa46 BS |
471 | } |
472 | ||
999e12bb AL |
473 | static Property prom_properties[] = { |
474 | {/* end of property list */}, | |
475 | }; | |
476 | ||
477 | static void prom_class_init(ObjectClass *klass, void *data) | |
478 | { | |
39bffca2 | 479 | DeviceClass *dc = DEVICE_CLASS(klass); |
999e12bb | 480 | |
39bffca2 | 481 | dc->props = prom_properties; |
92b19880 | 482 | dc->realize = prom_realize; |
999e12bb AL |
483 | } |
484 | ||
8c43a6f0 | 485 | static const TypeInfo prom_info = { |
13575cf6 | 486 | .name = TYPE_OPENPROM, |
39bffca2 AL |
487 | .parent = TYPE_SYS_BUS_DEVICE, |
488 | .instance_size = sizeof(PROMState), | |
489 | .class_init = prom_class_init, | |
1baffa46 BS |
490 | }; |
491 | ||
bda42033 | 492 | |
88c034d5 AF |
493 | #define TYPE_SUN4U_MEMORY "memory" |
494 | #define SUN4U_RAM(obj) OBJECT_CHECK(RamDevice, (obj), TYPE_SUN4U_MEMORY) | |
495 | ||
496 | typedef struct RamDevice { | |
497 | SysBusDevice parent_obj; | |
498 | ||
d4edce38 | 499 | MemoryRegion ram; |
04843626 | 500 | uint64_t size; |
bda42033 BS |
501 | } RamDevice; |
502 | ||
503 | /* System RAM */ | |
78fb261d | 504 | static void ram_realize(DeviceState *dev, Error **errp) |
bda42033 | 505 | { |
88c034d5 | 506 | RamDevice *d = SUN4U_RAM(dev); |
78fb261d | 507 | SysBusDevice *sbd = SYS_BUS_DEVICE(dev); |
bda42033 | 508 | |
1cfe48c1 | 509 | memory_region_init_ram_nomigrate(&d->ram, OBJECT(d), "sun4u.ram", d->size, |
f8ed85ac | 510 | &error_fatal); |
c5705a77 | 511 | vmstate_register_ram_global(&d->ram); |
78fb261d | 512 | sysbus_init_mmio(sbd, &d->ram); |
bda42033 BS |
513 | } |
514 | ||
a8170e5e | 515 | static void ram_init(hwaddr addr, ram_addr_t RAM_size) |
bda42033 BS |
516 | { |
517 | DeviceState *dev; | |
518 | SysBusDevice *s; | |
519 | RamDevice *d; | |
520 | ||
521 | /* allocate RAM */ | |
88c034d5 | 522 | dev = qdev_create(NULL, TYPE_SUN4U_MEMORY); |
1356b98d | 523 | s = SYS_BUS_DEVICE(dev); |
bda42033 | 524 | |
88c034d5 | 525 | d = SUN4U_RAM(dev); |
bda42033 | 526 | d->size = RAM_size; |
e23a1b33 | 527 | qdev_init_nofail(dev); |
bda42033 BS |
528 | |
529 | sysbus_mmio_map(s, 0, addr); | |
530 | } | |
531 | ||
999e12bb AL |
532 | static Property ram_properties[] = { |
533 | DEFINE_PROP_UINT64("size", RamDevice, size, 0), | |
534 | DEFINE_PROP_END_OF_LIST(), | |
535 | }; | |
536 | ||
537 | static void ram_class_init(ObjectClass *klass, void *data) | |
538 | { | |
39bffca2 | 539 | DeviceClass *dc = DEVICE_CLASS(klass); |
999e12bb | 540 | |
78fb261d | 541 | dc->realize = ram_realize; |
39bffca2 | 542 | dc->props = ram_properties; |
999e12bb AL |
543 | } |
544 | ||
8c43a6f0 | 545 | static const TypeInfo ram_info = { |
88c034d5 | 546 | .name = TYPE_SUN4U_MEMORY, |
39bffca2 AL |
547 | .parent = TYPE_SYS_BUS_DEVICE, |
548 | .instance_size = sizeof(RamDevice), | |
549 | .class_init = ram_class_init, | |
bda42033 BS |
550 | }; |
551 | ||
38bc50f7 | 552 | static void sun4uv_init(MemoryRegion *address_space_mem, |
3ef96221 | 553 | MachineState *machine, |
7b833f5b BS |
554 | const struct hwdef *hwdef) |
555 | { | |
f9d1465f | 556 | SPARCCPU *cpu; |
31688246 | 557 | Nvram *nvram; |
7b833f5b | 558 | unsigned int i; |
5f2bf0fe | 559 | uint64_t initrd_addr, initrd_size, kernel_addr, kernel_size, kernel_entry; |
5795162a | 560 | SabreState *sabre; |
311f2b7a | 561 | PCIBus *pci_bus, *pci_busA, *pci_busB; |
8d932971 | 562 | PCIDevice *ebus, *pci_dev; |
f3b18f35 | 563 | SysBusDevice *s; |
f455e98c | 564 | DriveInfo *hd[MAX_IDE_BUS * MAX_IDE_DEVS]; |
aea5b071 | 565 | DeviceState *iommu, *dev; |
a88b362c | 566 | FWCfgState *fw_cfg; |
8d932971 | 567 | NICInfo *nd; |
6864fa38 MCA |
568 | MACAddr macaddr; |
569 | bool onboard_nic; | |
7b833f5b | 570 | |
7b833f5b | 571 | /* init CPUs */ |
58530461 | 572 | cpu = sparc64_cpu_devinit(machine->cpu_type, hwdef->prom_addr); |
7b833f5b | 573 | |
aea5b071 MCA |
574 | /* IOMMU */ |
575 | iommu = qdev_create(NULL, TYPE_SUN4U_IOMMU); | |
576 | qdev_init_nofail(iommu); | |
577 | ||
bda42033 | 578 | /* set up devices */ |
3ef96221 | 579 | ram_init(0, machine->ram_size); |
3475187d | 580 | |
1baffa46 | 581 | prom_init(hwdef->prom_addr, bios_name); |
3475187d | 582 | |
b14dcaf4 | 583 | /* Init sabre (PCI host bridge) */ |
5795162a MCA |
584 | sabre = SABRE_DEVICE(qdev_create(NULL, TYPE_SABRE)); |
585 | qdev_prop_set_uint64(DEVICE(sabre), "special-base", PBM_SPECIAL_BASE); | |
586 | qdev_prop_set_uint64(DEVICE(sabre), "mem-base", PBM_MEM_BASE); | |
587 | object_property_set_link(OBJECT(sabre), OBJECT(iommu), "iommu", | |
588 | &error_abort); | |
589 | qdev_init_nofail(DEVICE(sabre)); | |
2a4d6af5 MCA |
590 | |
591 | /* Wire up PCI interrupts to CPU */ | |
592 | for (i = 0; i < IVEC_MAX; i++) { | |
5795162a | 593 | qdev_connect_gpio_out_named(DEVICE(sabre), "ivec-irq", i, |
2a4d6af5 MCA |
594 | qdev_get_gpio_in_named(DEVICE(cpu), "ivec-irq", i)); |
595 | } | |
596 | ||
5795162a MCA |
597 | pci_bus = PCI_HOST_BRIDGE(sabre)->bus; |
598 | pci_busA = pci_bridge_get_sec_bus(sabre->bridgeA); | |
599 | pci_busB = pci_bridge_get_sec_bus(sabre->bridgeB); | |
83469015 | 600 | |
5795162a | 601 | /* Only in-built Simba APBs can exist on the root bus, slot 0 on busA is |
6864fa38 MCA |
602 | reserved (leaving no slots free after on-board devices) however slots |
603 | 0-3 are free on busB */ | |
604 | pci_bus->slot_reserved_mask = 0xfffffffc; | |
605 | pci_busA->slot_reserved_mask = 0xfffffff1; | |
606 | pci_busB->slot_reserved_mask = 0xfffffff0; | |
607 | ||
ad6856e8 | 608 | ebus = pci_create_multifunction(pci_busA, PCI_DEVFN(1, 0), true, TYPE_EBUS); |
0fe22ffb MCA |
609 | qdev_prop_set_uint64(DEVICE(ebus), "console-serial-base", |
610 | hwdef->console_serial_base); | |
6864fa38 MCA |
611 | qdev_init_nofail(DEVICE(ebus)); |
612 | ||
5795162a | 613 | /* Wire up "well-known" ISA IRQs to PBM legacy obio IRQs */ |
4b10c8d7 | 614 | qdev_connect_gpio_out_named(DEVICE(ebus), "isa-irq", 7, |
5795162a | 615 | qdev_get_gpio_in_named(DEVICE(sabre), "pbm-irq", OBIO_LPT_IRQ)); |
4b10c8d7 | 616 | qdev_connect_gpio_out_named(DEVICE(ebus), "isa-irq", 6, |
5795162a | 617 | qdev_get_gpio_in_named(DEVICE(sabre), "pbm-irq", OBIO_FDD_IRQ)); |
4b10c8d7 | 618 | qdev_connect_gpio_out_named(DEVICE(ebus), "isa-irq", 1, |
5795162a | 619 | qdev_get_gpio_in_named(DEVICE(sabre), "pbm-irq", OBIO_KBD_IRQ)); |
4b10c8d7 | 620 | qdev_connect_gpio_out_named(DEVICE(ebus), "isa-irq", 12, |
5795162a | 621 | qdev_get_gpio_in_named(DEVICE(sabre), "pbm-irq", OBIO_MSE_IRQ)); |
4b10c8d7 | 622 | qdev_connect_gpio_out_named(DEVICE(ebus), "isa-irq", 4, |
5795162a | 623 | qdev_get_gpio_in_named(DEVICE(sabre), "pbm-irq", OBIO_SER_IRQ)); |
4b10c8d7 | 624 | |
c3019efc TH |
625 | switch (vga_interface_type) { |
626 | case VGA_STD: | |
627 | pci_create_simple(pci_busA, PCI_DEVFN(2, 0), "VGA"); | |
628 | break; | |
629 | case VGA_NONE: | |
630 | break; | |
631 | default: | |
632 | abort(); /* Should not happen - types are checked in vl.c already */ | |
633 | } | |
6864fa38 MCA |
634 | |
635 | memset(&macaddr, 0, sizeof(MACAddr)); | |
636 | onboard_nic = false; | |
8d932971 MCA |
637 | for (i = 0; i < nb_nics; i++) { |
638 | nd = &nd_table[i]; | |
639 | ||
6864fa38 MCA |
640 | if (!nd->model || strcmp(nd->model, "sunhme") == 0) { |
641 | if (!onboard_nic) { | |
642 | pci_dev = pci_create_multifunction(pci_busA, PCI_DEVFN(1, 1), | |
643 | true, "sunhme"); | |
644 | memcpy(&macaddr, &nd->macaddr.a, sizeof(MACAddr)); | |
645 | onboard_nic = true; | |
646 | } else { | |
bcf9e2c2 | 647 | pci_dev = pci_create(pci_busB, -1, "sunhme"); |
6864fa38 | 648 | } |
8d932971 | 649 | } else { |
bcf9e2c2 | 650 | pci_dev = pci_create(pci_busB, -1, nd->model); |
8d932971 | 651 | } |
6864fa38 MCA |
652 | |
653 | dev = &pci_dev->qdev; | |
654 | qdev_set_nic_properties(dev, nd); | |
655 | qdev_init_nofail(dev); | |
656 | } | |
657 | ||
658 | /* If we don't have an onboard NIC, grab a default MAC address so that | |
659 | * we have a valid machine id */ | |
660 | if (!onboard_nic) { | |
661 | qemu_macaddr_default_if_unset(&macaddr); | |
8d932971 | 662 | } |
83469015 | 663 | |
d8f94e1b | 664 | ide_drive_get(hd, ARRAY_SIZE(hd)); |
e4bcb14c | 665 | |
6864fa38 MCA |
666 | pci_dev = pci_create(pci_busA, PCI_DEVFN(3, 0), "cmd646-ide"); |
667 | qdev_prop_set_uint32(&pci_dev->qdev, "secondary", 1); | |
668 | qdev_init_nofail(&pci_dev->qdev); | |
669 | pci_ide_create_devs(pci_dev, hd); | |
3b898dda | 670 | |
f3b18f35 MCA |
671 | /* Map NVRAM into I/O (ebus) space */ |
672 | nvram = m48t59_init(NULL, 0, 0, NVRAM_SIZE, 1968, 59); | |
673 | s = SYS_BUS_DEVICE(nvram); | |
07c84741 | 674 | memory_region_add_subregion(pci_address_space_io(ebus), 0x2000, |
f3b18f35 MCA |
675 | sysbus_mmio_get_region(s, 0)); |
676 | ||
636aa70a | 677 | initrd_size = 0; |
5f2bf0fe | 678 | initrd_addr = 0; |
3ef96221 MA |
679 | kernel_size = sun4u_load_kernel(machine->kernel_filename, |
680 | machine->initrd_filename, | |
5f2bf0fe BS |
681 | ram_size, &initrd_size, &initrd_addr, |
682 | &kernel_addr, &kernel_entry); | |
636aa70a | 683 | |
3ef96221 MA |
684 | sun4u_NVRAM_set_params(nvram, NVRAM_SIZE, "Sun4u", machine->ram_size, |
685 | machine->boot_order, | |
5f2bf0fe | 686 | kernel_addr, kernel_size, |
3ef96221 | 687 | machine->kernel_cmdline, |
5f2bf0fe | 688 | initrd_addr, initrd_size, |
0d31cb99 BS |
689 | /* XXX: need an option to load a NVRAM image */ |
690 | 0, | |
691 | graphic_width, graphic_height, graphic_depth, | |
6864fa38 | 692 | (uint8_t *)&macaddr); |
83469015 | 693 | |
d6acc8a5 MCA |
694 | dev = qdev_create(NULL, TYPE_FW_CFG_IO); |
695 | qdev_prop_set_bit(dev, "dma_enabled", false); | |
07c84741 | 696 | object_property_add_child(OBJECT(ebus), TYPE_FW_CFG, OBJECT(dev), NULL); |
d6acc8a5 | 697 | qdev_init_nofail(dev); |
07c84741 | 698 | memory_region_add_subregion(pci_address_space_io(ebus), BIOS_CFG_IOPORT, |
d6acc8a5 MCA |
699 | &FW_CFG_IO(dev)->comb_iomem); |
700 | ||
701 | fw_cfg = FW_CFG(dev); | |
33decbd2 LX |
702 | fw_cfg_add_i16(fw_cfg, FW_CFG_NB_CPUS, (uint16_t)machine->smp.cpus); |
703 | fw_cfg_add_i16(fw_cfg, FW_CFG_MAX_CPUS, (uint16_t)machine->smp.max_cpus); | |
905fdcb5 BS |
704 | fw_cfg_add_i64(fw_cfg, FW_CFG_RAM_SIZE, (uint64_t)ram_size); |
705 | fw_cfg_add_i16(fw_cfg, FW_CFG_MACHINE_ID, hwdef->machine_id); | |
5f2bf0fe BS |
706 | fw_cfg_add_i64(fw_cfg, FW_CFG_KERNEL_ADDR, kernel_entry); |
707 | fw_cfg_add_i64(fw_cfg, FW_CFG_KERNEL_SIZE, kernel_size); | |
3ef96221 | 708 | if (machine->kernel_cmdline) { |
9c9b0512 | 709 | fw_cfg_add_i32(fw_cfg, FW_CFG_CMDLINE_SIZE, |
3ef96221 MA |
710 | strlen(machine->kernel_cmdline) + 1); |
711 | fw_cfg_add_string(fw_cfg, FW_CFG_CMDLINE_DATA, machine->kernel_cmdline); | |
513f789f | 712 | } else { |
9c9b0512 | 713 | fw_cfg_add_i32(fw_cfg, FW_CFG_CMDLINE_SIZE, 0); |
513f789f | 714 | } |
5f2bf0fe BS |
715 | fw_cfg_add_i64(fw_cfg, FW_CFG_INITRD_ADDR, initrd_addr); |
716 | fw_cfg_add_i64(fw_cfg, FW_CFG_INITRD_SIZE, initrd_size); | |
3ef96221 | 717 | fw_cfg_add_i16(fw_cfg, FW_CFG_BOOT_DEVICE, machine->boot_order[0]); |
7589690c BS |
718 | |
719 | fw_cfg_add_i16(fw_cfg, FW_CFG_SPARC64_WIDTH, graphic_width); | |
720 | fw_cfg_add_i16(fw_cfg, FW_CFG_SPARC64_HEIGHT, graphic_height); | |
721 | fw_cfg_add_i16(fw_cfg, FW_CFG_SPARC64_DEPTH, graphic_depth); | |
722 | ||
513f789f | 723 | qemu_register_boot_set(fw_cfg_boot_set, fw_cfg); |
3475187d FB |
724 | } |
725 | ||
905fdcb5 BS |
726 | enum { |
727 | sun4u_id = 0, | |
728 | sun4v_id = 64, | |
729 | }; | |
730 | ||
0a1d5c45 MCA |
731 | /* |
732 | * Implementation of an interface to adjust firmware path | |
733 | * for the bootindex property handling. | |
734 | */ | |
735 | static char *sun4u_fw_dev_path(FWPathProvider *p, BusState *bus, | |
736 | DeviceState *dev) | |
737 | { | |
738 | PCIDevice *pci; | |
739 | IDEBus *ide_bus; | |
740 | IDEState *ide_s; | |
741 | int bus_id; | |
742 | ||
743 | if (!strcmp(object_get_typename(OBJECT(dev)), "pbm-bridge")) { | |
744 | pci = PCI_DEVICE(dev); | |
745 | ||
746 | if (PCI_FUNC(pci->devfn)) { | |
747 | return g_strdup_printf("pci@%x,%x", PCI_SLOT(pci->devfn), | |
748 | PCI_FUNC(pci->devfn)); | |
749 | } else { | |
750 | return g_strdup_printf("pci@%x", PCI_SLOT(pci->devfn)); | |
751 | } | |
752 | } | |
753 | ||
754 | if (!strcmp(object_get_typename(OBJECT(dev)), "ide-drive")) { | |
755 | ide_bus = IDE_BUS(qdev_get_parent_bus(dev)); | |
756 | ide_s = idebus_active_if(ide_bus); | |
757 | bus_id = ide_bus->bus_id; | |
758 | ||
759 | if (ide_s->drive_kind == IDE_CD) { | |
760 | return g_strdup_printf("ide@%x/cdrom", bus_id); | |
761 | } | |
762 | ||
763 | return g_strdup_printf("ide@%x/disk", bus_id); | |
764 | } | |
765 | ||
766 | if (!strcmp(object_get_typename(OBJECT(dev)), "ide-hd")) { | |
767 | return g_strdup("disk"); | |
768 | } | |
769 | ||
770 | if (!strcmp(object_get_typename(OBJECT(dev)), "ide-cd")) { | |
771 | return g_strdup("cdrom"); | |
772 | } | |
773 | ||
774 | if (!strcmp(object_get_typename(OBJECT(dev)), "virtio-blk-device")) { | |
775 | return g_strdup("disk"); | |
776 | } | |
777 | ||
778 | return NULL; | |
779 | } | |
780 | ||
c7ba218d BS |
781 | static const struct hwdef hwdefs[] = { |
782 | /* Sun4u generic PC-like machine */ | |
783 | { | |
905fdcb5 | 784 | .machine_id = sun4u_id, |
e87231d4 BS |
785 | .prom_addr = 0x1fff0000000ULL, |
786 | .console_serial_base = 0, | |
c7ba218d BS |
787 | }, |
788 | /* Sun4v generic PC-like machine */ | |
789 | { | |
905fdcb5 | 790 | .machine_id = sun4v_id, |
e87231d4 BS |
791 | .prom_addr = 0x1fff0000000ULL, |
792 | .console_serial_base = 0, | |
793 | }, | |
c7ba218d BS |
794 | }; |
795 | ||
796 | /* Sun4u hardware initialisation */ | |
3ef96221 | 797 | static void sun4u_init(MachineState *machine) |
5f072e1f | 798 | { |
3ef96221 | 799 | sun4uv_init(get_system_memory(), machine, &hwdefs[0]); |
c7ba218d BS |
800 | } |
801 | ||
802 | /* Sun4v hardware initialisation */ | |
3ef96221 | 803 | static void sun4v_init(MachineState *machine) |
5f072e1f | 804 | { |
3ef96221 | 805 | sun4uv_init(get_system_memory(), machine, &hwdefs[1]); |
c7ba218d BS |
806 | } |
807 | ||
8a661aea | 808 | static void sun4u_class_init(ObjectClass *oc, void *data) |
e264d29d | 809 | { |
8a661aea | 810 | MachineClass *mc = MACHINE_CLASS(oc); |
0a1d5c45 | 811 | FWPathProviderClass *fwc = FW_PATH_PROVIDER_CLASS(oc); |
8a661aea | 812 | |
e264d29d EH |
813 | mc->desc = "Sun4u platform"; |
814 | mc->init = sun4u_init; | |
2059839b | 815 | mc->block_default_type = IF_IDE; |
e264d29d EH |
816 | mc->max_cpus = 1; /* XXX for now */ |
817 | mc->is_default = 1; | |
818 | mc->default_boot_order = "c"; | |
58530461 | 819 | mc->default_cpu_type = SPARC_CPU_TYPE_NAME("TI-UltraSparc-IIi"); |
0a1d5c45 | 820 | mc->ignore_boot_device_suffixes = true; |
9aed808e | 821 | mc->default_display = "std"; |
0a1d5c45 | 822 | fwc->get_dev_path = sun4u_fw_dev_path; |
e264d29d | 823 | } |
c7ba218d | 824 | |
8a661aea AF |
825 | static const TypeInfo sun4u_type = { |
826 | .name = MACHINE_TYPE_NAME("sun4u"), | |
827 | .parent = TYPE_MACHINE, | |
828 | .class_init = sun4u_class_init, | |
0a1d5c45 MCA |
829 | .interfaces = (InterfaceInfo[]) { |
830 | { TYPE_FW_PATH_PROVIDER }, | |
831 | { } | |
832 | }, | |
8a661aea | 833 | }; |
e87231d4 | 834 | |
8a661aea | 835 | static void sun4v_class_init(ObjectClass *oc, void *data) |
e264d29d | 836 | { |
8a661aea AF |
837 | MachineClass *mc = MACHINE_CLASS(oc); |
838 | ||
e264d29d EH |
839 | mc->desc = "Sun4v platform"; |
840 | mc->init = sun4v_init; | |
2059839b | 841 | mc->block_default_type = IF_IDE; |
e264d29d EH |
842 | mc->max_cpus = 1; /* XXX for now */ |
843 | mc->default_boot_order = "c"; | |
58530461 | 844 | mc->default_cpu_type = SPARC_CPU_TYPE_NAME("Sun-UltraSparc-T1"); |
9aed808e | 845 | mc->default_display = "std"; |
e264d29d EH |
846 | } |
847 | ||
8a661aea AF |
848 | static const TypeInfo sun4v_type = { |
849 | .name = MACHINE_TYPE_NAME("sun4v"), | |
850 | .parent = TYPE_MACHINE, | |
851 | .class_init = sun4v_class_init, | |
852 | }; | |
e264d29d | 853 | |
83f7d43a AF |
854 | static void sun4u_register_types(void) |
855 | { | |
25c5d5ac | 856 | type_register_static(&power_info); |
83f7d43a AF |
857 | type_register_static(&ebus_info); |
858 | type_register_static(&prom_info); | |
859 | type_register_static(&ram_info); | |
83f7d43a | 860 | |
8a661aea AF |
861 | type_register_static(&sun4u_type); |
862 | type_register_static(&sun4v_type); | |
8a661aea AF |
863 | } |
864 | ||
83f7d43a | 865 | type_init(sun4u_register_types) |