xics.h 7.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
/*
 * QEMU PowerPC pSeries Logical Partition (aka sPAPR) hardware System Emulator
 *
 * PAPR Virtualized Interrupt System, aka ICS/ICP aka xics
 *
 * Copyright (c) 2010,2011 David Gibson, IBM Corporation.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 *
 */
27 28 29

#ifndef XICS_H
#define XICS_H
30

31 32
#include "hw/sysbus.h"

33 34 35
#define TYPE_XICS_COMMON "xics-common"
#define XICS_COMMON(obj) OBJECT_CHECK(XICSState, (obj), TYPE_XICS_COMMON)

36 37 38 39 40 41
/*
 * Retain xics as the type name to be compatible for migration. Rest all the
 * functions, class and variables are renamed as xics_spapr.
 */
#define TYPE_XICS_SPAPR "xics"
#define XICS_SPAPR(obj) OBJECT_CHECK(XICSState, (obj), TYPE_XICS_SPAPR)
42

43 44 45
#define TYPE_XICS_SPAPR_KVM "xics-spapr-kvm"
#define XICS_SPAPR_KVM(obj) \
     OBJECT_CHECK(KVMXICSState, (obj), TYPE_XICS_SPAPR_KVM)
46

47 48
#define XICS_COMMON_CLASS(klass) \
     OBJECT_CLASS_CHECK(XICSStateClass, (klass), TYPE_XICS_COMMON)
49 50
#define XICS_SPAPR_CLASS(klass) \
     OBJECT_CLASS_CHECK(XICSStateClass, (klass), TYPE_XICS_SPAPR)
51 52
#define XICS_COMMON_GET_CLASS(obj) \
     OBJECT_GET_CLASS(XICSStateClass, (obj), TYPE_XICS_COMMON)
53 54
#define XICS_SPAPR_GET_CLASS(obj) \
     OBJECT_GET_CLASS(XICSStateClass, (obj), TYPE_XICS_SPAPR)
55

56
#define XICS_IPI        0x2
57 58 59 60 61 62 63 64
#define XICS_BUID       0x1
#define XICS_IRQ_BASE   (XICS_BUID << 12)

/*
 * We currently only support one BUID which is our interrupt base
 * (the kernel implementation supports more but we don't exploit
 *  that yet)
 */
65
typedef struct XICSStateClass XICSStateClass;
66
typedef struct XICSState XICSState;
67
typedef struct ICPStateClass ICPStateClass;
68
typedef struct ICPState ICPState;
69
typedef struct ICSStateClass ICSStateClass;
70 71
typedef struct ICSState ICSState;
typedef struct ICSIRQState ICSIRQState;
72
typedef struct XICSFabric XICSFabric;
73

74 75 76
struct XICSStateClass {
    DeviceClass parent_class;

77
    void (*cpu_setup)(XICSState *icp, PowerPCCPU *cpu);
78 79
};

80 81
struct XICSState {
    /*< private >*/
82
    DeviceState parent_obj;
83 84 85 86 87 88 89 90
    /*< public >*/
    uint32_t nr_servers;
    ICPState *ss;
};

#define TYPE_ICP "icp"
#define ICP(obj) OBJECT_CHECK(ICPState, (obj), TYPE_ICP)

91 92 93
#define TYPE_KVM_ICP "icp-kvm"
#define KVM_ICP(obj) OBJECT_CHECK(ICPState, (obj), TYPE_KVM_ICP)

94 95 96 97 98 99 100 101 102 103 104 105
#define ICP_CLASS(klass) \
     OBJECT_CLASS_CHECK(ICPStateClass, (klass), TYPE_ICP)
#define ICP_GET_CLASS(obj) \
     OBJECT_GET_CLASS(ICPStateClass, (obj), TYPE_ICP)

struct ICPStateClass {
    DeviceClass parent_class;

    void (*pre_save)(ICPState *s);
    int (*post_load)(ICPState *s, int version_id);
};

106 107 108 109
struct ICPState {
    /*< private >*/
    DeviceState parent_obj;
    /*< public >*/
110
    CPUState *cs;
111
    ICSState *xirr_owner;
112 113 114 115
    uint32_t xirr;
    uint8_t pending_priority;
    uint8_t mfrr;
    qemu_irq output;
116
    bool cap_irq_xics_enabled;
117

118
    XICSFabric *xics;
119 120
};

121 122
#define TYPE_ICS_BASE "ics-base"
#define ICS_BASE(obj) OBJECT_CHECK(ICSState, (obj), TYPE_ICS_BASE)
123

124 125 126
/* Retain ics for sPAPR for migration from existing sPAPR guests */
#define TYPE_ICS_SIMPLE "ics"
#define ICS_SIMPLE(obj) OBJECT_CHECK(ICSState, (obj), TYPE_ICS_SIMPLE)
127

128 129 130 131 132 133 134
#define TYPE_ICS_KVM "icskvm"
#define ICS_KVM(obj) OBJECT_CHECK(ICSState, (obj), TYPE_ICS_KVM)

#define ICS_BASE_CLASS(klass) \
     OBJECT_CLASS_CHECK(ICSStateClass, (klass), TYPE_ICS_BASE)
#define ICS_BASE_GET_CLASS(obj) \
     OBJECT_GET_CLASS(ICSStateClass, (obj), TYPE_ICS_BASE)
135 136 137 138

struct ICSStateClass {
    DeviceClass parent_class;

139
    void (*realize)(DeviceState *dev, Error **errp);
140 141
    void (*pre_save)(ICSState *s);
    int (*post_load)(ICSState *s, int version_id);
142 143 144
    void (*reject)(ICSState *s, uint32_t irq);
    void (*resend)(ICSState *s);
    void (*eoi)(ICSState *s, uint32_t irq);
145 146
};

147 148 149 150 151 152 153 154
struct ICSState {
    /*< private >*/
    DeviceState parent_obj;
    /*< public >*/
    uint32_t nr_irqs;
    uint32_t offset;
    qemu_irq *qirqs;
    ICSIRQState *irqs;
155
    XICSState *xics;
156
};
157

158 159
static inline bool ics_valid_irq(ICSState *ics, uint32_t nr)
{
160
    return (ics->offset != 0) && (nr >= ics->offset)
161 162 163
        && (nr < (ics->offset + ics->nr_irqs));
}

164 165 166 167 168 169 170 171 172
struct ICSIRQState {
    uint32_t server;
    uint8_t priority;
    uint8_t saved_priority;
#define XICS_STATUS_ASSERTED           0x1
#define XICS_STATUS_SENT               0x2
#define XICS_STATUS_REJECTED           0x4
#define XICS_STATUS_MASKED_PENDING     0x8
    uint8_t status;
173 174 175 176 177
/* (flags & XICS_FLAGS_IRQ_MASK) == 0 means the interrupt is not allocated */
#define XICS_FLAGS_IRQ_LSI             0x1
#define XICS_FLAGS_IRQ_MSI             0x2
#define XICS_FLAGS_IRQ_MASK            0x3
    uint8_t flags;
178
};
179

180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197
typedef struct XICSFabric {
    Object parent;
} XICSFabric;

#define TYPE_XICS_FABRIC "xics-fabric"
#define XICS_FABRIC(obj)                                     \
    OBJECT_CHECK(XICSFabric, (obj), TYPE_XICS_FABRIC)
#define XICS_FABRIC_CLASS(klass)                                     \
    OBJECT_CLASS_CHECK(XICSFabricClass, (klass), TYPE_XICS_FABRIC)
#define XICS_FABRIC_GET_CLASS(obj)                                   \
    OBJECT_GET_CLASS(XICSFabricClass, (obj), TYPE_XICS_FABRIC)

typedef struct XICSFabricClass {
    InterfaceClass parent;
    ICSState *(*ics_get)(XICSFabric *xi, int irq);
    void (*ics_resend)(XICSFabric *xi);
} XICSFabricClass;

198
#define XICS_IRQS_SPAPR               1024
199

200 201
qemu_irq xics_get_qirq(XICSFabric *xi, int irq);

202 203
int spapr_ics_alloc(ICSState *ics, int irq_hint, bool lsi, Error **errp);
int spapr_ics_alloc_block(ICSState *ics, int num, bool lsi, bool align,
204
                           Error **errp);
205
void spapr_ics_free(ICSState *ics, int irq, int num);
206
void spapr_dt_xics(XICSState *xics, void *fdt, uint32_t phandle);
207

208
void xics_cpu_setup(XICSState *icp, PowerPCCPU *cpu);
209
void xics_cpu_destroy(XICSState *icp, PowerPCCPU *cpu);
210

211 212 213
/* Internal XICS interfaces */
int xics_get_cpu_index_by_dt_id(int cpu_dt_id);

214 215
void icp_set_cppr(ICPState *icp, uint8_t cppr);
void icp_set_mfrr(ICPState *icp, uint8_t mfrr);
216
uint32_t icp_accept(ICPState *ss);
217
uint32_t icp_ipoll(ICPState *ss, uint32_t *mfrr);
218
void icp_eoi(ICPState *icp, uint32_t xirr);
219

220 221
void ics_simple_write_xive(ICSState *ics, int nr, int server,
                           uint8_t priority, uint8_t saved_priority);
222 223 224

void ics_set_irq_type(ICSState *ics, int srcno, bool lsi);

225
void ics_resend(ICSState *ics);
226

227
#endif /* XICS_H */