summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorThomas Gleixner <tglx@linutronix.de>2024-08-10 00:04:41 +0300
committerThomas Gleixner <tglx@linutronix.de>2024-08-10 00:04:41 +0300
commit46c3e31cb0f805f8329756b3d6fc2809839f172e (patch)
tree0b1aa07bc7c50dbae2b43239364bd369deb6ea29 /include
parent60029162a0458832ab2bcfc6fd4986bfd9ca0f55 (diff)
parent1e7c05292531e5b6bebe409cd531ed4ec0b2ff56 (diff)
downloadlinux-46c3e31cb0f805f8329756b3d6fc2809839f172e.tar.xz
Merge tag 'irq-domain-24-08-09' into irq/core
Merge the irqdomain changes which are required for regmap to apply depending patches and therefore tagged.
Diffstat (limited to 'include')
-rw-r--r--include/linux/irqdomain.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/linux/irqdomain.h b/include/linux/irqdomain.h
index de6105f68fec..e432b6a12a32 100644
--- a/include/linux/irqdomain.h
+++ b/include/linux/irqdomain.h
@@ -291,7 +291,12 @@ struct irq_domain_chip_generic_info;
* @hwirq_max: Maximum number of interrupts supported by controller
* @direct_max: Maximum value of direct maps;
* Use ~0 for no limit; 0 for no direct mapping
+ * @hwirq_base: The first hardware interrupt number (legacy domains only)
+ * @virq_base: The first Linux interrupt number for legacy domains to
+ * immediately associate the interrupts after domain creation
* @bus_token: Domain bus token
+ * @name_suffix: Optional name suffix to avoid collisions when multiple
+ * domains are added using same fwnode
* @ops: Domain operation callbacks
* @host_data: Controller private data pointer
* @dgc_info: Geneneric chip information structure pointer used to
@@ -307,7 +312,10 @@ struct irq_domain_info {
unsigned int size;
irq_hw_number_t hwirq_max;
int direct_max;
+ unsigned int hwirq_base;
+ unsigned int virq_base;
enum irq_domain_bus_token bus_token;
+ const char *name_suffix;
const struct irq_domain_ops *ops;
void *host_data;
#ifdef CONFIG_IRQ_DOMAIN_HIERARCHY