V4L/DVB (11125): fix mispelled Hauppauge in HD PVR and PVR USB2 driver comments
[linux-2.6/linux-2.6-openrd.git] / drivers / media / video / hdpvr / hdpvr-i2c.c
blobc4b5d1515c10f54c1eaf942ae8e9f56f4a9d7094
2 /*
3 * Hauppauge HD PVR USB driver
5 * Copyright (C) 2008 Janne Grunau (j@jannau.net)
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation, version 2.
13 #include <linux/i2c.h>
15 #include "hdpvr.h"
17 #define CTRL_READ_REQUEST 0xb8
18 #define CTRL_WRITE_REQUEST 0x38
20 #define REQTYPE_I2C_READ 0xb1
21 #define REQTYPE_I2C_WRITE 0xb0
22 #define REQTYPE_I2C_WRITE_STATT 0xd0
24 static int hdpvr_i2c_read(struct hdpvr_device *dev, unsigned char addr,
25 char *data, int len)
27 int ret;
28 char *buf = kmalloc(len, GFP_KERNEL);
29 if (!buf)
30 return -ENOMEM;
32 ret = usb_control_msg(dev->udev,
33 usb_rcvctrlpipe(dev->udev, 0),
34 REQTYPE_I2C_READ, CTRL_READ_REQUEST,
35 0x100|addr, 0, buf, len, 1000);
37 if (ret == len) {
38 memcpy(data, buf, len);
39 ret = 0;
40 } else if (ret >= 0)
41 ret = -EIO;
43 kfree(buf);
45 return ret;
48 static int hdpvr_i2c_write(struct hdpvr_device *dev, unsigned char addr,
49 char *data, int len)
51 int ret;
52 char *buf = kmalloc(len, GFP_KERNEL);
53 if (!buf)
54 return -ENOMEM;
56 memcpy(buf, data, len);
57 ret = usb_control_msg(dev->udev,
58 usb_sndctrlpipe(dev->udev, 0),
59 REQTYPE_I2C_WRITE, CTRL_WRITE_REQUEST,
60 0x100|addr, 0, buf, len, 1000);
62 if (ret < 0)
63 goto error;
65 ret = usb_control_msg(dev->udev,
66 usb_rcvctrlpipe(dev->udev, 0),
67 REQTYPE_I2C_WRITE_STATT, CTRL_READ_REQUEST,
68 0, 0, buf, 2, 1000);
70 if (ret == 2)
71 ret = 0;
72 else if (ret >= 0)
73 ret = -EIO;
75 error:
76 kfree(buf);
77 return ret;
80 static int hdpvr_transfer(struct i2c_adapter *i2c_adapter, struct i2c_msg *msgs,
81 int num)
83 struct hdpvr_device *dev = i2c_get_adapdata(i2c_adapter);
84 int retval = 0, i, addr;
86 if (num <= 0)
87 return 0;
89 mutex_lock(&dev->i2c_mutex);
91 for (i = 0; i < num && !retval; i++) {
92 addr = msgs[i].addr << 1;
94 if (msgs[i].flags & I2C_M_RD)
95 retval = hdpvr_i2c_read(dev, addr, msgs[i].buf,
96 msgs[i].len);
97 else
98 retval = hdpvr_i2c_write(dev, addr, msgs[i].buf,
99 msgs[i].len);
102 mutex_unlock(&dev->i2c_mutex);
104 return retval ? retval : num;
107 static u32 hdpvr_functionality(struct i2c_adapter *adapter)
109 return I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL;
112 static struct i2c_algorithm hdpvr_algo = {
113 .master_xfer = hdpvr_transfer,
114 .functionality = hdpvr_functionality,
117 int hdpvr_register_i2c_adapter(struct hdpvr_device *dev)
119 struct i2c_adapter *i2c_adap;
120 int retval = -ENOMEM;
122 i2c_adap = kzalloc(sizeof(struct i2c_adapter), GFP_KERNEL);
123 if (i2c_adap == NULL)
124 goto error;
126 strlcpy(i2c_adap->name, "Hauppauge HD PVR I2C",
127 sizeof(i2c_adap->name));
128 i2c_adap->algo = &hdpvr_algo;
129 i2c_adap->class = I2C_CLASS_TV_ANALOG;
130 i2c_adap->id = I2C_HW_B_HDPVR;
131 i2c_adap->owner = THIS_MODULE;
132 i2c_adap->dev.parent = &dev->udev->dev;
134 i2c_set_adapdata(i2c_adap, dev);
136 retval = i2c_add_adapter(i2c_adap);
138 if (!retval)
139 dev->i2c_adapter = i2c_adap;
140 else
141 kfree(i2c_adap);
143 error:
144 return retval;