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

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

?? dwc_otg_hcd_queue.c

?? host usb 主設備程序 支持sd卡 mouse keyboard 的最單單的驅動程序 gcc編譯
?? C
?? 第 1 頁 / 共 2 頁
字號:
/* ========================================================================== * $File: //dwh/usb_iip/dev/software/otg_ipmate/linux/drivers/dwc_otg_hcd_queue.c $ * $Revision: 1.1 $ * $Date: 2008/03/31 00:20:10 $ * $Change: 993572 $ * * Synopsys HS OTG Linux Software Driver and documentation (hereinafter, * "Software") is an Unsupported proprietary work of Synopsys, Inc. unless * otherwise expressly agreed to in writing between Synopsys and you. * * The Software IS NOT an item of Licensed Software or Licensed Product under * any End User Software License Agreement or Agreement for Licensed Product * with Synopsys or any supplement thereto. You are permitted to use and * redistribute this Software in source and binary forms, with or without * modification, provided that redistributions of source code must retain this * notice. You may not view, use, disclose, copy or distribute this file or * any information contained herein except pursuant to this license grant from * Synopsys. If you do not agree with this notice, including the disclaimer * below, then you are not authorized to use the Software. * * THIS SOFTWARE IS BEING DISTRIBUTED BY SYNOPSYS SOLELY ON AN "AS IS" BASIS * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE HEREBY DISCLAIMED. IN NO EVENT SHALL SYNOPSYS BE LIABLE FOR ANY DIRECT, * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH * DAMAGE. * ========================================================================== */#ifndef DWC_DEVICE_ONLY/** * @file * * This file contains the functions to manage Queue Heads and Queue * Transfer Descriptors. */#include <linux/kernel.h>#include <linux/module.h>#include <linux/moduleparam.h>#include <linux/init.h>#include <linux/device.h>#include <linux/errno.h>#include <linux/list.h>#include <linux/interrupt.h>#include <linux/string.h>#include <linux/version.h>#include <asm/arch/irqs.h>#include "dwc_otg_driver.h"#include "dwc_otg_hcd.h"#include "dwc_otg_regs.h"/** * This function allocates and initializes a QH. * * @param _hcd The HCD state structure for the DWC OTG controller. * @param[in] _urb Holds the information about the device/endpoint that we need * to initialize the QH. * * @return Returns pointer to the newly allocated QH, or NULL on error. */dwc_otg_qh_t *dwc_otg_hcd_qh_create(dwc_otg_hcd_t * _hcd, struct urb *_urb){	dwc_otg_qh_t *qh;	/* Allocate memory */	/** @todo add memflags argument */	qh = dwc_otg_hcd_qh_alloc();	if (qh == NULL) {		return NULL;	}	dwc_otg_hcd_qh_init(_hcd, qh, _urb);	return qh;}/** Free each QTD in the QH's QTD-list then free the QH.  QH should already be * removed from a list.  QTD list should already be empty if called from URB * Dequeue. * * @param[in] _qh The QH to free. */void dwc_otg_hcd_qh_free(dwc_otg_qh_t * _qh){	dwc_otg_qtd_t *qtd;	struct list_head *pos;	unsigned long flags;	/* Free each QTD in the QTD list */	local_irq_save(flags);	for (pos = _qh->qtd_list.next; pos != &_qh->qtd_list; pos = _qh->qtd_list.next) {		list_del(pos);		qtd = dwc_list_to_qtd(pos);		dwc_otg_hcd_qtd_free(qtd);	}	local_irq_restore(flags);	kfree(_qh);	return;}/** Initializes a QH structure. * * @param[in] _hcd The HCD state structure for the DWC OTG controller. * @param[in] _qh The QH to init. * @param[in] _urb Holds the information about the device/endpoint that we need * to initialize the QH. */#define SCHEDULE_SLOP 10void dwc_otg_hcd_qh_init(dwc_otg_hcd_t * _hcd, dwc_otg_qh_t * _qh, struct urb *_urb){	memset(_qh, 0, sizeof(dwc_otg_qh_t));	/* Initialize QH */	switch (usb_pipetype(_urb->pipe)) {	case PIPE_CONTROL:		_qh->ep_type = USB_ENDPOINT_XFER_CONTROL;		break;	case PIPE_BULK:		_qh->ep_type = USB_ENDPOINT_XFER_BULK;		break;	case PIPE_ISOCHRONOUS:		_qh->ep_type = USB_ENDPOINT_XFER_ISOC;		break;	case PIPE_INTERRUPT:		_qh->ep_type = USB_ENDPOINT_XFER_INT;		break;	}	_qh->ep_is_in = usb_pipein(_urb->pipe) ? 1 : 0;	_qh->data_toggle = DWC_OTG_HC_PID_DATA0;	_qh->maxp = usb_maxpacket(_urb->dev, _urb->pipe, !(usb_pipein(_urb->pipe)));	INIT_LIST_HEAD(&_qh->qtd_list);	INIT_LIST_HEAD(&_qh->qh_list_entry);	_qh->channel = NULL;	/* FS/LS Enpoint on HS Hub	 * NOT virtual root hub */	_qh->do_split = 0;	if (((_urb->dev->speed == USB_SPEED_LOW) ||	     (_urb->dev->speed == USB_SPEED_FULL)) &&	    (_urb->dev->tt) && (_urb->dev->tt->hub->devnum != 1)) {		DWC_DEBUGPL(DBG_HCD, "QH init: EP %d: TT found at hub addr %d, for port %d\n",			    usb_pipeendpoint(_urb->pipe), _urb->dev->tt->hub->devnum,			    _urb->dev->ttport);		_qh->do_split = 1;	}	if (_qh->ep_type == USB_ENDPOINT_XFER_INT || _qh->ep_type == USB_ENDPOINT_XFER_ISOC) {		/* Compute scheduling parameters once and save them. */		hprt0_data_t hprt;		/** @todo Account for split transfers in the bus time. */		int bytecount = dwc_hb_mult(_qh->maxp) * dwc_max_packet(_qh->maxp);		_qh->usecs = usb_calc_bus_time(_urb->dev->speed,					       usb_pipein(_urb->pipe),					       (_qh->ep_type == USB_ENDPOINT_XFER_ISOC), bytecount);		/* Start in a slightly future (micro)frame. */		_qh->sched_frame = dwc_frame_num_inc(_hcd->frame_number, SCHEDULE_SLOP);		_qh->interval = _urb->interval;#if 0		/* Increase interrupt polling rate for debugging. */		if (_qh->ep_type == USB_ENDPOINT_XFER_INT) {			_qh->interval = 8;		}#endif		hprt.d32 = dwc_read_reg32(_hcd->core_if->host_if->hprt0);		if ((hprt.b.prtspd == DWC_HPRT0_PRTSPD_HIGH_SPEED) &&		    ((_urb->dev->speed == USB_SPEED_LOW) || (_urb->dev->speed == USB_SPEED_FULL))) {			_qh->interval *= 8;			_qh->sched_frame |= 0x7;			_qh->start_split_frame = _qh->sched_frame;		}	}	DWC_DEBUGPL(DBG_HCD, "DWC OTG HCD QH Initialized\n");	DWC_DEBUGPL(DBG_HCDV, "DWC OTG HCD QH  - qh = %p\n", _qh);	DWC_DEBUGPL(DBG_HCDV, "DWC OTG HCD QH  - Device Address = %d\n", _urb->dev->devnum);	DWC_DEBUGPL(DBG_HCDV, "DWC OTG HCD QH  - Endpoint %d, %s\n",		    usb_pipeendpoint(_urb->pipe),		    usb_pipein(_urb->pipe) == USB_DIR_IN ? "IN" : "OUT");	DWC_DEBUGPL(DBG_HCDV, "DWC OTG HCD QH  - Speed = %s\n", ( {								 char *speed;								 switch (_urb->dev->speed) {case USB_SPEED_LOW:speed = "low"; break; case USB_SPEED_FULL:speed = "full"; break; case USB_SPEED_HIGH:speed = "high"; break; default:								 speed = "?"; break;};								 speed;}		    ));	DWC_DEBUGPL(DBG_HCDV, "DWC OTG HCD QH  - Type = %s\n", ( {								char *type;								switch (_qh->ep_type) {case USB_ENDPOINT_XFER_ISOC:type = "isochronous"; break; case USB_ENDPOINT_XFER_INT:type = "interrupt"; break; case USB_ENDPOINT_XFER_CONTROL:type = "control"; break; case USB_ENDPOINT_XFER_BULK:type = "bulk"; break; default:								type = "?"; break;};								type;}		    ));#ifdef DEBUG	if (_qh->ep_type == USB_ENDPOINT_XFER_INT) {		DWC_DEBUGPL(DBG_HCDV, "DWC OTG HCD QH - usecs = %d\n", _qh->usecs);		DWC_DEBUGPL(DBG_HCDV, "DWC OTG HCD QH - interval = %d\n", _qh->interval);	}#endif	return;}/** * Checks that a channel is available for a periodic transfer. * * @return 0 if successful, negative error code otherise. */static int periodic_channel_available(dwc_otg_hcd_t * _hcd){	/*	 * Currently assuming that there is a dedicated host channnel for each	 * periodic transaction plus at least one host channel for	 * non-periodic transactions.	 */	int status;	int num_channels;	num_channels = _hcd->core_if->core_params->host_channels;	if ((_hcd->periodic_channels + _hcd->non_periodic_channels < num_channels) &&	    (_hcd->periodic_channels < num_channels - 1)) {		status = 0;	} else {		DWC_NOTICE("%s: Total channels: %d, Periodic: %d, Non-periodic: %d\n",			   __func__, num_channels, _hcd->periodic_channels,			   _hcd->non_periodic_channels);		status = -ENOSPC;	}	return status;}/** * Checks that there is sufficient bandwidth for the specified QH in the * periodic schedule. For simplicity, this calculation assumes that all the * transfers in the periodic schedule may occur in the same (micro)frame. * * @param _hcd The HCD state structure for the DWC OTG controller. * @param _qh QH containing periodic bandwidth required. * * @return 0 if successful, negative error code otherwise. */static int check_periodic_bandwidth(dwc_otg_hcd_t * _hcd, dwc_otg_qh_t * _qh){	int status;	uint16_t max_claimed_usecs;	status = 0;	if (_hcd->core_if->core_params->speed == DWC_SPEED_PARAM_HIGH) {		/*		 * High speed mode.		 * Max periodic usecs is 80% x 125 usec = 100 usec.		 */		max_claimed_usecs = 100 - _qh->usecs;	} else {		/*		 * Full speed mode.		 * Max periodic usecs is 90% x 1000 usec = 900 usec.		 */		max_claimed_usecs = 900 - _qh->usecs;	}	if (_hcd->periodic_usecs > max_claimed_usecs) {		DWC_NOTICE("%s: already claimed usecs %d, required usecs %d\n",			   __func__, _hcd->periodic_usecs, _qh->usecs);		status = -ENOSPC;	}	return status;}/** * Checks that the max transfer size allowed in a host channel is large enough * to handle the maximum data transfer in a single (micro)frame for a periodic * transfer. * * @param _hcd The HCD state structure for the DWC OTG controller. * @param _qh QH for a periodic endpoint. * * @return 0 if successful, negative error code otherwise. */static int check_max_xfer_size(dwc_otg_hcd_t * _hcd, dwc_otg_qh_t * _qh){	int status;	uint32_t max_xfer_size;	uint32_t max_channel_xfer_size;	status = 0;	max_xfer_size = dwc_max_packet(_qh->maxp) * dwc_hb_mult(_qh->maxp);	max_channel_xfer_size = _hcd->core_if->core_params->max_transfer_size;	if (max_xfer_size > max_channel_xfer_size) {		DWC_NOTICE("%s: Periodic xfer length %d > "			   "max xfer length for channel %d\n",			   __func__, max_xfer_size, max_channel_xfer_size);		status = -ENOSPC;	}	return status;}/** * Schedules an interrupt or isochronous transfer in the periodic schedule. * * @param _hcd The HCD state structure for the DWC OTG controller. * @param _qh QH for the periodic transfer. The QH should already contain the * scheduling information. * * @return 0 if successful, negative error code otherwise. */static int schedule_periodic(dwc_otg_hcd_t * _hcd, dwc_otg_qh_t * _qh){	int status = 0;

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日本韩国视频一区二区| 26uuu精品一区二区| 亚洲精品乱码久久久久久| 中文字幕中文在线不卡住| 一区二区三区精品视频在线| 亚洲欧美日韩人成在线播放| 午夜国产不卡在线观看视频| 亚洲欧美日韩系列| 日日骚欧美日韩| 成人爽a毛片一区二区免费| 一本色道久久综合亚洲精品按摩| 国产一区二区毛片| 亚洲国产中文字幕在线视频综合| 久久久亚洲精品一区二区三区| 欧美妇女性影城| 国产区在线观看成人精品| 欧美一级片在线看| 中文字幕制服丝袜成人av| 亚洲第一在线综合网站| 国产成人午夜视频| 欧美手机在线视频| 国产精品久久久久影院老司| 亚洲成人免费看| 丰满放荡岳乱妇91ww| 欧美老女人在线| 国产精品福利在线播放| 美女国产一区二区三区| 在线观看91精品国产入口| 久久久久国产精品麻豆| 亚洲国产欧美在线| 粉嫩欧美一区二区三区高清影视 | 久久久电影一区二区三区| 日韩伦理电影网| 韩国av一区二区三区在线观看| 亚洲综合丁香婷婷六月香| 国内精品久久久久影院一蜜桃| 久久99日本精品| 日韩av在线发布| 欧美色视频一区| 久久一夜天堂av一区二区三区| 久久久青草青青国产亚洲免观| 久久久国产精品不卡| 一区二区三区中文字幕精品精品 | 日韩国产一区二| 色综合久久久网| 日韩三级视频在线观看| 一区二区不卡在线播放| 色综合中文字幕国产| 亚洲精品在线电影| 日韩电影在线免费看| 美腿丝袜亚洲三区| 欧美精品在线观看一区二区| 中文字幕视频一区二区三区久| 亚洲免费观看高清在线观看| 亚洲国产人成综合网站| 六月丁香婷婷色狠狠久久| 欧美日韩电影一区| 日av在线不卡| 国产欧美精品日韩区二区麻豆天美| 午夜精品久久久久久久久| 成人国产在线观看| 精品国产凹凸成av人网站| 精品一区二区三区香蕉蜜桃 | 亚洲人成网站色在线观看| 91麻豆免费视频| 青青草伊人久久| 中文字幕av资源一区| 日本乱人伦aⅴ精品| 日韩av午夜在线观看| 国产日韩影视精品| 欧美日韩国产小视频| 国产成人aaaa| 亚洲狠狠爱一区二区三区| 欧美精品一区二区三区很污很色的| 亚洲主播在线观看| 91电影在线观看| 九九精品一区二区| 精品久久久久久久人人人人传媒| 天天亚洲美女在线视频| 久久免费电影网| 国产一区二区三区综合| 日韩免费一区二区三区在线播放| 日韩和欧美一区二区| 中文字幕精品一区二区精品绿巨人| 国产美女娇喘av呻吟久久| 欧美xingq一区二区| 色综合久久天天| 国产精品99精品久久免费| 午夜精品aaa| 亚洲日本欧美天堂| 久久精品一级爱片| 日韩一区二区中文字幕| 色婷婷激情综合| 亚洲一区二区五区| 国产精品久久久久久久岛一牛影视 | 日韩福利电影在线| 亚洲色图视频网| 欧美性猛片aaaaaaa做受| 一区二区三区在线免费视频| 欧美私人免费视频| 91在线观看免费视频| 国产麻豆视频一区| 美女爽到高潮91| 久久夜色精品一区| 99视频在线观看一区三区| 九色porny丨国产精品| 性做久久久久久免费观看| 日韩欧美国产小视频| 欧美最猛性xxxxx直播| 99re热这里只有精品视频| 亚洲午夜三级在线| 亚洲欧美国产高清| 亚洲精品免费一二三区| 国产精品日产欧美久久久久| 色婷婷精品大视频在线蜜桃视频| 日本欧美一区二区| 亚欧色一区w666天堂| 性做久久久久久久免费看| 亚洲a一区二区| 日韩电影免费在线观看网站| 亚洲成a人在线观看| 三级在线观看一区二区| 国产色综合一区| 久久蜜桃av一区二区天堂| 精品国产乱码久久久久久久久| 99久久er热在这里只有精品15| 亚洲chinese男男1069| 日本一区免费视频| 欧美伊人精品成人久久综合97 | 国产一区999| 国产美女精品在线| 成人精品视频一区二区三区尤物| 亚洲国产成人91porn| 日韩福利电影在线观看| 久久国产视频网| 国产成人99久久亚洲综合精品| 奇米综合一区二区三区精品视频| 国产精品视频在线看| 亚洲日本免费电影| 午夜在线成人av| 久久精品国产亚洲一区二区三区| 亚洲另类春色国产| 五月婷婷久久综合| 久久99国产精品尤物| 国产成人免费在线视频| 色婷婷国产精品| 69p69国产精品| 国产亚洲成aⅴ人片在线观看| 日韩一区二区视频在线观看| 精品久久久久99| 国产精品日日摸夜夜摸av| 久久久久久综合| 亚洲综合在线电影| 麻豆专区一区二区三区四区五区| 午夜一区二区三区在线观看| 麻豆91精品91久久久的内涵| 风间由美中文字幕在线看视频国产欧美| 免费观看日韩av| 日韩精品欧美成人高清一区二区| 亚洲免费观看视频| 久久99这里只有精品| 色婷婷精品久久二区二区蜜臀av| av高清不卡在线| 日韩欧美色综合| 亚洲精品日韩专区silk| 麻豆国产精品777777在线| 美女在线视频一区| 色综合久久中文字幕综合网| 一本一道久久a久久精品综合蜜臀| 成人免费视频caoporn| 91精品欧美一区二区三区综合在 | 亚洲成av人影院| 午夜精品福利一区二区蜜股av| 夜夜爽夜夜爽精品视频| 亚洲精品国产无套在线观| 国产乱码精品一品二品| 91精品国产综合久久婷婷香蕉| 欧美浪妇xxxx高跟鞋交| 综合色天天鬼久久鬼色| 国产乱一区二区| 欧美一区二区三区啪啪| 亚洲成人在线免费| caoporm超碰国产精品| 久久久久久久网| 免费成人av在线| 在线不卡的av| 亚洲线精品一区二区三区八戒| 天堂精品中文字幕在线| 色婷婷国产精品久久包臀| 中文字幕在线免费不卡| 国产精品一品视频| 精品电影一区二区三区| 青青国产91久久久久久| 91精品国产综合久久精品app| 精品剧情在线观看| 日本欧美一区二区三区| 欧美一区二区成人6969| 午夜精品久久久久久久久久久 | 成人美女视频在线观看18| 久久亚洲二区三区|