2 * radio-timb.c Timberdale FPGA Radio driver
3 * Copyright (c) 2009 Intel Corporation
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 #include <media/v4l2-ioctl.h>
21 #include <media/v4l2-device.h>
22 #include <linux/platform_device.h>
23 #include <linux/interrupt.h>
24 #include <linux/slab.h>
25 #include <linux/i2c.h>
26 #include <linux/module.h>
27 #include <media/timb_radio.h>
29 #define DRIVER_NAME "timb-radio"
32 struct timb_radio_platform_data pdata
;
33 struct v4l2_subdev
*sd_tuner
;
34 struct v4l2_subdev
*sd_dsp
;
35 struct video_device video_dev
;
36 struct v4l2_device v4l2_dev
;
41 static int timbradio_vidioc_querycap(struct file
*file
, void *priv
,
42 struct v4l2_capability
*v
)
44 strlcpy(v
->driver
, DRIVER_NAME
, sizeof(v
->driver
));
45 strlcpy(v
->card
, "Timberdale Radio", sizeof(v
->card
));
46 snprintf(v
->bus_info
, sizeof(v
->bus_info
), "platform:"DRIVER_NAME
);
47 v
->capabilities
= V4L2_CAP_TUNER
| V4L2_CAP_RADIO
;
51 static int timbradio_vidioc_g_tuner(struct file
*file
, void *priv
,
54 struct timbradio
*tr
= video_drvdata(file
);
55 return v4l2_subdev_call(tr
->sd_tuner
, tuner
, g_tuner
, v
);
58 static int timbradio_vidioc_s_tuner(struct file
*file
, void *priv
,
61 struct timbradio
*tr
= video_drvdata(file
);
62 return v4l2_subdev_call(tr
->sd_tuner
, tuner
, s_tuner
, v
);
65 static int timbradio_vidioc_g_input(struct file
*filp
, void *priv
,
72 static int timbradio_vidioc_s_input(struct file
*filp
, void *priv
,
75 return i
? -EINVAL
: 0;
78 static int timbradio_vidioc_g_audio(struct file
*file
, void *priv
,
82 strlcpy(a
->name
, "Radio", sizeof(a
->name
));
83 a
->capability
= V4L2_AUDCAP_STEREO
;
87 static int timbradio_vidioc_s_audio(struct file
*file
, void *priv
,
90 return a
->index
? -EINVAL
: 0;
93 static int timbradio_vidioc_s_frequency(struct file
*file
, void *priv
,
94 struct v4l2_frequency
*f
)
96 struct timbradio
*tr
= video_drvdata(file
);
97 return v4l2_subdev_call(tr
->sd_tuner
, tuner
, s_frequency
, f
);
100 static int timbradio_vidioc_g_frequency(struct file
*file
, void *priv
,
101 struct v4l2_frequency
*f
)
103 struct timbradio
*tr
= video_drvdata(file
);
104 return v4l2_subdev_call(tr
->sd_tuner
, tuner
, g_frequency
, f
);
107 static int timbradio_vidioc_queryctrl(struct file
*file
, void *priv
,
108 struct v4l2_queryctrl
*qc
)
110 struct timbradio
*tr
= video_drvdata(file
);
111 return v4l2_subdev_call(tr
->sd_dsp
, core
, queryctrl
, qc
);
114 static int timbradio_vidioc_g_ctrl(struct file
*file
, void *priv
,
115 struct v4l2_control
*ctrl
)
117 struct timbradio
*tr
= video_drvdata(file
);
118 return v4l2_subdev_call(tr
->sd_dsp
, core
, g_ctrl
, ctrl
);
121 static int timbradio_vidioc_s_ctrl(struct file
*file
, void *priv
,
122 struct v4l2_control
*ctrl
)
124 struct timbradio
*tr
= video_drvdata(file
);
125 return v4l2_subdev_call(tr
->sd_dsp
, core
, s_ctrl
, ctrl
);
128 static const struct v4l2_ioctl_ops timbradio_ioctl_ops
= {
129 .vidioc_querycap
= timbradio_vidioc_querycap
,
130 .vidioc_g_tuner
= timbradio_vidioc_g_tuner
,
131 .vidioc_s_tuner
= timbradio_vidioc_s_tuner
,
132 .vidioc_g_frequency
= timbradio_vidioc_g_frequency
,
133 .vidioc_s_frequency
= timbradio_vidioc_s_frequency
,
134 .vidioc_g_input
= timbradio_vidioc_g_input
,
135 .vidioc_s_input
= timbradio_vidioc_s_input
,
136 .vidioc_g_audio
= timbradio_vidioc_g_audio
,
137 .vidioc_s_audio
= timbradio_vidioc_s_audio
,
138 .vidioc_queryctrl
= timbradio_vidioc_queryctrl
,
139 .vidioc_g_ctrl
= timbradio_vidioc_g_ctrl
,
140 .vidioc_s_ctrl
= timbradio_vidioc_s_ctrl
143 static const struct v4l2_file_operations timbradio_fops
= {
144 .owner
= THIS_MODULE
,
145 .unlocked_ioctl
= video_ioctl2
,
148 static int __devinit
timbradio_probe(struct platform_device
*pdev
)
150 struct timb_radio_platform_data
*pdata
= pdev
->dev
.platform_data
;
151 struct timbradio
*tr
;
155 dev_err(&pdev
->dev
, "Platform data missing\n");
160 tr
= kzalloc(sizeof(*tr
), GFP_KERNEL
);
167 mutex_init(&tr
->lock
);
169 strlcpy(tr
->video_dev
.name
, "Timberdale Radio",
170 sizeof(tr
->video_dev
.name
));
171 tr
->video_dev
.fops
= &timbradio_fops
;
172 tr
->video_dev
.ioctl_ops
= &timbradio_ioctl_ops
;
173 tr
->video_dev
.release
= video_device_release_empty
;
174 tr
->video_dev
.minor
= -1;
175 tr
->video_dev
.lock
= &tr
->lock
;
177 strlcpy(tr
->v4l2_dev
.name
, DRIVER_NAME
, sizeof(tr
->v4l2_dev
.name
));
178 err
= v4l2_device_register(NULL
, &tr
->v4l2_dev
);
182 tr
->video_dev
.v4l2_dev
= &tr
->v4l2_dev
;
184 err
= video_register_device(&tr
->video_dev
, VFL_TYPE_RADIO
, -1);
186 dev_err(&pdev
->dev
, "Error reg video\n");
190 video_set_drvdata(&tr
->video_dev
, tr
);
192 platform_set_drvdata(pdev
, tr
);
196 video_device_release_empty(&tr
->video_dev
);
197 v4l2_device_unregister(&tr
->v4l2_dev
);
201 dev_err(&pdev
->dev
, "Failed to register: %d\n", err
);
206 static int __devexit
timbradio_remove(struct platform_device
*pdev
)
208 struct timbradio
*tr
= platform_get_drvdata(pdev
);
210 video_unregister_device(&tr
->video_dev
);
211 video_device_release_empty(&tr
->video_dev
);
213 v4l2_device_unregister(&tr
->v4l2_dev
);
220 static struct platform_driver timbradio_platform_driver
= {
223 .owner
= THIS_MODULE
,
225 .probe
= timbradio_probe
,
226 .remove
= timbradio_remove
,
229 module_platform_driver(timbradio_platform_driver
);
231 MODULE_DESCRIPTION("Timberdale Radio driver");
232 MODULE_AUTHOR("Mocean Laboratories <info@mocean-labs.com>");
233 MODULE_LICENSE("GPL v2");
234 MODULE_VERSION("0.0.2");
235 MODULE_ALIAS("platform:"DRIVER_NAME
);