ppc/pnv: Introduce PnvPsiClass::compat
[qemu/ar7.git] / include / hw / ppc / pnv_psi.h
blobfc068c95e54319dde3bcdfe8e9b23eaab31bb536
1 /*
2 * QEMU PowerPC PowerNV Processor Service Interface (PSI) model
4 * Copyright (c) 2015-2017, IBM Corporation.
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.
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.
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/>.
20 #ifndef PPC_PNV_PSI_H
21 #define PPC_PNV_PSI_H
23 #include "hw/sysbus.h"
24 #include "hw/ppc/xics.h"
25 #include "hw/ppc/xive.h"
27 #define TYPE_PNV_PSI "pnv-psi"
28 #define PNV_PSI(obj) \
29 OBJECT_CHECK(PnvPsi, (obj), TYPE_PNV_PSI)
31 #define PSIHB_XSCOM_MAX 0x20
33 typedef struct PnvPsi {
34 SysBusDevice parent;
36 MemoryRegion regs_mr;
37 uint64_t bar;
39 /* FSP region not supported */
40 /* MemoryRegion fsp_mr; */
41 uint64_t fsp_bar;
43 /* Interrupt generation */
44 qemu_irq *qirqs;
46 /* Registers */
47 uint64_t regs[PSIHB_XSCOM_MAX];
49 MemoryRegion xscom_regs;
50 } PnvPsi;
52 #define TYPE_PNV8_PSI TYPE_PNV_PSI "-POWER8"
53 #define PNV8_PSI(obj) \
54 OBJECT_CHECK(Pnv8Psi, (obj), TYPE_PNV8_PSI)
56 typedef struct Pnv8Psi {
57 PnvPsi parent;
59 ICSState ics;
60 } Pnv8Psi;
62 #define TYPE_PNV9_PSI TYPE_PNV_PSI "-POWER9"
63 #define PNV9_PSI(obj) \
64 OBJECT_CHECK(Pnv9Psi, (obj), TYPE_PNV9_PSI)
66 typedef struct Pnv9Psi {
67 PnvPsi parent;
69 XiveSource source;
70 } Pnv9Psi;
72 #define TYPE_PNV10_PSI TYPE_PNV_PSI "-POWER10"
74 #define PNV_PSI_CLASS(klass) \
75 OBJECT_CLASS_CHECK(PnvPsiClass, (klass), TYPE_PNV_PSI)
76 #define PNV_PSI_GET_CLASS(obj) \
77 OBJECT_GET_CLASS(PnvPsiClass, (obj), TYPE_PNV_PSI)
79 typedef struct PnvPsiClass {
80 SysBusDeviceClass parent_class;
82 int chip_type;
83 uint32_t xscom_pcba;
84 uint32_t xscom_size;
85 uint64_t bar_mask;
86 const char *compat;
87 int compat_size;
89 void (*irq_set)(PnvPsi *psi, int, bool state);
90 } PnvPsiClass;
92 /* The PSI and FSP interrupts are muxed on the same IRQ number */
93 typedef enum PnvPsiIrq {
94 PSIHB_IRQ_PSI, /* internal use only */
95 PSIHB_IRQ_FSP, /* internal use only */
96 PSIHB_IRQ_OCC,
97 PSIHB_IRQ_FSI,
98 PSIHB_IRQ_LPC_I2C,
99 PSIHB_IRQ_LOCAL_ERR,
100 PSIHB_IRQ_EXTERNAL,
101 } PnvPsiIrq;
103 #define PSI_NUM_INTERRUPTS 6
105 void pnv_psi_irq_set(PnvPsi *psi, int irq, bool state);
107 /* P9 PSI Interrupts */
108 #define PSIHB9_IRQ_PSI 0
109 #define PSIHB9_IRQ_OCC 1
110 #define PSIHB9_IRQ_FSI 2
111 #define PSIHB9_IRQ_LPCHC 3
112 #define PSIHB9_IRQ_LOCAL_ERR 4
113 #define PSIHB9_IRQ_GLOBAL_ERR 5
114 #define PSIHB9_IRQ_TPM 6
115 #define PSIHB9_IRQ_LPC_SIRQ0 7
116 #define PSIHB9_IRQ_LPC_SIRQ1 8
117 #define PSIHB9_IRQ_LPC_SIRQ2 9
118 #define PSIHB9_IRQ_LPC_SIRQ3 10
119 #define PSIHB9_IRQ_SBE_I2C 11
120 #define PSIHB9_IRQ_DIO 12
121 #define PSIHB9_IRQ_PSU 13
122 #define PSIHB9_NUM_IRQS 14
124 void pnv_psi_pic_print_info(Pnv9Psi *psi, Monitor *mon);
126 #endif /* PPC_PNV_PSI_H */