|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册
x
在写一个pci的驱动,需要用到中断INTA;
我把pci配置空间的寄存器Interrupt Pin设为1,在open函数中申请中断,成功,申请函数如下,des_interrupt是中断处理程序!
static int des_open(struct inode *inode, struct file *file)
{
if(error = request_irq(card->irq, &des_interrupt, SA_SHIRQ, DES_NAME , card)) //SA_SHIRQ: Interrupt is shared
return error;
printk("The request_irq is OK, card->irq:%x\n", card->irq);
。。。
}
但发现中断产生时(我把中断引出来点亮led灯了,所以可以确定中断产生了) ,并不进入des_interrupt函数,请问问题出在哪里啊?thx
初来乍到,请牛牛们多多关照^_^
|
|