1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * drivers/media/radio/si470x/radio-si470x-i2c.c
5 * I2C driver for radios with Silicon Labs Si470x FM Radio Receivers
7 * Copyright (c) 2009 Samsung Electronics Co.Ltd
8 * Author: Joonyoung Shim <jy0922.shim@samsung.com>
12 /* driver definitions */
13 #define DRIVER_AUTHOR "Joonyoung Shim <jy0922.shim@samsung.com>";
14 #define DRIVER_CARD "Silicon Labs Si470x FM Radio Receiver"
15 #define DRIVER_DESC "I2C radio driver for Si470x FM Radio Receivers"
16 #define DRIVER_VERSION "1.0.2"
19 #include <linux/i2c.h>
20 #include <linux/slab.h>
21 #include <linux/delay.h>
22 #include <linux/gpio/consumer.h>
23 #include <linux/interrupt.h>
25 #include "radio-si470x.h"
28 /* I2C Device ID List */
29 static const struct i2c_device_id si470x_i2c_id
[] = {
32 /* Terminating entry */
35 MODULE_DEVICE_TABLE(i2c
, si470x_i2c_id
);
38 /**************************************************************************
40 **************************************************************************/
43 static int radio_nr
= -1;
44 module_param(radio_nr
, int, 0444);
45 MODULE_PARM_DESC(radio_nr
, "Radio Nr");
47 /* RDS buffer blocks */
48 static unsigned int rds_buf
= 100;
49 module_param(rds_buf
, uint
, 0444);
50 MODULE_PARM_DESC(rds_buf
, "RDS buffer entries: *100*");
52 /* RDS maximum block errors */
53 static unsigned short max_rds_errors
= 1;
54 /* 0 means 0 errors requiring correction */
55 /* 1 means 1-2 errors requiring correction (used by original USBRadio.exe) */
56 /* 2 means 3-5 errors requiring correction */
57 /* 3 means 6+ errors or errors in checkword, correction not possible */
58 module_param(max_rds_errors
, ushort
, 0644);
59 MODULE_PARM_DESC(max_rds_errors
, "RDS maximum block errors: *1*");
63 /**************************************************************************
65 **************************************************************************/
67 /* Write starts with the upper byte of register 0x02 */
68 #define WRITE_REG_NUM 8
69 #define WRITE_INDEX(i) (i + 0x02)
71 /* Read starts with the upper byte of register 0x0a */
72 #define READ_REG_NUM RADIO_REGISTER_NUM
73 #define READ_INDEX(i) ((i + RADIO_REGISTER_NUM - 0x0a) % READ_REG_NUM)
77 /**************************************************************************
78 * General Driver Functions - REGISTERs
79 **************************************************************************/
82 * si470x_get_register - read register
84 static int si470x_get_register(struct si470x_device
*radio
, int regnr
)
86 __be16 buf
[READ_REG_NUM
];
87 struct i2c_msg msgs
[1] = {
89 .addr
= radio
->client
->addr
,
91 .len
= sizeof(u16
) * READ_REG_NUM
,
96 if (i2c_transfer(radio
->client
->adapter
, msgs
, 1) != 1)
99 radio
->registers
[regnr
] = __be16_to_cpu(buf
[READ_INDEX(regnr
)]);
106 * si470x_set_register - write register
108 static int si470x_set_register(struct si470x_device
*radio
, int regnr
)
111 __be16 buf
[WRITE_REG_NUM
];
112 struct i2c_msg msgs
[1] = {
114 .addr
= radio
->client
->addr
,
115 .len
= sizeof(u16
) * WRITE_REG_NUM
,
120 for (i
= 0; i
< WRITE_REG_NUM
; i
++)
121 buf
[i
] = __cpu_to_be16(radio
->registers
[WRITE_INDEX(i
)]);
123 if (i2c_transfer(radio
->client
->adapter
, msgs
, 1) != 1)
131 /**************************************************************************
132 * General Driver Functions - ENTIRE REGISTERS
133 **************************************************************************/
136 * si470x_get_all_registers - read entire registers
138 static int si470x_get_all_registers(struct si470x_device
*radio
)
141 __be16 buf
[READ_REG_NUM
];
142 struct i2c_msg msgs
[1] = {
144 .addr
= radio
->client
->addr
,
146 .len
= sizeof(u16
) * READ_REG_NUM
,
151 if (i2c_transfer(radio
->client
->adapter
, msgs
, 1) != 1)
154 for (i
= 0; i
< READ_REG_NUM
; i
++)
155 radio
->registers
[i
] = __be16_to_cpu(buf
[READ_INDEX(i
)]);
162 /**************************************************************************
163 * File Operations Interface
164 **************************************************************************/
167 * si470x_fops_open - file open
169 static int si470x_fops_open(struct file
*file
)
171 struct si470x_device
*radio
= video_drvdata(file
);
172 int retval
= v4l2_fh_open(file
);
177 if (v4l2_fh_is_singular_file(file
)) {
179 retval
= si470x_start(radio
);
183 /* enable RDS / STC interrupt */
184 radio
->registers
[SYSCONFIG1
] |= SYSCONFIG1_RDSIEN
;
185 radio
->registers
[SYSCONFIG1
] |= SYSCONFIG1_STCIEN
;
186 radio
->registers
[SYSCONFIG1
] &= ~SYSCONFIG1_GPIO2
;
187 radio
->registers
[SYSCONFIG1
] |= 0x1 << 2;
188 retval
= si470x_set_register(radio
, SYSCONFIG1
);
193 v4l2_fh_release(file
);
199 * si470x_fops_release - file release
201 static int si470x_fops_release(struct file
*file
)
203 struct si470x_device
*radio
= video_drvdata(file
);
205 if (v4l2_fh_is_singular_file(file
))
209 return v4l2_fh_release(file
);
214 /**************************************************************************
215 * Video4Linux Interface
216 **************************************************************************/
219 * si470x_vidioc_querycap - query device capabilities
221 static int si470x_vidioc_querycap(struct file
*file
, void *priv
,
222 struct v4l2_capability
*capability
)
224 strscpy(capability
->driver
, DRIVER_NAME
, sizeof(capability
->driver
));
225 strscpy(capability
->card
, DRIVER_CARD
, sizeof(capability
->card
));
226 capability
->device_caps
= V4L2_CAP_HW_FREQ_SEEK
| V4L2_CAP_READWRITE
|
227 V4L2_CAP_TUNER
| V4L2_CAP_RADIO
| V4L2_CAP_RDS_CAPTURE
;
228 capability
->capabilities
= capability
->device_caps
| V4L2_CAP_DEVICE_CAPS
;
235 /**************************************************************************
237 **************************************************************************/
240 * si470x_i2c_interrupt - interrupt handler
242 static irqreturn_t
si470x_i2c_interrupt(int irq
, void *dev_id
)
244 struct si470x_device
*radio
= dev_id
;
246 unsigned char blocknum
;
247 unsigned short bler
; /* rds block errors */
249 unsigned char tmpbuf
[3];
252 /* check Seek/Tune Complete */
253 retval
= si470x_get_register(radio
, STATUSRSSI
);
257 if (radio
->registers
[STATUSRSSI
] & STATUSRSSI_STC
)
258 complete(&radio
->completion
);
261 if ((radio
->registers
[SYSCONFIG1
] & SYSCONFIG1_RDS
) == 0)
264 /* Update RDS registers */
265 for (regnr
= 1; regnr
< RDS_REGISTER_NUM
; regnr
++) {
266 retval
= si470x_get_register(radio
, STATUSRSSI
+ regnr
);
272 if ((radio
->registers
[STATUSRSSI
] & STATUSRSSI_RDSR
) == 0)
273 /* No RDS group ready, better luck next time */
276 for (blocknum
= 0; blocknum
< 4; blocknum
++) {
279 bler
= (radio
->registers
[STATUSRSSI
] &
280 STATUSRSSI_BLERA
) >> 9;
281 rds
= radio
->registers
[RDSA
];
284 bler
= (radio
->registers
[READCHAN
] &
285 READCHAN_BLERB
) >> 14;
286 rds
= radio
->registers
[RDSB
];
289 bler
= (radio
->registers
[READCHAN
] &
290 READCHAN_BLERC
) >> 12;
291 rds
= radio
->registers
[RDSC
];
294 bler
= (radio
->registers
[READCHAN
] &
295 READCHAN_BLERD
) >> 10;
296 rds
= radio
->registers
[RDSD
];
300 /* Fill the V4L2 RDS buffer */
301 put_unaligned_le16(rds
, &tmpbuf
);
302 tmpbuf
[2] = blocknum
; /* offset name */
303 tmpbuf
[2] |= blocknum
<< 3; /* received offset */
304 if (bler
> max_rds_errors
)
305 tmpbuf
[2] |= 0x80; /* uncorrectable errors */
307 tmpbuf
[2] |= 0x40; /* corrected error(s) */
309 /* copy RDS block to internal buffer */
310 memcpy(&radio
->buffer
[radio
->wr_index
], &tmpbuf
, 3);
311 radio
->wr_index
+= 3;
313 /* wrap write pointer */
314 if (radio
->wr_index
>= radio
->buf_size
)
317 /* check for overflow */
318 if (radio
->wr_index
== radio
->rd_index
) {
319 /* increment and wrap read pointer */
320 radio
->rd_index
+= 3;
321 if (radio
->rd_index
>= radio
->buf_size
)
326 if (radio
->wr_index
!= radio
->rd_index
)
327 wake_up_interruptible(&radio
->read_queue
);
335 * si470x_i2c_probe - probe for the device
337 static int si470x_i2c_probe(struct i2c_client
*client
,
338 const struct i2c_device_id
*id
)
340 struct si470x_device
*radio
;
342 unsigned char version_warning
= 0;
344 /* private data allocation and initialization */
345 radio
= devm_kzalloc(&client
->dev
, sizeof(*radio
), GFP_KERNEL
);
351 radio
->client
= client
;
352 radio
->band
= 1; /* Default to 76 - 108 MHz */
353 mutex_init(&radio
->lock
);
354 init_completion(&radio
->completion
);
356 radio
->get_register
= si470x_get_register
;
357 radio
->set_register
= si470x_set_register
;
358 radio
->fops_open
= si470x_fops_open
;
359 radio
->fops_release
= si470x_fops_release
;
360 radio
->vidioc_querycap
= si470x_vidioc_querycap
;
362 retval
= v4l2_device_register(&client
->dev
, &radio
->v4l2_dev
);
364 dev_err(&client
->dev
, "couldn't register v4l2_device\n");
368 v4l2_ctrl_handler_init(&radio
->hdl
, 2);
369 v4l2_ctrl_new_std(&radio
->hdl
, &si470x_ctrl_ops
,
370 V4L2_CID_AUDIO_MUTE
, 0, 1, 1, 1);
371 v4l2_ctrl_new_std(&radio
->hdl
, &si470x_ctrl_ops
,
372 V4L2_CID_AUDIO_VOLUME
, 0, 15, 1, 15);
373 if (radio
->hdl
.error
) {
374 retval
= radio
->hdl
.error
;
375 dev_err(&client
->dev
, "couldn't register control\n");
379 /* video device initialization */
380 radio
->videodev
= si470x_viddev_template
;
381 radio
->videodev
.ctrl_handler
= &radio
->hdl
;
382 radio
->videodev
.lock
= &radio
->lock
;
383 radio
->videodev
.v4l2_dev
= &radio
->v4l2_dev
;
384 radio
->videodev
.release
= video_device_release_empty
;
385 video_set_drvdata(&radio
->videodev
, radio
);
387 radio
->gpio_reset
= devm_gpiod_get_optional(&client
->dev
, "reset",
389 if (IS_ERR(radio
->gpio_reset
)) {
390 retval
= PTR_ERR(radio
->gpio_reset
);
391 dev_err(&client
->dev
, "Failed to request gpio: %d\n", retval
);
395 if (radio
->gpio_reset
)
396 gpiod_set_value(radio
->gpio_reset
, 1);
398 /* power up : need 110ms */
399 radio
->registers
[POWERCFG
] = POWERCFG_ENABLE
;
400 if (si470x_set_register(radio
, POWERCFG
) < 0) {
406 /* get device and chip versions */
407 if (si470x_get_all_registers(radio
) < 0) {
411 dev_info(&client
->dev
, "DeviceID=0x%4.4hx ChipID=0x%4.4hx\n",
412 radio
->registers
[DEVICEID
], radio
->registers
[SI_CHIPID
]);
413 if ((radio
->registers
[SI_CHIPID
] & SI_CHIPID_FIRMWARE
) < RADIO_FW_VERSION
) {
414 dev_warn(&client
->dev
,
415 "This driver is known to work with firmware version %hu,\n",
417 dev_warn(&client
->dev
,
418 "but the device has firmware version %hu.\n",
419 radio
->registers
[SI_CHIPID
] & SI_CHIPID_FIRMWARE
);
423 /* give out version warning */
424 if (version_warning
== 1) {
425 dev_warn(&client
->dev
,
426 "If you have some trouble using this driver,\n");
427 dev_warn(&client
->dev
,
428 "please report to V4L ML at linux-media@vger.kernel.org\n");
431 /* set initial frequency */
432 si470x_set_freq(radio
, 87.5 * FREQ_MUL
); /* available in all regions */
434 /* rds buffer allocation */
435 radio
->buf_size
= rds_buf
* 3;
436 radio
->buffer
= devm_kmalloc(&client
->dev
, radio
->buf_size
, GFP_KERNEL
);
437 if (!radio
->buffer
) {
442 /* rds buffer configuration */
445 init_waitqueue_head(&radio
->read_queue
);
447 retval
= devm_request_threaded_irq(&client
->dev
, client
->irq
, NULL
,
448 si470x_i2c_interrupt
,
449 IRQF_TRIGGER_FALLING
| IRQF_ONESHOT
,
452 dev_err(&client
->dev
, "Failed to register interrupt\n");
456 /* register video device */
457 retval
= video_register_device(&radio
->videodev
, VFL_TYPE_RADIO
,
460 dev_warn(&client
->dev
, "Could not register video device\n");
463 i2c_set_clientdata(client
, radio
);
467 v4l2_ctrl_handler_free(&radio
->hdl
);
469 v4l2_device_unregister(&radio
->v4l2_dev
);
476 * si470x_i2c_remove - remove the device
478 static int si470x_i2c_remove(struct i2c_client
*client
)
480 struct si470x_device
*radio
= i2c_get_clientdata(client
);
482 video_unregister_device(&radio
->videodev
);
484 if (radio
->gpio_reset
)
485 gpiod_set_value(radio
->gpio_reset
, 0);
491 #ifdef CONFIG_PM_SLEEP
493 * si470x_i2c_suspend - suspend the device
495 static int si470x_i2c_suspend(struct device
*dev
)
497 struct i2c_client
*client
= to_i2c_client(dev
);
498 struct si470x_device
*radio
= i2c_get_clientdata(client
);
501 radio
->registers
[POWERCFG
] |= POWERCFG_DISABLE
;
502 if (si470x_set_register(radio
, POWERCFG
) < 0)
510 * si470x_i2c_resume - resume the device
512 static int si470x_i2c_resume(struct device
*dev
)
514 struct i2c_client
*client
= to_i2c_client(dev
);
515 struct si470x_device
*radio
= i2c_get_clientdata(client
);
517 /* power up : need 110ms */
518 radio
->registers
[POWERCFG
] |= POWERCFG_ENABLE
;
519 if (si470x_set_register(radio
, POWERCFG
) < 0)
526 static SIMPLE_DEV_PM_OPS(si470x_i2c_pm
, si470x_i2c_suspend
, si470x_i2c_resume
);
529 #if IS_ENABLED(CONFIG_OF)
530 static const struct of_device_id si470x_of_match
[] = {
531 { .compatible
= "silabs,si470x" },
534 MODULE_DEVICE_TABLE(of
, si470x_of_match
);
538 * si470x_i2c_driver - i2c driver interface
540 static struct i2c_driver si470x_i2c_driver
= {
543 .of_match_table
= of_match_ptr(si470x_of_match
),
544 #ifdef CONFIG_PM_SLEEP
545 .pm
= &si470x_i2c_pm
,
548 .probe
= si470x_i2c_probe
,
549 .remove
= si470x_i2c_remove
,
550 .id_table
= si470x_i2c_id
,
553 module_i2c_driver(si470x_i2c_driver
);
555 MODULE_LICENSE("GPL");
556 MODULE_AUTHOR(DRIVER_AUTHOR
);
557 MODULE_DESCRIPTION(DRIVER_DESC
);
558 MODULE_VERSION(DRIVER_VERSION
);