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

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

?? dynout_m.c

?? FX2開發板程序下載B
?? C
?? 第 1 頁 / 共 2 頁
字號:
#pragma NOIV                    // Do not generate interrupt vectors
//-----------------------------------------------------------------------------
//   File:      dynout_m.c
//   Contents:  Hooks required to implement USB peripheral function.
//              Code written for EZUSB FX2 128-pin REVE...
//              Firmware tested on EZUSB FX2 128-pin (CY3681 DK)
//   Copyright (c) 2001 Cypress Semiconductor All rights reserved
//-----------------------------------------------------------------------------
#include "fx2.h"
#include "fx2regs.h"
#include "fx2sdly.h"            // SYNCDELAY macro

extern BOOL GotSUD;             // Received setup data flag
extern BOOL Sleep;
extern BOOL Rwuen;
extern BOOL Selfpwr;

BYTE Configuration;             // Current configuration
BYTE AlternateSetting;          // Alternate settings

// proto's from "gpif.c"
void GpifInit( void );

  // ...debug LEDs: accessed via movx reads only ( through CPLD )
xdata volatile const BYTE LED0_ON  _at_ 0x8000;
xdata volatile const BYTE LED0_OFF _at_ 0x8100;
xdata volatile const BYTE LED1_ON  _at_ 0x9000;
xdata volatile const BYTE LED1_OFF _at_ 0x9100;
xdata volatile const BYTE LED2_ON  _at_ 0xA000;
xdata volatile const BYTE LED2_OFF _at_ 0xA100;
xdata volatile const BYTE LED3_ON  _at_ 0xB000;
xdata volatile const BYTE LED3_OFF _at_ 0xB100;
  // it may be worth noting here that the default monitor loads at 0xC000

  // use this global variable when (de)asserting debug LEDs...
BYTE ledX_rdvar = 0x00;

// 512 for high speed, 64 for full speed
static WORD enum_pkt_size = 0x0000;    

// when set firmware running in TD_Poll( ); handles data transfers
BOOL td_poll_handles_transfers = 0;

// when set cpu is out of the data path
BOOL endp_auto_mode_enabled = 0;

//-----------------------------------------------------------------------------
// Task Dispatcher hooks
//   The following hooks are called by the task dispatcher.
//-----------------------------------------------------------------------------
void TD_Init( void )
{ // Called once at startup

  CPUCS = 0x10;                 // CLKSPD[1:0]=10, for 48MHz operation
                                // CLKOE=0, don't drive CLKOUT
  
  GpifInit( );                  // init GPIF engine via GPIFTool output file

  // Registers which require a synchronization delay, see section 15.14
  // FIFORESET        FIFOPINPOLAR
  // INPKTEND         OUTPKTEND
  // EPxBCH:L         REVCTL
  // GPIFTCB3         GPIFTCB2
  // GPIFTCB1         GPIFTCB0
  // EPxFIFOPFH:L     EPxAUTOINLENH:L
  // EPxFIFOCFG       EPxGPIFFLGSEL
  // PINFLAGSxx       EPxFIFOIRQ
  // EPxFIFOIE        GPIFIRQ
  // GPIFIE           GPIFADRH:L
  // UDMACRCH:L       EPxGPIFTRIG
  // GPIFTRIG
  
  // Note: The pre-REVE EPxGPIFTCH/L register are affected, as well...
  //      ...these have been replaced by GPIFTC[B3:B0] registers
  
  SYNCDELAY;                    // see TRM section 15.14
  REVCTL = 0x02;                // REVCTL.1=1; use "dynamic OUT automaticity"
  
  // An explaination of what all happens when REVCTL.1=1
  //  - dynamic out automaticity
  //    - enabled via REVCTL.1=1 (DYN_OUT)
  //      - means block auto arming of OUT endp's when turning on "auto mode"
  //    - allows cpu intervention when switching between AUTO and MANUAL modes
  //      - without having to reset the fifo
  //  - this feature is useful for applications that edit packet data...
  //    - REVCTL.1=0 not recommended for applications that "touch" data...
  
  // EP2 512 BULK OUT 4x
  SYNCDELAY;                    // see TRM section 15.14
  EP2CFG = 0xA0;                // BUF[1:0]=00 for 4x buffering
  
  // EP6 512 BULK IN 4x
  SYNCDELAY;                    // 
  EP6CFG = 0xE0;                // BUF[1:0]=00 for 4x buffering
  
  // EP4 and EP8 are not used in this implementation...
  SYNCDELAY;                    // 
  EP4CFG = 0x20;                // clear valid bit
  SYNCDELAY;                    // 
  EP8CFG = 0x60;                // clear valid bit

  SYNCDELAY;                    // 
  FIFORESET = 0x80;             // activate NAK-ALL to avoid race conditions
  SYNCDELAY;                    // 
  FIFORESET = 0x02;             // reset, FIFO 2
  SYNCDELAY;                    // 
  FIFORESET = 0x04;             // reset, FIFO 4
  SYNCDELAY;                    // 
  FIFORESET = 0x06;             // reset, FIFO 6
  SYNCDELAY;                    // 
  FIFORESET = 0x08;             // reset, FIFO 8
  SYNCDELAY;                    // 
  FIFORESET = 0x00;             // deactivate NAK-ALL

  // 8-bit bus (WORDWIDE=0)...
  SYNCDELAY;                    // 
  EP2FIFOCFG = 0x00;
  SYNCDELAY;                    // 
  EP6FIFOCFG = 0x04;
  
  // OUT endp's come up "unarmed" in the cpu domain
  // ...to "arm" the endp's when AUTOOUT=0 the cpu write's 
  //  (1)...OUTPKTEND w/skip=1 (N times) when REVCTL.0=1 (ENH_PKT)
  //     ...true even when AUTOOUT=1 for REVCTL.0=1
  
  //        SYNCDELAY;                    // 
  //        OUTPKTEND = 0x82;             // arm first buffer
  //        SYNCDELAY;                    // 
  //        OUTPKTEND = 0x82;             // arm second buffer
  //        SYNCDELAY;                    // 
  //        OUTPKTEND = 0x82;             // arm third buffer
  //        SYNCDELAY;                    // 
  //        OUTPKTEND = 0x82;             // arm fourth buffer
  //        SYNCDELAY;                    // 
  
  //  (2)...EPxBCL w/skip=1 (N times) when REVCTL.0=0 (ENH_PKT)
  
  SYNCDELAY;                    // 
  EP2BCL = 0x80;                // arm first buffer
  SYNCDELAY;                    // 
  EP2BCL = 0x80;                // arm second buffer
  SYNCDELAY;                    // 
  EP2BCL = 0x80;                // arm third buffer
  SYNCDELAY;                    // 
  EP2BCL = 0x80;                // arm fourth buffer
  SYNCDELAY;                    // 
  
  // Note: had we choosen to use AUTOOUT=1 initially, then...
  //   (1)...when REVCTL.1=0, the core must see MANUAL-AUTO switch of AUTO bit
  //      ...to properly "arm" OUT buffers...
  //
  //         SYNCDELAY;         
  //         EP2FIFOCFG = 0x00; // AUTOOUT=0 (manual OUT mode)
  //         SYNCDELAY;         
  //         EP6FIFOCFG = 0x04;
  //    then,
  //         SYNCDELAY;         
  //         EP2FIFOCFG = 0x10; // AUTOOUT=1 (auto OUT mode)
  //         SYNCDELAY;         
  //         EP6FIFOCFG = 0x04;
  //
  //      ...this might not be obvious because the default is AUTOOUT=0
  //      ...power static back to back firmware downloads may be subject to 
  //      ...the above scheme.when the application's last status was AUTOOUT=1
  //
  //   (2)...when REVCTL.1=1, core blocks auto arming of OUT endp's
  //      ...see above EPxBCL/OUTPKTEND sequence(s)
  //      ...sequence is as follows:
  //      ...(a) REVCTL.1=1
  //      ...(b) FIFORESET (as above)
  //      ...(c) EPxBCL/OUTPKTEND (as above)
  //      ...(d) AUTOOUT=1
  
  
  // IN endp's come up in the cpu/peripheral domain
  
  
  // setup INT4 as internal source for GPIF interrupts
  // using INT4CLR (SFR), automatically enabled
  INTSETUP |= 0x03;   // Enable INT4 FIFO/GPIF Autovectoring
  SYNCDELAY;          // used here as "delay"
	EXIF &=  ~0x40;     // just in case one was pending...
  SYNCDELAY;          // used here as "delay"
  GPIFIRQ = 0x02;
  SYNCDELAY;          // 
  GPIFIE = 0x02;      // Enable GPIFWF interrupt
  SYNCDELAY;          // 
  EIE |= 0x04;        // Enable INT4 ISR, EIE.2(EIEX4=1)
  
  // turn debug LED[3:0] off...
  ledX_rdvar = LED0_OFF;
  ledX_rdvar = LED1_OFF;
  ledX_rdvar = LED2_OFF;
  ledX_rdvar = LED3_OFF;
}

#define GPIFTRIGWR 0
#define GPIFTRIGRD 4

#define GPIF_EP2 0
#define GPIF_EP4 1
#define GPIF_EP6 2
#define GPIF_EP8 3

void TD_Poll( void )
{ // Called repeatedly while the device is idle
  static WORD xFIFOTC_OUT = 0x0000;
  static WORD xFIFOTC_IN = 0x0000;
  
  // Registers which require a synchronization delay, see section 15.14
  // FIFORESET        FIFOPINPOLAR
  // INPKTEND         OUTPKTEND
  // EPxBCH:L         REVCTL
  // GPIFTCB3         GPIFTCB2
  // GPIFTCB1         GPIFTCB0
  // EPxFIFOPFH:L     EPxAUTOINLENH:L
  // EPxFIFOCFG       EPxGPIFFLGSEL
  // PINFLAGSxx       EPxFIFOIRQ
  // EPxFIFOIE        GPIFIRQ
  // GPIFIE           GPIFADRH:L
  // UDMACRCH:L       EPxGPIFTRIG
  // GPIFTRIG
  
  // Note: The pre-REVE EPxGPIFTCH/L register are affected, as well...
  //      ...these have been replaced by GPIFTC[B3:B0] registers


  if( td_poll_handles_transfers )
  {
  
    // Handle OUT data...
  

    if( endp_auto_mode_enabled )
    {
      // AUTOOUT=1, core handles transfers    
      // ...cpu is not in the data path...
      ledX_rdvar = LED1_ON;     // visual
    }
    else
    {
      // AUTOOUT=0, cpu handles transfers
      // is the host sending data...
      if( !( EP2468STAT & 0x01 ) )
      { 
        // EP2EF=0, when endp buffer "not" empty
    
        // ...at this point the pkt. switched from the usb domain to the cpu domain
    
        // if the host sent a pkt... then a buffer was available
        
        // AUTOOUT=0, so pass pkt. to peripheral domain - (GPIF)
        //  (1)...OUTPKTEND w/skip=0 when REVCTL.0=1 (ENH_PKT)
        //        SYNCDELAY;
        //        OUTPKTEND = 0x02;         // endp#; w/skip=0
        //
        //     ...additionally, the cpu may edit the packet data:
        //        - skip (OUTPKTEND = 0x82;)
        //        - modify data (via EPxFIFOBUF[i] and packet length (via EPxBCH/L)
      
        //  (2)...EPxBCL w/skip=0 when REVCTL.0=0 (ENH_PKT)
        //        SYNCDELAY;
        //        EP2BCL = 0x00;            // w/skip=0
        //
        //     ...additionally, the cpu may:
        //        - skip (EP2BCL = 0x80;)
        //        - modify data (via EPxFIFOBUF[i])
        //          - however, cpu can't modify the packet length
        
        // REVCTL.0=0... so,
        SYNCDELAY;
        EP2BCL = 0x00;            // w/skip=0
        ledX_rdvar = LED0_ON;     // visual
      }
      else
      { 
        // host is "not" sending data...
      }    
    }
  
    // is the peripheral interface idle...
    if( GPIFTRIG & 0x80 )
    { 
      // DONE=1, when GPIF is "idle"
  
      // check if there's a pkt in the peripheral domain...
      if( EP24FIFOFLGS & 0x02 )
      { 
        // ...EF=1 when buffer "empty", no more data to xfr.
      }    
      else
      { 
        // EF=0, when slave fifo is "not empty"
        // ...the cpu passed the pkt. to the peripheral domain
    
        // check if peripheral "not full"...
        if( GPIFREADYSTAT & 0x02 )
        { 
          // RDY1=1, when peripheral is "not" FULL (tied to peripheral "full" flag)
    
          xFIFOTC_OUT = ( ( EP2FIFOBCH << 8 ) + EP2FIFOBCL );
      
          // NOTE: typ. this is where we'd check if pkt. contains data...
          // ...however:
          //    - the core doesn't notify the cpu of zero length OUT packets
          //      - this applies to both AUTO or MANUAL mode...
          //      - typ. this is handled "out-of-band" over endp0 or endp1...
          
          // NOTE: we're using EPxGPIFTCH/L registers here to show backwards
          // ...compatibility.  New implementations should use the new
          // ...unified GPIFTCB3, GPIFTCB2, GPIFTCB1, GPIFTCB0 registers 
          // ...these registers maintain a live update which the cpu can read
          // ...at anytime to determine the status of a long transfer...
          
          // setup GPIF transaction count
          SYNCDELAY;
          EP2GPIFTCH = EP2FIFOBCH;
          SYNCDELAY;
          EP2GPIFTCL = EP2FIFOBCL;  
        
          // trigger FIFO write transaction(s), using SFR
          // R/W=0, EP[1:0]=00 for EP2 write(s)
          SYNCDELAY;
          GPIFTRIG = GPIFTRIGWR | GPIF_EP2;  
      
          // NOTE: 512 bytes transfers in ~75usec on 8-bit async bus 
          // ...once master (GPIF) drains OUT pkt, it (re)arms to usb domain
          // ..."this" path is always auto, meaning core handles it...
        
          if( xFIFOTC_OUT < enum_pkt_size )
          { 
            // handle short pkt. to peripheral

            // wait for the transaction to terminate naturally...
            while( !( GPIFTRIG & 0x80 ) )
            { 
                // should take <75usec @ 8-bit async.
              ; // poll GPIFTRIG.7, DONE bit...
            }
          
            // TODO: signal "shortpkt" to peripheral peripheral here...
          }
          else
          { 
            // was max. pkt. size...
            // ...let transaction terminate naturally...
          }
          ledX_rdvar = LED0_OFF;   // visual
          ledX_rdvar = LED1_OFF;   // visual
        }
        else
        { 
          // RDY1=0, when peripheral is FULL
        }
      }
    }  
    else
    { 
      // DONE=0 when GPIF is "not" IDLE...
    }
  

    // Handle IN data...
  
  
    // is the peripheral interface idle...
    if( GPIFTRIG & 0x80 )
    { 
      // check if peripheral "not empty"...
      if( GPIFREADYSTAT & 0x01 )
      { 
        // RDY0=1, when peripheral "not" empty...
      
        if( EP68FIFOFLGS & 0x01 )
        { 
          // EP6FF=1, when fifo "full"
        }
        else
        { 
          // EP6FF=0, when fifo "not full", buffer available...
      
          // NOTE: we're using EPxGPIFTCH/L registers here to show backwards
          // ...compatibility.  New implementations should use the new
          // ...unified GPIFTCB3, GPIFTCB2, GPIFTCB1, GPIFTCB0 registers 
          // ...these registers maintain a live update which the cpu can read
          // ...at anytime to determine the status of a long transfer...

          // setup GPIF transaction count
          SYNCDELAY;
          EP6GPIFTCH = 0x02;    
          SYNCDELAY;
          EP6GPIFTCL = 0x00;    
          
          // trigger FIFO read transaction(s), using SFR
          // R/W=1, EP[1:0]=FIFO_EpNum for EPx read(s)
          SYNCDELAY;
          GPIFTRIG = GPIFTRIGRD | GPIF_EP6; 
        
          // NOTE: 512 bytes transfers in ~75usec on 8-bit async bus 
          // NOTE: 64 bytes transfers in ~10usec on 8-bit async bus 
        
          // wait for the transaction to terminate naturally...
          SYNCDELAY;                // 
          while( !( GPIFTRIG & 0x80 ) )
          { 
              // should take <75usec @ 8-bit async.
            ; // poll GPIFTRIG.7, DONE bit...
          }
        
          if( endp_auto_mode_enabled )
          {
            // AUTOOUT=1, core handles transfers    
            // ...cpu is not in the data path...
            // ...however, cpu is responsible for committing "short packets"
            
            xFIFOTC_IN = ( ( EP6FIFOBCH << 8 ) + EP6FIFOBCL );
            
            if( xFIFOTC_IN < enum_pkt_size )
            { 
              // handle short pkt. from peripheral
              SYNCDELAY;        // 
              INPKTEND = 0x06;  // w/skip=0;.commit however many bytes in pkt.
              SYNCDELAY;        // 
            }
            else
            {
              // core commits packet via EPxAUTOINLENH/L registers
            }
          }
          else
          {
            // AUTOIN=0, so 8051 pass pkt. to host...
            SYNCDELAY;          // 
            INPKTEND = 0x06;    // w/skip=0;.commit however many bytes in pkt.
            SYNCDELAY;          // 
                                // ...NOTE: this also handles "shortpkt"
          } 
          
          // NOTE: the cpu can optionally:
          //    ...- modify data (via EPxFIFOBUF[i] and packet length (via EPxBCH/L)
          //    ...
          //    ...when REVCTL.0=1
          //    ...- skip current packet;
          //    ...INPKTEND = 0x86;   // w/skip=1, skip current packet
          //
        }
      }
      else
      { 
        // master has all the data the peripheral sent...
      }
    }
    else
    { 
      // peripheral interface busy...
    }
  }
  else
  { 
    // handle data transfers via vend_ax cmnds...
  }
  
}

BOOL TD_Suspend( void )          
{ // Called before the device goes into suspend mode
   return( TRUE );
}

BOOL TD_Resume( void )          
{ // Called after the device resumes
   return( TRUE );
}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产精品传媒视频| 欧美日韩在线免费视频| 日韩av一区二区在线影视| 国产精品国产成人国产三级 | 欧美一区二区啪啪| 欧美色图片你懂的| 欧美男生操女生| 日韩欧美国产午夜精品| 日韩欧美一区二区视频| 26uuu精品一区二区| 国产视频一区在线播放| 国产亲近乱来精品视频| 中文字幕一区二区三区视频| 亚洲欧美日韩国产成人精品影院| 亚洲欧美在线另类| 午夜婷婷国产麻豆精品| 麻豆久久久久久久| 激情成人午夜视频| jlzzjlzz欧美大全| 欧美在线你懂得| 欧美xingq一区二区| 国产亚洲一二三区| 一区二区三区在线免费| 五月天中文字幕一区二区| 久99久精品视频免费观看| 成人丝袜视频网| 欧美日韩日日摸| 国产婷婷色一区二区三区四区 | 日韩欧美电影一二三| 国产日韩影视精品| 一区二区免费在线| 国产精品资源在线观看| 成人涩涩免费视频| 欧美高清www午色夜在线视频| 久久综合av免费| 一区二区三区色| 国产一区二区美女| 欧美视频在线观看一区| 国产色综合久久| 亚洲风情在线资源站| 黄页网站大全一区二区| 在线免费亚洲电影| 久久久精品人体av艺术| 天堂成人免费av电影一区| 国产91精品露脸国语对白| 91精品欧美综合在线观看最新| 久久亚洲综合色| 日本中文字幕一区二区有限公司| 国产盗摄女厕一区二区三区 | 午夜a成v人精品| 成人午夜伦理影院| 日韩网站在线看片你懂的| 亚洲四区在线观看| 国产精品自拍三区| 欧美日本一区二区三区四区| 国产精品美女视频| 国产真实乱偷精品视频免| 欧美日韩成人一区| 中文字幕免费不卡在线| 天天影视色香欲综合网老头| 在线观看国产91| 亚洲欧美偷拍卡通变态| 成人黄色一级视频| 国产精品女上位| 国产91精品欧美| 国产欧美精品一区二区色综合 | 91国产视频在线观看| 亚洲视频 欧洲视频| 国产成人亚洲综合a∨猫咪 | 成人禁用看黄a在线| 久久久www成人免费毛片麻豆 | 蜜臀精品一区二区三区在线观看| 欧美色精品在线视频| 亚洲综合区在线| 欧美亚男人的天堂| 亚洲成人av一区| 欧美精品乱码久久久久久按摩| 亚洲午夜免费电影| 91精品国产乱| 久国产精品韩国三级视频| 精品日韩在线一区| 国产精品主播直播| 欧美精品一区二区高清在线观看| 青娱乐精品在线视频| 欧美精品在线观看一区二区| 一区二区激情视频| 欧美一级视频精品观看| 性欧美疯狂xxxxbbbb| 欧美日高清视频| 天天做天天摸天天爽国产一区| 欧美三级日韩在线| 日韩高清一区在线| 欧美在线一区二区三区| 婷婷久久综合九色国产成人| 日韩视频在线你懂得| 国产成人自拍网| 国产精品日韩精品欧美在线| av在线免费不卡| 亚洲国产aⅴ成人精品无吗| 欧美精品日日鲁夜夜添| 国内成人精品2018免费看| 国产午夜亚洲精品午夜鲁丝片 | 国产日韩欧美a| 成人午夜电影网站| 亚洲风情在线资源站| 久久伊99综合婷婷久久伊| 国产精品小仙女| 国产精品看片你懂得| 91成人国产精品| 视频在线在亚洲| 久久婷婷综合激情| 91丝袜国产在线播放| 久久精品国产一区二区| 自拍偷拍欧美精品| 精品成人a区在线观看| 91亚洲精品久久久蜜桃| 久久99久久精品| 亚洲一区二区三区在线| 国产拍欧美日韩视频二区| 欧美日韩精品欧美日韩精品一 | 4438x成人网最大色成网站| 国产成人自拍高清视频在线免费播放| 亚洲国产美国国产综合一区二区| 久久国产精品无码网站| 一区二区三区不卡视频| 国产欧美一区二区三区网站 | 国产精品资源在线观看| 久久99深爱久久99精品| 亚洲精品乱码久久久久久日本蜜臀| 日韩三级精品电影久久久| 一本色道久久综合亚洲aⅴ蜜桃| 久久99国产精品久久| 亚洲第一福利视频在线| 亚洲蜜桃精久久久久久久| 国产日产欧美一区二区三区 | 中文字幕一区二区三区不卡| 精品国产伦一区二区三区观看方式 | 成人激情文学综合网| 精品一区二区在线观看| 日本aⅴ免费视频一区二区三区| 亚洲精品欧美激情| 亚洲精品乱码久久久久久黑人| 中文字幕av一区二区三区高| 久久人人超碰精品| 精品久久久久久久人人人人传媒 | 视频一区二区国产| 亚洲国产综合在线| 亚洲午夜av在线| 亚洲成av人影院在线观看网| 亚洲国产欧美一区二区三区丁香婷| 亚洲欧美偷拍三级| 一二三区精品福利视频| 一区二区三区在线免费观看| 亚洲一级在线观看| 亚洲777理论| 午夜精品久久久| 三级影片在线观看欧美日韩一区二区| 亚洲成av人片一区二区三区| 亚洲国产一区视频| 日韩高清不卡一区| 久久疯狂做爰流白浆xx| 国内一区二区视频| 不卡高清视频专区| 91在线视频免费91| 精品视频一区 二区 三区| 欧美久久久久中文字幕| 精品日韩一区二区三区免费视频| 久久综合999| 综合久久一区二区三区| 亚洲一区二区三区激情| 日本午夜一本久久久综合| 国产一区福利在线| 成人在线综合网| 欧美日韩国产一级片| 精品国产免费人成电影在线观看四季 | 色婷婷久久一区二区三区麻豆| 色综合色综合色综合色综合色综合| 色婷婷精品大视频在线蜜桃视频| 欧美猛男超大videosgay| 欧美成人a在线| 国产精品动漫网站| 天天av天天翘天天综合网色鬼国产| 亚洲高清免费在线| 亚洲综合色视频| 视频一区在线播放| 成人免费不卡视频| 91精品国产福利| 中文字幕av不卡| 亚洲与欧洲av电影| 丰满白嫩尤物一区二区| 精品视频一区 二区 三区| 国产日韩精品一区二区浪潮av| 亚洲女同ⅹxx女同tv| 久久国产欧美日韩精品| 欧美午夜寂寞影院| 国产精品视频线看| 久久爱另类一区二区小说| 一本大道久久精品懂色aⅴ| 久久综合丝袜日本网| 亚洲国产精品人人做人人爽|