Alexey Klimov | 2aa72f3 | 2008-10-01 09:40:59 -0300 | [diff] [blame] | 1 | /* |
| 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 Klimov | 71f07d9 | 2009-02-05 08:58:31 -0300 | [diff] [blame] | 25 | * Big thanks to authors and contributors of dsbr100.c and radio-si470x.c |
Alexey Klimov | 2aa72f3 | 2008-10-01 09:40:59 -0300 | [diff] [blame] | 26 | * |
| 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 Rosa | af901ca | 2009-11-14 13:09:05 -0200 | [diff] [blame] | 31 | * Probably, this driver could be improved through using their |
Alexey Klimov | 2aa72f3 | 2008-10-01 09:40:59 -0300 | [diff] [blame] | 32 | * achievements (specifications given). |
Alexey Klimov | 71f07d9 | 2009-02-05 08:58:31 -0300 | [diff] [blame] | 33 | * 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 Klimov | 2aa72f3 | 2008-10-01 09:40:59 -0300 | [diff] [blame] | 36 | * |
Alexey Klimov | 2aa72f3 | 2008-10-01 09:40:59 -0300 | [diff] [blame] | 37 | * Version 0.01: First working version. |
| 38 | * It's required to blacklist AverMedia USB Radio |
| 39 | * in usbhid/hid-quirks.c |
Alexey Klimov | 71f07d9 | 2009-02-05 08:58:31 -0300 | [diff] [blame] | 40 | * 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 Klimov | b466248 | 2009-04-03 18:45:27 -0300 | [diff] [blame] | 46 | * Version 0.11: Converted to v4l2_device. |
Alexey Klimov | 2aa72f3 | 2008-10-01 09:40:59 -0300 | [diff] [blame] | 47 | * |
| 48 | * Many things to do: |
Uwe Kleine-Koenig | 3dbda77 | 2009-07-23 08:31:31 +0200 | [diff] [blame] | 49 | * - Correct power management of device (suspend & resume) |
Alexey Klimov | 2aa72f3 | 2008-10-01 09:40:59 -0300 | [diff] [blame] | 50 | * - Add code for scanning and smooth tuning |
Alexey Klimov | 2aa72f3 | 2008-10-01 09:40:59 -0300 | [diff] [blame] | 51 | * - 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 Klimov | b466248 | 2009-04-03 18:45:27 -0300 | [diff] [blame] | 63 | #include <media/v4l2-device.h> |
Alexey Klimov | 2aa72f3 | 2008-10-01 09:40:59 -0300 | [diff] [blame] | 64 | #include <media/v4l2-ioctl.h> |
Hans Verkuil | 85578b0 | 2012-04-27 12:30:40 -0300 | [diff] [blame] | 65 | #include <media/v4l2-ctrls.h> |
| 66 | #include <media/v4l2-event.h> |
Alexey Klimov | 2aa72f3 | 2008-10-01 09:40:59 -0300 | [diff] [blame] | 67 | #include <linux/usb.h> |
Alessio Igor Bogani | 24c44d8 | 2009-05-12 17:39:27 -0300 | [diff] [blame] | 68 | #include <linux/mutex.h> |
Alexey Klimov | 2aa72f3 | 2008-10-01 09:40:59 -0300 | [diff] [blame] | 69 | |
| 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 Chehab | 29834c1 | 2011-06-25 10:15:42 -0300 | [diff] [blame] | 73 | #define DRIVER_VERSION "0.1.2" |
Alexey Klimov | 2aa72f3 | 2008-10-01 09:40:59 -0300 | [diff] [blame] | 74 | |
| 75 | MODULE_AUTHOR(DRIVER_AUTHOR); |
| 76 | MODULE_DESCRIPTION(DRIVER_DESC); |
| 77 | MODULE_LICENSE("GPL"); |
Mauro Carvalho Chehab | 29834c1 | 2011-06-25 10:15:42 -0300 | [diff] [blame] | 78 | MODULE_VERSION(DRIVER_VERSION); |
Alexey Klimov | 2aa72f3 | 2008-10-01 09:40:59 -0300 | [diff] [blame] | 79 | |
| 80 | #define USB_AMRADIO_VENDOR 0x07ca |
| 81 | #define USB_AMRADIO_PRODUCT 0xb800 |
| 82 | |
Alexey Klimov | e60b022 | 2008-11-04 15:02:36 -0300 | [diff] [blame] | 83 | /* 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 Ellingsworth | 502d501 | 2009-09-23 18:13:50 -0300 | [diff] [blame] | 88 | #define amradio_dev_err(dev, fmt, arg...) \ |
| 89 | dev_err(dev, MR800_DRIVER_NAME " - " fmt, ##arg) |
| 90 | |
Alexey Klimov | 2aa72f3 | 2008-10-01 09:40:59 -0300 | [diff] [blame] | 91 | /* 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 |
| 96 | devices, 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 Klimov | db82180 | 2009-02-05 08:53:02 -0300 | [diff] [blame] | 101 | /* |
| 102 | * Commands that device should understand |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 103 | * List isn't full and will be updated with implementation of new functions |
Alexey Klimov | db82180 | 2009-02-05 08:53:02 -0300 | [diff] [blame] | 104 | */ |
Alexey Klimov | f7c1a38 | 2009-02-05 08:54:17 -0300 | [diff] [blame] | 105 | #define AMRADIO_SET_FREQ 0xa4 |
Hans Verkuil | 77cf393 | 2012-04-27 13:28:34 -0300 | [diff] [blame^] | 106 | #define AMRADIO_GET_SIGNAL 0xa7 |
Alexey Klimov | db82180 | 2009-02-05 08:53:02 -0300 | [diff] [blame] | 107 | #define AMRADIO_SET_MUTE 0xab |
Alexey Klimov | 1bb16d7 | 2009-02-05 08:56:07 -0300 | [diff] [blame] | 108 | #define AMRADIO_SET_MONO 0xae |
Alexey Klimov | db82180 | 2009-02-05 08:53:02 -0300 | [diff] [blame] | 109 | |
| 110 | /* Comfortable defines for amradio_set_mute */ |
| 111 | #define AMRADIO_START 0x00 |
| 112 | #define AMRADIO_STOP 0x01 |
| 113 | |
Alexey Klimov | 1bb16d7 | 2009-02-05 08:56:07 -0300 | [diff] [blame] | 114 | /* Comfortable defines for amradio_set_stereo */ |
| 115 | #define WANT_STEREO 0x00 |
| 116 | #define WANT_MONO 0x01 |
| 117 | |
Alexey Klimov | 2aa72f3 | 2008-10-01 09:40:59 -0300 | [diff] [blame] | 118 | /* module parameter */ |
| 119 | static int radio_nr = -1; |
| 120 | module_param(radio_nr, int, 0); |
| 121 | MODULE_PARM_DESC(radio_nr, "Radio Nr"); |
| 122 | |
Alexey Klimov | 2aa72f3 | 2008-10-01 09:40:59 -0300 | [diff] [blame] | 123 | /* Data for one (physical) device */ |
| 124 | struct amradio_device { |
| 125 | /* reference to USB and video device */ |
| 126 | struct usb_device *usbdev; |
Oliver Neukum | d89ce0d | 2009-11-09 19:09:49 -0300 | [diff] [blame] | 127 | struct usb_interface *intf; |
Hans Verkuil | 85578b0 | 2012-04-27 12:30:40 -0300 | [diff] [blame] | 128 | struct video_device vdev; |
Alexey Klimov | b466248 | 2009-04-03 18:45:27 -0300 | [diff] [blame] | 129 | struct v4l2_device v4l2_dev; |
Hans Verkuil | 85578b0 | 2012-04-27 12:30:40 -0300 | [diff] [blame] | 130 | struct v4l2_ctrl_handler hdl; |
Alexey Klimov | 2aa72f3 | 2008-10-01 09:40:59 -0300 | [diff] [blame] | 131 | |
| 132 | unsigned char *buffer; |
| 133 | struct mutex lock; /* buffer locking */ |
| 134 | int curfreq; |
| 135 | int stereo; |
Alexey Klimov | 2aa72f3 | 2008-10-01 09:40:59 -0300 | [diff] [blame] | 136 | int muted; |
| 137 | }; |
| 138 | |
Hans Verkuil | a2bdc5e | 2010-05-02 05:36:32 -0300 | [diff] [blame] | 139 | static 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 Ellingsworth | ceb99e1 | 2009-09-23 17:45:31 -0300 | [diff] [blame] | 143 | |
Alexey Klimov | db82180 | 2009-02-05 08:53:02 -0300 | [diff] [blame] | 144 | /* switch on/off the radio. Send 8 bytes to device */ |
| 145 | static int amradio_set_mute(struct amradio_device *radio, char argument) |
Alexey Klimov | 2aa72f3 | 2008-10-01 09:40:59 -0300 | [diff] [blame] | 146 | { |
| 147 | int retval; |
| 148 | int size; |
| 149 | |
Alexey Klimov | 2aa72f3 | 2008-10-01 09:40:59 -0300 | [diff] [blame] | 150 | radio->buffer[0] = 0x00; |
| 151 | radio->buffer[1] = 0x55; |
| 152 | radio->buffer[2] = 0xaa; |
| 153 | radio->buffer[3] = 0x00; |
Alexey Klimov | db82180 | 2009-02-05 08:53:02 -0300 | [diff] [blame] | 154 | radio->buffer[4] = AMRADIO_SET_MUTE; |
| 155 | radio->buffer[5] = argument; |
Alexey Klimov | 2aa72f3 | 2008-10-01 09:40:59 -0300 | [diff] [blame] | 156 | 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 Klimov | e57458d | 2009-02-05 09:00:03 -0300 | [diff] [blame] | 162 | if (retval < 0 || size != BUFFER_LENGTH) { |
Hans Verkuil | 85578b0 | 2012-04-27 12:30:40 -0300 | [diff] [blame] | 163 | amradio_dev_warn(&radio->vdev.dev, "set mute failed\n"); |
| 164 | return retval < 0 ? retval : -EIO; |
Alexey Klimov | 2aa72f3 | 2008-10-01 09:40:59 -0300 | [diff] [blame] | 165 | } |
Alexey Klimov | db82180 | 2009-02-05 08:53:02 -0300 | [diff] [blame] | 166 | radio->muted = argument; |
Hans Verkuil | 85578b0 | 2012-04-27 12:30:40 -0300 | [diff] [blame] | 167 | return 0; |
Alexey Klimov | 2aa72f3 | 2008-10-01 09:40:59 -0300 | [diff] [blame] | 168 | } |
| 169 | |
| 170 | /* set a frequency, freq is defined by v4l's TUNER_LOW, i.e. 1/16th kHz */ |
| 171 | static int amradio_setfreq(struct amradio_device *radio, int freq) |
| 172 | { |
Hans Verkuil | 85578b0 | 2012-04-27 12:30:40 -0300 | [diff] [blame] | 173 | unsigned short freq_send = 0x10 + (freq >> 3) / 25; |
Alexey Klimov | 2aa72f3 | 2008-10-01 09:40:59 -0300 | [diff] [blame] | 174 | int retval; |
| 175 | int size; |
Alexey Klimov | 2aa72f3 | 2008-10-01 09:40:59 -0300 | [diff] [blame] | 176 | |
Alexey Klimov | 2aa72f3 | 2008-10-01 09:40:59 -0300 | [diff] [blame] | 177 | radio->buffer[0] = 0x00; |
| 178 | radio->buffer[1] = 0x55; |
| 179 | radio->buffer[2] = 0xaa; |
| 180 | radio->buffer[3] = 0x03; |
Alexey Klimov | f7c1a38 | 2009-02-05 08:54:17 -0300 | [diff] [blame] | 181 | radio->buffer[4] = AMRADIO_SET_FREQ; |
Alexey Klimov | 2aa72f3 | 2008-10-01 09:40:59 -0300 | [diff] [blame] | 182 | 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 Ellingsworth | 4aebc28 | 2009-09-22 21:22:19 -0300 | [diff] [blame] | 189 | if (retval < 0 || size != BUFFER_LENGTH) |
Hans Verkuil | 85578b0 | 2012-04-27 12:30:40 -0300 | [diff] [blame] | 190 | goto out; |
Alexey Klimov | 2aa72f3 | 2008-10-01 09:40:59 -0300 | [diff] [blame] | 191 | |
| 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 Verkuil | 85578b0 | 2012-04-27 12:30:40 -0300 | [diff] [blame] | 204 | if (retval >= 0 && size == BUFFER_LENGTH) { |
| 205 | radio->curfreq = freq; |
| 206 | return 0; |
| 207 | } |
Alexey Klimov | 2aa72f3 | 2008-10-01 09:40:59 -0300 | [diff] [blame] | 208 | |
David Ellingsworth | 16a72f4 | 2009-09-23 18:28:02 -0300 | [diff] [blame] | 209 | out: |
Hans Verkuil | 85578b0 | 2012-04-27 12:30:40 -0300 | [diff] [blame] | 210 | amradio_dev_warn(&radio->vdev.dev, "set frequency failed\n"); |
| 211 | return retval < 0 ? retval : -EIO; |
Alexey Klimov | 1bb16d7 | 2009-02-05 08:56:07 -0300 | [diff] [blame] | 212 | } |
| 213 | |
| 214 | static int amradio_set_stereo(struct amradio_device *radio, char argument) |
| 215 | { |
| 216 | int retval; |
| 217 | int size; |
| 218 | |
Alexey Klimov | 1bb16d7 | 2009-02-05 08:56:07 -0300 | [diff] [blame] | 219 | 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 Verkuil | 85578b0 | 2012-04-27 12:30:40 -0300 | [diff] [blame] | 232 | amradio_dev_warn(&radio->vdev.dev, "set stereo failed\n"); |
| 233 | return retval < 0 ? retval : -EIO; |
Alexey Klimov | 1bb16d7 | 2009-02-05 08:56:07 -0300 | [diff] [blame] | 234 | } |
| 235 | |
Hans Verkuil | 85578b0 | 2012-04-27 12:30:40 -0300 | [diff] [blame] | 236 | radio->stereo = (argument == WANT_STEREO); |
| 237 | return 0; |
Alexey Klimov | 2aa72f3 | 2008-10-01 09:40:59 -0300 | [diff] [blame] | 238 | } |
| 239 | |
Hans Verkuil | 77cf393 | 2012-04-27 13:28:34 -0300 | [diff] [blame^] | 240 | static 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 Klimov | 71f07d9 | 2009-02-05 08:58:31 -0300 | [diff] [blame] | 269 | /* 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 Klimov | 2aa72f3 | 2008-10-01 09:40:59 -0300 | [diff] [blame] | 274 | static void usb_amradio_disconnect(struct usb_interface *intf) |
| 275 | { |
Hans Verkuil | a2bdc5e | 2010-05-02 05:36:32 -0300 | [diff] [blame] | 276 | struct amradio_device *radio = to_amradio_dev(usb_get_intfdata(intf)); |
Alexey Klimov | 2aa72f3 | 2008-10-01 09:40:59 -0300 | [diff] [blame] | 277 | |
Alexey Klimov | f4e9043 | 2008-12-27 21:30:34 -0300 | [diff] [blame] | 278 | mutex_lock(&radio->lock); |
Hans Verkuil | 85578b0 | 2012-04-27 12:30:40 -0300 | [diff] [blame] | 279 | usb_set_intfdata(intf, NULL); |
| 280 | video_unregister_device(&radio->vdev); |
Alexey Klimov | b466248 | 2009-04-03 18:45:27 -0300 | [diff] [blame] | 281 | v4l2_device_disconnect(&radio->v4l2_dev); |
Hans Verkuil | a682d4c | 2010-10-17 09:26:18 -0300 | [diff] [blame] | 282 | mutex_unlock(&radio->lock); |
Hans Verkuil | 85578b0 | 2012-04-27 12:30:40 -0300 | [diff] [blame] | 283 | v4l2_device_put(&radio->v4l2_dev); |
Alexey Klimov | 2aa72f3 | 2008-10-01 09:40:59 -0300 | [diff] [blame] | 284 | } |
| 285 | |
| 286 | /* vidioc_querycap - query device capabilities */ |
| 287 | static int vidioc_querycap(struct file *file, void *priv, |
| 288 | struct v4l2_capability *v) |
| 289 | { |
Hans Verkuil | 85578b0 | 2012-04-27 12:30:40 -0300 | [diff] [blame] | 290 | struct amradio_device *radio = video_drvdata(file); |
Alexey Klimov | c7181cf | 2009-01-25 20:05:58 -0300 | [diff] [blame] | 291 | |
Alexey Klimov | 2aa72f3 | 2008-10-01 09:40:59 -0300 | [diff] [blame] | 292 | strlcpy(v->driver, "radio-mr800", sizeof(v->driver)); |
| 293 | strlcpy(v->card, "AverMedia MR 800 USB FM Radio", sizeof(v->card)); |
Alexey Klimov | c7181cf | 2009-01-25 20:05:58 -0300 | [diff] [blame] | 294 | usb_make_path(radio->usbdev, v->bus_info, sizeof(v->bus_info)); |
Hans Verkuil | 85578b0 | 2012-04-27 12:30:40 -0300 | [diff] [blame] | 295 | v->device_caps = V4L2_CAP_RADIO | V4L2_CAP_TUNER; |
| 296 | v->capabilities = v->device_caps | V4L2_CAP_DEVICE_CAPS; |
Alexey Klimov | 2aa72f3 | 2008-10-01 09:40:59 -0300 | [diff] [blame] | 297 | return 0; |
| 298 | } |
| 299 | |
| 300 | /* vidioc_g_tuner - get tuner attributes */ |
| 301 | static int vidioc_g_tuner(struct file *file, void *priv, |
| 302 | struct v4l2_tuner *v) |
| 303 | { |
Hans Verkuil | 85578b0 | 2012-04-27 12:30:40 -0300 | [diff] [blame] | 304 | struct amradio_device *radio = video_drvdata(file); |
Hans Verkuil | 77cf393 | 2012-04-27 13:28:34 -0300 | [diff] [blame^] | 305 | bool is_stereo = false; |
| 306 | int retval; |
Alexey Klimov | 2aa72f3 | 2008-10-01 09:40:59 -0300 | [diff] [blame] | 307 | |
| 308 | if (v->index > 0) |
| 309 | return -EINVAL; |
| 310 | |
Hans Verkuil | 77cf393 | 2012-04-27 13:28:34 -0300 | [diff] [blame^] | 311 | v->signal = 0; |
| 312 | retval = amradio_get_stat(radio, &is_stereo, &v->signal); |
| 313 | if (retval) |
| 314 | return retval; |
| 315 | |
Alexey Klimov | 2aa72f3 | 2008-10-01 09:40:59 -0300 | [diff] [blame] | 316 | 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 Verkuil | 85578b0 | 2012-04-27 12:30:40 -0300 | [diff] [blame] | 320 | v->capability = V4L2_TUNER_CAP_LOW | V4L2_TUNER_CAP_STEREO; |
Hans Verkuil | 77cf393 | 2012-04-27 13:28:34 -0300 | [diff] [blame^] | 321 | v->rxsubchans = is_stereo ? V4L2_TUNER_SUB_STEREO : V4L2_TUNER_SUB_MONO; |
Hans Verkuil | 85578b0 | 2012-04-27 12:30:40 -0300 | [diff] [blame] | 322 | v->audmode = radio->stereo ? |
| 323 | V4L2_TUNER_MODE_STEREO : V4L2_TUNER_MODE_MONO; |
| 324 | return 0; |
Alexey Klimov | 2aa72f3 | 2008-10-01 09:40:59 -0300 | [diff] [blame] | 325 | } |
| 326 | |
| 327 | /* vidioc_s_tuner - set tuner attributes */ |
| 328 | static int vidioc_s_tuner(struct file *file, void *priv, |
| 329 | struct v4l2_tuner *v) |
| 330 | { |
Hans Verkuil | 85578b0 | 2012-04-27 12:30:40 -0300 | [diff] [blame] | 331 | struct amradio_device *radio = video_drvdata(file); |
Alexey Klimov | 3480130 | 2008-11-19 00:36:29 -0300 | [diff] [blame] | 332 | |
Alexey Klimov | 2aa72f3 | 2008-10-01 09:40:59 -0300 | [diff] [blame] | 333 | if (v->index > 0) |
| 334 | return -EINVAL; |
Alexey Klimov | 1bb16d7 | 2009-02-05 08:56:07 -0300 | [diff] [blame] | 335 | |
| 336 | /* mono/stereo selector */ |
| 337 | switch (v->audmode) { |
| 338 | case V4L2_TUNER_MODE_MONO: |
Hans Verkuil | 85578b0 | 2012-04-27 12:30:40 -0300 | [diff] [blame] | 339 | return amradio_set_stereo(radio, WANT_MONO); |
| 340 | default: |
| 341 | return amradio_set_stereo(radio, WANT_STEREO); |
Alexey Klimov | 1bb16d7 | 2009-02-05 08:56:07 -0300 | [diff] [blame] | 342 | } |
Alexey Klimov | 2aa72f3 | 2008-10-01 09:40:59 -0300 | [diff] [blame] | 343 | } |
| 344 | |
| 345 | /* vidioc_s_frequency - set tuner radio frequency */ |
| 346 | static int vidioc_s_frequency(struct file *file, void *priv, |
| 347 | struct v4l2_frequency *f) |
| 348 | { |
Hans Verkuil | 85578b0 | 2012-04-27 12:30:40 -0300 | [diff] [blame] | 349 | struct amradio_device *radio = video_drvdata(file); |
Alexey Klimov | 2aa72f3 | 2008-10-01 09:40:59 -0300 | [diff] [blame] | 350 | |
Hans Verkuil | 85578b0 | 2012-04-27 12:30:40 -0300 | [diff] [blame] | 351 | if (f->tuner != 0) |
Hans Verkuil | a3a9e28 | 2009-11-27 04:33:25 -0300 | [diff] [blame] | 352 | return -EINVAL; |
Hans Verkuil | 85578b0 | 2012-04-27 12:30:40 -0300 | [diff] [blame] | 353 | return amradio_setfreq(radio, clamp_t(unsigned, f->frequency, |
| 354 | FREQ_MIN * FREQ_MUL, FREQ_MAX * FREQ_MUL)); |
Alexey Klimov | 2aa72f3 | 2008-10-01 09:40:59 -0300 | [diff] [blame] | 355 | } |
| 356 | |
| 357 | /* vidioc_g_frequency - get tuner radio frequency */ |
| 358 | static int vidioc_g_frequency(struct file *file, void *priv, |
| 359 | struct v4l2_frequency *f) |
| 360 | { |
Hans Verkuil | 85578b0 | 2012-04-27 12:30:40 -0300 | [diff] [blame] | 361 | struct amradio_device *radio = video_drvdata(file); |
Alexey Klimov | 3480130 | 2008-11-19 00:36:29 -0300 | [diff] [blame] | 362 | |
Hans Verkuil | 85578b0 | 2012-04-27 12:30:40 -0300 | [diff] [blame] | 363 | if (f->tuner != 0 || f->type != V4L2_TUNER_RADIO) |
Hans Verkuil | a3a9e28 | 2009-11-27 04:33:25 -0300 | [diff] [blame] | 364 | return -EINVAL; |
Alexey Klimov | 2aa72f3 | 2008-10-01 09:40:59 -0300 | [diff] [blame] | 365 | f->type = V4L2_TUNER_RADIO; |
| 366 | f->frequency = radio->curfreq; |
David Ellingsworth | 4aebc28 | 2009-09-22 21:22:19 -0300 | [diff] [blame] | 367 | |
Alexey Klimov | 2aa72f3 | 2008-10-01 09:40:59 -0300 | [diff] [blame] | 368 | return 0; |
| 369 | } |
| 370 | |
Hans Verkuil | 85578b0 | 2012-04-27 12:30:40 -0300 | [diff] [blame] | 371 | static int usb_amradio_s_ctrl(struct v4l2_ctrl *ctrl) |
Alexey Klimov | 2aa72f3 | 2008-10-01 09:40:59 -0300 | [diff] [blame] | 372 | { |
Hans Verkuil | 85578b0 | 2012-04-27 12:30:40 -0300 | [diff] [blame] | 373 | struct amradio_device *radio = |
| 374 | container_of(ctrl->handler, struct amradio_device, hdl); |
Alexey Klimov | 3480130 | 2008-11-19 00:36:29 -0300 | [diff] [blame] | 375 | |
Alexey Klimov | 2aa72f3 | 2008-10-01 09:40:59 -0300 | [diff] [blame] | 376 | switch (ctrl->id) { |
| 377 | case V4L2_CID_AUDIO_MUTE: |
Hans Verkuil | 85578b0 | 2012-04-27 12:30:40 -0300 | [diff] [blame] | 378 | return amradio_set_mute(radio, |
| 379 | ctrl->val ? AMRADIO_STOP : AMRADIO_START); |
Alexey Klimov | 2aa72f3 | 2008-10-01 09:40:59 -0300 | [diff] [blame] | 380 | } |
David Ellingsworth | 4aebc28 | 2009-09-22 21:22:19 -0300 | [diff] [blame] | 381 | |
Alexey Klimov | 2aa72f3 | 2008-10-01 09:40:59 -0300 | [diff] [blame] | 382 | return -EINVAL; |
| 383 | } |
| 384 | |
David Ellingsworth | 502d501 | 2009-09-23 18:13:50 -0300 | [diff] [blame] | 385 | static int usb_amradio_init(struct amradio_device *radio) |
| 386 | { |
| 387 | int retval; |
| 388 | |
| 389 | retval = amradio_set_mute(radio, AMRADIO_STOP); |
David Ellingsworth | 16a72f4 | 2009-09-23 18:28:02 -0300 | [diff] [blame] | 390 | if (retval) |
David Ellingsworth | 502d501 | 2009-09-23 18:13:50 -0300 | [diff] [blame] | 391 | goto out_err; |
David Ellingsworth | 502d501 | 2009-09-23 18:13:50 -0300 | [diff] [blame] | 392 | |
| 393 | retval = amradio_set_stereo(radio, WANT_STEREO); |
David Ellingsworth | 16a72f4 | 2009-09-23 18:28:02 -0300 | [diff] [blame] | 394 | if (retval) |
David Ellingsworth | 502d501 | 2009-09-23 18:13:50 -0300 | [diff] [blame] | 395 | goto out_err; |
David Ellingsworth | 502d501 | 2009-09-23 18:13:50 -0300 | [diff] [blame] | 396 | |
David Ellingsworth | 502d501 | 2009-09-23 18:13:50 -0300 | [diff] [blame] | 397 | goto out; |
| 398 | |
| 399 | out_err: |
Hans Verkuil | 85578b0 | 2012-04-27 12:30:40 -0300 | [diff] [blame] | 400 | amradio_dev_err(&radio->vdev.dev, "initialization failed\n"); |
David Ellingsworth | 502d501 | 2009-09-23 18:13:50 -0300 | [diff] [blame] | 401 | out: |
| 402 | return retval; |
| 403 | } |
| 404 | |
Alexey Klimov | 2aa72f3 | 2008-10-01 09:40:59 -0300 | [diff] [blame] | 405 | /* Suspend device - stop device. Need to be checked and fixed */ |
| 406 | static int usb_amradio_suspend(struct usb_interface *intf, pm_message_t message) |
| 407 | { |
Hans Verkuil | a2bdc5e | 2010-05-02 05:36:32 -0300 | [diff] [blame] | 408 | struct amradio_device *radio = to_amradio_dev(usb_get_intfdata(intf)); |
Alexey Klimov | 2aa72f3 | 2008-10-01 09:40:59 -0300 | [diff] [blame] | 409 | |
Hans Verkuil | a682d4c | 2010-10-17 09:26:18 -0300 | [diff] [blame] | 410 | mutex_lock(&radio->lock); |
Hans Verkuil | 85578b0 | 2012-04-27 12:30:40 -0300 | [diff] [blame] | 411 | if (!radio->muted) { |
David Ellingsworth | 16a72f4 | 2009-09-23 18:28:02 -0300 | [diff] [blame] | 412 | amradio_set_mute(radio, AMRADIO_STOP); |
David Ellingsworth | d8970e5 | 2009-09-23 18:24:47 -0300 | [diff] [blame] | 413 | radio->muted = 0; |
| 414 | } |
Hans Verkuil | a682d4c | 2010-10-17 09:26:18 -0300 | [diff] [blame] | 415 | mutex_unlock(&radio->lock); |
Alexey Klimov | 2aa72f3 | 2008-10-01 09:40:59 -0300 | [diff] [blame] | 416 | |
Alexey Klimov | e60b022 | 2008-11-04 15:02:36 -0300 | [diff] [blame] | 417 | dev_info(&intf->dev, "going into suspend..\n"); |
Alexey Klimov | 2aa72f3 | 2008-10-01 09:40:59 -0300 | [diff] [blame] | 418 | return 0; |
| 419 | } |
| 420 | |
| 421 | /* Resume device - start device. Need to be checked and fixed */ |
| 422 | static int usb_amradio_resume(struct usb_interface *intf) |
| 423 | { |
Hans Verkuil | a2bdc5e | 2010-05-02 05:36:32 -0300 | [diff] [blame] | 424 | struct amradio_device *radio = to_amradio_dev(usb_get_intfdata(intf)); |
Alexey Klimov | 2aa72f3 | 2008-10-01 09:40:59 -0300 | [diff] [blame] | 425 | |
Hans Verkuil | a682d4c | 2010-10-17 09:26:18 -0300 | [diff] [blame] | 426 | mutex_lock(&radio->lock); |
David Ellingsworth | d8970e5 | 2009-09-23 18:24:47 -0300 | [diff] [blame] | 427 | if (radio->stereo) |
David Ellingsworth | 16a72f4 | 2009-09-23 18:28:02 -0300 | [diff] [blame] | 428 | amradio_set_stereo(radio, WANT_STEREO); |
David Ellingsworth | d8970e5 | 2009-09-23 18:24:47 -0300 | [diff] [blame] | 429 | else |
David Ellingsworth | 16a72f4 | 2009-09-23 18:28:02 -0300 | [diff] [blame] | 430 | amradio_set_stereo(radio, WANT_MONO); |
David Ellingsworth | d8970e5 | 2009-09-23 18:24:47 -0300 | [diff] [blame] | 431 | |
David Ellingsworth | 16a72f4 | 2009-09-23 18:28:02 -0300 | [diff] [blame] | 432 | amradio_setfreq(radio, radio->curfreq); |
David Ellingsworth | d8970e5 | 2009-09-23 18:24:47 -0300 | [diff] [blame] | 433 | |
David Ellingsworth | 16a72f4 | 2009-09-23 18:28:02 -0300 | [diff] [blame] | 434 | if (!radio->muted) |
| 435 | amradio_set_mute(radio, AMRADIO_START); |
David Ellingsworth | d8970e5 | 2009-09-23 18:24:47 -0300 | [diff] [blame] | 436 | |
Hans Verkuil | a682d4c | 2010-10-17 09:26:18 -0300 | [diff] [blame] | 437 | mutex_unlock(&radio->lock); |
| 438 | |
Alexey Klimov | e60b022 | 2008-11-04 15:02:36 -0300 | [diff] [blame] | 439 | dev_info(&intf->dev, "coming out of suspend..\n"); |
Alexey Klimov | 2aa72f3 | 2008-10-01 09:40:59 -0300 | [diff] [blame] | 440 | return 0; |
| 441 | } |
| 442 | |
Hans Verkuil | 85578b0 | 2012-04-27 12:30:40 -0300 | [diff] [blame] | 443 | static const struct v4l2_ctrl_ops usb_amradio_ctrl_ops = { |
| 444 | .s_ctrl = usb_amradio_s_ctrl, |
| 445 | }; |
| 446 | |
Alexey Klimov | 2aa72f3 | 2008-10-01 09:40:59 -0300 | [diff] [blame] | 447 | /* File system interface */ |
Hans Verkuil | bec4366 | 2008-12-30 06:58:20 -0300 | [diff] [blame] | 448 | static const struct v4l2_file_operations usb_amradio_fops = { |
Alexey Klimov | 2aa72f3 | 2008-10-01 09:40:59 -0300 | [diff] [blame] | 449 | .owner = THIS_MODULE, |
Hans Verkuil | 85578b0 | 2012-04-27 12:30:40 -0300 | [diff] [blame] | 450 | .open = v4l2_fh_open, |
| 451 | .release = v4l2_fh_release, |
| 452 | .poll = v4l2_ctrl_poll, |
Hans Verkuil | 361ae54 | 2010-09-26 08:01:18 -0300 | [diff] [blame] | 453 | .unlocked_ioctl = video_ioctl2, |
Alexey Klimov | 2aa72f3 | 2008-10-01 09:40:59 -0300 | [diff] [blame] | 454 | }; |
| 455 | |
| 456 | static 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 Verkuil | 85578b0 | 2012-04-27 12:30:40 -0300 | [diff] [blame] | 462 | .vidioc_log_status = v4l2_ctrl_log_status, |
| 463 | .vidioc_subscribe_event = v4l2_ctrl_subscribe_event, |
| 464 | .vidioc_unsubscribe_event = v4l2_event_unsubscribe, |
Alexey Klimov | 2aa72f3 | 2008-10-01 09:40:59 -0300 | [diff] [blame] | 465 | }; |
| 466 | |
Hans Verkuil | 85578b0 | 2012-04-27 12:30:40 -0300 | [diff] [blame] | 467 | static void usb_amradio_release(struct v4l2_device *v4l2_dev) |
Alexey Klimov | f4e9043 | 2008-12-27 21:30:34 -0300 | [diff] [blame] | 468 | { |
Hans Verkuil | 85578b0 | 2012-04-27 12:30:40 -0300 | [diff] [blame] | 469 | struct amradio_device *radio = to_amradio_dev(v4l2_dev); |
Alexey Klimov | b466248 | 2009-04-03 18:45:27 -0300 | [diff] [blame] | 470 | |
Alexey Klimov | f4e9043 | 2008-12-27 21:30:34 -0300 | [diff] [blame] | 471 | /* free rest memory */ |
Hans Verkuil | 85578b0 | 2012-04-27 12:30:40 -0300 | [diff] [blame] | 472 | v4l2_ctrl_handler_free(&radio->hdl); |
| 473 | v4l2_device_unregister(&radio->v4l2_dev); |
Alexey Klimov | f4e9043 | 2008-12-27 21:30:34 -0300 | [diff] [blame] | 474 | kfree(radio->buffer); |
| 475 | kfree(radio); |
| 476 | } |
| 477 | |
Alexey Klimov | a5d6947 | 2009-02-05 08:48:43 -0300 | [diff] [blame] | 478 | /* check if the device is present and register with v4l and usb if it is */ |
Alexey Klimov | 2aa72f3 | 2008-10-01 09:40:59 -0300 | [diff] [blame] | 479 | static int usb_amradio_probe(struct usb_interface *intf, |
| 480 | const struct usb_device_id *id) |
| 481 | { |
| 482 | struct amradio_device *radio; |
David Ellingsworth | 1b8bbb3 | 2009-09-22 21:43:19 -0300 | [diff] [blame] | 483 | int retval = 0; |
Alexey Klimov | 2aa72f3 | 2008-10-01 09:40:59 -0300 | [diff] [blame] | 484 | |
Alexey Klimov | b466248 | 2009-04-03 18:45:27 -0300 | [diff] [blame] | 485 | radio = kzalloc(sizeof(struct amradio_device), GFP_KERNEL); |
Alexey Klimov | 2aa72f3 | 2008-10-01 09:40:59 -0300 | [diff] [blame] | 486 | |
Alexey Klimov | 8edafcc | 2009-02-05 08:51:51 -0300 | [diff] [blame] | 487 | if (!radio) { |
| 488 | dev_err(&intf->dev, "kmalloc for amradio_device failed\n"); |
David Ellingsworth | 1b8bbb3 | 2009-09-22 21:43:19 -0300 | [diff] [blame] | 489 | retval = -ENOMEM; |
| 490 | goto err; |
Alexey Klimov | 8edafcc | 2009-02-05 08:51:51 -0300 | [diff] [blame] | 491 | } |
Alexey Klimov | 2aa72f3 | 2008-10-01 09:40:59 -0300 | [diff] [blame] | 492 | |
| 493 | radio->buffer = kmalloc(BUFFER_LENGTH, GFP_KERNEL); |
| 494 | |
Alexey Klimov | 8edafcc | 2009-02-05 08:51:51 -0300 | [diff] [blame] | 495 | if (!radio->buffer) { |
| 496 | dev_err(&intf->dev, "kmalloc for radio->buffer failed\n"); |
David Ellingsworth | 1b8bbb3 | 2009-09-22 21:43:19 -0300 | [diff] [blame] | 497 | retval = -ENOMEM; |
| 498 | goto err_nobuf; |
Alexey Klimov | 2aa72f3 | 2008-10-01 09:40:59 -0300 | [diff] [blame] | 499 | } |
| 500 | |
David Ellingsworth | d1939e4 | 2009-09-22 21:48:43 -0300 | [diff] [blame] | 501 | retval = v4l2_device_register(&intf->dev, &radio->v4l2_dev); |
Alexey Klimov | b466248 | 2009-04-03 18:45:27 -0300 | [diff] [blame] | 502 | if (retval < 0) { |
| 503 | dev_err(&intf->dev, "couldn't register v4l2_device\n"); |
David Ellingsworth | 1b8bbb3 | 2009-09-22 21:43:19 -0300 | [diff] [blame] | 504 | goto err_v4l2; |
Alexey Klimov | b466248 | 2009-04-03 18:45:27 -0300 | [diff] [blame] | 505 | } |
| 506 | |
Hans Verkuil | 85578b0 | 2012-04-27 12:30:40 -0300 | [diff] [blame] | 507 | 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 Verkuil | 361ae54 | 2010-09-26 08:01:18 -0300 | [diff] [blame] | 515 | mutex_init(&radio->lock); |
| 516 | |
Hans Verkuil | 85578b0 | 2012-04-27 12:30:40 -0300 | [diff] [blame] | 517 | 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 Klimov | 2aa72f3 | 2008-10-01 09:40:59 -0300 | [diff] [blame] | 527 | |
Alexey Klimov | 2aa72f3 | 2008-10-01 09:40:59 -0300 | [diff] [blame] | 528 | radio->usbdev = interface_to_usbdev(intf); |
Oliver Neukum | d89ce0d | 2009-11-09 19:09:49 -0300 | [diff] [blame] | 529 | radio->intf = intf; |
Hans Verkuil | 85578b0 | 2012-04-27 12:30:40 -0300 | [diff] [blame] | 530 | usb_set_intfdata(intf, &radio->v4l2_dev); |
Alexey Klimov | 2aa72f3 | 2008-10-01 09:40:59 -0300 | [diff] [blame] | 531 | radio->curfreq = 95.16 * FREQ_MUL; |
| 532 | |
Hans Verkuil | 85578b0 | 2012-04-27 12:30:40 -0300 | [diff] [blame] | 533 | video_set_drvdata(&radio->vdev, radio); |
| 534 | retval = usb_amradio_init(radio); |
| 535 | if (retval) |
| 536 | goto err_vdev; |
Alexey Klimov | b466248 | 2009-04-03 18:45:27 -0300 | [diff] [blame] | 537 | |
Hans Verkuil | 85578b0 | 2012-04-27 12:30:40 -0300 | [diff] [blame] | 538 | retval = video_register_device(&radio->vdev, VFL_TYPE_RADIO, |
David Ellingsworth | 7a7d92e | 2009-09-22 21:37:30 -0300 | [diff] [blame] | 539 | radio_nr); |
Alexey Klimov | a5d6947 | 2009-02-05 08:48:43 -0300 | [diff] [blame] | 540 | if (retval < 0) { |
Alexey Klimov | 65c51dc | 2009-02-05 08:49:58 -0300 | [diff] [blame] | 541 | dev_err(&intf->dev, "could not register video device\n"); |
David Ellingsworth | 1b8bbb3 | 2009-09-22 21:43:19 -0300 | [diff] [blame] | 542 | goto err_vdev; |
Alexey Klimov | 2aa72f3 | 2008-10-01 09:40:59 -0300 | [diff] [blame] | 543 | } |
| 544 | |
Alexey Klimov | 2aa72f3 | 2008-10-01 09:40:59 -0300 | [diff] [blame] | 545 | return 0; |
David Ellingsworth | 1b8bbb3 | 2009-09-22 21:43:19 -0300 | [diff] [blame] | 546 | |
| 547 | err_vdev: |
Hans Verkuil | 85578b0 | 2012-04-27 12:30:40 -0300 | [diff] [blame] | 548 | v4l2_ctrl_handler_free(&radio->hdl); |
| 549 | err_ctrl: |
David Ellingsworth | d1939e4 | 2009-09-22 21:48:43 -0300 | [diff] [blame] | 550 | v4l2_device_unregister(&radio->v4l2_dev); |
David Ellingsworth | 1b8bbb3 | 2009-09-22 21:43:19 -0300 | [diff] [blame] | 551 | err_v4l2: |
| 552 | kfree(radio->buffer); |
| 553 | err_nobuf: |
| 554 | kfree(radio); |
| 555 | err: |
| 556 | return retval; |
Alexey Klimov | 2aa72f3 | 2008-10-01 09:40:59 -0300 | [diff] [blame] | 557 | } |
| 558 | |
Hans Verkuil | 85578b0 | 2012-04-27 12:30:40 -0300 | [diff] [blame] | 559 | /* USB Device ID List */ |
| 560 | static 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 | |
| 566 | MODULE_DEVICE_TABLE(usb, usb_amradio_device_table); |
| 567 | |
| 568 | /* USB subsystem interface */ |
| 569 | static 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-Hartman | ecb3b2b | 2011-11-18 09:46:12 -0800 | [diff] [blame] | 579 | module_usb_driver(usb_amradio_driver); |