blob: 0ba9d88a80fc06d155100ae92bb41b6d102f3474 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* SF16FMR2 radio driver for Linux radio support
2 * heavily based on fmi driver...
3 * (c) 2000-2002 Ziglio Frediano, freddy77@angelfire.com
4 *
5 * Notes on the hardware
6 *
7 * Frequency control is done digitally -- ie out(port,encodefreq(95.8));
8 * No volume control - only mute/unmute - you have to use line volume
9 *
10 * For read stereo/mono you must wait 0.1 sec after set frequency and
11 * card unmuted so I set frequency on unmute
12 * Signal handling seem to work only on autoscanning (not implemented)
Mauro Carvalho Chehabacda0e72006-08-08 09:10:02 -030013 *
14 * Converted to V4L2 API by Mauro Carvalho Chehab <mchehab@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 */
16
17#include <linux/module.h> /* Modules */
18#include <linux/init.h> /* Initdata */
Peter Osterlundfb911ee2005-09-13 01:25:15 -070019#include <linux/ioport.h> /* request_region */
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/delay.h> /* udelay */
Mauro Carvalho Chehabacda0e72006-08-08 09:10:02 -030021#include <linux/videodev2.h> /* kernel radio structs */
Ingo Molnar3593cab2006-02-07 06:49:14 -020022#include <linux/mutex.h>
Mauro Carvalho Chehab1ddf5bc2006-08-08 09:10:06 -030023#include <linux/version.h> /* for KERNEL_VERSION MACRO */
Hans Verkuilc32a9d72009-03-06 13:53:26 -030024#include <linux/io.h> /* outb, outb_p */
Hans Verkuilc32a9d72009-03-06 13:53:26 -030025#include <media/v4l2-device.h>
26#include <media/v4l2-ioctl.h>
27
28MODULE_AUTHOR("Ziglio Frediano, freddy77@angelfire.com");
29MODULE_DESCRIPTION("A driver for the SF16FMR2 radio.");
30MODULE_LICENSE("GPL");
31
32static int io = 0x384;
33static int radio_nr = -1;
34
35module_param(io, int, 0);
36MODULE_PARM_DESC(io, "I/O address of the SF16FMR2 card (should be 0x384, if do not work try 0x284)");
37module_param(radio_nr, int, 0);
38
Mauro Carvalho Chehabacda0e72006-08-08 09:10:02 -030039#define RADIO_VERSION KERNEL_VERSION(0,0,2)
40
Mauro Carvalho Chehabb2cb2002008-04-22 14:46:03 -030041#define AUD_VOL_INDEX 1
42
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#undef DEBUG
44//#define DEBUG 1
45
46#ifdef DEBUG
47# define debug_print(s) printk s
48#else
49# define debug_print(s)
50#endif
51
52/* this should be static vars for module size */
Hans Verkuilc32a9d72009-03-06 13:53:26 -030053struct fmr2
Linus Torvalds1da177e2005-04-16 15:20:36 -070054{
Hans Verkuilc32a9d72009-03-06 13:53:26 -030055 struct v4l2_device v4l2_dev;
56 struct video_device vdev;
57 struct mutex lock;
58 int io;
Mauro Carvalho Chehabb2cb2002008-04-22 14:46:03 -030059 int curvol; /* 0-15 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 int mute;
61 int stereo; /* card is producing stereo audio */
62 unsigned long curfreq; /* freq in kHz */
63 int card_type;
Hans Verkuilc32a9d72009-03-06 13:53:26 -030064 u32 flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -070065};
66
Hans Verkuilc32a9d72009-03-06 13:53:26 -030067static struct fmr2 fmr2_card;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69/* hw precision is 12.5 kHz
Adrian Bunka58a4142006-01-10 00:08:17 +010070 * It is only useful to give freq in intervall of 200 (=0.0125Mhz),
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 * other bits will be truncated
72 */
Hans Verkuilc32a9d72009-03-06 13:53:26 -030073#define RSF16_ENCODE(x) ((x) / 200 + 856)
74#define RSF16_MINFREQ (87 * 16000)
75#define RSF16_MAXFREQ (108 * 16000)
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Hans Verkuilc32a9d72009-03-06 13:53:26 -030077static inline void wait(int n, int io)
Linus Torvalds1da177e2005-04-16 15:20:36 -070078{
Hans Verkuilc32a9d72009-03-06 13:53:26 -030079 for (; n; --n)
80 inb(io);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081}
82
Hans Verkuilc32a9d72009-03-06 13:53:26 -030083static void outbits(int bits, unsigned int data, int nWait, int io)
Linus Torvalds1da177e2005-04-16 15:20:36 -070084{
85 int bit;
Hans Verkuilc32a9d72009-03-06 13:53:26 -030086
87 for (; --bits >= 0;) {
88 bit = (data >> bits) & 1;
89 outb(bit, io);
90 wait(nWait, io);
91 outb(bit | 2, io);
92 wait(nWait, io);
93 outb(bit, io);
94 wait(nWait, io);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 }
96}
97
Hans Verkuilc32a9d72009-03-06 13:53:26 -030098static inline void fmr2_mute(int io)
Linus Torvalds1da177e2005-04-16 15:20:36 -070099{
Hans Verkuilc32a9d72009-03-06 13:53:26 -0300100 outb(0x00, io);
101 wait(4, io);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102}
103
Hans Verkuilc32a9d72009-03-06 13:53:26 -0300104static inline void fmr2_unmute(int io)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105{
Hans Verkuilc32a9d72009-03-06 13:53:26 -0300106 outb(0x04, io);
107 wait(4, io);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108}
109
Hans Verkuilc32a9d72009-03-06 13:53:26 -0300110static inline int fmr2_stereo_mode(int io)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111{
Hans Verkuilc32a9d72009-03-06 13:53:26 -0300112 int n = inb(io);
113
114 outb(6, io);
115 inb(io);
116 n = ((n >> 3) & 1) ^ 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 debug_print((KERN_DEBUG "stereo: %d\n", n));
118 return n;
119}
120
Hans Verkuilc32a9d72009-03-06 13:53:26 -0300121static int fmr2_product_info(struct fmr2 *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122{
Hans Verkuilc32a9d72009-03-06 13:53:26 -0300123 int n = inb(dev->io);
124
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 n &= 0xC1;
Hans Verkuilc32a9d72009-03-06 13:53:26 -0300126 if (n == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 /* this should support volume set */
128 dev->card_type = 12;
129 return 0;
130 }
131 /* not volume (mine is 11) */
Hans Verkuilc32a9d72009-03-06 13:53:26 -0300132 dev->card_type = (n == 128) ? 11 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 return n;
134}
135
Hans Verkuilc32a9d72009-03-06 13:53:26 -0300136static inline int fmr2_getsigstr(struct fmr2 *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137{
Hans Verkuilc32a9d72009-03-06 13:53:26 -0300138 /* !!! works only if scanning freq */
139 int res = 0xffff;
140
141 outb(5, dev->io);
142 wait(4, dev->io);
143 if (!(inb(dev->io) & 1))
144 res = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 debug_print((KERN_DEBUG "signal: %d\n", res));
146 return res;
147}
148
149/* set frequency and unmute card */
Hans Verkuilc32a9d72009-03-06 13:53:26 -0300150static int fmr2_setfreq(struct fmr2 *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 unsigned long freq = dev->curfreq;
153
Hans Verkuilc32a9d72009-03-06 13:53:26 -0300154 fmr2_mute(dev->io);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
156 /* 0x42 for mono output
157 * 0x102 forward scanning
158 * 0x182 scansione avanti
159 */
Hans Verkuilc32a9d72009-03-06 13:53:26 -0300160 outbits(9, 0x2, 3, dev->io);
161 outbits(16, RSF16_ENCODE(freq), 2, dev->io);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
Hans Verkuilc32a9d72009-03-06 13:53:26 -0300163 fmr2_unmute(dev->io);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
165 /* wait 0.11 sec */
166 msleep(110);
167
168 /* NOTE if mute this stop radio
169 you must set freq on unmute */
Hans Verkuilc32a9d72009-03-06 13:53:26 -0300170 dev->stereo = fmr2_stereo_mode(dev->io);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 return 0;
172}
173
174/* !!! not tested, in my card this does't work !!! */
Hans Verkuilc32a9d72009-03-06 13:53:26 -0300175static int fmr2_setvolume(struct fmr2 *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176{
Mauro Carvalho Chehabb2cb2002008-04-22 14:46:03 -0300177 int vol[16] = { 0x021, 0x084, 0x090, 0x104,
178 0x110, 0x204, 0x210, 0x402,
179 0x404, 0x408, 0x410, 0x801,
180 0x802, 0x804, 0x808, 0x810 };
Hans Verkuilc32a9d72009-03-06 13:53:26 -0300181 int i, a;
Mauro Carvalho Chehabb2cb2002008-04-22 14:46:03 -0300182 int n = vol[dev->curvol & 0x0f];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
Mauro Carvalho Chehabb2cb2002008-04-22 14:46:03 -0300184 if (dev->card_type != 11)
185 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
Mauro Carvalho Chehabb2cb2002008-04-22 14:46:03 -0300187 for (i = 12; --i >= 0; ) {
Hans Verkuilc32a9d72009-03-06 13:53:26 -0300188 a = ((n >> i) & 1) << 6; /* if (a==0) a = 0; else a = 0x40; */
189 outb(a | 4, dev->io);
190 wait(4, dev->io);
191 outb(a | 0x24, dev->io);
192 wait(4, dev->io);
193 outb(a | 4, dev->io);
194 wait(4, dev->io);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 }
Mauro Carvalho Chehabb2cb2002008-04-22 14:46:03 -0300196 for (i = 6; --i >= 0; ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 a = ((0x18 >> i) & 1) << 6;
Hans Verkuilc32a9d72009-03-06 13:53:26 -0300198 outb(a | 4, dev->io);
199 wait(4, dev->io);
200 outb(a | 0x24, dev->io);
201 wait(4, dev->io);
202 outb(a | 4, dev->io);
203 wait(4, dev->io);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 }
Hans Verkuilc32a9d72009-03-06 13:53:26 -0300205 wait(4, dev->io);
206 outb(0x14, dev->io);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 return 0;
208}
209
Douglas Landgraf34ab9622007-04-23 17:51:37 -0300210static int vidioc_querycap(struct file *file, void *priv,
211 struct v4l2_capability *v)
212{
213 strlcpy(v->driver, "radio-sf16fmr2", sizeof(v->driver));
214 strlcpy(v->card, "SF16-FMR2 radio", sizeof(v->card));
Hans Verkuilc32a9d72009-03-06 13:53:26 -0300215 strlcpy(v->bus_info, "ISA", sizeof(v->bus_info));
Douglas Landgraf34ab9622007-04-23 17:51:37 -0300216 v->version = RADIO_VERSION;
Hans Verkuilc32a9d72009-03-06 13:53:26 -0300217 v->capabilities = V4L2_CAP_TUNER | V4L2_CAP_RADIO;
Douglas Landgraf34ab9622007-04-23 17:51:37 -0300218 return 0;
219}
220
221static int vidioc_g_tuner(struct file *file, void *priv,
222 struct v4l2_tuner *v)
223{
224 int mult;
Hans Verkuilc32a9d72009-03-06 13:53:26 -0300225 struct fmr2 *fmr2 = video_drvdata(file);
Douglas Landgraf34ab9622007-04-23 17:51:37 -0300226
227 if (v->index > 0)
228 return -EINVAL;
229
Hans Verkuilc32a9d72009-03-06 13:53:26 -0300230 strlcpy(v->name, "FM", sizeof(v->name));
Douglas Landgraf34ab9622007-04-23 17:51:37 -0300231 v->type = V4L2_TUNER_RADIO;
232
233 mult = (fmr2->flags & V4L2_TUNER_CAP_LOW) ? 1 : 1000;
Hans Verkuilc32a9d72009-03-06 13:53:26 -0300234 v->rangelow = RSF16_MINFREQ / mult;
235 v->rangehigh = RSF16_MAXFREQ / mult;
Douglas Landgraf34ab9622007-04-23 17:51:37 -0300236 v->rxsubchans = V4L2_TUNER_SUB_MONO | V4L2_TUNER_MODE_STEREO;
237 v->capability = fmr2->flags&V4L2_TUNER_CAP_LOW;
238 v->audmode = fmr2->stereo ? V4L2_TUNER_MODE_STEREO:
239 V4L2_TUNER_MODE_MONO;
Hans Verkuilc32a9d72009-03-06 13:53:26 -0300240 mutex_lock(&fmr2->lock);
Douglas Landgraf34ab9622007-04-23 17:51:37 -0300241 v->signal = fmr2_getsigstr(fmr2);
Hans Verkuilc32a9d72009-03-06 13:53:26 -0300242 mutex_unlock(&fmr2->lock);
Douglas Landgraf34ab9622007-04-23 17:51:37 -0300243 return 0;
244}
245
246static int vidioc_s_tuner(struct file *file, void *priv,
247 struct v4l2_tuner *v)
248{
Hans Verkuilc32a9d72009-03-06 13:53:26 -0300249 return v->index ? -EINVAL : 0;
Douglas Landgraf34ab9622007-04-23 17:51:37 -0300250}
251
252static int vidioc_s_frequency(struct file *file, void *priv,
253 struct v4l2_frequency *f)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254{
Hans Verkuilc32a9d72009-03-06 13:53:26 -0300255 struct fmr2 *fmr2 = video_drvdata(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
Douglas Landgraf34ab9622007-04-23 17:51:37 -0300257 if (!(fmr2->flags & V4L2_TUNER_CAP_LOW))
258 f->frequency *= 1000;
259 if (f->frequency < RSF16_MINFREQ ||
Hans Verkuilc32a9d72009-03-06 13:53:26 -0300260 f->frequency > RSF16_MAXFREQ)
Douglas Landgraf34ab9622007-04-23 17:51:37 -0300261 return -EINVAL;
Hans Verkuilc32a9d72009-03-06 13:53:26 -0300262 /* rounding in steps of 200 to match the freq
263 that will be used */
264 fmr2->curfreq = (f->frequency / 200) * 200;
Mauro Carvalho Chehabacda0e72006-08-08 09:10:02 -0300265
Douglas Landgraf34ab9622007-04-23 17:51:37 -0300266 /* set card freq (if not muted) */
267 if (fmr2->curvol && !fmr2->mute) {
Hans Verkuilc32a9d72009-03-06 13:53:26 -0300268 mutex_lock(&fmr2->lock);
Douglas Landgraf34ab9622007-04-23 17:51:37 -0300269 fmr2_setfreq(fmr2);
Hans Verkuilc32a9d72009-03-06 13:53:26 -0300270 mutex_unlock(&fmr2->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 }
Douglas Landgraf34ab9622007-04-23 17:51:37 -0300272 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273}
274
Douglas Landgraf34ab9622007-04-23 17:51:37 -0300275static int vidioc_g_frequency(struct file *file, void *priv,
276 struct v4l2_frequency *f)
277{
Hans Verkuilc32a9d72009-03-06 13:53:26 -0300278 struct fmr2 *fmr2 = video_drvdata(file);
Douglas Landgraf34ab9622007-04-23 17:51:37 -0300279
280 f->type = V4L2_TUNER_RADIO;
281 f->frequency = fmr2->curfreq;
282 if (!(fmr2->flags & V4L2_TUNER_CAP_LOW))
283 f->frequency /= 1000;
284 return 0;
285}
286
287static int vidioc_queryctrl(struct file *file, void *priv,
288 struct v4l2_queryctrl *qc)
289{
Hans Verkuilc32a9d72009-03-06 13:53:26 -0300290 struct fmr2 *fmr2 = video_drvdata(file);
Douglas Landgraf34ab9622007-04-23 17:51:37 -0300291
Hans Verkuilc32a9d72009-03-06 13:53:26 -0300292 switch (qc->id) {
293 case V4L2_CID_AUDIO_MUTE:
294 return v4l2_ctrl_query_fill(qc, 0, 1, 1, 1);
295 case V4L2_CID_AUDIO_VOLUME:
296 /* Only card_type == 11 implements volume */
297 if (fmr2->card_type == 11)
298 return v4l2_ctrl_query_fill(qc, 0, 15, 1, 0);
299 return v4l2_ctrl_query_fill(qc, 0, 1, 1, 0);
Douglas Landgraf34ab9622007-04-23 17:51:37 -0300300 }
301 return -EINVAL;
302}
303
304static int vidioc_g_ctrl(struct file *file, void *priv,
305 struct v4l2_control *ctrl)
306{
Hans Verkuilc32a9d72009-03-06 13:53:26 -0300307 struct fmr2 *fmr2 = video_drvdata(file);
Douglas Landgraf34ab9622007-04-23 17:51:37 -0300308
309 switch (ctrl->id) {
310 case V4L2_CID_AUDIO_MUTE:
311 ctrl->value = fmr2->mute;
312 return 0;
313 case V4L2_CID_AUDIO_VOLUME:
314 ctrl->value = fmr2->curvol;
315 return 0;
316 }
317 return -EINVAL;
318}
319
320static int vidioc_s_ctrl(struct file *file, void *priv,
321 struct v4l2_control *ctrl)
322{
Hans Verkuilc32a9d72009-03-06 13:53:26 -0300323 struct fmr2 *fmr2 = video_drvdata(file);
Douglas Landgraf34ab9622007-04-23 17:51:37 -0300324
325 switch (ctrl->id) {
326 case V4L2_CID_AUDIO_MUTE:
327 fmr2->mute = ctrl->value;
Douglas Landgraf34ab9622007-04-23 17:51:37 -0300328 break;
329 case V4L2_CID_AUDIO_VOLUME:
Hans Verkuilc32a9d72009-03-06 13:53:26 -0300330 fmr2->curvol = ctrl->value;
Douglas Landgraf34ab9622007-04-23 17:51:37 -0300331 break;
332 default:
333 return -EINVAL;
334 }
335
336#ifdef DEBUG
337 if (fmr2->curvol && !fmr2->mute)
338 printk(KERN_DEBUG "unmute\n");
339 else
340 printk(KERN_DEBUG "mute\n");
341#endif
342
Hans Verkuilc32a9d72009-03-06 13:53:26 -0300343 mutex_lock(&fmr2->lock);
Douglas Landgraf34ab9622007-04-23 17:51:37 -0300344 if (fmr2->curvol && !fmr2->mute) {
345 fmr2_setvolume(fmr2);
Mauro Carvalho Chehabb2cb2002008-04-22 14:46:03 -0300346 /* Set frequency and unmute card */
Douglas Landgraf34ab9622007-04-23 17:51:37 -0300347 fmr2_setfreq(fmr2);
348 } else
Hans Verkuilc32a9d72009-03-06 13:53:26 -0300349 fmr2_mute(fmr2->io);
350 mutex_unlock(&fmr2->lock);
Douglas Landgraf34ab9622007-04-23 17:51:37 -0300351 return 0;
352}
353
354static int vidioc_g_input(struct file *filp, void *priv, unsigned int *i)
355{
356 *i = 0;
357 return 0;
358}
359
360static int vidioc_s_input(struct file *filp, void *priv, unsigned int i)
361{
Hans Verkuilc32a9d72009-03-06 13:53:26 -0300362 return i ? -EINVAL : 0;
363}
364
365static int vidioc_g_audio(struct file *file, void *priv,
366 struct v4l2_audio *a)
367{
368 a->index = 0;
369 strlcpy(a->name, "Radio", sizeof(a->name));
370 a->capability = V4L2_AUDCAP_STEREO;
Douglas Landgraf34ab9622007-04-23 17:51:37 -0300371 return 0;
372}
373
374static int vidioc_s_audio(struct file *file, void *priv,
375 struct v4l2_audio *a)
376{
Hans Verkuilc32a9d72009-03-06 13:53:26 -0300377 return a->index ? -EINVAL : 0;
378}
379
380static int fmr2_open(struct file *file)
381{
Douglas Landgraf34ab9622007-04-23 17:51:37 -0300382 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383}
384
Hans Verkuilc32a9d72009-03-06 13:53:26 -0300385static int fmr2_release(struct file *file)
Hans Verkuil3ca685a2008-08-23 04:49:13 -0300386{
Hans Verkuil3ca685a2008-08-23 04:49:13 -0300387 return 0;
388}
389
Hans Verkuilbec43662008-12-30 06:58:20 -0300390static const struct v4l2_file_operations fmr2_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 .owner = THIS_MODULE,
Hans Verkuilc32a9d72009-03-06 13:53:26 -0300392 .open = fmr2_open,
393 .release = fmr2_release,
Douglas Landgraf34ab9622007-04-23 17:51:37 -0300394 .ioctl = video_ioctl2,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395};
396
Hans Verkuila3998102008-07-21 02:57:38 -0300397static const struct v4l2_ioctl_ops fmr2_ioctl_ops = {
Douglas Landgraf34ab9622007-04-23 17:51:37 -0300398 .vidioc_querycap = vidioc_querycap,
399 .vidioc_g_tuner = vidioc_g_tuner,
400 .vidioc_s_tuner = vidioc_s_tuner,
401 .vidioc_g_audio = vidioc_g_audio,
402 .vidioc_s_audio = vidioc_s_audio,
403 .vidioc_g_input = vidioc_g_input,
404 .vidioc_s_input = vidioc_s_input,
405 .vidioc_g_frequency = vidioc_g_frequency,
406 .vidioc_s_frequency = vidioc_s_frequency,
407 .vidioc_queryctrl = vidioc_queryctrl,
408 .vidioc_g_ctrl = vidioc_g_ctrl,
409 .vidioc_s_ctrl = vidioc_s_ctrl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410};
411
412static int __init fmr2_init(void)
413{
Hans Verkuilc32a9d72009-03-06 13:53:26 -0300414 struct fmr2 *fmr2 = &fmr2_card;
415 struct v4l2_device *v4l2_dev = &fmr2->v4l2_dev;
416 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
Hans Verkuilc32a9d72009-03-06 13:53:26 -0300418 strlcpy(v4l2_dev->name, "sf16fmr2", sizeof(v4l2_dev->name));
419 fmr2->io = io;
420 fmr2->stereo = 1;
421 fmr2->flags = V4L2_TUNER_CAP_LOW;
422 mutex_init(&fmr2->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
Hans Verkuilc32a9d72009-03-06 13:53:26 -0300424 if (!request_region(fmr2->io, 2, "sf16fmr2")) {
425 v4l2_err(v4l2_dev, "request_region failed!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 return -EBUSY;
427 }
428
Hans Verkuilc32a9d72009-03-06 13:53:26 -0300429 res = v4l2_device_register(NULL, v4l2_dev);
430 if (res < 0) {
431 release_region(fmr2->io, 2);
432 v4l2_err(v4l2_dev, "Could not register v4l2_device\n");
433 return res;
434 }
435
436 strlcpy(fmr2->vdev.name, v4l2_dev->name, sizeof(fmr2->vdev.name));
437 fmr2->vdev.v4l2_dev = v4l2_dev;
438 fmr2->vdev.fops = &fmr2_fops;
439 fmr2->vdev.ioctl_ops = &fmr2_ioctl_ops;
440 fmr2->vdev.release = video_device_release_empty;
441 video_set_drvdata(&fmr2->vdev, fmr2);
442
443 if (video_register_device(&fmr2->vdev, VFL_TYPE_RADIO, radio_nr) < 0) {
444 v4l2_device_unregister(v4l2_dev);
445 release_region(fmr2->io, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 return -EINVAL;
447 }
448
Hans Verkuilc32a9d72009-03-06 13:53:26 -0300449 v4l2_info(v4l2_dev, "SF16FMR2 radio card driver at 0x%x.\n", fmr2->io);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 /* mute card - prevents noisy bootups */
Hans Verkuilc32a9d72009-03-06 13:53:26 -0300451 mutex_lock(&fmr2->lock);
452 fmr2_mute(fmr2->io);
453 fmr2_product_info(fmr2);
454 mutex_unlock(&fmr2->lock);
455 debug_print((KERN_DEBUG "card_type %d\n", fmr2->card_type));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 return 0;
457}
458
Hans Verkuilc32a9d72009-03-06 13:53:26 -0300459static void __exit fmr2_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460{
Hans Verkuilc32a9d72009-03-06 13:53:26 -0300461 struct fmr2 *fmr2 = &fmr2_card;
462
463 video_unregister_device(&fmr2->vdev);
464 v4l2_device_unregister(&fmr2->v4l2_dev);
465 release_region(fmr2->io, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466}
467
468module_init(fmr2_init);
Hans Verkuilc32a9d72009-03-06 13:53:26 -0300469module_exit(fmr2_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470
471#ifndef MODULE
472
473static int __init fmr2_setup_io(char *str)
474{
475 get_option(&str, &io);
476 return 1;
477}
478
479__setup("sf16fmr2=", fmr2_setup_io);
480
481#endif