资源描述:
《PCI驱动开发手册》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、Linux2.6内核PCI驱动程序开发一,PCI相关数据结构说明1.1structpci_driver这个数据结构在文件/linux/pci.h里,这是Linux内核版本2.4之后为新型的PCI设备驱动程序所添加的,其中最主要的是用于识别设备的id_table结构,以及用于检测设备的函数probe()和卸载设备的函数remove()。structpci_driver{structlist_headnode;char*name;conststructpci_device_id*id_table;int(
2、*probe)(structpci_dev*dev,conststructpci_device_id*id);void(*remove)(structpci_dev*dev);int(*save_state)(structpci_dev*dev,u32state);int(*suspend)(structpci_dev*dev,u32state);int(*resume)(structpci_dev*dev);int(*enable_wake)(structpci_dev*dev,u32state,i
3、ntenable);};为创建一个正确的structpci_driver结构,只有4个字段需要被初始化:name,id_table,probe和remove。其中id_table初始化可以用到宏PCI_DEVICE(VENDOR_ID,DEVICE_ID),VENDOR_ID和DEVICE_ID分别为设备和厂商编号,由板卡生产厂家指定。Staticconststructpci_device_idmypci[]={{PCI_DEVICE(VENDOR_ID,DEVICE_ID)},{}};1.2pci_
4、dev这个数据结构也在文件include/linux/pci.h里,它详细描述了一个PCI设备几乎所有的硬件信息,包括厂商ID、设备ID、各种资源等。可以根据需要使用其中的数据成员。structpci_dev{structlist_headglobal_list;structlist_headbus_list;structpci_bus*bus;structpci_bus*subordinate;void*sysdata;structproc_dir_entry*procent;unsignedint
5、devfn;unsignedshortvendor;unsignedshortdevice;unsignedshortsubsystem_vendor;-6-unsignedshortsubsystem_device;unsignedintclass;u8hdr_type;u8rom_base_reg;structpci_driver*driver;void*driver_data;u64dma_mask;u32current_state;unsignedshortvendor_compatible[
6、DEVICE_COUNT_COMPATIBLE];unsignedshortdevice_compatible[DEVICE_COUNT_COMPATIBLE];unsignedintirq;structresourceresource[DEVICE_COUNT_RESOURCE];structresourcedma_resource[DEVICE_COUNT_DMA];structresourceirq_resource[DEVICE_COUNT_IRQ];charname[80];charslot
7、_name[8];intactive;intro;unsignedshortregs;int(*prepare)(structpci_dev*dev);int(*activate)(structpci_dev*dev);int(*deactivate)(structpci_dev*dev);};一,PCI驱动基本框架在用模块方式实现PCI设备驱动程序时,通常至少要实现以下几个部分:初始化设备模块、设备打开模块、数据读写和控制模块、中断处理模块、设备释放模块、设备卸载模块。下面给出一个典型的PCI设备驱
8、动程序的基本框架。/*指明该驱动程序适用于哪一些PCI设备*/staticstructpci_device_iddemo_pci_tbl[]__initdata={{PCI_VENDOR_ID_DEMO,PCI_DEVICE_ID_DEMO,PCI_ANY_ID,PCI_ANY_ID,0,0,DEMO},{0,}};/*对特定PCI设备进行描述的数据结构*/structdemo_card{unsignedintmagic;/*使用链表保存所有同类的PCI