radio-cadet.c 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709
  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
  11. * Jason Lewis (jlewis@twilight.vtc.vsc.edu)
  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. *
  26. * 2003-01-31 Alan Cox <alan@lxorguk.ukuu.org.uk>
  27. * Cleaned up locking, delay code, general odds and ends
  28. *
  29. * 2006-07-30 Hans J. Koch <koch@hjk-az.de>
  30. * Changed API to V4L2
  31. */
  32. #include <linux/version.h>
  33. #include <linux/module.h> /* Modules */
  34. #include <linux/init.h> /* Initdata */
  35. #include <linux/ioport.h> /* request_region */
  36. #include <linux/delay.h> /* udelay */
  37. #include <linux/videodev2.h> /* V4L2 API defs */
  38. #include <linux/param.h>
  39. #include <linux/pnp.h>
  40. #include <linux/io.h> /* outb, outb_p */
  41. #include <media/v4l2-device.h>
  42. #include <media/v4l2-ioctl.h>
  43. MODULE_AUTHOR("Fred Gleason, Russell Kroll, Quay Lu, Donald Song, Jason Lewis, Scott McGrath, William McGrath");
  44. MODULE_DESCRIPTION("A driver for the ADS Cadet AM/FM/RDS radio card.");
  45. MODULE_LICENSE("GPL");
  46. static int io = -1; /* default to isapnp activation */
  47. static int radio_nr = -1;
  48. module_param(io, int, 0);
  49. MODULE_PARM_DESC(io, "I/O address of Cadet card (0x330,0x332,0x334,0x336,0x338,0x33a,0x33c,0x33e)");
  50. module_param(radio_nr, int, 0);
  51. #define CADET_VERSION KERNEL_VERSION(0, 3, 3)
  52. #define RDS_BUFFER 256
  53. #define RDS_RX_FLAG 1
  54. #define MBS_RX_FLAG 2
  55. struct cadet {
  56. struct v4l2_device v4l2_dev;
  57. struct video_device vdev;
  58. int io;
  59. int users;
  60. int curtuner;
  61. int tunestat;
  62. int sigstrength;
  63. wait_queue_head_t read_queue;
  64. struct timer_list readtimer;
  65. __u8 rdsin, rdsout, rdsstat;
  66. unsigned char rdsbuf[RDS_BUFFER];
  67. struct mutex lock;
  68. int reading;
  69. };
  70. static struct cadet cadet_card;
  71. /*
  72. * Signal Strength Threshold Values
  73. * The V4L API spec does not define any particular unit for the signal
  74. * strength value. These values are in microvolts of RF at the tuner's input.
  75. */
  76. static __u16 sigtable[2][4] = {
  77. { 5, 10, 30, 150 },
  78. { 28, 40, 63, 1000 }
  79. };
  80. static int cadet_getstereo(struct cadet *dev)
  81. {
  82. int ret = V4L2_TUNER_SUB_MONO;
  83. if (dev->curtuner != 0) /* Only FM has stereo capability! */
  84. return V4L2_TUNER_SUB_MONO;
  85. mutex_lock(&dev->lock);
  86. outb(7, dev->io); /* Select tuner control */
  87. if ((inb(dev->io + 1) & 0x40) == 0)
  88. ret = V4L2_TUNER_SUB_STEREO;
  89. mutex_unlock(&dev->lock);
  90. return ret;
  91. }
  92. static unsigned cadet_gettune(struct cadet *dev)
  93. {
  94. int curvol, i;
  95. unsigned fifo = 0;
  96. /*
  97. * Prepare for read
  98. */
  99. mutex_lock(&dev->lock);
  100. outb(7, dev->io); /* Select tuner control */
  101. curvol = inb(dev->io + 1); /* Save current volume/mute setting */
  102. outb(0x00, dev->io + 1); /* Ensure WRITE-ENABLE is LOW */
  103. dev->tunestat = 0xffff;
  104. /*
  105. * Read the shift register
  106. */
  107. for (i = 0; i < 25; i++) {
  108. fifo = (fifo << 1) | ((inb(dev->io + 1) >> 7) & 0x01);
  109. if (i < 24) {
  110. outb(0x01, dev->io + 1);
  111. dev->tunestat &= inb(dev->io + 1);
  112. outb(0x00, dev->io + 1);
  113. }
  114. }
  115. /*
  116. * Restore volume/mute setting
  117. */
  118. outb(curvol, dev->io + 1);
  119. mutex_unlock(&dev->lock);
  120. return fifo;
  121. }
  122. static unsigned cadet_getfreq(struct cadet *dev)
  123. {
  124. int i;
  125. unsigned freq = 0, test, fifo = 0;
  126. /*
  127. * Read current tuning
  128. */
  129. fifo = cadet_gettune(dev);
  130. /*
  131. * Convert to actual frequency
  132. */
  133. if (dev->curtuner == 0) { /* FM */
  134. test = 12500;
  135. for (i = 0; i < 14; i++) {
  136. if ((fifo & 0x01) != 0)
  137. freq += test;
  138. test = test << 1;
  139. fifo = fifo >> 1;
  140. }
  141. freq -= 10700000; /* IF frequency is 10.7 MHz */
  142. freq = (freq * 16) / 1000000; /* Make it 1/16 MHz */
  143. }
  144. if (dev->curtuner == 1) /* AM */
  145. freq = ((fifo & 0x7fff) - 2010) * 16;
  146. return freq;
  147. }
  148. static void cadet_settune(struct cadet *dev, unsigned fifo)
  149. {
  150. int i;
  151. unsigned test;
  152. mutex_lock(&dev->lock);
  153. outb(7, dev->io); /* Select tuner control */
  154. /*
  155. * Write the shift register
  156. */
  157. test = 0;
  158. test = (fifo >> 23) & 0x02; /* Align data for SDO */
  159. test |= 0x1c; /* SDM=1, SWE=1, SEN=1, SCK=0 */
  160. outb(7, dev->io); /* Select tuner control */
  161. outb(test, dev->io + 1); /* Initialize for write */
  162. for (i = 0; i < 25; i++) {
  163. test |= 0x01; /* Toggle SCK High */
  164. outb(test, dev->io + 1);
  165. test &= 0xfe; /* Toggle SCK Low */
  166. outb(test, dev->io + 1);
  167. fifo = fifo << 1; /* Prepare the next bit */
  168. test = 0x1c | ((fifo >> 23) & 0x02);
  169. outb(test, dev->io + 1);
  170. }
  171. mutex_unlock(&dev->lock);
  172. }
  173. static void cadet_setfreq(struct cadet *dev, unsigned freq)
  174. {
  175. unsigned fifo;
  176. int i, j, test;
  177. int curvol;
  178. /*
  179. * Formulate a fifo command
  180. */
  181. fifo = 0;
  182. if (dev->curtuner == 0) { /* FM */
  183. test = 102400;
  184. freq = (freq * 1000) / 16; /* Make it kHz */
  185. freq += 10700; /* IF is 10700 kHz */
  186. for (i = 0; i < 14; i++) {
  187. fifo = fifo << 1;
  188. if (freq >= test) {
  189. fifo |= 0x01;
  190. freq -= test;
  191. }
  192. test = test >> 1;
  193. }
  194. }
  195. if (dev->curtuner == 1) { /* AM */
  196. fifo = (freq / 16) + 2010; /* Make it kHz */
  197. fifo |= 0x100000; /* Select AM Band */
  198. }
  199. /*
  200. * Save current volume/mute setting
  201. */
  202. mutex_lock(&dev->lock);
  203. outb(7, dev->io); /* Select tuner control */
  204. curvol = inb(dev->io + 1);
  205. mutex_unlock(&dev->lock);
  206. /*
  207. * Tune the card
  208. */
  209. for (j = 3; j > -1; j--) {
  210. cadet_settune(dev, fifo | (j << 16));
  211. mutex_lock(&dev->lock);
  212. outb(7, dev->io); /* Select tuner control */
  213. outb(curvol, dev->io + 1);
  214. mutex_unlock(&dev->lock);
  215. msleep(100);
  216. cadet_gettune(dev);
  217. if ((dev->tunestat & 0x40) == 0) { /* Tuned */
  218. dev->sigstrength = sigtable[dev->curtuner][j];
  219. return;
  220. }
  221. }
  222. dev->sigstrength = 0;
  223. }
  224. static int cadet_getvol(struct cadet *dev)
  225. {
  226. int ret = 0;
  227. mutex_lock(&dev->lock);
  228. outb(7, dev->io); /* Select tuner control */
  229. if ((inb(dev->io + 1) & 0x20) != 0)
  230. ret = 0xffff;
  231. mutex_unlock(&dev->lock);
  232. return ret;
  233. }
  234. static void cadet_setvol(struct cadet *dev, int vol)
  235. {
  236. mutex_lock(&dev->lock);
  237. outb(7, dev->io); /* Select tuner control */
  238. if (vol > 0)
  239. outb(0x20, dev->io + 1);
  240. else
  241. outb(0x00, dev->io + 1);
  242. mutex_unlock(&dev->lock);
  243. }
  244. static void cadet_handler(unsigned long data)
  245. {
  246. struct cadet *dev = (void *)data;
  247. /* Service the RDS fifo */
  248. if (mutex_trylock(&dev->lock)) {
  249. outb(0x3, dev->io); /* Select RDS Decoder Control */
  250. if ((inb(dev->io + 1) & 0x20) != 0)
  251. printk(KERN_CRIT "cadet: RDS fifo overflow\n");
  252. outb(0x80, dev->io); /* Select RDS fifo */
  253. while ((inb(dev->io) & 0x80) != 0) {
  254. dev->rdsbuf[dev->rdsin] = inb(dev->io + 1);
  255. if (dev->rdsin == dev->rdsout)
  256. printk(KERN_WARNING "cadet: RDS buffer overflow\n");
  257. else
  258. dev->rdsin++;
  259. }
  260. mutex_unlock(&dev->lock);
  261. }
  262. /*
  263. * Service pending read
  264. */
  265. if (dev->rdsin != dev->rdsout)
  266. wake_up_interruptible(&dev->read_queue);
  267. /*
  268. * Clean up and exit
  269. */
  270. init_timer(&dev->readtimer);
  271. dev->readtimer.function = cadet_handler;
  272. dev->readtimer.data = (unsigned long)0;
  273. dev->readtimer.expires = jiffies + msecs_to_jiffies(50);
  274. add_timer(&dev->readtimer);
  275. }
  276. static ssize_t cadet_read(struct file *file, char __user *data, size_t count, loff_t *ppos)
  277. {
  278. struct cadet *dev = video_drvdata(file);
  279. unsigned char readbuf[RDS_BUFFER];
  280. int i = 0;
  281. if (dev->rdsstat == 0) {
  282. mutex_lock(&dev->lock);
  283. dev->rdsstat = 1;
  284. outb(0x80, dev->io); /* Select RDS fifo */
  285. mutex_unlock(&dev->lock);
  286. init_timer(&dev->readtimer);
  287. dev->readtimer.function = cadet_handler;
  288. dev->readtimer.data = (unsigned long)dev;
  289. dev->readtimer.expires = jiffies + msecs_to_jiffies(50);
  290. add_timer(&dev->readtimer);
  291. }
  292. if (dev->rdsin == dev->rdsout) {
  293. if (file->f_flags & O_NONBLOCK)
  294. return -EWOULDBLOCK;
  295. interruptible_sleep_on(&dev->read_queue);
  296. }
  297. while (i < count && dev->rdsin != dev->rdsout)
  298. readbuf[i++] = dev->rdsbuf[dev->rdsout++];
  299. if (copy_to_user(data, readbuf, i))
  300. return -EFAULT;
  301. return i;
  302. }
  303. static int vidioc_querycap(struct file *file, void *priv,
  304. struct v4l2_capability *v)
  305. {
  306. strlcpy(v->driver, "ADS Cadet", sizeof(v->driver));
  307. strlcpy(v->card, "ADS Cadet", sizeof(v->card));
  308. strlcpy(v->bus_info, "ISA", sizeof(v->bus_info));
  309. v->version = CADET_VERSION;
  310. v->capabilities = V4L2_CAP_TUNER | V4L2_CAP_RADIO |
  311. V4L2_CAP_READWRITE | V4L2_CAP_RDS_CAPTURE;
  312. return 0;
  313. }
  314. static int vidioc_g_tuner(struct file *file, void *priv,
  315. struct v4l2_tuner *v)
  316. {
  317. struct cadet *dev = video_drvdata(file);
  318. v->type = V4L2_TUNER_RADIO;
  319. switch (v->index) {
  320. case 0:
  321. strlcpy(v->name, "FM", sizeof(v->name));
  322. v->capability = V4L2_TUNER_CAP_STEREO | V4L2_TUNER_CAP_RDS;
  323. v->rangelow = 1400; /* 87.5 MHz */
  324. v->rangehigh = 1728; /* 108.0 MHz */
  325. v->rxsubchans = cadet_getstereo(dev);
  326. switch (v->rxsubchans) {
  327. case V4L2_TUNER_SUB_MONO:
  328. v->audmode = V4L2_TUNER_MODE_MONO;
  329. break;
  330. case V4L2_TUNER_SUB_STEREO:
  331. v->audmode = V4L2_TUNER_MODE_STEREO;
  332. break;
  333. default:
  334. break;
  335. }
  336. v->rxsubchans |= V4L2_TUNER_SUB_RDS;
  337. break;
  338. case 1:
  339. strlcpy(v->name, "AM", sizeof(v->name));
  340. v->capability = V4L2_TUNER_CAP_LOW;
  341. v->rangelow = 8320; /* 520 kHz */
  342. v->rangehigh = 26400; /* 1650 kHz */
  343. v->rxsubchans = V4L2_TUNER_SUB_MONO;
  344. v->audmode = V4L2_TUNER_MODE_MONO;
  345. break;
  346. default:
  347. return -EINVAL;
  348. }
  349. v->signal = dev->sigstrength; /* We might need to modify scaling of this */
  350. return 0;
  351. }
  352. static int vidioc_s_tuner(struct file *file, void *priv,
  353. struct v4l2_tuner *v)
  354. {
  355. struct cadet *dev = video_drvdata(file);
  356. if (v->index != 0 && v->index != 1)
  357. return -EINVAL;
  358. dev->curtuner = v->index;
  359. return 0;
  360. }
  361. static int vidioc_g_frequency(struct file *file, void *priv,
  362. struct v4l2_frequency *f)
  363. {
  364. struct cadet *dev = video_drvdata(file);
  365. f->tuner = dev->curtuner;
  366. f->type = V4L2_TUNER_RADIO;
  367. f->frequency = cadet_getfreq(dev);
  368. return 0;
  369. }
  370. static int vidioc_s_frequency(struct file *file, void *priv,
  371. struct v4l2_frequency *f)
  372. {
  373. struct cadet *dev = video_drvdata(file);
  374. if (f->type != V4L2_TUNER_RADIO)
  375. return -EINVAL;
  376. if (dev->curtuner == 0 && (f->frequency < 1400 || f->frequency > 1728))
  377. return -EINVAL;
  378. if (dev->curtuner == 1 && (f->frequency < 8320 || f->frequency > 26400))
  379. return -EINVAL;
  380. cadet_setfreq(dev, f->frequency);
  381. return 0;
  382. }
  383. static int vidioc_queryctrl(struct file *file, void *priv,
  384. struct v4l2_queryctrl *qc)
  385. {
  386. switch (qc->id) {
  387. case V4L2_CID_AUDIO_MUTE:
  388. return v4l2_ctrl_query_fill(qc, 0, 1, 1, 1);
  389. case V4L2_CID_AUDIO_VOLUME:
  390. return v4l2_ctrl_query_fill(qc, 0, 0xff, 1, 0xff);
  391. }
  392. return -EINVAL;
  393. }
  394. static int vidioc_g_ctrl(struct file *file, void *priv,
  395. struct v4l2_control *ctrl)
  396. {
  397. struct cadet *dev = video_drvdata(file);
  398. switch (ctrl->id) {
  399. case V4L2_CID_AUDIO_MUTE: /* TODO: Handle this correctly */
  400. ctrl->value = (cadet_getvol(dev) == 0);
  401. break;
  402. case V4L2_CID_AUDIO_VOLUME:
  403. ctrl->value = cadet_getvol(dev);
  404. break;
  405. default:
  406. return -EINVAL;
  407. }
  408. return 0;
  409. }
  410. static int vidioc_s_ctrl(struct file *file, void *priv,
  411. struct v4l2_control *ctrl)
  412. {
  413. struct cadet *dev = video_drvdata(file);
  414. switch (ctrl->id){
  415. case V4L2_CID_AUDIO_MUTE: /* TODO: Handle this correctly */
  416. if (ctrl->value)
  417. cadet_setvol(dev, 0);
  418. else
  419. cadet_setvol(dev, 0xffff);
  420. break;
  421. case V4L2_CID_AUDIO_VOLUME:
  422. cadet_setvol(dev, ctrl->value);
  423. break;
  424. default:
  425. return -EINVAL;
  426. }
  427. return 0;
  428. }
  429. static int vidioc_g_input(struct file *filp, void *priv, unsigned int *i)
  430. {
  431. *i = 0;
  432. return 0;
  433. }
  434. static int vidioc_s_input(struct file *filp, void *priv, unsigned int i)
  435. {
  436. return i ? -EINVAL : 0;
  437. }
  438. static int vidioc_g_audio(struct file *file, void *priv,
  439. struct v4l2_audio *a)
  440. {
  441. a->index = 0;
  442. strlcpy(a->name, "Radio", sizeof(a->name));
  443. a->capability = V4L2_AUDCAP_STEREO;
  444. return 0;
  445. }
  446. static int vidioc_s_audio(struct file *file, void *priv,
  447. struct v4l2_audio *a)
  448. {
  449. return a->index ? -EINVAL : 0;
  450. }
  451. static int cadet_open(struct file *file)
  452. {
  453. struct cadet *dev = video_drvdata(file);
  454. dev->users++;
  455. if (1 == dev->users)
  456. init_waitqueue_head(&dev->read_queue);
  457. return 0;
  458. }
  459. static int cadet_release(struct file *file)
  460. {
  461. struct cadet *dev = video_drvdata(file);
  462. dev->users--;
  463. if (0 == dev->users) {
  464. del_timer_sync(&dev->readtimer);
  465. dev->rdsstat = 0;
  466. }
  467. return 0;
  468. }
  469. static unsigned int cadet_poll(struct file *file, struct poll_table_struct *wait)
  470. {
  471. struct cadet *dev = video_drvdata(file);
  472. poll_wait(file, &dev->read_queue, wait);
  473. if (dev->rdsin != dev->rdsout)
  474. return POLLIN | POLLRDNORM;
  475. return 0;
  476. }
  477. static const struct v4l2_file_operations cadet_fops = {
  478. .owner = THIS_MODULE,
  479. .open = cadet_open,
  480. .release = cadet_release,
  481. .read = cadet_read,
  482. .ioctl = video_ioctl2,
  483. .poll = cadet_poll,
  484. };
  485. static const struct v4l2_ioctl_ops cadet_ioctl_ops = {
  486. .vidioc_querycap = vidioc_querycap,
  487. .vidioc_g_tuner = vidioc_g_tuner,
  488. .vidioc_s_tuner = vidioc_s_tuner,
  489. .vidioc_g_frequency = vidioc_g_frequency,
  490. .vidioc_s_frequency = vidioc_s_frequency,
  491. .vidioc_queryctrl = vidioc_queryctrl,
  492. .vidioc_g_ctrl = vidioc_g_ctrl,
  493. .vidioc_s_ctrl = vidioc_s_ctrl,
  494. .vidioc_g_audio = vidioc_g_audio,
  495. .vidioc_s_audio = vidioc_s_audio,
  496. .vidioc_g_input = vidioc_g_input,
  497. .vidioc_s_input = vidioc_s_input,
  498. };
  499. #ifdef CONFIG_PNP
  500. static struct pnp_device_id cadet_pnp_devices[] = {
  501. /* ADS Cadet AM/FM Radio Card */
  502. {.id = "MSM0c24", .driver_data = 0},
  503. {.id = ""}
  504. };
  505. MODULE_DEVICE_TABLE(pnp, cadet_pnp_devices);
  506. static int cadet_pnp_probe(struct pnp_dev *dev, const struct pnp_device_id *dev_id)
  507. {
  508. if (!dev)
  509. return -ENODEV;
  510. /* only support one device */
  511. if (io > 0)
  512. return -EBUSY;
  513. if (!pnp_port_valid(dev, 0))
  514. return -ENODEV;
  515. io = pnp_port_start(dev, 0);
  516. printk(KERN_INFO "radio-cadet: PnP reports device at %#x\n", io);
  517. return io;
  518. }
  519. static struct pnp_driver cadet_pnp_driver = {
  520. .name = "radio-cadet",
  521. .id_table = cadet_pnp_devices,
  522. .probe = cadet_pnp_probe,
  523. .remove = NULL,
  524. };
  525. #else
  526. static struct pnp_driver cadet_pnp_driver;
  527. #endif
  528. static void cadet_probe(struct cadet *dev)
  529. {
  530. static int iovals[8] = { 0x330, 0x332, 0x334, 0x336, 0x338, 0x33a, 0x33c, 0x33e };
  531. int i;
  532. for (i = 0; i < 8; i++) {
  533. dev->io = iovals[i];
  534. if (request_region(dev->io, 2, "cadet-probe")) {
  535. cadet_setfreq(dev, 1410);
  536. if (cadet_getfreq(dev) == 1410) {
  537. release_region(dev->io, 2);
  538. return;
  539. }
  540. release_region(dev->io, 2);
  541. }
  542. }
  543. dev->io = -1;
  544. }
  545. /*
  546. * io should only be set if the user has used something like
  547. * isapnp (the userspace program) to initialize this card for us
  548. */
  549. static int __init cadet_init(void)
  550. {
  551. struct cadet *dev = &cadet_card;
  552. struct v4l2_device *v4l2_dev = &dev->v4l2_dev;
  553. int res;
  554. strlcpy(v4l2_dev->name, "cadet", sizeof(v4l2_dev->name));
  555. mutex_init(&dev->lock);
  556. /* If a probe was requested then probe ISAPnP first (safest) */
  557. if (io < 0)
  558. pnp_register_driver(&cadet_pnp_driver);
  559. dev->io = io;
  560. /* If that fails then probe unsafely if probe is requested */
  561. if (dev->io < 0)
  562. cadet_probe(dev);
  563. /* Else we bail out */
  564. if (dev->io < 0) {
  565. #ifdef MODULE
  566. v4l2_err(v4l2_dev, "you must set an I/O address with io=0x330, 0x332, 0x334,\n");
  567. v4l2_err(v4l2_dev, "0x336, 0x338, 0x33a, 0x33c or 0x33e\n");
  568. #endif
  569. goto fail;
  570. }
  571. if (!request_region(dev->io, 2, "cadet"))
  572. goto fail;
  573. res = v4l2_device_register(NULL, v4l2_dev);
  574. if (res < 0) {
  575. release_region(dev->io, 2);
  576. v4l2_err(v4l2_dev, "could not register v4l2_device\n");
  577. goto fail;
  578. }
  579. strlcpy(dev->vdev.name, v4l2_dev->name, sizeof(dev->vdev.name));
  580. dev->vdev.v4l2_dev = v4l2_dev;
  581. dev->vdev.fops = &cadet_fops;
  582. dev->vdev.ioctl_ops = &cadet_ioctl_ops;
  583. dev->vdev.release = video_device_release_empty;
  584. video_set_drvdata(&dev->vdev, dev);
  585. if (video_register_device(&dev->vdev, VFL_TYPE_RADIO, radio_nr) < 0) {
  586. v4l2_device_unregister(v4l2_dev);
  587. release_region(dev->io, 2);
  588. goto fail;
  589. }
  590. v4l2_info(v4l2_dev, "ADS Cadet Radio Card at 0x%x\n", dev->io);
  591. return 0;
  592. fail:
  593. pnp_unregister_driver(&cadet_pnp_driver);
  594. return -ENODEV;
  595. }
  596. static void __exit cadet_exit(void)
  597. {
  598. struct cadet *dev = &cadet_card;
  599. video_unregister_device(&dev->vdev);
  600. v4l2_device_unregister(&dev->v4l2_dev);
  601. release_region(dev->io, 2);
  602. pnp_unregister_driver(&cadet_pnp_driver);
  603. }
  604. module_init(cadet_init);
  605. module_exit(cadet_exit);