blob: dbae50ba250c827cc91c1151baf85d358c1c6b3f [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.
31 * Probably, this driver could be improved trough using their
32 * 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>
Alexey Dobriyan405f5572009-07-11 22:08:37 +040061#include <linux/smp_lock.h>
Alexey Klimov2aa72f32008-10-01 09:40:59 -030062#include <linux/input.h>
63#include <linux/videodev2.h>
Alexey Klimovb4662482009-04-03 18:45:27 -030064#include <media/v4l2-device.h>
Alexey Klimov2aa72f32008-10-01 09:40:59 -030065#include <media/v4l2-ioctl.h>
66#include <linux/usb.h>
67#include <linux/version.h> /* for KERNEL_VERSION MACRO */
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"
Alexey Klimovb4662482009-04-03 18:45:27 -030073#define DRIVER_VERSION "0.11"
74#define RADIO_VERSION KERNEL_VERSION(0, 1, 1)
Alexey Klimov2aa72f32008-10-01 09:40:59 -030075
76MODULE_AUTHOR(DRIVER_AUTHOR);
77MODULE_DESCRIPTION(DRIVER_DESC);
78MODULE_LICENSE("GPL");
79
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
Alexey Klimov2aa72f32008-10-01 09:40:59 -030088/* Probably USB_TIMEOUT should be modified in module parameter */
89#define BUFFER_LENGTH 8
90#define USB_TIMEOUT 500
91
92/* Frequency limits in MHz -- these are European values. For Japanese
93devices, that would be 76 and 91. */
94#define FREQ_MIN 87.5
95#define FREQ_MAX 108.0
96#define FREQ_MUL 16000
97
Alexey Klimovdb821802009-02-05 08:53:02 -030098/*
99 * Commands that device should understand
100 * List isnt full and will be updated with implementation of new functions
101 */
Alexey Klimovf7c1a382009-02-05 08:54:17 -0300102#define AMRADIO_SET_FREQ 0xa4
Alexey Klimovdb821802009-02-05 08:53:02 -0300103#define AMRADIO_SET_MUTE 0xab
Alexey Klimov1bb16d72009-02-05 08:56:07 -0300104#define AMRADIO_SET_MONO 0xae
Alexey Klimovdb821802009-02-05 08:53:02 -0300105
106/* Comfortable defines for amradio_set_mute */
107#define AMRADIO_START 0x00
108#define AMRADIO_STOP 0x01
109
Alexey Klimov1bb16d72009-02-05 08:56:07 -0300110/* Comfortable defines for amradio_set_stereo */
111#define WANT_STEREO 0x00
112#define WANT_MONO 0x01
113
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300114/* module parameter */
115static int radio_nr = -1;
116module_param(radio_nr, int, 0);
117MODULE_PARM_DESC(radio_nr, "Radio Nr");
118
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300119static int usb_amradio_probe(struct usb_interface *intf,
120 const struct usb_device_id *id);
121static void usb_amradio_disconnect(struct usb_interface *intf);
Hans Verkuilbec43662008-12-30 06:58:20 -0300122static int usb_amradio_open(struct file *file);
123static int usb_amradio_close(struct file *file);
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300124static int usb_amradio_suspend(struct usb_interface *intf,
125 pm_message_t message);
126static int usb_amradio_resume(struct usb_interface *intf);
127
128/* Data for one (physical) device */
129struct amradio_device {
130 /* reference to USB and video device */
131 struct usb_device *usbdev;
David Ellingsworth7a7d92e2009-09-22 21:37:30 -0300132 struct video_device videodev;
Alexey Klimovb4662482009-04-03 18:45:27 -0300133 struct v4l2_device v4l2_dev;
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300134
135 unsigned char *buffer;
136 struct mutex lock; /* buffer locking */
137 int curfreq;
138 int stereo;
139 int users;
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300140 int muted;
141};
142
David Ellingsworthceb99e12009-09-23 17:45:31 -0300143#define vdev_to_amradio(r) container_of(r, struct amradio_device, videodev)
144
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300145/* USB Device ID List */
146static struct usb_device_id usb_amradio_device_table[] = {
147 {USB_DEVICE_AND_INTERFACE_INFO(USB_AMRADIO_VENDOR, USB_AMRADIO_PRODUCT,
148 USB_CLASS_HID, 0, 0) },
149 { } /* Terminating entry */
150};
151
152MODULE_DEVICE_TABLE(usb, usb_amradio_device_table);
153
154/* USB subsystem interface */
155static struct usb_driver usb_amradio_driver = {
Alexey Klimove60b0222008-11-04 15:02:36 -0300156 .name = MR800_DRIVER_NAME,
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300157 .probe = usb_amradio_probe,
158 .disconnect = usb_amradio_disconnect,
159 .suspend = usb_amradio_suspend,
160 .resume = usb_amradio_resume,
161 .reset_resume = usb_amradio_resume,
162 .id_table = usb_amradio_device_table,
Alexey Klimovf2ce9172008-12-27 21:31:49 -0300163 .supports_autosuspend = 0,
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300164};
165
Alexey Klimovdb821802009-02-05 08:53:02 -0300166/* switch on/off the radio. Send 8 bytes to device */
167static int amradio_set_mute(struct amradio_device *radio, char argument)
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300168{
169 int retval;
170 int size;
171
David Ellingsworth4aebc282009-09-22 21:22:19 -0300172 BUG_ON(!mutex_is_locked(&radio->lock));
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300173
174 radio->buffer[0] = 0x00;
175 radio->buffer[1] = 0x55;
176 radio->buffer[2] = 0xaa;
177 radio->buffer[3] = 0x00;
Alexey Klimovdb821802009-02-05 08:53:02 -0300178 radio->buffer[4] = AMRADIO_SET_MUTE;
179 radio->buffer[5] = argument;
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300180 radio->buffer[6] = 0x00;
181 radio->buffer[7] = 0x00;
182
183 retval = usb_bulk_msg(radio->usbdev, usb_sndintpipe(radio->usbdev, 2),
184 (void *) (radio->buffer), BUFFER_LENGTH, &size, USB_TIMEOUT);
185
David Ellingsworth4aebc282009-09-22 21:22:19 -0300186 if (retval < 0 || size != BUFFER_LENGTH)
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300187 return retval;
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300188
Alexey Klimovdb821802009-02-05 08:53:02 -0300189 radio->muted = argument;
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300190
191 return retval;
192}
193
194/* set a frequency, freq is defined by v4l's TUNER_LOW, i.e. 1/16th kHz */
195static int amradio_setfreq(struct amradio_device *radio, int freq)
196{
197 int retval;
198 int size;
Alexey Klimovf7c1a382009-02-05 08:54:17 -0300199 unsigned short freq_send = 0x10 + (freq >> 3) / 25;
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300200
David Ellingsworth4aebc282009-09-22 21:22:19 -0300201 BUG_ON(!mutex_is_locked(&radio->lock));
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300202
203 radio->buffer[0] = 0x00;
204 radio->buffer[1] = 0x55;
205 radio->buffer[2] = 0xaa;
206 radio->buffer[3] = 0x03;
Alexey Klimovf7c1a382009-02-05 08:54:17 -0300207 radio->buffer[4] = AMRADIO_SET_FREQ;
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300208 radio->buffer[5] = 0x00;
209 radio->buffer[6] = 0x00;
210 radio->buffer[7] = 0x08;
211
212 retval = usb_bulk_msg(radio->usbdev, usb_sndintpipe(radio->usbdev, 2),
213 (void *) (radio->buffer), BUFFER_LENGTH, &size, USB_TIMEOUT);
214
David Ellingsworth4aebc282009-09-22 21:22:19 -0300215 if (retval < 0 || size != BUFFER_LENGTH)
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300216 return retval;
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300217
218 /* frequency is calculated from freq_send and placed in first 2 bytes */
219 radio->buffer[0] = (freq_send >> 8) & 0xff;
220 radio->buffer[1] = freq_send & 0xff;
221 radio->buffer[2] = 0x01;
222 radio->buffer[3] = 0x00;
223 radio->buffer[4] = 0x00;
224 /* 5 and 6 bytes of buffer already = 0x00 */
225 radio->buffer[7] = 0x00;
226
227 retval = usb_bulk_msg(radio->usbdev, usb_sndintpipe(radio->usbdev, 2),
228 (void *) (radio->buffer), BUFFER_LENGTH, &size, USB_TIMEOUT);
229
Alexey Klimov1bb16d72009-02-05 08:56:07 -0300230 return retval;
231}
232
233static int amradio_set_stereo(struct amradio_device *radio, char argument)
234{
235 int retval;
236 int size;
237
David Ellingsworth4aebc282009-09-22 21:22:19 -0300238 BUG_ON(!mutex_is_locked(&radio->lock));
Alexey Klimov1bb16d72009-02-05 08:56:07 -0300239
240 radio->buffer[0] = 0x00;
241 radio->buffer[1] = 0x55;
242 radio->buffer[2] = 0xaa;
243 radio->buffer[3] = 0x00;
244 radio->buffer[4] = AMRADIO_SET_MONO;
245 radio->buffer[5] = argument;
246 radio->buffer[6] = 0x00;
247 radio->buffer[7] = 0x00;
248
249 retval = usb_bulk_msg(radio->usbdev, usb_sndintpipe(radio->usbdev, 2),
250 (void *) (radio->buffer), BUFFER_LENGTH, &size, USB_TIMEOUT);
251
252 if (retval < 0 || size != BUFFER_LENGTH) {
253 radio->stereo = -1;
Alexey Klimov1bb16d72009-02-05 08:56:07 -0300254 return retval;
255 }
256
257 radio->stereo = 1;
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300258
259 return retval;
260}
261
Alexey Klimov71f07d92009-02-05 08:58:31 -0300262/* Handle unplugging the device.
263 * We call video_unregister_device in any case.
264 * The last function called in this procedure is
265 * usb_amradio_device_release.
266 */
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300267static void usb_amradio_disconnect(struct usb_interface *intf)
268{
269 struct amradio_device *radio = usb_get_intfdata(intf);
270
Alexey Klimovf4e90432008-12-27 21:30:34 -0300271 mutex_lock(&radio->lock);
David Ellingsworth26452bf2009-09-23 17:52:17 -0300272 radio->usbdev = NULL;
Alexey Klimovf4e90432008-12-27 21:30:34 -0300273 mutex_unlock(&radio->lock);
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300274
Alexey Klimovf4e90432008-12-27 21:30:34 -0300275 usb_set_intfdata(intf, NULL);
Alexey Klimovb4662482009-04-03 18:45:27 -0300276 v4l2_device_disconnect(&radio->v4l2_dev);
David Ellingsworth4e361652009-09-23 18:03:52 -0300277 video_unregister_device(&radio->videodev);
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300278}
279
280/* vidioc_querycap - query device capabilities */
281static int vidioc_querycap(struct file *file, void *priv,
282 struct v4l2_capability *v)
283{
David Ellingsworthceb99e12009-09-23 17:45:31 -0300284 struct amradio_device *radio = file->private_data;
Alexey Klimovc7181cf2009-01-25 20:05:58 -0300285
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300286 strlcpy(v->driver, "radio-mr800", sizeof(v->driver));
287 strlcpy(v->card, "AverMedia MR 800 USB FM Radio", sizeof(v->card));
Alexey Klimovc7181cf2009-01-25 20:05:58 -0300288 usb_make_path(radio->usbdev, v->bus_info, sizeof(v->bus_info));
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300289 v->version = RADIO_VERSION;
290 v->capabilities = V4L2_CAP_TUNER;
291 return 0;
292}
293
294/* vidioc_g_tuner - get tuner attributes */
295static int vidioc_g_tuner(struct file *file, void *priv,
296 struct v4l2_tuner *v)
297{
David Ellingsworthceb99e12009-09-23 17:45:31 -0300298 struct amradio_device *radio = file->private_data;
Alexey Klimov1bb16d72009-02-05 08:56:07 -0300299 int retval;
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300300
David Ellingswortheac000a2009-09-23 17:49:36 -0300301 if (v->index > 0)
302 return -EINVAL;
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300303
304/* TODO: Add function which look is signal stereo or not
305 * amradio_getstat(radio);
306 */
Alexey Klimov1bb16d72009-02-05 08:56:07 -0300307
308/* we call amradio_set_stereo to set radio->stereo
309 * Honestly, amradio_getstat should cover this in future and
310 * amradio_set_stereo shouldn't be here
311 */
312 retval = amradio_set_stereo(radio, WANT_STEREO);
313 if (retval < 0)
David Ellingsworth7a7d92e2009-09-22 21:37:30 -0300314 amradio_dev_warn(&radio->videodev.dev,
Alexey Klimov1bb16d72009-02-05 08:56:07 -0300315 "set stereo failed\n");
316
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300317 strcpy(v->name, "FM");
318 v->type = V4L2_TUNER_RADIO;
319 v->rangelow = FREQ_MIN * FREQ_MUL;
320 v->rangehigh = FREQ_MAX * FREQ_MUL;
321 v->rxsubchans = V4L2_TUNER_SUB_MONO | V4L2_TUNER_SUB_STEREO;
322 v->capability = V4L2_TUNER_CAP_LOW;
323 if (radio->stereo)
324 v->audmode = V4L2_TUNER_MODE_STEREO;
325 else
326 v->audmode = V4L2_TUNER_MODE_MONO;
327 v->signal = 0xffff; /* Can't get the signal strength, sad.. */
328 v->afc = 0; /* Don't know what is this */
David Ellingsworth4aebc282009-09-22 21:22:19 -0300329
David Ellingsworth4aebc282009-09-22 21:22:19 -0300330 return retval;
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300331}
332
333/* vidioc_s_tuner - set tuner attributes */
334static int vidioc_s_tuner(struct file *file, void *priv,
335 struct v4l2_tuner *v)
336{
David Ellingsworthceb99e12009-09-23 17:45:31 -0300337 struct amradio_device *radio = file->private_data;
David Ellingswortheac000a2009-09-23 17:49:36 -0300338 int retval = -EINVAL;
Alexey Klimov34801302008-11-19 00:36:29 -0300339
David Ellingswortheac000a2009-09-23 17:49:36 -0300340 if (v->index > 0)
341 return -EINVAL;
Alexey Klimov1bb16d72009-02-05 08:56:07 -0300342
343 /* mono/stereo selector */
344 switch (v->audmode) {
345 case V4L2_TUNER_MODE_MONO:
346 retval = amradio_set_stereo(radio, WANT_MONO);
347 if (retval < 0)
David Ellingsworth7a7d92e2009-09-22 21:37:30 -0300348 amradio_dev_warn(&radio->videodev.dev,
Alexey Klimov1bb16d72009-02-05 08:56:07 -0300349 "set mono failed\n");
350 break;
351 case V4L2_TUNER_MODE_STEREO:
352 retval = amradio_set_stereo(radio, WANT_STEREO);
353 if (retval < 0)
David Ellingsworth7a7d92e2009-09-22 21:37:30 -0300354 amradio_dev_warn(&radio->videodev.dev,
Alexey Klimov1bb16d72009-02-05 08:56:07 -0300355 "set stereo failed\n");
356 break;
Alexey Klimov1bb16d72009-02-05 08:56:07 -0300357 }
358
David Ellingsworth4aebc282009-09-22 21:22:19 -0300359 return retval;
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300360}
361
362/* vidioc_s_frequency - set tuner radio frequency */
363static int vidioc_s_frequency(struct file *file, void *priv,
364 struct v4l2_frequency *f)
365{
David Ellingsworthceb99e12009-09-23 17:45:31 -0300366 struct amradio_device *radio = file->private_data;
David Ellingswortheac000a2009-09-23 17:49:36 -0300367 int retval = 0;
David Ellingsworth4aebc282009-09-22 21:22:19 -0300368
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300369 radio->curfreq = f->frequency;
Alexey Klimov52433bb2009-02-05 08:57:19 -0300370
Alexey Klimova5d69472009-02-05 08:48:43 -0300371 retval = amradio_setfreq(radio, radio->curfreq);
372 if (retval < 0)
David Ellingsworth7a7d92e2009-09-22 21:37:30 -0300373 amradio_dev_warn(&radio->videodev.dev,
Alexey Klimove60b0222008-11-04 15:02:36 -0300374 "set frequency failed\n");
David Ellingsworth4aebc282009-09-22 21:22:19 -0300375
David Ellingsworth4aebc282009-09-22 21:22:19 -0300376 return retval;
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300377}
378
379/* vidioc_g_frequency - get tuner radio frequency */
380static int vidioc_g_frequency(struct file *file, void *priv,
381 struct v4l2_frequency *f)
382{
David Ellingsworthceb99e12009-09-23 17:45:31 -0300383 struct amradio_device *radio = file->private_data;
Alexey Klimov34801302008-11-19 00:36:29 -0300384
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300385 f->type = V4L2_TUNER_RADIO;
386 f->frequency = radio->curfreq;
David Ellingsworth4aebc282009-09-22 21:22:19 -0300387
David Ellingswortheac000a2009-09-23 17:49:36 -0300388 return 0;
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300389}
390
391/* vidioc_queryctrl - enumerate control items */
392static int vidioc_queryctrl(struct file *file, void *priv,
393 struct v4l2_queryctrl *qc)
394{
Alexey Klimovb4662482009-04-03 18:45:27 -0300395 switch (qc->id) {
396 case V4L2_CID_AUDIO_MUTE:
397 return v4l2_ctrl_query_fill(qc, 0, 1, 1, 1);
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300398 }
Alexey Klimovb4662482009-04-03 18:45:27 -0300399
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300400 return -EINVAL;
401}
402
403/* vidioc_g_ctrl - get the value of a control */
404static int vidioc_g_ctrl(struct file *file, void *priv,
405 struct v4l2_control *ctrl)
406{
David Ellingsworthceb99e12009-09-23 17:45:31 -0300407 struct amradio_device *radio = file->private_data;
Alexey Klimov34801302008-11-19 00:36:29 -0300408
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300409 switch (ctrl->id) {
410 case V4L2_CID_AUDIO_MUTE:
411 ctrl->value = radio->muted;
David Ellingswortheac000a2009-09-23 17:49:36 -0300412 return 0;
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300413 }
David Ellingsworth4aebc282009-09-22 21:22:19 -0300414
David Ellingswortheac000a2009-09-23 17:49:36 -0300415 return -EINVAL;
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300416}
417
418/* vidioc_s_ctrl - set the value of a control */
419static int vidioc_s_ctrl(struct file *file, void *priv,
420 struct v4l2_control *ctrl)
421{
David Ellingsworthceb99e12009-09-23 17:45:31 -0300422 struct amradio_device *radio = file->private_data;
David Ellingsworth4aebc282009-09-22 21:22:19 -0300423 int retval = -EINVAL;
424
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300425 switch (ctrl->id) {
426 case V4L2_CID_AUDIO_MUTE:
427 if (ctrl->value) {
Alexey Klimovdb821802009-02-05 08:53:02 -0300428 retval = amradio_set_mute(radio, AMRADIO_STOP);
Alexey Klimova5d69472009-02-05 08:48:43 -0300429 if (retval < 0) {
David Ellingsworth7a7d92e2009-09-22 21:37:30 -0300430 amradio_dev_warn(&radio->videodev.dev,
Alexey Klimove60b0222008-11-04 15:02:36 -0300431 "amradio_stop failed\n");
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300432 }
433 } else {
Alexey Klimovdb821802009-02-05 08:53:02 -0300434 retval = amradio_set_mute(radio, AMRADIO_START);
Alexey Klimova5d69472009-02-05 08:48:43 -0300435 if (retval < 0) {
David Ellingsworth7a7d92e2009-09-22 21:37:30 -0300436 amradio_dev_warn(&radio->videodev.dev,
Alexey Klimove60b0222008-11-04 15:02:36 -0300437 "amradio_start failed\n");
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300438 }
439 }
David Ellingsworth4aebc282009-09-22 21:22:19 -0300440 break;
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300441 }
David Ellingsworth4aebc282009-09-22 21:22:19 -0300442
David Ellingsworth4aebc282009-09-22 21:22:19 -0300443 return retval;
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300444}
445
446/* vidioc_g_audio - get audio attributes */
447static int vidioc_g_audio(struct file *file, void *priv,
448 struct v4l2_audio *a)
449{
450 if (a->index > 1)
451 return -EINVAL;
452
453 strcpy(a->name, "Radio");
454 a->capability = V4L2_AUDCAP_STEREO;
455 return 0;
456}
457
458/* vidioc_s_audio - set audio attributes */
459static int vidioc_s_audio(struct file *file, void *priv,
460 struct v4l2_audio *a)
461{
462 if (a->index != 0)
463 return -EINVAL;
464 return 0;
465}
466
467/* vidioc_g_input - get input */
468static int vidioc_g_input(struct file *filp, void *priv, unsigned int *i)
469{
470 *i = 0;
471 return 0;
472}
473
474/* vidioc_s_input - set input */
475static int vidioc_s_input(struct file *filp, void *priv, unsigned int i)
476{
477 if (i != 0)
478 return -EINVAL;
479 return 0;
480}
481
482/* open device - amradio_start() and amradio_setfreq() */
Hans Verkuilbec43662008-12-30 06:58:20 -0300483static int usb_amradio_open(struct file *file)
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300484{
David Ellingsworthceb99e12009-09-23 17:45:31 -0300485 struct amradio_device *radio = vdev_to_amradio(video_devdata(file));
David Ellingsworth4aebc282009-09-22 21:22:19 -0300486 int retval = 0;
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300487
David Ellingsworth4aebc282009-09-22 21:22:19 -0300488 mutex_lock(&radio->lock);
489
David Ellingsworth26452bf2009-09-23 17:52:17 -0300490 if (!radio->usbdev) {
David Ellingsworth4aebc282009-09-22 21:22:19 -0300491 retval = -EIO;
492 goto unlock;
493 }
Alexey Klimov0fabb782008-10-19 23:56:23 -0300494
David Ellingsworthceb99e12009-09-23 17:45:31 -0300495 file->private_data = radio;
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300496 radio->users = 1;
497 radio->muted = 1;
498
Alexey Klimovdb821802009-02-05 08:53:02 -0300499 retval = amradio_set_mute(radio, AMRADIO_START);
Alexey Klimova5d69472009-02-05 08:48:43 -0300500 if (retval < 0) {
David Ellingsworth7a7d92e2009-09-22 21:37:30 -0300501 amradio_dev_warn(&radio->videodev.dev,
Alexey Klimove60b0222008-11-04 15:02:36 -0300502 "radio did not start up properly\n");
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300503 radio->users = 0;
David Ellingsworth4aebc282009-09-22 21:22:19 -0300504 goto unlock;
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300505 }
Alexey Klimova5d69472009-02-05 08:48:43 -0300506
Alexey Klimov1bb16d72009-02-05 08:56:07 -0300507 retval = amradio_set_stereo(radio, WANT_STEREO);
508 if (retval < 0)
David Ellingsworth7a7d92e2009-09-22 21:37:30 -0300509 amradio_dev_warn(&radio->videodev.dev,
Alexey Klimov1bb16d72009-02-05 08:56:07 -0300510 "set stereo failed\n");
511
Alexey Klimova5d69472009-02-05 08:48:43 -0300512 retval = amradio_setfreq(radio, radio->curfreq);
513 if (retval < 0)
David Ellingsworth7a7d92e2009-09-22 21:37:30 -0300514 amradio_dev_warn(&radio->videodev.dev,
Alexey Klimove60b0222008-11-04 15:02:36 -0300515 "set frequency failed\n");
Alexey Klimov0fabb782008-10-19 23:56:23 -0300516
David Ellingsworth4aebc282009-09-22 21:22:19 -0300517unlock:
518 mutex_unlock(&radio->lock);
519 return retval;
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300520}
521
Alexey Klimovf4e90432008-12-27 21:30:34 -0300522/*close device */
Hans Verkuilbec43662008-12-30 06:58:20 -0300523static int usb_amradio_close(struct file *file)
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300524{
David Ellingsworthceb99e12009-09-23 17:45:31 -0300525 struct amradio_device *radio = file->private_data;
David Ellingsworth4aebc282009-09-22 21:22:19 -0300526 int retval = 0;
Alexey Klimov34801302008-11-19 00:36:29 -0300527
Alexey Klimov52433bb2009-02-05 08:57:19 -0300528 mutex_lock(&radio->lock);
David Ellingsworth4aebc282009-09-22 21:22:19 -0300529
David Ellingsworth26452bf2009-09-23 17:52:17 -0300530 if (!radio->usbdev) {
David Ellingsworth4aebc282009-09-22 21:22:19 -0300531 retval = -EIO;
532 goto unlock;
533 }
534
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300535 radio->users = 0;
Alexey Klimov34801302008-11-19 00:36:29 -0300536
David Ellingsworth26452bf2009-09-23 17:52:17 -0300537 retval = amradio_set_mute(radio, AMRADIO_STOP);
538 if (retval < 0)
539 amradio_dev_warn(&radio->videodev.dev,
540 "amradio_stop failed\n");
Alexey Klimov34801302008-11-19 00:36:29 -0300541
David Ellingsworth4aebc282009-09-22 21:22:19 -0300542unlock:
543 mutex_unlock(&radio->lock);
544 return retval;
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300545}
546
David Ellingswortheac000a2009-09-23 17:49:36 -0300547static long usb_amradio_ioctl(struct file *file, unsigned int cmd,
548 unsigned long arg)
549{
550 struct amradio_device *radio = file->private_data;
551 long retval = 0;
552
553 mutex_lock(&radio->lock);
554
David Ellingsworth26452bf2009-09-23 17:52:17 -0300555 if (!radio->usbdev) {
David Ellingswortheac000a2009-09-23 17:49:36 -0300556 retval = -EIO;
557 goto unlock;
558 }
559
560 retval = video_ioctl2(file, cmd, arg);
561
562unlock:
563 mutex_unlock(&radio->lock);
564 return retval;
565}
566
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300567/* Suspend device - stop device. Need to be checked and fixed */
568static int usb_amradio_suspend(struct usb_interface *intf, pm_message_t message)
569{
570 struct amradio_device *radio = usb_get_intfdata(intf);
Alexey Klimova5d69472009-02-05 08:48:43 -0300571 int retval;
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300572
David Ellingsworth4aebc282009-09-22 21:22:19 -0300573 mutex_lock(&radio->lock);
574
Alexey Klimovdb821802009-02-05 08:53:02 -0300575 retval = amradio_set_mute(radio, AMRADIO_STOP);
Alexey Klimova5d69472009-02-05 08:48:43 -0300576 if (retval < 0)
Alexey Klimove60b0222008-11-04 15:02:36 -0300577 dev_warn(&intf->dev, "amradio_stop failed\n");
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300578
Alexey Klimove60b0222008-11-04 15:02:36 -0300579 dev_info(&intf->dev, "going into suspend..\n");
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300580
David Ellingsworth4aebc282009-09-22 21:22:19 -0300581 mutex_unlock(&radio->lock);
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300582 return 0;
583}
584
585/* Resume device - start device. Need to be checked and fixed */
586static int usb_amradio_resume(struct usb_interface *intf)
587{
588 struct amradio_device *radio = usb_get_intfdata(intf);
Alexey Klimova5d69472009-02-05 08:48:43 -0300589 int retval;
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300590
David Ellingsworth4aebc282009-09-22 21:22:19 -0300591 mutex_lock(&radio->lock);
592
Alexey Klimovdb821802009-02-05 08:53:02 -0300593 retval = amradio_set_mute(radio, AMRADIO_START);
Alexey Klimova5d69472009-02-05 08:48:43 -0300594 if (retval < 0)
Alexey Klimove60b0222008-11-04 15:02:36 -0300595 dev_warn(&intf->dev, "amradio_start failed\n");
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300596
Alexey Klimove60b0222008-11-04 15:02:36 -0300597 dev_info(&intf->dev, "coming out of suspend..\n");
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300598
David Ellingsworth4aebc282009-09-22 21:22:19 -0300599 mutex_unlock(&radio->lock);
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300600 return 0;
601}
602
603/* File system interface */
Hans Verkuilbec43662008-12-30 06:58:20 -0300604static const struct v4l2_file_operations usb_amradio_fops = {
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300605 .owner = THIS_MODULE,
606 .open = usb_amradio_open,
607 .release = usb_amradio_close,
David Ellingswortheac000a2009-09-23 17:49:36 -0300608 .ioctl = usb_amradio_ioctl,
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300609};
610
611static const struct v4l2_ioctl_ops usb_amradio_ioctl_ops = {
612 .vidioc_querycap = vidioc_querycap,
613 .vidioc_g_tuner = vidioc_g_tuner,
614 .vidioc_s_tuner = vidioc_s_tuner,
615 .vidioc_g_frequency = vidioc_g_frequency,
616 .vidioc_s_frequency = vidioc_s_frequency,
617 .vidioc_queryctrl = vidioc_queryctrl,
618 .vidioc_g_ctrl = vidioc_g_ctrl,
619 .vidioc_s_ctrl = vidioc_s_ctrl,
620 .vidioc_g_audio = vidioc_g_audio,
621 .vidioc_s_audio = vidioc_s_audio,
622 .vidioc_g_input = vidioc_g_input,
623 .vidioc_s_input = vidioc_s_input,
624};
625
Alexey Klimovb4662482009-04-03 18:45:27 -0300626static void usb_amradio_video_device_release(struct video_device *videodev)
Alexey Klimovf4e90432008-12-27 21:30:34 -0300627{
David Ellingsworthceb99e12009-09-23 17:45:31 -0300628 struct amradio_device *radio = vdev_to_amradio(videodev);
Alexey Klimovf4e90432008-12-27 21:30:34 -0300629
Alexey Klimovb4662482009-04-03 18:45:27 -0300630 v4l2_device_unregister(&radio->v4l2_dev);
631
Alexey Klimovf4e90432008-12-27 21:30:34 -0300632 /* free rest memory */
633 kfree(radio->buffer);
634 kfree(radio);
635}
636
Alexey Klimova5d69472009-02-05 08:48:43 -0300637/* check if the device is present and register with v4l and usb if it is */
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300638static int usb_amradio_probe(struct usb_interface *intf,
639 const struct usb_device_id *id)
640{
641 struct amradio_device *radio;
David Ellingsworth1b8bbb32009-09-22 21:43:19 -0300642 int retval = 0;
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300643
Alexey Klimovb4662482009-04-03 18:45:27 -0300644 radio = kzalloc(sizeof(struct amradio_device), GFP_KERNEL);
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300645
Alexey Klimov8edafcc2009-02-05 08:51:51 -0300646 if (!radio) {
647 dev_err(&intf->dev, "kmalloc for amradio_device failed\n");
David Ellingsworth1b8bbb32009-09-22 21:43:19 -0300648 retval = -ENOMEM;
649 goto err;
Alexey Klimov8edafcc2009-02-05 08:51:51 -0300650 }
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300651
652 radio->buffer = kmalloc(BUFFER_LENGTH, GFP_KERNEL);
653
Alexey Klimov8edafcc2009-02-05 08:51:51 -0300654 if (!radio->buffer) {
655 dev_err(&intf->dev, "kmalloc for radio->buffer failed\n");
David Ellingsworth1b8bbb32009-09-22 21:43:19 -0300656 retval = -ENOMEM;
657 goto err_nobuf;
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300658 }
659
David Ellingsworthd1939e42009-09-22 21:48:43 -0300660 retval = v4l2_device_register(&intf->dev, &radio->v4l2_dev);
Alexey Klimovb4662482009-04-03 18:45:27 -0300661 if (retval < 0) {
662 dev_err(&intf->dev, "couldn't register v4l2_device\n");
David Ellingsworth1b8bbb32009-09-22 21:43:19 -0300663 goto err_v4l2;
Alexey Klimovb4662482009-04-03 18:45:27 -0300664 }
665
David Ellingsworthd1939e42009-09-22 21:48:43 -0300666 strlcpy(radio->videodev.name, radio->v4l2_dev.name,
David Ellingsworth7a7d92e2009-09-22 21:37:30 -0300667 sizeof(radio->videodev.name));
David Ellingsworthd1939e42009-09-22 21:48:43 -0300668 radio->videodev.v4l2_dev = &radio->v4l2_dev;
David Ellingsworth7a7d92e2009-09-22 21:37:30 -0300669 radio->videodev.fops = &usb_amradio_fops;
670 radio->videodev.ioctl_ops = &usb_amradio_ioctl_ops;
671 radio->videodev.release = usb_amradio_video_device_release;
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300672
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300673 radio->users = 0;
674 radio->usbdev = interface_to_usbdev(intf);
675 radio->curfreq = 95.16 * FREQ_MUL;
Alexey Klimov1bb16d72009-02-05 08:56:07 -0300676 radio->stereo = -1;
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300677
678 mutex_init(&radio->lock);
679
David Ellingsworth7a7d92e2009-09-22 21:37:30 -0300680 video_set_drvdata(&radio->videodev, radio);
Alexey Klimovb4662482009-04-03 18:45:27 -0300681
David Ellingsworth7a7d92e2009-09-22 21:37:30 -0300682 retval = video_register_device(&radio->videodev, VFL_TYPE_RADIO,
683 radio_nr);
Alexey Klimova5d69472009-02-05 08:48:43 -0300684 if (retval < 0) {
Alexey Klimov65c51dc2009-02-05 08:49:58 -0300685 dev_err(&intf->dev, "could not register video device\n");
David Ellingsworth1b8bbb32009-09-22 21:43:19 -0300686 goto err_vdev;
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300687 }
688
689 usb_set_intfdata(intf, radio);
690 return 0;
David Ellingsworth1b8bbb32009-09-22 21:43:19 -0300691
692err_vdev:
David Ellingsworthd1939e42009-09-22 21:48:43 -0300693 v4l2_device_unregister(&radio->v4l2_dev);
David Ellingsworth1b8bbb32009-09-22 21:43:19 -0300694err_v4l2:
695 kfree(radio->buffer);
696err_nobuf:
697 kfree(radio);
698err:
699 return retval;
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300700}
701
702static int __init amradio_init(void)
703{
704 int retval = usb_register(&usb_amradio_driver);
705
Alexey Klimove60b0222008-11-04 15:02:36 -0300706 pr_info(KBUILD_MODNAME
707 ": version " DRIVER_VERSION " " DRIVER_DESC "\n");
708
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300709 if (retval)
Alexey Klimove60b0222008-11-04 15:02:36 -0300710 pr_err(KBUILD_MODNAME
711 ": usb_register failed. Error number %d\n", retval);
712
Alexey Klimov2aa72f32008-10-01 09:40:59 -0300713 return retval;
714}
715
716static void __exit amradio_exit(void)
717{
718 usb_deregister(&usb_amradio_driver);
719}
720
721module_init(amradio_init);
722module_exit(amradio_exit);
723