blob: 5bf4985daede6a49e9b35adcb3b3256b51a14924 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* radiotrack (radioreveal) driver for Linux radio support
2 * (c) 1997 M. Kirkwood
Mauro Carvalho Chehab46ff2c72006-08-08 09:10:01 -03003 * Converted to V4L2 API by Mauro Carvalho Chehab <mchehab@infradead.org>
Alan Coxd9b01442008-10-27 15:13:47 -03004 * Converted to new API by Alan Cox <alan@lxorguk.ukuu.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Various bugfixes and enhancements by Russell Kroll <rkroll@exploits.org>
6 *
7 * History:
8 * 1999-02-24 Russell Kroll <rkroll@exploits.org>
9 * Fine tuning/VIDEO_TUNER_LOW
10 * Frequency range expanded to start at 87 MHz
11 *
12 * TODO: Allow for more than one of these foolish entities :-)
13 *
14 * Notes on the hardware (reverse engineered from other peoples'
15 * reverse engineering of AIMS' code :-)
16 *
17 * Frequency control is done digitally -- ie out(port,encodefreq(95.8));
18 *
19 * The signal strength query is unsurprisingly inaccurate. And it seems
20 * to indicate that (on my card, at least) the frequency setting isn't
21 * too great. (I have to tune up .025MHz from what the freq should be
22 * to get a report that the thing is tuned.)
23 *
24 * Volume control is (ugh) analogue:
25 * out(port, start_increasing_volume);
26 * wait(a_wee_while);
27 * out(port, stop_changing_the_volume);
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -030028 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 */
30
31#include <linux/module.h> /* Modules */
32#include <linux/init.h> /* Initdata */
Peter Osterlundfb911ee2005-09-13 01:25:15 -070033#include <linux/ioport.h> /* request_region */
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/delay.h> /* udelay */
Mauro Carvalho Chehab46ff2c72006-08-08 09:10:01 -030035#include <linux/videodev2.h> /* kernel radio structs */
Hans Verkuil151c3f82009-03-06 13:45:27 -030036#include <linux/version.h> /* for KERNEL_VERSION MACRO */
37#include <linux/io.h> /* outb, outb_p */
Hans Verkuil151c3f82009-03-06 13:45:27 -030038#include <media/v4l2-device.h>
Hans Verkuil35ea11f2008-07-20 08:12:02 -030039#include <media/v4l2-ioctl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
Hans Verkuil151c3f82009-03-06 13:45:27 -030041MODULE_AUTHOR("M.Kirkwood");
42MODULE_DESCRIPTION("A driver for the RadioTrack/RadioReveal radio card.");
43MODULE_LICENSE("GPL");
Mauro Carvalho Chehab46ff2c72006-08-08 09:10:01 -030044
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#ifndef CONFIG_RADIO_RTRACK_PORT
46#define CONFIG_RADIO_RTRACK_PORT -1
47#endif
48
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -030049static int io = CONFIG_RADIO_RTRACK_PORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070050static int radio_nr = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Hans Verkuil151c3f82009-03-06 13:45:27 -030052module_param(io, int, 0);
53MODULE_PARM_DESC(io, "I/O address of the RadioTrack card (0x20f or 0x30f)");
54module_param(radio_nr, int, 0);
55
56#define RADIO_VERSION KERNEL_VERSION(0, 0, 2)
57
58struct rtrack
Linus Torvalds1da177e2005-04-16 15:20:36 -070059{
Hans Verkuil151c3f82009-03-06 13:45:27 -030060 struct v4l2_device v4l2_dev;
61 struct video_device vdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 int port;
63 int curvol;
64 unsigned long curfreq;
65 int muted;
Hans Verkuil151c3f82009-03-06 13:45:27 -030066 int io;
67 struct mutex lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068};
69
Hans Verkuil151c3f82009-03-06 13:45:27 -030070static struct rtrack rtrack_card;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
72/* local things */
73
74static void sleep_delay(long n)
75{
76 /* Sleep nicely for 'n' uS */
Hans Verkuil151c3f82009-03-06 13:45:27 -030077 int d = n / msecs_to_jiffies(1000);
78 if (!d)
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 udelay(n);
80 else
81 msleep(jiffies_to_msecs(d));
82}
83
Hans Verkuil151c3f82009-03-06 13:45:27 -030084static void rt_decvol(struct rtrack *rt)
Linus Torvalds1da177e2005-04-16 15:20:36 -070085{
Hans Verkuil151c3f82009-03-06 13:45:27 -030086 outb(0x58, rt->io); /* volume down + sigstr + on */
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 sleep_delay(100000);
Hans Verkuil151c3f82009-03-06 13:45:27 -030088 outb(0xd8, rt->io); /* volume steady + sigstr + on */
Linus Torvalds1da177e2005-04-16 15:20:36 -070089}
90
Hans Verkuil151c3f82009-03-06 13:45:27 -030091static void rt_incvol(struct rtrack *rt)
Linus Torvalds1da177e2005-04-16 15:20:36 -070092{
Hans Verkuil151c3f82009-03-06 13:45:27 -030093 outb(0x98, rt->io); /* volume up + sigstr + on */
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 sleep_delay(100000);
Hans Verkuil151c3f82009-03-06 13:45:27 -030095 outb(0xd8, rt->io); /* volume steady + sigstr + on */
Linus Torvalds1da177e2005-04-16 15:20:36 -070096}
97
Hans Verkuil151c3f82009-03-06 13:45:27 -030098static void rt_mute(struct rtrack *rt)
Linus Torvalds1da177e2005-04-16 15:20:36 -070099{
Hans Verkuil151c3f82009-03-06 13:45:27 -0300100 rt->muted = 1;
101 mutex_lock(&rt->lock);
102 outb(0xd0, rt->io); /* volume steady, off */
103 mutex_unlock(&rt->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104}
105
Hans Verkuil151c3f82009-03-06 13:45:27 -0300106static int rt_setvol(struct rtrack *rt, int vol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107{
108 int i;
109
Hans Verkuil151c3f82009-03-06 13:45:27 -0300110 mutex_lock(&rt->lock);
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -0300111
Hans Verkuil151c3f82009-03-06 13:45:27 -0300112 if (vol == rt->curvol) { /* requested volume = current */
113 if (rt->muted) { /* user is unmuting the card */
114 rt->muted = 0;
115 outb(0xd8, rt->io); /* enable card */
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -0300116 }
Hans Verkuil151c3f82009-03-06 13:45:27 -0300117 mutex_unlock(&rt->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 return 0;
119 }
120
Hans Verkuil151c3f82009-03-06 13:45:27 -0300121 if (vol == 0) { /* volume = 0 means mute the card */
122 outb(0x48, rt->io); /* volume down but still "on" */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 sleep_delay(2000000); /* make sure it's totally down */
Hans Verkuil151c3f82009-03-06 13:45:27 -0300124 outb(0xd0, rt->io); /* volume steady, off */
125 rt->curvol = 0; /* track the volume state! */
126 mutex_unlock(&rt->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 return 0;
128 }
129
Hans Verkuil151c3f82009-03-06 13:45:27 -0300130 rt->muted = 0;
131 if (vol > rt->curvol)
132 for (i = rt->curvol; i < vol; i++)
133 rt_incvol(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 else
Hans Verkuil151c3f82009-03-06 13:45:27 -0300135 for (i = rt->curvol; i > vol; i--)
136 rt_decvol(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
Hans Verkuil151c3f82009-03-06 13:45:27 -0300138 rt->curvol = vol;
139 mutex_unlock(&rt->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 return 0;
141}
142
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -0300143/* the 128+64 on these outb's is to keep the volume stable while tuning
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 * without them, the volume _will_ creep up with each frequency change
145 * and bit 4 (+16) is to keep the signal strength meter enabled
146 */
147
Hans Verkuil151c3f82009-03-06 13:45:27 -0300148static void send_0_byte(struct rtrack *rt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149{
Hans Verkuil151c3f82009-03-06 13:45:27 -0300150 if (rt->curvol == 0 || rt->muted) {
151 outb_p(128+64+16+ 1, rt->io); /* wr-enable + data low */
152 outb_p(128+64+16+2+1, rt->io); /* clock */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 }
154 else {
Hans Verkuil151c3f82009-03-06 13:45:27 -0300155 outb_p(128+64+16+8+ 1, rt->io); /* on + wr-enable + data low */
156 outb_p(128+64+16+8+2+1, rt->io); /* clock */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 }
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -0300158 sleep_delay(1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159}
160
Hans Verkuil151c3f82009-03-06 13:45:27 -0300161static void send_1_byte(struct rtrack *rt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162{
Hans Verkuil151c3f82009-03-06 13:45:27 -0300163 if (rt->curvol == 0 || rt->muted) {
164 outb_p(128+64+16+4 +1, rt->io); /* wr-enable+data high */
165 outb_p(128+64+16+4+2+1, rt->io); /* clock */
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -0300166 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 else {
Hans Verkuil151c3f82009-03-06 13:45:27 -0300168 outb_p(128+64+16+8+4 +1, rt->io); /* on+wr-enable+data high */
169 outb_p(128+64+16+8+4+2+1, rt->io); /* clock */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 }
171
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -0300172 sleep_delay(1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173}
174
Hans Verkuil151c3f82009-03-06 13:45:27 -0300175static int rt_setfreq(struct rtrack *rt, unsigned long freq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176{
177 int i;
178
Hans Verkuil151c3f82009-03-06 13:45:27 -0300179 mutex_lock(&rt->lock); /* Stop other ops interfering */
180
181 rt->curfreq = freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
183 /* now uses VIDEO_TUNER_LOW for fine tuning */
184
185 freq += 171200; /* Add 10.7 MHz IF */
186 freq /= 800; /* Convert to 50 kHz units */
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -0300187
Hans Verkuil151c3f82009-03-06 13:45:27 -0300188 send_0_byte(rt); /* 0: LSB of frequency */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
190 for (i = 0; i < 13; i++) /* : frequency bits (1-13) */
191 if (freq & (1 << i))
Hans Verkuil151c3f82009-03-06 13:45:27 -0300192 send_1_byte(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 else
Hans Verkuil151c3f82009-03-06 13:45:27 -0300194 send_0_byte(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
Hans Verkuil151c3f82009-03-06 13:45:27 -0300196 send_0_byte(rt); /* 14: test bit - always 0 */
197 send_0_byte(rt); /* 15: test bit - always 0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
Hans Verkuil151c3f82009-03-06 13:45:27 -0300199 send_0_byte(rt); /* 16: band data 0 - always 0 */
200 send_0_byte(rt); /* 17: band data 1 - always 0 */
201 send_0_byte(rt); /* 18: band data 2 - always 0 */
202 send_0_byte(rt); /* 19: time base - always 0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
Hans Verkuil151c3f82009-03-06 13:45:27 -0300204 send_0_byte(rt); /* 20: spacing (0 = 25 kHz) */
205 send_1_byte(rt); /* 21: spacing (1 = 25 kHz) */
206 send_0_byte(rt); /* 22: spacing (0 = 25 kHz) */
207 send_1_byte(rt); /* 23: AM/FM (FM = 1, always) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
Hans Verkuil151c3f82009-03-06 13:45:27 -0300209 if (rt->curvol == 0 || rt->muted)
210 outb(0xd0, rt->io); /* volume steady + sigstr */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 else
Hans Verkuil151c3f82009-03-06 13:45:27 -0300212 outb(0xd8, rt->io); /* volume steady + sigstr + on */
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -0300213
Hans Verkuil151c3f82009-03-06 13:45:27 -0300214 mutex_unlock(&rt->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
216 return 0;
217}
218
Hans Verkuil151c3f82009-03-06 13:45:27 -0300219static int rt_getsigstr(struct rtrack *rt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220{
Hans Verkuil151c3f82009-03-06 13:45:27 -0300221 int sig = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Hans Verkuil151c3f82009-03-06 13:45:27 -0300223 mutex_lock(&rt->lock);
224 if (inb(rt->io) & 2) /* bit set = no signal present */
225 sig = 0;
226 mutex_unlock(&rt->lock);
227 return sig;
228}
Mauro Carvalho Chehab46ff2c72006-08-08 09:10:01 -0300229
Douglas Landgraf385e8d82007-04-25 00:14:36 -0300230static int vidioc_querycap(struct file *file, void *priv,
231 struct v4l2_capability *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232{
Douglas Landgraf385e8d82007-04-25 00:14:36 -0300233 strlcpy(v->driver, "radio-aimslab", sizeof(v->driver));
234 strlcpy(v->card, "RadioTrack", sizeof(v->card));
Hans Verkuil151c3f82009-03-06 13:45:27 -0300235 strlcpy(v->bus_info, "ISA", sizeof(v->bus_info));
Douglas Landgraf385e8d82007-04-25 00:14:36 -0300236 v->version = RADIO_VERSION;
Hans Verkuil151c3f82009-03-06 13:45:27 -0300237 v->capabilities = V4L2_CAP_TUNER | V4L2_CAP_RADIO;
Douglas Landgraf385e8d82007-04-25 00:14:36 -0300238 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239}
240
Douglas Landgraf385e8d82007-04-25 00:14:36 -0300241static int vidioc_g_tuner(struct file *file, void *priv,
242 struct v4l2_tuner *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243{
Hans Verkuil151c3f82009-03-06 13:45:27 -0300244 struct rtrack *rt = video_drvdata(file);
Douglas Landgraf385e8d82007-04-25 00:14:36 -0300245
246 if (v->index > 0)
247 return -EINVAL;
248
Hans Verkuil151c3f82009-03-06 13:45:27 -0300249 strlcpy(v->name, "FM", sizeof(v->name));
Douglas Landgraf385e8d82007-04-25 00:14:36 -0300250 v->type = V4L2_TUNER_RADIO;
Hans Verkuil151c3f82009-03-06 13:45:27 -0300251 v->rangelow = 87 * 16000;
252 v->rangehigh = 108 * 16000;
Douglas Landgraf385e8d82007-04-25 00:14:36 -0300253 v->rxsubchans = V4L2_TUNER_SUB_MONO;
254 v->capability = V4L2_TUNER_CAP_LOW;
255 v->audmode = V4L2_TUNER_MODE_MONO;
Hans Verkuil151c3f82009-03-06 13:45:27 -0300256 v->signal = 0xffff * rt_getsigstr(rt);
Douglas Landgraf385e8d82007-04-25 00:14:36 -0300257 return 0;
258}
259
260static int vidioc_s_tuner(struct file *file, void *priv,
261 struct v4l2_tuner *v)
262{
Hans Verkuil151c3f82009-03-06 13:45:27 -0300263 return v->index ? -EINVAL : 0;
Douglas Landgraf385e8d82007-04-25 00:14:36 -0300264}
265
266static int vidioc_s_frequency(struct file *file, void *priv,
267 struct v4l2_frequency *f)
268{
Hans Verkuil151c3f82009-03-06 13:45:27 -0300269 struct rtrack *rt = video_drvdata(file);
Douglas Landgraf385e8d82007-04-25 00:14:36 -0300270
Hans Verkuila3a9e282009-11-27 04:33:25 -0300271 if (f->tuner != 0 || f->type != V4L2_TUNER_RADIO)
272 return -EINVAL;
Hans Verkuil151c3f82009-03-06 13:45:27 -0300273 rt_setfreq(rt, f->frequency);
Douglas Landgraf385e8d82007-04-25 00:14:36 -0300274 return 0;
275}
276
277static int vidioc_g_frequency(struct file *file, void *priv,
278 struct v4l2_frequency *f)
279{
Hans Verkuil151c3f82009-03-06 13:45:27 -0300280 struct rtrack *rt = video_drvdata(file);
Douglas Landgraf385e8d82007-04-25 00:14:36 -0300281
Hans Verkuila3a9e282009-11-27 04:33:25 -0300282 if (f->tuner != 0)
283 return -EINVAL;
Douglas Landgraf385e8d82007-04-25 00:14:36 -0300284 f->type = V4L2_TUNER_RADIO;
285 f->frequency = rt->curfreq;
286 return 0;
287}
288
289static int vidioc_queryctrl(struct file *file, void *priv,
290 struct v4l2_queryctrl *qc)
291{
Hans Verkuil151c3f82009-03-06 13:45:27 -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 return v4l2_ctrl_query_fill(qc, 0, 0xff, 1, 0xff);
Douglas Landgraf385e8d82007-04-25 00:14:36 -0300297 }
298 return -EINVAL;
299}
300
301static int vidioc_g_ctrl(struct file *file, void *priv,
302 struct v4l2_control *ctrl)
303{
Hans Verkuil151c3f82009-03-06 13:45:27 -0300304 struct rtrack *rt = video_drvdata(file);
Douglas Landgraf385e8d82007-04-25 00:14:36 -0300305
306 switch (ctrl->id) {
307 case V4L2_CID_AUDIO_MUTE:
308 ctrl->value = rt->muted;
309 return 0;
310 case V4L2_CID_AUDIO_VOLUME:
Hans Verkuil151c3f82009-03-06 13:45:27 -0300311 ctrl->value = rt->curvol;
Douglas Landgraf385e8d82007-04-25 00:14:36 -0300312 return 0;
313 }
314 return -EINVAL;
315}
316
317static int vidioc_s_ctrl(struct file *file, void *priv,
318 struct v4l2_control *ctrl)
319{
Hans Verkuil151c3f82009-03-06 13:45:27 -0300320 struct rtrack *rt = video_drvdata(file);
Douglas Landgraf385e8d82007-04-25 00:14:36 -0300321
322 switch (ctrl->id) {
323 case V4L2_CID_AUDIO_MUTE:
324 if (ctrl->value)
325 rt_mute(rt);
326 else
Hans Verkuil151c3f82009-03-06 13:45:27 -0300327 rt_setvol(rt, rt->curvol);
Douglas Landgraf385e8d82007-04-25 00:14:36 -0300328 return 0;
329 case V4L2_CID_AUDIO_VOLUME:
Hans Verkuil151c3f82009-03-06 13:45:27 -0300330 rt_setvol(rt, ctrl->value);
Douglas Landgraf385e8d82007-04-25 00:14:36 -0300331 return 0;
332 }
333 return -EINVAL;
334}
335
Douglas Landgraf385e8d82007-04-25 00:14:36 -0300336static int vidioc_g_input(struct file *filp, void *priv, unsigned int *i)
337{
338 *i = 0;
339 return 0;
340}
341
342static int vidioc_s_input(struct file *filp, void *priv, unsigned int i)
343{
Hans Verkuil151c3f82009-03-06 13:45:27 -0300344 return i ? -EINVAL : 0;
345}
346
347static int vidioc_g_audio(struct file *file, void *priv,
348 struct v4l2_audio *a)
349{
350 a->index = 0;
351 strlcpy(a->name, "Radio", sizeof(a->name));
352 a->capability = V4L2_AUDCAP_STEREO;
Douglas Landgraf385e8d82007-04-25 00:14:36 -0300353 return 0;
354}
355
356static int vidioc_s_audio(struct file *file, void *priv,
357 struct v4l2_audio *a)
358{
Hans Verkuil151c3f82009-03-06 13:45:27 -0300359 return a->index ? -EINVAL : 0;
360}
361
Hans Verkuilbec43662008-12-30 06:58:20 -0300362static const struct v4l2_file_operations rtrack_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 .owner = THIS_MODULE,
Douglas Landgraf385e8d82007-04-25 00:14:36 -0300364 .ioctl = video_ioctl2,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365};
366
Hans Verkuila3998102008-07-21 02:57:38 -0300367static const struct v4l2_ioctl_ops rtrack_ioctl_ops = {
Douglas Landgraf385e8d82007-04-25 00:14:36 -0300368 .vidioc_querycap = vidioc_querycap,
369 .vidioc_g_tuner = vidioc_g_tuner,
370 .vidioc_s_tuner = vidioc_s_tuner,
371 .vidioc_g_audio = vidioc_g_audio,
372 .vidioc_s_audio = vidioc_s_audio,
373 .vidioc_g_input = vidioc_g_input,
374 .vidioc_s_input = vidioc_s_input,
375 .vidioc_g_frequency = vidioc_g_frequency,
376 .vidioc_s_frequency = vidioc_s_frequency,
377 .vidioc_queryctrl = vidioc_queryctrl,
378 .vidioc_g_ctrl = vidioc_g_ctrl,
379 .vidioc_s_ctrl = vidioc_s_ctrl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380};
381
382static int __init rtrack_init(void)
383{
Hans Verkuil151c3f82009-03-06 13:45:27 -0300384 struct rtrack *rt = &rtrack_card;
385 struct v4l2_device *v4l2_dev = &rt->v4l2_dev;
386 int res;
387
388 strlcpy(v4l2_dev->name, "rtrack", sizeof(v4l2_dev->name));
389 rt->io = io;
390
391 if (rt->io == -1) {
Hans Verkuilb24c20cc2009-03-09 08:11:21 -0300392 v4l2_err(v4l2_dev, "you must set an I/O address with io=0x20f or 0x30f\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 return -EINVAL;
394 }
395
Hans Verkuil151c3f82009-03-06 13:45:27 -0300396 if (!request_region(rt->io, 2, "rtrack")) {
397 v4l2_err(v4l2_dev, "port 0x%x already in use\n", rt->io);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 return -EBUSY;
399 }
400
Hans Verkuil151c3f82009-03-06 13:45:27 -0300401 res = v4l2_device_register(NULL, v4l2_dev);
402 if (res < 0) {
403 release_region(rt->io, 2);
404 v4l2_err(v4l2_dev, "could not register v4l2_device\n");
405 return res;
406 }
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -0300407
Hans Verkuil151c3f82009-03-06 13:45:27 -0300408 strlcpy(rt->vdev.name, v4l2_dev->name, sizeof(rt->vdev.name));
409 rt->vdev.v4l2_dev = v4l2_dev;
410 rt->vdev.fops = &rtrack_fops;
411 rt->vdev.ioctl_ops = &rtrack_ioctl_ops;
412 rt->vdev.release = video_device_release_empty;
413 video_set_drvdata(&rt->vdev, rt);
414
415 if (video_register_device(&rt->vdev, VFL_TYPE_RADIO, radio_nr) < 0) {
416 v4l2_device_unregister(&rt->v4l2_dev);
417 release_region(rt->io, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 return -EINVAL;
419 }
Hans Verkuil151c3f82009-03-06 13:45:27 -0300420 v4l2_info(v4l2_dev, "AIMSlab RadioTrack/RadioReveal card driver.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
422 /* Set up the I/O locking */
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -0300423
Hans Verkuil151c3f82009-03-06 13:45:27 -0300424 mutex_init(&rt->lock);
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -0300425
426 /* mute card - prevents noisy bootups */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
428 /* this ensures that the volume is all the way down */
Hans Verkuil151c3f82009-03-06 13:45:27 -0300429 outb(0x48, rt->io); /* volume down but still "on" */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 sleep_delay(2000000); /* make sure it's totally down */
Hans Verkuil151c3f82009-03-06 13:45:27 -0300431 outb(0xc0, rt->io); /* steady volume, mute card */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
433 return 0;
434}
435
Hans Verkuil151c3f82009-03-06 13:45:27 -0300436static void __exit rtrack_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437{
Hans Verkuil151c3f82009-03-06 13:45:27 -0300438 struct rtrack *rt = &rtrack_card;
439
440 video_unregister_device(&rt->vdev);
441 v4l2_device_unregister(&rt->v4l2_dev);
442 release_region(rt->io, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443}
444
445module_init(rtrack_init);
Hans Verkuil151c3f82009-03-06 13:45:27 -0300446module_exit(rtrack_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447