1 /* radiotrack (radioreveal) driver for Linux radio support
3 * Coverted 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> /* check_region, 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
;
46 static struct semaphore lock
;
52 unsigned long curfreq
;
59 static void sleep_delay(long n
)
61 /* Sleep nicely for 'n' uS */
68 unsigned long x
=jiffies
;
74 static void rt_decvol(void)
76 outb(0x58, io
); /* volume down + sigstr + on */
78 outb(0xd8, io
); /* volume steady + sigstr + on */
81 static void rt_incvol(void)
83 outb(0x98, io
); /* volume up + sigstr + on */
85 outb(0xd8, io
); /* volume steady + sigstr + on */
88 static void rt_mute(struct rt_device
*dev
)
92 outb(0xd0, io
); /* volume steady, off */
96 static int rt_setvol(struct rt_device
*dev
, int vol
)
102 if(vol
== dev
->curvol
) { /* requested volume = current */
103 if (dev
->muted
) { /* user is unmuting the card */
105 outb (0xd8, io
); /* enable card */
111 if(vol
== 0) { /* volume = 0 means mute the card */
112 outb(0x48, io
); /* volume down but still "on" */
113 sleep_delay(2000000); /* make sure it's totally down */
114 outb(0xd0, io
); /* volume steady, off */
115 dev
->curvol
= 0; /* track the volume state! */
121 if(vol
> dev
->curvol
)
122 for(i
= dev
->curvol
; i
< vol
; i
++)
125 for(i
= dev
->curvol
; i
> vol
; i
--)
133 /* the 128+64 on these outb's is to keep the volume stable while tuning
134 * without them, the volume _will_ creep up with each frequency change
135 * and bit 4 (+16) is to keep the signal strength meter enabled
138 void send_0_byte(int port
, struct rt_device
*dev
)
140 if ((dev
->curvol
== 0) || (dev
->muted
)) {
141 outb_p(128+64+16+ 1, port
); /* wr-enable + data low */
142 outb_p(128+64+16+2+1, port
); /* clock */
145 outb_p(128+64+16+8+ 1, port
); /* on + wr-enable + data low */
146 outb_p(128+64+16+8+2+1, port
); /* clock */
151 void send_1_byte(int port
, struct rt_device
*dev
)
153 if ((dev
->curvol
== 0) || (dev
->muted
)) {
154 outb_p(128+64+16+4 +1, port
); /* wr-enable+data high */
155 outb_p(128+64+16+4+2+1, port
); /* clock */
158 outb_p(128+64+16+8+4 +1, port
); /* on+wr-enable+data high */
159 outb_p(128+64+16+8+4+2+1, port
); /* clock */
165 static int rt_setfreq(struct rt_device
*dev
, unsigned long freq
)
169 /* adapted from radio-aztech.c */
171 /* now uses VIDEO_TUNER_LOW for fine tuning */
173 freq
+= 171200; /* Add 10.7 MHz IF */
174 freq
/= 800; /* Convert to 50 kHz units */
176 down(&lock
); /* Stop other ops interfering */
178 send_0_byte (io
, dev
); /* 0: LSB of frequency */
180 for (i
= 0; i
< 13; i
++) /* : frequency bits (1-13) */
182 send_1_byte (io
, dev
);
184 send_0_byte (io
, dev
);
186 send_0_byte (io
, dev
); /* 14: test bit - always 0 */
187 send_0_byte (io
, dev
); /* 15: test bit - always 0 */
189 send_0_byte (io
, dev
); /* 16: band data 0 - always 0 */
190 send_0_byte (io
, dev
); /* 17: band data 1 - always 0 */
191 send_0_byte (io
, dev
); /* 18: band data 2 - always 0 */
192 send_0_byte (io
, dev
); /* 19: time base - always 0 */
194 send_0_byte (io
, dev
); /* 20: spacing (0 = 25 kHz) */
195 send_1_byte (io
, dev
); /* 21: spacing (1 = 25 kHz) */
196 send_0_byte (io
, dev
); /* 22: spacing (0 = 25 kHz) */
197 send_1_byte (io
, dev
); /* 23: AM/FM (FM = 1, always) */
199 if ((dev
->curvol
== 0) || (dev
->muted
))
200 outb (0xd0, io
); /* volume steady + sigstr */
202 outb (0xd8, io
); /* volume steady + sigstr + on */
209 static int rt_getsigstr(struct rt_device
*dev
)
211 if (inb(io
) & 2) /* bit set = no signal present */
213 return 1; /* signal present */
216 static int rt_ioctl(struct video_device
*dev
, unsigned int cmd
, void *arg
)
218 struct rt_device
*rt
=dev
->priv
;
224 struct video_capability v
;
225 v
.type
=VID_TYPE_TUNER
;
228 /* No we don't do pictures */
233 strcpy(v
.name
, "RadioTrack");
234 if(copy_to_user(arg
,&v
,sizeof(v
)))
240 struct video_tuner v
;
241 if(copy_from_user(&v
, arg
,sizeof(v
))!=0)
243 if(v
.tuner
) /* Only 1 tuner */
245 v
.rangelow
=(87*16000);
246 v
.rangehigh
=(108*16000);
247 v
.flags
=VIDEO_TUNER_LOW
;
248 v
.mode
=VIDEO_MODE_AUTO
;
249 strcpy(v
.name
, "FM");
250 v
.signal
=0xFFFF*rt_getsigstr(rt
);
251 if(copy_to_user(arg
,&v
, sizeof(v
)))
257 struct video_tuner v
;
258 if(copy_from_user(&v
, arg
, sizeof(v
)))
262 /* Only 1 tuner so no setting needed ! */
266 if(copy_to_user(arg
, &rt
->curfreq
, sizeof(rt
->curfreq
)))
270 if(copy_from_user(&rt
->curfreq
, arg
,sizeof(rt
->curfreq
)))
272 rt_setfreq(rt
, rt
->curfreq
);
276 struct video_audio v
;
277 memset(&v
,0, sizeof(v
));
278 v
.flags
|=VIDEO_AUDIO_MUTABLE
|VIDEO_AUDIO_VOLUME
;
279 v
.volume
=rt
->curvol
* 6554;
281 strcpy(v
.name
, "Radio");
282 if(copy_to_user(arg
,&v
, sizeof(v
)))
288 struct video_audio v
;
289 if(copy_from_user(&v
, arg
, sizeof(v
)))
294 if(v
.flags
&VIDEO_AUDIO_MUTE
)
297 rt_setvol(rt
,v
.volume
/6554);
306 static int rt_open(struct video_device
*dev
, int flags
)
315 static void rt_close(struct video_device
*dev
)
321 static struct rt_device rtrack_unit
;
323 static struct video_device rtrack_radio
=
330 NULL
, /* Can't read (no capture ability) */
331 NULL
, /* Can't write */
338 static int __init
rtrack_init(void)
342 printk(KERN_ERR
"You must set an I/O address with io=0x???\n");
346 if (check_region(io
, 2))
348 printk(KERN_ERR
"rtrack: port 0x%x already in use\n", io
);
352 rtrack_radio
.priv
=&rtrack_unit
;
354 if(video_register_device(&rtrack_radio
, VFL_TYPE_RADIO
)==-1)
357 request_region(io
, 2, "rtrack");
358 printk(KERN_INFO
"AIMSlab Radiotrack/radioreveal card driver.\n");
360 /* Set up the I/O locking */
364 /* mute card - prevents noisy bootups */
366 /* this ensures that the volume is all the way down */
367 outb(0x48, io
); /* volume down but still "on" */
368 sleep_delay(2000000); /* make sure it's totally down */
369 outb(0xc0, io
); /* steady volume, mute card */
370 rtrack_unit
.curvol
= 0;
375 MODULE_AUTHOR("M.Kirkwood");
376 MODULE_DESCRIPTION("A driver for the RadioTrack/RadioReveal radio card.");
377 MODULE_PARM(io
, "i");
378 MODULE_PARM_DESC(io
, "I/O address of the RadioTrack card (0x20f or 0x30f)");
382 static void __exit
cleanup_rtrack_module(void)
384 video_unregister_device(&rtrack_radio
);
385 release_region(io
,2);
388 module_init(rtrack_init
);
389 module_exit(cleanup_rtrack_module
);