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

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

?? saa5249.c

?? Linux Kernel 2.6.9 for OMAP1710
?? C
?? 第 1 頁 / 共 2 頁
字號(hào):
/* *	Cleaned up to use existing videodev interface and allow the idea *	of multiple teletext decoders on the video4linux iface. Changed i2c *	to cover addressing clashes on device busses. It's also rebuilt so *	you can add arbitary multiple teletext devices to Linux video4linux *	now (well 32 anyway). * *	Alan Cox <Alan.Cox@linux.org> * *	The original driver was heavily modified to match the i2c interface *	It was truncated to use the WinTV boards, too. * *	Copyright (c) 1998 Richard Guenther <richard.guenther@student.uni-tuebingen.de> * * $Id: saa5249.c,v 1.1 1998/03/30 22:23:23 alan Exp $ * *	Derived From * * vtx.c: * This is a loadable character-device-driver for videotext-interfaces * (aka teletext). Please check the Makefile/README for a list of supported * interfaces. * * Copyright (c) 1994-97 Martin Buck  <martin-2.buck@student.uni-ulm.de> * * * 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 <linux/module.h>#include <linux/kernel.h>#include <linux/sched.h>#include <linux/mm.h>#include <linux/errno.h>#include <linux/delay.h>#include <linux/ioport.h>#include <linux/slab.h>#include <linux/init.h>#include <stdarg.h>#include <linux/i2c.h>#include <linux/videotext.h>#include <linux/videodev.h>#include <asm/io.h>#include <asm/uaccess.h>#define VTX_VER_MAJ 1#define VTX_VER_MIN 7#define NUM_DAUS 4#define NUM_BUFS 8#define IF_NAME "SAA5249"static const int disp_modes[8][3] = {	{ 0x46, 0x03, 0x03 },	/* DISPOFF */	{ 0x46, 0xcc, 0xcc },	/* DISPNORM */	{ 0x44, 0x0f, 0x0f },	/* DISPTRANS */	{ 0x46, 0xcc, 0x46 },	/* DISPINS */	{ 0x44, 0x03, 0x03 },	/* DISPOFF, interlaced */	{ 0x44, 0xcc, 0xcc },	/* DISPNORM, interlaced */	{ 0x44, 0x0f, 0x0f },	/* DISPTRANS, interlaced */	{ 0x44, 0xcc, 0x46 }	/* DISPINS, interlaced */};#define PAGE_WAIT (300*HZ/1000)			/* Time between requesting page and */						/* checking status bits */#define PGBUF_EXPIRE (15*HZ)			/* Time to wait before retransmitting */						/* page regardless of infobits */typedef struct {	u8 pgbuf[VTX_VIRTUALSIZE];		/* Page-buffer */	u8 laststat[10];			/* Last value of infobits for DAU */	u8 sregs[7];				/* Page-request registers */	unsigned long expire;			/* Time when page will be expired */	unsigned clrfound : 1;			/* VTXIOCCLRFOUND has been called */	unsigned stopped : 1;			/* VTXIOCSTOPDAU has been called */} vdau_t;struct saa5249_device{	vdau_t vdau[NUM_DAUS];			/* Data for virtual DAUs (the 5249 only has one */						/* real DAU, so we have to simulate some more) */	int vtx_use_count;	int is_searching[NUM_DAUS];	int disp_mode;	int virtual_mode;	struct i2c_client *client;	struct semaphore lock;};#define CCTWR 34		/* I睠 write/read-address of vtx-chip */#define CCTRD 35#define NOACK_REPEAT 10		/* Retry access this many times on failure */#define CLEAR_DELAY (HZ/20)	/* Time required to clear a page */#define READY_TIMEOUT (30*HZ/1000)	/* Time to wait for ready signal of I睠-bus interface */#define INIT_DELAY 500		/* Time in usec to wait at initialization of CEA interface */#define START_DELAY 10		/* Time in usec to wait before starting write-cycle (CEA) */#define VTX_DEV_MINOR 0/* General defines and debugging support */#ifndef FALSE#define FALSE 0#define TRUE 1#endif#define RESCHED do { cond_resched(); } while(0)static struct video_device saa_template;	/* Declared near bottom *//* Addresses to scan */static unsigned short normal_i2c[] = {34>>1,I2C_CLIENT_END};static unsigned short normal_i2c_range[] = {I2C_CLIENT_END};static unsigned short probe[2]        = { I2C_CLIENT_END, I2C_CLIENT_END };static unsigned short probe_range[2]  = { I2C_CLIENT_END, I2C_CLIENT_END };static unsigned short ignore[2]       = { I2C_CLIENT_END, I2C_CLIENT_END };static unsigned short ignore_range[2] = { I2C_CLIENT_END, I2C_CLIENT_END };static unsigned short force[2]        = { I2C_CLIENT_END, I2C_CLIENT_END };static struct i2c_client_address_data addr_data = {	normal_i2c, normal_i2c_range, 	probe, probe_range, 	ignore, ignore_range, 	force};static struct i2c_client client_template;static int saa5249_attach(struct i2c_adapter *adap, int addr, int kind){	int pgbuf;	int err;	struct i2c_client *client;	struct video_device *vd;	struct saa5249_device *t;	printk(KERN_INFO "saa5249: teletext chip found.\n");	client=kmalloc(sizeof(*client), GFP_KERNEL);	if(client==NULL)		return -ENOMEM;        client_template.adapter = adap;        client_template.addr = addr;	memcpy(client, &client_template, sizeof(*client));	t = kmalloc(sizeof(*t), GFP_KERNEL);	if(t==NULL)	{		kfree(client);		return -ENOMEM;	}	memset(t, 0, sizeof(*t));	strlcpy(client->name, IF_NAME, I2C_NAME_SIZE);	init_MUTEX(&t->lock);		/*	 *	Now create a video4linux device	 */	 	vd = (struct video_device *)kmalloc(sizeof(struct video_device), GFP_KERNEL);	if(vd==NULL)	{		kfree(t);		kfree(client);		return -ENOMEM;	}	i2c_set_clientdata(client, vd);	memcpy(vd, &saa_template, sizeof(*vd));			for (pgbuf = 0; pgbuf < NUM_DAUS; pgbuf++) 	{		memset(t->vdau[pgbuf].pgbuf, ' ', sizeof(t->vdau[0].pgbuf));		memset(t->vdau[pgbuf].sregs, 0, sizeof(t->vdau[0].sregs));		memset(t->vdau[pgbuf].laststat, 0, sizeof(t->vdau[0].laststat));		t->vdau[pgbuf].expire = 0;		t->vdau[pgbuf].clrfound = TRUE;		t->vdau[pgbuf].stopped = TRUE;		t->is_searching[pgbuf] = FALSE;	}	vd->priv=t;		 		/*	 *	Register it	 */	if((err=video_register_device(vd, VFL_TYPE_VTX,-1))<0)	{		kfree(t);		kfree(vd);		kfree(client);		return err;	}	t->client = client;	i2c_attach_client(client);	return 0;}/* *	We do most of the hard work when we become a device on the i2c. */ static int saa5249_probe(struct i2c_adapter *adap){	if (adap->class & I2C_CLASS_TV_ANALOG)		return i2c_probe(adap, &addr_data, saa5249_attach);	return 0;}static int saa5249_detach(struct i2c_client *client){	struct video_device *vd = i2c_get_clientdata(client);	i2c_detach_client(client);	video_unregister_device(vd);	kfree(vd->priv);	kfree(vd);	kfree(client);	return 0;}static int saa5249_command(struct i2c_client *device,			     unsigned int cmd, void *arg){	return -EINVAL;}/* new I2C driver support */static struct i2c_driver i2c_driver_videotext = {	.owner 		= THIS_MODULE,	.name 		= IF_NAME,		/* name */	.id 		= I2C_DRIVERID_SAA5249, /* in i2c.h */	.flags 		= I2C_DF_NOTIFY,	.attach_adapter = saa5249_probe,	.detach_client  = saa5249_detach,	.command 	= saa5249_command};static struct i2c_client client_template = {	.id 		= -1,	.driver		= &i2c_driver_videotext,	.name		= "(unset)",};/* *	Wait the given number of jiffies (10ms). This calls the scheduler, so the actual *	delay may be longer. */static void jdelay(unsigned long delay) {	sigset_t oldblocked = current->blocked;	spin_lock_irq(&current->sighand->siglock);	sigfillset(&current->blocked);	recalc_sigpending();	spin_unlock_irq(&current->sighand->siglock);	current->state = TASK_INTERRUPTIBLE;	schedule_timeout(delay);	spin_lock_irq(&current->sighand->siglock);	current->blocked = oldblocked;	recalc_sigpending();	spin_unlock_irq(&current->sighand->siglock);}/* *	I2C interfaces */ static int i2c_sendbuf(struct saa5249_device *t, int reg, int count, u8 *data) {	char buf[64];		buf[0] = reg;	memcpy(buf+1, data, count);		if(i2c_master_send(t->client, buf, count+1)==count+1)		return 0;	return -1;}static int i2c_senddata(struct saa5249_device *t, ...){	unsigned char buf[64];	int v;	int ct=0;	va_list argp;	va_start(argp,t);		while((v=va_arg(argp,int))!=-1)		buf[ct++]=v;	return i2c_sendbuf(t, buf[0], ct-1, buf+1);}/* Get count number of bytes from I睠-device at address adr, store them in buf. Start & stop * handshaking is done by this routine, ack will be sent after the last byte to inhibit further * sending of data. If uaccess is TRUE, data is written to user-space with put_user. * Returns -1 if I睠-device didn't send acknowledge, 0 otherwise */static int i2c_getdata(struct saa5249_device *t, int count, u8 *buf) {	if(i2c_master_recv(t->client, buf, count)!=count)		return -1;	return 0;}/* *	Standard character-device-driver functions */static int do_saa5249_ioctl(struct inode *inode, struct file *file,			    unsigned int cmd, void *arg){	static int virtual_mode = FALSE;	struct video_device *vd = video_devdata(file);	struct saa5249_device *t=vd->priv;	switch(cmd) 	{		case VTXIOCGETINFO: 		{			vtx_info_t *info = arg;

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久国产精品99久久久久久老狼 | 日韩一区在线看| 欧美午夜精品免费| 国产乱理伦片在线观看夜一区| 亚洲三级在线看| 久久久久九九视频| 欧美日韩三级在线| 成人激情开心网| 国产精品亚洲第一| 麻豆精品新av中文字幕| 亚洲va在线va天堂| 亚洲欧美综合另类在线卡通| 国产亚洲视频系列| 欧美一区二区三区啪啪| 欧美午夜理伦三级在线观看| www.欧美亚洲| 顶级嫩模精品视频在线看| 另类小说一区二区三区| 同产精品九九九| 亚洲综合激情小说| 亚洲激情图片小说视频| 亚洲三级免费观看| 国产精品欧美久久久久无广告| 久久久精品中文字幕麻豆发布| 欧美一级片免费看| 欧美日韩国产bt| 欧美日韩一区二区三区高清 | 一区二区视频免费在线观看| 国产亚洲精久久久久久| 久久亚洲私人国产精品va媚药| 欧美一级在线视频| 欧美一级高清片| 日韩午夜三级在线| 日韩精品一区二区三区三区免费 | 国产在线看一区| 久久精品99久久久| 久久99精品久久久久久国产越南| 日韩av中文字幕一区二区 | 天堂久久久久va久久久久| 亚洲欧美日韩在线播放| 成人免费在线播放视频| 亚洲色图清纯唯美| 亚洲在线中文字幕| 亚洲五码中文字幕| 日韩电影在线看| 久久精品99久久久| 国产91丝袜在线观看| 99久久亚洲一区二区三区青草| 99国产精品久久久久久久久久| 99视频一区二区| 91黄色免费网站| 欧美高清www午色夜在线视频| 欧美一二三区精品| 精品国产乱码久久| 国产清纯白嫩初高生在线观看91| 欧美国产日韩亚洲一区| 亚洲特级片在线| 亚洲一区二区3| 久久国产婷婷国产香蕉| 精品一二三四区| 99精品国产99久久久久久白柏| 在线免费精品视频| 日韩欧美一级在线播放| 国产精品人人做人人爽人人添 | 久久99精品视频| 国产99精品国产| 欧美中文一区二区三区| 91精品国产综合久久福利| 久久这里只有精品首页| 亚洲视频图片小说| 麻豆国产精品官网| 成a人片国产精品| 欧美丰满一区二区免费视频| 精品第一国产综合精品aⅴ| 国产精品福利在线播放| 日欧美一区二区| 成人久久视频在线观看| 欧美人成免费网站| 国产片一区二区| 亚洲激情在线激情| 国产伦精品一区二区三区免费 | 中文字幕在线不卡一区| 亚洲第一精品在线| 懂色一区二区三区免费观看| 欧美性xxxxxxxx| 久久久综合网站| 亚洲一二三四区| 国产一区二区免费看| 欧美探花视频资源| 国产精品视频线看| 免费成人在线观看| 色婷婷国产精品综合在线观看| 欧美大胆人体bbbb| 一区二区三区视频在线看| 国产美女娇喘av呻吟久久| 欧美色老头old∨ideo| 国产精品日韩精品欧美在线| 蓝色福利精品导航| 欧美性一区二区| 国产精品免费视频一区| 久久福利视频一区二区| 在线欧美一区二区| 国产精品久久久久久久久免费桃花| 蜜臀a∨国产成人精品| 欧美亚男人的天堂| 亚洲欧洲精品天堂一级| 国产久卡久卡久卡久卡视频精品| 在线综合视频播放| 亚洲精品国产a| 成人免费视频视频在线观看免费| 日韩一级免费一区| 亚洲444eee在线观看| 91亚洲资源网| 亚洲欧洲在线观看av| 国产91露脸合集magnet| 久久美女高清视频| 激情综合亚洲精品| 日韩精品一区二区三区中文精品| 视频一区免费在线观看| 欧美日韩和欧美的一区二区| 亚洲裸体xxx| 91在线观看污| 国产精品毛片无遮挡高清| 精品在线一区二区| 精品播放一区二区| 开心九九激情九九欧美日韩精美视频电影| 91高清在线观看| 99久久精品国产导航| 中文字幕免费不卡在线| 国产福利91精品一区二区三区| 精品久久一区二区| 国产美女久久久久| 国产亚洲精品资源在线26u| 国产麻豆成人精品| 中文字幕不卡的av| 成人黄色综合网站| 亚洲私人影院在线观看| 91日韩精品一区| 一二三区精品福利视频| 欧美亚洲综合另类| 午夜精品123| 欧美一区二区三级| 精品一区二区三区日韩| 久久人人爽人人爽| 成人黄页在线观看| 亚洲日本护士毛茸茸| 在线观看日韩电影| 日韩综合在线视频| 精品久久久久久久人人人人传媒| 国产在线精品一区二区夜色| 国产欧美日韩综合| 99久久精品情趣| 亚洲午夜av在线| 欧美第一区第二区| 国产电影一区二区三区| 亚洲欧美在线视频| 欧美日韩国产精选| 国产综合色在线| 综合久久国产九一剧情麻豆| 欧美中文字幕一区二区三区| 麻豆国产91在线播放| 欧美激情一区二区在线| 欧美艳星brazzers| 精品一区二区三区在线播放视频| 欧美激情一区二区三区不卡 | 国产精品一色哟哟哟| 国产精品日日摸夜夜摸av| 欧美怡红院视频| 国产一区二区三区四| 亚洲免费av高清| 精品三级在线观看| 99天天综合性| 久久精品国产99| 亚洲欧美日韩人成在线播放| 91精品视频网| 99在线精品视频| 久久国产福利国产秒拍| 一区二区在线免费观看| 日韩视频在线观看一区二区| 成人国产电影网| 日本大胆欧美人术艺术动态| 中文字幕一区二区三区四区不卡| 91精品国产综合久久久久久 | 久久国产精品免费| 亚洲狠狠丁香婷婷综合久久久| 欧美一区二区三区日韩| 色综合天天综合狠狠| 另类小说综合欧美亚洲| 亚洲欧美日韩小说| 久久女同精品一区二区| 欧美区一区二区三区| voyeur盗摄精品| 精品在线你懂的| 午夜成人在线视频| 国产精品亚洲一区二区三区妖精| 亚洲国产成人av好男人在线观看| 久久久777精品电影网影网| 制服丝袜成人动漫| 91丝袜国产在线播放| 国产99久久久精品|