blob: 0b39a8cfee8852df79cafc68a3d9b8e8eff6f74d [file] [log] [blame]
Alexey Klimov2aa72f32008-10-01 09:40:59 -03001/*
2 * A driver for the AverMedia MR 800 USB FM radio. This device plugs
3 * into both the USB and an analog audio input, so this thing
4 * only deals with initialization and frequency setting, the
5 * audio data has to be handled by a sound driver.
6 *
7 * Copyright (c) 2008 Alexey Klimov <klimov.linux@gmail.com>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 */
23
24/*
Alexey Klimov71f07d92009-02-05 08:58:31 -030025 * Big thanks to authors and contributors of dsbr100.c and radio-si470x.c
Alexey Klimov2aa72f32008-10-01 09:40:59 -030026 *
27 * When work was looked pretty good, i discover this:
28 * http://av-usbradio.sourceforge.net/index.php
29 * http://sourceforge.net/projects/av-usbradio/
30 * Latest release of theirs project was in 2005.
André Goddard Rosaaf901ca2009-11-14 13:09:05 -020031 * Probably, this driver could be improved through using their
Alexey Klimov2aa72f32008-10-01 09:40:59 -030032 * achievements (specifications given).
Alexey Klimov71f07d92009-02-05 08:58:31 -030033 * Also, Faidon Liambotis <paravoid@debian.org> wrote nice driver for this radio
34 * in 2007. He allowed to use his driver to improve current mr800 radio driver.
35 * http://kerneltrap.org/mailarchive/linux-usb-devel/2007/10/11/342492
Alexey Klimov2aa72f32008-10-01 09:40:59 -030036 *
Alexey Klimov2aa72f32008-10-01 09:40:59 -030037 * Version 0.01: First working version.
38 * It's required to blacklist AverMedia USB Radio
39 * in usbhid/hid-quirks.c
Alexey Klimov71f07d92009-02-05 08:58:31 -030040 * Version 0.10: A lot of cleanups and fixes: unpluging the device,
41 * few mutex locks were added, codinstyle issues, etc.
42 * Added stereo support. Thanks to
43 * Douglas Schilling Landgraf <dougsland@gmail.com> and
44 * David Ellingsworth <david@identd.dyndns.org>
45 * for discussion, help and support.
Alexey Klimovb4662482009-04-03 18:45:27 -030046 * Version 0.11: Converted to v4l2_device.
Alexey Klimov2aa72f32008-10-01 09:40:59 -030047 *
48 * Many things to do:
Uwe Kleine-Koenig3dbda772009-07-23 08:31:31 +020049 * - Correct power management of device (suspend & resume)
Alexey Klimov2aa72f32008-10-01 09:40:59 -030050 * - Add code for scanning and smooth tuning
Alexey Klimov2aa72f32008-10-01 09:40:59 -030051 * - Add code for sensitivity value
52 * - Correct mistakes
53 * - In Japan another FREQ_MIN and FREQ_MAX
54 */
55
56/* kernel includes */
57#include <linux/kernel.h>
58#include <linux/module.h>
59#include <linux/init.h>
60#include <linux/slab.h>
61#include <linux/input.h>
62#include <linux/videodev2.h>
Alexey Klimovb4662482009-04-03 18:45:27 -030063#include <media/v4l2-device.h>
Alexey Klimov2aa72f32008-10-01 09:40:59 -030064#include <media/v4l2-ioctl.h>
Hans Verkuil85578b02012-04-27 12:30:40 -030065#include <media/v4l2-ctrls.h>
66#include <media/v4l2-event.h>
Alexey Klimov2aa72f32008-10-01 09:40:59 -030067#include <linux/usb.h>
Alessio Igor Bogani24c44d82009-05-12 17:39:27 -030068#include <linux/mutex.h>
Alexey Klimov2aa72f32008-10-01 09:40:59 -030069
70/* driver and module definitions */
71#define DRIVER_AUTHOR "Alexey Klimov <klimov.linux@gmail.com>"
72#define DRIVER_DESC "AverMedia MR 800 USB FM radio driver"
Mauro Carvalho Chehab29834c12011-06-25 10:15:42 -030073#define DRIVER_VERSION "0.1.2"
Alexey Klimov2aa72f32008-10-01 09:40:59 -030074
75MODULE_AUTHOR(DRIVER_AUTHOR);
76MODULE_DESCRIPTION(DRIVER_DESC);
77MODULE_LICENSE("GPL");
Mauro Carvalho Chehab29834c12011-06-25 10:15:42 -030078MODULE_VERSION(DRIVER_VERSION);
Alexey Klimov2aa72f32008-10-01 09:40:59 -030079
80#define USB_AMRADIO_VENDOR 0x07ca
81#define USB_AMRADIO_PRODUCT 0xb800
82
Alexey Klimove60b0222008-11-04 15:02:36 -030083/* dev_warn macro with driver name */
84#define MR800_DRIVER_NAME "radio-mr800"
85#define amradio_dev_warn(dev, fmt, arg...) \
86 dev_warn(dev, MR800_DRIVER_NAME " - " fmt, ##arg)
87
David Ellingsworth502d5012009-09-23 18:13:50 -030088#define amradio_dev_err(dev, fmt, arg...) \
89 dev_err(dev, MR800_DRIVER_NAME " - " fmt, ##arg)
90
Alexey Klimov2aa72f32008-10-01 09:40:59 -030091/* Probably USB_TIMEOUT should be modified in module parameter */
92#define BUFFER_LENGTH 8
93#define USB_TIMEOUT 500
94
95/* Frequency limits in MHz -- these are European values. For Japanese
96devices, that would be 76 and 91. */
97#define FREQ_MIN 87.5
98#define FREQ_MAX 108.0
99#define FREQ_MUL 16000
100
Alexey Klimovdb821802009-02-05 08:53:02 -0300101/*
102 * Commands that device should understand
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300103 * List isn't full and will be updated with implementation of new functions
Alexey Klimovdb821802009-02-05 08:53:02 -0300104 */
Alexey Klimovf7c1a382009-02-05 08:54:17 -0300105#define AMRADIO_SET_FREQ 0xa4
Hans Verkuil77cf3932012-04-27 13:28:34 -0300106#define AMRADIO_GET_SIGNAL 0xa7
Alexey Klimovdb821802009-02-05 08:53:02 -0300107#define AMRADIO_SET_MUTE 0xab
Alexey Klimov1bb16d72009-02-05 08:56:07 -0300108#define AMRADIO_SET_MONO 0xae
Alexey Klimovdb821802009-02-05 08:53:02 -0300109
110/* Comfortable defines for amradio_set_mute */
111#define AMRADIO_START 0x00
112#define AMRADIO_STOP 0x01
113
Alexey Klimov1bb16d72009-02-05 08:56:07 -0300114/* Comfortable defines for amradio_set_stereo */
115#define WANT_STEREO 0x00
116#define WANT_MONO 0x01
117
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300118/* module parameter */
119static int radio_nr = -1;
120module_param(radio_nr, int, 0);
121MODULE_PARM_DESC(radio_nr, "Radio Nr");
122
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300123/* Data for one (physical) device */
124struct amradio_device {
125 /* reference to USB and video device */
126 struct usb_device *usbdev;
Oliver Neukumd89ce0d2009-11-09 19:09:49 -0300127 struct usb_interface *intf;
Hans Verkuil85578b02012-04-27 12:30:40 -0300128 struct video_device vdev;
Alexey Klimovb4662482009-04-03 18:45:27 -0300129 struct v4l2_device v4l2_dev;
Hans Verkuil85578b02012-04-27 12:30:40 -0300130 struct v4l2_ctrl_handler hdl;
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300131
132 unsigned char *buffer;
133 struct mutex lock; /* buffer locking */
134 int curfreq;
135 int stereo;
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300136 int muted;
137};
138
Hans Verkuila2bdc5e2010-05-02 05:36:32 -0300139static inline struct amradio_device *to_amradio_dev(struct v4l2_device *v4l2_dev)
140{
141 return container_of(v4l2_dev, struct amradio_device, v4l2_dev);
142}
David Ellingsworthceb99e12009-09-23 17:45:31 -0300143
Alexey Klimovdb821802009-02-05 08:53:02 -0300144/* switch on/off the radio. Send 8 bytes to device */
145static int amradio_set_mute(struct amradio_device *radio, char argument)
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300146{
147 int retval;
148 int size;
149
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300150 radio->buffer[0] = 0x00;
151 radio->buffer[1] = 0x55;
152 radio->buffer[2] = 0xaa;
153 radio->buffer[3] = 0x00;
Alexey Klimovdb821802009-02-05 08:53:02 -0300154 radio->buffer[4] = AMRADIO_SET_MUTE;
155 radio->buffer[5] = argument;
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300156 radio->buffer[6] = 0x00;
157 radio->buffer[7] = 0x00;
158
159 retval = usb_bulk_msg(radio->usbdev, usb_sndintpipe(radio->usbdev, 2),
160 (void *) (radio->buffer), BUFFER_LENGTH, &size, USB_TIMEOUT);
161
Alexey Klimove57458d2009-02-05 09:00:03 -0300162 if (retval < 0 || size != BUFFER_LENGTH) {
Hans Verkuil85578b02012-04-27 12:30:40 -0300163 amradio_dev_warn(&radio->vdev.dev, "set mute failed\n");
164 return retval < 0 ? retval : -EIO;
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300165 }
Alexey Klimovdb821802009-02-05 08:53:02 -0300166 radio->muted = argument;
Hans Verkuil85578b02012-04-27 12:30:40 -0300167 return 0;
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300168}
169
170/* set a frequency, freq is defined by v4l's TUNER_LOW, i.e. 1/16th kHz */
171static int amradio_setfreq(struct amradio_device *radio, int freq)
172{
Hans Verkuil85578b02012-04-27 12:30:40 -0300173 unsigned short freq_send = 0x10 + (freq >> 3) / 25;
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300174 int retval;
175 int size;
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300176
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300177 radio->buffer[0] = 0x00;
178 radio->buffer[1] = 0x55;
179 radio->buffer[2] = 0xaa;
180 radio->buffer[3] = 0x03;
Alexey Klimovf7c1a382009-02-05 08:54:17 -0300181 radio->buffer[4] = AMRADIO_SET_FREQ;
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300182 radio->buffer[5] = 0x00;
183 radio->buffer[6] = 0x00;
184 radio->buffer[7] = 0x08;
185
186 retval = usb_bulk_msg(radio->usbdev, usb_sndintpipe(radio->usbdev, 2),
187 (void *) (radio->buffer), BUFFER_LENGTH, &size, USB_TIMEOUT);
188
David Ellingsworth4aebc282009-09-22 21:22:19 -0300189 if (retval < 0 || size != BUFFER_LENGTH)
Hans Verkuil85578b02012-04-27 12:30:40 -0300190 goto out;
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300191
192 /* frequency is calculated from freq_send and placed in first 2 bytes */
193 radio->buffer[0] = (freq_send >> 8) & 0xff;
194 radio->buffer[1] = freq_send & 0xff;
195 radio->buffer[2] = 0x01;
196 radio->buffer[3] = 0x00;
197 radio->buffer[4] = 0x00;
198 /* 5 and 6 bytes of buffer already = 0x00 */
199 radio->buffer[7] = 0x00;
200
201 retval = usb_bulk_msg(radio->usbdev, usb_sndintpipe(radio->usbdev, 2),
202 (void *) (radio->buffer), BUFFER_LENGTH, &size, USB_TIMEOUT);
203
Hans Verkuil85578b02012-04-27 12:30:40 -0300204 if (retval >= 0 && size == BUFFER_LENGTH) {
205 radio->curfreq = freq;
206 return 0;
207 }
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300208
David Ellingsworth16a72f42009-09-23 18:28:02 -0300209out:
Hans Verkuil85578b02012-04-27 12:30:40 -0300210 amradio_dev_warn(&radio->vdev.dev, "set frequency failed\n");
211 return retval < 0 ? retval : -EIO;
Alexey Klimov1bb16d72009-02-05 08:56:07 -0300212}
213
214static int amradio_set_stereo(struct amradio_device *radio, char argument)
215{
216 int retval;
217 int size;
218
Alexey Klimov1bb16d72009-02-05 08:56:07 -0300219 radio->buffer[0] = 0x00;
220 radio->buffer[1] = 0x55;
221 radio->buffer[2] = 0xaa;
222 radio->buffer[3] = 0x00;
223 radio->buffer[4] = AMRADIO_SET_MONO;
224 radio->buffer[5] = argument;
225 radio->buffer[6] = 0x00;
226 radio->buffer[7] = 0x00;
227
228 retval = usb_bulk_msg(radio->usbdev, usb_sndintpipe(radio->usbdev, 2),
229 (void *) (radio->buffer), BUFFER_LENGTH, &size, USB_TIMEOUT);
230
231 if (retval < 0 || size != BUFFER_LENGTH) {
Hans Verkuil85578b02012-04-27 12:30:40 -0300232 amradio_dev_warn(&radio->vdev.dev, "set stereo failed\n");
233 return retval < 0 ? retval : -EIO;
Alexey Klimov1bb16d72009-02-05 08:56:07 -0300234 }
235
Hans Verkuil85578b02012-04-27 12:30:40 -0300236 radio->stereo = (argument == WANT_STEREO);
237 return 0;
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300238}
239
Hans Verkuil77cf3932012-04-27 13:28:34 -0300240static int amradio_get_stat(struct amradio_device *radio, bool *is_stereo, u32 *signal)
241{
242 int retval;
243 int size;
244
245 radio->buffer[0] = 0x00;
246 radio->buffer[1] = 0x55;
247 radio->buffer[2] = 0xaa;
248 radio->buffer[3] = 0x00;
249 radio->buffer[4] = AMRADIO_GET_SIGNAL;
250 radio->buffer[5] = 0x00;
251 radio->buffer[6] = 0x00;
252 radio->buffer[7] = 0x08;
253
254 retval = usb_bulk_msg(radio->usbdev, usb_sndbulkpipe(radio->usbdev, 0x02),
255 radio->buffer, BUFFER_LENGTH, &size, USB_TIMEOUT);
256 if (!retval)
257 retval = usb_bulk_msg(radio->usbdev, usb_rcvbulkpipe(radio->usbdev, 0x81),
258 radio->buffer, BUFFER_LENGTH, &size, USB_TIMEOUT);
259
260 if (retval || size != BUFFER_LENGTH) {
261 amradio_dev_warn(&radio->vdev.dev, "get stat failed\n");
262 return retval;
263 }
264 *is_stereo = radio->buffer[2] >> 7;
265 *signal = (radio->buffer[3] & 0xf0) << 8;
266 return 0;
267}
268
Alexey Klimov71f07d92009-02-05 08:58:31 -0300269/* Handle unplugging the device.
270 * We call video_unregister_device in any case.
271 * The last function called in this procedure is
272 * usb_amradio_device_release.
273 */
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300274static void usb_amradio_disconnect(struct usb_interface *intf)
275{
Hans Verkuila2bdc5e2010-05-02 05:36:32 -0300276 struct amradio_device *radio = to_amradio_dev(usb_get_intfdata(intf));
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300277
Alexey Klimovf4e90432008-12-27 21:30:34 -0300278 mutex_lock(&radio->lock);
Hans Verkuil85578b02012-04-27 12:30:40 -0300279 usb_set_intfdata(intf, NULL);
280 video_unregister_device(&radio->vdev);
Alexey Klimovb4662482009-04-03 18:45:27 -0300281 v4l2_device_disconnect(&radio->v4l2_dev);
Hans Verkuila682d4c2010-10-17 09:26:18 -0300282 mutex_unlock(&radio->lock);
Hans Verkuil85578b02012-04-27 12:30:40 -0300283 v4l2_device_put(&radio->v4l2_dev);
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300284}
285
286/* vidioc_querycap - query device capabilities */
287static int vidioc_querycap(struct file *file, void *priv,
288 struct v4l2_capability *v)
289{
Hans Verkuil85578b02012-04-27 12:30:40 -0300290 struct amradio_device *radio = video_drvdata(file);
Alexey Klimovc7181cf2009-01-25 20:05:58 -0300291
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300292 strlcpy(v->driver, "radio-mr800", sizeof(v->driver));
293 strlcpy(v->card, "AverMedia MR 800 USB FM Radio", sizeof(v->card));
Alexey Klimovc7181cf2009-01-25 20:05:58 -0300294 usb_make_path(radio->usbdev, v->bus_info, sizeof(v->bus_info));
Hans Verkuil85578b02012-04-27 12:30:40 -0300295 v->device_caps = V4L2_CAP_RADIO | V4L2_CAP_TUNER;
296 v->capabilities = v->device_caps | V4L2_CAP_DEVICE_CAPS;
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300297 return 0;
298}
299
300/* vidioc_g_tuner - get tuner attributes */
301static int vidioc_g_tuner(struct file *file, void *priv,
302 struct v4l2_tuner *v)
303{
Hans Verkuil85578b02012-04-27 12:30:40 -0300304 struct amradio_device *radio = video_drvdata(file);
Hans Verkuil77cf3932012-04-27 13:28:34 -0300305 bool is_stereo = false;
306 int retval;
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300307
308 if (v->index > 0)
309 return -EINVAL;
310
Hans Verkuil77cf3932012-04-27 13:28:34 -0300311 v->signal = 0;
312 retval = amradio_get_stat(radio, &is_stereo, &v->signal);
313 if (retval)
314 return retval;
315
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300316 strcpy(v->name, "FM");
317 v->type = V4L2_TUNER_RADIO;
318 v->rangelow = FREQ_MIN * FREQ_MUL;
319 v->rangehigh = FREQ_MAX * FREQ_MUL;
Hans Verkuil85578b02012-04-27 12:30:40 -0300320 v->capability = V4L2_TUNER_CAP_LOW | V4L2_TUNER_CAP_STEREO;
Hans Verkuil77cf3932012-04-27 13:28:34 -0300321 v->rxsubchans = is_stereo ? V4L2_TUNER_SUB_STEREO : V4L2_TUNER_SUB_MONO;
Hans Verkuil85578b02012-04-27 12:30:40 -0300322 v->audmode = radio->stereo ?
323 V4L2_TUNER_MODE_STEREO : V4L2_TUNER_MODE_MONO;
324 return 0;
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300325}
326
327/* vidioc_s_tuner - set tuner attributes */
328static int vidioc_s_tuner(struct file *file, void *priv,
329 struct v4l2_tuner *v)
330{
Hans Verkuil85578b02012-04-27 12:30:40 -0300331 struct amradio_device *radio = video_drvdata(file);
Alexey Klimov34801302008-11-19 00:36:29 -0300332
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300333 if (v->index > 0)
334 return -EINVAL;
Alexey Klimov1bb16d72009-02-05 08:56:07 -0300335
336 /* mono/stereo selector */
337 switch (v->audmode) {
338 case V4L2_TUNER_MODE_MONO:
Hans Verkuil85578b02012-04-27 12:30:40 -0300339 return amradio_set_stereo(radio, WANT_MONO);
340 default:
341 return amradio_set_stereo(radio, WANT_STEREO);
Alexey Klimov1bb16d72009-02-05 08:56:07 -0300342 }
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300343}
344
345/* vidioc_s_frequency - set tuner radio frequency */
346static int vidioc_s_frequency(struct file *file, void *priv,
347 struct v4l2_frequency *f)
348{
Hans Verkuil85578b02012-04-27 12:30:40 -0300349 struct amradio_device *radio = video_drvdata(file);
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300350
Hans Verkuil85578b02012-04-27 12:30:40 -0300351 if (f->tuner != 0)
Hans Verkuila3a9e282009-11-27 04:33:25 -0300352 return -EINVAL;
Hans Verkuil85578b02012-04-27 12:30:40 -0300353 return amradio_setfreq(radio, clamp_t(unsigned, f->frequency,
354 FREQ_MIN * FREQ_MUL, FREQ_MAX * FREQ_MUL));
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300355}
356
357/* vidioc_g_frequency - get tuner radio frequency */
358static int vidioc_g_frequency(struct file *file, void *priv,
359 struct v4l2_frequency *f)
360{
Hans Verkuil85578b02012-04-27 12:30:40 -0300361 struct amradio_device *radio = video_drvdata(file);
Alexey Klimov34801302008-11-19 00:36:29 -0300362
Hans Verkuil85578b02012-04-27 12:30:40 -0300363 if (f->tuner != 0 || f->type != V4L2_TUNER_RADIO)
Hans Verkuila3a9e282009-11-27 04:33:25 -0300364 return -EINVAL;
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300365 f->type = V4L2_TUNER_RADIO;
366 f->frequency = radio->curfreq;
David Ellingsworth4aebc282009-09-22 21:22:19 -0300367
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300368 return 0;
369}
370
Hans Verkuil85578b02012-04-27 12:30:40 -0300371static int usb_amradio_s_ctrl(struct v4l2_ctrl *ctrl)
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300372{
Hans Verkuil85578b02012-04-27 12:30:40 -0300373 struct amradio_device *radio =
374 container_of(ctrl->handler, struct amradio_device, hdl);
Alexey Klimov34801302008-11-19 00:36:29 -0300375
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300376 switch (ctrl->id) {
377 case V4L2_CID_AUDIO_MUTE:
Hans Verkuil85578b02012-04-27 12:30:40 -0300378 return amradio_set_mute(radio,
379 ctrl->val ? AMRADIO_STOP : AMRADIO_START);
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300380 }
David Ellingsworth4aebc282009-09-22 21:22:19 -0300381
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300382 return -EINVAL;
383}
384
David Ellingsworth502d5012009-09-23 18:13:50 -0300385static int usb_amradio_init(struct amradio_device *radio)
386{
387 int retval;
388
389 retval = amradio_set_mute(radio, AMRADIO_STOP);
David Ellingsworth16a72f42009-09-23 18:28:02 -0300390 if (retval)
David Ellingsworth502d5012009-09-23 18:13:50 -0300391 goto out_err;
David Ellingsworth502d5012009-09-23 18:13:50 -0300392
393 retval = amradio_set_stereo(radio, WANT_STEREO);
David Ellingsworth16a72f42009-09-23 18:28:02 -0300394 if (retval)
David Ellingsworth502d5012009-09-23 18:13:50 -0300395 goto out_err;
David Ellingsworth502d5012009-09-23 18:13:50 -0300396
David Ellingsworth502d5012009-09-23 18:13:50 -0300397 goto out;
398
399out_err:
Hans Verkuil85578b02012-04-27 12:30:40 -0300400 amradio_dev_err(&radio->vdev.dev, "initialization failed\n");
David Ellingsworth502d5012009-09-23 18:13:50 -0300401out:
402 return retval;
403}
404
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300405/* Suspend device - stop device. Need to be checked and fixed */
406static int usb_amradio_suspend(struct usb_interface *intf, pm_message_t message)
407{
Hans Verkuila2bdc5e2010-05-02 05:36:32 -0300408 struct amradio_device *radio = to_amradio_dev(usb_get_intfdata(intf));
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300409
Hans Verkuila682d4c2010-10-17 09:26:18 -0300410 mutex_lock(&radio->lock);
Hans Verkuil85578b02012-04-27 12:30:40 -0300411 if (!radio->muted) {
David Ellingsworth16a72f42009-09-23 18:28:02 -0300412 amradio_set_mute(radio, AMRADIO_STOP);
David Ellingsworthd8970e52009-09-23 18:24:47 -0300413 radio->muted = 0;
414 }
Hans Verkuila682d4c2010-10-17 09:26:18 -0300415 mutex_unlock(&radio->lock);
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300416
Alexey Klimove60b0222008-11-04 15:02:36 -0300417 dev_info(&intf->dev, "going into suspend..\n");
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300418 return 0;
419}
420
421/* Resume device - start device. Need to be checked and fixed */
422static int usb_amradio_resume(struct usb_interface *intf)
423{
Hans Verkuila2bdc5e2010-05-02 05:36:32 -0300424 struct amradio_device *radio = to_amradio_dev(usb_get_intfdata(intf));
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300425
Hans Verkuila682d4c2010-10-17 09:26:18 -0300426 mutex_lock(&radio->lock);
David Ellingsworthd8970e52009-09-23 18:24:47 -0300427 if (radio->stereo)
David Ellingsworth16a72f42009-09-23 18:28:02 -0300428 amradio_set_stereo(radio, WANT_STEREO);
David Ellingsworthd8970e52009-09-23 18:24:47 -0300429 else
David Ellingsworth16a72f42009-09-23 18:28:02 -0300430 amradio_set_stereo(radio, WANT_MONO);
David Ellingsworthd8970e52009-09-23 18:24:47 -0300431
David Ellingsworth16a72f42009-09-23 18:28:02 -0300432 amradio_setfreq(radio, radio->curfreq);
David Ellingsworthd8970e52009-09-23 18:24:47 -0300433
David Ellingsworth16a72f42009-09-23 18:28:02 -0300434 if (!radio->muted)
435 amradio_set_mute(radio, AMRADIO_START);
David Ellingsworthd8970e52009-09-23 18:24:47 -0300436
Hans Verkuila682d4c2010-10-17 09:26:18 -0300437 mutex_unlock(&radio->lock);
438
Alexey Klimove60b0222008-11-04 15:02:36 -0300439 dev_info(&intf->dev, "coming out of suspend..\n");
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300440 return 0;
441}
442
Hans Verkuil85578b02012-04-27 12:30:40 -0300443static const struct v4l2_ctrl_ops usb_amradio_ctrl_ops = {
444 .s_ctrl = usb_amradio_s_ctrl,
445};
446
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300447/* File system interface */
Hans Verkuilbec43662008-12-30 06:58:20 -0300448static const struct v4l2_file_operations usb_amradio_fops = {
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300449 .owner = THIS_MODULE,
Hans Verkuil85578b02012-04-27 12:30:40 -0300450 .open = v4l2_fh_open,
451 .release = v4l2_fh_release,
452 .poll = v4l2_ctrl_poll,
Hans Verkuil361ae542010-09-26 08:01:18 -0300453 .unlocked_ioctl = video_ioctl2,
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300454};
455
456static const struct v4l2_ioctl_ops usb_amradio_ioctl_ops = {
457 .vidioc_querycap = vidioc_querycap,
458 .vidioc_g_tuner = vidioc_g_tuner,
459 .vidioc_s_tuner = vidioc_s_tuner,
460 .vidioc_g_frequency = vidioc_g_frequency,
461 .vidioc_s_frequency = vidioc_s_frequency,
Hans Verkuil85578b02012-04-27 12:30:40 -0300462 .vidioc_log_status = v4l2_ctrl_log_status,
463 .vidioc_subscribe_event = v4l2_ctrl_subscribe_event,
464 .vidioc_unsubscribe_event = v4l2_event_unsubscribe,
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300465};
466
Hans Verkuil85578b02012-04-27 12:30:40 -0300467static void usb_amradio_release(struct v4l2_device *v4l2_dev)
Alexey Klimovf4e90432008-12-27 21:30:34 -0300468{
Hans Verkuil85578b02012-04-27 12:30:40 -0300469 struct amradio_device *radio = to_amradio_dev(v4l2_dev);
Alexey Klimovb4662482009-04-03 18:45:27 -0300470
Alexey Klimovf4e90432008-12-27 21:30:34 -0300471 /* free rest memory */
Hans Verkuil85578b02012-04-27 12:30:40 -0300472 v4l2_ctrl_handler_free(&radio->hdl);
473 v4l2_device_unregister(&radio->v4l2_dev);
Alexey Klimovf4e90432008-12-27 21:30:34 -0300474 kfree(radio->buffer);
475 kfree(radio);
476}
477
Alexey Klimova5d69472009-02-05 08:48:43 -0300478/* check if the device is present and register with v4l and usb if it is */
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300479static int usb_amradio_probe(struct usb_interface *intf,
480 const struct usb_device_id *id)
481{
482 struct amradio_device *radio;
David Ellingsworth1b8bbb32009-09-22 21:43:19 -0300483 int retval = 0;
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300484
Alexey Klimovb4662482009-04-03 18:45:27 -0300485 radio = kzalloc(sizeof(struct amradio_device), GFP_KERNEL);
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300486
Alexey Klimov8edafcc2009-02-05 08:51:51 -0300487 if (!radio) {
488 dev_err(&intf->dev, "kmalloc for amradio_device failed\n");
David Ellingsworth1b8bbb32009-09-22 21:43:19 -0300489 retval = -ENOMEM;
490 goto err;
Alexey Klimov8edafcc2009-02-05 08:51:51 -0300491 }
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300492
493 radio->buffer = kmalloc(BUFFER_LENGTH, GFP_KERNEL);
494
Alexey Klimov8edafcc2009-02-05 08:51:51 -0300495 if (!radio->buffer) {
496 dev_err(&intf->dev, "kmalloc for radio->buffer failed\n");
David Ellingsworth1b8bbb32009-09-22 21:43:19 -0300497 retval = -ENOMEM;
498 goto err_nobuf;
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300499 }
500
David Ellingsworthd1939e42009-09-22 21:48:43 -0300501 retval = v4l2_device_register(&intf->dev, &radio->v4l2_dev);
Alexey Klimovb4662482009-04-03 18:45:27 -0300502 if (retval < 0) {
503 dev_err(&intf->dev, "couldn't register v4l2_device\n");
David Ellingsworth1b8bbb32009-09-22 21:43:19 -0300504 goto err_v4l2;
Alexey Klimovb4662482009-04-03 18:45:27 -0300505 }
506
Hans Verkuil85578b02012-04-27 12:30:40 -0300507 v4l2_ctrl_handler_init(&radio->hdl, 1);
508 v4l2_ctrl_new_std(&radio->hdl, &usb_amradio_ctrl_ops,
509 V4L2_CID_AUDIO_MUTE, 0, 1, 1, 1);
510 if (radio->hdl.error) {
511 retval = radio->hdl.error;
512 dev_err(&intf->dev, "couldn't register control\n");
513 goto err_ctrl;
514 }
Hans Verkuil361ae542010-09-26 08:01:18 -0300515 mutex_init(&radio->lock);
516
Hans Verkuil85578b02012-04-27 12:30:40 -0300517 radio->v4l2_dev.ctrl_handler = &radio->hdl;
518 radio->v4l2_dev.release = usb_amradio_release;
519 strlcpy(radio->vdev.name, radio->v4l2_dev.name,
520 sizeof(radio->vdev.name));
521 radio->vdev.v4l2_dev = &radio->v4l2_dev;
522 radio->vdev.fops = &usb_amradio_fops;
523 radio->vdev.ioctl_ops = &usb_amradio_ioctl_ops;
524 radio->vdev.release = video_device_release_empty;
525 radio->vdev.lock = &radio->lock;
526 set_bit(V4L2_FL_USE_FH_PRIO, &radio->vdev.flags);
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300527
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300528 radio->usbdev = interface_to_usbdev(intf);
Oliver Neukumd89ce0d2009-11-09 19:09:49 -0300529 radio->intf = intf;
Hans Verkuil85578b02012-04-27 12:30:40 -0300530 usb_set_intfdata(intf, &radio->v4l2_dev);
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300531 radio->curfreq = 95.16 * FREQ_MUL;
532
Hans Verkuil85578b02012-04-27 12:30:40 -0300533 video_set_drvdata(&radio->vdev, radio);
534 retval = usb_amradio_init(radio);
535 if (retval)
536 goto err_vdev;
Alexey Klimovb4662482009-04-03 18:45:27 -0300537
Hans Verkuil85578b02012-04-27 12:30:40 -0300538 retval = video_register_device(&radio->vdev, VFL_TYPE_RADIO,
David Ellingsworth7a7d92e2009-09-22 21:37:30 -0300539 radio_nr);
Alexey Klimova5d69472009-02-05 08:48:43 -0300540 if (retval < 0) {
Alexey Klimov65c51dc2009-02-05 08:49:58 -0300541 dev_err(&intf->dev, "could not register video device\n");
David Ellingsworth1b8bbb32009-09-22 21:43:19 -0300542 goto err_vdev;
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300543 }
544
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300545 return 0;
David Ellingsworth1b8bbb32009-09-22 21:43:19 -0300546
547err_vdev:
Hans Verkuil85578b02012-04-27 12:30:40 -0300548 v4l2_ctrl_handler_free(&radio->hdl);
549err_ctrl:
David Ellingsworthd1939e42009-09-22 21:48:43 -0300550 v4l2_device_unregister(&radio->v4l2_dev);
David Ellingsworth1b8bbb32009-09-22 21:43:19 -0300551err_v4l2:
552 kfree(radio->buffer);
553err_nobuf:
554 kfree(radio);
555err:
556 return retval;
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300557}
558
Hans Verkuil85578b02012-04-27 12:30:40 -0300559/* USB Device ID List */
560static struct usb_device_id usb_amradio_device_table[] = {
561 { USB_DEVICE_AND_INTERFACE_INFO(USB_AMRADIO_VENDOR, USB_AMRADIO_PRODUCT,
562 USB_CLASS_HID, 0, 0) },
563 { } /* Terminating entry */
564};
565
566MODULE_DEVICE_TABLE(usb, usb_amradio_device_table);
567
568/* USB subsystem interface */
569static struct usb_driver usb_amradio_driver = {
570 .name = MR800_DRIVER_NAME,
571 .probe = usb_amradio_probe,
572 .disconnect = usb_amradio_disconnect,
573 .suspend = usb_amradio_suspend,
574 .resume = usb_amradio_resume,
575 .reset_resume = usb_amradio_resume,
576 .id_table = usb_amradio_device_table,
577};
578
Greg Kroah-Hartmanecb3b2b2011-11-18 09:46:12 -0800579module_usb_driver(usb_amradio_driver);