blob: e85f318b4d2b4131ff00395e61d17c66eeeecc18 [file] [log] [blame]
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001/*
2 * drivers/media/radio/radio-si470x.c
3 *
4 * Driver for USB radios for the Silicon Labs Si470x FM Radio Receivers:
5 * - Silicon Labs USB FM Radio Reference Design
6 * - ADS/Tech FM Radio Receiver (formerly Instant FM Music) (RDX-155-EF)
Alexey Klimov69df96c2008-10-23 09:20:27 -03007 * - KWorld USB FM Radio SnapMusic Mobile 700 (FM700)
Tobias Lorenz00ec8d02009-02-12 14:55:45 -03008 * - Sanei Electric, Inc. FM USB Radio (sold as DealExtreme.com PCear)
Tobias Lorenz78656ac2008-01-14 21:55:27 -03009 *
Tobias Lorenz00ec8d02009-02-12 14:55:45 -030010 * Copyright (c) 2009 Tobias Lorenz <tobias.lorenz@gmx.net>
Tobias Lorenz78656ac2008-01-14 21:55:27 -030011 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25 */
26
27
28/*
29 * History:
30 * 2008-01-12 Tobias Lorenz <tobias.lorenz@gmx.net>
31 * Version 1.0.0
32 * - First working version
Tobias Lorenz00ec8d02009-02-12 14:55:45 -030033 * 2008-01-13 Tobias Lorenz <tobias.lorenz@gmx.net>
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -030034 * Version 1.0.1
Tobias Lorenz78656ac2008-01-14 21:55:27 -030035 * - Improved error handling, every function now returns errno
36 * - Improved multi user access (start/mute/stop)
37 * - Channel doesn't get lost anymore after start/mute/stop
38 * - RDS support added (polling mode via interrupt EP 1)
39 * - marked default module parameters with *value*
40 * - switched from bit structs to bit masks
41 * - header file cleaned and integrated
42 * 2008-01-14 Tobias Lorenz <tobias.lorenz@gmx.net>
43 * Version 1.0.2
44 * - hex values are now lower case
45 * - commented USB ID for ADS/Tech moved on todo list
46 * - blacklisted si470x in hid-quirks.c
47 * - rds buffer handling functions integrated into *_work, *_read
48 * - rds_command in si470x_poll exchanged against simple retval
49 * - check for firmware version 15
50 * - code order and prototypes still remain the same
51 * - spacing and bottom of band codes remain the same
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -030052 * 2008-01-16 Tobias Lorenz <tobias.lorenz@gmx.net>
53 * Version 1.0.3
54 * - code reordered to avoid function prototypes
55 * - switch/case defaults are now more user-friendly
56 * - unified comment style
57 * - applied all checkpatch.pl v1.12 suggestions
58 * except the warning about the too long lines with bit comments
59 * - renamed FMRADIO to RADIO to cut line length (checkpatch.pl)
Tobias Lorenz2fb88402008-01-25 05:14:57 -030060 * 2008-01-22 Tobias Lorenz <tobias.lorenz@gmx.net>
61 * Version 1.0.4
62 * - avoid poss. locking when doing copy_to_user which may sleep
63 * - RDS is automatically activated on read now
64 * - code cleaned of unnecessary rds_commands
65 * - USB Vendor/Product ID for ADS/Tech FM Radio Receiver verified
66 * (thanks to Guillaume RAMOUSSE)
Tobias Lorenz0e3301e2008-01-27 14:54:07 -030067 * 2008-01-27 Tobias Lorenz <tobias.lorenz@gmx.net>
68 * Version 1.0.5
69 * - number of seek_retries changed to tune_timeout
70 * - fixed problem with incomplete tune operations by own buffers
Tobias Lorenz5caf5132008-02-04 22:26:08 -030071 * - optimization of variables and printf types
Tobias Lorenz0e3301e2008-01-27 14:54:07 -030072 * - improved error logging
Tobias Lorenz5caf5132008-02-04 22:26:08 -030073 * 2008-01-31 Tobias Lorenz <tobias.lorenz@gmx.net>
74 * Oliver Neukum <oliver@neukum.org>
75 * Version 1.0.6
76 * - fixed coverity checker warnings in *_usb_driver_disconnect
77 * - probe()/open() race by correct ordering in probe()
78 * - DMA coherency rules by separate allocation of all buffers
79 * - use of endianness macros
80 * - abuse of spinlock, replaced by mutex
81 * - racy handling of timer in disconnect,
82 * replaced by delayed_work
83 * - racy interruptible_sleep_on(),
84 * replaced with wait_event_interruptible()
85 * - handle signals in read()
Tobias Lorenz57566ad2008-02-09 16:08:24 -030086 * 2008-02-08 Tobias Lorenz <tobias.lorenz@gmx.net>
87 * Oliver Neukum <oliver@neukum.org>
88 * Version 1.0.7
89 * - usb autosuspend support
Tobias Lorenzce5829e2008-05-31 15:04:32 -030090 * - unplugging fixed
Tobias Lorenz6cc72652008-05-31 15:06:50 -030091 * 2008-05-07 Tobias Lorenz <tobias.lorenz@gmx.net>
92 * Version 1.0.8
Tobias Lorenzbbc89952008-05-31 15:11:32 -030093 * - hardware frequency seek support
Tobias Lorenzace7d4b2008-05-31 15:09:07 -030094 * - afc indication
Tobias Lorenza7c850a2008-05-31 15:07:52 -030095 * - more safety checks, let si470x_get_freq return errno
Tobias Lorenz33632d42008-09-24 19:30:26 -030096 * - vidioc behavior corrected according to v4l2 spec
Alexey Klimov69df96c2008-10-23 09:20:27 -030097 * 2008-10-20 Alexey Klimov <klimov.linux@gmail.com>
98 * - add support for KWorld USB FM Radio FM700
99 * - blacklisted KWorld radio in hid-core.c and hid-ids.h
Mark Lord5e6de7d2008-12-03 15:26:15 -0300100 * 2008-12-03 Mark Lord <mlord@pobox.com>
101 * - add support for DealExtreme USB Radio
Tobias Lorenzd807dec2009-02-12 14:56:10 -0300102 * 2009-01-31 Bob Ross <pigiron@gmx.com>
103 * - correction of stereo detection/setting
104 * - correction of signal strength indicator scaling
Tobias Lorenz2f94fc42009-02-12 14:56:19 -0300105 * 2009-01-31 Rick Bronson <rick@efn.org>
106 * Tobias Lorenz <tobias.lorenz@gmx.net>
107 * - add LED status output
Tobias Lorenz10711d02009-02-12 14:56:30 -0300108 * - get HW/SW version from scratchpad
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300109 *
110 * ToDo:
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300111 * - add firmware download/update support
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300112 * - RDS support: interrupt mode, instead of polling
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300113 */
114
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300115
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300116/* driver definitions */
117#define DRIVER_AUTHOR "Tobias Lorenz <tobias.lorenz@gmx.net>"
118#define DRIVER_NAME "radio-si470x"
Tobias Lorenz10711d02009-02-12 14:56:30 -0300119#define DRIVER_KERNEL_VERSION KERNEL_VERSION(1, 0, 9)
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300120#define DRIVER_CARD "Silicon Labs Si470x FM Radio Receiver"
121#define DRIVER_DESC "USB radio driver for Si470x FM Radio Receivers"
Tobias Lorenz10711d02009-02-12 14:56:30 -0300122#define DRIVER_VERSION "1.0.9"
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300123
124
125/* kernel includes */
126#include <linux/kernel.h>
127#include <linux/module.h>
128#include <linux/init.h>
129#include <linux/slab.h>
Alexey Dobriyan405f5572009-07-11 22:08:37 +0400130#include <linux/smp_lock.h>
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300131#include <linux/input.h>
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300132#include <linux/usb.h>
133#include <linux/hid.h>
134#include <linux/version.h>
Mauro Carvalho Chehab387d4472008-01-15 11:25:10 -0300135#include <linux/videodev2.h>
Tobias Lorenz5caf5132008-02-04 22:26:08 -0300136#include <linux/mutex.h>
Mauro Carvalho Chehab387d4472008-01-15 11:25:10 -0300137#include <media/v4l2-common.h>
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300138#include <media/v4l2-ioctl.h>
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300139#include <media/rds.h>
Tobias Lorenz5caf5132008-02-04 22:26:08 -0300140#include <asm/unaligned.h>
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300141
142
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300143/* USB Device ID List */
144static struct usb_device_id si470x_usb_driver_id_table[] = {
145 /* Silicon Labs USB FM Radio Reference Design */
Tobias Lorenz374ab682008-09-24 19:17:54 -0300146 { USB_DEVICE_AND_INTERFACE_INFO(0x10c4, 0x818a, USB_CLASS_HID, 0, 0) },
Tobias Lorenz2fb88402008-01-25 05:14:57 -0300147 /* ADS/Tech FM Radio Receiver (formerly Instant FM Music) */
Tobias Lorenz374ab682008-09-24 19:17:54 -0300148 { USB_DEVICE_AND_INTERFACE_INFO(0x06e1, 0xa155, USB_CLASS_HID, 0, 0) },
Alexey Klimov69df96c2008-10-23 09:20:27 -0300149 /* KWorld USB FM Radio SnapMusic Mobile 700 (FM700) */
150 { USB_DEVICE_AND_INTERFACE_INFO(0x1b80, 0xd700, USB_CLASS_HID, 0, 0) },
Tobias Lorenz00ec8d02009-02-12 14:55:45 -0300151 /* Sanei Electric, Inc. FM USB Radio (sold as DealExtreme.com PCear) */
Mark Lord5e6de7d2008-12-03 15:26:15 -0300152 { USB_DEVICE_AND_INTERFACE_INFO(0x10c5, 0x819a, USB_CLASS_HID, 0, 0) },
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300153 /* Terminating entry */
154 { }
155};
156MODULE_DEVICE_TABLE(usb, si470x_usb_driver_id_table);
157
158
159
160/**************************************************************************
161 * Module Parameters
162 **************************************************************************/
163
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300164/* Radio Nr */
165static int radio_nr = -1;
Tobias Lorenz374ab682008-09-24 19:17:54 -0300166module_param(radio_nr, int, 0444);
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300167MODULE_PARM_DESC(radio_nr, "Radio Nr");
168
169/* Spacing (kHz) */
170/* 0: 200 kHz (USA, Australia) */
171/* 1: 100 kHz (Europe, Japan) */
172/* 2: 50 kHz */
Tobias Lorenz0e3301e2008-01-27 14:54:07 -0300173static unsigned short space = 2;
Tobias Lorenz374ab682008-09-24 19:17:54 -0300174module_param(space, ushort, 0444);
175MODULE_PARM_DESC(space, "Spacing: 0=200kHz 1=100kHz *2=50kHz*");
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300176
177/* Bottom of Band (MHz) */
178/* 0: 87.5 - 108 MHz (USA, Europe)*/
179/* 1: 76 - 108 MHz (Japan wide band) */
180/* 2: 76 - 90 MHz (Japan) */
Tobias Lorenz0e3301e2008-01-27 14:54:07 -0300181static unsigned short band = 1;
Tobias Lorenz374ab682008-09-24 19:17:54 -0300182module_param(band, ushort, 0444);
183MODULE_PARM_DESC(band, "Band: 0=87.5..108MHz *1=76..108MHz* 2=76..90MHz");
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300184
185/* De-emphasis */
186/* 0: 75 us (USA) */
187/* 1: 50 us (Europe, Australia, Japan) */
Tobias Lorenz0e3301e2008-01-27 14:54:07 -0300188static unsigned short de = 1;
Tobias Lorenz374ab682008-09-24 19:17:54 -0300189module_param(de, ushort, 0444);
190MODULE_PARM_DESC(de, "De-emphasis: 0=75us *1=50us*");
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300191
192/* USB timeout */
Tobias Lorenz0e3301e2008-01-27 14:54:07 -0300193static unsigned int usb_timeout = 500;
Tobias Lorenz374ab682008-09-24 19:17:54 -0300194module_param(usb_timeout, uint, 0644);
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300195MODULE_PARM_DESC(usb_timeout, "USB timeout (ms): *500*");
196
Tobias Lorenz0e3301e2008-01-27 14:54:07 -0300197/* Tune timeout */
198static unsigned int tune_timeout = 3000;
Tobias Lorenz374ab682008-09-24 19:17:54 -0300199module_param(tune_timeout, uint, 0644);
Tobias Lorenz0e3301e2008-01-27 14:54:07 -0300200MODULE_PARM_DESC(tune_timeout, "Tune timeout: *3000*");
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300201
Tobias Lorenzbbc89952008-05-31 15:11:32 -0300202/* Seek timeout */
203static unsigned int seek_timeout = 5000;
Tobias Lorenz374ab682008-09-24 19:17:54 -0300204module_param(seek_timeout, uint, 0644);
Tobias Lorenzbbc89952008-05-31 15:11:32 -0300205MODULE_PARM_DESC(seek_timeout, "Seek timeout: *5000*");
206
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300207/* RDS buffer blocks */
Tobias Lorenz0e3301e2008-01-27 14:54:07 -0300208static unsigned int rds_buf = 100;
Tobias Lorenz374ab682008-09-24 19:17:54 -0300209module_param(rds_buf, uint, 0444);
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300210MODULE_PARM_DESC(rds_buf, "RDS buffer entries: *100*");
211
212/* RDS maximum block errors */
Tobias Lorenz0e3301e2008-01-27 14:54:07 -0300213static unsigned short max_rds_errors = 1;
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300214/* 0 means 0 errors requiring correction */
215/* 1 means 1-2 errors requiring correction (used by original USBRadio.exe) */
216/* 2 means 3-5 errors requiring correction */
217/* 3 means 6+ errors or errors in checkword, correction not possible */
Tobias Lorenz374ab682008-09-24 19:17:54 -0300218module_param(max_rds_errors, ushort, 0644);
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300219MODULE_PARM_DESC(max_rds_errors, "RDS maximum block errors: *1*");
220
221/* RDS poll frequency */
Tobias Lorenz0e3301e2008-01-27 14:54:07 -0300222static unsigned int rds_poll_time = 40;
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300223/* 40 is used by the original USBRadio.exe */
Tobias Lorenz2fb88402008-01-25 05:14:57 -0300224/* 50 is used by radio-cadet */
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300225/* 75 should be okay */
226/* 80 is the usual RDS receive interval */
Tobias Lorenz374ab682008-09-24 19:17:54 -0300227module_param(rds_poll_time, uint, 0644);
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300228MODULE_PARM_DESC(rds_poll_time, "RDS poll time (ms): *40*");
229
230
231
232/**************************************************************************
233 * Register Definitions
234 **************************************************************************/
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300235#define RADIO_REGISTER_SIZE 2 /* 16 register bit width */
236#define RADIO_REGISTER_NUM 16 /* DEVICEID ... RDSD */
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300237#define RDS_REGISTER_NUM 6 /* STATUSRSSI ... RDSD */
238
239#define DEVICEID 0 /* Device ID */
240#define DEVICEID_PN 0xf000 /* bits 15..12: Part Number */
241#define DEVICEID_MFGID 0x0fff /* bits 11..00: Manufacturer ID */
242
243#define CHIPID 1 /* Chip ID */
244#define CHIPID_REV 0xfc00 /* bits 15..10: Chip Version */
245#define CHIPID_DEV 0x0200 /* bits 09..09: Device */
246#define CHIPID_FIRMWARE 0x01ff /* bits 08..00: Firmware Version */
247
248#define POWERCFG 2 /* Power Configuration */
249#define POWERCFG_DSMUTE 0x8000 /* bits 15..15: Softmute Disable */
250#define POWERCFG_DMUTE 0x4000 /* bits 14..14: Mute Disable */
251#define POWERCFG_MONO 0x2000 /* bits 13..13: Mono Select */
252#define POWERCFG_RDSM 0x0800 /* bits 11..11: RDS Mode (Si4701 only) */
253#define POWERCFG_SKMODE 0x0400 /* bits 10..10: Seek Mode */
254#define POWERCFG_SEEKUP 0x0200 /* bits 09..09: Seek Direction */
255#define POWERCFG_SEEK 0x0100 /* bits 08..08: Seek */
256#define POWERCFG_DISABLE 0x0040 /* bits 06..06: Powerup Disable */
257#define POWERCFG_ENABLE 0x0001 /* bits 00..00: Powerup Enable */
258
259#define CHANNEL 3 /* Channel */
260#define CHANNEL_TUNE 0x8000 /* bits 15..15: Tune */
261#define CHANNEL_CHAN 0x03ff /* bits 09..00: Channel Select */
262
263#define SYSCONFIG1 4 /* System Configuration 1 */
264#define SYSCONFIG1_RDSIEN 0x8000 /* bits 15..15: RDS Interrupt Enable (Si4701 only) */
265#define SYSCONFIG1_STCIEN 0x4000 /* bits 14..14: Seek/Tune Complete Interrupt Enable */
266#define SYSCONFIG1_RDS 0x1000 /* bits 12..12: RDS Enable (Si4701 only) */
267#define SYSCONFIG1_DE 0x0800 /* bits 11..11: De-emphasis (0=75us 1=50us) */
268#define SYSCONFIG1_AGCD 0x0400 /* bits 10..10: AGC Disable */
269#define SYSCONFIG1_BLNDADJ 0x00c0 /* bits 07..06: Stereo/Mono Blend Level Adjustment */
270#define SYSCONFIG1_GPIO3 0x0030 /* bits 05..04: General Purpose I/O 3 */
271#define SYSCONFIG1_GPIO2 0x000c /* bits 03..02: General Purpose I/O 2 */
272#define SYSCONFIG1_GPIO1 0x0003 /* bits 01..00: General Purpose I/O 1 */
273
274#define SYSCONFIG2 5 /* System Configuration 2 */
275#define SYSCONFIG2_SEEKTH 0xff00 /* bits 15..08: RSSI Seek Threshold */
276#define SYSCONFIG2_BAND 0x0080 /* bits 07..06: Band Select */
277#define SYSCONFIG2_SPACE 0x0030 /* bits 05..04: Channel Spacing */
278#define SYSCONFIG2_VOLUME 0x000f /* bits 03..00: Volume */
279
280#define SYSCONFIG3 6 /* System Configuration 3 */
281#define SYSCONFIG3_SMUTER 0xc000 /* bits 15..14: Softmute Attack/Recover Rate */
282#define SYSCONFIG3_SMUTEA 0x3000 /* bits 13..12: Softmute Attenuation */
283#define SYSCONFIG3_SKSNR 0x00f0 /* bits 07..04: Seek SNR Threshold */
284#define SYSCONFIG3_SKCNT 0x000f /* bits 03..00: Seek FM Impulse Detection Threshold */
285
286#define TEST1 7 /* Test 1 */
287#define TEST1_AHIZEN 0x4000 /* bits 14..14: Audio High-Z Enable */
288
289#define TEST2 8 /* Test 2 */
290/* TEST2 only contains reserved bits */
291
292#define BOOTCONFIG 9 /* Boot Configuration */
293/* BOOTCONFIG only contains reserved bits */
294
295#define STATUSRSSI 10 /* Status RSSI */
296#define STATUSRSSI_RDSR 0x8000 /* bits 15..15: RDS Ready (Si4701 only) */
297#define STATUSRSSI_STC 0x4000 /* bits 14..14: Seek/Tune Complete */
298#define STATUSRSSI_SF 0x2000 /* bits 13..13: Seek Fail/Band Limit */
299#define STATUSRSSI_AFCRL 0x1000 /* bits 12..12: AFC Rail */
300#define STATUSRSSI_RDSS 0x0800 /* bits 11..11: RDS Synchronized (Si4701 only) */
301#define STATUSRSSI_BLERA 0x0600 /* bits 10..09: RDS Block A Errors (Si4701 only) */
302#define STATUSRSSI_ST 0x0100 /* bits 08..08: Stereo Indicator */
303#define STATUSRSSI_RSSI 0x00ff /* bits 07..00: RSSI (Received Signal Strength Indicator) */
304
305#define READCHAN 11 /* Read Channel */
306#define READCHAN_BLERB 0xc000 /* bits 15..14: RDS Block D Errors (Si4701 only) */
307#define READCHAN_BLERC 0x3000 /* bits 13..12: RDS Block C Errors (Si4701 only) */
308#define READCHAN_BLERD 0x0c00 /* bits 11..10: RDS Block B Errors (Si4701 only) */
309#define READCHAN_READCHAN 0x03ff /* bits 09..00: Read Channel */
310
311#define RDSA 12 /* RDSA */
312#define RDSA_RDSA 0xffff /* bits 15..00: RDS Block A Data (Si4701 only) */
313
314#define RDSB 13 /* RDSB */
315#define RDSB_RDSB 0xffff /* bits 15..00: RDS Block B Data (Si4701 only) */
316
317#define RDSC 14 /* RDSC */
318#define RDSC_RDSC 0xffff /* bits 15..00: RDS Block C Data (Si4701 only) */
319
320#define RDSD 15 /* RDSD */
321#define RDSD_RDSD 0xffff /* bits 15..00: RDS Block D Data (Si4701 only) */
322
323
324
325/**************************************************************************
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300326 * USB HID Reports
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300327 **************************************************************************/
328
329/* Reports 1-16 give direct read/write access to the 16 Si470x registers */
330/* with the (REPORT_ID - 1) corresponding to the register address across USB */
331/* endpoint 0 using GET_REPORT and SET_REPORT */
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300332#define REGISTER_REPORT_SIZE (RADIO_REGISTER_SIZE + 1)
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300333#define REGISTER_REPORT(reg) ((reg) + 1)
334
335/* Report 17 gives direct read/write access to the entire Si470x register */
336/* map across endpoint 0 using GET_REPORT and SET_REPORT */
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300337#define ENTIRE_REPORT_SIZE (RADIO_REGISTER_NUM * RADIO_REGISTER_SIZE + 1)
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300338#define ENTIRE_REPORT 17
339
340/* Report 18 is used to send the lowest 6 Si470x registers up the HID */
341/* interrupt endpoint 1 to Windows every 20 milliseconds for status */
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300342#define RDS_REPORT_SIZE (RDS_REGISTER_NUM * RADIO_REGISTER_SIZE + 1)
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300343#define RDS_REPORT 18
344
345/* Report 19: LED state */
346#define LED_REPORT_SIZE 3
347#define LED_REPORT 19
348
349/* Report 19: stream */
350#define STREAM_REPORT_SIZE 3
Tobias Lorenz00ec8d02009-02-12 14:55:45 -0300351#define STREAM_REPORT 19
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300352
353/* Report 20: scratch */
354#define SCRATCH_PAGE_SIZE 63
355#define SCRATCH_REPORT_SIZE (SCRATCH_PAGE_SIZE + 1)
356#define SCRATCH_REPORT 20
357
358/* Reports 19-22: flash upgrade of the C8051F321 */
Tobias Lorenz10711d02009-02-12 14:56:30 -0300359#define WRITE_REPORT_SIZE 4
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300360#define WRITE_REPORT 19
Tobias Lorenz10711d02009-02-12 14:56:30 -0300361#define FLASH_REPORT_SIZE 64
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300362#define FLASH_REPORT 20
Tobias Lorenz10711d02009-02-12 14:56:30 -0300363#define CRC_REPORT_SIZE 3
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300364#define CRC_REPORT 21
Tobias Lorenz10711d02009-02-12 14:56:30 -0300365#define RESPONSE_REPORT_SIZE 2
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300366#define RESPONSE_REPORT 22
367
368/* Report 23: currently unused, but can accept 60 byte reports on the HID */
369/* interrupt out endpoint 2 every 1 millisecond */
370#define UNUSED_REPORT 23
371
372
373
374/**************************************************************************
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300375 * Software/Hardware Versions
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300376 **************************************************************************/
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300377#define RADIO_SW_VERSION_NOT_BOOTLOADABLE 6
378#define RADIO_SW_VERSION 7
379#define RADIO_SW_VERSION_CURRENT 15
380#define RADIO_HW_VERSION 1
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300381
382#define SCRATCH_PAGE_SW_VERSION 1
383#define SCRATCH_PAGE_HW_VERSION 2
384
385
386
387/**************************************************************************
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300388 * LED State Definitions
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300389 **************************************************************************/
390#define LED_COMMAND 0x35
391
392#define NO_CHANGE_LED 0x00
393#define ALL_COLOR_LED 0x01 /* streaming state */
394#define BLINK_GREEN_LED 0x02 /* connect state */
395#define BLINK_RED_LED 0x04
396#define BLINK_ORANGE_LED 0x10 /* disconnect state */
397#define SOLID_GREEN_LED 0x20 /* tuning/seeking state */
398#define SOLID_RED_LED 0x40 /* bootload state */
399#define SOLID_ORANGE_LED 0x80
400
401
402
403/**************************************************************************
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300404 * Stream State Definitions
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300405 **************************************************************************/
406#define STREAM_COMMAND 0x36
407#define STREAM_VIDPID 0x00
408#define STREAM_AUDIO 0xff
409
410
411
412/**************************************************************************
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300413 * Bootloader / Flash Commands
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300414 **************************************************************************/
415
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300416/* unique id sent to bootloader and required to put into a bootload state */
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300417#define UNIQUE_BL_ID 0x34
418
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300419/* mask for the flash data */
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300420#define FLASH_DATA_MASK 0x55
421
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300422/* bootloader commands */
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300423#define GET_SW_VERSION_COMMAND 0x00
Tobias Lorenz00ec8d02009-02-12 14:55:45 -0300424#define SET_PAGE_COMMAND 0x01
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300425#define ERASE_PAGE_COMMAND 0x02
426#define WRITE_PAGE_COMMAND 0x03
427#define CRC_ON_PAGE_COMMAND 0x04
428#define READ_FLASH_BYTE_COMMAND 0x05
429#define RESET_DEVICE_COMMAND 0x06
430#define GET_HW_VERSION_COMMAND 0x07
431#define BLANK 0xff
432
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300433/* bootloader command responses */
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300434#define COMMAND_OK 0x01
435#define COMMAND_FAILED 0x02
436#define COMMAND_PENDING 0x03
437
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300438
439
440/**************************************************************************
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300441 * General Driver Definitions
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300442 **************************************************************************/
443
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300444/*
445 * si470x_device - private data
446 */
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300447struct si470x_device {
448 /* reference to USB and video device */
449 struct usb_device *usbdev;
Tobias Lorenz57566ad2008-02-09 16:08:24 -0300450 struct usb_interface *intf;
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300451 struct video_device *videodev;
452
Tobias Lorenz0e3301e2008-01-27 14:54:07 -0300453 /* driver management */
454 unsigned int users;
Tobias Lorenzce5829e2008-05-31 15:04:32 -0300455 unsigned char disconnected;
456 struct mutex disconnect_lock;
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300457
458 /* Silabs internal registers (0..15) */
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300459 unsigned short registers[RADIO_REGISTER_NUM];
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300460
461 /* RDS receive buffer */
Tobias Lorenz5caf5132008-02-04 22:26:08 -0300462 struct delayed_work work;
Tobias Lorenz2fb88402008-01-25 05:14:57 -0300463 wait_queue_head_t read_queue;
Tobias Lorenz5caf5132008-02-04 22:26:08 -0300464 struct mutex lock; /* buffer locking */
Tobias Lorenz2fb88402008-01-25 05:14:57 -0300465 unsigned char *buffer; /* size is always multiple of three */
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300466 unsigned int buf_size;
467 unsigned int rd_index;
468 unsigned int wr_index;
Tobias Lorenz10711d02009-02-12 14:56:30 -0300469
470 /* scratch page */
471 unsigned char software_version;
472 unsigned char hardware_version;
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300473};
474
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300475
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300476/*
477 * The frequency is set in units of 62.5 Hz when using V4L2_TUNER_CAP_LOW,
478 * 62.5 kHz otherwise.
479 * The tuner is able to have a channel spacing of 50, 100 or 200 kHz.
480 * tuner->capability is therefore set to V4L2_TUNER_CAP_LOW
481 * The FREQ_MUL is then: 1 MHz / 62.5 Hz = 16000
482 */
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300483#define FREQ_MUL (1000000 / 62.5)
484
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300485
486
487/**************************************************************************
Tobias Lorenz7f53b352009-02-12 14:55:56 -0300488 * General Driver Functions - REGISTER_REPORTs
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300489 **************************************************************************/
490
491/*
492 * si470x_get_report - receive a HID report
493 */
Tobias Lorenz0e3301e2008-01-27 14:54:07 -0300494static int si470x_get_report(struct si470x_device *radio, void *buf, int size)
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300495{
Tobias Lorenz0e3301e2008-01-27 14:54:07 -0300496 unsigned char *report = (unsigned char *) buf;
497 int retval;
498
499 retval = usb_control_msg(radio->usbdev,
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300500 usb_rcvctrlpipe(radio->usbdev, 0),
501 HID_REQ_GET_REPORT,
502 USB_TYPE_CLASS | USB_RECIP_INTERFACE | USB_DIR_IN,
Tobias Lorenz0e3301e2008-01-27 14:54:07 -0300503 report[0], 2,
504 buf, size, usb_timeout);
Tobias Lorenza7c850a2008-05-31 15:07:52 -0300505
Tobias Lorenz0e3301e2008-01-27 14:54:07 -0300506 if (retval < 0)
507 printk(KERN_WARNING DRIVER_NAME
508 ": si470x_get_report: usb_control_msg returned %d\n",
509 retval);
Tobias Lorenz0e3301e2008-01-27 14:54:07 -0300510 return retval;
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300511}
512
513
514/*
515 * si470x_set_report - send a HID report
516 */
Tobias Lorenz0e3301e2008-01-27 14:54:07 -0300517static int si470x_set_report(struct si470x_device *radio, void *buf, int size)
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300518{
Tobias Lorenz0e3301e2008-01-27 14:54:07 -0300519 unsigned char *report = (unsigned char *) buf;
520 int retval;
521
522 retval = usb_control_msg(radio->usbdev,
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300523 usb_sndctrlpipe(radio->usbdev, 0),
524 HID_REQ_SET_REPORT,
525 USB_TYPE_CLASS | USB_RECIP_INTERFACE | USB_DIR_OUT,
Tobias Lorenz0e3301e2008-01-27 14:54:07 -0300526 report[0], 2,
527 buf, size, usb_timeout);
Tobias Lorenza7c850a2008-05-31 15:07:52 -0300528
Tobias Lorenz0e3301e2008-01-27 14:54:07 -0300529 if (retval < 0)
530 printk(KERN_WARNING DRIVER_NAME
531 ": si470x_set_report: usb_control_msg returned %d\n",
532 retval);
Tobias Lorenz0e3301e2008-01-27 14:54:07 -0300533 return retval;
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300534}
535
536
537/*
538 * si470x_get_register - read register
539 */
540static int si470x_get_register(struct si470x_device *radio, int regnr)
541{
Tobias Lorenz0e3301e2008-01-27 14:54:07 -0300542 unsigned char buf[REGISTER_REPORT_SIZE];
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300543 int retval;
544
Tobias Lorenz0e3301e2008-01-27 14:54:07 -0300545 buf[0] = REGISTER_REPORT(regnr);
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300546
Tobias Lorenz0e3301e2008-01-27 14:54:07 -0300547 retval = si470x_get_report(radio, (void *) &buf, sizeof(buf));
548
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300549 if (retval >= 0)
Harvey Harrison5ad6b812008-04-15 22:22:11 -0300550 radio->registers[regnr] = get_unaligned_be16(&buf[1]);
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300551
552 return (retval < 0) ? -EINVAL : 0;
553}
554
555
556/*
557 * si470x_set_register - write register
558 */
559static int si470x_set_register(struct si470x_device *radio, int regnr)
560{
Tobias Lorenz0e3301e2008-01-27 14:54:07 -0300561 unsigned char buf[REGISTER_REPORT_SIZE];
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300562 int retval;
563
Tobias Lorenz0e3301e2008-01-27 14:54:07 -0300564 buf[0] = REGISTER_REPORT(regnr);
Harvey Harrison5ad6b812008-04-15 22:22:11 -0300565 put_unaligned_be16(radio->registers[regnr], &buf[1]);
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300566
Tobias Lorenz0e3301e2008-01-27 14:54:07 -0300567 retval = si470x_set_report(radio, (void *) &buf, sizeof(buf));
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300568
569 return (retval < 0) ? -EINVAL : 0;
570}
571
572
573/*
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300574 * si470x_set_chan - set the channel
575 */
Tobias Lorenz0e3301e2008-01-27 14:54:07 -0300576static int si470x_set_chan(struct si470x_device *radio, unsigned short chan)
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300577{
Tobias Lorenz0e3301e2008-01-27 14:54:07 -0300578 int retval;
579 unsigned long timeout;
580 bool timed_out = 0;
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300581
582 /* start tuning */
583 radio->registers[CHANNEL] &= ~CHANNEL_CHAN;
584 radio->registers[CHANNEL] |= CHANNEL_TUNE | chan;
585 retval = si470x_set_register(radio, CHANNEL);
586 if (retval < 0)
Tobias Lorenza7c850a2008-05-31 15:07:52 -0300587 goto done;
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300588
Tobias Lorenza7c850a2008-05-31 15:07:52 -0300589 /* wait till tune operation has completed */
Tobias Lorenz0e3301e2008-01-27 14:54:07 -0300590 timeout = jiffies + msecs_to_jiffies(tune_timeout);
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300591 do {
592 retval = si470x_get_register(radio, STATUSRSSI);
593 if (retval < 0)
Tobias Lorenza7c850a2008-05-31 15:07:52 -0300594 goto stop;
Tobias Lorenz0e3301e2008-01-27 14:54:07 -0300595 timed_out = time_after(jiffies, timeout);
596 } while (((radio->registers[STATUSRSSI] & STATUSRSSI_STC) == 0) &&
597 (!timed_out));
Tobias Lorenza7c850a2008-05-31 15:07:52 -0300598 if ((radio->registers[STATUSRSSI] & STATUSRSSI_STC) == 0)
599 printk(KERN_WARNING DRIVER_NAME ": tune does not complete\n");
Tobias Lorenz0e3301e2008-01-27 14:54:07 -0300600 if (timed_out)
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300601 printk(KERN_WARNING DRIVER_NAME
Tobias Lorenza7c850a2008-05-31 15:07:52 -0300602 ": tune timed out after %u ms\n", tune_timeout);
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300603
Tobias Lorenza7c850a2008-05-31 15:07:52 -0300604stop:
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300605 /* stop tuning */
606 radio->registers[CHANNEL] &= ~CHANNEL_TUNE;
Tobias Lorenza7c850a2008-05-31 15:07:52 -0300607 retval = si470x_set_register(radio, CHANNEL);
608
609done:
610 return retval;
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300611}
612
613
614/*
615 * si470x_get_freq - get the frequency
616 */
Tobias Lorenz6cc72652008-05-31 15:06:50 -0300617static int si470x_get_freq(struct si470x_device *radio, unsigned int *freq)
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300618{
Tobias Lorenz6cc72652008-05-31 15:06:50 -0300619 unsigned int spacing, band_bottom;
Tobias Lorenz0e3301e2008-01-27 14:54:07 -0300620 unsigned short chan;
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300621 int retval;
622
623 /* Spacing (kHz) */
Tobias Lorenza17c0012008-09-24 19:21:50 -0300624 switch ((radio->registers[SYSCONFIG2] & SYSCONFIG2_SPACE) >> 4) {
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300625 /* 0: 200 kHz (USA, Australia) */
Tobias Lorenza17c0012008-09-24 19:21:50 -0300626 case 0:
627 spacing = 0.200 * FREQ_MUL; break;
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300628 /* 1: 100 kHz (Europe, Japan) */
Tobias Lorenza17c0012008-09-24 19:21:50 -0300629 case 1:
630 spacing = 0.100 * FREQ_MUL; break;
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300631 /* 2: 50 kHz */
Tobias Lorenza17c0012008-09-24 19:21:50 -0300632 default:
633 spacing = 0.050 * FREQ_MUL; break;
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300634 };
635
636 /* Bottom of Band (MHz) */
Tobias Lorenza17c0012008-09-24 19:21:50 -0300637 switch ((radio->registers[SYSCONFIG2] & SYSCONFIG2_BAND) >> 6) {
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300638 /* 0: 87.5 - 108 MHz (USA, Europe) */
Tobias Lorenza17c0012008-09-24 19:21:50 -0300639 case 0:
640 band_bottom = 87.5 * FREQ_MUL; break;
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300641 /* 1: 76 - 108 MHz (Japan wide band) */
Tobias Lorenza17c0012008-09-24 19:21:50 -0300642 default:
643 band_bottom = 76 * FREQ_MUL; break;
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300644 /* 2: 76 - 90 MHz (Japan) */
Tobias Lorenza17c0012008-09-24 19:21:50 -0300645 case 2:
646 band_bottom = 76 * FREQ_MUL; break;
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300647 };
648
649 /* read channel */
650 retval = si470x_get_register(radio, READCHAN);
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300651 chan = radio->registers[READCHAN] & READCHAN_READCHAN;
652
653 /* Frequency (MHz) = Spacing (kHz) x Channel + Bottom of Band (MHz) */
Tobias Lorenz6cc72652008-05-31 15:06:50 -0300654 *freq = chan * spacing + band_bottom;
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300655
Tobias Lorenz6cc72652008-05-31 15:06:50 -0300656 return retval;
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300657}
658
659
660/*
661 * si470x_set_freq - set the frequency
662 */
Tobias Lorenz0e3301e2008-01-27 14:54:07 -0300663static int si470x_set_freq(struct si470x_device *radio, unsigned int freq)
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300664{
Tobias Lorenz0e3301e2008-01-27 14:54:07 -0300665 unsigned int spacing, band_bottom;
666 unsigned short chan;
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300667
668 /* Spacing (kHz) */
Tobias Lorenza17c0012008-09-24 19:21:50 -0300669 switch ((radio->registers[SYSCONFIG2] & SYSCONFIG2_SPACE) >> 4) {
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300670 /* 0: 200 kHz (USA, Australia) */
Tobias Lorenza17c0012008-09-24 19:21:50 -0300671 case 0:
672 spacing = 0.200 * FREQ_MUL; break;
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300673 /* 1: 100 kHz (Europe, Japan) */
Tobias Lorenza17c0012008-09-24 19:21:50 -0300674 case 1:
675 spacing = 0.100 * FREQ_MUL; break;
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300676 /* 2: 50 kHz */
Tobias Lorenza17c0012008-09-24 19:21:50 -0300677 default:
678 spacing = 0.050 * FREQ_MUL; break;
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300679 };
680
681 /* Bottom of Band (MHz) */
Tobias Lorenza17c0012008-09-24 19:21:50 -0300682 switch ((radio->registers[SYSCONFIG2] & SYSCONFIG2_BAND) >> 6) {
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300683 /* 0: 87.5 - 108 MHz (USA, Europe) */
Tobias Lorenza17c0012008-09-24 19:21:50 -0300684 case 0:
685 band_bottom = 87.5 * FREQ_MUL; break;
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300686 /* 1: 76 - 108 MHz (Japan wide band) */
Tobias Lorenza17c0012008-09-24 19:21:50 -0300687 default:
688 band_bottom = 76 * FREQ_MUL; break;
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300689 /* 2: 76 - 90 MHz (Japan) */
Tobias Lorenza17c0012008-09-24 19:21:50 -0300690 case 2:
691 band_bottom = 76 * FREQ_MUL; break;
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300692 };
693
694 /* Chan = [ Freq (Mhz) - Bottom of Band (MHz) ] / Spacing (kHz) */
695 chan = (freq - band_bottom) / spacing;
696
697 return si470x_set_chan(radio, chan);
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300698}
699
700
701/*
Tobias Lorenzbbc89952008-05-31 15:11:32 -0300702 * si470x_set_seek - set seek
703 */
704static int si470x_set_seek(struct si470x_device *radio,
705 unsigned int wrap_around, unsigned int seek_upward)
706{
707 int retval = 0;
708 unsigned long timeout;
709 bool timed_out = 0;
710
711 /* start seeking */
712 radio->registers[POWERCFG] |= POWERCFG_SEEK;
713 if (wrap_around == 1)
714 radio->registers[POWERCFG] &= ~POWERCFG_SKMODE;
715 else
716 radio->registers[POWERCFG] |= POWERCFG_SKMODE;
717 if (seek_upward == 1)
718 radio->registers[POWERCFG] |= POWERCFG_SEEKUP;
719 else
720 radio->registers[POWERCFG] &= ~POWERCFG_SEEKUP;
721 retval = si470x_set_register(radio, POWERCFG);
722 if (retval < 0)
723 goto done;
724
725 /* wait till seek operation has completed */
726 timeout = jiffies + msecs_to_jiffies(seek_timeout);
727 do {
728 retval = si470x_get_register(radio, STATUSRSSI);
729 if (retval < 0)
730 goto stop;
731 timed_out = time_after(jiffies, timeout);
732 } while (((radio->registers[STATUSRSSI] & STATUSRSSI_STC) == 0) &&
733 (!timed_out));
734 if ((radio->registers[STATUSRSSI] & STATUSRSSI_STC) == 0)
735 printk(KERN_WARNING DRIVER_NAME ": seek does not complete\n");
736 if (radio->registers[STATUSRSSI] & STATUSRSSI_SF)
737 printk(KERN_WARNING DRIVER_NAME
738 ": seek failed / band limit reached\n");
739 if (timed_out)
740 printk(KERN_WARNING DRIVER_NAME
741 ": seek timed out after %u ms\n", seek_timeout);
742
743stop:
744 /* stop seeking */
745 radio->registers[POWERCFG] &= ~POWERCFG_SEEK;
746 retval = si470x_set_register(radio, POWERCFG);
747
748done:
749 /* try again, if timed out */
750 if ((retval == 0) && timed_out)
751 retval = -EAGAIN;
752
753 return retval;
754}
755
756
757/*
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300758 * si470x_start - switch on radio
759 */
760static int si470x_start(struct si470x_device *radio)
761{
762 int retval;
763
764 /* powercfg */
765 radio->registers[POWERCFG] =
766 POWERCFG_DMUTE | POWERCFG_ENABLE | POWERCFG_RDSM;
767 retval = si470x_set_register(radio, POWERCFG);
768 if (retval < 0)
Tobias Lorenza7c850a2008-05-31 15:07:52 -0300769 goto done;
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300770
771 /* sysconfig 1 */
Tobias Lorenz2fb88402008-01-25 05:14:57 -0300772 radio->registers[SYSCONFIG1] = SYSCONFIG1_DE;
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300773 retval = si470x_set_register(radio, SYSCONFIG1);
774 if (retval < 0)
Tobias Lorenza7c850a2008-05-31 15:07:52 -0300775 goto done;
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300776
777 /* sysconfig 2 */
778 radio->registers[SYSCONFIG2] =
Tobias Lorenza7c850a2008-05-31 15:07:52 -0300779 (0x3f << 8) | /* SEEKTH */
780 ((band << 6) & SYSCONFIG2_BAND) | /* BAND */
781 ((space << 4) & SYSCONFIG2_SPACE) | /* SPACE */
782 15; /* VOLUME (max) */
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300783 retval = si470x_set_register(radio, SYSCONFIG2);
784 if (retval < 0)
Tobias Lorenza7c850a2008-05-31 15:07:52 -0300785 goto done;
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300786
787 /* reset last channel */
Tobias Lorenza7c850a2008-05-31 15:07:52 -0300788 retval = si470x_set_chan(radio,
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300789 radio->registers[CHANNEL] & CHANNEL_CHAN);
Tobias Lorenza7c850a2008-05-31 15:07:52 -0300790
791done:
792 return retval;
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300793}
794
795
796/*
797 * si470x_stop - switch off radio
798 */
799static int si470x_stop(struct si470x_device *radio)
800{
Tobias Lorenz2fb88402008-01-25 05:14:57 -0300801 int retval;
802
803 /* sysconfig 1 */
804 radio->registers[SYSCONFIG1] &= ~SYSCONFIG1_RDS;
805 retval = si470x_set_register(radio, SYSCONFIG1);
806 if (retval < 0)
Tobias Lorenza7c850a2008-05-31 15:07:52 -0300807 goto done;
Tobias Lorenz2fb88402008-01-25 05:14:57 -0300808
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300809 /* powercfg */
810 radio->registers[POWERCFG] &= ~POWERCFG_DMUTE;
811 /* POWERCFG_ENABLE has to automatically go low */
812 radio->registers[POWERCFG] |= POWERCFG_ENABLE | POWERCFG_DISABLE;
Tobias Lorenza7c850a2008-05-31 15:07:52 -0300813 retval = si470x_set_register(radio, POWERCFG);
814
815done:
816 return retval;
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300817}
818
819
Tobias Lorenz2fb88402008-01-25 05:14:57 -0300820/*
821 * si470x_rds_on - switch on rds reception
822 */
823static int si470x_rds_on(struct si470x_device *radio)
824{
Tobias Lorenz57566ad2008-02-09 16:08:24 -0300825 int retval;
826
Tobias Lorenz2fb88402008-01-25 05:14:57 -0300827 /* sysconfig 1 */
Tobias Lorenz57566ad2008-02-09 16:08:24 -0300828 mutex_lock(&radio->lock);
Tobias Lorenz2fb88402008-01-25 05:14:57 -0300829 radio->registers[SYSCONFIG1] |= SYSCONFIG1_RDS;
Tobias Lorenz57566ad2008-02-09 16:08:24 -0300830 retval = si470x_set_register(radio, SYSCONFIG1);
831 if (retval < 0)
832 radio->registers[SYSCONFIG1] &= ~SYSCONFIG1_RDS;
833 mutex_unlock(&radio->lock);
834
835 return retval;
Tobias Lorenz2fb88402008-01-25 05:14:57 -0300836}
837
838
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300839
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300840/**************************************************************************
Tobias Lorenz7f53b352009-02-12 14:55:56 -0300841 * General Driver Functions - ENTIRE_REPORT
842 **************************************************************************/
843
844/*
845 * si470x_get_all_registers - read entire registers
846 */
847static int si470x_get_all_registers(struct si470x_device *radio)
848{
849 unsigned char buf[ENTIRE_REPORT_SIZE];
850 int retval;
851 unsigned char regnr;
852
853 buf[0] = ENTIRE_REPORT;
854
855 retval = si470x_get_report(radio, (void *) &buf, sizeof(buf));
856
857 if (retval >= 0)
858 for (regnr = 0; regnr < RADIO_REGISTER_NUM; regnr++)
859 radio->registers[regnr] = get_unaligned_be16(
860 &buf[regnr * RADIO_REGISTER_SIZE + 1]);
861
862 return (retval < 0) ? -EINVAL : 0;
863}
864
865
866
867/**************************************************************************
868 * General Driver Functions - RDS_REPORT
869 **************************************************************************/
870
871/*
872 * si470x_get_rds_registers - read rds registers
873 */
874static int si470x_get_rds_registers(struct si470x_device *radio)
875{
876 unsigned char buf[RDS_REPORT_SIZE];
877 int retval;
878 int size;
879 unsigned char regnr;
880
881 buf[0] = RDS_REPORT;
882
883 retval = usb_interrupt_msg(radio->usbdev,
884 usb_rcvintpipe(radio->usbdev, 1),
885 (void *) &buf, sizeof(buf), &size, usb_timeout);
886 if (size != sizeof(buf))
887 printk(KERN_WARNING DRIVER_NAME ": si470x_get_rds_registers: "
888 "return size differs: %d != %zu\n", size, sizeof(buf));
889 if (retval < 0)
890 printk(KERN_WARNING DRIVER_NAME ": si470x_get_rds_registers: "
891 "usb_interrupt_msg returned %d\n", retval);
892
893 if (retval >= 0)
894 for (regnr = 0; regnr < RDS_REGISTER_NUM; regnr++)
895 radio->registers[STATUSRSSI + regnr] =
896 get_unaligned_be16(
897 &buf[regnr * RADIO_REGISTER_SIZE + 1]);
898
899 return (retval < 0) ? -EINVAL : 0;
900}
901
902
903
904/**************************************************************************
Tobias Lorenz10711d02009-02-12 14:56:30 -0300905 * General Driver Functions - LED_REPORT
906 **************************************************************************/
907
908/*
909 * si470x_set_led_state - sets the led state
910 */
911static int si470x_set_led_state(struct si470x_device *radio,
912 unsigned char led_state)
913{
914 unsigned char buf[LED_REPORT_SIZE];
915 int retval;
916
917 buf[0] = LED_REPORT;
918 buf[1] = LED_COMMAND;
919 buf[2] = led_state;
920
921 retval = si470x_set_report(radio, (void *) &buf, sizeof(buf));
922
923 return (retval < 0) ? -EINVAL : 0;
924}
925
926
927
928/**************************************************************************
929 * General Driver Functions - SCRATCH_REPORT
930 **************************************************************************/
931
932/*
933 * si470x_get_scratch_versions - gets the scratch page and version infos
934 */
935static int si470x_get_scratch_page_versions(struct si470x_device *radio)
936{
937 unsigned char buf[SCRATCH_REPORT_SIZE];
938 int retval;
939
940 buf[0] = SCRATCH_REPORT;
941
942 retval = si470x_get_report(radio, (void *) &buf, sizeof(buf));
943
944 if (retval < 0)
945 printk(KERN_WARNING DRIVER_NAME ": si470x_get_scratch: "
946 "si470x_get_report returned %d\n", retval);
947 else {
948 radio->software_version = buf[1];
949 radio->hardware_version = buf[2];
950 }
951
952 return (retval < 0) ? -EINVAL : 0;
953}
954
955
956
957/**************************************************************************
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300958 * RDS Driver Functions
959 **************************************************************************/
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300960
961/*
962 * si470x_rds - rds processing function
963 */
964static void si470x_rds(struct si470x_device *radio)
965{
Tobias Lorenz5caf5132008-02-04 22:26:08 -0300966 unsigned char blocknum;
967 unsigned short bler; /* rds block errors */
968 unsigned short rds;
969 unsigned char tmpbuf[3];
970
Tobias Lorenz2fb88402008-01-25 05:14:57 -0300971 /* get rds blocks */
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300972 if (si470x_get_rds_registers(radio) < 0)
973 return;
974 if ((radio->registers[STATUSRSSI] & STATUSRSSI_RDSR) == 0) {
975 /* No RDS group ready */
976 return;
977 }
978 if ((radio->registers[STATUSRSSI] & STATUSRSSI_RDSS) == 0) {
979 /* RDS decoder not synchronized */
980 return;
981 }
982
Tobias Lorenz5caf5132008-02-04 22:26:08 -0300983 /* copy all four RDS blocks to internal buffer */
984 mutex_lock(&radio->lock);
985 for (blocknum = 0; blocknum < 4; blocknum++) {
986 switch (blocknum) {
987 default:
988 bler = (radio->registers[STATUSRSSI] &
989 STATUSRSSI_BLERA) >> 9;
990 rds = radio->registers[RDSA];
991 break;
992 case 1:
993 bler = (radio->registers[READCHAN] &
994 READCHAN_BLERB) >> 14;
995 rds = radio->registers[RDSB];
996 break;
997 case 2:
998 bler = (radio->registers[READCHAN] &
999 READCHAN_BLERC) >> 12;
1000 rds = radio->registers[RDSC];
1001 break;
1002 case 3:
1003 bler = (radio->registers[READCHAN] &
1004 READCHAN_BLERD) >> 10;
1005 rds = radio->registers[RDSD];
1006 break;
1007 };
Tobias Lorenz0e3301e2008-01-27 14:54:07 -03001008
Tobias Lorenz5caf5132008-02-04 22:26:08 -03001009 /* Fill the V4L2 RDS buffer */
Harvey Harrison5ad6b812008-04-15 22:22:11 -03001010 put_unaligned_le16(rds, &tmpbuf);
Tobias Lorenz5caf5132008-02-04 22:26:08 -03001011 tmpbuf[2] = blocknum; /* offset name */
1012 tmpbuf[2] |= blocknum << 3; /* received offset */
1013 if (bler > max_rds_errors)
1014 tmpbuf[2] |= 0x80; /* uncorrectable errors */
1015 else if (bler > 0)
1016 tmpbuf[2] |= 0x40; /* corrected error(s) */
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001017
Tobias Lorenz5caf5132008-02-04 22:26:08 -03001018 /* copy RDS block to internal buffer */
1019 memcpy(&radio->buffer[radio->wr_index], &tmpbuf, 3);
1020 radio->wr_index += 3;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001021
Tobias Lorenz5caf5132008-02-04 22:26:08 -03001022 /* wrap write pointer */
1023 if (radio->wr_index >= radio->buf_size)
1024 radio->wr_index = 0;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001025
Tobias Lorenz5caf5132008-02-04 22:26:08 -03001026 /* check for overflow */
1027 if (radio->wr_index == radio->rd_index) {
1028 /* increment and wrap read pointer */
1029 radio->rd_index += 3;
1030 if (radio->rd_index >= radio->buf_size)
1031 radio->rd_index = 0;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001032 }
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001033 }
Tobias Lorenz5caf5132008-02-04 22:26:08 -03001034 mutex_unlock(&radio->lock);
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001035
Tobias Lorenz2fb88402008-01-25 05:14:57 -03001036 /* wake up read queue */
1037 if (radio->wr_index != radio->rd_index)
1038 wake_up_interruptible(&radio->read_queue);
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001039}
1040
1041
1042/*
Tobias Lorenz2fb88402008-01-25 05:14:57 -03001043 * si470x_work - rds work function
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001044 */
1045static void si470x_work(struct work_struct *work)
1046{
1047 struct si470x_device *radio = container_of(work, struct si470x_device,
Tobias Lorenz5caf5132008-02-04 22:26:08 -03001048 work.work);
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001049
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001050 /* safety checks */
Tobias Lorenzce5829e2008-05-31 15:04:32 -03001051 if (radio->disconnected)
1052 return;
Tobias Lorenz2fb88402008-01-25 05:14:57 -03001053 if ((radio->registers[SYSCONFIG1] & SYSCONFIG1_RDS) == 0)
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001054 return;
1055
1056 si470x_rds(radio);
Tobias Lorenz5caf5132008-02-04 22:26:08 -03001057 schedule_delayed_work(&radio->work, msecs_to_jiffies(rds_poll_time));
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001058}
1059
1060
1061
1062/**************************************************************************
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -03001063 * File Operations Interface
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001064 **************************************************************************/
1065
1066/*
1067 * si470x_fops_read - read RDS data
1068 */
1069static ssize_t si470x_fops_read(struct file *file, char __user *buf,
1070 size_t count, loff_t *ppos)
1071{
Hans Verkuilc170ecf2008-08-23 08:32:09 -03001072 struct si470x_device *radio = video_drvdata(file);
Tobias Lorenz2fb88402008-01-25 05:14:57 -03001073 int retval = 0;
Tobias Lorenz5caf5132008-02-04 22:26:08 -03001074 unsigned int block_count = 0;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001075
Tobias Lorenz2fb88402008-01-25 05:14:57 -03001076 /* switch on rds reception */
1077 if ((radio->registers[SYSCONFIG1] & SYSCONFIG1_RDS) == 0) {
1078 si470x_rds_on(radio);
Tobias Lorenz5caf5132008-02-04 22:26:08 -03001079 schedule_delayed_work(&radio->work,
1080 msecs_to_jiffies(rds_poll_time));
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001081 }
1082
Tobias Lorenz2fb88402008-01-25 05:14:57 -03001083 /* block if no new data available */
1084 while (radio->wr_index == radio->rd_index) {
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001085 if (file->f_flags & O_NONBLOCK) {
1086 retval = -EWOULDBLOCK;
1087 goto done;
1088 }
Tobias Lorenz5caf5132008-02-04 22:26:08 -03001089 if (wait_event_interruptible(radio->read_queue,
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001090 radio->wr_index != radio->rd_index) < 0) {
1091 retval = -EINTR;
1092 goto done;
1093 }
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001094 }
1095
Tobias Lorenz2fb88402008-01-25 05:14:57 -03001096 /* calculate block count from byte count */
1097 count /= 3;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001098
Tobias Lorenz2fb88402008-01-25 05:14:57 -03001099 /* copy RDS block out of internal buffer and to user buffer */
Tobias Lorenz5caf5132008-02-04 22:26:08 -03001100 mutex_lock(&radio->lock);
1101 while (block_count < count) {
1102 if (radio->rd_index == radio->wr_index)
1103 break;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001104
Tobias Lorenz5caf5132008-02-04 22:26:08 -03001105 /* always transfer rds complete blocks */
1106 if (copy_to_user(buf, &radio->buffer[radio->rd_index], 3))
1107 /* retval = -EFAULT; */
1108 break;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001109
Tobias Lorenz5caf5132008-02-04 22:26:08 -03001110 /* increment and wrap read pointer */
1111 radio->rd_index += 3;
1112 if (radio->rd_index >= radio->buf_size)
1113 radio->rd_index = 0;
Tobias Lorenz2fb88402008-01-25 05:14:57 -03001114
Tobias Lorenz5caf5132008-02-04 22:26:08 -03001115 /* increment counters */
1116 block_count++;
1117 buf += 3;
1118 retval += 3;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001119 }
Tobias Lorenz5caf5132008-02-04 22:26:08 -03001120 mutex_unlock(&radio->lock);
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001121
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001122done:
Tobias Lorenz2fb88402008-01-25 05:14:57 -03001123 return retval;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001124}
1125
1126
1127/*
1128 * si470x_fops_poll - poll RDS data
1129 */
1130static unsigned int si470x_fops_poll(struct file *file,
1131 struct poll_table_struct *pts)
1132{
Hans Verkuilc170ecf2008-08-23 08:32:09 -03001133 struct si470x_device *radio = video_drvdata(file);
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001134 int retval = 0;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001135
Tobias Lorenz2fb88402008-01-25 05:14:57 -03001136 /* switch on rds reception */
1137 if ((radio->registers[SYSCONFIG1] & SYSCONFIG1_RDS) == 0) {
1138 si470x_rds_on(radio);
Tobias Lorenz5caf5132008-02-04 22:26:08 -03001139 schedule_delayed_work(&radio->work,
1140 msecs_to_jiffies(rds_poll_time));
Tobias Lorenz2fb88402008-01-25 05:14:57 -03001141 }
1142
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001143 poll_wait(file, &radio->read_queue, pts);
1144
Tobias Lorenz2fb88402008-01-25 05:14:57 -03001145 if (radio->rd_index != radio->wr_index)
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001146 retval = POLLIN | POLLRDNORM;
Tobias Lorenz2fb88402008-01-25 05:14:57 -03001147
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001148 return retval;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001149}
1150
1151
1152/*
1153 * si470x_fops_open - file open
1154 */
Hans Verkuilbec43662008-12-30 06:58:20 -03001155static int si470x_fops_open(struct file *file)
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001156{
Hans Verkuilc170ecf2008-08-23 08:32:09 -03001157 struct si470x_device *radio = video_drvdata(file);
Tobias Lorenz57566ad2008-02-09 16:08:24 -03001158 int retval;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001159
Hans Verkuild56dc612008-07-30 08:43:36 -03001160 lock_kernel();
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001161 radio->users++;
Tobias Lorenz57566ad2008-02-09 16:08:24 -03001162
1163 retval = usb_autopm_get_interface(radio->intf);
1164 if (retval < 0) {
1165 radio->users--;
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001166 retval = -EIO;
1167 goto done;
Tobias Lorenz57566ad2008-02-09 16:08:24 -03001168 }
1169
1170 if (radio->users == 1) {
Tobias Lorenz7f53b352009-02-12 14:55:56 -03001171 /* start radio */
Tobias Lorenz57566ad2008-02-09 16:08:24 -03001172 retval = si470x_start(radio);
1173 if (retval < 0)
1174 usb_autopm_put_interface(radio->intf);
Tobias Lorenz57566ad2008-02-09 16:08:24 -03001175 }
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001176
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001177done:
Hans Verkuild56dc612008-07-30 08:43:36 -03001178 unlock_kernel();
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001179 return retval;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001180}
1181
1182
1183/*
1184 * si470x_fops_release - file release
1185 */
Hans Verkuilbec43662008-12-30 06:58:20 -03001186static int si470x_fops_release(struct file *file)
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001187{
Hans Verkuilc170ecf2008-08-23 08:32:09 -03001188 struct si470x_device *radio = video_drvdata(file);
Tobias Lorenzce5829e2008-05-31 15:04:32 -03001189 int retval = 0;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001190
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001191 /* safety check */
1192 if (!radio) {
1193 retval = -ENODEV;
1194 goto done;
1195 }
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001196
Tobias Lorenzce5829e2008-05-31 15:04:32 -03001197 mutex_lock(&radio->disconnect_lock);
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001198 radio->users--;
1199 if (radio->users == 0) {
Tobias Lorenzce5829e2008-05-31 15:04:32 -03001200 if (radio->disconnected) {
1201 video_unregister_device(radio->videodev);
1202 kfree(radio->buffer);
1203 kfree(radio);
Jiri Slabya5ca3a12009-07-05 15:44:20 -03001204 goto unlock;
Tobias Lorenzce5829e2008-05-31 15:04:32 -03001205 }
Tobias Lorenz03dea862008-04-22 14:46:11 -03001206
Tobias Lorenz2fb88402008-01-25 05:14:57 -03001207 /* stop rds reception */
Tobias Lorenz5caf5132008-02-04 22:26:08 -03001208 cancel_delayed_work_sync(&radio->work);
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001209
Tobias Lorenz2fb88402008-01-25 05:14:57 -03001210 /* cancel read processes */
1211 wake_up_interruptible(&radio->read_queue);
1212
Tobias Lorenz7f53b352009-02-12 14:55:56 -03001213 /* stop radio */
Tobias Lorenz57566ad2008-02-09 16:08:24 -03001214 retval = si470x_stop(radio);
1215 usb_autopm_put_interface(radio->intf);
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001216 }
Jiri Slabya5ca3a12009-07-05 15:44:20 -03001217unlock:
Tobias Lorenzce5829e2008-05-31 15:04:32 -03001218 mutex_unlock(&radio->disconnect_lock);
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001219done:
Tobias Lorenzce5829e2008-05-31 15:04:32 -03001220 return retval;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001221}
1222
1223
1224/*
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -03001225 * si470x_fops - file operations interface
1226 */
Hans Verkuilbec43662008-12-30 06:58:20 -03001227static const struct v4l2_file_operations si470x_fops = {
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -03001228 .owner = THIS_MODULE,
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -03001229 .read = si470x_fops_read,
1230 .poll = si470x_fops_poll,
1231 .ioctl = video_ioctl2,
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -03001232 .open = si470x_fops_open,
1233 .release = si470x_fops_release,
1234};
1235
1236
1237
1238/**************************************************************************
1239 * Video4Linux Interface
1240 **************************************************************************/
1241
1242/*
1243 * si470x_v4l2_queryctrl - query control
1244 */
1245static struct v4l2_queryctrl si470x_v4l2_queryctrl[] = {
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -03001246 {
1247 .id = V4L2_CID_AUDIO_VOLUME,
1248 .type = V4L2_CTRL_TYPE_INTEGER,
1249 .name = "Volume",
1250 .minimum = 0,
1251 .maximum = 15,
1252 .step = 1,
1253 .default_value = 15,
1254 },
1255 {
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -03001256 .id = V4L2_CID_AUDIO_MUTE,
1257 .type = V4L2_CTRL_TYPE_BOOLEAN,
1258 .name = "Mute",
1259 .minimum = 0,
1260 .maximum = 1,
1261 .step = 1,
1262 .default_value = 1,
1263 },
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -03001264};
1265
1266
1267/*
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001268 * si470x_vidioc_querycap - query device capabilities
1269 */
1270static int si470x_vidioc_querycap(struct file *file, void *priv,
1271 struct v4l2_capability *capability)
1272{
Alexey Klimovdc025d42009-02-05 22:52:29 -03001273 struct si470x_device *radio = video_drvdata(file);
1274
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001275 strlcpy(capability->driver, DRIVER_NAME, sizeof(capability->driver));
1276 strlcpy(capability->card, DRIVER_CARD, sizeof(capability->card));
Alexey Klimovdc025d42009-02-05 22:52:29 -03001277 usb_make_path(radio->usbdev, capability->bus_info, sizeof(capability->bus_info));
Tobias Lorenz0e3301e2008-01-27 14:54:07 -03001278 capability->version = DRIVER_KERNEL_VERSION;
Tobias Lorenzbbc89952008-05-31 15:11:32 -03001279 capability->capabilities = V4L2_CAP_HW_FREQ_SEEK |
1280 V4L2_CAP_TUNER | V4L2_CAP_RADIO;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001281
1282 return 0;
1283}
1284
1285
1286/*
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001287 * si470x_vidioc_queryctrl - enumerate control items
1288 */
1289static int si470x_vidioc_queryctrl(struct file *file, void *priv,
1290 struct v4l2_queryctrl *qc)
1291{
Tobias Lorenzeb6e3b82008-09-24 19:25:39 -03001292 unsigned char i = 0;
Tobias Lorenz0e3301e2008-01-27 14:54:07 -03001293 int retval = -EINVAL;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001294
Tobias Lorenzeb6e3b82008-09-24 19:25:39 -03001295 /* abort if qc->id is below V4L2_CID_BASE */
1296 if (qc->id < V4L2_CID_BASE)
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001297 goto done;
1298
Tobias Lorenzeb6e3b82008-09-24 19:25:39 -03001299 /* search video control */
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -03001300 for (i = 0; i < ARRAY_SIZE(si470x_v4l2_queryctrl); i++) {
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001301 if (qc->id == si470x_v4l2_queryctrl[i].id) {
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -03001302 memcpy(qc, &(si470x_v4l2_queryctrl[i]), sizeof(*qc));
Tobias Lorenzeb6e3b82008-09-24 19:25:39 -03001303 retval = 0; /* found */
Tobias Lorenz0e3301e2008-01-27 14:54:07 -03001304 break;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001305 }
1306 }
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001307
Tobias Lorenzeb6e3b82008-09-24 19:25:39 -03001308 /* disable unsupported base controls */
1309 /* to satisfy kradio and such apps */
1310 if ((retval == -EINVAL) && (qc->id < V4L2_CID_LASTP1)) {
1311 qc->flags = V4L2_CTRL_FLAG_DISABLED;
1312 retval = 0;
1313 }
1314
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001315done:
Tobias Lorenz0e3301e2008-01-27 14:54:07 -03001316 if (retval < 0)
1317 printk(KERN_WARNING DRIVER_NAME
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001318 ": query controls failed with %d\n", retval);
Tobias Lorenz0e3301e2008-01-27 14:54:07 -03001319 return retval;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001320}
1321
1322
1323/*
1324 * si470x_vidioc_g_ctrl - get the value of a control
1325 */
1326static int si470x_vidioc_g_ctrl(struct file *file, void *priv,
1327 struct v4l2_control *ctrl)
1328{
Hans Verkuilc170ecf2008-08-23 08:32:09 -03001329 struct si470x_device *radio = video_drvdata(file);
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001330 int retval = 0;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001331
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001332 /* safety checks */
1333 if (radio->disconnected) {
1334 retval = -EIO;
1335 goto done;
1336 }
Tobias Lorenz03dea862008-04-22 14:46:11 -03001337
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001338 switch (ctrl->id) {
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -03001339 case V4L2_CID_AUDIO_VOLUME:
1340 ctrl->value = radio->registers[SYSCONFIG2] &
1341 SYSCONFIG2_VOLUME;
1342 break;
1343 case V4L2_CID_AUDIO_MUTE:
1344 ctrl->value = ((radio->registers[POWERCFG] &
1345 POWERCFG_DMUTE) == 0) ? 1 : 0;
1346 break;
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001347 default:
1348 retval = -EINVAL;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001349 }
1350
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001351done:
1352 if (retval < 0)
1353 printk(KERN_WARNING DRIVER_NAME
1354 ": get control failed with %d\n", retval);
1355 return retval;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001356}
1357
1358
1359/*
1360 * si470x_vidioc_s_ctrl - set the value of a control
1361 */
1362static int si470x_vidioc_s_ctrl(struct file *file, void *priv,
1363 struct v4l2_control *ctrl)
1364{
Hans Verkuilc170ecf2008-08-23 08:32:09 -03001365 struct si470x_device *radio = video_drvdata(file);
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001366 int retval = 0;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001367
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001368 /* safety checks */
1369 if (radio->disconnected) {
1370 retval = -EIO;
1371 goto done;
1372 }
Tobias Lorenz03dea862008-04-22 14:46:11 -03001373
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001374 switch (ctrl->id) {
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -03001375 case V4L2_CID_AUDIO_VOLUME:
1376 radio->registers[SYSCONFIG2] &= ~SYSCONFIG2_VOLUME;
1377 radio->registers[SYSCONFIG2] |= ctrl->value;
Tobias Lorenz0e3301e2008-01-27 14:54:07 -03001378 retval = si470x_set_register(radio, SYSCONFIG2);
1379 break;
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -03001380 case V4L2_CID_AUDIO_MUTE:
1381 if (ctrl->value == 1)
1382 radio->registers[POWERCFG] &= ~POWERCFG_DMUTE;
1383 else
1384 radio->registers[POWERCFG] |= POWERCFG_DMUTE;
Tobias Lorenz0e3301e2008-01-27 14:54:07 -03001385 retval = si470x_set_register(radio, POWERCFG);
1386 break;
1387 default:
1388 retval = -EINVAL;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001389 }
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001390
1391done:
Tobias Lorenz0e3301e2008-01-27 14:54:07 -03001392 if (retval < 0)
1393 printk(KERN_WARNING DRIVER_NAME
1394 ": set control failed with %d\n", retval);
Tobias Lorenz0e3301e2008-01-27 14:54:07 -03001395 return retval;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001396}
1397
1398
1399/*
1400 * si470x_vidioc_g_audio - get audio attributes
1401 */
1402static int si470x_vidioc_g_audio(struct file *file, void *priv,
1403 struct v4l2_audio *audio)
1404{
Tobias Lorenz617f5332008-09-24 19:33:09 -03001405 /* driver constants */
1406 audio->index = 0;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001407 strcpy(audio->name, "Radio");
1408 audio->capability = V4L2_AUDCAP_STEREO;
Tobias Lorenz617f5332008-09-24 19:33:09 -03001409 audio->mode = 0;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001410
Tobias Lorenz617f5332008-09-24 19:33:09 -03001411 return 0;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001412}
1413
1414
1415/*
1416 * si470x_vidioc_g_tuner - get tuner attributes
1417 */
1418static int si470x_vidioc_g_tuner(struct file *file, void *priv,
1419 struct v4l2_tuner *tuner)
1420{
Hans Verkuilc170ecf2008-08-23 08:32:09 -03001421 struct si470x_device *radio = video_drvdata(file);
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001422 int retval = 0;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001423
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001424 /* safety checks */
1425 if (radio->disconnected) {
1426 retval = -EIO;
1427 goto done;
1428 }
Tobias Lorenz33632d42008-09-24 19:30:26 -03001429 if (tuner->index != 0) {
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001430 retval = -EINVAL;
1431 goto done;
1432 }
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001433
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001434 retval = si470x_get_register(radio, STATUSRSSI);
1435 if (retval < 0)
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001436 goto done;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001437
Tobias Lorenz33632d42008-09-24 19:30:26 -03001438 /* driver constants */
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001439 strcpy(tuner->name, "FM");
Tobias Lorenz33632d42008-09-24 19:30:26 -03001440 tuner->type = V4L2_TUNER_RADIO;
Tobias Lorenz73a529f2008-09-24 19:33:41 -03001441 tuner->capability = V4L2_TUNER_CAP_LOW | V4L2_TUNER_CAP_STEREO;
Tobias Lorenz33632d42008-09-24 19:30:26 -03001442
Tobias Lorenza17c0012008-09-24 19:21:50 -03001443 /* range limits */
1444 switch ((radio->registers[SYSCONFIG2] & SYSCONFIG2_BAND) >> 6) {
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -03001445 /* 0: 87.5 - 108 MHz (USA, Europe, default) */
1446 default:
1447 tuner->rangelow = 87.5 * FREQ_MUL;
1448 tuner->rangehigh = 108 * FREQ_MUL;
1449 break;
1450 /* 1: 76 - 108 MHz (Japan wide band) */
1451 case 1 :
1452 tuner->rangelow = 76 * FREQ_MUL;
1453 tuner->rangehigh = 108 * FREQ_MUL;
1454 break;
1455 /* 2: 76 - 90 MHz (Japan) */
1456 case 2 :
1457 tuner->rangelow = 76 * FREQ_MUL;
1458 tuner->rangehigh = 90 * FREQ_MUL;
1459 break;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001460 };
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001461
Tobias Lorenz73a529f2008-09-24 19:33:41 -03001462 /* stereo indicator == stereo (instead of mono) */
Tobias Lorenzd807dec2009-02-12 14:56:10 -03001463 if ((radio->registers[STATUSRSSI] & STATUSRSSI_ST) == 0)
Tobias Lorenz73a529f2008-09-24 19:33:41 -03001464 tuner->rxsubchans = V4L2_TUNER_SUB_MONO;
Tobias Lorenzd807dec2009-02-12 14:56:10 -03001465 else
1466 tuner->rxsubchans = V4L2_TUNER_SUB_MONO | V4L2_TUNER_SUB_STEREO;
Tobias Lorenz73a529f2008-09-24 19:33:41 -03001467
1468 /* mono/stereo selector */
Tobias Lorenzd807dec2009-02-12 14:56:10 -03001469 if ((radio->registers[POWERCFG] & POWERCFG_MONO) == 0)
Tobias Lorenz73a529f2008-09-24 19:33:41 -03001470 tuner->audmode = V4L2_TUNER_MODE_STEREO;
Tobias Lorenzd807dec2009-02-12 14:56:10 -03001471 else
1472 tuner->audmode = V4L2_TUNER_MODE_MONO;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001473
1474 /* min is worst, max is best; signal:0..0xffff; rssi: 0..0xff */
Tobias Lorenzd807dec2009-02-12 14:56:10 -03001475 /* measured in units of dbµV in 1 db increments (max at ~75 dbµV) */
1476 tuner->signal = (radio->registers[STATUSRSSI] & STATUSRSSI_RSSI);
1477 /* the ideal factor is 0xffff/75 = 873,8 */
1478 tuner->signal = (tuner->signal * 873) + (8 * tuner->signal / 10);
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001479
1480 /* automatic frequency control: -1: freq to low, 1 freq to high */
Tobias Lorenzace7d4b2008-05-31 15:09:07 -03001481 /* AFCRL does only indicate that freq. differs, not if too low/high */
1482 tuner->afc = (radio->registers[STATUSRSSI] & STATUSRSSI_AFCRL) ? 1 : 0;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001483
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001484done:
1485 if (retval < 0)
1486 printk(KERN_WARNING DRIVER_NAME
1487 ": get tuner failed with %d\n", retval);
1488 return retval;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001489}
1490
1491
1492/*
1493 * si470x_vidioc_s_tuner - set tuner attributes
1494 */
1495static int si470x_vidioc_s_tuner(struct file *file, void *priv,
1496 struct v4l2_tuner *tuner)
1497{
Hans Verkuilc170ecf2008-08-23 08:32:09 -03001498 struct si470x_device *radio = video_drvdata(file);
Tobias Lorenz33632d42008-09-24 19:30:26 -03001499 int retval = -EINVAL;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001500
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001501 /* safety checks */
1502 if (radio->disconnected) {
1503 retval = -EIO;
1504 goto done;
1505 }
Tobias Lorenz33632d42008-09-24 19:30:26 -03001506 if (tuner->index != 0)
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001507 goto done;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001508
Tobias Lorenz73a529f2008-09-24 19:33:41 -03001509 /* mono/stereo selector */
1510 switch (tuner->audmode) {
1511 case V4L2_TUNER_MODE_MONO:
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001512 radio->registers[POWERCFG] |= POWERCFG_MONO; /* force mono */
Tobias Lorenz73a529f2008-09-24 19:33:41 -03001513 break;
1514 case V4L2_TUNER_MODE_STEREO:
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001515 radio->registers[POWERCFG] &= ~POWERCFG_MONO; /* try stereo */
Tobias Lorenz73a529f2008-09-24 19:33:41 -03001516 break;
1517 default:
1518 goto done;
1519 }
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001520
Tobias Lorenz0e3301e2008-01-27 14:54:07 -03001521 retval = si470x_set_register(radio, POWERCFG);
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001522
1523done:
Tobias Lorenz0e3301e2008-01-27 14:54:07 -03001524 if (retval < 0)
1525 printk(KERN_WARNING DRIVER_NAME
1526 ": set tuner failed with %d\n", retval);
Tobias Lorenz0e3301e2008-01-27 14:54:07 -03001527 return retval;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001528}
1529
1530
1531/*
1532 * si470x_vidioc_g_frequency - get tuner or modulator radio frequency
1533 */
1534static int si470x_vidioc_g_frequency(struct file *file, void *priv,
1535 struct v4l2_frequency *freq)
1536{
Hans Verkuilc170ecf2008-08-23 08:32:09 -03001537 struct si470x_device *radio = video_drvdata(file);
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001538 int retval = 0;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001539
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001540 /* safety checks */
1541 if (radio->disconnected) {
1542 retval = -EIO;
1543 goto done;
1544 }
Tobias Lorenz33632d42008-09-24 19:30:26 -03001545 if (freq->tuner != 0) {
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001546 retval = -EINVAL;
1547 goto done;
1548 }
Tobias Lorenz03dea862008-04-22 14:46:11 -03001549
Tobias Lorenz33632d42008-09-24 19:30:26 -03001550 freq->type = V4L2_TUNER_RADIO;
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001551 retval = si470x_get_freq(radio, &freq->frequency);
1552
1553done:
1554 if (retval < 0)
1555 printk(KERN_WARNING DRIVER_NAME
1556 ": get frequency failed with %d\n", retval);
1557 return retval;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001558}
1559
1560
1561/*
1562 * si470x_vidioc_s_frequency - set tuner or modulator radio frequency
1563 */
1564static int si470x_vidioc_s_frequency(struct file *file, void *priv,
1565 struct v4l2_frequency *freq)
1566{
Hans Verkuilc170ecf2008-08-23 08:32:09 -03001567 struct si470x_device *radio = video_drvdata(file);
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001568 int retval = 0;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001569
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001570 /* safety checks */
1571 if (radio->disconnected) {
1572 retval = -EIO;
1573 goto done;
1574 }
Tobias Lorenz33632d42008-09-24 19:30:26 -03001575 if (freq->tuner != 0) {
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001576 retval = -EINVAL;
1577 goto done;
1578 }
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001579
Tobias Lorenz0e3301e2008-01-27 14:54:07 -03001580 retval = si470x_set_freq(radio, freq->frequency);
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001581
1582done:
Tobias Lorenz0e3301e2008-01-27 14:54:07 -03001583 if (retval < 0)
1584 printk(KERN_WARNING DRIVER_NAME
1585 ": set frequency failed with %d\n", retval);
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001586 return retval;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001587}
1588
1589
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -03001590/*
Tobias Lorenzbbc89952008-05-31 15:11:32 -03001591 * si470x_vidioc_s_hw_freq_seek - set hardware frequency seek
1592 */
1593static int si470x_vidioc_s_hw_freq_seek(struct file *file, void *priv,
1594 struct v4l2_hw_freq_seek *seek)
1595{
Hans Verkuilc170ecf2008-08-23 08:32:09 -03001596 struct si470x_device *radio = video_drvdata(file);
Tobias Lorenzbbc89952008-05-31 15:11:32 -03001597 int retval = 0;
1598
1599 /* safety checks */
1600 if (radio->disconnected) {
1601 retval = -EIO;
1602 goto done;
1603 }
Tobias Lorenz33632d42008-09-24 19:30:26 -03001604 if (seek->tuner != 0) {
Tobias Lorenzbbc89952008-05-31 15:11:32 -03001605 retval = -EINVAL;
1606 goto done;
1607 }
1608
1609 retval = si470x_set_seek(radio, seek->wrap_around, seek->seek_upward);
1610
1611done:
1612 if (retval < 0)
1613 printk(KERN_WARNING DRIVER_NAME
1614 ": set hardware frequency seek failed with %d\n",
1615 retval);
1616 return retval;
1617}
1618
Tobias Lorenz374ab682008-09-24 19:17:54 -03001619
1620/*
1621 * si470x_ioctl_ops - video device ioctl operations
1622 */
Hans Verkuila3998102008-07-21 02:57:38 -03001623static const struct v4l2_ioctl_ops si470x_ioctl_ops = {
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -03001624 .vidioc_querycap = si470x_vidioc_querycap,
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -03001625 .vidioc_queryctrl = si470x_vidioc_queryctrl,
1626 .vidioc_g_ctrl = si470x_vidioc_g_ctrl,
1627 .vidioc_s_ctrl = si470x_vidioc_s_ctrl,
1628 .vidioc_g_audio = si470x_vidioc_g_audio,
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -03001629 .vidioc_g_tuner = si470x_vidioc_g_tuner,
1630 .vidioc_s_tuner = si470x_vidioc_s_tuner,
1631 .vidioc_g_frequency = si470x_vidioc_g_frequency,
1632 .vidioc_s_frequency = si470x_vidioc_s_frequency,
Tobias Lorenzbbc89952008-05-31 15:11:32 -03001633 .vidioc_s_hw_freq_seek = si470x_vidioc_s_hw_freq_seek,
Hans Verkuila3998102008-07-21 02:57:38 -03001634};
1635
Tobias Lorenz374ab682008-09-24 19:17:54 -03001636
Hans Verkuila3998102008-07-21 02:57:38 -03001637/*
Tobias Lorenz374ab682008-09-24 19:17:54 -03001638 * si470x_viddev_template - video device interface
Hans Verkuila3998102008-07-21 02:57:38 -03001639 */
1640static struct video_device si470x_viddev_template = {
1641 .fops = &si470x_fops,
Hans Verkuila3998102008-07-21 02:57:38 -03001642 .name = DRIVER_NAME,
Hans Verkuila3998102008-07-21 02:57:38 -03001643 .release = video_device_release,
Tobias Lorenz374ab682008-09-24 19:17:54 -03001644 .ioctl_ops = &si470x_ioctl_ops,
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -03001645};
1646
1647
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001648
1649/**************************************************************************
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -03001650 * USB Interface
1651 **************************************************************************/
1652
1653/*
1654 * si470x_usb_driver_probe - probe for the device
1655 */
1656static int si470x_usb_driver_probe(struct usb_interface *intf,
1657 const struct usb_device_id *id)
1658{
1659 struct si470x_device *radio;
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001660 int retval = 0;
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -03001661
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001662 /* private data allocation and initialization */
Tobias Lorenz5caf5132008-02-04 22:26:08 -03001663 radio = kzalloc(sizeof(struct si470x_device), GFP_KERNEL);
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001664 if (!radio) {
1665 retval = -ENOMEM;
Tobias Lorenz5caf5132008-02-04 22:26:08 -03001666 goto err_initial;
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001667 }
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -03001668 radio->users = 0;
Tobias Lorenzce5829e2008-05-31 15:04:32 -03001669 radio->disconnected = 0;
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -03001670 radio->usbdev = interface_to_usbdev(intf);
Tobias Lorenz57566ad2008-02-09 16:08:24 -03001671 radio->intf = intf;
Tobias Lorenzce5829e2008-05-31 15:04:32 -03001672 mutex_init(&radio->disconnect_lock);
Tobias Lorenz5caf5132008-02-04 22:26:08 -03001673 mutex_init(&radio->lock);
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001674
1675 /* video device allocation and initialization */
1676 radio->videodev = video_device_alloc();
1677 if (!radio->videodev) {
1678 retval = -ENOMEM;
1679 goto err_radio;
1680 }
1681 memcpy(radio->videodev, &si470x_viddev_template,
1682 sizeof(si470x_viddev_template));
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -03001683 video_set_drvdata(radio->videodev, radio);
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -03001684
Tobias Lorenz10711d02009-02-12 14:56:30 -03001685 /* show some infos about the specific si470x device */
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001686 if (si470x_get_all_registers(radio) < 0) {
1687 retval = -EIO;
Alexey Klimov81d1d092009-03-31 21:01:04 -03001688 goto err_video;
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001689 }
Tobias Lorenz5caf5132008-02-04 22:26:08 -03001690 printk(KERN_INFO DRIVER_NAME ": DeviceID=0x%4.4hx ChipID=0x%4.4hx\n",
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -03001691 radio->registers[DEVICEID], radio->registers[CHIPID]);
1692
Tobias Lorenz10711d02009-02-12 14:56:30 -03001693 /* get software and hardware versions */
1694 if (si470x_get_scratch_page_versions(radio) < 0) {
1695 retval = -EIO;
Alexey Klimov81d1d092009-03-31 21:01:04 -03001696 goto err_video;
Tobias Lorenz10711d02009-02-12 14:56:30 -03001697 }
1698 printk(KERN_INFO DRIVER_NAME
1699 ": software version %d, hardware version %d\n",
1700 radio->software_version, radio->hardware_version);
1701
1702 /* check if device and firmware is current */
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -03001703 if ((radio->registers[CHIPID] & CHIPID_FIRMWARE)
Tobias Lorenz5caf5132008-02-04 22:26:08 -03001704 < RADIO_SW_VERSION_CURRENT) {
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -03001705 printk(KERN_WARNING DRIVER_NAME
Tobias Lorenz5caf5132008-02-04 22:26:08 -03001706 ": This driver is known to work with "
1707 "firmware version %hu,\n", RADIO_SW_VERSION_CURRENT);
1708 printk(KERN_WARNING DRIVER_NAME
1709 ": but the device has firmware version %hu.\n",
1710 radio->registers[CHIPID] & CHIPID_FIRMWARE);
1711 printk(KERN_WARNING DRIVER_NAME
1712 ": If you have some trouble using this driver,\n");
1713 printk(KERN_WARNING DRIVER_NAME
1714 ": please report to V4L ML at "
Hans Verkuil15965f02009-03-14 15:06:08 -03001715 "linux-media@vger.kernel.org\n");
Tobias Lorenz5caf5132008-02-04 22:26:08 -03001716 }
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -03001717
1718 /* set initial frequency */
1719 si470x_set_freq(radio, 87.5 * FREQ_MUL); /* available in all regions */
1720
Tobias Lorenz2f94fc42009-02-12 14:56:19 -03001721 /* set led to connect state */
1722 si470x_set_led_state(radio, BLINK_GREEN_LED);
1723
Tobias Lorenz5caf5132008-02-04 22:26:08 -03001724 /* rds buffer allocation */
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -03001725 radio->buf_size = rds_buf * 3;
1726 radio->buffer = kmalloc(radio->buf_size, GFP_KERNEL);
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001727 if (!radio->buffer) {
1728 retval = -EIO;
Alexey Klimov81d1d092009-03-31 21:01:04 -03001729 goto err_video;
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001730 }
Tobias Lorenz5caf5132008-02-04 22:26:08 -03001731
1732 /* rds buffer configuration */
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -03001733 radio->wr_index = 0;
1734 radio->rd_index = 0;
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -03001735 init_waitqueue_head(&radio->read_queue);
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -03001736
Tobias Lorenz5caf5132008-02-04 22:26:08 -03001737 /* prepare rds work function */
1738 INIT_DELAYED_WORK(&radio->work, si470x_work);
1739
1740 /* register video device */
Hans Verkuilcba99ae2008-09-03 17:11:58 -03001741 retval = video_register_device(radio->videodev, VFL_TYPE_RADIO, radio_nr);
1742 if (retval) {
Tobias Lorenz5caf5132008-02-04 22:26:08 -03001743 printk(KERN_WARNING DRIVER_NAME
1744 ": Could not register video device\n");
1745 goto err_all;
1746 }
1747 usb_set_intfdata(intf, radio);
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -03001748
1749 return 0;
Tobias Lorenz5caf5132008-02-04 22:26:08 -03001750err_all:
Tobias Lorenz5caf5132008-02-04 22:26:08 -03001751 kfree(radio->buffer);
Alexey Klimov81d1d092009-03-31 21:01:04 -03001752err_video:
1753 video_device_release(radio->videodev);
Tobias Lorenz5caf5132008-02-04 22:26:08 -03001754err_radio:
1755 kfree(radio);
1756err_initial:
1757 return retval;
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -03001758}
1759
1760
1761/*
Tobias Lorenz57566ad2008-02-09 16:08:24 -03001762 * si470x_usb_driver_suspend - suspend the device
1763 */
1764static int si470x_usb_driver_suspend(struct usb_interface *intf,
1765 pm_message_t message)
1766{
1767 struct si470x_device *radio = usb_get_intfdata(intf);
1768
1769 printk(KERN_INFO DRIVER_NAME ": suspending now...\n");
1770
1771 cancel_delayed_work_sync(&radio->work);
1772
1773 return 0;
1774}
1775
1776
1777/*
1778 * si470x_usb_driver_resume - resume the device
1779 */
1780static int si470x_usb_driver_resume(struct usb_interface *intf)
1781{
1782 struct si470x_device *radio = usb_get_intfdata(intf);
1783
1784 printk(KERN_INFO DRIVER_NAME ": resuming now...\n");
1785
1786 mutex_lock(&radio->lock);
1787 if (radio->users && radio->registers[SYSCONFIG1] & SYSCONFIG1_RDS)
1788 schedule_delayed_work(&radio->work,
1789 msecs_to_jiffies(rds_poll_time));
1790 mutex_unlock(&radio->lock);
1791
1792 return 0;
1793}
1794
1795
1796/*
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -03001797 * si470x_usb_driver_disconnect - disconnect the device
1798 */
1799static void si470x_usb_driver_disconnect(struct usb_interface *intf)
1800{
1801 struct si470x_device *radio = usb_get_intfdata(intf);
1802
Tobias Lorenzce5829e2008-05-31 15:04:32 -03001803 mutex_lock(&radio->disconnect_lock);
1804 radio->disconnected = 1;
Tobias Lorenz5caf5132008-02-04 22:26:08 -03001805 cancel_delayed_work_sync(&radio->work);
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -03001806 usb_set_intfdata(intf, NULL);
Tobias Lorenzce5829e2008-05-31 15:04:32 -03001807 if (radio->users == 0) {
Tobias Lorenz2f94fc42009-02-12 14:56:19 -03001808 /* set led to disconnect state */
1809 si470x_set_led_state(radio, BLINK_ORANGE_LED);
1810
Tobias Lorenzce5829e2008-05-31 15:04:32 -03001811 video_unregister_device(radio->videodev);
1812 kfree(radio->buffer);
1813 kfree(radio);
1814 }
1815 mutex_unlock(&radio->disconnect_lock);
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -03001816}
1817
1818
1819/*
1820 * si470x_usb_driver - usb driver interface
1821 */
1822static struct usb_driver si470x_usb_driver = {
Tobias Lorenz57566ad2008-02-09 16:08:24 -03001823 .name = DRIVER_NAME,
1824 .probe = si470x_usb_driver_probe,
1825 .disconnect = si470x_usb_driver_disconnect,
1826 .suspend = si470x_usb_driver_suspend,
1827 .resume = si470x_usb_driver_resume,
1828 .id_table = si470x_usb_driver_id_table,
1829 .supports_autosuspend = 1,
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -03001830};
1831
1832
1833
1834/**************************************************************************
1835 * Module Interface
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001836 **************************************************************************/
1837
1838/*
1839 * si470x_module_init - module init
1840 */
1841static int __init si470x_module_init(void)
1842{
Tobias Lorenz0e3301e2008-01-27 14:54:07 -03001843 printk(KERN_INFO DRIVER_DESC ", Version " DRIVER_VERSION "\n");
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001844 return usb_register(&si470x_usb_driver);
1845}
1846
1847
1848/*
1849 * si470x_module_exit - module exit
1850 */
1851static void __exit si470x_module_exit(void)
1852{
1853 usb_deregister(&si470x_usb_driver);
1854}
1855
1856
1857module_init(si470x_module_init);
1858module_exit(si470x_module_exit);
1859
1860MODULE_LICENSE("GPL");
1861MODULE_AUTHOR(DRIVER_AUTHOR);
1862MODULE_DESCRIPTION(DRIVER_DESC);
Tobias Lorenz0e3301e2008-01-27 14:54:07 -03001863MODULE_VERSION(DRIVER_VERSION);