au0828-core.c 7.5 KB
Newer Older
1 2 3
/*
 *  Driver for the Auvitek USB bridge
 *
4
 *  Copyright (c) 2008 Steven Toth <stoth@linuxtv.org>
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
 *
 *  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., 675 Mass Ave, Cambridge, MA 02139, USA.
 */

#include <linux/module.h>
23
#include <linux/slab.h>
24 25 26 27 28 29
#include <linux/videodev2.h>
#include <media/v4l2-common.h>
#include <linux/mutex.h>

#include "au0828.h"

S
Steven Toth 已提交
30 31 32 33 34 35
/*
 * 1 = General debug messages
 * 2 = USB handling
 * 4 = I2C related
 * 8 = Bridge related
 */
36 37
int au0828_debug;
module_param_named(debug, au0828_debug, int, 0644);
38 39
MODULE_PARM_DESC(debug, "enable debug messages");

40 41 42 43 44
static unsigned int disable_usb_speed_check;
module_param(disable_usb_speed_check, int, 0444);
MODULE_PARM_DESC(disable_usb_speed_check,
		 "override min bandwidth requirement of 480M bps");

45 46 47 48
#define _AU0828_BULKPIPE 0x03
#define _BULKPIPESIZE 0xffff

static int send_control_msg(struct au0828_dev *dev, u16 request, u32 value,
49
			    u16 index);
50 51 52 53 54 55 56 57 58
static int recv_control_msg(struct au0828_dev *dev, u16 request, u32 value,
	u16 index, unsigned char *cp, u16 size);

/* USB Direction */
#define CMD_REQUEST_IN		0x00
#define CMD_REQUEST_OUT		0x01

u32 au0828_readreg(struct au0828_dev *dev, u16 reg)
{
59 60 61 62 63 64
	u8 result = 0;

	recv_control_msg(dev, CMD_REQUEST_IN, 0, reg, &result, 1);
	dprintk(8, "%s(0x%04x) = 0x%02x\n", __func__, reg, result);

	return result;
65 66 67 68
}

u32 au0828_writereg(struct au0828_dev *dev, u16 reg, u32 val)
{
69
	dprintk(8, "%s(0x%04x, 0x%02x)\n", __func__, reg, val);
70
	return send_control_msg(dev, CMD_REQUEST_OUT, val, reg);
71 72 73
}

static int send_control_msg(struct au0828_dev *dev, u16 request, u32 value,
74
	u16 index)
75 76
{
	int status = -ENODEV;
77

78 79 80 81 82 83
	if (dev->usbdev) {

		/* cp must be memory that has been allocated by kmalloc */
		status = usb_control_msg(dev->usbdev,
				usb_sndctrlpipe(dev->usbdev, 0),
				request,
84 85
				USB_DIR_OUT | USB_TYPE_VENDOR |
					USB_RECIP_DEVICE,
86
				value, index, NULL, 0, 1000);
87 88 89 90

		status = min(status, 0);

		if (status < 0) {
S
Steven Toth 已提交
91
			printk(KERN_ERR "%s() Failed sending control message, error %d.\n",
92
				__func__, status);
93 94 95
		}

	}
96

97 98 99 100 101 102 103 104 105 106 107 108 109 110
	return status;
}

static int recv_control_msg(struct au0828_dev *dev, u16 request, u32 value,
	u16 index, unsigned char *cp, u16 size)
{
	int status = -ENODEV;
	mutex_lock(&dev->mutex);
	if (dev->usbdev) {
		status = usb_control_msg(dev->usbdev,
				usb_rcvctrlpipe(dev->usbdev, 0),
				request,
				USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
				value, index,
111
				dev->ctrlmsg, size, 1000);
112 113 114 115

		status = min(status, 0);

		if (status < 0) {
S
Steven Toth 已提交
116
			printk(KERN_ERR "%s() Failed receiving control message, error %d.\n",
117
				__func__, status);
118 119 120 121 122
		}

		/* the host controller requires heap allocated memory, which
		   is why we didn't just pass "cp" into usb_control_msg */
		memcpy(cp, dev->ctrlmsg, size);
123 124 125 126
	}
	mutex_unlock(&dev->mutex);
	return status;
}
S
Steven Toth 已提交
127

128 129 130 131
static void au0828_usb_disconnect(struct usb_interface *interface)
{
	struct au0828_dev *dev = usb_get_intfdata(interface);

132
	dprintk(1, "%s()\n", __func__);
133 134 135 136

	/* Digital TV */
	au0828_dvb_unregister(dev);

137
#ifdef CONFIG_VIDEO_AU0828_V4L2
138
	if (AUVI_INPUT(0).type != AU0828_VMUX_UNDEFINED)
139
		au0828_analog_unregister(dev);
140
#endif
141

142 143 144
	/* I2C */
	au0828_i2c_unregister(dev);

145
#ifdef CONFIG_VIDEO_AU0828_V4L2
146
	v4l2_ctrl_handler_free(&dev->v4l2_ctrl_hdl);
147
	v4l2_device_unregister(&dev->v4l2_dev);
148
#endif
149

150 151 152 153 154 155 156 157 158 159
	usb_set_intfdata(interface, NULL);

	mutex_lock(&dev->mutex);
	dev->usbdev = NULL;
	mutex_unlock(&dev->mutex);

	kfree(dev);

}

160
static int au0828_usb_probe(struct usb_interface *interface,
161 162
	const struct usb_device_id *id)
{
163 164 165 166
	int ifnum;
#ifdef CONFIG_VIDEO_AU0828_V4L2
	int retval;
#endif
167 168 169 170 171 172 173 174
	struct au0828_dev *dev;
	struct usb_device *usbdev = interface_to_usbdev(interface);

	ifnum = interface->altsetting->desc.bInterfaceNumber;

	if (ifnum != 0)
		return -ENODEV;

S
Steven Toth 已提交
175
	dprintk(1, "%s() vendor id 0x%x device id 0x%x ifnum:%d\n", __func__,
176 177 178 179
		le16_to_cpu(usbdev->descriptor.idVendor),
		le16_to_cpu(usbdev->descriptor.idProduct),
		ifnum);

180 181 182 183 184
	/*
	 * Make sure we have 480 Mbps of bandwidth, otherwise things like
	 * video stream wouldn't likely work, since 12 Mbps is generally
	 * not enough even for most Digital TV streams.
	 */
185
	if (usbdev->speed != USB_SPEED_HIGH && disable_usb_speed_check == 0) {
186 187 188 189 190 191
		printk(KERN_ERR "au0828: Device initialization failed.\n");
		printk(KERN_ERR "au0828: Device must be connected to a "
		       "high-speed USB 2.0 port.\n");
		return -ENODEV;
	}

192 193
	dev = kzalloc(sizeof(*dev), GFP_KERNEL);
	if (dev == NULL) {
194
		printk(KERN_ERR "%s() Unable to allocate memory\n", __func__);
195 196 197
		return -ENOMEM;
	}

198 199
	mutex_init(&dev->lock);
	mutex_lock(&dev->lock);
200 201 202
	mutex_init(&dev->mutex);
	mutex_init(&dev->dvb.lock);
	dev->usbdev = usbdev;
203
	dev->boardnr = id->driver_info;
204

205
#ifdef CONFIG_VIDEO_AU0828_V4L2
206
	/* Create the v4l2_device */
207
	retval = v4l2_device_register(&interface->dev, &dev->v4l2_dev);
208
	if (retval) {
209
		pr_err("%s() v4l2_device_register failed\n",
210
		       __func__);
211
		mutex_unlock(&dev->lock);
212
		kfree(dev);
213
		return retval;
214
	}
215 216 217 218 219 220 221 222 223 224
	/* This control handler will inherit the controls from au8522 */
	retval = v4l2_ctrl_handler_init(&dev->v4l2_ctrl_hdl, 4);
	if (retval) {
		pr_err("%s() v4l2_ctrl_handler_init failed\n",
		       __func__);
		mutex_unlock(&dev->lock);
		kfree(dev);
		return retval;
	}
	dev->v4l2_dev.ctrl_handler = &dev->v4l2_ctrl_hdl;
225
#endif
226

227 228 229 230 231 232 233 234 235
	/* Power Up the bridge */
	au0828_write(dev, REG_600, 1 << 4);

	/* Bring up the GPIO's and supporting devices */
	au0828_gpio_setup(dev);

	/* I2C */
	au0828_i2c_register(dev);

236 237 238
	/* Setup */
	au0828_card_setup(dev);

239
#ifdef CONFIG_VIDEO_AU0828_V4L2
240
	/* Analog TV */
241
	if (AUVI_INPUT(0).type != AU0828_VMUX_UNDEFINED)
242
		au0828_analog_register(dev, interface);
243
#endif
244

245 246 247
	/* Digital TV */
	au0828_dvb_register(dev);

248 249 250 251
	/* Store the pointer to the au0828_dev so it can be accessed in
	   au0828_usb_disconnect */
	usb_set_intfdata(interface, dev);

S
Steven Toth 已提交
252
	printk(KERN_INFO "Registered device AU0828 [%s]\n",
253
		dev->board.name == NULL ? "Unset" : dev->board.name);
254

255 256
	mutex_unlock(&dev->lock);

257 258 259 260 261 262 263 264 265 266 267 268 269 270
	return 0;
}

static struct usb_driver au0828_usb_driver = {
	.name		= DRIVER_NAME,
	.probe		= au0828_usb_probe,
	.disconnect	= au0828_usb_disconnect,
	.id_table	= au0828_usb_id_table,
};

static int __init au0828_init(void)
{
	int ret;

271
	if (au0828_debug & 1)
272
		printk(KERN_INFO "%s() Debugging is enabled\n", __func__);
S
Steven Toth 已提交
273

274
	if (au0828_debug & 2)
275
		printk(KERN_INFO "%s() USB Debugging is enabled\n", __func__);
S
Steven Toth 已提交
276

277
	if (au0828_debug & 4)
278
		printk(KERN_INFO "%s() I2C Debugging is enabled\n", __func__);
S
Steven Toth 已提交
279

280
	if (au0828_debug & 8)
281 282
		printk(KERN_INFO "%s() Bridge Debugging is enabled\n",
		       __func__);
S
Steven Toth 已提交
283 284

	printk(KERN_INFO "au0828 driver loaded\n");
285 286 287

	ret = usb_register(&au0828_usb_driver);
	if (ret)
S
Steven Toth 已提交
288
		printk(KERN_ERR "usb_register failed, error = %d\n", ret);
289 290 291 292 293 294 295 296 297 298 299 300 301

	return ret;
}

static void __exit au0828_exit(void)
{
	usb_deregister(&au0828_usb_driver);
}

module_init(au0828_init);
module_exit(au0828_exit);

MODULE_DESCRIPTION("Driver for Auvitek AU0828 based products");
302
MODULE_AUTHOR("Steven Toth <stoth@linuxtv.org>");
303
MODULE_LICENSE("GPL");
304
MODULE_VERSION("0.0.2");