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

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

?? saa5249.c

?? 講述linux的初始化過程
?? 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;};#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);		/*	 *	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))<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;}/*

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美在线免费播放| 丁香亚洲综合激情啪啪综合| 国内久久精品视频| 91年精品国产| 国产三区在线成人av| 首页亚洲欧美制服丝腿| 9i看片成人免费高清| 丝袜诱惑亚洲看片| 亚洲精品一区二区三区香蕉| 99麻豆久久久国产精品免费优播| 日韩免费性生活视频播放| 国产综合色产在线精品| 国产视频视频一区| 日韩欧美中文一区二区| 不卡的电影网站| 天堂在线一区二区| 国产欧美综合色| 国产精品影视在线| 亚洲国产成人精品视频| 一级中文字幕一区二区| 国产乱淫av一区二区三区| 欧美性三三影院| 久久久亚洲精华液精华液精华液| 欧美国产日本韩| 在线一区二区观看| 蜜臀av一级做a爰片久久| 欧美激情综合五月色丁香小说| 国产成人免费视频一区| 国产精品水嫩水嫩| 久久国产精品99久久人人澡| 亚洲激情男女视频| 久久精品亚洲精品国产欧美| 欧美日韩国产美| 91丨九色丨蝌蚪丨老版| 国产又黄又大久久| 成人性生交大片免费看在线播放| 亚洲一区在线观看网站| 中文成人av在线| 成人免费毛片高清视频| 日本中文在线一区| 国产日韩影视精品| 99国产精品国产精品久久| 日韩激情视频在线观看| 一区视频在线播放| 欧美一区二区三区四区久久| 日本麻豆一区二区三区视频| 亚洲午夜免费电影| 久久久亚洲高清| 欧美唯美清纯偷拍| 91视视频在线观看入口直接观看www| 久久9热精品视频| 日日骚欧美日韩| 亚洲欧美一区二区三区极速播放| 中文一区在线播放| 99精品欧美一区| 国产一区在线观看麻豆| 久久精品国产99国产| 日本不卡1234视频| 亚洲一本大道在线| 精品久久免费看| 91香蕉国产在线观看软件| 亚洲一区二区视频| 激情欧美一区二区| 亚洲资源在线观看| 精品欧美一区二区三区精品久久 | 欧美系列日韩一区| 精品视频一区 二区 三区| 精品一区二区久久| 国产三级三级三级精品8ⅰ区| 国产精品久久久久影院色老大| 欧美成人精品3d动漫h| 欧美男男青年gay1069videost| 欧美视频在线一区| 欧美成人video| 久久久777精品电影网影网| 欧美一区二区视频在线观看2020 | 国内久久精品视频| 一区二区在线观看免费视频播放| 国产精品原创巨作av| 高清日韩电视剧大全免费| 成人夜色视频网站在线观看| 欧美变态口味重另类| 亚洲亚洲精品在线观看| 久久久久久久久久久电影| 日韩伦理av电影| 92精品国产成人观看免费| 日本丶国产丶欧美色综合| 日韩一区二区麻豆国产| 亚洲成va人在线观看| 欧美日韩国产影片| 日韩精品一区二区三区在线播放| 精品国精品国产| 亚洲精品国产高清久久伦理二区| 美女视频第一区二区三区免费观看网站| 9久草视频在线视频精品| 91精品国产丝袜白色高跟鞋| 免费在线观看不卡| 色婷婷精品大在线视频 | 婷婷一区二区三区| 国产美女av一区二区三区| 久久新电视剧免费观看| 久久精品国产亚洲a| 91福利视频久久久久| 91精品国产综合久久香蕉的特点| 久久综合狠狠综合| 精品中文字幕一区二区小辣椒| 99久久精品国产导航| 国产精品色在线| 欧美午夜电影网| 亚瑟在线精品视频| 不卡电影一区二区三区| 午夜电影久久久| 成人午夜私人影院| 国产精品久久综合| 欧美xxxxxxxxx| 国产一区二区三区在线看麻豆| 欧美偷拍一区二区| 亚洲成av人影院在线观看网| 亚洲免费观看视频| 精品噜噜噜噜久久久久久久久试看 | 风间由美一区二区三区在线观看| 中文字幕欧美日韩一区| 97超碰欧美中文字幕| 成人av片在线观看| 日韩精品91亚洲二区在线观看| 在线欧美一区二区| 久久国产婷婷国产香蕉| 日韩精品欧美成人高清一区二区| 亚洲激情欧美激情| 亚洲国产精品成人综合| 日韩精品一区二区三区在线| 91香蕉视频污在线| 久久国产婷婷国产香蕉| 亚洲国产精品尤物yw在线观看| 综合欧美一区二区三区| 日韩精品一区二区三区视频播放| 99在线精品观看| 麻豆freexxxx性91精品| 性做久久久久久| 亚洲电影中文字幕在线观看| 久久久不卡网国产精品一区| 3d成人h动漫网站入口| 欧洲国内综合视频| 欧美经典一区二区| 日韩亚洲欧美成人一区| 成人手机电影网| jlzzjlzz亚洲日本少妇| 欧美视频一区二区在线观看| 欧美二区在线观看| 久久精品视频网| 精一区二区三区| 92国产精品观看| 欧美欧美欧美欧美| 久久精品男人天堂av| 亚洲综合色视频| 国产在线精品免费| 欧美影视一区二区三区| 久久久蜜臀国产一区二区| 亚洲色图视频网站| 日韩一区精品视频| 成人av免费网站| 欧美va亚洲va国产综合| 自拍偷拍国产亚洲| 麻豆精品在线观看| 在线观看日韩av先锋影音电影院| 久久夜色精品国产欧美乱极品| 亚洲精品免费看| 国产成人午夜99999| 欧美顶级少妇做爰| 亚洲日本在线观看| 国产另类ts人妖一区二区| 欧美在线一二三四区| 国产精品视频免费| 毛片一区二区三区| 欧美综合天天夜夜久久| 国产女主播一区| 狠狠色综合日日| 91精品国产91久久综合桃花| 亚洲免费色视频| 99久久国产综合精品麻豆| 久久久精品黄色| 激情综合色综合久久| 4438x亚洲最大成人网| 亚洲一区二区三区在线| 色综合色综合色综合色综合色综合 | 色成人在线视频| 中文字幕欧美国产| 国产91丝袜在线18| 国产色婷婷亚洲99精品小说| 久久疯狂做爰流白浆xx| 欧美无人高清视频在线观看| 亚洲综合激情另类小说区| 99精品久久只有精品| 国产精品福利av| av电影天堂一区二区在线| 国产女人18毛片水真多成人如厕| 国产一区二区三区久久久| 久久久久免费观看| 国产精品99久久久久久似苏梦涵| ww久久中文字幕|