欢迎来到天天文库
浏览记录
ID:13015646
大小:113.50 KB
页数:12页
时间:2018-07-20
《linux.中断处理.中断处理》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、Linux.中断处理.中断处理通过上一篇文章就可以看出Linux是使用structirq_desc这个结构体的数组来管理对应的中断号上的中断处理事务的。在看irq_desc这个结构体之前可以试着猜想它需要包含哪些要素:·中断号。不过在后面可以看到中断号其实就暗含中该中断描述符相对于数组起始地址的偏移之中了。·管理这个中断号的是什么样的中断控制器。是8259A还是IO-APIC等等。以及对相当控制器的操作如:启停控制器、开启或禁用相应的中断号等。·在这个中断号上的中断处理函数。这其中必需要考虑的问题有:由于中断号的数量是有限的,必定就会出现多个设备共享一个中断号的情况,这时中断处理函数应该是什么
2、样的。以上几点是一个中断请求描述符必需要包含的,至于其它的可以看structirq_desc定义部分(include/linux/irq.h):147148149150151152153154155156157158159160161162163164165166/***structirq_desc-interruptdescriptor*@irq:interruptnumberforthisdescriptor*@timer_rand_state:pointertotimerrandstatestruct*@kstat_irqs:irqstatspercpu*@irq_2_iommu:iom
3、muwiththisirq*@handle_irq:highlevelirq-eventshandler[ifNULL,__do_IRQ()]*@chip:lowlevelinterrupthardwareaccess*@msi_desc:MSIdescriptor*@handler_data:per-IRQdatafortheirq_chipmethods*@chip_data:platform-specificper-chipprivatedataforthechip*methods,toallowsharedchipimplementations*@action:theirqaction
4、chain*@status:statusinformation*@depth:disable-depth,fornestedirq_disable()calls*@wake_depth:enabledepth,formultipleset_irq_wake()callers*@irq_count:statsfieldtodetectstalledirqs16716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620
5、7208209*@last_unhandled:agingtimerforunhandledcount*@irqs_unhandled:statsfieldforspuriousunhandledinterrupts*@lock:lockingforSMP*@affinity:IRQaffinityonSMP*@node:nodeindexusefulforbalancing*@pending_mask:pendingrebalancedinterrupts*@threads_active:numberofirqactionthreadscurrentlyrunning*@wait_for_t
6、hreads:waitqueueforsync_irqtowaitforthreadedhandlers*@dir:/proc/irq/procfsentry*@name:flowhandlernamefor/proc/interruptsoutput*/structirq_desc{unsignedintirq;structtimer_rand_state*timer_rand_state;unsignedint*kstat_irqs;#ifdefCONFIG_INTR_REMAPstructirq_2_iommu*irq_2_iommu;#endifirq_flow_handler_tha
7、ndle_irq;structirq_chip*chip;structmsi_desc*msi_desc;void*handler_data;void*chip_data;structirqaction*action;/*IRQactionlist*/unsignedintstatus;/*IRQstatus*/ unsignedintdepth;/*nestedirqdisables*/unsi
此文档下载收益归作者所有