blob: d1fb42746fc2a6c8eb0b125fb896948f2fd2bc6b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* radio-cadet.c - A video4linux driver for the ADS Cadet AM/FM Radio Card
2 *
3 * by Fred Gleason <fredg@wava.com>
4 * Version 0.3.3
5 *
6 * (Loosely) based on code for the Aztech radio card by
7 *
8 * Russell Kroll (rkroll@exploits.org)
9 * Quay Ly
10 * Donald Song
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -030011 * Jason Lewis (jlewis@twilight.vtc.vsc.edu)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 * Scott McGrath (smcgrath@twilight.vtc.vsc.edu)
13 * William McGrath (wmcgrath@twilight.vtc.vsc.edu)
14 *
15 * History:
16 * 2000-04-29 Russell Kroll <rkroll@exploits.org>
17 * Added ISAPnP detection for Linux 2.3/2.4
18 *
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)
22 *
23 * 2002-01-17 Adam Belay <ambx1@neo.rr.com>
24 * Updated to latest pnp code
25 *
Alan Coxd9b01442008-10-27 15:13:47 -030026 * 2003-01-31 Alan Cox <alan@lxorguk.ukuu.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 * Cleaned up locking, delay code, general odds and ends
Hans J. Kochc0c7fa02006-08-08 09:10:12 -030028 *
29 * 2006-07-30 Hans J. Koch <koch@hjk-az.de>
30 * Changed API to V4L2
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 */
32
33#include <linux/module.h> /* Modules */
34#include <linux/init.h> /* Initdata */
Peter Osterlundfb911ee2005-09-13 01:25:15 -070035#include <linux/ioport.h> /* request_region */
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/delay.h> /* udelay */
Hans J. Kochc0c7fa02006-08-08 09:10:12 -030037#include <linux/videodev2.h> /* V4L2 API defs */
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <linux/param.h>
39#include <linux/pnp.h>
Alexey Dobriyana99bbaf2009-10-04 16:11:37 +040040#include <linux/sched.h>
Hans Verkuilbec2aec2009-03-06 13:48:47 -030041#include <linux/io.h> /* outb, outb_p */
Hans Verkuilbec2aec2009-03-06 13:48:47 -030042#include <media/v4l2-device.h>
43#include <media/v4l2-ioctl.h>
Hans Verkuilb54c97db2012-07-02 09:36:39 -030044#include <media/v4l2-ctrls.h>
45#include <media/v4l2-fh.h>
46#include <media/v4l2-event.h>
Hans Verkuilbec2aec2009-03-06 13:48:47 -030047
48MODULE_AUTHOR("Fred Gleason, Russell Kroll, Quay Lu, Donald Song, Jason Lewis, Scott McGrath, William McGrath");
49MODULE_DESCRIPTION("A driver for the ADS Cadet AM/FM/RDS radio card.");
50MODULE_LICENSE("GPL");
Mauro Carvalho Chehab29834c12011-06-25 10:15:42 -030051MODULE_VERSION("0.3.4");
Hans Verkuilbec2aec2009-03-06 13:48:47 -030052
53static int io = -1; /* default to isapnp activation */
54static int radio_nr = -1;
55
56module_param(io, int, 0);
57MODULE_PARM_DESC(io, "I/O address of Cadet card (0x330,0x332,0x334,0x336,0x338,0x33a,0x33c,0x33e)");
58module_param(radio_nr, int, 0);
59
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#define RDS_BUFFER 256
Hans J. Kochc0c7fa02006-08-08 09:10:12 -030061#define RDS_RX_FLAG 1
62#define MBS_RX_FLAG 2
63
Hans Verkuilbec2aec2009-03-06 13:48:47 -030064struct cadet {
65 struct v4l2_device v4l2_dev;
66 struct video_device vdev;
Hans Verkuilb54c97db2012-07-02 09:36:39 -030067 struct v4l2_ctrl_handler ctrl_handler;
Hans Verkuilbec2aec2009-03-06 13:48:47 -030068 int io;
Hans Verkuilbec2aec2009-03-06 13:48:47 -030069 int curtuner;
70 int tunestat;
71 int sigstrength;
72 wait_queue_head_t read_queue;
73 struct timer_list readtimer;
Hans Verkuilcc0d3262012-07-02 09:46:46 -030074 u8 rdsin, rdsout, rdsstat;
Hans Verkuilbec2aec2009-03-06 13:48:47 -030075 unsigned char rdsbuf[RDS_BUFFER];
76 struct mutex lock;
77 int reading;
Douglas Landgrafc1c4fd32007-05-07 16:17:16 -030078};
79
Hans Verkuilbec2aec2009-03-06 13:48:47 -030080static struct cadet cadet_card;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
82/*
83 * Signal Strength Threshold Values
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -030084 * The V4L API spec does not define any particular unit for the signal
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 * strength value. These values are in microvolts of RF at the tuner's input.
86 */
Hans Verkuilbec2aec2009-03-06 13:48:47 -030087static __u16 sigtable[2][4] = {
Hans Verkuilcc0d3262012-07-02 09:46:46 -030088 { 2185, 4369, 13107, 65535 },
89 { 1835, 2621, 4128, 65535 }
Hans Verkuilbec2aec2009-03-06 13:48:47 -030090};
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
Hans J. Kochc0c7fa02006-08-08 09:10:12 -030092
Hans Verkuilbec2aec2009-03-06 13:48:47 -030093static int cadet_getstereo(struct cadet *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070094{
Hans J. Kochc0c7fa02006-08-08 09:10:12 -030095 int ret = V4L2_TUNER_SUB_MONO;
Hans Verkuilbec2aec2009-03-06 13:48:47 -030096
97 if (dev->curtuner != 0) /* Only FM has stereo capability! */
Hans J. Kochc0c7fa02006-08-08 09:10:12 -030098 return V4L2_TUNER_SUB_MONO;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300100 outb(7, dev->io); /* Select tuner control */
101 if ((inb(dev->io + 1) & 0x40) == 0)
Hans J. Kochc0c7fa02006-08-08 09:10:12 -0300102 ret = V4L2_TUNER_SUB_STEREO;
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -0300103 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104}
105
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300106static unsigned cadet_gettune(struct cadet *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107{
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300108 int curvol, i;
109 unsigned fifo = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -0300111 /*
112 * Prepare for read
113 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300115 outb(7, dev->io); /* Select tuner control */
116 curvol = inb(dev->io + 1); /* Save current volume/mute setting */
117 outb(0x00, dev->io + 1); /* Ensure WRITE-ENABLE is LOW */
118 dev->tunestat = 0xffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -0300120 /*
121 * Read the shift register
122 */
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300123 for (i = 0; i < 25; i++) {
124 fifo = (fifo << 1) | ((inb(dev->io + 1) >> 7) & 0x01);
125 if (i < 24) {
126 outb(0x01, dev->io + 1);
127 dev->tunestat &= inb(dev->io + 1);
128 outb(0x00, dev->io + 1);
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -0300129 }
130 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -0300132 /*
133 * Restore volume/mute setting
134 */
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300135 outb(curvol, dev->io + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 return fifo;
137}
138
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300139static unsigned cadet_getfreq(struct cadet *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140{
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -0300141 int i;
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300142 unsigned freq = 0, test, fifo = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
144 /*
145 * Read current tuning
146 */
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300147 fifo = cadet_gettune(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -0300149 /*
150 * Convert to actual frequency
151 */
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300152 if (dev->curtuner == 0) { /* FM */
153 test = 12500;
154 for (i = 0; i < 14; i++) {
155 if ((fifo & 0x01) != 0)
156 freq += test;
157 test = test << 1;
158 fifo = fifo >> 1;
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -0300159 }
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300160 freq -= 10700000; /* IF frequency is 10.7 MHz */
Hans Verkuilb54c97db2012-07-02 09:36:39 -0300161 freq = (freq * 16) / 1000; /* Make it 1/16 kHz */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 }
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300163 if (dev->curtuner == 1) /* AM */
164 freq = ((fifo & 0x7fff) - 2010) * 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -0300166 return freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167}
168
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300169static void cadet_settune(struct cadet *dev, unsigned fifo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170{
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -0300171 int i;
172 unsigned test;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300174 outb(7, dev->io); /* Select tuner control */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 /*
176 * Write the shift register
177 */
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300178 test = 0;
179 test = (fifo >> 23) & 0x02; /* Align data for SDO */
180 test |= 0x1c; /* SDM=1, SWE=1, SEN=1, SCK=0 */
181 outb(7, dev->io); /* Select tuner control */
182 outb(test, dev->io + 1); /* Initialize for write */
183 for (i = 0; i < 25; i++) {
184 test |= 0x01; /* Toggle SCK High */
185 outb(test, dev->io + 1);
186 test &= 0xfe; /* Toggle SCK Low */
187 outb(test, dev->io + 1);
188 fifo = fifo << 1; /* Prepare the next bit */
189 test = 0x1c | ((fifo >> 23) & 0x02);
190 outb(test, dev->io + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192}
193
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300194static void cadet_setfreq(struct cadet *dev, unsigned freq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195{
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -0300196 unsigned fifo;
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300197 int i, j, test;
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -0300198 int curvol;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -0300200 /*
201 * Formulate a fifo command
202 */
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300203 fifo = 0;
204 if (dev->curtuner == 0) { /* FM */
205 test = 102400;
Hans Verkuilb54c97db2012-07-02 09:36:39 -0300206 freq = freq / 16; /* Make it kHz */
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300207 freq += 10700; /* IF is 10700 kHz */
208 for (i = 0; i < 14; i++) {
209 fifo = fifo << 1;
210 if (freq >= test) {
211 fifo |= 0x01;
212 freq -= test;
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -0300213 }
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300214 test = test >> 1;
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -0300215 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 }
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300217 if (dev->curtuner == 1) { /* AM */
218 fifo = (freq / 16) + 2010; /* Make it kHz */
219 fifo |= 0x100000; /* Select AM Band */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 }
221
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -0300222 /*
223 * Save current volume/mute setting
224 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300226 outb(7, dev->io); /* Select tuner control */
227 curvol = inb(dev->io + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
229 /*
230 * Tune the card
231 */
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300232 for (j = 3; j > -1; j--) {
233 cadet_settune(dev, fifo | (j << 16));
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -0300234
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300235 outb(7, dev->io); /* Select tuner control */
236 outb(curvol, dev->io + 1);
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -0300237
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 msleep(100);
239
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300240 cadet_gettune(dev);
241 if ((dev->tunestat & 0x40) == 0) { /* Tuned */
242 dev->sigstrength = sigtable[dev->curtuner][j];
Hans Verkuilcc0d3262012-07-02 09:46:46 -0300243 goto reset_rds;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 }
245 }
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300246 dev->sigstrength = 0;
Hans Verkuilcc0d3262012-07-02 09:46:46 -0300247reset_rds:
248 outb(3, dev->io);
249 outb(inb(dev->io + 1) & 0x7f, dev->io + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250}
251
252
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300253static void cadet_handler(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254{
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300255 struct cadet *dev = (void *)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300257 /* Service the RDS fifo */
258 if (mutex_trylock(&dev->lock)) {
259 outb(0x3, dev->io); /* Select RDS Decoder Control */
260 if ((inb(dev->io + 1) & 0x20) != 0)
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -0300261 printk(KERN_CRIT "cadet: RDS fifo overflow\n");
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300262 outb(0x80, dev->io); /* Select RDS fifo */
263 while ((inb(dev->io) & 0x80) != 0) {
264 dev->rdsbuf[dev->rdsin] = inb(dev->io + 1);
Hans Verkuilcc0d3262012-07-02 09:46:46 -0300265 if (dev->rdsin + 1 == dev->rdsout)
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -0300266 printk(KERN_WARNING "cadet: RDS buffer overflow\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 else
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300268 dev->rdsin++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 }
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300270 mutex_unlock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 }
272
273 /*
274 * Service pending read
275 */
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300276 if (dev->rdsin != dev->rdsout)
277 wake_up_interruptible(&dev->read_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -0300279 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 * Clean up and exit
281 */
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300282 init_timer(&dev->readtimer);
283 dev->readtimer.function = cadet_handler;
Hans Verkuilcc0d3262012-07-02 09:46:46 -0300284 dev->readtimer.data = data;
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300285 dev->readtimer.expires = jiffies + msecs_to_jiffies(50);
286 add_timer(&dev->readtimer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287}
288
Hans Verkuilcc0d3262012-07-02 09:46:46 -0300289static void cadet_start_rds(struct cadet *dev)
290{
291 dev->rdsstat = 1;
292 outb(0x80, dev->io); /* Select RDS fifo */
293 init_timer(&dev->readtimer);
294 dev->readtimer.function = cadet_handler;
295 dev->readtimer.data = (unsigned long)dev;
296 dev->readtimer.expires = jiffies + msecs_to_jiffies(50);
297 add_timer(&dev->readtimer);
298}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300300static ssize_t cadet_read(struct file *file, char __user *data, size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301{
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300302 struct cadet *dev = video_drvdata(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 unsigned char readbuf[RDS_BUFFER];
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300304 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
Hans Verkuil1cccee02010-11-14 09:43:52 -0300306 mutex_lock(&dev->lock);
Hans Verkuilcc0d3262012-07-02 09:46:46 -0300307 if (dev->rdsstat == 0)
308 cadet_start_rds(dev);
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300309 if (dev->rdsin == dev->rdsout) {
Hans Verkuilb54c97db2012-07-02 09:36:39 -0300310 if (file->f_flags & O_NONBLOCK) {
311 i = -EWOULDBLOCK;
312 goto unlock;
313 }
Hans Verkuilcc0d3262012-07-02 09:46:46 -0300314 mutex_unlock(&dev->lock);
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300315 interruptible_sleep_on(&dev->read_queue);
Hans Verkuilcc0d3262012-07-02 09:46:46 -0300316 mutex_lock(&dev->lock);
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -0300317 }
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300318 while (i < count && dev->rdsin != dev->rdsout)
319 readbuf[i++] = dev->rdsbuf[dev->rdsout++];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
Hans Verkuilcc0d3262012-07-02 09:46:46 -0300321 if (i && copy_to_user(data, readbuf, i))
Hans Verkuilb54c97db2012-07-02 09:36:39 -0300322 i = -EFAULT;
323unlock:
324 mutex_unlock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 return i;
326}
327
328
Douglas Landgrafc1c4fd32007-05-07 16:17:16 -0300329static int vidioc_querycap(struct file *file, void *priv,
330 struct v4l2_capability *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331{
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300332 strlcpy(v->driver, "ADS Cadet", sizeof(v->driver));
333 strlcpy(v->card, "ADS Cadet", sizeof(v->card));
334 strlcpy(v->bus_info, "ISA", sizeof(v->bus_info));
Hans Verkuilb54c97db2012-07-02 09:36:39 -0300335 v->device_caps = V4L2_CAP_TUNER | V4L2_CAP_RADIO |
Hans Verkuil8e280f22009-06-20 06:19:09 -0300336 V4L2_CAP_READWRITE | V4L2_CAP_RDS_CAPTURE;
Hans Verkuilb54c97db2012-07-02 09:36:39 -0300337 v->capabilities = v->device_caps | V4L2_CAP_DEVICE_CAPS;
Douglas Landgrafc1c4fd32007-05-07 16:17:16 -0300338 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339}
340
Douglas Landgrafc1c4fd32007-05-07 16:17:16 -0300341static int vidioc_g_tuner(struct file *file, void *priv,
342 struct v4l2_tuner *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343{
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300344 struct cadet *dev = video_drvdata(file);
345
Douglas Landgrafc1c4fd32007-05-07 16:17:16 -0300346 v->type = V4L2_TUNER_RADIO;
347 switch (v->index) {
348 case 0:
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300349 strlcpy(v->name, "FM", sizeof(v->name));
Matti Aaltonencb0ed222010-10-18 06:54:14 -0300350 v->capability = V4L2_TUNER_CAP_STEREO | V4L2_TUNER_CAP_RDS |
Hans Verkuilb54c97db2012-07-02 09:36:39 -0300351 V4L2_TUNER_CAP_RDS_BLOCK_IO | V4L2_TUNER_CAP_LOW;
352 v->rangelow = 1400000; /* 87.5 MHz */
353 v->rangehigh = 1728000; /* 108.0 MHz */
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300354 v->rxsubchans = cadet_getstereo(dev);
Hans Verkuilb54c97db2012-07-02 09:36:39 -0300355 v->audmode = V4L2_TUNER_MODE_STEREO;
Hans Verkuilcc0d3262012-07-02 09:46:46 -0300356 outb(3, dev->io);
357 outb(inb(dev->io + 1) & 0x7f, dev->io + 1);
358 mdelay(100);
359 outb(3, dev->io);
360 if (inb(dev->io + 1) & 0x80)
361 v->rxsubchans |= V4L2_TUNER_SUB_RDS;
Douglas Landgrafc1c4fd32007-05-07 16:17:16 -0300362 break;
363 case 1:
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300364 strlcpy(v->name, "AM", sizeof(v->name));
Douglas Landgrafc1c4fd32007-05-07 16:17:16 -0300365 v->capability = V4L2_TUNER_CAP_LOW;
366 v->rangelow = 8320; /* 520 kHz */
367 v->rangehigh = 26400; /* 1650 kHz */
368 v->rxsubchans = V4L2_TUNER_SUB_MONO;
369 v->audmode = V4L2_TUNER_MODE_MONO;
370 break;
371 default:
372 return -EINVAL;
373 }
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300374 v->signal = dev->sigstrength; /* We might need to modify scaling of this */
Douglas Landgrafc1c4fd32007-05-07 16:17:16 -0300375 return 0;
376}
377
378static int vidioc_s_tuner(struct file *file, void *priv,
379 struct v4l2_tuner *v)
380{
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300381 if (v->index != 0 && v->index != 1)
Douglas Landgrafc1c4fd32007-05-07 16:17:16 -0300382 return -EINVAL;
Douglas Landgrafc1c4fd32007-05-07 16:17:16 -0300383 return 0;
384}
385
386static int vidioc_g_frequency(struct file *file, void *priv,
387 struct v4l2_frequency *f)
388{
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300389 struct cadet *dev = video_drvdata(file);
390
Hans Verkuilb54c97db2012-07-02 09:36:39 -0300391 if (f->tuner > 1)
392 return -EINVAL;
Douglas Landgrafc1c4fd32007-05-07 16:17:16 -0300393 f->type = V4L2_TUNER_RADIO;
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300394 f->frequency = cadet_getfreq(dev);
Douglas Landgrafc1c4fd32007-05-07 16:17:16 -0300395 return 0;
396}
397
398
399static int vidioc_s_frequency(struct file *file, void *priv,
400 struct v4l2_frequency *f)
401{
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300402 struct cadet *dev = video_drvdata(file);
403
Douglas Landgrafc1c4fd32007-05-07 16:17:16 -0300404 if (f->type != V4L2_TUNER_RADIO)
405 return -EINVAL;
Hans Verkuilb54c97db2012-07-02 09:36:39 -0300406 if (f->tuner == 0) {
407 if (f->frequency < 1400000)
408 f->frequency = 1400000;
409 else if (f->frequency > 1728000)
410 f->frequency = 1728000;
411 } else if (f->tuner == 1) {
412 if (f->frequency < 8320)
413 f->frequency = 8320;
414 else if (f->frequency > 26400)
415 f->frequency = 26400;
416 } else
Douglas Landgrafc1c4fd32007-05-07 16:17:16 -0300417 return -EINVAL;
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300418 cadet_setfreq(dev, f->frequency);
Douglas Landgrafc1c4fd32007-05-07 16:17:16 -0300419 return 0;
420}
421
Hans Verkuilb54c97db2012-07-02 09:36:39 -0300422static int cadet_s_ctrl(struct v4l2_ctrl *ctrl)
Douglas Landgrafc1c4fd32007-05-07 16:17:16 -0300423{
Hans Verkuilb54c97db2012-07-02 09:36:39 -0300424 struct cadet *dev = container_of(ctrl->handler, struct cadet, ctrl_handler);
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300425
426 switch (ctrl->id) {
Hans Verkuilb54c97db2012-07-02 09:36:39 -0300427 case V4L2_CID_AUDIO_MUTE:
428 outb(7, dev->io); /* Select tuner control */
429 if (ctrl->val)
430 outb(0x00, dev->io + 1);
Douglas Landgrafc1c4fd32007-05-07 16:17:16 -0300431 else
Hans Verkuilb54c97db2012-07-02 09:36:39 -0300432 outb(0x20, dev->io + 1);
433 return 0;
Douglas Landgrafc1c4fd32007-05-07 16:17:16 -0300434 }
Hans Verkuilb54c97db2012-07-02 09:36:39 -0300435 return -EINVAL;
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300436}
437
438static int cadet_open(struct file *file)
439{
440 struct cadet *dev = video_drvdata(file);
Hans Verkuilb54c97db2012-07-02 09:36:39 -0300441 int err;
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300442
Hans Verkuil1cccee02010-11-14 09:43:52 -0300443 mutex_lock(&dev->lock);
Hans Verkuilb54c97db2012-07-02 09:36:39 -0300444 err = v4l2_fh_open(file);
445 if (err)
446 goto fail;
447 if (v4l2_fh_is_singular_file(file))
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300448 init_waitqueue_head(&dev->read_queue);
Hans Verkuilb54c97db2012-07-02 09:36:39 -0300449fail:
Hans Verkuil1cccee02010-11-14 09:43:52 -0300450 mutex_unlock(&dev->lock);
Hans Verkuilb54c97db2012-07-02 09:36:39 -0300451 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452}
453
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300454static int cadet_release(struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455{
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300456 struct cadet *dev = video_drvdata(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
Hans Verkuil1cccee02010-11-14 09:43:52 -0300458 mutex_lock(&dev->lock);
Hans Verkuilb54c97db2012-07-02 09:36:39 -0300459 if (v4l2_fh_is_singular_file(file) && dev->rdsstat) {
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300460 del_timer_sync(&dev->readtimer);
461 dev->rdsstat = 0;
Hans J. Kochc0c7fa02006-08-08 09:10:12 -0300462 }
Hans Verkuilb54c97db2012-07-02 09:36:39 -0300463 v4l2_fh_release(file);
Hans Verkuil1cccee02010-11-14 09:43:52 -0300464 mutex_unlock(&dev->lock);
Hans J. Kochc0c7fa02006-08-08 09:10:12 -0300465 return 0;
466}
467
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300468static unsigned int cadet_poll(struct file *file, struct poll_table_struct *wait)
Hans J. Kochc0c7fa02006-08-08 09:10:12 -0300469{
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300470 struct cadet *dev = video_drvdata(file);
Hans Verkuilcc0d3262012-07-02 09:46:46 -0300471 unsigned long req_events = poll_requested_events(wait);
Hans Verkuilb54c97db2012-07-02 09:36:39 -0300472 unsigned int res = v4l2_ctrl_poll(file, wait);
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300473
474 poll_wait(file, &dev->read_queue, wait);
Hans Verkuilcc0d3262012-07-02 09:46:46 -0300475 if (dev->rdsstat == 0 && (req_events & (POLLIN | POLLRDNORM))) {
476 mutex_lock(&dev->lock);
477 if (dev->rdsstat == 0)
478 cadet_start_rds(dev);
479 mutex_unlock(&dev->lock);
480 }
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300481 if (dev->rdsin != dev->rdsout)
Hans Verkuilb54c97db2012-07-02 09:36:39 -0300482 res |= POLLIN | POLLRDNORM;
483 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484}
485
486
Hans Verkuilbec43662008-12-30 06:58:20 -0300487static const struct v4l2_file_operations cadet_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 .owner = THIS_MODULE,
489 .open = cadet_open,
490 .release = cadet_release,
491 .read = cadet_read,
Hans Verkuil1cccee02010-11-14 09:43:52 -0300492 .unlocked_ioctl = video_ioctl2,
Hans J. Kochc0c7fa02006-08-08 09:10:12 -0300493 .poll = cadet_poll,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494};
495
Hans Verkuila3998102008-07-21 02:57:38 -0300496static const struct v4l2_ioctl_ops cadet_ioctl_ops = {
Douglas Landgrafc1c4fd32007-05-07 16:17:16 -0300497 .vidioc_querycap = vidioc_querycap,
498 .vidioc_g_tuner = vidioc_g_tuner,
499 .vidioc_s_tuner = vidioc_s_tuner,
500 .vidioc_g_frequency = vidioc_g_frequency,
501 .vidioc_s_frequency = vidioc_s_frequency,
Hans Verkuilb54c97db2012-07-02 09:36:39 -0300502 .vidioc_log_status = v4l2_ctrl_log_status,
503 .vidioc_subscribe_event = v4l2_ctrl_subscribe_event,
504 .vidioc_unsubscribe_event = v4l2_event_unsubscribe,
505};
506
507static const struct v4l2_ctrl_ops cadet_ctrl_ops = {
508 .s_ctrl = cadet_s_ctrl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509};
510
Bjorn Helgaas044dfc92008-03-31 21:21:48 -0300511#ifdef CONFIG_PNP
512
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513static struct pnp_device_id cadet_pnp_devices[] = {
514 /* ADS Cadet AM/FM Radio Card */
515 {.id = "MSM0c24", .driver_data = 0},
516 {.id = ""}
517};
518
519MODULE_DEVICE_TABLE(pnp, cadet_pnp_devices);
520
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300521static int cadet_pnp_probe(struct pnp_dev *dev, const struct pnp_device_id *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522{
523 if (!dev)
524 return -ENODEV;
525 /* only support one device */
526 if (io > 0)
527 return -EBUSY;
528
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300529 if (!pnp_port_valid(dev, 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
532 io = pnp_port_start(dev, 0);
533
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300534 printk(KERN_INFO "radio-cadet: PnP reports device at %#x\n", io);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535
536 return io;
537}
538
539static struct pnp_driver cadet_pnp_driver = {
540 .name = "radio-cadet",
541 .id_table = cadet_pnp_devices,
542 .probe = cadet_pnp_probe,
543 .remove = NULL,
544};
545
Bjorn Helgaas044dfc92008-03-31 21:21:48 -0300546#else
547static struct pnp_driver cadet_pnp_driver;
548#endif
549
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300550static void cadet_probe(struct cadet *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551{
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300552 static int iovals[8] = { 0x330, 0x332, 0x334, 0x336, 0x338, 0x33a, 0x33c, 0x33e };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 int i;
554
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300555 for (i = 0; i < 8; i++) {
556 dev->io = iovals[i];
557 if (request_region(dev->io, 2, "cadet-probe")) {
558 cadet_setfreq(dev, 1410);
559 if (cadet_getfreq(dev) == 1410) {
560 release_region(dev->io, 2);
561 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 }
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300563 release_region(dev->io, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 }
565 }
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300566 dev->io = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567}
568
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -0300569/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 * io should only be set if the user has used something like
571 * isapnp (the userspace program) to initialize this card for us
572 */
573
574static int __init cadet_init(void)
575{
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300576 struct cadet *dev = &cadet_card;
577 struct v4l2_device *v4l2_dev = &dev->v4l2_dev;
Hans Verkuilb54c97db2012-07-02 09:36:39 -0300578 struct v4l2_ctrl_handler *hdl;
579 int res = -ENODEV;
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -0300580
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300581 strlcpy(v4l2_dev->name, "cadet", sizeof(v4l2_dev->name));
582 mutex_init(&dev->lock);
583
584 /* If a probe was requested then probe ISAPnP first (safest) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 if (io < 0)
586 pnp_register_driver(&cadet_pnp_driver);
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300587 dev->io = io;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300589 /* If that fails then probe unsafely if probe is requested */
590 if (dev->io < 0)
591 cadet_probe(dev);
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -0300592
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300593 /* Else we bail out */
594 if (dev->io < 0) {
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -0300595#ifdef MODULE
Hans Verkuilb24c20cc2009-03-09 08:11:21 -0300596 v4l2_err(v4l2_dev, "you must set an I/O address with io=0x330, 0x332, 0x334,\n");
597 v4l2_err(v4l2_dev, "0x336, 0x338, 0x33a, 0x33c or 0x33e\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598#endif
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -0300599 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 }
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300601 if (!request_region(dev->io, 2, "cadet"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 goto fail;
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300603
604 res = v4l2_device_register(NULL, v4l2_dev);
605 if (res < 0) {
606 release_region(dev->io, 2);
607 v4l2_err(v4l2_dev, "could not register v4l2_device\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 goto fail;
609 }
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300610
Hans Verkuilb54c97db2012-07-02 09:36:39 -0300611 hdl = &dev->ctrl_handler;
612 v4l2_ctrl_handler_init(hdl, 2);
613 v4l2_ctrl_new_std(hdl, &cadet_ctrl_ops,
614 V4L2_CID_AUDIO_MUTE, 0, 1, 1, 1);
615 v4l2_dev->ctrl_handler = hdl;
616 if (hdl->error) {
617 res = hdl->error;
618 v4l2_err(v4l2_dev, "Could not register controls\n");
619 goto err_hdl;
620 }
621
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300622 strlcpy(dev->vdev.name, v4l2_dev->name, sizeof(dev->vdev.name));
623 dev->vdev.v4l2_dev = v4l2_dev;
624 dev->vdev.fops = &cadet_fops;
625 dev->vdev.ioctl_ops = &cadet_ioctl_ops;
626 dev->vdev.release = video_device_release_empty;
Hans Verkuilb54c97db2012-07-02 09:36:39 -0300627 dev->vdev.lock = &dev->lock;
628 set_bit(V4L2_FL_USE_FH_PRIO, &dev->vdev.flags);
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300629 video_set_drvdata(&dev->vdev, dev);
630
Hans Verkuilb54c97db2012-07-02 09:36:39 -0300631 if (video_register_device(&dev->vdev, VFL_TYPE_RADIO, radio_nr) < 0)
632 goto err_hdl;
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300633 v4l2_info(v4l2_dev, "ADS Cadet Radio Card at 0x%x\n", dev->io);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 return 0;
Hans Verkuilb54c97db2012-07-02 09:36:39 -0300635err_hdl:
636 v4l2_ctrl_handler_free(hdl);
637 v4l2_device_unregister(v4l2_dev);
638 release_region(dev->io, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639fail:
640 pnp_unregister_driver(&cadet_pnp_driver);
Hans Verkuilb54c97db2012-07-02 09:36:39 -0300641 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642}
643
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300644static void __exit cadet_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645{
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300646 struct cadet *dev = &cadet_card;
647
648 video_unregister_device(&dev->vdev);
Hans Verkuilb54c97db2012-07-02 09:36:39 -0300649 v4l2_ctrl_handler_free(&dev->ctrl_handler);
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300650 v4l2_device_unregister(&dev->v4l2_dev);
Hans Verkuilcc0d3262012-07-02 09:46:46 -0300651 outb(7, dev->io); /* Mute */
652 outb(0x00, dev->io + 1);
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300653 release_region(dev->io, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 pnp_unregister_driver(&cadet_pnp_driver);
655}
656
657module_init(cadet_init);
Hans Verkuilbec2aec2009-03-06 13:48:47 -0300658module_exit(cadet_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659