]> git.proxmox.com Git - mirror_qemu.git/blame - hw/ppc/pnv.c
ppc: pnv: define core types statically
[mirror_qemu.git] / hw / ppc / pnv.c
CommitLineData
9e933f4a
BH
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 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 "qapi/error.h"
22#include "sysemu/sysemu.h"
23#include "sysemu/numa.h"
d2528bdc 24#include "sysemu/cpus.h"
9e933f4a 25#include "hw/hw.h"
fcf5ef2a 26#include "target/ppc/cpu.h"
9e933f4a
BH
27#include "qemu/log.h"
28#include "hw/ppc/fdt.h"
29#include "hw/ppc/ppc.h"
30#include "hw/ppc/pnv.h"
d2fd9612 31#include "hw/ppc/pnv_core.h"
9e933f4a
BH
32#include "hw/loader.h"
33#include "exec/address-spaces.h"
34#include "qemu/cutils.h"
e997040e 35#include "qapi/visitor.h"
47fea43a
CLG
36#include "monitor/monitor.h"
37#include "hw/intc/intc.h"
aeaef83d 38#include "hw/ipmi/ipmi.h"
9e933f4a 39
36fc6f08 40#include "hw/ppc/xics.h"
967b7523
CLG
41#include "hw/ppc/pnv_xscom.h"
42
3495b6b6
CLG
43#include "hw/isa/isa.h"
44#include "hw/char/serial.h"
45#include "hw/timer/mc146818rtc.h"
46
9e933f4a
BH
47#include <libfdt.h>
48
49#define FDT_MAX_SIZE 0x00100000
50
51#define FW_FILE_NAME "skiboot.lid"
52#define FW_LOAD_ADDR 0x0
53#define FW_MAX_SIZE 0x00400000
54
55#define KERNEL_LOAD_ADDR 0x20000000
56#define INITRD_LOAD_ADDR 0x40000000
57
58/*
59 * On Power Systems E880 (POWER8), the max cpus (threads) should be :
60 * 4 * 4 sockets * 12 cores * 8 threads = 1536
61 * Let's make it 2^11
62 */
63#define MAX_CPUS 2048
64
65/*
66 * Memory nodes are created by hostboot, one for each range of memory
67 * that has a different "affinity". In practice, it means one range
68 * per chip.
69 */
70static void powernv_populate_memory_node(void *fdt, int chip_id, hwaddr start,
71 hwaddr size)
72{
73 char *mem_name;
74 uint64_t mem_reg_property[2];
75 int off;
76
77 mem_reg_property[0] = cpu_to_be64(start);
78 mem_reg_property[1] = cpu_to_be64(size);
79
80 mem_name = g_strdup_printf("memory@%"HWADDR_PRIx, start);
81 off = fdt_add_subnode(fdt, 0, mem_name);
82 g_free(mem_name);
83
84 _FDT((fdt_setprop_string(fdt, off, "device_type", "memory")));
85 _FDT((fdt_setprop(fdt, off, "reg", mem_reg_property,
86 sizeof(mem_reg_property))));
87 _FDT((fdt_setprop_cell(fdt, off, "ibm,chip-id", chip_id)));
88}
89
d2fd9612
CLG
90static int get_cpus_node(void *fdt)
91{
92 int cpus_offset = fdt_path_offset(fdt, "/cpus");
93
94 if (cpus_offset < 0) {
a4f3885c 95 cpus_offset = fdt_add_subnode(fdt, 0, "cpus");
d2fd9612
CLG
96 if (cpus_offset) {
97 _FDT((fdt_setprop_cell(fdt, cpus_offset, "#address-cells", 0x1)));
98 _FDT((fdt_setprop_cell(fdt, cpus_offset, "#size-cells", 0x0)));
99 }
100 }
101 _FDT(cpus_offset);
102 return cpus_offset;
103}
104
105/*
106 * The PowerNV cores (and threads) need to use real HW ids and not an
107 * incremental index like it has been done on other platforms. This HW
108 * id is stored in the CPU PIR, it is used to create cpu nodes in the
109 * device tree, used in XSCOM to address cores and in interrupt
110 * servers.
111 */
112static void powernv_create_core_node(PnvChip *chip, PnvCore *pc, void *fdt)
113{
114 CPUState *cs = CPU(DEVICE(pc->threads));
115 DeviceClass *dc = DEVICE_GET_CLASS(cs);
116 PowerPCCPU *cpu = POWERPC_CPU(cs);
8bd9530e 117 int smt_threads = CPU_CORE(pc)->nr_threads;
d2fd9612
CLG
118 CPUPPCState *env = &cpu->env;
119 PowerPCCPUClass *pcc = POWERPC_CPU_GET_CLASS(cs);
120 uint32_t servers_prop[smt_threads];
121 int i;
122 uint32_t segs[] = {cpu_to_be32(28), cpu_to_be32(40),
123 0xffffffff, 0xffffffff};
124 uint32_t tbfreq = PNV_TIMEBASE_FREQ;
125 uint32_t cpufreq = 1000000000;
126 uint32_t page_sizes_prop[64];
127 size_t page_sizes_prop_size;
128 const uint8_t pa_features[] = { 24, 0,
129 0xf6, 0x3f, 0xc7, 0xc0, 0x80, 0xf0,
130 0x80, 0x00, 0x00, 0x00, 0x00, 0x00,
131 0x00, 0x00, 0x00, 0x00, 0x80, 0x00,
132 0x80, 0x00, 0x80, 0x00, 0x80, 0x00 };
133 int offset;
134 char *nodename;
135 int cpus_offset = get_cpus_node(fdt);
136
137 nodename = g_strdup_printf("%s@%x", dc->fw_name, pc->pir);
138 offset = fdt_add_subnode(fdt, cpus_offset, nodename);
139 _FDT(offset);
140 g_free(nodename);
141
142 _FDT((fdt_setprop_cell(fdt, offset, "ibm,chip-id", chip->chip_id)));
143
144 _FDT((fdt_setprop_cell(fdt, offset, "reg", pc->pir)));
145 _FDT((fdt_setprop_cell(fdt, offset, "ibm,pir", pc->pir)));
146 _FDT((fdt_setprop_string(fdt, offset, "device_type", "cpu")));
147
148 _FDT((fdt_setprop_cell(fdt, offset, "cpu-version", env->spr[SPR_PVR])));
149 _FDT((fdt_setprop_cell(fdt, offset, "d-cache-block-size",
150 env->dcache_line_size)));
151 _FDT((fdt_setprop_cell(fdt, offset, "d-cache-line-size",
152 env->dcache_line_size)));
153 _FDT((fdt_setprop_cell(fdt, offset, "i-cache-block-size",
154 env->icache_line_size)));
155 _FDT((fdt_setprop_cell(fdt, offset, "i-cache-line-size",
156 env->icache_line_size)));
157
158 if (pcc->l1_dcache_size) {
159 _FDT((fdt_setprop_cell(fdt, offset, "d-cache-size",
160 pcc->l1_dcache_size)));
161 } else {
3dc6f869 162 warn_report("Unknown L1 dcache size for cpu");
d2fd9612
CLG
163 }
164 if (pcc->l1_icache_size) {
165 _FDT((fdt_setprop_cell(fdt, offset, "i-cache-size",
166 pcc->l1_icache_size)));
167 } else {
3dc6f869 168 warn_report("Unknown L1 icache size for cpu");
d2fd9612
CLG
169 }
170
171 _FDT((fdt_setprop_cell(fdt, offset, "timebase-frequency", tbfreq)));
172 _FDT((fdt_setprop_cell(fdt, offset, "clock-frequency", cpufreq)));
173 _FDT((fdt_setprop_cell(fdt, offset, "ibm,slb-size", env->slb_nr)));
174 _FDT((fdt_setprop_string(fdt, offset, "status", "okay")));
175 _FDT((fdt_setprop(fdt, offset, "64-bit", NULL, 0)));
176
177 if (env->spr_cb[SPR_PURR].oea_read) {
178 _FDT((fdt_setprop(fdt, offset, "ibm,purr", NULL, 0)));
179 }
180
181 if (env->mmu_model & POWERPC_MMU_1TSEG) {
182 _FDT((fdt_setprop(fdt, offset, "ibm,processor-segment-sizes",
183 segs, sizeof(segs))));
184 }
185
186 /* Advertise VMX/VSX (vector extensions) if available
187 * 0 / no property == no vector extensions
188 * 1 == VMX / Altivec available
189 * 2 == VSX available */
190 if (env->insns_flags & PPC_ALTIVEC) {
191 uint32_t vmx = (env->insns_flags2 & PPC2_VSX) ? 2 : 1;
192
193 _FDT((fdt_setprop_cell(fdt, offset, "ibm,vmx", vmx)));
194 }
195
196 /* Advertise DFP (Decimal Floating Point) if available
197 * 0 / no property == no DFP
198 * 1 == DFP available */
199 if (env->insns_flags2 & PPC2_DFP) {
200 _FDT((fdt_setprop_cell(fdt, offset, "ibm,dfp", 1)));
201 }
202
203 page_sizes_prop_size = ppc_create_page_sizes_prop(env, page_sizes_prop,
204 sizeof(page_sizes_prop));
205 if (page_sizes_prop_size) {
206 _FDT((fdt_setprop(fdt, offset, "ibm,segment-page-sizes",
207 page_sizes_prop, page_sizes_prop_size)));
208 }
209
210 _FDT((fdt_setprop(fdt, offset, "ibm,pa-features",
211 pa_features, sizeof(pa_features))));
212
d2fd9612
CLG
213 /* Build interrupt servers properties */
214 for (i = 0; i < smt_threads; i++) {
215 servers_prop[i] = cpu_to_be32(pc->pir + i);
216 }
217 _FDT((fdt_setprop(fdt, offset, "ibm,ppc-interrupt-server#s",
218 servers_prop, sizeof(servers_prop))));
219}
220
bf5615e7
CLG
221static void powernv_populate_icp(PnvChip *chip, void *fdt, uint32_t pir,
222 uint32_t nr_threads)
223{
224 uint64_t addr = PNV_ICP_BASE(chip) | (pir << 12);
225 char *name;
226 const char compat[] = "IBM,power8-icp\0IBM,ppc-xicp";
227 uint32_t irange[2], i, rsize;
228 uint64_t *reg;
229 int offset;
230
231 irange[0] = cpu_to_be32(pir);
232 irange[1] = cpu_to_be32(nr_threads);
233
234 rsize = sizeof(uint64_t) * 2 * nr_threads;
235 reg = g_malloc(rsize);
236 for (i = 0; i < nr_threads; i++) {
237 reg[i * 2] = cpu_to_be64(addr | ((pir + i) * 0x1000));
238 reg[i * 2 + 1] = cpu_to_be64(0x1000);
239 }
240
241 name = g_strdup_printf("interrupt-controller@%"PRIX64, addr);
242 offset = fdt_add_subnode(fdt, 0, name);
243 _FDT(offset);
244 g_free(name);
245
246 _FDT((fdt_setprop(fdt, offset, "compatible", compat, sizeof(compat))));
247 _FDT((fdt_setprop(fdt, offset, "reg", reg, rsize)));
248 _FDT((fdt_setprop_string(fdt, offset, "device_type",
249 "PowerPC-External-Interrupt-Presentation")));
250 _FDT((fdt_setprop(fdt, offset, "interrupt-controller", NULL, 0)));
251 _FDT((fdt_setprop(fdt, offset, "ibm,interrupt-server-ranges",
252 irange, sizeof(irange))));
253 _FDT((fdt_setprop_cell(fdt, offset, "#interrupt-cells", 1)));
254 _FDT((fdt_setprop_cell(fdt, offset, "#address-cells", 0)));
255 g_free(reg);
256}
257
5a7e14a2
CLG
258static int pnv_chip_lpc_offset(PnvChip *chip, void *fdt)
259{
260 char *name;
261 int offset;
262
263 name = g_strdup_printf("/xscom@%" PRIx64 "/isa@%x",
264 (uint64_t) PNV_XSCOM_BASE(chip), PNV_XSCOM_LPC_BASE);
265 offset = fdt_path_offset(fdt, name);
266 g_free(name);
267 return offset;
268}
269
e997040e
CLG
270static void powernv_populate_chip(PnvChip *chip, void *fdt)
271{
d2fd9612
CLG
272 PnvChipClass *pcc = PNV_CHIP_GET_CLASS(chip);
273 char *typename = pnv_core_typename(pcc->cpu_model);
274 size_t typesize = object_type_get_instance_size(typename);
275 int i;
276
967b7523
CLG
277 pnv_xscom_populate(chip, fdt, 0);
278
5a7e14a2
CLG
279 /* The default LPC bus of a multichip system is on chip 0. It's
280 * recognized by the firmware (skiboot) using a "primary"
281 * property.
282 */
283 if (chip->chip_id == 0x0) {
284 int lpc_offset = pnv_chip_lpc_offset(chip, fdt);
285
286 _FDT((fdt_setprop(fdt, lpc_offset, "primary", NULL, 0)));
287 }
288
d2fd9612
CLG
289 for (i = 0; i < chip->nr_cores; i++) {
290 PnvCore *pnv_core = PNV_CORE(chip->cores + i * typesize);
291
292 powernv_create_core_node(chip, pnv_core, fdt);
bf5615e7
CLG
293
294 /* Interrupt Control Presenters (ICP). One per core. */
295 powernv_populate_icp(chip, fdt, pnv_core->pir,
296 CPU_CORE(pnv_core)->nr_threads);
d2fd9612
CLG
297 }
298
e997040e
CLG
299 if (chip->ram_size) {
300 powernv_populate_memory_node(fdt, chip->chip_id, chip->ram_start,
301 chip->ram_size);
302 }
d2fd9612 303 g_free(typename);
e997040e
CLG
304}
305
c5ffdcae
CLG
306static void powernv_populate_rtc(ISADevice *d, void *fdt, int lpc_off)
307{
308 uint32_t io_base = d->ioport_id;
309 uint32_t io_regs[] = {
310 cpu_to_be32(1),
311 cpu_to_be32(io_base),
312 cpu_to_be32(2)
313 };
314 char *name;
315 int node;
316
317 name = g_strdup_printf("%s@i%x", qdev_fw_name(DEVICE(d)), io_base);
318 node = fdt_add_subnode(fdt, lpc_off, name);
319 _FDT(node);
320 g_free(name);
321
322 _FDT((fdt_setprop(fdt, node, "reg", io_regs, sizeof(io_regs))));
323 _FDT((fdt_setprop_string(fdt, node, "compatible", "pnpPNP,b00")));
324}
325
cb228f5a
CLG
326static void powernv_populate_serial(ISADevice *d, void *fdt, int lpc_off)
327{
328 const char compatible[] = "ns16550\0pnpPNP,501";
329 uint32_t io_base = d->ioport_id;
330 uint32_t io_regs[] = {
331 cpu_to_be32(1),
332 cpu_to_be32(io_base),
333 cpu_to_be32(8)
334 };
335 char *name;
336 int node;
337
338 name = g_strdup_printf("%s@i%x", qdev_fw_name(DEVICE(d)), io_base);
339 node = fdt_add_subnode(fdt, lpc_off, name);
340 _FDT(node);
341 g_free(name);
342
343 _FDT((fdt_setprop(fdt, node, "reg", io_regs, sizeof(io_regs))));
344 _FDT((fdt_setprop(fdt, node, "compatible", compatible,
345 sizeof(compatible))));
346
347 _FDT((fdt_setprop_cell(fdt, node, "clock-frequency", 1843200)));
348 _FDT((fdt_setprop_cell(fdt, node, "current-speed", 115200)));
349 _FDT((fdt_setprop_cell(fdt, node, "interrupts", d->isairq[0])));
350 _FDT((fdt_setprop_cell(fdt, node, "interrupt-parent",
351 fdt_get_phandle(fdt, lpc_off))));
352
353 /* This is needed by Linux */
354 _FDT((fdt_setprop_string(fdt, node, "device_type", "serial")));
355}
356
04f6c8b2
CLG
357static void powernv_populate_ipmi_bt(ISADevice *d, void *fdt, int lpc_off)
358{
359 const char compatible[] = "bt\0ipmi-bt";
360 uint32_t io_base;
361 uint32_t io_regs[] = {
362 cpu_to_be32(1),
363 0, /* 'io_base' retrieved from the 'ioport' property of 'isa-ipmi-bt' */
364 cpu_to_be32(3)
365 };
366 uint32_t irq;
367 char *name;
368 int node;
369
370 io_base = object_property_get_int(OBJECT(d), "ioport", &error_fatal);
371 io_regs[1] = cpu_to_be32(io_base);
372
373 irq = object_property_get_int(OBJECT(d), "irq", &error_fatal);
374
375 name = g_strdup_printf("%s@i%x", qdev_fw_name(DEVICE(d)), io_base);
376 node = fdt_add_subnode(fdt, lpc_off, name);
377 _FDT(node);
378 g_free(name);
379
7032d92a
CLG
380 _FDT((fdt_setprop(fdt, node, "reg", io_regs, sizeof(io_regs))));
381 _FDT((fdt_setprop(fdt, node, "compatible", compatible,
382 sizeof(compatible))));
04f6c8b2
CLG
383
384 /* Mark it as reserved to avoid Linux trying to claim it */
385 _FDT((fdt_setprop_string(fdt, node, "status", "reserved")));
386 _FDT((fdt_setprop_cell(fdt, node, "interrupts", irq)));
387 _FDT((fdt_setprop_cell(fdt, node, "interrupt-parent",
388 fdt_get_phandle(fdt, lpc_off))));
389}
390
e7a3fee3
CLG
391typedef struct ForeachPopulateArgs {
392 void *fdt;
393 int offset;
394} ForeachPopulateArgs;
395
396static int powernv_populate_isa_device(DeviceState *dev, void *opaque)
397{
c5ffdcae
CLG
398 ForeachPopulateArgs *args = opaque;
399 ISADevice *d = ISA_DEVICE(dev);
400
401 if (object_dynamic_cast(OBJECT(dev), TYPE_MC146818_RTC)) {
402 powernv_populate_rtc(d, args->fdt, args->offset);
cb228f5a
CLG
403 } else if (object_dynamic_cast(OBJECT(dev), TYPE_ISA_SERIAL)) {
404 powernv_populate_serial(d, args->fdt, args->offset);
04f6c8b2
CLG
405 } else if (object_dynamic_cast(OBJECT(dev), "isa-ipmi-bt")) {
406 powernv_populate_ipmi_bt(d, args->fdt, args->offset);
c5ffdcae
CLG
407 } else {
408 error_report("unknown isa device %s@i%x", qdev_fw_name(dev),
409 d->ioport_id);
410 }
411
e7a3fee3
CLG
412 return 0;
413}
414
415static void powernv_populate_isa(ISABus *bus, void *fdt, int lpc_offset)
416{
417 ForeachPopulateArgs args = {
418 .fdt = fdt,
419 .offset = lpc_offset,
420 };
421
422 /* ISA devices are not necessarily parented to the ISA bus so we
423 * can not use object_child_foreach() */
424 qbus_walk_children(BUS(bus), powernv_populate_isa_device,
425 NULL, NULL, NULL, &args);
426}
427
9e933f4a
BH
428static void *powernv_create_fdt(MachineState *machine)
429{
430 const char plat_compat[] = "qemu,powernv\0ibm,powernv";
431 PnvMachineState *pnv = POWERNV_MACHINE(machine);
432 void *fdt;
433 char *buf;
434 int off;
e997040e 435 int i;
e7a3fee3 436 int lpc_offset;
9e933f4a
BH
437
438 fdt = g_malloc0(FDT_MAX_SIZE);
439 _FDT((fdt_create_empty_tree(fdt, FDT_MAX_SIZE)));
440
441 /* Root node */
442 _FDT((fdt_setprop_cell(fdt, 0, "#address-cells", 0x2)));
443 _FDT((fdt_setprop_cell(fdt, 0, "#size-cells", 0x2)));
444 _FDT((fdt_setprop_string(fdt, 0, "model",
445 "IBM PowerNV (emulated by qemu)")));
446 _FDT((fdt_setprop(fdt, 0, "compatible", plat_compat,
447 sizeof(plat_compat))));
448
449 buf = qemu_uuid_unparse_strdup(&qemu_uuid);
450 _FDT((fdt_setprop_string(fdt, 0, "vm,uuid", buf)));
451 if (qemu_uuid_set) {
452 _FDT((fdt_property_string(fdt, "system-id", buf)));
453 }
454 g_free(buf);
455
456 off = fdt_add_subnode(fdt, 0, "chosen");
457 if (machine->kernel_cmdline) {
458 _FDT((fdt_setprop_string(fdt, off, "bootargs",
459 machine->kernel_cmdline)));
460 }
461
462 if (pnv->initrd_size) {
463 uint32_t start_prop = cpu_to_be32(pnv->initrd_base);
464 uint32_t end_prop = cpu_to_be32(pnv->initrd_base + pnv->initrd_size);
465
466 _FDT((fdt_setprop(fdt, off, "linux,initrd-start",
467 &start_prop, sizeof(start_prop))));
468 _FDT((fdt_setprop(fdt, off, "linux,initrd-end",
469 &end_prop, sizeof(end_prop))));
470 }
471
e997040e
CLG
472 /* Populate device tree for each chip */
473 for (i = 0; i < pnv->num_chips; i++) {
474 powernv_populate_chip(pnv->chips[i], fdt);
475 }
e7a3fee3
CLG
476
477 /* Populate ISA devices on chip 0 */
478 lpc_offset = pnv_chip_lpc_offset(pnv->chips[0], fdt);
479 powernv_populate_isa(pnv->isa_bus, fdt, lpc_offset);
aeaef83d
CLG
480
481 if (pnv->bmc) {
482 pnv_bmc_populate_sensors(pnv->bmc, fdt);
483 }
484
9e933f4a
BH
485 return fdt;
486}
487
bce0b691
CLG
488static void pnv_powerdown_notify(Notifier *n, void *opaque)
489{
490 PnvMachineState *pnv = POWERNV_MACHINE(qdev_get_machine());
491
492 if (pnv->bmc) {
493 pnv_bmc_powerdown(pnv->bmc);
494 }
495}
496
9e933f4a
BH
497static void ppc_powernv_reset(void)
498{
499 MachineState *machine = MACHINE(qdev_get_machine());
aeaef83d 500 PnvMachineState *pnv = POWERNV_MACHINE(machine);
9e933f4a 501 void *fdt;
aeaef83d 502 Object *obj;
9e933f4a
BH
503
504 qemu_devices_reset();
505
aeaef83d
CLG
506 /* OpenPOWER systems have a BMC, which can be defined on the
507 * command line with:
508 *
509 * -device ipmi-bmc-sim,id=bmc0
510 *
511 * This is the internal simulator but it could also be an external
512 * BMC.
513 */
a1a636b8 514 obj = object_resolve_path_type("", "ipmi-bmc-sim", NULL);
aeaef83d
CLG
515 if (obj) {
516 pnv->bmc = IPMI_BMC(obj);
517 }
518
9e933f4a
BH
519 fdt = powernv_create_fdt(machine);
520
521 /* Pack resulting tree */
522 _FDT((fdt_pack(fdt)));
523
524 cpu_physical_memory_write(PNV_FDT_ADDR, fdt, fdt_totalsize(fdt));
525}
526
3495b6b6
CLG
527static ISABus *pnv_isa_create(PnvChip *chip)
528{
529 PnvLpcController *lpc = &chip->lpc;
530 ISABus *isa_bus;
531 qemu_irq *irqs;
532 PnvChipClass *pcc = PNV_CHIP_GET_CLASS(chip);
533
534 /* let isa_bus_new() create its own bridge on SysBus otherwise
535 * devices speficied on the command line won't find the bus and
536 * will fail to create.
537 */
538 isa_bus = isa_bus_new(NULL, &lpc->isa_mem, &lpc->isa_io,
539 &error_fatal);
540
4d1df88b 541 irqs = pnv_lpc_isa_irq_create(lpc, pcc->chip_type, ISA_NUM_IRQS);
3495b6b6
CLG
542
543 isa_bus_irqs(isa_bus, irqs);
544 return isa_bus;
545}
546
9e933f4a
BH
547static void ppc_powernv_init(MachineState *machine)
548{
549 PnvMachineState *pnv = POWERNV_MACHINE(machine);
550 MemoryRegion *ram;
551 char *fw_filename;
552 long fw_size;
e997040e
CLG
553 int i;
554 char *chip_typename;
9e933f4a
BH
555
556 /* allocate RAM */
557 if (machine->ram_size < (1 * G_BYTE)) {
3dc6f869 558 warn_report("skiboot may not work with < 1GB of RAM");
9e933f4a
BH
559 }
560
561 ram = g_new(MemoryRegion, 1);
562 memory_region_allocate_system_memory(ram, NULL, "ppc_powernv.ram",
563 machine->ram_size);
564 memory_region_add_subregion(get_system_memory(), 0, ram);
565
566 /* load skiboot firmware */
567 if (bios_name == NULL) {
568 bios_name = FW_FILE_NAME;
569 }
570
571 fw_filename = qemu_find_file(QEMU_FILE_TYPE_BIOS, bios_name);
15fcedb2
CLG
572 if (!fw_filename) {
573 error_report("Could not find OPAL firmware '%s'", bios_name);
574 exit(1);
575 }
9e933f4a
BH
576
577 fw_size = load_image_targphys(fw_filename, FW_LOAD_ADDR, FW_MAX_SIZE);
578 if (fw_size < 0) {
15fcedb2 579 error_report("Could not load OPAL firmware '%s'", fw_filename);
9e933f4a
BH
580 exit(1);
581 }
582 g_free(fw_filename);
583
584 /* load kernel */
585 if (machine->kernel_filename) {
586 long kernel_size;
587
588 kernel_size = load_image_targphys(machine->kernel_filename,
589 KERNEL_LOAD_ADDR, 0x2000000);
590 if (kernel_size < 0) {
802fc7ab 591 error_report("Could not load kernel '%s'",
7c6e8797 592 machine->kernel_filename);
9e933f4a
BH
593 exit(1);
594 }
595 }
596
597 /* load initrd */
598 if (machine->initrd_filename) {
599 pnv->initrd_base = INITRD_LOAD_ADDR;
600 pnv->initrd_size = load_image_targphys(machine->initrd_filename,
601 pnv->initrd_base, 0x10000000); /* 128MB max */
602 if (pnv->initrd_size < 0) {
802fc7ab 603 error_report("Could not load initial ram disk '%s'",
9e933f4a
BH
604 machine->initrd_filename);
605 exit(1);
606 }
607 }
e997040e 608
e997040e 609 /* Create the processor chips */
4a12c699 610 i = strlen(machine->cpu_type) - strlen(POWERPC_CPU_TYPE_SUFFIX);
7fd544d8 611 chip_typename = g_strdup_printf(PNV_CHIP_TYPE_NAME("%.*s"),
4a12c699 612 i, machine->cpu_type);
e997040e 613 if (!object_class_by_name(chip_typename)) {
4a12c699
IM
614 error_report("invalid CPU model '%.*s' for %s machine",
615 i, machine->cpu_type, MACHINE_GET_CLASS(machine)->name);
e997040e
CLG
616 exit(1);
617 }
618
619 pnv->chips = g_new0(PnvChip *, pnv->num_chips);
620 for (i = 0; i < pnv->num_chips; i++) {
621 char chip_name[32];
622 Object *chip = object_new(chip_typename);
623
624 pnv->chips[i] = PNV_CHIP(chip);
625
626 /* TODO: put all the memory in one node on chip 0 until we find a
627 * way to specify different ranges for each chip
628 */
629 if (i == 0) {
630 object_property_set_int(chip, machine->ram_size, "ram-size",
631 &error_fatal);
632 }
633
634 snprintf(chip_name, sizeof(chip_name), "chip[%d]", PNV_CHIP_HWID(i));
635 object_property_add_child(OBJECT(pnv), chip_name, chip, &error_fatal);
636 object_property_set_int(chip, PNV_CHIP_HWID(i), "chip-id",
637 &error_fatal);
397a79e7 638 object_property_set_int(chip, smp_cores, "nr-cores", &error_fatal);
e997040e
CLG
639 object_property_set_bool(chip, true, "realized", &error_fatal);
640 }
641 g_free(chip_typename);
3495b6b6
CLG
642
643 /* Instantiate ISA bus on chip 0 */
644 pnv->isa_bus = pnv_isa_create(pnv->chips[0]);
645
646 /* Create serial port */
647 serial_hds_isa_init(pnv->isa_bus, 0, MAX_SERIAL_PORTS);
648
649 /* Create an RTC ISA device too */
650 rtc_init(pnv->isa_bus, 2000, NULL);
bce0b691
CLG
651
652 /* OpenPOWER systems use a IPMI SEL Event message to notify the
653 * host to powerdown */
654 pnv->powerdown_notifier.notify = pnv_powerdown_notify;
655 qemu_register_powerdown_notifier(&pnv->powerdown_notifier);
e997040e
CLG
656}
657
631adaff
CLG
658/*
659 * 0:21 Reserved - Read as zeros
660 * 22:24 Chip ID
661 * 25:28 Core number
662 * 29:31 Thread ID
663 */
664static uint32_t pnv_chip_core_pir_p8(PnvChip *chip, uint32_t core_id)
665{
666 return (chip->chip_id << 7) | (core_id << 3);
667}
668
669/*
670 * 0:48 Reserved - Read as zeroes
671 * 49:52 Node ID
672 * 53:55 Chip ID
673 * 56 Reserved - Read as zero
674 * 57:61 Core number
675 * 62:63 Thread ID
676 *
677 * We only care about the lower bits. uint32_t is fine for the moment.
678 */
679static uint32_t pnv_chip_core_pir_p9(PnvChip *chip, uint32_t core_id)
680{
681 return (chip->chip_id << 8) | (core_id << 2);
682}
683
397a79e7
CLG
684/* Allowed core identifiers on a POWER8 Processor Chip :
685 *
686 * <EX0 reserved>
687 * EX1 - Venice only
688 * EX2 - Venice only
689 * EX3 - Venice only
690 * EX4
691 * EX5
692 * EX6
693 * <EX7,8 reserved> <reserved>
694 * EX9 - Venice only
695 * EX10 - Venice only
696 * EX11 - Venice only
697 * EX12
698 * EX13
699 * EX14
700 * <EX15 reserved>
701 */
702#define POWER8E_CORE_MASK (0x7070ull)
703#define POWER8_CORE_MASK (0x7e7eull)
704
705/*
706 * POWER9 has 24 cores, ids starting at 0x20
707 */
708#define POWER9_CORE_MASK (0xffffff00000000ull)
709
e997040e
CLG
710static void pnv_chip_power8e_class_init(ObjectClass *klass, void *data)
711{
712 DeviceClass *dc = DEVICE_CLASS(klass);
713 PnvChipClass *k = PNV_CHIP_CLASS(klass);
714
4a12c699 715 k->cpu_model = "power8e_v2.1";
e997040e
CLG
716 k->chip_type = PNV_CHIP_POWER8E;
717 k->chip_cfam_id = 0x221ef04980000000ull; /* P8 Murano DD2.1 */
397a79e7 718 k->cores_mask = POWER8E_CORE_MASK;
631adaff 719 k->core_pir = pnv_chip_core_pir_p8;
967b7523 720 k->xscom_base = 0x003fc0000000000ull;
ad521238 721 k->xscom_core_base = 0x10000000ull;
e997040e
CLG
722 dc->desc = "PowerNV Chip POWER8E";
723}
724
725static const TypeInfo pnv_chip_power8e_info = {
726 .name = TYPE_PNV_CHIP_POWER8E,
727 .parent = TYPE_PNV_CHIP,
728 .instance_size = sizeof(PnvChip),
729 .class_init = pnv_chip_power8e_class_init,
730};
731
732static void pnv_chip_power8_class_init(ObjectClass *klass, void *data)
733{
734 DeviceClass *dc = DEVICE_CLASS(klass);
735 PnvChipClass *k = PNV_CHIP_CLASS(klass);
736
4a12c699 737 k->cpu_model = "power8_v2.0";
e997040e
CLG
738 k->chip_type = PNV_CHIP_POWER8;
739 k->chip_cfam_id = 0x220ea04980000000ull; /* P8 Venice DD2.0 */
397a79e7 740 k->cores_mask = POWER8_CORE_MASK;
631adaff 741 k->core_pir = pnv_chip_core_pir_p8;
967b7523 742 k->xscom_base = 0x003fc0000000000ull;
ad521238 743 k->xscom_core_base = 0x10000000ull;
e997040e
CLG
744 dc->desc = "PowerNV Chip POWER8";
745}
746
747static const TypeInfo pnv_chip_power8_info = {
748 .name = TYPE_PNV_CHIP_POWER8,
749 .parent = TYPE_PNV_CHIP,
750 .instance_size = sizeof(PnvChip),
751 .class_init = pnv_chip_power8_class_init,
752};
753
754static void pnv_chip_power8nvl_class_init(ObjectClass *klass, void *data)
755{
756 DeviceClass *dc = DEVICE_CLASS(klass);
757 PnvChipClass *k = PNV_CHIP_CLASS(klass);
758
4a12c699 759 k->cpu_model = "power8nvl_v1.0";
e997040e
CLG
760 k->chip_type = PNV_CHIP_POWER8NVL;
761 k->chip_cfam_id = 0x120d304980000000ull; /* P8 Naples DD1.0 */
397a79e7 762 k->cores_mask = POWER8_CORE_MASK;
631adaff 763 k->core_pir = pnv_chip_core_pir_p8;
967b7523 764 k->xscom_base = 0x003fc0000000000ull;
ad521238 765 k->xscom_core_base = 0x10000000ull;
e997040e
CLG
766 dc->desc = "PowerNV Chip POWER8NVL";
767}
768
769static const TypeInfo pnv_chip_power8nvl_info = {
770 .name = TYPE_PNV_CHIP_POWER8NVL,
771 .parent = TYPE_PNV_CHIP,
772 .instance_size = sizeof(PnvChip),
773 .class_init = pnv_chip_power8nvl_class_init,
774};
775
776static void pnv_chip_power9_class_init(ObjectClass *klass, void *data)
777{
778 DeviceClass *dc = DEVICE_CLASS(klass);
779 PnvChipClass *k = PNV_CHIP_CLASS(klass);
780
4a12c699 781 k->cpu_model = "power9_v2.0";
e997040e
CLG
782 k->chip_type = PNV_CHIP_POWER9;
783 k->chip_cfam_id = 0x100d104980000000ull; /* P9 Nimbus DD1.0 */
397a79e7 784 k->cores_mask = POWER9_CORE_MASK;
631adaff 785 k->core_pir = pnv_chip_core_pir_p9;
967b7523 786 k->xscom_base = 0x00603fc00000000ull;
ad521238 787 k->xscom_core_base = 0x0ull;
e997040e
CLG
788 dc->desc = "PowerNV Chip POWER9";
789}
790
791static const TypeInfo pnv_chip_power9_info = {
792 .name = TYPE_PNV_CHIP_POWER9,
793 .parent = TYPE_PNV_CHIP,
794 .instance_size = sizeof(PnvChip),
795 .class_init = pnv_chip_power9_class_init,
796};
797
397a79e7
CLG
798static void pnv_chip_core_sanitize(PnvChip *chip, Error **errp)
799{
800 PnvChipClass *pcc = PNV_CHIP_GET_CLASS(chip);
801 int cores_max;
802
803 /*
804 * No custom mask for this chip, let's use the default one from *
805 * the chip class
806 */
807 if (!chip->cores_mask) {
808 chip->cores_mask = pcc->cores_mask;
809 }
810
811 /* filter alien core ids ! some are reserved */
812 if ((chip->cores_mask & pcc->cores_mask) != chip->cores_mask) {
813 error_setg(errp, "warning: invalid core mask for chip Ox%"PRIx64" !",
814 chip->cores_mask);
815 return;
816 }
817 chip->cores_mask &= pcc->cores_mask;
818
819 /* now that we have a sane layout, let check the number of cores */
27d9ffd4 820 cores_max = ctpop64(chip->cores_mask);
397a79e7
CLG
821 if (chip->nr_cores > cores_max) {
822 error_setg(errp, "warning: too many cores for chip ! Limit is %d",
823 cores_max);
824 return;
825 }
826}
827
967b7523
CLG
828static void pnv_chip_init(Object *obj)
829{
830 PnvChip *chip = PNV_CHIP(obj);
831 PnvChipClass *pcc = PNV_CHIP_GET_CLASS(chip);
832
833 chip->xscom_base = pcc->xscom_base;
a3980bf5
BH
834
835 object_initialize(&chip->lpc, sizeof(chip->lpc), TYPE_PNV_LPC);
836 object_property_add_child(obj, "lpc", OBJECT(&chip->lpc), NULL);
54f59d78
CLG
837
838 object_initialize(&chip->psi, sizeof(chip->psi), TYPE_PNV_PSI);
839 object_property_add_child(obj, "psi", OBJECT(&chip->psi), NULL);
840 object_property_add_const_link(OBJECT(&chip->psi), "xics",
841 OBJECT(qdev_get_machine()), &error_abort);
0722d05a
BH
842
843 object_initialize(&chip->occ, sizeof(chip->occ), TYPE_PNV_OCC);
844 object_property_add_child(obj, "occ", OBJECT(&chip->occ), NULL);
845 object_property_add_const_link(OBJECT(&chip->occ), "psi",
846 OBJECT(&chip->psi), &error_abort);
4d1df88b
BH
847
848 /* The LPC controller needs PSI to generate interrupts */
849 object_property_add_const_link(OBJECT(&chip->lpc), "psi",
850 OBJECT(&chip->psi), &error_abort);
967b7523
CLG
851}
852
bf5615e7
CLG
853static void pnv_chip_icp_realize(PnvChip *chip, Error **errp)
854{
855 PnvChipClass *pcc = PNV_CHIP_GET_CLASS(chip);
856 char *typename = pnv_core_typename(pcc->cpu_model);
857 size_t typesize = object_type_get_instance_size(typename);
858 int i, j;
859 char *name;
860 XICSFabric *xi = XICS_FABRIC(qdev_get_machine());
861
862 name = g_strdup_printf("icp-%x", chip->chip_id);
863 memory_region_init(&chip->icp_mmio, OBJECT(chip), name, PNV_ICP_SIZE);
864 sysbus_init_mmio(SYS_BUS_DEVICE(chip), &chip->icp_mmio);
865 g_free(name);
866
867 sysbus_mmio_map(SYS_BUS_DEVICE(chip), 1, PNV_ICP_BASE(chip));
868
869 /* Map the ICP registers for each thread */
870 for (i = 0; i < chip->nr_cores; i++) {
871 PnvCore *pnv_core = PNV_CORE(chip->cores + i * typesize);
872 int core_hwid = CPU_CORE(pnv_core)->core_id;
873
874 for (j = 0; j < CPU_CORE(pnv_core)->nr_threads; j++) {
875 uint32_t pir = pcc->core_pir(chip, core_hwid) + j;
876 PnvICPState *icp = PNV_ICP(xics_icp_get(xi, pir));
877
878 memory_region_add_subregion(&chip->icp_mmio, pir << 12, &icp->mmio);
879 }
880 }
881
882 g_free(typename);
883}
884
e997040e
CLG
885static void pnv_chip_realize(DeviceState *dev, Error **errp)
886{
397a79e7
CLG
887 PnvChip *chip = PNV_CHIP(dev);
888 Error *error = NULL;
d2fd9612
CLG
889 PnvChipClass *pcc = PNV_CHIP_GET_CLASS(chip);
890 char *typename = pnv_core_typename(pcc->cpu_model);
891 size_t typesize = object_type_get_instance_size(typename);
892 int i, core_hwid;
893
894 if (!object_class_by_name(typename)) {
895 error_setg(errp, "Unable to find PowerNV CPU Core '%s'", typename);
896 return;
897 }
397a79e7 898
967b7523
CLG
899 /* XSCOM bridge */
900 pnv_xscom_realize(chip, &error);
901 if (error) {
902 error_propagate(errp, error);
903 return;
904 }
905 sysbus_mmio_map(SYS_BUS_DEVICE(chip), 0, PNV_XSCOM_BASE(chip));
906
d2fd9612 907 /* Cores */
397a79e7
CLG
908 pnv_chip_core_sanitize(chip, &error);
909 if (error) {
910 error_propagate(errp, error);
911 return;
912 }
d2fd9612
CLG
913
914 chip->cores = g_malloc0(typesize * chip->nr_cores);
915
916 for (i = 0, core_hwid = 0; (core_hwid < sizeof(chip->cores_mask) * 8)
917 && (i < chip->nr_cores); core_hwid++) {
918 char core_name[32];
919 void *pnv_core = chip->cores + i * typesize;
920
921 if (!(chip->cores_mask & (1ull << core_hwid))) {
922 continue;
923 }
924
925 object_initialize(pnv_core, typesize, typename);
926 snprintf(core_name, sizeof(core_name), "core[%d]", core_hwid);
927 object_property_add_child(OBJECT(chip), core_name, OBJECT(pnv_core),
928 &error_fatal);
929 object_property_set_int(OBJECT(pnv_core), smp_threads, "nr-threads",
930 &error_fatal);
931 object_property_set_int(OBJECT(pnv_core), core_hwid,
932 CPU_CORE_PROP_CORE_ID, &error_fatal);
933 object_property_set_int(OBJECT(pnv_core),
934 pcc->core_pir(chip, core_hwid),
935 "pir", &error_fatal);
960fbd29
CLG
936 object_property_add_const_link(OBJECT(pnv_core), "xics",
937 qdev_get_machine(), &error_fatal);
d2fd9612
CLG
938 object_property_set_bool(OBJECT(pnv_core), true, "realized",
939 &error_fatal);
940 object_unref(OBJECT(pnv_core));
24ece072
CLG
941
942 /* Each core has an XSCOM MMIO region */
ad521238
CLG
943 pnv_xscom_add_subregion(chip,
944 PNV_XSCOM_EX_CORE_BASE(pcc->xscom_core_base,
945 core_hwid),
24ece072 946 &PNV_CORE(pnv_core)->xscom_regs);
d2fd9612
CLG
947 i++;
948 }
949 g_free(typename);
a3980bf5
BH
950
951 /* Create LPC controller */
952 object_property_set_bool(OBJECT(&chip->lpc), true, "realized",
953 &error_fatal);
954 pnv_xscom_add_subregion(chip, PNV_XSCOM_LPC_BASE, &chip->lpc.xscom_regs);
bf5615e7
CLG
955
956 /* Interrupt Management Area. This is the memory region holding
957 * all the Interrupt Control Presenter (ICP) registers */
958 pnv_chip_icp_realize(chip, &error);
959 if (error) {
960 error_propagate(errp, error);
961 return;
962 }
54f59d78
CLG
963
964 /* Processor Service Interface (PSI) Host Bridge */
965 object_property_set_int(OBJECT(&chip->psi), PNV_PSIHB_BASE(chip),
966 "bar", &error_fatal);
967 object_property_set_bool(OBJECT(&chip->psi), true, "realized", &error);
968 if (error) {
969 error_propagate(errp, error);
970 return;
971 }
972 pnv_xscom_add_subregion(chip, PNV_XSCOM_PSIHB_BASE, &chip->psi.xscom_regs);
0722d05a
BH
973
974 /* Create the simplified OCC model */
975 object_property_set_bool(OBJECT(&chip->occ), true, "realized", &error);
976 if (error) {
977 error_propagate(errp, error);
978 return;
979 }
980 pnv_xscom_add_subregion(chip, PNV_XSCOM_OCC_BASE, &chip->occ.xscom_regs);
e997040e
CLG
981}
982
983static Property pnv_chip_properties[] = {
984 DEFINE_PROP_UINT32("chip-id", PnvChip, chip_id, 0),
985 DEFINE_PROP_UINT64("ram-start", PnvChip, ram_start, 0),
986 DEFINE_PROP_UINT64("ram-size", PnvChip, ram_size, 0),
397a79e7
CLG
987 DEFINE_PROP_UINT32("nr-cores", PnvChip, nr_cores, 1),
988 DEFINE_PROP_UINT64("cores-mask", PnvChip, cores_mask, 0x0),
e997040e
CLG
989 DEFINE_PROP_END_OF_LIST(),
990};
991
992static void pnv_chip_class_init(ObjectClass *klass, void *data)
993{
994 DeviceClass *dc = DEVICE_CLASS(klass);
995
9d169fb3 996 set_bit(DEVICE_CATEGORY_CPU, dc->categories);
e997040e
CLG
997 dc->realize = pnv_chip_realize;
998 dc->props = pnv_chip_properties;
999 dc->desc = "PowerNV Chip";
1000}
1001
1002static const TypeInfo pnv_chip_info = {
1003 .name = TYPE_PNV_CHIP,
1004 .parent = TYPE_SYS_BUS_DEVICE,
1005 .class_init = pnv_chip_class_init,
967b7523 1006 .instance_init = pnv_chip_init,
e997040e
CLG
1007 .class_size = sizeof(PnvChipClass),
1008 .abstract = true,
1009};
1010
54f59d78
CLG
1011static ICSState *pnv_ics_get(XICSFabric *xi, int irq)
1012{
1013 PnvMachineState *pnv = POWERNV_MACHINE(xi);
1014 int i;
1015
1016 for (i = 0; i < pnv->num_chips; i++) {
1017 if (ics_valid_irq(&pnv->chips[i]->psi.ics, irq)) {
1018 return &pnv->chips[i]->psi.ics;
1019 }
1020 }
1021 return NULL;
1022}
1023
1024static void pnv_ics_resend(XICSFabric *xi)
1025{
1026 PnvMachineState *pnv = POWERNV_MACHINE(xi);
1027 int i;
1028
1029 for (i = 0; i < pnv->num_chips; i++) {
1030 ics_resend(&pnv->chips[i]->psi.ics);
1031 }
1032}
1033
36fc6f08
CLG
1034static PowerPCCPU *ppc_get_vcpu_by_pir(int pir)
1035{
1036 CPUState *cs;
1037
1038 CPU_FOREACH(cs) {
1039 PowerPCCPU *cpu = POWERPC_CPU(cs);
1040 CPUPPCState *env = &cpu->env;
1041
1042 if (env->spr_cb[SPR_PIR].default_value == pir) {
1043 return cpu;
1044 }
1045 }
1046
1047 return NULL;
1048}
1049
1050static ICPState *pnv_icp_get(XICSFabric *xi, int pir)
1051{
1052 PowerPCCPU *cpu = ppc_get_vcpu_by_pir(pir);
1053
1054 return cpu ? ICP(cpu->intc) : NULL;
1055}
1056
47fea43a
CLG
1057static void pnv_pic_print_info(InterruptStatsProvider *obj,
1058 Monitor *mon)
1059{
54f59d78
CLG
1060 PnvMachineState *pnv = POWERNV_MACHINE(obj);
1061 int i;
47fea43a
CLG
1062 CPUState *cs;
1063
1064 CPU_FOREACH(cs) {
1065 PowerPCCPU *cpu = POWERPC_CPU(cs);
1066
1067 icp_pic_print_info(ICP(cpu->intc), mon);
1068 }
54f59d78
CLG
1069
1070 for (i = 0; i < pnv->num_chips; i++) {
1071 ics_pic_print_info(&pnv->chips[i]->psi.ics, mon);
1072 }
47fea43a
CLG
1073}
1074
e997040e
CLG
1075static void pnv_get_num_chips(Object *obj, Visitor *v, const char *name,
1076 void *opaque, Error **errp)
1077{
1078 visit_type_uint32(v, name, &POWERNV_MACHINE(obj)->num_chips, errp);
1079}
1080
1081static void pnv_set_num_chips(Object *obj, Visitor *v, const char *name,
1082 void *opaque, Error **errp)
1083{
1084 PnvMachineState *pnv = POWERNV_MACHINE(obj);
1085 uint32_t num_chips;
1086 Error *local_err = NULL;
1087
1088 visit_type_uint32(v, name, &num_chips, &local_err);
1089 if (local_err) {
1090 error_propagate(errp, local_err);
1091 return;
1092 }
1093
1094 /*
1095 * TODO: should we decide on how many chips we can create based
1096 * on #cores and Venice vs. Murano vs. Naples chip type etc...,
1097 */
1098 if (!is_power_of_2(num_chips) || num_chips > 4) {
1099 error_setg(errp, "invalid number of chips: '%d'", num_chips);
1100 return;
1101 }
1102
1103 pnv->num_chips = num_chips;
1104}
1105
1106static void powernv_machine_initfn(Object *obj)
1107{
1108 PnvMachineState *pnv = POWERNV_MACHINE(obj);
1109 pnv->num_chips = 1;
1110}
1111
1112static void powernv_machine_class_props_init(ObjectClass *oc)
1113{
1e507bb0 1114 object_class_property_add(oc, "num-chips", "uint32",
e997040e
CLG
1115 pnv_get_num_chips, pnv_set_num_chips,
1116 NULL, NULL, NULL);
1117 object_class_property_set_description(oc, "num-chips",
1118 "Specifies the number of processor chips",
1119 NULL);
9e933f4a
BH
1120}
1121
1122static void powernv_machine_class_init(ObjectClass *oc, void *data)
1123{
1124 MachineClass *mc = MACHINE_CLASS(oc);
36fc6f08 1125 XICSFabricClass *xic = XICS_FABRIC_CLASS(oc);
47fea43a 1126 InterruptStatsProviderClass *ispc = INTERRUPT_STATS_PROVIDER_CLASS(oc);
9e933f4a
BH
1127
1128 mc->desc = "IBM PowerNV (Non-Virtualized)";
1129 mc->init = ppc_powernv_init;
1130 mc->reset = ppc_powernv_reset;
1131 mc->max_cpus = MAX_CPUS;
4a12c699 1132 mc->default_cpu_type = POWERPC_CPU_TYPE_NAME("power8_v2.0");
9e933f4a
BH
1133 mc->block_default_type = IF_IDE; /* Pnv provides a AHCI device for
1134 * storage */
1135 mc->no_parallel = 1;
1136 mc->default_boot_order = NULL;
1137 mc->default_ram_size = 1 * G_BYTE;
36fc6f08 1138 xic->icp_get = pnv_icp_get;
54f59d78
CLG
1139 xic->ics_get = pnv_ics_get;
1140 xic->ics_resend = pnv_ics_resend;
47fea43a 1141 ispc->print_info = pnv_pic_print_info;
e997040e
CLG
1142
1143 powernv_machine_class_props_init(oc);
9e933f4a
BH
1144}
1145
1146static const TypeInfo powernv_machine_info = {
1147 .name = TYPE_POWERNV_MACHINE,
1148 .parent = TYPE_MACHINE,
1149 .instance_size = sizeof(PnvMachineState),
e997040e 1150 .instance_init = powernv_machine_initfn,
9e933f4a 1151 .class_init = powernv_machine_class_init,
36fc6f08
CLG
1152 .interfaces = (InterfaceInfo[]) {
1153 { TYPE_XICS_FABRIC },
47fea43a 1154 { TYPE_INTERRUPT_STATS_PROVIDER },
36fc6f08
CLG
1155 { },
1156 },
9e933f4a
BH
1157};
1158
1159static void powernv_machine_register_types(void)
1160{
1161 type_register_static(&powernv_machine_info);
e997040e
CLG
1162 type_register_static(&pnv_chip_info);
1163 type_register_static(&pnv_chip_power8e_info);
1164 type_register_static(&pnv_chip_power8_info);
1165 type_register_static(&pnv_chip_power8nvl_info);
1166 type_register_static(&pnv_chip_power9_info);
9e933f4a
BH
1167}
1168
1169type_init(powernv_machine_register_types)