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

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

?? memory.c

?? 自制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欧美| 91小视频在线观看| 免费不卡在线观看| 亚洲自拍另类综合| 亚洲欧美综合色| 精品噜噜噜噜久久久久久久久试看| 91久久精品网| 成人精品电影在线观看| 激情文学综合网| 视频一区免费在线观看| 一区二区三区高清在线| 国产精品另类一区| 久久亚洲一级片| 精品日韩欧美一区二区| 欧美精品自拍偷拍| 色丁香久综合在线久综合在线观看| 国产精品中文字幕日韩精品| 免费看精品久久片| 无码av免费一区二区三区试看| 亚洲欧洲日韩综合一区二区| 国产欧美一区视频| 久久精品视频在线看| 日韩欧美卡一卡二| 日韩一区二区在线播放| 欧美片网站yy| 欧美日韩精品一区二区三区| 色爱区综合激月婷婷| 91女厕偷拍女厕偷拍高清| 成人免费视频免费观看| 国产精品一品二品| 国产精品自拍网站| 国产aⅴ精品一区二区三区色成熟| 国产一区二区三区精品视频| 精品一区二区三区香蕉蜜桃 | 4438x亚洲最大成人网| 在线中文字幕一区| 欧亚洲嫩模精品一区三区| 91免费版在线看| 91蜜桃视频在线| 欧美图区在线视频| 欧美精品一卡两卡| 日韩午夜激情av| 精品成人在线观看| 久久久久国产精品麻豆ai换脸 | 91精品91久久久中77777| 91美女视频网站| 欧美日韩免费一区二区三区| 欧美精品三级日韩久久| 日韩欧美在线网站| 久久久777精品电影网影网| 欧美激情资源网| 亚洲另类春色校园小说| 一级日本不卡的影视| 亚洲国产精品一区二区久久| 日韩激情视频网站| 国产一区二区毛片| 91亚洲国产成人精品一区二三| 欧美在线一二三| 日韩手机在线导航| 中文欧美字幕免费| 亚洲一区二区黄色| 精品一区二区三区久久久| 国产v综合v亚洲欧| 欧美日韩在线播放一区| 欧美大尺度电影在线| 国产日本一区二区| 亚洲综合在线第一页| 精品一区二区三区久久| 97精品电影院| 777午夜精品视频在线播放| 久久午夜羞羞影院免费观看| 亚洲欧美日韩电影| 极品少妇xxxx偷拍精品少妇| 成人av免费在线播放| 欧美精品1区2区| 国产精品入口麻豆原神| 午夜欧美一区二区三区在线播放| 国产一区二区三区久久久| 色婷婷久久综合| 亚洲精品一线二线三线| 亚洲激情欧美激情| 国产一区二区三区免费观看| 欧美性一二三区| 欧美精彩视频一区二区三区| 亚洲v中文字幕| av亚洲精华国产精华精| 欧美不卡一区二区三区四区| 亚洲美女精品一区| 国产福利一区二区三区视频在线| 欧洲av在线精品| 国产精品久久久久久福利一牛影视| 午夜久久久久久| 成人动漫精品一区二区| 欧美一区二区精美| 亚洲综合免费观看高清完整版在线 | 成人视屏免费看| 欧美岛国在线观看| 日韩主播视频在线| 色综合久久久久综合体| 久久精品综合网| 日本中文字幕一区二区有限公司| 色悠悠久久综合| 国产午夜精品在线观看| 久久精品国产99久久6| 欧美性大战久久久久久久 | 夜夜嗨av一区二区三区四季av| 国产精品原创巨作av| 91精品国产综合久久久久久久 | 韩国精品一区二区| 欧美日韩精品欧美日韩精品| 亚洲四区在线观看| 成人午夜视频福利| 久久久亚洲精华液精华液精华液| 天堂资源在线中文精品| 欧美日韩一区在线| 亚洲国产综合人成综合网站| 色综合天天性综合| 自拍偷拍亚洲综合| a美女胸又www黄视频久久| 久久精品视频在线免费观看| 国产在线看一区| 久久久亚洲高清| 国产精品一二三| 国产网红主播福利一区二区| 国产乱人伦偷精品视频免下载| 精品国产电影一区二区| 久久99国内精品| 精品蜜桃在线看| 国产一区二区三区在线观看免费| 亚洲精品一区二区三区福利 | 国产mv日韩mv欧美| 国产精品污网站| 不卡av在线网| 亚洲精选视频免费看| 欧洲精品视频在线观看| 亚洲va在线va天堂| 6080yy午夜一二三区久久| 日韩在线观看一区二区| 欧美电影免费提供在线观看| 久久精品国产亚洲一区二区三区| 日韩欧美成人午夜| 国产在线视频精品一区| 久久精品亚洲乱码伦伦中文| www.av精品| 一区二区三区高清在线| 6080日韩午夜伦伦午夜伦| 激情综合色综合久久| 国产色综合久久| av资源站一区| 婷婷综合五月天| 日韩免费高清视频| 成人亚洲精品久久久久软件| 日韩理论片中文av| 精品污污网站免费看| 久久精品国产澳门| 国产精品美女视频| 欧美日韩一区二区三区在线看| 免费不卡在线观看| 国产精品美女久久久久aⅴ国产馆 国产精品美女久久久久av爽李琼 国产精品美女久久久久高潮 | 日韩欧美综合在线| 国产精品538一区二区在线| 中文字幕一区二区三区色视频| 在线免费不卡电影| 美女视频第一区二区三区免费观看网站 | 欧美福利视频一区| 国产一区二区三区不卡在线观看| 亚洲欧洲成人自拍| 欧美精品高清视频| 成人亚洲精品久久久久软件| 亚洲成人先锋电影| 国产欧美日韩一区二区三区在线观看| 色综合天天天天做夜夜夜夜做| 蜜臀久久99精品久久久久宅男| 中文字幕久久午夜不卡| 777奇米四色成人影色区| 国产成人精品亚洲午夜麻豆| 亚洲一区二区三区视频在线| 亚洲精品一区二区三区蜜桃下载| 色婷婷综合久色| 精品在线免费观看| 一区二区成人在线观看| 久久精品日产第一区二区三区高清版| 日本丶国产丶欧美色综合| 韩国在线一区二区| 亚洲国产视频一区| 中文字幕精品三区| 日韩精品中文字幕一区 | 91玉足脚交白嫩脚丫在线播放| 日本午夜一本久久久综合| 中文字幕日韩一区| 精品国产髙清在线看国产毛片| 在线精品视频一区二区三四 | 7777精品伊人久久久大香线蕉的| 成人午夜又粗又硬又大| 久久精品99久久久| 亚洲第一综合色| 亚洲精品综合在线| 中文字幕乱码久久午夜不卡 |