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

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

?? dma.c

?? 這個源碼相信對很多用arm開發板開發的人會有用的
?? C
?? 第 1 頁 / 共 2 頁
字號:
/* linux/arch/arm/mach-bast/dma.c * * (c) 2003-2005 Simtec Electronics *	Ben Dooks <ben@simtec.co.uk> * * S3C2410 DMA core * * http://www.simtec.co.uk/products/EB2410ITX/ * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. * * Changelog: *  27-Feb-2005 BJD  Added kmem cache for dma descriptors *  18-Nov-2004 BJD  Removed error for loading onto stopped channel *  10-Nov-2004 BJD  Ensure all external symbols exported for modules *  10-Nov-2004 BJD  Use sys_device and sysdev_class for power management *  08-Aug-2004 BJD  Apply rmk's suggestions *  21-Jul-2004 BJD  Ported to linux 2.6 *  12-Jul-2004 BJD  Finished re-write and change of API *  06-Jul-2004 BJD  Rewrote dma code to try and cope with various problems *  23-May-2003 BJD  Created file *  19-Aug-2003 BJD  Cleanup, header fix, added URL * * This file is based on the Sangwook Lee/Samsung patches, re-written due * to various ommisions from the code (such as flexible dma configuration) * for use with the BAST system board. * * The re-write is pretty much complete, and should be good enough for any * possible DMA function */#include <linux/config.h>#ifdef CONFIG_S3C2410_DMA_DEBUG#define DEBUG#endif#include <linux/module.h>#include <linux/init.h>#include <linux/sched.h>#include <linux/spinlock.h>#include <linux/interrupt.h>#include <linux/sysdev.h>#include <linux/slab.h>#include <linux/errno.h>#include <linux/delay.h>#include <asm/system.h>#include <asm/irq.h>#include <asm/hardware.h>#include <asm/io.h>#include <asm/dma.h>#include <asm/mach/dma.h>#include <asm/arch/map.h>/* io map for dma */static void __iomem *dma_base;static kmem_cache_t *dma_kmem;/* dma channel state information */s3c2410_dma_chan_t s3c2410_chans[S3C2410_DMA_CHANNELS];/* debugging functions */#define BUF_MAGIC (0xcafebabe)#define dmawarn(fmt...) printk(KERN_DEBUG fmt)#define dma_regaddr(chan, reg) ((chan)->regs + (reg))#if 1#define dma_wrreg(chan, reg, val) writel((val), (chan)->regs + (reg))#elsestatic inline voiddma_wrreg(s3c2410_dma_chan_t *chan, int reg, unsigned long val){	pr_debug("writing %08x to register %08x\n",(unsigned int)val,reg);	writel(val, dma_regaddr(chan, reg));}#endif#define dma_rdreg(chan, reg) readl((chan)->regs + (reg))/* captured register state for debug */struct s3c2410_dma_regstate {	unsigned long         dcsrc;	unsigned long         disrc;	unsigned long         dstat;	unsigned long         dcon;	unsigned long         dmsktrig;};#ifdef CONFIG_S3C2410_DMA_DEBUG/* dmadbg_showregs * * simple debug routine to print the current state of the dma registers*/static voiddmadbg_capture(s3c2410_dma_chan_t *chan, struct s3c2410_dma_regstate *regs){	regs->dcsrc    = dma_rdreg(chan, S3C2410_DMA_DCSRC);	regs->disrc    = dma_rdreg(chan, S3C2410_DMA_DISRC);	regs->dstat    = dma_rdreg(chan, S3C2410_DMA_DSTAT);	regs->dcon     = dma_rdreg(chan, S3C2410_DMA_DCON);	regs->dmsktrig = dma_rdreg(chan, S3C2410_DMA_DMASKTRIG);}static voiddmadbg_showregs(const char *fname, int line, s3c2410_dma_chan_t *chan,		 struct s3c2410_dma_regstate *regs){	printk(KERN_DEBUG "dma%d: %s:%d: DCSRC=%08lx, DISRC=%08lx, DSTAT=%08lx DMT=%02lx, DCON=%08lx\n",	       chan->number, fname, line,	       regs->dcsrc, regs->disrc, regs->dstat, regs->dmsktrig,	       regs->dcon);}static voiddmadbg_showchan(const char *fname, int line, s3c2410_dma_chan_t *chan){	struct s3c2410_dma_regstate state;	dmadbg_capture(chan, &state);	printk(KERN_DEBUG "dma%d: %s:%d: ls=%d, cur=%p, %p %p\n",	       chan->number, fname, line, chan->load_state,	       chan->curr, chan->next, chan->end);	dmadbg_showregs(fname, line, chan, &state);}#define dbg_showregs(chan) dmadbg_showregs(__FUNCTION__, __LINE__, (chan))#define dbg_showchan(chan) dmadbg_showchan(__FUNCTION__, __LINE__, (chan))#else#define dbg_showregs(chan) do { } while(0)#define dbg_showchan(chan) do { } while(0)#endif /* CONFIG_S3C2410_DMA_DEBUG */#define check_channel(chan) \  do { if ((chan) >= S3C2410_DMA_CHANNELS) { \    printk(KERN_ERR "%s: invalid channel %d\n", __FUNCTION__, (chan)); \    return -EINVAL; \  } } while(0)/* s3c2410_dma_stats_timeout * * Update DMA stats from timeout info*/static voids3c2410_dma_stats_timeout(s3c2410_dma_stats_t *stats, int val){	if (stats == NULL)		return;	if (val > stats->timeout_longest)		stats->timeout_longest = val;	if (val < stats->timeout_shortest)		stats->timeout_shortest = val;	stats->timeout_avg += val;}/* s3c2410_dma_waitforload * * wait for the DMA engine to load a buffer, and update the state accordingly*/static ints3c2410_dma_waitforload(s3c2410_dma_chan_t *chan, int line){	int timeout = chan->load_timeout;	int took;	if (chan->load_state != S3C2410_DMALOAD_1LOADED) {		printk(KERN_ERR "dma%d: s3c2410_dma_waitforload() called in loadstate %d from line %d\n", chan->number, chan->load_state, line);		return 0;	}	if (chan->stats != NULL)		chan->stats->loads++;	while (--timeout > 0) {		if ((dma_rdreg(chan, S3C2410_DMA_DSTAT) << (32-20)) != 0) {			took = chan->load_timeout - timeout;			s3c2410_dma_stats_timeout(chan->stats, took);			switch (chan->load_state) {			case S3C2410_DMALOAD_1LOADED:				chan->load_state = S3C2410_DMALOAD_1RUNNING;				break;			default:				printk(KERN_ERR "dma%d: unknown load_state in s3c2410_dma_waitforload() %d\n", chan->number, chan->load_state);			}			return 1;		}	}	if (chan->stats != NULL) {		chan->stats->timeout_failed++;	}	return 0;}/* s3c2410_dma_loadbuffer * * load a buffer, and update the channel state*/static inline ints3c2410_dma_loadbuffer(s3c2410_dma_chan_t *chan,		       s3c2410_dma_buf_t *buf){	unsigned long reload;	pr_debug("s3c2410_chan_loadbuffer: loading buff %p (0x%08lx,0x%06x)\n",		 buf, (unsigned long)buf->data, buf->size);	if (buf == NULL) {		dmawarn("buffer is NULL\n");		return -EINVAL;	}	/* check the state of the channel before we do anything */	if (chan->load_state == S3C2410_DMALOAD_1LOADED) {		dmawarn("load_state is S3C2410_DMALOAD_1LOADED\n");	}	if (chan->load_state == S3C2410_DMALOAD_1LOADED_1RUNNING) {		dmawarn("state is S3C2410_DMALOAD_1LOADED_1RUNNING\n");	}	/* it would seem sensible if we are the last buffer to not bother	 * with the auto-reload bit, so that the DMA engine will not try	 * and load another transfer after this one has finished...	 */	if (chan->load_state == S3C2410_DMALOAD_NONE) {		pr_debug("load_state is none, checking for noreload (next=%p)\n",			 buf->next);		reload = (buf->next == NULL) ? S3C2410_DCON_NORELOAD : 0;	} else {		pr_debug("load_state is %d => autoreload\n", chan->load_state);		reload = S3C2410_DCON_AUTORELOAD;	}	writel(buf->data, chan->addr_reg);	dma_wrreg(chan, S3C2410_DMA_DCON,		  chan->dcon | reload | (buf->size/chan->xfer_unit));	chan->next = buf->next;	/* update the state of the channel */	switch (chan->load_state) {	case S3C2410_DMALOAD_NONE:		chan->load_state = S3C2410_DMALOAD_1LOADED;		break;	case S3C2410_DMALOAD_1RUNNING:		chan->load_state = S3C2410_DMALOAD_1LOADED_1RUNNING;		break;	default:		dmawarn("dmaload: unknown state %d in loadbuffer\n",			chan->load_state);		break;	}	return 0;}/* s3c2410_dma_call_op * * small routine to call the op routine with the given op if it has been * registered*/static voids3c2410_dma_call_op(s3c2410_dma_chan_t *chan, s3c2410_chan_op_t op){	if (chan->op_fn != NULL) {		(chan->op_fn)(chan, op);	}}/* s3c2410_dma_buffdone * * small wrapper to check if callback routine needs to be called, and * if so, call it*/static inline voids3c2410_dma_buffdone(s3c2410_dma_chan_t *chan, s3c2410_dma_buf_t *buf,		     s3c2410_dma_buffresult_t result){	pr_debug("callback_fn=%p, buf=%p, id=%p, size=%d, result=%d\n",		 chan->callback_fn, buf, buf->id, buf->size, result);	if (chan->callback_fn != NULL) {		(chan->callback_fn)(chan, buf->id, buf->size, result);	}}/* s3c2410_dma_start * * start a dma channel going*/static int s3c2410_dma_start(s3c2410_dma_chan_t *chan){	unsigned long tmp;	unsigned long flags;	pr_debug("s3c2410_start_dma: channel=%d\n", chan->number);	local_irq_save(flags);	if (chan->state == S3C2410_DMA_RUNNING) {		pr_debug("s3c2410_start_dma: already running (%d)\n", chan->state);		local_irq_restore(flags);		return 0;	}	chan->state = S3C2410_DMA_RUNNING;	/* check wether there is anything to load, and if not, see	 * if we can find anything to load	 */	if (chan->load_state == S3C2410_DMALOAD_NONE) {		if (chan->next == NULL) {			printk(KERN_ERR "dma%d: channel has nothing loaded\n",			       chan->number);			chan->state = S3C2410_DMA_IDLE;			local_irq_restore(flags);			return -EINVAL;		}		s3c2410_dma_loadbuffer(chan, chan->next);	}	dbg_showchan(chan);	/* enable the channel */	if (!chan->irq_enabled) {		enable_irq(chan->irq);		chan->irq_enabled = 1;	}	/* start the channel going */	tmp = dma_rdreg(chan, S3C2410_DMA_DMASKTRIG);	tmp &= ~S3C2410_DMASKTRIG_STOP;	tmp |= S3C2410_DMASKTRIG_ON;	dma_wrreg(chan, S3C2410_DMA_DMASKTRIG, tmp);	pr_debug("wrote %08lx to DMASKTRIG\n", tmp);#if 0	/* the dma buffer loads should take care of clearing the AUTO	 * reloading feature */	tmp = dma_rdreg(chan, S3C2410_DMA_DCON);	tmp &= ~S3C2410_DCON_NORELOAD;	dma_wrreg(chan, S3C2410_DMA_DCON, tmp);#endif	s3c2410_dma_call_op(chan, S3C2410_DMAOP_START);	dbg_showchan(chan);	local_irq_restore(flags);	return 0;}/* s3c2410_dma_canload * * work out if we can queue another buffer into the DMA engine*/static ints3c2410_dma_canload(s3c2410_dma_chan_t *chan){	if (chan->load_state == S3C2410_DMALOAD_NONE ||	    chan->load_state == S3C2410_DMALOAD_1RUNNING)		return 1;	return 0;}/* s3c2410_dma_enqueue * * queue an given buffer for dma transfer. * * id         the device driver's id information for this buffer * data       the physical address of the buffer data * size       the size of the buffer in bytes * * If the channel is not running, then the flag S3C2410_DMAF_AUTOSTART * is checked, and if set, the channel is started. If this flag isn't set, * then an error will be returned. * * It is possible to queue more than one DMA buffer onto a channel at * once, and the code will deal with the re-loading of the next buffer * when necessary.*/int s3c2410_dma_enqueue(unsigned int channel, void *id,			dma_addr_t data, int size){	s3c2410_dma_chan_t *chan = &s3c2410_chans[channel];	s3c2410_dma_buf_t *buf;	unsigned long flags;	check_channel(channel);	pr_debug("%s: id=%p, data=%08x, size=%d\n",		 __FUNCTION__, id, (unsigned int)data, size);	buf = kmem_cache_alloc(dma_kmem, GFP_ATOMIC);	if (buf == NULL) {		pr_debug("%s: out of memory (%ld alloc)\n",			 __FUNCTION__, sizeof(*buf));		return -ENOMEM;	}	pr_debug("%s: new buffer %p\n", __FUNCTION__, buf);	//dbg_showchan(chan);	buf->next  = NULL;	buf->data  = buf->ptr = data;	buf->size  = size;	buf->id    = id;	buf->magic = BUF_MAGIC;	local_irq_save(flags);	if (chan->curr == NULL) {		/* we've got nothing loaded... */		pr_debug("%s: buffer %p queued onto empty channel\n",			 __FUNCTION__, buf);		chan->curr = buf;		chan->end  = buf;		chan->next = NULL;	} else {		pr_debug("dma%d: %s: buffer %p queued onto non-empty channel\n",			 chan->number, __FUNCTION__, buf);		if (chan->end == NULL)			pr_debug("dma%d: %s: %p not empty, and chan->end==NULL?\n",				 chan->number, __FUNCTION__, chan);		chan->end->next = buf;		chan->end = buf;	}	/* if necessary, update the next buffer field */	if (chan->next == NULL)		chan->next = buf;	/* check to see if we can load a buffer */	if (chan->state == S3C2410_DMA_RUNNING) {		if (chan->load_state == S3C2410_DMALOAD_1LOADED && 1) {			if (s3c2410_dma_waitforload(chan, __LINE__) == 0) {				printk(KERN_ERR "dma%d: loadbuffer:"				       "timeout loading buffer\n",				       chan->number);				dbg_showchan(chan);				local_irq_restore(flags);				return -EINVAL;			}		}		while (s3c2410_dma_canload(chan) && chan->next != NULL) {			s3c2410_dma_loadbuffer(chan, chan->next);		}	} else if (chan->state == S3C2410_DMA_IDLE) {		if (chan->flags & S3C2410_DMAF_AUTOSTART) {			s3c2410_dma_ctrl(chan->number, S3C2410_DMAOP_START);		}	}	local_irq_restore(flags);	return 0;}EXPORT_SYMBOL(s3c2410_dma_enqueue);static inline voids3c2410_dma_freebuf(s3c2410_dma_buf_t *buf){	int magicok = (buf->magic == BUF_MAGIC);	buf->magic = -1;	if (magicok) {		kmem_cache_free(dma_kmem, buf);	} else {		printk("s3c2410_dma_freebuf: buff %p with bad magic\n", buf);	}}/* s3c2410_dma_lastxfer * * called when the system is out of buffers, to ensure that the channel * is prepared for shutdown.*/static inline voids3c2410_dma_lastxfer(s3c2410_dma_chan_t *chan){	pr_debug("dma%d: s3c2410_dma_lastxfer: load_state %d\n",		 chan->number, chan->load_state);	switch (chan->load_state) {	case S3C2410_DMALOAD_NONE:		break;	case S3C2410_DMALOAD_1LOADED:		if (s3c2410_dma_waitforload(chan, __LINE__) == 0) {				/* flag error? */			printk(KERN_ERR "dma%d: timeout waiting for load\n",			       chan->number);			return;		}		break;	default:		pr_debug("dma%d: lastxfer: unhandled load_state %d with no next",			 chan->number, chan->load_state);		return;	}	/* hopefully this'll shut the damned thing up after the transfer... */	dma_wrreg(chan, S3C2410_DMA_DCON, chan->dcon | S3C2410_DCON_NORELOAD);}#define dmadbg2(x...)static irqreturn_ts3c2410_dma_irq(int irq, void *devpw, struct pt_regs *regs){	s3c2410_dma_chan_t *chan = (s3c2410_dma_chan_t *)devpw;	s3c2410_dma_buf_t  *buf;	buf = chan->curr;	dbg_showchan(chan);	/* modify the channel state */	switch (chan->load_state) {	case S3C2410_DMALOAD_1RUNNING:		/* TODO - if we are running only one buffer, we probably		 * want to reload here, and then worry about the buffer		 * callback */		chan->load_state = S3C2410_DMALOAD_NONE;		break;	case S3C2410_DMALOAD_1LOADED:		/* iirc, we should go back to NONE loaded here, we		 * had a buffer, and it was never verified as being		 * loaded.		 */		chan->load_state = S3C2410_DMALOAD_NONE;		break;	case S3C2410_DMALOAD_1LOADED_1RUNNING:		/* we'll worry about checking to see if another buffer is		 * ready after we've called back the owner. This should		 * ensure we do not wait around too long for the DMA		 * engine to start the next transfer		 */		chan->load_state = S3C2410_DMALOAD_1LOADED;		break;	case S3C2410_DMALOAD_NONE:		printk(KERN_ERR "dma%d: IRQ with no loaded buffer?\n",		       chan->number);		break;	default:		printk(KERN_ERR "dma%d: IRQ in invalid load_state %d\n",		       chan->number, chan->load_state);

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲精选免费视频| 91精品国产91久久久久久一区二区 | 色乱码一区二区三区88| 国产精品国产三级国产aⅴ无密码 国产精品国产三级国产aⅴ原创 | 看电视剧不卡顿的网站| 精品少妇一区二区三区日产乱码 | 亚洲午夜免费视频| 欧美午夜精品一区| 日韩精品三区四区| 久久女同精品一区二区| 成人高清免费在线播放| 亚洲欧美日韩人成在线播放| 日本高清不卡一区| 日本成人超碰在线观看| 2020国产精品| 国产99久久久国产精品免费看 | 久久综合色鬼综合色| 国产黄色精品网站| 亚洲欧美一区二区不卡| 精品视频在线免费观看| 老司机午夜精品99久久| 国产精品美女久久久久久久网站| 91福利国产成人精品照片| 首页国产欧美日韩丝袜| 久久久久免费观看| 91在线精品秘密一区二区| 亚洲大片免费看| 欧美va在线播放| 成人国产一区二区三区精品| 亚洲国产成人91porn| 久久免费偷拍视频| 99久久精品免费精品国产| 亚洲国产精品一区二区尤物区| 日韩欧美中文一区| 99精品国产热久久91蜜凸| 日韩精品1区2区3区| 国产欧美一区二区精品性| 欧美午夜电影网| 国产乱码精品一品二品| 亚洲高清中文字幕| 国产精品国产精品国产专区不蜜| 3751色影院一区二区三区| 成人av在线资源| 久久超级碰视频| 亚洲影院理伦片| 日本一区二区视频在线| 欧美一区二区三区免费| 91麻豆视频网站| 国产精品亚洲一区二区三区妖精| 亚洲风情在线资源站| 欧美精彩视频一区二区三区| 3d动漫精品啪啪1区2区免费 | 欧美日韩亚洲另类| 国产69精品久久99不卡| 毛片基地黄久久久久久天堂| 一区二区三区四区在线播放| 国产精品伦一区| 26uuu久久天堂性欧美| 欧美一区二区三区在| 在线免费观看视频一区| 99re这里只有精品首页| 国产精品 欧美精品| 美女免费视频一区| 亚洲午夜在线观看视频在线| 国产精品久久看| 久久久精品黄色| 精品1区2区在线观看| 91.com在线观看| 欧美丰满一区二区免费视频| 欧美日韩中文一区| 欧美日韩亚洲综合在线 | 欧美日韩一二区| 91久久精品日日躁夜夜躁欧美| 成人免费视频一区二区| 国产一区二区免费在线| 国产一区二区不卡| 国产成人精品www牛牛影视| 国产福利视频一区二区三区| 国产乱码精品一区二区三区忘忧草 | 99精品国产视频| 成人av免费在线观看| 国产麻豆午夜三级精品| 国产资源在线一区| 韩国女主播一区| 国产一区 二区 三区一级| 欧美日韩视频在线一区二区| 一本久道久久综合中文字幕| 不卡欧美aaaaa| 99久久综合精品| 色88888久久久久久影院按摩| 色偷偷久久人人79超碰人人澡| 色综合久久久久| 欧美日韩亚洲国产综合| 日韩一区二区视频| 精品精品国产高清a毛片牛牛| 欧美成人精品高清在线播放| 久久久久久久久久美女| 国产精品丝袜黑色高跟| 亚洲综合男人的天堂| 日本不卡中文字幕| 懂色av中文一区二区三区| 99精品国产视频| 欧美日本一区二区三区四区| 日韩欧美aaaaaa| 国产精品国产三级国产普通话99| 亚洲一区二区三区四区在线观看| 日韩成人免费在线| 国产一区二区三区久久久| 色综合天天综合网天天看片| 欧美日本在线看| 国产亚洲综合性久久久影院| 亚洲欧美电影院| 日本vs亚洲vs韩国一区三区| 国产成a人亚洲精品| 色综合天天综合网天天狠天天 | 中文字幕一区二区三区精华液| 亚洲欧美色一区| 精品在线一区二区| 99久久精品免费| 91精品国产欧美日韩| 中文字幕成人网| 日韩国产精品久久| 99综合电影在线视频| 欧美一区二区三区人| 中文字幕字幕中文在线中不卡视频| 亚洲电影你懂得| 成人美女视频在线观看18| 欧美日本韩国一区| 国产精品久久久久久久久快鸭| 午夜精品福利一区二区蜜股av| 国产91精品在线观看| 欧美挠脚心视频网站| 综合分类小说区另类春色亚洲小说欧美| 日韩精品三区四区| 色综合久久久久网| 日本一区二区视频在线| 日本aⅴ亚洲精品中文乱码| 99re视频精品| 久久久精品综合| 免费在线观看一区| 91久久国产最好的精华液| 久久婷婷国产综合精品青草| 午夜精品久久久久久久99水蜜桃 | 亚洲一级不卡视频| 成人午夜视频免费看| 欧美大黄免费观看| 日韩高清一级片| 欧美日韩在线免费视频| 亚洲嫩草精品久久| www.性欧美| 国产精品亲子伦对白| 国产一区二区三区精品视频 | 久久影院午夜论| 麻豆精品在线播放| 91麻豆精品国产91久久久| 亚洲一区二区三区四区在线免费观看 | 91麻豆精品国产91久久久久| 亚洲国产日韩在线一区模特| 色婷婷精品大在线视频| 中文字幕一区二区三区在线观看 | 97精品久久久久中文字幕| 久久久www成人免费毛片麻豆| 美腿丝袜亚洲色图| 欧美精品视频www在线观看| 亚洲在线成人精品| 欧美色图12p| 亚洲图片欧美色图| 欧美中文字幕一区| 亚洲高清免费一级二级三级| 欧美日韩精品是欧美日韩精品| 一区二区三区四区高清精品免费观看 | 136国产福利精品导航| 高清成人在线观看| 中文字幕一区二区三区蜜月| 99国产欧美久久久精品| 一区二区三区**美女毛片| 色94色欧美sute亚洲线路二| 亚洲午夜精品一区二区三区他趣| 欧美影院精品一区| 天天免费综合色| 日韩一区二区在线看片| 精品制服美女久久| 国产精品免费丝袜| 欧美综合视频在线观看| 日韩不卡在线观看日韩不卡视频| 日韩区在线观看| 国产v综合v亚洲欧| 亚洲精品va在线观看| 欧美日韩国产综合视频在线观看| 青青草国产精品亚洲专区无| 久久色.com| 91蜜桃在线观看| 日本午夜精品视频在线观看| 欧美成人午夜电影| 成人精品视频一区| 亚洲成人免费看| 2021中文字幕一区亚洲| 一本久久精品一区二区| 偷窥国产亚洲免费视频| 久久免费美女视频|