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

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

?? ehci-q.c

?? 硬實時linux補丁rtai下usb協議棧
?? C
?? 第 1 頁 / 共 2 頁
字號:
		if ((maxpacket & (this_qtd_len + (maxpacket - 1))) == 0)			token ^= QTD_TOGGLE;		if (likely (len <= 0))			break;		qtd_prev = qtd;		qtd = ehci_qtd_alloc (ehci);		if (unlikely (!qtd))			goto cleanup;		qtd->urb = urb;		qtd_prev->hw_next = QTD_NEXT (qtd->qtd_dma);		list_add_tail (&qtd->qtd_list, head);	}	/* unless the bulk/interrupt caller wants a chance to clean	 * up after short reads, hc should advance qh past this urb	 */	if (likely ((urb->transfer_flags & RTDM_URB_SHORT_NOT_OK) == 0		   || rtdm_usb_pipecontrol (urb->pipe)))		qtd->hw_alt_next = EHCI_LIST_END;	/*	 * control requests may need a terminating data "status" ack;	 * bulk ones may need a terminating short packet (zero length).	 */	if (likely (buf != 0)) {		int	one_more = 0;		if (rtdm_usb_pipecontrol (urb->pipe)) {			one_more = 1;			token ^= 0x0100;	/* "in" <--> "out"  */			token |= QTD_TOGGLE;	/* force DATA1 */		} else if (rtdm_usb_pipebulk (urb->pipe)						 && (urb->transfer_flags & RTDM_URB_ZERO_PACKET)				&& !(urb->transfer_buffer_length % maxpacket)) {			one_more = 1;		}		if (one_more) {			qtd_prev = qtd;			qtd = ehci_qtd_alloc (ehci);			if (unlikely (!qtd))				goto cleanup;			qtd->urb = urb;			qtd_prev->hw_next = QTD_NEXT (qtd->qtd_dma);			list_add_tail (&qtd->qtd_list, head);			/* never any data in such packets */			qtd_fill (qtd, 0, 0, token, 0);		}	}	/* by default, enable interrupt on urb completion */	if (likely (!(urb->transfer_flags & RTDM_URB_NO_INTERRUPT)))		qtd->hw_token |= __constant_cpu_to_le32 (QTD_IOC);	return head;cleanup:	qtd_list_free (ehci, urb, head);	return NULL;}/*-------------------------------------------------------------------------*/// Would be best to create all qh's from config descriptors,// when each interface/altsetting is established.  Unlink// any previous qh and cancel its urbs first; endpoints are// implicitly reset then (data toggle too).// That'd mean updating how usbcore talks to HCDs. (2.7?)/* * Each QH holds a qtd list; a QH is used for everything except iso. * * For interrupt urbs, the scheduler must set the microframe scheduling * mask(s) each time the QH gets scheduled.  For highspeed, that's * just one microframe in the s-mask.  For split interrupt transactions * there are additional complications: c-mask, maybe FSTNs. */static struct ehci_qh *qh_make (	struct ehci_hcd		*ehci,	struct rtdm_urb		*urb) {	struct ehci_qh		*qh = ehci_qh_alloc (ehci);	u32			info1 = 0, info2 = 0;	int			is_input, type;	int			maxp = 0;	if (!qh)		return qh;	/*	 * init endpoint/device data for this QH	 */	info1 |= rtdm_usb_pipeendpoint (urb->pipe) << 8;	info1 |= rtdm_usb_pipedevice (urb->pipe) << 0;	is_input = rtdm_usb_pipein (urb->pipe);	type = rtdm_usb_pipetype (urb->pipe);	maxp = rtdm_usb_maxpacket (urb->dev, urb->pipe, !is_input);	/* Compute interrupt scheduling parameters just once, and save.	 * - allowing for high bandwidth, how many nsec/uframe are used?	 * - split transactions need a second CSPLIT uframe; same question	 * - splits also need a schedule gap (for full/low speed I/O)	 * - qh has a polling interval	 *	 * For control/bulk requests, the HC or TT handles these.	 */	if (type == RTDM_PIPE_INTERRUPT) {		qh->usecs = NS_TO_US (rtdm_usb_calc_bus_time (USB_SPEED_HIGH, is_input, 0,				hb_mult (maxp) * max_packet (maxp)));		qh->start = NO_FRAME;		if (urb->dev->speed == USB_SPEED_HIGH) {			qh->c_usecs = 0;			qh->gap_uf = 0;			qh->period = urb->interval >> 3;			if (qh->period == 0 && urb->interval != 1) {				/* NOTE interval 2 or 4 uframes could work.				 * But interval 1 scheduling is simpler, and				 * includes high bandwidth.				 */				dbg ("intr period %d uframes, NYET!",						urb->interval);				goto done;			}		} else {			struct rtdm_usb_tt	*tt = urb->dev->tt;			int		think_time;			/* gap is f(FS/LS transfer times) */			qh->gap_uf = 1 + rtdm_usb_calc_bus_time (urb->dev->speed,					is_input, 0, maxp) / (125 * 1000);			/* FIXME this just approximates SPLIT/CSPLIT times */			if (is_input) {		// SPLIT, gap, CSPLIT+DATA				qh->c_usecs = qh->usecs + HS_USECS (0);				qh->usecs = HS_USECS (1);			} else {		// SPLIT+DATA, gap, CSPLIT				qh->usecs += HS_USECS (1);				qh->c_usecs = HS_USECS (0);			}			think_time = tt ? tt->think_time : 0;			qh->tt_usecs = NS_TO_US (think_time +					rtdm_usb_calc_bus_time (urb->dev->speed,					is_input, 0, max_packet (maxp)));			qh->period = urb->interval;		}	}	/* support for tt scheduling, and access to toggles */	qh->dev = rtdm_usb_get_dev (urb->dev);	/* using TT? */	switch (urb->dev->speed) {	case USB_SPEED_LOW:		info1 |= (1 << 12);	/* EPS "low" */		/* FALL THROUGH */	case USB_SPEED_FULL:		/* EPS 0 means "full" */		if (type != RTDM_PIPE_INTERRUPT)			info1 |= (EHCI_TUNE_RL_TT << 28);		if (type == RTDM_PIPE_CONTROL) {			info1 |= (1 << 27);	/* for TT */			info1 |= 1 << 14;	/* toggle from qtd */		}		info1 |= maxp << 16;		info2 |= (EHCI_TUNE_MULT_TT << 30);		info2 |= urb->dev->ttport << 23;		/* set the address of the TT; for TDI's integrated		 * root hub tt, leave it zeroed.		 */		if (!ehci_is_TDI(ehci)				|| urb->dev->tt->hub !=					ehci_to_hcd(ehci)->self.root_hub)			info2 |= urb->dev->tt->hub->devnum << 16;		/* NOTE:  if (PIPE_INTERRUPT) { scheduler sets c-mask } */		break;	case USB_SPEED_HIGH:		/* no TT involved */		info1 |= (2 << 12);	/* EPS "high" */		if (type == RTDM_PIPE_CONTROL) {			info1 |= (EHCI_TUNE_RL_HS << 28);			info1 |= 64 << 16;	/* usb2 fixed maxpacket */			info1 |= 1 << 14;	/* toggle from qtd */			info2 |= (EHCI_TUNE_MULT_HS << 30);		} else if (type == RTDM_PIPE_BULK) {			info1 |= (EHCI_TUNE_RL_HS << 28);			info1 |= 512 << 16;	/* usb2 fixed maxpacket */			info2 |= (EHCI_TUNE_MULT_HS << 30);		} else {		/* PIPE_INTERRUPT */			info1 |= max_packet (maxp) << 16;			info2 |= hb_mult (maxp) << 30;		}		break;	default: 		dbg("bogus dev %p speed %d", urb->dev, urb->dev->speed);done:		qh_put (qh);		return NULL;	}	/* NOTE:  if (PIPE_INTERRUPT) { scheduler sets s-mask } */	/* init as live, toggle clear, advance to dummy */	qh->qh_state = QH_STATE_IDLE;	qh->hw_info1 = cpu_to_le32 (info1);	qh->hw_info2 = cpu_to_le32 (info2);	rtdm_usb_settoggle (urb->dev, rtdm_usb_pipeendpoint (urb->pipe), !is_input, 1);	qh_refresh (ehci, qh);	return qh;}/*-------------------------------------------------------------------------*//* move qh (and its qtds) onto async queue; maybe enable queue.  */static void qh_link_async (struct ehci_hcd *ehci, struct ehci_qh *qh){	__le32		dma = QH_NEXT (qh->qh_dma);	struct ehci_qh	*head;	/* (re)start the async schedule? */	head = ehci->async;	timer_action_done (ehci, TIMER_ASYNC_OFF);	if (!head->qh_next.qh) {		u32	cmd = readl (&ehci->regs->command);		if (!(cmd & CMD_ASE)) {			/* in case a clear of CMD_ASE didn't take yet */			(void) handshake (&ehci->regs->status, STS_ASS, 0, 150);			cmd |= CMD_ASE | CMD_RUN;			writel (cmd, &ehci->regs->command);			ehci_to_hcd(ehci)->state = HC_STATE_RUNNING;			/* posted write need not be known to HC yet ... */		}	}	/* clear halt and/or toggle; and maybe recover from silicon quirk */	if (qh->qh_state == QH_STATE_IDLE)		qh_refresh (ehci, qh);	/* splice right after start */	qh->qh_next = head->qh_next;	qh->hw_next = head->hw_next;	wmb ();	head->qh_next.qh = qh;	head->hw_next = dma;	qh->qh_state = QH_STATE_LINKED;	/* qtd completions reported later by interrupt */}/*-------------------------------------------------------------------------*/#define	QH_ADDR_MASK	__constant_cpu_to_le32(0x7f)/* * For control/bulk/interrupt, return QH with these TDs appended. * Allocates and initializes the QH if necessary. * Returns null if it can't allocate a QH it needs to. * If the QH has TDs (urbs) already, that's great. */static struct ehci_qh *qh_append_tds (	struct ehci_hcd		*ehci,	struct rtdm_urb		*urb,	struct list_head	*qtd_list,	int			epnum,	void			**ptr){	struct ehci_qh		*qh = NULL;	qh = (struct ehci_qh *) *ptr;	if (unlikely (qh == NULL)) {		/* can't sleep here, we have ehci->lock... */		qh = qh_make (ehci, urb/*, GFP_ATOMIC*/);		*ptr = qh;	}	if (likely (qh != NULL)) {		struct ehci_qtd	*qtd;		if (unlikely (list_empty (qtd_list)))			qtd = NULL;		else			qtd = list_entry (qtd_list->next, struct ehci_qtd,					qtd_list);		/* control qh may need patching ... */		if (unlikely (epnum == 0)) {                        /* usb_reset_device() briefly reverts to address 0 */			if (rtdm_usb_pipedevice (urb->pipe) == 0)                                qh->hw_info1 &= ~QH_ADDR_MASK;		}		/* just one way to queue requests: swap with the dummy qtd.		 * only hc or qh_refresh() ever modify the overlay.		 */		if (likely (qtd != NULL)) {			struct ehci_qtd		*dummy;			dma_addr_t		dma;			__le32			token;			/* to avoid racing the HC, use the dummy td instead of			 * the first td of our list (becomes new dummy).  both			 * tds stay deactivated until we're done, when the			 * HC is allowed to fetch the old dummy (4.10.2).			 */			token = qtd->hw_token;			qtd->hw_token = HALT_BIT;			wmb ();			dummy = qh->dummy;			dma = dummy->qtd_dma;			*dummy = *qtd;			dummy->qtd_dma = dma;			list_del (&qtd->qtd_list);			list_add (&dummy->qtd_list, qtd_list);			__list_splice (qtd_list, qh->qtd_list.prev);			ehci_qtd_init (qtd, qtd->qtd_dma);			qh->dummy = qtd;			/* hc must see the new dummy at list end */			dma = qtd->qtd_dma;			qtd = list_entry (qh->qtd_list.prev,					struct ehci_qtd, qtd_list);			qtd->hw_next = QTD_NEXT (dma);			/* let the hc process these next qtds */			wmb ();			dummy->hw_token = token;			urb->hcpriv = qh_get (qh);		}	}	return qh;}/*-------------------------------------------------------------------------*/static intsubmit_async (	struct ehci_hcd		*ehci,	struct rtdm_usb_host_endpoint *ep,	struct rtdm_urb		*urb,	struct list_head	*qtd_list//,) {	struct ehci_qtd		*qtd;	int			epnum;	unsigned long		context;	struct ehci_qh		*qh = NULL;	qtd = list_entry (qtd_list->next, struct ehci_qtd, qtd_list);	epnum = ep->desc.bEndpointAddress;#ifdef EHCI_URB_TRACE	ehci_dbg (ehci,		"%s %s urb %p ep%d%s len %d, qtd %p [qh %p]\n",		__FUNCTION__, urb->dev->devpath, urb,		epnum & 0x0f, (epnum & USB_DIR_IN) ? "in" : "out",		urb->transfer_buffer_length,		qtd, ep->hcpriv);#endif	rtdm_lock_get_irqsave(&ehci->rt_lock, context);	qh = qh_append_tds (ehci, urb, qtd_list, epnum, &ep->hcpriv);	/* Control/bulk operations through TTs don't need scheduling,	 * the HC and TT handle it when the TT has a buffer ready.	 */	if (likely (qh != NULL)) {		if (likely (qh->qh_state == QH_STATE_IDLE))			qh_link_async (ehci, qh_get (qh));	}	rtdm_lock_put_irqrestore(&ehci->rt_lock, context);	if (unlikely (qh == NULL)) {		qtd_list_free (ehci, urb, qtd_list);		return -ENOMEM;	}	return 0;}/*-------------------------------------------------------------------------*//* the async qh for the qtds being reclaimed are now unlinked from the HC */static void end_unlink_async (struct ehci_hcd *ehci){	struct ehci_qh		*qh = ehci->reclaim;	struct ehci_qh		*next;	timer_action_done (ehci, TIMER_IAA_WATCHDOG);	// qh->hw_next = cpu_to_le32 (qh->qh_dma);	qh->qh_state = QH_STATE_IDLE;	qh->qh_next.qh = NULL;	qh_put (qh);			// refcount from reclaim 	/* other unlink(s) may be pending (in QH_STATE_UNLINK_WAIT) */	next = qh->reclaim;	ehci->reclaim = next;	ehci->reclaim_ready = 0;	qh->reclaim = NULL;	qh_completions (ehci, qh);	if (!list_empty (&qh->qtd_list)			&& HC_IS_RUNNING (ehci_to_hcd(ehci)->state))		qh_link_async (ehci, qh);	else {		qh_put (qh);		// refcount from async list		/* it's not free to turn the async schedule on/off; leave it		 * active but idle for a while once it empties.		 */		if (HC_IS_RUNNING (ehci_to_hcd(ehci)->state)				&& ehci->async->qh_next.qh == NULL)			timer_action (ehci, TIMER_ASYNC_OFF);	}	if (next) {		ehci->reclaim = NULL;		start_unlink_async (ehci, next);	}}/* makes sure the async qh will become idle *//* caller must own ehci->lock */static void start_unlink_async (struct ehci_hcd *ehci, struct ehci_qh *qh){	int		cmd = readl (&ehci->regs->command);	struct ehci_qh	*prev;#ifdef DEBUG	if (ehci->reclaim			|| (qh->qh_state != QH_STATE_LINKED				&& qh->qh_state != QH_STATE_UNLINK_WAIT)			)		BUG ();#endif	/* stop async schedule right now? */	if (unlikely (qh == ehci->async)) {		/* can't get here without STS_ASS set */		if (ehci_to_hcd(ehci)->state != HC_STATE_HALT) {			writel (cmd & ~CMD_ASE, &ehci->regs->command);			wmb ();			// handshake later, if we need to		}		timer_action_done (ehci, TIMER_ASYNC_OFF);		return;	} 	qh->qh_state = QH_STATE_UNLINK;	ehci->reclaim = qh = qh_get (qh);	prev = ehci->async;	while (prev->qh_next.qh != qh)		prev = prev->qh_next.qh;	prev->hw_next = qh->hw_next;	prev->qh_next = qh->qh_next;	wmb ();	if (unlikely (ehci_to_hcd(ehci)->state == HC_STATE_HALT)) {		/* if (unlikely (qh->reclaim != 0))		 * 	this will recurse, probably not much		 */		end_unlink_async (ehci);		return;	}	ehci->reclaim_ready = 0;	cmd |= CMD_IAAD;	writel (cmd, &ehci->regs->command);	(void) readl (&ehci->regs->command);	timer_action (ehci, TIMER_IAA_WATCHDOG);}/*-------------------------------------------------------------------------*/static voidscan_async (struct ehci_hcd *ehci){	struct ehci_qh		*qh;	enum ehci_timer_action	action = TIMER_IO_WATCHDOG;	if (!++(ehci->stamp))		ehci->stamp++;	timer_action_done (ehci, TIMER_ASYNC_SHRINK);rescan:	qh = ehci->async->qh_next.qh;	if (likely (qh != NULL)) {		do {			/* clean any finished work for this qh */			if (!list_empty (&qh->qtd_list)					&& qh->stamp != ehci->stamp) {				int temp;				/* unlinks could happen here; completion				 * reporting drops the lock.  rescan using				 * the latest schedule, but don't rescan				 * qhs we already finished (no looping).				 */				qh = qh_get (qh);				qh->stamp = ehci->stamp;				temp = qh_completions (ehci, qh);				qh_put (qh);				if (temp != 0) {					goto rescan;				}			}			/* unlink idle entries, reducing HC PCI usage as well			 * as HCD schedule-scanning costs.  delay for any qh			 * we just scanned, there's a not-unusual case that it			 * doesn't stay idle for long.			 * (plus, avoids some kind of re-activation race.)			 */			if (list_empty (&qh->qtd_list)) {				if (qh->stamp == ehci->stamp)					action = TIMER_ASYNC_SHRINK;				else if (!ehci->reclaim					    && qh->qh_state == QH_STATE_LINKED)					start_unlink_async (ehci, qh);			}			qh = qh->qh_next.qh;		} while (qh);	}	if (action == TIMER_ASYNC_SHRINK)		timer_action (ehci, TIMER_ASYNC_SHRINK);}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产一区二区视频在线播放| 欧美一二三在线| 色婷婷综合久久久久中文| 一区二区三区四区中文字幕| 欧美v亚洲v综合ⅴ国产v| 欧美成人艳星乳罩| 精品一区二区三区免费播放| 亚洲欧美另类图片小说| 综合电影一区二区三区| 欧美在线免费视屏| 91免费在线看| 久久国产精品72免费观看| 日本不卡中文字幕| 精品一区二区三区不卡| 久久精品国产成人一区二区三区 | 日韩精品影音先锋| 日韩美女视频一区二区在线观看| 日韩精品中午字幕| 久久综合成人精品亚洲另类欧美 | 久久久久久影视| 国产视频亚洲色图| 亚洲人成网站影音先锋播放| 樱桃视频在线观看一区| 首页国产欧美日韩丝袜| 韩国女主播成人在线观看| 国产精品中文欧美| 色综合中文字幕国产| 一本大道久久a久久精二百| 在线观看91视频| 日韩限制级电影在线观看| 久久久久国产成人精品亚洲午夜| 国产精品高潮呻吟| 亚洲电影一级片| 紧缚奴在线一区二区三区| 风间由美中文字幕在线看视频国产欧美| 99久久er热在这里只有精品66| 在线精品国精品国产尤物884a| 欧美一区二区在线观看| 国产日产欧产精品推荐色| 亚洲精品写真福利| 麻豆国产一区二区| 99久久er热在这里只有精品66| 7777精品伊人久久久大香线蕉| 久久久亚洲国产美女国产盗摄| 亚洲三级电影全部在线观看高清| 日本一道高清亚洲日美韩| 国产a级毛片一区| 欧美日韩精品专区| 国产农村妇女毛片精品久久麻豆 | 日韩av成人高清| 成人在线综合网| 欧美人妇做爰xxxⅹ性高电影| 久久久午夜精品| 天涯成人国产亚洲精品一区av| 国产一区二区精品久久99| 色999日韩国产欧美一区二区| 精品三级在线观看| 一区二区激情视频| 国产成人亚洲综合a∨猫咪| 欧美日本韩国一区| 中文字幕一区免费在线观看| 日本在线观看不卡视频| 97久久超碰国产精品电影| 欧美大片在线观看一区二区| 亚洲精品高清在线观看| 国产伦精品一区二区三区免费 | 欧美亚洲一区三区| 久久久精品tv| 免播放器亚洲一区| 欧美中文一区二区三区| 国产欧美日韩另类一区| 毛片一区二区三区| 欧美精品一卡两卡| 亚洲人亚洲人成电影网站色| 国产一区视频导航| 欧美一区二区高清| 亚洲综合久久久| 99国产精品国产精品毛片| 欧美高清视频一二三区| 青青草一区二区三区| 亚洲人成网站影音先锋播放| 欧美日韩激情一区二区| 高清不卡一二三区| 日韩欧美123| 亚洲一线二线三线视频| 26uuu欧美| 欧美日韩国产在线播放网站| 亚洲一区在线看| 日韩一区二区三区在线观看| 91丨porny丨户外露出| 亚洲一区二区精品3399| 欧美午夜精品免费| 91香蕉视频mp4| 久久久久久夜精品精品免费| 蜜臀av一区二区三区| 欧美精品九九99久久| 亚洲一二三专区| 欧美性极品少妇| 亚洲一卡二卡三卡四卡无卡久久| 91亚洲精品乱码久久久久久蜜桃| 国产农村妇女毛片精品久久麻豆| 国产成a人亚洲| 国产视频一区在线观看| 国产不卡视频在线播放| 亚洲国产精品高清| 大胆亚洲人体视频| 国产精品精品国产色婷婷| 不卡一区二区三区四区| ...中文天堂在线一区| 91亚洲精品一区二区乱码| 一区二区三区免费在线观看| 在线欧美一区二区| 午夜精品久久久久久久| 91精品久久久久久蜜臀| 蜜臀av一区二区在线免费观看| 精品sm捆绑视频| 国产成人av影院| 国产精品成人在线观看| 99国产精品久久久久| 亚洲国产精品久久久男人的天堂| 欧美视频三区在线播放| 视频在线观看一区| 精品久久久影院| 成人午夜在线视频| 日韩理论片在线| 欧美日韩在线亚洲一区蜜芽| 日韩精品电影在线| 久久久综合精品| 波多野结衣中文字幕一区| 一区二区三区日韩精品| 日韩一区二区免费在线电影| 国产一区二区三区在线看麻豆| 中文无字幕一区二区三区 | eeuss鲁片一区二区三区在线看| 国产精品美日韩| 欧美无砖专区一中文字| 精品一区二区三区在线视频| 国产精品三级在线观看| 欧美日韩国产片| 国产一区二区三区免费| 中文字幕字幕中文在线中不卡视频| 在线视频一区二区三| 美女网站在线免费欧美精品| 国产精品国产三级国产有无不卡| 欧美日韩在线电影| 国产在线精品一区在线观看麻豆| 中文字幕在线观看不卡| 91精品视频网| 成人午夜免费av| 午夜精品久久久久久久99水蜜桃| 国产亚洲精品久| 欧美精品v国产精品v日韩精品| 国产精品自在欧美一区| 夜夜嗨av一区二区三区四季av| 精品国产乱码久久久久久久久| 91丨porny丨首页| 国产综合色视频| 亚洲一二三专区| 国产精品成人一区二区艾草| 欧美一区二区三区四区高清| 成人黄色大片在线观看| 日韩av在线免费观看不卡| 亚洲三级小视频| 精品国产免费人成电影在线观看四季| 日本韩国视频一区二区| 成人午夜激情影院| 美女精品自拍一二三四| 亚洲一二三四区| 亚洲国产精品ⅴa在线观看| 欧美一区二区三区男人的天堂| 91一区在线观看| 国产69精品一区二区亚洲孕妇| 日韩中文字幕麻豆| 一区二区三区蜜桃| 国产精品入口麻豆原神| 日韩免费性生活视频播放| 色综合色综合色综合色综合色综合| 91久久免费观看| 亚洲免费观看在线视频| 日本视频在线一区| 欧美在线不卡视频| 中文av一区特黄| 国产成人综合亚洲91猫咪| 日本乱人伦aⅴ精品| 一区二区三区资源| 韩国三级中文字幕hd久久精品| 在线欧美日韩精品| 91亚洲午夜精品久久久久久| 一区二区不卡在线视频 午夜欧美不卡在| 91亚洲午夜精品久久久久久| 亚洲国产综合91精品麻豆| 日韩一区日韩二区| 亚洲欧美日韩国产综合| 精品奇米国产一区二区三区| 337p亚洲精品色噜噜| 欧美日韩国产在线观看| 欧美日韩国产一二三| 在线精品视频免费观看| 欧美亚一区二区| 欧美在线综合视频|