1 /* radio-trust.c - Trust FM Radio card driver for Linux 2.2
2 * by Eric Lammerts <eric@scintilla.utwente.nl>
4 * Based on radio-aztech.c. Original notes:
6 * Adapted to support the Video for Linux API by
7 * Russell Kroll <rkroll@exploits.org>. Based on original tuner code by:
11 * Jason Lewis (jlewis@twilight.vtc.vsc.edu)
12 * Scott McGrath (smcgrath@twilight.vtc.vsc.edu)
13 * William McGrath (wmcgrath@twilight.vtc.vsc.edu)
15 * The basis for this code may be found at http://bigbang.vtc.vsc.edu/fmradio/
19 #include <linux/module.h>
20 #include <linux/init.h>
21 #include <linux/ioport.h>
23 #include <asm/uaccess.h>
24 #include <linux/videodev.h>
25 #include <linux/config.h> /* CONFIG_RADIO_TRUST_PORT */
27 /* acceptable ports: 0x350 (JP3 shorted), 0x358 (JP3 open) */
29 #ifndef CONFIG_RADIO_TRUST_PORT
30 #define CONFIG_RADIO_TRUST_PORT -1
33 static int io
= CONFIG_RADIO_TRUST_PORT
;
34 static int ioval
= 0xf;
38 static __u16 curtreble
;
39 static unsigned long curfreq
;
44 #define TDA7318_ADDR 0x88
45 #define TSA6060T_ADDR 0xc4
47 #define TR_DELAY do { inb(io); inb(io); inb(io); } while(0)
48 #define TR_SET_SCL outb(ioval |= 2, io)
49 #define TR_CLR_SCL outb(ioval &= 0xfd, io)
50 #define TR_SET_SDA outb(ioval |= 1, io)
51 #define TR_CLR_SDA outb(ioval &= 0xfe, io)
53 static void write_i2c(int n
, ...)
55 unsigned char val
, mask
;
69 val
= va_arg(args
, unsigned);
70 for(mask
= 0x80; mask
; mask
>>= 1) {
99 static void tr_setvol(__u16 vol
)
102 write_i2c(2, TDA7318_ADDR
, curvol
^ 0x1f);
105 static int basstreble2chip
[15] = {
106 0, 1, 2, 3, 4, 5, 6, 7, 14, 13, 12, 11, 10, 9, 8
109 static void tr_setbass(__u16 bass
)
111 curbass
= bass
/ 4370;
112 write_i2c(2, TDA7318_ADDR
, 0x60 | basstreble2chip
[curbass
]);
115 static void tr_settreble(__u16 treble
)
117 curtreble
= treble
/ 4370;
118 write_i2c(2, TDA7318_ADDR
, 0x70 | basstreble2chip
[curtreble
]);
121 static void tr_setstereo(int stereo
)
123 curstereo
= !!stereo
;
124 ioval
= (ioval
& 0xfb) | (!curstereo
<< 2);
128 static void tr_setmute(int mute
)
131 ioval
= (ioval
& 0xf7) | (curmute
<< 3);
135 static int tr_getsigstr(void)
139 for(i
= 0, v
= 0; i
< 100; i
++) v
|= inb(io
);
140 return (v
& 1)? 0 : 0xffff;
143 static int tr_getstereo(void)
145 /* don't know how to determine it, just return the setting */
149 static void tr_setfreq(unsigned long f
)
151 f
/= 160; /* Convert to 10 kHz units */
152 f
+= 1070; /* Add 10.7 MHz IF */
154 write_i2c(5, TSA6060T_ADDR
, (f
<< 1) | 1, f
>> 7, 0x60 | ((f
>> 15) & 1), 0);
157 static int tr_ioctl(struct video_device
*dev
, unsigned int cmd
, void *arg
)
163 struct video_capability v
;
165 v
.type
=VID_TYPE_TUNER
;
169 /* No we don't do pictures */
175 strcpy(v
.name
, "Trust FM Radio");
177 if(copy_to_user(arg
,&v
,sizeof(v
)))
184 struct video_tuner v
;
186 if(copy_from_user(&v
, arg
,sizeof(v
))!=0)
189 if(v
.tuner
) /* Only 1 tuner */
192 v
.rangelow
= 87500 * 16;
193 v
.rangehigh
= 108000 * 16;
194 v
.flags
= VIDEO_TUNER_LOW
;
195 v
.mode
= VIDEO_MODE_AUTO
;
197 v
.signal
= tr_getsigstr();
199 v
.flags
|= VIDEO_TUNER_STEREO_ON
;
201 strcpy(v
.name
, "FM");
203 if(copy_to_user(arg
,&v
, sizeof(v
)))
210 struct video_tuner v
;
212 if(copy_from_user(&v
, arg
, sizeof(v
)))
220 if(copy_to_user(arg
, &curfreq
, sizeof(curfreq
)))
228 if(copy_from_user(&f
, arg
, sizeof(curfreq
)))
235 struct video_audio v
;
237 memset(&v
,0, sizeof(v
));
238 v
.flags
= VIDEO_AUDIO_MUTABLE
| VIDEO_AUDIO_VOLUME
|
239 VIDEO_AUDIO_BASS
| VIDEO_AUDIO_TREBLE
;
240 v
.mode
= curstereo
? VIDEO_SOUND_STEREO
: VIDEO_SOUND_MONO
;
241 v
.volume
= curvol
* 2048;
243 v
.bass
= curbass
* 4370;
244 v
.treble
= curtreble
* 4370;
246 strcpy(v
.name
, "Trust FM Radio");
247 if(copy_to_user(arg
,&v
, sizeof(v
)))
253 struct video_audio v
;
255 if(copy_from_user(&v
, arg
, sizeof(v
)))
262 tr_settreble(v
.treble
);
263 tr_setstereo(v
.mode
& VIDEO_SOUND_STEREO
);
264 tr_setmute(v
.flags
& VIDEO_AUDIO_MUTE
);
272 static int tr_open(struct video_device
*dev
, int flags
)
281 static void tr_close(struct video_device
*dev
)
287 static struct video_device trust_radio
=
294 NULL
, /* Can't read (no capture ability) */
295 NULL
, /* Can't write */
302 static int __init
trust_init(void)
305 printk(KERN_ERR
"You must set an I/O address with io=0x???\n");
308 if(check_region(io
, 2)) {
309 printk(KERN_ERR
"trust: port 0x%x already in use\n", io
);
312 if(video_register_device(&trust_radio
, VFL_TYPE_RADIO
)==-1)
315 request_region(io
, 2, "Trust FM Radio");
317 printk(KERN_INFO
"Trust FM Radio card driver v1.0.\n");
319 write_i2c(2, TDA7318_ADDR
, 0x80); /* speaker att. LF = 0 dB */
320 write_i2c(2, TDA7318_ADDR
, 0xa0); /* speaker att. RF = 0 dB */
321 write_i2c(2, TDA7318_ADDR
, 0xc0); /* speaker att. LR = 0 dB */
322 write_i2c(2, TDA7318_ADDR
, 0xe0); /* speaker att. RR = 0 dB */
323 write_i2c(2, TDA7318_ADDR
, 0x40); /* stereo 1 input, gain = 18.75 dB */
327 tr_settreble(0x8000);
330 /* mute card - prevents noisy bootups */
336 MODULE_AUTHOR("Eric Lammerts, Russell Kroll, Quay Lu, Donald Song, Jason Lewis, Scott McGrath, William McGrath");
337 MODULE_DESCRIPTION("A driver for the Trust FM Radio card.");
338 MODULE_PARM(io
, "i");
339 MODULE_PARM_DESC(io
, "I/O address of the Trust FM Radio card (0x350 or 0x358)");
343 static void __exit
cleanup_trust_module(void)
345 video_unregister_device(&trust_radio
);
346 release_region(io
, 2);
349 module_init(trust_init
);
350 module_exit(cleanup_trust_module
);