2 * Driver for the Texas Instruments WL1273 FM radio.
4 * Copyright (C) 2011 Nokia Corporation
5 * Author: Matti J. Aaltonen <matti.j.aaltonen@nokia.com>
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * version 2 as published by the Free Software Foundation.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 #include <linux/delay.h>
22 #include <linux/firmware.h>
23 #include <linux/interrupt.h>
24 #include <linux/mfd/wl1273-core.h>
25 #include <linux/slab.h>
26 #include <linux/module.h>
27 #include <media/v4l2-common.h>
28 #include <media/v4l2-ctrls.h>
29 #include <media/v4l2-device.h>
30 #include <media/v4l2-ioctl.h>
32 #define DRIVER_DESC "Wl1273 FM Radio"
34 #define WL1273_POWER_SET_OFF 0
35 #define WL1273_POWER_SET_FM BIT(0)
36 #define WL1273_POWER_SET_RDS BIT(1)
37 #define WL1273_POWER_SET_RETENTION BIT(4)
39 #define WL1273_PUPD_SET_OFF 0x00
40 #define WL1273_PUPD_SET_ON 0x01
41 #define WL1273_PUPD_SET_RETENTION 0x10
43 #define WL1273_FREQ(x) (x * 10000 / 625)
44 #define WL1273_INV_FREQ(x) (x * 625 / 10000)
47 * static int radio_nr - The number of the radio device
52 module_param(radio_nr
, int, 0);
53 MODULE_PARM_DESC(radio_nr
, "The number of the radio device. Default = 0");
55 struct wl1273_device
{
59 unsigned int preemphasis
;
61 unsigned int tx_power
;
62 unsigned int rx_frequency
;
63 unsigned int tx_frequency
;
64 unsigned int rangelow
;
65 unsigned int rangehigh
;
72 wait_queue_head_t read_queue
;
73 struct mutex lock
; /* for serializing fm radio operations */
74 struct completion busy
;
76 unsigned char *buffer
;
77 unsigned int buf_size
;
78 unsigned int rd_index
;
79 unsigned int wr_index
;
81 /* Selected interrupts */
85 struct v4l2_ctrl_handler ctrl_handler
;
86 struct v4l2_device v4l2dev
;
87 struct video_device videodev
;
89 struct wl1273_core
*core
;
92 unsigned int rds_users
;
95 #define WL1273_IRQ_MASK (WL1273_FR_EVENT | \
99 * static unsigned int rds_buf - the number of RDS buffer blocks used.
101 * The default number is 100.
103 static unsigned int rds_buf
= 100;
104 module_param(rds_buf
, uint
, 0);
105 MODULE_PARM_DESC(rds_buf
, "Number of RDS buffer entries. Default = 100");
107 static int wl1273_fm_write_fw(struct wl1273_core
*core
,
110 struct i2c_client
*client
= core
->client
;
114 msg
.addr
= client
->addr
;
117 for (i
= 0; i
<= len
; i
++) {
122 dev_dbg(&client
->dev
, "%s:len[%d]: %d\n", __func__
, i
, msg
.len
);
124 r
= i2c_transfer(client
->adapter
, &msg
, 1);
125 if (r
< 0 && i
< len
+ 1)
129 dev_dbg(&client
->dev
, "%s: i: %d\n", __func__
, i
);
130 dev_dbg(&client
->dev
, "%s: len + 1: %d\n", __func__
, len
+ 1);
132 /* Last transfer always fails. */
133 if (i
== len
|| r
== 1)
139 #define WL1273_FIFO_HAS_DATA(status) (1 << 5 & status)
140 #define WL1273_RDS_CORRECTABLE_ERROR (1 << 3)
141 #define WL1273_RDS_UNCORRECTABLE_ERROR (1 << 4)
143 static int wl1273_fm_rds(struct wl1273_device
*radio
)
145 struct wl1273_core
*core
= radio
->core
;
146 struct i2c_client
*client
= core
->client
;
148 u8 b0
= WL1273_RDS_DATA_GET
, status
;
149 struct v4l2_rds_data rds
= { 0, 0, 0 };
150 struct i2c_msg msg
[] = {
152 .addr
= client
->addr
,
158 .addr
= client
->addr
,
166 if (core
->mode
!= WL1273_MODE_RX
)
169 r
= core
->read(core
, WL1273_RDS_SYNC_GET
, &val
);
173 if ((val
& 0x01) == 0) {
174 /* RDS decoder not synchronized */
178 /* copy all four RDS blocks to internal buffer */
180 r
= i2c_transfer(client
->adapter
, msg
, ARRAY_SIZE(msg
));
181 if (r
!= ARRAY_SIZE(msg
)) {
182 dev_err(radio
->dev
, WL1273_FM_DRIVER_NAME
183 ": %s: read_rds error r == %i)\n",
189 if (!WL1273_FIFO_HAS_DATA(status
))
192 /* copy bits 0-2 (the block ID) to bits 3-5 */
193 rds
.block
= V4L2_RDS_BLOCK_MSK
& status
;
194 rds
.block
|= rds
.block
<< 3;
196 /* copy the error bits to standard positions */
197 if (WL1273_RDS_UNCORRECTABLE_ERROR
& status
) {
198 rds
.block
|= V4L2_RDS_BLOCK_ERROR
;
199 rds
.block
&= ~V4L2_RDS_BLOCK_CORRECTED
;
200 } else if (WL1273_RDS_CORRECTABLE_ERROR
& status
) {
201 rds
.block
&= ~V4L2_RDS_BLOCK_ERROR
;
202 rds
.block
|= V4L2_RDS_BLOCK_CORRECTED
;
205 /* copy RDS block to internal buffer */
206 memcpy(&radio
->buffer
[radio
->wr_index
], &rds
, RDS_BLOCK_SIZE
);
207 radio
->wr_index
+= 3;
209 /* wrap write pointer */
210 if (radio
->wr_index
>= radio
->buf_size
)
213 /* check for overflow & start over */
214 if (radio
->wr_index
== radio
->rd_index
) {
215 dev_dbg(radio
->dev
, "RDS OVERFLOW");
221 } while (WL1273_FIFO_HAS_DATA(status
));
223 /* wake up read queue */
224 if (radio
->wr_index
!= radio
->rd_index
)
225 wake_up_interruptible(&radio
->read_queue
);
230 static irqreturn_t
wl1273_fm_irq_thread_handler(int irq
, void *dev_id
)
232 struct wl1273_device
*radio
= dev_id
;
233 struct wl1273_core
*core
= radio
->core
;
237 r
= core
->read(core
, WL1273_FLAG_GET
, &flags
);
241 if (flags
& WL1273_BL_EVENT
) {
242 radio
->irq_received
= flags
;
243 dev_dbg(radio
->dev
, "IRQ: BL\n");
246 if (flags
& WL1273_RDS_EVENT
) {
249 wl1273_fm_rds(radio
);
252 if (flags
& WL1273_BBLK_EVENT
)
253 dev_dbg(radio
->dev
, "IRQ: BBLK\n");
255 if (flags
& WL1273_LSYNC_EVENT
)
256 dev_dbg(radio
->dev
, "IRQ: LSYNC\n");
258 if (flags
& WL1273_LEV_EVENT
) {
261 r
= core
->read(core
, WL1273_RSSI_LVL_GET
, &level
);
266 dev_dbg(radio
->dev
, "IRQ: LEV: 0x%x04\n", level
);
269 if (flags
& WL1273_IFFR_EVENT
)
270 dev_dbg(radio
->dev
, "IRQ: IFFR\n");
272 if (flags
& WL1273_PI_EVENT
)
273 dev_dbg(radio
->dev
, "IRQ: PI\n");
275 if (flags
& WL1273_PD_EVENT
)
276 dev_dbg(radio
->dev
, "IRQ: PD\n");
278 if (flags
& WL1273_STIC_EVENT
)
279 dev_dbg(radio
->dev
, "IRQ: STIC\n");
281 if (flags
& WL1273_MAL_EVENT
)
282 dev_dbg(radio
->dev
, "IRQ: MAL\n");
284 if (flags
& WL1273_POW_ENB_EVENT
) {
285 complete(&radio
->busy
);
286 dev_dbg(radio
->dev
, "NOT BUSY\n");
287 dev_dbg(radio
->dev
, "IRQ: POW_ENB\n");
290 if (flags
& WL1273_SCAN_OVER_EVENT
)
291 dev_dbg(radio
->dev
, "IRQ: SCAN_OVER\n");
293 if (flags
& WL1273_ERROR_EVENT
)
294 dev_dbg(radio
->dev
, "IRQ: ERROR\n");
296 if (flags
& WL1273_FR_EVENT
) {
299 dev_dbg(radio
->dev
, "IRQ: FR:\n");
301 if (core
->mode
== WL1273_MODE_RX
) {
302 r
= core
->write(core
, WL1273_TUNER_MODE_SET
,
303 TUNER_MODE_STOP_SEARCH
);
306 "%s: TUNER_MODE_SET fails: %d\n",
311 r
= core
->read(core
, WL1273_FREQ_SET
, &freq
);
315 if (radio
->band
== WL1273_BAND_JAPAN
)
316 radio
->rx_frequency
= WL1273_BAND_JAPAN_LOW
+
319 radio
->rx_frequency
= WL1273_BAND_OTHER_LOW
+
322 * The driver works better with this msleep,
323 * the documentation doesn't mention it.
325 usleep_range(10000, 15000);
327 dev_dbg(radio
->dev
, "%dkHz\n", radio
->rx_frequency
);
330 r
= core
->read(core
, WL1273_CHANL_SET
, &freq
);
334 dev_dbg(radio
->dev
, "%dkHz\n", freq
);
336 dev_dbg(radio
->dev
, "%s: NOT BUSY\n", __func__
);
340 core
->write(core
, WL1273_INT_MASK_SET
, radio
->irq_flags
);
341 complete(&radio
->busy
);
346 static int wl1273_fm_set_tx_freq(struct wl1273_device
*radio
, unsigned int freq
)
348 struct wl1273_core
*core
= radio
->core
;
352 if (freq
< WL1273_BAND_TX_LOW
) {
354 "Frequency out of range: %d < %d\n", freq
,
359 if (freq
> WL1273_BAND_TX_HIGH
) {
361 "Frequency out of range: %d > %d\n", freq
,
362 WL1273_BAND_TX_HIGH
);
367 * The driver works better with this sleep,
368 * the documentation doesn't mention it.
370 usleep_range(5000, 10000);
372 dev_dbg(radio
->dev
, "%s: freq: %d kHz\n", __func__
, freq
);
374 /* Set the current tx channel */
375 r
= core
->write(core
, WL1273_CHANL_SET
, freq
/ 10);
379 reinit_completion(&radio
->busy
);
381 /* wait for the FR IRQ */
382 t
= wait_for_completion_timeout(&radio
->busy
, msecs_to_jiffies(2000));
386 dev_dbg(radio
->dev
, "WL1273_CHANL_SET: %lu\n", t
);
388 /* Enable the output power */
389 r
= core
->write(core
, WL1273_POWER_ENB_SET
, 1);
393 reinit_completion(&radio
->busy
);
395 /* wait for the POWER_ENB IRQ */
396 t
= wait_for_completion_timeout(&radio
->busy
, msecs_to_jiffies(1000));
400 radio
->tx_frequency
= freq
;
401 dev_dbg(radio
->dev
, "WL1273_POWER_ENB_SET: %lu\n", t
);
406 static int wl1273_fm_set_rx_freq(struct wl1273_device
*radio
, unsigned int freq
)
408 struct wl1273_core
*core
= radio
->core
;
412 if (freq
< radio
->rangelow
) {
414 "Frequency out of range: %d < %d\n", freq
,
420 if (freq
> radio
->rangehigh
) {
422 "Frequency out of range: %d > %d\n", freq
,
428 dev_dbg(radio
->dev
, "%s: %dkHz\n", __func__
, freq
);
430 core
->write(core
, WL1273_INT_MASK_SET
, radio
->irq_flags
);
432 if (radio
->band
== WL1273_BAND_JAPAN
)
433 f
= (freq
- WL1273_BAND_JAPAN_LOW
) / 50;
435 f
= (freq
- WL1273_BAND_OTHER_LOW
) / 50;
437 r
= core
->write(core
, WL1273_FREQ_SET
, f
);
439 dev_err(radio
->dev
, "FREQ_SET fails\n");
443 r
= core
->write(core
, WL1273_TUNER_MODE_SET
, TUNER_MODE_PRESET
);
445 dev_err(radio
->dev
, "TUNER_MODE_SET fails\n");
449 reinit_completion(&radio
->busy
);
451 t
= wait_for_completion_timeout(&radio
->busy
, msecs_to_jiffies(2000));
453 dev_err(radio
->dev
, "%s: TIMEOUT\n", __func__
);
459 radio
->rx_frequency
= freq
;
465 static int wl1273_fm_get_freq(struct wl1273_device
*radio
)
467 struct wl1273_core
*core
= radio
->core
;
472 if (core
->mode
== WL1273_MODE_RX
) {
473 r
= core
->read(core
, WL1273_FREQ_SET
, &f
);
477 dev_dbg(radio
->dev
, "Freq get: 0x%04x\n", f
);
478 if (radio
->band
== WL1273_BAND_JAPAN
)
479 freq
= WL1273_BAND_JAPAN_LOW
+ 50 * f
;
481 freq
= WL1273_BAND_OTHER_LOW
+ 50 * f
;
483 r
= core
->read(core
, WL1273_CHANL_SET
, &f
);
494 * wl1273_fm_upload_firmware_patch() - Upload the firmware.
495 * @radio: A pointer to the device struct.
497 * The firmware file consists of arrays of bytes where the first byte
498 * gives the array length. The first byte in the file gives the
499 * number of these arrays.
501 static int wl1273_fm_upload_firmware_patch(struct wl1273_device
*radio
)
503 struct wl1273_core
*core
= radio
->core
;
504 unsigned int packet_num
;
505 const struct firmware
*fw_p
;
506 const char *fw_name
= "radio-wl1273-fw.bin";
507 struct device
*dev
= radio
->dev
;
511 dev_dbg(dev
, "%s:\n", __func__
);
514 * Uploading the firmware patch is not always necessary,
515 * so we only print an info message.
517 if (request_firmware(&fw_p
, fw_name
, dev
)) {
518 dev_info(dev
, "%s - %s not found\n", __func__
, fw_name
);
523 ptr
= (__u8
*) fw_p
->data
;
525 dev_dbg(dev
, "%s: packets: %d\n", __func__
, packet_num
);
527 r
= wl1273_fm_write_fw(core
, ptr
+ 1, packet_num
);
529 dev_err(dev
, "FW upload error: %d\n", r
);
533 /* ignore possible error here */
534 core
->write(core
, WL1273_RESET
, 0);
536 dev_dbg(dev
, "%s - download OK, r: %d\n", __func__
, r
);
538 release_firmware(fw_p
);
542 static int wl1273_fm_stop(struct wl1273_device
*radio
)
544 struct wl1273_core
*core
= radio
->core
;
546 if (core
->mode
== WL1273_MODE_RX
) {
547 int r
= core
->write(core
, WL1273_POWER_SET
,
548 WL1273_POWER_SET_OFF
);
550 dev_err(radio
->dev
, "%s: POWER_SET fails: %d\n",
552 } else if (core
->mode
== WL1273_MODE_TX
) {
553 int r
= core
->write(core
, WL1273_PUPD_SET
,
554 WL1273_PUPD_SET_OFF
);
557 "%s: PUPD_SET fails: %d\n", __func__
, r
);
560 if (core
->pdata
->disable
) {
561 core
->pdata
->disable();
562 dev_dbg(radio
->dev
, "Back to reset\n");
568 static int wl1273_fm_start(struct wl1273_device
*radio
, int new_mode
)
570 struct wl1273_core
*core
= radio
->core
;
571 struct wl1273_fm_platform_data
*pdata
= core
->pdata
;
572 struct device
*dev
= radio
->dev
;
575 if (pdata
->enable
&& core
->mode
== WL1273_MODE_OFF
) {
576 dev_dbg(radio
->dev
, "Out of reset\n");
582 if (new_mode
== WL1273_MODE_RX
) {
583 u16 val
= WL1273_POWER_SET_FM
;
586 val
|= WL1273_POWER_SET_RDS
;
588 /* If this fails try again */
589 r
= core
->write(core
, WL1273_POWER_SET
, val
);
593 r
= core
->write(core
, WL1273_POWER_SET
, val
);
595 dev_err(dev
, "%s: POWER_SET fails\n", __func__
);
600 /* rds buffer configuration */
604 } else if (new_mode
== WL1273_MODE_TX
) {
605 /* If this fails try again once */
606 r
= core
->write(core
, WL1273_PUPD_SET
, WL1273_PUPD_SET_ON
);
609 r
= core
->write(core
, WL1273_PUPD_SET
,
612 dev_err(dev
, "%s: PUPD_SET fails\n", __func__
);
618 r
= core
->write(core
, WL1273_RDS_DATA_ENB
, 1);
620 r
= core
->write(core
, WL1273_RDS_DATA_ENB
, 0);
622 dev_warn(dev
, "%s: Illegal mode.\n", __func__
);
625 if (core
->mode
== WL1273_MODE_OFF
) {
626 r
= wl1273_fm_upload_firmware_patch(radio
);
628 dev_warn(dev
, "Firmware upload failed.\n");
631 * Sometimes the chip is in a wrong power state at this point.
632 * So we set the power once again.
634 if (new_mode
== WL1273_MODE_RX
) {
635 u16 val
= WL1273_POWER_SET_FM
;
638 val
|= WL1273_POWER_SET_RDS
;
640 r
= core
->write(core
, WL1273_POWER_SET
, val
);
642 dev_err(dev
, "%s: POWER_SET fails\n", __func__
);
645 } else if (new_mode
== WL1273_MODE_TX
) {
646 r
= core
->write(core
, WL1273_PUPD_SET
,
649 dev_err(dev
, "%s: PUPD_SET fails\n", __func__
);
660 dev_dbg(dev
, "%s: return: %d\n", __func__
, r
);
664 static int wl1273_fm_suspend(struct wl1273_device
*radio
)
666 struct wl1273_core
*core
= radio
->core
;
669 /* Cannot go from OFF to SUSPENDED */
670 if (core
->mode
== WL1273_MODE_RX
)
671 r
= core
->write(core
, WL1273_POWER_SET
,
672 WL1273_POWER_SET_RETENTION
);
673 else if (core
->mode
== WL1273_MODE_TX
)
674 r
= core
->write(core
, WL1273_PUPD_SET
,
675 WL1273_PUPD_SET_RETENTION
);
680 dev_err(radio
->dev
, "%s: POWER_SET fails: %d\n", __func__
, r
);
688 static int wl1273_fm_set_mode(struct wl1273_device
*radio
, int mode
)
690 struct wl1273_core
*core
= radio
->core
;
691 struct device
*dev
= radio
->dev
;
695 dev_dbg(dev
, "%s\n", __func__
);
696 dev_dbg(dev
, "Forbidden modes: 0x%02x\n", radio
->forbidden
);
698 old_mode
= core
->mode
;
699 if (mode
& radio
->forbidden
) {
707 r
= wl1273_fm_start(radio
, mode
);
709 dev_err(dev
, "%s: Cannot start.\n", __func__
);
710 wl1273_fm_stop(radio
);
715 r
= core
->write(core
, WL1273_INT_MASK_SET
, radio
->irq_flags
);
717 dev_err(dev
, "INT_MASK_SET fails.\n");
721 /* remember previous settings */
722 if (mode
== WL1273_MODE_RX
) {
723 r
= wl1273_fm_set_rx_freq(radio
, radio
->rx_frequency
);
725 dev_err(dev
, "set freq fails: %d.\n", r
);
729 r
= core
->set_volume(core
, core
->volume
);
731 dev_err(dev
, "set volume fails: %d.\n", r
);
735 dev_dbg(dev
, "%s: Set vol: %d.\n", __func__
,
738 r
= wl1273_fm_set_tx_freq(radio
, radio
->tx_frequency
);
740 dev_err(dev
, "set freq fails: %d.\n", r
);
745 dev_dbg(radio
->dev
, "%s: Set audio mode.\n", __func__
);
747 r
= core
->set_audio(core
, core
->audio_mode
);
749 dev_err(dev
, "Cannot set audio mode.\n");
752 case WL1273_MODE_OFF
:
753 r
= wl1273_fm_stop(radio
);
755 dev_err(dev
, "%s: Off fails: %d\n", __func__
, r
);
757 core
->mode
= WL1273_MODE_OFF
;
761 case WL1273_MODE_SUSPENDED
:
762 r
= wl1273_fm_suspend(radio
);
764 dev_err(dev
, "%s: Suspend fails: %d\n", __func__
, r
);
766 core
->mode
= WL1273_MODE_SUSPENDED
;
771 dev_err(dev
, "%s: Unknown mode: %d\n", __func__
, mode
);
777 core
->mode
= old_mode
;
782 static int wl1273_fm_set_seek(struct wl1273_device
*radio
,
783 unsigned int wrap_around
,
784 unsigned int seek_upward
,
787 struct wl1273_core
*core
= radio
->core
;
789 unsigned int dir
= (seek_upward
== 0) ? 0 : 1;
792 f
= radio
->rx_frequency
;
793 dev_dbg(radio
->dev
, "rx_frequency: %d\n", f
);
795 if (dir
&& f
+ radio
->spacing
<= radio
->rangehigh
)
796 r
= wl1273_fm_set_rx_freq(radio
, f
+ radio
->spacing
);
797 else if (dir
&& wrap_around
)
798 r
= wl1273_fm_set_rx_freq(radio
, radio
->rangelow
);
799 else if (f
- radio
->spacing
>= radio
->rangelow
)
800 r
= wl1273_fm_set_rx_freq(radio
, f
- radio
->spacing
);
801 else if (wrap_around
)
802 r
= wl1273_fm_set_rx_freq(radio
, radio
->rangehigh
);
807 if (level
< SCHAR_MIN
|| level
> SCHAR_MAX
)
810 reinit_completion(&radio
->busy
);
811 dev_dbg(radio
->dev
, "%s: BUSY\n", __func__
);
813 r
= core
->write(core
, WL1273_INT_MASK_SET
, radio
->irq_flags
);
817 dev_dbg(radio
->dev
, "%s\n", __func__
);
819 r
= core
->write(core
, WL1273_SEARCH_LVL_SET
, level
);
823 r
= core
->write(core
, WL1273_SEARCH_DIR_SET
, dir
);
827 r
= core
->write(core
, WL1273_TUNER_MODE_SET
, TUNER_MODE_AUTO_SEEK
);
831 /* wait for the FR IRQ */
832 wait_for_completion_timeout(&radio
->busy
, msecs_to_jiffies(1000));
833 if (!(radio
->irq_received
& WL1273_BL_EVENT
)) {
838 radio
->irq_received
&= ~WL1273_BL_EVENT
;
844 dev_dbg(radio
->dev
, "Wrap around in HW seek.\n");
849 f
= radio
->rangehigh
;
851 r
= wl1273_fm_set_rx_freq(radio
, f
);
855 reinit_completion(&radio
->busy
);
856 dev_dbg(radio
->dev
, "%s: BUSY\n", __func__
);
858 r
= core
->write(core
, WL1273_TUNER_MODE_SET
, TUNER_MODE_AUTO_SEEK
);
862 /* wait for the FR IRQ */
863 if (!wait_for_completion_timeout(&radio
->busy
, msecs_to_jiffies(1000)))
866 dev_dbg(radio
->dev
, "%s: Err: %d\n", __func__
, r
);
871 * wl1273_fm_get_tx_ctune() - Get the TX tuning capacitor value.
872 * @radio: A pointer to the device struct.
874 static unsigned int wl1273_fm_get_tx_ctune(struct wl1273_device
*radio
)
876 struct wl1273_core
*core
= radio
->core
;
877 struct device
*dev
= radio
->dev
;
881 if (core
->mode
== WL1273_MODE_OFF
||
882 core
->mode
== WL1273_MODE_SUSPENDED
)
885 r
= core
->read(core
, WL1273_READ_FMANT_TUNE_VALUE
, &val
);
887 dev_err(dev
, "%s: read error: %d\n", __func__
, r
);
896 * wl1273_fm_set_preemphasis() - Set the TX pre-emphasis value.
897 * @radio: A pointer to the device struct.
898 * @preemphasis: The new pre-amphasis value.
900 * Possible pre-emphasis values are: V4L2_PREEMPHASIS_DISABLED,
901 * V4L2_PREEMPHASIS_50_uS and V4L2_PREEMPHASIS_75_uS.
903 static int wl1273_fm_set_preemphasis(struct wl1273_device
*radio
,
904 unsigned int preemphasis
)
906 struct wl1273_core
*core
= radio
->core
;
910 if (core
->mode
== WL1273_MODE_OFF
||
911 core
->mode
== WL1273_MODE_SUSPENDED
)
914 mutex_lock(&core
->lock
);
916 switch (preemphasis
) {
917 case V4L2_PREEMPHASIS_DISABLED
:
920 case V4L2_PREEMPHASIS_50_uS
:
923 case V4L2_PREEMPHASIS_75_uS
:
931 r
= core
->write(core
, WL1273_PREMPH_SET
, em
);
935 radio
->preemphasis
= preemphasis
;
938 mutex_unlock(&core
->lock
);
942 static int wl1273_fm_rds_on(struct wl1273_device
*radio
)
944 struct wl1273_core
*core
= radio
->core
;
947 dev_dbg(radio
->dev
, "%s\n", __func__
);
951 r
= core
->write(core
, WL1273_POWER_SET
,
952 WL1273_POWER_SET_FM
| WL1273_POWER_SET_RDS
);
956 r
= wl1273_fm_set_rx_freq(radio
, radio
->rx_frequency
);
958 dev_err(radio
->dev
, "set freq fails: %d.\n", r
);
963 static int wl1273_fm_rds_off(struct wl1273_device
*radio
)
965 struct wl1273_core
*core
= radio
->core
;
971 radio
->irq_flags
&= ~WL1273_RDS_EVENT
;
973 r
= core
->write(core
, WL1273_INT_MASK_SET
, radio
->irq_flags
);
977 /* Service pending read */
978 wake_up_interruptible(&radio
->read_queue
);
980 dev_dbg(radio
->dev
, "%s\n", __func__
);
982 r
= core
->write(core
, WL1273_POWER_SET
, WL1273_POWER_SET_FM
);
986 r
= wl1273_fm_set_rx_freq(radio
, radio
->rx_frequency
);
988 dev_err(radio
->dev
, "set freq fails: %d.\n", r
);
990 dev_dbg(radio
->dev
, "%s: exiting...\n", __func__
);
995 static int wl1273_fm_set_rds(struct wl1273_device
*radio
, unsigned int new_mode
)
998 struct wl1273_core
*core
= radio
->core
;
1000 if (core
->mode
== WL1273_MODE_OFF
||
1001 core
->mode
== WL1273_MODE_SUSPENDED
)
1004 if (new_mode
== WL1273_RDS_RESET
) {
1005 r
= core
->write(core
, WL1273_RDS_CNTRL_SET
, 1);
1009 if (core
->mode
== WL1273_MODE_TX
&& new_mode
== WL1273_RDS_OFF
) {
1010 r
= core
->write(core
, WL1273_RDS_DATA_ENB
, 0);
1011 } else if (core
->mode
== WL1273_MODE_TX
&& new_mode
== WL1273_RDS_ON
) {
1012 r
= core
->write(core
, WL1273_RDS_DATA_ENB
, 1);
1013 } else if (core
->mode
== WL1273_MODE_RX
&& new_mode
== WL1273_RDS_OFF
) {
1014 r
= wl1273_fm_rds_off(radio
);
1015 } else if (core
->mode
== WL1273_MODE_RX
&& new_mode
== WL1273_RDS_ON
) {
1016 r
= wl1273_fm_rds_on(radio
);
1018 dev_err(radio
->dev
, "%s: Unknown mode: %d\n",
1019 __func__
, new_mode
);
1024 radio
->rds_on
= (new_mode
== WL1273_RDS_ON
) ? true : false;
1029 static ssize_t
wl1273_fm_fops_write(struct file
*file
, const char __user
*buf
,
1030 size_t count
, loff_t
*ppos
)
1032 struct wl1273_device
*radio
= video_get_drvdata(video_devdata(file
));
1033 struct wl1273_core
*core
= radio
->core
;
1037 dev_dbg(radio
->dev
, "%s\n", __func__
);
1039 if (core
->mode
!= WL1273_MODE_TX
)
1042 if (radio
->rds_users
== 0) {
1043 dev_warn(radio
->dev
, "%s: RDS not on.\n", __func__
);
1047 if (mutex_lock_interruptible(&core
->lock
))
1050 * Multiple processes can open the device, but only
1051 * one gets to write to it.
1053 if (radio
->owner
&& radio
->owner
!= file
) {
1057 radio
->owner
= file
;
1065 core
->write(core
, WL1273_RDS_CONFIG_DATA_SET
, val
);
1067 if (copy_from_user(radio
->write_buf
+ 1, buf
, val
)) {
1072 dev_dbg(radio
->dev
, "Count: %d\n", val
);
1073 dev_dbg(radio
->dev
, "From user: \"%s\"\n", radio
->write_buf
);
1075 radio
->write_buf
[0] = WL1273_RDS_DATA_SET
;
1076 core
->write_data(core
, radio
->write_buf
, val
+ 1);
1080 mutex_unlock(&core
->lock
);
1085 static unsigned int wl1273_fm_fops_poll(struct file
*file
,
1086 struct poll_table_struct
*pts
)
1088 struct wl1273_device
*radio
= video_get_drvdata(video_devdata(file
));
1089 struct wl1273_core
*core
= radio
->core
;
1091 if (radio
->owner
&& radio
->owner
!= file
)
1094 radio
->owner
= file
;
1096 if (core
->mode
== WL1273_MODE_RX
) {
1097 poll_wait(file
, &radio
->read_queue
, pts
);
1099 if (radio
->rd_index
!= radio
->wr_index
)
1100 return POLLIN
| POLLRDNORM
;
1102 } else if (core
->mode
== WL1273_MODE_TX
) {
1103 return POLLOUT
| POLLWRNORM
;
1109 static int wl1273_fm_fops_open(struct file
*file
)
1111 struct wl1273_device
*radio
= video_get_drvdata(video_devdata(file
));
1112 struct wl1273_core
*core
= radio
->core
;
1115 dev_dbg(radio
->dev
, "%s\n", __func__
);
1117 if (core
->mode
== WL1273_MODE_RX
&& radio
->rds_on
&&
1118 !radio
->rds_users
) {
1119 dev_dbg(radio
->dev
, "%s: Mode: %d\n", __func__
, core
->mode
);
1121 if (mutex_lock_interruptible(&core
->lock
))
1124 radio
->irq_flags
|= WL1273_RDS_EVENT
;
1126 r
= core
->write(core
, WL1273_INT_MASK_SET
,
1129 mutex_unlock(&core
->lock
);
1135 mutex_unlock(&core
->lock
);
1141 static int wl1273_fm_fops_release(struct file
*file
)
1143 struct wl1273_device
*radio
= video_get_drvdata(video_devdata(file
));
1144 struct wl1273_core
*core
= radio
->core
;
1147 dev_dbg(radio
->dev
, "%s\n", __func__
);
1149 if (radio
->rds_users
> 0) {
1151 if (radio
->rds_users
== 0) {
1152 if (mutex_lock_interruptible(&core
->lock
))
1155 radio
->irq_flags
&= ~WL1273_RDS_EVENT
;
1157 if (core
->mode
== WL1273_MODE_RX
) {
1158 r
= core
->write(core
,
1159 WL1273_INT_MASK_SET
,
1162 mutex_unlock(&core
->lock
);
1166 mutex_unlock(&core
->lock
);
1170 if (file
== radio
->owner
)
1171 radio
->owner
= NULL
;
1176 static ssize_t
wl1273_fm_fops_read(struct file
*file
, char __user
*buf
,
1177 size_t count
, loff_t
*ppos
)
1180 struct wl1273_device
*radio
= video_get_drvdata(video_devdata(file
));
1181 struct wl1273_core
*core
= radio
->core
;
1182 unsigned int block_count
= 0;
1185 dev_dbg(radio
->dev
, "%s\n", __func__
);
1187 if (core
->mode
!= WL1273_MODE_RX
)
1190 if (radio
->rds_users
== 0) {
1191 dev_warn(radio
->dev
, "%s: RDS not on.\n", __func__
);
1195 if (mutex_lock_interruptible(&core
->lock
))
1199 * Multiple processes can open the device, but only
1200 * one at a time gets read access.
1202 if (radio
->owner
&& radio
->owner
!= file
) {
1206 radio
->owner
= file
;
1208 r
= core
->read(core
, WL1273_RDS_SYNC_GET
, &val
);
1210 dev_err(radio
->dev
, "%s: Get RDS_SYNC fails.\n", __func__
);
1212 } else if (val
== 0) {
1213 dev_info(radio
->dev
, "RDS_SYNC: Not synchronized\n");
1218 /* block if no new data available */
1219 while (radio
->wr_index
== radio
->rd_index
) {
1220 if (file
->f_flags
& O_NONBLOCK
) {
1225 dev_dbg(radio
->dev
, "%s: Wait for RDS data.\n", __func__
);
1226 if (wait_event_interruptible(radio
->read_queue
,
1228 radio
->rd_index
) < 0) {
1234 /* calculate block count from byte count */
1235 count
/= RDS_BLOCK_SIZE
;
1237 /* copy RDS blocks from the internal buffer and to user buffer */
1238 while (block_count
< count
) {
1239 if (radio
->rd_index
== radio
->wr_index
)
1242 /* always transfer complete RDS blocks */
1243 if (copy_to_user(buf
, &radio
->buffer
[radio
->rd_index
],
1247 /* increment and wrap the read pointer */
1248 radio
->rd_index
+= RDS_BLOCK_SIZE
;
1249 if (radio
->rd_index
>= radio
->buf_size
)
1250 radio
->rd_index
= 0;
1252 /* increment counters */
1254 buf
+= RDS_BLOCK_SIZE
;
1255 r
+= RDS_BLOCK_SIZE
;
1259 dev_dbg(radio
->dev
, "%s: exit\n", __func__
);
1260 mutex_unlock(&core
->lock
);
1265 static const struct v4l2_file_operations wl1273_fops
= {
1266 .owner
= THIS_MODULE
,
1267 .read
= wl1273_fm_fops_read
,
1268 .write
= wl1273_fm_fops_write
,
1269 .poll
= wl1273_fm_fops_poll
,
1270 .unlocked_ioctl
= video_ioctl2
,
1271 .open
= wl1273_fm_fops_open
,
1272 .release
= wl1273_fm_fops_release
,
1275 static int wl1273_fm_vidioc_querycap(struct file
*file
, void *priv
,
1276 struct v4l2_capability
*capability
)
1278 struct wl1273_device
*radio
= video_get_drvdata(video_devdata(file
));
1280 dev_dbg(radio
->dev
, "%s\n", __func__
);
1282 strlcpy(capability
->driver
, WL1273_FM_DRIVER_NAME
,
1283 sizeof(capability
->driver
));
1284 strlcpy(capability
->card
, "Texas Instruments Wl1273 FM Radio",
1285 sizeof(capability
->card
));
1286 strlcpy(capability
->bus_info
, radio
->bus_type
,
1287 sizeof(capability
->bus_info
));
1289 capability
->device_caps
= V4L2_CAP_HW_FREQ_SEEK
|
1290 V4L2_CAP_TUNER
| V4L2_CAP_RADIO
| V4L2_CAP_AUDIO
|
1291 V4L2_CAP_RDS_CAPTURE
| V4L2_CAP_MODULATOR
|
1292 V4L2_CAP_RDS_OUTPUT
;
1293 capability
->capabilities
= capability
->device_caps
|
1294 V4L2_CAP_DEVICE_CAPS
;
1299 static int wl1273_fm_vidioc_g_input(struct file
*file
, void *priv
,
1302 struct wl1273_device
*radio
= video_get_drvdata(video_devdata(file
));
1304 dev_dbg(radio
->dev
, "%s\n", __func__
);
1311 static int wl1273_fm_vidioc_s_input(struct file
*file
, void *priv
,
1314 struct wl1273_device
*radio
= video_get_drvdata(video_devdata(file
));
1316 dev_dbg(radio
->dev
, "%s\n", __func__
);
1325 * wl1273_fm_set_tx_power() - Set the transmission power value.
1326 * @core: A pointer to the device struct.
1327 * @power: The new power value.
1329 static int wl1273_fm_set_tx_power(struct wl1273_device
*radio
, u16 power
)
1331 struct wl1273_core
*core
= radio
->core
;
1334 if (core
->mode
== WL1273_MODE_OFF
||
1335 core
->mode
== WL1273_MODE_SUSPENDED
)
1338 mutex_lock(&core
->lock
);
1340 /* Convert the dBuV value to chip presentation */
1341 r
= core
->write(core
, WL1273_POWER_LEV_SET
, 122 - power
);
1345 radio
->tx_power
= power
;
1348 mutex_unlock(&core
->lock
);
1352 #define WL1273_SPACING_50kHz 1
1353 #define WL1273_SPACING_100kHz 2
1354 #define WL1273_SPACING_200kHz 4
1356 static int wl1273_fm_tx_set_spacing(struct wl1273_device
*radio
,
1357 unsigned int spacing
)
1359 struct wl1273_core
*core
= radio
->core
;
1363 r
= core
->write(core
, WL1273_SCAN_SPACING_SET
,
1364 WL1273_SPACING_100kHz
);
1365 radio
->spacing
= 100;
1366 } else if (spacing
- 50000 < 25000) {
1367 r
= core
->write(core
, WL1273_SCAN_SPACING_SET
,
1368 WL1273_SPACING_50kHz
);
1369 radio
->spacing
= 50;
1370 } else if (spacing
- 100000 < 50000) {
1371 r
= core
->write(core
, WL1273_SCAN_SPACING_SET
,
1372 WL1273_SPACING_100kHz
);
1373 radio
->spacing
= 100;
1375 r
= core
->write(core
, WL1273_SCAN_SPACING_SET
,
1376 WL1273_SPACING_200kHz
);
1377 radio
->spacing
= 200;
1383 static int wl1273_fm_g_volatile_ctrl(struct v4l2_ctrl
*ctrl
)
1385 struct wl1273_device
*radio
= ctrl
->priv
;
1386 struct wl1273_core
*core
= radio
->core
;
1388 dev_dbg(radio
->dev
, "%s\n", __func__
);
1390 if (mutex_lock_interruptible(&core
->lock
))
1394 case V4L2_CID_TUNE_ANTENNA_CAPACITOR
:
1395 ctrl
->val
= wl1273_fm_get_tx_ctune(radio
);
1399 dev_warn(radio
->dev
, "%s: Unknown IOCTL: %d\n",
1400 __func__
, ctrl
->id
);
1404 mutex_unlock(&core
->lock
);
1409 #define WL1273_MUTE_SOFT_ENABLE (1 << 0)
1410 #define WL1273_MUTE_AC (1 << 1)
1411 #define WL1273_MUTE_HARD_LEFT (1 << 2)
1412 #define WL1273_MUTE_HARD_RIGHT (1 << 3)
1413 #define WL1273_MUTE_SOFT_FORCE (1 << 4)
1415 static inline struct wl1273_device
*to_radio(struct v4l2_ctrl
*ctrl
)
1417 return container_of(ctrl
->handler
, struct wl1273_device
, ctrl_handler
);
1420 static int wl1273_fm_vidioc_s_ctrl(struct v4l2_ctrl
*ctrl
)
1422 struct wl1273_device
*radio
= to_radio(ctrl
);
1423 struct wl1273_core
*core
= radio
->core
;
1426 dev_dbg(radio
->dev
, "%s\n", __func__
);
1429 case V4L2_CID_AUDIO_MUTE
:
1430 if (mutex_lock_interruptible(&core
->lock
))
1433 if (core
->mode
== WL1273_MODE_RX
&& ctrl
->val
)
1434 r
= core
->write(core
,
1435 WL1273_MUTE_STATUS_SET
,
1436 WL1273_MUTE_HARD_LEFT
|
1437 WL1273_MUTE_HARD_RIGHT
);
1438 else if (core
->mode
== WL1273_MODE_RX
)
1439 r
= core
->write(core
,
1440 WL1273_MUTE_STATUS_SET
, 0x0);
1441 else if (core
->mode
== WL1273_MODE_TX
&& ctrl
->val
)
1442 r
= core
->write(core
, WL1273_MUTE
, 1);
1443 else if (core
->mode
== WL1273_MODE_TX
)
1444 r
= core
->write(core
, WL1273_MUTE
, 0);
1446 mutex_unlock(&core
->lock
);
1449 case V4L2_CID_AUDIO_VOLUME
:
1451 r
= wl1273_fm_set_mode(radio
, WL1273_MODE_OFF
);
1453 r
= core
->set_volume(core
, core
->volume
);
1456 case V4L2_CID_TUNE_PREEMPHASIS
:
1457 r
= wl1273_fm_set_preemphasis(radio
, ctrl
->val
);
1460 case V4L2_CID_TUNE_POWER_LEVEL
:
1461 r
= wl1273_fm_set_tx_power(radio
, ctrl
->val
);
1465 dev_warn(radio
->dev
, "%s: Unknown IOCTL: %d\n",
1466 __func__
, ctrl
->id
);
1470 dev_dbg(radio
->dev
, "%s\n", __func__
);
1474 static int wl1273_fm_vidioc_g_audio(struct file
*file
, void *priv
,
1475 struct v4l2_audio
*audio
)
1477 struct wl1273_device
*radio
= video_get_drvdata(video_devdata(file
));
1479 dev_dbg(radio
->dev
, "%s\n", __func__
);
1481 if (audio
->index
> 1)
1484 strlcpy(audio
->name
, "Radio", sizeof(audio
->name
));
1485 audio
->capability
= V4L2_AUDCAP_STEREO
;
1490 static int wl1273_fm_vidioc_s_audio(struct file
*file
, void *priv
,
1491 const struct v4l2_audio
*audio
)
1493 struct wl1273_device
*radio
= video_get_drvdata(video_devdata(file
));
1495 dev_dbg(radio
->dev
, "%s\n", __func__
);
1497 if (audio
->index
!= 0)
1503 #define WL1273_RDS_NOT_SYNCHRONIZED 0
1504 #define WL1273_RDS_SYNCHRONIZED 1
1506 static int wl1273_fm_vidioc_g_tuner(struct file
*file
, void *priv
,
1507 struct v4l2_tuner
*tuner
)
1509 struct wl1273_device
*radio
= video_get_drvdata(video_devdata(file
));
1510 struct wl1273_core
*core
= radio
->core
;
1514 dev_dbg(radio
->dev
, "%s\n", __func__
);
1516 if (tuner
->index
> 0)
1519 strlcpy(tuner
->name
, WL1273_FM_DRIVER_NAME
, sizeof(tuner
->name
));
1520 tuner
->type
= V4L2_TUNER_RADIO
;
1522 tuner
->rangelow
= WL1273_FREQ(WL1273_BAND_JAPAN_LOW
);
1523 tuner
->rangehigh
= WL1273_FREQ(WL1273_BAND_OTHER_HIGH
);
1525 tuner
->capability
= V4L2_TUNER_CAP_LOW
| V4L2_TUNER_CAP_RDS
|
1526 V4L2_TUNER_CAP_STEREO
| V4L2_TUNER_CAP_RDS_BLOCK_IO
|
1527 V4L2_TUNER_CAP_HWSEEK_BOUNDED
| V4L2_TUNER_CAP_HWSEEK_WRAP
;
1530 tuner
->audmode
= V4L2_TUNER_MODE_STEREO
;
1532 tuner
->audmode
= V4L2_TUNER_MODE_MONO
;
1534 if (core
->mode
!= WL1273_MODE_RX
)
1537 if (mutex_lock_interruptible(&core
->lock
))
1540 r
= core
->read(core
, WL1273_STEREO_GET
, &val
);
1545 tuner
->rxsubchans
= V4L2_TUNER_SUB_STEREO
;
1547 tuner
->rxsubchans
= V4L2_TUNER_SUB_MONO
;
1549 r
= core
->read(core
, WL1273_RSSI_LVL_GET
, &val
);
1553 tuner
->signal
= (s16
) val
;
1554 dev_dbg(radio
->dev
, "Signal: %d\n", tuner
->signal
);
1558 r
= core
->read(core
, WL1273_RDS_SYNC_GET
, &val
);
1562 if (val
== WL1273_RDS_SYNCHRONIZED
)
1563 tuner
->rxsubchans
|= V4L2_TUNER_SUB_RDS
;
1565 mutex_unlock(&core
->lock
);
1570 static int wl1273_fm_vidioc_s_tuner(struct file
*file
, void *priv
,
1571 const struct v4l2_tuner
*tuner
)
1573 struct wl1273_device
*radio
= video_get_drvdata(video_devdata(file
));
1574 struct wl1273_core
*core
= radio
->core
;
1577 dev_dbg(radio
->dev
, "%s\n", __func__
);
1578 dev_dbg(radio
->dev
, "tuner->index: %d\n", tuner
->index
);
1579 dev_dbg(radio
->dev
, "tuner->name: %s\n", tuner
->name
);
1580 dev_dbg(radio
->dev
, "tuner->capability: 0x%04x\n", tuner
->capability
);
1581 dev_dbg(radio
->dev
, "tuner->rxsubchans: 0x%04x\n", tuner
->rxsubchans
);
1582 dev_dbg(radio
->dev
, "tuner->rangelow: %d\n", tuner
->rangelow
);
1583 dev_dbg(radio
->dev
, "tuner->rangehigh: %d\n", tuner
->rangehigh
);
1585 if (tuner
->index
> 0)
1588 if (mutex_lock_interruptible(&core
->lock
))
1591 r
= wl1273_fm_set_mode(radio
, WL1273_MODE_RX
);
1595 if (tuner
->rxsubchans
& V4L2_TUNER_SUB_RDS
)
1596 r
= wl1273_fm_set_rds(radio
, WL1273_RDS_ON
);
1598 r
= wl1273_fm_set_rds(radio
, WL1273_RDS_OFF
);
1601 dev_warn(radio
->dev
, "%s: RDS fails: %d\n", __func__
, r
);
1603 if (tuner
->audmode
== V4L2_TUNER_MODE_MONO
) {
1604 r
= core
->write(core
, WL1273_MOST_MODE_SET
, WL1273_RX_MONO
);
1606 dev_warn(radio
->dev
, "%s: MOST_MODE fails: %d\n",
1610 radio
->stereo
= false;
1611 } else if (tuner
->audmode
== V4L2_TUNER_MODE_STEREO
) {
1612 r
= core
->write(core
, WL1273_MOST_MODE_SET
, WL1273_RX_STEREO
);
1614 dev_warn(radio
->dev
, "%s: MOST_MODE fails: %d\n",
1618 radio
->stereo
= true;
1620 dev_err(radio
->dev
, "%s: tuner->audmode: %d\n",
1621 __func__
, tuner
->audmode
);
1627 mutex_unlock(&core
->lock
);
1632 static int wl1273_fm_vidioc_g_frequency(struct file
*file
, void *priv
,
1633 struct v4l2_frequency
*freq
)
1635 struct wl1273_device
*radio
= video_get_drvdata(video_devdata(file
));
1636 struct wl1273_core
*core
= radio
->core
;
1638 dev_dbg(radio
->dev
, "%s\n", __func__
);
1640 if (mutex_lock_interruptible(&core
->lock
))
1643 freq
->type
= V4L2_TUNER_RADIO
;
1644 freq
->frequency
= WL1273_FREQ(wl1273_fm_get_freq(radio
));
1646 mutex_unlock(&core
->lock
);
1651 static int wl1273_fm_vidioc_s_frequency(struct file
*file
, void *priv
,
1652 const struct v4l2_frequency
*freq
)
1654 struct wl1273_device
*radio
= video_get_drvdata(video_devdata(file
));
1655 struct wl1273_core
*core
= radio
->core
;
1658 dev_dbg(radio
->dev
, "%s: %d\n", __func__
, freq
->frequency
);
1660 if (freq
->type
!= V4L2_TUNER_RADIO
) {
1662 "freq->type != V4L2_TUNER_RADIO: %d\n", freq
->type
);
1666 if (mutex_lock_interruptible(&core
->lock
))
1669 if (core
->mode
== WL1273_MODE_RX
) {
1670 dev_dbg(radio
->dev
, "freq: %d\n", freq
->frequency
);
1672 r
= wl1273_fm_set_rx_freq(radio
,
1673 WL1273_INV_FREQ(freq
->frequency
));
1675 dev_warn(radio
->dev
, WL1273_FM_DRIVER_NAME
1676 ": set frequency failed with %d\n", r
);
1678 r
= wl1273_fm_set_tx_freq(radio
,
1679 WL1273_INV_FREQ(freq
->frequency
));
1681 dev_warn(radio
->dev
, WL1273_FM_DRIVER_NAME
1682 ": set frequency failed with %d\n", r
);
1685 mutex_unlock(&core
->lock
);
1687 dev_dbg(radio
->dev
, "wl1273_vidioc_s_frequency: DONE\n");
1691 #define WL1273_DEFAULT_SEEK_LEVEL 7
1693 static int wl1273_fm_vidioc_s_hw_freq_seek(struct file
*file
, void *priv
,
1694 const struct v4l2_hw_freq_seek
*seek
)
1696 struct wl1273_device
*radio
= video_get_drvdata(video_devdata(file
));
1697 struct wl1273_core
*core
= radio
->core
;
1700 dev_dbg(radio
->dev
, "%s\n", __func__
);
1702 if (seek
->tuner
!= 0 || seek
->type
!= V4L2_TUNER_RADIO
)
1705 if (file
->f_flags
& O_NONBLOCK
)
1706 return -EWOULDBLOCK
;
1708 if (mutex_lock_interruptible(&core
->lock
))
1711 r
= wl1273_fm_set_mode(radio
, WL1273_MODE_RX
);
1715 r
= wl1273_fm_tx_set_spacing(radio
, seek
->spacing
);
1717 dev_warn(radio
->dev
, "HW seek failed: %d\n", r
);
1719 r
= wl1273_fm_set_seek(radio
, seek
->wrap_around
, seek
->seek_upward
,
1720 WL1273_DEFAULT_SEEK_LEVEL
);
1722 dev_warn(radio
->dev
, "HW seek failed: %d\n", r
);
1725 mutex_unlock(&core
->lock
);
1729 static int wl1273_fm_vidioc_s_modulator(struct file
*file
, void *priv
,
1730 const struct v4l2_modulator
*modulator
)
1732 struct wl1273_device
*radio
= video_get_drvdata(video_devdata(file
));
1733 struct wl1273_core
*core
= radio
->core
;
1736 dev_dbg(radio
->dev
, "%s\n", __func__
);
1738 if (modulator
->index
> 0)
1741 if (mutex_lock_interruptible(&core
->lock
))
1744 r
= wl1273_fm_set_mode(radio
, WL1273_MODE_TX
);
1748 if (modulator
->txsubchans
& V4L2_TUNER_SUB_RDS
)
1749 r
= wl1273_fm_set_rds(radio
, WL1273_RDS_ON
);
1751 r
= wl1273_fm_set_rds(radio
, WL1273_RDS_OFF
);
1753 if (modulator
->txsubchans
& V4L2_TUNER_SUB_MONO
)
1754 r
= core
->write(core
, WL1273_MONO_SET
, WL1273_TX_MONO
);
1756 r
= core
->write(core
, WL1273_MONO_SET
,
1759 dev_warn(radio
->dev
, WL1273_FM_DRIVER_NAME
1760 "MONO_SET fails: %d\n", r
);
1762 mutex_unlock(&core
->lock
);
1767 static int wl1273_fm_vidioc_g_modulator(struct file
*file
, void *priv
,
1768 struct v4l2_modulator
*modulator
)
1770 struct wl1273_device
*radio
= video_get_drvdata(video_devdata(file
));
1771 struct wl1273_core
*core
= radio
->core
;
1775 dev_dbg(radio
->dev
, "%s\n", __func__
);
1777 strlcpy(modulator
->name
, WL1273_FM_DRIVER_NAME
,
1778 sizeof(modulator
->name
));
1780 modulator
->rangelow
= WL1273_FREQ(WL1273_BAND_JAPAN_LOW
);
1781 modulator
->rangehigh
= WL1273_FREQ(WL1273_BAND_OTHER_HIGH
);
1783 modulator
->capability
= V4L2_TUNER_CAP_LOW
| V4L2_TUNER_CAP_RDS
|
1784 V4L2_TUNER_CAP_STEREO
| V4L2_TUNER_CAP_RDS_BLOCK_IO
;
1786 if (core
->mode
!= WL1273_MODE_TX
)
1789 if (mutex_lock_interruptible(&core
->lock
))
1792 r
= core
->read(core
, WL1273_MONO_SET
, &val
);
1796 if (val
== WL1273_TX_STEREO
)
1797 modulator
->txsubchans
= V4L2_TUNER_SUB_STEREO
;
1799 modulator
->txsubchans
= V4L2_TUNER_SUB_MONO
;
1802 modulator
->txsubchans
|= V4L2_TUNER_SUB_RDS
;
1804 mutex_unlock(&core
->lock
);
1809 static int wl1273_fm_vidioc_log_status(struct file
*file
, void *priv
)
1811 struct wl1273_device
*radio
= video_get_drvdata(video_devdata(file
));
1812 struct wl1273_core
*core
= radio
->core
;
1813 struct device
*dev
= radio
->dev
;
1817 dev_info(dev
, DRIVER_DESC
);
1819 if (core
->mode
== WL1273_MODE_OFF
) {
1820 dev_info(dev
, "Mode: Off\n");
1824 if (core
->mode
== WL1273_MODE_SUSPENDED
) {
1825 dev_info(dev
, "Mode: Suspended\n");
1829 r
= core
->read(core
, WL1273_ASIC_ID_GET
, &val
);
1831 dev_err(dev
, "%s: Get ASIC_ID fails.\n", __func__
);
1833 dev_info(dev
, "ASIC_ID: 0x%04x\n", val
);
1835 r
= core
->read(core
, WL1273_ASIC_VER_GET
, &val
);
1837 dev_err(dev
, "%s: Get ASIC_VER fails.\n", __func__
);
1839 dev_info(dev
, "ASIC Version: 0x%04x\n", val
);
1841 r
= core
->read(core
, WL1273_FIRM_VER_GET
, &val
);
1843 dev_err(dev
, "%s: Get FIRM_VER fails.\n", __func__
);
1845 dev_info(dev
, "FW version: %d(0x%04x)\n", val
, val
);
1847 r
= core
->read(core
, WL1273_BAND_SET
, &val
);
1849 dev_err(dev
, "%s: Get BAND fails.\n", __func__
);
1851 dev_info(dev
, "BAND: %d\n", val
);
1853 if (core
->mode
== WL1273_MODE_TX
) {
1854 r
= core
->read(core
, WL1273_PUPD_SET
, &val
);
1856 dev_err(dev
, "%s: Get PUPD fails.\n", __func__
);
1858 dev_info(dev
, "PUPD: 0x%04x\n", val
);
1860 r
= core
->read(core
, WL1273_CHANL_SET
, &val
);
1862 dev_err(dev
, "%s: Get CHANL fails.\n", __func__
);
1864 dev_info(dev
, "Tx frequency: %dkHz\n", val
*10);
1865 } else if (core
->mode
== WL1273_MODE_RX
) {
1866 int bf
= radio
->rangelow
;
1868 r
= core
->read(core
, WL1273_FREQ_SET
, &val
);
1870 dev_err(dev
, "%s: Get FREQ fails.\n", __func__
);
1872 dev_info(dev
, "RX Frequency: %dkHz\n", bf
+ val
*50);
1874 r
= core
->read(core
, WL1273_MOST_MODE_SET
, &val
);
1876 dev_err(dev
, "%s: Get MOST_MODE fails.\n",
1879 dev_info(dev
, "MOST_MODE: Stereo according to blend\n");
1881 dev_info(dev
, "MOST_MODE: Force mono output\n");
1883 dev_info(dev
, "MOST_MODE: Unexpected value: %d\n", val
);
1885 r
= core
->read(core
, WL1273_MOST_BLEND_SET
, &val
);
1887 dev_err(dev
, "%s: Get MOST_BLEND fails.\n", __func__
);
1890 "MOST_BLEND: Switched blend & hysteresis.\n");
1892 dev_info(dev
, "MOST_BLEND: Soft blend.\n");
1894 dev_info(dev
, "MOST_BLEND: Unexpected val: %d\n", val
);
1896 r
= core
->read(core
, WL1273_STEREO_GET
, &val
);
1898 dev_err(dev
, "%s: Get STEREO fails.\n", __func__
);
1900 dev_info(dev
, "STEREO: Not detected\n");
1902 dev_info(dev
, "STEREO: Detected\n");
1904 dev_info(dev
, "STEREO: Unexpected value: %d\n", val
);
1906 r
= core
->read(core
, WL1273_RSSI_LVL_GET
, &val
);
1908 dev_err(dev
, "%s: Get RSSI_LVL fails.\n", __func__
);
1910 dev_info(dev
, "RX signal strength: %d\n", (s16
) val
);
1912 r
= core
->read(core
, WL1273_POWER_SET
, &val
);
1914 dev_err(dev
, "%s: Get POWER fails.\n", __func__
);
1916 dev_info(dev
, "POWER: 0x%04x\n", val
);
1918 r
= core
->read(core
, WL1273_INT_MASK_SET
, &val
);
1920 dev_err(dev
, "%s: Get INT_MASK fails.\n", __func__
);
1922 dev_info(dev
, "INT_MASK: 0x%04x\n", val
);
1924 r
= core
->read(core
, WL1273_RDS_SYNC_GET
, &val
);
1926 dev_err(dev
, "%s: Get RDS_SYNC fails.\n",
1929 dev_info(dev
, "RDS_SYNC: Not synchronized\n");
1932 dev_info(dev
, "RDS_SYNC: Synchronized\n");
1934 dev_info(dev
, "RDS_SYNC: Unexpected value: %d\n", val
);
1936 r
= core
->read(core
, WL1273_I2S_MODE_CONFIG_SET
, &val
);
1938 dev_err(dev
, "%s: Get I2S_MODE_CONFIG fails.\n",
1941 dev_info(dev
, "I2S_MODE_CONFIG: 0x%04x\n", val
);
1943 r
= core
->read(core
, WL1273_VOLUME_SET
, &val
);
1945 dev_err(dev
, "%s: Get VOLUME fails.\n", __func__
);
1947 dev_info(dev
, "VOLUME: 0x%04x\n", val
);
1953 static void wl1273_vdev_release(struct video_device
*dev
)
1957 static const struct v4l2_ctrl_ops wl1273_ctrl_ops
= {
1958 .s_ctrl
= wl1273_fm_vidioc_s_ctrl
,
1959 .g_volatile_ctrl
= wl1273_fm_g_volatile_ctrl
,
1962 static const struct v4l2_ioctl_ops wl1273_ioctl_ops
= {
1963 .vidioc_querycap
= wl1273_fm_vidioc_querycap
,
1964 .vidioc_g_input
= wl1273_fm_vidioc_g_input
,
1965 .vidioc_s_input
= wl1273_fm_vidioc_s_input
,
1966 .vidioc_g_audio
= wl1273_fm_vidioc_g_audio
,
1967 .vidioc_s_audio
= wl1273_fm_vidioc_s_audio
,
1968 .vidioc_g_tuner
= wl1273_fm_vidioc_g_tuner
,
1969 .vidioc_s_tuner
= wl1273_fm_vidioc_s_tuner
,
1970 .vidioc_g_frequency
= wl1273_fm_vidioc_g_frequency
,
1971 .vidioc_s_frequency
= wl1273_fm_vidioc_s_frequency
,
1972 .vidioc_s_hw_freq_seek
= wl1273_fm_vidioc_s_hw_freq_seek
,
1973 .vidioc_g_modulator
= wl1273_fm_vidioc_g_modulator
,
1974 .vidioc_s_modulator
= wl1273_fm_vidioc_s_modulator
,
1975 .vidioc_log_status
= wl1273_fm_vidioc_log_status
,
1978 static struct video_device wl1273_viddev_template
= {
1979 .fops
= &wl1273_fops
,
1980 .ioctl_ops
= &wl1273_ioctl_ops
,
1981 .name
= WL1273_FM_DRIVER_NAME
,
1982 .release
= wl1273_vdev_release
,
1983 .vfl_dir
= VFL_DIR_TX
,
1986 static int wl1273_fm_radio_remove(struct platform_device
*pdev
)
1988 struct wl1273_device
*radio
= platform_get_drvdata(pdev
);
1989 struct wl1273_core
*core
= radio
->core
;
1991 dev_info(&pdev
->dev
, "%s.\n", __func__
);
1993 free_irq(core
->client
->irq
, radio
);
1994 core
->pdata
->free_resources();
1996 v4l2_ctrl_handler_free(&radio
->ctrl_handler
);
1997 video_unregister_device(&radio
->videodev
);
1998 v4l2_device_unregister(&radio
->v4l2dev
);
2003 static int wl1273_fm_radio_probe(struct platform_device
*pdev
)
2005 struct wl1273_core
**core
= pdev
->dev
.platform_data
;
2006 struct wl1273_device
*radio
;
2007 struct v4l2_ctrl
*ctrl
;
2010 pr_debug("%s\n", __func__
);
2013 dev_err(&pdev
->dev
, "No platform data.\n");
2018 radio
= devm_kzalloc(&pdev
->dev
, sizeof(*radio
), GFP_KERNEL
);
2024 /* RDS buffer allocation */
2025 radio
->buf_size
= rds_buf
* RDS_BLOCK_SIZE
;
2026 radio
->buffer
= devm_kzalloc(&pdev
->dev
, radio
->buf_size
, GFP_KERNEL
);
2027 if (!radio
->buffer
) {
2028 pr_err("Cannot allocate memory for RDS buffer.\n");
2033 radio
->core
= *core
;
2034 radio
->irq_flags
= WL1273_IRQ_MASK
;
2035 radio
->dev
= &radio
->core
->client
->dev
;
2036 radio
->rds_on
= false;
2037 radio
->core
->mode
= WL1273_MODE_OFF
;
2038 radio
->tx_power
= 118;
2039 radio
->core
->audio_mode
= WL1273_AUDIO_ANALOG
;
2040 radio
->band
= WL1273_BAND_OTHER
;
2041 radio
->core
->i2s_mode
= WL1273_I2S_DEF_MODE
;
2042 radio
->core
->channel_number
= 2;
2043 radio
->core
->volume
= WL1273_DEFAULT_VOLUME
;
2044 radio
->rx_frequency
= WL1273_BAND_OTHER_LOW
;
2045 radio
->tx_frequency
= WL1273_BAND_OTHER_HIGH
;
2046 radio
->rangelow
= WL1273_BAND_OTHER_LOW
;
2047 radio
->rangehigh
= WL1273_BAND_OTHER_HIGH
;
2048 radio
->stereo
= true;
2049 radio
->bus_type
= "I2C";
2051 if (radio
->core
->pdata
->request_resources
) {
2052 r
= radio
->core
->pdata
->request_resources(radio
->core
->client
);
2054 dev_err(radio
->dev
, WL1273_FM_DRIVER_NAME
2055 ": Cannot get platform data\n");
2059 dev_dbg(radio
->dev
, "irq: %d\n", radio
->core
->client
->irq
);
2061 r
= request_threaded_irq(radio
->core
->client
->irq
, NULL
,
2062 wl1273_fm_irq_thread_handler
,
2063 IRQF_ONESHOT
| IRQF_TRIGGER_FALLING
,
2064 "wl1273-fm", radio
);
2066 dev_err(radio
->dev
, WL1273_FM_DRIVER_NAME
2067 ": Unable to register IRQ handler: %d\n", r
);
2068 goto err_request_irq
;
2071 dev_err(radio
->dev
, WL1273_FM_DRIVER_NAME
": Core WL1273 IRQ"
2077 init_completion(&radio
->busy
);
2078 init_waitqueue_head(&radio
->read_queue
);
2080 radio
->write_buf
= devm_kzalloc(&pdev
->dev
, 256, GFP_KERNEL
);
2081 if (!radio
->write_buf
) {
2086 radio
->dev
= &pdev
->dev
;
2087 radio
->v4l2dev
.ctrl_handler
= &radio
->ctrl_handler
;
2088 radio
->rds_users
= 0;
2090 r
= v4l2_device_register(&pdev
->dev
, &radio
->v4l2dev
);
2092 dev_err(&pdev
->dev
, "Cannot register v4l2_device.\n");
2096 /* V4L2 configuration */
2097 radio
->videodev
= wl1273_viddev_template
;
2099 radio
->videodev
.v4l2_dev
= &radio
->v4l2dev
;
2101 v4l2_ctrl_handler_init(&radio
->ctrl_handler
, 6);
2103 /* add in ascending ID order */
2104 v4l2_ctrl_new_std(&radio
->ctrl_handler
, &wl1273_ctrl_ops
,
2105 V4L2_CID_AUDIO_VOLUME
, 0, WL1273_MAX_VOLUME
, 1,
2106 WL1273_DEFAULT_VOLUME
);
2108 v4l2_ctrl_new_std(&radio
->ctrl_handler
, &wl1273_ctrl_ops
,
2109 V4L2_CID_AUDIO_MUTE
, 0, 1, 1, 1);
2111 v4l2_ctrl_new_std_menu(&radio
->ctrl_handler
, &wl1273_ctrl_ops
,
2112 V4L2_CID_TUNE_PREEMPHASIS
,
2113 V4L2_PREEMPHASIS_75_uS
, 0x03,
2114 V4L2_PREEMPHASIS_50_uS
);
2116 v4l2_ctrl_new_std(&radio
->ctrl_handler
, &wl1273_ctrl_ops
,
2117 V4L2_CID_TUNE_POWER_LEVEL
, 91, 122, 1, 118);
2119 ctrl
= v4l2_ctrl_new_std(&radio
->ctrl_handler
, &wl1273_ctrl_ops
,
2120 V4L2_CID_TUNE_ANTENNA_CAPACITOR
,
2123 ctrl
->flags
|= V4L2_CTRL_FLAG_VOLATILE
;
2125 if (radio
->ctrl_handler
.error
) {
2126 r
= radio
->ctrl_handler
.error
;
2127 dev_err(&pdev
->dev
, "Ctrl handler error: %d\n", r
);
2128 goto handler_init_err
;
2131 video_set_drvdata(&radio
->videodev
, radio
);
2132 platform_set_drvdata(pdev
, radio
);
2134 /* register video device */
2135 r
= video_register_device(&radio
->videodev
, VFL_TYPE_RADIO
, radio_nr
);
2137 dev_err(&pdev
->dev
, WL1273_FM_DRIVER_NAME
2138 ": Could not register video device\n");
2139 goto handler_init_err
;
2145 v4l2_ctrl_handler_free(&radio
->ctrl_handler
);
2146 v4l2_device_unregister(&radio
->v4l2dev
);
2148 free_irq(radio
->core
->client
->irq
, radio
);
2150 radio
->core
->pdata
->free_resources();
2155 static struct platform_driver wl1273_fm_radio_driver
= {
2156 .probe
= wl1273_fm_radio_probe
,
2157 .remove
= wl1273_fm_radio_remove
,
2159 .name
= "wl1273_fm_radio",
2163 module_platform_driver(wl1273_fm_radio_driver
);
2165 MODULE_AUTHOR("Matti Aaltonen <matti.j.aaltonen@nokia.com>");
2166 MODULE_DESCRIPTION(DRIVER_DESC
);
2167 MODULE_LICENSE("GPL");
2168 MODULE_ALIAS("platform:wl1273_fm_radio");