1 /* 2 * QEMU PowerPC PowerNV machine model 3 * 4 * Copyright (c) 2016, IBM Corporation. 5 * 6 * This library is free software; you can redistribute it and/or 7 * modify it under the terms of the GNU Lesser General Public 8 * License as published by the Free Software Foundation; either 9 * version 2.1 of the License, or (at your option) any later version. 10 * 11 * This library is distributed in the hope that it will be useful, 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 14 * Lesser General Public License for more details. 15 * 16 * You should have received a copy of the GNU Lesser General Public 17 * License along with this library; if not, see <http://www.gnu.org/licenses/>. 18 */ 19 20 #include "qemu/osdep.h" 21 #include "qemu-common.h" 22 #include "qemu/datadir.h" 23 #include "qemu/units.h" 24 #include "qemu/cutils.h" 25 #include "qapi/error.h" 26 #include "sysemu/qtest.h" 27 #include "sysemu/sysemu.h" 28 #include "sysemu/numa.h" 29 #include "sysemu/reset.h" 30 #include "sysemu/runstate.h" 31 #include "sysemu/cpus.h" 32 #include "sysemu/device_tree.h" 33 #include "sysemu/hw_accel.h" 34 #include "target/ppc/cpu.h" 35 #include "hw/ppc/fdt.h" 36 #include "hw/ppc/ppc.h" 37 #include "hw/ppc/pnv.h" 38 #include "hw/ppc/pnv_core.h" 39 #include "hw/loader.h" 40 #include "hw/nmi.h" 41 #include "qapi/visitor.h" 42 #include "monitor/monitor.h" 43 #include "hw/intc/intc.h" 44 #include "hw/ipmi/ipmi.h" 45 #include "target/ppc/mmu-hash64.h" 46 #include "hw/pci/msi.h" 47 48 #include "hw/ppc/xics.h" 49 #include "hw/qdev-properties.h" 50 #include "hw/ppc/pnv_xscom.h" 51 #include "hw/ppc/pnv_pnor.h" 52 53 #include "hw/isa/isa.h" 54 #include "hw/char/serial.h" 55 #include "hw/rtc/mc146818rtc.h" 56 57 #include <libfdt.h> 58 59 #define FDT_MAX_SIZE (1 * MiB) 60 61 #define FW_FILE_NAME "skiboot.lid" 62 #define FW_LOAD_ADDR 0x0 63 #define FW_MAX_SIZE (16 * MiB) 64 65 #define KERNEL_LOAD_ADDR 0x20000000 66 #define KERNEL_MAX_SIZE (128 * MiB) 67 #define INITRD_LOAD_ADDR 0x28000000 68 #define INITRD_MAX_SIZE (128 * MiB) 69 70 static const char *pnv_chip_core_typename(const PnvChip *o) 71 { 72 const char *chip_type = object_class_get_name(object_get_class(OBJECT(o))); 73 int len = strlen(chip_type) - strlen(PNV_CHIP_TYPE_SUFFIX); 74 char *s = g_strdup_printf(PNV_CORE_TYPE_NAME("%.*s"), len, chip_type); 75 const char *core_type = object_class_get_name(object_class_by_name(s)); 76 g_free(s); 77 return core_type; 78 } 79 80 /* 81 * On Power Systems E880 (POWER8), the max cpus (threads) should be : 82 * 4 * 4 sockets * 12 cores * 8 threads = 1536 83 * Let's make it 2^11 84 */ 85 #define MAX_CPUS 2048 86 87 /* 88 * Memory nodes are created by hostboot, one for each range of memory 89 * that has a different "affinity". In practice, it means one range 90 * per chip. 91 */ 92 static void pnv_dt_memory(void *fdt, int chip_id, hwaddr start, hwaddr size) 93 { 94 char *mem_name; 95 uint64_t mem_reg_property[2]; 96 int off; 97 98 mem_reg_property[0] = cpu_to_be64(start); 99 mem_reg_property[1] = cpu_to_be64(size); 100 101 mem_name = g_strdup_printf("memory@%"HWADDR_PRIx, start); 102 off = fdt_add_subnode(fdt, 0, mem_name); 103 g_free(mem_name); 104 105 _FDT((fdt_setprop_string(fdt, off, "device_type", "memory"))); 106 _FDT((fdt_setprop(fdt, off, "reg", mem_reg_property, 107 sizeof(mem_reg_property)))); 108 _FDT((fdt_setprop_cell(fdt, off, "ibm,chip-id", chip_id))); 109 } 110 111 static int get_cpus_node(void *fdt) 112 { 113 int cpus_offset = fdt_path_offset(fdt, "/cpus"); 114 115 if (cpus_offset < 0) { 116 cpus_offset = fdt_add_subnode(fdt, 0, "cpus"); 117 if (cpus_offset) { 118 _FDT((fdt_setprop_cell(fdt, cpus_offset, "#address-cells", 0x1))); 119 _FDT((fdt_setprop_cell(fdt, cpus_offset, "#size-cells", 0x0))); 120 } 121 } 122 _FDT(cpus_offset); 123 return cpus_offset; 124 } 125 126 /* 127 * The PowerNV cores (and threads) need to use real HW ids and not an 128 * incremental index like it has been done on other platforms. This HW 129 * id is stored in the CPU PIR, it is used to create cpu nodes in the 130 * device tree, used in XSCOM to address cores and in interrupt 131 * servers. 132 */ 133 static void pnv_dt_core(PnvChip *chip, PnvCore *pc, void *fdt) 134 { 135 PowerPCCPU *cpu = pc->threads[0]; 136 CPUState *cs = CPU(cpu); 137 DeviceClass *dc = DEVICE_GET_CLASS(cs); 138 int smt_threads = CPU_CORE(pc)->nr_threads; 139 CPUPPCState *env = &cpu->env; 140 PowerPCCPUClass *pcc = POWERPC_CPU_GET_CLASS(cs); 141 uint32_t servers_prop[smt_threads]; 142 int i; 143 uint32_t segs[] = {cpu_to_be32(28), cpu_to_be32(40), 144 0xffffffff, 0xffffffff}; 145 uint32_t tbfreq = PNV_TIMEBASE_FREQ; 146 uint32_t cpufreq = 1000000000; 147 uint32_t page_sizes_prop[64]; 148 size_t page_sizes_prop_size; 149 const uint8_t pa_features[] = { 24, 0, 150 0xf6, 0x3f, 0xc7, 0xc0, 0x80, 0xf0, 151 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 152 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 153 0x80, 0x00, 0x80, 0x00, 0x80, 0x00 }; 154 int offset; 155 char *nodename; 156 int cpus_offset = get_cpus_node(fdt); 157 158 nodename = g_strdup_printf("%s@%x", dc->fw_name, pc->pir); 159 offset = fdt_add_subnode(fdt, cpus_offset, nodename); 160 _FDT(offset); 161 g_free(nodename); 162 163 _FDT((fdt_setprop_cell(fdt, offset, "ibm,chip-id", chip->chip_id))); 164 165 _FDT((fdt_setprop_cell(fdt, offset, "reg", pc->pir))); 166 _FDT((fdt_setprop_cell(fdt, offset, "ibm,pir", pc->pir))); 167 _FDT((fdt_setprop_string(fdt, offset, "device_type", "cpu"))); 168 169 _FDT((fdt_setprop_cell(fdt, offset, "cpu-version", env->spr[SPR_PVR]))); 170 _FDT((fdt_setprop_cell(fdt, offset, "d-cache-block-size", 171 env->dcache_line_size))); 172 _FDT((fdt_setprop_cell(fdt, offset, "d-cache-line-size", 173 env->dcache_line_size))); 174 _FDT((fdt_setprop_cell(fdt, offset, "i-cache-block-size", 175 env->icache_line_size))); 176 _FDT((fdt_setprop_cell(fdt, offset, "i-cache-line-size", 177 env->icache_line_size))); 178 179 if (pcc->l1_dcache_size) { 180 _FDT((fdt_setprop_cell(fdt, offset, "d-cache-size", 181 pcc->l1_dcache_size))); 182 } else { 183 warn_report("Unknown L1 dcache size for cpu"); 184 } 185 if (pcc->l1_icache_size) { 186 _FDT((fdt_setprop_cell(fdt, offset, "i-cache-size", 187 pcc->l1_icache_size))); 188 } else { 189 warn_report("Unknown L1 icache size for cpu"); 190 } 191 192 _FDT((fdt_setprop_cell(fdt, offset, "timebase-frequency", tbfreq))); 193 _FDT((fdt_setprop_cell(fdt, offset, "clock-frequency", cpufreq))); 194 _FDT((fdt_setprop_cell(fdt, offset, "ibm,slb-size", 195 cpu->hash64_opts->slb_size))); 196 _FDT((fdt_setprop_string(fdt, offset, "status", "okay"))); 197 _FDT((fdt_setprop(fdt, offset, "64-bit", NULL, 0))); 198 199 if (ppc_has_spr(cpu, SPR_PURR)) { 200 _FDT((fdt_setprop(fdt, offset, "ibm,purr", NULL, 0))); 201 } 202 203 if (ppc_hash64_has(cpu, PPC_HASH64_1TSEG)) { 204 _FDT((fdt_setprop(fdt, offset, "ibm,processor-segment-sizes", 205 segs, sizeof(segs)))); 206 } 207 208 /* 209 * Advertise VMX/VSX (vector extensions) if available 210 * 0 / no property == no vector extensions 211 * 1 == VMX / Altivec available 212 * 2 == VSX available 213 */ 214 if (env->insns_flags & PPC_ALTIVEC) { 215 uint32_t vmx = (env->insns_flags2 & PPC2_VSX) ? 2 : 1; 216 217 _FDT((fdt_setprop_cell(fdt, offset, "ibm,vmx", vmx))); 218 } 219 220 /* 221 * Advertise DFP (Decimal Floating Point) if available 222 * 0 / no property == no DFP 223 * 1 == DFP available 224 */ 225 if (env->insns_flags2 & PPC2_DFP) { 226 _FDT((fdt_setprop_cell(fdt, offset, "ibm,dfp", 1))); 227 } 228 229 page_sizes_prop_size = ppc_create_page_sizes_prop(cpu, page_sizes_prop, 230 sizeof(page_sizes_prop)); 231 if (page_sizes_prop_size) { 232 _FDT((fdt_setprop(fdt, offset, "ibm,segment-page-sizes", 233 page_sizes_prop, page_sizes_prop_size))); 234 } 235 236 _FDT((fdt_setprop(fdt, offset, "ibm,pa-features", 237 pa_features, sizeof(pa_features)))); 238 239 /* Build interrupt servers properties */ 240 for (i = 0; i < smt_threads; i++) { 241 servers_prop[i] = cpu_to_be32(pc->pir + i); 242 } 243 _FDT((fdt_setprop(fdt, offset, "ibm,ppc-interrupt-server#s", 244 servers_prop, sizeof(servers_prop)))); 245 } 246 247 static void pnv_dt_icp(PnvChip *chip, void *fdt, uint32_t pir, 248 uint32_t nr_threads) 249 { 250 uint64_t addr = PNV_ICP_BASE(chip) | (pir << 12); 251 char *name; 252 const char compat[] = "IBM,power8-icp\0IBM,ppc-xicp"; 253 uint32_t irange[2], i, rsize; 254 uint64_t *reg; 255 int offset; 256 257 irange[0] = cpu_to_be32(pir); 258 irange[1] = cpu_to_be32(nr_threads); 259 260 rsize = sizeof(uint64_t) * 2 * nr_threads; 261 reg = g_malloc(rsize); 262 for (i = 0; i < nr_threads; i++) { 263 reg[i * 2] = cpu_to_be64(addr | ((pir + i) * 0x1000)); 264 reg[i * 2 + 1] = cpu_to_be64(0x1000); 265 } 266 267 name = g_strdup_printf("interrupt-controller@%"PRIX64, addr); 268 offset = fdt_add_subnode(fdt, 0, name); 269 _FDT(offset); 270 g_free(name); 271 272 _FDT((fdt_setprop(fdt, offset, "compatible", compat, sizeof(compat)))); 273 _FDT((fdt_setprop(fdt, offset, "reg", reg, rsize))); 274 _FDT((fdt_setprop_string(fdt, offset, "device_type", 275 "PowerPC-External-Interrupt-Presentation"))); 276 _FDT((fdt_setprop(fdt, offset, "interrupt-controller", NULL, 0))); 277 _FDT((fdt_setprop(fdt, offset, "ibm,interrupt-server-ranges", 278 irange, sizeof(irange)))); 279 _FDT((fdt_setprop_cell(fdt, offset, "#interrupt-cells", 1))); 280 _FDT((fdt_setprop_cell(fdt, offset, "#address-cells", 0))); 281 g_free(reg); 282 } 283 284 static void pnv_chip_power8_dt_populate(PnvChip *chip, void *fdt) 285 { 286 static const char compat[] = "ibm,power8-xscom\0ibm,xscom"; 287 int i; 288 289 pnv_dt_xscom(chip, fdt, 0, 290 cpu_to_be64(PNV_XSCOM_BASE(chip)), 291 cpu_to_be64(PNV_XSCOM_SIZE), 292 compat, sizeof(compat)); 293 294 for (i = 0; i < chip->nr_cores; i++) { 295 PnvCore *pnv_core = chip->cores[i]; 296 297 pnv_dt_core(chip, pnv_core, fdt); 298 299 /* Interrupt Control Presenters (ICP). One per core. */ 300 pnv_dt_icp(chip, fdt, pnv_core->pir, CPU_CORE(pnv_core)->nr_threads); 301 } 302 303 if (chip->ram_size) { 304 pnv_dt_memory(fdt, chip->chip_id, chip->ram_start, chip->ram_size); 305 } 306 } 307 308 static void pnv_chip_power9_dt_populate(PnvChip *chip, void *fdt) 309 { 310 static const char compat[] = "ibm,power9-xscom\0ibm,xscom"; 311 int i; 312 313 pnv_dt_xscom(chip, fdt, 0, 314 cpu_to_be64(PNV9_XSCOM_BASE(chip)), 315 cpu_to_be64(PNV9_XSCOM_SIZE), 316 compat, sizeof(compat)); 317 318 for (i = 0; i < chip->nr_cores; i++) { 319 PnvCore *pnv_core = chip->cores[i]; 320 321 pnv_dt_core(chip, pnv_core, fdt); 322 } 323 324 if (chip->ram_size) { 325 pnv_dt_memory(fdt, chip->chip_id, chip->ram_start, chip->ram_size); 326 } 327 328 pnv_dt_lpc(chip, fdt, 0, PNV9_LPCM_BASE(chip), PNV9_LPCM_SIZE); 329 } 330 331 static void pnv_chip_power10_dt_populate(PnvChip *chip, void *fdt) 332 { 333 static const char compat[] = "ibm,power10-xscom\0ibm,xscom"; 334 int i; 335 336 pnv_dt_xscom(chip, fdt, 0, 337 cpu_to_be64(PNV10_XSCOM_BASE(chip)), 338 cpu_to_be64(PNV10_XSCOM_SIZE), 339 compat, sizeof(compat)); 340 341 for (i = 0; i < chip->nr_cores; i++) { 342 PnvCore *pnv_core = chip->cores[i]; 343 344 pnv_dt_core(chip, pnv_core, fdt); 345 } 346 347 if (chip->ram_size) { 348 pnv_dt_memory(fdt, chip->chip_id, chip->ram_start, chip->ram_size); 349 } 350 351 pnv_dt_lpc(chip, fdt, 0, PNV10_LPCM_BASE(chip), PNV10_LPCM_SIZE); 352 } 353 354 static void pnv_dt_rtc(ISADevice *d, void *fdt, int lpc_off) 355 { 356 uint32_t io_base = d->ioport_id; 357 uint32_t io_regs[] = { 358 cpu_to_be32(1), 359 cpu_to_be32(io_base), 360 cpu_to_be32(2) 361 }; 362 char *name; 363 int node; 364 365 name = g_strdup_printf("%s@i%x", qdev_fw_name(DEVICE(d)), io_base); 366 node = fdt_add_subnode(fdt, lpc_off, name); 367 _FDT(node); 368 g_free(name); 369 370 _FDT((fdt_setprop(fdt, node, "reg", io_regs, sizeof(io_regs)))); 371 _FDT((fdt_setprop_string(fdt, node, "compatible", "pnpPNP,b00"))); 372 } 373 374 static void pnv_dt_serial(ISADevice *d, void *fdt, int lpc_off) 375 { 376 const char compatible[] = "ns16550\0pnpPNP,501"; 377 uint32_t io_base = d->ioport_id; 378 uint32_t io_regs[] = { 379 cpu_to_be32(1), 380 cpu_to_be32(io_base), 381 cpu_to_be32(8) 382 }; 383 uint32_t irq; 384 char *name; 385 int node; 386 387 irq = object_property_get_uint(OBJECT(d), "irq", &error_fatal); 388 389 name = g_strdup_printf("%s@i%x", qdev_fw_name(DEVICE(d)), io_base); 390 node = fdt_add_subnode(fdt, lpc_off, name); 391 _FDT(node); 392 g_free(name); 393 394 _FDT((fdt_setprop(fdt, node, "reg", io_regs, sizeof(io_regs)))); 395 _FDT((fdt_setprop(fdt, node, "compatible", compatible, 396 sizeof(compatible)))); 397 398 _FDT((fdt_setprop_cell(fdt, node, "clock-frequency", 1843200))); 399 _FDT((fdt_setprop_cell(fdt, node, "current-speed", 115200))); 400 _FDT((fdt_setprop_cell(fdt, node, "interrupts", irq))); 401 _FDT((fdt_setprop_cell(fdt, node, "interrupt-parent", 402 fdt_get_phandle(fdt, lpc_off)))); 403 404 /* This is needed by Linux */ 405 _FDT((fdt_setprop_string(fdt, node, "device_type", "serial"))); 406 } 407 408 static void pnv_dt_ipmi_bt(ISADevice *d, void *fdt, int lpc_off) 409 { 410 const char compatible[] = "bt\0ipmi-bt"; 411 uint32_t io_base; 412 uint32_t io_regs[] = { 413 cpu_to_be32(1), 414 0, /* 'io_base' retrieved from the 'ioport' property of 'isa-ipmi-bt' */ 415 cpu_to_be32(3) 416 }; 417 uint32_t irq; 418 char *name; 419 int node; 420 421 io_base = object_property_get_int(OBJECT(d), "ioport", &error_fatal); 422 io_regs[1] = cpu_to_be32(io_base); 423 424 irq = object_property_get_int(OBJECT(d), "irq", &error_fatal); 425 426 name = g_strdup_printf("%s@i%x", qdev_fw_name(DEVICE(d)), io_base); 427 node = fdt_add_subnode(fdt, lpc_off, name); 428 _FDT(node); 429 g_free(name); 430 431 _FDT((fdt_setprop(fdt, node, "reg", io_regs, sizeof(io_regs)))); 432 _FDT((fdt_setprop(fdt, node, "compatible", compatible, 433 sizeof(compatible)))); 434 435 /* Mark it as reserved to avoid Linux trying to claim it */ 436 _FDT((fdt_setprop_string(fdt, node, "status", "reserved"))); 437 _FDT((fdt_setprop_cell(fdt, node, "interrupts", irq))); 438 _FDT((fdt_setprop_cell(fdt, node, "interrupt-parent", 439 fdt_get_phandle(fdt, lpc_off)))); 440 } 441 442 typedef struct ForeachPopulateArgs { 443 void *fdt; 444 int offset; 445 } ForeachPopulateArgs; 446 447 static int pnv_dt_isa_device(DeviceState *dev, void *opaque) 448 { 449 ForeachPopulateArgs *args = opaque; 450 ISADevice *d = ISA_DEVICE(dev); 451 452 if (object_dynamic_cast(OBJECT(dev), TYPE_MC146818_RTC)) { 453 pnv_dt_rtc(d, args->fdt, args->offset); 454 } else if (object_dynamic_cast(OBJECT(dev), TYPE_ISA_SERIAL)) { 455 pnv_dt_serial(d, args->fdt, args->offset); 456 } else if (object_dynamic_cast(OBJECT(dev), "isa-ipmi-bt")) { 457 pnv_dt_ipmi_bt(d, args->fdt, args->offset); 458 } else { 459 error_report("unknown isa device %s@i%x", qdev_fw_name(dev), 460 d->ioport_id); 461 } 462 463 return 0; 464 } 465 466 /* 467 * The default LPC bus of a multichip system is on chip 0. It's 468 * recognized by the firmware (skiboot) using a "primary" property. 469 */ 470 static void pnv_dt_isa(PnvMachineState *pnv, void *fdt) 471 { 472 int isa_offset = fdt_path_offset(fdt, pnv->chips[0]->dt_isa_nodename); 473 ForeachPopulateArgs args = { 474 .fdt = fdt, 475 .offset = isa_offset, 476 }; 477 uint32_t phandle; 478 479 _FDT((fdt_setprop(fdt, isa_offset, "primary", NULL, 0))); 480 481 phandle = qemu_fdt_alloc_phandle(fdt); 482 assert(phandle > 0); 483 _FDT((fdt_setprop_cell(fdt, isa_offset, "phandle", phandle))); 484 485 /* 486 * ISA devices are not necessarily parented to the ISA bus so we 487 * can not use object_child_foreach() 488 */ 489 qbus_walk_children(BUS(pnv->isa_bus), pnv_dt_isa_device, NULL, NULL, NULL, 490 &args); 491 } 492 493 static void pnv_dt_power_mgt(PnvMachineState *pnv, void *fdt) 494 { 495 int off; 496 497 off = fdt_add_subnode(fdt, 0, "ibm,opal"); 498 off = fdt_add_subnode(fdt, off, "power-mgt"); 499 500 _FDT(fdt_setprop_cell(fdt, off, "ibm,enabled-stop-levels", 0xc0000000)); 501 } 502 503 static void *pnv_dt_create(MachineState *machine) 504 { 505 PnvMachineClass *pmc = PNV_MACHINE_GET_CLASS(machine); 506 PnvMachineState *pnv = PNV_MACHINE(machine); 507 void *fdt; 508 char *buf; 509 int off; 510 int i; 511 512 fdt = g_malloc0(FDT_MAX_SIZE); 513 _FDT((fdt_create_empty_tree(fdt, FDT_MAX_SIZE))); 514 515 /* /qemu node */ 516 _FDT((fdt_add_subnode(fdt, 0, "qemu"))); 517 518 /* Root node */ 519 _FDT((fdt_setprop_cell(fdt, 0, "#address-cells", 0x2))); 520 _FDT((fdt_setprop_cell(fdt, 0, "#size-cells", 0x2))); 521 _FDT((fdt_setprop_string(fdt, 0, "model", 522 "IBM PowerNV (emulated by qemu)"))); 523 _FDT((fdt_setprop(fdt, 0, "compatible", pmc->compat, pmc->compat_size))); 524 525 buf = qemu_uuid_unparse_strdup(&qemu_uuid); 526 _FDT((fdt_setprop_string(fdt, 0, "vm,uuid", buf))); 527 if (qemu_uuid_set) { 528 _FDT((fdt_setprop_string(fdt, 0, "system-id", buf))); 529 } 530 g_free(buf); 531 532 off = fdt_add_subnode(fdt, 0, "chosen"); 533 if (machine->kernel_cmdline) { 534 _FDT((fdt_setprop_string(fdt, off, "bootargs", 535 machine->kernel_cmdline))); 536 } 537 538 if (pnv->initrd_size) { 539 uint32_t start_prop = cpu_to_be32(pnv->initrd_base); 540 uint32_t end_prop = cpu_to_be32(pnv->initrd_base + pnv->initrd_size); 541 542 _FDT((fdt_setprop(fdt, off, "linux,initrd-start", 543 &start_prop, sizeof(start_prop)))); 544 _FDT((fdt_setprop(fdt, off, "linux,initrd-end", 545 &end_prop, sizeof(end_prop)))); 546 } 547 548 /* Populate device tree for each chip */ 549 for (i = 0; i < pnv->num_chips; i++) { 550 PNV_CHIP_GET_CLASS(pnv->chips[i])->dt_populate(pnv->chips[i], fdt); 551 } 552 553 /* Populate ISA devices on chip 0 */ 554 pnv_dt_isa(pnv, fdt); 555 556 if (pnv->bmc) { 557 pnv_dt_bmc_sensors(pnv->bmc, fdt); 558 } 559 560 /* Create an extra node for power management on machines that support it */ 561 if (pmc->dt_power_mgt) { 562 pmc->dt_power_mgt(pnv, fdt); 563 } 564 565 return fdt; 566 } 567 568 static void pnv_powerdown_notify(Notifier *n, void *opaque) 569 { 570 PnvMachineState *pnv = container_of(n, PnvMachineState, powerdown_notifier); 571 572 if (pnv->bmc) { 573 pnv_bmc_powerdown(pnv->bmc); 574 } 575 } 576 577 static void pnv_reset(MachineState *machine) 578 { 579 PnvMachineState *pnv = PNV_MACHINE(machine); 580 IPMIBmc *bmc; 581 void *fdt; 582 583 qemu_devices_reset(); 584 585 /* 586 * The machine should provide by default an internal BMC simulator. 587 * If not, try to use the BMC device that was provided on the command 588 * line. 589 */ 590 bmc = pnv_bmc_find(&error_fatal); 591 if (!pnv->bmc) { 592 if (!bmc) { 593 if (!qtest_enabled()) { 594 warn_report("machine has no BMC device. Use '-device " 595 "ipmi-bmc-sim,id=bmc0 -device isa-ipmi-bt,bmc=bmc0,irq=10' " 596 "to define one"); 597 } 598 } else { 599 pnv_bmc_set_pnor(bmc, pnv->pnor); 600 pnv->bmc = bmc; 601 } 602 } 603 604 fdt = pnv_dt_create(machine); 605 606 /* Pack resulting tree */ 607 _FDT((fdt_pack(fdt))); 608 609 qemu_fdt_dumpdtb(fdt, fdt_totalsize(fdt)); 610 cpu_physical_memory_write(PNV_FDT_ADDR, fdt, fdt_totalsize(fdt)); 611 612 g_free(fdt); 613 } 614 615 static ISABus *pnv_chip_power8_isa_create(PnvChip *chip, Error **errp) 616 { 617 Pnv8Chip *chip8 = PNV8_CHIP(chip); 618 return pnv_lpc_isa_create(&chip8->lpc, true, errp); 619 } 620 621 static ISABus *pnv_chip_power8nvl_isa_create(PnvChip *chip, Error **errp) 622 { 623 Pnv8Chip *chip8 = PNV8_CHIP(chip); 624 return pnv_lpc_isa_create(&chip8->lpc, false, errp); 625 } 626 627 static ISABus *pnv_chip_power9_isa_create(PnvChip *chip, Error **errp) 628 { 629 Pnv9Chip *chip9 = PNV9_CHIP(chip); 630 return pnv_lpc_isa_create(&chip9->lpc, false, errp); 631 } 632 633 static ISABus *pnv_chip_power10_isa_create(PnvChip *chip, Error **errp) 634 { 635 Pnv10Chip *chip10 = PNV10_CHIP(chip); 636 return pnv_lpc_isa_create(&chip10->lpc, false, errp); 637 } 638 639 static ISABus *pnv_isa_create(PnvChip *chip, Error **errp) 640 { 641 return PNV_CHIP_GET_CLASS(chip)->isa_create(chip, errp); 642 } 643 644 static int pnv_chip_power8_pic_print_info_child(Object *child, void *opaque) 645 { 646 Monitor *mon = opaque; 647 PnvPHB3 *phb3 = (PnvPHB3 *) object_dynamic_cast(child, TYPE_PNV_PHB3); 648 649 if (phb3) { 650 pnv_phb3_msi_pic_print_info(&phb3->msis, mon); 651 ics_pic_print_info(&phb3->lsis, mon); 652 } 653 return 0; 654 } 655 656 static void pnv_chip_power8_pic_print_info(PnvChip *chip, Monitor *mon) 657 { 658 Pnv8Chip *chip8 = PNV8_CHIP(chip); 659 660 ics_pic_print_info(&chip8->psi.ics, mon); 661 object_child_foreach(OBJECT(chip), 662 pnv_chip_power8_pic_print_info_child, mon); 663 } 664 665 static int pnv_chip_power9_pic_print_info_child(Object *child, void *opaque) 666 { 667 Monitor *mon = opaque; 668 PnvPHB4 *phb4 = (PnvPHB4 *) object_dynamic_cast(child, TYPE_PNV_PHB4); 669 670 if (phb4) { 671 pnv_phb4_pic_print_info(phb4, mon); 672 } 673 return 0; 674 } 675 676 static void pnv_chip_power9_pic_print_info(PnvChip *chip, Monitor *mon) 677 { 678 Pnv9Chip *chip9 = PNV9_CHIP(chip); 679 680 pnv_xive_pic_print_info(&chip9->xive, mon); 681 pnv_psi_pic_print_info(&chip9->psi, mon); 682 683 object_child_foreach_recursive(OBJECT(chip), 684 pnv_chip_power9_pic_print_info_child, mon); 685 } 686 687 static uint64_t pnv_chip_power8_xscom_core_base(PnvChip *chip, 688 uint32_t core_id) 689 { 690 return PNV_XSCOM_EX_BASE(core_id); 691 } 692 693 static uint64_t pnv_chip_power9_xscom_core_base(PnvChip *chip, 694 uint32_t core_id) 695 { 696 return PNV9_XSCOM_EC_BASE(core_id); 697 } 698 699 static uint64_t pnv_chip_power10_xscom_core_base(PnvChip *chip, 700 uint32_t core_id) 701 { 702 return PNV10_XSCOM_EC_BASE(core_id); 703 } 704 705 static bool pnv_match_cpu(const char *default_type, const char *cpu_type) 706 { 707 PowerPCCPUClass *ppc_default = 708 POWERPC_CPU_CLASS(object_class_by_name(default_type)); 709 PowerPCCPUClass *ppc = 710 POWERPC_CPU_CLASS(object_class_by_name(cpu_type)); 711 712 return ppc_default->pvr_match(ppc_default, ppc->pvr); 713 } 714 715 static void pnv_ipmi_bt_init(ISABus *bus, IPMIBmc *bmc, uint32_t irq) 716 { 717 ISADevice *dev = isa_new("isa-ipmi-bt"); 718 719 object_property_set_link(OBJECT(dev), "bmc", OBJECT(bmc), &error_fatal); 720 object_property_set_int(OBJECT(dev), "irq", irq, &error_fatal); 721 isa_realize_and_unref(dev, bus, &error_fatal); 722 } 723 724 static void pnv_chip_power10_pic_print_info(PnvChip *chip, Monitor *mon) 725 { 726 Pnv10Chip *chip10 = PNV10_CHIP(chip); 727 728 pnv_xive2_pic_print_info(&chip10->xive, mon); 729 pnv_psi_pic_print_info(&chip10->psi, mon); 730 731 object_child_foreach_recursive(OBJECT(chip), 732 pnv_chip_power9_pic_print_info_child, mon); 733 } 734 735 /* Always give the first 1GB to chip 0 else we won't boot */ 736 static uint64_t pnv_chip_get_ram_size(PnvMachineState *pnv, int chip_id) 737 { 738 MachineState *machine = MACHINE(pnv); 739 uint64_t ram_per_chip; 740 741 assert(machine->ram_size >= 1 * GiB); 742 743 ram_per_chip = machine->ram_size / pnv->num_chips; 744 if (ram_per_chip >= 1 * GiB) { 745 return QEMU_ALIGN_DOWN(ram_per_chip, 1 * MiB); 746 } 747 748 assert(pnv->num_chips > 1); 749 750 ram_per_chip = (machine->ram_size - 1 * GiB) / (pnv->num_chips - 1); 751 return chip_id == 0 ? 1 * GiB : QEMU_ALIGN_DOWN(ram_per_chip, 1 * MiB); 752 } 753 754 static void pnv_init(MachineState *machine) 755 { 756 const char *bios_name = machine->firmware ?: FW_FILE_NAME; 757 PnvMachineState *pnv = PNV_MACHINE(machine); 758 MachineClass *mc = MACHINE_GET_CLASS(machine); 759 char *fw_filename; 760 long fw_size; 761 uint64_t chip_ram_start = 0; 762 int i; 763 char *chip_typename; 764 DriveInfo *pnor = drive_get(IF_MTD, 0, 0); 765 DeviceState *dev; 766 767 if (kvm_enabled()) { 768 error_report("The powernv machine does not work with KVM acceleration"); 769 exit(EXIT_FAILURE); 770 } 771 772 /* allocate RAM */ 773 if (machine->ram_size < mc->default_ram_size) { 774 char *sz = size_to_str(mc->default_ram_size); 775 error_report("Invalid RAM size, should be bigger than %s", sz); 776 g_free(sz); 777 exit(EXIT_FAILURE); 778 } 779 memory_region_add_subregion(get_system_memory(), 0, machine->ram); 780 781 /* 782 * Create our simple PNOR device 783 */ 784 dev = qdev_new(TYPE_PNV_PNOR); 785 if (pnor) { 786 qdev_prop_set_drive(dev, "drive", blk_by_legacy_dinfo(pnor)); 787 } 788 sysbus_realize_and_unref(SYS_BUS_DEVICE(dev), &error_fatal); 789 pnv->pnor = PNV_PNOR(dev); 790 791 /* load skiboot firmware */ 792 fw_filename = qemu_find_file(QEMU_FILE_TYPE_BIOS, bios_name); 793 if (!fw_filename) { 794 error_report("Could not find OPAL firmware '%s'", bios_name); 795 exit(1); 796 } 797 798 fw_size = load_image_targphys(fw_filename, pnv->fw_load_addr, FW_MAX_SIZE); 799 if (fw_size < 0) { 800 error_report("Could not load OPAL firmware '%s'", fw_filename); 801 exit(1); 802 } 803 g_free(fw_filename); 804 805 /* load kernel */ 806 if (machine->kernel_filename) { 807 long kernel_size; 808 809 kernel_size = load_image_targphys(machine->kernel_filename, 810 KERNEL_LOAD_ADDR, KERNEL_MAX_SIZE); 811 if (kernel_size < 0) { 812 error_report("Could not load kernel '%s'", 813 machine->kernel_filename); 814 exit(1); 815 } 816 } 817 818 /* load initrd */ 819 if (machine->initrd_filename) { 820 pnv->initrd_base = INITRD_LOAD_ADDR; 821 pnv->initrd_size = load_image_targphys(machine->initrd_filename, 822 pnv->initrd_base, INITRD_MAX_SIZE); 823 if (pnv->initrd_size < 0) { 824 error_report("Could not load initial ram disk '%s'", 825 machine->initrd_filename); 826 exit(1); 827 } 828 } 829 830 /* MSIs are supported on this platform */ 831 msi_nonbroken = true; 832 833 /* 834 * Check compatibility of the specified CPU with the machine 835 * default. 836 */ 837 if (!pnv_match_cpu(mc->default_cpu_type, machine->cpu_type)) { 838 error_report("invalid CPU model '%s' for %s machine", 839 machine->cpu_type, mc->name); 840 exit(1); 841 } 842 843 /* Create the processor chips */ 844 i = strlen(machine->cpu_type) - strlen(POWERPC_CPU_TYPE_SUFFIX); 845 chip_typename = g_strdup_printf(PNV_CHIP_TYPE_NAME("%.*s"), 846 i, machine->cpu_type); 847 if (!object_class_by_name(chip_typename)) { 848 error_report("invalid chip model '%.*s' for %s machine", 849 i, machine->cpu_type, mc->name); 850 exit(1); 851 } 852 853 pnv->num_chips = 854 machine->smp.max_cpus / (machine->smp.cores * machine->smp.threads); 855 /* 856 * TODO: should we decide on how many chips we can create based 857 * on #cores and Venice vs. Murano vs. Naples chip type etc..., 858 */ 859 if (!is_power_of_2(pnv->num_chips) || pnv->num_chips > 16) { 860 error_report("invalid number of chips: '%d'", pnv->num_chips); 861 error_printf( 862 "Try '-smp sockets=N'. Valid values are : 1, 2, 4, 8 and 16.\n"); 863 exit(1); 864 } 865 866 pnv->chips = g_new0(PnvChip *, pnv->num_chips); 867 for (i = 0; i < pnv->num_chips; i++) { 868 char chip_name[32]; 869 Object *chip = OBJECT(qdev_new(chip_typename)); 870 uint64_t chip_ram_size = pnv_chip_get_ram_size(pnv, i); 871 872 pnv->chips[i] = PNV_CHIP(chip); 873 874 /* Distribute RAM among the chips */ 875 object_property_set_int(chip, "ram-start", chip_ram_start, 876 &error_fatal); 877 object_property_set_int(chip, "ram-size", chip_ram_size, 878 &error_fatal); 879 chip_ram_start += chip_ram_size; 880 881 snprintf(chip_name, sizeof(chip_name), "chip[%d]", i); 882 object_property_add_child(OBJECT(pnv), chip_name, chip); 883 object_property_set_int(chip, "chip-id", i, &error_fatal); 884 object_property_set_int(chip, "nr-cores", machine->smp.cores, 885 &error_fatal); 886 object_property_set_int(chip, "nr-threads", machine->smp.threads, 887 &error_fatal); 888 /* 889 * The POWER8 machine use the XICS interrupt interface. 890 * Propagate the XICS fabric to the chip and its controllers. 891 */ 892 if (object_dynamic_cast(OBJECT(pnv), TYPE_XICS_FABRIC)) { 893 object_property_set_link(chip, "xics", OBJECT(pnv), &error_abort); 894 } 895 if (object_dynamic_cast(OBJECT(pnv), TYPE_XIVE_FABRIC)) { 896 object_property_set_link(chip, "xive-fabric", OBJECT(pnv), 897 &error_abort); 898 } 899 sysbus_realize_and_unref(SYS_BUS_DEVICE(chip), &error_fatal); 900 } 901 g_free(chip_typename); 902 903 /* Instantiate ISA bus on chip 0 */ 904 pnv->isa_bus = pnv_isa_create(pnv->chips[0], &error_fatal); 905 906 /* Create serial port */ 907 serial_hds_isa_init(pnv->isa_bus, 0, MAX_ISA_SERIAL_PORTS); 908 909 /* Create an RTC ISA device too */ 910 mc146818_rtc_init(pnv->isa_bus, 2000, NULL); 911 912 /* 913 * Create the machine BMC simulator and the IPMI BT device for 914 * communication with the BMC 915 */ 916 if (defaults_enabled()) { 917 pnv->bmc = pnv_bmc_create(pnv->pnor); 918 pnv_ipmi_bt_init(pnv->isa_bus, pnv->bmc, 10); 919 } 920 921 /* 922 * The PNOR is mapped on the LPC FW address space by the BMC. 923 * Since we can not reach the remote BMC machine with LPC memops, 924 * map it always for now. 925 */ 926 memory_region_add_subregion(pnv->chips[0]->fw_mr, PNOR_SPI_OFFSET, 927 &pnv->pnor->mmio); 928 929 /* 930 * OpenPOWER systems use a IPMI SEL Event message to notify the 931 * host to powerdown 932 */ 933 pnv->powerdown_notifier.notify = pnv_powerdown_notify; 934 qemu_register_powerdown_notifier(&pnv->powerdown_notifier); 935 } 936 937 /* 938 * 0:21 Reserved - Read as zeros 939 * 22:24 Chip ID 940 * 25:28 Core number 941 * 29:31 Thread ID 942 */ 943 static uint32_t pnv_chip_core_pir_p8(PnvChip *chip, uint32_t core_id) 944 { 945 return (chip->chip_id << 7) | (core_id << 3); 946 } 947 948 static void pnv_chip_power8_intc_create(PnvChip *chip, PowerPCCPU *cpu, 949 Error **errp) 950 { 951 Pnv8Chip *chip8 = PNV8_CHIP(chip); 952 Error *local_err = NULL; 953 Object *obj; 954 PnvCPUState *pnv_cpu = pnv_cpu_state(cpu); 955 956 obj = icp_create(OBJECT(cpu), TYPE_PNV_ICP, chip8->xics, &local_err); 957 if (local_err) { 958 error_propagate(errp, local_err); 959 return; 960 } 961 962 pnv_cpu->intc = obj; 963 } 964 965 966 static void pnv_chip_power8_intc_reset(PnvChip *chip, PowerPCCPU *cpu) 967 { 968 PnvCPUState *pnv_cpu = pnv_cpu_state(cpu); 969 970 icp_reset(ICP(pnv_cpu->intc)); 971 } 972 973 static void pnv_chip_power8_intc_destroy(PnvChip *chip, PowerPCCPU *cpu) 974 { 975 PnvCPUState *pnv_cpu = pnv_cpu_state(cpu); 976 977 icp_destroy(ICP(pnv_cpu->intc)); 978 pnv_cpu->intc = NULL; 979 } 980 981 static void pnv_chip_power8_intc_print_info(PnvChip *chip, PowerPCCPU *cpu, 982 Monitor *mon) 983 { 984 icp_pic_print_info(ICP(pnv_cpu_state(cpu)->intc), mon); 985 } 986 987 /* 988 * 0:48 Reserved - Read as zeroes 989 * 49:52 Node ID 990 * 53:55 Chip ID 991 * 56 Reserved - Read as zero 992 * 57:61 Core number 993 * 62:63 Thread ID 994 * 995 * We only care about the lower bits. uint32_t is fine for the moment. 996 */ 997 static uint32_t pnv_chip_core_pir_p9(PnvChip *chip, uint32_t core_id) 998 { 999 return (chip->chip_id << 8) | (core_id << 2); 1000 } 1001 1002 static uint32_t pnv_chip_core_pir_p10(PnvChip *chip, uint32_t core_id) 1003 { 1004 return (chip->chip_id << 8) | (core_id << 2); 1005 } 1006 1007 static void pnv_chip_power9_intc_create(PnvChip *chip, PowerPCCPU *cpu, 1008 Error **errp) 1009 { 1010 Pnv9Chip *chip9 = PNV9_CHIP(chip); 1011 Error *local_err = NULL; 1012 Object *obj; 1013 PnvCPUState *pnv_cpu = pnv_cpu_state(cpu); 1014 1015 /* 1016 * The core creates its interrupt presenter but the XIVE interrupt 1017 * controller object is initialized afterwards. Hopefully, it's 1018 * only used at runtime. 1019 */ 1020 obj = xive_tctx_create(OBJECT(cpu), XIVE_PRESENTER(&chip9->xive), 1021 &local_err); 1022 if (local_err) { 1023 error_propagate(errp, local_err); 1024 return; 1025 } 1026 1027 pnv_cpu->intc = obj; 1028 } 1029 1030 static void pnv_chip_power9_intc_reset(PnvChip *chip, PowerPCCPU *cpu) 1031 { 1032 PnvCPUState *pnv_cpu = pnv_cpu_state(cpu); 1033 1034 xive_tctx_reset(XIVE_TCTX(pnv_cpu->intc)); 1035 } 1036 1037 static void pnv_chip_power9_intc_destroy(PnvChip *chip, PowerPCCPU *cpu) 1038 { 1039 PnvCPUState *pnv_cpu = pnv_cpu_state(cpu); 1040 1041 xive_tctx_destroy(XIVE_TCTX(pnv_cpu->intc)); 1042 pnv_cpu->intc = NULL; 1043 } 1044 1045 static void pnv_chip_power9_intc_print_info(PnvChip *chip, PowerPCCPU *cpu, 1046 Monitor *mon) 1047 { 1048 xive_tctx_pic_print_info(XIVE_TCTX(pnv_cpu_state(cpu)->intc), mon); 1049 } 1050 1051 static void pnv_chip_power10_intc_create(PnvChip *chip, PowerPCCPU *cpu, 1052 Error **errp) 1053 { 1054 Pnv10Chip *chip10 = PNV10_CHIP(chip); 1055 Error *local_err = NULL; 1056 Object *obj; 1057 PnvCPUState *pnv_cpu = pnv_cpu_state(cpu); 1058 1059 /* 1060 * The core creates its interrupt presenter but the XIVE2 interrupt 1061 * controller object is initialized afterwards. Hopefully, it's 1062 * only used at runtime. 1063 */ 1064 obj = xive_tctx_create(OBJECT(cpu), XIVE_PRESENTER(&chip10->xive), 1065 &local_err); 1066 if (local_err) { 1067 error_propagate(errp, local_err); 1068 return; 1069 } 1070 1071 pnv_cpu->intc = obj; 1072 } 1073 1074 static void pnv_chip_power10_intc_reset(PnvChip *chip, PowerPCCPU *cpu) 1075 { 1076 PnvCPUState *pnv_cpu = pnv_cpu_state(cpu); 1077 1078 xive_tctx_reset(XIVE_TCTX(pnv_cpu->intc)); 1079 } 1080 1081 static void pnv_chip_power10_intc_destroy(PnvChip *chip, PowerPCCPU *cpu) 1082 { 1083 PnvCPUState *pnv_cpu = pnv_cpu_state(cpu); 1084 1085 xive_tctx_destroy(XIVE_TCTX(pnv_cpu->intc)); 1086 pnv_cpu->intc = NULL; 1087 } 1088 1089 static void pnv_chip_power10_intc_print_info(PnvChip *chip, PowerPCCPU *cpu, 1090 Monitor *mon) 1091 { 1092 xive_tctx_pic_print_info(XIVE_TCTX(pnv_cpu_state(cpu)->intc), mon); 1093 } 1094 1095 /* 1096 * Allowed core identifiers on a POWER8 Processor Chip : 1097 * 1098 * <EX0 reserved> 1099 * EX1 - Venice only 1100 * EX2 - Venice only 1101 * EX3 - Venice only 1102 * EX4 1103 * EX5 1104 * EX6 1105 * <EX7,8 reserved> <reserved> 1106 * EX9 - Venice only 1107 * EX10 - Venice only 1108 * EX11 - Venice only 1109 * EX12 1110 * EX13 1111 * EX14 1112 * <EX15 reserved> 1113 */ 1114 #define POWER8E_CORE_MASK (0x7070ull) 1115 #define POWER8_CORE_MASK (0x7e7eull) 1116 1117 /* 1118 * POWER9 has 24 cores, ids starting at 0x0 1119 */ 1120 #define POWER9_CORE_MASK (0xffffffffffffffull) 1121 1122 1123 #define POWER10_CORE_MASK (0xffffffffffffffull) 1124 1125 static void pnv_chip_power8_instance_init(Object *obj) 1126 { 1127 Pnv8Chip *chip8 = PNV8_CHIP(obj); 1128 PnvChipClass *pcc = PNV_CHIP_GET_CLASS(obj); 1129 int i; 1130 1131 object_property_add_link(obj, "xics", TYPE_XICS_FABRIC, 1132 (Object **)&chip8->xics, 1133 object_property_allow_set_link, 1134 OBJ_PROP_LINK_STRONG); 1135 1136 object_initialize_child(obj, "psi", &chip8->psi, TYPE_PNV8_PSI); 1137 1138 object_initialize_child(obj, "lpc", &chip8->lpc, TYPE_PNV8_LPC); 1139 1140 object_initialize_child(obj, "occ", &chip8->occ, TYPE_PNV8_OCC); 1141 1142 object_initialize_child(obj, "homer", &chip8->homer, TYPE_PNV8_HOMER); 1143 1144 if (defaults_enabled()) { 1145 chip8->num_phbs = pcc->num_phbs; 1146 } 1147 1148 for (i = 0; i < chip8->num_phbs; i++) { 1149 object_initialize_child(obj, "phb[*]", &chip8->phbs[i], TYPE_PNV_PHB3); 1150 } 1151 1152 } 1153 1154 static void pnv_chip_icp_realize(Pnv8Chip *chip8, Error **errp) 1155 { 1156 PnvChip *chip = PNV_CHIP(chip8); 1157 PnvChipClass *pcc = PNV_CHIP_GET_CLASS(chip); 1158 int i, j; 1159 char *name; 1160 1161 name = g_strdup_printf("icp-%x", chip->chip_id); 1162 memory_region_init(&chip8->icp_mmio, OBJECT(chip), name, PNV_ICP_SIZE); 1163 sysbus_init_mmio(SYS_BUS_DEVICE(chip), &chip8->icp_mmio); 1164 g_free(name); 1165 1166 sysbus_mmio_map(SYS_BUS_DEVICE(chip), 1, PNV_ICP_BASE(chip)); 1167 1168 /* Map the ICP registers for each thread */ 1169 for (i = 0; i < chip->nr_cores; i++) { 1170 PnvCore *pnv_core = chip->cores[i]; 1171 int core_hwid = CPU_CORE(pnv_core)->core_id; 1172 1173 for (j = 0; j < CPU_CORE(pnv_core)->nr_threads; j++) { 1174 uint32_t pir = pcc->core_pir(chip, core_hwid) + j; 1175 PnvICPState *icp = PNV_ICP(xics_icp_get(chip8->xics, pir)); 1176 1177 memory_region_add_subregion(&chip8->icp_mmio, pir << 12, 1178 &icp->mmio); 1179 } 1180 } 1181 } 1182 1183 /* Attach a root port device */ 1184 void pnv_phb_attach_root_port(PCIHostState *pci, const char *name) 1185 { 1186 PCIDevice *root = pci_new(PCI_DEVFN(0, 0), name); 1187 1188 pci_realize_and_unref(root, pci->bus, &error_fatal); 1189 } 1190 1191 static void pnv_chip_power8_realize(DeviceState *dev, Error **errp) 1192 { 1193 PnvChipClass *pcc = PNV_CHIP_GET_CLASS(dev); 1194 PnvChip *chip = PNV_CHIP(dev); 1195 Pnv8Chip *chip8 = PNV8_CHIP(dev); 1196 Pnv8Psi *psi8 = &chip8->psi; 1197 Error *local_err = NULL; 1198 int i; 1199 1200 assert(chip8->xics); 1201 1202 /* XSCOM bridge is first */ 1203 pnv_xscom_realize(chip, PNV_XSCOM_SIZE, &local_err); 1204 if (local_err) { 1205 error_propagate(errp, local_err); 1206 return; 1207 } 1208 sysbus_mmio_map(SYS_BUS_DEVICE(chip), 0, PNV_XSCOM_BASE(chip)); 1209 1210 pcc->parent_realize(dev, &local_err); 1211 if (local_err) { 1212 error_propagate(errp, local_err); 1213 return; 1214 } 1215 1216 /* Processor Service Interface (PSI) Host Bridge */ 1217 object_property_set_int(OBJECT(&chip8->psi), "bar", PNV_PSIHB_BASE(chip), 1218 &error_fatal); 1219 object_property_set_link(OBJECT(&chip8->psi), ICS_PROP_XICS, 1220 OBJECT(chip8->xics), &error_abort); 1221 if (!qdev_realize(DEVICE(&chip8->psi), NULL, errp)) { 1222 return; 1223 } 1224 pnv_xscom_add_subregion(chip, PNV_XSCOM_PSIHB_BASE, 1225 &PNV_PSI(psi8)->xscom_regs); 1226 1227 /* Create LPC controller */ 1228 object_property_set_link(OBJECT(&chip8->lpc), "psi", OBJECT(&chip8->psi), 1229 &error_abort); 1230 qdev_realize(DEVICE(&chip8->lpc), NULL, &error_fatal); 1231 pnv_xscom_add_subregion(chip, PNV_XSCOM_LPC_BASE, &chip8->lpc.xscom_regs); 1232 1233 chip->fw_mr = &chip8->lpc.isa_fw; 1234 chip->dt_isa_nodename = g_strdup_printf("/xscom@%" PRIx64 "/isa@%x", 1235 (uint64_t) PNV_XSCOM_BASE(chip), 1236 PNV_XSCOM_LPC_BASE); 1237 1238 /* 1239 * Interrupt Management Area. This is the memory region holding 1240 * all the Interrupt Control Presenter (ICP) registers 1241 */ 1242 pnv_chip_icp_realize(chip8, &local_err); 1243 if (local_err) { 1244 error_propagate(errp, local_err); 1245 return; 1246 } 1247 1248 /* Create the simplified OCC model */ 1249 object_property_set_link(OBJECT(&chip8->occ), "psi", OBJECT(&chip8->psi), 1250 &error_abort); 1251 if (!qdev_realize(DEVICE(&chip8->occ), NULL, errp)) { 1252 return; 1253 } 1254 pnv_xscom_add_subregion(chip, PNV_XSCOM_OCC_BASE, &chip8->occ.xscom_regs); 1255 1256 /* OCC SRAM model */ 1257 memory_region_add_subregion(get_system_memory(), PNV_OCC_SENSOR_BASE(chip), 1258 &chip8->occ.sram_regs); 1259 1260 /* HOMER */ 1261 object_property_set_link(OBJECT(&chip8->homer), "chip", OBJECT(chip), 1262 &error_abort); 1263 if (!qdev_realize(DEVICE(&chip8->homer), NULL, errp)) { 1264 return; 1265 } 1266 /* Homer Xscom region */ 1267 pnv_xscom_add_subregion(chip, PNV_XSCOM_PBA_BASE, &chip8->homer.pba_regs); 1268 1269 /* Homer mmio region */ 1270 memory_region_add_subregion(get_system_memory(), PNV_HOMER_BASE(chip), 1271 &chip8->homer.regs); 1272 1273 /* PHB3 controllers */ 1274 for (i = 0; i < chip8->num_phbs; i++) { 1275 PnvPHB3 *phb = &chip8->phbs[i]; 1276 1277 object_property_set_int(OBJECT(phb), "index", i, &error_fatal); 1278 object_property_set_int(OBJECT(phb), "chip-id", chip->chip_id, 1279 &error_fatal); 1280 object_property_set_link(OBJECT(phb), "chip", OBJECT(chip), 1281 &error_fatal); 1282 if (!sysbus_realize(SYS_BUS_DEVICE(phb), errp)) { 1283 return; 1284 } 1285 } 1286 } 1287 1288 static uint32_t pnv_chip_power8_xscom_pcba(PnvChip *chip, uint64_t addr) 1289 { 1290 addr &= (PNV_XSCOM_SIZE - 1); 1291 return ((addr >> 4) & ~0xfull) | ((addr >> 3) & 0xf); 1292 } 1293 1294 static void pnv_chip_power8e_class_init(ObjectClass *klass, void *data) 1295 { 1296 DeviceClass *dc = DEVICE_CLASS(klass); 1297 PnvChipClass *k = PNV_CHIP_CLASS(klass); 1298 1299 k->chip_cfam_id = 0x221ef04980000000ull; /* P8 Murano DD2.1 */ 1300 k->cores_mask = POWER8E_CORE_MASK; 1301 k->num_phbs = 3; 1302 k->core_pir = pnv_chip_core_pir_p8; 1303 k->intc_create = pnv_chip_power8_intc_create; 1304 k->intc_reset = pnv_chip_power8_intc_reset; 1305 k->intc_destroy = pnv_chip_power8_intc_destroy; 1306 k->intc_print_info = pnv_chip_power8_intc_print_info; 1307 k->isa_create = pnv_chip_power8_isa_create; 1308 k->dt_populate = pnv_chip_power8_dt_populate; 1309 k->pic_print_info = pnv_chip_power8_pic_print_info; 1310 k->xscom_core_base = pnv_chip_power8_xscom_core_base; 1311 k->xscom_pcba = pnv_chip_power8_xscom_pcba; 1312 dc->desc = "PowerNV Chip POWER8E"; 1313 1314 device_class_set_parent_realize(dc, pnv_chip_power8_realize, 1315 &k->parent_realize); 1316 } 1317 1318 static void pnv_chip_power8_class_init(ObjectClass *klass, void *data) 1319 { 1320 DeviceClass *dc = DEVICE_CLASS(klass); 1321 PnvChipClass *k = PNV_CHIP_CLASS(klass); 1322 1323 k->chip_cfam_id = 0x220ea04980000000ull; /* P8 Venice DD2.0 */ 1324 k->cores_mask = POWER8_CORE_MASK; 1325 k->num_phbs = 3; 1326 k->core_pir = pnv_chip_core_pir_p8; 1327 k->intc_create = pnv_chip_power8_intc_create; 1328 k->intc_reset = pnv_chip_power8_intc_reset; 1329 k->intc_destroy = pnv_chip_power8_intc_destroy; 1330 k->intc_print_info = pnv_chip_power8_intc_print_info; 1331 k->isa_create = pnv_chip_power8_isa_create; 1332 k->dt_populate = pnv_chip_power8_dt_populate; 1333 k->pic_print_info = pnv_chip_power8_pic_print_info; 1334 k->xscom_core_base = pnv_chip_power8_xscom_core_base; 1335 k->xscom_pcba = pnv_chip_power8_xscom_pcba; 1336 dc->desc = "PowerNV Chip POWER8"; 1337 1338 device_class_set_parent_realize(dc, pnv_chip_power8_realize, 1339 &k->parent_realize); 1340 } 1341 1342 static void pnv_chip_power8nvl_class_init(ObjectClass *klass, void *data) 1343 { 1344 DeviceClass *dc = DEVICE_CLASS(klass); 1345 PnvChipClass *k = PNV_CHIP_CLASS(klass); 1346 1347 k->chip_cfam_id = 0x120d304980000000ull; /* P8 Naples DD1.0 */ 1348 k->cores_mask = POWER8_CORE_MASK; 1349 k->num_phbs = 4; 1350 k->core_pir = pnv_chip_core_pir_p8; 1351 k->intc_create = pnv_chip_power8_intc_create; 1352 k->intc_reset = pnv_chip_power8_intc_reset; 1353 k->intc_destroy = pnv_chip_power8_intc_destroy; 1354 k->intc_print_info = pnv_chip_power8_intc_print_info; 1355 k->isa_create = pnv_chip_power8nvl_isa_create; 1356 k->dt_populate = pnv_chip_power8_dt_populate; 1357 k->pic_print_info = pnv_chip_power8_pic_print_info; 1358 k->xscom_core_base = pnv_chip_power8_xscom_core_base; 1359 k->xscom_pcba = pnv_chip_power8_xscom_pcba; 1360 dc->desc = "PowerNV Chip POWER8NVL"; 1361 1362 device_class_set_parent_realize(dc, pnv_chip_power8_realize, 1363 &k->parent_realize); 1364 } 1365 1366 static void pnv_chip_power9_instance_init(Object *obj) 1367 { 1368 PnvChip *chip = PNV_CHIP(obj); 1369 Pnv9Chip *chip9 = PNV9_CHIP(obj); 1370 PnvChipClass *pcc = PNV_CHIP_GET_CLASS(obj); 1371 int i; 1372 1373 object_initialize_child(obj, "xive", &chip9->xive, TYPE_PNV_XIVE); 1374 object_property_add_alias(obj, "xive-fabric", OBJECT(&chip9->xive), 1375 "xive-fabric"); 1376 1377 object_initialize_child(obj, "psi", &chip9->psi, TYPE_PNV9_PSI); 1378 1379 object_initialize_child(obj, "lpc", &chip9->lpc, TYPE_PNV9_LPC); 1380 1381 object_initialize_child(obj, "occ", &chip9->occ, TYPE_PNV9_OCC); 1382 1383 object_initialize_child(obj, "homer", &chip9->homer, TYPE_PNV9_HOMER); 1384 1385 /* Number of PECs is the chip default */ 1386 chip->num_pecs = pcc->num_pecs; 1387 1388 for (i = 0; i < chip->num_pecs; i++) { 1389 object_initialize_child(obj, "pec[*]", &chip9->pecs[i], 1390 TYPE_PNV_PHB4_PEC); 1391 } 1392 } 1393 1394 static void pnv_chip_quad_realize_one(PnvChip *chip, PnvQuad *eq, 1395 PnvCore *pnv_core) 1396 { 1397 char eq_name[32]; 1398 int core_id = CPU_CORE(pnv_core)->core_id; 1399 1400 snprintf(eq_name, sizeof(eq_name), "eq[%d]", core_id); 1401 object_initialize_child_with_props(OBJECT(chip), eq_name, eq, 1402 sizeof(*eq), TYPE_PNV_QUAD, 1403 &error_fatal, NULL); 1404 1405 object_property_set_int(OBJECT(eq), "quad-id", core_id, &error_fatal); 1406 qdev_realize(DEVICE(eq), NULL, &error_fatal); 1407 } 1408 1409 static void pnv_chip_quad_realize(Pnv9Chip *chip9, Error **errp) 1410 { 1411 PnvChip *chip = PNV_CHIP(chip9); 1412 int i; 1413 1414 chip9->nr_quads = DIV_ROUND_UP(chip->nr_cores, 4); 1415 chip9->quads = g_new0(PnvQuad, chip9->nr_quads); 1416 1417 for (i = 0; i < chip9->nr_quads; i++) { 1418 PnvQuad *eq = &chip9->quads[i]; 1419 1420 pnv_chip_quad_realize_one(chip, eq, chip->cores[i * 4]); 1421 1422 pnv_xscom_add_subregion(chip, PNV9_XSCOM_EQ_BASE(eq->quad_id), 1423 &eq->xscom_regs); 1424 } 1425 } 1426 1427 static void pnv_chip_power9_pec_realize(PnvChip *chip, Error **errp) 1428 { 1429 Pnv9Chip *chip9 = PNV9_CHIP(chip); 1430 int i; 1431 1432 for (i = 0; i < chip->num_pecs; i++) { 1433 PnvPhb4PecState *pec = &chip9->pecs[i]; 1434 PnvPhb4PecClass *pecc = PNV_PHB4_PEC_GET_CLASS(pec); 1435 uint32_t pec_nest_base; 1436 uint32_t pec_pci_base; 1437 1438 object_property_set_int(OBJECT(pec), "index", i, &error_fatal); 1439 object_property_set_int(OBJECT(pec), "chip-id", chip->chip_id, 1440 &error_fatal); 1441 object_property_set_link(OBJECT(pec), "chip", OBJECT(chip), 1442 &error_fatal); 1443 if (!qdev_realize(DEVICE(pec), NULL, errp)) { 1444 return; 1445 } 1446 1447 pec_nest_base = pecc->xscom_nest_base(pec); 1448 pec_pci_base = pecc->xscom_pci_base(pec); 1449 1450 pnv_xscom_add_subregion(chip, pec_nest_base, &pec->nest_regs_mr); 1451 pnv_xscom_add_subregion(chip, pec_pci_base, &pec->pci_regs_mr); 1452 } 1453 } 1454 1455 static void pnv_chip_power9_realize(DeviceState *dev, Error **errp) 1456 { 1457 PnvChipClass *pcc = PNV_CHIP_GET_CLASS(dev); 1458 Pnv9Chip *chip9 = PNV9_CHIP(dev); 1459 PnvChip *chip = PNV_CHIP(dev); 1460 Pnv9Psi *psi9 = &chip9->psi; 1461 Error *local_err = NULL; 1462 1463 /* XSCOM bridge is first */ 1464 pnv_xscom_realize(chip, PNV9_XSCOM_SIZE, &local_err); 1465 if (local_err) { 1466 error_propagate(errp, local_err); 1467 return; 1468 } 1469 sysbus_mmio_map(SYS_BUS_DEVICE(chip), 0, PNV9_XSCOM_BASE(chip)); 1470 1471 pcc->parent_realize(dev, &local_err); 1472 if (local_err) { 1473 error_propagate(errp, local_err); 1474 return; 1475 } 1476 1477 pnv_chip_quad_realize(chip9, &local_err); 1478 if (local_err) { 1479 error_propagate(errp, local_err); 1480 return; 1481 } 1482 1483 /* XIVE interrupt controller (POWER9) */ 1484 object_property_set_int(OBJECT(&chip9->xive), "ic-bar", 1485 PNV9_XIVE_IC_BASE(chip), &error_fatal); 1486 object_property_set_int(OBJECT(&chip9->xive), "vc-bar", 1487 PNV9_XIVE_VC_BASE(chip), &error_fatal); 1488 object_property_set_int(OBJECT(&chip9->xive), "pc-bar", 1489 PNV9_XIVE_PC_BASE(chip), &error_fatal); 1490 object_property_set_int(OBJECT(&chip9->xive), "tm-bar", 1491 PNV9_XIVE_TM_BASE(chip), &error_fatal); 1492 object_property_set_link(OBJECT(&chip9->xive), "chip", OBJECT(chip), 1493 &error_abort); 1494 if (!sysbus_realize(SYS_BUS_DEVICE(&chip9->xive), errp)) { 1495 return; 1496 } 1497 pnv_xscom_add_subregion(chip, PNV9_XSCOM_XIVE_BASE, 1498 &chip9->xive.xscom_regs); 1499 1500 /* Processor Service Interface (PSI) Host Bridge */ 1501 object_property_set_int(OBJECT(&chip9->psi), "bar", PNV9_PSIHB_BASE(chip), 1502 &error_fatal); 1503 if (!qdev_realize(DEVICE(&chip9->psi), NULL, errp)) { 1504 return; 1505 } 1506 pnv_xscom_add_subregion(chip, PNV9_XSCOM_PSIHB_BASE, 1507 &PNV_PSI(psi9)->xscom_regs); 1508 1509 /* LPC */ 1510 object_property_set_link(OBJECT(&chip9->lpc), "psi", OBJECT(&chip9->psi), 1511 &error_abort); 1512 if (!qdev_realize(DEVICE(&chip9->lpc), NULL, errp)) { 1513 return; 1514 } 1515 memory_region_add_subregion(get_system_memory(), PNV9_LPCM_BASE(chip), 1516 &chip9->lpc.xscom_regs); 1517 1518 chip->fw_mr = &chip9->lpc.isa_fw; 1519 chip->dt_isa_nodename = g_strdup_printf("/lpcm-opb@%" PRIx64 "/lpc@0", 1520 (uint64_t) PNV9_LPCM_BASE(chip)); 1521 1522 /* Create the simplified OCC model */ 1523 object_property_set_link(OBJECT(&chip9->occ), "psi", OBJECT(&chip9->psi), 1524 &error_abort); 1525 if (!qdev_realize(DEVICE(&chip9->occ), NULL, errp)) { 1526 return; 1527 } 1528 pnv_xscom_add_subregion(chip, PNV9_XSCOM_OCC_BASE, &chip9->occ.xscom_regs); 1529 1530 /* OCC SRAM model */ 1531 memory_region_add_subregion(get_system_memory(), PNV9_OCC_SENSOR_BASE(chip), 1532 &chip9->occ.sram_regs); 1533 1534 /* HOMER */ 1535 object_property_set_link(OBJECT(&chip9->homer), "chip", OBJECT(chip), 1536 &error_abort); 1537 if (!qdev_realize(DEVICE(&chip9->homer), NULL, errp)) { 1538 return; 1539 } 1540 /* Homer Xscom region */ 1541 pnv_xscom_add_subregion(chip, PNV9_XSCOM_PBA_BASE, &chip9->homer.pba_regs); 1542 1543 /* Homer mmio region */ 1544 memory_region_add_subregion(get_system_memory(), PNV9_HOMER_BASE(chip), 1545 &chip9->homer.regs); 1546 1547 /* PEC PHBs */ 1548 pnv_chip_power9_pec_realize(chip, &local_err); 1549 if (local_err) { 1550 error_propagate(errp, local_err); 1551 return; 1552 } 1553 } 1554 1555 static uint32_t pnv_chip_power9_xscom_pcba(PnvChip *chip, uint64_t addr) 1556 { 1557 addr &= (PNV9_XSCOM_SIZE - 1); 1558 return addr >> 3; 1559 } 1560 1561 static void pnv_chip_power9_class_init(ObjectClass *klass, void *data) 1562 { 1563 DeviceClass *dc = DEVICE_CLASS(klass); 1564 PnvChipClass *k = PNV_CHIP_CLASS(klass); 1565 1566 k->chip_cfam_id = 0x220d104900008000ull; /* P9 Nimbus DD2.0 */ 1567 k->cores_mask = POWER9_CORE_MASK; 1568 k->core_pir = pnv_chip_core_pir_p9; 1569 k->intc_create = pnv_chip_power9_intc_create; 1570 k->intc_reset = pnv_chip_power9_intc_reset; 1571 k->intc_destroy = pnv_chip_power9_intc_destroy; 1572 k->intc_print_info = pnv_chip_power9_intc_print_info; 1573 k->isa_create = pnv_chip_power9_isa_create; 1574 k->dt_populate = pnv_chip_power9_dt_populate; 1575 k->pic_print_info = pnv_chip_power9_pic_print_info; 1576 k->xscom_core_base = pnv_chip_power9_xscom_core_base; 1577 k->xscom_pcba = pnv_chip_power9_xscom_pcba; 1578 dc->desc = "PowerNV Chip POWER9"; 1579 k->num_pecs = PNV9_CHIP_MAX_PEC; 1580 1581 device_class_set_parent_realize(dc, pnv_chip_power9_realize, 1582 &k->parent_realize); 1583 } 1584 1585 static void pnv_chip_power10_instance_init(Object *obj) 1586 { 1587 PnvChip *chip = PNV_CHIP(obj); 1588 Pnv10Chip *chip10 = PNV10_CHIP(obj); 1589 PnvChipClass *pcc = PNV_CHIP_GET_CLASS(obj); 1590 int i; 1591 1592 object_initialize_child(obj, "xive", &chip10->xive, TYPE_PNV_XIVE2); 1593 object_property_add_alias(obj, "xive-fabric", OBJECT(&chip10->xive), 1594 "xive-fabric"); 1595 object_initialize_child(obj, "psi", &chip10->psi, TYPE_PNV10_PSI); 1596 object_initialize_child(obj, "lpc", &chip10->lpc, TYPE_PNV10_LPC); 1597 object_initialize_child(obj, "occ", &chip10->occ, TYPE_PNV10_OCC); 1598 1599 if (defaults_enabled()) { 1600 chip->num_pecs = pcc->num_pecs; 1601 } 1602 1603 for (i = 0; i < chip->num_pecs; i++) { 1604 object_initialize_child(obj, "pec[*]", &chip10->pecs[i], 1605 TYPE_PNV_PHB5_PEC); 1606 } 1607 } 1608 1609 static void pnv_chip_power10_quad_realize(Pnv10Chip *chip10, Error **errp) 1610 { 1611 PnvChip *chip = PNV_CHIP(chip10); 1612 int i; 1613 1614 chip10->nr_quads = DIV_ROUND_UP(chip->nr_cores, 4); 1615 chip10->quads = g_new0(PnvQuad, chip10->nr_quads); 1616 1617 for (i = 0; i < chip10->nr_quads; i++) { 1618 PnvQuad *eq = &chip10->quads[i]; 1619 1620 pnv_chip_quad_realize_one(chip, eq, chip->cores[i * 4]); 1621 1622 pnv_xscom_add_subregion(chip, PNV10_XSCOM_EQ_BASE(eq->quad_id), 1623 &eq->xscom_regs); 1624 } 1625 } 1626 1627 static void pnv_chip_power10_phb_realize(PnvChip *chip, Error **errp) 1628 { 1629 Pnv10Chip *chip10 = PNV10_CHIP(chip); 1630 int i; 1631 1632 for (i = 0; i < chip->num_pecs; i++) { 1633 PnvPhb4PecState *pec = &chip10->pecs[i]; 1634 PnvPhb4PecClass *pecc = PNV_PHB4_PEC_GET_CLASS(pec); 1635 uint32_t pec_nest_base; 1636 uint32_t pec_pci_base; 1637 1638 object_property_set_int(OBJECT(pec), "index", i, &error_fatal); 1639 object_property_set_int(OBJECT(pec), "chip-id", chip->chip_id, 1640 &error_fatal); 1641 object_property_set_link(OBJECT(pec), "chip", OBJECT(chip), 1642 &error_fatal); 1643 if (!qdev_realize(DEVICE(pec), NULL, errp)) { 1644 return; 1645 } 1646 1647 pec_nest_base = pecc->xscom_nest_base(pec); 1648 pec_pci_base = pecc->xscom_pci_base(pec); 1649 1650 pnv_xscom_add_subregion(chip, pec_nest_base, &pec->nest_regs_mr); 1651 pnv_xscom_add_subregion(chip, pec_pci_base, &pec->pci_regs_mr); 1652 } 1653 } 1654 1655 static void pnv_chip_power10_realize(DeviceState *dev, Error **errp) 1656 { 1657 PnvChipClass *pcc = PNV_CHIP_GET_CLASS(dev); 1658 PnvChip *chip = PNV_CHIP(dev); 1659 Pnv10Chip *chip10 = PNV10_CHIP(dev); 1660 Error *local_err = NULL; 1661 1662 /* XSCOM bridge is first */ 1663 pnv_xscom_realize(chip, PNV10_XSCOM_SIZE, &local_err); 1664 if (local_err) { 1665 error_propagate(errp, local_err); 1666 return; 1667 } 1668 sysbus_mmio_map(SYS_BUS_DEVICE(chip), 0, PNV10_XSCOM_BASE(chip)); 1669 1670 pcc->parent_realize(dev, &local_err); 1671 if (local_err) { 1672 error_propagate(errp, local_err); 1673 return; 1674 } 1675 1676 pnv_chip_power10_quad_realize(chip10, &local_err); 1677 if (local_err) { 1678 error_propagate(errp, local_err); 1679 return; 1680 } 1681 1682 /* XIVE2 interrupt controller (POWER10) */ 1683 object_property_set_int(OBJECT(&chip10->xive), "ic-bar", 1684 PNV10_XIVE2_IC_BASE(chip), &error_fatal); 1685 object_property_set_int(OBJECT(&chip10->xive), "esb-bar", 1686 PNV10_XIVE2_ESB_BASE(chip), &error_fatal); 1687 object_property_set_int(OBJECT(&chip10->xive), "end-bar", 1688 PNV10_XIVE2_END_BASE(chip), &error_fatal); 1689 object_property_set_int(OBJECT(&chip10->xive), "nvpg-bar", 1690 PNV10_XIVE2_NVPG_BASE(chip), &error_fatal); 1691 object_property_set_int(OBJECT(&chip10->xive), "nvc-bar", 1692 PNV10_XIVE2_NVC_BASE(chip), &error_fatal); 1693 object_property_set_int(OBJECT(&chip10->xive), "tm-bar", 1694 PNV10_XIVE2_TM_BASE(chip), &error_fatal); 1695 object_property_set_link(OBJECT(&chip10->xive), "chip", OBJECT(chip), 1696 &error_abort); 1697 if (!sysbus_realize(SYS_BUS_DEVICE(&chip10->xive), errp)) { 1698 return; 1699 } 1700 pnv_xscom_add_subregion(chip, PNV10_XSCOM_XIVE2_BASE, 1701 &chip10->xive.xscom_regs); 1702 1703 /* Processor Service Interface (PSI) Host Bridge */ 1704 object_property_set_int(OBJECT(&chip10->psi), "bar", 1705 PNV10_PSIHB_BASE(chip), &error_fatal); 1706 if (!qdev_realize(DEVICE(&chip10->psi), NULL, errp)) { 1707 return; 1708 } 1709 pnv_xscom_add_subregion(chip, PNV10_XSCOM_PSIHB_BASE, 1710 &PNV_PSI(&chip10->psi)->xscom_regs); 1711 1712 /* LPC */ 1713 object_property_set_link(OBJECT(&chip10->lpc), "psi", 1714 OBJECT(&chip10->psi), &error_abort); 1715 if (!qdev_realize(DEVICE(&chip10->lpc), NULL, errp)) { 1716 return; 1717 } 1718 memory_region_add_subregion(get_system_memory(), PNV10_LPCM_BASE(chip), 1719 &chip10->lpc.xscom_regs); 1720 1721 chip->fw_mr = &chip10->lpc.isa_fw; 1722 chip->dt_isa_nodename = g_strdup_printf("/lpcm-opb@%" PRIx64 "/lpc@0", 1723 (uint64_t) PNV10_LPCM_BASE(chip)); 1724 1725 /* Create the simplified OCC model */ 1726 object_property_set_link(OBJECT(&chip10->occ), "psi", OBJECT(&chip10->psi), 1727 &error_abort); 1728 if (!qdev_realize(DEVICE(&chip10->occ), NULL, errp)) { 1729 return; 1730 } 1731 pnv_xscom_add_subregion(chip, PNV10_XSCOM_OCC_BASE, 1732 &chip10->occ.xscom_regs); 1733 1734 /* PHBs */ 1735 pnv_chip_power10_phb_realize(chip, &local_err); 1736 if (local_err) { 1737 error_propagate(errp, local_err); 1738 return; 1739 } 1740 } 1741 1742 static uint32_t pnv_chip_power10_xscom_pcba(PnvChip *chip, uint64_t addr) 1743 { 1744 addr &= (PNV10_XSCOM_SIZE - 1); 1745 return addr >> 3; 1746 } 1747 1748 static void pnv_chip_power10_class_init(ObjectClass *klass, void *data) 1749 { 1750 DeviceClass *dc = DEVICE_CLASS(klass); 1751 PnvChipClass *k = PNV_CHIP_CLASS(klass); 1752 1753 k->chip_cfam_id = 0x120da04900008000ull; /* P10 DD1.0 (with NX) */ 1754 k->cores_mask = POWER10_CORE_MASK; 1755 k->core_pir = pnv_chip_core_pir_p10; 1756 k->intc_create = pnv_chip_power10_intc_create; 1757 k->intc_reset = pnv_chip_power10_intc_reset; 1758 k->intc_destroy = pnv_chip_power10_intc_destroy; 1759 k->intc_print_info = pnv_chip_power10_intc_print_info; 1760 k->isa_create = pnv_chip_power10_isa_create; 1761 k->dt_populate = pnv_chip_power10_dt_populate; 1762 k->pic_print_info = pnv_chip_power10_pic_print_info; 1763 k->xscom_core_base = pnv_chip_power10_xscom_core_base; 1764 k->xscom_pcba = pnv_chip_power10_xscom_pcba; 1765 dc->desc = "PowerNV Chip POWER10"; 1766 k->num_pecs = PNV10_CHIP_MAX_PEC; 1767 1768 device_class_set_parent_realize(dc, pnv_chip_power10_realize, 1769 &k->parent_realize); 1770 } 1771 1772 static void pnv_chip_core_sanitize(PnvChip *chip, Error **errp) 1773 { 1774 PnvChipClass *pcc = PNV_CHIP_GET_CLASS(chip); 1775 int cores_max; 1776 1777 /* 1778 * No custom mask for this chip, let's use the default one from * 1779 * the chip class 1780 */ 1781 if (!chip->cores_mask) { 1782 chip->cores_mask = pcc->cores_mask; 1783 } 1784 1785 /* filter alien core ids ! some are reserved */ 1786 if ((chip->cores_mask & pcc->cores_mask) != chip->cores_mask) { 1787 error_setg(errp, "warning: invalid core mask for chip Ox%"PRIx64" !", 1788 chip->cores_mask); 1789 return; 1790 } 1791 chip->cores_mask &= pcc->cores_mask; 1792 1793 /* now that we have a sane layout, let check the number of cores */ 1794 cores_max = ctpop64(chip->cores_mask); 1795 if (chip->nr_cores > cores_max) { 1796 error_setg(errp, "warning: too many cores for chip ! Limit is %d", 1797 cores_max); 1798 return; 1799 } 1800 } 1801 1802 static void pnv_chip_core_realize(PnvChip *chip, Error **errp) 1803 { 1804 Error *error = NULL; 1805 PnvChipClass *pcc = PNV_CHIP_GET_CLASS(chip); 1806 const char *typename = pnv_chip_core_typename(chip); 1807 int i, core_hwid; 1808 PnvMachineState *pnv = PNV_MACHINE(qdev_get_machine()); 1809 1810 if (!object_class_by_name(typename)) { 1811 error_setg(errp, "Unable to find PowerNV CPU Core '%s'", typename); 1812 return; 1813 } 1814 1815 /* Cores */ 1816 pnv_chip_core_sanitize(chip, &error); 1817 if (error) { 1818 error_propagate(errp, error); 1819 return; 1820 } 1821 1822 chip->cores = g_new0(PnvCore *, chip->nr_cores); 1823 1824 for (i = 0, core_hwid = 0; (core_hwid < sizeof(chip->cores_mask) * 8) 1825 && (i < chip->nr_cores); core_hwid++) { 1826 char core_name[32]; 1827 PnvCore *pnv_core; 1828 uint64_t xscom_core_base; 1829 1830 if (!(chip->cores_mask & (1ull << core_hwid))) { 1831 continue; 1832 } 1833 1834 pnv_core = PNV_CORE(object_new(typename)); 1835 1836 snprintf(core_name, sizeof(core_name), "core[%d]", core_hwid); 1837 object_property_add_child(OBJECT(chip), core_name, OBJECT(pnv_core)); 1838 chip->cores[i] = pnv_core; 1839 object_property_set_int(OBJECT(pnv_core), "nr-threads", 1840 chip->nr_threads, &error_fatal); 1841 object_property_set_int(OBJECT(pnv_core), CPU_CORE_PROP_CORE_ID, 1842 core_hwid, &error_fatal); 1843 object_property_set_int(OBJECT(pnv_core), "pir", 1844 pcc->core_pir(chip, core_hwid), &error_fatal); 1845 object_property_set_int(OBJECT(pnv_core), "hrmor", pnv->fw_load_addr, 1846 &error_fatal); 1847 object_property_set_link(OBJECT(pnv_core), "chip", OBJECT(chip), 1848 &error_abort); 1849 qdev_realize(DEVICE(pnv_core), NULL, &error_fatal); 1850 1851 /* Each core has an XSCOM MMIO region */ 1852 xscom_core_base = pcc->xscom_core_base(chip, core_hwid); 1853 1854 pnv_xscom_add_subregion(chip, xscom_core_base, 1855 &pnv_core->xscom_regs); 1856 i++; 1857 } 1858 } 1859 1860 static void pnv_chip_realize(DeviceState *dev, Error **errp) 1861 { 1862 PnvChip *chip = PNV_CHIP(dev); 1863 Error *error = NULL; 1864 1865 /* Cores */ 1866 pnv_chip_core_realize(chip, &error); 1867 if (error) { 1868 error_propagate(errp, error); 1869 return; 1870 } 1871 } 1872 1873 static Property pnv_chip_properties[] = { 1874 DEFINE_PROP_UINT32("chip-id", PnvChip, chip_id, 0), 1875 DEFINE_PROP_UINT64("ram-start", PnvChip, ram_start, 0), 1876 DEFINE_PROP_UINT64("ram-size", PnvChip, ram_size, 0), 1877 DEFINE_PROP_UINT32("nr-cores", PnvChip, nr_cores, 1), 1878 DEFINE_PROP_UINT64("cores-mask", PnvChip, cores_mask, 0x0), 1879 DEFINE_PROP_UINT32("nr-threads", PnvChip, nr_threads, 1), 1880 DEFINE_PROP_END_OF_LIST(), 1881 }; 1882 1883 static void pnv_chip_class_init(ObjectClass *klass, void *data) 1884 { 1885 DeviceClass *dc = DEVICE_CLASS(klass); 1886 1887 set_bit(DEVICE_CATEGORY_CPU, dc->categories); 1888 dc->realize = pnv_chip_realize; 1889 device_class_set_props(dc, pnv_chip_properties); 1890 dc->desc = "PowerNV Chip"; 1891 } 1892 1893 PowerPCCPU *pnv_chip_find_cpu(PnvChip *chip, uint32_t pir) 1894 { 1895 int i, j; 1896 1897 for (i = 0; i < chip->nr_cores; i++) { 1898 PnvCore *pc = chip->cores[i]; 1899 CPUCore *cc = CPU_CORE(pc); 1900 1901 for (j = 0; j < cc->nr_threads; j++) { 1902 if (ppc_cpu_pir(pc->threads[j]) == pir) { 1903 return pc->threads[j]; 1904 } 1905 } 1906 } 1907 return NULL; 1908 } 1909 1910 typedef struct ForeachPhb3Args { 1911 int irq; 1912 ICSState *ics; 1913 } ForeachPhb3Args; 1914 1915 static int pnv_ics_get_child(Object *child, void *opaque) 1916 { 1917 ForeachPhb3Args *args = opaque; 1918 PnvPHB3 *phb3 = (PnvPHB3 *) object_dynamic_cast(child, TYPE_PNV_PHB3); 1919 1920 if (phb3) { 1921 if (ics_valid_irq(&phb3->lsis, args->irq)) { 1922 args->ics = &phb3->lsis; 1923 } 1924 if (ics_valid_irq(ICS(&phb3->msis), args->irq)) { 1925 args->ics = ICS(&phb3->msis); 1926 } 1927 } 1928 return args->ics ? 1 : 0; 1929 } 1930 1931 static ICSState *pnv_ics_get(XICSFabric *xi, int irq) 1932 { 1933 PnvMachineState *pnv = PNV_MACHINE(xi); 1934 ForeachPhb3Args args = { irq, NULL }; 1935 int i; 1936 1937 for (i = 0; i < pnv->num_chips; i++) { 1938 PnvChip *chip = pnv->chips[i]; 1939 Pnv8Chip *chip8 = PNV8_CHIP(pnv->chips[i]); 1940 1941 if (ics_valid_irq(&chip8->psi.ics, irq)) { 1942 return &chip8->psi.ics; 1943 } 1944 1945 object_child_foreach(OBJECT(chip), pnv_ics_get_child, &args); 1946 if (args.ics) { 1947 return args.ics; 1948 } 1949 } 1950 return NULL; 1951 } 1952 1953 void pnv_chip_parent_fixup(PnvChip *chip, Object *obj, int index) 1954 { 1955 Object *parent = OBJECT(chip); 1956 g_autofree char *default_id = 1957 g_strdup_printf("%s[%d]", object_get_typename(obj), index); 1958 1959 if (obj->parent == parent) { 1960 return; 1961 } 1962 1963 object_ref(obj); 1964 object_unparent(obj); 1965 object_property_add_child( 1966 parent, DEVICE(obj)->id ? DEVICE(obj)->id : default_id, obj); 1967 object_unref(obj); 1968 } 1969 1970 PnvChip *pnv_get_chip(PnvMachineState *pnv, uint32_t chip_id) 1971 { 1972 int i; 1973 1974 for (i = 0; i < pnv->num_chips; i++) { 1975 PnvChip *chip = pnv->chips[i]; 1976 if (chip->chip_id == chip_id) { 1977 return chip; 1978 } 1979 } 1980 return NULL; 1981 } 1982 1983 static int pnv_ics_resend_child(Object *child, void *opaque) 1984 { 1985 PnvPHB3 *phb3 = (PnvPHB3 *) object_dynamic_cast(child, TYPE_PNV_PHB3); 1986 1987 if (phb3) { 1988 ics_resend(&phb3->lsis); 1989 ics_resend(ICS(&phb3->msis)); 1990 } 1991 return 0; 1992 } 1993 1994 static void pnv_ics_resend(XICSFabric *xi) 1995 { 1996 PnvMachineState *pnv = PNV_MACHINE(xi); 1997 int i; 1998 1999 for (i = 0; i < pnv->num_chips; i++) { 2000 PnvChip *chip = pnv->chips[i]; 2001 Pnv8Chip *chip8 = PNV8_CHIP(pnv->chips[i]); 2002 2003 ics_resend(&chip8->psi.ics); 2004 object_child_foreach(OBJECT(chip), pnv_ics_resend_child, NULL); 2005 } 2006 } 2007 2008 static ICPState *pnv_icp_get(XICSFabric *xi, int pir) 2009 { 2010 PowerPCCPU *cpu = ppc_get_vcpu_by_pir(pir); 2011 2012 return cpu ? ICP(pnv_cpu_state(cpu)->intc) : NULL; 2013 } 2014 2015 static void pnv_pic_print_info(InterruptStatsProvider *obj, 2016 Monitor *mon) 2017 { 2018 PnvMachineState *pnv = PNV_MACHINE(obj); 2019 int i; 2020 CPUState *cs; 2021 2022 CPU_FOREACH(cs) { 2023 PowerPCCPU *cpu = POWERPC_CPU(cs); 2024 2025 /* XXX: loop on each chip/core/thread instead of CPU_FOREACH() */ 2026 PNV_CHIP_GET_CLASS(pnv->chips[0])->intc_print_info(pnv->chips[0], cpu, 2027 mon); 2028 } 2029 2030 for (i = 0; i < pnv->num_chips; i++) { 2031 PNV_CHIP_GET_CLASS(pnv->chips[i])->pic_print_info(pnv->chips[i], mon); 2032 } 2033 } 2034 2035 static int pnv_match_nvt(XiveFabric *xfb, uint8_t format, 2036 uint8_t nvt_blk, uint32_t nvt_idx, 2037 bool cam_ignore, uint8_t priority, 2038 uint32_t logic_serv, 2039 XiveTCTXMatch *match) 2040 { 2041 PnvMachineState *pnv = PNV_MACHINE(xfb); 2042 int total_count = 0; 2043 int i; 2044 2045 for (i = 0; i < pnv->num_chips; i++) { 2046 Pnv9Chip *chip9 = PNV9_CHIP(pnv->chips[i]); 2047 XivePresenter *xptr = XIVE_PRESENTER(&chip9->xive); 2048 XivePresenterClass *xpc = XIVE_PRESENTER_GET_CLASS(xptr); 2049 int count; 2050 2051 count = xpc->match_nvt(xptr, format, nvt_blk, nvt_idx, cam_ignore, 2052 priority, logic_serv, match); 2053 2054 if (count < 0) { 2055 return count; 2056 } 2057 2058 total_count += count; 2059 } 2060 2061 return total_count; 2062 } 2063 2064 static int pnv10_xive_match_nvt(XiveFabric *xfb, uint8_t format, 2065 uint8_t nvt_blk, uint32_t nvt_idx, 2066 bool cam_ignore, uint8_t priority, 2067 uint32_t logic_serv, 2068 XiveTCTXMatch *match) 2069 { 2070 PnvMachineState *pnv = PNV_MACHINE(xfb); 2071 int total_count = 0; 2072 int i; 2073 2074 for (i = 0; i < pnv->num_chips; i++) { 2075 Pnv10Chip *chip10 = PNV10_CHIP(pnv->chips[i]); 2076 XivePresenter *xptr = XIVE_PRESENTER(&chip10->xive); 2077 XivePresenterClass *xpc = XIVE_PRESENTER_GET_CLASS(xptr); 2078 int count; 2079 2080 count = xpc->match_nvt(xptr, format, nvt_blk, nvt_idx, cam_ignore, 2081 priority, logic_serv, match); 2082 2083 if (count < 0) { 2084 return count; 2085 } 2086 2087 total_count += count; 2088 } 2089 2090 return total_count; 2091 } 2092 2093 static void pnv_machine_power8_class_init(ObjectClass *oc, void *data) 2094 { 2095 MachineClass *mc = MACHINE_CLASS(oc); 2096 XICSFabricClass *xic = XICS_FABRIC_CLASS(oc); 2097 PnvMachineClass *pmc = PNV_MACHINE_CLASS(oc); 2098 static const char compat[] = "qemu,powernv8\0qemu,powernv\0ibm,powernv"; 2099 2100 mc->desc = "IBM PowerNV (Non-Virtualized) POWER8"; 2101 mc->default_cpu_type = POWERPC_CPU_TYPE_NAME("power8_v2.0"); 2102 2103 xic->icp_get = pnv_icp_get; 2104 xic->ics_get = pnv_ics_get; 2105 xic->ics_resend = pnv_ics_resend; 2106 2107 pmc->compat = compat; 2108 pmc->compat_size = sizeof(compat); 2109 2110 machine_class_allow_dynamic_sysbus_dev(mc, TYPE_PNV_PHB3); 2111 } 2112 2113 static void pnv_machine_power9_class_init(ObjectClass *oc, void *data) 2114 { 2115 MachineClass *mc = MACHINE_CLASS(oc); 2116 XiveFabricClass *xfc = XIVE_FABRIC_CLASS(oc); 2117 PnvMachineClass *pmc = PNV_MACHINE_CLASS(oc); 2118 static const char compat[] = "qemu,powernv9\0ibm,powernv"; 2119 2120 mc->desc = "IBM PowerNV (Non-Virtualized) POWER9"; 2121 mc->default_cpu_type = POWERPC_CPU_TYPE_NAME("power9_v2.0"); 2122 xfc->match_nvt = pnv_match_nvt; 2123 2124 mc->alias = "powernv"; 2125 2126 pmc->compat = compat; 2127 pmc->compat_size = sizeof(compat); 2128 pmc->dt_power_mgt = pnv_dt_power_mgt; 2129 2130 machine_class_allow_dynamic_sysbus_dev(mc, TYPE_PNV_PHB4); 2131 } 2132 2133 static void pnv_machine_power10_class_init(ObjectClass *oc, void *data) 2134 { 2135 MachineClass *mc = MACHINE_CLASS(oc); 2136 PnvMachineClass *pmc = PNV_MACHINE_CLASS(oc); 2137 XiveFabricClass *xfc = XIVE_FABRIC_CLASS(oc); 2138 static const char compat[] = "qemu,powernv10\0ibm,powernv"; 2139 2140 mc->desc = "IBM PowerNV (Non-Virtualized) POWER10"; 2141 mc->default_cpu_type = POWERPC_CPU_TYPE_NAME("power10_v2.0"); 2142 2143 pmc->compat = compat; 2144 pmc->compat_size = sizeof(compat); 2145 pmc->dt_power_mgt = pnv_dt_power_mgt; 2146 2147 xfc->match_nvt = pnv10_xive_match_nvt; 2148 } 2149 2150 static bool pnv_machine_get_hb(Object *obj, Error **errp) 2151 { 2152 PnvMachineState *pnv = PNV_MACHINE(obj); 2153 2154 return !!pnv->fw_load_addr; 2155 } 2156 2157 static void pnv_machine_set_hb(Object *obj, bool value, Error **errp) 2158 { 2159 PnvMachineState *pnv = PNV_MACHINE(obj); 2160 2161 if (value) { 2162 pnv->fw_load_addr = 0x8000000; 2163 } 2164 } 2165 2166 static void pnv_cpu_do_nmi_on_cpu(CPUState *cs, run_on_cpu_data arg) 2167 { 2168 PowerPCCPU *cpu = POWERPC_CPU(cs); 2169 CPUPPCState *env = &cpu->env; 2170 2171 cpu_synchronize_state(cs); 2172 ppc_cpu_do_system_reset(cs); 2173 if (env->spr[SPR_SRR1] & SRR1_WAKESTATE) { 2174 /* 2175 * Power-save wakeups, as indicated by non-zero SRR1[46:47] put the 2176 * wakeup reason in SRR1[42:45], system reset is indicated with 0b0100 2177 * (PPC_BIT(43)). 2178 */ 2179 if (!(env->spr[SPR_SRR1] & SRR1_WAKERESET)) { 2180 warn_report("ppc_cpu_do_system_reset does not set system reset wakeup reason"); 2181 env->spr[SPR_SRR1] |= SRR1_WAKERESET; 2182 } 2183 } else { 2184 /* 2185 * For non-powersave system resets, SRR1[42:45] are defined to be 2186 * implementation-dependent. The POWER9 User Manual specifies that 2187 * an external (SCOM driven, which may come from a BMC nmi command or 2188 * another CPU requesting a NMI IPI) system reset exception should be 2189 * 0b0010 (PPC_BIT(44)). 2190 */ 2191 env->spr[SPR_SRR1] |= SRR1_WAKESCOM; 2192 } 2193 } 2194 2195 static void pnv_nmi(NMIState *n, int cpu_index, Error **errp) 2196 { 2197 CPUState *cs; 2198 2199 CPU_FOREACH(cs) { 2200 async_run_on_cpu(cs, pnv_cpu_do_nmi_on_cpu, RUN_ON_CPU_NULL); 2201 } 2202 } 2203 2204 static void pnv_machine_class_init(ObjectClass *oc, void *data) 2205 { 2206 MachineClass *mc = MACHINE_CLASS(oc); 2207 InterruptStatsProviderClass *ispc = INTERRUPT_STATS_PROVIDER_CLASS(oc); 2208 NMIClass *nc = NMI_CLASS(oc); 2209 2210 mc->desc = "IBM PowerNV (Non-Virtualized)"; 2211 mc->init = pnv_init; 2212 mc->reset = pnv_reset; 2213 mc->max_cpus = MAX_CPUS; 2214 /* Pnv provides a AHCI device for storage */ 2215 mc->block_default_type = IF_IDE; 2216 mc->no_parallel = 1; 2217 mc->default_boot_order = NULL; 2218 /* 2219 * RAM defaults to less than 2048 for 32-bit hosts, and large 2220 * enough to fit the maximum initrd size at it's load address 2221 */ 2222 mc->default_ram_size = 1 * GiB; 2223 mc->default_ram_id = "pnv.ram"; 2224 ispc->print_info = pnv_pic_print_info; 2225 nc->nmi_monitor_handler = pnv_nmi; 2226 2227 object_class_property_add_bool(oc, "hb-mode", 2228 pnv_machine_get_hb, pnv_machine_set_hb); 2229 object_class_property_set_description(oc, "hb-mode", 2230 "Use a hostboot like boot loader"); 2231 } 2232 2233 #define DEFINE_PNV8_CHIP_TYPE(type, class_initfn) \ 2234 { \ 2235 .name = type, \ 2236 .class_init = class_initfn, \ 2237 .parent = TYPE_PNV8_CHIP, \ 2238 } 2239 2240 #define DEFINE_PNV9_CHIP_TYPE(type, class_initfn) \ 2241 { \ 2242 .name = type, \ 2243 .class_init = class_initfn, \ 2244 .parent = TYPE_PNV9_CHIP, \ 2245 } 2246 2247 #define DEFINE_PNV10_CHIP_TYPE(type, class_initfn) \ 2248 { \ 2249 .name = type, \ 2250 .class_init = class_initfn, \ 2251 .parent = TYPE_PNV10_CHIP, \ 2252 } 2253 2254 static const TypeInfo types[] = { 2255 { 2256 .name = MACHINE_TYPE_NAME("powernv10"), 2257 .parent = TYPE_PNV_MACHINE, 2258 .class_init = pnv_machine_power10_class_init, 2259 .interfaces = (InterfaceInfo[]) { 2260 { TYPE_XIVE_FABRIC }, 2261 { }, 2262 }, 2263 }, 2264 { 2265 .name = MACHINE_TYPE_NAME("powernv9"), 2266 .parent = TYPE_PNV_MACHINE, 2267 .class_init = pnv_machine_power9_class_init, 2268 .interfaces = (InterfaceInfo[]) { 2269 { TYPE_XIVE_FABRIC }, 2270 { }, 2271 }, 2272 }, 2273 { 2274 .name = MACHINE_TYPE_NAME("powernv8"), 2275 .parent = TYPE_PNV_MACHINE, 2276 .class_init = pnv_machine_power8_class_init, 2277 .interfaces = (InterfaceInfo[]) { 2278 { TYPE_XICS_FABRIC }, 2279 { }, 2280 }, 2281 }, 2282 { 2283 .name = TYPE_PNV_MACHINE, 2284 .parent = TYPE_MACHINE, 2285 .abstract = true, 2286 .instance_size = sizeof(PnvMachineState), 2287 .class_init = pnv_machine_class_init, 2288 .class_size = sizeof(PnvMachineClass), 2289 .interfaces = (InterfaceInfo[]) { 2290 { TYPE_INTERRUPT_STATS_PROVIDER }, 2291 { TYPE_NMI }, 2292 { }, 2293 }, 2294 }, 2295 { 2296 .name = TYPE_PNV_CHIP, 2297 .parent = TYPE_SYS_BUS_DEVICE, 2298 .class_init = pnv_chip_class_init, 2299 .instance_size = sizeof(PnvChip), 2300 .class_size = sizeof(PnvChipClass), 2301 .abstract = true, 2302 }, 2303 2304 /* 2305 * P10 chip and variants 2306 */ 2307 { 2308 .name = TYPE_PNV10_CHIP, 2309 .parent = TYPE_PNV_CHIP, 2310 .instance_init = pnv_chip_power10_instance_init, 2311 .instance_size = sizeof(Pnv10Chip), 2312 }, 2313 DEFINE_PNV10_CHIP_TYPE(TYPE_PNV_CHIP_POWER10, pnv_chip_power10_class_init), 2314 2315 /* 2316 * P9 chip and variants 2317 */ 2318 { 2319 .name = TYPE_PNV9_CHIP, 2320 .parent = TYPE_PNV_CHIP, 2321 .instance_init = pnv_chip_power9_instance_init, 2322 .instance_size = sizeof(Pnv9Chip), 2323 }, 2324 DEFINE_PNV9_CHIP_TYPE(TYPE_PNV_CHIP_POWER9, pnv_chip_power9_class_init), 2325 2326 /* 2327 * P8 chip and variants 2328 */ 2329 { 2330 .name = TYPE_PNV8_CHIP, 2331 .parent = TYPE_PNV_CHIP, 2332 .instance_init = pnv_chip_power8_instance_init, 2333 .instance_size = sizeof(Pnv8Chip), 2334 }, 2335 DEFINE_PNV8_CHIP_TYPE(TYPE_PNV_CHIP_POWER8, pnv_chip_power8_class_init), 2336 DEFINE_PNV8_CHIP_TYPE(TYPE_PNV_CHIP_POWER8E, pnv_chip_power8e_class_init), 2337 DEFINE_PNV8_CHIP_TYPE(TYPE_PNV_CHIP_POWER8NVL, 2338 pnv_chip_power8nvl_class_init), 2339 }; 2340 2341 DEFINE_TYPES(types) 2342