]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - drivers/media/radio/radio-cadet.c
Merge tag 'media/v4.10-3' of git://git.kernel.org/pub/scm/linux/kernel/git/mchehab...
[mirror_ubuntu-zesty-kernel.git] / drivers / media / radio / radio-cadet.c
CommitLineData
1da177e4
LT
1/* 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
4286c6f6 11 * Jason Lewis (jlewis@twilight.vtc.vsc.edu)
1da177e4
LT
12 * 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 *
d9b01449 26 * 2003-01-31 Alan Cox <alan@lxorguk.ukuu.org.uk>
1da177e4 27 * Cleaned up locking, delay code, general odds and ends
c0c7fa09
HK
28 *
29 * 2006-07-30 Hans J. Koch <koch@hjk-az.de>
30 * Changed API to V4L2
1da177e4
LT
31 */
32
33#include <linux/module.h> /* Modules */
34#include <linux/init.h> /* Initdata */
fb911ee8 35#include <linux/ioport.h> /* request_region */
1da177e4 36#include <linux/delay.h> /* udelay */
c0c7fa09 37#include <linux/videodev2.h> /* V4L2 API defs */
1da177e4
LT
38#include <linux/param.h>
39#include <linux/pnp.h>
a99bbaf5 40#include <linux/sched.h>
bec2aec5 41#include <linux/io.h> /* outb, outb_p */
bec2aec5
HV
42#include <media/v4l2-device.h>
43#include <media/v4l2-ioctl.h>
b54c97db
HV
44#include <media/v4l2-ctrls.h>
45#include <media/v4l2-fh.h>
46#include <media/v4l2-event.h>
bec2aec5
HV
47
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");
29834c1a 51MODULE_VERSION("0.3.4");
bec2aec5
HV
52
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
1da177e4 60#define RDS_BUFFER 256
c0c7fa09
HK
61#define RDS_RX_FLAG 1
62#define MBS_RX_FLAG 2
63
bec2aec5
HV
64struct cadet {
65 struct v4l2_device v4l2_dev;
66 struct video_device vdev;
b54c97db 67 struct v4l2_ctrl_handler ctrl_handler;
bec2aec5 68 int io;
6652c716
HV
69 bool is_fm_band;
70 u32 curfreq;
bec2aec5
HV
71 int tunestat;
72 int sigstrength;
73 wait_queue_head_t read_queue;
74 struct timer_list readtimer;
cc0d3266 75 u8 rdsin, rdsout, rdsstat;
bec2aec5
HV
76 unsigned char rdsbuf[RDS_BUFFER];
77 struct mutex lock;
78 int reading;
c1c4fd3e
DL
79};
80
bec2aec5 81static struct cadet cadet_card;
1da177e4
LT
82
83/*
84 * Signal Strength Threshold Values
4286c6f6 85 * The V4L API spec does not define any particular unit for the signal
1da177e4
LT
86 * strength value. These values are in microvolts of RF at the tuner's input.
87 */
6652c716
HV
88static u16 sigtable[2][4] = {
89 { 1835, 2621, 4128, 65535 },
cc0d3266 90 { 2185, 4369, 13107, 65535 },
bec2aec5 91};
1da177e4 92
b530a447
HV
93static const struct v4l2_frequency_band bands[] = {
94 {
95 .index = 0,
96 .type = V4L2_TUNER_RADIO,
97 .capability = V4L2_TUNER_CAP_LOW | V4L2_TUNER_CAP_FREQ_BANDS,
98 .rangelow = 8320, /* 520 kHz */
99 .rangehigh = 26400, /* 1650 kHz */
100 .modulation = V4L2_BAND_MODULATION_AM,
101 }, {
102 .index = 1,
103 .type = V4L2_TUNER_RADIO,
104 .capability = V4L2_TUNER_CAP_STEREO | V4L2_TUNER_CAP_RDS |
105 V4L2_TUNER_CAP_RDS_BLOCK_IO | V4L2_TUNER_CAP_LOW |
106 V4L2_TUNER_CAP_FREQ_BANDS,
107 .rangelow = 1400000, /* 87.5 MHz */
108 .rangehigh = 1728000, /* 108.0 MHz */
109 .modulation = V4L2_BAND_MODULATION_FM,
110 },
111};
112
1da177e4 113
bec2aec5 114static int cadet_getstereo(struct cadet *dev)
1da177e4 115{
c0c7fa09 116 int ret = V4L2_TUNER_SUB_MONO;
bec2aec5 117
6652c716 118 if (!dev->is_fm_band) /* Only FM has stereo capability! */
c0c7fa09 119 return V4L2_TUNER_SUB_MONO;
1da177e4 120
bec2aec5
HV
121 outb(7, dev->io); /* Select tuner control */
122 if ((inb(dev->io + 1) & 0x40) == 0)
c0c7fa09 123 ret = V4L2_TUNER_SUB_STEREO;
4286c6f6 124 return ret;
1da177e4
LT
125}
126
bec2aec5 127static unsigned cadet_gettune(struct cadet *dev)
1da177e4 128{
bec2aec5
HV
129 int curvol, i;
130 unsigned fifo = 0;
1da177e4 131
4286c6f6
MCC
132 /*
133 * Prepare for read
134 */
1da177e4 135
bec2aec5
HV
136 outb(7, dev->io); /* Select tuner control */
137 curvol = inb(dev->io + 1); /* Save current volume/mute setting */
138 outb(0x00, dev->io + 1); /* Ensure WRITE-ENABLE is LOW */
139 dev->tunestat = 0xffff;
1da177e4 140
4286c6f6
MCC
141 /*
142 * Read the shift register
143 */
bec2aec5
HV
144 for (i = 0; i < 25; i++) {
145 fifo = (fifo << 1) | ((inb(dev->io + 1) >> 7) & 0x01);
146 if (i < 24) {
147 outb(0x01, dev->io + 1);
148 dev->tunestat &= inb(dev->io + 1);
149 outb(0x00, dev->io + 1);
4286c6f6
MCC
150 }
151 }
152
153 /*
154 * Restore volume/mute setting
155 */
bec2aec5 156 outb(curvol, dev->io + 1);
1da177e4
LT
157 return fifo;
158}
159
bec2aec5 160static unsigned cadet_getfreq(struct cadet *dev)
1da177e4 161{
4286c6f6 162 int i;
bec2aec5 163 unsigned freq = 0, test, fifo = 0;
1da177e4
LT
164
165 /*
166 * Read current tuning
167 */
bec2aec5 168 fifo = cadet_gettune(dev);
1da177e4 169
4286c6f6
MCC
170 /*
171 * Convert to actual frequency
172 */
6652c716
HV
173 if (!dev->is_fm_band) /* AM */
174 return ((fifo & 0x7fff) - 450) * 16;
175
176 test = 12500;
177 for (i = 0; i < 14; i++) {
178 if ((fifo & 0x01) != 0)
179 freq += test;
180 test = test << 1;
181 fifo = fifo >> 1;
1da177e4 182 }
6652c716
HV
183 freq -= 10700000; /* IF frequency is 10.7 MHz */
184 freq = (freq * 16) / 1000; /* Make it 1/16 kHz */
4286c6f6 185 return freq;
1da177e4
LT
186}
187
bec2aec5 188static void cadet_settune(struct cadet *dev, unsigned fifo)
1da177e4 189{
4286c6f6
MCC
190 int i;
191 unsigned test;
1da177e4 192
bec2aec5 193 outb(7, dev->io); /* Select tuner control */
1da177e4
LT
194 /*
195 * Write the shift register
196 */
bec2aec5
HV
197 test = 0;
198 test = (fifo >> 23) & 0x02; /* Align data for SDO */
199 test |= 0x1c; /* SDM=1, SWE=1, SEN=1, SCK=0 */
200 outb(7, dev->io); /* Select tuner control */
201 outb(test, dev->io + 1); /* Initialize for write */
202 for (i = 0; i < 25; i++) {
203 test |= 0x01; /* Toggle SCK High */
204 outb(test, dev->io + 1);
205 test &= 0xfe; /* Toggle SCK Low */
206 outb(test, dev->io + 1);
207 fifo = fifo << 1; /* Prepare the next bit */
208 test = 0x1c | ((fifo >> 23) & 0x02);
209 outb(test, dev->io + 1);
1da177e4 210 }
1da177e4
LT
211}
212
bec2aec5 213static void cadet_setfreq(struct cadet *dev, unsigned freq)
1da177e4 214{
4286c6f6 215 unsigned fifo;
bec2aec5 216 int i, j, test;
4286c6f6 217 int curvol;
1da177e4 218
b530a447
HV
219 freq = clamp(freq, bands[dev->is_fm_band].rangelow,
220 bands[dev->is_fm_band].rangehigh);
6652c716 221 dev->curfreq = freq;
4286c6f6
MCC
222 /*
223 * Formulate a fifo command
224 */
bec2aec5 225 fifo = 0;
6652c716 226 if (dev->is_fm_band) { /* FM */
bec2aec5 227 test = 102400;
b54c97db 228 freq = freq / 16; /* Make it kHz */
bec2aec5
HV
229 freq += 10700; /* IF is 10700 kHz */
230 for (i = 0; i < 14; i++) {
231 fifo = fifo << 1;
232 if (freq >= test) {
233 fifo |= 0x01;
234 freq -= test;
4286c6f6 235 }
bec2aec5 236 test = test >> 1;
4286c6f6 237 }
6652c716
HV
238 } else { /* AM */
239 fifo = (freq / 16) + 450; /* Make it kHz */
240 fifo |= 0x100000; /* Select AM Band */
1da177e4
LT
241 }
242
4286c6f6
MCC
243 /*
244 * Save current volume/mute setting
245 */
1da177e4 246
bec2aec5
HV
247 outb(7, dev->io); /* Select tuner control */
248 curvol = inb(dev->io + 1);
1da177e4
LT
249
250 /*
251 * Tune the card
252 */
bec2aec5
HV
253 for (j = 3; j > -1; j--) {
254 cadet_settune(dev, fifo | (j << 16));
4286c6f6 255
bec2aec5
HV
256 outb(7, dev->io); /* Select tuner control */
257 outb(curvol, dev->io + 1);
4286c6f6 258
1da177e4
LT
259 msleep(100);
260
bec2aec5
HV
261 cadet_gettune(dev);
262 if ((dev->tunestat & 0x40) == 0) { /* Tuned */
6652c716 263 dev->sigstrength = sigtable[dev->is_fm_band][j];
cc0d3266 264 goto reset_rds;
1da177e4
LT
265 }
266 }
bec2aec5 267 dev->sigstrength = 0;
cc0d3266
HV
268reset_rds:
269 outb(3, dev->io);
270 outb(inb(dev->io + 1) & 0x7f, dev->io + 1);
1da177e4
LT
271}
272
ce0ede2c
HV
273static bool cadet_has_rds_data(struct cadet *dev)
274{
275 bool result;
276
277 mutex_lock(&dev->lock);
278 result = dev->rdsin != dev->rdsout;
279 mutex_unlock(&dev->lock);
280 return result;
281}
282
1da177e4 283
bec2aec5 284static void cadet_handler(unsigned long data)
1da177e4 285{
bec2aec5 286 struct cadet *dev = (void *)data;
1da177e4 287
bec2aec5
HV
288 /* Service the RDS fifo */
289 if (mutex_trylock(&dev->lock)) {
290 outb(0x3, dev->io); /* Select RDS Decoder Control */
291 if ((inb(dev->io + 1) & 0x20) != 0)
ce0ede2c 292 pr_err("cadet: RDS fifo overflow\n");
bec2aec5 293 outb(0x80, dev->io); /* Select RDS fifo */
ce0ede2c 294
bec2aec5
HV
295 while ((inb(dev->io) & 0x80) != 0) {
296 dev->rdsbuf[dev->rdsin] = inb(dev->io + 1);
ce0ede2c 297 if (dev->rdsin + 1 != dev->rdsout)
bec2aec5 298 dev->rdsin++;
1da177e4 299 }
bec2aec5 300 mutex_unlock(&dev->lock);
1da177e4
LT
301 }
302
303 /*
304 * Service pending read
305 */
ce0ede2c 306 if (cadet_has_rds_data(dev))
bec2aec5 307 wake_up_interruptible(&dev->read_queue);
1da177e4 308
4286c6f6 309 /*
1da177e4
LT
310 * Clean up and exit
311 */
bec2aec5
HV
312 init_timer(&dev->readtimer);
313 dev->readtimer.function = cadet_handler;
cc0d3266 314 dev->readtimer.data = data;
bec2aec5
HV
315 dev->readtimer.expires = jiffies + msecs_to_jiffies(50);
316 add_timer(&dev->readtimer);
1da177e4
LT
317}
318
cc0d3266
HV
319static void cadet_start_rds(struct cadet *dev)
320{
321 dev->rdsstat = 1;
322 outb(0x80, dev->io); /* Select RDS fifo */
323 init_timer(&dev->readtimer);
324 dev->readtimer.function = cadet_handler;
325 dev->readtimer.data = (unsigned long)dev;
326 dev->readtimer.expires = jiffies + msecs_to_jiffies(50);
327 add_timer(&dev->readtimer);
328}
1da177e4 329
bec2aec5 330static ssize_t cadet_read(struct file *file, char __user *data, size_t count, loff_t *ppos)
1da177e4 331{
bec2aec5 332 struct cadet *dev = video_drvdata(file);
1da177e4 333 unsigned char readbuf[RDS_BUFFER];
bec2aec5
HV
334 int i = 0;
335
1cccee0b 336 mutex_lock(&dev->lock);
cc0d3266
HV
337 if (dev->rdsstat == 0)
338 cadet_start_rds(dev);
ce0ede2c
HV
339 mutex_unlock(&dev->lock);
340
341 if (!cadet_has_rds_data(dev) && (file->f_flags & O_NONBLOCK))
342 return -EWOULDBLOCK;
343 i = wait_event_interruptible(dev->read_queue, cadet_has_rds_data(dev));
344 if (i)
345 return i;
346
347 mutex_lock(&dev->lock);
bec2aec5
HV
348 while (i < count && dev->rdsin != dev->rdsout)
349 readbuf[i++] = dev->rdsbuf[dev->rdsout++];
ce0ede2c 350 mutex_unlock(&dev->lock);
1da177e4 351
cc0d3266 352 if (i && copy_to_user(data, readbuf, i))
ce0ede2c 353 return -EFAULT;
1da177e4
LT
354 return i;
355}
356
357
c1c4fd3e
DL
358static int vidioc_querycap(struct file *file, void *priv,
359 struct v4l2_capability *v)
360{
bec2aec5
HV
361 strlcpy(v->driver, "ADS Cadet", sizeof(v->driver));
362 strlcpy(v->card, "ADS Cadet", sizeof(v->card));
ce0ede2c 363 strlcpy(v->bus_info, "ISA:radio-cadet", sizeof(v->bus_info));
b54c97db 364 v->device_caps = V4L2_CAP_TUNER | V4L2_CAP_RADIO |
8e280f24 365 V4L2_CAP_READWRITE | V4L2_CAP_RDS_CAPTURE;
b54c97db 366 v->capabilities = v->device_caps | V4L2_CAP_DEVICE_CAPS;
c1c4fd3e
DL
367 return 0;
368}
1da177e4 369
c1c4fd3e
DL
370static int vidioc_g_tuner(struct file *file, void *priv,
371 struct v4l2_tuner *v)
1da177e4 372{
bec2aec5
HV
373 struct cadet *dev = video_drvdata(file);
374
6652c716
HV
375 if (v->index)
376 return -EINVAL;
c1c4fd3e 377 v->type = V4L2_TUNER_RADIO;
6652c716
HV
378 strlcpy(v->name, "Radio", sizeof(v->name));
379 v->capability = bands[0].capability | bands[1].capability;
380 v->rangelow = bands[0].rangelow; /* 520 kHz (start of AM band) */
381 v->rangehigh = bands[1].rangehigh; /* 108.0 MHz (end of FM band) */
382 if (dev->is_fm_band) {
bec2aec5 383 v->rxsubchans = cadet_getstereo(dev);
cc0d3266
HV
384 outb(3, dev->io);
385 outb(inb(dev->io + 1) & 0x7f, dev->io + 1);
386 mdelay(100);
387 outb(3, dev->io);
388 if (inb(dev->io + 1) & 0x80)
389 v->rxsubchans |= V4L2_TUNER_SUB_RDS;
6652c716 390 } else {
c1c4fd3e
DL
391 v->rangelow = 8320; /* 520 kHz */
392 v->rangehigh = 26400; /* 1650 kHz */
393 v->rxsubchans = V4L2_TUNER_SUB_MONO;
c1c4fd3e 394 }
6652c716 395 v->audmode = V4L2_TUNER_MODE_STEREO;
bec2aec5 396 v->signal = dev->sigstrength; /* We might need to modify scaling of this */
c1c4fd3e
DL
397 return 0;
398}
c0c7fa09 399
c1c4fd3e 400static int vidioc_s_tuner(struct file *file, void *priv,
2f73c7c5 401 const struct v4l2_tuner *v)
c1c4fd3e 402{
6652c716
HV
403 return v->index ? -EINVAL : 0;
404}
405
406static int vidioc_enum_freq_bands(struct file *file, void *priv,
407 struct v4l2_frequency_band *band)
408{
409 if (band->tuner)
410 return -EINVAL;
411 if (band->index >= ARRAY_SIZE(bands))
c1c4fd3e 412 return -EINVAL;
6652c716 413 *band = bands[band->index];
c1c4fd3e
DL
414 return 0;
415}
c0c7fa09 416
c1c4fd3e
DL
417static int vidioc_g_frequency(struct file *file, void *priv,
418 struct v4l2_frequency *f)
419{
bec2aec5
HV
420 struct cadet *dev = video_drvdata(file);
421
6652c716 422 if (f->tuner)
b54c97db 423 return -EINVAL;
c1c4fd3e 424 f->type = V4L2_TUNER_RADIO;
6652c716 425 f->frequency = dev->curfreq;
c1c4fd3e
DL
426 return 0;
427}
428
429
430static int vidioc_s_frequency(struct file *file, void *priv,
b530a447 431 const struct v4l2_frequency *f)
c1c4fd3e 432{
bec2aec5
HV
433 struct cadet *dev = video_drvdata(file);
434
6652c716 435 if (f->tuner)
c1c4fd3e 436 return -EINVAL;
6652c716
HV
437 dev->is_fm_band =
438 f->frequency >= (bands[0].rangehigh + bands[1].rangelow) / 2;
bec2aec5 439 cadet_setfreq(dev, f->frequency);
c1c4fd3e
DL
440 return 0;
441}
442
b54c97db 443static int cadet_s_ctrl(struct v4l2_ctrl *ctrl)
c1c4fd3e 444{
b54c97db 445 struct cadet *dev = container_of(ctrl->handler, struct cadet, ctrl_handler);
bec2aec5
HV
446
447 switch (ctrl->id) {
b54c97db
HV
448 case V4L2_CID_AUDIO_MUTE:
449 outb(7, dev->io); /* Select tuner control */
450 if (ctrl->val)
451 outb(0x00, dev->io + 1);
c1c4fd3e 452 else
b54c97db
HV
453 outb(0x20, dev->io + 1);
454 return 0;
c1c4fd3e 455 }
b54c97db 456 return -EINVAL;
1da177e4
LT
457}
458
bec2aec5 459static int cadet_open(struct file *file)
1da177e4 460{
bec2aec5 461 struct cadet *dev = video_drvdata(file);
b54c97db 462 int err;
bec2aec5 463
1cccee0b 464 mutex_lock(&dev->lock);
b54c97db
HV
465 err = v4l2_fh_open(file);
466 if (err)
467 goto fail;
468 if (v4l2_fh_is_singular_file(file))
bec2aec5 469 init_waitqueue_head(&dev->read_queue);
b54c97db 470fail:
1cccee0b 471 mutex_unlock(&dev->lock);
b54c97db 472 return err;
1da177e4
LT
473}
474
bec2aec5 475static int cadet_release(struct file *file)
1da177e4 476{
bec2aec5
HV
477 struct cadet *dev = video_drvdata(file);
478
1cccee0b 479 mutex_lock(&dev->lock);
b54c97db 480 if (v4l2_fh_is_singular_file(file) && dev->rdsstat) {
bec2aec5
HV
481 del_timer_sync(&dev->readtimer);
482 dev->rdsstat = 0;
c0c7fa09 483 }
b54c97db 484 v4l2_fh_release(file);
1cccee0b 485 mutex_unlock(&dev->lock);
c0c7fa09
HK
486 return 0;
487}
488
bec2aec5 489static unsigned int cadet_poll(struct file *file, struct poll_table_struct *wait)
c0c7fa09 490{
bec2aec5 491 struct cadet *dev = video_drvdata(file);
cc0d3266 492 unsigned long req_events = poll_requested_events(wait);
b54c97db 493 unsigned int res = v4l2_ctrl_poll(file, wait);
bec2aec5
HV
494
495 poll_wait(file, &dev->read_queue, wait);
cc0d3266
HV
496 if (dev->rdsstat == 0 && (req_events & (POLLIN | POLLRDNORM))) {
497 mutex_lock(&dev->lock);
498 if (dev->rdsstat == 0)
499 cadet_start_rds(dev);
500 mutex_unlock(&dev->lock);
501 }
ce0ede2c 502 if (cadet_has_rds_data(dev))
b54c97db
HV
503 res |= POLLIN | POLLRDNORM;
504 return res;
1da177e4
LT
505}
506
507
bec43661 508static const struct v4l2_file_operations cadet_fops = {
1da177e4
LT
509 .owner = THIS_MODULE,
510 .open = cadet_open,
511 .release = cadet_release,
512 .read = cadet_read,
1cccee0b 513 .unlocked_ioctl = video_ioctl2,
c0c7fa09 514 .poll = cadet_poll,
1da177e4
LT
515};
516
a399810c 517static const struct v4l2_ioctl_ops cadet_ioctl_ops = {
c1c4fd3e
DL
518 .vidioc_querycap = vidioc_querycap,
519 .vidioc_g_tuner = vidioc_g_tuner,
520 .vidioc_s_tuner = vidioc_s_tuner,
521 .vidioc_g_frequency = vidioc_g_frequency,
522 .vidioc_s_frequency = vidioc_s_frequency,
6652c716 523 .vidioc_enum_freq_bands = vidioc_enum_freq_bands,
b54c97db
HV
524 .vidioc_log_status = v4l2_ctrl_log_status,
525 .vidioc_subscribe_event = v4l2_ctrl_subscribe_event,
526 .vidioc_unsubscribe_event = v4l2_event_unsubscribe,
527};
528
529static const struct v4l2_ctrl_ops cadet_ctrl_ops = {
530 .s_ctrl = cadet_s_ctrl,
1da177e4
LT
531};
532
044dfc99
BH
533#ifdef CONFIG_PNP
534
1da177e4
LT
535static struct pnp_device_id cadet_pnp_devices[] = {
536 /* ADS Cadet AM/FM Radio Card */
537 {.id = "MSM0c24", .driver_data = 0},
538 {.id = ""}
539};
540
541MODULE_DEVICE_TABLE(pnp, cadet_pnp_devices);
542
bec2aec5 543static int cadet_pnp_probe(struct pnp_dev *dev, const struct pnp_device_id *dev_id)
1da177e4
LT
544{
545 if (!dev)
546 return -ENODEV;
547 /* only support one device */
548 if (io > 0)
549 return -EBUSY;
550
bec2aec5 551 if (!pnp_port_valid(dev, 0))
1da177e4 552 return -ENODEV;
1da177e4
LT
553
554 io = pnp_port_start(dev, 0);
555
bec2aec5 556 printk(KERN_INFO "radio-cadet: PnP reports device at %#x\n", io);
1da177e4
LT
557
558 return io;
559}
560
561static struct pnp_driver cadet_pnp_driver = {
562 .name = "radio-cadet",
563 .id_table = cadet_pnp_devices,
564 .probe = cadet_pnp_probe,
565 .remove = NULL,
566};
567
044dfc99
BH
568#else
569static struct pnp_driver cadet_pnp_driver;
570#endif
571
bec2aec5 572static void cadet_probe(struct cadet *dev)
1da177e4 573{
bec2aec5 574 static int iovals[8] = { 0x330, 0x332, 0x334, 0x336, 0x338, 0x33a, 0x33c, 0x33e };
1da177e4
LT
575 int i;
576
bec2aec5
HV
577 for (i = 0; i < 8; i++) {
578 dev->io = iovals[i];
579 if (request_region(dev->io, 2, "cadet-probe")) {
6652c716
HV
580 cadet_setfreq(dev, bands[1].rangelow);
581 if (cadet_getfreq(dev) == bands[1].rangelow) {
bec2aec5
HV
582 release_region(dev->io, 2);
583 return;
1da177e4 584 }
bec2aec5 585 release_region(dev->io, 2);
1da177e4
LT
586 }
587 }
bec2aec5 588 dev->io = -1;
1da177e4
LT
589}
590
4286c6f6 591/*
1da177e4
LT
592 * io should only be set if the user has used something like
593 * isapnp (the userspace program) to initialize this card for us
594 */
595
596static int __init cadet_init(void)
597{
bec2aec5
HV
598 struct cadet *dev = &cadet_card;
599 struct v4l2_device *v4l2_dev = &dev->v4l2_dev;
b54c97db
HV
600 struct v4l2_ctrl_handler *hdl;
601 int res = -ENODEV;
4286c6f6 602
bec2aec5
HV
603 strlcpy(v4l2_dev->name, "cadet", sizeof(v4l2_dev->name));
604 mutex_init(&dev->lock);
605
606 /* If a probe was requested then probe ISAPnP first (safest) */
1da177e4
LT
607 if (io < 0)
608 pnp_register_driver(&cadet_pnp_driver);
bec2aec5 609 dev->io = io;
1da177e4 610
bec2aec5
HV
611 /* If that fails then probe unsafely if probe is requested */
612 if (dev->io < 0)
613 cadet_probe(dev);
4286c6f6 614
bec2aec5
HV
615 /* Else we bail out */
616 if (dev->io < 0) {
4286c6f6 617#ifdef MODULE
b24c20cc
HV
618 v4l2_err(v4l2_dev, "you must set an I/O address with io=0x330, 0x332, 0x334,\n");
619 v4l2_err(v4l2_dev, "0x336, 0x338, 0x33a, 0x33c or 0x33e\n");
1da177e4 620#endif
4286c6f6 621 goto fail;
1da177e4 622 }
bec2aec5
HV
623 if (!request_region(dev->io, 2, "cadet"))
624 goto fail;
625
626 res = v4l2_device_register(NULL, v4l2_dev);
627 if (res < 0) {
628 release_region(dev->io, 2);
629 v4l2_err(v4l2_dev, "could not register v4l2_device\n");
1da177e4 630 goto fail;
bec2aec5
HV
631 }
632
b54c97db
HV
633 hdl = &dev->ctrl_handler;
634 v4l2_ctrl_handler_init(hdl, 2);
635 v4l2_ctrl_new_std(hdl, &cadet_ctrl_ops,
636 V4L2_CID_AUDIO_MUTE, 0, 1, 1, 1);
637 v4l2_dev->ctrl_handler = hdl;
638 if (hdl->error) {
639 res = hdl->error;
640 v4l2_err(v4l2_dev, "Could not register controls\n");
641 goto err_hdl;
642 }
643
6652c716
HV
644 dev->is_fm_band = true;
645 dev->curfreq = bands[dev->is_fm_band].rangelow;
646 cadet_setfreq(dev, dev->curfreq);
bec2aec5
HV
647 strlcpy(dev->vdev.name, v4l2_dev->name, sizeof(dev->vdev.name));
648 dev->vdev.v4l2_dev = v4l2_dev;
649 dev->vdev.fops = &cadet_fops;
650 dev->vdev.ioctl_ops = &cadet_ioctl_ops;
651 dev->vdev.release = video_device_release_empty;
b54c97db 652 dev->vdev.lock = &dev->lock;
bec2aec5
HV
653 video_set_drvdata(&dev->vdev, dev);
654
8ca70804
PST
655 res = video_register_device(&dev->vdev, VFL_TYPE_RADIO, radio_nr);
656 if (res < 0)
b54c97db 657 goto err_hdl;
bec2aec5 658 v4l2_info(v4l2_dev, "ADS Cadet Radio Card at 0x%x\n", dev->io);
1da177e4 659 return 0;
b54c97db
HV
660err_hdl:
661 v4l2_ctrl_handler_free(hdl);
662 v4l2_device_unregister(v4l2_dev);
663 release_region(dev->io, 2);
1da177e4
LT
664fail:
665 pnp_unregister_driver(&cadet_pnp_driver);
b54c97db 666 return res;
1da177e4
LT
667}
668
bec2aec5 669static void __exit cadet_exit(void)
1da177e4 670{
bec2aec5
HV
671 struct cadet *dev = &cadet_card;
672
673 video_unregister_device(&dev->vdev);
b54c97db 674 v4l2_ctrl_handler_free(&dev->ctrl_handler);
bec2aec5 675 v4l2_device_unregister(&dev->v4l2_dev);
cc0d3266
HV
676 outb(7, dev->io); /* Mute */
677 outb(0x00, dev->io + 1);
bec2aec5 678 release_region(dev->io, 2);
1da177e4
LT
679 pnp_unregister_driver(&cadet_pnp_driver);
680}
681
682module_init(cadet_init);
bec2aec5 683module_exit(cadet_exit);
1da177e4 684