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

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

?? serial.c

?? Linux2.4.20針對三星公司的s3c2440內核基礎上的一些設備驅動代碼
?? C
?? 第 1 頁 / 共 2 頁
字號:
/* * serial_fd/serial.c * * Copyright (c) 2000, 2001, 2002 Lineo * Copyright (c) 2001 Hewlett Packard * * By:  *      Stuart Lynne <sl@lineo.com>,  *      Tom Rushworth <tbr@lineo.com>,  *      Bruce Balden <balden@lineo.com> * * Changes copyright (c) 2003 MontaVista Software, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * *//*  * The encapsultaion is designed to overcome difficulties with some USB hardware. * * While the USB protocol has a CRC over the data while in transit, i.e. while * being carried over the bus, there is no end to end protection. If the hardware * has any problems getting the data into or out of the USB transmit and receive * FIFO's then data can be lost.  * * This protocol adds a two byte trailer to each USB packet to specify the number * of bytes of valid data and a 10 bit CRC that will allow the receiver to verify * that the entire USB packet was received without error. * * This means we now have end to end protection from the class driver to the function * driver and back. * * There is an additional option that can be used to force all transmitted packets * to be padded to the maximum packet size. This provides a work around for some * devices which have problems with small USB packets. * * Assuming a packetsize of N: * *      0..N-2  data and optional padding * *      N-2     bits 7-2 - number of bytes of valid data *              bits 1-0 top two bits of 10 bit CRC *      N-1     bottom 8 bits of 10 bit CRC * * *      | Data Length       | 10 bit CRC                                | *      + 7 . 6 . 5 . 4 . 3 . 2 . 1 . 0 | 7 . 6 . 5 . 4 . 3 . 2 . 1 . 0 + *       * The 10 bit CRC is computed across the sent data, followed by the trailer with * the length set and the CRC set to zero. The CRC is then OR'd into the trailer. * * When received a 10 bit CRC is computed over the entire frame including the trailer * and should be equal to zero. * * Two module parameters are used to control the encapsulation, if both are * turned of the module works as a simple serial device with NO * encapsulation. * * See linux/drivers/usb/serial/safe_serial.c for a host class driver * implementation of this. * */#include <linux/config.h>#include <linux/module.h>#include "../usbd-export.h"#include "../usbd-build.h"#include "../usbd-module.h"MODULE_AUTHOR ("sl@lineo.com, tbr@lineo.com");MODULE_LICENSE("GPL");MODULE_DESCRIPTION ("USB Device Serial Function");USBD_MODULE_INFO ("serial_fd 0.1-beta");#ifndef MODULE#undef GET_USE_COUNT#define GET_USE_COUNT(foo) 1#endif#include <linux/init.h>#include <linux/kernel.h>#include <linux/list.h>#include <asm/uaccess.h>#include <linux/netdevice.h>#include <linux/skbuff.h>#include <linux/etherdevice.h>#include <net/arp.h>#include <linux/rtnetlink.h>#include <linux/smp_lock.h>#include <linux/ctype.h>#include <linux/timer.h>#include <linux/string.h>#include <linux/atmdev.h>#include <linux/pkt_sched.h>#include "../usbd.h"#include "../usbd-func.h"#include "../usbd-bus.h"#include "../usbd-debug.h"#include "../usbd-inline.h"#include "../usbd-arch.h"#include "crc10.h"#include "serproto.h"#if 0#define MIN(a, b) ({            \        typeof(a) _a = (a);     \        typeof(b) _b = (b);     \        _a < _b ? _a : _b;      \})#endif#define MAX_INTERFACES 1#define MTU                             1500+100#if !defined (CONFIG_USBD_VENDORID) && !defined(CONFIG_USBD_SERIAL_VENDORID)#error No Vendor ID#endif#if !defined (CONFIG_USBD_PRODUCTID) && !defined(CONFIG_USBD_SERIAL_PRODUCTID)#error No Product ID#endif#if CONFIG_USBD_SERIAL_VENDORID#undef CONFIG_USBD_VENDORID#define CONFIG_USBD_VENDORID CONFIG_USBD_SERIAL_VENDORID#endif#if CONFIG_USBD_SERIAL_PRODUCTID#undef CONFIG_USBD_PRODUCTID#define CONFIG_USBD_PRODUCTID CONFIG_USBD_SERIAL_PRODUCTID#endif#ifndef CONFIG_USBD_SERIAL_NUMBER_STR#define CONFIG_USBD_SERIAL_NUMBER_STR           ""#endif#ifdef CONFIG_USBD_SELFPOWERED#define BMATTRIBUTE BMATTRIBUTE_RESERVED | BMATTRIBUTE_SELF_POWERED#define BMAXPOWER 0#else#define BMATTRIBUTE BMATTRIBUTE_RESERVED#define BMAXPOWER CONFIG_USBD_MAXPOWER#endif/* * setup some default values for pktsizes and endpoint addresses. */#ifndef CONFIG_USBD_SERIAL_OUT_PKTSIZE#define CONFIG_USBD_SERIAL_OUT_PKTSIZE             64#endif#ifndef CONFIG_USBD_SERIAL_IN_PKTSIZE#define CONFIG_USBD_SERIAL_IN_PKTSIZE              64#endif#ifndef CONFIG_USBD_SERIAL_INT_PKTSIZE#define CONFIG_USBD_SERIAL_INT_PKTSIZE             16#endif#ifndef CONFIG_USBD_SERIAL_OUT_ENDPOINT#define CONFIG_USBD_SERIAL_OUT_ENDPOINT            1#endif#ifndef CONFIG_USBD_SERIAL_IN_ENDPOINT#define CONFIG_USBD_SERIAL_IN_ENDPOINT             2#endif#ifndef CONFIG_USBD_SERIAL_INT_ENDPOINT#define CONFIG_USBD_SERIAL_INT_ENDPOINT                3#endif/* * check for architecture specific endpoint configurations */#if     defined(ABS_OUT_ADDR)#warning#warning USING ABS ENDPOINT OUT ADDRESS#undef CONFIG_USBD_SERIAL_OUT_ENDPOINT#if     ABS_OUT_ADDR > 0#define CONFIG_USBD_SERIAL_OUT_ENDPOINT            ABS_OUT_ADDR#endif#elif   defined(MAX_OUT_ADDR) && defined(CONFIG_USBD_SERIAL_OUT_ENDPOINT) && (CONFIG_USBD_SERIAL_OUT_ENDPOINT > MAX_OUT_ADDR)#warning#warning USING DEFAULT ENDPOINT OUT ADDRESS#undef CONFIG_USBD_SERIAL_OUT_ENDPOINT#define CONFIG_USBD_SERIAL_OUT_ENDPOINT            DFL_OUT_ADDR#endif#if     defined(ABS_IN_ADDR)#warning#warning USING ABS ENDPOINT IN ADDRESS#undef CONFIG_USBD_SERIAL_IN_ENDPOINT#if     ABS_IN_ADDR#define CONFIG_USBD_SERIAL_IN_ENDPOINT             ABS_IN_ADDR#endif#elif   defined(MAX_IN_ADDR) && defined(CONFIG_USBD_SERIAL_IN_ENDPOINT) && (CONFIG_USBD_SERIAL_IN_ENDPOINT > MAX_IN_ADDR)#warning#warning USING DEFAULT ENDPOINT IN ADDRESS#undef CONFIG_USBD_SERIAL_IN_ENDPOINT#define CONFIG_USBD_SERIAL_IN_ENDPOINT             DFL_IN_ADDR#endif#if     defined(ABS_INT_ADDR)#warning#warning USING ABS ENDPOINT INT ADDRESS#undef CONFIG_USBD_SERIAL_INT_ENDPOINT#if     ABS_INT_ADDR#define CONFIG_USBD_SERIAL_INT_ENDPOINT            ABS_INT_ADDR#endif#elif   defined(MAX_INT_ADDR) && defined(CONFIG_USBD_SERIAL_INT_ENDPOINT) && (CONFIG_USBD_SERIAL_INT_ENDPOINT > MAX_INT_ADDR)#warning#warning USING DEFAULT ENDPOINT INT ADDRESS#undef CONFIG_USBD_SERIAL_INT_ENDPOINT#define CONFIG_USBD_SERIAL_INT_ENDPOINT            DFL_INT_ADDR#endif#if     defined(MAX_OUT_PKTSIZE) && defined(CONFIG_USBD_SERIAL_OUT_PKTSIZE) && CONFIG_USBD_SERIAL_OUT_PKTSIZE > MAX_OUT_PKTSIZE#warning#warning OVERIDING ENDPOINT OUT PKTSIZE#undef CONFIG_USBD_SERIAL_OUT_PKTSIZE#define CONFIG_USBD_SERIAL_OUT_PKTSIZE             MAX_OUT_PKTSIZE#endif#if     defined(MAX_IN_PKTSIZE) && defined(CONFIG_USBD_SERIAL_IN_PKTSIZE) && CONFIG_USBD_SERIAL_IN_PKTSIZE > MAX_IN_PKTSIZE#warning#warning OVERIDING ENDPOINT IN PKTSIZE#undef CONFIG_USBD_SERIAL_IN_PKTSIZE#define CONFIG_USBD_SERIAL_IN_PKTSIZE              MAX_IN_PKTSIZE#endif#if     defined(MAX_INT_PKTSIZE) && defined(CONFIG_USBD_SERIAL_INT_PKTSIZE) && CONFIG_USBD_SERIAL_INT_PKTSIZE > MAX_INT_PKTSIZE#warning#warning OVERIDING ENDPOINT INT PKTSIZE#undef CONFIG_USBD_SERIAL_INT_PKTSIZE#define CONFIG_USBD_SERIAL_INT_PKTSIZE             MAX_INT_PKTSIZE#endifstruct usb_serial_private {	int interface;	struct usb_device_instance *device;	rwlock_t rwlock;};/* Module Parameters ************************************************************************* */static char *dbg = NULL;static u32 vendor_id;static u32 product_id;static u32 txqueue_urbs;static u32 txqueue_bytes = 3032;#ifndef CONFIG_USBD_SERIAL_SAFE_DEFAULT#define CONFIG_USBD_SERIAL_SAFE_DEFAULT 0#endif#ifndef CONFIG_USBD_SERIAL_SAFE_PADDED#define CONFIG_USBD_SERIAL_SAFE_PADDED 0#endifstatic int safe = CONFIG_USBD_SERIAL_SAFE_DEFAULT;static int padded = CONFIG_USBD_SERIAL_SAFE_PADDED;MODULE_PARM (dbg, "s");MODULE_PARM (vendor_id, "i");MODULE_PARM (product_id, "i");MODULE_PARM (txqueue_urbs, "i");MODULE_PARM (txqueue_bytes, "i");MODULE_PARM (safe, "i");MODULE_PARM (padded, "i");MODULE_PARM_DESC (dbg, "USB Device Debug options");MODULE_PARM_DESC (vendor_id, "USB Device Vendor ID");MODULE_PARM_DESC (product_id, "USB Device Product ID");MODULE_PARM_DESC (txqueue_urbs, "Maximum TX Queue Urbs");MODULE_PARM_DESC (txqueue_bytes, "Maximum TX Queue Bytes");MODULE_PARM_DESC (safe, "Safe Encapsulation");MODULE_PARM_DESC (padded, "Safe Encapsulation Padding");/* Debug switches (module parameter "dbg=...") *********************************************** */extern int dbgflg_usbdfd_init;int dbgflg_usbdfd_usbe;int dbgflg_usbdfd_tx;int dbgflg_usbdfd_rx;int dbgflg_usbdfd_loopback;static debug_option dbg_table[] = {	{&dbgflg_usbdfd_init, NULL, "init", "initialization and termination"},	{&dbgflg_usbdfd_usbe, NULL, "usbe", "USB events"},	{&dbgflg_usbdfd_rx, NULL, "rx", "receive (from host)"},	{&dbgflg_usbdfd_tx, NULL, "tx", "transmit (to host)"},	{&dbgflg_usbdfd_loopback, NULL, "loop", "loopback mode if non-zero"},	{NULL, NULL, "ser", "serial device (tty) handling"},	{NULL, NULL, NULL, NULL}};#define dbg_init(lvl,fmt,args...) dbgPRINT(dbgflg_usbdfd_init,lvl,fmt,##args)#define dbg_usbe(lvl,fmt,args...) dbgPRINT(dbgflg_usbdfd_usbe,lvl,fmt,##args)#define dbg_rx(lvl,fmt,args...) dbgPRINT(dbgflg_usbdfd_rx,lvl,fmt,##args)#define dbg_tx(lvl,fmt,args...) dbgPRINT(dbgflg_usbdfd_tx,lvl,fmt,##args)#define dbg_loop(lvl,fmt,args...) dbgPRINT(dbgflg_usbdfd_loopback,lvl,fmt,##args)/* ******************************************************************************************* */static int serial_created;static struct usb_serial_private *serial_private_array[MAX_INTERFACES];static rwlock_t serial_rwlock = RW_LOCK_UNLOCKED;	// lock for serproto device array accessstatic __inline__ struct usb_serial_private *get_serial_private (int interface){	if (interface < 0 || interface >= MAX_INTERFACES) {		return NULL;	}	return serial_private_array[interface];}/* usb-func.c ******************************************************************************** *//* Communications Interface Class descriptions  */static struct usb_endpoint_description serial_default[] = {      {bEndpointAddress:CONFIG_USBD_SERIAL_OUT_ENDPOINT,	      bmAttributes:BULK,	      wMaxPacketSize:CONFIG_USBD_SERIAL_OUT_PKTSIZE,	      bInterval:0,	      direction:OUT,      transferSize:CONFIG_USBD_SERIAL_OUT_PKTSIZE,},      {bEndpointAddress:CONFIG_USBD_SERIAL_IN_ENDPOINT,	      bmAttributes:BULK,	      wMaxPacketSize:CONFIG_USBD_SERIAL_IN_PKTSIZE,	      bInterval:0,	      direction:IN,      transferSize:CONFIG_USBD_SERIAL_IN_PKTSIZE,},#if defined(CONFIG_USBD_SERIAL_INT_ENDPOINT) && (CONFIG_USBD_SERIAL_INT_ENDPOINT > 0)      {bEndpointAddress:CONFIG_USBD_SERIAL_INT_ENDPOINT,	      bmAttributes:INTERRUPT,	      wMaxPacketSize:CONFIG_USBD_SERIAL_INT_PKTSIZE,	      bInterval:0,	      direction:IN,      transferSize:CONFIG_USBD_SERIAL_INT_PKTSIZE,},#endif};/* Data Interface Alternate description(s) */static __devinitdata struct usb_alternate_description serial_data_alternate_descriptions[] = {      {iInterface:"Simple Serial Data Interface - Bulk mode",	      bAlternateSetting:0,	      endpoints:sizeof (serial_default) /	 sizeof (struct usb_endpoint_description),      endpoint_list:serial_default,},};/* Interface description(s) */static __devinitdata struct usb_interface_description serial_interfaces[] = {      {iInterface:"Simple Serial Data Interface",	      bInterfaceClass:LINEO_CLASS,	      bInterfaceSubClass:LINEO_SUBCLASS_SAFESERIAL,	      bInterfaceProtocol:LINEO_SAFESERIAL_CRC,	      alternates:sizeof (serial_data_alternate_descriptions) /	 sizeof (struct usb_alternate_description),      alternate_list:serial_data_alternate_descriptions,},};#ifdef CONFIG_USBD_SERIAL_CDC/* * CDC ACM Configuration *//* Communication Interface Class descriptions */static struct usb_class_description cdc_comm_class_descriptions[] = {	{ CS_INTERFACE, USB_ST_HEADER,  0, { header: { bcdCDC: CLASS_BCD_VERSION, } }},	{ CS_INTERFACE, USB_ST_UF,      1, { union_function: { bMasterInterface: 0, bSlaveInterface: { 1 }, }}},	{ CS_INTERFACE, USB_ST_CMF,     0, { call_management: { bmCapabilities: 0, bDataInterface: 1, }}},	{ CS_INTERFACE, USB_ST_ACMF,    0, { abstract_control: { bmCapabilities: 0, }}},};/* Data Interface Alternate 1 endpoints */static __devinitdata struct usb_endpoint_description serial_alt_1_endpoints[] = {      {bEndpointAddress:CONFIG_USBD_SERIAL_OUT_ENDPOINT,	      bmAttributes:BULK,	      wMaxPacketSize:CONFIG_USBD_SERIAL_OUT_PKTSIZE,	      bInterval:0,	      direction:OUT,      transferSize:CONFIG_USBD_SERIAL_OUT_PKTSIZE,},      {bEndpointAddress:CONFIG_USBD_SERIAL_IN_ENDPOINT,	      bmAttributes:BULK,	      wMaxPacketSize:CONFIG_USBD_SERIAL_IN_PKTSIZE,	      bInterval:0,	      direction:IN,      transferSize:CONFIG_USBD_SERIAL_OUT_PKTSIZE,},#if defined(CONFIG_USBD_SERIAL_INT_ENDPOINT) && (CONFIG_USBD_SERIAL_INT_ENDPOINT > 0)      {bEndpointAddress:CONFIG_USBD_SERIAL_INT_ENDPOINT,	      bmAttributes:INTERRUPT,	      wMaxPacketSize:CONFIG_USBD_SERIAL_INT_PKTSIZE,	      bInterval:0,	      direction:IN,      transferSize:CONFIG_USBD_SERIAL_INT_PKTSIZE,},#endif};/* Data Interface Alternate description(s) */static __devinitdata struct usb_alternate_description cdc_comm_alternate_descriptions[] = {      {iInterface:"CDC ACM Comm Interface",	      bAlternateSetting:0,	      classes:sizeof (cdc_comm_class_descriptions) /	 sizeof (struct usb_class_description),      class_list:cdc_comm_class_descriptions,},};static __devinitdata struct usb_alternate_description cdc_data_alternate_descriptions[] = {      {iInterface:"CDC ACM Data Interface - Disabled mode",#ifdef CONFIG_ARCH_LUBBOCK      bAlternateSetting:1,},#else      bAlternateSetting:0,},#endif      {iInterface:"CDC ACM Data Interface - Bulk mode",#ifdef CONFIG_ARCH_LUBBOCK	      bAlternateSetting:0,#else	      bAlternateSetting:1,#endif	      endpoints:sizeof (serial_alt_1_endpoints) /	 sizeof (struct usb_endpoint_description),      endpoint_list:serial_alt_1_endpoints,},};/* Interface description(s) */static __devinitdata struct usb_interface_description cdc_interfaces[] = {      {iInterface:"CDC ACM Communication Interface",	      bInterfaceClass:COMMUNICATIONS_INTERFACE_CLASS,	      bInterfaceSubClass:COMMUNICATIONS_ACM_SUBCLASS,	      bInterfaceProtocol:COMMUNICATIONS_NO_PROTOCOL,	      alternates:sizeof (cdc_comm_alternate_descriptions) /	 sizeof (struct usb_alternate_description),      alternate_list:cdc_comm_alternate_descriptions,},      {iInterface:"CDC ACM Data Interface",	      bInterfaceClass:DATA_INTERFACE_CLASS,	      bInterfaceSubClass:COMMUNICATIONS_NO_SUBCLASS,	      bInterfaceProtocol:COMMUNICATIONS_NO_PROTOCOL,	      alternates:sizeof (cdc_data_alternate_descriptions) /	 sizeof (struct usb_alternate_description),      alternate_list:cdc_data_alternate_descriptions,},};#endif				/* CONFIG_USBD_SERIAL_CDC */

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
精品国免费一区二区三区| 日韩一区二区三区在线视频| 欧美亚洲国产怡红院影院| 精品少妇一区二区三区| 一级女性全黄久久生活片免费| 免费久久99精品国产| 91高清视频在线| 中文字幕不卡在线播放| 免费美女久久99| 在线观看国产一区二区| 国产女同互慰高潮91漫画| 久久精品国内一区二区三区| 在线观看不卡一区| 亚洲免费观看高清完整版在线| 国产成人在线观看| 337p粉嫩大胆色噜噜噜噜亚洲 | 美腿丝袜亚洲一区| 在线看国产一区二区| 中文字幕一区二区三区蜜月| 国产一区二区三区免费在线观看| 欧美日本韩国一区二区三区视频| 亚洲欧美另类久久久精品 | 国产精品视频一区二区三区不卡| 蜜桃免费网站一区二区三区| 欧美日韩国产综合一区二区三区 | 亚洲色欲色欲www| a亚洲天堂av| 中文字幕av一区二区三区免费看| 国产一区二区美女诱惑| 日韩欧美亚洲一区二区| 美女视频网站黄色亚洲| 日韩三级在线观看| 久久国产成人午夜av影院| 日韩免费高清电影| 精品一区二区在线免费观看| 26uuu国产一区二区三区| 精品一区二区三区免费毛片爱| 欧美一区二区视频免费观看| 日本不卡在线视频| 日韩精品一区二区三区在线播放 | 捆绑调教一区二区三区| 精品国产亚洲一区二区三区在线观看| 日本成人在线看| 精品国产一区二区精华| 成人午夜免费电影| 18成人在线观看| 在线观看日韩精品| 视频一区视频二区中文| 亚洲精品在线观看网站| 成人黄页毛片网站| 亚洲成人午夜影院| 精品少妇一区二区三区在线视频| 国产一区二区三区香蕉| 国产精品高清亚洲| 欧美影院一区二区| 久久国产福利国产秒拍| 亚洲欧洲国产日本综合| 欧美私人免费视频| 极品少妇xxxx精品少妇偷拍| 中文字幕高清不卡| 精品污污网站免费看| 极品销魂美女一区二区三区| 国产精品午夜电影| 欧美精品日韩精品| 国产成人亚洲综合a∨婷婷图片| 国产精品青草久久| 在线播放中文字幕一区| 成人午夜在线播放| 日韩在线播放一区二区| 国产精品丝袜一区| 51精品秘密在线观看| 国产福利不卡视频| 亚洲bdsm女犯bdsm网站| 中文字幕av不卡| 91精品国产综合久久久久久久| 国产成人一级电影| 免费美女久久99| 一区二区在线观看免费| 久久久国际精品| 在线播放91灌醉迷j高跟美女| 国产精品1区二区.| 奇米色一区二区三区四区| 亚洲视频1区2区| 国产性色一区二区| 日韩免费看的电影| 欧美日韩精品欧美日韩精品一 | 精品一区二区在线视频| 成人欧美一区二区三区小说| 日韩欧美视频一区| 欧美唯美清纯偷拍| 色噜噜偷拍精品综合在线| 国产91在线看| 极品少妇xxxx精品少妇| 日韩不卡手机在线v区| 亚洲蜜臀av乱码久久精品| 久久精品亚洲精品国产欧美 | 欧美一区二区在线视频| 91论坛在线播放| 99视频在线观看一区三区| 国产精品一区二区三区四区| 日韩精品91亚洲二区在线观看| 亚洲最大成人综合| 亚洲人吸女人奶水| 中文字幕日韩精品一区| 国产欧美一区二区三区在线老狼 | 欧美久久久久久蜜桃| 日本道精品一区二区三区| www.久久久久久久久| 成人国产在线观看| 不卡av免费在线观看| 99久久久久免费精品国产 | 国产一区二区不卡在线| 日韩高清欧美激情| 秋霞国产午夜精品免费视频| 亚洲狠狠爱一区二区三区| 亚洲国产精品久久久久婷婷884| 亚洲日本免费电影| 亚洲愉拍自拍另类高清精品| 亚洲一区二区影院| 亚洲成人中文在线| 美国毛片一区二区| 黑人巨大精品欧美一区| 国产一区二区三区视频在线播放 | 国产专区欧美精品| 精品无人码麻豆乱码1区2区 | 91精品国产欧美日韩| 欧美一区二区三区在线| 欧美成人三级在线| 337p日本欧洲亚洲大胆精品| 欧美—级在线免费片| 亚洲欧美激情在线| 日韩制服丝袜av| 国产美女在线观看一区| jlzzjlzz亚洲日本少妇| 欧美日韩亚洲高清一区二区| 欧美人xxxx| 国产亚洲一区二区三区四区| 国产精品乱码久久久久久| 亚洲中国最大av网站| 开心九九激情九九欧美日韩精美视频电影 | 欧美剧情片在线观看| 日韩一区二区电影| 欧美国产日韩精品免费观看| 中文字幕日本乱码精品影院| 亚洲国产精品天堂| 国产一区二区三区日韩 | 成人黄色av网站在线| 欧美性大战xxxxx久久久| 欧美成人乱码一区二区三区| 日本一区二区高清| 日韩精品三区四区| 成人黄色在线看| 日韩美一区二区三区| 亚洲色图第一区| 日本中文字幕一区二区有限公司| 国产精品18久久久久久久久| 色婷婷精品久久二区二区蜜臀av| 91精品国产91久久久久久最新毛片 | 欧美自拍丝袜亚洲| 久久亚洲综合色一区二区三区 | 国产精品二区一区二区aⅴ污介绍| 一区二区三区中文字幕精品精品 | 亚洲国产精品一区二区www| 国产精品2024| 欧美一区国产二区| 亚洲色图色小说| 国产老肥熟一区二区三区| 欧美日韩国产片| 国产精品伦理在线| 国产在线观看一区二区| 欧美色欧美亚洲另类二区| 国产亚洲一区二区三区在线观看 | 亚洲国产aⅴ天堂久久| 国产精品一区二区久激情瑜伽 | 国产成人免费在线观看不卡| 欧美电影在线免费观看| 亚洲精品免费在线| 国产91丝袜在线18| 精品国产一区二区三区久久影院 | 国产精品美女久久久久久久久 | 中文字幕一区在线| 国内成人免费视频| 欧美一级黄色录像| 亚洲成人av电影在线| 色婷婷久久久久swag精品| 国产精品美女久久久久久久久久久| 精品亚洲国内自在自线福利| 69av一区二区三区| 日韩国产精品久久久久久亚洲| 欧美性淫爽ww久久久久无| 亚洲欧美日韩在线播放| 丁香激情综合国产| 久久精品一区蜜桃臀影院| 国模娜娜一区二区三区| 欧美变态tickle挠乳网站| 麻豆精品一区二区综合av| 欧美一区国产二区| 激情久久久久久久久久久久久久久久| 在线不卡的av| 韩国av一区二区|