溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

vxworks中VxBus怎么用

發(fā)布時間:2021-12-22 11:18:57 來源:億速云 閱讀:720 作者:小新 欄目:互聯(lián)網(wǎng)科技

這篇文章主要介紹vxworks中VxBus怎么用,文中介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們一定要看完!

Vx5的driver多數(shù)情況下與BSP糾纏不清,例如BSP需要包含sysDev.c。而Vx6發(fā)明了一種新的接口 - VxBus。它不僅規(guī)范了Driver與Device之間的接口,更重要的是讓Driver與BSP無關(guān),并最小化了Driver的架構(gòu)相關(guān)性。
VxBus的driver分為三步進(jìn)行初始化,因此寫個最最簡單例子就是  

#include <stdio.h>               /* printf */#include <hwif/vxbus/vxBus.h>    /* drvBusFuncs */#include <hwif/vxbus/vxbPciLib.h>/* vxbPciRegister */
#define MYDEVNAME "myDev"
static void myDevInstInit   (struct vxbDev *pDev);static void myDevInstInit2  (struct vxbDev *pDev);static void myDevInstConnect(struct vxbDev *pDev);
static struct drvBusFuncs myDevFuncs =    {    myDevInstInit,        /* devInstanceInit */    myDevInstInit2,       /* devInstanceInit2 */    myDevInstConnect      /* devConnect */    };
static struct vxbDevRegInfo myDevReg =    {    NULL,    VXB_DEVID_DEVICE,   /* 這是個Device的Driver */    VXB_BUSID_PCI,      /* 這是個PCI Device */    VXB_VER_5_0_0,    MYDEVNAME,    &myDevFuncs,    NULL,    NULL,    NULL    };
static void myDevInstInit(struct vxbDev *pDev){    }static void myDevInstInit2(struct vxbDev *pDev){    }static void myDevInstConnect(struct vxbDev *pDev){    }void myDevRegister(){    vxbDevRegister((struct vxbDevRegInfo *)&myDevReg);    }
用  vxBusShow() - INCLUDE_VXBUS_SHOW,看看執(zhí)行效果  

vxworks中VxBus怎么用

哎呀,所有的Orphan Device都被掛接myDev了??磥淼眠^濾一下,先看看有哪些  pci device,隨便挑倆空閑的

vxworks中VxBus怎么用

把myDevReg的類型改為vxbPciRegister,并加上device list
static struct vxbPciID myDevIDList[] =    {        /* devID, vendID */        {0x0740, 0x15ad},        {0x0790, 0x15ad}    };static struct vxbPciRegister myDevReg =    {        {        NULL,               /* pNext */        VXB_DEVID_DEVICE,   /* BUS_DEVID_DEVICE or BUS_DEVID_BUSCTRL */        VXB_BUSID_PCI,      /* PCI */        VXB_VER_5_0_0,      /* vxbVersion */        MYDEVNAME,          /* drvName */        &myDevFuncs,        /* pDrvBusFuncs */        NULL,               /* pMethods */        NULL,               /* devProbe */        NULL                /* pParamDefaults */        },    NELEMENTS(myDevIDList),    myDevIDList    };
這次PCI Device里只有兩個myDev了,不過怎么unit number都是0?

vxworks中VxBus怎么用

得讓driver每次加載時,能夠自動增加這個number:在初始化時,調(diào)用一個vxbNextUnitGet()就可以了
static void myDevInstInit    (    struct vxbDev *pDev)    {    vxbNextUnitGet(pDev);    }

再執(zhí)行就正常了

vxworks中VxBus怎么用

以上是“vxworks中VxBus怎么用”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI