1 /* Typhoon Radio Card driver for radio support
2 * (c) 1999 Dr. Henrik Seidel <Henrik.Seidel@gmx.de>
5 * http://194.18.155.92/idc/prod2.idc?nr=50753&lang=e
7 * Notes on the hardware
9 * This card has two output sockets, one for speakers and one for line.
10 * The speaker output has volume control, but only in four discrete
11 * steps. The line output has neither volume control nor mute.
13 * The card has auto-stereo according to its manual, although it all
14 * sounds mono to me (even with the Win/DOS drivers). Maybe it's my
15 * antenna - I really don't know for sure.
17 * Frequency control is done digitally.
19 * Volume control is done digitally, but there are only four different
20 * possible values. So you should better always turn the volume up and
21 * use line control. I got the best results by connecting line output
22 * to the sound card microphone input. For such a configuration the
23 * volume control has no effect, since volume control only influences
26 * There is no explicit mute/unmute. So I set the radio frequency to a
27 * value where I do expect just noise and turn the speaker volume down.
28 * The frequency change is necessary since the card never seems to be
32 #include <linux/module.h> /* Modules */
33 #include <linux/init.h> /* Initdata */
34 #include <linux/ioport.h> /* request_region */
35 #include <linux/proc_fs.h> /* radio card status report */
36 #include <asm/io.h> /* outb, outb_p */
37 #include <asm/uaccess.h> /* copy to/from user */
38 #include <linux/videodev.h> /* kernel radio structs */
39 #include <linux/config.h> /* CONFIG_RADIO_TYPHOON_* */
41 #define BANNER "Typhoon Radio Card driver v0.1\n"
43 #ifndef CONFIG_RADIO_TYPHOON_PORT
44 #define CONFIG_RADIO_TYPHOON_PORT -1
47 #ifndef CONFIG_RADIO_TYPHOON_MUTEFREQ
48 #define CONFIG_RADIO_TYPHOON_MUTEFREQ 0
51 #ifndef CONFIG_PROC_FS
52 #undef CONFIG_RADIO_TYPHOON_PROC_FS
55 struct typhoon_device
{
60 unsigned long curfreq
;
61 unsigned long mutefreq
;
65 static void typhoon_setvol_generic(struct typhoon_device
*dev
, int vol
);
66 static int typhoon_setfreq_generic(struct typhoon_device
*dev
,
67 unsigned long frequency
);
68 static int typhoon_setfreq(struct typhoon_device
*dev
, unsigned long frequency
);
69 static void typhoon_mute(struct typhoon_device
*dev
);
70 static void typhoon_unmute(struct typhoon_device
*dev
);
71 static int typhoon_setvol(struct typhoon_device
*dev
, int vol
);
72 static int typhoon_ioctl(struct inode
*inode
, struct file
*file
,
73 unsigned int cmd
, unsigned long arg
);
74 #ifdef CONFIG_RADIO_TYPHOON_PROC_FS
75 static int typhoon_get_info(char *buf
, char **start
, off_t offset
, int len
);
78 static void typhoon_setvol_generic(struct typhoon_device
*dev
, int vol
)
80 mutex_lock(&dev
->lock
);
81 vol
>>= 14; /* Map 16 bit to 2 bit */
83 outb_p(vol
/ 2, dev
->iobase
); /* Set the volume, high bit. */
84 outb_p(vol
% 2, dev
->iobase
+ 2); /* Set the volume, low bit. */
85 mutex_unlock(&dev
->lock
);
88 static int typhoon_setfreq_generic(struct typhoon_device
*dev
,
89 unsigned long frequency
)
95 * The frequency transfer curve is not linear. The best fit I could
98 * outval = -155 + exp((f + 15.55) * 0.057))
100 * where frequency f is in MHz. Since we don't have exp in the kernel,
101 * I approximate this function by a third order polynomial.
105 mutex_lock(&dev
->lock
);
107 outval
= (x
* x
+ 2500) / 5000;
108 outval
= (outval
* x
+ 5000) / 10000;
109 outval
-= (10 * x
* x
+ 10433) / 20866;
110 outval
+= 4 * x
- 11505;
112 outb_p((outval
>> 8) & 0x01, dev
->iobase
+ 4);
113 outb_p(outval
>> 9, dev
->iobase
+ 6);
114 outb_p(outval
& 0xff, dev
->iobase
+ 8);
115 mutex_unlock(&dev
->lock
);
120 static int typhoon_setfreq(struct typhoon_device
*dev
, unsigned long frequency
)
122 typhoon_setfreq_generic(dev
, frequency
);
123 dev
->curfreq
= frequency
;
127 static void typhoon_mute(struct typhoon_device
*dev
)
131 typhoon_setvol_generic(dev
, 0);
132 typhoon_setfreq_generic(dev
, dev
->mutefreq
);
136 static void typhoon_unmute(struct typhoon_device
*dev
)
140 typhoon_setfreq_generic(dev
, dev
->curfreq
);
141 typhoon_setvol_generic(dev
, dev
->curvol
);
145 static int typhoon_setvol(struct typhoon_device
*dev
, int vol
)
147 if (dev
->muted
&& vol
!= 0) { /* user is unmuting the card */
152 if (vol
== dev
->curvol
) /* requested volume == current */
155 if (vol
== 0) { /* volume == 0 means mute the card */
160 typhoon_setvol_generic(dev
, vol
);
166 static int typhoon_do_ioctl(struct inode
*inode
, struct file
*file
,
167 unsigned int cmd
, void *arg
)
169 struct video_device
*dev
= video_devdata(file
);
170 struct typhoon_device
*typhoon
= dev
->priv
;
175 struct video_capability
*v
= arg
;
176 memset(v
,0,sizeof(*v
));
177 v
->type
= VID_TYPE_TUNER
;
180 strcpy(v
->name
, "Typhoon Radio");
185 struct video_tuner
*v
= arg
;
186 if (v
->tuner
) /* Only 1 tuner */
188 v
->rangelow
= 875 * 1600;
189 v
->rangehigh
= 1080 * 1600;
190 v
->flags
= VIDEO_TUNER_LOW
;
191 v
->mode
= VIDEO_MODE_AUTO
;
192 v
->signal
= 0xFFFF; /* We can't get the signal strength */
193 strcpy(v
->name
, "FM");
198 struct video_tuner
*v
= arg
;
201 /* Only 1 tuner so no setting needed ! */
206 unsigned long *freq
= arg
;
207 *freq
= typhoon
->curfreq
;
212 unsigned long *freq
= arg
;
213 typhoon
->curfreq
= *freq
;
214 typhoon_setfreq(typhoon
, typhoon
->curfreq
);
219 struct video_audio
*v
= arg
;
220 memset(v
, 0, sizeof(*v
));
221 v
->flags
|= VIDEO_AUDIO_MUTABLE
| VIDEO_AUDIO_VOLUME
;
222 v
->mode
|= VIDEO_SOUND_MONO
;
223 v
->volume
= typhoon
->curvol
;
225 strcpy(v
->name
, "Typhoon Radio");
230 struct video_audio
*v
= arg
;
233 if (v
->flags
& VIDEO_AUDIO_MUTE
)
234 typhoon_mute(typhoon
);
236 typhoon_unmute(typhoon
);
237 if (v
->flags
& VIDEO_AUDIO_VOLUME
)
238 typhoon_setvol(typhoon
, v
->volume
);
246 static int typhoon_ioctl(struct inode
*inode
, struct file
*file
,
247 unsigned int cmd
, unsigned long arg
)
249 return video_usercopy(inode
, file
, cmd
, arg
, typhoon_do_ioctl
);
252 static struct typhoon_device typhoon_unit
=
254 .iobase
= CONFIG_RADIO_TYPHOON_PORT
,
255 .curfreq
= CONFIG_RADIO_TYPHOON_MUTEFREQ
,
256 .mutefreq
= CONFIG_RADIO_TYPHOON_MUTEFREQ
,
259 static struct file_operations typhoon_fops
= {
260 .owner
= THIS_MODULE
,
261 .open
= video_exclusive_open
,
262 .release
= video_exclusive_release
,
263 .ioctl
= typhoon_ioctl
,
264 .compat_ioctl
= v4l_compat_ioctl32
,
268 static struct video_device typhoon_radio
=
270 .owner
= THIS_MODULE
,
271 .name
= "Typhoon Radio",
272 .type
= VID_TYPE_TUNER
,
273 .hardware
= VID_HARDWARE_TYPHOON
,
274 .fops
= &typhoon_fops
,
277 #ifdef CONFIG_RADIO_TYPHOON_PROC_FS
279 static int typhoon_get_info(char *buf
, char **start
, off_t offset
, int len
)
284 #define MODULEPROCSTRING "Driver loaded as a module"
286 #define MODULEPROCSTRING "Driver compiled into kernel"
289 /* output must be kept under PAGE_SIZE */
290 out
+= sprintf(out
, BANNER
);
291 out
+= sprintf(out
, "Load type: " MODULEPROCSTRING
"\n\n");
292 out
+= sprintf(out
, "frequency = %lu kHz\n",
293 typhoon_unit
.curfreq
>> 4);
294 out
+= sprintf(out
, "volume = %d\n", typhoon_unit
.curvol
);
295 out
+= sprintf(out
, "mute = %s\n", typhoon_unit
.muted
?
297 out
+= sprintf(out
, "iobase = 0x%x\n", typhoon_unit
.iobase
);
298 out
+= sprintf(out
, "mute frequency = %lu kHz\n",
299 typhoon_unit
.mutefreq
>> 4);
303 #endif /* CONFIG_RADIO_TYPHOON_PROC_FS */
305 MODULE_AUTHOR("Dr. Henrik Seidel");
306 MODULE_DESCRIPTION("A driver for the Typhoon radio card (a.k.a. EcoRadio).");
307 MODULE_LICENSE("GPL");
310 static int radio_nr
= -1;
312 module_param(io
, int, 0);
313 MODULE_PARM_DESC(io
, "I/O address of the Typhoon card (0x316 or 0x336)");
314 module_param(radio_nr
, int, 0);
317 static unsigned long mutefreq
= 0;
318 module_param(mutefreq
, ulong
, 0);
319 MODULE_PARM_DESC(mutefreq
, "Frequency used when muting the card (in kHz)");
322 static int __init
typhoon_init(void)
326 printk(KERN_ERR
"radio-typhoon: You must set an I/O address with io=0x316 or io=0x336\n");
329 typhoon_unit
.iobase
= io
;
331 if (mutefreq
< 87000 || mutefreq
> 108500) {
332 printk(KERN_ERR
"radio-typhoon: You must set a frequency (in kHz) used when muting the card,\n");
333 printk(KERN_ERR
"radio-typhoon: e.g. with \"mutefreq=87500\" (87000 <= mutefreq <= 108500)\n");
336 typhoon_unit
.mutefreq
= mutefreq
;
339 printk(KERN_INFO BANNER
);
340 mutex_init(&typhoon_unit
.lock
);
341 io
= typhoon_unit
.iobase
;
342 if (!request_region(io
, 8, "typhoon")) {
343 printk(KERN_ERR
"radio-typhoon: port 0x%x already in use\n",
344 typhoon_unit
.iobase
);
348 typhoon_radio
.priv
= &typhoon_unit
;
349 if (video_register_device(&typhoon_radio
, VFL_TYPE_RADIO
, radio_nr
) == -1)
351 release_region(io
, 8);
354 printk(KERN_INFO
"radio-typhoon: port 0x%x.\n", typhoon_unit
.iobase
);
355 printk(KERN_INFO
"radio-typhoon: mute frequency is %lu kHz.\n",
356 typhoon_unit
.mutefreq
);
357 typhoon_unit
.mutefreq
<<= 4;
359 /* mute card - prevents noisy bootups */
360 typhoon_mute(&typhoon_unit
);
362 #ifdef CONFIG_RADIO_TYPHOON_PROC_FS
363 if (!create_proc_info_entry("driver/radio-typhoon", 0, NULL
,
365 printk(KERN_ERR
"radio-typhoon: registering /proc/driver/radio-typhoon failed\n");
371 static void __exit
typhoon_cleanup_module(void)
374 #ifdef CONFIG_RADIO_TYPHOON_PROC_FS
375 remove_proc_entry("driver/radio-typhoon", NULL
);
378 video_unregister_device(&typhoon_radio
);
379 release_region(io
, 8);
382 module_init(typhoon_init
);
383 module_exit(typhoon_cleanup_module
);