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

? 歡迎來(lái)到蟲(chóng)蟲(chóng)下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲(chóng)蟲(chóng)下載站

?? memory.c

?? arm7的JTAG調(diào)試工具源碼
?? C
字號(hào):
/*
 * system.c:	implement the routes used to access memory under
 *				DEBUG state.
 *
 * Copyright (C) 2004, OPEN-JTAG, All rights reserved.
 */

#include <windows.h>
#include "../types.h"
#include "../xjerr.h"
#include "../tapctrl.h"
#include "arm7tdmi.h"

/*
 * To meet the dynamic timing requirements of the memory system, any attempt to 
 * access system state must occur synchronously to it. The ARM7TDMI core must 
 * be forced to synchronize back to MCLK. This is controlled by bit 33 (BREAKPT)
 * of scan chain 1. 
 *
 * After a system-speed instruction has been scanned into the data bus and 
 * clocked into the pipeline, the RESTART instruction must be loaded into the TAP
 * controller. This causes the ARM7TDMI core to behave as follows:
 *	1. The ARM7TDMI core automatically synchronizes back to MCLK;
 *	2. It executes the instruction at system speed;
 *	3. It re-enters debug state.
 */




/*
 * arm7tdmi_mem_rd8() - 
 *		used to read memory at 8-bit width
 *
 *		@addr: address of memory to be read from
 *		@buf:  buf used to store the content read from memory
 *		@len:  lenngth in terms of 8-bit byte to be read
 */
int arm7tdmi_mem_rd8(u32 addr, u8 *buf, int len)
{
	int status;
	int counter;
	u32 r0, r1;
	u32 shift_in[2];
	u32 shift_out[2];

	if(buf == NULL)
		return XJERR_INVALID_PARAMATER;

	//In DEBUG state?
	if(arm7tdmi_status.state != ARM7TDMI_DEBUG_STATE)
		return XJERR_TARGET_RUNNING;
	
	//Select scan chain 1
	status = arm7tdmi_connect_scanchain(1);
	if(status != XJ_OK)
		return status;

	//Backup R0 & R1 first
	arm7tdmi_core_rd_reg(ARM7TDMI_R0, &r0);
	arm7tdmi_core_rd_reg(ARM7TDMI_R1, &r1);


	//Read memory ...
	for(counter = 0; counter < len; counter++){
		//put the address to be read to RO
		arm7tdmi_core_wri_reg(ARM7TDMI_R0, addr);

		//NOP
		shift_in[0] = ARM7TDMI_NOP;
		shift_in[1] = ARM7TDMI_DEBUG_SPEED;
		arm7tdmi_acs_sc1(shift_in, shift_out);

		/* 
		 * Set bit 33 of scan chain 1, next instruct 
		 * will be executed at system speed.
		 */
		//NOP
		shift_in[0] = ARM7TDMI_NOP;
		shift_in[1] = ARM7TDMI_SYSTEM_SPEED;
		arm7tdmi_acs_sc1(shift_in, shift_out);

		//LDRB R1, [R0] = 0xE5D01000
		shift_in[0] = 0xE5D01000;				
		shift_in[1] = ARM7TDMI_DEBUG_SPEED;
		arm7tdmi_acs_sc1(shift_in, shift_out);

		tapctrl_acs_ireg(JTAG_BYPASS);
		tapctrl_acs_ireg(JTAG_RESTART);
		tapctrl_acs_ireg(JTAG_INTEST);

		//NOP
		shift_in[0] = ARM7TDMI_NOP;
		shift_in[1] = ARM7TDMI_DEBUG_SPEED;
		arm7tdmi_acs_sc1(shift_in, shift_out);

		//STRB R1, [R1] = 0xE5C11000
		shift_in[0] = 0xE5C11000;
		shift_in[1] = ARM7TDMI_DEBUG_SPEED;
		arm7tdmi_acs_sc1(shift_in, shift_out);

		//NOP x 3
		shift_in[0] = ARM7TDMI_NOP;
		shift_in[1] = ARM7TDMI_DEBUG_SPEED;
		arm7tdmi_acs_sc1(shift_in, shift_out);
		arm7tdmi_acs_sc1(shift_in, shift_out);
		arm7tdmi_acs_sc1(shift_in, shift_out);

		//Update buffer and address
		*buf = (u8)shift_out[0];
		buf += 1;
		addr += 1;

	}

	//Restore R0 & R1 before exit
	arm7tdmi_core_wri_reg(ARM7TDMI_R0, r0);
	arm7tdmi_core_wri_reg(ARM7TDMI_R1, r1);

	return XJ_OK;
}


/*
 * arm7tdmi_mem_wri8() - 
 *		used to wri memory at 8-bit width
 *
 *		@addr: destination address of memory to be written
 *		@buf:  point to the content to be written
 *		@len:  lenngth in terms of 8-bit byte to be written
 */
int arm7tdmi_mem_wri8(u32 addr, const u8 *buf, int len)
{
	int status;
	int counter;
	u32 r0, r1;
	u32 shift_in[2];
	u32 shift_out[2];
	
	if(buf == NULL)
		return XJERR_INVALID_PARAMATER;

	//In DEBUG state?
	if(arm7tdmi_status.state != ARM7TDMI_DEBUG_STATE)
		return XJERR_TARGET_RUNNING;
	
	//Select scan chain 1
	status = arm7tdmi_connect_scanchain(1);
	if(status != XJ_OK)
		return status;

	//Backup R0 & R1 first
	arm7tdmi_core_rd_reg(ARM7TDMI_R0, &r0);
	arm7tdmi_core_rd_reg(ARM7TDMI_R1, &r1);


	//Write memory ...
	for(counter = 0; counter < len; counter++){
		//put the address into R0
		arm7tdmi_core_wri_reg(ARM7TDMI_R0, addr);

		//put the new value into R1
		arm7tdmi_core_wri_reg(ARM7TDMI_R1, *buf);

		//NOP
		shift_in[0] = ARM7TDMI_NOP;
		shift_in[1] = ARM7TDMI_DEBUG_SPEED;
		arm7tdmi_acs_sc1(shift_in, shift_out);

		/* 
		 * Set bit 33 of scan chain 1, next instruct 
		 * will be executed at system speed.
		 */
		//NOP
		shift_in[0] = ARM7TDMI_NOP;
		shift_in[1] = ARM7TDMI_SYSTEM_SPEED;
		arm7tdmi_acs_sc1(shift_in, shift_out);

		//STRB R1, [R0] = 0xE5C01000
		shift_in[0] = 0xE5C01000;				
		shift_in[1] = ARM7TDMI_DEBUG_SPEED;
		arm7tdmi_acs_sc1(shift_in, shift_out);

		tapctrl_acs_ireg(JTAG_BYPASS);
		tapctrl_acs_ireg(JTAG_RESTART);
		tapctrl_acs_ireg(JTAG_INTEST);

		//NOP
		shift_in[0] = ARM7TDMI_NOP;
		shift_in[1] = ARM7TDMI_DEBUG_SPEED;
		arm7tdmi_acs_sc1(shift_in, shift_out);
		
		//Update address and buffer
		addr += 1;
		buf += 1;
	}


	//Restore R0 & R1 before exit
	arm7tdmi_core_wri_reg(ARM7TDMI_R0, r0);
	arm7tdmi_core_wri_reg(ARM7TDMI_R1, r1);

	return XJ_OK;
}


/*
 * arm7tdmi_mem_rd16() - 
 *		used to read memory at 16-bit width
 *
 *		@addr: address of memory to be read from
 *		@buf:  buf used to store the content read from memory
 *		@len:  lenngth in terms of 16-bit byte to be read
 */
int arm7tdmi_mem_rd16(u32 addr, u16 *buf, int len)
{
	int status;
	int counter;
	u32 r0, r1;
	u32 shift_in[2];
	u32 shift_out[2];

	if(buf == NULL)
		return XJERR_INVALID_PARAMATER;

	//In DEBUG state?
	if(arm7tdmi_status.state != ARM7TDMI_DEBUG_STATE)
		return XJERR_TARGET_RUNNING;
	
	//Select scan chain 1
	status = arm7tdmi_connect_scanchain(1);
	if(status != XJ_OK)
		return status;

	/* 
	 * Shape the address to make sure that the least significant 
	 * 1 bit of addr is zero.
	 */
	addr &= 0xFFFFFFFE;

	//Backup R0 & R1 first
	arm7tdmi_core_rd_reg(ARM7TDMI_R0, &r0);
	arm7tdmi_core_rd_reg(ARM7TDMI_R1, &r1);

	//Read memory ...
	for(counter = 0; counter < len; counter++){
		//put the address to be read to RO
		arm7tdmi_core_wri_reg(ARM7TDMI_R0, addr);

		//NOP
		shift_in[0] = ARM7TDMI_NOP;
		shift_in[1] = ARM7TDMI_DEBUG_SPEED;
		arm7tdmi_acs_sc1(shift_in, shift_out);

		/* 
		 * Set bit 33 of scan chain 1, next instruct 
		 * will be executed at system speed.
		 */
		//NOP
		shift_in[0] = ARM7TDMI_NOP;
		shift_in[1] = ARM7TDMI_SYSTEM_SPEED;
		arm7tdmi_acs_sc1(shift_in, shift_out);

		//LDRH R1, [R0] = 0xE1D010B0
		shift_in[0] = 0xE1D010B0;				
		shift_in[1] = ARM7TDMI_DEBUG_SPEED;
		arm7tdmi_acs_sc1(shift_in, shift_out);

		tapctrl_acs_ireg(JTAG_BYPASS);
		tapctrl_acs_ireg(JTAG_RESTART);
		tapctrl_acs_ireg(JTAG_INTEST);

		//NOP
		shift_in[0] = ARM7TDMI_NOP;
		shift_in[1] = ARM7TDMI_DEBUG_SPEED;
		arm7tdmi_acs_sc1(shift_in, shift_out);

		//STRH R1, [R1] = 0xE1C110B0
		shift_in[0] = 0xE1C110B0;
		shift_in[1] = ARM7TDMI_DEBUG_SPEED;
		arm7tdmi_acs_sc1(shift_in, shift_out);

		//NOP x 3
		shift_in[0] = ARM7TDMI_NOP;
		shift_in[1] = ARM7TDMI_DEBUG_SPEED;
		arm7tdmi_acs_sc1(shift_in, shift_out);
		arm7tdmi_acs_sc1(shift_in, shift_out);
		arm7tdmi_acs_sc1(shift_in, shift_out);

		//Update buffer and address
		*buf = (u16)shift_out[0];
		buf += 1;
		addr += 2;
	}

	//Restore R0 & R1 before exit
	arm7tdmi_core_wri_reg(ARM7TDMI_R0, r0);
	arm7tdmi_core_wri_reg(ARM7TDMI_R1, r1);

	return XJ_OK;
}


/*
 * arm7tdmi_mem_wri16() - 
 *		used to wri memory at 16-bit width
 *
 *		@addr: destination address of memory to be written
 *		@buf:  point to the content to be written
 *		@len:  lenngth in terms of 16-bit byte to be written
 */
int arm7tdmi_mem_wri16(u32 addr, const u16 *buf, int len)
{
	int status;
	int counter;
	u32 r0, r1;
	u32 shift_in[2];
	u32 shift_out[2];

	if(buf == NULL)
		return XJERR_INVALID_PARAMATER;

	//In DEBUG state?
	if(arm7tdmi_status.state != ARM7TDMI_DEBUG_STATE)
		return XJERR_TARGET_RUNNING;
	
	//Select scan chain 1
	status = arm7tdmi_connect_scanchain(1);
	if(status != XJ_OK)
		return status;

	/* 
	 * Shape the address to make sure that the least significant 
	 * 1 bit of addr is zero.
	 */
	addr &= 0xFFFFFFFE;

	//Backup R0 & R1 first
	arm7tdmi_core_rd_reg(ARM7TDMI_R0, &r0);
	arm7tdmi_core_rd_reg(ARM7TDMI_R1, &r1);


	//Write memory ...
	for(counter = 0; counter < len; counter++){
		//put the address into R0
		arm7tdmi_core_wri_reg(ARM7TDMI_R0, addr);

		//put the new value into R1
		arm7tdmi_core_wri_reg(ARM7TDMI_R1, *buf);

		//NOP
		shift_in[0] = ARM7TDMI_NOP;
		shift_in[1] = ARM7TDMI_DEBUG_SPEED;
		arm7tdmi_acs_sc1(shift_in, shift_out);

		/* 
		 * Set bit 33 of scan chain 1, next instruct 
		 * will be executed at system speed.
		 */
		//NOP
		shift_in[0] = ARM7TDMI_NOP;
		shift_in[1] = ARM7TDMI_SYSTEM_SPEED;
		arm7tdmi_acs_sc1(shift_in, shift_out);

		//STRH R1, [R0] = 0xE1C010B0
		shift_in[0] = 0xE1C010B0;				
		shift_in[1] = ARM7TDMI_DEBUG_SPEED;
		arm7tdmi_acs_sc1(shift_in, shift_out);

		tapctrl_acs_ireg(JTAG_BYPASS);
		tapctrl_acs_ireg(JTAG_RESTART);
		tapctrl_acs_ireg(JTAG_INTEST);

		//NOP
		shift_in[0] = ARM7TDMI_NOP;
		shift_in[1] = ARM7TDMI_DEBUG_SPEED;
		arm7tdmi_acs_sc1(shift_in, shift_out);
		
		//Update address and buffer
		addr += 2;
		buf += 1;
	}


	//Restore R0 & R1 before exit
	arm7tdmi_core_wri_reg(ARM7TDMI_R0, r0);
	arm7tdmi_core_wri_reg(ARM7TDMI_R1, r1);

	return XJ_OK;
}


/*
 * arm7tdmi_mem_rd32() - 
 *		used to read memory at 32-bit width
 *
 *		@addr: address of memory to be read from
 *		@buf:  buf used to store the content read from memory
 *		@len:  lenngth in terms of 32-bit byte to be read
 */
int arm7tdmi_mem_rd32(u32 addr, u32 *buf, int len)
{
	int status;
	int counter;
	u32 r0, r1;
	u32 shift_in[2];
	u32 shift_out[2];

	if(buf == NULL)
		return XJERR_INVALID_PARAMATER;

	//In DEBUG state?
	if(arm7tdmi_status.state != ARM7TDMI_DEBUG_STATE)
		return XJERR_TARGET_RUNNING;
	
	//Select scan chain 1
	status = arm7tdmi_connect_scanchain(1);
	if(status != XJ_OK)
		return status;

	/* 
	 * Shape the address to make sure that the least significant 
	 * 2 bits of addr are zero.
	 */
	addr &= 0xFFFFFFFC;

	//Backup R0 & R1 first
	arm7tdmi_core_rd_reg(ARM7TDMI_R0, &r0);
	arm7tdmi_core_rd_reg(ARM7TDMI_R1, &r1);

	//Read memory ...
	for(counter = 0; counter < len; counter++){
		//put the address to be read to RO
		arm7tdmi_core_wri_reg(ARM7TDMI_R0, addr);

		//NOP
		shift_in[0] = ARM7TDMI_NOP;
		shift_in[1] = ARM7TDMI_DEBUG_SPEED;
		arm7tdmi_acs_sc1(shift_in, shift_out);

		/* 
		 * Set bit 33 of scan chain 1, next instruct 
		 * will be executed at system speed.
		 */
		//NOP
		shift_in[0] = ARM7TDMI_NOP;
		shift_in[1] = ARM7TDMI_SYSTEM_SPEED;
		arm7tdmi_acs_sc1(shift_in, shift_out);

		//LDR R1, [R0] = 0xE5901000
		shift_in[0] = 0xE5901000;				
		shift_in[1] = ARM7TDMI_DEBUG_SPEED;
		arm7tdmi_acs_sc1(shift_in, shift_out);

		tapctrl_acs_ireg(JTAG_BYPASS);
		tapctrl_acs_ireg(JTAG_RESTART);
		tapctrl_acs_ireg(JTAG_INTEST);

		//NOP
		shift_in[0] = ARM7TDMI_NOP;
		shift_in[1] = ARM7TDMI_DEBUG_SPEED;
		arm7tdmi_acs_sc1(shift_in, shift_out);

		//STR R1, [R1] = 0xE5811000
		shift_in[0] = 0xE5811000;
		shift_in[1] = ARM7TDMI_DEBUG_SPEED;
		arm7tdmi_acs_sc1(shift_in, shift_out);

		//NOP x 3
		shift_in[0] = ARM7TDMI_NOP;
		shift_in[1] = ARM7TDMI_DEBUG_SPEED;
		arm7tdmi_acs_sc1(shift_in, shift_out);
		arm7tdmi_acs_sc1(shift_in, shift_out);
		arm7tdmi_acs_sc1(shift_in, shift_out);

		//Update buffer and address
		*buf = shift_out[0];
		buf += 1;
		addr += 4;
	}

	//Restore R0 & R1 before exit
	arm7tdmi_core_wri_reg(ARM7TDMI_R0, r0);
	arm7tdmi_core_wri_reg(ARM7TDMI_R1, r1);

	return XJ_OK;
}


/*
 * arm7tdmi_mem_wri32() - 
 *		used to wri memory at 32-bit width
 *
 *		@addr: destination address of memory to be written
 *		@buf:  point to the content to be written
 *		@len:  lenngth in terms of 32-bit byte to be written
 */
int arm7tdmi_mem_wri32(u32 addr, const u32 *buf, int len)
{
	int status;
	int counter;
	u32 r0, r1;
	u32 shift_in[2];
	u32 shift_out[2];

	if(buf == NULL)
		return XJERR_INVALID_PARAMATER;

	//In DEBUG state?
	if(arm7tdmi_status.state != ARM7TDMI_DEBUG_STATE)
		return XJERR_TARGET_RUNNING;
	
	//Select scan chain 1
	status = arm7tdmi_connect_scanchain(1);
	if(status != XJ_OK)
		return status;

	/* 
	 * Shape the address to make sure that the least significant 
	 * 2 bits of addr are zero.
	 */
	addr &= 0xFFFFFFFC;

	//Backup R0 & R1 first
	arm7tdmi_core_rd_reg(ARM7TDMI_R0, &r0);
	arm7tdmi_core_rd_reg(ARM7TDMI_R1, &r1);


	//Write memory ...
	for(counter = 0; counter < len; counter++){
		//put the address into R0
		arm7tdmi_core_wri_reg(ARM7TDMI_R0, addr);

		//put the new value into R1
		arm7tdmi_core_wri_reg(ARM7TDMI_R1, *buf);

		//NOP
		shift_in[0] = ARM7TDMI_NOP;
		shift_in[1] = ARM7TDMI_DEBUG_SPEED;
		arm7tdmi_acs_sc1(shift_in, shift_out);

		/* 
		 * Set bit 33 of scan chain 1, next instruct 
		 * will be executed at system speed.
		 */
		//NOP
		shift_in[0] = ARM7TDMI_NOP;
		shift_in[1] = ARM7TDMI_SYSTEM_SPEED;
		arm7tdmi_acs_sc1(shift_in, shift_out);

		//STR R1, [R0] = 0xE5801000
		shift_in[0] = 0xE5801000;				
		shift_in[1] = ARM7TDMI_DEBUG_SPEED;
		arm7tdmi_acs_sc1(shift_in, shift_out);

		tapctrl_acs_ireg(JTAG_BYPASS);
		tapctrl_acs_ireg(JTAG_RESTART);
		tapctrl_acs_ireg(JTAG_INTEST);

		//NOP
		shift_in[0] = ARM7TDMI_NOP;
		shift_in[1] = ARM7TDMI_DEBUG_SPEED;
		arm7tdmi_acs_sc1(shift_in, shift_out);
		
		//Update address and buffer
		addr += 4;
		buf += 1;
	}


	//Restore R0 & R1 before exit
	arm7tdmi_core_wri_reg(ARM7TDMI_R0, r0);
	arm7tdmi_core_wri_reg(ARM7TDMI_R1, r1);

	return XJ_OK;
}

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
777xxx欧美| 国产成人在线色| 欧美三级日韩三级| 亚洲免费在线观看视频| 99久久99久久综合| 亚洲国产日产av| 欧美日韩aaaaa| 日韩综合小视频| 日韩欧美一二三区| 国产一区二区三区观看| 久久久久久久电影| www.日韩在线| 一区二区三区不卡在线观看| 欧美日韩视频专区在线播放| 精品一区二区三区的国产在线播放 | 毛片一区二区三区| 26uuu精品一区二区| 成人黄色网址在线观看| 亚洲男人天堂一区| 欧美一区二区三区四区五区| 国产精品一区免费在线观看| 日韩美女精品在线| 欧美卡1卡2卡| 成人午夜av在线| 亚洲国产cao| 久久综合久久综合久久| 色综合一区二区| 久久99国内精品| 亚洲图片激情小说| 精品国产乱码久久久久久1区2区 | 亚洲一区免费在线观看| 精品卡一卡二卡三卡四在线| 色综合中文字幕国产 | 欧美日韩大陆在线| 国产激情精品久久久第一区二区| 亚洲精品成人精品456| 精品人在线二区三区| 99re这里只有精品6| 另类小说视频一区二区| 亚洲精品欧美在线| 久久精品网站免费观看| 制服视频三区第一页精品| 成人一级片在线观看| 日韩av中文在线观看| 亚洲欧洲一区二区三区| 欧美成人精品1314www| 欧洲一区在线观看| 成人免费毛片嘿嘿连载视频| 欧美aⅴ一区二区三区视频| 亚洲精品高清在线观看| 国产亚洲欧美日韩日本| 欧美tickling挠脚心丨vk| 欧美在线|欧美| 99视频超级精品| 国产成人精品影视| 久久精品国产99国产| 亚洲福利国产精品| 一区二区三区蜜桃网| 国产精品久久久久久久久快鸭 | 色综合久久综合| 国产成人av一区二区三区在线观看| 香蕉乱码成人久久天堂爱免费| 国产精品乱人伦| 中文在线一区二区| 国产亚洲精品久| 精品成人a区在线观看| 欧美一区二区日韩一区二区| 欧美日韩国产另类一区| 在线一区二区三区四区五区| 99re热这里只有精品视频| 高潮精品一区videoshd| 国产电影一区在线| 国产suv一区二区三区88区| 久久精品国产999大香线蕉| 免费观看30秒视频久久| 日韩电影在线一区| 日本中文在线一区| 免费精品视频在线| 久久精品国产色蜜蜜麻豆| 九九国产精品视频| 国产精品91xxx| 粉嫩高潮美女一区二区三区 | 亚洲欧美在线观看| 国产精品美女一区二区在线观看| 久久九九国产精品| 国产精品色婷婷| 亚洲欧美一区二区久久| 亚洲美女区一区| 亚洲成人动漫av| 日本一不卡视频| 裸体歌舞表演一区二区| 国产盗摄女厕一区二区三区 | 成人免费视频caoporn| 成人激情校园春色| 色94色欧美sute亚洲线路一久| 欧美色视频在线| 日韩亚洲欧美在线| 精品成a人在线观看| 中文字幕一区二区5566日韩| 亚洲最大成人综合| 美女视频一区在线观看| 国产在线精品国自产拍免费| 成人高清视频在线观看| 在线观看欧美日本| 精品国产一区久久| 中文字幕制服丝袜一区二区三区| 一区二区三区在线观看网站| 免费国产亚洲视频| 成人精品免费网站| 欧美日韩国产另类不卡| 精品国产91久久久久久久妲己 | 亚洲成人av在线电影| 捆绑调教一区二区三区| 成人av电影在线播放| 欧美日韩在线播| 久久九九影视网| 亚洲国产你懂的| 国产伦精品一区二区三区免费| aaa亚洲精品一二三区| 欧美精品99久久久**| 中文字幕乱码日本亚洲一区二区| 亚洲高清中文字幕| 国产ts人妖一区二区| 7777精品伊人久久久大香线蕉 | 国产亚洲福利社区一区| 一区二区三区免费看视频| 国产一区二区视频在线播放| 色婷婷狠狠综合| 久久综合九色综合久久久精品综合 | 日韩毛片高清在线播放| 看片网站欧美日韩| 欧美偷拍一区二区| 国产日韩欧美精品综合| 日本欧美韩国一区三区| 97精品久久久午夜一区二区三区| 日韩视频免费直播| 亚洲精品乱码久久久久久日本蜜臀| 国内精品视频一区二区三区八戒| 欧美日韩一区二区三区不卡| 国产精品乱人伦| 国产麻豆精品久久一二三| 91精品国产一区二区三区香蕉| 中文字幕日韩精品一区| 国产一区二区美女| 日韩一区二区中文字幕| 亚洲一区二区三区四区不卡| 91免费看视频| 国产精品久久久久久久久免费桃花 | 91精品国产综合久久精品app | 婷婷久久综合九色综合绿巨人| 成人av资源网站| 国产农村妇女毛片精品久久麻豆| 美女视频一区在线观看| 欧美久久久一区| 亚洲高清免费视频| 色狠狠综合天天综合综合| 国产精品久久久久婷婷二区次| 国产一区二区不卡老阿姨| 精品国产一区二区三区忘忧草| 蜜臀久久99精品久久久久宅男| 欧美日韩国产精品自在自线| 亚洲国产精品一区二区尤物区| 91免费视频大全| 亚洲综合999| 欧美天堂亚洲电影院在线播放| 亚洲激情六月丁香| 色诱视频网站一区| 亚洲色图欧洲色图婷婷| 91亚洲精华国产精华精华液| 国产精品精品国产色婷婷| 成人97人人超碰人人99| 综合色中文字幕| 91激情在线视频| 亚洲妇熟xx妇色黄| 91精品国产色综合久久| 日本不卡视频在线观看| 精品久久久三级丝袜| 国产大片一区二区| 国产精品国产三级国产aⅴ中文| 99久久久精品免费观看国产蜜| 亚洲日本青草视频在线怡红院| 91豆麻精品91久久久久久| 亚洲一二三级电影| 日韩一级片网站| 丁香天五香天堂综合| 一区精品在线播放| 在线免费不卡电影| 免费观看成人av| 中文字幕精品综合| 在线免费不卡电影| 美女网站视频久久| 国产精品视频在线看| 欧美亚洲动漫精品| 蜜臀久久99精品久久久久久9 | 久久99精品久久久| 久久嫩草精品久久久精品| 99久久er热在这里只有精品66| 亚洲高清一区二区三区| 久久一日本道色综合| 色综合天天综合网天天狠天天|