1 /* zoltrix radio plus driver for Linux radio support
2 * (c) 1998 C. van Schaik <carl@leg.uct.ac.za>
5 * Due to the inconsistency in reading from the signal flags
6 * it is difficult to get an accurate tuned signal.
8 * It seems that the card is not linear to 0 volume. It cuts off
9 * at a low volume, and it is not possible (at least I have not found)
10 * to get fine volume control over the low volume range.
12 * Some code derived from code by Romolo Manfredini
15 * 1999-05-06 - (C. van Schaik)
16 * - Make signal strength and stereo scans
17 * kinder to cpu while in delay
18 * 1999-01-05 - (C. van Schaik)
19 * - Changed tuning to 1/160Mhz accuracy
20 * - Added stereo support
21 * (card defaults to stereo)
22 * (can explicitly force mono on the card)
23 * (can detect if station is in stereo)
24 * - Added unmute function
25 * - Reworked ioctl functions
26 * 2002-07-15 - Fix Stereo typo
28 * 2006-07-24 - Converted to V4L2 API
29 * by Mauro Carvalho Chehab <mchehab@infradead.org>
32 #include <linux/module.h> /* Modules */
33 #include <linux/init.h> /* Initdata */
34 #include <linux/ioport.h> /* request_region */
35 #include <linux/delay.h> /* udelay, msleep */
36 #include <linux/videodev2.h> /* kernel radio structs */
37 #include <linux/mutex.h>
38 #include <linux/io.h> /* outb, outb_p */
39 #include <media/v4l2-device.h>
40 #include <media/v4l2-ioctl.h>
42 MODULE_AUTHOR("C.van Schaik");
43 MODULE_DESCRIPTION("A driver for the Zoltrix Radio Plus.");
44 MODULE_LICENSE("GPL");
45 MODULE_VERSION("0.0.3");
47 #ifndef CONFIG_RADIO_ZOLTRIX_PORT
48 #define CONFIG_RADIO_ZOLTRIX_PORT -1
51 static int io
= CONFIG_RADIO_ZOLTRIX_PORT
;
52 static int radio_nr
= -1;
54 module_param(io
, int, 0);
55 MODULE_PARM_DESC(io
, "I/O address of the Zoltrix Radio Plus (0x20c or 0x30c)");
56 module_param(radio_nr
, int, 0);
59 struct v4l2_device v4l2_dev
;
60 struct video_device vdev
;
63 unsigned long curfreq
;
69 static struct zoltrix zoltrix_card
;
71 static int zol_setvol(struct zoltrix
*zol
, int vol
)
77 mutex_lock(&zol
->lock
);
81 inb(zol
->io
+ 3); /* Zoltrix needs to be read to confirm */
82 mutex_unlock(&zol
->lock
);
86 outb(zol
->curvol
-1, zol
->io
);
89 mutex_unlock(&zol
->lock
);
93 static void zol_mute(struct zoltrix
*zol
)
96 mutex_lock(&zol
->lock
);
99 inb(zol
->io
+ 3); /* Zoltrix needs to be read to confirm */
100 mutex_unlock(&zol
->lock
);
103 static void zol_unmute(struct zoltrix
*zol
)
106 zol_setvol(zol
, zol
->curvol
);
109 static int zol_setfreq(struct zoltrix
*zol
, unsigned long freq
)
111 /* tunes the radio to the desired frequency */
112 struct v4l2_device
*v4l2_dev
= &zol
->v4l2_dev
;
113 unsigned long long bitmask
, f
, m
;
114 unsigned int stereo
= zol
->stereo
;
118 v4l2_warn(v4l2_dev
, "cannot set a frequency of 0.\n");
122 m
= (freq
/ 160 - 8800) * 2;
123 f
= (unsigned long long)m
+ 0x4d1c;
125 bitmask
= 0xc480402c10080000ull
;
128 mutex_lock(&zol
->lock
);
134 inb(zol
->io
+ 3); /* Zoltrix needs to be read to confirm */
139 bitmask
= (bitmask
^ ((f
& 0xff) << 47) ^ ((f
& 0xff00) << 30) ^ (stereo
<< 31));
141 if ((bitmask
& 0x8000000000000000ull
) != 0) {
158 /* termination sequence */
174 mutex_unlock(&zol
->lock
);
177 zol_setvol(zol
, zol
->curvol
);
181 /* Get signal strength */
182 static int zol_getsigstr(struct zoltrix
*zol
)
186 mutex_lock(&zol
->lock
);
187 outb(0x00, zol
->io
); /* This stuff I found to do nothing */
188 outb(zol
->curvol
, zol
->io
);
195 mutex_unlock(&zol
->lock
);
200 /* I found this out by playing with a binary scanner on the card io */
201 return a
== 0xcf || a
== 0xdf || a
== 0xef;
204 static int zol_is_stereo(struct zoltrix
*zol
)
208 mutex_lock(&zol
->lock
);
211 outb(zol
->curvol
, zol
->io
);
218 mutex_unlock(&zol
->lock
);
220 return x1
== x2
&& x1
== 0xcf;
223 static int vidioc_querycap(struct file
*file
, void *priv
,
224 struct v4l2_capability
*v
)
226 strlcpy(v
->driver
, "radio-zoltrix", sizeof(v
->driver
));
227 strlcpy(v
->card
, "Zoltrix Radio", sizeof(v
->card
));
228 strlcpy(v
->bus_info
, "ISA", sizeof(v
->bus_info
));
229 v
->capabilities
= V4L2_CAP_TUNER
| V4L2_CAP_RADIO
;
233 static int vidioc_g_tuner(struct file
*file
, void *priv
,
234 struct v4l2_tuner
*v
)
236 struct zoltrix
*zol
= video_drvdata(file
);
241 strlcpy(v
->name
, "FM", sizeof(v
->name
));
242 v
->type
= V4L2_TUNER_RADIO
;
243 v
->rangelow
= 88 * 16000;
244 v
->rangehigh
= 108 * 16000;
245 v
->rxsubchans
= V4L2_TUNER_SUB_MONO
| V4L2_TUNER_SUB_STEREO
;
246 v
->capability
= V4L2_TUNER_CAP_LOW
;
247 if (zol_is_stereo(zol
))
248 v
->audmode
= V4L2_TUNER_MODE_STEREO
;
250 v
->audmode
= V4L2_TUNER_MODE_MONO
;
251 v
->signal
= 0xFFFF * zol_getsigstr(zol
);
255 static int vidioc_s_tuner(struct file
*file
, void *priv
,
256 struct v4l2_tuner
*v
)
258 return v
->index
? -EINVAL
: 0;
261 static int vidioc_s_frequency(struct file
*file
, void *priv
,
262 struct v4l2_frequency
*f
)
264 struct zoltrix
*zol
= video_drvdata(file
);
266 if (f
->tuner
!= 0 || f
->type
!= V4L2_TUNER_RADIO
)
268 if (zol_setfreq(zol
, f
->frequency
) != 0)
273 static int vidioc_g_frequency(struct file
*file
, void *priv
,
274 struct v4l2_frequency
*f
)
276 struct zoltrix
*zol
= video_drvdata(file
);
280 f
->type
= V4L2_TUNER_RADIO
;
281 f
->frequency
= zol
->curfreq
;
285 static int vidioc_queryctrl(struct file
*file
, void *priv
,
286 struct v4l2_queryctrl
*qc
)
289 case V4L2_CID_AUDIO_MUTE
:
290 return v4l2_ctrl_query_fill(qc
, 0, 1, 1, 1);
291 case V4L2_CID_AUDIO_VOLUME
:
292 return v4l2_ctrl_query_fill(qc
, 0, 65535, 4096, 65535);
297 static int vidioc_g_ctrl(struct file
*file
, void *priv
,
298 struct v4l2_control
*ctrl
)
300 struct zoltrix
*zol
= video_drvdata(file
);
303 case V4L2_CID_AUDIO_MUTE
:
304 ctrl
->value
= zol
->muted
;
306 case V4L2_CID_AUDIO_VOLUME
:
307 ctrl
->value
= zol
->curvol
* 4096;
313 static int vidioc_s_ctrl(struct file
*file
, void *priv
,
314 struct v4l2_control
*ctrl
)
316 struct zoltrix
*zol
= video_drvdata(file
);
319 case V4L2_CID_AUDIO_MUTE
:
324 zol_setvol(zol
, zol
->curvol
);
327 case V4L2_CID_AUDIO_VOLUME
:
328 zol_setvol(zol
, ctrl
->value
/ 4096);
332 if (zol_setfreq(zol
, zol
->curfreq
) != 0)
335 /* FIXME: Implement stereo/mono switch on V4L2 */
336 if (v
->mode
& VIDEO_SOUND_STEREO
) {
338 zol_setfreq(zol
, zol
->curfreq
);
340 if (v
->mode
& VIDEO_SOUND_MONO
) {
342 zol_setfreq(zol
, zol
->curfreq
);
348 static int vidioc_g_input(struct file
*filp
, void *priv
, unsigned int *i
)
354 static int vidioc_s_input(struct file
*filp
, void *priv
, unsigned int i
)
356 return i
? -EINVAL
: 0;
359 static int vidioc_g_audio(struct file
*file
, void *priv
,
360 struct v4l2_audio
*a
)
363 strlcpy(a
->name
, "Radio", sizeof(a
->name
));
364 a
->capability
= V4L2_AUDCAP_STEREO
;
368 static int vidioc_s_audio(struct file
*file
, void *priv
,
369 struct v4l2_audio
*a
)
371 return a
->index
? -EINVAL
: 0;
374 static const struct v4l2_file_operations zoltrix_fops
=
376 .owner
= THIS_MODULE
,
377 .unlocked_ioctl
= video_ioctl2
,
380 static const struct v4l2_ioctl_ops zoltrix_ioctl_ops
= {
381 .vidioc_querycap
= vidioc_querycap
,
382 .vidioc_g_tuner
= vidioc_g_tuner
,
383 .vidioc_s_tuner
= vidioc_s_tuner
,
384 .vidioc_g_audio
= vidioc_g_audio
,
385 .vidioc_s_audio
= vidioc_s_audio
,
386 .vidioc_g_input
= vidioc_g_input
,
387 .vidioc_s_input
= vidioc_s_input
,
388 .vidioc_g_frequency
= vidioc_g_frequency
,
389 .vidioc_s_frequency
= vidioc_s_frequency
,
390 .vidioc_queryctrl
= vidioc_queryctrl
,
391 .vidioc_g_ctrl
= vidioc_g_ctrl
,
392 .vidioc_s_ctrl
= vidioc_s_ctrl
,
395 static int __init
zoltrix_init(void)
397 struct zoltrix
*zol
= &zoltrix_card
;
398 struct v4l2_device
*v4l2_dev
= &zol
->v4l2_dev
;
401 strlcpy(v4l2_dev
->name
, "zoltrix", sizeof(v4l2_dev
->name
));
404 v4l2_err(v4l2_dev
, "You must set an I/O address with io=0x20c or 0x30c\n");
407 if (zol
->io
!= 0x20c && zol
->io
!= 0x30c) {
408 v4l2_err(v4l2_dev
, "invalid port, try 0x20c or 0x30c\n");
412 if (!request_region(zol
->io
, 2, "zoltrix")) {
413 v4l2_err(v4l2_dev
, "port 0x%x already in use\n", zol
->io
);
417 res
= v4l2_device_register(NULL
, v4l2_dev
);
419 release_region(zol
->io
, 2);
420 v4l2_err(v4l2_dev
, "Could not register v4l2_device\n");
424 mutex_init(&zol
->lock
);
426 /* mute card - prevents noisy bootups */
428 /* this ensures that the volume is all the way down */
438 strlcpy(zol
->vdev
.name
, v4l2_dev
->name
, sizeof(zol
->vdev
.name
));
439 zol
->vdev
.v4l2_dev
= v4l2_dev
;
440 zol
->vdev
.fops
= &zoltrix_fops
;
441 zol
->vdev
.ioctl_ops
= &zoltrix_ioctl_ops
;
442 zol
->vdev
.release
= video_device_release_empty
;
443 video_set_drvdata(&zol
->vdev
, zol
);
445 if (video_register_device(&zol
->vdev
, VFL_TYPE_RADIO
, radio_nr
) < 0) {
446 v4l2_device_unregister(v4l2_dev
);
447 release_region(zol
->io
, 2);
450 v4l2_info(v4l2_dev
, "Zoltrix Radio Plus card driver.\n");
455 static void __exit
zoltrix_exit(void)
457 struct zoltrix
*zol
= &zoltrix_card
;
459 video_unregister_device(&zol
->vdev
);
460 v4l2_device_unregister(&zol
->v4l2_dev
);
461 release_region(zol
->io
, 2);
464 module_init(zoltrix_init
);
465 module_exit(zoltrix_exit
);