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 radio_nr
= -1;
35 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_do_ioctl(struct inode
*inode
, struct file
*file
,
158 unsigned int cmd
, void *arg
)
164 struct video_capability
*v
= arg
;
166 memset(v
,0,sizeof(*v
));
167 v
->type
=VID_TYPE_TUNER
;
170 strcpy(v
->name
, "Trust FM Radio");
176 struct video_tuner
*v
= arg
;
178 if(v
->tuner
) /* Only 1 tuner */
181 v
->rangelow
= 87500 * 16;
182 v
->rangehigh
= 108000 * 16;
183 v
->flags
= VIDEO_TUNER_LOW
;
184 v
->mode
= VIDEO_MODE_AUTO
;
186 v
->signal
= tr_getsigstr();
188 v
->flags
|= VIDEO_TUNER_STEREO_ON
;
190 strcpy(v
->name
, "FM");
196 struct video_tuner
*v
= arg
;
203 unsigned long *freq
= arg
;
209 unsigned long *freq
= arg
;
215 struct video_audio
*v
= arg
;
217 memset(v
,0, sizeof(*v
));
218 v
->flags
= VIDEO_AUDIO_MUTABLE
| VIDEO_AUDIO_VOLUME
|
219 VIDEO_AUDIO_BASS
| VIDEO_AUDIO_TREBLE
;
220 v
->mode
= curstereo
? VIDEO_SOUND_STEREO
: VIDEO_SOUND_MONO
;
221 v
->volume
= curvol
* 2048;
223 v
->bass
= curbass
* 4370;
224 v
->treble
= curtreble
* 4370;
226 strcpy(v
->name
, "Trust FM Radio");
231 struct video_audio
*v
= arg
;
235 tr_setvol(v
->volume
);
237 tr_settreble(v
->treble
);
238 tr_setstereo(v
->mode
& VIDEO_SOUND_STEREO
);
239 tr_setmute(v
->flags
& VIDEO_AUDIO_MUTE
);
247 static int tr_ioctl(struct inode
*inode
, struct file
*file
,
248 unsigned int cmd
, unsigned long arg
)
250 return video_usercopy(inode
, file
, cmd
, arg
, tr_do_ioctl
);
253 static struct file_operations trust_fops
= {
254 .owner
= THIS_MODULE
,
255 .open
= video_exclusive_open
,
256 .release
= video_exclusive_release
,
258 .compat_ioctl
= v4l_compat_ioctl32
,
262 static struct video_device trust_radio
=
264 .owner
= THIS_MODULE
,
265 .name
= "Trust FM Radio",
266 .type
= VID_TYPE_TUNER
,
267 .hardware
= VID_HARDWARE_TRUST
,
271 static int __init
trust_init(void)
274 printk(KERN_ERR
"You must set an I/O address with io=0x???\n");
277 if(!request_region(io
, 2, "Trust FM Radio")) {
278 printk(KERN_ERR
"trust: port 0x%x already in use\n", io
);
281 if(video_register_device(&trust_radio
, VFL_TYPE_RADIO
, radio_nr
)==-1)
283 release_region(io
, 2);
287 printk(KERN_INFO
"Trust FM Radio card driver v1.0.\n");
289 write_i2c(2, TDA7318_ADDR
, 0x80); /* speaker att. LF = 0 dB */
290 write_i2c(2, TDA7318_ADDR
, 0xa0); /* speaker att. RF = 0 dB */
291 write_i2c(2, TDA7318_ADDR
, 0xc0); /* speaker att. LR = 0 dB */
292 write_i2c(2, TDA7318_ADDR
, 0xe0); /* speaker att. RR = 0 dB */
293 write_i2c(2, TDA7318_ADDR
, 0x40); /* stereo 1 input, gain = 18.75 dB */
297 tr_settreble(0x8000);
300 /* mute card - prevents noisy bootups */
306 MODULE_AUTHOR("Eric Lammerts, Russell Kroll, Quay Lu, Donald Song, Jason Lewis, Scott McGrath, William McGrath");
307 MODULE_DESCRIPTION("A driver for the Trust FM Radio card.");
308 MODULE_LICENSE("GPL");
310 module_param(io
, int, 0);
311 MODULE_PARM_DESC(io
, "I/O address of the Trust FM Radio card (0x350 or 0x358)");
312 module_param(radio_nr
, int, 0);
314 static void __exit
cleanup_trust_module(void)
316 video_unregister_device(&trust_radio
);
317 release_region(io
, 2);
320 module_init(trust_init
);
321 module_exit(cleanup_trust_module
);