1 /* radiotrack (radioreveal) driver for Linux radio support
3 * Converted to new API by Alan Cox <Alan.Cox@linux.org>
4 * Various bugfixes and enhancements by Russell Kroll <rkroll@exploits.org>
7 * 1999-02-24 Russell Kroll <rkroll@exploits.org>
8 * Fine tuning/VIDEO_TUNER_LOW
9 * Frequency range expanded to start at 87 MHz
11 * TODO: Allow for more than one of these foolish entities :-)
13 * Notes on the hardware (reverse engineered from other peoples'
14 * reverse engineering of AIMS' code :-)
16 * Frequency control is done digitally -- ie out(port,encodefreq(95.8));
18 * The signal strength query is unsurprisingly inaccurate. And it seems
19 * to indicate that (on my card, at least) the frequency setting isn't
20 * too great. (I have to tune up .025MHz from what the freq should be
21 * to get a report that the thing is tuned.)
23 * Volume control is (ugh) analogue:
24 * out(port, start_increasing_volume);
26 * out(port, stop_changing_the_volume);
30 #include <linux/module.h> /* Modules */
31 #include <linux/init.h> /* Initdata */
32 #include <linux/ioport.h> /* request_region */
33 #include <linux/delay.h> /* udelay */
34 #include <asm/io.h> /* outb, outb_p */
35 #include <asm/uaccess.h> /* copy to/from user */
36 #include <linux/videodev.h> /* kernel radio structs */
37 #include <linux/config.h> /* CONFIG_RADIO_RTRACK_PORT */
38 #include <asm/semaphore.h> /* Lock for the I/O */
40 #ifndef CONFIG_RADIO_RTRACK_PORT
41 #define CONFIG_RADIO_RTRACK_PORT -1
44 static int io
= CONFIG_RADIO_RTRACK_PORT
;
45 static int radio_nr
= -1;
46 static struct semaphore lock
;
52 unsigned long curfreq
;
59 static void sleep_delay(long n
)
61 /* Sleep nicely for 'n' uS */
66 msleep(jiffies_to_msecs(d
));
69 static void rt_decvol(void)
71 outb(0x58, io
); /* volume down + sigstr + on */
73 outb(0xd8, io
); /* volume steady + sigstr + on */
76 static void rt_incvol(void)
78 outb(0x98, io
); /* volume up + sigstr + on */
80 outb(0xd8, io
); /* volume steady + sigstr + on */
83 static void rt_mute(struct rt_device
*dev
)
87 outb(0xd0, io
); /* volume steady, off */
91 static int rt_setvol(struct rt_device
*dev
, int vol
)
97 if(vol
== dev
->curvol
) { /* requested volume = current */
98 if (dev
->muted
) { /* user is unmuting the card */
100 outb (0xd8, io
); /* enable card */
106 if(vol
== 0) { /* volume = 0 means mute the card */
107 outb(0x48, io
); /* volume down but still "on" */
108 sleep_delay(2000000); /* make sure it's totally down */
109 outb(0xd0, io
); /* volume steady, off */
110 dev
->curvol
= 0; /* track the volume state! */
116 if(vol
> dev
->curvol
)
117 for(i
= dev
->curvol
; i
< vol
; i
++)
120 for(i
= dev
->curvol
; i
> vol
; i
--)
128 /* the 128+64 on these outb's is to keep the volume stable while tuning
129 * without them, the volume _will_ creep up with each frequency change
130 * and bit 4 (+16) is to keep the signal strength meter enabled
133 static void send_0_byte(int port
, struct rt_device
*dev
)
135 if ((dev
->curvol
== 0) || (dev
->muted
)) {
136 outb_p(128+64+16+ 1, port
); /* wr-enable + data low */
137 outb_p(128+64+16+2+1, port
); /* clock */
140 outb_p(128+64+16+8+ 1, port
); /* on + wr-enable + data low */
141 outb_p(128+64+16+8+2+1, port
); /* clock */
146 static void send_1_byte(int port
, struct rt_device
*dev
)
148 if ((dev
->curvol
== 0) || (dev
->muted
)) {
149 outb_p(128+64+16+4 +1, port
); /* wr-enable+data high */
150 outb_p(128+64+16+4+2+1, port
); /* clock */
153 outb_p(128+64+16+8+4 +1, port
); /* on+wr-enable+data high */
154 outb_p(128+64+16+8+4+2+1, port
); /* clock */
160 static int rt_setfreq(struct rt_device
*dev
, unsigned long freq
)
164 /* adapted from radio-aztech.c */
166 /* now uses VIDEO_TUNER_LOW for fine tuning */
168 freq
+= 171200; /* Add 10.7 MHz IF */
169 freq
/= 800; /* Convert to 50 kHz units */
171 down(&lock
); /* Stop other ops interfering */
173 send_0_byte (io
, dev
); /* 0: LSB of frequency */
175 for (i
= 0; i
< 13; i
++) /* : frequency bits (1-13) */
177 send_1_byte (io
, dev
);
179 send_0_byte (io
, dev
);
181 send_0_byte (io
, dev
); /* 14: test bit - always 0 */
182 send_0_byte (io
, dev
); /* 15: test bit - always 0 */
184 send_0_byte (io
, dev
); /* 16: band data 0 - always 0 */
185 send_0_byte (io
, dev
); /* 17: band data 1 - always 0 */
186 send_0_byte (io
, dev
); /* 18: band data 2 - always 0 */
187 send_0_byte (io
, dev
); /* 19: time base - always 0 */
189 send_0_byte (io
, dev
); /* 20: spacing (0 = 25 kHz) */
190 send_1_byte (io
, dev
); /* 21: spacing (1 = 25 kHz) */
191 send_0_byte (io
, dev
); /* 22: spacing (0 = 25 kHz) */
192 send_1_byte (io
, dev
); /* 23: AM/FM (FM = 1, always) */
194 if ((dev
->curvol
== 0) || (dev
->muted
))
195 outb (0xd0, io
); /* volume steady + sigstr */
197 outb (0xd8, io
); /* volume steady + sigstr + on */
204 static int rt_getsigstr(struct rt_device
*dev
)
206 if (inb(io
) & 2) /* bit set = no signal present */
208 return 1; /* signal present */
211 static int rt_do_ioctl(struct inode
*inode
, struct file
*file
,
212 unsigned int cmd
, void *arg
)
214 struct video_device
*dev
= video_devdata(file
);
215 struct rt_device
*rt
=dev
->priv
;
221 struct video_capability
*v
= arg
;
222 memset(v
,0,sizeof(*v
));
223 v
->type
=VID_TYPE_TUNER
;
226 strcpy(v
->name
, "RadioTrack");
231 struct video_tuner
*v
= arg
;
232 if(v
->tuner
) /* Only 1 tuner */
234 v
->rangelow
=(87*16000);
235 v
->rangehigh
=(108*16000);
236 v
->flags
=VIDEO_TUNER_LOW
;
237 v
->mode
=VIDEO_MODE_AUTO
;
238 strcpy(v
->name
, "FM");
239 v
->signal
=0xFFFF*rt_getsigstr(rt
);
244 struct video_tuner
*v
= arg
;
247 /* Only 1 tuner so no setting needed ! */
252 unsigned long *freq
= arg
;
258 unsigned long *freq
= arg
;
260 rt_setfreq(rt
, rt
->curfreq
);
265 struct video_audio
*v
= arg
;
266 memset(v
,0, sizeof(*v
));
267 v
->flags
|=VIDEO_AUDIO_MUTABLE
|VIDEO_AUDIO_VOLUME
;
268 v
->volume
=rt
->curvol
* 6554;
270 strcpy(v
->name
, "Radio");
275 struct video_audio
*v
= arg
;
278 if(v
->flags
&VIDEO_AUDIO_MUTE
)
281 rt_setvol(rt
,v
->volume
/6554);
289 static int rt_ioctl(struct inode
*inode
, struct file
*file
,
290 unsigned int cmd
, unsigned long arg
)
292 return video_usercopy(inode
, file
, cmd
, arg
, rt_do_ioctl
);
295 static struct rt_device rtrack_unit
;
297 static struct file_operations rtrack_fops
= {
298 .owner
= THIS_MODULE
,
299 .open
= video_exclusive_open
,
300 .release
= video_exclusive_release
,
305 static struct video_device rtrack_radio
=
307 .owner
= THIS_MODULE
,
308 .name
= "RadioTrack radio",
309 .type
= VID_TYPE_TUNER
,
310 .hardware
= VID_HARDWARE_RTRACK
,
311 .fops
= &rtrack_fops
,
314 static int __init
rtrack_init(void)
318 printk(KERN_ERR
"You must set an I/O address with io=0x???\n");
322 if (!request_region(io
, 2, "rtrack"))
324 printk(KERN_ERR
"rtrack: port 0x%x already in use\n", io
);
328 rtrack_radio
.priv
=&rtrack_unit
;
330 if(video_register_device(&rtrack_radio
, VFL_TYPE_RADIO
, radio_nr
)==-1)
332 release_region(io
, 2);
335 printk(KERN_INFO
"AIMSlab RadioTrack/RadioReveal card driver.\n");
337 /* Set up the I/O locking */
341 /* mute card - prevents noisy bootups */
343 /* this ensures that the volume is all the way down */
344 outb(0x48, io
); /* volume down but still "on" */
345 sleep_delay(2000000); /* make sure it's totally down */
346 outb(0xc0, io
); /* steady volume, mute card */
347 rtrack_unit
.curvol
= 0;
352 MODULE_AUTHOR("M.Kirkwood");
353 MODULE_DESCRIPTION("A driver for the RadioTrack/RadioReveal radio card.");
354 MODULE_LICENSE("GPL");
356 module_param(io
, int, 0);
357 MODULE_PARM_DESC(io
, "I/O address of the RadioTrack card (0x20f or 0x30f)");
358 module_param(radio_nr
, int, 0);
360 static void __exit
cleanup_rtrack_module(void)
362 video_unregister_device(&rtrack_radio
);
363 release_region(io
,2);
366 module_init(rtrack_init
);
367 module_exit(cleanup_rtrack_module
);