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

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

?? ata.c

?? 自己心理明白
?? C
字號:
/*! \file ata.c \brief IDE-ATA hard disk interface driver. */
//*****************************************************************************
//
// File Name	: 'ata.c'
// Title		: IDE-ATA interface driver for hard disks
// Author		: Pascal Stang
// Date			: 11/22/2000
// Revised		: 4/19/2003
// Version		: 0.3
// Target MCU	: Atmel AVR Series
// Editor Tabs	: 4
//
// NOTE: This code is currently below version 1.0, and therefore is considered
// to be lacking in some functionality or documentation, or may not be fully
// tested.  Nonetheless, you can expect most functions to work.
//
// This code is distributed under the GNU Public License
//		which can be found at http://www.gnu.org/licenses/gpl.txt
//
//*****************************************************************************

#include "option.h"
#include "def.h"
#include "44b.h"
#include "44blib.h"
#include "ata.h"

//extern void Delay(int time);
//#define DEBUG_ATA	1

// global variables

// drive information
typeDriveInfo ataDriveInfo;


void ataInit(void)
{

}

void ataDriveInit(void)
{
	U8 i;
	unsigned char* buffer = (U8 *)malloc(HDD_Sector_Size);

	// read drive identity
	Uart_Printf("\r\nScanning IDE interface...\r\n");
	// Wait for drive to be ready
	ataStatusWait(ATA_SR_BSY, ATA_SR_BSY);
	// issue identify command
	ataWriteByte(ATA_REG_CMDSTATUS1, 0xEC);
	// wait for drive to request data transfer
	ataStatusWait(ATA_SR_DRQ, ATA_SR_DRQ);
	Delay(200);
	// read in the data
	ataReadDataBuffer(buffer, HDD_Sector_Size);

	// set local drive info parameters
	ataDriveInfo.cylinders =		*( ((unsigned int*) buffer) + ATA_IDENT_CYLINDERS );
	ataDriveInfo.heads =			*( ((unsigned int*) buffer) + ATA_IDENT_HEADS );
	ataDriveInfo.sectors =			*( ((unsigned int*) buffer) + ATA_IDENT_SECTORS );
	ataDriveInfo.LBAsupport =		*( ((unsigned int*) buffer) + ATA_IDENT_FIELDVALID );
	ataDriveInfo.sizeinsectors =	*( (unsigned long*) (buffer + ATA_IDENT_LBASECTORS*2) );
	// copy model string
	for(i=0; i<40; i+=2)
	{
		// correct for byte order
		ataDriveInfo.model[i  ] = buffer[(ATA_IDENT_MODEL*2) + i + 1];
		ataDriveInfo.model[i+1] = buffer[(ATA_IDENT_MODEL*2) + i    ];
	}
	// terminate string
	ataDriveInfo.model[40] = 0;

	// process and print info
	if(ataDriveInfo.LBAsupport)
	{
		// LBA support
		Uart_Printf("Drive 0: %dMB\n", ataDriveInfo.sizeinsectors/(1000000/512) );
		Uart_Printf("LBA mode -- MODEL: ");
	}
	else
	{
		// CHS, no LBA support
		// calculate drive size
		ataDriveInfo.sizeinsectors = (unsigned long) ataDriveInfo.cylinders*
												ataDriveInfo.heads*ataDriveInfo.sectors;
		Uart_Printf("Drive 0: %dMB\n", ataDriveInfo.sizeinsectors/(1000000/512) );
		Uart_Printf("CHS mode C=%d H=%d S=%d -- MODEL:\n", ataDriveInfo.cylinders, ataDriveInfo.heads, ataDriveInfo.sectors );
	}
	// print model information	
	Uart_Printf("%s\n",ataDriveInfo.model);

	// initialize local disk parameters
	//ataDriveInfo.cylinders = ATA_DISKPARM_CLYS;
	//ataDriveInfo.heads = ATA_DISKPARM_HEADS;
	//ataDriveInfo.sectors = ATA_DISKPARM_SECTORS;

}

void ataDiskErr(void)
{
	unsigned char b;

	b = ataReadByte(ATA_REG_ERROR);	
	Uart_Printf("ATA Error: %u\n",b); 
}

void ataSetDrivePowerMode(U8 DriveNo, U8 mode, U8 timeout)
{
	// select drive
	ataDriveSelect(DriveNo);
	// Wait for drive to be ready
	ataStatusWait(ATA_SR_BSY, ATA_SR_BSY);

	// set mode
	switch(mode)
	{
	case ATA_DISKMODE_SPINDOWN:		ataWriteByte(ATA_REG_CMDSTATUS1, ATA_CMD_SPINDOWN); break;
	case ATA_DISKMODE_SPINUP:		ataWriteByte(ATA_REG_CMDSTATUS1, ATA_CMD_SPINUP); break;
	case ATA_DISKMODE_SETTIMEOUT:
		ataWriteByte(ATA_REG_SECCOUNT, timeout);
		ataWriteByte(ATA_REG_CMDSTATUS1, ATA_CMD_IDLE_5SU);
		break;
	case ATA_DISKMODE_SLEEP:		ataWriteByte(ATA_REG_CMDSTATUS1, ATA_CMD_SLEEP); break;
	default:
		break;
	}
}

void ataPrintSector( U8 *Buffer)
{
	U8 i;
	U16 j;
	U8 *buf;
	U8 s;

	buf = Buffer;
	
	// print the low order address indicies
	Uart_Printf("     00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F  0123456789ABCDEF\r\n");
	Uart_Printf("     -----------------------------------------------  ---- ASCII -----\r\n");
	
	// print the data
	for(j=0; j<0x20; j++)
	{
		// print the high order address index for this line
		Uart_Printf("%u",j<<4);
		Uart_Printf(" ");

		// print the hex data
		for(i=0; i<0x10; i++)
		{
			Uart_Printf("%u",buf[(j<<4)+i]);
			Uart_Printf(" ");
		}
		
		// leave some space
		Uart_Printf(" ");

		// print the ascii data
		for(i=0; i<0x10; i++)
		{
			s = buf[(j<<4)+i]; 
			// make sure character is printable
			if(s >= 0x20)
			{
				Uart_Printf("%u",s);
			}
			else
			{
				Uart_Printf(" ");
			}

		}
		Uart_Printf("\n");
	}
}

void ataReadDataBuffer(U8 *Buffer, U16 numBytes)
{
	unsigned int i;
	U16 DATA_TEMP;

	// read data from drive
	for(i=0;i<(numBytes/2);i++)
	{
		DATA_TEMP=*((volatile unsigned char*) ATA_REG_BASE + ATA_REG_DATA);
		*Buffer++ = DATA_TEMP&0xff;
		*Buffer++ = (DATA_TEMP>>8)&0xff;
	}
}

void ataWriteDataBuffer(U8 *Buffer, U16 numBytes)
{
	unsigned int i;
	U16 DATA_TEMP;

	// write data to drive
    for(i=0;i<(numBytes/2);i++)
    {
      DATA_TEMP=*Buffer;
      Buffer++;
      *((volatile unsigned char*) ATA_REG_BASE + ATA_REG_DATA) = (((*Buffer)<<8)&0xff00)+DATA_TEMP;
      Buffer++;
    }		
}

U8 ataStatusWait(U8 mask, U8 waitStatus)
{
	register U8 status;

	Delay(100);

	// wait for desired status
	while( ((status = ataReadByte(ATA_REG_CMDSTATUS1)) & mask) == waitStatus );

	return status;
}


unsigned char ataReadSectorsCHS(	unsigned char Drive, 
											unsigned char Head, 
											unsigned int Track,
											unsigned char Sector,
											unsigned int numsectors,
											unsigned char *Buffer)
{
  	unsigned char temp;

	// Wait for drive to be ready
	temp = ataStatusWait(ATA_SR_BSY, ATA_SR_BSY);

  	// Prepare parameters...
	ataWriteByte(ATA_REG_HDDEVSEL, 0xA0+(Drive ? 0x10:00)+Head); // CHS mode/Drive/Head
	ataWriteByte(ATA_REG_CYLHI, Track>>8);  		// MSB of track
	ataWriteByte(ATA_REG_CYLLO, Track);     		// LSB of track
  	ataWriteByte(ATA_REG_STARTSEC, Sector);    	// sector
	ataWriteByte(ATA_REG_SECCOUNT, numsectors);	// # of sectors

	// Issue read sector command...
  	ataWriteByte(ATA_REG_CMDSTATUS1, 0x21);

	// Wait for drive to be ready
	temp = ataStatusWait(ATA_SR_BSY, ATA_SR_BSY);

	if (temp & ATA_SR_ERR)
	{
		Uart_Printf("RD ERR\r\n");
		return 1;
	}

	// Wait for drive to request data transfer
	ataStatusWait(ATA_SR_DRQ, 0);

	// read data from drive
	ataReadDataBuffer(Buffer, (HDD_Sector_Size)*numsectors);

	// Return the error bit from the status register...
	temp = ataReadByte(ATA_REG_CMDSTATUS1);	// read status register

	return (temp & ATA_SR_ERR) ? 1:0;
}


unsigned char ataWriteSectorsCHS(unsigned char Drive, 
											unsigned char Head, 
											unsigned int Track,
											unsigned char Sector,
											unsigned int numsectors,
											unsigned char *Buffer)
{
  	unsigned char temp;

	// Wait for drive to be ready
	temp = ataStatusWait(ATA_SR_BSY, ATA_SR_BSY);

  	// Prepare parameters...
	ataWriteByte(ATA_REG_HDDEVSEL, 0xA0+(Drive ? 0x10:00)+Head); // CHS mode/Drive/Head
	ataWriteByte(ATA_REG_CYLHI, Track>>8);  		// MSB of track
	ataWriteByte(ATA_REG_CYLLO, Track);     		// LSB of track
  	ataWriteByte(ATA_REG_STARTSEC, Sector);    	// sector
	ataWriteByte(ATA_REG_SECCOUNT, numsectors);	// # of sectors

	// Issue write sector command
  	ataWriteByte(ATA_REG_CMDSTATUS1, 0x31);

	//Delay(100);

	// Wait for drive to request data transfer
	ataStatusWait(ATA_SR_DRQ, 0);

	// write data to drive
	ataWriteDataBuffer(Buffer, (HDD_Sector_Size)*numsectors);
	
	// Wait for drive to finish write
	temp = ataStatusWait(ATA_SR_BSY, ATA_SR_BSY);

	// check for errors
	if (temp & ATA_SR_ERR)
	{
		Uart_Printf("WR ERR\r\n");
		return 1;
	}

	// Return the error bit from the status register...
	return (temp & ATA_SR_ERR) ? 1:0;
}

unsigned char ataReadSectorsLBA(	unsigned char Drive, 
											unsigned long lba,
											unsigned int numsectors,
                            		unsigned char *Buffer)
{
  	unsigned int cyl, head, sect;
  	unsigned char temp;

#ifdef DEBUG_ATA
	Uart_Printf("ATA LBA read %u %u %u\n",lab,numsectors,(unsigned int)Buffer);
#endif

	sect = (int) ( lba & 0x000000ffL );
	lba = lba >> 8;
	cyl = (int) ( lba & 0x0000ffff );
	lba = lba >> 16;
	head = ( (int) ( lba & 0x0fL ) ) | ATA_HEAD_USE_LBA;

	temp = ataReadSectorsCHS( Drive, head, cyl, sect, numsectors, Buffer );

	if(temp)
		ataDiskErr();
	return temp;
}

unsigned char ataWriteSectorsLBA(	unsigned char Drive, 
												unsigned long lba,
												unsigned int numsectors,
                            			unsigned char *Buffer)
{
	unsigned int cyl, head, sect;
	unsigned char temp;

#ifdef DEBUG_ATA
	Uart_Printf("ATA LBA read %u %u %u\n",lab,numsectors,(unsigned int)Buffer);
#endif

	sect = (int) ( lba & 0x000000ffL );
	lba = lba >> 8;
	cyl = (int) ( lba & 0x0000ffff );
	lba = lba >> 16;
	head = ( (int) ( lba & 0x0fL ) ) | ATA_HEAD_USE_LBA;

	temp = ataWriteSectorsCHS( Drive, head, cyl, sect, numsectors, Buffer );

	if(temp)
		ataDiskErr();
	return temp;
}                            		


unsigned char ataReadSectors(	unsigned char Drive, 
										unsigned long lba,
										unsigned int numsectors,
                            	unsigned char *Buffer)
{
  	unsigned int cyl, head, sect;
  	unsigned char temp;

	// check if drive supports native LBA mode
	if(ataDriveInfo.LBAsupport)
	{
		// drive supports using native LBA
		temp = ataReadSectorsLBA(Drive, lba, numsectors, Buffer);
	}
	else
	{
		// drive required CHS access
		#ifdef DEBUG_ATA
			// do this defore destroying lba
			Uart_Printf("ATA LBA for CHS read: LBA=%u\n",lba);
		#endif

		// convert LBA to pseudo CHS
		// remember to offset the sector count by one
		sect = (U8) (lba % ataDriveInfo.sectors)+1;
		lba = lba / ataDriveInfo.sectors;
		head = (U8) (lba % ataDriveInfo.heads);
		lba = lba / ataDriveInfo.heads;
		cyl = (U16) lba;

		#ifdef DEBUG_ATA
			Uart_Printf("C:H:S=%u:%u:%u\n",cyl,head,sect);
		#endif

		temp = ataReadSectorsCHS( Drive, head, cyl, sect, numsectors, Buffer );
	}

	if(temp)
		ataDiskErr();
	return temp;
}


unsigned char ataWriteSectors(unsigned char Drive, 
										unsigned long lba,
										unsigned int numsectors,
                            	unsigned char *Buffer)
{
  	unsigned int cyl, head, sect;
  	unsigned char temp;

	// check if drive supports native LBA mode
	if(ataDriveInfo.LBAsupport)
	{
		// drive supports using native LBA
		temp = ataWriteSectorsLBA(Drive, lba, numsectors, Buffer);
	}
	else
	{
		// drive required CHS access
		#ifdef DEBUG_ATA
			// do this defore destroying lba
			Uart_Printf("ATA LBA for CHS write: LAB=%u\n",lba);
		#endif

		// convert LBA to pseudo CHS
		// remember to offset the sector count by one
		sect = (U8) (lba % ataDriveInfo.sectors)+1;
		lba = lba / ataDriveInfo.sectors;
		head = (U8) (lba % ataDriveInfo.heads);
		lba = lba / ataDriveInfo.heads;
		cyl = (U16) lba;

		#ifdef DEBUG_ATA
			Uart_Printf("C:H:S=%u:%u:%u\n",cyl,head,sect);
		#endif

		temp = ataWriteSectorsCHS( Drive, head, cyl, sect, numsectors, Buffer );
	}

	if(temp)
		ataDiskErr();
	return temp;
}                            		

void ataDriveSelect(U8 DriveNo)
{
	ataWriteByte(ATA_REG_HDDEVSEL, 0xA0+(DriveNo ? 0x10:00)); // Drive selection
}
 
//----------------------------------------------------------------------------
// Set drive mode (STANDBY, IDLE)
//----------------------------------------------------------------------------
/*#define STANDBY 0
#define IDLE    1
#define SLEEP   2 
*/ 

/*
unsigned char SetMode(unsigned char DriveNo, unsigned char Mode, unsigned char PwrDown) 
{
  WriteBYTE(CMD, 6, 0xA0 + (DriveNo ? 0x10:0x00)); // Select drive
  WriteBYTE(CMD, 2, (PwrDown ? 0x01:0x00)); // Enable automatic power down
  switch (Mode) 
  {
    case STANDBY: WriteBYTE(CMD,7, 0xE2); break;
    case IDLE:    WriteBYTE(CMD,7, 0xE3); break;
    // NOTE: To recover from sleep, either issue a soft or hardware reset !
    // (But not on all drives, f.ex seagate ST3655A it's not nessecary to reset
    // but only to go in Idle mode, But on a Conner CFA170A it's nessecary with
    // a reset)
    case SLEEP:   WriteBYTE(CMD,7, 0xE6); break;
  }
  Timer10mSec=10000;
  while ((ReadBYTE(CMD,7) & 0xC0)!=0x40 && Timer10mSec); // Wait for DRDY & NOT BUSY 
  if (Timer10mSec==0) return 0xFF;                       //   or timeout
 
  // Return the error register...
  return ReadBYTE(CMD, 1);
}

*/

U8 ataReadByte(U8 reg)
{
	register U8 ret;
	//sbi(MCUCR, SRW);			// enable RAM waitstate
	ret = *((volatile unsigned char*) ATA_REG_BASE + reg);
	//cbi(MCUCR, SRW);			// disable RAM waitstate
	return ret;
}

void ataWriteByte(U8 reg, U8 data)
{
	//sbi(MCUCR, SRW);			// enable RAM waitstate
	*((volatile unsigned char*) ATA_REG_BASE + reg) = data;
	//cbi(MCUCR, SRW);			// disable RAM waitstate
}

 
void ataShowRegisters(unsigned char DriveNo) 
{ 
	ataWriteByte(ATA_REG_HDDEVSEL, 0xA0 + (DriveNo ? 0x10:0x00)); // Select drive
	
	Uart_Printf("R0: DATALOW  = 0x%u\n",ataReadByte(ATA_REG_DATA));
	Uart_Printf("R1: ERROR    = 0x%u\n",ataReadByte(ATA_REG_ERROR));
	Uart_Printf("R2: SECT CNT = 0x%u\n",ataReadByte(ATA_REG_SECCOUNT));
	Uart_Printf("R3: SECT NUM = 0x%u\n",ataReadByte(ATA_REG_STARTSEC));
	Uart_Printf("R4: CYL LOW  = 0x%u\n",ataReadByte(ATA_REG_CYLLO));
	Uart_Printf("R5: CYL HIGH = 0x%u\n",ataReadByte(ATA_REG_CYLHI));
	Uart_Printf("R6: HEAD/DEV = 0x%u\n",ataReadByte(ATA_REG_HDDEVSEL));
	Uart_Printf("R7: CMD/STA  = 0x%u\n",ataReadByte(ATA_REG_CMDSTATUS1));
} 

unsigned char ataSWReset(void)
{
	ataWriteByte(ATA_REG_HDDEVSEL, 0x06);	// SRST and nIEN bits
	Delay(10);	// 10uS delay
	ataWriteByte(ATA_REG_HDDEVSEL, 0x02);	// nIEN bits
	Delay(10);	// 10 uS delay
   
   while( (ataReadByte(ATA_REG_CMDSTATUS1) & 0xC0) != 0x40 ); // Wait for DRDY and not BSY
    
  	return ataReadByte(ATA_REG_CMDSTATUS1) + ataReadByte(ATA_REG_ERROR);
}

/*
unsigned char ATA_Idle(unsigned char Drive)
{

  WriteBYTE(CMD, 6, 0xA0 + (Drive ? 0x10:0x00)); // Select drive
  WriteBYTE(CMD,7, 0xE1);

  while ((ReadBYTE(CMD,7) & 0xC0)!=0x40); // Wait for DRDY & NOT BUSY 

  // Return the error register...
  return ReadBYTE(CMD, 1);
}
*/

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
麻豆91免费观看| 亚洲国产色一区| 国产麻豆91精品| 久久久久久久国产精品影院| 国产精品12区| 中文字幕视频一区二区三区久| 成人av资源网站| 一区二区欧美国产| 欧美高清视频不卡网| 久久成人免费电影| 国产精品私人自拍| 在线这里只有精品| 日本成人在线不卡视频| 26uuu成人网一区二区三区| 不卡av在线网| 午夜精品久久久久久久蜜桃app| 制服丝袜中文字幕亚洲| 国产一区二区三区免费在线观看| 国产精品乱人伦一区二区| 色吊一区二区三区| 久久不见久久见免费视频1| 国产亚洲一区字幕| 欧美在线不卡一区| 精品一区精品二区高清| 亚洲老司机在线| 日韩欧美美女一区二区三区| av网站免费线看精品| 日韩精品一二区| 欧美激情在线一区二区| 欧美网站一区二区| 国产iv一区二区三区| 亚洲一本大道在线| 久久精品日韩一区二区三区| 欧美中文字幕亚洲一区二区va在线| 久久国产精品99精品国产| 亚洲另类在线制服丝袜| 精品久久人人做人人爽| 色婷婷综合久色| 国产成人免费高清| 日产精品久久久久久久性色| 国产精品九色蝌蚪自拍| 欧美一级艳片视频免费观看| 99久久精品国产网站| 国产一区二区伦理片| 亚洲a一区二区| 亚洲日本在线视频观看| 久久久久久久电影| 日韩一区二区在线看| 欧美亚洲日本国产| 成人app软件下载大全免费| 蜜桃视频在线观看一区| 夜夜揉揉日日人人青青一国产精品| 国产目拍亚洲精品99久久精品| 欧美电影影音先锋| 欧亚洲嫩模精品一区三区| 国产98色在线|日韩| 免费成人结看片| 亚洲第一电影网| 一区二区三区在线视频播放| 综合婷婷亚洲小说| 国产欧美久久久精品影院| 欧美一区二区三区在线看| 欧美日韩免费在线视频| 91久久一区二区| 91美女福利视频| 色婷婷综合视频在线观看| 91亚洲大成网污www| 成人午夜在线播放| 国产自产视频一区二区三区| 美国十次综合导航| 日本不卡在线视频| 男人操女人的视频在线观看欧美| 午夜av一区二区| 丝袜美腿亚洲一区| 日日夜夜精品视频天天综合网| 亚洲一区二区欧美激情| 亚洲一区二区三区中文字幕在线 | 欧美日韩精品一二三区| 色婷婷香蕉在线一区二区| 91色在线porny| 在线视频亚洲一区| 欧美日韩一区二区在线观看 | 水野朝阳av一区二区三区| 一级特黄大欧美久久久| 亚洲国产综合视频在线观看| 亚洲国产裸拍裸体视频在线观看乱了| 亚洲女同一区二区| 亚洲成人激情自拍| 日本不卡在线视频| 国产精品亚洲第一区在线暖暖韩国| 国产成人av福利| 91在线你懂得| 欧美精品一二三| 日韩一区二区精品葵司在线| 亚洲精品在线观看视频| 国产免费久久精品| 亚洲午夜激情网页| 美国欧美日韩国产在线播放| 国产一区二区91| 色综合久久精品| 日韩视频123| 国产精品免费久久久久| 亚洲国产日韩精品| 激情六月婷婷久久| eeuss鲁片一区二区三区| 欧美色男人天堂| 久久久久久久网| 亚洲国产精品自拍| 久久99精品国产| 91日韩精品一区| 精品蜜桃在线看| 亚洲精品欧美综合四区| 男女性色大片免费观看一区二区| 国产盗摄一区二区三区| 欧美无砖砖区免费| 久久久久久久精| 亚洲国产精品一区二区久久恐怖片 | www.欧美日韩| 日韩午夜在线观看| 亚洲日韩欧美一区二区在线| 久久电影网站中文字幕| 91传媒视频在线播放| 精品国产欧美一区二区| 一区二区三区在线观看动漫 | 国产精品一品二品| 在线观看亚洲a| 欧美精彩视频一区二区三区| 亚洲国产乱码最新视频 | 亚洲香蕉伊在人在线观| 国产一区二区三区综合| 欧美精品三级日韩久久| 中文字幕日本不卡| 久久成人免费日本黄色| 欧美日韩视频专区在线播放| **欧美大码日韩| 国产黄色91视频| 日韩欧美中文字幕制服| 亚洲一区二区欧美日韩| 91亚洲午夜精品久久久久久| 久久亚洲一区二区三区四区| 日本不卡一区二区三区高清视频| 欧洲国内综合视频| 亚洲天堂网中文字| 国产91丝袜在线播放| 精品国产凹凸成av人导航| 亚洲超碰97人人做人人爱| 91在线免费视频观看| 国产精品丝袜一区| 国产在线精品不卡| 日韩欧美国产综合| 日本欧美肥老太交大片| 欧美日韩国产高清一区| 一区2区3区在线看| 91亚洲精品久久久蜜桃网站| 中文字幕在线不卡| 成人免费高清视频在线观看| 久久久久久久国产精品影院| 国产一区二区三区综合| 久久综合色之久久综合| 国产一区二区不卡| 国产女人水真多18毛片18精品视频| 国产一区欧美一区| 久久欧美一区二区| 国产精品99久久久久久似苏梦涵| 精品国产电影一区二区| 久久av老司机精品网站导航| 欧美一级欧美一级在线播放| 日本人妖一区二区| 日韩精品中文字幕一区| 狠狠网亚洲精品| 久久精品人人做人人爽人人| 国产99精品国产| 中文字幕一区二区在线播放| 色婷婷综合五月| 午夜天堂影视香蕉久久| 欧美一区二区三区白人| 久久国产精品区| 中文久久乱码一区二区| 色网站国产精品| 日本欧美在线观看| www国产成人| 国产成人免费在线视频| ...xxx性欧美| 欧美三级电影网| 老司机午夜精品99久久| 久久久国际精品| 成人av免费在线观看| 亚洲一级二级在线| 日韩欧美成人激情| 成人午夜免费电影| 亚洲影视在线播放| 日韩欧美在线网站| 国产成人av网站| 亚洲第一电影网| 久久久久国产成人精品亚洲午夜| 成人少妇影院yyyy| 亚洲成人动漫av| 久久精品男人的天堂| 欧亚一区二区三区| 国产一区日韩二区欧美三区|