radio-mr800.c 15.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
/*
 * A driver for the AverMedia MR 800 USB FM radio. This device plugs
 * into both the USB and an analog audio input, so this thing
 * only deals with initialization and frequency setting, the
 * audio data has to be handled by a sound driver.
 *
 * Copyright (c) 2008 Alexey Klimov <klimov.linux@gmail.com>
 *
 * 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 */

/*
25
 * Big thanks to authors and contributors of dsbr100.c and radio-si470x.c
26 27 28 29 30
 *
 * When work was looked pretty good, i discover this:
 * http://av-usbradio.sourceforge.net/index.php
 * http://sourceforge.net/projects/av-usbradio/
 * Latest release of theirs project was in 2005.
31
 * Probably, this driver could be improved through using their
32
 * achievements (specifications given).
33 34 35
 * Also, Faidon Liambotis <paravoid@debian.org> wrote nice driver for this radio
 * in 2007. He allowed to use his driver to improve current mr800 radio driver.
 * http://kerneltrap.org/mailarchive/linux-usb-devel/2007/10/11/342492
36 37 38 39
 *
 * Version 0.01:	First working version.
 * 			It's required to blacklist AverMedia USB Radio
 * 			in usbhid/hid-quirks.c
40 41 42 43 44 45
 * Version 0.10:	A lot of cleanups and fixes: unpluging the device,
 * 			few mutex locks were added, codinstyle issues, etc.
 * 			Added stereo support. Thanks to
 * 			Douglas Schilling Landgraf <dougsland@gmail.com> and
 * 			David Ellingsworth <david@identd.dyndns.org>
 * 			for discussion, help and support.
46
 * Version 0.11:	Converted to v4l2_device.
47 48
 *
 * Many things to do:
49
 * 	- Correct power management of device (suspend & resume)
50 51 52 53 54 55 56 57 58 59 60 61 62
 * 	- Add code for scanning and smooth tuning
 * 	- Add code for sensitivity value
 * 	- Correct mistakes
 * 	- In Japan another FREQ_MIN and FREQ_MAX
 */

/* kernel includes */
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/init.h>
#include <linux/slab.h>
#include <linux/input.h>
#include <linux/videodev2.h>
63
#include <media/v4l2-device.h>
64
#include <media/v4l2-ioctl.h>
65 66
#include <media/v4l2-ctrls.h>
#include <media/v4l2-event.h>
67
#include <linux/usb.h>
68
#include <linux/mutex.h>
69 70 71 72

/* driver and module definitions */
#define DRIVER_AUTHOR "Alexey Klimov <klimov.linux@gmail.com>"
#define DRIVER_DESC "AverMedia MR 800 USB FM radio driver"
73
#define DRIVER_VERSION "0.1.2"
74 75 76 77

MODULE_AUTHOR(DRIVER_AUTHOR);
MODULE_DESCRIPTION(DRIVER_DESC);
MODULE_LICENSE("GPL");
78
MODULE_VERSION(DRIVER_VERSION);
79 80 81 82

#define USB_AMRADIO_VENDOR 0x07ca
#define USB_AMRADIO_PRODUCT 0xb800

83 84 85 86 87
/* dev_warn macro with driver name */
#define MR800_DRIVER_NAME "radio-mr800"
#define amradio_dev_warn(dev, fmt, arg...)				\
		dev_warn(dev, MR800_DRIVER_NAME " - " fmt, ##arg)

88 89 90
#define amradio_dev_err(dev, fmt, arg...) \
		dev_err(dev, MR800_DRIVER_NAME " - " fmt, ##arg)

91 92 93 94 95 96 97 98 99 100
/* Probably USB_TIMEOUT should be modified in module parameter */
#define BUFFER_LENGTH 8
#define USB_TIMEOUT 500

/* Frequency limits in MHz -- these are European values.  For Japanese
devices, that would be 76 and 91.  */
#define FREQ_MIN  87.5
#define FREQ_MAX 108.0
#define FREQ_MUL 16000

101 102
/*
 * Commands that device should understand
L
Lucas De Marchi 已提交
103
 * List isn't full and will be updated with implementation of new functions
104
 */
105
#define AMRADIO_SET_FREQ	0xa4
106
#define AMRADIO_SET_MUTE	0xab
107
#define AMRADIO_SET_MONO	0xae
108 109 110 111 112

/* Comfortable defines for amradio_set_mute */
#define AMRADIO_START		0x00
#define AMRADIO_STOP		0x01

113 114 115 116
/* Comfortable defines for amradio_set_stereo */
#define WANT_STEREO		0x00
#define WANT_MONO		0x01

117 118 119 120 121 122 123 124 125
/* module parameter */
static int radio_nr = -1;
module_param(radio_nr, int, 0);
MODULE_PARM_DESC(radio_nr, "Radio Nr");

/* Data for one (physical) device */
struct amradio_device {
	/* reference to USB and video device */
	struct usb_device *usbdev;
126
	struct usb_interface *intf;
127
	struct video_device vdev;
128
	struct v4l2_device v4l2_dev;
129
	struct v4l2_ctrl_handler hdl;
130 131 132 133 134 135 136 137

	unsigned char *buffer;
	struct mutex lock;	/* buffer locking */
	int curfreq;
	int stereo;
	int muted;
};

138 139 140 141
static inline struct amradio_device *to_amradio_dev(struct v4l2_device *v4l2_dev)
{
	return container_of(v4l2_dev, struct amradio_device, v4l2_dev);
}
142

143 144
/* switch on/off the radio. Send 8 bytes to device */
static int amradio_set_mute(struct amradio_device *radio, char argument)
145 146 147 148 149 150 151 152
{
	int retval;
	int size;

	radio->buffer[0] = 0x00;
	radio->buffer[1] = 0x55;
	radio->buffer[2] = 0xaa;
	radio->buffer[3] = 0x00;
153 154
	radio->buffer[4] = AMRADIO_SET_MUTE;
	radio->buffer[5] = argument;
155 156 157 158 159 160
	radio->buffer[6] = 0x00;
	radio->buffer[7] = 0x00;

	retval = usb_bulk_msg(radio->usbdev, usb_sndintpipe(radio->usbdev, 2),
		(void *) (radio->buffer), BUFFER_LENGTH, &size, USB_TIMEOUT);

161
	if (retval < 0 || size != BUFFER_LENGTH) {
162 163
		amradio_dev_warn(&radio->vdev.dev, "set mute failed\n");
		return retval < 0 ? retval : -EIO;
164
	}
165
	radio->muted = argument;
166
	return 0;
167 168 169 170 171
}

/* set a frequency, freq is defined by v4l's TUNER_LOW, i.e. 1/16th kHz */
static int amradio_setfreq(struct amradio_device *radio, int freq)
{
172
	unsigned short freq_send = 0x10 + (freq >> 3) / 25;
173 174 175 176 177 178 179
	int retval;
	int size;

	radio->buffer[0] = 0x00;
	radio->buffer[1] = 0x55;
	radio->buffer[2] = 0xaa;
	radio->buffer[3] = 0x03;
180
	radio->buffer[4] = AMRADIO_SET_FREQ;
181 182 183 184 185 186 187
	radio->buffer[5] = 0x00;
	radio->buffer[6] = 0x00;
	radio->buffer[7] = 0x08;

	retval = usb_bulk_msg(radio->usbdev, usb_sndintpipe(radio->usbdev, 2),
		(void *) (radio->buffer), BUFFER_LENGTH, &size, USB_TIMEOUT);

188
	if (retval < 0 || size != BUFFER_LENGTH)
189
		goto out;
190 191 192 193 194 195 196 197 198 199 200 201 202

	/* frequency is calculated from freq_send and placed in first 2 bytes */
	radio->buffer[0] = (freq_send >> 8) & 0xff;
	radio->buffer[1] = freq_send & 0xff;
	radio->buffer[2] = 0x01;
	radio->buffer[3] = 0x00;
	radio->buffer[4] = 0x00;
	/* 5 and 6 bytes of buffer already = 0x00 */
	radio->buffer[7] = 0x00;

	retval = usb_bulk_msg(radio->usbdev, usb_sndintpipe(radio->usbdev, 2),
		(void *) (radio->buffer), BUFFER_LENGTH, &size, USB_TIMEOUT);

203 204 205 206
	if (retval >= 0 && size == BUFFER_LENGTH) {
		radio->curfreq = freq;
		return 0;
	}
207

208
out:
209 210
	amradio_dev_warn(&radio->vdev.dev, "set frequency failed\n");
	return retval < 0 ? retval : -EIO;
211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230
}

static int amradio_set_stereo(struct amradio_device *radio, char argument)
{
	int retval;
	int size;

	radio->buffer[0] = 0x00;
	radio->buffer[1] = 0x55;
	radio->buffer[2] = 0xaa;
	radio->buffer[3] = 0x00;
	radio->buffer[4] = AMRADIO_SET_MONO;
	radio->buffer[5] = argument;
	radio->buffer[6] = 0x00;
	radio->buffer[7] = 0x00;

	retval = usb_bulk_msg(radio->usbdev, usb_sndintpipe(radio->usbdev, 2),
		(void *) (radio->buffer), BUFFER_LENGTH, &size, USB_TIMEOUT);

	if (retval < 0 || size != BUFFER_LENGTH) {
231 232
		amradio_dev_warn(&radio->vdev.dev, "set stereo failed\n");
		return retval < 0 ? retval : -EIO;
233 234
	}

235 236
	radio->stereo = (argument == WANT_STEREO);
	return 0;
237 238
}

239 240 241 242 243
/* Handle unplugging the device.
 * We call video_unregister_device in any case.
 * The last function called in this procedure is
 * usb_amradio_device_release.
 */
244 245
static void usb_amradio_disconnect(struct usb_interface *intf)
{
246
	struct amradio_device *radio = to_amradio_dev(usb_get_intfdata(intf));
247

248
	mutex_lock(&radio->lock);
249 250
	usb_set_intfdata(intf, NULL);
	video_unregister_device(&radio->vdev);
251
	v4l2_device_disconnect(&radio->v4l2_dev);
252
	mutex_unlock(&radio->lock);
253
	v4l2_device_put(&radio->v4l2_dev);
254 255 256 257 258 259
}

/* vidioc_querycap - query device capabilities */
static int vidioc_querycap(struct file *file, void *priv,
					struct v4l2_capability *v)
{
260
	struct amradio_device *radio = video_drvdata(file);
261

262 263
	strlcpy(v->driver, "radio-mr800", sizeof(v->driver));
	strlcpy(v->card, "AverMedia MR 800 USB FM Radio", sizeof(v->card));
264
	usb_make_path(radio->usbdev, v->bus_info, sizeof(v->bus_info));
265 266
	v->device_caps = V4L2_CAP_RADIO | V4L2_CAP_TUNER;
	v->capabilities = v->device_caps | V4L2_CAP_DEVICE_CAPS;
267 268 269 270 271 272 273
	return 0;
}

/* vidioc_g_tuner - get tuner attributes */
static int vidioc_g_tuner(struct file *file, void *priv,
				struct v4l2_tuner *v)
{
274
	struct amradio_device *radio = video_drvdata(file);
275 276 277 278 279 280 281 282

	if (v->index > 0)
		return -EINVAL;

	strcpy(v->name, "FM");
	v->type = V4L2_TUNER_RADIO;
	v->rangelow = FREQ_MIN * FREQ_MUL;
	v->rangehigh = FREQ_MAX * FREQ_MUL;
283 284 285 286 287 288 289 290 291
	v->capability = V4L2_TUNER_CAP_LOW | V4L2_TUNER_CAP_STEREO;
	/* We do not know how to get hold of the stereo indicator, so
	   all we can do is give back both mono and stereo, which
	   effectively means that we don't know. */
	v->rxsubchans = V4L2_TUNER_SUB_STEREO | V4L2_TUNER_SUB_MONO;
	v->signal = 0xffff;
	v->audmode = radio->stereo ?
		V4L2_TUNER_MODE_STEREO : V4L2_TUNER_MODE_MONO;
	return 0;
292 293 294 295 296 297
}

/* vidioc_s_tuner - set tuner attributes */
static int vidioc_s_tuner(struct file *file, void *priv,
				struct v4l2_tuner *v)
{
298
	struct amradio_device *radio = video_drvdata(file);
299

300 301
	if (v->index > 0)
		return -EINVAL;
302 303 304 305

	/* mono/stereo selector */
	switch (v->audmode) {
	case V4L2_TUNER_MODE_MONO:
306 307 308
		return amradio_set_stereo(radio, WANT_MONO);
	default:
		return amradio_set_stereo(radio, WANT_STEREO);
309
	}
310 311 312 313 314 315
}

/* vidioc_s_frequency - set tuner radio frequency */
static int vidioc_s_frequency(struct file *file, void *priv,
				struct v4l2_frequency *f)
{
316
	struct amradio_device *radio = video_drvdata(file);
317

318
	if (f->tuner != 0)
319
		return -EINVAL;
320 321
	return amradio_setfreq(radio, clamp_t(unsigned, f->frequency,
				FREQ_MIN * FREQ_MUL, FREQ_MAX * FREQ_MUL));
322 323 324 325 326 327
}

/* vidioc_g_frequency - get tuner radio frequency */
static int vidioc_g_frequency(struct file *file, void *priv,
				struct v4l2_frequency *f)
{
328
	struct amradio_device *radio = video_drvdata(file);
329

330
	if (f->tuner != 0 || f->type != V4L2_TUNER_RADIO)
331
		return -EINVAL;
332 333
	f->type = V4L2_TUNER_RADIO;
	f->frequency = radio->curfreq;
334

335 336 337
	return 0;
}

338
static int usb_amradio_s_ctrl(struct v4l2_ctrl *ctrl)
339
{
340 341
	struct amradio_device *radio =
		container_of(ctrl->handler, struct amradio_device, hdl);
342

343 344
	switch (ctrl->id) {
	case V4L2_CID_AUDIO_MUTE:
345 346
		return amradio_set_mute(radio,
				ctrl->val ? AMRADIO_STOP : AMRADIO_START);
347
	}
348

349 350 351
	return -EINVAL;
}

352
static int usb_amradio_init(struct amradio_device *radio)
353
{
354
	int retval;
355

356
	retval = amradio_set_mute(radio, AMRADIO_STOP);
357
	if (retval)
358
		goto out_err;
359

360
	retval = amradio_set_stereo(radio, WANT_STEREO);
361
	if (retval)
362
		goto out_err;
363

364 365 366
	goto out;

out_err:
367
	amradio_dev_err(&radio->vdev.dev, "initialization failed\n");
368 369 370 371
out:
	return retval;
}

372 373 374
/* Suspend device - stop device. Need to be checked and fixed */
static int usb_amradio_suspend(struct usb_interface *intf, pm_message_t message)
{
375
	struct amradio_device *radio = to_amradio_dev(usb_get_intfdata(intf));
376

377
	mutex_lock(&radio->lock);
378
	if (!radio->muted) {
379
		amradio_set_mute(radio, AMRADIO_STOP);
380 381
		radio->muted = 0;
	}
382
	mutex_unlock(&radio->lock);
383

384
	dev_info(&intf->dev, "going into suspend..\n");
385 386 387 388 389 390
	return 0;
}

/* Resume device - start device. Need to be checked and fixed */
static int usb_amradio_resume(struct usb_interface *intf)
{
391
	struct amradio_device *radio = to_amradio_dev(usb_get_intfdata(intf));
392

393
	mutex_lock(&radio->lock);
394
	if (radio->stereo)
395
		amradio_set_stereo(radio, WANT_STEREO);
396
	else
397
		amradio_set_stereo(radio, WANT_MONO);
398

399
	amradio_setfreq(radio, radio->curfreq);
400

401 402
	if (!radio->muted)
		amradio_set_mute(radio, AMRADIO_START);
403

404 405
	mutex_unlock(&radio->lock);

406
	dev_info(&intf->dev, "coming out of suspend..\n");
407 408 409
	return 0;
}

410 411 412 413
static const struct v4l2_ctrl_ops usb_amradio_ctrl_ops = {
	.s_ctrl = usb_amradio_s_ctrl,
};

414
/* File system interface */
415
static const struct v4l2_file_operations usb_amradio_fops = {
416
	.owner		= THIS_MODULE,
417 418 419
	.open		= v4l2_fh_open,
	.release	= v4l2_fh_release,
	.poll		= v4l2_ctrl_poll,
H
Hans Verkuil 已提交
420
	.unlocked_ioctl	= video_ioctl2,
421 422 423 424 425 426 427 428
};

static const struct v4l2_ioctl_ops usb_amradio_ioctl_ops = {
	.vidioc_querycap    = vidioc_querycap,
	.vidioc_g_tuner     = vidioc_g_tuner,
	.vidioc_s_tuner     = vidioc_s_tuner,
	.vidioc_g_frequency = vidioc_g_frequency,
	.vidioc_s_frequency = vidioc_s_frequency,
429 430 431
	.vidioc_log_status  = v4l2_ctrl_log_status,
	.vidioc_subscribe_event = v4l2_ctrl_subscribe_event,
	.vidioc_unsubscribe_event = v4l2_event_unsubscribe,
432 433
};

434
static void usb_amradio_release(struct v4l2_device *v4l2_dev)
435
{
436
	struct amradio_device *radio = to_amradio_dev(v4l2_dev);
437

438
	/* free rest memory */
439 440
	v4l2_ctrl_handler_free(&radio->hdl);
	v4l2_device_unregister(&radio->v4l2_dev);
441 442 443 444
	kfree(radio->buffer);
	kfree(radio);
}

445
/* check if the device is present and register with v4l and usb if it is */
446 447 448 449
static int usb_amradio_probe(struct usb_interface *intf,
				const struct usb_device_id *id)
{
	struct amradio_device *radio;
450
	int retval = 0;
451

452
	radio = kzalloc(sizeof(struct amradio_device), GFP_KERNEL);
453

454 455
	if (!radio) {
		dev_err(&intf->dev, "kmalloc for amradio_device failed\n");
456 457
		retval = -ENOMEM;
		goto err;
458
	}
459 460 461

	radio->buffer = kmalloc(BUFFER_LENGTH, GFP_KERNEL);

462 463
	if (!radio->buffer) {
		dev_err(&intf->dev, "kmalloc for radio->buffer failed\n");
464 465
		retval = -ENOMEM;
		goto err_nobuf;
466 467
	}

468
	retval = v4l2_device_register(&intf->dev, &radio->v4l2_dev);
469 470
	if (retval < 0) {
		dev_err(&intf->dev, "couldn't register v4l2_device\n");
471
		goto err_v4l2;
472 473
	}

474 475 476 477 478 479 480 481
	v4l2_ctrl_handler_init(&radio->hdl, 1);
	v4l2_ctrl_new_std(&radio->hdl, &usb_amradio_ctrl_ops,
			  V4L2_CID_AUDIO_MUTE, 0, 1, 1, 1);
	if (radio->hdl.error) {
		retval = radio->hdl.error;
		dev_err(&intf->dev, "couldn't register control\n");
		goto err_ctrl;
	}
H
Hans Verkuil 已提交
482 483
	mutex_init(&radio->lock);

484 485 486 487 488 489 490 491 492 493
	radio->v4l2_dev.ctrl_handler = &radio->hdl;
	radio->v4l2_dev.release = usb_amradio_release;
	strlcpy(radio->vdev.name, radio->v4l2_dev.name,
		sizeof(radio->vdev.name));
	radio->vdev.v4l2_dev = &radio->v4l2_dev;
	radio->vdev.fops = &usb_amradio_fops;
	radio->vdev.ioctl_ops = &usb_amradio_ioctl_ops;
	radio->vdev.release = video_device_release_empty;
	radio->vdev.lock = &radio->lock;
	set_bit(V4L2_FL_USE_FH_PRIO, &radio->vdev.flags);
494 495

	radio->usbdev = interface_to_usbdev(intf);
496
	radio->intf = intf;
497
	usb_set_intfdata(intf, &radio->v4l2_dev);
498 499
	radio->curfreq = 95.16 * FREQ_MUL;

500 501 502 503
	video_set_drvdata(&radio->vdev, radio);
	retval = usb_amradio_init(radio);
	if (retval)
		goto err_vdev;
504

505
	retval = video_register_device(&radio->vdev, VFL_TYPE_RADIO,
506
					radio_nr);
507
	if (retval < 0) {
508
		dev_err(&intf->dev, "could not register video device\n");
509
		goto err_vdev;
510 511 512
	}

	return 0;
513 514

err_vdev:
515 516
	v4l2_ctrl_handler_free(&radio->hdl);
err_ctrl:
517
	v4l2_device_unregister(&radio->v4l2_dev);
518 519 520 521 522 523
err_v4l2:
	kfree(radio->buffer);
err_nobuf:
	kfree(radio);
err:
	return retval;
524 525
}

526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545
/* USB Device ID List */
static struct usb_device_id usb_amradio_device_table[] = {
	{ USB_DEVICE_AND_INTERFACE_INFO(USB_AMRADIO_VENDOR, USB_AMRADIO_PRODUCT,
							USB_CLASS_HID, 0, 0) },
	{ }						/* Terminating entry */
};

MODULE_DEVICE_TABLE(usb, usb_amradio_device_table);

/* USB subsystem interface */
static struct usb_driver usb_amradio_driver = {
	.name			= MR800_DRIVER_NAME,
	.probe			= usb_amradio_probe,
	.disconnect		= usb_amradio_disconnect,
	.suspend		= usb_amradio_suspend,
	.resume			= usb_amradio_resume,
	.reset_resume		= usb_amradio_resume,
	.id_table		= usb_amradio_device_table,
};

546
module_usb_driver(usb_amradio_driver);