123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572 |
- /*
- * QEMU PowerPC XIVE interrupt controller model
- *
- *
- * The POWER9 processor comes with a new interrupt controller, called
- * XIVE as "eXternal Interrupt Virtualization Engine".
- *
- * = Overall architecture
- *
- *
- * XIVE Interrupt Controller
- * +------------------------------------+ IPIs
- * | +---------+ +---------+ +--------+ | +-------+
- * | |VC | |CQ | |PC |----> | CORES |
- * | | esb | | | | |----> | |
- * | | eas | | Bridge | | tctx |----> | |
- * | |SC end | | | | nvt | | | |
- * +------+ | +---------+ +----+----+ +--------+ | +-+-+-+-+
- * | RAM | +------------------|-----------------+ | | |
- * | | | | | |
- * | | | | | |
- * | | +--------------------v------------------------v-v-v--+ other
- * | <--+ Power Bus +--> chips
- * | esb | +---------+-----------------------+------------------+
- * | eas | | |
- * | end | +--|------+ |
- * | nvt | +----+----+ | +----+----+
- * +------+ |SC | | |SC |
- * | | | | |
- * | PQ-bits | | | PQ-bits |
- * | local |-+ | in VC |
- * +---------+ +---------+
- * PCIe NX,NPU,CAPI
- *
- * SC: Source Controller (aka. IVSE)
- * VC: Virtualization Controller (aka. IVRE)
- * PC: Presentation Controller (aka. IVPE)
- * CQ: Common Queue (Bridge)
- *
- * PQ-bits: 2 bits source state machine (P:pending Q:queued)
- * esb: Event State Buffer (Array of PQ bits in an IVSE)
- * eas: Event Assignment Structure
- * end: Event Notification Descriptor
- * nvt: Notification Virtual Target
- * tctx: Thread interrupt Context
- *
- *
- * The XIVE IC is composed of three sub-engines :
- *
- * - Interrupt Virtualization Source Engine (IVSE), or Source
- * Controller (SC). These are found in PCI PHBs, in the PSI host
- * bridge controller, but also inside the main controller for the
- * core IPIs and other sub-chips (NX, CAP, NPU) of the
- * chip/processor. They are configured to feed the IVRE with events.
- *
- * - Interrupt Virtualization Routing Engine (IVRE) or Virtualization
- * Controller (VC). Its job is to match an event source with an
- * Event Notification Descriptor (END).
- *
- * - Interrupt Virtualization Presentation Engine (IVPE) or
- * Presentation Controller (PC). It maintains the interrupt context
- * state of each thread and handles the delivery of the external
- * exception to the thread.
- *
- * In XIVE 1.0, the sub-engines used to be referred as:
- *
- * SC Source Controller
- * VC Virtualization Controller
- * PC Presentation Controller
- * CQ Common Queue (PowerBUS Bridge)
- *
- *
- * = XIVE internal tables
- *
- * Each of the sub-engines uses a set of tables to redirect exceptions
- * from event sources to CPU threads.
- *
- * +-------+
- * User or OS | EQ |
- * or +------>|entries|
- * Hypervisor | | .. |
- * Memory | +-------+
- * | ^
- * | |
- * +-------------------------------------------------+
- * | |
- * Hypervisor +------+ +---+--+ +---+--+ +------+
- * Memory | ESB | | EAT | | ENDT | | NVTT |
- * (skiboot) +----+-+ +----+-+ +----+-+ +------+
- * ^ | ^ | ^ | ^
- * | | | | | | |
- * +-------------------------------------------------+
- * | | | | | | |
- * | | | | | | |
- * +----|--|--------|--|--------|--|-+ +-|-----+ +------+
- * | | | | | | | | | | tctx| |Thread|
- * IPI or --> | + v + v + v |---| + .. |-----> |
- * HW events --> | | | | | |
- * IVSE | IVRE | | IVPE | +------+
- * +---------------------------------+ +-------+
- *
- *
- *
- * The IVSE have a 2-bits state machine, P for pending and Q for queued,
- * for each source that allows events to be triggered. They are stored in
- * an Event State Buffer (ESB) array and can be controlled by MMIOs.
- *
- * If the event is let through, the IVRE looks up in the Event Assignment
- * Structure (EAS) table for an Event Notification Descriptor (END)
- * configured for the source. Each Event Notification Descriptor defines
- * a notification path to a CPU and an in-memory Event Queue, in which
- * will be enqueued an EQ data for the OS to pull.
- *
- * The IVPE determines if a Notification Virtual Target (NVT) can
- * handle the event by scanning the thread contexts of the VCPUs
- * dispatched on the processor HW threads. It maintains the state of
- * the thread interrupt context (TCTX) of each thread in a NVT table.
- *
- * = Acronyms
- *
- * Description In XIVE 1.0, used to be referred as
- *
- * EAS Event Assignment Structure IVE Interrupt Virt. Entry
- * EAT Event Assignment Table IVT Interrupt Virt. Table
- * ENDT Event Notif. Descriptor Table EQDT Event Queue Desc. Table
- * EQ Event Queue same
- * ESB Event State Buffer SBE State Bit Entry
- * NVT Notif. Virtual Target VPD Virtual Processor Desc.
- * NVTT Notif. Virtual Target Table VPDT Virtual Processor Desc. Table
- * TCTX Thread interrupt Context
- *
- *
- * Copyright (c) 2017-2024, IBM Corporation.
- *
- * SPDX-License-Identifier: GPL-2.0-or-later
- */
- #ifndef PPC_XIVE_H
- #define PPC_XIVE_H
- #include "system/kvm.h"
- #include "hw/sysbus.h"
- #include "hw/ppc/xive_regs.h"
- #include "qom/object.h"
- /*
- * XIVE Notifier (Interface between Source and Router)
- */
- typedef struct XiveNotifier XiveNotifier;
- #define TYPE_XIVE_NOTIFIER "xive-notifier"
- #define XIVE_NOTIFIER(obj) \
- INTERFACE_CHECK(XiveNotifier, (obj), TYPE_XIVE_NOTIFIER)
- typedef struct XiveNotifierClass XiveNotifierClass;
- DECLARE_CLASS_CHECKERS(XiveNotifierClass, XIVE_NOTIFIER,
- TYPE_XIVE_NOTIFIER)
- struct XiveNotifierClass {
- InterfaceClass parent;
- void (*notify)(XiveNotifier *xn, uint32_t lisn, bool pq_checked);
- };
- /*
- * XIVE Interrupt Source
- */
- #define TYPE_XIVE_SOURCE "xive-source"
- OBJECT_DECLARE_SIMPLE_TYPE(XiveSource, XIVE_SOURCE)
- /*
- * XIVE Interrupt Source characteristics, which define how the ESB are
- * controlled.
- */
- #define XIVE_SRC_H_INT_ESB 0x1 /* ESB managed with hcall H_INT_ESB */
- #define XIVE_SRC_STORE_EOI 0x2 /* Store EOI supported */
- #define XIVE_SRC_PQ_DISABLE 0x4 /* Disable check on the PQ state bits */
- struct XiveSource {
- DeviceState parent;
- /* IRQs */
- uint32_t nr_irqs;
- unsigned long *lsi_map;
- /* PQ bits and LSI assertion bit */
- uint8_t *status;
- uint8_t reset_pq; /* PQ state on reset */
- /* ESB memory region */
- uint64_t esb_flags;
- uint32_t esb_shift;
- MemoryRegion esb_mmio;
- MemoryRegion esb_mmio_emulated;
- /* KVM support */
- void *esb_mmap;
- MemoryRegion esb_mmio_kvm;
- XiveNotifier *xive;
- };
- /*
- * ESB MMIO setting. Can be one page, for both source triggering and
- * source management, or two different pages. See below for magic
- * values.
- */
- #define XIVE_ESB_4K 12 /* PSI HB only */
- #define XIVE_ESB_4K_2PAGE 13
- #define XIVE_ESB_64K 16
- #define XIVE_ESB_64K_2PAGE 17
- static inline bool xive_source_esb_has_2page(XiveSource *xsrc)
- {
- return xsrc->esb_shift == XIVE_ESB_64K_2PAGE ||
- xsrc->esb_shift == XIVE_ESB_4K_2PAGE;
- }
- static inline uint64_t xive_source_esb_len(XiveSource *xsrc)
- {
- return (1ull << xsrc->esb_shift) * xsrc->nr_irqs;
- }
- /* The trigger page is always the first/even page */
- static inline hwaddr xive_source_esb_page(XiveSource *xsrc, uint32_t srcno)
- {
- assert(srcno < xsrc->nr_irqs);
- return (1ull << xsrc->esb_shift) * srcno;
- }
- /* In a two pages ESB MMIO setting, the odd page is for management */
- static inline hwaddr xive_source_esb_mgmt(XiveSource *xsrc, int srcno)
- {
- hwaddr addr = xive_source_esb_page(xsrc, srcno);
- if (xive_source_esb_has_2page(xsrc)) {
- addr += (1 << (xsrc->esb_shift - 1));
- }
- return addr;
- }
- /*
- * Each interrupt source has a 2-bit state machine which can be
- * controlled by MMIO. P indicates that an interrupt is pending (has
- * been sent to a queue and is waiting for an EOI). Q indicates that
- * the interrupt has been triggered while pending.
- *
- * This acts as a coalescing mechanism in order to guarantee that a
- * given interrupt only occurs at most once in a queue.
- *
- * When doing an EOI, the Q bit will indicate if the interrupt
- * needs to be re-triggered.
- */
- #define XIVE_STATUS_ASSERTED 0x4 /* Extra bit for LSI */
- #define XIVE_ESB_VAL_P 0x2
- #define XIVE_ESB_VAL_Q 0x1
- #define XIVE_ESB_RESET 0x0
- #define XIVE_ESB_PENDING XIVE_ESB_VAL_P
- #define XIVE_ESB_QUEUED (XIVE_ESB_VAL_P | XIVE_ESB_VAL_Q)
- #define XIVE_ESB_OFF XIVE_ESB_VAL_Q
- bool xive_esb_trigger(uint8_t *pq);
- bool xive_esb_eoi(uint8_t *pq);
- uint8_t xive_esb_set(uint8_t *pq, uint8_t value);
- /*
- * "magic" Event State Buffer (ESB) MMIO offsets.
- *
- * The following offsets into the ESB MMIO allow to read or manipulate
- * the PQ bits. They must be used with an 8-byte load instruction.
- * They all return the previous state of the interrupt (atomically).
- *
- * Additionally, some ESB pages support doing an EOI via a store and
- * some ESBs support doing a trigger via a separate trigger page.
- */
- #define XIVE_ESB_STORE_EOI 0x400 /* Store */
- #define XIVE_ESB_LOAD_EOI 0x000 /* Load */
- #define XIVE_ESB_GET 0x800 /* Load */
- #define XIVE_ESB_INJECT 0x800 /* Store */
- #define XIVE_ESB_SET_PQ_00 0xc00 /* Load */
- #define XIVE_ESB_SET_PQ_01 0xd00 /* Load */
- #define XIVE_ESB_SET_PQ_10 0xe00 /* Load */
- #define XIVE_ESB_SET_PQ_11 0xf00 /* Load */
- uint8_t xive_source_esb_get(XiveSource *xsrc, uint32_t srcno);
- uint8_t xive_source_esb_set(XiveSource *xsrc, uint32_t srcno, uint8_t pq);
- /*
- * Source status helpers
- */
- static inline void xive_source_set_status(XiveSource *xsrc, uint32_t srcno,
- uint8_t status, bool enable)
- {
- if (enable) {
- xsrc->status[srcno] |= status;
- } else {
- xsrc->status[srcno] &= ~status;
- }
- }
- static inline void xive_source_set_asserted(XiveSource *xsrc, uint32_t srcno,
- bool enable)
- {
- xive_source_set_status(xsrc, srcno, XIVE_STATUS_ASSERTED, enable);
- }
- static inline bool xive_source_is_asserted(XiveSource *xsrc, uint32_t srcno)
- {
- return xsrc->status[srcno] & XIVE_STATUS_ASSERTED;
- }
- void xive_source_pic_print_info(XiveSource *xsrc, uint32_t offset,
- GString *buf);
- static inline bool xive_source_irq_is_lsi(XiveSource *xsrc, uint32_t srcno)
- {
- assert(srcno < xsrc->nr_irqs);
- return test_bit(srcno, xsrc->lsi_map);
- }
- static inline void xive_source_irq_set_lsi(XiveSource *xsrc, uint32_t srcno)
- {
- assert(srcno < xsrc->nr_irqs);
- bitmap_set(xsrc->lsi_map, srcno, 1);
- }
- void xive_source_set_irq(void *opaque, int srcno, int val);
- /*
- * XIVE Thread interrupt Management (TM) context
- */
- #define TYPE_XIVE_TCTX "xive-tctx"
- OBJECT_DECLARE_SIMPLE_TYPE(XiveTCTX, XIVE_TCTX)
- /*
- * XIVE Thread interrupt Management register rings :
- *
- * QW-0 User event-based exception state
- * QW-1 O/S OS context for priority management, interrupt acks
- * QW-2 Pool hypervisor pool context for virtual processors dispatched
- * QW-3 Physical physical thread context and security context
- */
- #define XIVE_TM_RING_COUNT 4
- #define XIVE_TM_RING_SIZE 0x10
- typedef struct XivePresenter XivePresenter;
- struct XiveTCTX {
- DeviceState parent_obj;
- CPUState *cs;
- qemu_irq hv_output;
- qemu_irq os_output;
- uint8_t regs[XIVE_TM_RING_COUNT * XIVE_TM_RING_SIZE];
- XivePresenter *xptr;
- };
- static inline uint32_t xive_tctx_word2(uint8_t *ring)
- {
- return *((uint32_t *) &ring[TM_WORD2]);
- }
- /*
- * XIVE Router
- */
- typedef struct XiveFabric XiveFabric;
- struct XiveRouter {
- SysBusDevice parent;
- XiveFabric *xfb;
- };
- #define TYPE_XIVE_ROUTER "xive-router"
- OBJECT_DECLARE_TYPE(XiveRouter, XiveRouterClass,
- XIVE_ROUTER)
- struct XiveRouterClass {
- SysBusDeviceClass parent;
- /* XIVE table accessors */
- int (*get_eas)(XiveRouter *xrtr, uint8_t eas_blk, uint32_t eas_idx,
- XiveEAS *eas);
- int (*get_pq)(XiveRouter *xrtr, uint8_t eas_blk, uint32_t eas_idx,
- uint8_t *pq);
- int (*set_pq)(XiveRouter *xrtr, uint8_t eas_blk, uint32_t eas_idx,
- uint8_t *pq);
- int (*get_end)(XiveRouter *xrtr, uint8_t end_blk, uint32_t end_idx,
- XiveEND *end);
- int (*write_end)(XiveRouter *xrtr, uint8_t end_blk, uint32_t end_idx,
- XiveEND *end, uint8_t word_number);
- int (*get_nvt)(XiveRouter *xrtr, uint8_t nvt_blk, uint32_t nvt_idx,
- XiveNVT *nvt);
- int (*write_nvt)(XiveRouter *xrtr, uint8_t nvt_blk, uint32_t nvt_idx,
- XiveNVT *nvt, uint8_t word_number);
- uint8_t (*get_block_id)(XiveRouter *xrtr);
- void (*end_notify)(XiveRouter *xrtr, XiveEAS *eas);
- };
- int xive_router_get_eas(XiveRouter *xrtr, uint8_t eas_blk, uint32_t eas_idx,
- XiveEAS *eas);
- int xive_router_get_end(XiveRouter *xrtr, uint8_t end_blk, uint32_t end_idx,
- XiveEND *end);
- int xive_router_write_end(XiveRouter *xrtr, uint8_t end_blk, uint32_t end_idx,
- XiveEND *end, uint8_t word_number);
- int xive_router_get_nvt(XiveRouter *xrtr, uint8_t nvt_blk, uint32_t nvt_idx,
- XiveNVT *nvt);
- int xive_router_write_nvt(XiveRouter *xrtr, uint8_t nvt_blk, uint32_t nvt_idx,
- XiveNVT *nvt, uint8_t word_number);
- void xive_router_notify(XiveNotifier *xn, uint32_t lisn, bool pq_checked);
- void xive_router_end_notify(XiveRouter *xrtr, XiveEAS *eas);
- /*
- * XIVE Presenter
- */
- typedef struct XiveTCTXMatch {
- XiveTCTX *tctx;
- uint8_t ring;
- bool precluded;
- } XiveTCTXMatch;
- #define TYPE_XIVE_PRESENTER "xive-presenter"
- #define XIVE_PRESENTER(obj) \
- INTERFACE_CHECK(XivePresenter, (obj), TYPE_XIVE_PRESENTER)
- typedef struct XivePresenterClass XivePresenterClass;
- DECLARE_CLASS_CHECKERS(XivePresenterClass, XIVE_PRESENTER,
- TYPE_XIVE_PRESENTER)
- #define XIVE_PRESENTER_GEN1_TIMA_OS 0x1
- struct XivePresenterClass {
- InterfaceClass parent;
- int (*match_nvt)(XivePresenter *xptr, uint8_t format,
- uint8_t nvt_blk, uint32_t nvt_idx,
- bool crowd, bool cam_ignore, uint8_t priority,
- uint32_t logic_serv, XiveTCTXMatch *match);
- bool (*in_kernel)(const XivePresenter *xptr);
- uint32_t (*get_config)(XivePresenter *xptr);
- int (*broadcast)(XivePresenter *xptr,
- uint8_t nvt_blk, uint32_t nvt_idx,
- bool crowd, bool cam_ignore, uint8_t priority);
- };
- int xive_presenter_tctx_match(XivePresenter *xptr, XiveTCTX *tctx,
- uint8_t format,
- uint8_t nvt_blk, uint32_t nvt_idx,
- bool cam_ignore, uint32_t logic_serv);
- bool xive_presenter_notify(XiveFabric *xfb, uint8_t format,
- uint8_t nvt_blk, uint32_t nvt_idx,
- bool crowd, bool cam_ignore, uint8_t priority,
- uint32_t logic_serv, bool *precluded);
- uint32_t xive_get_vpgroup_size(uint32_t nvp_index);
- /*
- * XIVE Fabric (Interface between Interrupt Controller and Machine)
- */
- #define TYPE_XIVE_FABRIC "xive-fabric"
- #define XIVE_FABRIC(obj) \
- INTERFACE_CHECK(XiveFabric, (obj), TYPE_XIVE_FABRIC)
- typedef struct XiveFabricClass XiveFabricClass;
- DECLARE_CLASS_CHECKERS(XiveFabricClass, XIVE_FABRIC,
- TYPE_XIVE_FABRIC)
- struct XiveFabricClass {
- InterfaceClass parent;
- int (*match_nvt)(XiveFabric *xfb, uint8_t format,
- uint8_t nvt_blk, uint32_t nvt_idx,
- bool crowd, bool cam_ignore, uint8_t priority,
- uint32_t logic_serv, XiveTCTXMatch *match);
- int (*broadcast)(XiveFabric *xfb, uint8_t nvt_blk, uint32_t nvt_idx,
- bool crowd, bool cam_ignore, uint8_t priority);
- };
- /*
- * XIVE END ESBs
- */
- #define TYPE_XIVE_END_SOURCE "xive-end-source"
- OBJECT_DECLARE_SIMPLE_TYPE(XiveENDSource, XIVE_END_SOURCE)
- struct XiveENDSource {
- DeviceState parent;
- uint32_t nr_ends;
- /* ESB memory region */
- uint32_t esb_shift;
- MemoryRegion esb_mmio;
- XiveRouter *xrtr;
- };
- /*
- * For legacy compatibility, the exceptions define up to 256 different
- * priorities. P9 implements only 9 levels : 8 active levels [0 - 7]
- * and the least favored level 0xFF.
- */
- #define XIVE_PRIORITY_MAX 7
- /*
- * Convert a priority number to an Interrupt Pending Buffer (IPB)
- * register, which indicates a pending interrupt at the priority
- * corresponding to the bit number
- */
- static inline uint8_t xive_priority_to_ipb(uint8_t priority)
- {
- return priority > XIVE_PRIORITY_MAX ?
- 0 : 1 << (XIVE_PRIORITY_MAX - priority);
- }
- static inline uint8_t xive_priority_to_pipr(uint8_t priority)
- {
- return priority > XIVE_PRIORITY_MAX ? 0xFF : priority;
- }
- /*
- * Convert an Interrupt Pending Buffer (IPB) register to a Pending
- * Interrupt Priority Register (PIPR), which contains the priority of
- * the most favored pending notification.
- */
- static inline uint8_t xive_ipb_to_pipr(uint8_t ibp)
- {
- return ibp ? clz32((uint32_t)ibp << 24) : 0xff;
- }
- /*
- * XIVE Thread Interrupt Management Aera (TIMA)
- *
- * This region gives access to the registers of the thread interrupt
- * management context. It is four page wide, each page providing a
- * different view of the registers. The page with the lower offset is
- * the most privileged and gives access to the entire context.
- */
- #define XIVE_TM_HW_PAGE 0x0
- #define XIVE_TM_HV_PAGE 0x1
- #define XIVE_TM_OS_PAGE 0x2
- #define XIVE_TM_USER_PAGE 0x3
- void xive_tctx_tm_write(XivePresenter *xptr, XiveTCTX *tctx, hwaddr offset,
- uint64_t value, unsigned size);
- uint64_t xive_tctx_tm_read(XivePresenter *xptr, XiveTCTX *tctx, hwaddr offset,
- unsigned size);
- void xive_tctx_pic_print_info(XiveTCTX *tctx, GString *buf);
- Object *xive_tctx_create(Object *cpu, XivePresenter *xptr, Error **errp);
- void xive_tctx_reset(XiveTCTX *tctx);
- void xive_tctx_destroy(XiveTCTX *tctx);
- void xive_tctx_pipr_update(XiveTCTX *tctx, uint8_t ring, uint8_t priority,
- uint8_t group_level);
- void xive_tctx_reset_signal(XiveTCTX *tctx, uint8_t ring);
- void xive_tctx_notify(XiveTCTX *tctx, uint8_t ring, uint8_t group_level);
- /*
- * KVM XIVE device helpers
- */
- int kvmppc_xive_source_reset_one(XiveSource *xsrc, int srcno, Error **errp);
- void kvmppc_xive_source_set_irq(void *opaque, int srcno, int val);
- int kvmppc_xive_cpu_connect(XiveTCTX *tctx, Error **errp);
- int kvmppc_xive_cpu_synchronize_state(XiveTCTX *tctx, Error **errp);
- int kvmppc_xive_cpu_get_state(XiveTCTX *tctx, Error **errp);
- int kvmppc_xive_cpu_set_state(XiveTCTX *tctx, Error **errp);
- #endif /* PPC_XIVE_H */
|