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

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

?? saa5249.c

?? ARM S3C2410 linux2.4 內核源碼
?? C
?? 第 1 頁 / 共 2 頁
字號:
/* *	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#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) {

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美美女黄视频| 日韩欧美一级二级| 久久电影网站中文字幕| 日韩一区在线播放| 精品99999| 欧美三级视频在线播放| 成人国产视频在线观看| 久久成人18免费观看| 性做久久久久久免费观看| 国产欧美日韩在线观看| 日韩一级高清毛片| 欧美少妇xxx| 成人av网站在线观看免费| 韩日精品视频一区| 日日夜夜免费精品视频| 亚洲综合在线五月| 日韩一区欧美一区| 国产精品美女www爽爽爽| 精品国产亚洲在线| 欧美一二三四在线| 欧美日韩1234| 在线观看免费亚洲| 91福利在线导航| av网站免费线看精品| 国产高清视频一区| 国产精品伊人色| 国产精品自拍三区| 国产一本一道久久香蕉| 久久激情五月婷婷| 久久精品国产99国产| 青青草成人在线观看| 五月综合激情日本mⅴ| 一区二区欧美国产| 亚洲第一二三四区| 婷婷成人激情在线网| 亚洲图片有声小说| 丝袜美腿亚洲色图| 日韩精品一二三| 三级不卡在线观看| 另类小说图片综合网| 久草这里只有精品视频| 精品夜夜嗨av一区二区三区| 蜜臀av性久久久久蜜臀av麻豆| 亚洲国产欧美另类丝袜| 亚洲精品国产视频| 一级女性全黄久久生活片免费| 97精品久久久午夜一区二区三区| 成人欧美一区二区三区| 国产精品久久久久久久久免费桃花| 欧美日韩色一区| 欧美日韩国产首页在线观看| 欧美日韩大陆在线| 91精品婷婷国产综合久久竹菊| 高清国产一区二区三区| 成人av电影观看| 91在线免费视频观看| 欧洲一区二区av| 91精品黄色片免费大全| 欧美变态tickle挠乳网站| 精品国产髙清在线看国产毛片 | 国产不卡在线一区| 国产91精品精华液一区二区三区 | 亚洲欧美欧美一区二区三区| 亚洲精品你懂的| 日日摸夜夜添夜夜添亚洲女人| 国产精品亲子乱子伦xxxx裸| 中文字幕一区二区三区在线观看 | 国产女人aaa级久久久级| 国产精品入口麻豆原神| 最新不卡av在线| 亚洲va中文字幕| 激情五月激情综合网| 91亚洲精品久久久蜜桃网站| 欧美日韩国产在线播放网站| 精品久久国产字幕高潮| 亚洲欧美中日韩| 免费在线观看精品| 成人高清免费在线播放| 欧美日韩成人激情| 日本一区二区免费在线观看视频| 精品国产一二三区| 亚洲美女视频一区| 久久激情综合网| 91久久线看在观草草青青| 日韩一区二区三区观看| 中文字幕日本不卡| 奇米色777欧美一区二区| 成人97人人超碰人人99| 91精品婷婷国产综合久久| 国产精品久久久久久久蜜臀 | 色综合欧美在线视频区| 欧美一卡2卡三卡4卡5免费| 中文字幕在线不卡视频| 美国欧美日韩国产在线播放| 色综合天天在线| 久久综合九色综合欧美就去吻| 日韩视频一区二区在线观看| 国产精品日韩精品欧美在线| 日本中文在线一区| 色国产综合视频| 国产亚洲欧洲一区高清在线观看| 国产午夜精品久久久久久久 | 国产精品久久久久久久岛一牛影视 | 91色综合久久久久婷婷| 精品少妇一区二区三区| 亚洲综合视频网| av电影一区二区| 欧美不卡视频一区| 午夜成人免费视频| 91免费国产在线| 国产三级一区二区| 蜜臀av国产精品久久久久| 色婷婷综合久久久久中文一区二区 | 欧美成人午夜电影| 午夜影院在线观看欧美| 不卡av电影在线播放| 久久亚洲一级片| 另类综合日韩欧美亚洲| 欧美区在线观看| 亚洲最色的网站| 在线这里只有精品| 亚洲男人天堂av网| 91在线免费看| 亚洲女爱视频在线| 色综合咪咪久久| 中文字幕国产一区| 成人网男人的天堂| 国产精品丝袜久久久久久app| 一区二区三区日韩在线观看| 99精品欧美一区| 亚洲视频在线一区| 色综合欧美在线| 一区二区三区在线免费| 99精品欧美一区| 亚洲乱码国产乱码精品精小说 | 欧美吞精做爰啪啪高潮| 亚洲精选视频免费看| 91色综合久久久久婷婷| 亚洲精选一二三| 欧美一a一片一级一片| 亚洲国产欧美在线| 91精品国产综合久久婷婷香蕉| 久久久久久一二三区| 国产成人小视频| 国产精品欧美一区喷水| 国产麻豆午夜三级精品| 国产夜色精品一区二区av| 懂色av一区二区三区免费看| 国产精品二区一区二区aⅴ污介绍| 肉丝袜脚交视频一区二区| 欧美军同video69gay| 美国十次综合导航| 国产日产欧美精品一区二区三区| 亚洲午夜av在线| 欧美第一区第二区| 国产精品中文欧美| 国产精品久久网站| 欧美视频一区二区| 久久精品国产亚洲aⅴ| 国产女主播在线一区二区| 91浏览器在线视频| 亚洲综合一二区| 欧美成人激情免费网| 成人一级视频在线观看| 一区二区三区加勒比av| 日韩你懂的在线播放| 国产成人av一区二区三区在线 | 国产曰批免费观看久久久| 中文欧美字幕免费| 欧美视频完全免费看| 精品亚洲成a人在线观看| 一色屋精品亚洲香蕉网站| 欧美狂野另类xxxxoooo| 国产精品1区2区3区在线观看| 91精品国产乱码久久蜜臀| 国产一区二区视频在线播放| 亚洲裸体在线观看| 欧美一区二区不卡视频| av激情亚洲男人天堂| 日本不卡一区二区三区| 国产精品久久久久三级| 欧美日免费三级在线| 国产乱子伦视频一区二区三区| 欧美精品一区二区久久久| 日本乱码高清不卡字幕| 老司机精品视频在线| 亚洲欧美另类小说| 精品第一国产综合精品aⅴ| 91九色最新地址| 国产精品996| 日本亚洲一区二区| 亚洲欧美一区二区三区久本道91 | 欧美性受xxxx黑人xyx性爽| 久久国产夜色精品鲁鲁99| 亚洲精品大片www| 国产亲近乱来精品视频| 欧美福利电影网| 99精品国产99久久久久久白柏| 1000部国产精品成人观看| 日韩美一区二区三区|