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

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

?? articias_pci.c

?? uboot for at91rm9200dk
?? C
字號:
/* * (C) Copyright 2002 * Hyperion Entertainment, Hans-JoergF@hyperion-entertainment.com * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation; either version 2 of * the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.	 See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, * MA 02111-1307 USA */#include <common.h>#include <pci.h>#include "memio.h"#include "articiaS.h"#undef ARTICIA_PCI_DEBUG#ifdef  ARTICIA_PCI_DEBUG#define PRINTF(fmt,args...)     printf (fmt ,##args)#else#define PRINTF(fmt,args...)#endifstruct pci_controller articiaS_hose;long irq_alloc(long wanted);static pci_dev_t pci_hose_find_class(struct pci_controller *hose, int bus, short find_class, int index);static int articiaS_init_vga(void);static void pci_cfgfunc_dummy(struct pci_controller *host, pci_dev_t dev, struct pci_config_table *table);unsigned char pci_irq_alloc(void);extern void via_cfgfunc_via686(struct pci_controller * host, pci_dev_t dev, struct pci_config_table *table);extern void via_cfgfunc_ide_init(struct pci_controller *host, pci_dev_t dev, struct pci_config_table *table);extern void via_init_irq_routing(uint8 []);extern void via_init_afterscan(void);#define cfgfunc_via686      1#define cfgfunc_dummy  2#define cfgfunc_ide_init    3static struct pci_config_table config_table[] ={    {	0x1106, PCI_ANY_ID, PCI_CLASS_BRIDGE_ISA, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID,	(void *)cfgfunc_via686, {0, 0, 0}    },    {	0x1106, PCI_ANY_ID, PCI_ANY_ID, 0,7,4,	(void *)cfgfunc_dummy, {0,0,0}    },    {	0x1106, 0x3068, PCI_ANY_ID, 0, 7, PCI_ANY_ID,	(void *)cfgfunc_dummy, {0,0,0}    },    {	0x1106, PCI_ANY_ID, PCI_ANY_ID, 0,7,1,	(void *)cfgfunc_ide_init, {0,0,0}    },    {	0,    }};void pci_cfgfunc_dummy(struct pci_controller *host, pci_dev_t dev, struct pci_config_table *table){}unsigned long irq_penalties[16] ={    1000,    /* 0:timer */    1000,    /* 1:keyboard */    1000,    /* 2:cascade */    50,      /* 3:serial (COM2) */    50,      /* 4:serial (COM1) */    4,       /* 5:USB2 */    100,     /* 6:floppy */    3,       /* 7:parallel */    50,      /* 8:AC97/MC97 */    0,       /* 9: */    3,       /* 10:: */    0,       /* 11: */    3,       /* 12: USB1 */    0,       /* 13: */    100,     /* 14: ide0 */    100,     /* 15: ide1 */};/* * The following defines a hard-coded interrupt mapping for the * know devices on the board. * If a device isn't found here, assumed to be a device that's * plugged into a PCI or AGP slot * NOTE: This table is machine dependant. */struct pci_irq_fixup_table{    uint8   bus;             /* Bus number */    uint8   device;          /* Device number */    uint8   func;            /* Function number */    uint8   interrupt;       /* Interrupt to use (0xff to disable) */};struct pci_irq_fixup_table fixuptab [] ={    { 0, 0, 0, 0xff},        /* Articia S host bridge */    { 0, 1, 0, 0xff},        /* Articia S AGP bridge *//*    { 0, 6, 0, 0x05},        /###* 3COM ethernet */    { 0, 7, 0, 0xff},        /* VIA southbridge */    { 0, 7, 1, 0x0e},        /* IDE controller in legacy mode *//*    { 0, 7, 2, 0x05},        /###* First USB controller *//*    { 0, 7, 3, 0x0c},        /###* Second USB controller (shares interrupt with ethernet) */    { 0, 7, 4, 0xff},        /* ACPI Power Management *//*    { 0, 7, 5, 0x08},        /###* AC97 *//*    { 0, 7, 6, 0x08},        /###* MC97 */    { 0xff, 0xff, 0xff, 0xff}};/* * This table maps IRQ's to PCI interrupts */uint8 pci_intmap[4] = {0, 0, 0, 0};/* * Map PCI slots to interrupt routings * This table lists the device number assigned to a card inserted * into the slot, along with a permutation for the slot's IRQ routing. * NOTE: This table is machine dependant. */struct pci_slot_irq_routing{    uint8 bus;    uint8 device;    uint8 ints[4];};struct pci_slot_irq_routing amigaone_pci_routing[] ={    {0,  8,   {0, 1, 2, 3}},       /* Slot 1 (left of riser slot) */    {0,  9,   {1, 2, 3, 0}},       /* Slot 2 (middle slot) */    {0, 10,   {2, 3, 0, 1}},       /* Slot 3 (leftmost slot) */    {1,  0,   {1, 0, 2, 3}},       /* AGP slot (only IRQA and IRQB) */    {1,  1,   {1, 2, 3, 0}},       /* PCI slot on AGP bus */    {0,  6,   {3, 3, 3, 3}},       /* On board ethernet */    {0,  7,   {0, 1, 2, 3}},       /* Southbridge */    {0xff, 0, {0, 0, 0, 0}}};void articiaS_pci_irq_init(void){    char *s;    s = getenv("pci_irqa");    if (s)	pci_intmap[0] = simple_strtoul (s, NULL, 10);    else	pci_intmap[0] = pci_irq_alloc();    s = getenv("pci_irqb");    if (s)	pci_intmap[1] = simple_strtoul (s, NULL, 10);    else	pci_intmap[1] = pci_irq_alloc();    s = getenv("pci_irqc");    if (s)	pci_intmap[2] = simple_strtoul (s, NULL, 10);    else	pci_intmap[2] = pci_irq_alloc();    s = getenv("pci_irqd");    if (s)	pci_intmap[3] = simple_strtoul (s, NULL, 10);    else	pci_intmap[3] = pci_irq_alloc();}unsigned char pci_irq_alloc(void){    int i;    int interrupt = 10;    unsigned long min_penalty = 1000;    /* Search for the minimal penalty, favoring interrupts at the end */    for (i = 0; i < 16; i++)    {	if (irq_penalties[i] <= min_penalty)	{	    interrupt = i;	    min_penalty = irq_penalties[i];	}    }    PRINTF("pci_irq_alloc: Minimal penalty is %ld for %d\n", min_penalty, interrupt);    irq_penalties[interrupt]++;    return interrupt;}void articiaS_pci_fixup_irq(struct pci_controller *hose, pci_dev_t dev){    int8 bus, device, func, pin, line;    int i;    bus = PCI_BUS(dev);    device = PCI_DEV(dev);    func = PCI_FUNC(dev);    PRINTF("Fixup irq of %d:%d.%d\n", bus, device, func);    /* Search for the device in the table */    for (i = 0; fixuptab[i].bus != 0xff; i++)    {	if (bus == fixuptab[i].bus && device == fixuptab[i].device && func == fixuptab[i].func)	{	    /* If the device needs an interrupt, write it */	    if (fixuptab[i].interrupt != 0xff)	    {		PRINTF("Assigning IRQ %d (fixed)\n", fixuptab[i].interrupt);		pci_write_config_byte(dev, PCI_INTERRUPT_LINE, fixuptab[i].interrupt);	    }	    else	    {		/* Otherwise, see if it wants an interrupt, and disable it if needed */		pci_read_config_byte(dev, PCI_INTERRUPT_PIN, &pin);		if (pin)		{		    PRINTF("Disabling IRQ\n");		    pci_write_config_byte(dev, PCI_INTERRUPT_LINE, 0xff);		}	    }	    return;	}    }    /* If we get here, we have another PCI device in a slot... find the appropriate IRQ */    /* Find matching pin */    pci_read_config_byte(dev, PCI_INTERRUPT_PIN, &pin);    pin--;    /* Search for it's map */    for (i = 0; amigaone_pci_routing[i].bus != 0xff; i++)    {	if (bus == amigaone_pci_routing[i].bus && device == amigaone_pci_routing[i].device)	{	    line = pci_intmap[amigaone_pci_routing[i].ints[pin]];	    PRINTF("Assigning IRQ %d (pin %d)\n", line, pin);	    pci_write_config_byte(dev, PCI_INTERRUPT_LINE, line);	    return;	}    }    PRINTF("Unkonwn PCI device found\n");}void articiaS_pci_init (void){    int i;    char *s;    PRINTF("atriciaS_pci_init\n");    /* Why aren't these relocated?? */    for (i=0; config_table[i].config_device; i++)    {	switch((int)config_table[i].config_device)	{	case cfgfunc_via686:     config_table[i].config_device = via_cfgfunc_via686;      break;	case cfgfunc_dummy:      config_table[i].config_device = pci_cfgfunc_dummy;       break;	case cfgfunc_ide_init:   config_table[i].config_device = via_cfgfunc_ide_init;    break;	default: PRINTF("Error: Unknown constant\n");	}    }    articiaS_hose.first_busno = 0;    articiaS_hose.last_busno = 0xff;    articiaS_hose.config_table = config_table;    articiaS_hose.fixup_irq = articiaS_pci_fixup_irq;    articiaS_pci_irq_init();    /* System memory */    pci_set_region(articiaS_hose.regions + 0,		   ARTICIAS_SYS_BUS,		   ARTICIAS_SYS_PHYS,		   ARTICIAS_SYS_MAXSIZE,		   PCI_REGION_MEM | PCI_REGION_MEMORY);    /* PCI memory space */    pci_set_region(articiaS_hose.regions + 1,		   ARTICIAS_PCI_BUS,		   ARTICIAS_PCI_PHYS,		   ARTICIAS_PCI_MAXSIZE,		   PCI_REGION_MEM);    /* PCI io space */    pci_set_region(articiaS_hose.regions + 2,		   ARTICIAS_PCIIO_BUS,		   ARTICIAS_PCIIO_PHYS,		   ARTICIAS_PCIIO_MAXSIZE,		   PCI_REGION_IO);    /* PCI/ISA io space */    pci_set_region(articiaS_hose.regions + 3,		   ARTICIAS_ISAIO_BUS,		   ARTICIAS_ISAIO_PHYS,		   ARTICIAS_ISAIO_MAXSIZE,		   PCI_REGION_IO);    articiaS_hose.region_count = 4;    pci_setup_indirect(&articiaS_hose, ARTICIAS_PCI_CFGADDR, ARTICIAS_PCI_CFGDATA);    PRINTF("Registering articia hose...\n");    pci_register_hose(&articiaS_hose);    PRINTF("Enabling AGP...\n");    pci_write_config_byte(PCI_BDF(0,0,0), 0x58, 0x01);    PRINTF("Scanning bus...\n");    articiaS_hose.last_busno = pci_hose_scan(&articiaS_hose);    via_init_irq_routing(pci_intmap);    PRINTF("After-Scan results:\n");    PRINTF("Bus range: %d - %d\n", articiaS_hose.first_busno , articiaS_hose.last_busno);    via_init_afterscan();    pci_write_config_byte(PCI_BDF(0,1,0), PCI_INTERRUPT_LINE, 0xFF);    s = getenv("as_irq");    if (s)    {	pci_write_config_byte(PCI_BDF(0,0,0), PCI_INTERRUPT_LINE, simple_strtoul (s, NULL, 10));    }    s = getenv("x86_run_bios");    if (!s || (s && strcmp(s, "on")==0))    {	if (articiaS_init_vga() == -1)	{	    /* If the VGA didn't init and we have stdout set to VGA, reset to serial *//* 	    s = getenv("stdout"); *//* 	    if (s && strcmp(s, "vga") == 0) *//* 	    { *//* 		setenv("stdout", "serial"); *//* 	    } */	}    }    pci_write_config_byte(PCI_BDF(0,1,0), PCI_INTERRUPT_LINE, 0xFF);}pci_dev_t pci_hose_find_class(struct pci_controller *hose, int bus, short find_class, int index){    unsigned int sub_bus, found_multi=0;    unsigned short vendor, class;    unsigned char header_type;    pci_dev_t dev;    u8 c1, c2;    sub_bus = bus;    for (dev =  PCI_BDF(bus,0,0);	 dev <  PCI_BDF(bus,PCI_MAX_PCI_DEVICES-1,PCI_MAX_PCI_FUNCTIONS-1);	 dev += PCI_BDF(0,0,1))    {	if ( dev == PCI_BDF(hose->first_busno,0,0) )	    continue;	if (PCI_FUNC(dev) && !found_multi)	    continue;	pci_hose_read_config_byte(hose, dev, PCI_HEADER_TYPE, &header_type);	pci_hose_read_config_word(hose, dev, PCI_VENDOR_ID, &vendor);	if (vendor != 0xffff && vendor != 0x0000)	{	    if (!PCI_FUNC(dev))		found_multi = header_type & 0x80;	    pci_hose_read_config_byte(hose, dev, 0x0B, &c1);	    pci_hose_read_config_byte(hose, dev, 0x0A, &c2);	    class = c1<<8 | c2;	    /*printf("At %02x:%02x:%02x: class %x\n", */	    /*	   PCI_BUS(dev), PCI_DEV(dev), PCI_FUNC(dev), class); */	    if (class == find_class)	    {		if (index == 0)		    return dev;		else index--;	    }	}    }    return ~0;}/* * For a given bus number, find the bridge on this hose that provides this * bus number. The function scans for bridges and peeks config space offset * 0x19 (PCI_SECONDARY_BUS). */pci_dev_t pci_find_bridge_for_bus(struct pci_controller *hose, int busnr){    pci_dev_t dev;    int bus;    unsigned int found_multi=0;    unsigned char header_type;    unsigned short vendor;    unsigned char secondary_bus;    if (hose == NULL) hose = &articiaS_hose;    if (busnr < hose->first_busno || busnr > hose->last_busno) return PCI_ANY_ID; /* Not in range */    /*     * The bridge must be on a lower bus number     */    for (bus = hose->first_busno; bus < busnr; bus++)    {	for (dev =  PCI_BDF(bus,0,0);	     dev <  PCI_BDF(bus,PCI_MAX_PCI_DEVICES-1,PCI_MAX_PCI_FUNCTIONS-1);	     dev += PCI_BDF(0,0,1))	{	    if ( dev == PCI_BDF(hose->first_busno,0,0) )		continue;	    if (PCI_FUNC(dev) && !found_multi)		continue;	    pci_hose_read_config_byte(hose, dev, PCI_HEADER_TYPE, &header_type);	    pci_hose_read_config_word(hose, dev, PCI_VENDOR_ID, &vendor);	    if (vendor != 0xffff && vendor != 0x0000)	    {		if (!PCI_FUNC(dev))		    found_multi = header_type & 0x80;		if (header_type == 1) /* Bridge device header */		{		    pci_hose_read_config_byte(hose, dev, PCI_SECONDARY_BUS, &secondary_bus);		    if ((int)secondary_bus == busnr) return dev;		}	    }	}    }    return PCI_ANY_ID;}static short classes[] ={    PCI_CLASS_DISPLAY_VGA,    PCI_CLASS_DISPLAY_XGA,    PCI_CLASS_DISPLAY_3D,    PCI_CLASS_DISPLAY_OTHER,    ~0};extern int execute_bios(pci_dev_t gr_dev, void *);pci_dev_t video_dev;int articiaS_init_vga (void){	DECLARE_GLOBAL_DATA_PTR;    extern void shutdown_bios(void);    pci_dev_t dev = ~0;    int busnr = 0;    int classnr = 0;    video_dev = PCI_ANY_ID;    printf("VGA:   ");    PRINTF("Trying to initialize x86 VGA Card(s)\n");    while (dev == ~0)    {	PRINTF("Searching for class 0x%x on bus %d\n", classes[classnr], busnr);	/* Find the first of this class on this bus */	dev = pci_hose_find_class(&articiaS_hose, busnr, classes[classnr], 0);	if (dev != ~0)	{	    PRINTF("Found VGA Card at %02x:%02x:%02x\n", PCI_BUS(dev), PCI_DEV(dev), PCI_FUNC(dev));	    break;	}	busnr++;	if (busnr > articiaS_hose.last_busno)	{	    busnr = 0;	    classnr ++;	    if (classes[classnr] == ~0)	    {		printf("NOT PRESENT\n");		return -1;	    }	}    }    /*     * If we get here we have found the first graphics card.     * If the bus number is not 0, then it is probably behind a bridge, and the     * bridge needs to be told to forward VGA access.     */    if (PCI_BUS(dev) != 0)    {	pci_dev_t bridge;	PRINTF("Behind bridge, looking for bridge\n");	bridge = pci_find_bridge_for_bus(&articiaS_hose, PCI_BUS(dev));	if (dev != PCI_ANY_ID)	{	    unsigned char agp_control_0;	    PRINTF("Got the bridge at %02x:%02x:%02x\n",		   PCI_BUS(bridge), PCI_DEV(bridge), PCI_FUNC(bridge));	    pci_hose_read_config_byte(&articiaS_hose, bridge, 0x3E, &agp_control_0);	    agp_control_0 |= 0x18;	    pci_hose_write_config_byte(&articiaS_hose, bridge, 0x3E, agp_control_0);	    PRINTF("Configured for VGA forwarding\n");	}    }    /*     * Now try to run the bios     */    PRINTF("Trying to run bios now\n");    if (execute_bios(dev, gd->relocaddr))    {	printf("OK\n");	video_dev = dev;    }    else    {	printf("ERROR\n");    }    PRINTF("Done scanning.\n");    shutdown_bios();    if (dev == PCI_ANY_ID) return -1;    else return 0;}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
成人免费高清在线| 菠萝蜜视频在线观看一区| 2020国产精品久久精品美国| av成人免费在线| 日韩经典中文字幕一区| 国产精品久久三区| 精品国产一区二区三区久久影院| 色婷婷久久久综合中文字幕| 久久99精品久久久久婷婷| 亚洲国产综合91精品麻豆| 中文字幕在线免费不卡| 精品国产区一区| 欧美精品在线观看一区二区| 99热精品一区二区| 国产在线国偷精品免费看| 午夜精品久久久久| 亚洲欧美日韩在线| 国产精品热久久久久夜色精品三区| 欧美一卡二卡三卡四卡| 在线观看免费亚洲| 色综合天天综合网国产成人综合天| 国产精品一区二区在线看| 男女男精品视频| 香港成人在线视频| 亚洲一区二区三区在线看| 亚洲女同一区二区| 中文字幕欧美日韩一区| 久久久久久亚洲综合影院红桃 | 国产东北露脸精品视频| 视频在线观看一区| 亚洲综合久久久| 国产精品成人一区二区艾草| 国产性做久久久久久| 日韩一区二区三区高清免费看看| 在线观看日韩国产| 欧美在线一二三| 在线亚洲人成电影网站色www| av中文字幕在线不卡| 成人av电影在线观看| av激情综合网| 91在线免费播放| aaa欧美色吧激情视频| 成人av动漫在线| 91丨porny丨国产| 99久久亚洲一区二区三区青草| 成人激情免费网站| 成人18视频在线播放| 一本一本久久a久久精品综合麻豆| 91麻豆视频网站| 欧美在线观看18| 欧美精品v国产精品v日韩精品| 欧美三级三级三级爽爽爽| 欧美日韩一级黄| 91麻豆精品国产91久久久使用方法 | 欧美吞精做爰啪啪高潮| 欧美在线制服丝袜| 欧美日韩1234| 欧美一区二区播放| 久久久久久久精| √…a在线天堂一区| 一区二区高清在线| 免费欧美日韩国产三级电影| 激情文学综合网| 成人妖精视频yjsp地址| 99国产精品久久| 欧美精品一级二级| 国产亚洲欧美中文| 依依成人精品视频| 轻轻草成人在线| 国产999精品久久久久久| 91麻豆高清视频| 欧美日韩免费高清一区色橹橹| 91精品综合久久久久久| 久久这里只有精品6| 成人欧美一区二区三区黑人麻豆 | 97久久人人超碰| 欧美日韩国产精品自在自线| 亚洲精品在线网站| 日韩毛片一二三区| 青娱乐精品视频| 成人免费毛片app| 欧美午夜精品电影| 国产无一区二区| 亚洲国产综合在线| 高清在线成人网| 欧美另类久久久品| 国产精品午夜电影| 日韩精品五月天| av一二三不卡影片| 欧美一区二区视频在线观看2020 | 91亚洲精品久久久蜜桃| 91精品国产综合久久福利软件| 国产日韩欧美激情| 午夜伦欧美伦电影理论片| 国产精品一区二区三区网站| 欧美午夜一区二区三区免费大片| 精品国产第一区二区三区观看体验| 一区二区三区高清在线| 国内成人精品2018免费看| 综合欧美亚洲日本| 麻豆精品久久精品色综合| 色综合天天在线| 久久久久一区二区三区四区| 日韩成人一区二区三区在线观看| 菠萝蜜视频在线观看一区| 欧美v日韩v国产v| 亚洲va欧美va人人爽午夜| av色综合久久天堂av综合| 久久先锋影音av鲁色资源| 免费精品视频在线| 欧美中文一区二区三区| 国产精品欧美一区二区三区| 狠狠久久亚洲欧美| 日韩午夜激情免费电影| 亚洲第一在线综合网站| 91免费观看国产| 国产精品久久毛片| 国产一区二区三区四区五区美女| 91精品国产综合久久精品麻豆| 亚洲视频综合在线| 粉嫩欧美一区二区三区高清影视| 日韩午夜激情免费电影| 日韩电影免费在线| 欧美日韩精品福利| 亚洲国产精品视频| 欧美性大战久久久久久久蜜臀| 18欧美亚洲精品| 不卡视频在线观看| 中文字幕一区二区三区av| 成人精品一区二区三区四区| 国产人久久人人人人爽| 国产高清成人在线| 久久精品视频一区二区| 国产剧情一区在线| 国产人成一区二区三区影院| 国产精品88888| 欧美激情一区在线观看| 大胆亚洲人体视频| 欧美国产一区视频在线观看| 国产99精品国产| 国产精品天天摸av网| 不卡免费追剧大全电视剧网站| 国产精品久久久久四虎| av在线播放一区二区三区| 亚洲欧美一区二区三区国产精品 | 久久夜色精品一区| 国产在线观看一区二区| 久久只精品国产| 成人自拍视频在线观看| 中文字幕在线不卡| 色屁屁一区二区| 亚洲成av人片一区二区梦乃| 欧美一级高清片| 国产专区欧美精品| 中文字幕在线观看一区| 欧美无乱码久久久免费午夜一区| 日韩精品五月天| 国产亚洲一区二区三区四区| av在线不卡电影| 午夜电影久久久| 亚洲精品一区二区在线观看| 国产v日产∨综合v精品视频| 最新欧美精品一区二区三区| 欧美三级在线视频| 麻豆极品一区二区三区| 久久精品一区二区三区四区| 波多野洁衣一区| 亚洲香蕉伊在人在线观| 日韩欧美一区中文| 成av人片一区二区| 视频在线在亚洲| 欧美激情一区在线观看| 欧美日韩一区二区三区在线| 国产一区二区三区免费在线观看| 亚洲视频电影在线| 欧美一区二区三区成人| 成人毛片在线观看| 日韩在线卡一卡二| 欧美高清在线一区二区| 欧美美女一区二区| 国产精品456| 亚洲成a人v欧美综合天堂| 国产欧美日本一区二区三区| 欧美揉bbbbb揉bbbbb| 国产精品小仙女| 天堂在线亚洲视频| 国产精品免费aⅴ片在线观看| 7777女厕盗摄久久久| av毛片久久久久**hd| 麻豆高清免费国产一区| 亚洲人快播电影网| 精品国产免费久久| 欧美人xxxx| 91丝袜美女网| 狠狠色丁香婷婷综合| 亚洲福利视频一区二区| 中文字幕精品一区二区精品绿巨人| 欧美日产国产精品| 91福利国产精品| 成人国产一区二区三区精品|