2 * QEMU PowerPC pSeries Logical Partition (aka sPAPR) hardware System Emulator
4 * PAPR Virtualized Interrupt System, aka ICS/ICP aka xics
6 * Copyright (c) 2010,2011 David Gibson, IBM Corporation.
8 * Permission is hereby granted, free of charge, to any person obtaining a copy
9 * of this software and associated documentation files (the "Software"), to deal
10 * in the Software without restriction, including without limitation the rights
11 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12 * copies of the Software, and to permit persons to whom the Software is
13 * furnished to do so, subject to the following conditions:
15 * The above copyright notice and this permission notice shall be included in
16 * all copies or substantial portions of the Software.
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
21 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
31 #include "exec/memory.h"
32 #include "hw/qdev-core.h"
33 #include "qom/object.h"
37 #define XICS_IRQ_BASE (XICS_BUID << 12)
40 * We currently only support one BUID which is our interrupt base
41 * (the kernel implementation supports more but we don't exploit
44 typedef struct PnvICPState PnvICPState
;
45 typedef struct ICSStateClass ICSStateClass
;
46 typedef struct ICSState ICSState
;
47 typedef struct ICSIRQState ICSIRQState
;
48 typedef struct XICSFabric XICSFabric
;
50 #define TYPE_ICP "icp"
51 OBJECT_DECLARE_TYPE(ICPState
, ICPStateClass
,
54 #define TYPE_PNV_ICP "pnv-icp"
55 DECLARE_INSTANCE_CHECKER(PnvICPState
, PNV_ICP
,
59 struct ICPStateClass
{
60 DeviceClass parent_class
;
62 DeviceRealize parent_realize
;
67 DeviceState parent_obj
;
72 uint8_t pending_priority
;
79 #define ICP_PROP_XICS "xics"
80 #define ICP_PROP_CPU "cpu"
89 #define TYPE_ICS "ics"
90 DECLARE_OBJ_CHECKERS(ICSState
, ICSStateClass
,
94 struct ICSStateClass
{
95 DeviceClass parent_class
;
97 DeviceRealize parent_realize
;
98 ResettablePhases parent_phases
;
100 void (*reject
)(ICSState
*s
, uint32_t irq
);
101 void (*resend
)(ICSState
*s
);
106 DeviceState parent_obj
;
114 #define ICS_PROP_XICS "xics"
116 static inline bool ics_valid_irq(ICSState
*ics
, uint32_t nr
)
118 return (nr
>= ics
->offset
) && (nr
< (ics
->offset
+ ics
->nr_irqs
));
124 uint8_t saved_priority
;
125 #define XICS_STATUS_ASSERTED 0x1
126 #define XICS_STATUS_SENT 0x2
127 #define XICS_STATUS_REJECTED 0x4
128 #define XICS_STATUS_MASKED_PENDING 0x8
129 #define XICS_STATUS_PRESENTED 0x10
130 #define XICS_STATUS_QUEUED 0x20
132 /* (flags & XICS_FLAGS_IRQ_MASK) == 0 means the interrupt is not allocated */
133 #define XICS_FLAGS_IRQ_LSI 0x1
134 #define XICS_FLAGS_IRQ_MSI 0x2
135 #define XICS_FLAGS_IRQ_MASK 0x3
139 #define TYPE_XICS_FABRIC "xics-fabric"
140 #define XICS_FABRIC(obj) \
141 INTERFACE_CHECK(XICSFabric, (obj), TYPE_XICS_FABRIC)
142 typedef struct XICSFabricClass XICSFabricClass
;
143 DECLARE_CLASS_CHECKERS(XICSFabricClass
, XICS_FABRIC
,
146 struct XICSFabricClass
{
147 InterfaceClass parent
;
148 ICSState
*(*ics_get
)(XICSFabric
*xi
, int irq
);
149 void (*ics_resend
)(XICSFabric
*xi
);
150 ICPState
*(*icp_get
)(XICSFabric
*xi
, int server
);
153 ICPState
*xics_icp_get(XICSFabric
*xi
, int server
);
155 /* Internal XICS interfaces */
156 void icp_set_cppr(ICPState
*icp
, uint8_t cppr
);
157 void icp_set_mfrr(ICPState
*icp
, uint8_t mfrr
);
158 uint32_t icp_accept(ICPState
*ss
);
159 uint32_t icp_ipoll(ICPState
*ss
, uint32_t *mfrr
);
160 void icp_eoi(ICPState
*icp
, uint32_t xirr
);
161 void icp_irq(ICSState
*ics
, int server
, int nr
, uint8_t priority
);
162 void icp_reset(ICPState
*icp
);
164 void ics_write_xive(ICSState
*ics
, int nr
, int server
,
165 uint8_t priority
, uint8_t saved_priority
);
166 void ics_set_irq(void *opaque
, int srcno
, int val
);
168 static inline bool ics_irq_free(ICSState
*ics
, uint32_t srcno
)
170 return !(ics
->irqs
[srcno
].flags
& XICS_FLAGS_IRQ_MASK
);
173 void ics_set_irq_type(ICSState
*ics
, int srcno
, bool lsi
);
174 void icp_pic_print_info(ICPState
*icp
, GString
*buf
);
175 void ics_pic_print_info(ICSState
*ics
, GString
*buf
);
177 void ics_resend(ICSState
*ics
);
178 void icp_resend(ICPState
*ss
);
180 Object
*icp_create(Object
*cpu
, const char *type
, XICSFabric
*xi
,
182 void icp_destroy(ICPState
*icp
);
185 void icp_get_kvm_state(ICPState
*icp
);
186 int icp_set_kvm_state(ICPState
*icp
, Error
**errp
);
187 void icp_synchronize_state(ICPState
*icp
);
188 void icp_kvm_realize(DeviceState
*dev
, Error
**errp
);
190 void ics_get_kvm_state(ICSState
*ics
);
191 int ics_set_kvm_state_one(ICSState
*ics
, int srcno
, Error
**errp
);
192 int ics_set_kvm_state(ICSState
*ics
, Error
**errp
);
193 void ics_synchronize_state(ICSState
*ics
);
194 void ics_kvm_set_irq(ICSState
*ics
, int srcno
, int val
);