1 /* radio-aztech.c - Aztech radio card driver for Linux 2.2
3 * Converted to V4L2 API by Mauro Carvalho Chehab <mchehab@infradead.org>
4 * Adapted to support the Video for Linux API by
5 * Russell Kroll <rkroll@exploits.org>. Based on original tuner code by:
9 * Jason Lewis (jlewis@twilight.vtc.vsc.edu)
10 * Scott McGrath (smcgrath@twilight.vtc.vsc.edu)
11 * William McGrath (wmcgrath@twilight.vtc.vsc.edu)
13 * The basis for this code may be found at http://bigbang.vtc.vsc.edu/fmradio/
14 * along with more information on the card itself.
17 * 1999-02-24 Russell Kroll <rkroll@exploits.org>
18 * Fine tuning/VIDEO_TUNER_LOW
19 * Range expanded to 87-108 MHz (from 87.9-107.8)
21 * Notable changes from the original source:
22 * - includes stripped down to the essentials
23 * - for loops used as delays replaced with udelay()
24 * - #defines removed, changed to static values
25 * - tuning structure changed - no more character arrays, other changes
28 #include <linux/module.h> /* Modules */
29 #include <linux/init.h> /* Initdata */
30 #include <linux/ioport.h> /* request_region */
31 #include <linux/delay.h> /* udelay */
32 #include <asm/io.h> /* outb, outb_p */
33 #include <asm/uaccess.h> /* copy to/from user */
34 #include <linux/videodev2.h> /* kernel radio structs */
35 #include <media/v4l2-common.h>
37 #include <linux/version.h> /* for KERNEL_VERSION MACRO */
38 #define RADIO_VERSION KERNEL_VERSION(0,0,2)
40 static struct v4l2_queryctrl radio_qctrl
[] = {
42 .id
= V4L2_CID_AUDIO_MUTE
,
47 .type
= V4L2_CTRL_TYPE_BOOLEAN
,
49 .id
= V4L2_CID_AUDIO_VOLUME
,
54 .default_value
= 0xff,
55 .type
= V4L2_CTRL_TYPE_INTEGER
,
59 /* acceptable ports: 0x350 (JP3 shorted), 0x358 (JP3 open) */
61 #ifndef CONFIG_RADIO_AZTECH_PORT
62 #define CONFIG_RADIO_AZTECH_PORT -1
65 static int io
= CONFIG_RADIO_AZTECH_PORT
;
66 static int radio_nr
= -1;
67 static int radio_wait_time
= 1000;
68 static struct mutex lock
;
73 unsigned long curfreq
;
77 static int volconvert(int level
)
79 level
>>=14; /* Map 16bits down to 2 bit */
82 /* convert to card-friendly values */
94 return 0; /* Quieten gcc */
97 static void send_0_byte (struct az_device
*dev
)
99 udelay(radio_wait_time
);
100 outb_p(2+volconvert(dev
->curvol
), io
);
101 outb_p(64+2+volconvert(dev
->curvol
), io
);
104 static void send_1_byte (struct az_device
*dev
)
106 udelay (radio_wait_time
);
107 outb_p(128+2+volconvert(dev
->curvol
), io
);
108 outb_p(128+64+2+volconvert(dev
->curvol
), io
);
111 static int az_setvol(struct az_device
*dev
, int vol
)
114 outb (volconvert(vol
), io
);
119 /* thanks to Michael Dwyer for giving me a dose of clues in
120 * the signal strength department..
122 * This card has a stereo bit - bit 0 set = mono, not set = stereo
123 * It also has a "signal" bit - bit 1 set = bad signal, not set = good
127 static int az_getsigstr(struct az_device
*dev
)
129 if (inb(io
) & 2) /* bit set = no signal present */
131 return 1; /* signal present */
134 static int az_getstereo(struct az_device
*dev
)
136 if (inb(io
) & 1) /* bit set = mono */
138 return 1; /* stereo */
141 static int az_setfreq(struct az_device
*dev
, unsigned long frequency
)
145 frequency
+= 171200; /* Add 10.7 MHz IF */
146 frequency
/= 800; /* Convert to 50 kHz units */
150 send_0_byte (dev
); /* 0: LSB of frequency */
152 for (i
= 0; i
< 13; i
++) /* : frequency bits (1-13) */
153 if (frequency
& (1 << i
))
158 send_0_byte (dev
); /* 14: test bit - always 0 */
159 send_0_byte (dev
); /* 15: test bit - always 0 */
160 send_0_byte (dev
); /* 16: band data 0 - always 0 */
161 if (dev
->stereo
) /* 17: stereo (1 to enable) */
166 send_1_byte (dev
); /* 18: band data 1 - unknown */
167 send_0_byte (dev
); /* 19: time base - always 0 */
168 send_0_byte (dev
); /* 20: spacing (0 = 25 kHz) */
169 send_1_byte (dev
); /* 21: spacing (1 = 25 kHz) */
170 send_0_byte (dev
); /* 22: spacing (0 = 25 kHz) */
171 send_1_byte (dev
); /* 23: AM/FM (FM = 1, always) */
173 /* latch frequency */
175 udelay (radio_wait_time
);
176 outb_p(128+64+volconvert(dev
->curvol
), io
);
183 static int vidioc_querycap (struct file
*file
, void *priv
,
184 struct v4l2_capability
*v
)
186 strlcpy(v
->driver
, "radio-aztech", sizeof (v
->driver
));
187 strlcpy(v
->card
, "Aztech Radio", sizeof (v
->card
));
188 sprintf(v
->bus_info
,"ISA");
189 v
->version
= RADIO_VERSION
;
190 v
->capabilities
= V4L2_CAP_TUNER
;
194 static int vidioc_g_tuner (struct file
*file
, void *priv
,
195 struct v4l2_tuner
*v
)
197 struct video_device
*dev
= video_devdata(file
);
198 struct az_device
*az
= dev
->priv
;
203 strcpy(v
->name
, "FM");
204 v
->type
= V4L2_TUNER_RADIO
;
206 v
->rangelow
=(87*16000);
207 v
->rangehigh
=(108*16000);
208 v
->rxsubchans
=V4L2_TUNER_SUB_MONO
|V4L2_TUNER_SUB_STEREO
;
209 v
->capability
=V4L2_TUNER_CAP_LOW
;
211 v
->audmode
= V4L2_TUNER_MODE_STEREO
;
213 v
->audmode
= V4L2_TUNER_MODE_MONO
;
214 v
->signal
=0xFFFF*az_getsigstr(az
);
220 static int vidioc_s_tuner (struct file
*file
, void *priv
,
221 struct v4l2_tuner
*v
)
229 static int vidioc_g_audio (struct file
*file
, void *priv
,
230 struct v4l2_audio
*a
)
235 strcpy(a
->name
, "Radio");
236 a
->capability
= V4L2_AUDCAP_STEREO
;
240 static int vidioc_g_input(struct file
*filp
, void *priv
, unsigned int *i
)
246 static int vidioc_s_input(struct file
*filp
, void *priv
, unsigned int i
)
254 static int vidioc_s_audio (struct file
*file
, void *priv
,
255 struct v4l2_audio
*a
)
263 static int vidioc_s_frequency (struct file
*file
, void *priv
,
264 struct v4l2_frequency
*f
)
266 struct video_device
*dev
= video_devdata(file
);
267 struct az_device
*az
= dev
->priv
;
269 az
->curfreq
= f
->frequency
;
270 az_setfreq(az
, az
->curfreq
);
274 static int vidioc_g_frequency (struct file
*file
, void *priv
,
275 struct v4l2_frequency
*f
)
277 struct video_device
*dev
= video_devdata(file
);
278 struct az_device
*az
= dev
->priv
;
280 f
->type
= V4L2_TUNER_RADIO
;
281 f
->frequency
= az
->curfreq
;
286 static int vidioc_queryctrl (struct file
*file
, void *priv
,
287 struct v4l2_queryctrl
*qc
)
291 for (i
= 0; i
< ARRAY_SIZE(radio_qctrl
); i
++) {
292 if (qc
->id
&& qc
->id
== radio_qctrl
[i
].id
) {
293 memcpy(qc
, &(radio_qctrl
[i
]),
301 static int vidioc_g_ctrl (struct file
*file
, void *priv
,
302 struct v4l2_control
*ctrl
)
304 struct video_device
*dev
= video_devdata(file
);
305 struct az_device
*az
= dev
->priv
;
308 case V4L2_CID_AUDIO_MUTE
:
314 case V4L2_CID_AUDIO_VOLUME
:
315 ctrl
->value
=az
->curvol
* 6554;
321 static int vidioc_s_ctrl (struct file
*file
, void *priv
,
322 struct v4l2_control
*ctrl
)
324 struct video_device
*dev
= video_devdata(file
);
325 struct az_device
*az
= dev
->priv
;
328 case V4L2_CID_AUDIO_MUTE
:
332 az_setvol(az
,az
->curvol
);
335 case V4L2_CID_AUDIO_VOLUME
:
336 az_setvol(az
,ctrl
->value
);
342 static struct az_device aztech_unit
;
344 static const struct file_operations aztech_fops
= {
345 .owner
= THIS_MODULE
,
346 .open
= video_exclusive_open
,
347 .release
= video_exclusive_release
,
348 .ioctl
= video_ioctl2
,
349 .compat_ioctl
= v4l_compat_ioctl32
,
353 static struct video_device aztech_radio
=
355 .owner
= THIS_MODULE
,
356 .name
= "Aztech radio",
357 .type
= VID_TYPE_TUNER
,
359 .fops
= &aztech_fops
,
360 .vidioc_querycap
= vidioc_querycap
,
361 .vidioc_g_tuner
= vidioc_g_tuner
,
362 .vidioc_s_tuner
= vidioc_s_tuner
,
363 .vidioc_g_audio
= vidioc_g_audio
,
364 .vidioc_s_audio
= vidioc_s_audio
,
365 .vidioc_g_input
= vidioc_g_input
,
366 .vidioc_s_input
= vidioc_s_input
,
367 .vidioc_g_frequency
= vidioc_g_frequency
,
368 .vidioc_s_frequency
= vidioc_s_frequency
,
369 .vidioc_queryctrl
= vidioc_queryctrl
,
370 .vidioc_g_ctrl
= vidioc_g_ctrl
,
371 .vidioc_s_ctrl
= vidioc_s_ctrl
,
374 module_param_named(debug
,aztech_radio
.debug
, int, 0644);
375 MODULE_PARM_DESC(debug
,"activates debug info");
377 static int __init
aztech_init(void)
381 printk(KERN_ERR
"You must set an I/O address with io=0x???\n");
385 if (!request_region(io
, 2, "aztech"))
387 printk(KERN_ERR
"aztech: port 0x%x already in use\n", io
);
392 aztech_radio
.priv
=&aztech_unit
;
394 if(video_register_device(&aztech_radio
, VFL_TYPE_RADIO
, radio_nr
)==-1)
396 release_region(io
,2);
400 printk(KERN_INFO
"Aztech radio card driver v1.00/19990224 rkroll@exploits.org\n");
401 /* mute card - prevents noisy bootups */
406 MODULE_AUTHOR("Russell Kroll, Quay Lu, Donald Song, Jason Lewis, Scott McGrath, William McGrath");
407 MODULE_DESCRIPTION("A driver for the Aztech radio card.");
408 MODULE_LICENSE("GPL");
410 module_param(io
, int, 0);
411 module_param(radio_nr
, int, 0);
412 MODULE_PARM_DESC(io
, "I/O address of the Aztech card (0x350 or 0x358)");
414 static void __exit
aztech_cleanup(void)
416 video_unregister_device(&aztech_radio
);
417 release_region(io
,2);
420 module_init(aztech_init
);
421 module_exit(aztech_cleanup
);