2018-07-30 17:11:32 +03:00
|
|
|
/*
|
|
|
|
* QEMU PowerPC sPAPR IRQ backend definitions
|
|
|
|
*
|
|
|
|
* Copyright (c) 2018, IBM Corporation.
|
|
|
|
*
|
|
|
|
* This code is licensed under the GPL version 2 or later. See the
|
|
|
|
* COPYING file in the top-level directory.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef HW_SPAPR_IRQ_H
|
|
|
|
#define HW_SPAPR_IRQ_H
|
|
|
|
|
|
|
|
/*
|
|
|
|
* IRQ range offsets per device type
|
|
|
|
*/
|
2018-12-12 01:38:12 +03:00
|
|
|
#define SPAPR_IRQ_IPI 0x0
|
2018-07-30 17:11:32 +03:00
|
|
|
#define SPAPR_IRQ_EPOW 0x1000 /* XICS_IRQ_BASE offset */
|
|
|
|
#define SPAPR_IRQ_HOTPLUG 0x1001
|
|
|
|
#define SPAPR_IRQ_VIO 0x1100 /* 256 VIO devices */
|
|
|
|
#define SPAPR_IRQ_PCI_LSI 0x1200 /* 32+ PHBs devices */
|
|
|
|
|
|
|
|
#define SPAPR_IRQ_MSI 0x1300 /* Offset of the dynamic range covered
|
|
|
|
* by the bitmap allocator */
|
|
|
|
|
|
|
|
typedef struct sPAPRMachineState sPAPRMachineState;
|
|
|
|
|
|
|
|
void spapr_irq_msi_init(sPAPRMachineState *spapr, uint32_t nr_msis);
|
|
|
|
int spapr_irq_msi_alloc(sPAPRMachineState *spapr, uint32_t num, bool align,
|
|
|
|
Error **errp);
|
|
|
|
void spapr_irq_msi_free(sPAPRMachineState *spapr, int irq, uint32_t num);
|
|
|
|
void spapr_irq_msi_reset(sPAPRMachineState *spapr);
|
|
|
|
|
2018-07-30 17:11:33 +03:00
|
|
|
typedef struct sPAPRIrq {
|
|
|
|
uint32_t nr_irqs;
|
2018-09-11 08:55:02 +03:00
|
|
|
uint32_t nr_msis;
|
2018-12-18 01:34:42 +03:00
|
|
|
uint8_t ov5;
|
2018-07-30 17:11:33 +03:00
|
|
|
|
|
|
|
void (*init)(sPAPRMachineState *spapr, Error **errp);
|
|
|
|
int (*claim)(sPAPRMachineState *spapr, int irq, bool lsi, Error **errp);
|
|
|
|
void (*free)(sPAPRMachineState *spapr, int irq, int num);
|
|
|
|
qemu_irq (*qirq)(sPAPRMachineState *spapr, int irq);
|
|
|
|
void (*print_info)(sPAPRMachineState *spapr, Monitor *mon);
|
2018-12-12 01:38:14 +03:00
|
|
|
void (*dt_populate)(sPAPRMachineState *spapr, uint32_t nr_servers,
|
|
|
|
void *fdt, uint32_t phandle);
|
2019-01-02 08:57:34 +03:00
|
|
|
void (*cpu_intc_create)(sPAPRMachineState *spapr, PowerPCCPU *cpu,
|
|
|
|
Error **errp);
|
2018-12-12 01:38:16 +03:00
|
|
|
int (*post_load)(sPAPRMachineState *spapr, int version_id);
|
2018-12-12 01:38:17 +03:00
|
|
|
void (*reset)(sPAPRMachineState *spapr, Error **errp);
|
2019-01-02 08:57:40 +03:00
|
|
|
void (*set_irq)(void *opaque, int srcno, int val);
|
2018-07-30 17:11:33 +03:00
|
|
|
} sPAPRIrq;
|
|
|
|
|
|
|
|
extern sPAPRIrq spapr_irq_xics;
|
2018-09-11 08:55:03 +03:00
|
|
|
extern sPAPRIrq spapr_irq_xics_legacy;
|
2018-12-12 01:38:12 +03:00
|
|
|
extern sPAPRIrq spapr_irq_xive;
|
2019-01-02 08:57:42 +03:00
|
|
|
extern sPAPRIrq spapr_irq_dual;
|
2018-07-30 17:11:33 +03:00
|
|
|
|
2018-12-06 02:22:27 +03:00
|
|
|
void spapr_irq_init(sPAPRMachineState *spapr, Error **errp);
|
2018-07-30 17:11:33 +03:00
|
|
|
int spapr_irq_claim(sPAPRMachineState *spapr, int irq, bool lsi, Error **errp);
|
|
|
|
void spapr_irq_free(sPAPRMachineState *spapr, int irq, int num);
|
|
|
|
qemu_irq spapr_qirq(sPAPRMachineState *spapr, int irq);
|
2018-12-12 01:38:16 +03:00
|
|
|
int spapr_irq_post_load(sPAPRMachineState *spapr, int version_id);
|
2018-12-12 01:38:17 +03:00
|
|
|
void spapr_irq_reset(sPAPRMachineState *spapr, Error **errp);
|
2018-07-30 17:11:33 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* XICS legacy routines
|
|
|
|
*/
|
|
|
|
int spapr_irq_find(sPAPRMachineState *spapr, int num, bool align, Error **errp);
|
|
|
|
#define spapr_irq_findone(spapr, errp) spapr_irq_find(spapr, 1, false, errp)
|
|
|
|
|
2018-07-30 17:11:32 +03:00
|
|
|
#endif
|