dsbr100.c 12.8 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
/* A driver for the D-Link DSB-R100 USB radio.  The R100 plugs
 into both the USB and an analog audio input, so this thing
 only deals with initialisation and frequency setting, the
 audio data has to be handled by a sound driver.

 Major issue: I can't find out where the device reports the signal
 strength, and indeed the windows software appearantly just looks
 at the stereo indicator as well.  So, scanning will only find
 stereo stations.  Sad, but I can't help it.

 Also, the windows program sends oodles of messages over to the
 device, and I couldn't figure out their meaning.  My suspicion
 is that they don't have any:-)

 You might find some interesting stuff about this module at
 http://unimut.fsk.uni-heidelberg.de/unimut/demi/dsbr

 Copyright (c) 2000 Markus Demleitner <msdemlei@cl.uni-heidelberg.de>

 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

 History:

36 37 38 39 40 41
 Version 0.41-ac1:
	Alan Cox: Some cleanups and fixes

 Version 0.41:
	Converted to V4L2 API by Mauro Carvalho Chehab <mchehab@infradead.org>

L
Linus Torvalds 已提交
42
 Version 0.40:
43
	Markus: Updates for 2.6.x kernels, code layout changes, name sanitizing
L
Linus Torvalds 已提交
44 45

 Version 0.30:
46
	Markus: Updates for 2.5.x kernel and more ISO compliant source
L
Linus Torvalds 已提交
47 48

 Version 0.25:
49
	PSL and Markus: Cleanup, radio now doesn't stop on device close
L
Linus Torvalds 已提交
50 51

 Version 0.24:
52
	Markus: Hope I got these silly VIDEO_TUNER_LOW issues finally
L
Linus Torvalds 已提交
53 54 55
	right.  Some minor cleanup, improved standalone compilation

 Version 0.23:
56
	Markus: Sign extension bug fixed by declaring transfer_buffer unsigned
L
Linus Torvalds 已提交
57 58

 Version 0.22:
59
	Markus: Some (brown bag) cleanup in what VIDIOCSTUNER returns,
L
Linus Torvalds 已提交
60 61 62
	thanks to Mike Cox for pointing the problem out.

 Version 0.21:
63
	Markus: Minor cleanup, warnings if something goes wrong, lame attempt
L
Linus Torvalds 已提交
64 65
	to adhere to Documentation/CodingStyle

66 67
 Version 0.2:
	Brad Hards <bradh@dynamite.com.au>: Fixes to make it work as non-module
L
Linus Torvalds 已提交
68 69 70 71 72 73 74 75 76 77 78
	Markus: Copyright clarification

 Version 0.01: Markus: initial release

*/

#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/init.h>
#include <linux/slab.h>
#include <linux/input.h>
79
#include <linux/videodev2.h>
80
#include <media/v4l2-common.h>
L
Linus Torvalds 已提交
81 82 83 84 85
#include <linux/usb.h>

/*
 * Version Information
 */
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
#include <linux/version.h>	/* for KERNEL_VERSION MACRO	*/

#define DRIVER_VERSION "v0.41"
#define RADIO_VERSION KERNEL_VERSION(0,4,1)

static struct v4l2_queryctrl radio_qctrl[] = {
	{
		.id            = V4L2_CID_AUDIO_MUTE,
		.name          = "Mute",
		.minimum       = 0,
		.maximum       = 1,
		.default_value = 1,
		.type          = V4L2_CTRL_TYPE_BOOLEAN,
	}
};

L
Linus Torvalds 已提交
102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132
#define DRIVER_AUTHOR "Markus Demleitner <msdemlei@tucana.harvard.edu>"
#define DRIVER_DESC "D-Link DSB-R100 USB FM radio driver"

#define DSB100_VENDOR 0x04b4
#define DSB100_PRODUCT 0x1002

/* Commands the device appears to understand */
#define DSB100_TUNE 1
#define DSB100_ONOFF 2

#define TB_LEN 16

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


static int usb_dsbr100_probe(struct usb_interface *intf,
			     const struct usb_device_id *id);
static void usb_dsbr100_disconnect(struct usb_interface *intf);
static int usb_dsbr100_ioctl(struct inode *inode, struct file *file,
			     unsigned int cmd, unsigned long arg);
static int usb_dsbr100_open(struct inode *inode, struct file *file);
static int usb_dsbr100_close(struct inode *inode, struct file *file);

static int radio_nr = -1;
module_param(radio_nr, int, 0);

/* Data for one (physical) device */
133
struct dsbr100_device {
L
Linus Torvalds 已提交
134 135 136 137 138 139 140
	struct usb_device *usbdev;
	struct video_device *videodev;
	unsigned char transfer_buffer[TB_LEN];
	int curfreq;
	int stereo;
	int users;
	int removed;
141 142
	int muted;
};
L
Linus Torvalds 已提交
143 144 145


/* File system interface */
146
static const struct file_operations usb_dsbr100_fops = {
L
Linus Torvalds 已提交
147 148 149 150
	.owner =	THIS_MODULE,
	.open =		usb_dsbr100_open,
	.release =     	usb_dsbr100_close,
	.ioctl =        usb_dsbr100_ioctl,
151
	.compat_ioctl = v4l_compat_ioctl32,
L
Linus Torvalds 已提交
152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182
	.llseek =       no_llseek,
};

/* V4L interface */
static struct video_device dsbr100_videodev_template=
{
	.owner =	THIS_MODULE,
	.name =		"D-Link DSB-R 100",
	.type =		VID_TYPE_TUNER,
	.fops =         &usb_dsbr100_fops,
	.release = video_device_release,
};

static struct usb_device_id usb_dsbr100_device_table [] = {
	{ USB_DEVICE(DSB100_VENDOR, DSB100_PRODUCT) },
	{ }						/* Terminating entry */
};

MODULE_DEVICE_TABLE (usb, usb_dsbr100_device_table);

/* USB subsystem interface */
static struct usb_driver usb_dsbr100_driver = {
	.name =		"dsbr100",
	.probe =	usb_dsbr100_probe,
	.disconnect =	usb_dsbr100_disconnect,
	.id_table =	usb_dsbr100_device_table,
};

/* Low-level device interface begins here */

/* switch on radio */
183
static int dsbr100_start(struct dsbr100_device *radio)
L
Linus Torvalds 已提交
184 185
{
	if (usb_control_msg(radio->usbdev, usb_rcvctrlpipe(radio->usbdev, 0),
186
			USB_REQ_GET_STATUS,
L
Linus Torvalds 已提交
187 188 189
			USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_IN,
			0x00, 0xC7, radio->transfer_buffer, 8, 300)<0 ||
	usb_control_msg(radio->usbdev, usb_rcvctrlpipe(radio->usbdev, 0),
190
			DSB100_ONOFF,
L
Linus Torvalds 已提交
191 192 193
			USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_IN,
			0x01, 0x00, radio->transfer_buffer, 8, 300)<0)
		return -1;
194
	radio->muted=0;
L
Linus Torvalds 已提交
195 196 197 198 199
	return (radio->transfer_buffer)[0];
}


/* switch off radio */
200
static int dsbr100_stop(struct dsbr100_device *radio)
L
Linus Torvalds 已提交
201 202
{
	if (usb_control_msg(radio->usbdev, usb_rcvctrlpipe(radio->usbdev, 0),
203
			USB_REQ_GET_STATUS,
L
Linus Torvalds 已提交
204 205 206
			USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_IN,
			0x16, 0x1C, radio->transfer_buffer, 8, 300)<0 ||
	usb_control_msg(radio->usbdev, usb_rcvctrlpipe(radio->usbdev, 0),
207
			DSB100_ONOFF,
L
Linus Torvalds 已提交
208 209 210
			USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_IN,
			0x00, 0x00, radio->transfer_buffer, 8, 300)<0)
		return -1;
211
	radio->muted=1;
L
Linus Torvalds 已提交
212 213 214 215
	return (radio->transfer_buffer)[0];
}

/* set a frequency, freq is defined by v4l's TUNER_LOW, i.e. 1/16th kHz */
216
static int dsbr100_setfreq(struct dsbr100_device *radio, int freq)
L
Linus Torvalds 已提交
217 218 219
{
	freq = (freq/16*80)/1000+856;
	if (usb_control_msg(radio->usbdev, usb_rcvctrlpipe(radio->usbdev, 0),
220
			DSB100_TUNE,
L
Linus Torvalds 已提交
221
			USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_IN,
222
			(freq>>8)&0x00ff, freq&0xff,
L
Linus Torvalds 已提交
223 224
			radio->transfer_buffer, 8, 300)<0 ||
	   usb_control_msg(radio->usbdev, usb_rcvctrlpipe(radio->usbdev, 0),
225
			USB_REQ_GET_STATUS,
L
Linus Torvalds 已提交
226 227 228
			USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_IN,
			0x96, 0xB7, radio->transfer_buffer, 8, 300)<0 ||
	usb_control_msg(radio->usbdev, usb_rcvctrlpipe(radio->usbdev, 0),
229
			USB_REQ_GET_STATUS,
L
Linus Torvalds 已提交
230 231 232 233 234 235 236 237 238 239 240
			USB_TYPE_VENDOR | USB_RECIP_DEVICE |  USB_DIR_IN,
			0x00, 0x24, radio->transfer_buffer, 8, 300)<0) {
		radio->stereo = -1;
		return -1;
	}
	radio->stereo = ! ((radio->transfer_buffer)[0]&0x01);
	return (radio->transfer_buffer)[0];
}

/* return the device status.  This is, in effect, just whether it
sees a stereo signal or not.  Pity. */
241
static void dsbr100_getstat(struct dsbr100_device *radio)
L
Linus Torvalds 已提交
242 243
{
	if (usb_control_msg(radio->usbdev, usb_rcvctrlpipe(radio->usbdev, 0),
244
		USB_REQ_GET_STATUS,
L
Linus Torvalds 已提交
245 246 247 248 249 250 251 252 253 254 255 256
		USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_IN,
		0x00 , 0x24, radio->transfer_buffer, 8, 300)<0)
		radio->stereo = -1;
	else
		radio->stereo = ! (radio->transfer_buffer[0]&0x01);
}


/* USB subsystem interface begins here */

/* check if the device is present and register with v4l and
usb if it is */
257
static int usb_dsbr100_probe(struct usb_interface *intf,
L
Linus Torvalds 已提交
258 259
			 const struct usb_device_id *id)
{
260
	struct dsbr100_device *radio;
L
Linus Torvalds 已提交
261

262
	if (!(radio = kmalloc(sizeof(struct dsbr100_device), GFP_KERNEL)))
L
Linus Torvalds 已提交
263 264 265 266 267
		return -ENOMEM;
	if (!(radio->videodev = video_device_alloc())) {
		kfree(radio);
		return -ENOMEM;
	}
268
	memcpy(radio->videodev, &dsbr100_videodev_template,
L
Linus Torvalds 已提交
269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294
		sizeof(dsbr100_videodev_template));
	radio->removed = 0;
	radio->users = 0;
	radio->usbdev = interface_to_usbdev(intf);
	radio->curfreq = FREQ_MIN*FREQ_MUL;
	video_set_drvdata(radio->videodev, radio);
	if (video_register_device(radio->videodev, VFL_TYPE_RADIO,
		radio_nr)) {
		warn("Could not register video device");
		video_device_release(radio->videodev);
		kfree(radio);
		return -EIO;
	}
	usb_set_intfdata(intf, radio);
	return 0;
}

/* handle unplugging of the device, release data structures
if nothing keeps us from doing it.  If something is still
keeping us busy, the release callback of v4l will take care
of releasing it.  stv680.c does not relase its private
data, so I don't do this here either.  Checking out the
code I'd expect I better did that, but if there's a memory
leak here it's tiny (~50 bytes per disconnect) */
static void usb_dsbr100_disconnect(struct usb_interface *intf)
{
295
	struct dsbr100_device *radio = usb_get_intfdata(intf);
L
Linus Torvalds 已提交
296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314

	usb_set_intfdata (intf, NULL);
	if (radio) {
		video_unregister_device(radio->videodev);
		radio->videodev = NULL;
		if (radio->users) {
			kfree(radio);
		} else {
			radio->removed = 1;
		}
	}
}


/* Video for Linux interface */

static int usb_dsbr100_do_ioctl(struct inode *inode, struct file *file,
				unsigned int cmd, void *arg)
{
315
	struct dsbr100_device *radio=video_get_drvdata(video_devdata(file));
L
Linus Torvalds 已提交
316 317 318 319 320

	if (!radio)
		return -EIO;

	switch(cmd) {
321 322 323 324 325 326 327 328 329 330
		case VIDIOC_QUERYCAP:
		{
			struct v4l2_capability *v = arg;
			memset(v,0,sizeof(*v));
			strlcpy(v->driver, "dsbr100", sizeof (v->driver));
			strlcpy(v->card, "D-Link R-100 USB FM Radio", sizeof (v->card));
			sprintf(v->bus_info,"ISA");
			v->version = RADIO_VERSION;
			v->capabilities = V4L2_CAP_TUNER;

L
Linus Torvalds 已提交
331 332
			return 0;
		}
333 334 335
		case VIDIOC_G_TUNER:
		{
			struct v4l2_tuner *v = arg;
L
Linus Torvalds 已提交
336

337
			if (v->index > 0)
L
Linus Torvalds 已提交
338
				return -EINVAL;
339 340 341 342 343 344 345

			dsbr100_getstat(radio);

			memset(v,0,sizeof(*v));
			strcpy(v->name, "FM");
			v->type = V4L2_TUNER_RADIO;

L
Linus Torvalds 已提交
346 347
			v->rangelow = FREQ_MIN*FREQ_MUL;
			v->rangehigh = FREQ_MAX*FREQ_MUL;
348 349 350 351 352 353 354
			v->rxsubchans =V4L2_TUNER_SUB_MONO|V4L2_TUNER_SUB_STEREO;
			v->capability=V4L2_TUNER_CAP_LOW;
			if(radio->stereo)
				v->audmode = V4L2_TUNER_MODE_STEREO;
			else
				v->audmode = V4L2_TUNER_MODE_MONO;
			v->signal = 0xFFFF;     /* We can't get the signal strength */
L
Linus Torvalds 已提交
355 356 357

			return 0;
		}
358 359 360
		case VIDIOC_S_TUNER:
		{
			struct v4l2_tuner *v = arg;
L
Linus Torvalds 已提交
361

362
			if (v->index > 0)
L
Linus Torvalds 已提交
363
				return -EINVAL;
364

L
Linus Torvalds 已提交
365 366
			return 0;
		}
367 368 369
		case VIDIOC_S_FREQUENCY:
		{
			struct v4l2_frequency *f = arg;
L
Linus Torvalds 已提交
370

371
			radio->curfreq = f->frequency;
L
Linus Torvalds 已提交
372 373 374 375
			if (dsbr100_setfreq(radio, radio->curfreq)==-1)
				warn("Set frequency failed");
			return 0;
		}
376 377 378 379 380 381 382
		case VIDIOC_G_FREQUENCY:
		{
			struct v4l2_frequency *f = arg;

			f->type = V4L2_TUNER_RADIO;
			f->frequency = radio->curfreq;

383
			return 0;
L
Linus Torvalds 已提交
384
		}
385 386 387 388 389 390 391 392 393 394 395
		case VIDIOC_QUERYCTRL:
		{
			struct v4l2_queryctrl *qc = arg;
			int i;

			for (i = 0; i < ARRAY_SIZE(radio_qctrl); i++) {
				if (qc->id && qc->id == radio_qctrl[i].id) {
					memcpy(qc, &(radio_qctrl[i]),
								sizeof(*qc));
					return 0;
				}
L
Linus Torvalds 已提交
396
			}
397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425
			return -EINVAL;
		}
		case VIDIOC_G_CTRL:
		{
			struct v4l2_control *ctrl= arg;

			switch (ctrl->id) {
			case V4L2_CID_AUDIO_MUTE:
				ctrl->value=radio->muted;
				return 0;
			}
			return -EINVAL;
		}
		case VIDIOC_S_CTRL:
		{
			struct v4l2_control *ctrl= arg;

			switch (ctrl->id) {
			case V4L2_CID_AUDIO_MUTE:
				if (ctrl->value) {
					if (dsbr100_stop(radio)==-1)
						warn("Radio did not respond properly");
				} else {
					if (dsbr100_start(radio)==-1)
						warn("Radio did not respond properly");
				}
				return 0;
			}
			return -EINVAL;
L
Linus Torvalds 已提交
426 427
		}
		default:
428 429
			return v4l_compat_translate_ioctl(inode,file,cmd,arg,
							  usb_dsbr100_do_ioctl);
L
Linus Torvalds 已提交
430 431 432 433 434 435 436 437 438 439 440
	}
}

static int usb_dsbr100_ioctl(struct inode *inode, struct file *file,
			     unsigned int cmd, unsigned long arg)
{
	return video_usercopy(inode, file, cmd, arg, usb_dsbr100_do_ioctl);
}

static int usb_dsbr100_open(struct inode *inode, struct file *file)
{
441
	struct dsbr100_device *radio=video_get_drvdata(video_devdata(file));
L
Linus Torvalds 已提交
442 443

	radio->users = 1;
444 445
	radio->muted = 1;

L
Linus Torvalds 已提交
446 447 448 449 450 451 452 453 454 455 456
	if (dsbr100_start(radio)<0) {
		warn("Radio did not start up properly");
		radio->users = 0;
		return -EIO;
	}
	dsbr100_setfreq(radio, radio->curfreq);
	return 0;
}

static int usb_dsbr100_close(struct inode *inode, struct file *file)
{
457
	struct dsbr100_device *radio=video_get_drvdata(video_devdata(file));
L
Linus Torvalds 已提交
458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485

	if (!radio)
		return -ENODEV;
	radio->users = 0;
	if (radio->removed) {
		kfree(radio);
	}
	return 0;
}

static int __init dsbr100_init(void)
{
	int retval = usb_register(&usb_dsbr100_driver);
	info(DRIVER_VERSION ":" DRIVER_DESC);
	return retval;
}

static void __exit dsbr100_exit(void)
{
	usb_deregister(&usb_dsbr100_driver);
}

module_init (dsbr100_init);
module_exit (dsbr100_exit);

MODULE_AUTHOR( DRIVER_AUTHOR );
MODULE_DESCRIPTION( DRIVER_DESC );
MODULE_LICENSE("GPL");