2 * FM Driver for Connectivity chip of Texas Instruments.
3 * This file provides interfaces to V4L2 subsystem.
5 * This module registers with V4L2 subsystem as Radio
6 * data system interface (/dev/radio). During the registration,
7 * it will expose two set of function pointers.
9 * 1) File operation related API (open, close, read, write, poll...etc).
10 * 2) Set of V4L2 IOCTL complaint API.
12 * Copyright (C) 2011 Texas Instruments
13 * Author: Raja Mani <raja_mani@ti.com>
14 * Author: Manjunatha Halli <manjunatha_halli@ti.com>
16 * This program is free software; you can redistribute it and/or modify
17 * it under the terms of the GNU General Public License version 2 as
18 * published by the Free Software Foundation.
20 * This program is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
25 * You should have received a copy of the GNU General Public License
26 * along with this program; if not, write to the Free Software
27 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
31 #include <linux/export.h>
34 #include "fmdrv_v4l2.h"
35 #include "fmdrv_common.h"
39 static struct video_device
*gradio_dev
;
40 static u8 radio_disconnected
;
42 /* -- V4L2 RADIO (/dev/radioX) device file operation interfaces --- */
44 /* Read RX RDS data */
45 static ssize_t
fm_v4l2_fops_read(struct file
*file
, char __user
* buf
,
46 size_t count
, loff_t
*ppos
)
52 fmdev
= video_drvdata(file
);
54 if (!radio_disconnected
) {
55 fmerr("FM device is already disconnected\n");
59 /* Turn on RDS mode , if it is disabled */
60 ret
= fm_rx_get_rds_mode(fmdev
, &rds_mode
);
62 fmerr("Unable to read current rds mode\n");
66 if (rds_mode
== FM_RDS_DISABLE
) {
67 ret
= fmc_set_rds_mode(fmdev
, FM_RDS_ENABLE
);
69 fmerr("Failed to enable rds mode\n");
74 /* Copy RDS data from internal buffer to user buffer */
75 return fmc_transfer_rds_from_internal_buff(fmdev
, file
, buf
, count
);
78 /* Write TX RDS data */
79 static ssize_t
fm_v4l2_fops_write(struct file
*file
, const char __user
* buf
,
80 size_t count
, loff_t
*ppos
)
86 ret
= copy_from_user(&rds
, buf
, sizeof(rds
));
87 rds
.text
[sizeof(rds
.text
) - 1] = '\0';
88 fmdbg("(%d)type: %d, text %s, af %d\n",
89 ret
, rds
.text_type
, rds
.text
, rds
.af_freq
);
93 fmdev
= video_drvdata(file
);
94 fm_tx_set_radio_text(fmdev
, rds
.text
, rds
.text_type
);
95 fm_tx_set_af(fmdev
, rds
.af_freq
);
100 static u32
fm_v4l2_fops_poll(struct file
*file
, struct poll_table_struct
*pts
)
105 fmdev
= video_drvdata(file
);
106 ret
= fmc_is_rds_data_available(fmdev
, file
, pts
);
108 return POLLIN
| POLLRDNORM
;
114 * Handle open request for "/dev/radioX" device.
115 * Start with FM RX mode as default.
117 static int fm_v4l2_fops_open(struct file
*file
)
120 struct fmdev
*fmdev
= NULL
;
122 /* Don't allow multiple open */
123 if (radio_disconnected
) {
124 fmerr("FM device is already opened\n");
128 fmdev
= video_drvdata(file
);
130 ret
= fmc_prepare(fmdev
);
132 fmerr("Unable to prepare FM CORE\n");
136 fmdbg("Load FM RX firmware..\n");
138 ret
= fmc_set_mode(fmdev
, FM_MODE_RX
);
140 fmerr("Unable to load FM RX firmware\n");
143 radio_disconnected
= 1;
148 static int fm_v4l2_fops_release(struct file
*file
)
153 fmdev
= video_drvdata(file
);
154 if (!radio_disconnected
) {
155 fmdbg("FM device is already closed\n");
159 ret
= fmc_set_mode(fmdev
, FM_MODE_OFF
);
161 fmerr("Unable to turn off the chip\n");
165 ret
= fmc_release(fmdev
);
167 fmerr("FM CORE release failed\n");
170 radio_disconnected
= 0;
175 /* V4L2 RADIO (/dev/radioX) device IOCTL interfaces */
176 static int fm_v4l2_vidioc_querycap(struct file
*file
, void *priv
,
177 struct v4l2_capability
*capability
)
179 strlcpy(capability
->driver
, FM_DRV_NAME
, sizeof(capability
->driver
));
180 strlcpy(capability
->card
, FM_DRV_CARD_SHORT_NAME
,
181 sizeof(capability
->card
));
182 sprintf(capability
->bus_info
, "UART");
183 capability
->capabilities
= V4L2_CAP_HW_FREQ_SEEK
| V4L2_CAP_TUNER
|
184 V4L2_CAP_RADIO
| V4L2_CAP_MODULATOR
|
185 V4L2_CAP_AUDIO
| V4L2_CAP_READWRITE
|
186 V4L2_CAP_RDS_CAPTURE
;
191 static int fm_g_volatile_ctrl(struct v4l2_ctrl
*ctrl
)
193 struct fmdev
*fmdev
= container_of(ctrl
->handler
,
194 struct fmdev
, ctrl_handler
);
197 case V4L2_CID_TUNE_ANTENNA_CAPACITOR
:
198 ctrl
->val
= fm_tx_get_tune_cap_val(fmdev
);
201 fmwarn("%s: Unknown IOCTL: %d\n", __func__
, ctrl
->id
);
208 static int fm_v4l2_s_ctrl(struct v4l2_ctrl
*ctrl
)
210 struct fmdev
*fmdev
= container_of(ctrl
->handler
,
211 struct fmdev
, ctrl_handler
);
214 case V4L2_CID_AUDIO_VOLUME
: /* set volume */
215 return fm_rx_set_volume(fmdev
, (u16
)ctrl
->val
);
217 case V4L2_CID_AUDIO_MUTE
: /* set mute */
218 return fmc_set_mute_mode(fmdev
, (u8
)ctrl
->val
);
220 case V4L2_CID_TUNE_POWER_LEVEL
:
221 /* set TX power level - ext control */
222 return fm_tx_set_pwr_lvl(fmdev
, (u8
)ctrl
->val
);
224 case V4L2_CID_TUNE_PREEMPHASIS
:
225 return fm_tx_set_preemph_filter(fmdev
, (u8
) ctrl
->val
);
232 static int fm_v4l2_vidioc_g_audio(struct file
*file
, void *priv
,
233 struct v4l2_audio
*audio
)
235 memset(audio
, 0, sizeof(*audio
));
236 strcpy(audio
->name
, "Radio");
237 audio
->capability
= V4L2_AUDCAP_STEREO
;
242 static int fm_v4l2_vidioc_s_audio(struct file
*file
, void *priv
,
243 struct v4l2_audio
*audio
)
245 if (audio
->index
!= 0)
251 /* Get tuner attributes. If current mode is NOT RX, return error */
252 static int fm_v4l2_vidioc_g_tuner(struct file
*file
, void *priv
,
253 struct v4l2_tuner
*tuner
)
255 struct fmdev
*fmdev
= video_drvdata(file
);
258 u16 stereo_mono_mode
;
262 if (tuner
->index
!= 0)
265 if (fmdev
->curr_fmmode
!= FM_MODE_RX
)
268 ret
= fm_rx_get_band_freq_range(fmdev
, &bottom_freq
, &top_freq
);
272 ret
= fm_rx_get_stereo_mono(fmdev
, &stereo_mono_mode
);
276 ret
= fm_rx_get_rssi_level(fmdev
, &rssilvl
);
280 strcpy(tuner
->name
, "FM");
281 tuner
->type
= V4L2_TUNER_RADIO
;
282 /* Store rangelow and rangehigh freq in unit of 62.5 Hz */
283 tuner
->rangelow
= bottom_freq
* 16;
284 tuner
->rangehigh
= top_freq
* 16;
285 tuner
->rxsubchans
= V4L2_TUNER_SUB_MONO
| V4L2_TUNER_SUB_STEREO
|
286 ((fmdev
->rx
.rds
.flag
== FM_RDS_ENABLE
) ? V4L2_TUNER_SUB_RDS
: 0);
287 tuner
->capability
= V4L2_TUNER_CAP_STEREO
| V4L2_TUNER_CAP_RDS
|
289 tuner
->audmode
= (stereo_mono_mode
?
290 V4L2_TUNER_MODE_MONO
: V4L2_TUNER_MODE_STEREO
);
293 * Actual rssi value lies in between -128 to +127.
294 * Convert this range from 0 to 255 by adding +128
299 * Return signal strength value should be within 0 to 65535.
300 * Find out correct signal radio by multiplying (65535/255) = 257
302 tuner
->signal
= rssilvl
* 257;
309 * Set tuner attributes. If current mode is NOT RX, set to RX.
310 * Currently, we set only audio mode (mono/stereo) and RDS state (on/off).
311 * Should we set other tuner attributes, too?
313 static int fm_v4l2_vidioc_s_tuner(struct file
*file
, void *priv
,
314 struct v4l2_tuner
*tuner
)
316 struct fmdev
*fmdev
= video_drvdata(file
);
321 if (tuner
->index
!= 0)
324 aud_mode
= (tuner
->audmode
== V4L2_TUNER_MODE_STEREO
) ?
325 FM_STEREO_MODE
: FM_MONO_MODE
;
326 rds_mode
= (tuner
->rxsubchans
& V4L2_TUNER_SUB_RDS
) ?
327 FM_RDS_ENABLE
: FM_RDS_DISABLE
;
329 if (fmdev
->curr_fmmode
!= FM_MODE_RX
) {
330 ret
= fmc_set_mode(fmdev
, FM_MODE_RX
);
332 fmerr("Failed to set RX mode\n");
337 ret
= fmc_set_stereo_mono(fmdev
, aud_mode
);
339 fmerr("Failed to set RX stereo/mono mode\n");
343 ret
= fmc_set_rds_mode(fmdev
, rds_mode
);
345 fmerr("Failed to set RX RDS mode\n");
350 /* Get tuner or modulator radio frequency */
351 static int fm_v4l2_vidioc_g_freq(struct file
*file
, void *priv
,
352 struct v4l2_frequency
*freq
)
354 struct fmdev
*fmdev
= video_drvdata(file
);
357 ret
= fmc_get_freq(fmdev
, &freq
->frequency
);
359 fmerr("Failed to get frequency\n");
363 /* Frequency unit of 62.5 Hz*/
364 freq
->frequency
= (u32
) freq
->frequency
* 16;
369 /* Set tuner or modulator radio frequency */
370 static int fm_v4l2_vidioc_s_freq(struct file
*file
, void *priv
,
371 struct v4l2_frequency
*freq
)
373 struct fmdev
*fmdev
= video_drvdata(file
);
376 * As V4L2_TUNER_CAP_LOW is set 1 user sends the frequency
377 * in units of 62.5 Hz.
379 freq
->frequency
= (u32
)(freq
->frequency
/ 16);
381 return fmc_set_freq(fmdev
, freq
->frequency
);
384 /* Set hardware frequency seek. If current mode is NOT RX, set it RX. */
385 static int fm_v4l2_vidioc_s_hw_freq_seek(struct file
*file
, void *priv
,
386 struct v4l2_hw_freq_seek
*seek
)
388 struct fmdev
*fmdev
= video_drvdata(file
);
391 if (fmdev
->curr_fmmode
!= FM_MODE_RX
) {
392 ret
= fmc_set_mode(fmdev
, FM_MODE_RX
);
394 fmerr("Failed to set RX mode\n");
399 ret
= fm_rx_seek(fmdev
, seek
->seek_upward
, seek
->wrap_around
,
402 fmerr("RX seek failed - %d\n", ret
);
406 /* Get modulator attributes. If mode is not TX, return no attributes. */
407 static int fm_v4l2_vidioc_g_modulator(struct file
*file
, void *priv
,
408 struct v4l2_modulator
*mod
)
410 struct fmdev
*fmdev
= video_drvdata(file
);
415 if (fmdev
->curr_fmmode
!= FM_MODE_TX
)
418 mod
->txsubchans
= ((fmdev
->tx_data
.aud_mode
== FM_STEREO_MODE
) ?
419 V4L2_TUNER_SUB_STEREO
: V4L2_TUNER_SUB_MONO
) |
420 ((fmdev
->tx_data
.rds
.flag
== FM_RDS_ENABLE
) ?
421 V4L2_TUNER_SUB_RDS
: 0);
423 mod
->capability
= V4L2_TUNER_CAP_STEREO
| V4L2_TUNER_CAP_RDS
|
429 /* Set modulator attributes. If mode is not TX, set to TX. */
430 static int fm_v4l2_vidioc_s_modulator(struct file
*file
, void *priv
,
431 struct v4l2_modulator
*mod
)
433 struct fmdev
*fmdev
= video_drvdata(file
);
441 if (fmdev
->curr_fmmode
!= FM_MODE_TX
) {
442 ret
= fmc_set_mode(fmdev
, FM_MODE_TX
);
444 fmerr("Failed to set TX mode\n");
449 aud_mode
= (mod
->txsubchans
& V4L2_TUNER_SUB_STEREO
) ?
450 FM_STEREO_MODE
: FM_MONO_MODE
;
451 rds_mode
= (mod
->txsubchans
& V4L2_TUNER_SUB_RDS
) ?
452 FM_RDS_ENABLE
: FM_RDS_DISABLE
;
453 ret
= fm_tx_set_stereo_mono(fmdev
, aud_mode
);
455 fmerr("Failed to set mono/stereo mode for TX\n");
458 ret
= fm_tx_set_rds_mode(fmdev
, rds_mode
);
460 fmerr("Failed to set rds mode for TX\n");
465 static const struct v4l2_file_operations fm_drv_fops
= {
466 .owner
= THIS_MODULE
,
467 .read
= fm_v4l2_fops_read
,
468 .write
= fm_v4l2_fops_write
,
469 .poll
= fm_v4l2_fops_poll
,
470 .unlocked_ioctl
= video_ioctl2
,
471 .open
= fm_v4l2_fops_open
,
472 .release
= fm_v4l2_fops_release
,
475 static const struct v4l2_ctrl_ops fm_ctrl_ops
= {
476 .s_ctrl
= fm_v4l2_s_ctrl
,
477 .g_volatile_ctrl
= fm_g_volatile_ctrl
,
479 static const struct v4l2_ioctl_ops fm_drv_ioctl_ops
= {
480 .vidioc_querycap
= fm_v4l2_vidioc_querycap
,
481 .vidioc_g_audio
= fm_v4l2_vidioc_g_audio
,
482 .vidioc_s_audio
= fm_v4l2_vidioc_s_audio
,
483 .vidioc_g_tuner
= fm_v4l2_vidioc_g_tuner
,
484 .vidioc_s_tuner
= fm_v4l2_vidioc_s_tuner
,
485 .vidioc_g_frequency
= fm_v4l2_vidioc_g_freq
,
486 .vidioc_s_frequency
= fm_v4l2_vidioc_s_freq
,
487 .vidioc_s_hw_freq_seek
= fm_v4l2_vidioc_s_hw_freq_seek
,
488 .vidioc_g_modulator
= fm_v4l2_vidioc_g_modulator
,
489 .vidioc_s_modulator
= fm_v4l2_vidioc_s_modulator
492 /* V4L2 RADIO device parent structure */
493 static struct video_device fm_viddev_template
= {
494 .fops
= &fm_drv_fops
,
495 .ioctl_ops
= &fm_drv_ioctl_ops
,
497 .release
= video_device_release
,
500 int fm_v4l2_init_video_device(struct fmdev
*fmdev
, int radio_nr
)
502 struct v4l2_ctrl
*ctrl
;
505 /* Init mutex for core locking */
506 mutex_init(&fmdev
->mutex
);
508 /* Allocate new video device */
509 gradio_dev
= video_device_alloc();
510 if (NULL
== gradio_dev
) {
511 fmerr("Can't allocate video device\n");
515 /* Setup FM driver's V4L2 properties */
516 memcpy(gradio_dev
, &fm_viddev_template
, sizeof(fm_viddev_template
));
518 video_set_drvdata(gradio_dev
, fmdev
);
520 gradio_dev
->lock
= &fmdev
->mutex
;
522 /* Register with V4L2 subsystem as RADIO device */
523 if (video_register_device(gradio_dev
, VFL_TYPE_RADIO
, radio_nr
)) {
524 video_device_release(gradio_dev
);
525 fmerr("Could not register video device\n");
529 fmdev
->radio_dev
= gradio_dev
;
531 /* Register to v4l2 ctrl handler framework */
532 fmdev
->radio_dev
->ctrl_handler
= &fmdev
->ctrl_handler
;
534 ret
= v4l2_ctrl_handler_init(&fmdev
->ctrl_handler
, 5);
536 fmerr("(fmdev): Can't init ctrl handler\n");
537 v4l2_ctrl_handler_free(&fmdev
->ctrl_handler
);
542 * Following controls are handled by V4L2 control framework.
543 * Added in ascending ID order.
545 v4l2_ctrl_new_std(&fmdev
->ctrl_handler
, &fm_ctrl_ops
,
546 V4L2_CID_AUDIO_VOLUME
, FM_RX_VOLUME_MIN
,
547 FM_RX_VOLUME_MAX
, 1, FM_RX_VOLUME_MAX
);
549 v4l2_ctrl_new_std(&fmdev
->ctrl_handler
, &fm_ctrl_ops
,
550 V4L2_CID_AUDIO_MUTE
, 0, 1, 1, 1);
552 v4l2_ctrl_new_std_menu(&fmdev
->ctrl_handler
, &fm_ctrl_ops
,
553 V4L2_CID_TUNE_PREEMPHASIS
, V4L2_PREEMPHASIS_75_uS
,
554 0, V4L2_PREEMPHASIS_75_uS
);
556 v4l2_ctrl_new_std(&fmdev
->ctrl_handler
, &fm_ctrl_ops
,
557 V4L2_CID_TUNE_POWER_LEVEL
, FM_PWR_LVL_LOW
,
558 FM_PWR_LVL_HIGH
, 1, FM_PWR_LVL_HIGH
);
560 ctrl
= v4l2_ctrl_new_std(&fmdev
->ctrl_handler
, &fm_ctrl_ops
,
561 V4L2_CID_TUNE_ANTENNA_CAPACITOR
, 0,
565 ctrl
->flags
|= V4L2_CTRL_FLAG_VOLATILE
;
570 void *fm_v4l2_deinit_video_device(void)
575 fmdev
= video_get_drvdata(gradio_dev
);
577 /* Unregister to v4l2 ctrl handler framework*/
578 v4l2_ctrl_handler_free(&fmdev
->ctrl_handler
);
580 /* Unregister RADIO device from V4L2 subsystem */
581 video_unregister_device(gradio_dev
);