⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 saa5249.c

📁 V4l driver for DVB HD
💻 C
📖 第 1 页 / 共 2 页
字号:
/* * Modified in order to keep it compatible both with new and old videotext IOCTLs by * Michael Geng <linux@MichaelGeng.de> * *	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 "compat.h"#include <linux/videodev.h>#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,15)#include <linux/mutex.h>#endif#include <asm/io.h>#include <asm/uaccess.h>#define VTX_VER_MAJ 1#define VTX_VER_MIN 8#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 mutex 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};#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,13)static unsigned short normal_i2c_range[] = { I2C_CLIENT_END };#endifI2C_CLIENT_INSMOD;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 = kzalloc(sizeof(*t), GFP_KERNEL);	if(t==NULL)	{		kfree(client);		return -ENOMEM;	}	strlcpy(client->name, IF_NAME, I2C_NAME_SIZE);	mutex_init(&t->lock);	/*	 *	Now create a video4linux device	 */	vd = 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;}/* new I2C driver support */static struct i2c_driver i2c_driver_videotext ={	.driver = {		.name 	= IF_NAME,		/* name */	},	.id 		= I2C_DRIVERID_SAA5249, /* in i2c.h */	.attach_adapter = saa5249_probe,	.detach_client  = saa5249_detach,};static struct i2c_client client_template = {	.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);	msleep_interruptible(jiffies_to_msecs(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;			info->version_major = VTX_VER_MAJ;			info->version_minor = VTX_VER_MIN;			info->numpages = NUM_DAUS;			/*info->cct_type = CCT_TYPE;*/			return 0;		}		case VTXIOCCLRPAGE:		{			vtx_pagereq_t *req = arg;			if (req->pgbuf < 0 || req->pgbuf >= NUM_DAUS)				return -EINVAL;			memset(t->vdau[req->pgbuf].pgbuf, ' ', sizeof(t->vdau[0].pgbuf));			t->vdau[req->pgbuf].clrfound = TRUE;			return 0;		}		case VTXIOCCLRFOUND:		{			vtx_pagereq_t *req = arg;			if (req->pgbuf < 0 || req->pgbuf >= NUM_DAUS)				return -EINVAL;			t->vdau[req->pgbuf].clrfound = TRUE;			return 0;		}		case VTXIOCPAGEREQ:		{

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -