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

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

?? radeon_monitor.c

?? 底層驅動開發
?? C
?? 第 1 頁 / 共 2 頁
字號:
#include "radeonfb.h"#include "../edid.h"static struct fb_var_screeninfo radeonfb_default_var = {	.xres		= 640,	.yres		= 480,	.xres_virtual	= 640,	.yres_virtual	= 480,	.bits_per_pixel = 8,	.red		= { .length = 8 },	.green		= { .length = 8 },	.blue		= { .length = 8 },	.activate	= FB_ACTIVATE_NOW,	.height		= -1,	.width		= -1,	.pixclock	= 39721,	.left_margin	= 40,	.right_margin	= 24,	.upper_margin	= 32,	.lower_margin	= 11,	.hsync_len	= 96,	.vsync_len	= 2,	.vmode		= FB_VMODE_NONINTERLACED};static char *radeon_get_mon_name(int type){	char *pret = NULL;	switch (type) {		case MT_NONE:			pret = "no";			break;		case MT_CRT:			pret = "CRT";			break;		case MT_DFP:			pret = "DFP";			break;		case MT_LCD:			pret = "LCD";			break;		case MT_CTV:			pret = "CTV";			break;		case MT_STV:			pret = "STV";			break;	}	return pret;}#ifdef CONFIG_PPC_OF/* * Try to find monitor informations & EDID data out of the Open Firmware * device-tree. This also contains some "hacks" to work around a few machine * models with broken OF probing by hard-coding known EDIDs for some Mac * laptops internal LVDS panel. (XXX: not done yet) */static int __devinit radeon_parse_montype_prop(struct device_node *dp, u8 **out_EDID,					       int hdno){        static char *propnames[] = { "DFP,EDID", "LCD,EDID", "EDID",				     "EDID1", "EDID2",  NULL };	u8 *pedid = NULL;	u8 *pmt = NULL;	u8 *tmp;        int i, mt = MT_NONE;  		RTRACE("analyzing OF properties...\n");	pmt = (u8 *)get_property(dp, "display-type", NULL);	if (!pmt)		return MT_NONE;	RTRACE("display-type: %s\n", pmt);	/* OF says "LCD" for DFP as well, we discriminate from the caller of this	 * function	 */	if (!strcmp(pmt, "LCD") || !strcmp(pmt, "DFP"))		mt = MT_DFP;	else if (!strcmp(pmt, "CRT"))		mt = MT_CRT;	else {		if (strcmp(pmt, "NONE") != 0)			printk(KERN_WARNING "radeonfb: Unknown OF display-type: %s\n",			       pmt);		return MT_NONE;	}	for (i = 0; propnames[i] != NULL; ++i) {		pedid = (u8 *)get_property(dp, propnames[i], NULL);		if (pedid != NULL)			break;	}	/* We didn't find the EDID in the leaf node, some cards will actually	 * put EDID1/EDID2 in the parent, look for these (typically M6 tipb).	 * single-head cards have hdno == -1 and skip this step	 */	if (pedid == NULL && dp->parent && (hdno != -1))		pedid = get_property(dp->parent, (hdno == 0) ? "EDID1" : "EDID2", NULL);	if (pedid == NULL && dp->parent && (hdno == 0))		pedid = get_property(dp->parent, "EDID", NULL);	if (pedid == NULL)		return mt;	tmp = (u8 *)kmalloc(EDID_LENGTH, GFP_KERNEL);	if (!tmp)		return mt;	memcpy(tmp, pedid, EDID_LENGTH);	*out_EDID = tmp;	return mt;}static int __devinit radeon_probe_OF_head(struct radeonfb_info *rinfo, int head_no,					  u8 **out_EDID){        struct device_node *dp;	RTRACE("radeon_probe_OF_head\n");        dp = rinfo->of_node;        while (dp == NULL)		return MT_NONE;	if (rinfo->has_CRTC2) {		char *pname;		int len, second = 0;		dp = dp->child;		do {			if (!dp)				return MT_NONE;			pname = (char *)get_property(dp, "name", NULL);			if (!pname)				return MT_NONE;			len = strlen(pname);			RTRACE("head: %s (letter: %c, head_no: %d)\n",			       pname, pname[len-1], head_no);			if (pname[len-1] == 'A' && head_no == 0) {				int mt = radeon_parse_montype_prop(dp, out_EDID, 0);				/* Maybe check for LVDS_GEN_CNTL here ? I need to check out				 * what OF does when booting with lid closed				 */				if (mt == MT_DFP && rinfo->is_mobility)					mt = MT_LCD;				return mt;			} else if (pname[len-1] == 'B' && head_no == 1)				return radeon_parse_montype_prop(dp, out_EDID, 1);			second = 1;			dp = dp->sibling;		} while(!second);	} else {		if (head_no > 0)			return MT_NONE;		return radeon_parse_montype_prop(dp, out_EDID, -1);	}        return MT_NONE;}#endif /* CONFIG_PPC_OF */static int __devinit radeon_get_panel_info_BIOS(struct radeonfb_info *rinfo){	unsigned long tmp, tmp0;	char stmp[30];	int i;	if (!rinfo->bios_seg)		return 0;	if (!(tmp = BIOS_IN16(rinfo->fp_bios_start + 0x40))) {		printk(KERN_ERR "radeonfb: Failed to detect DFP panel info using BIOS\n");		rinfo->panel_info.pwr_delay = 200;		return 0;	}	for(i=0; i<24; i++)		stmp[i] = BIOS_IN8(tmp+i+1);	stmp[24] = 0;	printk("radeonfb: panel ID string: %s\n", stmp);	rinfo->panel_info.xres = BIOS_IN16(tmp + 25);	rinfo->panel_info.yres = BIOS_IN16(tmp + 27);	printk("radeonfb: detected LVDS panel size from BIOS: %dx%d\n",		rinfo->panel_info.xres, rinfo->panel_info.yres);	rinfo->panel_info.pwr_delay = BIOS_IN16(tmp + 44);	RTRACE("BIOS provided panel power delay: %d\n", rinfo->panel_info.pwr_delay);	if (rinfo->panel_info.pwr_delay > 2000 || rinfo->panel_info.pwr_delay <= 0)		rinfo->panel_info.pwr_delay = 2000;	/*	 * Some panels only work properly with some divider combinations	 */	rinfo->panel_info.ref_divider = BIOS_IN16(tmp + 46);	rinfo->panel_info.post_divider = BIOS_IN8(tmp + 48);	rinfo->panel_info.fbk_divider = BIOS_IN16(tmp + 49);	if (rinfo->panel_info.ref_divider != 0 &&	    rinfo->panel_info.fbk_divider > 3) {		rinfo->panel_info.use_bios_dividers = 1;		printk(KERN_INFO "radeondb: BIOS provided dividers will be used\n");		RTRACE("ref_divider = %x\n", rinfo->panel_info.ref_divider);		RTRACE("post_divider = %x\n", rinfo->panel_info.post_divider);		RTRACE("fbk_divider = %x\n", rinfo->panel_info.fbk_divider);	}	RTRACE("Scanning BIOS table ...\n");	for(i=0; i<32; i++) {		tmp0 = BIOS_IN16(tmp+64+i*2);		if (tmp0 == 0)			break;		RTRACE(" %d x %d\n", BIOS_IN16(tmp0), BIOS_IN16(tmp0+2));		if ((BIOS_IN16(tmp0) == rinfo->panel_info.xres) &&		    (BIOS_IN16(tmp0+2) == rinfo->panel_info.yres)) {			rinfo->panel_info.hblank = (BIOS_IN16(tmp0+17) - BIOS_IN16(tmp0+19)) * 8;			rinfo->panel_info.hOver_plus = ((BIOS_IN16(tmp0+21) -							 BIOS_IN16(tmp0+19) -1) * 8) & 0x7fff;			rinfo->panel_info.hSync_width = BIOS_IN8(tmp0+23) * 8;			rinfo->panel_info.vblank = BIOS_IN16(tmp0+24) - BIOS_IN16(tmp0+26);			rinfo->panel_info.vOver_plus = (BIOS_IN16(tmp0+28) & 0x7ff) - BIOS_IN16(tmp0+26);			rinfo->panel_info.vSync_width = (BIOS_IN16(tmp0+28) & 0xf800) >> 11;			rinfo->panel_info.clock = BIOS_IN16(tmp0+9);			/* Assume high active syncs for now until ATI tells me more... maybe we			 * can probe register values here ?			 */			rinfo->panel_info.hAct_high = 1;			rinfo->panel_info.vAct_high = 1;			/* Mark panel infos valid */			rinfo->panel_info.valid = 1;			RTRACE("Found panel in BIOS table:\n");			RTRACE("  hblank: %d\n", rinfo->panel_info.hblank);			RTRACE("  hOver_plus: %d\n", rinfo->panel_info.hOver_plus);			RTRACE("  hSync_width: %d\n", rinfo->panel_info.hSync_width);			RTRACE("  vblank: %d\n", rinfo->panel_info.vblank);			RTRACE("  vOver_plus: %d\n", rinfo->panel_info.vOver_plus);			RTRACE("  vSync_width: %d\n", rinfo->panel_info.vSync_width);			RTRACE("  clock: %d\n", rinfo->panel_info.clock);							return 1;		}	}	RTRACE("Didn't find panel in BIOS table !\n");	return 0;}/* Try to extract the connector informations from the BIOS. This * doesn't quite work yet, but it's output is still useful for * debugging */static void __devinit radeon_parse_connector_info(struct radeonfb_info *rinfo){	int offset, chips, connectors, tmp, i, conn, type;	static char* __conn_type_table[16] = {		"NONE", "Proprietary", "CRT", "DVI-I", "DVI-D", "Unknown", "Unknown",		"Unknown", "Unknown", "Unknown", "Unknown", "Unknown", "Unknown",		"Unknown", "Unknown", "Unknown"	};	if (!rinfo->bios_seg)		return;	offset = BIOS_IN16(rinfo->fp_bios_start + 0x50);	if (offset == 0) {		printk(KERN_WARNING "radeonfb: No connector info table detected\n");		return;	}	/* Don't do much more at this point but displaying the data if	 * DEBUG is enabled	 */	chips = BIOS_IN8(offset++) >> 4;	RTRACE("%d chips in connector info\n", chips);	for (i = 0; i < chips; i++) {		tmp = BIOS_IN8(offset++);		connectors = tmp & 0x0f;		RTRACE(" - chip %d has %d connectors\n", tmp >> 4, connectors);		for (conn = 0; ; conn++) {			tmp = BIOS_IN16(offset);			if (tmp == 0)				break;			offset += 2;			type = (tmp >> 12) & 0x0f;			RTRACE("  * connector %d of type %d (%s) : %04x\n",			       conn, type, __conn_type_table[type], tmp);		}	}}/* * Probe physical connection of a CRT. This code comes from XFree * as well and currently is only implemented for the CRT DAC, the * code for the TVDAC is commented out in XFree as "non working" */static int __devinit radeon_crt_is_connected(struct radeonfb_info *rinfo, int is_crt_dac){    int	          connected = 0;    /* the monitor either wasn't connected or it is a non-DDC CRT.     * try to probe it     */    if (is_crt_dac) {	unsigned long ulOrigVCLK_ECP_CNTL;	unsigned long ulOrigDAC_CNTL;	unsigned long ulOrigDAC_EXT_CNTL;	unsigned long ulOrigCRTC_EXT_CNTL;	unsigned long ulData;	unsigned long ulMask;	ulOrigVCLK_ECP_CNTL = INPLL(VCLK_ECP_CNTL);	ulData              = ulOrigVCLK_ECP_CNTL;	ulData             &= ~(PIXCLK_ALWAYS_ONb				| PIXCLK_DAC_ALWAYS_ONb);	ulMask              = ~(PIXCLK_ALWAYS_ONb				| PIXCLK_DAC_ALWAYS_ONb);	OUTPLLP(VCLK_ECP_CNTL, ulData, ulMask);	ulOrigCRTC_EXT_CNTL = INREG(CRTC_EXT_CNTL);	ulData              = ulOrigCRTC_EXT_CNTL;	ulData             |= CRTC_CRT_ON;	OUTREG(CRTC_EXT_CNTL, ulData);   	ulOrigDAC_EXT_CNTL = INREG(DAC_EXT_CNTL);	ulData             = ulOrigDAC_EXT_CNTL;	ulData            &= ~DAC_FORCE_DATA_MASK;	ulData            |=  (DAC_FORCE_BLANK_OFF_EN			       |DAC_FORCE_DATA_EN			       |DAC_FORCE_DATA_SEL_MASK);	if ((rinfo->family == CHIP_FAMILY_RV250) ||	    (rinfo->family == CHIP_FAMILY_RV280))	    ulData |= (0x01b6 << DAC_FORCE_DATA_SHIFT);	else	    ulData |= (0x01ac << DAC_FORCE_DATA_SHIFT);	OUTREG(DAC_EXT_CNTL, ulData);	ulOrigDAC_CNTL     = INREG(DAC_CNTL);	ulData             = ulOrigDAC_CNTL;	ulData            |= DAC_CMP_EN;	ulData            &= ~(DAC_RANGE_CNTL_MASK			       | DAC_PDWN);	ulData            |= 0x2;	OUTREG(DAC_CNTL, ulData);	mdelay(1);	ulData     = INREG(DAC_CNTL);	connected =  (DAC_CMP_OUTPUT & ulData) ? 1 : 0;  	ulData    = ulOrigVCLK_ECP_CNTL;	ulMask    = 0xFFFFFFFFL;	OUTPLLP(VCLK_ECP_CNTL, ulData, ulMask);	OUTREG(DAC_CNTL,      ulOrigDAC_CNTL     );	OUTREG(DAC_EXT_CNTL,  ulOrigDAC_EXT_CNTL );	OUTREG(CRTC_EXT_CNTL, ulOrigCRTC_EXT_CNTL);    }    return connected ? MT_CRT : MT_NONE;}/* * Parse the "monitor_layout" string if any. This code is mostly * copied from XFree's radeon driver */static int __devinit radeon_parse_monitor_layout(struct radeonfb_info *rinfo,						 const char *monitor_layout){	char s1[5], s2[5];	int i = 0, second = 0;	const char *s;	if (!monitor_layout)		return 0;	s = monitor_layout;	do {		switch(*s) {		case ',':			s1[i] = '\0';			i = 0;			second = 1;			break;		case ' ':		case '\0':			break;		default:			if (i > 4)				break;			if (second)				s2[i] = *s;			else				s1[i] = *s;			i++;		}	} while (*s++);	if (second)		s2[i] = 0;	else {		s1[i] = 0;		s2[0] = 0;	}	if (strcmp(s1, "CRT") == 0)		rinfo->mon1_type = MT_CRT;	else if (strcmp(s1, "TMDS") == 0)		rinfo->mon1_type = MT_DFP;	else if (strcmp(s1, "LVDS") == 0)		rinfo->mon1_type = MT_LCD;	if (strcmp(s2, "CRT") == 0)		rinfo->mon2_type = MT_CRT;	else if (strcmp(s2, "TMDS") == 0)		rinfo->mon2_type = MT_DFP;	else if (strcmp(s2, "LVDS") == 0)		rinfo->mon2_type = MT_LCD;	return 1;}/* * Probe display on both primary and secondary card's connector (if any) * by various available techniques (i2c, OF device tree, BIOS, ...) and * try to retreive EDID. The algorithm here comes from XFree's radeon * driver */void __devinit radeon_probe_screens(struct radeonfb_info *rinfo,				    const char *monitor_layout, int ignore_edid){#ifdef CONFIG_FB_RADEON_I2C	int ddc_crt2_used = 0;	#endif	int tmp, i;	radeon_parse_connector_info(rinfo);	if (radeon_parse_monitor_layout(rinfo, monitor_layout)) {		/*		 * If user specified a monitor_layout option, use it instead		 * of auto-detecting. Maybe we should only use this argument		 * on the first radeon card probed or provide a way to specify		 * a layout for each card ?		 */		RTRACE("Using specified monitor layout: %s", monitor_layout);#ifdef CONFIG_FB_RADEON_I2C		if (!ignore_edid) {			if (rinfo->mon1_type != MT_NONE)				if (!radeon_probe_i2c_connector(rinfo, ddc_dvi, &rinfo->mon1_EDID)) {					radeon_probe_i2c_connector(rinfo, ddc_crt2, &rinfo->mon1_EDID);					ddc_crt2_used = 1;				}			if (rinfo->mon2_type != MT_NONE)				if (!radeon_probe_i2c_connector(rinfo, ddc_vga, &rinfo->mon2_EDID) &&				    !ddc_crt2_used)					radeon_probe_i2c_connector(rinfo, ddc_crt2, &rinfo->mon2_EDID);		}#endif /* CONFIG_FB_RADEON_I2C */		if (rinfo->mon1_type == MT_NONE) {			if (rinfo->mon2_type != MT_NONE) {				rinfo->mon1_type = rinfo->mon2_type;				rinfo->mon1_EDID = rinfo->mon2_EDID;			} else {				rinfo->mon1_type = MT_CRT;				printk(KERN_INFO "radeonfb: No valid monitor, assuming CRT on first port\n");			}			rinfo->mon2_type = MT_NONE;			rinfo->mon2_EDID = NULL;		}	} else {		/*		 * Auto-detecting display type (well... trying to ...)		 */				RTRACE("Starting monitor auto detection...\n");#if DEBUG && defined(CONFIG_FB_RADEON_I2C)		{			u8 *EDIDs[4] = { NULL, NULL, NULL, NULL };			int mon_types[4] = {MT_NONE, MT_NONE, MT_NONE, MT_NONE};			int i;			for (i = 0; i < 4; i++)				mon_types[i] = radeon_probe_i2c_connector(rinfo,									  i+1, &EDIDs[i]);		}#endif /* DEBUG */		/*		 * Old single head cards		 */		if (!rinfo->has_CRTC2) {#ifdef CONFIG_PPC_OF			if (rinfo->mon1_type == MT_NONE)				rinfo->mon1_type = radeon_probe_OF_head(rinfo, 0,									&rinfo->mon1_EDID);#endif /* CONFIG_PPC_OF */#ifdef CONFIG_FB_RADEON_I2C			if (rinfo->mon1_type == MT_NONE)				rinfo->mon1_type =					radeon_probe_i2c_connector(rinfo, ddc_dvi,								   &rinfo->mon1_EDID);			if (rinfo->mon1_type == MT_NONE)				rinfo->mon1_type =

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产欧美一区二区在线| 亚洲三级小视频| 亚洲色图清纯唯美| 麻豆精品在线看| 91婷婷韩国欧美一区二区| 日韩欧美在线123| 亚洲欧洲制服丝袜| 国产·精品毛片| 日韩免费观看高清完整版在线观看| 国产精品久久网站| 久久se这里有精品| 在线视频综合导航| 国产精品国产a| 国产一区二区不卡在线| 欧美日韩国产片| 亚洲免费伊人电影| 丁香桃色午夜亚洲一区二区三区| 欧美美女一区二区在线观看| 亚洲人亚洲人成电影网站色| 国产美女精品人人做人人爽| 日韩精品中文字幕一区二区三区| 午夜精品一区在线观看| 在线观看欧美黄色| 亚洲伦理在线精品| 成人a区在线观看| 国产精品视频看| 国产一区二区在线观看视频| 欧美一区二区三区精品| 三级一区在线视频先锋| 欧美性猛交xxxx黑人交| 亚洲一区二区三区激情| 91麻豆高清视频| 亚洲少妇中出一区| 一本到高清视频免费精品| 亚洲视频网在线直播| 91丨porny丨户外露出| 成人欧美一区二区三区小说| 不卡视频免费播放| 国产精品久久久一本精品| 国产69精品一区二区亚洲孕妇| 国产欧美日韩激情| 成人毛片在线观看| 中文字幕综合网| 91搞黄在线观看| 亚洲二区在线视频| 日韩网站在线看片你懂的| 久久国产尿小便嘘嘘| 日韩欧美123| 国产不卡视频一区| 日韩一区在线免费观看| 在线精品国精品国产尤物884a| 亚洲综合一二三区| 欧美美女bb生活片| 国产一区二区网址| 成人欧美一区二区三区视频网页| 欧美综合在线视频| 天天免费综合色| 久久综合久久综合久久综合| 国产成人综合在线| 亚洲伦在线观看| 欧美一区二区二区| 国产99久久久国产精品免费看| 国产精品第13页| 欧美日韩在线亚洲一区蜜芽| 伦理电影国产精品| 中文字幕在线播放不卡一区| 精品视频在线免费观看| 国产美女在线精品| 亚洲永久精品国产| 久久亚洲捆绑美女| 91久久久免费一区二区| 久久se精品一区二区| 亚洲人xxxx| 精品裸体舞一区二区三区| 成人高清免费观看| 麻豆视频观看网址久久| 中文字幕日韩精品一区| 欧美高清视频不卡网| 国产精品2024| 日本怡春院一区二区| 中文字幕一区二区三区色视频| 欧美日韩激情一区| www.色精品| 久久国产免费看| 午夜欧美在线一二页| 欧美国产成人精品| 51精品国自产在线| 色综合色综合色综合| 精品一区二区三区免费观看| 亚洲乱码国产乱码精品精可以看| 精品区一区二区| 8x8x8国产精品| 色婷婷精品久久二区二区蜜臂av | 精品在线播放免费| 亚洲精品乱码久久久久久黑人| 国产偷v国产偷v亚洲高清| 欧美剧在线免费观看网站 | 亚洲人成网站精品片在线观看 | 国产精品久久久久久久久久免费看 | 国产在线精品一区二区三区不卡| 色综合天天在线| 最新久久zyz资源站| 久久影院电视剧免费观看| 欧美视频三区在线播放| 91丝袜美腿高跟国产极品老师| 极品美女销魂一区二区三区| 日本欧洲一区二区| 亚洲福利一二三区| 亚洲自拍偷拍欧美| 一区二区三区在线播| 国产精品国产三级国产普通话蜜臀| 久久精品网站免费观看| 久久久噜噜噜久久人人看 | 亚洲一区二区三区四区中文字幕| 国产免费成人在线视频| 久久久蜜臀国产一区二区| 久久综合五月天婷婷伊人| 日韩欧美中文字幕制服| 日韩精品最新网址| 精品国产污污免费网站入口| 欧美成人性战久久| 精品国产区一区| 久久久久国产精品麻豆ai换脸| 久久久欧美精品sm网站| 日本一区二区三区国色天香| 国产精品色一区二区三区| 中文字幕精品三区| 亚洲欧洲中文日韩久久av乱码| 一区二区三区四区不卡视频| 亚洲一区二区四区蜜桃| 五月婷婷激情综合网| 蜜桃av一区二区在线观看| 国产一区在线观看视频| av亚洲产国偷v产偷v自拍| 91热门视频在线观看| 欧美私人免费视频| 欧美猛男超大videosgay| 欧美大片一区二区| 国产精品久久久久久久久免费樱桃| 亚洲视频中文字幕| 琪琪一区二区三区| 国产成人免费视频网站| 91久久香蕉国产日韩欧美9色| 欧美乱妇20p| 国产偷v国产偷v亚洲高清| 亚洲免费色视频| 另类小说欧美激情| 99久久综合国产精品| 欧美性色综合网| 国产清纯白嫩初高生在线观看91 | 国产传媒一区在线| 色婷婷久久久亚洲一区二区三区| 欧美高清激情brazzers| 国产亲近乱来精品视频 | 一区二区三区四区精品在线视频| 国产精品传媒入口麻豆| 亚洲精品成a人| 日日摸夜夜添夜夜添亚洲女人| 美洲天堂一区二卡三卡四卡视频 | 91猫先生在线| 欧美日韩免费视频| 精品国产一区a| 国产精品久久久久久久午夜片| 丝袜诱惑亚洲看片| 国产在线视频精品一区| 一本大道久久精品懂色aⅴ| 97se狠狠狠综合亚洲狠狠| 91精品国产一区二区| 久久久99精品久久| 亚洲欧美aⅴ...| 欧美a一区二区| a亚洲天堂av| 7777精品伊人久久久大香线蕉完整版| 欧美精品色综合| 亚洲摸摸操操av| 国产在线观看免费一区| 国产成人精品亚洲日本在线桃色| 91免费视频网| 91精品麻豆日日躁夜夜躁| 亚洲欧美日韩国产另类专区 | 日韩理论电影院| 亚洲在线免费播放| 99这里都是精品| 精品少妇一区二区三区在线播放| 亚洲卡通欧美制服中文| 九九九久久久精品| 欧美性做爰猛烈叫床潮| 欧美高清在线精品一区| 蜜臂av日日欢夜夜爽一区| 欧美一区二区三区四区五区| 亚洲天堂免费在线观看视频| 久久国产精品72免费观看| 欧美无乱码久久久免费午夜一区 | 国产精品国产自产拍高清av| 日本成人在线一区| 99久久免费精品| 亚洲美女电影在线| yourporn久久国产精品| 国产亚洲欧美一级| 国产91精品一区二区麻豆亚洲|