|
|
@@ -209,6 +209,7 @@ struct irq_data {
|
|
|
* IRQD_IRQ_STARTED - Startup state of the interrupt
|
|
|
* IRQD_MANAGED_SHUTDOWN - Interrupt was shutdown due to empty affinity
|
|
|
* mask. Applies only to affinity managed irqs.
|
|
|
+ * IRQD_SINGLE_TARGET - IRQ allows only a single affinity target
|
|
|
*/
|
|
|
enum {
|
|
|
IRQD_TRIGGER_MASK = 0xf,
|
|
|
@@ -228,6 +229,7 @@ enum {
|
|
|
IRQD_AFFINITY_MANAGED = (1 << 21),
|
|
|
IRQD_IRQ_STARTED = (1 << 22),
|
|
|
IRQD_MANAGED_SHUTDOWN = (1 << 23),
|
|
|
+ IRQD_SINGLE_TARGET = (1 << 24),
|
|
|
};
|
|
|
|
|
|
#define __irqd_to_state(d) ACCESS_PRIVATE((d)->common, state_use_accessors)
|
|
|
@@ -276,6 +278,20 @@ static inline bool irqd_is_level_type(struct irq_data *d)
|
|
|
return __irqd_to_state(d) & IRQD_LEVEL;
|
|
|
}
|
|
|
|
|
|
+/*
|
|
|
+ * Must only be called of irqchip.irq_set_affinity() or low level
|
|
|
+ * hieararchy domain allocation functions.
|
|
|
+ */
|
|
|
+static inline void irqd_set_single_target(struct irq_data *d)
|
|
|
+{
|
|
|
+ __irqd_to_state(d) |= IRQD_SINGLE_TARGET;
|
|
|
+}
|
|
|
+
|
|
|
+static inline bool irqd_is_single_target(struct irq_data *d)
|
|
|
+{
|
|
|
+ return __irqd_to_state(d) & IRQD_SINGLE_TARGET;
|
|
|
+}
|
|
|
+
|
|
|
static inline bool irqd_is_wakeup_set(struct irq_data *d)
|
|
|
{
|
|
|
return __irqd_to_state(d) & IRQD_WAKEUP_STATE;
|