au0828-core.c 8.8 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
 *
 *  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.
 */

22 23
#include "au0828.h"

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

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

42 43 44 45 46
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");

47 48 49 50
#define _AU0828_BULKPIPE 0x03
#define _BULKPIPESIZE 0xffff

static int send_control_msg(struct au0828_dev *dev, u16 request, u32 value,
51
			    u16 index);
52 53 54 55 56 57 58 59 60
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)
{
61 62 63 64 65 66
	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;
67 68 69 70
}

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

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

80 81 82 83 84 85
	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,
86 87
				USB_DIR_OUT | USB_TYPE_VENDOR |
					USB_RECIP_DEVICE,
88
				value, index, NULL, 0, 1000);
89 90 91 92

		status = min(status, 0);

		if (status < 0) {
93
			pr_err("%s() Failed sending control message, error %d.\n",
94
				__func__, status);
95 96 97
		}

	}
98

99 100 101 102 103 104 105 106 107 108 109 110 111 112
	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,
113
				dev->ctrlmsg, size, 1000);
114 115 116 117

		status = min(status, 0);

		if (status < 0) {
118
			pr_err("%s() Failed receiving control message, error %d.\n",
119
				__func__, status);
120 121 122 123 124
		}

		/* 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);
125 126 127 128
	}
	mutex_unlock(&dev->mutex);
	return status;
}
S
Steven Toth 已提交
129

130
static void au0828_usb_release(struct au0828_dev *dev)
131 132 133 134
{
	/* I2C */
	au0828_i2c_unregister(dev);

135 136 137
	kfree(dev);
}

138
#ifdef CONFIG_VIDEO_AU0828_V4L2
139 140 141 142 143
static void au0828_usb_v4l2_release(struct v4l2_device *v4l2_dev)
{
	struct au0828_dev *dev =
		container_of(v4l2_dev, struct au0828_dev, v4l2_dev);

144
	v4l2_ctrl_handler_free(&dev->v4l2_ctrl_hdl);
145
	v4l2_device_unregister(&dev->v4l2_dev);
146 147
	au0828_usb_release(dev);
}
148
#endif
149

150 151 152 153 154 155
static void au0828_usb_disconnect(struct usb_interface *interface)
{
	struct au0828_dev *dev = usb_get_intfdata(interface);

	dprintk(1, "%s()\n", __func__);

156
	au0828_rc_unregister(dev);
157 158
	/* Digital TV */
	au0828_dvb_unregister(dev);
159

160
	usb_set_intfdata(interface, NULL);
161 162 163
	mutex_lock(&dev->mutex);
	dev->usbdev = NULL;
	mutex_unlock(&dev->mutex);
164 165 166 167 168 169 170 171 172
#ifdef CONFIG_VIDEO_AU0828_V4L2
	if (AUVI_INPUT(0).type != AU0828_VMUX_UNDEFINED) {
		au0828_analog_unregister(dev);
		v4l2_device_disconnect(&dev->v4l2_dev);
		v4l2_device_put(&dev->v4l2_dev);
		return;
	}
#endif
	au0828_usb_release(dev);
173 174
}

175
static int au0828_usb_probe(struct usb_interface *interface,
176 177
	const struct usb_device_id *id)
{
178
	int ifnum;
179 180
	int retval = 0;

181 182 183 184 185 186 187 188
	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 已提交
189
	dprintk(1, "%s() vendor id 0x%x device id 0x%x ifnum:%d\n", __func__,
190 191 192 193
		le16_to_cpu(usbdev->descriptor.idVendor),
		le16_to_cpu(usbdev->descriptor.idProduct),
		ifnum);

194 195 196 197 198
	/*
	 * 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.
	 */
199
	if (usbdev->speed != USB_SPEED_HIGH && disable_usb_speed_check == 0) {
200 201
		pr_err("au0828: Device initialization failed.\n");
		pr_err("au0828: Device must be connected to a high-speed USB 2.0 port.\n");
202 203 204
		return -ENODEV;
	}

205 206
	dev = kzalloc(sizeof(*dev), GFP_KERNEL);
	if (dev == NULL) {
207
		pr_err("%s() Unable to allocate memory\n", __func__);
208 209 210
		return -ENOMEM;
	}

211 212
	mutex_init(&dev->lock);
	mutex_lock(&dev->lock);
213 214 215
	mutex_init(&dev->mutex);
	mutex_init(&dev->dvb.lock);
	dev->usbdev = usbdev;
216
	dev->boardnr = id->driver_info;
217

218
#ifdef CONFIG_VIDEO_AU0828_V4L2
219 220
	dev->v4l2_dev.release = au0828_usb_v4l2_release;

221
	/* Create the v4l2_device */
222
	retval = v4l2_device_register(&interface->dev, &dev->v4l2_dev);
223
	if (retval) {
224
		pr_err("%s() v4l2_device_register failed\n",
225
		       __func__);
226
		mutex_unlock(&dev->lock);
227
		kfree(dev);
228
		return retval;
229
	}
230 231 232 233 234 235 236 237 238 239
	/* 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;
240
#endif
241

242 243 244 245 246 247 248 249 250
	/* 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);

251 252 253
	/* Setup */
	au0828_card_setup(dev);

254
#ifdef CONFIG_VIDEO_AU0828_V4L2
255
	/* Analog TV */
256
	if (AUVI_INPUT(0).type != AU0828_VMUX_UNDEFINED)
257
		au0828_analog_register(dev, interface);
258
#endif
259

260
	/* Digital TV */
261 262 263 264 265
	retval = au0828_dvb_register(dev);
	if (retval)
		pr_err("%s() au0282_dev_register failed\n",
		       __func__);

266 267
	/* Remote controller */
	au0828_rc_register(dev);
268

269 270 271 272
	/*
	 * Store the pointer to the au0828_dev so it can be accessed in
	 * au0828_usb_disconnect
	 */
273 274
	usb_set_intfdata(interface, dev);

275
	pr_info("Registered device AU0828 [%s]\n",
276
		dev->board.name == NULL ? "Unset" : dev->board.name);
277

278 279
	mutex_unlock(&dev->lock);

280
	return retval;
281 282
}

283 284 285 286 287 288 289 290 291
static int au0828_suspend(struct usb_interface *interface,
				pm_message_t message)
{
	struct au0828_dev *dev = usb_get_intfdata(interface);

	if (!dev)
		return 0;

	au0828_rc_suspend(dev);
292
	au0828_v4l2_suspend(dev);
293
	au0828_dvb_suspend(dev);
294 295 296 297 298 299 300 301 302 303 304 305

	/* FIXME: should suspend also ATV/DTV */

	return 0;
}

static int au0828_resume(struct usb_interface *interface)
{
	struct au0828_dev *dev = usb_get_intfdata(interface);
	if (!dev)
		return 0;

306 307 308 309 310 311
	/* Power Up the bridge */
	au0828_write(dev, REG_600, 1 << 4);

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

312
	au0828_rc_resume(dev);
313
	au0828_v4l2_resume(dev);
314
	au0828_dvb_resume(dev);
315 316 317 318 319 320

	/* FIXME: should resume also ATV/DTV */

	return 0;
}

321
static struct usb_driver au0828_usb_driver = {
322
	.name		= KBUILD_MODNAME,
323 324 325
	.probe		= au0828_usb_probe,
	.disconnect	= au0828_usb_disconnect,
	.id_table	= au0828_usb_id_table,
326 327 328
	.suspend	= au0828_suspend,
	.resume		= au0828_resume,
	.reset_resume	= au0828_resume,
329 330 331 332 333 334
};

static int __init au0828_init(void)
{
	int ret;

335
	if (au0828_debug & 1)
336
		pr_info("%s() Debugging is enabled\n", __func__);
S
Steven Toth 已提交
337

338
	if (au0828_debug & 2)
339
		pr_info("%s() USB Debugging is enabled\n", __func__);
S
Steven Toth 已提交
340

341
	if (au0828_debug & 4)
342
		pr_info("%s() I2C Debugging is enabled\n", __func__);
S
Steven Toth 已提交
343

344
	if (au0828_debug & 8)
345
		pr_info("%s() Bridge Debugging is enabled\n",
346
		       __func__);
S
Steven Toth 已提交
347

348
	if (au0828_debug & 16)
349
		pr_info("%s() IR Debugging is enabled\n",
350 351
		       __func__);

352
	pr_info("au0828 driver loaded\n");
353 354 355

	ret = usb_register(&au0828_usb_driver);
	if (ret)
356
		pr_err("usb_register failed, error = %d\n", ret);
357 358 359 360 361 362 363 364 365 366 367 368 369

	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");
370
MODULE_AUTHOR("Steven Toth <stoth@linuxtv.org>");
371
MODULE_LICENSE("GPL");
372
MODULE_VERSION("0.0.3");