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

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

?? dwc_otg_regs.h

?? host usb 主設備程序 支持sd卡 mouse keyboard 的最單單的驅動程序 gcc編譯
?? H
?? 第 1 頁 / 共 4 頁
字號:
/* ========================================================================== * * 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_OTG_REGS_H__#define __DWC_OTG_REGS_H__/** * @file * * This file contains the data structures for accessing the DWC_otg core registers. * * The application interfaces with the HS OTG core by reading from and * writing to the Control and Status Register (CSR) space through the * AHB Slave interface. These registers are 32 bits wide, and the * addresses are 32-bit-block aligned. * CSRs are classified as follows: * - Core Global Registers * - Device Mode Registers * - Device Global Registers * - Device Endpoint Specific Registers * - Host Mode Registers * - Host Global Registers * - Host Port CSRs * - Host Channel Specific Registers * * Only the Core Global registers can be accessed in both Device and * Host modes. When the HS OTG core is operating in one mode, either * Device or Host, the application must not access registers from the * other mode. When the core switches from one mode to another, the * registers in the new mode of operation must be reprogrammed as they * would be after a power-on reset. *//****************************************************************************//** DWC_otg Core registers . * The dwc_otg_core_global_regs structure defines the size * and relative field offsets for the Core Global registers. */typedef struct dwc_otg_core_global_regs {	/** OTG Control and Status Register.	<i>Offset: 000h</i> */	volatile uint32_t gotgctl;	/** OTG Interrupt Register.		<i>Offset: 004h</i> */	volatile uint32_t gotgint;	/**Core AHB Configuration Register.	<i>Offset: 008h</i> */	volatile uint32_t gahbcfg;#define DWC_GLBINTRMASK		0x0001#define DWC_DMAENABLE		0x0020#define DWC_NPTXEMPTYLVL_EMPTY	0x0080#define DWC_NPTXEMPTYLVL_HALFEMPTY	0x0000#define DWC_PTXEMPTYLVL_EMPTY	0x0100#define DWC_PTXEMPTYLVL_HALFEMPTY	0x0000	/**Core USB Configuration Register.	 <i>Offset: 00Ch</i> */	volatile uint32_t gusbcfg;	/**Core Reset Register.	 <i>Offset: 010h</i> */	volatile uint32_t grstctl;	/**Core Interrupt Register.	 <i>Offset: 014h</i> */	volatile uint32_t gintsts;	/**Core Interrupt Mask Register.  <i>Offset: 018h</i> */	volatile uint32_t gintmsk;	/**Receive Status Queue Read Register (Read Only).	<i>Offset: 01Ch</i> */	volatile uint32_t grxstsr;	/**Receive Status Queue Read & POP Register (Read Only).  <i>Offset: 020h</i>*/	volatile uint32_t grxstsp;	/**Receive FIFO Size Register.	<i>Offset: 024h</i> */	volatile uint32_t grxfsiz;	/**Non Periodic Transmit FIFO Size Register.  <i>Offset: 028h</i> */	volatile uint32_t gnptxfsiz;	/**Non Periodic Transmit FIFO/Queue Status Register (Read	 * Only). <i>Offset: 02Ch</i> */	volatile uint32_t gnptxsts;	/**I2C Access Register.	 <i>Offset: 030h</i> */	volatile uint32_t gi2cctl;	/**PHY Vendor Control Register.	 <i>Offset: 034h</i> */	volatile uint32_t gpvndctl;	/**General Purpose Input/Output Register.  <i>Offset: 038h</i> */	volatile uint32_t ggpio;	/**User ID Register.  <i>Offset: 03Ch</i> */	volatile uint32_t guid;	/**Synopsys ID Register (Read Only).  <i>Offset: 040h</i> */	volatile uint32_t gsnpsid;	/**User HW Config1 Register (Read Only).  <i>Offset: 044h</i> */	volatile uint32_t ghwcfg1;	/**User HW Config2 Register (Read Only).  <i>Offset: 048h</i> */	volatile uint32_t ghwcfg2;#define DWC_SLAVE_ONLY_ARCH	0#define DWC_EXT_DMA_ARCH	1#define DWC_INT_DMA_ARCH	2#define DWC_MODE_HNP_SRP_CAPABLE	0#define DWC_MODE_SRP_ONLY_CAPABLE	1#define DWC_MODE_NO_HNP_SRP_CAPABLE	2#define DWC_MODE_SRP_CAPABLE_DEVICE	3#define DWC_MODE_NO_SRP_CAPABLE_DEVICE	4#define DWC_MODE_SRP_CAPABLE_HOST	5#define DWC_MODE_NO_SRP_CAPABLE_HOST	6	/**User HW Config3 Register (Read Only).  <i>Offset: 04Ch</i> */	volatile uint32_t ghwcfg3;	/**User HW Config4 Register (Read Only).  <i>Offset: 050h</i>*/	volatile uint32_t ghwcfg4;	/** Reserved  <i>Offset: 054h-0FFh</i> */	volatile uint32_t reserved[43];	/** Host Periodic Transmit FIFO Size Register. <i>Offset: 100h</i> */	volatile uint32_t hptxfsiz;	/** Device Periodic Transmit FIFO#n Register if dedicated fifos are disabled,		otherwise Device Transmit FIFO#n Register.	 * <i>Offset: 104h + (FIFO_Number-1)*04h, 1 <= FIFO Number <= 15 (1<=n<=15).</i> */	volatile uint32_t dptxfsiz_dieptxf[15];} dwc_otg_core_global_regs_t;/** * This union represents the bit fields of the Core OTG Control * and Status Register (GOTGCTL).  Set the bits using the bit * fields then write the <i>d32</i> value to the register. */typedef union gotgctl_data {	/** raw register data */	uint32_t d32;	/** register bits */	struct {		unsigned sesreqscs:1;		unsigned sesreq:1;		unsigned reserved2_7:6;		unsigned hstnegscs:1;		unsigned hnpreq:1;		unsigned hstsethnpen:1;		unsigned devhnpen:1;		unsigned reserved12_15:4;		unsigned conidsts:1;		unsigned reserved17:1;		unsigned asesvld:1;		unsigned bsesvld:1;		unsigned currmod:1;		unsigned reserved21_31:11;	} b;} gotgctl_data_t;/** * This union represents the bit fields of the Core OTG Interrupt Register * (GOTGINT).  Set/clear the bits using the bit fields then write the <i>d32</i> * value to the register. */typedef union gotgint_data {	/** raw register data */	uint32_t d32;	/** register bits */	struct {		/** Current Mode */		unsigned reserved0_1:2;		/** Session End Detected */		unsigned sesenddet:1;		unsigned reserved3_7:5;		/** Session Request Success Status Change */		unsigned sesreqsucstschng:1;		/** Host Negotiation Success Status Change */		unsigned hstnegsucstschng:1;		unsigned reserver10_16:7;		/** Host Negotiation Detected */		unsigned hstnegdet:1;		/** A-Device Timeout Change */		unsigned adevtoutchng:1;		/** Debounce Done */		unsigned debdone:1;		unsigned reserved31_20:12;	} b;} gotgint_data_t;/** * This union represents the bit fields of the Core AHB Configuration * Register (GAHBCFG).	Set/clear the bits using the bit fields then * write the <i>d32</i> value to the register. */typedef union gahbcfg_data {	/** raw register data */	uint32_t d32;	/** register bits */	struct {		unsigned glblintrmsk:1;#define DWC_GAHBCFG_GLBINT_ENABLE		1		unsigned hburstlen:4;#define DWC_GAHBCFG_INT_DMA_BURST_SINGLE	0#define DWC_GAHBCFG_INT_DMA_BURST_INCR		1#define DWC_GAHBCFG_INT_DMA_BURST_INCR4		3#define DWC_GAHBCFG_INT_DMA_BURST_INCR8		5#define DWC_GAHBCFG_INT_DMA_BURST_INCR16	7		unsigned dmaenable:1;#define DWC_GAHBCFG_DMAENABLE			1		unsigned reserved:1;		unsigned nptxfemplvl_txfemplvl:1;		unsigned ptxfemplvl:1;#define DWC_GAHBCFG_TXFEMPTYLVL_EMPTY		1#define DWC_GAHBCFG_TXFEMPTYLVL_HALFEMPTY	0		unsigned reserved9_31:23;	} b;} gahbcfg_data_t;/** * This union represents the bit fields of the Core USB Configuration * Register (GUSBCFG).	Set the bits using the bit fields then write * the <i>d32</i> value to the register. */typedef union gusbcfg_data {	/** raw register data */	uint32_t d32;	/** register bits */	struct {		unsigned toutcal:3;		unsigned phyif:1;		unsigned ulpi_utmi_sel:1;		unsigned fsintf:1;		unsigned physel:1;		unsigned ddrsel:1;		unsigned srpcap:1;		unsigned hnpcap:1;		unsigned usbtrdtim:4;		unsigned nptxfrwnden:1;		unsigned phylpwrclksel:1;		unsigned otgutmifssel:1;		unsigned ulpi_fsls:1;		unsigned ulpi_auto_res:1;		unsigned ulpi_clk_sus_m:1;		unsigned ulpi_ext_vbus_drv:1;		unsigned ulpi_int_vbus_indicator:1;		unsigned term_sel_dl_pulse:1;		unsigned reserved:9;	} b;} gusbcfg_data_t;/** * This union represents the bit fields of the Core Reset Register * (GRSTCTL).  Set/clear the bits using the bit fields then write the * <i>d32</i> value to the register. */typedef union grstctl_data {	/** raw register data */	uint32_t d32;	/** register bits */	struct {		/** Core Soft Reset (CSftRst) (Device and Host)		 *		 * The application can flush the control logic in the		 * entire core using this bit. This bit resets the		 * pipelines in the AHB Clock domain as well as the		 * PHY Clock domain.		 *		 * The state machines are reset to an IDLE state, the		 * control bits in the CSRs are cleared, all the		 * transmit FIFOs and the receive FIFO are flushed.		 *		 * The status mask bits that control the generation of		 * the interrupt, are cleared, to clear the		 * interrupt. The interrupt status bits are not		 * cleared, so the application can get the status of		 * any events that occurred in the core after it has		 * set this bit.		 *		 * Any transactions on the AHB are terminated as soon		 * as possible following the protocol. Any		 * transactions on the USB are terminated immediately.		 *		 * The configuration settings in the CSRs are		 * unchanged, so the software doesn't have to		 * reprogram these registers (Device		 * Configuration/Host Configuration/Core System		 * Configuration/Core PHY Configuration).		 *		 * The application can write to this bit, any time it		 * wants to reset the core. This is a self clearing		 * bit and the core clears this bit after all the		 * necessary logic is reset in the core, which may		 * take several clocks, depending on the current state		 * of the core.		 */		unsigned csftrst:1;		/** Hclk Soft Reset		 *		 * The application uses this bit to reset the control logic in		 * the AHB clock domain. Only AHB clock domain pipelines are		 * reset.		 */		unsigned hsftrst:1;		/** Host Frame Counter Reset (Host Only)<br>		 *		 * The application can reset the (micro)frame number		 * counter inside the core, using this bit. When the		 * (micro)frame counter is reset, the subsequent SOF		 * sent out by the core, will have a (micro)frame		 * number of 0.		 */		unsigned hstfrm:1;		/** In Token Sequence Learning Queue Flush		 * (INTknQFlsh) (Device Only)		 */		unsigned intknqflsh:1;		/** RxFIFO Flush (RxFFlsh) (Device and Host)		 *		 * The application can flush the entire Receive FIFO		 * using this bit.	<p>The application must first		 * ensure that the core is not in the middle of a		 * transaction.	 <p>The application should write into		 * this bit, only after making sure that neither the		 * DMA engine is reading from the RxFIFO nor the MAC		 * is writing the data in to the FIFO.	<p>The		 * application should wait until the bit is cleared		 * before performing any other operations. This bit		 * will takes 8 clocks (slowest of PHY or AHB clock)		 * to clear.		 */		unsigned rxfflsh:1;		/** TxFIFO Flush (TxFFlsh) (Device and Host).		 *		 * This bit is used to selectively flush a single or		 * all transmit FIFOs.	The application must first		 * ensure that the core is not in the middle of a		 * transaction.	 <p>The application should write into		 * this bit, only after making sure that neither the		 * DMA engine is writing into the TxFIFO nor the MAC		 * is reading the data out of the FIFO.	 <p>The		 * application should wait until the core clears this		 * bit, before performing any operations. This bit		 * will takes 8 clocks (slowest of PHY or AHB clock)		 * to clear.		 */		unsigned txfflsh:1;		/** TxFIFO Number (TxFNum) (Device and Host).		 *		 * This is the FIFO number which needs to be flushed,		 * using the TxFIFO Flush bit. This field should not		 * be changed until the TxFIFO Flush bit is cleared by		 * the core.		 *	 - 0x0 : Non Periodic TxFIFO Flush		 *	 - 0x1 : Periodic TxFIFO #1 Flush in device mode		 *	   or Periodic TxFIFO in host mode		 *	 - 0x2 : Periodic TxFIFO #2 Flush in device mode.		 *	 - ...		 *	 - 0xF : Periodic TxFIFO #15 Flush in device mode		 *	 - 0x10: Flush all the Transmit NonPeriodic and		 *	   Transmit Periodic FIFOs in the core		 */		unsigned txfnum:5;		/** Reserved */		unsigned reserved11_29:19;		/** DMA Request Signal.	 Indicated DMA request is in		 * probress.  Used for debug purpose. */		unsigned dmareq:1;		/** AHB Master Idle.  Indicates the AHB Master State		 * Machine is in IDLE condition. */		unsigned ahbidle:1;	} b;} grstctl_t;/** * This union represents the bit fields of the Core Interrupt Mask * Register (GINTMSK).	Set/clear the bits using the bit fields then * write the <i>d32</i> value to the register. */typedef union gintmsk_data {	/** raw register data */	uint32_t d32;	/** register bits */	struct {		unsigned reserved0:1;		unsigned modemismatch:1;		unsigned otgintr:1;		unsigned sofintr:1;		unsigned rxstsqlvl:1;		unsigned nptxfempty:1;		unsigned ginnakeff:1;		unsigned goutnakeff:1;		unsigned reserved8:1;		unsigned i2cintr:1;		unsigned erlysuspend:1;		unsigned usbsuspend:1;		unsigned usbreset:1;		unsigned enumdone:1;		unsigned isooutdrop:1;		unsigned eopframe:1;		unsigned reserved16:1;		unsigned epmismatch:1;		unsigned inepintr:1;		unsigned outepintr:1;		unsigned incomplisoin:1;		unsigned incomplisoout:1;		unsigned reserved22_23:2;		unsigned portintr:1;		unsigned hcintr:1;		unsigned ptxfempty:1;		unsigned reserved27:1;		unsigned conidstschng:1;		unsigned disconnect:1;		unsigned sessreqintr:1;		unsigned wkupintr:1;	} b;} gintmsk_data_t;/** * This union represents the bit fields of the Core Interrupt Register * (GINTSTS).  Set/clear the bits using the bit fields then write the * <i>d32</i> value to the register. */typedef union gintsts_data {	/** raw register data */	uint32_t d32;#define DWC_SOF_INTR_MASK 0x0008	/** register bits */	struct {#define DWC_HOST_MODE 1		unsigned curmode:1;		unsigned modemismatch:1;		unsigned otgintr:1;		unsigned sofintr:1;		unsigned rxstsqlvl:1;		unsigned nptxfempty:1;		unsigned ginnakeff:1;		unsigned goutnakeff:1;		unsigned reserved8:1;		unsigned i2cintr:1;		unsigned erlysuspend:1;		unsigned usbsuspend:1;		unsigned usbreset:1;		unsigned enumdone:1;		unsigned isooutdrop:1;		unsigned eopframe:1;		unsigned intokenrx:1;		unsigned epmismatch:1;		unsigned inepint:1;		unsigned outepintr:1;		unsigned incomplisoin:1;		unsigned incomplisoout:1;		unsigned reserved22_23:2;		unsigned portintr:1;		unsigned hcintr:1;		unsigned ptxfempty:1;		unsigned reserved27:1;		unsigned conidstschng:1;		unsigned disconnect:1;		unsigned sessreqintr:1;		unsigned wkupintr:1;	} b;} gintsts_data_t;/** * This union represents the bit fields in the Device Receive Status Read and * Pop Registers (GRXSTSR, GRXSTSP) Read the register into the <i>d32</i> * element then read out the bits using the <i>b</i>it elements. */typedef union device_grxsts_data {	/** raw register data */	uint32_t d32;	/** register bits */	struct {		unsigned epnum:4;		unsigned bcnt:11;		unsigned dpid:2;

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美日本一区二区三区| 欧美激情在线看| 日本一区二区三区电影| 亚洲与欧洲av电影| 国产精品夜夜嗨| 日韩一级完整毛片| 亚洲精品国产精品乱码不99| 欧美精品乱码久久久久久| 亚洲精品一区二区精华| 亚洲va国产va欧美va观看| 99精品国产99久久久久久白柏| 久久亚洲精品小早川怜子| 日韩精品一二三区| 欧美影院一区二区三区| 1000精品久久久久久久久| 国产中文一区二区三区| 日韩欧美综合在线| 亚洲6080在线| 9191国产精品| 五月天一区二区| 欧美日韩中文字幕一区| 亚洲精品第1页| 色婷婷综合久色| 亚洲精品国产精华液| 色一情一乱一乱一91av| 亚洲精品视频自拍| 欧美怡红院视频| 亚洲国产精品久久久久秋霞影院 | av在线不卡网| 国产丝袜美腿一区二区三区| 国产九色精品成人porny| 久久久久亚洲综合| 国产很黄免费观看久久| 中文字幕av在线一区二区三区| 色噜噜狠狠色综合欧洲selulu| 国产精品国产三级国产专播品爱网| 国产精品123区| 国产精品白丝在线| 色婷婷久久久久swag精品| 亚洲自拍偷拍九九九| 欧美系列亚洲系列| 天涯成人国产亚洲精品一区av| 制服丝袜亚洲播放| 精品一区二区在线观看| 国产亚洲精品bt天堂精选| 大白屁股一区二区视频| 亚洲色图在线看| 欧美系列一区二区| 蓝色福利精品导航| 久久久精品蜜桃| 99国产精品久久久| 亚洲国产sm捆绑调教视频| 日韩一区二区在线观看视频| 国产精品99久久久久久久vr| 亚洲欧洲99久久| 欧美日韩视频在线第一区| 奇米色777欧美一区二区| 国产亚洲制服色| 色综合久久中文综合久久牛| 日韩电影一区二区三区| 久久精品男人天堂av| 色天天综合色天天久久| 日韩精品乱码免费| 国产欧美精品区一区二区三区| 色综合久久中文综合久久牛| 强制捆绑调教一区二区| 国产精品国产三级国产aⅴ无密码| 欧美色图在线观看| 国产精品一区二区你懂的| 亚洲激情av在线| 久久中文娱乐网| 欧美日韩亚洲综合在线| 成人在线视频一区| 亚洲成人精品在线观看| 国产女人水真多18毛片18精品视频 | 色综合久久综合网| 韩国三级在线一区| 亚洲国产cao| 中文字幕一区二区不卡| 欧美成人伊人久久综合网| 精品成人一区二区| 欧美午夜寂寞影院| 国产一区激情在线| 亚洲专区一二三| 国产亚洲1区2区3区| 欧美精品久久天天躁| 不卡视频在线观看| 国产美女视频91| 免费看欧美女人艹b| 亚洲精品免费视频| 国产精品久久看| 久久青草欧美一区二区三区| 制服.丝袜.亚洲.另类.中文 | 午夜精品久久久久久久99水蜜桃| 国产欧美日本一区二区三区| 欧美精品在线视频| 在线观看免费成人| 97超碰欧美中文字幕| 国产精品系列在线观看| 激情综合网激情| 日本视频免费一区| 性做久久久久久免费观看欧美| 亚洲狼人国产精品| ㊣最新国产の精品bt伙计久久| 国产亚洲综合色| 久久久久久久久久久久久久久99 | 久久久久久久久久美女| 精品久久久久久久一区二区蜜臀| 884aa四虎影成人精品一区| 在线观看区一区二| 在线亚洲免费视频| 欧美性videosxxxxx| 欧美三级韩国三级日本一级| 欧美这里有精品| 在线观看日韩一区| 欧美午夜一区二区三区免费大片| 一本一本久久a久久精品综合麻豆| 成人ar影院免费观看视频| 成人app网站| 9色porny自拍视频一区二区| 99久久精品免费看国产 | 欧美美女激情18p| 欧美日韩国产精选| 欧美一三区三区四区免费在线看| 制服丝袜av成人在线看| 精品成人a区在线观看| 久久一二三国产| 亚洲国产成人午夜在线一区| 亚洲三级在线免费观看| 亚洲成a人片在线观看中文| 成人午夜私人影院| 91啪九色porn原创视频在线观看| 色婷婷香蕉在线一区二区| 欧美三级视频在线| 欧美xxxxx牲另类人与| 国产精品久久久久久久午夜片| 亚洲特黄一级片| 亚洲图片欧美色图| 久久电影网站中文字幕| 成人激情文学综合网| 欧美在线小视频| 日韩欧美国产1| 亚洲欧洲成人av每日更新| 手机精品视频在线观看| 国产精品一区二区在线观看不卡| 99久久精品国产一区二区三区 | 日韩精品亚洲专区| 国产福利一区在线观看| 在线观看一区二区视频| 久久夜色精品一区| 亚洲精品伦理在线| 老司机免费视频一区二区三区| 成人理论电影网| 在线不卡欧美精品一区二区三区| 久久精品一区四区| 亚洲第一精品在线| 成人一区二区三区视频在线观看| 欧美亚洲动漫精品| 久久综合成人精品亚洲另类欧美 | 91精品国产综合久久婷婷香蕉| 久久久国产精华| 亚洲国产视频在线| 国产麻豆精品视频| 欧美日韩国产综合一区二区三区 | 亚洲123区在线观看| 丁香婷婷综合五月| 3d成人h动漫网站入口| 国产精品看片你懂得| 久久99精品国产.久久久久 | 久久品道一品道久久精品| 亚洲.国产.中文慕字在线| 99久久精品99国产精品| 久久久亚洲综合| 美女视频一区二区| 欧美日韩亚洲不卡| 亚洲日本在线观看| 国产精品一区二区果冻传媒| 欧美高清视频一二三区| 亚洲一区二区三区四区在线免费观看| 国产成人超碰人人澡人人澡| 欧美mv日韩mv亚洲| 日韩精品电影在线观看| 欧美视频自拍偷拍| 亚洲欧美在线观看| 粉嫩一区二区三区在线看| 日韩免费福利电影在线观看| 亚洲bt欧美bt精品777| 欧美亚洲禁片免费| 亚洲精品视频自拍| 欧美电影精品一区二区| 日韩av一区二区三区四区| 欧美亚洲高清一区二区三区不卡| 国产精品护士白丝一区av| 国产福利一区二区三区视频在线 | 一区二区三区在线视频播放| 99久久国产综合精品色伊| 亚洲欧洲三级电影| 99国产精品久| 一区二区三区高清在线| 在线观看不卡一区|