mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 02:30:34 +02:00 
			
		
		
		
	genirq/msi: Split msi_create_irq_domain()
Split the functionality of msi_create_irq_domain() so it can be reused for creating per device irq domains. No functional change. Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Kevin Tian <kevin.tian@intel.com> Acked-by: Marc Zyngier <maz@kernel.org> Link: https://lore.kernel.org/r/20221124232325.559086358@linutronix.de
This commit is contained in:
		
							parent
							
								
									61bf992fc6
								
							
						
					
					
						commit
						a80c0aceea
					
				
					 1 changed files with 20 additions and 12 deletions
				
			
		| 
						 | 
					@ -758,16 +758,9 @@ static void msi_domain_update_chip_ops(struct msi_domain_info *info)
 | 
				
			||||||
		chip->irq_set_affinity = msi_domain_set_affinity;
 | 
							chip->irq_set_affinity = msi_domain_set_affinity;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/**
 | 
					static struct irq_domain *__msi_create_irq_domain(struct fwnode_handle *fwnode,
 | 
				
			||||||
 * msi_create_irq_domain - Create an MSI interrupt domain
 | 
					 | 
				
			||||||
 * @fwnode:	Optional fwnode of the interrupt controller
 | 
					 | 
				
			||||||
 * @info:	MSI domain info
 | 
					 | 
				
			||||||
 * @parent:	Parent irq domain
 | 
					 | 
				
			||||||
 *
 | 
					 | 
				
			||||||
 * Return: pointer to the created &struct irq_domain or %NULL on failure
 | 
					 | 
				
			||||||
 */
 | 
					 | 
				
			||||||
struct irq_domain *msi_create_irq_domain(struct fwnode_handle *fwnode,
 | 
					 | 
				
			||||||
						  struct msi_domain_info *info,
 | 
											  struct msi_domain_info *info,
 | 
				
			||||||
 | 
											  unsigned int flags,
 | 
				
			||||||
						  struct irq_domain *parent)
 | 
											  struct irq_domain *parent)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	struct irq_domain *domain;
 | 
						struct irq_domain *domain;
 | 
				
			||||||
| 
						 | 
					@ -787,7 +780,7 @@ struct irq_domain *msi_create_irq_domain(struct fwnode_handle *fwnode,
 | 
				
			||||||
	if (info->flags & MSI_FLAG_USE_DEF_CHIP_OPS)
 | 
						if (info->flags & MSI_FLAG_USE_DEF_CHIP_OPS)
 | 
				
			||||||
		msi_domain_update_chip_ops(info);
 | 
							msi_domain_update_chip_ops(info);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	domain = irq_domain_create_hierarchy(parent, IRQ_DOMAIN_FLAG_MSI, 0,
 | 
						domain = irq_domain_create_hierarchy(parent, flags | IRQ_DOMAIN_FLAG_MSI, 0,
 | 
				
			||||||
					     fwnode, &msi_domain_ops, info);
 | 
										     fwnode, &msi_domain_ops, info);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (domain) {
 | 
						if (domain) {
 | 
				
			||||||
| 
						 | 
					@ -799,6 +792,21 @@ struct irq_domain *msi_create_irq_domain(struct fwnode_handle *fwnode,
 | 
				
			||||||
	return domain;
 | 
						return domain;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					/**
 | 
				
			||||||
 | 
					 * msi_create_irq_domain - Create an MSI interrupt domain
 | 
				
			||||||
 | 
					 * @fwnode:	Optional fwnode of the interrupt controller
 | 
				
			||||||
 | 
					 * @info:	MSI domain info
 | 
				
			||||||
 | 
					 * @parent:	Parent irq domain
 | 
				
			||||||
 | 
					 *
 | 
				
			||||||
 | 
					 * Return: pointer to the created &struct irq_domain or %NULL on failure
 | 
				
			||||||
 | 
					 */
 | 
				
			||||||
 | 
					struct irq_domain *msi_create_irq_domain(struct fwnode_handle *fwnode,
 | 
				
			||||||
 | 
										 struct msi_domain_info *info,
 | 
				
			||||||
 | 
										 struct irq_domain *parent)
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
						return __msi_create_irq_domain(fwnode, info, 0, parent);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/**
 | 
					/**
 | 
				
			||||||
 * msi_parent_init_dev_msi_info - Delegate initialization of device MSI info down
 | 
					 * msi_parent_init_dev_msi_info - Delegate initialization of device MSI info down
 | 
				
			||||||
 *				  in the domain hierarchy
 | 
					 *				  in the domain hierarchy
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue