上节的内容主要是向系统注册一个irq domain,具体HW interrupt ID和IRQ number的映射关系都是空的,因此,具体各个irq domain如何管理映射所需要的database还是需要建立的。例如:对于线性映射的irq domain,我们需要建立线性映射的lookup table,对于Radix Tree map,我们要把那个反应IRQ number和HW interrupt ID的Radix tree...
上节的内容主要是向系统注册一个irq domain,具体HW interrupt ID和IRQ number的映射关系都是空的,因此,具体各个irq domain如何管理映射所需要的database还是需要建立的。例如:对于线性映射的irq domain,我们需要建立线性映射的lookup table,对于Radix Tree map,我们要把那个反应IRQ number和HW interrupt ID的Radix tree...
上节的内容主要是向系统注册一个irq domain,具体HW interrupt ID和IRQ number的映射关系都是空的,因此,具体各个irq domain如何管理映射所需要的database还是需要建立的。例如:对于线性映射的irq domain,我们需要建立线性映射的lookup table,对于Radix Tree map,我们要把那个反应IRQ number和HW interrupt ID的Radix tree...
显然,第一级中断服务代码对每个产生GPIO中断的外设是类似的。有了IRQ Domain的帮助,第一级中断服务代码就可以统一,设备驱动程序只需要关心第二级中断服务就可以了。 IRQ Domain的创建 有两个函数可以用来创建IRQ Domain:irq_domain_add_linear和irq_domain_add_tree。对于大多数情况,前一个函数就够用了:它在中断源...
irq_domain_add_tree() The irq_domain maintains a radix tree map from hwirq numbers to Linux IRQs. When an hwirq is mapped, an irq_desc is allocated and the hwirq is used as the lookup key for the radix tree. The tree map is a good choice if the hwirq number can be very large...
Tree --- :: irq_domain_add_tree() irq_domain_create_tree() The irq_domain maintains a radix tree map from hwirq numbers to Linux IRQs. When an hwirq is mapped, an irq_desc is allocated and the @@ -109,8 +123,12 @@ accepts a more general abstraction 'struct fwnode_handle'. Ve...
(struct irq_domain*domain,irq_hw_number_t hwirq,struct irq_data*irq_data){if(hwirq<domain->revmap_size){domain->linear_revmap[hwirq]=irq_data->irq;}else{mutex_lock(&domain->revmap_tree_mutex);radix_tree_insert(&domain->revmap_tree,hwirq,irq_data);mutex_unlock(&domain->revmap_tree_...
1.1 Radix tree形式 只对系统的16个legacy中断进行irq_desc的初始化 229int__initearly_irq_init(...
radix treeINIT_RADIX_TREE(&domain->revmap_tree,GFP_KERNEL);domain->hwirq_max=hwirq_max;domain->revmap_size=size;domain->revmap_direct_max_irq=direct_max;// 挂入全局listmutex_lock(&irq_domain_mutex);list_add(&domain->link,&irq_domain_list);mutex_unlock(&irq_domain_mutex);returndomain;...
=== Tree === irq_domain_add_tree() The irq_domain maintains a radix tree map from hwirq numbers to Linux IRQs. When an hwirq is mapped, an irq_desc is allocated and the hwirq is used as the lookup key for the radix tree. The tree map is a good choice if the hwirq number...