當(dāng)前位置:首頁(yè) > 嵌入式 > 嵌入式軟件

作者:曹忠明,華清遠(yuǎn)見(jiàn)嵌入式學(xué)院講師。

PCI是外圍設(shè)備互聯(lián)的簡(jiǎn)稱(Peripheral Component Interconnect)的簡(jiǎn)稱,作為一種通用的總線接口標(biāo)準(zhǔn),他在計(jì)算機(jī)系統(tǒng)中得到了廣泛的使用。PCI的速度能夠達(dá)到132M/s。在這里簡(jiǎn)單的介紹一下 linux 下PCI驅(qū)動(dòng)的實(shí)現(xiàn)。

在編寫(xiě)一個(gè)PCI驅(qū)動(dòng)的時(shí)候我們先得確定系統(tǒng)中是否有我們的設(shè)備。我們可以通過(guò)lspci查看PCI設(shè)備。

[root@localhost ~]# lspci

00:00.0 Host bridge: Intel Corporation 440BX/ZX/DX - 82443BX/ZX/DX Host bridge (rev 01)

00:01.0 PCI bridge: Intel Corporation 440BX/ZX/DX - 82443BX/ZX/DX AGP bridge (rev 01)

00:07.0 ISA bridge: Intel Corporation 82371AB/EB/MB PIIX4 ISA (rev 08)

00:07.1 IDE interface: Intel Corporation 82371AB/EB/MB PIIX4 IDE (rev 01)

00:07.2 USB Controller: Intel Corporation 82371AB/EB/MB PIIX4 USB

00:07.3 Bridge: Intel Corporation 82371AB/EB/MB PIIX4 ACPI (rev 08)

00:0f.0 VGA compatible controller: VMware Inc Abstract SVGA II Adapter

00:10.0 SCSI storage controller: LSI Logic / Symbios Logic 53c1030 PCI-X Fusion-MPT Dual Ultra320 SCSI (rev 01)

00:11.0 PCI bridge: VMware Inc PCI bridge (rev 02)

02:00.0 Ethernet controller: Advanced Micro Devices [AMD] 79c970 [PCnet32 LANCE] (rev 10)

02:01.0 Multimedia audio controller: Ensoniq ES1371 [AudioPCI-97] (rev 02)

02:02.0 USB Controller: VMware Inc Abstract USB2 EHCI Controller

確定有設(shè)備以后,我們就可以開(kāi)始我們的PCI設(shè)備驅(qū)動(dòng)的編寫(xiě)了。

1、 首先我們介紹幾個(gè)必須了解的結(jié)構(gòu)體

pci_driver:這個(gè)結(jié)構(gòu)體定義在include/linux/pci.h,這里我們最關(guān)注的是id_table、probe和remove。id_table是一個(gè)結(jié)構(gòu)體數(shù)組,用來(lái)存放驅(qū)動(dòng)程序適用的設(shè)備信息,probe用于檢測(cè)設(shè)備,remove為設(shè)備卸載時(shí)調(diào)用。

struct pci_driver {

struct list_head node;

char *nAME;

const struct pci_device_id *id_table; /* must be non-NULL for probe to be called */

int (*probe) (struct pci_dev *dev, const struct pci_device_id *id); /* New device inserted */

void (*remove) (struct pci_dev *dev); /* Device removed (NULL if not a hot-plug capable driver) */

int (*suspend) (struct pci_dev *dev, pm_message_t state); /* Device suspended */

int (*resume) (struct pci_dev *dev); /* Device woken up */

int (*enable_wake) (struct pci_dev *dev, pci_power_t state, int enable); /* Enable wake event */

void (*shutdown) (struct pci_dev *dev);

struct pci_error_handlers *err_handler;

struct device_driver driver;

struct pci_dynids dynids;

};

pci_dev:這個(gè)結(jié)構(gòu)體同樣也是定義在include/linux/pci.h,它詳細(xì)的定義了PCI的設(shè)備的信息。這些信息我們可以通過(guò)查看proc及sys目錄先相應(yīng)文件得到。

struct pci_dev {

struct list_head global_list; /* node in list of all PCI devices */

struct list_head bus_list; /* node in per-bus list */

struct pci_bus *bus; /* bus this device is on */

struct pci_bus *subordinate; /* bus this device bridges to */

void *sysdata; /* hook for sys-specific extension */

struct proc_dir_entry *procent; /* device entry in /proc/bus/pci */

unsigned int devfn; /* encoded device & function index */

unsigned short vendor;

unsigned short device;

unsigned short subsystem_vendor;

unsigned short subsystem_device;

unsigned int class; /* 3 bytes: (base,sub,prog-if) */

u8 hdr_type; /* PCI header type (`multi" flag masked out) */

u8 rom_base_reg; /* which config register controls the ROM */

u8 pin; /* which interrupt pin this device uses */

struct pci_driver *driver; /* which driver has allocated this device */

u64 dma_mask; /* Mask of the bits of bus address this

device implements. Normally this is

0xffffffff. You only need to change

this if your device has broken DMA

or supports 64-bit transfers. */

pci_power_t current_state; /* Current operating state. In ACPI-speak,

this is D0-D3, D0 being fully functional,

and D3 being off. */

pci_channel_state_t error_state; /* current connectivity state */

struct device dev; /* Generic device interface */

/* device is compatible with these IDs */

unsigned short vendor_compatible[DEVICE_COUNT_COMPATIBLE];

unsigned short device_compatible[DEVICE_COUNT_COMPATIBLE];

int cfg_size; /* Size of configuration space */

/*

* Instead of touching interrupt line and base address registers

* directly, use the values stored here. They might be different!

*/

unsigned int irq;

struct resource resource[DEVICE_COUNT_RESOURCE]; /* I/O and memory regions + expansion ROMs */

/* These fields are used by common fixups */

unsigned int transparent:1; /* Transparent PCI bridge */

unsigned int multifunction:1; /* Part of multi-function device */

/* keep track of device state */

unsigned int is_enabled:1; /* pci_enable_device has been called */

unsigned int is_busmaster:1; /* device is busmaster */

unsigned int no_msi:1; /* device may not use msi */

unsigned int no_d1d2:1; /* only allow d0 or d3 */

unsigned int block_ucfg_access:1; /* userspace config space access is blocked */

unsigned int broken_parity_status:1; /* Device generates false positive parity */

unsigned int msi_enabled:1;

unsigned int msix_enabled:1;

#ifndef __GENKSYMS__

unsigned int is_managed:1;

#endif

u32 saved_config_space[16]; /* config space saved at suspend time */

struct hlist_head saved_cap_space;

struct bin_attribute *rom_attr; /* attribute descriptor for sysfs ROM entry */

int rom_attr_enabled; /* has display of the rom attribute been enabled? */

struct bin_attribute *res_attr[DEVICE_COUNT_RESOURCE]; /* sysfs file for resources */

#ifndef __GENKSYMS__

u8 revision; /* PCI revision, low byte of class word */

#endif

};

2、 這里我們開(kāi)始編寫(xiě)一個(gè)簡(jiǎn)單的PCI驅(qū)動(dòng)

● LICENSE的聲明必不可少:

MODULE_LICENSE ("GPL");

● pci_driver的定義:

#define PCI_MODULE_NAME "dsp_pci_module"

static struct pci_driver new_pci_driver = {

name: PCI_MODULE_NAME,

id_table:new_pci_tbl,

probe: pci_probe,

remove: pci_remove,

};

pci_driver中對(duì)應(yīng)的pci_tbl定義:

#define NEW_PCI_VENDOR_ID 0x15ad

#define NEW_PCI_DEVICE_ID 0x0405

static struct pci_device_id new_pci_tbl[] __initdata = {

{NEW_PCI_VENDOR_ID, NEW_PCI_DEVICE_ID,

PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},

{0,}

};

MODULE_DEVICE_TABLE (pci, new_pci_tbl);

● probe函數(shù)的聲明:

static int __devinit pci_probe(struct pci_dev *pci_dev, const struct pci_device_id *pci_id)

{

/*在這里我們可以對(duì)PCI設(shè)備進(jìn)行初始化及IO的注冊(cè)等操作*/

return 0;

}

● remove函數(shù)的聲明:

static void __devexit pci_remove(struct pci_dev *pci_dev)

{

/*對(duì)資源釋放*/

}

● module_init和module_exit這兩個(gè)函數(shù)在驅(qū)動(dòng)中必不可少,分別在驅(qū)動(dòng)被加載和卸載時(shí)調(diào)用:

static int __init pci_init_module (void)

{

return pci_register_driver(&new_pci_driver);

}

static void __exit pci_cleanup_module (void)

{

pci_unregister_driver(&new_pci_driver);

}

module_init (pci_init_module);

module_exit (pci_cleanup_module);

下面我們說(shuō)一下這個(gè)驅(qū)動(dòng)的執(zhí)行過(guò)程:

系統(tǒng)加載模塊是調(diào)用pci_init_module函數(shù),在這個(gè)函數(shù)中我們通過(guò)pci_register_driver把new_pci_driver注冊(cè)到系統(tǒng)中,這個(gè)函數(shù)首先檢測(cè)id_table中定義的PCI信息是否和系統(tǒng)中的PCI信息有匹配,如果有則返回0,匹配成功后調(diào)用probe函數(shù)對(duì)PCI設(shè)備進(jìn)行進(jìn)一步的操作。同樣在卸載模塊時(shí)調(diào)用pci_cleanup_module,這個(gè)函數(shù)中通過(guò)pci_unregister_driver對(duì)new_pci_driver進(jìn)行注銷(xiāo),這個(gè)會(huì)調(diào)用到remove函數(shù)。

“本文由華清遠(yuǎn)見(jiàn)http://www.embedu.org/index.htm提供”



華清遠(yuǎn)見(jiàn)

本站聲明: 本文章由作者或相關(guān)機(jī)構(gòu)授權(quán)發(fā)布,目的在于傳遞更多信息,并不代表本站贊同其觀點(diǎn),本站亦不保證或承諾內(nèi)容真實(shí)性等。需要轉(zhuǎn)載請(qǐng)聯(lián)系該專欄作者,如若文章內(nèi)容侵犯您的權(quán)益,請(qǐng)及時(shí)聯(lián)系本站刪除。
換一批
延伸閱讀

9月2日消息,不造車(chē)的華為或?qū)⒋呱龈蟮莫?dú)角獸公司,隨著阿維塔和賽力斯的入局,華為引望愈發(fā)顯得引人矚目。

關(guān)鍵字: 阿維塔 塞力斯 華為

倫敦2024年8月29日 /美通社/ -- 英國(guó)汽車(chē)技術(shù)公司SODA.Auto推出其旗艦產(chǎn)品SODA V,這是全球首款涵蓋汽車(chē)工程師從創(chuàng)意到認(rèn)證的所有需求的工具,可用于創(chuàng)建軟件定義汽車(chē)。 SODA V工具的開(kāi)發(fā)耗時(shí)1.5...

關(guān)鍵字: 汽車(chē) 人工智能 智能驅(qū)動(dòng) BSP

北京2024年8月28日 /美通社/ -- 越來(lái)越多用戶希望企業(yè)業(yè)務(wù)能7×24不間斷運(yùn)行,同時(shí)企業(yè)卻面臨越來(lái)越多業(yè)務(wù)中斷的風(fēng)險(xiǎn),如企業(yè)系統(tǒng)復(fù)雜性的增加,頻繁的功能更新和發(fā)布等。如何確保業(yè)務(wù)連續(xù)性,提升韌性,成...

關(guān)鍵字: 亞馬遜 解密 控制平面 BSP

8月30日消息,據(jù)媒體報(bào)道,騰訊和網(wǎng)易近期正在縮減他們對(duì)日本游戲市場(chǎng)的投資。

關(guān)鍵字: 騰訊 編碼器 CPU

8月28日消息,今天上午,2024中國(guó)國(guó)際大數(shù)據(jù)產(chǎn)業(yè)博覽會(huì)開(kāi)幕式在貴陽(yáng)舉行,華為董事、質(zhì)量流程IT總裁陶景文發(fā)表了演講。

關(guān)鍵字: 華為 12nm EDA 半導(dǎo)體

8月28日消息,在2024中國(guó)國(guó)際大數(shù)據(jù)產(chǎn)業(yè)博覽會(huì)上,華為常務(wù)董事、華為云CEO張平安發(fā)表演講稱,數(shù)字世界的話語(yǔ)權(quán)最終是由生態(tài)的繁榮決定的。

關(guān)鍵字: 華為 12nm 手機(jī) 衛(wèi)星通信

要點(diǎn): 有效應(yīng)對(duì)環(huán)境變化,經(jīng)營(yíng)業(yè)績(jī)穩(wěn)中有升 落實(shí)提質(zhì)增效舉措,毛利潤(rùn)率延續(xù)升勢(shì) 戰(zhàn)略布局成效顯著,戰(zhàn)新業(yè)務(wù)引領(lǐng)增長(zhǎng) 以科技創(chuàng)新為引領(lǐng),提升企業(yè)核心競(jìng)爭(zhēng)力 堅(jiān)持高質(zhì)量發(fā)展策略,塑強(qiáng)核心競(jìng)爭(zhēng)優(yōu)勢(shì)...

關(guān)鍵字: 通信 BSP 電信運(yùn)營(yíng)商 數(shù)字經(jīng)濟(jì)

北京2024年8月27日 /美通社/ -- 8月21日,由中央廣播電視總臺(tái)與中國(guó)電影電視技術(shù)學(xué)會(huì)聯(lián)合牽頭組建的NVI技術(shù)創(chuàng)新聯(lián)盟在BIRTV2024超高清全產(chǎn)業(yè)鏈發(fā)展研討會(huì)上宣布正式成立。 活動(dòng)現(xiàn)場(chǎng) NVI技術(shù)創(chuàng)新聯(lián)...

關(guān)鍵字: VI 傳輸協(xié)議 音頻 BSP

北京2024年8月27日 /美通社/ -- 在8月23日舉辦的2024年長(zhǎng)三角生態(tài)綠色一體化發(fā)展示范區(qū)聯(lián)合招商會(huì)上,軟通動(dòng)力信息技術(shù)(集團(tuán))股份有限公司(以下簡(jiǎn)稱"軟通動(dòng)力")與長(zhǎng)三角投資(上海)有限...

關(guān)鍵字: BSP 信息技術(shù)
關(guān)閉
關(guān)閉