au0828-core.c 12.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>

30 31 32
/* Due to enum tuner_pad_index */
#include <media/tuner.h>

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

45 46 47 48 49
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");

50 51 52 53
#define _AU0828_BULKPIPE 0x03
#define _BULKPIPESIZE 0xffff

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

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

static int send_control_msg(struct au0828_dev *dev, u16 request, u32 value,
79
	u16 index)
80 81
{
	int status = -ENODEV;
82

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

		status = min(status, 0);

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

	}
101

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

		status = min(status, 0);

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

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

133 134 135 136 137 138
static void au0828_unregister_media_device(struct au0828_dev *dev)
{

#ifdef CONFIG_MEDIA_CONTROLLER
	if (dev->media_dev) {
		media_device_unregister(dev->media_dev);
139
		media_device_cleanup(dev->media_dev);
140 141 142 143 144 145
		kfree(dev->media_dev);
		dev->media_dev = NULL;
	}
#endif
}

146
static void au0828_usb_release(struct au0828_dev *dev)
147
{
148 149
	au0828_unregister_media_device(dev);

150 151 152
	/* I2C */
	au0828_i2c_unregister(dev);

153 154 155
	kfree(dev);
}

156
#ifdef CONFIG_VIDEO_AU0828_V4L2
157 158 159 160 161 162 163 164 165 166 167 168 169 170

static void au0828_usb_v4l2_media_release(struct au0828_dev *dev)
{
#ifdef CONFIG_MEDIA_CONTROLLER
	int i;

	for (i = 0; i < AU0828_MAX_INPUT; i++) {
		if (AUVI_INPUT(i).type == AU0828_VMUX_UNDEFINED)
			return;
		media_device_unregister_entity(&dev->input_ent[i]);
	}
#endif
}

171 172 173 174 175
static void au0828_usb_v4l2_release(struct v4l2_device *v4l2_dev)
{
	struct au0828_dev *dev =
		container_of(v4l2_dev, struct au0828_dev, v4l2_dev);

176
	v4l2_ctrl_handler_free(&dev->v4l2_ctrl_hdl);
177
	v4l2_device_unregister(&dev->v4l2_dev);
178
	au0828_usb_v4l2_media_release(dev);
179 180
	au0828_usb_release(dev);
}
181
#endif
182

183 184 185 186 187 188
static void au0828_usb_disconnect(struct usb_interface *interface)
{
	struct au0828_dev *dev = usb_get_intfdata(interface);

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

189 190 191 192 193 194 195 196
	/* there is a small window after disconnect, before
	   dev->usbdev is NULL, for poll (e.g: IR) try to access
	   the device and fill the dmesg with error messages.
	   Set the status so poll routines can check and avoid
	   access after disconnect.
	*/
	dev->dev_state = DEV_DISCONNECTED;

197
	au0828_rc_unregister(dev);
198 199
	/* Digital TV */
	au0828_dvb_unregister(dev);
200

201
	usb_set_intfdata(interface, NULL);
202 203 204
	mutex_lock(&dev->mutex);
	dev->usbdev = NULL;
	mutex_unlock(&dev->mutex);
205 206 207 208 209
#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);
210 211 212 213
		/*
		 * No need to call au0828_usb_release() if V4L2 is enabled,
		 * as this is already called via au0828_usb_v4l2_release()
		 */
214 215 216 217
		return;
	}
#endif
	au0828_usb_release(dev);
218 219
}

220 221
static void au0828_media_device_init(struct au0828_dev *dev,
				     struct usb_device *udev)
222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241
{
#ifdef CONFIG_MEDIA_CONTROLLER
	struct media_device *mdev;

	mdev = kzalloc(sizeof(*mdev), GFP_KERNEL);
	if (!mdev)
		return;

	mdev->dev = &udev->dev;

	if (!dev->board.name)
		strlcpy(mdev->model, "unknown au0828", sizeof(mdev->model));
	else
		strlcpy(mdev->model, dev->board.name, sizeof(mdev->model));
	if (udev->serial)
		strlcpy(mdev->serial, udev->serial, sizeof(mdev->serial));
	strcpy(mdev->bus_info, udev->devpath);
	mdev->hw_revision = le16_to_cpu(udev->descriptor.bcdDevice);
	mdev->driver_version = LINUX_VERSION_CODE;

242
	media_device_init(mdev);
243 244 245 246 247 248

	dev->media_dev = mdev;
#endif
}


249
static int au0828_create_media_graph(struct au0828_dev *dev)
250 251 252 253 254
{
#ifdef CONFIG_MEDIA_CONTROLLER
	struct media_device *mdev = dev->media_dev;
	struct media_entity *entity;
	struct media_entity *tuner = NULL, *decoder = NULL;
255
	int i, ret;
256 257

	if (!mdev)
258
		return 0;
259 260

	media_device_for_each_entity(entity, mdev) {
261
		switch (entity->function) {
262
		case MEDIA_ENT_F_TUNER:
263 264
			tuner = entity;
			break;
265
		case MEDIA_ENT_F_ATV_DECODER:
266 267 268 269 270 271 272
			decoder = entity;
			break;
		}
	}

	/* Analog setup, using tuner as a link */

273
	/* Something bad happened! */
274
	if (!decoder)
275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291
		return -EINVAL;

	if (tuner) {
		ret = media_create_pad_link(tuner, TUNER_PAD_IF_OUTPUT,
					    decoder, 0,
					    MEDIA_LNK_FL_ENABLED);
		if (ret)
			return ret;
	}
	ret = media_create_pad_link(decoder, 1, &dev->vdev.entity, 0,
				    MEDIA_LNK_FL_ENABLED);
	if (ret)
		return ret;
	ret = media_create_pad_link(decoder, 2, &dev->vbi_dev.entity, 0,
				    MEDIA_LNK_FL_ENABLED);
	if (ret)
		return ret;
292 293 294 295 296 297 298 299 300 301 302

	for (i = 0; i < AU0828_MAX_INPUT; i++) {
		struct media_entity *ent = &dev->input_ent[i];

		if (AUVI_INPUT(i).type == AU0828_VMUX_UNDEFINED)
			break;

		switch (AUVI_INPUT(i).type) {
		case AU0828_VMUX_CABLE:
		case AU0828_VMUX_TELEVISION:
		case AU0828_VMUX_DVB:
303 304 305 306 307 308 309 310
			if (!tuner)
				break;

			ret = media_create_pad_link(ent, 0, tuner,
						    TUNER_PAD_RF_INPUT,
						    MEDIA_LNK_FL_ENABLED);
			if (ret)
				return ret;
311 312 313 314 315
			break;
		case AU0828_VMUX_COMPOSITE:
		case AU0828_VMUX_SVIDEO:
		default: /* AU0828_VMUX_DEBUG */
			/* FIXME: fix the decoder PAD */
316 317 318
			ret = media_create_pad_link(ent, 0, decoder, 0, 0);
			if (ret)
				return ret;
319 320 321
			break;
		}
	}
322
#endif
323
	return 0;
324 325
}

326
static int au0828_usb_probe(struct usb_interface *interface,
327 328
	const struct usb_device_id *id)
{
329
	int ifnum;
330 331
	int retval = 0;

332 333 334 335 336 337 338 339
	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 已提交
340
	dprintk(1, "%s() vendor id 0x%x device id 0x%x ifnum:%d\n", __func__,
341 342 343 344
		le16_to_cpu(usbdev->descriptor.idVendor),
		le16_to_cpu(usbdev->descriptor.idProduct),
		ifnum);

345 346 347 348 349
	/*
	 * 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.
	 */
350
	if (usbdev->speed != USB_SPEED_HIGH && disable_usb_speed_check == 0) {
351 352
		pr_err("au0828: Device initialization failed.\n");
		pr_err("au0828: Device must be connected to a high-speed USB 2.0 port.\n");
353 354 355
		return -ENODEV;
	}

356 357
	dev = kzalloc(sizeof(*dev), GFP_KERNEL);
	if (dev == NULL) {
358
		pr_err("%s() Unable to allocate memory\n", __func__);
359 360 361
		return -ENOMEM;
	}

362 363
	mutex_init(&dev->lock);
	mutex_lock(&dev->lock);
364 365 366
	mutex_init(&dev->mutex);
	mutex_init(&dev->dvb.lock);
	dev->usbdev = usbdev;
367
	dev->boardnr = id->driver_info;
368 369
	dev->board = au0828_boards[dev->boardnr];

370 371
	/* Initialize the media controller */
	au0828_media_device_init(dev, usbdev);
372

373
#ifdef CONFIG_VIDEO_AU0828_V4L2
374 375
	dev->v4l2_dev.release = au0828_usb_v4l2_release;

376
	/* Create the v4l2_device */
377 378 379
#ifdef CONFIG_MEDIA_CONTROLLER
	dev->v4l2_dev.mdev = dev->media_dev;
#endif
380
	retval = v4l2_device_register(&interface->dev, &dev->v4l2_dev);
381
	if (retval) {
382
		pr_err("%s() v4l2_device_register failed\n",
383
		       __func__);
384
		mutex_unlock(&dev->lock);
385
		kfree(dev);
386
		return retval;
387
	}
388 389 390 391 392 393 394 395 396 397
	/* 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;
398
#endif
399

400 401 402 403 404 405 406 407 408
	/* 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);

409 410 411
	/* Setup */
	au0828_card_setup(dev);

412
#ifdef CONFIG_VIDEO_AU0828_V4L2
413
	/* Analog TV */
414
	if (AUVI_INPUT(0).type != AU0828_VMUX_UNDEFINED)
415
		au0828_analog_register(dev, interface);
416
#endif
417

418
	/* Digital TV */
419 420 421 422 423
	retval = au0828_dvb_register(dev);
	if (retval)
		pr_err("%s() au0282_dev_register failed\n",
		       __func__);

424 425
	/* Remote controller */
	au0828_rc_register(dev);
426

427 428 429 430
	/*
	 * Store the pointer to the au0828_dev so it can be accessed in
	 * au0828_usb_disconnect
	 */
431 432
	usb_set_intfdata(interface, dev);

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

436 437
	mutex_unlock(&dev->lock);

438 439 440 441
	retval = au0828_create_media_graph(dev);
	if (retval) {
		pr_err("%s() au0282_dev_register failed to create graph\n",
		       __func__);
442
		goto done;
443
	}
444

445 446 447 448 449 450 451 452
#ifdef CONFIG_MEDIA_CONTROLLER
	retval = media_device_register(dev->media_dev);
#endif

done:
	if (retval < 0)
		au0828_usb_disconnect(interface);

453
	return retval;
454 455
}

456 457 458 459 460 461 462 463
static int au0828_suspend(struct usb_interface *interface,
				pm_message_t message)
{
	struct au0828_dev *dev = usb_get_intfdata(interface);

	if (!dev)
		return 0;

464 465
	pr_info("Suspend\n");

466
	au0828_rc_suspend(dev);
467
	au0828_v4l2_suspend(dev);
468
	au0828_dvb_suspend(dev);
469 470 471 472 473 474 475 476 477 478 479 480

	/* 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;

481 482
	pr_info("Resume\n");

483 484 485 486 487 488
	/* Power Up the bridge */
	au0828_write(dev, REG_600, 1 << 4);

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

489
	au0828_rc_resume(dev);
490
	au0828_v4l2_resume(dev);
491
	au0828_dvb_resume(dev);
492 493 494 495 496 497

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

	return 0;
}

498
static struct usb_driver au0828_usb_driver = {
499
	.name		= KBUILD_MODNAME,
500 501 502
	.probe		= au0828_usb_probe,
	.disconnect	= au0828_usb_disconnect,
	.id_table	= au0828_usb_id_table,
503 504 505
	.suspend	= au0828_suspend,
	.resume		= au0828_resume,
	.reset_resume	= au0828_resume,
506 507 508 509 510 511
};

static int __init au0828_init(void)
{
	int ret;

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

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

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

521
	if (au0828_debug & 8)
522
		pr_info("%s() Bridge Debugging is enabled\n",
523
		       __func__);
S
Steven Toth 已提交
524

525
	if (au0828_debug & 16)
526
		pr_info("%s() IR Debugging is enabled\n",
527 528
		       __func__);

529
	pr_info("au0828 driver loaded\n");
530 531 532

	ret = usb_register(&au0828_usb_driver);
	if (ret)
533
		pr_err("usb_register failed, error = %d\n", ret);
534 535 536 537 538 539 540 541 542 543 544 545 546

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