blob: 142c2ee64d31522f30affdc223c48611e3e3e99c [file] [log] [blame]
Alexey Klimovfc55bcb2008-12-27 22:33:54 -03001/* A driver for the D-Link DSB-R100 USB radio and Gemtek USB Radio 21.
Hans Verkuil5d778642012-04-27 08:13:26 -03002 * The device plugs into both the USB and an analog audio input, so this thing
3 * only deals with initialisation and frequency setting, the
4 * audio data has to be handled by a sound driver.
5 *
6 * Major issue: I can't find out where the device reports the signal
7 * strength, and indeed the windows software appearantly just looks
8 * at the stereo indicator as well. So, scanning will only find
9 * stereo stations. Sad, but I can't help it.
10 *
11 * Also, the windows program sends oodles of messages over to the
12 * device, and I couldn't figure out their meaning. My suspicion
13 * is that they don't have any:-)
14 *
15 * You might find some interesting stuff about this module at
16 * http://unimut.fsk.uni-heidelberg.de/unimut/demi/dsbr
17 *
18 * Fully tested with the Keene USB FM Transmitter and the v4l2-compliance tool.
19 *
20 * Copyright (c) 2000 Markus Demleitner <msdemlei@cl.uni-heidelberg.de>
21 *
22 * This program is free software; you can redistribute it and/or modify
23 * it under the terms of the GNU General Public License as published by
24 * the Free Software Foundation; either version 2 of the License, or
25 * (at your option) any later version.
26 *
27 * This program is distributed in the hope that it will be useful,
28 * but WITHOUT ANY WARRANTY; without even the implied warranty of
29 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
30 * GNU General Public License for more details.
31 *
32 * You should have received a copy of the GNU General Public License
33 * along with this program; if not, write to the Free Software
34 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Linus Torvalds1da177e2005-04-16 15:20:36 -070035*/
36
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/kernel.h>
38#include <linux/module.h>
39#include <linux/init.h>
40#include <linux/slab.h>
41#include <linux/input.h>
Alan Cox5aff3082006-08-08 15:47:50 -030042#include <linux/videodev2.h>
Hans Verkuil5d778642012-04-27 08:13:26 -030043#include <linux/usb.h>
Alexey Klimov406827c2009-04-03 18:45:17 -030044#include <media/v4l2-device.h>
Hans Verkuil35ea11f2008-07-20 08:12:02 -030045#include <media/v4l2-ioctl.h>
Hans Verkuil5d778642012-04-27 08:13:26 -030046#include <media/v4l2-ctrls.h>
47#include <media/v4l2-event.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49/*
50 * Version Information
51 */
Hans Verkuil5d778642012-04-27 08:13:26 -030052MODULE_AUTHOR("Markus Demleitner <msdemlei@tucana.harvard.edu>");
53MODULE_DESCRIPTION("D-Link DSB-R100 USB FM radio driver");
54MODULE_LICENSE("GPL");
55MODULE_VERSION("1.1.0");
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
57#define DSB100_VENDOR 0x04b4
58#define DSB100_PRODUCT 0x1002
59
60/* Commands the device appears to understand */
61#define DSB100_TUNE 1
62#define DSB100_ONOFF 2
63
64#define TB_LEN 16
65
66/* Frequency limits in MHz -- these are European values. For Japanese
67devices, that would be 76 and 91. */
68#define FREQ_MIN 87.5
69#define FREQ_MAX 108.0
70#define FREQ_MUL 16000
71
Hans Verkuil13099292011-01-17 20:25:11 -030072#define v4l2_dev_to_radio(d) container_of(d, struct dsbr100_device, v4l2_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
Linus Torvalds1da177e2005-04-16 15:20:36 -070074static int radio_nr = -1;
75module_param(radio_nr, int, 0);
76
77/* Data for one (physical) device */
Alan Cox5aff3082006-08-08 15:47:50 -030078struct dsbr100_device {
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 struct usb_device *usbdev;
Alexey Klimov3a0efc32008-12-27 21:32:49 -030080 struct video_device videodev;
Alexey Klimov406827c2009-04-03 18:45:17 -030081 struct v4l2_device v4l2_dev;
Hans Verkuil5d778642012-04-27 08:13:26 -030082 struct v4l2_ctrl_handler hdl;
Alexey Klimov406827c2009-04-03 18:45:17 -030083
Oliver Neukum863c86d2007-12-03 06:48:43 -030084 u8 *transfer_buffer;
Hans Verkuile64d07c2010-12-19 18:54:08 -030085 struct mutex v4l2_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 int curfreq;
Hans Verkuil5d778642012-04-27 08:13:26 -030087 bool stereo;
88 bool muted;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089};
90
91/* Low-level device interface begins here */
92
Hans Verkuil5d778642012-04-27 08:13:26 -030093/* set a frequency, freq is defined by v4l's TUNER_LOW, i.e. 1/16th kHz */
94static int dsbr100_setfreq(struct dsbr100_device *radio, unsigned freq)
95{
96 unsigned f = (freq / 16 * 80) / 1000 + 856;
97 int retval = 0;
98
99 if (!radio->muted) {
100 retval = usb_control_msg(radio->usbdev,
101 usb_rcvctrlpipe(radio->usbdev, 0),
102 DSB100_TUNE,
103 USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_IN,
104 (f >> 8) & 0x00ff, f & 0xff,
105 radio->transfer_buffer, 8, 300);
106 if (retval >= 0)
107 mdelay(1);
108 }
109
110 if (retval >= 0) {
111 radio->curfreq = freq;
112 return 0;
113 }
114 dev_err(&radio->usbdev->dev,
115 "%s - usb_control_msg returned %i, request %i\n",
116 __func__, retval, DSB100_TUNE);
117 return retval;
118}
119
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120/* switch on radio */
Alan Cox5aff3082006-08-08 15:47:50 -0300121static int dsbr100_start(struct dsbr100_device *radio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122{
Hans Verkuil5d778642012-04-27 08:13:26 -0300123 int retval = usb_control_msg(radio->usbdev,
Alexey Klimov417b7952008-12-27 22:30:29 -0300124 usb_rcvctrlpipe(radio->usbdev, 0),
125 DSB100_ONOFF,
126 USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_IN,
127 0x01, 0x00, radio->transfer_buffer, 8, 300);
128
Hans Verkuil5d778642012-04-27 08:13:26 -0300129 if (retval >= 0)
130 return dsbr100_setfreq(radio, radio->curfreq);
Alexey Klimov417b7952008-12-27 22:30:29 -0300131 dev_err(&radio->usbdev->dev,
132 "%s - usb_control_msg returned %i, request %i\n",
Hans Verkuil5d778642012-04-27 08:13:26 -0300133 __func__, retval, DSB100_ONOFF);
Alexey Klimovd25cb642008-12-27 22:40:57 -0300134 return retval;
Alexey Klimov417b7952008-12-27 22:30:29 -0300135
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136}
137
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138/* switch off radio */
Alan Cox5aff3082006-08-08 15:47:50 -0300139static int dsbr100_stop(struct dsbr100_device *radio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140{
Hans Verkuil5d778642012-04-27 08:13:26 -0300141 int retval = usb_control_msg(radio->usbdev,
Alexey Klimov417b7952008-12-27 22:30:29 -0300142 usb_rcvctrlpipe(radio->usbdev, 0),
143 DSB100_ONOFF,
144 USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_IN,
145 0x00, 0x00, radio->transfer_buffer, 8, 300);
146
Hans Verkuil5d778642012-04-27 08:13:26 -0300147 if (retval >= 0)
148 return 0;
Alexey Klimov417b7952008-12-27 22:30:29 -0300149 dev_err(&radio->usbdev->dev,
150 "%s - usb_control_msg returned %i, request %i\n",
Hans Verkuil5d778642012-04-27 08:13:26 -0300151 __func__, retval, DSB100_ONOFF);
Alexey Klimovd25cb642008-12-27 22:40:57 -0300152 return retval;
Alexey Klimov417b7952008-12-27 22:30:29 -0300153
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154}
155
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156/* return the device status. This is, in effect, just whether it
157sees a stereo signal or not. Pity. */
Alan Cox5aff3082006-08-08 15:47:50 -0300158static void dsbr100_getstat(struct dsbr100_device *radio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159{
Hans Verkuil5d778642012-04-27 08:13:26 -0300160 int retval = usb_control_msg(radio->usbdev,
Alexey Klimov417b7952008-12-27 22:30:29 -0300161 usb_rcvctrlpipe(radio->usbdev, 0),
Mauro Carvalho Chehabd56410e2006-03-25 09:19:53 -0300162 USB_REQ_GET_STATUS,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_IN,
Hans Verkuil5d778642012-04-27 08:13:26 -0300164 0x00, 0x24, radio->transfer_buffer, 8, 300);
Alexey Klimov417b7952008-12-27 22:30:29 -0300165
166 if (retval < 0) {
Hans Verkuil5d778642012-04-27 08:13:26 -0300167 radio->stereo = false;
Alexey Klimov417b7952008-12-27 22:30:29 -0300168 dev_err(&radio->usbdev->dev,
169 "%s - usb_control_msg returned %i, request %i\n",
170 __func__, retval, USB_REQ_GET_STATUS);
171 } else {
Alexey Klimov223377e2008-10-19 23:50:27 -0300172 radio->stereo = !(radio->transfer_buffer[0] & 0x01);
Alexey Klimov417b7952008-12-27 22:30:29 -0300173 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174}
175
Douglas Landgraf7002a4f2007-05-07 16:43:01 -0300176static int vidioc_querycap(struct file *file, void *priv,
177 struct v4l2_capability *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178{
Alexey Klimovc7181cf2009-01-25 20:05:58 -0300179 struct dsbr100_device *radio = video_drvdata(file);
180
Douglas Landgraf7002a4f2007-05-07 16:43:01 -0300181 strlcpy(v->driver, "dsbr100", sizeof(v->driver));
182 strlcpy(v->card, "D-Link R-100 USB FM Radio", sizeof(v->card));
Alexey Klimovc7181cf2009-01-25 20:05:58 -0300183 usb_make_path(radio->usbdev, v->bus_info, sizeof(v->bus_info));
Hans Verkuil5d778642012-04-27 08:13:26 -0300184 v->device_caps = V4L2_CAP_RADIO | V4L2_CAP_TUNER;
185 v->capabilities = v->device_caps | V4L2_CAP_DEVICE_CAPS;
Douglas Landgraf7002a4f2007-05-07 16:43:01 -0300186 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187}
188
Douglas Landgraf7002a4f2007-05-07 16:43:01 -0300189static int vidioc_g_tuner(struct file *file, void *priv,
190 struct v4l2_tuner *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300192 struct dsbr100_device *radio = video_drvdata(file);
Douglas Landgraf7002a4f2007-05-07 16:43:01 -0300193
194 if (v->index > 0)
195 return -EINVAL;
196
197 dsbr100_getstat(radio);
198 strcpy(v->name, "FM");
199 v->type = V4L2_TUNER_RADIO;
Alexey Klimov223377e2008-10-19 23:50:27 -0300200 v->rangelow = FREQ_MIN * FREQ_MUL;
201 v->rangehigh = FREQ_MAX * FREQ_MUL;
Hans Verkuil5d778642012-04-27 08:13:26 -0300202 v->rxsubchans = radio->stereo ? V4L2_TUNER_SUB_STEREO :
203 V4L2_TUNER_SUB_MONO;
204 v->capability = V4L2_TUNER_CAP_LOW | V4L2_TUNER_CAP_STEREO;
205 v->audmode = V4L2_TUNER_MODE_STEREO;
206 v->signal = radio->stereo ? 0xffff : 0; /* We can't get the signal strength */
Douglas Landgraf7002a4f2007-05-07 16:43:01 -0300207 return 0;
208}
209
210static int vidioc_s_tuner(struct file *file, void *priv,
Hans Verkuil2f73c7c2013-03-15 06:10:06 -0300211 const struct v4l2_tuner *v)
Douglas Landgraf7002a4f2007-05-07 16:43:01 -0300212{
Hans Verkuil13099292011-01-17 20:25:11 -0300213 return v->index ? -EINVAL : 0;
Douglas Landgraf7002a4f2007-05-07 16:43:01 -0300214}
215
216static int vidioc_s_frequency(struct file *file, void *priv,
Hans Verkuilb530a442013-03-19 04:09:26 -0300217 const struct v4l2_frequency *f)
Douglas Landgraf7002a4f2007-05-07 16:43:01 -0300218{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300219 struct dsbr100_device *radio = video_drvdata(file);
Douglas Landgraf7002a4f2007-05-07 16:43:01 -0300220
Hans Verkuil5d778642012-04-27 08:13:26 -0300221 if (f->tuner != 0 || f->type != V4L2_TUNER_RADIO)
222 return -EINVAL;
Alexey Klimovfdf9c992009-02-08 02:00:14 -0300223
Hans Verkuil5d778642012-04-27 08:13:26 -0300224 return dsbr100_setfreq(radio, clamp_t(unsigned, f->frequency,
225 FREQ_MIN * FREQ_MUL, FREQ_MAX * FREQ_MUL));
Douglas Landgraf7002a4f2007-05-07 16:43:01 -0300226}
227
228static int vidioc_g_frequency(struct file *file, void *priv,
229 struct v4l2_frequency *f)
230{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300231 struct dsbr100_device *radio = video_drvdata(file);
Douglas Landgraf7002a4f2007-05-07 16:43:01 -0300232
Hans Verkuil5d778642012-04-27 08:13:26 -0300233 if (f->tuner)
234 return -EINVAL;
Douglas Landgraf7002a4f2007-05-07 16:43:01 -0300235 f->type = V4L2_TUNER_RADIO;
236 f->frequency = radio->curfreq;
237 return 0;
238}
239
Hans Verkuil5d778642012-04-27 08:13:26 -0300240static int usb_dsbr100_s_ctrl(struct v4l2_ctrl *ctrl)
Douglas Landgraf7002a4f2007-05-07 16:43:01 -0300241{
Hans Verkuil5d778642012-04-27 08:13:26 -0300242 struct dsbr100_device *radio =
243 container_of(ctrl->handler, struct dsbr100_device, hdl);
Douglas Landgraf7002a4f2007-05-07 16:43:01 -0300244
245 switch (ctrl->id) {
246 case V4L2_CID_AUDIO_MUTE:
Hans Verkuil5d778642012-04-27 08:13:26 -0300247 radio->muted = ctrl->val;
248 return radio->muted ? dsbr100_stop(radio) : dsbr100_start(radio);
Douglas Landgraf7002a4f2007-05-07 16:43:01 -0300249 }
250 return -EINVAL;
251}
252
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
Hans Verkuile64d07c2010-12-19 18:54:08 -0300254/* USB subsystem interface begins here */
255
256/*
257 * Handle unplugging of the device.
258 * We call video_unregister_device in any case.
259 * The last function called in this procedure is
260 * usb_dsbr100_video_device_release
261 */
262static void usb_dsbr100_disconnect(struct usb_interface *intf)
263{
264 struct dsbr100_device *radio = usb_get_intfdata(intf);
265
Hans Verkuile64d07c2010-12-19 18:54:08 -0300266 mutex_lock(&radio->v4l2_lock);
Hans Verkuil5d778642012-04-27 08:13:26 -0300267 /*
268 * Disconnect is also called on unload, and in that case we need to
269 * mute the device. This call will silently fail if it is called
270 * after a physical disconnect.
271 */
272 usb_control_msg(radio->usbdev,
273 usb_rcvctrlpipe(radio->usbdev, 0),
274 DSB100_ONOFF,
275 USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_IN,
276 0x00, 0x00, radio->transfer_buffer, 8, 300);
Hans Verkuil13099292011-01-17 20:25:11 -0300277 usb_set_intfdata(intf, NULL);
Hans Verkuile64d07c2010-12-19 18:54:08 -0300278 video_unregister_device(&radio->videodev);
279 v4l2_device_disconnect(&radio->v4l2_dev);
Hans Verkuil13099292011-01-17 20:25:11 -0300280 mutex_unlock(&radio->v4l2_lock);
281 v4l2_device_put(&radio->v4l2_dev);
Hans Verkuile64d07c2010-12-19 18:54:08 -0300282}
283
284
Alexey Klimov04e0ffb2008-11-08 00:40:46 -0300285/* Suspend device - stop device. */
286static int usb_dsbr100_suspend(struct usb_interface *intf, pm_message_t message)
287{
288 struct dsbr100_device *radio = usb_get_intfdata(intf);
Alexey Klimov04e0ffb2008-11-08 00:40:46 -0300289
Hans Verkuile64d07c2010-12-19 18:54:08 -0300290 mutex_lock(&radio->v4l2_lock);
Hans Verkuil5d778642012-04-27 08:13:26 -0300291 if (!radio->muted && dsbr100_stop(radio) < 0)
292 dev_warn(&intf->dev, "dsbr100_stop failed\n");
Hans Verkuile64d07c2010-12-19 18:54:08 -0300293 mutex_unlock(&radio->v4l2_lock);
Alexey Klimov04e0ffb2008-11-08 00:40:46 -0300294
295 dev_info(&intf->dev, "going into suspend..\n");
Alexey Klimov04e0ffb2008-11-08 00:40:46 -0300296 return 0;
297}
298
299/* Resume device - start device. */
300static int usb_dsbr100_resume(struct usb_interface *intf)
301{
302 struct dsbr100_device *radio = usb_get_intfdata(intf);
Alexey Klimov04e0ffb2008-11-08 00:40:46 -0300303
Hans Verkuile64d07c2010-12-19 18:54:08 -0300304 mutex_lock(&radio->v4l2_lock);
Hans Verkuil5d778642012-04-27 08:13:26 -0300305 if (!radio->muted && dsbr100_start(radio) < 0)
306 dev_warn(&intf->dev, "dsbr100_start failed\n");
Hans Verkuile64d07c2010-12-19 18:54:08 -0300307 mutex_unlock(&radio->v4l2_lock);
Alexey Klimov04e0ffb2008-11-08 00:40:46 -0300308
309 dev_info(&intf->dev, "coming out of suspend..\n");
Alexey Klimov04e0ffb2008-11-08 00:40:46 -0300310 return 0;
311}
312
Alexey Klimovfc55bcb2008-12-27 22:33:54 -0300313/* free data structures */
Hans Verkuil13099292011-01-17 20:25:11 -0300314static void usb_dsbr100_release(struct v4l2_device *v4l2_dev)
Alexey Klimov3a0efc32008-12-27 21:32:49 -0300315{
Hans Verkuil13099292011-01-17 20:25:11 -0300316 struct dsbr100_device *radio = v4l2_dev_to_radio(v4l2_dev);
Alexey Klimov3a0efc32008-12-27 21:32:49 -0300317
Hans Verkuil5d778642012-04-27 08:13:26 -0300318 v4l2_ctrl_handler_free(&radio->hdl);
Alexey Klimov406827c2009-04-03 18:45:17 -0300319 v4l2_device_unregister(&radio->v4l2_dev);
Alexey Klimov3a0efc32008-12-27 21:32:49 -0300320 kfree(radio->transfer_buffer);
321 kfree(radio);
322}
323
Hans Verkuil5d778642012-04-27 08:13:26 -0300324static const struct v4l2_ctrl_ops usb_dsbr100_ctrl_ops = {
325 .s_ctrl = usb_dsbr100_s_ctrl,
326};
327
Douglas Landgraf7002a4f2007-05-07 16:43:01 -0300328/* File system interface */
Hans Verkuilbec43662008-12-30 06:58:20 -0300329static const struct v4l2_file_operations usb_dsbr100_fops = {
Douglas Landgraf7002a4f2007-05-07 16:43:01 -0300330 .owner = THIS_MODULE,
Hans Verkuile64d07c2010-12-19 18:54:08 -0300331 .unlocked_ioctl = video_ioctl2,
Hans Verkuil5d778642012-04-27 08:13:26 -0300332 .open = v4l2_fh_open,
333 .release = v4l2_fh_release,
334 .poll = v4l2_ctrl_poll,
Douglas Landgraf7002a4f2007-05-07 16:43:01 -0300335};
336
Hans Verkuila3998102008-07-21 02:57:38 -0300337static const struct v4l2_ioctl_ops usb_dsbr100_ioctl_ops = {
Douglas Landgraf7002a4f2007-05-07 16:43:01 -0300338 .vidioc_querycap = vidioc_querycap,
339 .vidioc_g_tuner = vidioc_g_tuner,
340 .vidioc_s_tuner = vidioc_s_tuner,
341 .vidioc_g_frequency = vidioc_g_frequency,
342 .vidioc_s_frequency = vidioc_s_frequency,
Hans Verkuil5d778642012-04-27 08:13:26 -0300343 .vidioc_log_status = v4l2_ctrl_log_status,
344 .vidioc_subscribe_event = v4l2_ctrl_subscribe_event,
345 .vidioc_unsubscribe_event = v4l2_event_unsubscribe,
Douglas Landgraf7002a4f2007-05-07 16:43:01 -0300346};
347
Alexey Klimovfc55bcb2008-12-27 22:33:54 -0300348/* check if the device is present and register with v4l and usb if it is */
Douglas Landgraf7002a4f2007-05-07 16:43:01 -0300349static int usb_dsbr100_probe(struct usb_interface *intf,
350 const struct usb_device_id *id)
351{
352 struct dsbr100_device *radio;
Alexey Klimov406827c2009-04-03 18:45:17 -0300353 struct v4l2_device *v4l2_dev;
Alexey Klimov417b7952008-12-27 22:30:29 -0300354 int retval;
Douglas Landgraf7002a4f2007-05-07 16:43:01 -0300355
Alexey Klimov406827c2009-04-03 18:45:17 -0300356 radio = kzalloc(sizeof(struct dsbr100_device), GFP_KERNEL);
Alexey Klimov223377e2008-10-19 23:50:27 -0300357
358 if (!radio)
Douglas Landgraf7002a4f2007-05-07 16:43:01 -0300359 return -ENOMEM;
Alexey Klimov223377e2008-10-19 23:50:27 -0300360
361 radio->transfer_buffer = kmalloc(TB_LEN, GFP_KERNEL);
362
363 if (!(radio->transfer_buffer)) {
Oliver Neukum863c86d2007-12-03 06:48:43 -0300364 kfree(radio);
365 return -ENOMEM;
366 }
Alexey Klimov223377e2008-10-19 23:50:27 -0300367
Alexey Klimov406827c2009-04-03 18:45:17 -0300368 v4l2_dev = &radio->v4l2_dev;
Hans Verkuil13099292011-01-17 20:25:11 -0300369 v4l2_dev->release = usb_dsbr100_release;
Alexey Klimov406827c2009-04-03 18:45:17 -0300370
371 retval = v4l2_device_register(&intf->dev, v4l2_dev);
372 if (retval < 0) {
373 v4l2_err(v4l2_dev, "couldn't register v4l2_device\n");
Hans Verkuil5d778642012-04-27 08:13:26 -0300374 goto err_reg_dev;
Alexey Klimov406827c2009-04-03 18:45:17 -0300375 }
376
Hans Verkuil5d778642012-04-27 08:13:26 -0300377 v4l2_ctrl_handler_init(&radio->hdl, 1);
378 v4l2_ctrl_new_std(&radio->hdl, &usb_dsbr100_ctrl_ops,
379 V4L2_CID_AUDIO_MUTE, 0, 1, 1, 1);
380 if (radio->hdl.error) {
381 retval = radio->hdl.error;
382 v4l2_err(v4l2_dev, "couldn't register control\n");
383 goto err_reg_ctrl;
384 }
Hans Verkuile64d07c2010-12-19 18:54:08 -0300385 mutex_init(&radio->v4l2_lock);
Alexey Klimov406827c2009-04-03 18:45:17 -0300386 strlcpy(radio->videodev.name, v4l2_dev->name, sizeof(radio->videodev.name));
387 radio->videodev.v4l2_dev = v4l2_dev;
388 radio->videodev.fops = &usb_dsbr100_fops;
389 radio->videodev.ioctl_ops = &usb_dsbr100_ioctl_ops;
Hans Verkuil13099292011-01-17 20:25:11 -0300390 radio->videodev.release = video_device_release_empty;
Hans Verkuile64d07c2010-12-19 18:54:08 -0300391 radio->videodev.lock = &radio->v4l2_lock;
Hans Verkuil5d778642012-04-27 08:13:26 -0300392 radio->videodev.ctrl_handler = &radio->hdl;
393 set_bit(V4L2_FL_USE_FH_PRIO, &radio->videodev.flags);
Alexey Klimov3a0efc32008-12-27 21:32:49 -0300394
Douglas Landgraf7002a4f2007-05-07 16:43:01 -0300395 radio->usbdev = interface_to_usbdev(intf);
Alexey Klimov223377e2008-10-19 23:50:27 -0300396 radio->curfreq = FREQ_MIN * FREQ_MUL;
Hans Verkuil5d778642012-04-27 08:13:26 -0300397 radio->muted = true;
Alexey Klimov406827c2009-04-03 18:45:17 -0300398
Alexey Klimov3a0efc32008-12-27 21:32:49 -0300399 video_set_drvdata(&radio->videodev, radio);
Hans Verkuil5d778642012-04-27 08:13:26 -0300400 usb_set_intfdata(intf, radio);
Alexey Klimov406827c2009-04-03 18:45:17 -0300401
Alexey Klimov417b7952008-12-27 22:30:29 -0300402 retval = video_register_device(&radio->videodev, VFL_TYPE_RADIO, radio_nr);
Hans Verkuil5d778642012-04-27 08:13:26 -0300403 if (retval == 0)
404 return 0;
405 v4l2_err(v4l2_dev, "couldn't register video device\n");
406
407err_reg_ctrl:
408 v4l2_ctrl_handler_free(&radio->hdl);
409 v4l2_device_unregister(v4l2_dev);
410err_reg_dev:
411 kfree(radio->transfer_buffer);
412 kfree(radio);
413 return retval;
Douglas Landgraf7002a4f2007-05-07 16:43:01 -0300414}
415
Hans Verkuil5d778642012-04-27 08:13:26 -0300416static struct usb_device_id usb_dsbr100_device_table[] = {
417 { USB_DEVICE(DSB100_VENDOR, DSB100_PRODUCT) },
418 { } /* Terminating entry */
419};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
Hans Verkuil5d778642012-04-27 08:13:26 -0300421MODULE_DEVICE_TABLE(usb, usb_dsbr100_device_table);
422
423/* USB subsystem interface */
424static struct usb_driver usb_dsbr100_driver = {
425 .name = "dsbr100",
426 .probe = usb_dsbr100_probe,
427 .disconnect = usb_dsbr100_disconnect,
428 .id_table = usb_dsbr100_device_table,
429 .suspend = usb_dsbr100_suspend,
430 .resume = usb_dsbr100_resume,
431 .reset_resume = usb_dsbr100_resume,
432};
433
434module_usb_driver(usb_dsbr100_driver);