2 * drivers/staging/media/radio-bcm2048.c
4 * Driver for I2C Broadcom BCM2048 FM Radio Receiver:
6 * Copyright (C) Nokia Corporation
7 * Contact: Eero Nurkkala <ext-eero.nurkkala@nokia.com>
9 * Copyright (C) Nils Faerber <nils.faerber@kernelconcepts.de>
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * version 2 as published by the Free Software Foundation.
15 * This program is distributed in the hope that it will be useful, but
16 * WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
28 * Eero Nurkkala <ext-eero.nurkkala@nokia.com>
30 * - Initial implementation
31 * 2010-02-21 Nils Faerber <nils.faerber@kernelconcepts.de>
33 * - Add support for interrupt driven rds data reading
36 #include <linux/kernel.h>
37 #include <linux/module.h>
38 #include <linux/init.h>
39 #include <linux/version.h>
40 #include <linux/interrupt.h>
41 #include <linux/sysfs.h>
42 #include <linux/completion.h>
43 #include <linux/delay.h>
44 #include <linux/i2c.h>
45 #include <linux/videodev2.h>
46 #include <linux/mutex.h>
47 #include <linux/slab.h>
48 #include <media/v4l2-common.h>
49 #include <media/v4l2-ioctl.h>
50 #include "radio-bcm2048.h"
52 /* driver definitions */
53 #define BCM2048_DRIVER_AUTHOR "Eero Nurkkala <ext-eero.nurkkala@nokia.com>"
54 #define BCM2048_DRIVER_NAME BCM2048_NAME
55 #define BCM2048_DRIVER_VERSION KERNEL_VERSION(0, 0, 1)
56 #define BCM2048_DRIVER_CARD "Broadcom bcm2048 FM Radio Receiver"
57 #define BCM2048_DRIVER_DESC "I2C driver for BCM2048 FM Radio Receiver"
59 /* I2C Control Registers */
60 #define BCM2048_I2C_FM_RDS_SYSTEM 0x00
61 #define BCM2048_I2C_FM_CTRL 0x01
62 #define BCM2048_I2C_RDS_CTRL0 0x02
63 #define BCM2048_I2C_RDS_CTRL1 0x03
64 #define BCM2048_I2C_FM_AUDIO_PAUSE 0x04
65 #define BCM2048_I2C_FM_AUDIO_CTRL0 0x05
66 #define BCM2048_I2C_FM_AUDIO_CTRL1 0x06
67 #define BCM2048_I2C_FM_SEARCH_CTRL0 0x07
68 #define BCM2048_I2C_FM_SEARCH_CTRL1 0x08
69 #define BCM2048_I2C_FM_SEARCH_TUNE_MODE 0x09
70 #define BCM2048_I2C_FM_FREQ0 0x0a
71 #define BCM2048_I2C_FM_FREQ1 0x0b
72 #define BCM2048_I2C_FM_AF_FREQ0 0x0c
73 #define BCM2048_I2C_FM_AF_FREQ1 0x0d
74 #define BCM2048_I2C_FM_CARRIER 0x0e
75 #define BCM2048_I2C_FM_RSSI 0x0f
76 #define BCM2048_I2C_FM_RDS_MASK0 0x10
77 #define BCM2048_I2C_FM_RDS_MASK1 0x11
78 #define BCM2048_I2C_FM_RDS_FLAG0 0x12
79 #define BCM2048_I2C_FM_RDS_FLAG1 0x13
80 #define BCM2048_I2C_RDS_WLINE 0x14
81 #define BCM2048_I2C_RDS_BLKB_MATCH0 0x16
82 #define BCM2048_I2C_RDS_BLKB_MATCH1 0x17
83 #define BCM2048_I2C_RDS_BLKB_MASK0 0x18
84 #define BCM2048_I2C_RDS_BLKB_MASK1 0x19
85 #define BCM2048_I2C_RDS_PI_MATCH0 0x1a
86 #define BCM2048_I2C_RDS_PI_MATCH1 0x1b
87 #define BCM2048_I2C_RDS_PI_MASK0 0x1c
88 #define BCM2048_I2C_RDS_PI_MASK1 0x1d
89 #define BCM2048_I2C_SPARE1 0x20
90 #define BCM2048_I2C_SPARE2 0x21
91 #define BCM2048_I2C_FM_RDS_REV 0x28
92 #define BCM2048_I2C_SLAVE_CONFIGURATION 0x29
93 #define BCM2048_I2C_RDS_DATA 0x80
94 #define BCM2048_I2C_FM_BEST_TUNE_MODE 0x90
96 /* BCM2048_I2C_FM_RDS_SYSTEM */
97 #define BCM2048_FM_ON 0x01
98 #define BCM2048_RDS_ON 0x02
100 /* BCM2048_I2C_FM_CTRL */
101 #define BCM2048_BAND_SELECT 0x01
102 #define BCM2048_STEREO_MONO_AUTO_SELECT 0x02
103 #define BCM2048_STEREO_MONO_MANUAL_SELECT 0x04
104 #define BCM2048_STEREO_MONO_BLEND_SWITCH 0x08
105 #define BCM2048_HI_LO_INJECTION 0x10
107 /* BCM2048_I2C_RDS_CTRL0 */
108 #define BCM2048_RBDS_RDS_SELECT 0x01
109 #define BCM2048_FLUSH_FIFO 0x02
111 /* BCM2048_I2C_FM_AUDIO_PAUSE */
112 #define BCM2048_AUDIO_PAUSE_RSSI_TRESH 0x0f
113 #define BCM2048_AUDIO_PAUSE_DURATION 0xf0
115 /* BCM2048_I2C_FM_AUDIO_CTRL0 */
116 #define BCM2048_RF_MUTE 0x01
117 #define BCM2048_MANUAL_MUTE 0x02
118 #define BCM2048_DAC_OUTPUT_LEFT 0x04
119 #define BCM2048_DAC_OUTPUT_RIGHT 0x08
120 #define BCM2048_AUDIO_ROUTE_DAC 0x10
121 #define BCM2048_AUDIO_ROUTE_I2S 0x20
122 #define BCM2048_DE_EMPHASIS_SELECT 0x40
123 #define BCM2048_AUDIO_BANDWIDTH_SELECT 0x80
125 /* BCM2048_I2C_FM_SEARCH_CTRL0 */
126 #define BCM2048_SEARCH_RSSI_THRESHOLD 0x7f
127 #define BCM2048_SEARCH_DIRECTION 0x80
129 /* BCM2048_I2C_FM_SEARCH_TUNE_MODE */
130 #define BCM2048_FM_AUTO_SEARCH 0x03
132 /* BCM2048_I2C_FM_RSSI */
133 #define BCM2048_RSSI_VALUE 0xff
135 /* BCM2048_I2C_FM_RDS_MASK0 */
136 /* BCM2048_I2C_FM_RDS_MASK1 */
137 #define BCM2048_FM_FLAG_SEARCH_TUNE_FINISHED 0x01
138 #define BCM2048_FM_FLAG_SEARCH_TUNE_FAIL 0x02
139 #define BCM2048_FM_FLAG_RSSI_LOW 0x04
140 #define BCM2048_FM_FLAG_CARRIER_ERROR_HIGH 0x08
141 #define BCM2048_FM_FLAG_AUDIO_PAUSE_INDICATION 0x10
142 #define BCM2048_FLAG_STEREO_DETECTED 0x20
143 #define BCM2048_FLAG_STEREO_ACTIVE 0x40
145 /* BCM2048_I2C_RDS_DATA */
146 #define BCM2048_SLAVE_ADDRESS 0x3f
147 #define BCM2048_SLAVE_ENABLE 0x80
149 /* BCM2048_I2C_FM_BEST_TUNE_MODE */
150 #define BCM2048_BEST_TUNE_MODE 0x80
152 #define BCM2048_FM_FLAG_SEARCH_TUNE_FINISHED 0x01
153 #define BCM2048_FM_FLAG_SEARCH_TUNE_FAIL 0x02
154 #define BCM2048_FM_FLAG_RSSI_LOW 0x04
155 #define BCM2048_FM_FLAG_CARRIER_ERROR_HIGH 0x08
156 #define BCM2048_FM_FLAG_AUDIO_PAUSE_INDICATION 0x10
157 #define BCM2048_FLAG_STEREO_DETECTED 0x20
158 #define BCM2048_FLAG_STEREO_ACTIVE 0x40
160 #define BCM2048_RDS_FLAG_FIFO_WLINE 0x02
161 #define BCM2048_RDS_FLAG_B_BLOCK_MATCH 0x08
162 #define BCM2048_RDS_FLAG_SYNC_LOST 0x10
163 #define BCM2048_RDS_FLAG_PI_MATCH 0x20
165 #define BCM2048_RDS_MARK_END_BYTE0 0x7C
166 #define BCM2048_RDS_MARK_END_BYTEN 0xFF
168 #define BCM2048_FM_FLAGS_ALL (FM_FLAG_SEARCH_TUNE_FINISHED | \
169 FM_FLAG_SEARCH_TUNE_FAIL | \
171 FM_FLAG_CARRIER_ERROR_HIGH | \
172 FM_FLAG_AUDIO_PAUSE_INDICATION | \
173 FLAG_STEREO_DETECTED | FLAG_STEREO_ACTIVE)
175 #define BCM2048_RDS_FLAGS_ALL (RDS_FLAG_FIFO_WLINE | \
176 RDS_FLAG_B_BLOCK_MATCH | \
177 RDS_FLAG_SYNC_LOST | RDS_FLAG_PI_MATCH)
179 #define BCM2048_DEFAULT_TIMEOUT 1500
180 #define BCM2048_AUTO_SEARCH_TIMEOUT 3000
182 #define BCM2048_FREQDEV_UNIT 10000
183 #define BCM2048_FREQV4L2_MULTI 625
184 #define dev_to_v4l2(f) ((f * BCM2048_FREQDEV_UNIT) / BCM2048_FREQV4L2_MULTI)
185 #define v4l2_to_dev(f) ((f * BCM2048_FREQV4L2_MULTI) / BCM2048_FREQDEV_UNIT)
187 #define msb(x) ((u8)((u16)x >> 8))
188 #define lsb(x) ((u8)((u16)x & 0x00FF))
189 #define compose_u16(msb, lsb) (((u16)msb << 8) | lsb)
191 #define BCM2048_DEFAULT_POWERING_DELAY 20
192 #define BCM2048_DEFAULT_REGION 0x02
193 #define BCM2048_DEFAULT_MUTE 0x01
194 #define BCM2048_DEFAULT_RSSI_THRESHOLD 0x64
195 #define BCM2048_DEFAULT_RDS_WLINE 0x7E
197 #define BCM2048_FM_SEARCH_INACTIVE 0x00
198 #define BCM2048_FM_PRE_SET_MODE 0x01
199 #define BCM2048_FM_AUTO_SEARCH_MODE 0x02
200 #define BCM2048_FM_AF_JUMP_MODE 0x03
202 #define BCM2048_FREQUENCY_BASE 64000
204 #define BCM2048_POWER_ON 0x01
205 #define BCM2048_POWER_OFF 0x00
207 #define BCM2048_ITEM_ENABLED 0x01
208 #define BCM2048_SEARCH_DIRECTION_UP 0x01
210 #define BCM2048_DE_EMPHASIS_75us 75
211 #define BCM2048_DE_EMPHASIS_50us 50
213 #define BCM2048_SCAN_FAIL 0x00
214 #define BCM2048_SCAN_OK 0x01
216 #define BCM2048_FREQ_ERROR_FLOOR -20
217 #define BCM2048_FREQ_ERROR_ROOF 20
219 /* -60 dB is reported as full signal strength */
220 #define BCM2048_RSSI_LEVEL_BASE -60
221 #define BCM2048_RSSI_LEVEL_ROOF -100
222 #define BCM2048_RSSI_LEVEL_ROOF_NEG 100
223 #define BCM2048_SIGNAL_MULTIPLIER (0xFFFF / \
224 (BCM2048_RSSI_LEVEL_ROOF_NEG + \
225 BCM2048_RSSI_LEVEL_BASE))
227 #define BCM2048_RDS_FIFO_DUPLE_SIZE 0x03
228 #define BCM2048_RDS_CRC_MASK 0x0F
229 #define BCM2048_RDS_CRC_NONE 0x00
230 #define BCM2048_RDS_CRC_MAX_2BITS 0x04
231 #define BCM2048_RDS_CRC_LEAST_2BITS 0x08
232 #define BCM2048_RDS_CRC_UNRECOVARABLE 0x0C
234 #define BCM2048_RDS_BLOCK_MASK 0xF0
235 #define BCM2048_RDS_BLOCK_A 0x00
236 #define BCM2048_RDS_BLOCK_B 0x10
237 #define BCM2048_RDS_BLOCK_C 0x20
238 #define BCM2048_RDS_BLOCK_D 0x30
239 #define BCM2048_RDS_BLOCK_C_SCORED 0x40
240 #define BCM2048_RDS_BLOCK_E 0x60
242 #define BCM2048_RDS_RT 0x20
243 #define BCM2048_RDS_PS 0x00
245 #define BCM2048_RDS_GROUP_AB_MASK 0x08
246 #define BCM2048_RDS_GROUP_A 0x00
247 #define BCM2048_RDS_GROUP_B 0x08
249 #define BCM2048_RDS_RT_AB_MASK 0x10
250 #define BCM2048_RDS_RT_A 0x00
251 #define BCM2048_RDS_RT_B 0x10
252 #define BCM2048_RDS_RT_INDEX 0x0F
254 #define BCM2048_RDS_PS_INDEX 0x03
258 #define BCM2048_MAX_RDS_RT (64 + 1)
259 u8 rds_rt[BCM2048_MAX_RDS_RT];
262 #define BCM2048_MAX_RDS_PS (8 + 1)
263 u8 rds_ps[BCM2048_MAX_RDS_PS];
266 #define BCM2048_MAX_RDS_RADIO_TEXT 255
267 u8 radio_text[BCM2048_MAX_RDS_RADIO_TEXT + 3];
272 u32 bottom_frequency;
279 struct bcm2048_device {
280 struct i2c_client *client;
281 struct video_device videodev;
282 struct work_struct work;
283 struct completion compl;
285 struct bcm2048_platform_data *platform_data;
286 struct rds_info rds_info;
287 struct region_info region_info;
289 u8 cache_fm_rds_system;
291 u8 cache_fm_audio_ctrl0;
292 u8 cache_fm_search_ctrl0;
299 /* for rds data device read */
300 wait_queue_head_t read_queue;
302 unsigned char rds_data_available;
303 unsigned int rd_index;
306 static int radio_nr = -1; /* radio device minor (-1 ==> auto assign) */
307 module_param(radio_nr, int, 0);
308 MODULE_PARM_DESC(radio_nr,
309 "Minor number for radio device (-1 ==> auto assign)");
311 static const struct region_info region_configs[] = {
314 .channel_spacing = 20,
315 .bottom_frequency = 87500,
316 .top_frequency = 108000,
322 .channel_spacing = 20,
323 .bottom_frequency = 87500,
324 .top_frequency = 108000,
330 .channel_spacing = 10,
331 .bottom_frequency = 87500,
332 .top_frequency = 108000,
338 .channel_spacing = 10,
339 .bottom_frequency = 76000,
340 .top_frequency = 90000,
347 * I2C Interface read / write
349 static int bcm2048_send_command(struct bcm2048_device *bdev, unsigned int reg,
352 struct i2c_client *client = bdev->client;
355 if (!bdev->power_state) {
356 dev_err(&bdev->client->dev, "bcm2048: chip not powered!\n");
360 data[0] = reg & 0xff;
361 data[1] = value & 0xff;
363 if (i2c_master_send(client, data, 2) == 2)
366 dev_err(&bdev->client->dev, "BCM I2C error!\n");
367 dev_err(&bdev->client->dev, "Is Bluetooth up and running?\n");
371 static int bcm2048_recv_command(struct bcm2048_device *bdev, unsigned int reg,
374 struct i2c_client *client = bdev->client;
376 if (!bdev->power_state) {
377 dev_err(&bdev->client->dev, "bcm2048: chip not powered!\n");
381 value[0] = i2c_smbus_read_byte_data(client, reg & 0xff);
386 static int bcm2048_recv_duples(struct bcm2048_device *bdev, unsigned int reg,
387 u8 *value, u8 duples)
389 struct i2c_client *client = bdev->client;
390 struct i2c_adapter *adap = client->adapter;
391 struct i2c_msg msg[2];
394 if (!bdev->power_state) {
395 dev_err(&bdev->client->dev, "bcm2048: chip not powered!\n");
401 msg[0].addr = client->addr;
402 msg[0].flags = client->flags & I2C_M_TEN;
406 msg[1].addr = client->addr;
407 msg[1].flags = client->flags & I2C_M_TEN;
408 msg[1].flags |= I2C_M_RD;
412 return i2c_transfer(adap, msg, 2);
416 * BCM2048 - I2C register programming helpers
418 static int bcm2048_set_power_state(struct bcm2048_device *bdev, u8 power)
422 mutex_lock(&bdev->mutex);
425 bdev->power_state = BCM2048_POWER_ON;
426 bdev->cache_fm_rds_system |= BCM2048_FM_ON;
428 bdev->cache_fm_rds_system &= ~BCM2048_FM_ON;
432 * Warning! FM cannot be turned off because then
433 * the I2C communications get ruined!
434 * Comment off the "if (power)" when the chip works!
437 err = bcm2048_send_command(bdev, BCM2048_I2C_FM_RDS_SYSTEM,
438 bdev->cache_fm_rds_system);
439 msleep(BCM2048_DEFAULT_POWERING_DELAY);
442 bdev->power_state = BCM2048_POWER_OFF;
444 mutex_unlock(&bdev->mutex);
448 static int bcm2048_get_power_state(struct bcm2048_device *bdev)
453 mutex_lock(&bdev->mutex);
455 err = bcm2048_recv_command(bdev, BCM2048_I2C_FM_RDS_SYSTEM, &value);
457 mutex_unlock(&bdev->mutex);
459 if (!err && (value & BCM2048_FM_ON))
460 return BCM2048_POWER_ON;
465 static int bcm2048_set_rds_no_lock(struct bcm2048_device *bdev, u8 rds_on)
470 bdev->cache_fm_rds_system &= ~BCM2048_RDS_ON;
473 bdev->cache_fm_rds_system |= BCM2048_RDS_ON;
474 bdev->rds_state = BCM2048_RDS_ON;
475 flags = BCM2048_RDS_FLAG_FIFO_WLINE;
476 err = bcm2048_send_command(bdev, BCM2048_I2C_FM_RDS_MASK1,
481 err = bcm2048_send_command(bdev, BCM2048_I2C_FM_RDS_MASK1,
483 memset(&bdev->rds_info, 0, sizeof(bdev->rds_info));
486 return bcm2048_send_command(bdev, BCM2048_I2C_FM_RDS_SYSTEM,
487 bdev->cache_fm_rds_system);
490 static int bcm2048_get_rds_no_lock(struct bcm2048_device *bdev)
495 err = bcm2048_recv_command(bdev, BCM2048_I2C_FM_RDS_SYSTEM, &value);
497 if (!err && (value & BCM2048_RDS_ON))
498 return BCM2048_ITEM_ENABLED;
503 static int bcm2048_set_rds(struct bcm2048_device *bdev, u8 rds_on)
507 mutex_lock(&bdev->mutex);
509 err = bcm2048_set_rds_no_lock(bdev, rds_on);
511 mutex_unlock(&bdev->mutex);
515 static int bcm2048_get_rds(struct bcm2048_device *bdev)
519 mutex_lock(&bdev->mutex);
521 err = bcm2048_get_rds_no_lock(bdev);
523 mutex_unlock(&bdev->mutex);
527 static int bcm2048_get_rds_pi(struct bcm2048_device *bdev)
529 return bdev->rds_info.rds_pi;
532 static int bcm2048_set_fm_automatic_stereo_mono(struct bcm2048_device *bdev,
537 mutex_lock(&bdev->mutex);
539 bdev->cache_fm_ctrl &= ~BCM2048_STEREO_MONO_AUTO_SELECT;
542 bdev->cache_fm_ctrl |= BCM2048_STEREO_MONO_AUTO_SELECT;
544 err = bcm2048_send_command(bdev, BCM2048_I2C_FM_CTRL,
545 bdev->cache_fm_ctrl);
547 mutex_unlock(&bdev->mutex);
551 static int bcm2048_set_fm_hi_lo_injection(struct bcm2048_device *bdev,
556 mutex_lock(&bdev->mutex);
558 bdev->cache_fm_ctrl &= ~BCM2048_HI_LO_INJECTION;
561 bdev->cache_fm_ctrl |= BCM2048_HI_LO_INJECTION;
563 err = bcm2048_send_command(bdev, BCM2048_I2C_FM_CTRL,
564 bdev->cache_fm_ctrl);
566 mutex_unlock(&bdev->mutex);
570 static int bcm2048_get_fm_hi_lo_injection(struct bcm2048_device *bdev)
575 mutex_lock(&bdev->mutex);
577 err = bcm2048_recv_command(bdev, BCM2048_I2C_FM_CTRL, &value);
579 mutex_unlock(&bdev->mutex);
581 if (!err && (value & BCM2048_HI_LO_INJECTION))
582 return BCM2048_ITEM_ENABLED;
587 static int bcm2048_set_fm_frequency(struct bcm2048_device *bdev, u32 frequency)
591 if (frequency < bdev->region_info.bottom_frequency ||
592 frequency > bdev->region_info.top_frequency)
595 frequency -= BCM2048_FREQUENCY_BASE;
597 mutex_lock(&bdev->mutex);
599 err = bcm2048_send_command(bdev, BCM2048_I2C_FM_FREQ0, lsb(frequency));
600 err |= bcm2048_send_command(bdev, BCM2048_I2C_FM_FREQ1,
604 bdev->frequency = frequency;
606 mutex_unlock(&bdev->mutex);
610 static int bcm2048_get_fm_frequency(struct bcm2048_device *bdev)
615 mutex_lock(&bdev->mutex);
617 err = bcm2048_recv_command(bdev, BCM2048_I2C_FM_FREQ0, &lsb);
618 err |= bcm2048_recv_command(bdev, BCM2048_I2C_FM_FREQ1, &msb);
620 mutex_unlock(&bdev->mutex);
625 err = compose_u16(msb, lsb);
626 err += BCM2048_FREQUENCY_BASE;
631 static int bcm2048_set_fm_af_frequency(struct bcm2048_device *bdev,
636 if (frequency < bdev->region_info.bottom_frequency ||
637 frequency > bdev->region_info.top_frequency)
640 frequency -= BCM2048_FREQUENCY_BASE;
642 mutex_lock(&bdev->mutex);
644 err = bcm2048_send_command(bdev, BCM2048_I2C_FM_AF_FREQ0,
646 err |= bcm2048_send_command(bdev, BCM2048_I2C_FM_AF_FREQ1,
649 bdev->frequency = frequency;
651 mutex_unlock(&bdev->mutex);
655 static int bcm2048_get_fm_af_frequency(struct bcm2048_device *bdev)
660 mutex_lock(&bdev->mutex);
662 err = bcm2048_recv_command(bdev, BCM2048_I2C_FM_AF_FREQ0, &lsb);
663 err |= bcm2048_recv_command(bdev, BCM2048_I2C_FM_AF_FREQ1, &msb);
665 mutex_unlock(&bdev->mutex);
670 err = compose_u16(msb, lsb);
671 err += BCM2048_FREQUENCY_BASE;
676 static int bcm2048_set_fm_deemphasis(struct bcm2048_device *bdev, int d)
681 if (d == BCM2048_DE_EMPHASIS_75us)
682 deemphasis = BCM2048_DE_EMPHASIS_SELECT;
686 mutex_lock(&bdev->mutex);
688 bdev->cache_fm_audio_ctrl0 &= ~BCM2048_DE_EMPHASIS_SELECT;
689 bdev->cache_fm_audio_ctrl0 |= deemphasis;
691 err = bcm2048_send_command(bdev, BCM2048_I2C_FM_AUDIO_CTRL0,
692 bdev->cache_fm_audio_ctrl0);
695 bdev->region_info.deemphasis = d;
697 mutex_unlock(&bdev->mutex);
702 static int bcm2048_get_fm_deemphasis(struct bcm2048_device *bdev)
707 mutex_lock(&bdev->mutex);
709 err = bcm2048_recv_command(bdev, BCM2048_I2C_FM_AUDIO_CTRL0, &value);
711 mutex_unlock(&bdev->mutex);
714 if (value & BCM2048_DE_EMPHASIS_SELECT)
715 return BCM2048_DE_EMPHASIS_75us;
717 return BCM2048_DE_EMPHASIS_50us;
723 static int bcm2048_set_region(struct bcm2048_device *bdev, u8 region)
726 u32 new_frequency = 0;
728 if (region >= ARRAY_SIZE(region_configs))
731 mutex_lock(&bdev->mutex);
732 bdev->region_info = region_configs[region];
734 if (region_configs[region].bottom_frequency < 87500)
735 bdev->cache_fm_ctrl |= BCM2048_BAND_SELECT;
737 bdev->cache_fm_ctrl &= ~BCM2048_BAND_SELECT;
739 err = bcm2048_send_command(bdev, BCM2048_I2C_FM_CTRL,
740 bdev->cache_fm_ctrl);
742 mutex_unlock(&bdev->mutex);
745 mutex_unlock(&bdev->mutex);
747 if (bdev->frequency < region_configs[region].bottom_frequency ||
748 bdev->frequency > region_configs[region].top_frequency)
749 new_frequency = region_configs[region].bottom_frequency;
751 if (new_frequency > 0) {
752 err = bcm2048_set_fm_frequency(bdev, new_frequency);
758 err = bcm2048_set_fm_deemphasis(bdev,
759 region_configs[region].deemphasis);
765 static int bcm2048_get_region(struct bcm2048_device *bdev)
769 mutex_lock(&bdev->mutex);
770 err = bdev->region_info.region;
771 mutex_unlock(&bdev->mutex);
776 static int bcm2048_set_mute(struct bcm2048_device *bdev, u16 mute)
780 mutex_lock(&bdev->mutex);
782 bdev->cache_fm_audio_ctrl0 &= ~(BCM2048_RF_MUTE | BCM2048_MANUAL_MUTE);
785 bdev->cache_fm_audio_ctrl0 |= (BCM2048_RF_MUTE |
786 BCM2048_MANUAL_MUTE);
788 err = bcm2048_send_command(bdev, BCM2048_I2C_FM_AUDIO_CTRL0,
789 bdev->cache_fm_audio_ctrl0);
792 bdev->mute_state = mute;
794 mutex_unlock(&bdev->mutex);
798 static int bcm2048_get_mute(struct bcm2048_device *bdev)
803 mutex_lock(&bdev->mutex);
805 if (bdev->power_state) {
806 err = bcm2048_recv_command(bdev, BCM2048_I2C_FM_AUDIO_CTRL0,
809 err = value & (BCM2048_RF_MUTE | BCM2048_MANUAL_MUTE);
811 err = bdev->mute_state;
814 mutex_unlock(&bdev->mutex);
818 static int bcm2048_set_audio_route(struct bcm2048_device *bdev, u8 route)
822 mutex_lock(&bdev->mutex);
824 route &= (BCM2048_AUDIO_ROUTE_DAC | BCM2048_AUDIO_ROUTE_I2S);
825 bdev->cache_fm_audio_ctrl0 &= ~(BCM2048_AUDIO_ROUTE_DAC |
826 BCM2048_AUDIO_ROUTE_I2S);
827 bdev->cache_fm_audio_ctrl0 |= route;
829 err = bcm2048_send_command(bdev, BCM2048_I2C_FM_AUDIO_CTRL0,
830 bdev->cache_fm_audio_ctrl0);
832 mutex_unlock(&bdev->mutex);
836 static int bcm2048_get_audio_route(struct bcm2048_device *bdev)
841 mutex_lock(&bdev->mutex);
843 err = bcm2048_recv_command(bdev, BCM2048_I2C_FM_AUDIO_CTRL0, &value);
845 mutex_unlock(&bdev->mutex);
848 return value & (BCM2048_AUDIO_ROUTE_DAC |
849 BCM2048_AUDIO_ROUTE_I2S);
854 static int bcm2048_set_dac_output(struct bcm2048_device *bdev, u8 channels)
858 mutex_lock(&bdev->mutex);
860 bdev->cache_fm_audio_ctrl0 &= ~(BCM2048_DAC_OUTPUT_LEFT |
861 BCM2048_DAC_OUTPUT_RIGHT);
862 bdev->cache_fm_audio_ctrl0 |= channels;
864 err = bcm2048_send_command(bdev, BCM2048_I2C_FM_AUDIO_CTRL0,
865 bdev->cache_fm_audio_ctrl0);
867 mutex_unlock(&bdev->mutex);
871 static int bcm2048_get_dac_output(struct bcm2048_device *bdev)
876 mutex_lock(&bdev->mutex);
878 err = bcm2048_recv_command(bdev, BCM2048_I2C_FM_AUDIO_CTRL0, &value);
880 mutex_unlock(&bdev->mutex);
883 return value & (BCM2048_DAC_OUTPUT_LEFT |
884 BCM2048_DAC_OUTPUT_RIGHT);
889 static int bcm2048_set_fm_search_rssi_threshold(struct bcm2048_device *bdev,
894 mutex_lock(&bdev->mutex);
896 threshold &= BCM2048_SEARCH_RSSI_THRESHOLD;
897 bdev->cache_fm_search_ctrl0 &= ~BCM2048_SEARCH_RSSI_THRESHOLD;
898 bdev->cache_fm_search_ctrl0 |= threshold;
900 err = bcm2048_send_command(bdev, BCM2048_I2C_FM_SEARCH_CTRL0,
901 bdev->cache_fm_search_ctrl0);
903 mutex_unlock(&bdev->mutex);
907 static int bcm2048_get_fm_search_rssi_threshold(struct bcm2048_device *bdev)
912 mutex_lock(&bdev->mutex);
914 err = bcm2048_recv_command(bdev, BCM2048_I2C_FM_SEARCH_CTRL0, &value);
916 mutex_unlock(&bdev->mutex);
919 return value & BCM2048_SEARCH_RSSI_THRESHOLD;
924 static int bcm2048_set_fm_search_mode_direction(struct bcm2048_device *bdev,
929 mutex_lock(&bdev->mutex);
931 bdev->cache_fm_search_ctrl0 &= ~BCM2048_SEARCH_DIRECTION;
934 bdev->cache_fm_search_ctrl0 |= BCM2048_SEARCH_DIRECTION;
936 err = bcm2048_send_command(bdev, BCM2048_I2C_FM_SEARCH_CTRL0,
937 bdev->cache_fm_search_ctrl0);
939 mutex_unlock(&bdev->mutex);
943 static int bcm2048_get_fm_search_mode_direction(struct bcm2048_device *bdev)
948 mutex_lock(&bdev->mutex);
950 err = bcm2048_recv_command(bdev, BCM2048_I2C_FM_SEARCH_CTRL0, &value);
952 mutex_unlock(&bdev->mutex);
954 if (!err && (value & BCM2048_SEARCH_DIRECTION))
955 return BCM2048_SEARCH_DIRECTION_UP;
960 static int bcm2048_set_fm_search_tune_mode(struct bcm2048_device *bdev,
963 int err, timeout, restart_rds = 0;
966 value = mode & BCM2048_FM_AUTO_SEARCH;
968 flags = BCM2048_FM_FLAG_SEARCH_TUNE_FINISHED |
969 BCM2048_FM_FLAG_SEARCH_TUNE_FAIL;
971 mutex_lock(&bdev->mutex);
974 * If RDS is enabled, and frequency is changed, RDS quits working.
975 * Thus, always restart RDS if it's enabled. Moreover, RDS must
976 * not be enabled while changing the frequency because it can
977 * provide a race to the mutex from the workqueue handler if RDS
978 * IRQ occurs while waiting for frequency changed IRQ.
980 if (bcm2048_get_rds_no_lock(bdev)) {
981 err = bcm2048_set_rds_no_lock(bdev, 0);
987 err = bcm2048_send_command(bdev, BCM2048_I2C_FM_RDS_MASK0, flags);
992 bcm2048_send_command(bdev, BCM2048_I2C_FM_SEARCH_TUNE_MODE, value);
994 if (mode != BCM2048_FM_AUTO_SEARCH_MODE)
995 timeout = BCM2048_DEFAULT_TIMEOUT;
997 timeout = BCM2048_AUTO_SEARCH_TIMEOUT;
999 if (!wait_for_completion_timeout(&bdev->compl,
1000 msecs_to_jiffies(timeout)))
1001 dev_err(&bdev->client->dev, "IRQ timeout.\n");
1004 if (!bdev->scan_state)
1009 err |= bcm2048_set_rds_no_lock(bdev, 1);
1011 mutex_unlock(&bdev->mutex);
1016 static int bcm2048_get_fm_search_tune_mode(struct bcm2048_device *bdev)
1021 mutex_lock(&bdev->mutex);
1023 err = bcm2048_recv_command(bdev, BCM2048_I2C_FM_SEARCH_TUNE_MODE,
1026 mutex_unlock(&bdev->mutex);
1029 return value & BCM2048_FM_AUTO_SEARCH;
1034 static int bcm2048_set_rds_b_block_mask(struct bcm2048_device *bdev, u16 mask)
1038 mutex_lock(&bdev->mutex);
1040 err = bcm2048_send_command(bdev, BCM2048_I2C_RDS_BLKB_MASK0,
1042 err |= bcm2048_send_command(bdev, BCM2048_I2C_RDS_BLKB_MASK1,
1045 mutex_unlock(&bdev->mutex);
1049 static int bcm2048_get_rds_b_block_mask(struct bcm2048_device *bdev)
1052 u8 lsb = 0, msb = 0;
1054 mutex_lock(&bdev->mutex);
1056 err = bcm2048_recv_command(bdev, BCM2048_I2C_RDS_BLKB_MASK0, &lsb);
1057 err |= bcm2048_recv_command(bdev, BCM2048_I2C_RDS_BLKB_MASK1, &msb);
1059 mutex_unlock(&bdev->mutex);
1062 return compose_u16(msb, lsb);
1067 static int bcm2048_set_rds_b_block_match(struct bcm2048_device *bdev,
1072 mutex_lock(&bdev->mutex);
1074 err = bcm2048_send_command(bdev, BCM2048_I2C_RDS_BLKB_MATCH0,
1076 err |= bcm2048_send_command(bdev, BCM2048_I2C_RDS_BLKB_MATCH1,
1079 mutex_unlock(&bdev->mutex);
1083 static int bcm2048_get_rds_b_block_match(struct bcm2048_device *bdev)
1086 u8 lsb = 0, msb = 0;
1088 mutex_lock(&bdev->mutex);
1090 err = bcm2048_recv_command(bdev, BCM2048_I2C_RDS_BLKB_MATCH0, &lsb);
1091 err |= bcm2048_recv_command(bdev, BCM2048_I2C_RDS_BLKB_MATCH1, &msb);
1093 mutex_unlock(&bdev->mutex);
1096 return compose_u16(msb, lsb);
1101 static int bcm2048_set_rds_pi_mask(struct bcm2048_device *bdev, u16 mask)
1105 mutex_lock(&bdev->mutex);
1107 err = bcm2048_send_command(bdev, BCM2048_I2C_RDS_PI_MASK0, lsb(mask));
1108 err |= bcm2048_send_command(bdev, BCM2048_I2C_RDS_PI_MASK1, msb(mask));
1110 mutex_unlock(&bdev->mutex);
1114 static int bcm2048_get_rds_pi_mask(struct bcm2048_device *bdev)
1117 u8 lsb = 0, msb = 0;
1119 mutex_lock(&bdev->mutex);
1121 err = bcm2048_recv_command(bdev, BCM2048_I2C_RDS_PI_MASK0, &lsb);
1122 err |= bcm2048_recv_command(bdev, BCM2048_I2C_RDS_PI_MASK1, &msb);
1124 mutex_unlock(&bdev->mutex);
1127 return compose_u16(msb, lsb);
1132 static int bcm2048_set_rds_pi_match(struct bcm2048_device *bdev, u16 match)
1136 mutex_lock(&bdev->mutex);
1138 err = bcm2048_send_command(bdev, BCM2048_I2C_RDS_PI_MATCH0,
1140 err |= bcm2048_send_command(bdev, BCM2048_I2C_RDS_PI_MATCH1,
1143 mutex_unlock(&bdev->mutex);
1147 static int bcm2048_get_rds_pi_match(struct bcm2048_device *bdev)
1150 u8 lsb = 0, msb = 0;
1152 mutex_lock(&bdev->mutex);
1154 err = bcm2048_recv_command(bdev, BCM2048_I2C_RDS_PI_MATCH0, &lsb);
1155 err |= bcm2048_recv_command(bdev, BCM2048_I2C_RDS_PI_MATCH1, &msb);
1157 mutex_unlock(&bdev->mutex);
1160 return compose_u16(msb, lsb);
1165 static int bcm2048_set_fm_rds_mask(struct bcm2048_device *bdev, u16 mask)
1169 mutex_lock(&bdev->mutex);
1171 err = bcm2048_send_command(bdev, BCM2048_I2C_FM_RDS_MASK0, lsb(mask));
1172 err |= bcm2048_send_command(bdev, BCM2048_I2C_FM_RDS_MASK1, msb(mask));
1174 mutex_unlock(&bdev->mutex);
1178 static int bcm2048_get_fm_rds_mask(struct bcm2048_device *bdev)
1181 u8 value0 = 0, value1 = 0;
1183 mutex_lock(&bdev->mutex);
1185 err = bcm2048_recv_command(bdev, BCM2048_I2C_FM_RDS_MASK0, &value0);
1186 err |= bcm2048_recv_command(bdev, BCM2048_I2C_FM_RDS_MASK1, &value1);
1188 mutex_unlock(&bdev->mutex);
1191 return compose_u16(value1, value0);
1196 static int bcm2048_get_fm_rds_flags(struct bcm2048_device *bdev)
1199 u8 value0 = 0, value1 = 0;
1201 mutex_lock(&bdev->mutex);
1203 err = bcm2048_recv_command(bdev, BCM2048_I2C_FM_RDS_FLAG0, &value0);
1204 err |= bcm2048_recv_command(bdev, BCM2048_I2C_FM_RDS_FLAG1, &value1);
1206 mutex_unlock(&bdev->mutex);
1209 return compose_u16(value1, value0);
1214 static int bcm2048_get_region_bottom_frequency(struct bcm2048_device *bdev)
1216 return bdev->region_info.bottom_frequency;
1219 static int bcm2048_get_region_top_frequency(struct bcm2048_device *bdev)
1221 return bdev->region_info.top_frequency;
1224 static int bcm2048_set_fm_best_tune_mode(struct bcm2048_device *bdev, u8 mode)
1229 mutex_lock(&bdev->mutex);
1231 /* Perform read as the manual indicates */
1232 err = bcm2048_recv_command(bdev, BCM2048_I2C_FM_BEST_TUNE_MODE,
1234 value &= ~BCM2048_BEST_TUNE_MODE;
1237 value |= BCM2048_BEST_TUNE_MODE;
1238 err |= bcm2048_send_command(bdev, BCM2048_I2C_FM_BEST_TUNE_MODE,
1241 mutex_unlock(&bdev->mutex);
1245 static int bcm2048_get_fm_best_tune_mode(struct bcm2048_device *bdev)
1250 mutex_lock(&bdev->mutex);
1252 err = bcm2048_recv_command(bdev, BCM2048_I2C_FM_BEST_TUNE_MODE,
1255 mutex_unlock(&bdev->mutex);
1257 if (!err && (value & BCM2048_BEST_TUNE_MODE))
1258 return BCM2048_ITEM_ENABLED;
1263 static int bcm2048_get_fm_carrier_error(struct bcm2048_device *bdev)
1268 mutex_lock(&bdev->mutex);
1269 err = bcm2048_recv_command(bdev, BCM2048_I2C_FM_CARRIER, &value);
1270 mutex_unlock(&bdev->mutex);
1278 static int bcm2048_get_fm_rssi(struct bcm2048_device *bdev)
1283 mutex_lock(&bdev->mutex);
1284 err = bcm2048_recv_command(bdev, BCM2048_I2C_FM_RSSI, &value);
1285 mutex_unlock(&bdev->mutex);
1293 static int bcm2048_set_rds_wline(struct bcm2048_device *bdev, u8 wline)
1297 mutex_lock(&bdev->mutex);
1299 err = bcm2048_send_command(bdev, BCM2048_I2C_RDS_WLINE, wline);
1302 bdev->fifo_size = wline;
1304 mutex_unlock(&bdev->mutex);
1308 static int bcm2048_get_rds_wline(struct bcm2048_device *bdev)
1313 mutex_lock(&bdev->mutex);
1315 err = bcm2048_recv_command(bdev, BCM2048_I2C_RDS_WLINE, &value);
1317 mutex_unlock(&bdev->mutex);
1320 bdev->fifo_size = value;
1327 static int bcm2048_checkrev(struct bcm2048_device *bdev)
1332 mutex_lock(&bdev->mutex);
1334 err = bcm2048_recv_command(bdev, BCM2048_I2C_FM_RDS_REV, &version);
1336 mutex_unlock(&bdev->mutex);
1339 dev_info(&bdev->client->dev, "BCM2048 Version 0x%x\n",
1347 static int bcm2048_get_rds_rt(struct bcm2048_device *bdev, char *data)
1349 int err = 0, i, j = 0, ce = 0, cr = 0;
1350 char data_buffer[BCM2048_MAX_RDS_RT + 1];
1352 mutex_lock(&bdev->mutex);
1354 if (!bdev->rds_info.text_len) {
1359 for (i = 0; i < BCM2048_MAX_RDS_RT; i++) {
1360 if (bdev->rds_info.rds_rt[i]) {
1362 /* Skip the carriage return */
1363 if (bdev->rds_info.rds_rt[i] != 0x0d) {
1364 data_buffer[j++] = bdev->rds_info.rds_rt[i];
1372 if (j <= BCM2048_MAX_RDS_RT)
1375 for (i = 0; i < BCM2048_MAX_RDS_RT; i++) {
1376 if (!bdev->rds_info.rds_rt[i]) {
1377 if (cr && (i < cr)) {
1382 if (cr && (i >= cr))
1390 memcpy(data, data_buffer, sizeof(data_buffer));
1393 mutex_unlock(&bdev->mutex);
1397 static int bcm2048_get_rds_ps(struct bcm2048_device *bdev, char *data)
1399 int err = 0, i, j = 0;
1400 char data_buffer[BCM2048_MAX_RDS_PS + 1];
1402 mutex_lock(&bdev->mutex);
1404 if (!bdev->rds_info.text_len) {
1409 for (i = 0; i < BCM2048_MAX_RDS_PS; i++) {
1410 if (bdev->rds_info.rds_ps[i]) {
1411 data_buffer[j++] = bdev->rds_info.rds_ps[i];
1413 if (i < (BCM2048_MAX_RDS_PS - 1)) {
1420 if (j <= BCM2048_MAX_RDS_PS)
1423 memcpy(data, data_buffer, sizeof(data_buffer));
1426 mutex_unlock(&bdev->mutex);
1430 static void bcm2048_parse_rds_pi(struct bcm2048_device *bdev)
1435 for (i = 0; i < bdev->fifo_size; i += BCM2048_RDS_FIFO_DUPLE_SIZE) {
1436 /* Block A match, only data without crc errors taken */
1437 if (bdev->rds_info.radio_text[i] == BCM2048_RDS_BLOCK_A) {
1438 pi = (bdev->rds_info.radio_text[i + 1] << 8) +
1439 bdev->rds_info.radio_text[i + 2];
1441 if (!bdev->rds_info.rds_pi) {
1442 bdev->rds_info.rds_pi = pi;
1445 if (pi != bdev->rds_info.rds_pi) {
1448 bdev->rds_info.rds_pi = pi;
1458 static int bcm2048_rds_block_crc(struct bcm2048_device *bdev, int i)
1460 return bdev->rds_info.radio_text[i] & BCM2048_RDS_CRC_MASK;
1463 static void bcm2048_parse_rds_rt_block(struct bcm2048_device *bdev, int i,
1466 /* Good data will overwrite poor data */
1468 if (!bdev->rds_info.rds_rt[index])
1469 bdev->rds_info.rds_rt[index] =
1470 bdev->rds_info.radio_text[i + 1];
1471 if (!bdev->rds_info.rds_rt[index + 1])
1472 bdev->rds_info.rds_rt[index + 1] =
1473 bdev->rds_info.radio_text[i + 2];
1475 bdev->rds_info.rds_rt[index] =
1476 bdev->rds_info.radio_text[i + 1];
1477 bdev->rds_info.rds_rt[index + 1] =
1478 bdev->rds_info.radio_text[i + 2];
1482 static int bcm2048_parse_rt_match_b(struct bcm2048_device *bdev, int i)
1484 int crc, rt_id, rt_group_b, rt_ab, index = 0;
1486 crc = bcm2048_rds_block_crc(bdev, i);
1488 if (crc == BCM2048_RDS_CRC_UNRECOVARABLE)
1491 if ((bdev->rds_info.radio_text[i] & BCM2048_RDS_BLOCK_MASK) ==
1492 BCM2048_RDS_BLOCK_B) {
1493 rt_id = bdev->rds_info.radio_text[i + 1] &
1494 BCM2048_RDS_BLOCK_MASK;
1495 rt_group_b = bdev->rds_info.radio_text[i + 1] &
1496 BCM2048_RDS_GROUP_AB_MASK;
1497 rt_ab = bdev->rds_info.radio_text[i + 2] &
1498 BCM2048_RDS_RT_AB_MASK;
1500 if (rt_group_b != bdev->rds_info.rds_rt_group_b) {
1501 memset(bdev->rds_info.rds_rt, 0,
1502 sizeof(bdev->rds_info.rds_rt));
1503 bdev->rds_info.rds_rt_group_b = rt_group_b;
1506 if (rt_id == BCM2048_RDS_RT) {
1507 /* A to B or (vice versa), means: clear screen */
1508 if (rt_ab != bdev->rds_info.rds_rt_ab) {
1509 memset(bdev->rds_info.rds_rt, 0,
1510 sizeof(bdev->rds_info.rds_rt));
1511 bdev->rds_info.rds_rt_ab = rt_ab;
1514 index = bdev->rds_info.radio_text[i + 2] &
1515 BCM2048_RDS_RT_INDEX;
1517 if (bdev->rds_info.rds_rt_group_b)
1529 static int bcm2048_parse_rt_match_c(struct bcm2048_device *bdev, int i,
1534 crc = bcm2048_rds_block_crc(bdev, i);
1536 if (crc == BCM2048_RDS_CRC_UNRECOVARABLE)
1539 BUG_ON((index+2) >= BCM2048_MAX_RDS_RT);
1541 if ((bdev->rds_info.radio_text[i] & BCM2048_RDS_BLOCK_MASK) ==
1542 BCM2048_RDS_BLOCK_C) {
1543 if (bdev->rds_info.rds_rt_group_b)
1545 bcm2048_parse_rds_rt_block(bdev, i, index, crc);
1552 static void bcm2048_parse_rt_match_d(struct bcm2048_device *bdev, int i,
1557 crc = bcm2048_rds_block_crc(bdev, i);
1559 if (crc == BCM2048_RDS_CRC_UNRECOVARABLE)
1562 BUG_ON((index+4) >= BCM2048_MAX_RDS_RT);
1564 if ((bdev->rds_info.radio_text[i] & BCM2048_RDS_BLOCK_MASK) ==
1565 BCM2048_RDS_BLOCK_D)
1566 bcm2048_parse_rds_rt_block(bdev, i, index + 2, crc);
1569 static void bcm2048_parse_rds_rt(struct bcm2048_device *bdev)
1571 int i, index = 0, crc, match_b = 0, match_c = 0, match_d = 0;
1573 for (i = 0; i < bdev->fifo_size; i += BCM2048_RDS_FIFO_DUPLE_SIZE) {
1576 index = bcm2048_parse_rt_match_b(bdev, i);
1577 if (index >= 0 && index <= (BCM2048_MAX_RDS_RT - 5))
1580 } else if (match_c) {
1582 if (bcm2048_parse_rt_match_c(bdev, i, index))
1585 } else if (match_d) {
1587 bcm2048_parse_rt_match_d(bdev, i, index);
1591 /* Skip erroneous blocks due to messed up A block altogether */
1592 if ((bdev->rds_info.radio_text[i] & BCM2048_RDS_BLOCK_MASK) ==
1593 BCM2048_RDS_BLOCK_A) {
1594 crc = bcm2048_rds_block_crc(bdev, i);
1595 if (crc == BCM2048_RDS_CRC_UNRECOVARABLE)
1597 /* Synchronize to a good RDS PI */
1598 if (((bdev->rds_info.radio_text[i + 1] << 8) +
1599 bdev->rds_info.radio_text[i + 2]) ==
1600 bdev->rds_info.rds_pi)
1606 static void bcm2048_parse_rds_ps_block(struct bcm2048_device *bdev, int i,
1609 /* Good data will overwrite poor data */
1611 if (!bdev->rds_info.rds_ps[index])
1612 bdev->rds_info.rds_ps[index] =
1613 bdev->rds_info.radio_text[i + 1];
1614 if (!bdev->rds_info.rds_ps[index + 1])
1615 bdev->rds_info.rds_ps[index + 1] =
1616 bdev->rds_info.radio_text[i + 2];
1618 bdev->rds_info.rds_ps[index] =
1619 bdev->rds_info.radio_text[i + 1];
1620 bdev->rds_info.rds_ps[index + 1] =
1621 bdev->rds_info.radio_text[i + 2];
1625 static int bcm2048_parse_ps_match_c(struct bcm2048_device *bdev, int i,
1630 crc = bcm2048_rds_block_crc(bdev, i);
1632 if (crc == BCM2048_RDS_CRC_UNRECOVARABLE)
1635 if ((bdev->rds_info.radio_text[i] & BCM2048_RDS_BLOCK_MASK) ==
1636 BCM2048_RDS_BLOCK_C)
1642 static void bcm2048_parse_ps_match_d(struct bcm2048_device *bdev, int i,
1647 crc = bcm2048_rds_block_crc(bdev, i);
1649 if (crc == BCM2048_RDS_CRC_UNRECOVARABLE)
1652 if ((bdev->rds_info.radio_text[i] & BCM2048_RDS_BLOCK_MASK) ==
1653 BCM2048_RDS_BLOCK_D)
1654 bcm2048_parse_rds_ps_block(bdev, i, index, crc);
1657 static int bcm2048_parse_ps_match_b(struct bcm2048_device *bdev, int i)
1659 int crc, index, ps_id, ps_group;
1661 crc = bcm2048_rds_block_crc(bdev, i);
1663 if (crc == BCM2048_RDS_CRC_UNRECOVARABLE)
1666 /* Block B Radio PS match */
1667 if ((bdev->rds_info.radio_text[i] & BCM2048_RDS_BLOCK_MASK) ==
1668 BCM2048_RDS_BLOCK_B) {
1669 ps_id = bdev->rds_info.radio_text[i + 1] &
1670 BCM2048_RDS_BLOCK_MASK;
1671 ps_group = bdev->rds_info.radio_text[i + 1] &
1672 BCM2048_RDS_GROUP_AB_MASK;
1675 * Poor RSSI will lead to RDS data corruption
1676 * So using 3 (same) sequential values to justify major changes
1678 if (ps_group != bdev->rds_info.rds_ps_group) {
1679 if (crc == BCM2048_RDS_CRC_NONE) {
1680 bdev->rds_info.rds_ps_group_cnt++;
1681 if (bdev->rds_info.rds_ps_group_cnt > 2) {
1682 bdev->rds_info.rds_ps_group = ps_group;
1683 bdev->rds_info.rds_ps_group_cnt = 0;
1684 dev_err(&bdev->client->dev,
1685 "RDS PS Group change!\n");
1690 bdev->rds_info.rds_ps_group_cnt = 0;
1694 if (ps_id == BCM2048_RDS_PS) {
1695 index = bdev->rds_info.radio_text[i + 2] &
1696 BCM2048_RDS_PS_INDEX;
1705 static void bcm2048_parse_rds_ps(struct bcm2048_device *bdev)
1707 int i, index = 0, crc, match_b = 0, match_c = 0, match_d = 0;
1709 for (i = 0; i < bdev->fifo_size; i += BCM2048_RDS_FIFO_DUPLE_SIZE) {
1712 index = bcm2048_parse_ps_match_b(bdev, i);
1713 if (index >= 0 && index < (BCM2048_MAX_RDS_PS - 1))
1716 } else if (match_c) {
1718 if (bcm2048_parse_ps_match_c(bdev, i, index))
1721 } else if (match_d) {
1723 bcm2048_parse_ps_match_d(bdev, i, index);
1727 /* Skip erroneous blocks due to messed up A block altogether */
1728 if ((bdev->rds_info.radio_text[i] & BCM2048_RDS_BLOCK_MASK) ==
1729 BCM2048_RDS_BLOCK_A) {
1730 crc = bcm2048_rds_block_crc(bdev, i);
1731 if (crc == BCM2048_RDS_CRC_UNRECOVARABLE)
1733 /* Synchronize to a good RDS PI */
1734 if (((bdev->rds_info.radio_text[i + 1] << 8) +
1735 bdev->rds_info.radio_text[i + 2]) ==
1736 bdev->rds_info.rds_pi)
1742 static void bcm2048_rds_fifo_receive(struct bcm2048_device *bdev)
1746 mutex_lock(&bdev->mutex);
1748 err = bcm2048_recv_duples(bdev, BCM2048_I2C_RDS_DATA,
1749 bdev->rds_info.radio_text, bdev->fifo_size);
1751 dev_err(&bdev->client->dev, "RDS Read problem\n");
1752 mutex_unlock(&bdev->mutex);
1756 bdev->rds_info.text_len = bdev->fifo_size;
1758 bcm2048_parse_rds_pi(bdev);
1759 bcm2048_parse_rds_rt(bdev);
1760 bcm2048_parse_rds_ps(bdev);
1762 mutex_unlock(&bdev->mutex);
1764 wake_up_interruptible(&bdev->read_queue);
1767 static int bcm2048_get_rds_data(struct bcm2048_device *bdev, char *data)
1769 int err = 0, i, p = 0;
1772 mutex_lock(&bdev->mutex);
1774 if (!bdev->rds_info.text_len) {
1779 data_buffer = kcalloc(BCM2048_MAX_RDS_RADIO_TEXT, 5, GFP_KERNEL);
1785 for (i = 0; i < bdev->rds_info.text_len; i++) {
1786 p += sprintf(data_buffer + p, "%x ",
1787 bdev->rds_info.radio_text[i]);
1790 memcpy(data, data_buffer, p);
1794 mutex_unlock(&bdev->mutex);
1799 * BCM2048 default initialization sequence
1801 static int bcm2048_init(struct bcm2048_device *bdev)
1805 err = bcm2048_set_power_state(bdev, BCM2048_POWER_ON);
1809 err = bcm2048_set_audio_route(bdev, BCM2048_AUDIO_ROUTE_DAC);
1813 err = bcm2048_set_dac_output(bdev, BCM2048_DAC_OUTPUT_LEFT |
1814 BCM2048_DAC_OUTPUT_RIGHT);
1821 * BCM2048 default deinitialization sequence
1823 static int bcm2048_deinit(struct bcm2048_device *bdev)
1827 err = bcm2048_set_audio_route(bdev, 0);
1831 err = bcm2048_set_dac_output(bdev, 0);
1835 return bcm2048_set_power_state(bdev, BCM2048_POWER_OFF);
1839 * BCM2048 probe sequence
1841 static int bcm2048_probe(struct bcm2048_device *bdev)
1845 err = bcm2048_set_power_state(bdev, BCM2048_POWER_ON);
1849 err = bcm2048_checkrev(bdev);
1853 err = bcm2048_set_mute(bdev, BCM2048_DEFAULT_MUTE);
1857 err = bcm2048_set_region(bdev, BCM2048_DEFAULT_REGION);
1861 err = bcm2048_set_fm_search_rssi_threshold(bdev,
1862 BCM2048_DEFAULT_RSSI_THRESHOLD);
1866 err = bcm2048_set_fm_automatic_stereo_mono(bdev, BCM2048_ITEM_ENABLED);
1870 err = bcm2048_get_rds_wline(bdev);
1871 if (err < BCM2048_DEFAULT_RDS_WLINE)
1872 err = bcm2048_set_rds_wline(bdev, BCM2048_DEFAULT_RDS_WLINE);
1876 err = bcm2048_set_power_state(bdev, BCM2048_POWER_OFF);
1878 init_waitqueue_head(&bdev->read_queue);
1879 bdev->rds_data_available = 0;
1888 * BCM2048 workqueue handler
1890 static void bcm2048_work(struct work_struct *work)
1892 struct bcm2048_device *bdev;
1893 u8 flag_lsb = 0, flag_msb = 0, flags;
1895 bdev = container_of(work, struct bcm2048_device, work);
1896 bcm2048_recv_command(bdev, BCM2048_I2C_FM_RDS_FLAG0, &flag_lsb);
1897 bcm2048_recv_command(bdev, BCM2048_I2C_FM_RDS_FLAG1, &flag_msb);
1899 if (flag_lsb & (BCM2048_FM_FLAG_SEARCH_TUNE_FINISHED |
1900 BCM2048_FM_FLAG_SEARCH_TUNE_FAIL)) {
1901 if (flag_lsb & BCM2048_FM_FLAG_SEARCH_TUNE_FAIL)
1902 bdev->scan_state = BCM2048_SCAN_FAIL;
1904 bdev->scan_state = BCM2048_SCAN_OK;
1906 complete(&bdev->compl);
1909 if (flag_msb & BCM2048_RDS_FLAG_FIFO_WLINE) {
1910 bcm2048_rds_fifo_receive(bdev);
1911 if (bdev->rds_state) {
1912 flags = BCM2048_RDS_FLAG_FIFO_WLINE;
1913 bcm2048_send_command(bdev, BCM2048_I2C_FM_RDS_MASK1,
1916 bdev->rds_data_available = 1;
1917 bdev->rd_index = 0; /* new data, new start */
1922 * BCM2048 interrupt handler
1924 static irqreturn_t bcm2048_handler(int irq, void *dev)
1926 struct bcm2048_device *bdev = dev;
1928 dev_dbg(&bdev->client->dev, "IRQ called, queuing work\n");
1929 if (bdev->power_state)
1930 schedule_work(&bdev->work);
1936 * BCM2048 sysfs interface definitions
1938 #define property_write(prop, type, mask, check) \
1939 static ssize_t bcm2048_##prop##_write(struct device *dev, \
1940 struct device_attribute *attr, \
1944 struct bcm2048_device *bdev = dev_get_drvdata(dev); \
1951 if (sscanf(buf, mask, &value) != 1) \
1957 err = bcm2048_set_##prop(bdev, value); \
1959 return err < 0 ? err : count; \
1962 #define property_read(prop, size, mask) \
1963 static ssize_t bcm2048_##prop##_read(struct device *dev, \
1964 struct device_attribute *attr, \
1967 struct bcm2048_device *bdev = dev_get_drvdata(dev); \
1973 value = bcm2048_get_##prop(bdev); \
1976 value = sprintf(buf, mask "\n", value); \
1981 #define property_signed_read(prop, size, mask) \
1982 static ssize_t bcm2048_##prop##_read(struct device *dev, \
1983 struct device_attribute *attr, \
1986 struct bcm2048_device *bdev = dev_get_drvdata(dev); \
1992 value = bcm2048_get_##prop(bdev); \
1994 return sprintf(buf, mask "\n", value); \
1997 #define DEFINE_SYSFS_PROPERTY(prop, signal, size, mask, check) \
1998 property_write(prop, signal size, mask, check) \
1999 property_read(prop, size, mask)
2001 #define property_str_read(prop, size) \
2002 static ssize_t bcm2048_##prop##_read(struct device *dev, \
2003 struct device_attribute *attr, \
2006 struct bcm2048_device *bdev = dev_get_drvdata(dev); \
2013 out = kzalloc(size + 1, GFP_KERNEL); \
2017 bcm2048_get_##prop(bdev, out); \
2018 count = sprintf(buf, "%s\n", out); \
2025 DEFINE_SYSFS_PROPERTY(power_state, unsigned, int, "%u", 0)
2026 DEFINE_SYSFS_PROPERTY(mute, unsigned, int, "%u", 0)
2027 DEFINE_SYSFS_PROPERTY(audio_route, unsigned, int, "%u", 0)
2028 DEFINE_SYSFS_PROPERTY(dac_output, unsigned, int, "%u", 0)
2030 DEFINE_SYSFS_PROPERTY(fm_hi_lo_injection, unsigned, int, "%u", 0)
2031 DEFINE_SYSFS_PROPERTY(fm_frequency, unsigned, int, "%u", 0)
2032 DEFINE_SYSFS_PROPERTY(fm_af_frequency, unsigned, int, "%u", 0)
2033 DEFINE_SYSFS_PROPERTY(fm_deemphasis, unsigned, int, "%u", 0)
2034 DEFINE_SYSFS_PROPERTY(fm_rds_mask, unsigned, int, "%u", 0)
2035 DEFINE_SYSFS_PROPERTY(fm_best_tune_mode, unsigned, int, "%u", 0)
2036 DEFINE_SYSFS_PROPERTY(fm_search_rssi_threshold, unsigned, int, "%u", 0)
2037 DEFINE_SYSFS_PROPERTY(fm_search_mode_direction, unsigned, int, "%u", 0)
2038 DEFINE_SYSFS_PROPERTY(fm_search_tune_mode, unsigned, int, "%u", value > 3)
2040 DEFINE_SYSFS_PROPERTY(rds, unsigned, int, "%u", 0)
2041 DEFINE_SYSFS_PROPERTY(rds_b_block_mask, unsigned, int, "%u", 0)
2042 DEFINE_SYSFS_PROPERTY(rds_b_block_match, unsigned, int, "%u", 0)
2043 DEFINE_SYSFS_PROPERTY(rds_pi_mask, unsigned, int, "%u", 0)
2044 DEFINE_SYSFS_PROPERTY(rds_pi_match, unsigned, int, "%u", 0)
2045 DEFINE_SYSFS_PROPERTY(rds_wline, unsigned, int, "%u", 0)
2046 property_read(rds_pi, unsigned int, "%x")
2047 property_str_read(rds_rt, (BCM2048_MAX_RDS_RT + 1))
2048 property_str_read(rds_ps, (BCM2048_MAX_RDS_PS + 1))
2050 property_read(fm_rds_flags, unsigned int, "%u")
2051 property_str_read(rds_data, BCM2048_MAX_RDS_RADIO_TEXT * 5)
2053 property_read(region_bottom_frequency, unsigned int, "%u")
2054 property_read(region_top_frequency, unsigned int, "%u")
2055 property_signed_read(fm_carrier_error, int, "%d")
2056 property_signed_read(fm_rssi, int, "%d")
2057 DEFINE_SYSFS_PROPERTY(region, unsigned, int, "%u", 0)
2059 static struct device_attribute attrs[] = {
2060 __ATTR(power_state, S_IRUGO | S_IWUSR, bcm2048_power_state_read,
2061 bcm2048_power_state_write),
2062 __ATTR(mute, S_IRUGO | S_IWUSR, bcm2048_mute_read,
2063 bcm2048_mute_write),
2064 __ATTR(audio_route, S_IRUGO | S_IWUSR, bcm2048_audio_route_read,
2065 bcm2048_audio_route_write),
2066 __ATTR(dac_output, S_IRUGO | S_IWUSR, bcm2048_dac_output_read,
2067 bcm2048_dac_output_write),
2068 __ATTR(fm_hi_lo_injection, S_IRUGO | S_IWUSR,
2069 bcm2048_fm_hi_lo_injection_read,
2070 bcm2048_fm_hi_lo_injection_write),
2071 __ATTR(fm_frequency, S_IRUGO | S_IWUSR, bcm2048_fm_frequency_read,
2072 bcm2048_fm_frequency_write),
2073 __ATTR(fm_af_frequency, S_IRUGO | S_IWUSR,
2074 bcm2048_fm_af_frequency_read,
2075 bcm2048_fm_af_frequency_write),
2076 __ATTR(fm_deemphasis, S_IRUGO | S_IWUSR, bcm2048_fm_deemphasis_read,
2077 bcm2048_fm_deemphasis_write),
2078 __ATTR(fm_rds_mask, S_IRUGO | S_IWUSR, bcm2048_fm_rds_mask_read,
2079 bcm2048_fm_rds_mask_write),
2080 __ATTR(fm_best_tune_mode, S_IRUGO | S_IWUSR,
2081 bcm2048_fm_best_tune_mode_read,
2082 bcm2048_fm_best_tune_mode_write),
2083 __ATTR(fm_search_rssi_threshold, S_IRUGO | S_IWUSR,
2084 bcm2048_fm_search_rssi_threshold_read,
2085 bcm2048_fm_search_rssi_threshold_write),
2086 __ATTR(fm_search_mode_direction, S_IRUGO | S_IWUSR,
2087 bcm2048_fm_search_mode_direction_read,
2088 bcm2048_fm_search_mode_direction_write),
2089 __ATTR(fm_search_tune_mode, S_IRUGO | S_IWUSR,
2090 bcm2048_fm_search_tune_mode_read,
2091 bcm2048_fm_search_tune_mode_write),
2092 __ATTR(rds, S_IRUGO | S_IWUSR, bcm2048_rds_read,
2094 __ATTR(rds_b_block_mask, S_IRUGO | S_IWUSR,
2095 bcm2048_rds_b_block_mask_read,
2096 bcm2048_rds_b_block_mask_write),
2097 __ATTR(rds_b_block_match, S_IRUGO | S_IWUSR,
2098 bcm2048_rds_b_block_match_read,
2099 bcm2048_rds_b_block_match_write),
2100 __ATTR(rds_pi_mask, S_IRUGO | S_IWUSR, bcm2048_rds_pi_mask_read,
2101 bcm2048_rds_pi_mask_write),
2102 __ATTR(rds_pi_match, S_IRUGO | S_IWUSR, bcm2048_rds_pi_match_read,
2103 bcm2048_rds_pi_match_write),
2104 __ATTR(rds_wline, S_IRUGO | S_IWUSR, bcm2048_rds_wline_read,
2105 bcm2048_rds_wline_write),
2106 __ATTR(rds_pi, S_IRUGO, bcm2048_rds_pi_read, NULL),
2107 __ATTR(rds_rt, S_IRUGO, bcm2048_rds_rt_read, NULL),
2108 __ATTR(rds_ps, S_IRUGO, bcm2048_rds_ps_read, NULL),
2109 __ATTR(fm_rds_flags, S_IRUGO, bcm2048_fm_rds_flags_read, NULL),
2110 __ATTR(region_bottom_frequency, S_IRUGO,
2111 bcm2048_region_bottom_frequency_read, NULL),
2112 __ATTR(region_top_frequency, S_IRUGO,
2113 bcm2048_region_top_frequency_read, NULL),
2114 __ATTR(fm_carrier_error, S_IRUGO,
2115 bcm2048_fm_carrier_error_read, NULL),
2116 __ATTR(fm_rssi, S_IRUGO,
2117 bcm2048_fm_rssi_read, NULL),
2118 __ATTR(region, S_IRUGO | S_IWUSR, bcm2048_region_read,
2119 bcm2048_region_write),
2120 __ATTR(rds_data, S_IRUGO, bcm2048_rds_data_read, NULL),
2123 static int bcm2048_sysfs_unregister_properties(struct bcm2048_device *bdev,
2128 for (i = 0; i < size; i++)
2129 device_remove_file(&bdev->client->dev, &attrs[i]);
2134 static int bcm2048_sysfs_register_properties(struct bcm2048_device *bdev)
2139 for (i = 0; i < ARRAY_SIZE(attrs); i++) {
2140 if (device_create_file(&bdev->client->dev, &attrs[i]) != 0) {
2141 dev_err(&bdev->client->dev,
2142 "could not register sysfs entry\n");
2144 bcm2048_sysfs_unregister_properties(bdev, i);
2152 static int bcm2048_fops_open(struct file *file)
2154 struct bcm2048_device *bdev = video_drvdata(file);
2158 bdev->rds_data_available = 0;
2163 static int bcm2048_fops_release(struct file *file)
2165 struct bcm2048_device *bdev = video_drvdata(file);
2172 static unsigned int bcm2048_fops_poll(struct file *file,
2173 struct poll_table_struct *pts)
2175 struct bcm2048_device *bdev = video_drvdata(file);
2178 poll_wait(file, &bdev->read_queue, pts);
2180 if (bdev->rds_data_available)
2181 retval = POLLIN | POLLRDNORM;
2186 static ssize_t bcm2048_fops_read(struct file *file, char __user *buf,
2187 size_t count, loff_t *ppos)
2189 struct bcm2048_device *bdev = video_drvdata(file);
2193 /* we return at least 3 bytes, one block */
2194 count = (count / 3) * 3; /* only multiples of 3 */
2198 while (!bdev->rds_data_available) {
2199 if (file->f_flags & O_NONBLOCK) {
2200 retval = -EWOULDBLOCK;
2203 /* interruptible_sleep_on(&bdev->read_queue); */
2204 if (wait_event_interruptible(bdev->read_queue,
2205 bdev->rds_data_available) < 0) {
2211 mutex_lock(&bdev->mutex);
2212 /* copy data to userspace */
2213 i = bdev->fifo_size - bdev->rd_index;
2215 count = (i / 3) * 3;
2219 unsigned char tmpbuf[3];
2221 tmpbuf[i] = bdev->rds_info.radio_text[bdev->rd_index + i + 2];
2223 bdev->rds_info.radio_text[bdev->rd_index + i + 1];
2225 (bdev->rds_info.radio_text[bdev->rd_index + i] &
2227 if ((bdev->rds_info.radio_text[bdev->rd_index + i] &
2228 BCM2048_RDS_CRC_MASK) == BCM2048_RDS_CRC_UNRECOVARABLE)
2229 tmpbuf[i + 2] |= 0x80;
2230 if (copy_to_user(buf + i, tmpbuf, 3)) {
2237 bdev->rd_index += i;
2238 if (bdev->rd_index >= bdev->fifo_size)
2239 bdev->rds_data_available = 0;
2241 mutex_unlock(&bdev->mutex);
2250 * bcm2048_fops - file operations interface
2252 static const struct v4l2_file_operations bcm2048_fops = {
2253 .owner = THIS_MODULE,
2254 .unlocked_ioctl = video_ioctl2,
2255 /* for RDS read support */
2256 .open = bcm2048_fops_open,
2257 .release = bcm2048_fops_release,
2258 .read = bcm2048_fops_read,
2259 .poll = bcm2048_fops_poll
2263 * Video4Linux Interface
2265 static struct v4l2_queryctrl bcm2048_v4l2_queryctrl[] = {
2267 .id = V4L2_CID_AUDIO_VOLUME,
2268 .flags = V4L2_CTRL_FLAG_DISABLED,
2271 .id = V4L2_CID_AUDIO_BALANCE,
2272 .flags = V4L2_CTRL_FLAG_DISABLED,
2275 .id = V4L2_CID_AUDIO_BASS,
2276 .flags = V4L2_CTRL_FLAG_DISABLED,
2279 .id = V4L2_CID_AUDIO_TREBLE,
2280 .flags = V4L2_CTRL_FLAG_DISABLED,
2283 .id = V4L2_CID_AUDIO_MUTE,
2284 .type = V4L2_CTRL_TYPE_BOOLEAN,
2292 .id = V4L2_CID_AUDIO_LOUDNESS,
2293 .flags = V4L2_CTRL_FLAG_DISABLED,
2297 static int bcm2048_vidioc_querycap(struct file *file, void *priv,
2298 struct v4l2_capability *capability)
2300 struct bcm2048_device *bdev = video_get_drvdata(video_devdata(file));
2302 strlcpy(capability->driver, BCM2048_DRIVER_NAME,
2303 sizeof(capability->driver));
2304 strlcpy(capability->card, BCM2048_DRIVER_CARD,
2305 sizeof(capability->card));
2306 snprintf(capability->bus_info, 32, "I2C: 0x%X", bdev->client->addr);
2307 capability->device_caps = V4L2_CAP_TUNER | V4L2_CAP_RADIO |
2308 V4L2_CAP_HW_FREQ_SEEK;
2309 capability->capabilities = capability->device_caps |
2310 V4L2_CAP_DEVICE_CAPS;
2315 static int bcm2048_vidioc_g_input(struct file *filp, void *priv,
2323 static int bcm2048_vidioc_s_input(struct file *filp, void *priv,
2332 static int bcm2048_vidioc_queryctrl(struct file *file, void *priv,
2333 struct v4l2_queryctrl *qc)
2337 for (i = 0; i < ARRAY_SIZE(bcm2048_v4l2_queryctrl); i++) {
2338 if (qc->id && qc->id == bcm2048_v4l2_queryctrl[i].id) {
2339 *qc = bcm2048_v4l2_queryctrl[i];
2347 static int bcm2048_vidioc_g_ctrl(struct file *file, void *priv,
2348 struct v4l2_control *ctrl)
2350 struct bcm2048_device *bdev = video_get_drvdata(video_devdata(file));
2357 case V4L2_CID_AUDIO_MUTE:
2358 err = bcm2048_get_mute(bdev);
2367 static int bcm2048_vidioc_s_ctrl(struct file *file, void *priv,
2368 struct v4l2_control *ctrl)
2370 struct bcm2048_device *bdev = video_get_drvdata(video_devdata(file));
2377 case V4L2_CID_AUDIO_MUTE:
2379 if (bdev->power_state) {
2380 err = bcm2048_set_mute(bdev, ctrl->value);
2381 err |= bcm2048_deinit(bdev);
2384 if (!bdev->power_state) {
2385 err = bcm2048_init(bdev);
2386 err |= bcm2048_set_mute(bdev, ctrl->value);
2395 static int bcm2048_vidioc_g_audio(struct file *file, void *priv,
2396 struct v4l2_audio *audio)
2398 if (audio->index > 1)
2401 strncpy(audio->name, "Radio", 32);
2402 audio->capability = V4L2_AUDCAP_STEREO;
2407 static int bcm2048_vidioc_s_audio(struct file *file, void *priv,
2408 const struct v4l2_audio *audio)
2410 if (audio->index != 0)
2416 static int bcm2048_vidioc_g_tuner(struct file *file, void *priv,
2417 struct v4l2_tuner *tuner)
2419 struct bcm2048_device *bdev = video_get_drvdata(video_devdata(file));
2426 if (tuner->index > 0)
2429 strncpy(tuner->name, "FM Receiver", 32);
2430 tuner->type = V4L2_TUNER_RADIO;
2432 dev_to_v4l2(bcm2048_get_region_bottom_frequency(bdev));
2434 dev_to_v4l2(bcm2048_get_region_top_frequency(bdev));
2435 tuner->rxsubchans = V4L2_TUNER_SUB_STEREO;
2436 tuner->capability = V4L2_TUNER_CAP_STEREO | V4L2_TUNER_CAP_LOW;
2437 tuner->audmode = V4L2_TUNER_MODE_STEREO;
2439 if (bdev->power_state) {
2441 * Report frequencies with high carrier errors to have zero
2444 f_error = bcm2048_get_fm_carrier_error(bdev);
2445 if (f_error < BCM2048_FREQ_ERROR_FLOOR ||
2446 f_error > BCM2048_FREQ_ERROR_ROOF) {
2450 * RSSI level -60 dB is defined to report full
2453 rssi = bcm2048_get_fm_rssi(bdev);
2454 if (rssi >= BCM2048_RSSI_LEVEL_BASE) {
2455 tuner->signal = 0xFFFF;
2456 } else if (rssi > BCM2048_RSSI_LEVEL_ROOF) {
2457 tuner->signal = (rssi +
2458 BCM2048_RSSI_LEVEL_ROOF_NEG)
2459 * BCM2048_SIGNAL_MULTIPLIER;
2471 static int bcm2048_vidioc_s_tuner(struct file *file, void *priv,
2472 const struct v4l2_tuner *tuner)
2474 struct bcm2048_device *bdev = video_get_drvdata(video_devdata(file));
2479 if (tuner->index > 0)
2485 static int bcm2048_vidioc_g_frequency(struct file *file, void *priv,
2486 struct v4l2_frequency *freq)
2488 struct bcm2048_device *bdev = video_get_drvdata(video_devdata(file));
2492 if (!bdev->power_state)
2495 freq->type = V4L2_TUNER_RADIO;
2496 f = bcm2048_get_fm_frequency(bdev);
2501 freq->frequency = dev_to_v4l2(f);
2506 static int bcm2048_vidioc_s_frequency(struct file *file, void *priv,
2507 const struct v4l2_frequency *freq)
2509 struct bcm2048_device *bdev = video_get_drvdata(video_devdata(file));
2512 if (freq->type != V4L2_TUNER_RADIO)
2515 if (!bdev->power_state)
2518 err = bcm2048_set_fm_frequency(bdev, v4l2_to_dev(freq->frequency));
2519 err |= bcm2048_set_fm_search_tune_mode(bdev, BCM2048_FM_PRE_SET_MODE);
2524 static int bcm2048_vidioc_s_hw_freq_seek(struct file *file, void *priv,
2525 const struct v4l2_hw_freq_seek *seek)
2527 struct bcm2048_device *bdev = video_get_drvdata(video_devdata(file));
2530 if (!bdev->power_state)
2533 if ((seek->tuner != 0) || (seek->type != V4L2_TUNER_RADIO))
2536 err = bcm2048_set_fm_search_mode_direction(bdev, seek->seek_upward);
2537 err |= bcm2048_set_fm_search_tune_mode(bdev,
2538 BCM2048_FM_AUTO_SEARCH_MODE);
2543 static struct v4l2_ioctl_ops bcm2048_ioctl_ops = {
2544 .vidioc_querycap = bcm2048_vidioc_querycap,
2545 .vidioc_g_input = bcm2048_vidioc_g_input,
2546 .vidioc_s_input = bcm2048_vidioc_s_input,
2547 .vidioc_queryctrl = bcm2048_vidioc_queryctrl,
2548 .vidioc_g_ctrl = bcm2048_vidioc_g_ctrl,
2549 .vidioc_s_ctrl = bcm2048_vidioc_s_ctrl,
2550 .vidioc_g_audio = bcm2048_vidioc_g_audio,
2551 .vidioc_s_audio = bcm2048_vidioc_s_audio,
2552 .vidioc_g_tuner = bcm2048_vidioc_g_tuner,
2553 .vidioc_s_tuner = bcm2048_vidioc_s_tuner,
2554 .vidioc_g_frequency = bcm2048_vidioc_g_frequency,
2555 .vidioc_s_frequency = bcm2048_vidioc_s_frequency,
2556 .vidioc_s_hw_freq_seek = bcm2048_vidioc_s_hw_freq_seek,
2560 * bcm2048_viddev_template - video device interface
2562 static struct video_device bcm2048_viddev_template = {
2563 .fops = &bcm2048_fops,
2564 .name = BCM2048_DRIVER_NAME,
2565 .release = video_device_release_empty,
2566 .ioctl_ops = &bcm2048_ioctl_ops,
2570 * I2C driver interface
2572 static int bcm2048_i2c_driver_probe(struct i2c_client *client,
2573 const struct i2c_device_id *id)
2575 struct bcm2048_device *bdev;
2578 bdev = kzalloc(sizeof(*bdev), GFP_KERNEL);
2584 bdev->client = client;
2585 i2c_set_clientdata(client, bdev);
2586 mutex_init(&bdev->mutex);
2587 init_completion(&bdev->compl);
2588 INIT_WORK(&bdev->work, bcm2048_work);
2591 err = request_irq(client->irq,
2592 bcm2048_handler, IRQF_TRIGGER_FALLING,
2593 client->name, bdev);
2595 dev_err(&client->dev, "Could not request IRQ\n");
2598 dev_dbg(&client->dev, "IRQ requested.\n");
2600 dev_dbg(&client->dev, "IRQ not configured. Using timeouts.\n");
2603 bdev->videodev = bcm2048_viddev_template;
2604 video_set_drvdata(&bdev->videodev, bdev);
2605 if (video_register_device(&bdev->videodev, VFL_TYPE_RADIO, radio_nr)) {
2606 dev_dbg(&client->dev, "Could not register video device.\n");
2611 err = bcm2048_sysfs_register_properties(bdev);
2613 dev_dbg(&client->dev, "Could not register sysfs interface.\n");
2614 goto free_registration;
2617 err = bcm2048_probe(bdev);
2619 dev_dbg(&client->dev, "Failed to probe device information.\n");
2626 bcm2048_sysfs_unregister_properties(bdev, ARRAY_SIZE(attrs));
2628 video_unregister_device(&bdev->videodev);
2631 free_irq(client->irq, bdev);
2633 i2c_set_clientdata(client, NULL);
2639 static int __exit bcm2048_i2c_driver_remove(struct i2c_client *client)
2641 struct bcm2048_device *bdev = i2c_get_clientdata(client);
2643 if (!client->adapter)
2647 bcm2048_sysfs_unregister_properties(bdev, ARRAY_SIZE(attrs));
2648 video_unregister_device(&bdev->videodev);
2650 if (bdev->power_state)
2651 bcm2048_set_power_state(bdev, BCM2048_POWER_OFF);
2653 if (client->irq > 0)
2654 free_irq(client->irq, bdev);
2656 cancel_work_sync(&bdev->work);
2665 * bcm2048_i2c_driver - i2c driver interface
2667 static const struct i2c_device_id bcm2048_id[] = {
2671 MODULE_DEVICE_TABLE(i2c, bcm2048_id);
2673 static struct i2c_driver bcm2048_i2c_driver = {
2675 .name = BCM2048_DRIVER_NAME,
2677 .probe = bcm2048_i2c_driver_probe,
2678 .remove = __exit_p(bcm2048_i2c_driver_remove),
2679 .id_table = bcm2048_id,
2682 module_i2c_driver(bcm2048_i2c_driver);
2684 MODULE_LICENSE("GPL");
2685 MODULE_AUTHOR(BCM2048_DRIVER_AUTHOR);
2686 MODULE_DESCRIPTION(BCM2048_DRIVER_DESC);
2687 MODULE_VERSION("0.0.2");