blob: dc72803ad209706d33065df79efdbcc612065add [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 Lorenz78656ac2008-01-14 21:55:27 -03008 *
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -03009 * Copyright (c) 2008 Tobias Lorenz <tobias.lorenz@gmx.net>
Tobias Lorenz78656ac2008-01-14 21:55:27 -030010 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 */
25
26
27/*
28 * History:
29 * 2008-01-12 Tobias Lorenz <tobias.lorenz@gmx.net>
30 * Version 1.0.0
31 * - First working version
32 * 2008-01-13 Tobias Lorenz <tobias.lorenz@gmx.net>
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -030033 * Version 1.0.1
Tobias Lorenz78656ac2008-01-14 21:55:27 -030034 * - Improved error handling, every function now returns errno
35 * - Improved multi user access (start/mute/stop)
36 * - Channel doesn't get lost anymore after start/mute/stop
37 * - RDS support added (polling mode via interrupt EP 1)
38 * - marked default module parameters with *value*
39 * - switched from bit structs to bit masks
40 * - header file cleaned and integrated
41 * 2008-01-14 Tobias Lorenz <tobias.lorenz@gmx.net>
42 * Version 1.0.2
43 * - hex values are now lower case
44 * - commented USB ID for ADS/Tech moved on todo list
45 * - blacklisted si470x in hid-quirks.c
46 * - rds buffer handling functions integrated into *_work, *_read
47 * - rds_command in si470x_poll exchanged against simple retval
48 * - check for firmware version 15
49 * - code order and prototypes still remain the same
50 * - spacing and bottom of band codes remain the same
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -030051 * 2008-01-16 Tobias Lorenz <tobias.lorenz@gmx.net>
52 * Version 1.0.3
53 * - code reordered to avoid function prototypes
54 * - switch/case defaults are now more user-friendly
55 * - unified comment style
56 * - applied all checkpatch.pl v1.12 suggestions
57 * except the warning about the too long lines with bit comments
58 * - renamed FMRADIO to RADIO to cut line length (checkpatch.pl)
Tobias Lorenz2fb88402008-01-25 05:14:57 -030059 * 2008-01-22 Tobias Lorenz <tobias.lorenz@gmx.net>
60 * Version 1.0.4
61 * - avoid poss. locking when doing copy_to_user which may sleep
62 * - RDS is automatically activated on read now
63 * - code cleaned of unnecessary rds_commands
64 * - USB Vendor/Product ID for ADS/Tech FM Radio Receiver verified
65 * (thanks to Guillaume RAMOUSSE)
Tobias Lorenz0e3301e2008-01-27 14:54:07 -030066 * 2008-01-27 Tobias Lorenz <tobias.lorenz@gmx.net>
67 * Version 1.0.5
68 * - number of seek_retries changed to tune_timeout
69 * - fixed problem with incomplete tune operations by own buffers
Tobias Lorenz5caf5132008-02-04 22:26:08 -030070 * - optimization of variables and printf types
Tobias Lorenz0e3301e2008-01-27 14:54:07 -030071 * - improved error logging
Tobias Lorenz5caf5132008-02-04 22:26:08 -030072 * 2008-01-31 Tobias Lorenz <tobias.lorenz@gmx.net>
73 * Oliver Neukum <oliver@neukum.org>
74 * Version 1.0.6
75 * - fixed coverity checker warnings in *_usb_driver_disconnect
76 * - probe()/open() race by correct ordering in probe()
77 * - DMA coherency rules by separate allocation of all buffers
78 * - use of endianness macros
79 * - abuse of spinlock, replaced by mutex
80 * - racy handling of timer in disconnect,
81 * replaced by delayed_work
82 * - racy interruptible_sleep_on(),
83 * replaced with wait_event_interruptible()
84 * - handle signals in read()
Tobias Lorenz57566ad2008-02-09 16:08:24 -030085 * 2008-02-08 Tobias Lorenz <tobias.lorenz@gmx.net>
86 * Oliver Neukum <oliver@neukum.org>
87 * Version 1.0.7
88 * - usb autosuspend support
Tobias Lorenzce5829e2008-05-31 15:04:32 -030089 * - unplugging fixed
Tobias Lorenz6cc72652008-05-31 15:06:50 -030090 * 2008-05-07 Tobias Lorenz <tobias.lorenz@gmx.net>
91 * Version 1.0.8
Tobias Lorenzbbc89952008-05-31 15:11:32 -030092 * - hardware frequency seek support
Tobias Lorenzace7d4b2008-05-31 15:09:07 -030093 * - afc indication
Tobias Lorenza7c850a2008-05-31 15:07:52 -030094 * - more safety checks, let si470x_get_freq return errno
Tobias Lorenz33632d42008-09-24 19:30:26 -030095 * - vidioc behavior corrected according to v4l2 spec
Alexey Klimov69df96c2008-10-23 09:20:27 -030096 * 2008-10-20 Alexey Klimov <klimov.linux@gmail.com>
97 * - add support for KWorld USB FM Radio FM700
98 * - blacklisted KWorld radio in hid-core.c and hid-ids.h
Mark Lord5e6de7d2008-12-03 15:26:15 -030099 * 2008-12-03 Mark Lord <mlord@pobox.com>
100 * - add support for DealExtreme USB Radio
Tobias Lorenzd807dec2009-02-12 14:56:10 -0300101 * 2009-01-31 Bob Ross <pigiron@gmx.com>
102 * - correction of stereo detection/setting
103 * - correction of signal strength indicator scaling
Tobias Lorenz2f94fc42009-02-12 14:56:19 -0300104 * 2009-01-31 Rick Bronson <rick@efn.org>
105 * Tobias Lorenz <tobias.lorenz@gmx.net>
106 * - add LED status output
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300107 *
108 * ToDo:
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300109 * - add firmware download/update support
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300110 * - RDS support: interrupt mode, instead of polling
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300111 */
112
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300113
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300114/* driver definitions */
115#define DRIVER_AUTHOR "Tobias Lorenz <tobias.lorenz@gmx.net>"
116#define DRIVER_NAME "radio-si470x"
Tobias Lorenz6cc72652008-05-31 15:06:50 -0300117#define DRIVER_KERNEL_VERSION KERNEL_VERSION(1, 0, 8)
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300118#define DRIVER_CARD "Silicon Labs Si470x FM Radio Receiver"
119#define DRIVER_DESC "USB radio driver for Si470x FM Radio Receivers"
Tobias Lorenz6cc72652008-05-31 15:06:50 -0300120#define DRIVER_VERSION "1.0.8"
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300121
122
123/* kernel includes */
124#include <linux/kernel.h>
125#include <linux/module.h>
126#include <linux/init.h>
127#include <linux/slab.h>
128#include <linux/input.h>
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300129#include <linux/usb.h>
130#include <linux/hid.h>
131#include <linux/version.h>
Mauro Carvalho Chehab387d4472008-01-15 11:25:10 -0300132#include <linux/videodev2.h>
Tobias Lorenz5caf5132008-02-04 22:26:08 -0300133#include <linux/mutex.h>
Mauro Carvalho Chehab387d4472008-01-15 11:25:10 -0300134#include <media/v4l2-common.h>
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300135#include <media/v4l2-ioctl.h>
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300136#include <media/rds.h>
Tobias Lorenz5caf5132008-02-04 22:26:08 -0300137#include <asm/unaligned.h>
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300138
139
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300140/* USB Device ID List */
141static struct usb_device_id si470x_usb_driver_id_table[] = {
142 /* Silicon Labs USB FM Radio Reference Design */
Tobias Lorenz374ab682008-09-24 19:17:54 -0300143 { USB_DEVICE_AND_INTERFACE_INFO(0x10c4, 0x818a, USB_CLASS_HID, 0, 0) },
Tobias Lorenz2fb88402008-01-25 05:14:57 -0300144 /* ADS/Tech FM Radio Receiver (formerly Instant FM Music) */
Tobias Lorenz374ab682008-09-24 19:17:54 -0300145 { USB_DEVICE_AND_INTERFACE_INFO(0x06e1, 0xa155, USB_CLASS_HID, 0, 0) },
Alexey Klimov69df96c2008-10-23 09:20:27 -0300146 /* KWorld USB FM Radio SnapMusic Mobile 700 (FM700) */
147 { USB_DEVICE_AND_INTERFACE_INFO(0x1b80, 0xd700, USB_CLASS_HID, 0, 0) },
Mark Lord5e6de7d2008-12-03 15:26:15 -0300148 /* DealExtreme USB Radio */
149 { USB_DEVICE_AND_INTERFACE_INFO(0x10c5, 0x819a, USB_CLASS_HID, 0, 0) },
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300150 /* Terminating entry */
151 { }
152};
153MODULE_DEVICE_TABLE(usb, si470x_usb_driver_id_table);
154
155
156
157/**************************************************************************
158 * Module Parameters
159 **************************************************************************/
160
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300161/* Radio Nr */
162static int radio_nr = -1;
Tobias Lorenz374ab682008-09-24 19:17:54 -0300163module_param(radio_nr, int, 0444);
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300164MODULE_PARM_DESC(radio_nr, "Radio Nr");
165
166/* Spacing (kHz) */
167/* 0: 200 kHz (USA, Australia) */
168/* 1: 100 kHz (Europe, Japan) */
169/* 2: 50 kHz */
Tobias Lorenz0e3301e2008-01-27 14:54:07 -0300170static unsigned short space = 2;
Tobias Lorenz374ab682008-09-24 19:17:54 -0300171module_param(space, ushort, 0444);
172MODULE_PARM_DESC(space, "Spacing: 0=200kHz 1=100kHz *2=50kHz*");
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300173
174/* Bottom of Band (MHz) */
175/* 0: 87.5 - 108 MHz (USA, Europe)*/
176/* 1: 76 - 108 MHz (Japan wide band) */
177/* 2: 76 - 90 MHz (Japan) */
Tobias Lorenz0e3301e2008-01-27 14:54:07 -0300178static unsigned short band = 1;
Tobias Lorenz374ab682008-09-24 19:17:54 -0300179module_param(band, ushort, 0444);
180MODULE_PARM_DESC(band, "Band: 0=87.5..108MHz *1=76..108MHz* 2=76..90MHz");
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300181
182/* De-emphasis */
183/* 0: 75 us (USA) */
184/* 1: 50 us (Europe, Australia, Japan) */
Tobias Lorenz0e3301e2008-01-27 14:54:07 -0300185static unsigned short de = 1;
Tobias Lorenz374ab682008-09-24 19:17:54 -0300186module_param(de, ushort, 0444);
187MODULE_PARM_DESC(de, "De-emphasis: 0=75us *1=50us*");
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300188
189/* USB timeout */
Tobias Lorenz0e3301e2008-01-27 14:54:07 -0300190static unsigned int usb_timeout = 500;
Tobias Lorenz374ab682008-09-24 19:17:54 -0300191module_param(usb_timeout, uint, 0644);
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300192MODULE_PARM_DESC(usb_timeout, "USB timeout (ms): *500*");
193
Tobias Lorenz0e3301e2008-01-27 14:54:07 -0300194/* Tune timeout */
195static unsigned int tune_timeout = 3000;
Tobias Lorenz374ab682008-09-24 19:17:54 -0300196module_param(tune_timeout, uint, 0644);
Tobias Lorenz0e3301e2008-01-27 14:54:07 -0300197MODULE_PARM_DESC(tune_timeout, "Tune timeout: *3000*");
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300198
Tobias Lorenzbbc89952008-05-31 15:11:32 -0300199/* Seek timeout */
200static unsigned int seek_timeout = 5000;
Tobias Lorenz374ab682008-09-24 19:17:54 -0300201module_param(seek_timeout, uint, 0644);
Tobias Lorenzbbc89952008-05-31 15:11:32 -0300202MODULE_PARM_DESC(seek_timeout, "Seek timeout: *5000*");
203
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300204/* RDS buffer blocks */
Tobias Lorenz0e3301e2008-01-27 14:54:07 -0300205static unsigned int rds_buf = 100;
Tobias Lorenz374ab682008-09-24 19:17:54 -0300206module_param(rds_buf, uint, 0444);
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300207MODULE_PARM_DESC(rds_buf, "RDS buffer entries: *100*");
208
209/* RDS maximum block errors */
Tobias Lorenz0e3301e2008-01-27 14:54:07 -0300210static unsigned short max_rds_errors = 1;
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300211/* 0 means 0 errors requiring correction */
212/* 1 means 1-2 errors requiring correction (used by original USBRadio.exe) */
213/* 2 means 3-5 errors requiring correction */
214/* 3 means 6+ errors or errors in checkword, correction not possible */
Tobias Lorenz374ab682008-09-24 19:17:54 -0300215module_param(max_rds_errors, ushort, 0644);
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300216MODULE_PARM_DESC(max_rds_errors, "RDS maximum block errors: *1*");
217
218/* RDS poll frequency */
Tobias Lorenz0e3301e2008-01-27 14:54:07 -0300219static unsigned int rds_poll_time = 40;
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300220/* 40 is used by the original USBRadio.exe */
Tobias Lorenz2fb88402008-01-25 05:14:57 -0300221/* 50 is used by radio-cadet */
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300222/* 75 should be okay */
223/* 80 is the usual RDS receive interval */
Tobias Lorenz374ab682008-09-24 19:17:54 -0300224module_param(rds_poll_time, uint, 0644);
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300225MODULE_PARM_DESC(rds_poll_time, "RDS poll time (ms): *40*");
226
227
228
229/**************************************************************************
230 * Register Definitions
231 **************************************************************************/
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300232#define RADIO_REGISTER_SIZE 2 /* 16 register bit width */
233#define RADIO_REGISTER_NUM 16 /* DEVICEID ... RDSD */
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300234#define RDS_REGISTER_NUM 6 /* STATUSRSSI ... RDSD */
235
236#define DEVICEID 0 /* Device ID */
237#define DEVICEID_PN 0xf000 /* bits 15..12: Part Number */
238#define DEVICEID_MFGID 0x0fff /* bits 11..00: Manufacturer ID */
239
240#define CHIPID 1 /* Chip ID */
241#define CHIPID_REV 0xfc00 /* bits 15..10: Chip Version */
242#define CHIPID_DEV 0x0200 /* bits 09..09: Device */
243#define CHIPID_FIRMWARE 0x01ff /* bits 08..00: Firmware Version */
244
245#define POWERCFG 2 /* Power Configuration */
246#define POWERCFG_DSMUTE 0x8000 /* bits 15..15: Softmute Disable */
247#define POWERCFG_DMUTE 0x4000 /* bits 14..14: Mute Disable */
248#define POWERCFG_MONO 0x2000 /* bits 13..13: Mono Select */
249#define POWERCFG_RDSM 0x0800 /* bits 11..11: RDS Mode (Si4701 only) */
250#define POWERCFG_SKMODE 0x0400 /* bits 10..10: Seek Mode */
251#define POWERCFG_SEEKUP 0x0200 /* bits 09..09: Seek Direction */
252#define POWERCFG_SEEK 0x0100 /* bits 08..08: Seek */
253#define POWERCFG_DISABLE 0x0040 /* bits 06..06: Powerup Disable */
254#define POWERCFG_ENABLE 0x0001 /* bits 00..00: Powerup Enable */
255
256#define CHANNEL 3 /* Channel */
257#define CHANNEL_TUNE 0x8000 /* bits 15..15: Tune */
258#define CHANNEL_CHAN 0x03ff /* bits 09..00: Channel Select */
259
260#define SYSCONFIG1 4 /* System Configuration 1 */
261#define SYSCONFIG1_RDSIEN 0x8000 /* bits 15..15: RDS Interrupt Enable (Si4701 only) */
262#define SYSCONFIG1_STCIEN 0x4000 /* bits 14..14: Seek/Tune Complete Interrupt Enable */
263#define SYSCONFIG1_RDS 0x1000 /* bits 12..12: RDS Enable (Si4701 only) */
264#define SYSCONFIG1_DE 0x0800 /* bits 11..11: De-emphasis (0=75us 1=50us) */
265#define SYSCONFIG1_AGCD 0x0400 /* bits 10..10: AGC Disable */
266#define SYSCONFIG1_BLNDADJ 0x00c0 /* bits 07..06: Stereo/Mono Blend Level Adjustment */
267#define SYSCONFIG1_GPIO3 0x0030 /* bits 05..04: General Purpose I/O 3 */
268#define SYSCONFIG1_GPIO2 0x000c /* bits 03..02: General Purpose I/O 2 */
269#define SYSCONFIG1_GPIO1 0x0003 /* bits 01..00: General Purpose I/O 1 */
270
271#define SYSCONFIG2 5 /* System Configuration 2 */
272#define SYSCONFIG2_SEEKTH 0xff00 /* bits 15..08: RSSI Seek Threshold */
273#define SYSCONFIG2_BAND 0x0080 /* bits 07..06: Band Select */
274#define SYSCONFIG2_SPACE 0x0030 /* bits 05..04: Channel Spacing */
275#define SYSCONFIG2_VOLUME 0x000f /* bits 03..00: Volume */
276
277#define SYSCONFIG3 6 /* System Configuration 3 */
278#define SYSCONFIG3_SMUTER 0xc000 /* bits 15..14: Softmute Attack/Recover Rate */
279#define SYSCONFIG3_SMUTEA 0x3000 /* bits 13..12: Softmute Attenuation */
280#define SYSCONFIG3_SKSNR 0x00f0 /* bits 07..04: Seek SNR Threshold */
281#define SYSCONFIG3_SKCNT 0x000f /* bits 03..00: Seek FM Impulse Detection Threshold */
282
283#define TEST1 7 /* Test 1 */
284#define TEST1_AHIZEN 0x4000 /* bits 14..14: Audio High-Z Enable */
285
286#define TEST2 8 /* Test 2 */
287/* TEST2 only contains reserved bits */
288
289#define BOOTCONFIG 9 /* Boot Configuration */
290/* BOOTCONFIG only contains reserved bits */
291
292#define STATUSRSSI 10 /* Status RSSI */
293#define STATUSRSSI_RDSR 0x8000 /* bits 15..15: RDS Ready (Si4701 only) */
294#define STATUSRSSI_STC 0x4000 /* bits 14..14: Seek/Tune Complete */
295#define STATUSRSSI_SF 0x2000 /* bits 13..13: Seek Fail/Band Limit */
296#define STATUSRSSI_AFCRL 0x1000 /* bits 12..12: AFC Rail */
297#define STATUSRSSI_RDSS 0x0800 /* bits 11..11: RDS Synchronized (Si4701 only) */
298#define STATUSRSSI_BLERA 0x0600 /* bits 10..09: RDS Block A Errors (Si4701 only) */
299#define STATUSRSSI_ST 0x0100 /* bits 08..08: Stereo Indicator */
300#define STATUSRSSI_RSSI 0x00ff /* bits 07..00: RSSI (Received Signal Strength Indicator) */
301
302#define READCHAN 11 /* Read Channel */
303#define READCHAN_BLERB 0xc000 /* bits 15..14: RDS Block D Errors (Si4701 only) */
304#define READCHAN_BLERC 0x3000 /* bits 13..12: RDS Block C Errors (Si4701 only) */
305#define READCHAN_BLERD 0x0c00 /* bits 11..10: RDS Block B Errors (Si4701 only) */
306#define READCHAN_READCHAN 0x03ff /* bits 09..00: Read Channel */
307
308#define RDSA 12 /* RDSA */
309#define RDSA_RDSA 0xffff /* bits 15..00: RDS Block A Data (Si4701 only) */
310
311#define RDSB 13 /* RDSB */
312#define RDSB_RDSB 0xffff /* bits 15..00: RDS Block B Data (Si4701 only) */
313
314#define RDSC 14 /* RDSC */
315#define RDSC_RDSC 0xffff /* bits 15..00: RDS Block C Data (Si4701 only) */
316
317#define RDSD 15 /* RDSD */
318#define RDSD_RDSD 0xffff /* bits 15..00: RDS Block D Data (Si4701 only) */
319
320
321
322/**************************************************************************
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300323 * USB HID Reports
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300324 **************************************************************************/
325
326/* Reports 1-16 give direct read/write access to the 16 Si470x registers */
327/* with the (REPORT_ID - 1) corresponding to the register address across USB */
328/* endpoint 0 using GET_REPORT and SET_REPORT */
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300329#define REGISTER_REPORT_SIZE (RADIO_REGISTER_SIZE + 1)
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300330#define REGISTER_REPORT(reg) ((reg) + 1)
331
332/* Report 17 gives direct read/write access to the entire Si470x register */
333/* map across endpoint 0 using GET_REPORT and SET_REPORT */
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300334#define ENTIRE_REPORT_SIZE (RADIO_REGISTER_NUM * RADIO_REGISTER_SIZE + 1)
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300335#define ENTIRE_REPORT 17
336
337/* Report 18 is used to send the lowest 6 Si470x registers up the HID */
338/* interrupt endpoint 1 to Windows every 20 milliseconds for status */
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300339#define RDS_REPORT_SIZE (RDS_REGISTER_NUM * RADIO_REGISTER_SIZE + 1)
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300340#define RDS_REPORT 18
341
342/* Report 19: LED state */
343#define LED_REPORT_SIZE 3
344#define LED_REPORT 19
345
346/* Report 19: stream */
347#define STREAM_REPORT_SIZE 3
348#define STREAM_REPORT 19
349
350/* Report 20: scratch */
351#define SCRATCH_PAGE_SIZE 63
352#define SCRATCH_REPORT_SIZE (SCRATCH_PAGE_SIZE + 1)
353#define SCRATCH_REPORT 20
354
355/* Reports 19-22: flash upgrade of the C8051F321 */
356#define WRITE_REPORT 19
357#define FLASH_REPORT 20
358#define CRC_REPORT 21
359#define RESPONSE_REPORT 22
360
361/* Report 23: currently unused, but can accept 60 byte reports on the HID */
362/* interrupt out endpoint 2 every 1 millisecond */
363#define UNUSED_REPORT 23
364
365
366
367/**************************************************************************
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300368 * Software/Hardware Versions
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300369 **************************************************************************/
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300370#define RADIO_SW_VERSION_NOT_BOOTLOADABLE 6
371#define RADIO_SW_VERSION 7
372#define RADIO_SW_VERSION_CURRENT 15
373#define RADIO_HW_VERSION 1
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300374
375#define SCRATCH_PAGE_SW_VERSION 1
376#define SCRATCH_PAGE_HW_VERSION 2
377
378
379
380/**************************************************************************
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300381 * LED State Definitions
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300382 **************************************************************************/
383#define LED_COMMAND 0x35
384
385#define NO_CHANGE_LED 0x00
386#define ALL_COLOR_LED 0x01 /* streaming state */
387#define BLINK_GREEN_LED 0x02 /* connect state */
388#define BLINK_RED_LED 0x04
389#define BLINK_ORANGE_LED 0x10 /* disconnect state */
390#define SOLID_GREEN_LED 0x20 /* tuning/seeking state */
391#define SOLID_RED_LED 0x40 /* bootload state */
392#define SOLID_ORANGE_LED 0x80
393
394
395
396/**************************************************************************
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300397 * Stream State Definitions
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300398 **************************************************************************/
399#define STREAM_COMMAND 0x36
400#define STREAM_VIDPID 0x00
401#define STREAM_AUDIO 0xff
402
403
404
405/**************************************************************************
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300406 * Bootloader / Flash Commands
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300407 **************************************************************************/
408
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300409/* unique id sent to bootloader and required to put into a bootload state */
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300410#define UNIQUE_BL_ID 0x34
411
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300412/* mask for the flash data */
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300413#define FLASH_DATA_MASK 0x55
414
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300415/* bootloader commands */
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300416#define GET_SW_VERSION_COMMAND 0x00
417#define SET_PAGE_COMMAND 0x01
418#define ERASE_PAGE_COMMAND 0x02
419#define WRITE_PAGE_COMMAND 0x03
420#define CRC_ON_PAGE_COMMAND 0x04
421#define READ_FLASH_BYTE_COMMAND 0x05
422#define RESET_DEVICE_COMMAND 0x06
423#define GET_HW_VERSION_COMMAND 0x07
424#define BLANK 0xff
425
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300426/* bootloader command responses */
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300427#define COMMAND_OK 0x01
428#define COMMAND_FAILED 0x02
429#define COMMAND_PENDING 0x03
430
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300431/* buffer sizes */
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300432#define COMMAND_BUFFER_SIZE 4
433#define RESPONSE_BUFFER_SIZE 2
434#define FLASH_BUFFER_SIZE 64
435#define CRC_BUFFER_SIZE 3
436
437
438
439/**************************************************************************
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300440 * General Driver Definitions
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300441 **************************************************************************/
442
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300443/*
444 * si470x_device - private data
445 */
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300446struct si470x_device {
447 /* reference to USB and video device */
448 struct usb_device *usbdev;
Tobias Lorenz57566ad2008-02-09 16:08:24 -0300449 struct usb_interface *intf;
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300450 struct video_device *videodev;
451
Tobias Lorenz0e3301e2008-01-27 14:54:07 -0300452 /* driver management */
453 unsigned int users;
Tobias Lorenzce5829e2008-05-31 15:04:32 -0300454 unsigned char disconnected;
455 struct mutex disconnect_lock;
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300456
457 /* Silabs internal registers (0..15) */
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300458 unsigned short registers[RADIO_REGISTER_NUM];
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300459
460 /* RDS receive buffer */
Tobias Lorenz5caf5132008-02-04 22:26:08 -0300461 struct delayed_work work;
Tobias Lorenz2fb88402008-01-25 05:14:57 -0300462 wait_queue_head_t read_queue;
Tobias Lorenz5caf5132008-02-04 22:26:08 -0300463 struct mutex lock; /* buffer locking */
Tobias Lorenz2fb88402008-01-25 05:14:57 -0300464 unsigned char *buffer; /* size is always multiple of three */
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300465 unsigned int buf_size;
466 unsigned int rd_index;
467 unsigned int wr_index;
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300468};
469
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300470
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300471/*
472 * The frequency is set in units of 62.5 Hz when using V4L2_TUNER_CAP_LOW,
473 * 62.5 kHz otherwise.
474 * The tuner is able to have a channel spacing of 50, 100 or 200 kHz.
475 * tuner->capability is therefore set to V4L2_TUNER_CAP_LOW
476 * The FREQ_MUL is then: 1 MHz / 62.5 Hz = 16000
477 */
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300478#define FREQ_MUL (1000000 / 62.5)
479
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300480
481
482/**************************************************************************
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300483 * General Driver Functions
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300484 **************************************************************************/
485
486/*
487 * si470x_get_report - receive a HID report
488 */
Tobias Lorenz0e3301e2008-01-27 14:54:07 -0300489static int si470x_get_report(struct si470x_device *radio, void *buf, int size)
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300490{
Tobias Lorenz0e3301e2008-01-27 14:54:07 -0300491 unsigned char *report = (unsigned char *) buf;
492 int retval;
493
494 retval = usb_control_msg(radio->usbdev,
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300495 usb_rcvctrlpipe(radio->usbdev, 0),
496 HID_REQ_GET_REPORT,
497 USB_TYPE_CLASS | USB_RECIP_INTERFACE | USB_DIR_IN,
Tobias Lorenz0e3301e2008-01-27 14:54:07 -0300498 report[0], 2,
499 buf, size, usb_timeout);
Tobias Lorenza7c850a2008-05-31 15:07:52 -0300500
Tobias Lorenz0e3301e2008-01-27 14:54:07 -0300501 if (retval < 0)
502 printk(KERN_WARNING DRIVER_NAME
503 ": si470x_get_report: usb_control_msg returned %d\n",
504 retval);
Tobias Lorenz0e3301e2008-01-27 14:54:07 -0300505 return retval;
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300506}
507
508
509/*
510 * si470x_set_report - send a HID report
511 */
Tobias Lorenz0e3301e2008-01-27 14:54:07 -0300512static int si470x_set_report(struct si470x_device *radio, void *buf, int size)
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300513{
Tobias Lorenz0e3301e2008-01-27 14:54:07 -0300514 unsigned char *report = (unsigned char *) buf;
515 int retval;
516
517 retval = usb_control_msg(radio->usbdev,
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300518 usb_sndctrlpipe(radio->usbdev, 0),
519 HID_REQ_SET_REPORT,
520 USB_TYPE_CLASS | USB_RECIP_INTERFACE | USB_DIR_OUT,
Tobias Lorenz0e3301e2008-01-27 14:54:07 -0300521 report[0], 2,
522 buf, size, usb_timeout);
Tobias Lorenza7c850a2008-05-31 15:07:52 -0300523
Tobias Lorenz0e3301e2008-01-27 14:54:07 -0300524 if (retval < 0)
525 printk(KERN_WARNING DRIVER_NAME
526 ": si470x_set_report: usb_control_msg returned %d\n",
527 retval);
Tobias Lorenz0e3301e2008-01-27 14:54:07 -0300528 return retval;
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300529}
530
531
532/*
533 * si470x_get_register - read register
534 */
535static int si470x_get_register(struct si470x_device *radio, int regnr)
536{
Tobias Lorenz0e3301e2008-01-27 14:54:07 -0300537 unsigned char buf[REGISTER_REPORT_SIZE];
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300538 int retval;
539
Tobias Lorenz0e3301e2008-01-27 14:54:07 -0300540 buf[0] = REGISTER_REPORT(regnr);
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300541
Tobias Lorenz0e3301e2008-01-27 14:54:07 -0300542 retval = si470x_get_report(radio, (void *) &buf, sizeof(buf));
543
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300544 if (retval >= 0)
Harvey Harrison5ad6b812008-04-15 22:22:11 -0300545 radio->registers[regnr] = get_unaligned_be16(&buf[1]);
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300546
547 return (retval < 0) ? -EINVAL : 0;
548}
549
550
551/*
552 * si470x_set_register - write register
553 */
554static int si470x_set_register(struct si470x_device *radio, int regnr)
555{
Tobias Lorenz0e3301e2008-01-27 14:54:07 -0300556 unsigned char buf[REGISTER_REPORT_SIZE];
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300557 int retval;
558
Tobias Lorenz0e3301e2008-01-27 14:54:07 -0300559 buf[0] = REGISTER_REPORT(regnr);
Harvey Harrison5ad6b812008-04-15 22:22:11 -0300560 put_unaligned_be16(radio->registers[regnr], &buf[1]);
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300561
Tobias Lorenz0e3301e2008-01-27 14:54:07 -0300562 retval = si470x_set_report(radio, (void *) &buf, sizeof(buf));
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300563
564 return (retval < 0) ? -EINVAL : 0;
565}
566
567
568/*
569 * si470x_get_all_registers - read entire registers
570 */
571static int si470x_get_all_registers(struct si470x_device *radio)
572{
Tobias Lorenz0e3301e2008-01-27 14:54:07 -0300573 unsigned char buf[ENTIRE_REPORT_SIZE];
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300574 int retval;
Tobias Lorenz0e3301e2008-01-27 14:54:07 -0300575 unsigned char regnr;
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300576
Tobias Lorenz0e3301e2008-01-27 14:54:07 -0300577 buf[0] = ENTIRE_REPORT;
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300578
Tobias Lorenz0e3301e2008-01-27 14:54:07 -0300579 retval = si470x_get_report(radio, (void *) &buf, sizeof(buf));
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300580
581 if (retval >= 0)
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300582 for (regnr = 0; regnr < RADIO_REGISTER_NUM; regnr++)
Harvey Harrison5ad6b812008-04-15 22:22:11 -0300583 radio->registers[regnr] = get_unaligned_be16(
584 &buf[regnr * RADIO_REGISTER_SIZE + 1]);
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300585
586 return (retval < 0) ? -EINVAL : 0;
587}
588
589
590/*
591 * si470x_get_rds_registers - read rds registers
592 */
593static int si470x_get_rds_registers(struct si470x_device *radio)
594{
Tobias Lorenz0e3301e2008-01-27 14:54:07 -0300595 unsigned char buf[RDS_REPORT_SIZE];
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300596 int retval;
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300597 int size;
Tobias Lorenz0e3301e2008-01-27 14:54:07 -0300598 unsigned char regnr;
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300599
Tobias Lorenz0e3301e2008-01-27 14:54:07 -0300600 buf[0] = RDS_REPORT;
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300601
602 retval = usb_interrupt_msg(radio->usbdev,
Tobias Lorenz0e3301e2008-01-27 14:54:07 -0300603 usb_rcvintpipe(radio->usbdev, 1),
604 (void *) &buf, sizeof(buf), &size, usb_timeout);
605 if (size != sizeof(buf))
Tobias Lorenzce5829e2008-05-31 15:04:32 -0300606 printk(KERN_WARNING DRIVER_NAME ": si470x_get_rds_registers: "
Tobias Lorenz5caf5132008-02-04 22:26:08 -0300607 "return size differs: %d != %zu\n", size, sizeof(buf));
Tobias Lorenz0e3301e2008-01-27 14:54:07 -0300608 if (retval < 0)
609 printk(KERN_WARNING DRIVER_NAME ": si470x_get_rds_registers: "
610 "usb_interrupt_msg returned %d\n", retval);
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300611
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300612 if (retval >= 0)
613 for (regnr = 0; regnr < RDS_REGISTER_NUM; regnr++)
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300614 radio->registers[STATUSRSSI + regnr] =
Tobias Lorenzce5829e2008-05-31 15:04:32 -0300615 get_unaligned_be16(
616 &buf[regnr * RADIO_REGISTER_SIZE + 1]);
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300617
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300618 return (retval < 0) ? -EINVAL : 0;
619}
620
621
622/*
623 * si470x_set_chan - set the channel
624 */
Tobias Lorenz0e3301e2008-01-27 14:54:07 -0300625static int si470x_set_chan(struct si470x_device *radio, unsigned short chan)
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300626{
Tobias Lorenz0e3301e2008-01-27 14:54:07 -0300627 int retval;
628 unsigned long timeout;
629 bool timed_out = 0;
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300630
631 /* start tuning */
632 radio->registers[CHANNEL] &= ~CHANNEL_CHAN;
633 radio->registers[CHANNEL] |= CHANNEL_TUNE | chan;
634 retval = si470x_set_register(radio, CHANNEL);
635 if (retval < 0)
Tobias Lorenza7c850a2008-05-31 15:07:52 -0300636 goto done;
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300637
Tobias Lorenza7c850a2008-05-31 15:07:52 -0300638 /* wait till tune operation has completed */
Tobias Lorenz0e3301e2008-01-27 14:54:07 -0300639 timeout = jiffies + msecs_to_jiffies(tune_timeout);
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300640 do {
641 retval = si470x_get_register(radio, STATUSRSSI);
642 if (retval < 0)
Tobias Lorenza7c850a2008-05-31 15:07:52 -0300643 goto stop;
Tobias Lorenz0e3301e2008-01-27 14:54:07 -0300644 timed_out = time_after(jiffies, timeout);
645 } while (((radio->registers[STATUSRSSI] & STATUSRSSI_STC) == 0) &&
646 (!timed_out));
Tobias Lorenza7c850a2008-05-31 15:07:52 -0300647 if ((radio->registers[STATUSRSSI] & STATUSRSSI_STC) == 0)
648 printk(KERN_WARNING DRIVER_NAME ": tune does not complete\n");
Tobias Lorenz0e3301e2008-01-27 14:54:07 -0300649 if (timed_out)
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300650 printk(KERN_WARNING DRIVER_NAME
Tobias Lorenza7c850a2008-05-31 15:07:52 -0300651 ": tune timed out after %u ms\n", tune_timeout);
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300652
Tobias Lorenza7c850a2008-05-31 15:07:52 -0300653stop:
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300654 /* stop tuning */
655 radio->registers[CHANNEL] &= ~CHANNEL_TUNE;
Tobias Lorenza7c850a2008-05-31 15:07:52 -0300656 retval = si470x_set_register(radio, CHANNEL);
657
658done:
659 return retval;
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300660}
661
662
663/*
664 * si470x_get_freq - get the frequency
665 */
Tobias Lorenz6cc72652008-05-31 15:06:50 -0300666static int si470x_get_freq(struct si470x_device *radio, unsigned int *freq)
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300667{
Tobias Lorenz6cc72652008-05-31 15:06:50 -0300668 unsigned int spacing, band_bottom;
Tobias Lorenz0e3301e2008-01-27 14:54:07 -0300669 unsigned short chan;
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300670 int retval;
671
672 /* Spacing (kHz) */
Tobias Lorenza17c0012008-09-24 19:21:50 -0300673 switch ((radio->registers[SYSCONFIG2] & SYSCONFIG2_SPACE) >> 4) {
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300674 /* 0: 200 kHz (USA, Australia) */
Tobias Lorenza17c0012008-09-24 19:21:50 -0300675 case 0:
676 spacing = 0.200 * FREQ_MUL; break;
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300677 /* 1: 100 kHz (Europe, Japan) */
Tobias Lorenza17c0012008-09-24 19:21:50 -0300678 case 1:
679 spacing = 0.100 * FREQ_MUL; break;
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300680 /* 2: 50 kHz */
Tobias Lorenza17c0012008-09-24 19:21:50 -0300681 default:
682 spacing = 0.050 * FREQ_MUL; break;
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300683 };
684
685 /* Bottom of Band (MHz) */
Tobias Lorenza17c0012008-09-24 19:21:50 -0300686 switch ((radio->registers[SYSCONFIG2] & SYSCONFIG2_BAND) >> 6) {
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300687 /* 0: 87.5 - 108 MHz (USA, Europe) */
Tobias Lorenza17c0012008-09-24 19:21:50 -0300688 case 0:
689 band_bottom = 87.5 * FREQ_MUL; break;
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300690 /* 1: 76 - 108 MHz (Japan wide band) */
Tobias Lorenza17c0012008-09-24 19:21:50 -0300691 default:
692 band_bottom = 76 * FREQ_MUL; break;
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300693 /* 2: 76 - 90 MHz (Japan) */
Tobias Lorenza17c0012008-09-24 19:21:50 -0300694 case 2:
695 band_bottom = 76 * FREQ_MUL; break;
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300696 };
697
698 /* read channel */
699 retval = si470x_get_register(radio, READCHAN);
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300700 chan = radio->registers[READCHAN] & READCHAN_READCHAN;
701
702 /* Frequency (MHz) = Spacing (kHz) x Channel + Bottom of Band (MHz) */
Tobias Lorenz6cc72652008-05-31 15:06:50 -0300703 *freq = chan * spacing + band_bottom;
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300704
Tobias Lorenz6cc72652008-05-31 15:06:50 -0300705 return retval;
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300706}
707
708
709/*
710 * si470x_set_freq - set the frequency
711 */
Tobias Lorenz0e3301e2008-01-27 14:54:07 -0300712static int si470x_set_freq(struct si470x_device *radio, unsigned int freq)
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300713{
Tobias Lorenz0e3301e2008-01-27 14:54:07 -0300714 unsigned int spacing, band_bottom;
715 unsigned short chan;
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300716
717 /* Spacing (kHz) */
Tobias Lorenza17c0012008-09-24 19:21:50 -0300718 switch ((radio->registers[SYSCONFIG2] & SYSCONFIG2_SPACE) >> 4) {
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300719 /* 0: 200 kHz (USA, Australia) */
Tobias Lorenza17c0012008-09-24 19:21:50 -0300720 case 0:
721 spacing = 0.200 * FREQ_MUL; break;
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300722 /* 1: 100 kHz (Europe, Japan) */
Tobias Lorenza17c0012008-09-24 19:21:50 -0300723 case 1:
724 spacing = 0.100 * FREQ_MUL; break;
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300725 /* 2: 50 kHz */
Tobias Lorenza17c0012008-09-24 19:21:50 -0300726 default:
727 spacing = 0.050 * FREQ_MUL; break;
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300728 };
729
730 /* Bottom of Band (MHz) */
Tobias Lorenza17c0012008-09-24 19:21:50 -0300731 switch ((radio->registers[SYSCONFIG2] & SYSCONFIG2_BAND) >> 6) {
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300732 /* 0: 87.5 - 108 MHz (USA, Europe) */
Tobias Lorenza17c0012008-09-24 19:21:50 -0300733 case 0:
734 band_bottom = 87.5 * FREQ_MUL; break;
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300735 /* 1: 76 - 108 MHz (Japan wide band) */
Tobias Lorenza17c0012008-09-24 19:21:50 -0300736 default:
737 band_bottom = 76 * FREQ_MUL; break;
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300738 /* 2: 76 - 90 MHz (Japan) */
Tobias Lorenza17c0012008-09-24 19:21:50 -0300739 case 2:
740 band_bottom = 76 * FREQ_MUL; break;
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300741 };
742
743 /* Chan = [ Freq (Mhz) - Bottom of Band (MHz) ] / Spacing (kHz) */
744 chan = (freq - band_bottom) / spacing;
745
746 return si470x_set_chan(radio, chan);
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300747}
748
749
750/*
Tobias Lorenzbbc89952008-05-31 15:11:32 -0300751 * si470x_set_seek - set seek
752 */
753static int si470x_set_seek(struct si470x_device *radio,
754 unsigned int wrap_around, unsigned int seek_upward)
755{
756 int retval = 0;
757 unsigned long timeout;
758 bool timed_out = 0;
759
760 /* start seeking */
761 radio->registers[POWERCFG] |= POWERCFG_SEEK;
762 if (wrap_around == 1)
763 radio->registers[POWERCFG] &= ~POWERCFG_SKMODE;
764 else
765 radio->registers[POWERCFG] |= POWERCFG_SKMODE;
766 if (seek_upward == 1)
767 radio->registers[POWERCFG] |= POWERCFG_SEEKUP;
768 else
769 radio->registers[POWERCFG] &= ~POWERCFG_SEEKUP;
770 retval = si470x_set_register(radio, POWERCFG);
771 if (retval < 0)
772 goto done;
773
774 /* wait till seek operation has completed */
775 timeout = jiffies + msecs_to_jiffies(seek_timeout);
776 do {
777 retval = si470x_get_register(radio, STATUSRSSI);
778 if (retval < 0)
779 goto stop;
780 timed_out = time_after(jiffies, timeout);
781 } while (((radio->registers[STATUSRSSI] & STATUSRSSI_STC) == 0) &&
782 (!timed_out));
783 if ((radio->registers[STATUSRSSI] & STATUSRSSI_STC) == 0)
784 printk(KERN_WARNING DRIVER_NAME ": seek does not complete\n");
785 if (radio->registers[STATUSRSSI] & STATUSRSSI_SF)
786 printk(KERN_WARNING DRIVER_NAME
787 ": seek failed / band limit reached\n");
788 if (timed_out)
789 printk(KERN_WARNING DRIVER_NAME
790 ": seek timed out after %u ms\n", seek_timeout);
791
792stop:
793 /* stop seeking */
794 radio->registers[POWERCFG] &= ~POWERCFG_SEEK;
795 retval = si470x_set_register(radio, POWERCFG);
796
797done:
798 /* try again, if timed out */
799 if ((retval == 0) && timed_out)
800 retval = -EAGAIN;
801
802 return retval;
803}
804
805
806/*
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300807 * si470x_start - switch on radio
808 */
809static int si470x_start(struct si470x_device *radio)
810{
811 int retval;
812
813 /* powercfg */
814 radio->registers[POWERCFG] =
815 POWERCFG_DMUTE | POWERCFG_ENABLE | POWERCFG_RDSM;
816 retval = si470x_set_register(radio, POWERCFG);
817 if (retval < 0)
Tobias Lorenza7c850a2008-05-31 15:07:52 -0300818 goto done;
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300819
820 /* sysconfig 1 */
Tobias Lorenz2fb88402008-01-25 05:14:57 -0300821 radio->registers[SYSCONFIG1] = SYSCONFIG1_DE;
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300822 retval = si470x_set_register(radio, SYSCONFIG1);
823 if (retval < 0)
Tobias Lorenza7c850a2008-05-31 15:07:52 -0300824 goto done;
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300825
826 /* sysconfig 2 */
827 radio->registers[SYSCONFIG2] =
Tobias Lorenza7c850a2008-05-31 15:07:52 -0300828 (0x3f << 8) | /* SEEKTH */
829 ((band << 6) & SYSCONFIG2_BAND) | /* BAND */
830 ((space << 4) & SYSCONFIG2_SPACE) | /* SPACE */
831 15; /* VOLUME (max) */
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300832 retval = si470x_set_register(radio, SYSCONFIG2);
833 if (retval < 0)
Tobias Lorenza7c850a2008-05-31 15:07:52 -0300834 goto done;
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300835
836 /* reset last channel */
Tobias Lorenza7c850a2008-05-31 15:07:52 -0300837 retval = si470x_set_chan(radio,
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300838 radio->registers[CHANNEL] & CHANNEL_CHAN);
Tobias Lorenza7c850a2008-05-31 15:07:52 -0300839
840done:
841 return retval;
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300842}
843
844
845/*
846 * si470x_stop - switch off radio
847 */
848static int si470x_stop(struct si470x_device *radio)
849{
Tobias Lorenz2fb88402008-01-25 05:14:57 -0300850 int retval;
851
852 /* sysconfig 1 */
853 radio->registers[SYSCONFIG1] &= ~SYSCONFIG1_RDS;
854 retval = si470x_set_register(radio, SYSCONFIG1);
855 if (retval < 0)
Tobias Lorenza7c850a2008-05-31 15:07:52 -0300856 goto done;
Tobias Lorenz2fb88402008-01-25 05:14:57 -0300857
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300858 /* powercfg */
859 radio->registers[POWERCFG] &= ~POWERCFG_DMUTE;
860 /* POWERCFG_ENABLE has to automatically go low */
861 radio->registers[POWERCFG] |= POWERCFG_ENABLE | POWERCFG_DISABLE;
Tobias Lorenza7c850a2008-05-31 15:07:52 -0300862 retval = si470x_set_register(radio, POWERCFG);
863
864done:
865 return retval;
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300866}
867
868
Tobias Lorenz2fb88402008-01-25 05:14:57 -0300869/*
870 * si470x_rds_on - switch on rds reception
871 */
872static int si470x_rds_on(struct si470x_device *radio)
873{
Tobias Lorenz57566ad2008-02-09 16:08:24 -0300874 int retval;
875
Tobias Lorenz2fb88402008-01-25 05:14:57 -0300876 /* sysconfig 1 */
Tobias Lorenz57566ad2008-02-09 16:08:24 -0300877 mutex_lock(&radio->lock);
Tobias Lorenz2fb88402008-01-25 05:14:57 -0300878 radio->registers[SYSCONFIG1] |= SYSCONFIG1_RDS;
Tobias Lorenz57566ad2008-02-09 16:08:24 -0300879 retval = si470x_set_register(radio, SYSCONFIG1);
880 if (retval < 0)
881 radio->registers[SYSCONFIG1] &= ~SYSCONFIG1_RDS;
882 mutex_unlock(&radio->lock);
883
884 return retval;
Tobias Lorenz2fb88402008-01-25 05:14:57 -0300885}
886
887
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300888
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300889/**************************************************************************
Tobias Lorenz2f94fc42009-02-12 14:56:19 -0300890 * General Driver Functions - LED_REPORT
891 **************************************************************************/
892
893/*
894 * si470x_set_led_state - sets the led state
895 */
896static int si470x_set_led_state(struct si470x_device *radio,
897 unsigned char led_state)
898{
899 unsigned char buf[LED_REPORT_SIZE];
900 int retval;
901
902 buf[0] = LED_REPORT;
903 buf[1] = LED_COMMAND;
904 buf[2] = led_state;
905
906 retval = si470x_set_report(radio, (void *) &buf, sizeof(buf));
907
908 return (retval < 0) ? -EINVAL : 0;
909}
910
911
912
913/**************************************************************************
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -0300914 * RDS Driver Functions
915 **************************************************************************/
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300916
917/*
918 * si470x_rds - rds processing function
919 */
920static void si470x_rds(struct si470x_device *radio)
921{
Tobias Lorenz5caf5132008-02-04 22:26:08 -0300922 unsigned char blocknum;
923 unsigned short bler; /* rds block errors */
924 unsigned short rds;
925 unsigned char tmpbuf[3];
926
Tobias Lorenz2fb88402008-01-25 05:14:57 -0300927 /* get rds blocks */
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300928 if (si470x_get_rds_registers(radio) < 0)
929 return;
930 if ((radio->registers[STATUSRSSI] & STATUSRSSI_RDSR) == 0) {
931 /* No RDS group ready */
932 return;
933 }
934 if ((radio->registers[STATUSRSSI] & STATUSRSSI_RDSS) == 0) {
935 /* RDS decoder not synchronized */
936 return;
937 }
938
Tobias Lorenz5caf5132008-02-04 22:26:08 -0300939 /* copy all four RDS blocks to internal buffer */
940 mutex_lock(&radio->lock);
941 for (blocknum = 0; blocknum < 4; blocknum++) {
942 switch (blocknum) {
943 default:
944 bler = (radio->registers[STATUSRSSI] &
945 STATUSRSSI_BLERA) >> 9;
946 rds = radio->registers[RDSA];
947 break;
948 case 1:
949 bler = (radio->registers[READCHAN] &
950 READCHAN_BLERB) >> 14;
951 rds = radio->registers[RDSB];
952 break;
953 case 2:
954 bler = (radio->registers[READCHAN] &
955 READCHAN_BLERC) >> 12;
956 rds = radio->registers[RDSC];
957 break;
958 case 3:
959 bler = (radio->registers[READCHAN] &
960 READCHAN_BLERD) >> 10;
961 rds = radio->registers[RDSD];
962 break;
963 };
Tobias Lorenz0e3301e2008-01-27 14:54:07 -0300964
Tobias Lorenz5caf5132008-02-04 22:26:08 -0300965 /* Fill the V4L2 RDS buffer */
Harvey Harrison5ad6b812008-04-15 22:22:11 -0300966 put_unaligned_le16(rds, &tmpbuf);
Tobias Lorenz5caf5132008-02-04 22:26:08 -0300967 tmpbuf[2] = blocknum; /* offset name */
968 tmpbuf[2] |= blocknum << 3; /* received offset */
969 if (bler > max_rds_errors)
970 tmpbuf[2] |= 0x80; /* uncorrectable errors */
971 else if (bler > 0)
972 tmpbuf[2] |= 0x40; /* corrected error(s) */
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300973
Tobias Lorenz5caf5132008-02-04 22:26:08 -0300974 /* copy RDS block to internal buffer */
975 memcpy(&radio->buffer[radio->wr_index], &tmpbuf, 3);
976 radio->wr_index += 3;
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300977
Tobias Lorenz5caf5132008-02-04 22:26:08 -0300978 /* wrap write pointer */
979 if (radio->wr_index >= radio->buf_size)
980 radio->wr_index = 0;
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300981
Tobias Lorenz5caf5132008-02-04 22:26:08 -0300982 /* check for overflow */
983 if (radio->wr_index == radio->rd_index) {
984 /* increment and wrap read pointer */
985 radio->rd_index += 3;
986 if (radio->rd_index >= radio->buf_size)
987 radio->rd_index = 0;
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300988 }
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300989 }
Tobias Lorenz5caf5132008-02-04 22:26:08 -0300990 mutex_unlock(&radio->lock);
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300991
Tobias Lorenz2fb88402008-01-25 05:14:57 -0300992 /* wake up read queue */
993 if (radio->wr_index != radio->rd_index)
994 wake_up_interruptible(&radio->read_queue);
Tobias Lorenz78656ac2008-01-14 21:55:27 -0300995}
996
997
998/*
Tobias Lorenz2fb88402008-01-25 05:14:57 -0300999 * si470x_work - rds work function
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001000 */
1001static void si470x_work(struct work_struct *work)
1002{
1003 struct si470x_device *radio = container_of(work, struct si470x_device,
Tobias Lorenz5caf5132008-02-04 22:26:08 -03001004 work.work);
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001005
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001006 /* safety checks */
Tobias Lorenzce5829e2008-05-31 15:04:32 -03001007 if (radio->disconnected)
1008 return;
Tobias Lorenz2fb88402008-01-25 05:14:57 -03001009 if ((radio->registers[SYSCONFIG1] & SYSCONFIG1_RDS) == 0)
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001010 return;
1011
1012 si470x_rds(radio);
Tobias Lorenz5caf5132008-02-04 22:26:08 -03001013 schedule_delayed_work(&radio->work, msecs_to_jiffies(rds_poll_time));
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001014}
1015
1016
1017
1018/**************************************************************************
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -03001019 * File Operations Interface
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001020 **************************************************************************/
1021
1022/*
1023 * si470x_fops_read - read RDS data
1024 */
1025static ssize_t si470x_fops_read(struct file *file, char __user *buf,
1026 size_t count, loff_t *ppos)
1027{
Hans Verkuilc170ecf2008-08-23 08:32:09 -03001028 struct si470x_device *radio = video_drvdata(file);
Tobias Lorenz2fb88402008-01-25 05:14:57 -03001029 int retval = 0;
Tobias Lorenz5caf5132008-02-04 22:26:08 -03001030 unsigned int block_count = 0;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001031
Tobias Lorenz2fb88402008-01-25 05:14:57 -03001032 /* switch on rds reception */
1033 if ((radio->registers[SYSCONFIG1] & SYSCONFIG1_RDS) == 0) {
1034 si470x_rds_on(radio);
Tobias Lorenz5caf5132008-02-04 22:26:08 -03001035 schedule_delayed_work(&radio->work,
1036 msecs_to_jiffies(rds_poll_time));
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001037 }
1038
Tobias Lorenz2fb88402008-01-25 05:14:57 -03001039 /* block if no new data available */
1040 while (radio->wr_index == radio->rd_index) {
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001041 if (file->f_flags & O_NONBLOCK) {
1042 retval = -EWOULDBLOCK;
1043 goto done;
1044 }
Tobias Lorenz5caf5132008-02-04 22:26:08 -03001045 if (wait_event_interruptible(radio->read_queue,
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001046 radio->wr_index != radio->rd_index) < 0) {
1047 retval = -EINTR;
1048 goto done;
1049 }
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001050 }
1051
Tobias Lorenz2fb88402008-01-25 05:14:57 -03001052 /* calculate block count from byte count */
1053 count /= 3;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001054
Tobias Lorenz2fb88402008-01-25 05:14:57 -03001055 /* copy RDS block out of internal buffer and to user buffer */
Tobias Lorenz5caf5132008-02-04 22:26:08 -03001056 mutex_lock(&radio->lock);
1057 while (block_count < count) {
1058 if (radio->rd_index == radio->wr_index)
1059 break;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001060
Tobias Lorenz5caf5132008-02-04 22:26:08 -03001061 /* always transfer rds complete blocks */
1062 if (copy_to_user(buf, &radio->buffer[radio->rd_index], 3))
1063 /* retval = -EFAULT; */
1064 break;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001065
Tobias Lorenz5caf5132008-02-04 22:26:08 -03001066 /* increment and wrap read pointer */
1067 radio->rd_index += 3;
1068 if (radio->rd_index >= radio->buf_size)
1069 radio->rd_index = 0;
Tobias Lorenz2fb88402008-01-25 05:14:57 -03001070
Tobias Lorenz5caf5132008-02-04 22:26:08 -03001071 /* increment counters */
1072 block_count++;
1073 buf += 3;
1074 retval += 3;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001075 }
Tobias Lorenz5caf5132008-02-04 22:26:08 -03001076 mutex_unlock(&radio->lock);
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001077
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001078done:
Tobias Lorenz2fb88402008-01-25 05:14:57 -03001079 return retval;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001080}
1081
1082
1083/*
1084 * si470x_fops_poll - poll RDS data
1085 */
1086static unsigned int si470x_fops_poll(struct file *file,
1087 struct poll_table_struct *pts)
1088{
Hans Verkuilc170ecf2008-08-23 08:32:09 -03001089 struct si470x_device *radio = video_drvdata(file);
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001090 int retval = 0;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001091
Tobias Lorenz2fb88402008-01-25 05:14:57 -03001092 /* switch on rds reception */
1093 if ((radio->registers[SYSCONFIG1] & SYSCONFIG1_RDS) == 0) {
1094 si470x_rds_on(radio);
Tobias Lorenz5caf5132008-02-04 22:26:08 -03001095 schedule_delayed_work(&radio->work,
1096 msecs_to_jiffies(rds_poll_time));
Tobias Lorenz2fb88402008-01-25 05:14:57 -03001097 }
1098
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001099 poll_wait(file, &radio->read_queue, pts);
1100
Tobias Lorenz2fb88402008-01-25 05:14:57 -03001101 if (radio->rd_index != radio->wr_index)
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001102 retval = POLLIN | POLLRDNORM;
Tobias Lorenz2fb88402008-01-25 05:14:57 -03001103
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001104 return retval;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001105}
1106
1107
1108/*
1109 * si470x_fops_open - file open
1110 */
Hans Verkuilbec43662008-12-30 06:58:20 -03001111static int si470x_fops_open(struct file *file)
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001112{
Hans Verkuilc170ecf2008-08-23 08:32:09 -03001113 struct si470x_device *radio = video_drvdata(file);
Tobias Lorenz57566ad2008-02-09 16:08:24 -03001114 int retval;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001115
Hans Verkuild56dc612008-07-30 08:43:36 -03001116 lock_kernel();
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001117 radio->users++;
Tobias Lorenz57566ad2008-02-09 16:08:24 -03001118
1119 retval = usb_autopm_get_interface(radio->intf);
1120 if (retval < 0) {
1121 radio->users--;
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001122 retval = -EIO;
1123 goto done;
Tobias Lorenz57566ad2008-02-09 16:08:24 -03001124 }
1125
1126 if (radio->users == 1) {
1127 retval = si470x_start(radio);
1128 if (retval < 0)
1129 usb_autopm_put_interface(radio->intf);
Tobias Lorenz57566ad2008-02-09 16:08:24 -03001130 }
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001131
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001132done:
Hans Verkuild56dc612008-07-30 08:43:36 -03001133 unlock_kernel();
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001134 return retval;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001135}
1136
1137
1138/*
1139 * si470x_fops_release - file release
1140 */
Hans Verkuilbec43662008-12-30 06:58:20 -03001141static int si470x_fops_release(struct file *file)
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001142{
Hans Verkuilc170ecf2008-08-23 08:32:09 -03001143 struct si470x_device *radio = video_drvdata(file);
Tobias Lorenzce5829e2008-05-31 15:04:32 -03001144 int retval = 0;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001145
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001146 /* safety check */
1147 if (!radio) {
1148 retval = -ENODEV;
1149 goto done;
1150 }
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001151
Tobias Lorenzce5829e2008-05-31 15:04:32 -03001152 mutex_lock(&radio->disconnect_lock);
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001153 radio->users--;
1154 if (radio->users == 0) {
Tobias Lorenzce5829e2008-05-31 15:04:32 -03001155 if (radio->disconnected) {
1156 video_unregister_device(radio->videodev);
1157 kfree(radio->buffer);
1158 kfree(radio);
1159 goto unlock;
1160 }
Tobias Lorenz03dea862008-04-22 14:46:11 -03001161
Tobias Lorenz2fb88402008-01-25 05:14:57 -03001162 /* stop rds reception */
Tobias Lorenz5caf5132008-02-04 22:26:08 -03001163 cancel_delayed_work_sync(&radio->work);
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001164
Tobias Lorenz2fb88402008-01-25 05:14:57 -03001165 /* cancel read processes */
1166 wake_up_interruptible(&radio->read_queue);
1167
Tobias Lorenz57566ad2008-02-09 16:08:24 -03001168 retval = si470x_stop(radio);
1169 usb_autopm_put_interface(radio->intf);
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001170 }
1171
Tobias Lorenzce5829e2008-05-31 15:04:32 -03001172unlock:
1173 mutex_unlock(&radio->disconnect_lock);
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001174
1175done:
Tobias Lorenzce5829e2008-05-31 15:04:32 -03001176 return retval;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001177}
1178
1179
1180/*
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -03001181 * si470x_fops - file operations interface
1182 */
Hans Verkuilbec43662008-12-30 06:58:20 -03001183static const struct v4l2_file_operations si470x_fops = {
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -03001184 .owner = THIS_MODULE,
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -03001185 .read = si470x_fops_read,
1186 .poll = si470x_fops_poll,
1187 .ioctl = video_ioctl2,
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -03001188 .open = si470x_fops_open,
1189 .release = si470x_fops_release,
1190};
1191
1192
1193
1194/**************************************************************************
1195 * Video4Linux Interface
1196 **************************************************************************/
1197
1198/*
1199 * si470x_v4l2_queryctrl - query control
1200 */
1201static struct v4l2_queryctrl si470x_v4l2_queryctrl[] = {
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -03001202 {
1203 .id = V4L2_CID_AUDIO_VOLUME,
1204 .type = V4L2_CTRL_TYPE_INTEGER,
1205 .name = "Volume",
1206 .minimum = 0,
1207 .maximum = 15,
1208 .step = 1,
1209 .default_value = 15,
1210 },
1211 {
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -03001212 .id = V4L2_CID_AUDIO_MUTE,
1213 .type = V4L2_CTRL_TYPE_BOOLEAN,
1214 .name = "Mute",
1215 .minimum = 0,
1216 .maximum = 1,
1217 .step = 1,
1218 .default_value = 1,
1219 },
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -03001220};
1221
1222
1223/*
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001224 * si470x_vidioc_querycap - query device capabilities
1225 */
1226static int si470x_vidioc_querycap(struct file *file, void *priv,
1227 struct v4l2_capability *capability)
1228{
Alexey Klimovdc025d42009-02-05 22:52:29 -03001229 struct si470x_device *radio = video_drvdata(file);
1230
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001231 strlcpy(capability->driver, DRIVER_NAME, sizeof(capability->driver));
1232 strlcpy(capability->card, DRIVER_CARD, sizeof(capability->card));
Alexey Klimovdc025d42009-02-05 22:52:29 -03001233 usb_make_path(radio->usbdev, capability->bus_info, sizeof(capability->bus_info));
Tobias Lorenz0e3301e2008-01-27 14:54:07 -03001234 capability->version = DRIVER_KERNEL_VERSION;
Tobias Lorenzbbc89952008-05-31 15:11:32 -03001235 capability->capabilities = V4L2_CAP_HW_FREQ_SEEK |
1236 V4L2_CAP_TUNER | V4L2_CAP_RADIO;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001237
1238 return 0;
1239}
1240
1241
1242/*
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001243 * si470x_vidioc_queryctrl - enumerate control items
1244 */
1245static int si470x_vidioc_queryctrl(struct file *file, void *priv,
1246 struct v4l2_queryctrl *qc)
1247{
Tobias Lorenzeb6e3b82008-09-24 19:25:39 -03001248 unsigned char i = 0;
Tobias Lorenz0e3301e2008-01-27 14:54:07 -03001249 int retval = -EINVAL;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001250
Tobias Lorenzeb6e3b82008-09-24 19:25:39 -03001251 /* abort if qc->id is below V4L2_CID_BASE */
1252 if (qc->id < V4L2_CID_BASE)
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001253 goto done;
1254
Tobias Lorenzeb6e3b82008-09-24 19:25:39 -03001255 /* search video control */
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -03001256 for (i = 0; i < ARRAY_SIZE(si470x_v4l2_queryctrl); i++) {
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001257 if (qc->id == si470x_v4l2_queryctrl[i].id) {
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -03001258 memcpy(qc, &(si470x_v4l2_queryctrl[i]), sizeof(*qc));
Tobias Lorenzeb6e3b82008-09-24 19:25:39 -03001259 retval = 0; /* found */
Tobias Lorenz0e3301e2008-01-27 14:54:07 -03001260 break;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001261 }
1262 }
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001263
Tobias Lorenzeb6e3b82008-09-24 19:25:39 -03001264 /* disable unsupported base controls */
1265 /* to satisfy kradio and such apps */
1266 if ((retval == -EINVAL) && (qc->id < V4L2_CID_LASTP1)) {
1267 qc->flags = V4L2_CTRL_FLAG_DISABLED;
1268 retval = 0;
1269 }
1270
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001271done:
Tobias Lorenz0e3301e2008-01-27 14:54:07 -03001272 if (retval < 0)
1273 printk(KERN_WARNING DRIVER_NAME
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001274 ": query controls failed with %d\n", retval);
Tobias Lorenz0e3301e2008-01-27 14:54:07 -03001275 return retval;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001276}
1277
1278
1279/*
1280 * si470x_vidioc_g_ctrl - get the value of a control
1281 */
1282static int si470x_vidioc_g_ctrl(struct file *file, void *priv,
1283 struct v4l2_control *ctrl)
1284{
Hans Verkuilc170ecf2008-08-23 08:32:09 -03001285 struct si470x_device *radio = video_drvdata(file);
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001286 int retval = 0;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001287
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001288 /* safety checks */
1289 if (radio->disconnected) {
1290 retval = -EIO;
1291 goto done;
1292 }
Tobias Lorenz03dea862008-04-22 14:46:11 -03001293
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001294 switch (ctrl->id) {
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -03001295 case V4L2_CID_AUDIO_VOLUME:
1296 ctrl->value = radio->registers[SYSCONFIG2] &
1297 SYSCONFIG2_VOLUME;
1298 break;
1299 case V4L2_CID_AUDIO_MUTE:
1300 ctrl->value = ((radio->registers[POWERCFG] &
1301 POWERCFG_DMUTE) == 0) ? 1 : 0;
1302 break;
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001303 default:
1304 retval = -EINVAL;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001305 }
1306
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001307done:
1308 if (retval < 0)
1309 printk(KERN_WARNING DRIVER_NAME
1310 ": get control failed with %d\n", retval);
1311 return retval;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001312}
1313
1314
1315/*
1316 * si470x_vidioc_s_ctrl - set the value of a control
1317 */
1318static int si470x_vidioc_s_ctrl(struct file *file, void *priv,
1319 struct v4l2_control *ctrl)
1320{
Hans Verkuilc170ecf2008-08-23 08:32:09 -03001321 struct si470x_device *radio = video_drvdata(file);
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001322 int retval = 0;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001323
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001324 /* safety checks */
1325 if (radio->disconnected) {
1326 retval = -EIO;
1327 goto done;
1328 }
Tobias Lorenz03dea862008-04-22 14:46:11 -03001329
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001330 switch (ctrl->id) {
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -03001331 case V4L2_CID_AUDIO_VOLUME:
1332 radio->registers[SYSCONFIG2] &= ~SYSCONFIG2_VOLUME;
1333 radio->registers[SYSCONFIG2] |= ctrl->value;
Tobias Lorenz0e3301e2008-01-27 14:54:07 -03001334 retval = si470x_set_register(radio, SYSCONFIG2);
1335 break;
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -03001336 case V4L2_CID_AUDIO_MUTE:
1337 if (ctrl->value == 1)
1338 radio->registers[POWERCFG] &= ~POWERCFG_DMUTE;
1339 else
1340 radio->registers[POWERCFG] |= POWERCFG_DMUTE;
Tobias Lorenz0e3301e2008-01-27 14:54:07 -03001341 retval = si470x_set_register(radio, POWERCFG);
1342 break;
1343 default:
1344 retval = -EINVAL;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001345 }
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001346
1347done:
Tobias Lorenz0e3301e2008-01-27 14:54:07 -03001348 if (retval < 0)
1349 printk(KERN_WARNING DRIVER_NAME
1350 ": set control failed with %d\n", retval);
Tobias Lorenz0e3301e2008-01-27 14:54:07 -03001351 return retval;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001352}
1353
1354
1355/*
1356 * si470x_vidioc_g_audio - get audio attributes
1357 */
1358static int si470x_vidioc_g_audio(struct file *file, void *priv,
1359 struct v4l2_audio *audio)
1360{
Tobias Lorenz617f5332008-09-24 19:33:09 -03001361 /* driver constants */
1362 audio->index = 0;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001363 strcpy(audio->name, "Radio");
1364 audio->capability = V4L2_AUDCAP_STEREO;
Tobias Lorenz617f5332008-09-24 19:33:09 -03001365 audio->mode = 0;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001366
Tobias Lorenz617f5332008-09-24 19:33:09 -03001367 return 0;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001368}
1369
1370
1371/*
1372 * si470x_vidioc_g_tuner - get tuner attributes
1373 */
1374static int si470x_vidioc_g_tuner(struct file *file, void *priv,
1375 struct v4l2_tuner *tuner)
1376{
Hans Verkuilc170ecf2008-08-23 08:32:09 -03001377 struct si470x_device *radio = video_drvdata(file);
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001378 int retval = 0;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001379
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001380 /* safety checks */
1381 if (radio->disconnected) {
1382 retval = -EIO;
1383 goto done;
1384 }
Tobias Lorenz33632d42008-09-24 19:30:26 -03001385 if (tuner->index != 0) {
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001386 retval = -EINVAL;
1387 goto done;
1388 }
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001389
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001390 retval = si470x_get_register(radio, STATUSRSSI);
1391 if (retval < 0)
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001392 goto done;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001393
Tobias Lorenz33632d42008-09-24 19:30:26 -03001394 /* driver constants */
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001395 strcpy(tuner->name, "FM");
Tobias Lorenz33632d42008-09-24 19:30:26 -03001396 tuner->type = V4L2_TUNER_RADIO;
Tobias Lorenz73a529f2008-09-24 19:33:41 -03001397 tuner->capability = V4L2_TUNER_CAP_LOW | V4L2_TUNER_CAP_STEREO;
Tobias Lorenz33632d42008-09-24 19:30:26 -03001398
Tobias Lorenza17c0012008-09-24 19:21:50 -03001399 /* range limits */
1400 switch ((radio->registers[SYSCONFIG2] & SYSCONFIG2_BAND) >> 6) {
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -03001401 /* 0: 87.5 - 108 MHz (USA, Europe, default) */
1402 default:
1403 tuner->rangelow = 87.5 * FREQ_MUL;
1404 tuner->rangehigh = 108 * FREQ_MUL;
1405 break;
1406 /* 1: 76 - 108 MHz (Japan wide band) */
1407 case 1 :
1408 tuner->rangelow = 76 * FREQ_MUL;
1409 tuner->rangehigh = 108 * FREQ_MUL;
1410 break;
1411 /* 2: 76 - 90 MHz (Japan) */
1412 case 2 :
1413 tuner->rangelow = 76 * FREQ_MUL;
1414 tuner->rangehigh = 90 * FREQ_MUL;
1415 break;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001416 };
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001417
Tobias Lorenz73a529f2008-09-24 19:33:41 -03001418 /* stereo indicator == stereo (instead of mono) */
Tobias Lorenzd807dec2009-02-12 14:56:10 -03001419 if ((radio->registers[STATUSRSSI] & STATUSRSSI_ST) == 0)
Tobias Lorenz73a529f2008-09-24 19:33:41 -03001420 tuner->rxsubchans = V4L2_TUNER_SUB_MONO;
Tobias Lorenzd807dec2009-02-12 14:56:10 -03001421 else
1422 tuner->rxsubchans = V4L2_TUNER_SUB_MONO | V4L2_TUNER_SUB_STEREO;
Tobias Lorenz73a529f2008-09-24 19:33:41 -03001423
1424 /* mono/stereo selector */
Tobias Lorenzd807dec2009-02-12 14:56:10 -03001425 if ((radio->registers[POWERCFG] & POWERCFG_MONO) == 0)
Tobias Lorenz73a529f2008-09-24 19:33:41 -03001426 tuner->audmode = V4L2_TUNER_MODE_STEREO;
Tobias Lorenzd807dec2009-02-12 14:56:10 -03001427 else
1428 tuner->audmode = V4L2_TUNER_MODE_MONO;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001429
1430 /* min is worst, max is best; signal:0..0xffff; rssi: 0..0xff */
Tobias Lorenzd807dec2009-02-12 14:56:10 -03001431 /* measured in units of dbµV in 1 db increments (max at ~75 dbµV) */
1432 tuner->signal = (radio->registers[STATUSRSSI] & STATUSRSSI_RSSI);
1433 /* the ideal factor is 0xffff/75 = 873,8 */
1434 tuner->signal = (tuner->signal * 873) + (8 * tuner->signal / 10);
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001435
1436 /* automatic frequency control: -1: freq to low, 1 freq to high */
Tobias Lorenzace7d4b2008-05-31 15:09:07 -03001437 /* AFCRL does only indicate that freq. differs, not if too low/high */
1438 tuner->afc = (radio->registers[STATUSRSSI] & STATUSRSSI_AFCRL) ? 1 : 0;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001439
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001440done:
1441 if (retval < 0)
1442 printk(KERN_WARNING DRIVER_NAME
1443 ": get tuner failed with %d\n", retval);
1444 return retval;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001445}
1446
1447
1448/*
1449 * si470x_vidioc_s_tuner - set tuner attributes
1450 */
1451static int si470x_vidioc_s_tuner(struct file *file, void *priv,
1452 struct v4l2_tuner *tuner)
1453{
Hans Verkuilc170ecf2008-08-23 08:32:09 -03001454 struct si470x_device *radio = video_drvdata(file);
Tobias Lorenz33632d42008-09-24 19:30:26 -03001455 int retval = -EINVAL;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001456
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001457 /* safety checks */
1458 if (radio->disconnected) {
1459 retval = -EIO;
1460 goto done;
1461 }
Tobias Lorenz33632d42008-09-24 19:30:26 -03001462 if (tuner->index != 0)
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001463 goto done;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001464
Tobias Lorenz73a529f2008-09-24 19:33:41 -03001465 /* mono/stereo selector */
1466 switch (tuner->audmode) {
1467 case V4L2_TUNER_MODE_MONO:
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001468 radio->registers[POWERCFG] |= POWERCFG_MONO; /* force mono */
Tobias Lorenz73a529f2008-09-24 19:33:41 -03001469 break;
1470 case V4L2_TUNER_MODE_STEREO:
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001471 radio->registers[POWERCFG] &= ~POWERCFG_MONO; /* try stereo */
Tobias Lorenz73a529f2008-09-24 19:33:41 -03001472 break;
1473 default:
1474 goto done;
1475 }
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001476
Tobias Lorenz0e3301e2008-01-27 14:54:07 -03001477 retval = si470x_set_register(radio, POWERCFG);
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001478
1479done:
Tobias Lorenz0e3301e2008-01-27 14:54:07 -03001480 if (retval < 0)
1481 printk(KERN_WARNING DRIVER_NAME
1482 ": set tuner failed with %d\n", retval);
Tobias Lorenz0e3301e2008-01-27 14:54:07 -03001483 return retval;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001484}
1485
1486
1487/*
1488 * si470x_vidioc_g_frequency - get tuner or modulator radio frequency
1489 */
1490static int si470x_vidioc_g_frequency(struct file *file, void *priv,
1491 struct v4l2_frequency *freq)
1492{
Hans Verkuilc170ecf2008-08-23 08:32:09 -03001493 struct si470x_device *radio = video_drvdata(file);
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001494 int retval = 0;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001495
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001496 /* safety checks */
1497 if (radio->disconnected) {
1498 retval = -EIO;
1499 goto done;
1500 }
Tobias Lorenz33632d42008-09-24 19:30:26 -03001501 if (freq->tuner != 0) {
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001502 retval = -EINVAL;
1503 goto done;
1504 }
Tobias Lorenz03dea862008-04-22 14:46:11 -03001505
Tobias Lorenz33632d42008-09-24 19:30:26 -03001506 freq->type = V4L2_TUNER_RADIO;
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001507 retval = si470x_get_freq(radio, &freq->frequency);
1508
1509done:
1510 if (retval < 0)
1511 printk(KERN_WARNING DRIVER_NAME
1512 ": get frequency failed with %d\n", retval);
1513 return retval;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001514}
1515
1516
1517/*
1518 * si470x_vidioc_s_frequency - set tuner or modulator radio frequency
1519 */
1520static int si470x_vidioc_s_frequency(struct file *file, void *priv,
1521 struct v4l2_frequency *freq)
1522{
Hans Verkuilc170ecf2008-08-23 08:32:09 -03001523 struct si470x_device *radio = video_drvdata(file);
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001524 int retval = 0;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001525
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001526 /* safety checks */
1527 if (radio->disconnected) {
1528 retval = -EIO;
1529 goto done;
1530 }
Tobias Lorenz33632d42008-09-24 19:30:26 -03001531 if (freq->tuner != 0) {
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001532 retval = -EINVAL;
1533 goto done;
1534 }
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001535
Tobias Lorenz0e3301e2008-01-27 14:54:07 -03001536 retval = si470x_set_freq(radio, freq->frequency);
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001537
1538done:
Tobias Lorenz0e3301e2008-01-27 14:54:07 -03001539 if (retval < 0)
1540 printk(KERN_WARNING DRIVER_NAME
1541 ": set frequency failed with %d\n", retval);
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001542 return retval;
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001543}
1544
1545
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -03001546/*
Tobias Lorenzbbc89952008-05-31 15:11:32 -03001547 * si470x_vidioc_s_hw_freq_seek - set hardware frequency seek
1548 */
1549static int si470x_vidioc_s_hw_freq_seek(struct file *file, void *priv,
1550 struct v4l2_hw_freq_seek *seek)
1551{
Hans Verkuilc170ecf2008-08-23 08:32:09 -03001552 struct si470x_device *radio = video_drvdata(file);
Tobias Lorenzbbc89952008-05-31 15:11:32 -03001553 int retval = 0;
1554
1555 /* safety checks */
1556 if (radio->disconnected) {
1557 retval = -EIO;
1558 goto done;
1559 }
Tobias Lorenz33632d42008-09-24 19:30:26 -03001560 if (seek->tuner != 0) {
Tobias Lorenzbbc89952008-05-31 15:11:32 -03001561 retval = -EINVAL;
1562 goto done;
1563 }
1564
1565 retval = si470x_set_seek(radio, seek->wrap_around, seek->seek_upward);
1566
1567done:
1568 if (retval < 0)
1569 printk(KERN_WARNING DRIVER_NAME
1570 ": set hardware frequency seek failed with %d\n",
1571 retval);
1572 return retval;
1573}
1574
Tobias Lorenz374ab682008-09-24 19:17:54 -03001575
1576/*
1577 * si470x_ioctl_ops - video device ioctl operations
1578 */
Hans Verkuila3998102008-07-21 02:57:38 -03001579static const struct v4l2_ioctl_ops si470x_ioctl_ops = {
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -03001580 .vidioc_querycap = si470x_vidioc_querycap,
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -03001581 .vidioc_queryctrl = si470x_vidioc_queryctrl,
1582 .vidioc_g_ctrl = si470x_vidioc_g_ctrl,
1583 .vidioc_s_ctrl = si470x_vidioc_s_ctrl,
1584 .vidioc_g_audio = si470x_vidioc_g_audio,
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -03001585 .vidioc_g_tuner = si470x_vidioc_g_tuner,
1586 .vidioc_s_tuner = si470x_vidioc_s_tuner,
1587 .vidioc_g_frequency = si470x_vidioc_g_frequency,
1588 .vidioc_s_frequency = si470x_vidioc_s_frequency,
Tobias Lorenzbbc89952008-05-31 15:11:32 -03001589 .vidioc_s_hw_freq_seek = si470x_vidioc_s_hw_freq_seek,
Hans Verkuila3998102008-07-21 02:57:38 -03001590};
1591
Tobias Lorenz374ab682008-09-24 19:17:54 -03001592
Hans Verkuila3998102008-07-21 02:57:38 -03001593/*
Tobias Lorenz374ab682008-09-24 19:17:54 -03001594 * si470x_viddev_template - video device interface
Hans Verkuila3998102008-07-21 02:57:38 -03001595 */
1596static struct video_device si470x_viddev_template = {
1597 .fops = &si470x_fops,
Hans Verkuila3998102008-07-21 02:57:38 -03001598 .name = DRIVER_NAME,
Hans Verkuila3998102008-07-21 02:57:38 -03001599 .release = video_device_release,
Tobias Lorenz374ab682008-09-24 19:17:54 -03001600 .ioctl_ops = &si470x_ioctl_ops,
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -03001601};
1602
1603
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001604
1605/**************************************************************************
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -03001606 * USB Interface
1607 **************************************************************************/
1608
1609/*
1610 * si470x_usb_driver_probe - probe for the device
1611 */
1612static int si470x_usb_driver_probe(struct usb_interface *intf,
1613 const struct usb_device_id *id)
1614{
1615 struct si470x_device *radio;
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001616 int retval = 0;
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -03001617
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001618 /* private data allocation and initialization */
Tobias Lorenz5caf5132008-02-04 22:26:08 -03001619 radio = kzalloc(sizeof(struct si470x_device), GFP_KERNEL);
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001620 if (!radio) {
1621 retval = -ENOMEM;
Tobias Lorenz5caf5132008-02-04 22:26:08 -03001622 goto err_initial;
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001623 }
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -03001624 radio->users = 0;
Tobias Lorenzce5829e2008-05-31 15:04:32 -03001625 radio->disconnected = 0;
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -03001626 radio->usbdev = interface_to_usbdev(intf);
Tobias Lorenz57566ad2008-02-09 16:08:24 -03001627 radio->intf = intf;
Tobias Lorenzce5829e2008-05-31 15:04:32 -03001628 mutex_init(&radio->disconnect_lock);
Tobias Lorenz5caf5132008-02-04 22:26:08 -03001629 mutex_init(&radio->lock);
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001630
1631 /* video device allocation and initialization */
1632 radio->videodev = video_device_alloc();
1633 if (!radio->videodev) {
1634 retval = -ENOMEM;
1635 goto err_radio;
1636 }
1637 memcpy(radio->videodev, &si470x_viddev_template,
1638 sizeof(si470x_viddev_template));
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -03001639 video_set_drvdata(radio->videodev, radio);
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -03001640
1641 /* show some infos about the specific device */
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001642 if (si470x_get_all_registers(radio) < 0) {
1643 retval = -EIO;
Tobias Lorenz5caf5132008-02-04 22:26:08 -03001644 goto err_all;
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001645 }
Tobias Lorenz5caf5132008-02-04 22:26:08 -03001646 printk(KERN_INFO DRIVER_NAME ": DeviceID=0x%4.4hx ChipID=0x%4.4hx\n",
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -03001647 radio->registers[DEVICEID], radio->registers[CHIPID]);
1648
1649 /* check if firmware is current */
1650 if ((radio->registers[CHIPID] & CHIPID_FIRMWARE)
Tobias Lorenz5caf5132008-02-04 22:26:08 -03001651 < RADIO_SW_VERSION_CURRENT) {
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -03001652 printk(KERN_WARNING DRIVER_NAME
Tobias Lorenz5caf5132008-02-04 22:26:08 -03001653 ": This driver is known to work with "
1654 "firmware version %hu,\n", RADIO_SW_VERSION_CURRENT);
1655 printk(KERN_WARNING DRIVER_NAME
1656 ": but the device has firmware version %hu.\n",
1657 radio->registers[CHIPID] & CHIPID_FIRMWARE);
1658 printk(KERN_WARNING DRIVER_NAME
1659 ": If you have some trouble using this driver,\n");
1660 printk(KERN_WARNING DRIVER_NAME
1661 ": please report to V4L ML at "
1662 "video4linux-list@redhat.com\n");
1663 }
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -03001664
1665 /* set initial frequency */
1666 si470x_set_freq(radio, 87.5 * FREQ_MUL); /* available in all regions */
1667
Tobias Lorenz2f94fc42009-02-12 14:56:19 -03001668 /* set led to connect state */
1669 si470x_set_led_state(radio, BLINK_GREEN_LED);
1670
Tobias Lorenz5caf5132008-02-04 22:26:08 -03001671 /* rds buffer allocation */
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -03001672 radio->buf_size = rds_buf * 3;
1673 radio->buffer = kmalloc(radio->buf_size, GFP_KERNEL);
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001674 if (!radio->buffer) {
1675 retval = -EIO;
Tobias Lorenz5caf5132008-02-04 22:26:08 -03001676 goto err_all;
Tobias Lorenza7c850a2008-05-31 15:07:52 -03001677 }
Tobias Lorenz5caf5132008-02-04 22:26:08 -03001678
1679 /* rds buffer configuration */
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -03001680 radio->wr_index = 0;
1681 radio->rd_index = 0;
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -03001682 init_waitqueue_head(&radio->read_queue);
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -03001683
Tobias Lorenz5caf5132008-02-04 22:26:08 -03001684 /* prepare rds work function */
1685 INIT_DELAYED_WORK(&radio->work, si470x_work);
1686
1687 /* register video device */
Hans Verkuilcba99ae2008-09-03 17:11:58 -03001688 retval = video_register_device(radio->videodev, VFL_TYPE_RADIO, radio_nr);
1689 if (retval) {
Tobias Lorenz5caf5132008-02-04 22:26:08 -03001690 printk(KERN_WARNING DRIVER_NAME
1691 ": Could not register video device\n");
1692 goto err_all;
1693 }
1694 usb_set_intfdata(intf, radio);
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -03001695
1696 return 0;
Tobias Lorenz5caf5132008-02-04 22:26:08 -03001697err_all:
1698 video_device_release(radio->videodev);
1699 kfree(radio->buffer);
1700err_radio:
1701 kfree(radio);
1702err_initial:
1703 return retval;
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -03001704}
1705
1706
1707/*
Tobias Lorenz57566ad2008-02-09 16:08:24 -03001708 * si470x_usb_driver_suspend - suspend the device
1709 */
1710static int si470x_usb_driver_suspend(struct usb_interface *intf,
1711 pm_message_t message)
1712{
1713 struct si470x_device *radio = usb_get_intfdata(intf);
1714
1715 printk(KERN_INFO DRIVER_NAME ": suspending now...\n");
1716
1717 cancel_delayed_work_sync(&radio->work);
1718
1719 return 0;
1720}
1721
1722
1723/*
1724 * si470x_usb_driver_resume - resume the device
1725 */
1726static int si470x_usb_driver_resume(struct usb_interface *intf)
1727{
1728 struct si470x_device *radio = usb_get_intfdata(intf);
1729
1730 printk(KERN_INFO DRIVER_NAME ": resuming now...\n");
1731
1732 mutex_lock(&radio->lock);
1733 if (radio->users && radio->registers[SYSCONFIG1] & SYSCONFIG1_RDS)
1734 schedule_delayed_work(&radio->work,
1735 msecs_to_jiffies(rds_poll_time));
1736 mutex_unlock(&radio->lock);
1737
1738 return 0;
1739}
1740
1741
1742/*
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -03001743 * si470x_usb_driver_disconnect - disconnect the device
1744 */
1745static void si470x_usb_driver_disconnect(struct usb_interface *intf)
1746{
1747 struct si470x_device *radio = usb_get_intfdata(intf);
1748
Tobias Lorenzce5829e2008-05-31 15:04:32 -03001749 mutex_lock(&radio->disconnect_lock);
1750 radio->disconnected = 1;
Tobias Lorenz5caf5132008-02-04 22:26:08 -03001751 cancel_delayed_work_sync(&radio->work);
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -03001752 usb_set_intfdata(intf, NULL);
Tobias Lorenzce5829e2008-05-31 15:04:32 -03001753 if (radio->users == 0) {
Tobias Lorenz2f94fc42009-02-12 14:56:19 -03001754 /* set led to disconnect state */
1755 si470x_set_led_state(radio, BLINK_ORANGE_LED);
1756
Tobias Lorenzce5829e2008-05-31 15:04:32 -03001757 video_unregister_device(radio->videodev);
1758 kfree(radio->buffer);
1759 kfree(radio);
1760 }
1761 mutex_unlock(&radio->disconnect_lock);
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -03001762}
1763
1764
1765/*
1766 * si470x_usb_driver - usb driver interface
1767 */
1768static struct usb_driver si470x_usb_driver = {
Tobias Lorenz57566ad2008-02-09 16:08:24 -03001769 .name = DRIVER_NAME,
1770 .probe = si470x_usb_driver_probe,
1771 .disconnect = si470x_usb_driver_disconnect,
1772 .suspend = si470x_usb_driver_suspend,
1773 .resume = si470x_usb_driver_resume,
1774 .id_table = si470x_usb_driver_id_table,
1775 .supports_autosuspend = 1,
Tobias Lorenz8bf5e5c2008-01-25 04:19:48 -03001776};
1777
1778
1779
1780/**************************************************************************
1781 * Module Interface
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001782 **************************************************************************/
1783
1784/*
1785 * si470x_module_init - module init
1786 */
1787static int __init si470x_module_init(void)
1788{
Tobias Lorenz0e3301e2008-01-27 14:54:07 -03001789 printk(KERN_INFO DRIVER_DESC ", Version " DRIVER_VERSION "\n");
Tobias Lorenz78656ac2008-01-14 21:55:27 -03001790 return usb_register(&si470x_usb_driver);
1791}
1792
1793
1794/*
1795 * si470x_module_exit - module exit
1796 */
1797static void __exit si470x_module_exit(void)
1798{
1799 usb_deregister(&si470x_usb_driver);
1800}
1801
1802
1803module_init(si470x_module_init);
1804module_exit(si470x_module_exit);
1805
1806MODULE_LICENSE("GPL");
1807MODULE_AUTHOR(DRIVER_AUTHOR);
1808MODULE_DESCRIPTION(DRIVER_DESC);
Tobias Lorenz0e3301e2008-01-27 14:54:07 -03001809MODULE_VERSION(DRIVER_VERSION);