irqdomain: Handle additional domain flags in irq_domain_instantiate()
In order to use irq_domain_instantiate() from several places such as irq_domain_create_hierarchy(), irq_domain_instantiate() needs to handle additional domain flags. Add the required infrastructure. Suggested-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Herve Codina <herve.codina@bootlin.com> Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Link: https://lore.kernel.org/r/20240614173232.1184015-8-herve.codina@bootlin.compull/923/head
parent
24a4f4e485
commit
757398541c
|
|
@ -260,6 +260,7 @@ void irq_domain_free_fwnode(struct fwnode_handle *fwnode);
|
||||||
/**
|
/**
|
||||||
* struct irq_domain_info - Domain information structure
|
* struct irq_domain_info - Domain information structure
|
||||||
* @fwnode: firmware node for the interrupt controller
|
* @fwnode: firmware node for the interrupt controller
|
||||||
|
* @domain_flags: Additional flags to add to the domain flags
|
||||||
* @size: Size of linear map; 0 for radix mapping only
|
* @size: Size of linear map; 0 for radix mapping only
|
||||||
* @hwirq_max: Maximum number of interrupts supported by controller
|
* @hwirq_max: Maximum number of interrupts supported by controller
|
||||||
* @direct_max: Maximum value of direct maps;
|
* @direct_max: Maximum value of direct maps;
|
||||||
|
|
@ -269,6 +270,7 @@ void irq_domain_free_fwnode(struct fwnode_handle *fwnode);
|
||||||
*/
|
*/
|
||||||
struct irq_domain_info {
|
struct irq_domain_info {
|
||||||
struct fwnode_handle *fwnode;
|
struct fwnode_handle *fwnode;
|
||||||
|
unsigned int domain_flags;
|
||||||
unsigned int size;
|
unsigned int size;
|
||||||
irq_hw_number_t hwirq_max;
|
irq_hw_number_t hwirq_max;
|
||||||
int direct_max;
|
int direct_max;
|
||||||
|
|
|
||||||
|
|
@ -263,6 +263,8 @@ struct irq_domain *irq_domain_instantiate(const struct irq_domain_info *info)
|
||||||
if (!domain)
|
if (!domain)
|
||||||
return ERR_PTR(-ENOMEM);
|
return ERR_PTR(-ENOMEM);
|
||||||
|
|
||||||
|
domain->flags |= info->domain_flags;
|
||||||
|
|
||||||
__irq_domain_publish(domain);
|
__irq_domain_publish(domain);
|
||||||
|
|
||||||
return domain;
|
return domain;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue