1 /* SPDX-License-Identifier: GPL-2.0-or-later */
3 * Copyright 2016,2017 IBM Corporation.
5 #ifndef _ASM_POWERPC_XIVE_H
6 #define _ASM_POWERPC_XIVE_H
8 #include <asm/opal-api.h>
10 #define XIVE_INVALID_VP 0xffffffff
12 #ifdef CONFIG_PPC_XIVE
15 * Thread Interrupt Management Area (TIMA)
17 * This is a global MMIO region divided in 4 pages of varying access
18 * permissions, providing access to per-cpu interrupt management
19 * functions. It always identifies the CPU doing the access based
20 * on the PowerBus initiator ID, thus we always access via the
21 * same offset regardless of where the code is executing
23 extern void __iomem
*xive_tima
;
24 extern unsigned long xive_tima_os
;
27 * Offset in the TM area of our current execution level (provided by
30 extern u32 xive_tima_offset
;
33 * Per-irq data (irq_get_handler_data for normal IRQs), IPIs
34 * have it stored in the xive_cpu structure. We also cache
35 * for normal interrupts the current target CPU.
37 * This structure is setup by the backend for each interrupt.
39 struct xive_irq_data
{
42 void __iomem
*eoi_mmio
;
44 void __iomem
*trig_mmio
;
49 /* Setup/used by frontend */
52 * saved_p means that there is a queue entry for this interrupt
53 * in some CPU's queue (not including guest vcpu queues), even
54 * if P is not set in the source ESB.
55 * stale_p means that there is no queue entry for this interrupt
56 * in some CPU's queue, even if P is set in the source ESB.
61 #define XIVE_IRQ_FLAG_STORE_EOI 0x01
62 #define XIVE_IRQ_FLAG_LSI 0x02
63 /* #define XIVE_IRQ_FLAG_SHIFT_BUG 0x04 */ /* P9 DD1.0 workaround */
64 /* #define XIVE_IRQ_FLAG_MASK_FW 0x08 */ /* P9 DD1.0 workaround */
65 /* #define XIVE_IRQ_FLAG_EOI_FW 0x10 */ /* P9 DD1.0 workaround */
66 #define XIVE_IRQ_FLAG_H_INT_ESB 0x20
68 /* Special flag set by KVM for excalation interrupts */
69 #define XIVE_IRQ_FLAG_NO_EOI 0x80
71 #define XIVE_INVALID_CHIP_ID -1
73 /* A queue tracking structure in a CPU */
82 atomic_t pending_count
;
87 /* Global enable flags for the XIVE support */
88 extern bool __xive_enabled
;
90 static inline bool xive_enabled(void) { return __xive_enabled
; }
92 bool xive_spapr_init(void);
93 bool xive_native_init(void);
94 void xive_smp_probe(void);
95 int xive_smp_prepare_cpu(unsigned int cpu
);
96 void xive_smp_setup_cpu(void);
97 void xive_smp_disable_cpu(void);
98 void xive_teardown_cpu(void);
99 void xive_shutdown(void);
100 void xive_flush_interrupt(void);
103 void xmon_xive_do_dump(int cpu
);
104 int xmon_xive_get_irq_config(u32 hw_irq
, struct irq_data
*d
);
106 /* APIs used by KVM */
107 u32
xive_native_default_eq_shift(void);
108 u32
xive_native_alloc_vp_block(u32 max_vcpus
);
109 void xive_native_free_vp_block(u32 vp_base
);
110 int xive_native_populate_irq_data(u32 hw_irq
,
111 struct xive_irq_data
*data
);
112 void xive_cleanup_irq_data(struct xive_irq_data
*xd
);
113 void xive_native_free_irq(u32 irq
);
114 int xive_native_configure_irq(u32 hw_irq
, u32 target
, u8 prio
, u32 sw_irq
);
116 int xive_native_configure_queue(u32 vp_id
, struct xive_q
*q
, u8 prio
,
117 __be32
*qpage
, u32 order
, bool can_escalate
);
118 void xive_native_disable_queue(u32 vp_id
, struct xive_q
*q
, u8 prio
);
120 void xive_native_sync_source(u32 hw_irq
);
121 void xive_native_sync_queue(u32 hw_irq
);
122 bool is_xive_irq(struct irq_chip
*chip
);
123 int xive_native_enable_vp(u32 vp_id
, bool single_escalation
);
124 int xive_native_disable_vp(u32 vp_id
);
125 int xive_native_get_vp_info(u32 vp_id
, u32
*out_cam_id
, u32
*out_chip_id
);
126 bool xive_native_has_single_escalation(void);
128 int xive_native_get_queue_info(u32 vp_id
, uint32_t prio
,
132 u32
*out_escalate_irq
,
135 int xive_native_get_queue_state(u32 vp_id
, uint32_t prio
, u32
*qtoggle
,
137 int xive_native_set_queue_state(u32 vp_id
, uint32_t prio
, u32 qtoggle
,
139 int xive_native_get_vp_state(u32 vp_id
, u64
*out_state
);
140 bool xive_native_has_queue_state_support(void);
141 extern u32
xive_native_alloc_irq_on_chip(u32 chip_id
);
143 static inline u32
xive_native_alloc_irq(void)
145 return xive_native_alloc_irq_on_chip(OPAL_XIVE_ANY_CHIP
);
150 static inline bool xive_enabled(void) { return false; }
152 static inline bool xive_spapr_init(void) { return false; }
153 static inline bool xive_native_init(void) { return false; }
154 static inline void xive_smp_probe(void) { }
155 static inline int xive_smp_prepare_cpu(unsigned int cpu
) { return -EINVAL
; }
156 static inline void xive_smp_setup_cpu(void) { }
157 static inline void xive_smp_disable_cpu(void) { }
158 static inline void xive_shutdown(void) { }
159 static inline void xive_flush_interrupt(void) { }
161 static inline u32
xive_native_alloc_vp_block(u32 max_vcpus
) { return XIVE_INVALID_VP
; }
162 static inline void xive_native_free_vp_block(u32 vp_base
) { }
166 #endif /* _ASM_POWERPC_XIVE_H */