亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? usbpcistub.c

?? vxworks for Sam2410 bsp NoNet
?? C
?? 第 1 頁 / 共 2 頁
字號:
/* usbPciStub.c - System-specific PCI Functions for Integrator Bsps *//* Copyright 1999-2002 Wind River Systems, Inc. *//*Modification history--------------------01a,25apr02,to   define PCI to CPU offset correctly.*//*DESCRIPTIONThis file defines platform-independent functions accessing PCI bus capabilities.  These functions allow PCI device drivers to be written independent of the underlying O/S's PCI access mechanisms.The name of each function in this group begins with "usb" to represent"Device Driver Services."*//* Includes */#include "vxWorks.h"#include "string.h"#include "sysLib.h"#include "cacheLib.h"#include "iv.h"#include "intLib.h"/*#include "drv/pci/pciConfigLib.h"*/   /* VxWorks PCI funcs */#include "integrator.h"#include "usb/usbPlatform.h"		/* Basic definitions */#include "usb/usbPciLib.h"			/* Our API */#include "drv/usb/usbOhci.h"                /* OHCI definitions */#define PCI_IO_OFFSET		PCI2CPU_IO_OFFSET#define PCI_MEM_OFFSET		PCI2DRAM_BASE_ADRS#define PCI_MEMIO_OFFSET	PCI2CPU_MEM_OFFSET#define sysOutByte(addr,data)	(*((UINT8  *) (addr)) = ((UINT8)  (data)))#define sysOutWord(addr,data)   (*((UINT16 *) (addr)) = ((UINT16) (data)))#define sysOutLong(addr,data)   (*((UINT32 *) (addr)) = ((UINT32) (data)))#define sysInByte(addr)         (*((UINT8  *) (addr)))#define sysInWord(addr)         (*((UINT16 *) (addr)))#define sysInLong(addr)         (*((UINT32 *) (addr)))#define INT_CONNECT(intNo, func, param)	\	intConnect (INUM_TO_IVEC(intNo), (VOIDFUNCPTR) (func), (int) (param))#define INT_DISCONNECT(intNo, func, param)#define INT_ENABLE(i)		intEnable(i)#define INT_DISABLE(i)		intDisable(i)/* Map I/O functions to underlying system functions. */#define	OUR_PCI_IN_BYTE(a)		sysInByte ((a) + PCI_IO_OFFSET)#define	OUR_PCI_IN_WORD(a)		sysInWord ((a) + PCI_IO_OFFSET)#define	OUR_PCI_IN_DWORD(a)		sysInLong ((a) + PCI_IO_OFFSET)#define	OUR_PCI_OUT_BYTE(a,v)	sysOutByte ((a) + PCI_IO_OFFSET, (v))#define	OUR_PCI_OUT_WORD(a,v)	sysOutWord ((a) + PCI_IO_OFFSET, (v))#define	OUR_PCI_OUT_DWORD(a,v)	sysOutLong ((a) + PCI_IO_OFFSET, (v))/* code tracks usage count for interrupts 0..MAX_INT_NO-1. */#define MAX_INT_NO		16/* locals */LOCAL UINT16 intUsage [MAX_INT_NO] = {0};LOCAL UINT32 sysUsbInitialised;/********************************************************************************* sysUsbPciInit - perform low level pci init of all Ohci class pci devices** This routine discovers and assigns PCI resources to all installed* USB class devices. In the case of the OPTI chip, it is one device* per chip. The 4 Port Lucent chip is a multi-function device with* 4 single port USB devices/functions.** NOTE: This routine should not be called directly by the user.** RETURNS: N/A*/void sysUsbPciInit()    {    int nth, pciBus, pciDevice, pciFunc;    /*     * Initialise only once     */    if( sysUsbInitialised )        return;    /*     * See if any USB boards are installed     */    for(nth = 0; ; nth++)        {        /*         * Look for the nth occurance of a OHCI Class device on the Pci Bus         */        if (pciFindClass( ((OHCI_CLASS << 16) | (OHCI_SUBCLASS << 8) | OHCI_PGMIF),            nth, &pciBus, &pciDevice, &pciFunc) == OK)            {            /*             * Assign PCI resources to this device             */            pciAssignResources(pciBus, pciDevice, pciFunc);            sysUsbInitialised++;            }        else            {            /* No more devices found */            break;            }        }    }/***************************************************************************** usbPciClassFind - Locates PCI devices by class.** A caller uses this function to locate a PCI device by its PCI class.* The caller must specify the <pciClass>, <subClass>, and <pgmIf> for the* device being sought.	The function returns the first matching device* for <index> = 0, the second for <index> = 1, and so forth.  The* bus number, device number, and function number for the matching device * are returned in the <pBusNo>, <pDeviceNo>, and <pFuncNo> buffers provided * by the caller. *** RETURNS: TRUE if matching device found*	   FALSE if device not found*/BOOL usbPciClassFind    (    UINT8 pciClass,		/* PCI device class */    UINT8 subClass,		/* PCI device sub-class */    UINT8 pgmIf,		/* Programming interface */    UINT16 index,		/* Caller wants nth matching dev */    pUINT8 pBusNo,		/* Bus number of matching dev */    pUINT8 pDeviceNo,		/* Device number of matching dev */    pUINT8 pFuncNo		/* Function number of matching dev */    )    {    int intBusNo;		/* VxWorks returns "int" values */    int intDeviceNo;    int intFuncNo;        /* Use the VxWorks PCI config. library to find a device within the    specified class. */    if (pciFindClass ((pciClass << 16) | (subClass << 8) | pgmIf, index,	&intBusNo, &intDeviceNo, &intFuncNo) != OK)	{	return FALSE;	}    else	{	if (pBusNo) 		*pBusNo = (UINT8) intBusNo;	if (pDeviceNo) 		*pDeviceNo = (UINT8) intDeviceNo;	if (pFuncNo) 		*pFuncNo = (UINT8) intFuncNo;	}    return TRUE;    }/***************************************************************************** usbPciByteGet - Returns a UINT8 configuration value** This function returns the UINT8 value at offset <regOffset> from * the PCI configuration space of the device identified by <busNo>, * <deviceNo>, and <funcNo>.** RETURNS: UINT8 value read from device configuration space*/UINT8 usbPciByteGet     (    UINT8 busNo,		/* Bus number of device */    UINT8 deviceNo,		/* Device number of device */    UINT8 funcNo,		/* Function number of device */    UINT16 regOffset		/* Offset into PCI config space */    )    {    UINT8 value;    if (pciConfigInByte (busNo, deviceNo, funcNo, regOffset, &value) != OK)	return 0;    return value;    }/***************************************************************************** usbPciWordGet - Returns a UINT16 configuration value** This function returns the UINT16 value at offset <regOffset> from * the PCI configuration space of the device identified by <busNo>, * <deviceNo>, and <funcNo>.** NOTE: This function adjusts for big vs. little endian environments.** RETURNS: UINT16 value read from device configuration space*/UINT32 usbPciWordGet    (    UINT8 busNo,		/* Bus number of device */    UINT8 deviceNo,		/* Device number of device */    UINT8 funcNo,		/* Function number of device */    UINT16 regOffset		/* Offset into PCI config space */    )    {    UINT16 value;    if (pciConfigInWord (busNo, deviceNo, funcNo, regOffset, &value) != OK)	return 0;    return value;    }/***************************************************************************** usbPciDwordGet - Returns a UINT32 configuration value** This function returns the UINT32 value at offset <regOffset> from * the PCI configuration space of the device identified by <busNo>, * <deviceNo>, and <funcNo>.** NOTE: This function adjusts for big vs. little endian environments.** RETURNS: UINT32 value read from device configuration space*/UINT32 usbPciDwordGet    (    UINT8 busNo,		/* Bus number of device */    UINT8 deviceNo,		/* Device number of device */    UINT8 funcNo,		/* Function number of device */    UINT16 regOffset		/* Offset into PCI config space */    )    {    UINT32 value;    if (pciConfigInLong (busNo, deviceNo, funcNo, regOffset, &value) != OK)	return 0;    return value;    }/***************************************************************************** usbPciConfigHeaderGet - Reads a device's PCI configuration header** This function reads the PCI configuration header for the device* identified by <busNo>, <deviceNo>, and <funcNo>.  The configuration* header is stored in the <pCfgHdr> buffer provided by the caller.** This function initializes the <pCfgHdr> structure to zeros.  Any * fields which cannot be read from the device's configuration header * will remain zero upon return.  This function does not attempt to read* fields defined as "reserved" in the PCI configuration header.** RETURNS: N/A*/VOID usbPciConfigHeaderGet    (    UINT8 busNo,		/* Bus number of device */    UINT8 deviceNo,		/* Device number of device */    UINT8 funcNo,		/* Function number of device */    pPCI_CFG_HEADER pCfgHdr	/* Buffer provided by caller */    )    {    int i;    /* Do nothing if CfgHdr is NULL */    if (pCfgHdr == NULL)	return;    /* Initialize the buffer to zeros. */    memset (pCfgHdr, 0, sizeof (*pCfgHdr));    /* Read and store each field in the PCI configuration header. */    pCfgHdr->vendorId	= usbPciWordGet (busNo, deviceNo, funcNo, PCI_CFG_VENDOR_ID);    pCfgHdr->deviceId	= usbPciWordGet (busNo, deviceNo, funcNo, PCI_CFG_DEVICE_ID);    pCfgHdr->command	= usbPciWordGet (busNo, deviceNo, funcNo, PCI_CFG_COMMAND);    pCfgHdr->status	= usbPciWordGet (busNo, deviceNo, funcNo, PCI_CFG_STATUS);    pCfgHdr->revisionId = usbPciByteGet (busNo, deviceNo, funcNo, PCI_CFG_REVISION);    pCfgHdr->pgmIf	= usbPciByteGet (busNo, deviceNo, funcNo, PCI_CFG_PROGRAMMING_IF);    pCfgHdr->subClass	= usbPciByteGet (busNo, deviceNo, funcNo, PCI_CFG_SUBCLASS);    pCfgHdr->pciClass	= usbPciByteGet (busNo, deviceNo, funcNo, PCI_CFG_CLASS);    pCfgHdr->cacheLineSize = usbPciByteGet (busNo, deviceNo, funcNo, PCI_CFG_CACHE_LINE_SIZE);    pCfgHdr->latencyTimer = usbPciByteGet (busNo, deviceNo, funcNo, PCI_CFG_LATENCY_TIMER);    pCfgHdr->headerType = usbPciByteGet (busNo, deviceNo, funcNo, PCI_CFG_HEADER_TYPE);    pCfgHdr->bist	= usbPciByteGet (busNo, deviceNo, funcNo, PCI_CFG_BIST);    for (i = 0; i < PCI_CFG_NUM_BASE_REG; i++)        {	pCfgHdr->baseReg [i] = usbPciDwordGet (busNo, deviceNo, funcNo, 	    PCI_CFG_BASE_ADDRESS_0 + i * sizeof (UINT32));

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久综合狠狠综合| 日韩午夜电影在线观看| 国产成人一区二区精品非洲| 亚洲成av人片在www色猫咪| 亚洲情趣在线观看| 国产欧美精品区一区二区三区| 欧美成人vps| 久久九九99视频| 国产日韩欧美在线一区| 国产亚洲综合色| 国产精品无码永久免费888| 中文字幕 久热精品 视频在线| 国产欧美一区二区三区鸳鸯浴| 国产亚洲女人久久久久毛片| 国产精品欧美一区二区三区| 国产精品素人视频| 亚洲免费观看高清完整| 亚洲黄色av一区| 喷白浆一区二区| 另类小说图片综合网| 国产成人a级片| 91网上在线视频| 欧美久久久久久久久久| 精品国产免费一区二区三区四区| 久久色中文字幕| 亚洲激情欧美激情| 久久国产日韩欧美精品| 成人v精品蜜桃久久一区| 色老头久久综合| 精品久久久久久久人人人人传媒| 久久精品欧美日韩| 亚洲第一二三四区| 丰满放荡岳乱妇91ww| 欧美性受xxxx黑人xyx| 精品少妇一区二区三区在线视频| 国产精品美女久久久久久久久久久 | 99亚偷拍自图区亚洲| 欧美性受极品xxxx喷水| 精品国产成人系列| 亚洲国产精品麻豆| 国产乱妇无码大片在线观看| 欧美自拍偷拍一区| 久久久91精品国产一区二区精品| 一二三区精品福利视频| 国产激情一区二区三区| 欧美日韩综合在线| 亚洲观看高清完整版在线观看| 婷婷成人激情在线网| 99久久婷婷国产精品综合| 日韩欧美在线123| 一区二区成人在线观看| 成人看片黄a免费看在线| 欧美一区三区四区| 亚洲伊人色欲综合网| 成人高清视频在线| 久久久久一区二区三区四区| 亚洲成人免费影院| 一道本成人在线| 欧美激情自拍偷拍| 国产呦萝稀缺另类资源| 欧美日韩一区二区三区四区| 中文字幕中文字幕一区| 国产经典欧美精品| 久久久天堂av| 久久成人羞羞网站| 日韩一区二区电影网| 亚洲成国产人片在线观看| 91免费看`日韩一区二区| 中文天堂在线一区| 国产91精品一区二区麻豆网站| 日韩欧美激情在线| 免费高清在线视频一区·| 欧美军同video69gay| 一区二区成人在线观看| 欧美中文字幕不卡| 亚洲乱码国产乱码精品精可以看| 99久久久精品免费观看国产蜜| 国产女主播一区| 成人黄色小视频| 欧美高清在线视频| 成人av免费在线| 中文字幕日韩一区| 色综合色综合色综合色综合色综合 | 性久久久久久久久久久久| 欧美性猛交xxxxxxxx| 亚洲成年人影院| 欧美一区二区三区视频在线观看| 丝袜a∨在线一区二区三区不卡| 4438亚洲最大| 韩国欧美国产1区| 久久久久久久久岛国免费| 粉嫩av一区二区三区| 成人欧美一区二区三区1314| 91国偷自产一区二区三区成为亚洲经典| 一区二区三区色| 制服视频三区第一页精品| 毛片不卡一区二区| 国产精品日韩精品欧美在线| av在线一区二区三区| 亚洲gay无套男同| 久久综合久久综合九色| 国产精品一区免费在线观看| 中文字幕中文字幕中文字幕亚洲无线| 国产乱码精品一区二区三| 国产精品麻豆网站| 欧美日韩色一区| 韩国女主播成人在线观看| 国产精品初高中害羞小美女文| 精品视频全国免费看| 紧缚奴在线一区二区三区| 亚洲欧洲日韩女同| 欧美一级生活片| 成人国产电影网| 蜜臀久久久99精品久久久久久| 国产精品私房写真福利视频| 欧美日韩视频在线一区二区| 国产**成人网毛片九色| 日韩影视精彩在线| 国产精品国产自产拍高清av王其| 337p亚洲精品色噜噜| 99久久综合色| 韩日精品视频一区| 日日欢夜夜爽一区| 亚洲女人****多毛耸耸8| 2021久久国产精品不只是精品| 欧美羞羞免费网站| 99视频超级精品| 国产在线观看免费一区| 午夜电影久久久| 亚洲精品第一国产综合野| 久久免费午夜影院| 欧美一区二区女人| 91国产免费观看| www.爱久久.com| 国产成人精品一区二| 久久99九九99精品| 爽好多水快深点欧美视频| 亚洲综合色区另类av| 日韩一区在线看| 中文字幕第一区综合| 久久久精品一品道一区| 欧美成人精品高清在线播放| 欧美高清性hdvideosex| 欧美日韩免费视频| 欧美性极品少妇| 在线区一区二视频| 在线免费观看不卡av| 日本韩国精品在线| 色噜噜狠狠一区二区三区果冻| 99久久精品国产导航| 不卡视频在线看| gogogo免费视频观看亚洲一| 成人黄色电影在线| 成人黄色一级视频| 色一区在线观看| 一本到不卡精品视频在线观看| 91久久久免费一区二区| 色欧美日韩亚洲| 欧美日韩免费一区二区三区视频| 欧美色精品在线视频| 欧美美女视频在线观看| 91精品国产色综合久久不卡电影| 欧美精品一级二级三级| 日韩欧美国产成人一区二区| 精品动漫一区二区三区在线观看| 久久综合九色综合97婷婷女人| 国产日产精品1区| 国产精品伦一区| 亚洲一二三区不卡| 日本欧美一区二区| 国产精品正在播放| aaa欧美大片| 欧美日韩高清不卡| 久久综合色之久久综合| 亚洲三级电影网站| 婷婷综合五月天| 国产精品亚洲成人| 在线视频一区二区三区| 欧美一区二区三区啪啪| 国产视频一区二区三区在线观看| 自拍偷拍国产亚洲| 日本aⅴ免费视频一区二区三区| 国产毛片精品视频| 色综合久久天天| 日韩视频国产视频| 亚洲视频精选在线| 男人的天堂亚洲一区| 波多野结衣中文字幕一区| 欧美老肥妇做.爰bbww| 久久久不卡网国产精品一区| 亚洲精品欧美综合四区| 久草这里只有精品视频| 一本一道久久a久久精品| 日韩欧美综合一区| 一二三四区精品视频| 国产91清纯白嫩初高中在线观看 | 国产精品自拍在线| 欧美视频一区二区三区四区| 久久精品夜夜夜夜久久| 日韩精品乱码av一区二区|