V4L/DVB (9204): saa7110: convert i2c driver for new i2c API
- Convert to use v4l2-i2c-drv-legacy.h to be able to handle the new i2c API - Cleanups - Use v4l_dbg/v4l_info to have uniform kernel messages Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
Родитель
9875c0fb32
Коммит
85ede69fec
|
@ -31,36 +31,24 @@
|
||||||
#include <linux/delay.h>
|
#include <linux/delay.h>
|
||||||
#include <linux/slab.h>
|
#include <linux/slab.h>
|
||||||
#include <linux/wait.h>
|
#include <linux/wait.h>
|
||||||
#include <asm/io.h>
|
|
||||||
#include <asm/uaccess.h>
|
#include <asm/uaccess.h>
|
||||||
|
#include <linux/i2c.h>
|
||||||
|
#include <linux/videodev.h>
|
||||||
|
#include <linux/video_decoder.h>
|
||||||
|
#include <media/v4l2-common.h>
|
||||||
|
#include <media/v4l2-i2c-drv-legacy.h>
|
||||||
|
|
||||||
MODULE_DESCRIPTION("Philips SAA7110 video decoder driver");
|
MODULE_DESCRIPTION("Philips SAA7110 video decoder driver");
|
||||||
MODULE_AUTHOR("Pauline Middelink");
|
MODULE_AUTHOR("Pauline Middelink");
|
||||||
MODULE_LICENSE("GPL");
|
MODULE_LICENSE("GPL");
|
||||||
|
|
||||||
#include <linux/i2c.h>
|
|
||||||
|
|
||||||
#define I2C_NAME(s) (s)->name
|
|
||||||
|
|
||||||
#include <linux/videodev.h>
|
|
||||||
#include <media/v4l2-common.h>
|
|
||||||
#include <linux/video_decoder.h>
|
|
||||||
|
|
||||||
static int debug;
|
static int debug;
|
||||||
module_param(debug, int, 0);
|
module_param(debug, int, 0);
|
||||||
MODULE_PARM_DESC(debug, "Debug level (0-1)");
|
MODULE_PARM_DESC(debug, "Debug level (0-1)");
|
||||||
|
|
||||||
#define dprintk(num, format, args...) \
|
|
||||||
do { \
|
|
||||||
if (debug >= num) \
|
|
||||||
printk(format, ##args); \
|
|
||||||
} while (0)
|
|
||||||
|
|
||||||
#define SAA7110_MAX_INPUT 9 /* 6 CVBS, 3 SVHS */
|
#define SAA7110_MAX_INPUT 9 /* 6 CVBS, 3 SVHS */
|
||||||
#define SAA7110_MAX_OUTPUT 0 /* its a decoder only */
|
#define SAA7110_MAX_OUTPUT 0 /* its a decoder only */
|
||||||
|
|
||||||
#define I2C_SAA7110 0x9C /* or 0x9E */
|
|
||||||
|
|
||||||
#define SAA7110_NR_REG 0x35
|
#define SAA7110_NR_REG 0x35
|
||||||
|
|
||||||
struct saa7110 {
|
struct saa7110 {
|
||||||
|
@ -81,10 +69,7 @@ struct saa7110 {
|
||||||
/* I2C support functions */
|
/* I2C support functions */
|
||||||
/* ----------------------------------------------------------------------- */
|
/* ----------------------------------------------------------------------- */
|
||||||
|
|
||||||
static int
|
static int saa7110_write(struct i2c_client *client, u8 reg, u8 value)
|
||||||
saa7110_write (struct i2c_client *client,
|
|
||||||
u8 reg,
|
|
||||||
u8 value)
|
|
||||||
{
|
{
|
||||||
struct saa7110 *decoder = i2c_get_clientdata(client);
|
struct saa7110 *decoder = i2c_get_clientdata(client);
|
||||||
|
|
||||||
|
@ -92,10 +77,7 @@ saa7110_write (struct i2c_client *client,
|
||||||
return i2c_smbus_write_byte_data(client, reg, value);
|
return i2c_smbus_write_byte_data(client, reg, value);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int
|
static int saa7110_write_block(struct i2c_client *client, const u8 *data, unsigned int len)
|
||||||
saa7110_write_block (struct i2c_client *client,
|
|
||||||
const u8 *data,
|
|
||||||
unsigned int len)
|
|
||||||
{
|
{
|
||||||
int ret = -1;
|
int ret = -1;
|
||||||
u8 reg = *data; /* first register to write to */
|
u8 reg = *data; /* first register to write to */
|
||||||
|
@ -115,8 +97,8 @@ saa7110_write_block (struct i2c_client *client,
|
||||||
memcpy(decoder->reg + reg, data + 1, len - 1);
|
memcpy(decoder->reg + reg, data + 1, len - 1);
|
||||||
} else {
|
} else {
|
||||||
for (++data, --len; len; len--) {
|
for (++data, --len; len; len--) {
|
||||||
if ((ret = saa7110_write(client, reg++,
|
ret = saa7110_write(client, reg++, *data++);
|
||||||
*data++)) < 0)
|
if (ret < 0)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -124,8 +106,7 @@ saa7110_write_block (struct i2c_client *client,
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline int
|
static inline int saa7110_read(struct i2c_client *client)
|
||||||
saa7110_read (struct i2c_client *client)
|
|
||||||
{
|
{
|
||||||
return i2c_smbus_read_byte(client);
|
return i2c_smbus_read_byte(client);
|
||||||
}
|
}
|
||||||
|
@ -138,9 +119,7 @@ saa7110_read (struct i2c_client *client)
|
||||||
#define FRESP_06H_SVIDEO 0x83 //0xC0
|
#define FRESP_06H_SVIDEO 0x83 //0xC0
|
||||||
|
|
||||||
|
|
||||||
static int
|
static int saa7110_selmux(struct i2c_client *client, int chan)
|
||||||
saa7110_selmux (struct i2c_client *client,
|
|
||||||
int chan)
|
|
||||||
{
|
{
|
||||||
static const unsigned char modes[9][8] = {
|
static const unsigned char modes[9][8] = {
|
||||||
/* mode 0 */
|
/* mode 0 */
|
||||||
|
@ -197,8 +176,7 @@ static const unsigned char initseq[1 + SAA7110_NR_REG] = {
|
||||||
/* 0x30 */ 0x44, 0x71, 0x02, 0x8C, 0x02
|
/* 0x30 */ 0x44, 0x71, 0x02, 0x8C, 0x02
|
||||||
};
|
};
|
||||||
|
|
||||||
static int
|
static int determine_norm(struct i2c_client *client)
|
||||||
determine_norm (struct i2c_client *client)
|
|
||||||
{
|
{
|
||||||
DEFINE_WAIT(wait);
|
DEFINE_WAIT(wait);
|
||||||
struct saa7110 *decoder = i2c_get_clientdata(client);
|
struct saa7110 *decoder = i2c_get_clientdata(client);
|
||||||
|
@ -212,29 +190,23 @@ determine_norm (struct i2c_client *client)
|
||||||
finish_wait(&decoder->wq, &wait);
|
finish_wait(&decoder->wq, &wait);
|
||||||
status = saa7110_read(client);
|
status = saa7110_read(client);
|
||||||
if (status & 0x40) {
|
if (status & 0x40) {
|
||||||
dprintk(1, KERN_INFO "%s: status=0x%02x (no signal)\n",
|
v4l_dbg(1, debug, client, "status=0x%02x (no signal)\n", status);
|
||||||
I2C_NAME(client), status);
|
|
||||||
return decoder->norm; // no change
|
return decoder->norm; // no change
|
||||||
}
|
}
|
||||||
if ((status & 3) == 0) {
|
if ((status & 3) == 0) {
|
||||||
saa7110_write(client, 0x06, 0x83);
|
saa7110_write(client, 0x06, 0x83);
|
||||||
if (status & 0x20) {
|
if (status & 0x20) {
|
||||||
dprintk(1,
|
v4l_dbg(1, debug, client, "status=0x%02x (NTSC/no color)\n", status);
|
||||||
KERN_INFO
|
|
||||||
"%s: status=0x%02x (NTSC/no color)\n",
|
|
||||||
I2C_NAME(client), status);
|
|
||||||
//saa7110_write(client,0x2E,0x81);
|
//saa7110_write(client,0x2E,0x81);
|
||||||
return VIDEO_MODE_NTSC;
|
return VIDEO_MODE_NTSC;
|
||||||
}
|
}
|
||||||
dprintk(1, KERN_INFO "%s: status=0x%02x (PAL/no color)\n",
|
v4l_dbg(1, debug, client, "status=0x%02x (PAL/no color)\n", status);
|
||||||
I2C_NAME(client), status);
|
|
||||||
//saa7110_write(client,0x2E,0x9A);
|
//saa7110_write(client,0x2E,0x9A);
|
||||||
return VIDEO_MODE_PAL;
|
return VIDEO_MODE_PAL;
|
||||||
}
|
}
|
||||||
//saa7110_write(client,0x06,0x03);
|
//saa7110_write(client,0x06,0x03);
|
||||||
if (status & 0x20) { /* 60Hz */
|
if (status & 0x20) { /* 60Hz */
|
||||||
dprintk(1, KERN_INFO "%s: status=0x%02x (NTSC)\n",
|
v4l_dbg(1, debug, client, "status=0x%02x (NTSC)\n", status);
|
||||||
I2C_NAME(client), status);
|
|
||||||
saa7110_write(client, 0x0D, 0x86);
|
saa7110_write(client, 0x0D, 0x86);
|
||||||
saa7110_write(client, 0x0F, 0x50);
|
saa7110_write(client, 0x0F, 0x50);
|
||||||
saa7110_write(client, 0x11, 0x2C);
|
saa7110_write(client, 0x11, 0x2C);
|
||||||
|
@ -254,13 +226,11 @@ determine_norm (struct i2c_client *client)
|
||||||
|
|
||||||
status = saa7110_read(client);
|
status = saa7110_read(client);
|
||||||
if ((status & 0x03) == 0x01) {
|
if ((status & 0x03) == 0x01) {
|
||||||
dprintk(1, KERN_INFO "%s: status=0x%02x (SECAM)\n",
|
v4l_dbg(1, debug, client, "status=0x%02x (SECAM)\n", status);
|
||||||
I2C_NAME(client), status);
|
|
||||||
saa7110_write(client, 0x0D, 0x87);
|
saa7110_write(client, 0x0D, 0x87);
|
||||||
return VIDEO_MODE_SECAM;
|
return VIDEO_MODE_SECAM;
|
||||||
}
|
}
|
||||||
dprintk(1, KERN_INFO "%s: status=0x%02x (PAL)\n", I2C_NAME(client),
|
v4l_dbg(1, debug, client, "status=0x%02x (PAL)\n", status);
|
||||||
status);
|
|
||||||
return VIDEO_MODE_PAL;
|
return VIDEO_MODE_PAL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -286,8 +256,8 @@ saa7110_command (struct i2c_client *client,
|
||||||
VIDEO_DECODER_SECAM | VIDEO_DECODER_AUTO;
|
VIDEO_DECODER_SECAM | VIDEO_DECODER_AUTO;
|
||||||
dc->inputs = SAA7110_MAX_INPUT;
|
dc->inputs = SAA7110_MAX_INPUT;
|
||||||
dc->outputs = SAA7110_MAX_OUTPUT;
|
dc->outputs = SAA7110_MAX_OUTPUT;
|
||||||
}
|
|
||||||
break;
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
case DECODER_GET_STATUS:
|
case DECODER_GET_STATUS:
|
||||||
{
|
{
|
||||||
|
@ -295,8 +265,8 @@ saa7110_command (struct i2c_client *client,
|
||||||
int res = 0;
|
int res = 0;
|
||||||
|
|
||||||
status = saa7110_read(client);
|
status = saa7110_read(client);
|
||||||
dprintk(1, KERN_INFO "%s: status=0x%02x norm=%d\n",
|
v4l_dbg(1, debug, client, "status=0x%02x norm=%d\n",
|
||||||
I2C_NAME(client), status, decoder->norm);
|
status, decoder->norm);
|
||||||
if (!(status & 0x40))
|
if (!(status & 0x40))
|
||||||
res |= DECODER_STATUS_GOOD;
|
res |= DECODER_STATUS_GOOD;
|
||||||
if (status & 0x03)
|
if (status & 0x03)
|
||||||
|
@ -314,8 +284,8 @@ saa7110_command (struct i2c_client *client,
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
*(int *) arg = res;
|
*(int *) arg = res;
|
||||||
}
|
|
||||||
break;
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
case DECODER_SET_NORM:
|
case DECODER_SET_NORM:
|
||||||
v = *(int *) arg;
|
v = *(int *) arg;
|
||||||
|
@ -328,34 +298,24 @@ saa7110_command (struct i2c_client *client,
|
||||||
saa7110_write(client, 0x0F, 0x50);
|
saa7110_write(client, 0x0F, 0x50);
|
||||||
saa7110_write(client, 0x11, 0x2C);
|
saa7110_write(client, 0x11, 0x2C);
|
||||||
//saa7110_write(client, 0x2E, 0x81);
|
//saa7110_write(client, 0x2E, 0x81);
|
||||||
dprintk(1,
|
v4l_dbg(1, debug, client, "switched to NTSC\n");
|
||||||
KERN_INFO "%s: switched to NTSC\n",
|
|
||||||
I2C_NAME(client));
|
|
||||||
break;
|
break;
|
||||||
case VIDEO_MODE_PAL:
|
case VIDEO_MODE_PAL:
|
||||||
saa7110_write(client, 0x0D, 0x86);
|
saa7110_write(client, 0x0D, 0x86);
|
||||||
saa7110_write(client, 0x0F, 0x10);
|
saa7110_write(client, 0x0F, 0x10);
|
||||||
saa7110_write(client, 0x11, 0x59);
|
saa7110_write(client, 0x11, 0x59);
|
||||||
//saa7110_write(client, 0x2E, 0x9A);
|
//saa7110_write(client, 0x2E, 0x9A);
|
||||||
dprintk(1,
|
v4l_dbg(1, debug, client, "switched to PAL\n");
|
||||||
KERN_INFO "%s: switched to PAL\n",
|
|
||||||
I2C_NAME(client));
|
|
||||||
break;
|
break;
|
||||||
case VIDEO_MODE_SECAM:
|
case VIDEO_MODE_SECAM:
|
||||||
saa7110_write(client, 0x0D, 0x87);
|
saa7110_write(client, 0x0D, 0x87);
|
||||||
saa7110_write(client, 0x0F, 0x10);
|
saa7110_write(client, 0x0F, 0x10);
|
||||||
saa7110_write(client, 0x11, 0x59);
|
saa7110_write(client, 0x11, 0x59);
|
||||||
//saa7110_write(client, 0x2E, 0x9A);
|
//saa7110_write(client, 0x2E, 0x9A);
|
||||||
dprintk(1,
|
v4l_dbg(1, debug, client, "switched to SECAM\n");
|
||||||
KERN_INFO
|
|
||||||
"%s: switched to SECAM\n",
|
|
||||||
I2C_NAME(client));
|
|
||||||
break;
|
break;
|
||||||
case VIDEO_MODE_AUTO:
|
case VIDEO_MODE_AUTO:
|
||||||
dprintk(1,
|
v4l_dbg(1, debug, client, "switched to AUTO\n");
|
||||||
KERN_INFO
|
|
||||||
"%s: TV standard detection...\n",
|
|
||||||
I2C_NAME(client));
|
|
||||||
decoder->norm = determine_norm(client);
|
decoder->norm = determine_norm(client);
|
||||||
*(int *) arg = decoder->norm;
|
*(int *) arg = decoder->norm;
|
||||||
break;
|
break;
|
||||||
|
@ -368,15 +328,12 @@ saa7110_command (struct i2c_client *client,
|
||||||
case DECODER_SET_INPUT:
|
case DECODER_SET_INPUT:
|
||||||
v = *(int *) arg;
|
v = *(int *) arg;
|
||||||
if (v < 0 || v > SAA7110_MAX_INPUT) {
|
if (v < 0 || v > SAA7110_MAX_INPUT) {
|
||||||
dprintk(1,
|
v4l_dbg(1, debug, client, "input=%d not available\n", v);
|
||||||
KERN_INFO "%s: input=%d not available\n",
|
|
||||||
I2C_NAME(client), v);
|
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
if (decoder->input != v) {
|
if (decoder->input != v) {
|
||||||
saa7110_selmux(client, v);
|
saa7110_selmux(client, v);
|
||||||
dprintk(1, KERN_INFO "%s: switched to input=%d\n",
|
v4l_dbg(1, debug, client, "switched to input=%d\n", v);
|
||||||
I2C_NAME(client), v);
|
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
@ -392,8 +349,7 @@ saa7110_command (struct i2c_client *client,
|
||||||
if (decoder->enable != v) {
|
if (decoder->enable != v) {
|
||||||
decoder->enable = v;
|
decoder->enable = v;
|
||||||
saa7110_write(client, 0x0E, v ? 0x18 : 0x80);
|
saa7110_write(client, 0x0E, v ? 0x18 : 0x80);
|
||||||
dprintk(1, KERN_INFO "%s: YUV %s\n", I2C_NAME(client),
|
v4l_dbg(1, debug, client, "YUV %s\n", v ? "on" : "off");
|
||||||
v ? "on" : "off");
|
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
@ -423,23 +379,23 @@ saa7110_command (struct i2c_client *client,
|
||||||
saa7110_write(client, 0x07,
|
saa7110_write(client, 0x07,
|
||||||
(decoder->hue >> 8) - 128);
|
(decoder->hue >> 8) - 128);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
break;
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
case DECODER_DUMP:
|
case DECODER_DUMP:
|
||||||
|
if (!debug)
|
||||||
|
break;
|
||||||
for (v = 0; v < SAA7110_NR_REG; v += 16) {
|
for (v = 0; v < SAA7110_NR_REG; v += 16) {
|
||||||
int j;
|
int j;
|
||||||
dprintk(1, KERN_DEBUG "%s: %02x:", I2C_NAME(client),
|
v4l_dbg(1, debug, client, "%02x:", v);
|
||||||
v);
|
|
||||||
for (j = 0; j < 16 && v + j < SAA7110_NR_REG; j++)
|
for (j = 0; j < 16 && v + j < SAA7110_NR_REG; j++)
|
||||||
dprintk(1, " %02x", decoder->reg[v + j]);
|
printk(KERN_CONT " %02x", decoder->reg[v + j]);
|
||||||
dprintk(1, "\n");
|
printk(KERN_CONT "\n");
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
dprintk(1, KERN_INFO "unknown saa7110_command??(%d)\n",
|
v4l_dbg(1, debug, client, "unknown command %08x\n", cmd);
|
||||||
cmd);
|
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -451,55 +407,28 @@ saa7110_command (struct i2c_client *client,
|
||||||
* Generic i2c probe
|
* Generic i2c probe
|
||||||
* concerning the addresses: i2c wants 7 bit (without the r/w bit), so '>>1'
|
* concerning the addresses: i2c wants 7 bit (without the r/w bit), so '>>1'
|
||||||
*/
|
*/
|
||||||
static unsigned short normal_i2c[] = {
|
|
||||||
I2C_SAA7110 >> 1,
|
|
||||||
(I2C_SAA7110 >> 1) + 1,
|
|
||||||
I2C_CLIENT_END
|
|
||||||
};
|
|
||||||
|
|
||||||
static unsigned short ignore = I2C_CLIENT_END;
|
static unsigned short normal_i2c[] = { 0x9c >> 1, 0x9e >> 1, I2C_CLIENT_END };
|
||||||
|
|
||||||
static struct i2c_client_address_data addr_data = {
|
I2C_CLIENT_INSMOD;
|
||||||
.normal_i2c = normal_i2c,
|
|
||||||
.probe = &ignore,
|
|
||||||
.ignore = &ignore,
|
|
||||||
};
|
|
||||||
|
|
||||||
static struct i2c_driver i2c_driver_saa7110;
|
static int saa7110_probe(struct i2c_client *client,
|
||||||
|
const struct i2c_device_id *id)
|
||||||
static int
|
|
||||||
saa7110_detect_client (struct i2c_adapter *adapter,
|
|
||||||
int address,
|
|
||||||
int kind)
|
|
||||||
{
|
{
|
||||||
struct i2c_client *client;
|
|
||||||
struct saa7110 *decoder;
|
struct saa7110 *decoder;
|
||||||
int rv;
|
int rv;
|
||||||
|
|
||||||
dprintk(1,
|
|
||||||
KERN_INFO
|
|
||||||
"saa7110.c: detecting saa7110 client on address 0x%x\n",
|
|
||||||
address << 1);
|
|
||||||
|
|
||||||
/* Check if the adapter supports the needed features */
|
/* Check if the adapter supports the needed features */
|
||||||
if (!i2c_check_functionality
|
if (!i2c_check_functionality(client->adapter,
|
||||||
(adapter,
|
I2C_FUNC_SMBUS_READ_BYTE | I2C_FUNC_SMBUS_WRITE_BYTE_DATA))
|
||||||
I2C_FUNC_SMBUS_READ_BYTE | I2C_FUNC_SMBUS_WRITE_BYTE_DATA))
|
return -ENODEV;
|
||||||
return 0;
|
|
||||||
|
|
||||||
client = kzalloc(sizeof(struct i2c_client), GFP_KERNEL);
|
v4l_info(client, "chip found @ 0x%x (%s)\n",
|
||||||
if (!client)
|
client->addr << 1, client->adapter->name);
|
||||||
return -ENOMEM;
|
|
||||||
client->addr = address;
|
|
||||||
client->adapter = adapter;
|
|
||||||
client->driver = &i2c_driver_saa7110;
|
|
||||||
strlcpy(I2C_NAME(client), "saa7110", sizeof(I2C_NAME(client)));
|
|
||||||
|
|
||||||
decoder = kzalloc(sizeof(struct saa7110), GFP_KERNEL);
|
decoder = kzalloc(sizeof(struct saa7110), GFP_KERNEL);
|
||||||
if (!decoder) {
|
if (!decoder)
|
||||||
kfree(client);
|
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
}
|
|
||||||
decoder->norm = VIDEO_MODE_PAL;
|
decoder->norm = VIDEO_MODE_PAL;
|
||||||
decoder->input = 0;
|
decoder->input = 0;
|
||||||
decoder->enable = 1;
|
decoder->enable = 1;
|
||||||
|
@ -510,18 +439,10 @@ saa7110_detect_client (struct i2c_adapter *adapter,
|
||||||
init_waitqueue_head(&decoder->wq);
|
init_waitqueue_head(&decoder->wq);
|
||||||
i2c_set_clientdata(client, decoder);
|
i2c_set_clientdata(client, decoder);
|
||||||
|
|
||||||
rv = i2c_attach_client(client);
|
|
||||||
if (rv) {
|
|
||||||
kfree(client);
|
|
||||||
kfree(decoder);
|
|
||||||
return rv;
|
|
||||||
}
|
|
||||||
|
|
||||||
rv = saa7110_write_block(client, initseq, sizeof(initseq));
|
rv = saa7110_write_block(client, initseq, sizeof(initseq));
|
||||||
if (rv < 0)
|
if (rv < 0) {
|
||||||
dprintk(1, KERN_ERR "%s_attach: init status %d\n",
|
v4l_dbg(1, debug, client, "init status %d\n", rv);
|
||||||
I2C_NAME(client), rv);
|
} else {
|
||||||
else {
|
|
||||||
int ver, status;
|
int ver, status;
|
||||||
saa7110_write(client, 0x21, 0x10);
|
saa7110_write(client, 0x21, 0x10);
|
||||||
saa7110_write(client, 0x0e, 0x18);
|
saa7110_write(client, 0x0e, 0x18);
|
||||||
|
@ -530,10 +451,8 @@ saa7110_detect_client (struct i2c_adapter *adapter,
|
||||||
saa7110_write(client, 0x0D, 0x06);
|
saa7110_write(client, 0x0D, 0x06);
|
||||||
//mdelay(150);
|
//mdelay(150);
|
||||||
status = saa7110_read(client);
|
status = saa7110_read(client);
|
||||||
dprintk(1,
|
v4l_dbg(1, debug, client, "version %x, status=0x%02x\n",
|
||||||
KERN_INFO
|
ver, status);
|
||||||
"%s_attach: SAA7110A version %x at 0x%02x, status=0x%02x\n",
|
|
||||||
I2C_NAME(client), ver, client->addr << 1, status);
|
|
||||||
saa7110_write(client, 0x0D, 0x86);
|
saa7110_write(client, 0x0D, 0x86);
|
||||||
saa7110_write(client, 0x0F, 0x10);
|
saa7110_write(client, 0x0F, 0x10);
|
||||||
saa7110_write(client, 0x11, 0x59);
|
saa7110_write(client, 0x11, 0x59);
|
||||||
|
@ -547,58 +466,25 @@ saa7110_detect_client (struct i2c_adapter *adapter,
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int
|
static int saa7110_remove(struct i2c_client *client)
|
||||||
saa7110_attach_adapter (struct i2c_adapter *adapter)
|
|
||||||
{
|
{
|
||||||
dprintk(1,
|
kfree(i2c_get_clientdata(client));
|
||||||
KERN_INFO
|
|
||||||
"saa7110.c: starting probe for adapter %s (0x%x)\n",
|
|
||||||
I2C_NAME(adapter), adapter->id);
|
|
||||||
return i2c_probe(adapter, &addr_data, &saa7110_detect_client);
|
|
||||||
}
|
|
||||||
|
|
||||||
static int
|
|
||||||
saa7110_detach_client (struct i2c_client *client)
|
|
||||||
{
|
|
||||||
struct saa7110 *decoder = i2c_get_clientdata(client);
|
|
||||||
int err;
|
|
||||||
|
|
||||||
err = i2c_detach_client(client);
|
|
||||||
if (err) {
|
|
||||||
return err;
|
|
||||||
}
|
|
||||||
|
|
||||||
kfree(decoder);
|
|
||||||
kfree(client);
|
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ----------------------------------------------------------------------- */
|
/* ----------------------------------------------------------------------- */
|
||||||
|
|
||||||
static struct i2c_driver i2c_driver_saa7110 = {
|
static const struct i2c_device_id saa7110_id[] = {
|
||||||
.driver = {
|
{ "saa7110", 0 },
|
||||||
.name = "saa7110",
|
{ }
|
||||||
},
|
|
||||||
|
|
||||||
.id = I2C_DRIVERID_SAA7110,
|
|
||||||
|
|
||||||
.attach_adapter = saa7110_attach_adapter,
|
|
||||||
.detach_client = saa7110_detach_client,
|
|
||||||
.command = saa7110_command,
|
|
||||||
};
|
};
|
||||||
|
MODULE_DEVICE_TABLE(i2c, saa7110_id);
|
||||||
|
|
||||||
static int __init
|
static struct v4l2_i2c_driver_data v4l2_i2c_data = {
|
||||||
saa7110_init (void)
|
.name = "saa7110",
|
||||||
{
|
.driverid = I2C_DRIVERID_SAA7110,
|
||||||
return i2c_add_driver(&i2c_driver_saa7110);
|
.command = saa7110_command,
|
||||||
}
|
.probe = saa7110_probe,
|
||||||
|
.remove = saa7110_remove,
|
||||||
static void __exit
|
.id_table = saa7110_id,
|
||||||
saa7110_exit (void)
|
};
|
||||||
{
|
|
||||||
i2c_del_driver(&i2c_driver_saa7110);
|
|
||||||
}
|
|
||||||
|
|
||||||
module_init(saa7110_init);
|
|
||||||
module_exit(saa7110_exit);
|
|
||||||
|
|
Загрузка…
Ссылка в новой задаче