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

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

?? saa5249.c

?? 上傳linux-jx2410的源代碼
?? C
?? 第 1 頁(yè) / 共 2 頁(yè)
字號(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.1.1 2004/02/04 12:56:21 laputa 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#ifndef MIN#define MIN(a, b) ((a) < (b) ? (a) : (b))#define MAX(a, b) ((a) > (b) ? (a) : (b))#endif#define RESCHED \        do { \          if (current->need_resched) \            schedule(); \        } 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, unsigned short flags, 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));	strcpy(client->name, IF_NAME);	init_MUTEX(&t->lock);		/*	 *	Now create a video4linux device	 */	 	client->data = vd=(struct video_device *)kmalloc(sizeof(struct video_device), GFP_KERNEL);	if(vd==NULL)	{		kfree(t);		kfree(client);		return -ENOMEM;	}	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);	MOD_INC_USE_COUNT;	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){	/* Only attach these chips to the BT848 bus for now */		if (adap->id == (I2C_ALGO_BIT | I2C_HW_B_BT848))	{		return i2c_probe(adap, &addr_data, saa5249_attach);	}	return 0;}static int saa5249_detach(struct i2c_client *client){	struct video_device *vd=client->data;	i2c_detach_client(client);	video_unregister_device(vd);	kfree(vd->priv);	kfree(vd);	kfree(client);	MOD_DEC_USE_COUNT;	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 = {	IF_NAME,		/* name */	I2C_DRIVERID_SAA5249, /* in i2c.h */	I2C_DF_NOTIFY,	saa5249_probe,	saa5249_detach,	saa5249_command};static struct i2c_client client_template = {	"(unset)",	-1,	0,	0,	NULL,	&i2c_driver_videotext};/* *	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->sigmask_lock);	sigfillset(&current->blocked);	recalc_sigpending(current);	spin_unlock_irq(&current->sigmask_lock);	current->state = TASK_INTERRUPTIBLE;	schedule_timeout(delay);	spin_lock_irq(&current->sigmask_lock);	current->blocked = oldblocked;	recalc_sigpending(current);	spin_unlock_irq(&current->sigmask_lock);}/* *	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 saa5249_device *t, unsigned int cmd, void *arg) {

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
中文字幕制服丝袜一区二区三区| 久久久精品天堂| 国产成人福利片| 亚洲午夜成aⅴ人片| 国产偷国产偷精品高清尤物| 欧美亚洲国产bt| 成人午夜在线播放| 美女视频免费一区| 夜夜嗨av一区二区三区中文字幕| 精品精品国产高清一毛片一天堂| 欧美午夜宅男影院| 91一区二区三区在线观看| 国产综合色在线| 日韩综合一区二区| 亚洲一区视频在线观看视频| 国产精品免费久久| 久久久精品综合| 欧美mv和日韩mv的网站| 欧美日韩国产成人在线91| 91污在线观看| av亚洲精华国产精华精| 国产精品一区二区三区99| 日本欧美在线观看| 日韩国产欧美视频| 香蕉加勒比综合久久| 一区二区三区久久| 亚洲伦理在线免费看| 国产精品夫妻自拍| 国产精品毛片无遮挡高清| 亚洲精品一区二区三区99| 日韩情涩欧美日韩视频| 91精品国产日韩91久久久久久| 在线观看日韩高清av| 色婷婷综合久色| 色噜噜狠狠色综合欧洲selulu| av在线播放一区二区三区| 成人高清在线视频| 99久久精品国产导航| 成人av在线播放网址| www.亚洲免费av| a亚洲天堂av| 91猫先生在线| 日本电影欧美片| 欧美色视频在线| 欧美日韩dvd在线观看| 欧美日韩和欧美的一区二区| 欧美日韩国产一区二区三区地区| 欧美日韩中字一区| 91精品国产一区二区三区| 欧美一级免费大片| 精品乱人伦小说| 欧美国产激情一区二区三区蜜月| 国产精品色婷婷| 一区二区在线观看不卡| 五月天网站亚洲| 久久国内精品视频| 国产电影一区二区三区| 99久久er热在这里只有精品15| 国产精品久久午夜夜伦鲁鲁| 国产丝袜在线精品| 亚洲色图清纯唯美| 日韩电影在线免费看| 久久国产免费看| 成人午夜精品在线| 色拍拍在线精品视频8848| 欧美片在线播放| 久久久亚洲高清| 亚洲欧洲av色图| 日本少妇一区二区| 成人国产精品免费观看视频| 在线免费一区三区| 日韩免费观看高清完整版在线观看| 久久伊人中文字幕| 综合久久一区二区三区| 日日骚欧美日韩| 成人av在线播放网址| 欧美日韩精品是欧美日韩精品| 精品国产a毛片| 亚洲自拍与偷拍| 国产一区二区三区电影在线观看| 成人国产精品免费观看动漫| 在线不卡欧美精品一区二区三区| 26uuu国产在线精品一区二区| 亚洲乱码日产精品bd| 久久av老司机精品网站导航| 不卡视频在线看| 日韩欧美国产小视频| 亚洲欧美精品午睡沙发| 久久丁香综合五月国产三级网站| av电影在线观看一区| 精品乱码亚洲一区二区不卡| 伊人婷婷欧美激情| 国产一区二区网址| 欧美日韩国产一级| 国产精品的网站| 久久精品久久99精品久久| 91麻豆精品视频| 久久久午夜精品| 全部av―极品视觉盛宴亚洲| 91香蕉视频黄| 欧美激情在线看| 久久99在线观看| 欧美日韩在线电影| 亚洲欧美日韩精品久久久久| 国内精品视频666| 6080yy午夜一二三区久久| 玉足女爽爽91| 99国产一区二区三精品乱码| 精品国产免费人成在线观看| 午夜电影网一区| 一本色道久久综合亚洲aⅴ蜜桃 | 欧美亚洲国产一区二区三区va| 国产亚洲女人久久久久毛片| 偷拍一区二区三区| 欧美在线短视频| 亚洲美女视频在线观看| 高清成人免费视频| 久久久精品tv| 国产一区二区三区四区五区美女| 欧美老人xxxx18| 亚洲成人中文在线| 日本精品视频一区二区三区| 日韩美女啊v在线免费观看| 国产91高潮流白浆在线麻豆| 26uuu精品一区二区三区四区在线| 青青草97国产精品免费观看| 欧美日韩免费不卡视频一区二区三区| 亚洲自拍欧美精品| 在线观看欧美日本| 夜夜亚洲天天久久| 91豆麻精品91久久久久久| 亚洲免费高清视频在线| 91亚洲国产成人精品一区二区三| 国产精品动漫网站| 91在线观看免费视频| 亚洲精品欧美综合四区| 91成人看片片| 婷婷久久综合九色综合伊人色| 欧美日韩亚洲丝袜制服| 日韩电影免费在线看| 日韩女优av电影| 精品亚洲国内自在自线福利| 欧美电影免费观看高清完整版在| 久久99精品国产麻豆婷婷| 久久蜜桃一区二区| 国v精品久久久网| 亚洲视频你懂的| 欧美性极品少妇| 国产精品一区久久久久| 一区二区三区资源| 丝袜诱惑制服诱惑色一区在线观看| 欧洲一区在线观看| 亚洲sss视频在线视频| 欧美理论片在线| 69堂精品视频| 国产做a爰片久久毛片| 欧美国产一区二区在线观看| fc2成人免费人成在线观看播放| 亚洲欧洲中文日韩久久av乱码| 在线观看精品一区| 日本成人在线网站| 欧美精品一区二区精品网| av一二三不卡影片| 亚洲va天堂va国产va久| 日韩一区二区三区三四区视频在线观看| 美日韩黄色大片| 亚洲国产高清在线| 欧美丝袜丝交足nylons| 激情欧美日韩一区二区| 国产精品色噜噜| 91麻豆精品国产自产在线观看一区 | av在线这里只有精品| 亚洲第一搞黄网站| 26uuu国产电影一区二区| 色综合天天综合给合国产| 石原莉奈在线亚洲二区| 中文字幕不卡在线播放| 欧美日韩精品一区二区三区| 国产乱子轮精品视频| 亚洲精品第1页| 精品99久久久久久| 欧美亚洲愉拍一区二区| 国产在线国偷精品免费看| 一区二区欧美在线观看| 日韩精品一区二| 色综合久久88色综合天天6 | 亚洲色图视频网| 久久色成人在线| 欧美日韩国产精选| 北岛玲一区二区三区四区| 久久99最新地址| 亚洲国产cao| 中文字幕人成不卡一区| 日韩精品中文字幕一区| 欧美揉bbbbb揉bbbbb| 国产成人啪免费观看软件| 视频在线观看一区| 亚洲免费观看在线视频| 国产亚洲欧美日韩日本| 91麻豆精品91久久久久同性|