media: media/radio: set device_caps in struct video_device
[sfrench/cifs-2.6.git] / drivers / media / radio / radio-ma901.c
1 /*
2  * Driver for the MasterKit MA901 USB FM radio. This device plugs
3  * into the USB port and an analog audio input or headphones, so this thing
4  * only deals with initialization, frequency setting, volume.
5  *
6  * Copyright (c) 2012 Alexey Klimov <klimov.linux@gmail.com>
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  */
18
19 #include <linux/kernel.h>
20 #include <linux/module.h>
21 #include <linux/init.h>
22 #include <linux/slab.h>
23 #include <linux/input.h>
24 #include <linux/videodev2.h>
25 #include <media/v4l2-device.h>
26 #include <media/v4l2-ioctl.h>
27 #include <media/v4l2-ctrls.h>
28 #include <media/v4l2-event.h>
29 #include <linux/usb.h>
30 #include <linux/mutex.h>
31
32 #define DRIVER_AUTHOR "Alexey Klimov <klimov.linux@gmail.com>"
33 #define DRIVER_DESC "Masterkit MA901 USB FM radio driver"
34 #define DRIVER_VERSION "0.0.1"
35
36 MODULE_AUTHOR(DRIVER_AUTHOR);
37 MODULE_DESCRIPTION(DRIVER_DESC);
38 MODULE_LICENSE("GPL");
39 MODULE_VERSION(DRIVER_VERSION);
40
41 #define USB_MA901_VENDOR  0x16c0
42 #define USB_MA901_PRODUCT 0x05df
43
44 /* dev_warn macro with driver name */
45 #define MA901_DRIVER_NAME "radio-ma901"
46 #define ma901radio_dev_warn(dev, fmt, arg...)                           \
47                 dev_warn(dev, MA901_DRIVER_NAME " - " fmt, ##arg)
48
49 #define ma901radio_dev_err(dev, fmt, arg...) \
50                 dev_err(dev, MA901_DRIVER_NAME " - " fmt, ##arg)
51
52 /* Probably USB_TIMEOUT should be modified in module parameter */
53 #define BUFFER_LENGTH 8
54 #define USB_TIMEOUT 500
55
56 #define FREQ_MIN  87.5
57 #define FREQ_MAX 108.0
58 #define FREQ_MUL 16000
59
60 #define MA901_VOLUME_MAX 16
61 #define MA901_VOLUME_MIN 0
62
63 /* Commands that device should understand
64  * List isn't full and will be updated with implementation of new functions
65  */
66 #define MA901_RADIO_SET_FREQ            0x03
67 #define MA901_RADIO_SET_VOLUME          0x04
68 #define MA901_RADIO_SET_MONO_STEREO     0x05
69
70 /* Comfortable defines for ma901radio_set_stereo */
71 #define MA901_WANT_STEREO               0x50
72 #define MA901_WANT_MONO                 0xd0
73
74 /* module parameter */
75 static int radio_nr = -1;
76 module_param(radio_nr, int, 0);
77 MODULE_PARM_DESC(radio_nr, "Radio file number");
78
79 /* Data for one (physical) device */
80 struct ma901radio_device {
81         /* reference to USB and video device */
82         struct usb_device *usbdev;
83         struct usb_interface *intf;
84         struct video_device vdev;
85         struct v4l2_device v4l2_dev;
86         struct v4l2_ctrl_handler hdl;
87
88         u8 *buffer;
89         struct mutex lock;      /* buffer locking */
90         int curfreq;
91         u16 volume;
92         int stereo;
93         bool muted;
94 };
95
96 static inline struct ma901radio_device *to_ma901radio_dev(struct v4l2_device *v4l2_dev)
97 {
98         return container_of(v4l2_dev, struct ma901radio_device, v4l2_dev);
99 }
100
101 /* set a frequency, freq is defined by v4l's TUNER_LOW, i.e. 1/16th kHz */
102 static int ma901radio_set_freq(struct ma901radio_device *radio, int freq)
103 {
104         unsigned int freq_send = 0x300 + (freq >> 5) / 25;
105         int retval;
106
107         radio->buffer[0] = 0x0a;
108         radio->buffer[1] = MA901_RADIO_SET_FREQ;
109         radio->buffer[2] = ((freq_send >> 8) & 0xff) + 0x80;
110         radio->buffer[3] = freq_send & 0xff;
111         radio->buffer[4] = 0x00;
112         radio->buffer[5] = 0x00;
113         radio->buffer[6] = 0x00;
114         radio->buffer[7] = 0x00;
115
116         retval = usb_control_msg(radio->usbdev, usb_sndctrlpipe(radio->usbdev, 0),
117                                 9, 0x21, 0x0300, 0,
118                                 radio->buffer, BUFFER_LENGTH, USB_TIMEOUT);
119         if (retval < 0)
120                 return retval;
121
122         radio->curfreq = freq;
123         return 0;
124 }
125
126 static int ma901radio_set_volume(struct ma901radio_device *radio, u16 vol_to_set)
127 {
128         int retval;
129
130         radio->buffer[0] = 0x0a;
131         radio->buffer[1] = MA901_RADIO_SET_VOLUME;
132         radio->buffer[2] = 0xc2;
133         radio->buffer[3] = vol_to_set + 0x20;
134         radio->buffer[4] = 0x00;
135         radio->buffer[5] = 0x00;
136         radio->buffer[6] = 0x00;
137         radio->buffer[7] = 0x00;
138
139         retval = usb_control_msg(radio->usbdev, usb_sndctrlpipe(radio->usbdev, 0),
140                                 9, 0x21, 0x0300, 0,
141                                 radio->buffer, BUFFER_LENGTH, USB_TIMEOUT);
142         if (retval < 0)
143                 return retval;
144
145         radio->volume = vol_to_set;
146         return retval;
147 }
148
149 static int ma901_set_stereo(struct ma901radio_device *radio, u8 stereo)
150 {
151         int retval;
152
153         radio->buffer[0] = 0x0a;
154         radio->buffer[1] = MA901_RADIO_SET_MONO_STEREO;
155         radio->buffer[2] = stereo;
156         radio->buffer[3] = 0x00;
157         radio->buffer[4] = 0x00;
158         radio->buffer[5] = 0x00;
159         radio->buffer[6] = 0x00;
160         radio->buffer[7] = 0x00;
161
162         retval = usb_control_msg(radio->usbdev, usb_sndctrlpipe(radio->usbdev, 0),
163                                 9, 0x21, 0x0300, 0,
164                                 radio->buffer, BUFFER_LENGTH, USB_TIMEOUT);
165
166         if (retval < 0)
167                 return retval;
168
169         if (stereo == MA901_WANT_STEREO)
170                 radio->stereo = V4L2_TUNER_MODE_STEREO;
171         else
172                 radio->stereo = V4L2_TUNER_MODE_MONO;
173
174         return retval;
175 }
176
177 /* Handle unplugging the device.
178  * We call video_unregister_device in any case.
179  * The last function called in this procedure is
180  * usb_ma901radio_device_release.
181  */
182 static void usb_ma901radio_disconnect(struct usb_interface *intf)
183 {
184         struct ma901radio_device *radio = to_ma901radio_dev(usb_get_intfdata(intf));
185
186         mutex_lock(&radio->lock);
187         video_unregister_device(&radio->vdev);
188         usb_set_intfdata(intf, NULL);
189         v4l2_device_disconnect(&radio->v4l2_dev);
190         mutex_unlock(&radio->lock);
191         v4l2_device_put(&radio->v4l2_dev);
192 }
193
194 /* vidioc_querycap - query device capabilities */
195 static int vidioc_querycap(struct file *file, void *priv,
196                                         struct v4l2_capability *v)
197 {
198         struct ma901radio_device *radio = video_drvdata(file);
199
200         strscpy(v->driver, "radio-ma901", sizeof(v->driver));
201         strscpy(v->card, "Masterkit MA901 USB FM Radio", sizeof(v->card));
202         usb_make_path(radio->usbdev, v->bus_info, sizeof(v->bus_info));
203         return 0;
204 }
205
206 /* vidioc_g_tuner - get tuner attributes */
207 static int vidioc_g_tuner(struct file *file, void *priv,
208                                 struct v4l2_tuner *v)
209 {
210         struct ma901radio_device *radio = video_drvdata(file);
211
212         if (v->index > 0)
213                 return -EINVAL;
214
215         v->signal = 0;
216
217         /* TODO: the same words like in _probe() goes here.
218          * When receiving of stats will be implemented then we can call
219          * ma901radio_get_stat().
220          * retval = ma901radio_get_stat(radio, &is_stereo, &v->signal);
221          */
222
223         strscpy(v->name, "FM", sizeof(v->name));
224         v->type = V4L2_TUNER_RADIO;
225         v->rangelow = FREQ_MIN * FREQ_MUL;
226         v->rangehigh = FREQ_MAX * FREQ_MUL;
227         v->capability = V4L2_TUNER_CAP_LOW | V4L2_TUNER_CAP_STEREO;
228         /* v->rxsubchans = is_stereo ? V4L2_TUNER_SUB_STEREO : V4L2_TUNER_SUB_MONO; */
229         v->audmode = radio->stereo ?
230                 V4L2_TUNER_MODE_STEREO : V4L2_TUNER_MODE_MONO;
231         return 0;
232 }
233
234 /* vidioc_s_tuner - set tuner attributes */
235 static int vidioc_s_tuner(struct file *file, void *priv,
236                                 const struct v4l2_tuner *v)
237 {
238         struct ma901radio_device *radio = video_drvdata(file);
239
240         if (v->index > 0)
241                 return -EINVAL;
242
243         /* mono/stereo selector */
244         switch (v->audmode) {
245         case V4L2_TUNER_MODE_MONO:
246                 return ma901_set_stereo(radio, MA901_WANT_MONO);
247         default:
248                 return ma901_set_stereo(radio, MA901_WANT_STEREO);
249         }
250 }
251
252 /* vidioc_s_frequency - set tuner radio frequency */
253 static int vidioc_s_frequency(struct file *file, void *priv,
254                                 const struct v4l2_frequency *f)
255 {
256         struct ma901radio_device *radio = video_drvdata(file);
257
258         if (f->tuner != 0)
259                 return -EINVAL;
260
261         return ma901radio_set_freq(radio, clamp_t(unsigned, f->frequency,
262                                 FREQ_MIN * FREQ_MUL, FREQ_MAX * FREQ_MUL));
263 }
264
265 /* vidioc_g_frequency - get tuner radio frequency */
266 static int vidioc_g_frequency(struct file *file, void *priv,
267                                 struct v4l2_frequency *f)
268 {
269         struct ma901radio_device *radio = video_drvdata(file);
270
271         if (f->tuner != 0)
272                 return -EINVAL;
273         f->frequency = radio->curfreq;
274
275         return 0;
276 }
277
278 static int usb_ma901radio_s_ctrl(struct v4l2_ctrl *ctrl)
279 {
280         struct ma901radio_device *radio =
281                 container_of(ctrl->handler, struct ma901radio_device, hdl);
282
283         switch (ctrl->id) {
284         case V4L2_CID_AUDIO_VOLUME:     /* set volume */
285                 return ma901radio_set_volume(radio, (u16)ctrl->val);
286         }
287
288         return -EINVAL;
289 }
290
291 /* TODO: Should we really need to implement suspend and resume functions?
292  * Radio has it's own memory and will continue playing if power is present
293  * on usb port and on resume it will start to play again based on freq, volume
294  * values in device memory.
295  */
296 static int usb_ma901radio_suspend(struct usb_interface *intf, pm_message_t message)
297 {
298         return 0;
299 }
300
301 static int usb_ma901radio_resume(struct usb_interface *intf)
302 {
303         return 0;
304 }
305
306 static const struct v4l2_ctrl_ops usb_ma901radio_ctrl_ops = {
307         .s_ctrl = usb_ma901radio_s_ctrl,
308 };
309
310 /* File system interface */
311 static const struct v4l2_file_operations usb_ma901radio_fops = {
312         .owner          = THIS_MODULE,
313         .open           = v4l2_fh_open,
314         .release        = v4l2_fh_release,
315         .poll           = v4l2_ctrl_poll,
316         .unlocked_ioctl = video_ioctl2,
317 };
318
319 static const struct v4l2_ioctl_ops usb_ma901radio_ioctl_ops = {
320         .vidioc_querycap    = vidioc_querycap,
321         .vidioc_g_tuner     = vidioc_g_tuner,
322         .vidioc_s_tuner     = vidioc_s_tuner,
323         .vidioc_g_frequency = vidioc_g_frequency,
324         .vidioc_s_frequency = vidioc_s_frequency,
325         .vidioc_log_status  = v4l2_ctrl_log_status,
326         .vidioc_subscribe_event = v4l2_ctrl_subscribe_event,
327         .vidioc_unsubscribe_event = v4l2_event_unsubscribe,
328 };
329
330 static void usb_ma901radio_release(struct v4l2_device *v4l2_dev)
331 {
332         struct ma901radio_device *radio = to_ma901radio_dev(v4l2_dev);
333
334         v4l2_ctrl_handler_free(&radio->hdl);
335         v4l2_device_unregister(&radio->v4l2_dev);
336         kfree(radio->buffer);
337         kfree(radio);
338 }
339
340 /* check if the device is present and register with v4l and usb if it is */
341 static int usb_ma901radio_probe(struct usb_interface *intf,
342                                 const struct usb_device_id *id)
343 {
344         struct usb_device *dev = interface_to_usbdev(intf);
345         struct ma901radio_device *radio;
346         int retval = 0;
347
348         /* Masterkit MA901 usb radio has the same USB ID as many others
349          * Atmel V-USB devices. Let's make additional checks to be sure
350          * that this is our device.
351          */
352
353         if (dev->product && dev->manufacturer &&
354                 (strncmp(dev->product, "MA901", 5) != 0
355                 || strncmp(dev->manufacturer, "www.masterkit.ru", 16) != 0))
356                 return -ENODEV;
357
358         radio = kzalloc(sizeof(struct ma901radio_device), GFP_KERNEL);
359         if (!radio) {
360                 dev_err(&intf->dev, "kzalloc for ma901radio_device failed\n");
361                 retval = -ENOMEM;
362                 goto err;
363         }
364
365         radio->buffer = kmalloc(BUFFER_LENGTH, GFP_KERNEL);
366         if (!radio->buffer) {
367                 dev_err(&intf->dev, "kmalloc for radio->buffer failed\n");
368                 retval = -ENOMEM;
369                 goto err_nobuf;
370         }
371
372         retval = v4l2_device_register(&intf->dev, &radio->v4l2_dev);
373         if (retval < 0) {
374                 dev_err(&intf->dev, "couldn't register v4l2_device\n");
375                 goto err_v4l2;
376         }
377
378         v4l2_ctrl_handler_init(&radio->hdl, 1);
379
380         /* TODO:It looks like this radio doesn't have mute/unmute control
381          * and windows program just emulate it using volume control.
382          * Let's plan to do the same in this driver.
383          *
384          * v4l2_ctrl_new_std(&radio->hdl, &usb_ma901radio_ctrl_ops,
385          *                V4L2_CID_AUDIO_MUTE, 0, 1, 1, 1);
386          */
387
388         v4l2_ctrl_new_std(&radio->hdl, &usb_ma901radio_ctrl_ops,
389                           V4L2_CID_AUDIO_VOLUME, MA901_VOLUME_MIN,
390                           MA901_VOLUME_MAX, 1, MA901_VOLUME_MAX);
391
392         if (radio->hdl.error) {
393                 retval = radio->hdl.error;
394                 dev_err(&intf->dev, "couldn't register control\n");
395                 goto err_ctrl;
396         }
397         mutex_init(&radio->lock);
398
399         radio->v4l2_dev.ctrl_handler = &radio->hdl;
400         radio->v4l2_dev.release = usb_ma901radio_release;
401         strscpy(radio->vdev.name, radio->v4l2_dev.name,
402                 sizeof(radio->vdev.name));
403         radio->vdev.v4l2_dev = &radio->v4l2_dev;
404         radio->vdev.fops = &usb_ma901radio_fops;
405         radio->vdev.ioctl_ops = &usb_ma901radio_ioctl_ops;
406         radio->vdev.release = video_device_release_empty;
407         radio->vdev.lock = &radio->lock;
408         radio->vdev.device_caps = V4L2_CAP_RADIO | V4L2_CAP_TUNER;
409
410         radio->usbdev = interface_to_usbdev(intf);
411         radio->intf = intf;
412         usb_set_intfdata(intf, &radio->v4l2_dev);
413         radio->curfreq = 95.21 * FREQ_MUL;
414
415         video_set_drvdata(&radio->vdev, radio);
416
417         /* TODO: we can get some statistics (freq, volume) from device
418          * but it's not implemented yet. After insertion in usb-port radio
419          * setups frequency and starts playing without any initialization.
420          * So we don't call usb_ma901radio_init/get_stat() here.
421          * retval = usb_ma901radio_init(radio);
422          */
423
424         retval = video_register_device(&radio->vdev, VFL_TYPE_RADIO,
425                                         radio_nr);
426         if (retval < 0) {
427                 dev_err(&intf->dev, "could not register video device\n");
428                 goto err_vdev;
429         }
430
431         return 0;
432
433 err_vdev:
434         v4l2_ctrl_handler_free(&radio->hdl);
435 err_ctrl:
436         v4l2_device_unregister(&radio->v4l2_dev);
437 err_v4l2:
438         kfree(radio->buffer);
439 err_nobuf:
440         kfree(radio);
441 err:
442         return retval;
443 }
444
445 /* USB Device ID List */
446 static const struct usb_device_id usb_ma901radio_device_table[] = {
447         { USB_DEVICE_AND_INTERFACE_INFO(USB_MA901_VENDOR, USB_MA901_PRODUCT,
448                                                         USB_CLASS_HID, 0, 0) },
449         { }                                             /* Terminating entry */
450 };
451
452 MODULE_DEVICE_TABLE(usb, usb_ma901radio_device_table);
453
454 /* USB subsystem interface */
455 static struct usb_driver usb_ma901radio_driver = {
456         .name                   = MA901_DRIVER_NAME,
457         .probe                  = usb_ma901radio_probe,
458         .disconnect             = usb_ma901radio_disconnect,
459         .suspend                = usb_ma901radio_suspend,
460         .resume                 = usb_ma901radio_resume,
461         .reset_resume           = usb_ma901radio_resume,
462         .id_table               = usb_ma901radio_device_table,
463 };
464
465 module_usb_driver(usb_ma901radio_driver);