blob: 48b5d2bc627603518a78fa26eaa2a48353c4db37 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* Typhoon Radio Card driver for radio support
2 * (c) 1999 Dr. Henrik Seidel <Henrik.Seidel@gmx.de>
3 *
4 * Card manufacturer:
5 * http://194.18.155.92/idc/prod2.idc?nr=50753&lang=e
6 *
7 * Notes on the hardware
8 *
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.
12 *
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.
16 *
17 * Frequency control is done digitally.
18 *
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
24 * the speaker output.
25 *
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
29 * completely silent.
Mauro Carvalho Chehab30c48302006-08-08 09:10:04 -030030 *
31 * Converted to V4L2 API by Mauro Carvalho Chehab <mchehab@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 */
33
34#include <linux/module.h> /* Modules */
35#include <linux/init.h> /* Initdata */
Peter Osterlundfb911ee2005-09-13 01:25:15 -070036#include <linux/ioport.h> /* request_region */
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/proc_fs.h> /* radio card status report */
Alexey Dobriyan0b9c2b72008-04-10 21:34:39 -030038#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <asm/io.h> /* outb, outb_p */
40#include <asm/uaccess.h> /* copy to/from user */
Mauro Carvalho Chehab30c48302006-08-08 09:10:04 -030041#include <linux/videodev2.h> /* kernel radio structs */
Mauro Carvalho Chehab5e87efa2006-06-05 10:26:32 -030042#include <media/v4l2-common.h>
Hans Verkuil35ea11f2008-07-20 08:12:02 -030043#include <media/v4l2-ioctl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
Mauro Carvalho Chehab30c48302006-08-08 09:10:04 -030045#include <linux/version.h> /* for KERNEL_VERSION MACRO */
46#define RADIO_VERSION KERNEL_VERSION(0,1,1)
47#define BANNER "Typhoon Radio Card driver v0.1.1\n"
48
49static struct v4l2_queryctrl radio_qctrl[] = {
50 {
51 .id = V4L2_CID_AUDIO_MUTE,
52 .name = "Mute",
53 .minimum = 0,
54 .maximum = 1,
55 .default_value = 1,
56 .type = V4L2_CTRL_TYPE_BOOLEAN,
57 },{
58 .id = V4L2_CID_AUDIO_VOLUME,
59 .name = "Volume",
60 .minimum = 0,
61 .maximum = 65535,
62 .step = 1<<14,
63 .default_value = 0xff,
64 .type = V4L2_CTRL_TYPE_INTEGER,
65 }
66};
67
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69#ifndef CONFIG_RADIO_TYPHOON_PORT
70#define CONFIG_RADIO_TYPHOON_PORT -1
71#endif
72
73#ifndef CONFIG_RADIO_TYPHOON_MUTEFREQ
74#define CONFIG_RADIO_TYPHOON_MUTEFREQ 0
75#endif
76
77#ifndef CONFIG_PROC_FS
78#undef CONFIG_RADIO_TYPHOON_PROC_FS
79#endif
80
81struct typhoon_device {
82 int users;
83 int iobase;
84 int curvol;
85 int muted;
86 unsigned long curfreq;
87 unsigned long mutefreq;
Ingo Molnar3593cab2006-02-07 06:49:14 -020088 struct mutex lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089};
90
91static void typhoon_setvol_generic(struct typhoon_device *dev, int vol);
92static int typhoon_setfreq_generic(struct typhoon_device *dev,
93 unsigned long frequency);
94static int typhoon_setfreq(struct typhoon_device *dev, unsigned long frequency);
95static void typhoon_mute(struct typhoon_device *dev);
96static void typhoon_unmute(struct typhoon_device *dev);
97static int typhoon_setvol(struct typhoon_device *dev, int vol);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
99static void typhoon_setvol_generic(struct typhoon_device *dev, int vol)
100{
Ingo Molnar3593cab2006-02-07 06:49:14 -0200101 mutex_lock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 vol >>= 14; /* Map 16 bit to 2 bit */
103 vol &= 3;
104 outb_p(vol / 2, dev->iobase); /* Set the volume, high bit. */
105 outb_p(vol % 2, dev->iobase + 2); /* Set the volume, low bit. */
Ingo Molnar3593cab2006-02-07 06:49:14 -0200106 mutex_unlock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107}
108
109static int typhoon_setfreq_generic(struct typhoon_device *dev,
110 unsigned long frequency)
111{
112 unsigned long outval;
113 unsigned long x;
114
115 /*
116 * The frequency transfer curve is not linear. The best fit I could
117 * get is
118 *
119 * outval = -155 + exp((f + 15.55) * 0.057))
120 *
121 * where frequency f is in MHz. Since we don't have exp in the kernel,
122 * I approximate this function by a third order polynomial.
123 *
124 */
125
Ingo Molnar3593cab2006-02-07 06:49:14 -0200126 mutex_lock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 x = frequency / 160;
128 outval = (x * x + 2500) / 5000;
129 outval = (outval * x + 5000) / 10000;
130 outval -= (10 * x * x + 10433) / 20866;
131 outval += 4 * x - 11505;
132
133 outb_p((outval >> 8) & 0x01, dev->iobase + 4);
134 outb_p(outval >> 9, dev->iobase + 6);
135 outb_p(outval & 0xff, dev->iobase + 8);
Ingo Molnar3593cab2006-02-07 06:49:14 -0200136 mutex_unlock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
138 return 0;
139}
140
141static int typhoon_setfreq(struct typhoon_device *dev, unsigned long frequency)
142{
143 typhoon_setfreq_generic(dev, frequency);
144 dev->curfreq = frequency;
145 return 0;
146}
147
148static void typhoon_mute(struct typhoon_device *dev)
149{
150 if (dev->muted == 1)
151 return;
152 typhoon_setvol_generic(dev, 0);
153 typhoon_setfreq_generic(dev, dev->mutefreq);
154 dev->muted = 1;
155}
156
157static void typhoon_unmute(struct typhoon_device *dev)
158{
159 if (dev->muted == 0)
160 return;
161 typhoon_setfreq_generic(dev, dev->curfreq);
162 typhoon_setvol_generic(dev, dev->curvol);
163 dev->muted = 0;
164}
165
166static int typhoon_setvol(struct typhoon_device *dev, int vol)
167{
168 if (dev->muted && vol != 0) { /* user is unmuting the card */
169 dev->curvol = vol;
170 typhoon_unmute(dev);
171 return 0;
172 }
173 if (vol == dev->curvol) /* requested volume == current */
174 return 0;
175
176 if (vol == 0) { /* volume == 0 means mute the card */
177 typhoon_mute(dev);
178 dev->curvol = vol;
179 return 0;
180 }
181 typhoon_setvol_generic(dev, vol);
182 dev->curvol = vol;
183 return 0;
184}
185
Douglas Landgraf3f6892a2007-04-24 08:40:06 -0300186static int vidioc_querycap(struct file *file, void *priv,
187 struct v4l2_capability *v)
188{
189 strlcpy(v->driver, "radio-typhoon", sizeof(v->driver));
190 strlcpy(v->card, "Typhoon Radio", sizeof(v->card));
191 sprintf(v->bus_info, "ISA");
192 v->version = RADIO_VERSION;
193 v->capabilities = V4L2_CAP_TUNER;
194 return 0;
195}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
Douglas Landgraf3f6892a2007-04-24 08:40:06 -0300197static int vidioc_g_tuner(struct file *file, void *priv,
198 struct v4l2_tuner *v)
199{
200 if (v->index > 0)
201 return -EINVAL;
202
203 strcpy(v->name, "FM");
204 v->type = V4L2_TUNER_RADIO;
205 v->rangelow = (87.5*16000);
206 v->rangehigh = (108*16000);
207 v->rxsubchans = V4L2_TUNER_SUB_MONO;
208 v->capability = V4L2_TUNER_CAP_LOW;
209 v->audmode = V4L2_TUNER_MODE_MONO;
210 v->signal = 0xFFFF; /* We can't get the signal strength */
211 return 0;
212}
213
214static int vidioc_s_tuner(struct file *file, void *priv,
215 struct v4l2_tuner *v)
216{
217 if (v->index > 0)
218 return -EINVAL;
219
220 return 0;
221}
222
223static int vidioc_s_frequency(struct file *file, void *priv,
224 struct v4l2_frequency *f)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225{
226 struct video_device *dev = video_devdata(file);
227 struct typhoon_device *typhoon = dev->priv;
228
Douglas Landgraf3f6892a2007-04-24 08:40:06 -0300229 typhoon->curfreq = f->frequency;
230 typhoon_setfreq(typhoon, typhoon->curfreq);
231 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232}
233
Douglas Landgraf3f6892a2007-04-24 08:40:06 -0300234static int vidioc_g_frequency(struct file *file, void *priv,
235 struct v4l2_frequency *f)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236{
Douglas Landgraf3f6892a2007-04-24 08:40:06 -0300237 struct video_device *dev = video_devdata(file);
238 struct typhoon_device *typhoon = dev->priv;
239
240 f->type = V4L2_TUNER_RADIO;
241 f->frequency = typhoon->curfreq;
242
243 return 0;
244}
245
246static int vidioc_queryctrl(struct file *file, void *priv,
247 struct v4l2_queryctrl *qc)
248{
249 int i;
250
251 for (i = 0; i < ARRAY_SIZE(radio_qctrl); i++) {
252 if (qc->id && qc->id == radio_qctrl[i].id) {
253 memcpy(qc, &(radio_qctrl[i]),
254 sizeof(*qc));
255 return 0;
256 }
257 }
258 return -EINVAL;
259}
260
261static int vidioc_g_ctrl(struct file *file, void *priv,
262 struct v4l2_control *ctrl)
263{
264 struct video_device *dev = video_devdata(file);
265 struct typhoon_device *typhoon = dev->priv;
266
267 switch (ctrl->id) {
268 case V4L2_CID_AUDIO_MUTE:
269 ctrl->value = typhoon->muted;
270 return 0;
271 case V4L2_CID_AUDIO_VOLUME:
272 ctrl->value = typhoon->curvol;
273 return 0;
274 }
275 return -EINVAL;
276}
277
278static int vidioc_s_ctrl (struct file *file, void *priv,
279 struct v4l2_control *ctrl)
280{
281 struct video_device *dev = video_devdata(file);
282 struct typhoon_device *typhoon = dev->priv;
283
284 switch (ctrl->id) {
285 case V4L2_CID_AUDIO_MUTE:
286 if (ctrl->value)
287 typhoon_mute(typhoon);
288 else
289 typhoon_unmute(typhoon);
290 return 0;
291 case V4L2_CID_AUDIO_VOLUME:
292 typhoon_setvol(typhoon, ctrl->value);
293 return 0;
294 }
295 return -EINVAL;
296}
297
298static int vidioc_g_audio(struct file *file, void *priv,
299 struct v4l2_audio *a)
300{
301 if (a->index > 1)
302 return -EINVAL;
303
304 strcpy(a->name, "Radio");
305 a->capability = V4L2_AUDCAP_STEREO;
306 return 0;
307}
308
309static int vidioc_g_input(struct file *filp, void *priv, unsigned int *i)
310{
311 *i = 0;
312 return 0;
313}
314
315static int vidioc_s_input(struct file *filp, void *priv, unsigned int i)
316{
317 if (i != 0)
318 return -EINVAL;
319 return 0;
320}
321
322static int vidioc_s_audio(struct file *file, void *priv,
323 struct v4l2_audio *a)
324{
325 if (a->index != 0)
326 return -EINVAL;
327 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328}
329
330static struct typhoon_device typhoon_unit =
331{
332 .iobase = CONFIG_RADIO_TYPHOON_PORT,
333 .curfreq = CONFIG_RADIO_TYPHOON_MUTEFREQ,
334 .mutefreq = CONFIG_RADIO_TYPHOON_MUTEFREQ,
335};
336
Arjan van de Venfa027c22007-02-12 00:55:33 -0800337static const struct file_operations typhoon_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 .owner = THIS_MODULE,
339 .open = video_exclusive_open,
340 .release = video_exclusive_release,
Douglas Landgraf3f6892a2007-04-24 08:40:06 -0300341 .ioctl = video_ioctl2,
Douglas Schilling Landgraf078ff792008-04-22 14:46:11 -0300342#ifdef CONFIG_COMPAT
Arnd Bergmann0d0fbf82006-01-09 15:24:57 -0200343 .compat_ioctl = v4l_compat_ioctl32,
Douglas Schilling Landgraf078ff792008-04-22 14:46:11 -0300344#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 .llseek = no_llseek,
346};
347
Hans Verkuila3998102008-07-21 02:57:38 -0300348static const struct v4l2_ioctl_ops typhoon_ioctl_ops = {
Douglas Landgraf3f6892a2007-04-24 08:40:06 -0300349 .vidioc_querycap = vidioc_querycap,
350 .vidioc_g_tuner = vidioc_g_tuner,
351 .vidioc_s_tuner = vidioc_s_tuner,
352 .vidioc_g_audio = vidioc_g_audio,
353 .vidioc_s_audio = vidioc_s_audio,
354 .vidioc_g_input = vidioc_g_input,
355 .vidioc_s_input = vidioc_s_input,
356 .vidioc_g_frequency = vidioc_g_frequency,
357 .vidioc_s_frequency = vidioc_s_frequency,
358 .vidioc_queryctrl = vidioc_queryctrl,
359 .vidioc_g_ctrl = vidioc_g_ctrl,
360 .vidioc_s_ctrl = vidioc_s_ctrl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361};
362
Hans Verkuila3998102008-07-21 02:57:38 -0300363static struct video_device typhoon_radio = {
364 .owner = THIS_MODULE,
365 .name = "Typhoon Radio",
366 .type = VID_TYPE_TUNER,
367 .fops = &typhoon_fops,
368 .ioctl_ops = &typhoon_ioctl_ops,
369};
370
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371#ifdef CONFIG_RADIO_TYPHOON_PROC_FS
372
Alexey Dobriyan0b9c2b72008-04-10 21:34:39 -0300373static int typhoon_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 #ifdef MODULE
376 #define MODULEPROCSTRING "Driver loaded as a module"
377 #else
378 #define MODULEPROCSTRING "Driver compiled into kernel"
379 #endif
380
Alexey Dobriyan0b9c2b72008-04-10 21:34:39 -0300381 seq_puts(m, BANNER);
382 seq_puts(m, "Load type: " MODULEPROCSTRING "\n\n");
383 seq_printf(m, "frequency = %lu kHz\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 typhoon_unit.curfreq >> 4);
Alexey Dobriyan0b9c2b72008-04-10 21:34:39 -0300385 seq_printf(m, "volume = %d\n", typhoon_unit.curvol);
386 seq_printf(m, "mute = %s\n", typhoon_unit.muted ?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 "on" : "off");
Alexey Dobriyan0b9c2b72008-04-10 21:34:39 -0300388 seq_printf(m, "iobase = 0x%x\n", typhoon_unit.iobase);
389 seq_printf(m, "mute frequency = %lu kHz\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 typhoon_unit.mutefreq >> 4);
Alexey Dobriyan0b9c2b72008-04-10 21:34:39 -0300391 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392}
393
Alexey Dobriyan0b9c2b72008-04-10 21:34:39 -0300394static int typhoon_proc_open(struct inode *inode, struct file *file)
395{
396 return single_open(file, typhoon_proc_show, NULL);
397}
398
399static const struct file_operations typhoon_proc_fops = {
400 .owner = THIS_MODULE,
401 .open = typhoon_proc_open,
402 .read = seq_read,
403 .llseek = seq_lseek,
404 .release = single_release,
405};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406#endif /* CONFIG_RADIO_TYPHOON_PROC_FS */
407
408MODULE_AUTHOR("Dr. Henrik Seidel");
409MODULE_DESCRIPTION("A driver for the Typhoon radio card (a.k.a. EcoRadio).");
410MODULE_LICENSE("GPL");
411
412static int io = -1;
413static int radio_nr = -1;
414
415module_param(io, int, 0);
416MODULE_PARM_DESC(io, "I/O address of the Typhoon card (0x316 or 0x336)");
417module_param(radio_nr, int, 0);
418
419#ifdef MODULE
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -0300420static unsigned long mutefreq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421module_param(mutefreq, ulong, 0);
422MODULE_PARM_DESC(mutefreq, "Frequency used when muting the card (in kHz)");
423#endif
424
425static int __init typhoon_init(void)
426{
427#ifdef MODULE
428 if (io == -1) {
429 printk(KERN_ERR "radio-typhoon: You must set an I/O address with io=0x316 or io=0x336\n");
430 return -EINVAL;
431 }
432 typhoon_unit.iobase = io;
433
434 if (mutefreq < 87000 || mutefreq > 108500) {
435 printk(KERN_ERR "radio-typhoon: You must set a frequency (in kHz) used when muting the card,\n");
436 printk(KERN_ERR "radio-typhoon: e.g. with \"mutefreq=87500\" (87000 <= mutefreq <= 108500)\n");
437 return -EINVAL;
438 }
439 typhoon_unit.mutefreq = mutefreq;
440#endif /* MODULE */
441
442 printk(KERN_INFO BANNER);
Ingo Molnar3593cab2006-02-07 06:49:14 -0200443 mutex_init(&typhoon_unit.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 io = typhoon_unit.iobase;
445 if (!request_region(io, 8, "typhoon")) {
446 printk(KERN_ERR "radio-typhoon: port 0x%x already in use\n",
447 typhoon_unit.iobase);
448 return -EBUSY;
449 }
450
451 typhoon_radio.priv = &typhoon_unit;
452 if (video_register_device(&typhoon_radio, VFL_TYPE_RADIO, radio_nr) == -1)
453 {
454 release_region(io, 8);
455 return -EINVAL;
456 }
457 printk(KERN_INFO "radio-typhoon: port 0x%x.\n", typhoon_unit.iobase);
458 printk(KERN_INFO "radio-typhoon: mute frequency is %lu kHz.\n",
459 typhoon_unit.mutefreq);
460 typhoon_unit.mutefreq <<= 4;
461
462 /* mute card - prevents noisy bootups */
463 typhoon_mute(&typhoon_unit);
464
465#ifdef CONFIG_RADIO_TYPHOON_PROC_FS
Alexey Dobriyan0b9c2b72008-04-10 21:34:39 -0300466 if (!proc_create("driver/radio-typhoon", 0, NULL, &typhoon_proc_fops))
Trent Piepho657de3c2006-06-20 00:30:57 -0300467 printk(KERN_ERR "radio-typhoon: registering /proc/driver/radio-typhoon failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468#endif
469
470 return 0;
471}
472
473static void __exit typhoon_cleanup_module(void)
474{
475
476#ifdef CONFIG_RADIO_TYPHOON_PROC_FS
477 remove_proc_entry("driver/radio-typhoon", NULL);
478#endif
479
480 video_unregister_device(&typhoon_radio);
481 release_region(io, 8);
482}
483
484module_init(typhoon_init);
485module_exit(typhoon_cleanup_module);
486