xref: /qemu/include/hw/ppc/pnv.h (revision bce0b6915971968e3d00e13af5369f6df3daaeb6)
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"
23 #include "hw/sysbus.h"
24 #include "hw/ppc/pnv_lpc.h"
25 #include "hw/ppc/pnv_psi.h"
26 #include "hw/ppc/pnv_occ.h"
27 
28 #define TYPE_PNV_CHIP "powernv-chip"
29 #define PNV_CHIP(obj) OBJECT_CHECK(PnvChip, (obj), TYPE_PNV_CHIP)
30 #define PNV_CHIP_CLASS(klass) \
31      OBJECT_CLASS_CHECK(PnvChipClass, (klass), TYPE_PNV_CHIP)
32 #define PNV_CHIP_GET_CLASS(obj) \
33      OBJECT_GET_CLASS(PnvChipClass, (obj), TYPE_PNV_CHIP)
34 
35 typedef enum PnvChipType {
36     PNV_CHIP_POWER8E,     /* AKA Murano (default) */
37     PNV_CHIP_POWER8,      /* AKA Venice */
38     PNV_CHIP_POWER8NVL,   /* AKA Naples */
39     PNV_CHIP_POWER9,      /* AKA Nimbus */
40 } PnvChipType;
41 
42 typedef struct PnvChip {
43     /*< private >*/
44     SysBusDevice parent_obj;
45 
46     /*< public >*/
47     uint32_t     chip_id;
48     uint64_t     ram_start;
49     uint64_t     ram_size;
50 
51     uint32_t     nr_cores;
52     uint64_t     cores_mask;
53     void         *cores;
54 
55     hwaddr       xscom_base;
56     MemoryRegion xscom_mmio;
57     MemoryRegion xscom;
58     AddressSpace xscom_as;
59     MemoryRegion icp_mmio;
60 
61     PnvLpcController lpc;
62     PnvPsi       psi;
63     PnvOCC       occ;
64 } PnvChip;
65 
66 typedef struct PnvChipClass {
67     /*< private >*/
68     SysBusDeviceClass parent_class;
69 
70     /*< public >*/
71     const char *cpu_model;
72     PnvChipType  chip_type;
73     uint64_t     chip_cfam_id;
74     uint64_t     cores_mask;
75 
76     hwaddr       xscom_base;
77     hwaddr       xscom_core_base;
78 
79     uint32_t (*core_pir)(PnvChip *chip, uint32_t core_id);
80 } PnvChipClass;
81 
82 #define TYPE_PNV_CHIP_POWER8E TYPE_PNV_CHIP "-POWER8E"
83 #define PNV_CHIP_POWER8E(obj) \
84     OBJECT_CHECK(PnvChip, (obj), TYPE_PNV_CHIP_POWER8E)
85 
86 #define TYPE_PNV_CHIP_POWER8 TYPE_PNV_CHIP "-POWER8"
87 #define PNV_CHIP_POWER8(obj) \
88     OBJECT_CHECK(PnvChip, (obj), TYPE_PNV_CHIP_POWER8)
89 
90 #define TYPE_PNV_CHIP_POWER8NVL TYPE_PNV_CHIP "-POWER8NVL"
91 #define PNV_CHIP_POWER8NVL(obj) \
92     OBJECT_CHECK(PnvChip, (obj), TYPE_PNV_CHIP_POWER8NVL)
93 
94 #define TYPE_PNV_CHIP_POWER9 TYPE_PNV_CHIP "-POWER9"
95 #define PNV_CHIP_POWER9(obj) \
96     OBJECT_CHECK(PnvChip, (obj), TYPE_PNV_CHIP_POWER9)
97 
98 /*
99  * This generates a HW chip id depending on an index, as found on a
100  * two socket system with dual chip modules :
101  *
102  *    0x0, 0x1, 0x10, 0x11
103  *
104  * 4 chips should be the maximum
105  *
106  * TODO: use a machine property to define the chip ids
107  */
108 #define PNV_CHIP_HWID(i) ((((i) & 0x3e) << 3) | ((i) & 0x1))
109 
110 /*
111  * Converts back a HW chip id to an index. This is useful to calculate
112  * the MMIO addresses of some controllers which depend on the chip id.
113  */
114 #define PNV_CHIP_INDEX(chip)                                    \
115     (((chip)->chip_id >> 2) * 2 + ((chip)->chip_id & 0x3))
116 
117 #define TYPE_POWERNV_MACHINE       MACHINE_TYPE_NAME("powernv")
118 #define POWERNV_MACHINE(obj) \
119     OBJECT_CHECK(PnvMachineState, (obj), TYPE_POWERNV_MACHINE)
120 
121 typedef struct IPMIBmc IPMIBmc;
122 
123 typedef struct PnvMachineState {
124     /*< private >*/
125     MachineState parent_obj;
126 
127     uint32_t     initrd_base;
128     long         initrd_size;
129 
130     uint32_t     num_chips;
131     PnvChip      **chips;
132 
133     ISABus       *isa_bus;
134     uint32_t     cpld_irqstate;
135 
136     IPMIBmc      *bmc;
137     Notifier     powerdown_notifier;
138 } PnvMachineState;
139 
140 #define PNV_FDT_ADDR          0x01000000
141 #define PNV_TIMEBASE_FREQ     512000000ULL
142 
143 /*
144  * BMC helpers
145  */
146 void pnv_bmc_populate_sensors(IPMIBmc *bmc, void *fdt);
147 void pnv_bmc_powerdown(IPMIBmc *bmc);
148 
149 /*
150  * POWER8 MMIO base addresses
151  */
152 #define PNV_XSCOM_SIZE        0x800000000ull
153 #define PNV_XSCOM_BASE(chip)                                            \
154     (chip->xscom_base + ((uint64_t)(chip)->chip_id) * PNV_XSCOM_SIZE)
155 
156 /*
157  * XSCOM 0x20109CA defines the ICP BAR:
158  *
159  * 0:29   : bits 14 to 43 of address to define 1 MB region.
160  * 30     : 1 to enable ICP to receive loads/stores against its BAR region
161  * 31:63  : Constant 0
162  *
163  * Usually defined as :
164  *
165  *      0xffffe00200000000 -> 0x0003ffff80000000
166  *      0xffffe00600000000 -> 0x0003ffff80100000
167  *      0xffffe02200000000 -> 0x0003ffff80800000
168  *      0xffffe02600000000 -> 0x0003ffff80900000
169  */
170 #define PNV_ICP_SIZE         0x0000000000100000ull
171 #define PNV_ICP_BASE(chip)                                              \
172     (0x0003ffff80000000ull + (uint64_t) PNV_CHIP_INDEX(chip) * PNV_ICP_SIZE)
173 
174 
175 #define PNV_PSIHB_SIZE       0x0000000000100000ull
176 #define PNV_PSIHB_BASE(chip) \
177     (0x0003fffe80000000ull + (uint64_t)PNV_CHIP_INDEX(chip) * PNV_PSIHB_SIZE)
178 
179 #define PNV_PSIHB_FSP_SIZE   0x0000000100000000ull
180 #define PNV_PSIHB_FSP_BASE(chip) \
181     (0x0003ffe000000000ull + (uint64_t)PNV_CHIP_INDEX(chip) * \
182      PNV_PSIHB_FSP_SIZE)
183 
184 #endif /* _PPC_PNV_H */
185