]> git.proxmox.com Git - mirror_qemu.git/blame - include/hw/ppc/pnv.h
ppc/pnv: introduce a new intc_create() operation to the chip model
[mirror_qemu.git] / include / hw / ppc / pnv.h
CommitLineData
9e933f4a
BH
1/*
2 * QEMU PowerPC PowerNV various definitions
3 *
4 * Copyright (c) 2014-2016 BenH, 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#ifndef _PPC_PNV_H
20#define _PPC_PNV_H
21
22#include "hw/boards.h"
e997040e 23#include "hw/sysbus.h"
eaf87a39 24#include "hw/ipmi/ipmi.h"
a3980bf5 25#include "hw/ppc/pnv_lpc.h"
54f59d78 26#include "hw/ppc/pnv_psi.h"
0722d05a 27#include "hw/ppc/pnv_occ.h"
e997040e 28
b168a138 29#define TYPE_PNV_CHIP "pnv-chip"
e997040e
CLG
30#define PNV_CHIP(obj) OBJECT_CHECK(PnvChip, (obj), TYPE_PNV_CHIP)
31#define PNV_CHIP_CLASS(klass) \
32 OBJECT_CLASS_CHECK(PnvChipClass, (klass), TYPE_PNV_CHIP)
33#define PNV_CHIP_GET_CLASS(obj) \
34 OBJECT_GET_CLASS(PnvChipClass, (obj), TYPE_PNV_CHIP)
35
36typedef enum PnvChipType {
37 PNV_CHIP_POWER8E, /* AKA Murano (default) */
38 PNV_CHIP_POWER8, /* AKA Venice */
39 PNV_CHIP_POWER8NVL, /* AKA Naples */
40 PNV_CHIP_POWER9, /* AKA Nimbus */
41} PnvChipType;
42
43typedef struct PnvChip {
44 /*< private >*/
45 SysBusDevice parent_obj;
46
47 /*< public >*/
48 uint32_t chip_id;
49 uint64_t ram_start;
50 uint64_t ram_size;
397a79e7
CLG
51
52 uint32_t nr_cores;
53 uint64_t cores_mask;
d2fd9612 54 void *cores;
967b7523
CLG
55
56 hwaddr xscom_base;
57 MemoryRegion xscom_mmio;
58 MemoryRegion xscom;
59 AddressSpace xscom_as;
bf5615e7 60 MemoryRegion icp_mmio;
a3980bf5
BH
61
62 PnvLpcController lpc;
54f59d78 63 PnvPsi psi;
0722d05a 64 PnvOCC occ;
e997040e
CLG
65} PnvChip;
66
67typedef struct PnvChipClass {
68 /*< private >*/
69 SysBusDeviceClass parent_class;
70
71 /*< public >*/
e997040e
CLG
72 PnvChipType chip_type;
73 uint64_t chip_cfam_id;
397a79e7 74 uint64_t cores_mask;
631adaff 75
967b7523
CLG
76 hwaddr xscom_base;
77
631adaff 78 uint32_t (*core_pir)(PnvChip *chip, uint32_t core_id);
d35aefa9 79 Object *(*intc_create)(PnvChip *chip, Object *child, Error **errp);
e997040e
CLG
80} PnvChipClass;
81
7fd544d8
IM
82#define PNV_CHIP_TYPE_SUFFIX "-" TYPE_PNV_CHIP
83#define PNV_CHIP_TYPE_NAME(cpu_model) cpu_model PNV_CHIP_TYPE_SUFFIX
84
85#define TYPE_PNV_CHIP_POWER8E PNV_CHIP_TYPE_NAME("power8e_v2.1")
e997040e
CLG
86#define PNV_CHIP_POWER8E(obj) \
87 OBJECT_CHECK(PnvChip, (obj), TYPE_PNV_CHIP_POWER8E)
88
7fd544d8 89#define TYPE_PNV_CHIP_POWER8 PNV_CHIP_TYPE_NAME("power8_v2.0")
e997040e
CLG
90#define PNV_CHIP_POWER8(obj) \
91 OBJECT_CHECK(PnvChip, (obj), TYPE_PNV_CHIP_POWER8)
92
7fd544d8 93#define TYPE_PNV_CHIP_POWER8NVL PNV_CHIP_TYPE_NAME("power8nvl_v1.0")
e997040e
CLG
94#define PNV_CHIP_POWER8NVL(obj) \
95 OBJECT_CHECK(PnvChip, (obj), TYPE_PNV_CHIP_POWER8NVL)
96
7fd544d8 97#define TYPE_PNV_CHIP_POWER9 PNV_CHIP_TYPE_NAME("power9_v2.0")
e997040e
CLG
98#define PNV_CHIP_POWER9(obj) \
99 OBJECT_CHECK(PnvChip, (obj), TYPE_PNV_CHIP_POWER9)
100
101/*
5509db4a
CLG
102 * This generates a HW chip id depending on an index, as found on a
103 * two socket system with dual chip modules :
e997040e
CLG
104 *
105 * 0x0, 0x1, 0x10, 0x11
106 *
107 * 4 chips should be the maximum
5509db4a
CLG
108 *
109 * TODO: use a machine property to define the chip ids
e997040e
CLG
110 */
111#define PNV_CHIP_HWID(i) ((((i) & 0x3e) << 3) | ((i) & 0x1))
9e933f4a 112
5509db4a
CLG
113/*
114 * Converts back a HW chip id to an index. This is useful to calculate
115 * the MMIO addresses of some controllers which depend on the chip id.
116 */
117#define PNV_CHIP_INDEX(chip) \
118 (((chip)->chip_id >> 2) * 2 + ((chip)->chip_id & 0x3))
119
b168a138
CLG
120#define TYPE_PNV_MACHINE MACHINE_TYPE_NAME("powernv")
121#define PNV_MACHINE(obj) \
122 OBJECT_CHECK(PnvMachineState, (obj), TYPE_PNV_MACHINE)
9e933f4a
BH
123
124typedef struct PnvMachineState {
125 /*< private >*/
126 MachineState parent_obj;
127
128 uint32_t initrd_base;
129 long initrd_size;
e997040e
CLG
130
131 uint32_t num_chips;
132 PnvChip **chips;
3495b6b6
CLG
133
134 ISABus *isa_bus;
54f59d78 135 uint32_t cpld_irqstate;
aeaef83d
CLG
136
137 IPMIBmc *bmc;
bce0b691 138 Notifier powerdown_notifier;
9e933f4a
BH
139} PnvMachineState;
140
b3b066e9
CLG
141static inline bool pnv_chip_is_power9(const PnvChip *chip)
142{
143 return PNV_CHIP_GET_CLASS(chip)->chip_type == PNV_CHIP_POWER9;
144}
145
146static inline bool pnv_is_power9(PnvMachineState *pnv)
147{
148 return pnv_chip_is_power9(pnv->chips[0]);
149}
150
9e933f4a 151#define PNV_FDT_ADDR 0x01000000
d2fd9612 152#define PNV_TIMEBASE_FREQ 512000000ULL
9e933f4a 153
aeaef83d
CLG
154/*
155 * BMC helpers
156 */
b168a138 157void pnv_dt_bmc_sensors(IPMIBmc *bmc, void *fdt);
bce0b691 158void pnv_bmc_powerdown(IPMIBmc *bmc);
aeaef83d 159
967b7523
CLG
160/*
161 * POWER8 MMIO base addresses
162 */
163#define PNV_XSCOM_SIZE 0x800000000ull
164#define PNV_XSCOM_BASE(chip) \
165 (chip->xscom_base + ((uint64_t)(chip)->chip_id) * PNV_XSCOM_SIZE)
166
bf5615e7
CLG
167/*
168 * XSCOM 0x20109CA defines the ICP BAR:
169 *
170 * 0:29 : bits 14 to 43 of address to define 1 MB region.
171 * 30 : 1 to enable ICP to receive loads/stores against its BAR region
172 * 31:63 : Constant 0
173 *
174 * Usually defined as :
175 *
176 * 0xffffe00200000000 -> 0x0003ffff80000000
177 * 0xffffe00600000000 -> 0x0003ffff80100000
178 * 0xffffe02200000000 -> 0x0003ffff80800000
179 * 0xffffe02600000000 -> 0x0003ffff80900000
180 */
181#define PNV_ICP_SIZE 0x0000000000100000ull
182#define PNV_ICP_BASE(chip) \
183 (0x0003ffff80000000ull + (uint64_t) PNV_CHIP_INDEX(chip) * PNV_ICP_SIZE)
184
54f59d78
CLG
185
186#define PNV_PSIHB_SIZE 0x0000000000100000ull
187#define PNV_PSIHB_BASE(chip) \
188 (0x0003fffe80000000ull + (uint64_t)PNV_CHIP_INDEX(chip) * PNV_PSIHB_SIZE)
189
190#define PNV_PSIHB_FSP_SIZE 0x0000000100000000ull
191#define PNV_PSIHB_FSP_BASE(chip) \
192 (0x0003ffe000000000ull + (uint64_t)PNV_CHIP_INDEX(chip) * \
193 PNV_PSIHB_FSP_SIZE)
194
9e933f4a 195#endif /* _PPC_PNV_H */