blob: 3544a2f12f13a1497f54ca30609a26e8e9ba8a49 [file] [log] [blame]
Steven Toth265a6512008-04-18 21:34:00 -03001/*
2 * Driver for the Auvitek USB bridge
3 *
Steven Toth6d897612008-09-03 17:12:12 -03004 * Copyright (c) 2008 Steven Toth <stoth@linuxtv.org>
Steven Toth265a6512008-04-18 21:34:00 -03005 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 *
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 */
21
22#include <linux/module.h>
23#include <linux/videodev2.h>
24#include <media/v4l2-common.h>
25#include <linux/mutex.h>
26
27#include "au0828.h"
28
Steven Tothbc3c6132008-04-18 21:39:11 -030029/*
30 * 1 = General debug messages
31 * 2 = USB handling
32 * 4 = I2C related
33 * 8 = Bridge related
34 */
Adrian Bunkb33d24c2008-04-25 19:06:03 -030035int au0828_debug;
36module_param_named(debug, au0828_debug, int, 0644);
Steven Toth265a6512008-04-18 21:34:00 -030037MODULE_PARM_DESC(debug, "enable debug messages");
38
Devin Heitmuellerd6a9a432009-05-27 23:46:17 -030039static unsigned int disable_usb_speed_check;
40module_param(disable_usb_speed_check, int, 0444);
41MODULE_PARM_DESC(disable_usb_speed_check,
42 "override min bandwidth requirement of 480M bps");
43
Steven Toth265a6512008-04-18 21:34:00 -030044#define _AU0828_BULKPIPE 0x03
45#define _BULKPIPESIZE 0xffff
46
47static int send_control_msg(struct au0828_dev *dev, u16 request, u32 value,
48 u16 index, unsigned char *cp, u16 size);
49static int recv_control_msg(struct au0828_dev *dev, u16 request, u32 value,
50 u16 index, unsigned char *cp, u16 size);
51
52/* USB Direction */
53#define CMD_REQUEST_IN 0x00
54#define CMD_REQUEST_OUT 0x01
55
56u32 au0828_readreg(struct au0828_dev *dev, u16 reg)
57{
58 recv_control_msg(dev, CMD_REQUEST_IN, 0, reg, dev->ctrlmsg, 1);
Devin Heitmuellerb80f7702009-03-11 03:00:57 -030059 dprintk(8, "%s(0x%04x) = 0x%02x\n", __func__, reg, dev->ctrlmsg[0]);
Steven Toth265a6512008-04-18 21:34:00 -030060 return dev->ctrlmsg[0];
61}
62
63u32 au0828_writereg(struct au0828_dev *dev, u16 reg, u32 val)
64{
Devin Heitmuellerb80f7702009-03-11 03:00:57 -030065 dprintk(8, "%s(0x%04x, 0x%02x)\n", __func__, reg, val);
Mauro Carvalho Chehab18d73c52008-04-18 22:12:52 -030066 return send_control_msg(dev, CMD_REQUEST_OUT, val, reg,
67 dev->ctrlmsg, 0);
Steven Toth265a6512008-04-18 21:34:00 -030068}
69
70static void cmd_msg_dump(struct au0828_dev *dev)
71{
72 int i;
73
Mauro Carvalho Chehab18d73c52008-04-18 22:12:52 -030074 for (i = 0; i < sizeof(dev->ctrlmsg); i += 16)
75 dprintk(2, "%s() %02x %02x %02x %02x %02x %02x %02x %02x "
76 "%02x %02x %02x %02x %02x %02x %02x %02x\n",
Michael Krufkyf07e8e42008-04-18 21:42:30 -030077 __func__,
Steven Toth265a6512008-04-18 21:34:00 -030078 dev->ctrlmsg[i+0], dev->ctrlmsg[i+1],
79 dev->ctrlmsg[i+2], dev->ctrlmsg[i+3],
80 dev->ctrlmsg[i+4], dev->ctrlmsg[i+5],
81 dev->ctrlmsg[i+6], dev->ctrlmsg[i+7],
82 dev->ctrlmsg[i+8], dev->ctrlmsg[i+9],
83 dev->ctrlmsg[i+10], dev->ctrlmsg[i+11],
84 dev->ctrlmsg[i+12], dev->ctrlmsg[i+13],
85 dev->ctrlmsg[i+14], dev->ctrlmsg[i+15]);
86}
87
88static int send_control_msg(struct au0828_dev *dev, u16 request, u32 value,
89 u16 index, unsigned char *cp, u16 size)
90{
91 int status = -ENODEV;
92 mutex_lock(&dev->mutex);
93 if (dev->usbdev) {
94
95 /* cp must be memory that has been allocated by kmalloc */
96 status = usb_control_msg(dev->usbdev,
97 usb_sndctrlpipe(dev->usbdev, 0),
98 request,
Steven Totha8eb9122008-10-16 20:19:41 -030099 USB_DIR_OUT | USB_TYPE_VENDOR |
100 USB_RECIP_DEVICE,
Steven Toth265a6512008-04-18 21:34:00 -0300101 value, index,
102 cp, size, 1000);
103
104 status = min(status, 0);
105
106 if (status < 0) {
Steven Tothbc3c6132008-04-18 21:39:11 -0300107 printk(KERN_ERR "%s() Failed sending control message, error %d.\n",
Michael Krufkyf07e8e42008-04-18 21:42:30 -0300108 __func__, status);
Steven Toth265a6512008-04-18 21:34:00 -0300109 }
110
111 }
112 mutex_unlock(&dev->mutex);
113 return status;
114}
115
116static int recv_control_msg(struct au0828_dev *dev, u16 request, u32 value,
117 u16 index, unsigned char *cp, u16 size)
118{
119 int status = -ENODEV;
120 mutex_lock(&dev->mutex);
121 if (dev->usbdev) {
122
123 memset(dev->ctrlmsg, 0, sizeof(dev->ctrlmsg));
124
125 /* cp must be memory that has been allocated by kmalloc */
126 status = usb_control_msg(dev->usbdev,
127 usb_rcvctrlpipe(dev->usbdev, 0),
128 request,
129 USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
130 value, index,
131 cp, size, 1000);
132
133 status = min(status, 0);
134
135 if (status < 0) {
Steven Tothbc3c6132008-04-18 21:39:11 -0300136 printk(KERN_ERR "%s() Failed receiving control message, error %d.\n",
Michael Krufkyf07e8e42008-04-18 21:42:30 -0300137 __func__, status);
Mauro Carvalho Chehab18d73c52008-04-18 22:12:52 -0300138 } else
Steven Tothbc3c6132008-04-18 21:39:11 -0300139 cmd_msg_dump(dev);
Steven Toth265a6512008-04-18 21:34:00 -0300140 }
141 mutex_unlock(&dev->mutex);
142 return status;
143}
Steven Totha9c36aa2008-04-17 21:41:28 -0300144
Steven Toth265a6512008-04-18 21:34:00 -0300145static void au0828_usb_disconnect(struct usb_interface *interface)
146{
147 struct au0828_dev *dev = usb_get_intfdata(interface);
148
Michael Krufkyf07e8e42008-04-18 21:42:30 -0300149 dprintk(1, "%s()\n", __func__);
Steven Toth265a6512008-04-18 21:34:00 -0300150
151 /* Digital TV */
152 au0828_dvb_unregister(dev);
153
Devin Heitmueller220be772009-03-11 03:01:01 -0300154 if (AUVI_INPUT(0).type != AU0828_VMUX_UNDEFINED)
Devin Heitmuellerf1add5b2009-03-11 03:00:47 -0300155 au0828_analog_unregister(dev);
Devin Heitmueller8b2f0792009-03-11 03:00:40 -0300156
Steven Toth265a6512008-04-18 21:34:00 -0300157 /* I2C */
158 au0828_i2c_unregister(dev);
159
Devin Heitmuellerb14667f2009-03-11 03:01:04 -0300160 v4l2_device_unregister(&dev->v4l2_dev);
161
Steven Toth265a6512008-04-18 21:34:00 -0300162 usb_set_intfdata(interface, NULL);
163
164 mutex_lock(&dev->mutex);
165 dev->usbdev = NULL;
166 mutex_unlock(&dev->mutex);
167
168 kfree(dev);
169
170}
171
Mauro Carvalho Chehab18d73c52008-04-18 22:12:52 -0300172static int au0828_usb_probe(struct usb_interface *interface,
Steven Toth265a6512008-04-18 21:34:00 -0300173 const struct usb_device_id *id)
174{
Janne Grunau4bb68512009-04-01 08:48:29 -0300175 int ifnum, retval;
Steven Toth265a6512008-04-18 21:34:00 -0300176 struct au0828_dev *dev;
177 struct usb_device *usbdev = interface_to_usbdev(interface);
178
179 ifnum = interface->altsetting->desc.bInterfaceNumber;
180
181 if (ifnum != 0)
182 return -ENODEV;
183
Steven Totha9c36aa2008-04-17 21:41:28 -0300184 dprintk(1, "%s() vendor id 0x%x device id 0x%x ifnum:%d\n", __func__,
Steven Toth265a6512008-04-18 21:34:00 -0300185 le16_to_cpu(usbdev->descriptor.idVendor),
186 le16_to_cpu(usbdev->descriptor.idProduct),
187 ifnum);
188
Devin Heitmuelleree3436b2009-05-27 23:25:36 -0300189 /*
190 * Make sure we have 480 Mbps of bandwidth, otherwise things like
191 * video stream wouldn't likely work, since 12 Mbps is generally
192 * not enough even for most Digital TV streams.
193 */
Devin Heitmuellerd6a9a432009-05-27 23:46:17 -0300194 if (usbdev->speed != USB_SPEED_HIGH && disable_usb_speed_check == 0) {
Devin Heitmuelleree3436b2009-05-27 23:25:36 -0300195 printk(KERN_ERR "au0828: Device initialization failed.\n");
196 printk(KERN_ERR "au0828: Device must be connected to a "
197 "high-speed USB 2.0 port.\n");
198 return -ENODEV;
199 }
200
Steven Toth265a6512008-04-18 21:34:00 -0300201 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
202 if (dev == NULL) {
Michael Krufkyf07e8e42008-04-18 21:42:30 -0300203 printk(KERN_ERR "%s() Unable to allocate memory\n", __func__);
Steven Toth265a6512008-04-18 21:34:00 -0300204 return -ENOMEM;
205 }
206
207 mutex_init(&dev->mutex);
208 mutex_init(&dev->dvb.lock);
209 dev->usbdev = usbdev;
Devin Heitmuellerf1add5b2009-03-11 03:00:47 -0300210 dev->boardnr = id->driver_info;
Steven Toth265a6512008-04-18 21:34:00 -0300211
Devin Heitmuellerb14667f2009-03-11 03:01:04 -0300212 /* Create the v4l2_device */
Janne Grunaua4124aa2009-04-01 08:47:35 -0300213 retval = v4l2_device_register(&interface->dev, &dev->v4l2_dev);
Devin Heitmuellerb14667f2009-03-11 03:01:04 -0300214 if (retval) {
215 printk(KERN_ERR "%s() v4l2_device_register failed\n",
216 __func__);
217 kfree(dev);
218 return -EIO;
219 }
220
Steven Toth265a6512008-04-18 21:34:00 -0300221 /* Power Up the bridge */
222 au0828_write(dev, REG_600, 1 << 4);
223
224 /* Bring up the GPIO's and supporting devices */
225 au0828_gpio_setup(dev);
226
227 /* I2C */
228 au0828_i2c_register(dev);
229
Steven Toth28930fa2008-03-29 19:53:07 -0300230 /* Setup */
231 au0828_card_setup(dev);
232
Devin Heitmueller8b2f0792009-03-11 03:00:40 -0300233 /* Analog TV */
Devin Heitmueller220be772009-03-11 03:01:01 -0300234 if (AUVI_INPUT(0).type != AU0828_VMUX_UNDEFINED)
Devin Heitmuellerfc4ce6c2009-03-11 03:01:00 -0300235 au0828_analog_register(dev, interface);
Devin Heitmueller8b2f0792009-03-11 03:00:40 -0300236
Steven Toth265a6512008-04-18 21:34:00 -0300237 /* Digital TV */
238 au0828_dvb_register(dev);
239
Devin Heitmuellerfe78a492009-04-28 13:14:07 -0300240 /* Store the pointer to the au0828_dev so it can be accessed in
241 au0828_usb_disconnect */
242 usb_set_intfdata(interface, dev);
243
Steven Tothbc3c6132008-04-18 21:39:11 -0300244 printk(KERN_INFO "Registered device AU0828 [%s]\n",
Devin Heitmuellerf1add5b2009-03-11 03:00:47 -0300245 dev->board.name == NULL ? "Unset" : dev->board.name);
Steven Toth265a6512008-04-18 21:34:00 -0300246
247 return 0;
248}
249
250static struct usb_driver au0828_usb_driver = {
251 .name = DRIVER_NAME,
252 .probe = au0828_usb_probe,
253 .disconnect = au0828_usb_disconnect,
254 .id_table = au0828_usb_id_table,
255};
256
257static int __init au0828_init(void)
258{
259 int ret;
260
Adrian Bunkb33d24c2008-04-25 19:06:03 -0300261 if (au0828_debug & 1)
Michael Krufkyf07e8e42008-04-18 21:42:30 -0300262 printk(KERN_INFO "%s() Debugging is enabled\n", __func__);
Steven Tothbc3c6132008-04-18 21:39:11 -0300263
Adrian Bunkb33d24c2008-04-25 19:06:03 -0300264 if (au0828_debug & 2)
Michael Krufkyf07e8e42008-04-18 21:42:30 -0300265 printk(KERN_INFO "%s() USB Debugging is enabled\n", __func__);
Steven Tothbc3c6132008-04-18 21:39:11 -0300266
Adrian Bunkb33d24c2008-04-25 19:06:03 -0300267 if (au0828_debug & 4)
Michael Krufkyf07e8e42008-04-18 21:42:30 -0300268 printk(KERN_INFO "%s() I2C Debugging is enabled\n", __func__);
Steven Tothbc3c6132008-04-18 21:39:11 -0300269
Adrian Bunkb33d24c2008-04-25 19:06:03 -0300270 if (au0828_debug & 8)
Michael Krufkyf07e8e42008-04-18 21:42:30 -0300271 printk(KERN_INFO "%s() Bridge Debugging is enabled\n",
272 __func__);
Steven Tothbc3c6132008-04-18 21:39:11 -0300273
274 printk(KERN_INFO "au0828 driver loaded\n");
Steven Toth265a6512008-04-18 21:34:00 -0300275
276 ret = usb_register(&au0828_usb_driver);
277 if (ret)
Steven Tothbc3c6132008-04-18 21:39:11 -0300278 printk(KERN_ERR "usb_register failed, error = %d\n", ret);
Steven Toth265a6512008-04-18 21:34:00 -0300279
280 return ret;
281}
282
283static void __exit au0828_exit(void)
284{
285 usb_deregister(&au0828_usb_driver);
286}
287
288module_init(au0828_init);
289module_exit(au0828_exit);
290
291MODULE_DESCRIPTION("Driver for Auvitek AU0828 based products");
Steven Toth6d897612008-09-03 17:12:12 -0300292MODULE_AUTHOR("Steven Toth <stoth@linuxtv.org>");
Steven Toth265a6512008-04-18 21:34:00 -0300293MODULE_LICENSE("GPL");