2 * Guillemot Maxi Radio FM 2000 PCI radio card driver for Linux
3 * (C) 2001 Dimitromanolakis Apostolos <apdim@grecian.net>
5 * Based in the radio Maestro PCI driver. Actually it uses the same chip
6 * for radio but different pci controller.
8 * I didn't have any specs I reversed engineered the protocol from
9 * the windows driver (radio.dll).
11 * The card uses the TEA5757 chip that includes a search function but it
12 * is useless as I haven't found any way to read back the frequency. If
13 * anybody does please mail me.
15 * For the pdf file see:
16 * http://www.semiconductors.philips.com/pip/TEA5757H/V1
21 * - better pci interface thanks to Francois Romieu <romieu@cogenit.fr>
25 * - removed support for multiple devices as it didn't work anyway
28 * - card unmutes if you change frequency
33 #include <linux/module.h>
34 #include <linux/init.h>
35 #include <linux/ioport.h>
36 #include <linux/delay.h>
37 #include <linux/sched.h>
39 #include <asm/uaccess.h>
40 #include <asm/semaphore.h>
41 #include <linux/pci.h>
42 #include <linux/videodev.h>
44 /* version 0.75 Sun Feb 4 22:51:27 EET 2001 */
45 #define DRIVER_VERSION "0.75"
47 #ifndef PCI_VENDOR_ID_GUILLEMOT
48 #define PCI_VENDOR_ID_GUILLEMOT 0x5046
51 #ifndef PCI_DEVICE_ID_GUILLEMOT
52 #define PCI_DEVICE_ID_GUILLEMOT_MAXIRADIO 0x1001
56 /* TEA5757 pin mappings */
57 static const int clk = 1, data = 2, wren = 4, mo_st = 8, power = 16 ;
59 static int radio_nr = -1;
60 module_param(radio_nr, int, 0);
63 #define FREQ_LO 50*16000
64 #define FREQ_HI 150*16000
66 #define FREQ_IF 171200 /* 10.7*16000 */
67 #define FREQ_STEP 200 /* 12.5*16 */
69 #define FREQ2BITS(x) ((( (unsigned int)(x)+FREQ_IF+(FREQ_STEP<<1))\
70 /(FREQ_STEP<<2))<<2) /* (x==fmhz*16*1000) -> bits */
72 #define BITS2FREQ(x) ((x) * FREQ_STEP - FREQ_IF)
75 static int radio_ioctl(struct inode *inode, struct file *file,
76 unsigned int cmd, unsigned long arg);
78 static struct file_operations maxiradio_fops = {
80 .open = video_exclusive_open,
81 .release = video_exclusive_release,
83 .compat_ioctl = v4l_compat_ioctl32,
86 static struct video_device maxiradio_radio =
89 .name = "Maxi Radio FM2000 radio",
90 .type = VID_TYPE_TUNER,
91 .hardware = VID_HARDWARE_SF16MI,
92 .fops = &maxiradio_fops,
95 static struct radio_device
97 __u16 io, /* base of radio io */
98 muted, /* VIDEO_AUDIO_MUTE */
99 stereo, /* VIDEO_TUNER_STEREO_ON */
100 tuned; /* signal strength (0 or 0xffff) */
104 struct semaphore lock;
105 } radio_unit = {0, 0, 0, 0, };
108 static void outbit(unsigned long bit, __u16 io)
112 outb( power|wren|data ,io); udelay(4);
113 outb( power|wren|data|clk ,io); udelay(4);
114 outb( power|wren|data ,io); udelay(4);
118 outb( power|wren ,io); udelay(4);
119 outb( power|wren|clk ,io); udelay(4);
120 outb( power|wren ,io); udelay(4);
124 static void turn_power(__u16 io, int p)
126 if(p != 0) outb(power, io); else outb(0,io);
130 static void set_freq(__u16 io, __u32 data)
132 unsigned long int si;
135 /* TEA5757 shift register bits (see pdf) */
137 outbit(0,io); // 24 search
138 outbit(1,io); // 23 search up/down
140 outbit(0,io); // 22 stereo/mono
142 outbit(0,io); // 21 band
143 outbit(0,io); // 20 band (only 00=FM works I think)
145 outbit(0,io); // 19 port ?
146 outbit(0,io); // 18 port ?
148 outbit(0,io); // 17 search level
149 outbit(0,io); // 16 search level
152 for(bl = 1; bl <= 16 ; bl++) { outbit(data & si,io); si >>=1; }
157 static int get_stereo(__u16 io)
159 outb(power,io); udelay(4);
160 return !(inb(io) & mo_st);
163 static int get_tune(__u16 io)
165 outb(power+clk,io); udelay(4);
166 return !(inb(io) & mo_st);
170 static inline int radio_function(struct inode *inode, struct file *file,
171 unsigned int cmd, void *arg)
173 struct video_device *dev = video_devdata(file);
174 struct radio_device *card=dev->priv;
178 struct video_capability *v = arg;
180 memset(v,0,sizeof(*v));
181 strcpy(v->name, "Maxi Radio FM2000 radio");
182 v->type=VID_TYPE_TUNER;
183 v->channels=v->audios=1;
187 struct video_tuner *v = arg;
192 card->stereo = 0xffff * get_stereo(card->io);
193 card->tuned = 0xffff * get_tune(card->io);
195 v->flags = VIDEO_TUNER_LOW | card->stereo;
196 v->signal = card->tuned;
198 strcpy(v->name, "FM");
200 v->rangelow = FREQ_LO;
201 v->rangehigh = FREQ_HI;
202 v->mode = VIDEO_MODE_AUTO;
207 struct video_tuner *v = arg;
213 unsigned long *freq = arg;
219 unsigned long *freq = arg;
221 if (*freq < FREQ_LO || *freq > FREQ_HI)
224 set_freq(card->io, FREQ2BITS(card->freq));
229 struct video_audio *v = arg;
230 memset(v,0,sizeof(*v));
231 strcpy(v->name, "Radio");
232 v->flags=VIDEO_AUDIO_MUTABLE | card->muted;
233 v->mode=VIDEO_SOUND_STEREO;
238 struct video_audio *v = arg;
242 card->muted = v->flags & VIDEO_AUDIO_MUTE;
244 turn_power(card->io, 0);
246 set_freq(card->io, FREQ2BITS(card->freq));
250 struct video_unit *v = arg;
252 v->video=VIDEO_NO_UNIT;
253 v->vbi=VIDEO_NO_UNIT;
256 v->teletext=VIDEO_NO_UNIT;
259 default: return -ENOIOCTLCMD;
263 static int radio_ioctl(struct inode *inode, struct file *file,
264 unsigned int cmd, unsigned long arg)
266 struct video_device *dev = video_devdata(file);
267 struct radio_device *card=dev->priv;
271 ret = video_usercopy(inode, file, cmd, arg, radio_function);
276 MODULE_AUTHOR("Dimitromanolakis Apostolos, apdim@grecian.net");
277 MODULE_DESCRIPTION("Radio driver for the Guillemot Maxi Radio FM2000 radio.");
278 MODULE_LICENSE("GPL");
281 static int __devinit maxiradio_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
283 if(!request_region(pci_resource_start(pdev, 0),
284 pci_resource_len(pdev, 0), "Maxi Radio FM 2000")) {
285 printk(KERN_ERR "radio-maxiradio: can't reserve I/O ports\n");
289 if (pci_enable_device(pdev))
290 goto err_out_free_region;
292 radio_unit.io = pci_resource_start(pdev, 0);
293 init_MUTEX(&radio_unit.lock);
294 maxiradio_radio.priv = &radio_unit;
296 if(video_register_device(&maxiradio_radio, VFL_TYPE_RADIO, radio_nr)==-1) {
297 printk("radio-maxiradio: can't register device!");
298 goto err_out_free_region;
301 printk(KERN_INFO "radio-maxiradio: version "
308 printk(KERN_INFO "radio-maxiradio: found Guillemot MAXI Radio device (io = 0x%x)\n",
313 release_region(pci_resource_start(pdev, 0), pci_resource_len(pdev, 0));
318 static void __devexit maxiradio_remove_one(struct pci_dev *pdev)
320 video_unregister_device(&maxiradio_radio);
321 release_region(pci_resource_start(pdev, 0), pci_resource_len(pdev, 0));
324 static struct pci_device_id maxiradio_pci_tbl[] = {
325 { PCI_VENDOR_ID_GUILLEMOT, PCI_DEVICE_ID_GUILLEMOT_MAXIRADIO,
326 PCI_ANY_ID, PCI_ANY_ID, },
330 MODULE_DEVICE_TABLE(pci, maxiradio_pci_tbl);
332 static struct pci_driver maxiradio_driver = {
333 .name = "radio-maxiradio",
334 .id_table = maxiradio_pci_tbl,
335 .probe = maxiradio_init_one,
336 .remove = __devexit_p(maxiradio_remove_one),
339 static int __init maxiradio_radio_init(void)
341 return pci_register_driver(&maxiradio_driver);
344 static void __exit maxiradio_radio_exit(void)
346 pci_unregister_driver(&maxiradio_driver);
349 module_init(maxiradio_radio_init);
350 module_exit(maxiradio_radio_exit);