staging: brcm80211: remove redundant CHIPREV macro
[zen-stable.git] / drivers / media / radio / radio-cadet.c
blobb701ea6e7c7379fc0593fae6c22c4678152cd4e7
1 /* radio-cadet.c - A video4linux driver for the ADS Cadet AM/FM Radio Card
3 * by Fred Gleason <fredg@wava.com>
4 * Version 0.3.3
6 * (Loosely) based on code for the Aztech radio card by
8 * Russell Kroll (rkroll@exploits.org)
9 * Quay Ly
10 * Donald Song
11 * Jason Lewis (jlewis@twilight.vtc.vsc.edu)
12 * Scott McGrath (smcgrath@twilight.vtc.vsc.edu)
13 * William McGrath (wmcgrath@twilight.vtc.vsc.edu)
15 * History:
16 * 2000-04-29 Russell Kroll <rkroll@exploits.org>
17 * Added ISAPnP detection for Linux 2.3/2.4
19 * 2001-01-10 Russell Kroll <rkroll@exploits.org>
20 * Removed dead CONFIG_RADIO_CADET_PORT code
21 * PnP detection on load is now default (no args necessary)
23 * 2002-01-17 Adam Belay <ambx1@neo.rr.com>
24 * Updated to latest pnp code
26 * 2003-01-31 Alan Cox <alan@lxorguk.ukuu.org.uk>
27 * Cleaned up locking, delay code, general odds and ends
29 * 2006-07-30 Hans J. Koch <koch@hjk-az.de>
30 * Changed API to V4L2
33 #include <linux/version.h>
34 #include <linux/module.h> /* Modules */
35 #include <linux/init.h> /* Initdata */
36 #include <linux/ioport.h> /* request_region */
37 #include <linux/delay.h> /* udelay */
38 #include <linux/videodev2.h> /* V4L2 API defs */
39 #include <linux/param.h>
40 #include <linux/pnp.h>
41 #include <linux/sched.h>
42 #include <linux/io.h> /* outb, outb_p */
43 #include <media/v4l2-device.h>
44 #include <media/v4l2-ioctl.h>
46 MODULE_AUTHOR("Fred Gleason, Russell Kroll, Quay Lu, Donald Song, Jason Lewis, Scott McGrath, William McGrath");
47 MODULE_DESCRIPTION("A driver for the ADS Cadet AM/FM/RDS radio card.");
48 MODULE_LICENSE("GPL");
50 static int io = -1; /* default to isapnp activation */
51 static int radio_nr = -1;
53 module_param(io, int, 0);
54 MODULE_PARM_DESC(io, "I/O address of Cadet card (0x330,0x332,0x334,0x336,0x338,0x33a,0x33c,0x33e)");
55 module_param(radio_nr, int, 0);
57 #define CADET_VERSION KERNEL_VERSION(0, 3, 3)
59 #define RDS_BUFFER 256
60 #define RDS_RX_FLAG 1
61 #define MBS_RX_FLAG 2
63 struct cadet {
64 struct v4l2_device v4l2_dev;
65 struct video_device vdev;
66 int io;
67 int users;
68 int curtuner;
69 int tunestat;
70 int sigstrength;
71 wait_queue_head_t read_queue;
72 struct timer_list readtimer;
73 __u8 rdsin, rdsout, rdsstat;
74 unsigned char rdsbuf[RDS_BUFFER];
75 struct mutex lock;
76 int reading;
79 static struct cadet cadet_card;
82 * Signal Strength Threshold Values
83 * The V4L API spec does not define any particular unit for the signal
84 * strength value. These values are in microvolts of RF at the tuner's input.
86 static __u16 sigtable[2][4] = {
87 { 5, 10, 30, 150 },
88 { 28, 40, 63, 1000 }
92 static int cadet_getstereo(struct cadet *dev)
94 int ret = V4L2_TUNER_SUB_MONO;
96 if (dev->curtuner != 0) /* Only FM has stereo capability! */
97 return V4L2_TUNER_SUB_MONO;
99 mutex_lock(&dev->lock);
100 outb(7, dev->io); /* Select tuner control */
101 if ((inb(dev->io + 1) & 0x40) == 0)
102 ret = V4L2_TUNER_SUB_STEREO;
103 mutex_unlock(&dev->lock);
104 return ret;
107 static unsigned cadet_gettune(struct cadet *dev)
109 int curvol, i;
110 unsigned fifo = 0;
113 * Prepare for read
116 mutex_lock(&dev->lock);
118 outb(7, dev->io); /* Select tuner control */
119 curvol = inb(dev->io + 1); /* Save current volume/mute setting */
120 outb(0x00, dev->io + 1); /* Ensure WRITE-ENABLE is LOW */
121 dev->tunestat = 0xffff;
124 * Read the shift register
126 for (i = 0; i < 25; i++) {
127 fifo = (fifo << 1) | ((inb(dev->io + 1) >> 7) & 0x01);
128 if (i < 24) {
129 outb(0x01, dev->io + 1);
130 dev->tunestat &= inb(dev->io + 1);
131 outb(0x00, dev->io + 1);
136 * Restore volume/mute setting
138 outb(curvol, dev->io + 1);
139 mutex_unlock(&dev->lock);
141 return fifo;
144 static unsigned cadet_getfreq(struct cadet *dev)
146 int i;
147 unsigned freq = 0, test, fifo = 0;
150 * Read current tuning
152 fifo = cadet_gettune(dev);
155 * Convert to actual frequency
157 if (dev->curtuner == 0) { /* FM */
158 test = 12500;
159 for (i = 0; i < 14; i++) {
160 if ((fifo & 0x01) != 0)
161 freq += test;
162 test = test << 1;
163 fifo = fifo >> 1;
165 freq -= 10700000; /* IF frequency is 10.7 MHz */
166 freq = (freq * 16) / 1000000; /* Make it 1/16 MHz */
168 if (dev->curtuner == 1) /* AM */
169 freq = ((fifo & 0x7fff) - 2010) * 16;
171 return freq;
174 static void cadet_settune(struct cadet *dev, unsigned fifo)
176 int i;
177 unsigned test;
179 mutex_lock(&dev->lock);
181 outb(7, dev->io); /* Select tuner control */
183 * Write the shift register
185 test = 0;
186 test = (fifo >> 23) & 0x02; /* Align data for SDO */
187 test |= 0x1c; /* SDM=1, SWE=1, SEN=1, SCK=0 */
188 outb(7, dev->io); /* Select tuner control */
189 outb(test, dev->io + 1); /* Initialize for write */
190 for (i = 0; i < 25; i++) {
191 test |= 0x01; /* Toggle SCK High */
192 outb(test, dev->io + 1);
193 test &= 0xfe; /* Toggle SCK Low */
194 outb(test, dev->io + 1);
195 fifo = fifo << 1; /* Prepare the next bit */
196 test = 0x1c | ((fifo >> 23) & 0x02);
197 outb(test, dev->io + 1);
199 mutex_unlock(&dev->lock);
202 static void cadet_setfreq(struct cadet *dev, unsigned freq)
204 unsigned fifo;
205 int i, j, test;
206 int curvol;
209 * Formulate a fifo command
211 fifo = 0;
212 if (dev->curtuner == 0) { /* FM */
213 test = 102400;
214 freq = (freq * 1000) / 16; /* Make it kHz */
215 freq += 10700; /* IF is 10700 kHz */
216 for (i = 0; i < 14; i++) {
217 fifo = fifo << 1;
218 if (freq >= test) {
219 fifo |= 0x01;
220 freq -= test;
222 test = test >> 1;
225 if (dev->curtuner == 1) { /* AM */
226 fifo = (freq / 16) + 2010; /* Make it kHz */
227 fifo |= 0x100000; /* Select AM Band */
231 * Save current volume/mute setting
234 mutex_lock(&dev->lock);
235 outb(7, dev->io); /* Select tuner control */
236 curvol = inb(dev->io + 1);
237 mutex_unlock(&dev->lock);
240 * Tune the card
242 for (j = 3; j > -1; j--) {
243 cadet_settune(dev, fifo | (j << 16));
245 mutex_lock(&dev->lock);
246 outb(7, dev->io); /* Select tuner control */
247 outb(curvol, dev->io + 1);
248 mutex_unlock(&dev->lock);
250 msleep(100);
252 cadet_gettune(dev);
253 if ((dev->tunestat & 0x40) == 0) { /* Tuned */
254 dev->sigstrength = sigtable[dev->curtuner][j];
255 return;
258 dev->sigstrength = 0;
262 static int cadet_getvol(struct cadet *dev)
264 int ret = 0;
266 mutex_lock(&dev->lock);
268 outb(7, dev->io); /* Select tuner control */
269 if ((inb(dev->io + 1) & 0x20) != 0)
270 ret = 0xffff;
272 mutex_unlock(&dev->lock);
273 return ret;
277 static void cadet_setvol(struct cadet *dev, int vol)
279 mutex_lock(&dev->lock);
280 outb(7, dev->io); /* Select tuner control */
281 if (vol > 0)
282 outb(0x20, dev->io + 1);
283 else
284 outb(0x00, dev->io + 1);
285 mutex_unlock(&dev->lock);
288 static void cadet_handler(unsigned long data)
290 struct cadet *dev = (void *)data;
292 /* Service the RDS fifo */
293 if (mutex_trylock(&dev->lock)) {
294 outb(0x3, dev->io); /* Select RDS Decoder Control */
295 if ((inb(dev->io + 1) & 0x20) != 0)
296 printk(KERN_CRIT "cadet: RDS fifo overflow\n");
297 outb(0x80, dev->io); /* Select RDS fifo */
298 while ((inb(dev->io) & 0x80) != 0) {
299 dev->rdsbuf[dev->rdsin] = inb(dev->io + 1);
300 if (dev->rdsin == dev->rdsout)
301 printk(KERN_WARNING "cadet: RDS buffer overflow\n");
302 else
303 dev->rdsin++;
305 mutex_unlock(&dev->lock);
309 * Service pending read
311 if (dev->rdsin != dev->rdsout)
312 wake_up_interruptible(&dev->read_queue);
315 * Clean up and exit
317 init_timer(&dev->readtimer);
318 dev->readtimer.function = cadet_handler;
319 dev->readtimer.data = (unsigned long)0;
320 dev->readtimer.expires = jiffies + msecs_to_jiffies(50);
321 add_timer(&dev->readtimer);
325 static ssize_t cadet_read(struct file *file, char __user *data, size_t count, loff_t *ppos)
327 struct cadet *dev = video_drvdata(file);
328 unsigned char readbuf[RDS_BUFFER];
329 int i = 0;
331 if (dev->rdsstat == 0) {
332 mutex_lock(&dev->lock);
333 dev->rdsstat = 1;
334 outb(0x80, dev->io); /* Select RDS fifo */
335 mutex_unlock(&dev->lock);
336 init_timer(&dev->readtimer);
337 dev->readtimer.function = cadet_handler;
338 dev->readtimer.data = (unsigned long)dev;
339 dev->readtimer.expires = jiffies + msecs_to_jiffies(50);
340 add_timer(&dev->readtimer);
342 if (dev->rdsin == dev->rdsout) {
343 if (file->f_flags & O_NONBLOCK)
344 return -EWOULDBLOCK;
345 interruptible_sleep_on(&dev->read_queue);
347 while (i < count && dev->rdsin != dev->rdsout)
348 readbuf[i++] = dev->rdsbuf[dev->rdsout++];
350 if (copy_to_user(data, readbuf, i))
351 return -EFAULT;
352 return i;
356 static int vidioc_querycap(struct file *file, void *priv,
357 struct v4l2_capability *v)
359 strlcpy(v->driver, "ADS Cadet", sizeof(v->driver));
360 strlcpy(v->card, "ADS Cadet", sizeof(v->card));
361 strlcpy(v->bus_info, "ISA", sizeof(v->bus_info));
362 v->version = CADET_VERSION;
363 v->capabilities = V4L2_CAP_TUNER | V4L2_CAP_RADIO |
364 V4L2_CAP_READWRITE | V4L2_CAP_RDS_CAPTURE;
365 return 0;
368 static int vidioc_g_tuner(struct file *file, void *priv,
369 struct v4l2_tuner *v)
371 struct cadet *dev = video_drvdata(file);
373 v->type = V4L2_TUNER_RADIO;
374 switch (v->index) {
375 case 0:
376 strlcpy(v->name, "FM", sizeof(v->name));
377 v->capability = V4L2_TUNER_CAP_STEREO | V4L2_TUNER_CAP_RDS |
378 V4L2_TUNER_CAP_RDS_BLOCK_IO;
379 v->rangelow = 1400; /* 87.5 MHz */
380 v->rangehigh = 1728; /* 108.0 MHz */
381 v->rxsubchans = cadet_getstereo(dev);
382 switch (v->rxsubchans) {
383 case V4L2_TUNER_SUB_MONO:
384 v->audmode = V4L2_TUNER_MODE_MONO;
385 break;
386 case V4L2_TUNER_SUB_STEREO:
387 v->audmode = V4L2_TUNER_MODE_STEREO;
388 break;
389 default:
390 break;
392 v->rxsubchans |= V4L2_TUNER_SUB_RDS;
393 break;
394 case 1:
395 strlcpy(v->name, "AM", sizeof(v->name));
396 v->capability = V4L2_TUNER_CAP_LOW;
397 v->rangelow = 8320; /* 520 kHz */
398 v->rangehigh = 26400; /* 1650 kHz */
399 v->rxsubchans = V4L2_TUNER_SUB_MONO;
400 v->audmode = V4L2_TUNER_MODE_MONO;
401 break;
402 default:
403 return -EINVAL;
405 v->signal = dev->sigstrength; /* We might need to modify scaling of this */
406 return 0;
409 static int vidioc_s_tuner(struct file *file, void *priv,
410 struct v4l2_tuner *v)
412 struct cadet *dev = video_drvdata(file);
414 if (v->index != 0 && v->index != 1)
415 return -EINVAL;
416 dev->curtuner = v->index;
417 return 0;
420 static int vidioc_g_frequency(struct file *file, void *priv,
421 struct v4l2_frequency *f)
423 struct cadet *dev = video_drvdata(file);
425 f->tuner = dev->curtuner;
426 f->type = V4L2_TUNER_RADIO;
427 f->frequency = cadet_getfreq(dev);
428 return 0;
432 static int vidioc_s_frequency(struct file *file, void *priv,
433 struct v4l2_frequency *f)
435 struct cadet *dev = video_drvdata(file);
437 if (f->type != V4L2_TUNER_RADIO)
438 return -EINVAL;
439 if (dev->curtuner == 0 && (f->frequency < 1400 || f->frequency > 1728))
440 return -EINVAL;
441 if (dev->curtuner == 1 && (f->frequency < 8320 || f->frequency > 26400))
442 return -EINVAL;
443 cadet_setfreq(dev, f->frequency);
444 return 0;
447 static int vidioc_queryctrl(struct file *file, void *priv,
448 struct v4l2_queryctrl *qc)
450 switch (qc->id) {
451 case V4L2_CID_AUDIO_MUTE:
452 return v4l2_ctrl_query_fill(qc, 0, 1, 1, 1);
453 case V4L2_CID_AUDIO_VOLUME:
454 return v4l2_ctrl_query_fill(qc, 0, 0xff, 1, 0xff);
456 return -EINVAL;
459 static int vidioc_g_ctrl(struct file *file, void *priv,
460 struct v4l2_control *ctrl)
462 struct cadet *dev = video_drvdata(file);
464 switch (ctrl->id) {
465 case V4L2_CID_AUDIO_MUTE: /* TODO: Handle this correctly */
466 ctrl->value = (cadet_getvol(dev) == 0);
467 break;
468 case V4L2_CID_AUDIO_VOLUME:
469 ctrl->value = cadet_getvol(dev);
470 break;
471 default:
472 return -EINVAL;
474 return 0;
477 static int vidioc_s_ctrl(struct file *file, void *priv,
478 struct v4l2_control *ctrl)
480 struct cadet *dev = video_drvdata(file);
482 switch (ctrl->id){
483 case V4L2_CID_AUDIO_MUTE: /* TODO: Handle this correctly */
484 if (ctrl->value)
485 cadet_setvol(dev, 0);
486 else
487 cadet_setvol(dev, 0xffff);
488 break;
489 case V4L2_CID_AUDIO_VOLUME:
490 cadet_setvol(dev, ctrl->value);
491 break;
492 default:
493 return -EINVAL;
495 return 0;
498 static int vidioc_g_input(struct file *filp, void *priv, unsigned int *i)
500 *i = 0;
501 return 0;
504 static int vidioc_s_input(struct file *filp, void *priv, unsigned int i)
506 return i ? -EINVAL : 0;
509 static int vidioc_g_audio(struct file *file, void *priv,
510 struct v4l2_audio *a)
512 a->index = 0;
513 strlcpy(a->name, "Radio", sizeof(a->name));
514 a->capability = V4L2_AUDCAP_STEREO;
515 return 0;
518 static int vidioc_s_audio(struct file *file, void *priv,
519 struct v4l2_audio *a)
521 return a->index ? -EINVAL : 0;
524 static int cadet_open(struct file *file)
526 struct cadet *dev = video_drvdata(file);
528 dev->users++;
529 if (1 == dev->users)
530 init_waitqueue_head(&dev->read_queue);
531 return 0;
534 static int cadet_release(struct file *file)
536 struct cadet *dev = video_drvdata(file);
538 dev->users--;
539 if (0 == dev->users) {
540 del_timer_sync(&dev->readtimer);
541 dev->rdsstat = 0;
543 return 0;
546 static unsigned int cadet_poll(struct file *file, struct poll_table_struct *wait)
548 struct cadet *dev = video_drvdata(file);
550 poll_wait(file, &dev->read_queue, wait);
551 if (dev->rdsin != dev->rdsout)
552 return POLLIN | POLLRDNORM;
553 return 0;
557 static const struct v4l2_file_operations cadet_fops = {
558 .owner = THIS_MODULE,
559 .open = cadet_open,
560 .release = cadet_release,
561 .read = cadet_read,
562 .ioctl = video_ioctl2,
563 .poll = cadet_poll,
566 static const struct v4l2_ioctl_ops cadet_ioctl_ops = {
567 .vidioc_querycap = vidioc_querycap,
568 .vidioc_g_tuner = vidioc_g_tuner,
569 .vidioc_s_tuner = vidioc_s_tuner,
570 .vidioc_g_frequency = vidioc_g_frequency,
571 .vidioc_s_frequency = vidioc_s_frequency,
572 .vidioc_queryctrl = vidioc_queryctrl,
573 .vidioc_g_ctrl = vidioc_g_ctrl,
574 .vidioc_s_ctrl = vidioc_s_ctrl,
575 .vidioc_g_audio = vidioc_g_audio,
576 .vidioc_s_audio = vidioc_s_audio,
577 .vidioc_g_input = vidioc_g_input,
578 .vidioc_s_input = vidioc_s_input,
581 #ifdef CONFIG_PNP
583 static struct pnp_device_id cadet_pnp_devices[] = {
584 /* ADS Cadet AM/FM Radio Card */
585 {.id = "MSM0c24", .driver_data = 0},
586 {.id = ""}
589 MODULE_DEVICE_TABLE(pnp, cadet_pnp_devices);
591 static int cadet_pnp_probe(struct pnp_dev *dev, const struct pnp_device_id *dev_id)
593 if (!dev)
594 return -ENODEV;
595 /* only support one device */
596 if (io > 0)
597 return -EBUSY;
599 if (!pnp_port_valid(dev, 0))
600 return -ENODEV;
602 io = pnp_port_start(dev, 0);
604 printk(KERN_INFO "radio-cadet: PnP reports device at %#x\n", io);
606 return io;
609 static struct pnp_driver cadet_pnp_driver = {
610 .name = "radio-cadet",
611 .id_table = cadet_pnp_devices,
612 .probe = cadet_pnp_probe,
613 .remove = NULL,
616 #else
617 static struct pnp_driver cadet_pnp_driver;
618 #endif
620 static void cadet_probe(struct cadet *dev)
622 static int iovals[8] = { 0x330, 0x332, 0x334, 0x336, 0x338, 0x33a, 0x33c, 0x33e };
623 int i;
625 for (i = 0; i < 8; i++) {
626 dev->io = iovals[i];
627 if (request_region(dev->io, 2, "cadet-probe")) {
628 cadet_setfreq(dev, 1410);
629 if (cadet_getfreq(dev) == 1410) {
630 release_region(dev->io, 2);
631 return;
633 release_region(dev->io, 2);
636 dev->io = -1;
640 * io should only be set if the user has used something like
641 * isapnp (the userspace program) to initialize this card for us
644 static int __init cadet_init(void)
646 struct cadet *dev = &cadet_card;
647 struct v4l2_device *v4l2_dev = &dev->v4l2_dev;
648 int res;
650 strlcpy(v4l2_dev->name, "cadet", sizeof(v4l2_dev->name));
651 mutex_init(&dev->lock);
653 /* If a probe was requested then probe ISAPnP first (safest) */
654 if (io < 0)
655 pnp_register_driver(&cadet_pnp_driver);
656 dev->io = io;
658 /* If that fails then probe unsafely if probe is requested */
659 if (dev->io < 0)
660 cadet_probe(dev);
662 /* Else we bail out */
663 if (dev->io < 0) {
664 #ifdef MODULE
665 v4l2_err(v4l2_dev, "you must set an I/O address with io=0x330, 0x332, 0x334,\n");
666 v4l2_err(v4l2_dev, "0x336, 0x338, 0x33a, 0x33c or 0x33e\n");
667 #endif
668 goto fail;
670 if (!request_region(dev->io, 2, "cadet"))
671 goto fail;
673 res = v4l2_device_register(NULL, v4l2_dev);
674 if (res < 0) {
675 release_region(dev->io, 2);
676 v4l2_err(v4l2_dev, "could not register v4l2_device\n");
677 goto fail;
680 strlcpy(dev->vdev.name, v4l2_dev->name, sizeof(dev->vdev.name));
681 dev->vdev.v4l2_dev = v4l2_dev;
682 dev->vdev.fops = &cadet_fops;
683 dev->vdev.ioctl_ops = &cadet_ioctl_ops;
684 dev->vdev.release = video_device_release_empty;
685 video_set_drvdata(&dev->vdev, dev);
687 if (video_register_device(&dev->vdev, VFL_TYPE_RADIO, radio_nr) < 0) {
688 v4l2_device_unregister(v4l2_dev);
689 release_region(dev->io, 2);
690 goto fail;
692 v4l2_info(v4l2_dev, "ADS Cadet Radio Card at 0x%x\n", dev->io);
693 return 0;
694 fail:
695 pnp_unregister_driver(&cadet_pnp_driver);
696 return -ENODEV;
699 static void __exit cadet_exit(void)
701 struct cadet *dev = &cadet_card;
703 video_unregister_device(&dev->vdev);
704 v4l2_device_unregister(&dev->v4l2_dev);
705 release_region(dev->io, 2);
706 pnp_unregister_driver(&cadet_pnp_driver);
709 module_init(cadet_init);
710 module_exit(cadet_exit);