blob: 40494dc5b7ff909052abf44e187bd13de3396ed4 [file] [log] [blame]
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -03001/*
2 * Guillemot Maxi Radio FM 2000 PCI radio card driver for Linux
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * (C) 2001 Dimitromanolakis Apostolos <apdim@grecian.net>
4 *
5 * Based in the radio Maestro PCI driver. Actually it uses the same chip
6 * for radio but different pci controller.
7 *
8 * I didn't have any specs I reversed engineered the protocol from
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -03009 * the windows driver (radio.dll).
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 *
11 * The card uses the TEA5757 chip that includes a search function but it
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -030012 * is useless as I haven't found any way to read back the frequency. If
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 * anybody does please mail me.
14 *
15 * For the pdf file see:
16 * http://www.semiconductors.philips.com/pip/TEA5757H/V1
17 *
18 *
19 * CHANGES:
20 * 0.75b
21 * - better pci interface thanks to Francois Romieu <romieu@cogenit.fr>
22 *
Mauro Carvalho Chehabe84fef62006-08-08 09:10:05 -030023 * 0.75 Sun Feb 4 22:51:27 EET 2001
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 * - tiding up
25 * - removed support for multiple devices as it didn't work anyway
26 *
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -030027 * BUGS:
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 * - card unmutes if you change frequency
29 *
Mauro Carvalho Chehab06470ed2007-01-25 09:04:34 -030030 * (c) 2006, 2007 by Mauro Carvalho Chehab <mchehab@infradead.org>:
31 * - Conversion to V4L2 API
32 * - Uses video_ioctl2 for parsing and to add debug support
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 */
34
35
36#include <linux/module.h>
37#include <linux/init.h>
38#include <linux/ioport.h>
39#include <linux/delay.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <asm/io.h>
41#include <asm/uaccess.h>
Ingo Molnar3593cab2006-02-07 06:49:14 -020042#include <linux/mutex.h>
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <linux/pci.h>
Mauro Carvalho Chehabe84fef62006-08-08 09:10:05 -030045#include <linux/videodev2.h>
Mauro Carvalho Chehab5e87efa2006-06-05 10:26:32 -030046#include <media/v4l2-common.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Mauro Carvalho Chehabe84fef62006-08-08 09:10:05 -030048#define DRIVER_VERSION "0.76"
49
50#include <linux/version.h> /* for KERNEL_VERSION MACRO */
51#define RADIO_VERSION KERNEL_VERSION(0,7,6)
52
53static struct v4l2_queryctrl radio_qctrl[] = {
54 {
55 .id = V4L2_CID_AUDIO_MUTE,
56 .name = "Mute",
57 .minimum = 0,
58 .maximum = 1,
59 .default_value = 1,
60 .type = V4L2_CTRL_TYPE_BOOLEAN,
61 }
62};
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
64#ifndef PCI_VENDOR_ID_GUILLEMOT
65#define PCI_VENDOR_ID_GUILLEMOT 0x5046
66#endif
67
68#ifndef PCI_DEVICE_ID_GUILLEMOT
69#define PCI_DEVICE_ID_GUILLEMOT_MAXIRADIO 0x1001
70#endif
71
72
73/* TEA5757 pin mappings */
74static const int clk = 1, data = 2, wren = 4, mo_st = 8, power = 16 ;
75
76static int radio_nr = -1;
77module_param(radio_nr, int, 0);
78
79
80#define FREQ_LO 50*16000
81#define FREQ_HI 150*16000
82
83#define FREQ_IF 171200 /* 10.7*16000 */
84#define FREQ_STEP 200 /* 12.5*16 */
85
86#define FREQ2BITS(x) ((( (unsigned int)(x)+FREQ_IF+(FREQ_STEP<<1))\
87 /(FREQ_STEP<<2))<<2) /* (x==fmhz*16*1000) -> bits */
88
89#define BITS2FREQ(x) ((x) * FREQ_STEP - FREQ_IF)
90
91
Arjan van de Venfa027c22007-02-12 00:55:33 -080092static const struct file_operations maxiradio_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 .owner = THIS_MODULE,
94 .open = video_exclusive_open,
95 .release = video_exclusive_release,
Mauro Carvalho Chehab06470ed2007-01-25 09:04:34 -030096 .ioctl = video_ioctl2,
Arnd Bergmann0d0fbf82006-01-09 15:24:57 -020097 .compat_ioctl = v4l_compat_ioctl32,
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 .llseek = no_llseek,
99};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
101static struct radio_device
102{
103 __u16 io, /* base of radio io */
104 muted, /* VIDEO_AUDIO_MUTE */
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -0300105 stereo, /* VIDEO_TUNER_STEREO_ON */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 tuned; /* signal strength (0 or 0xffff) */
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -0300107
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 unsigned long freq;
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -0300109
Ingo Molnar3593cab2006-02-07 06:49:14 -0200110 struct mutex lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111} radio_unit = {0, 0, 0, 0, };
112
113
114static void outbit(unsigned long bit, __u16 io)
115{
116 if(bit != 0)
117 {
118 outb( power|wren|data ,io); udelay(4);
119 outb( power|wren|data|clk ,io); udelay(4);
120 outb( power|wren|data ,io); udelay(4);
121 }
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -0300122 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 {
124 outb( power|wren ,io); udelay(4);
125 outb( power|wren|clk ,io); udelay(4);
126 outb( power|wren ,io); udelay(4);
127 }
128}
129
130static void turn_power(__u16 io, int p)
131{
132 if(p != 0) outb(power, io); else outb(0,io);
133}
134
135
136static void set_freq(__u16 io, __u32 data)
137{
138 unsigned long int si;
139 int bl;
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -0300140
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 /* TEA5757 shift register bits (see pdf) */
142
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -0300143 outbit(0,io); // 24 search
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 outbit(1,io); // 23 search up/down
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -0300145
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 outbit(0,io); // 22 stereo/mono
147
148 outbit(0,io); // 21 band
149 outbit(0,io); // 20 band (only 00=FM works I think)
150
151 outbit(0,io); // 19 port ?
152 outbit(0,io); // 18 port ?
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -0300153
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 outbit(0,io); // 17 search level
155 outbit(0,io); // 16 search level
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -0300156
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 si = 0x8000;
158 for(bl = 1; bl <= 16 ; bl++) { outbit(data & si,io); si >>=1; }
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -0300159
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 outb(power,io);
161}
162
163static int get_stereo(__u16 io)
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -0300164{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 outb(power,io); udelay(4);
166 return !(inb(io) & mo_st);
167}
168
169static int get_tune(__u16 io)
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -0300170{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 outb(power+clk,io); udelay(4);
172 return !(inb(io) & mo_st);
173}
174
175
Mauro Carvalho Chehab06470ed2007-01-25 09:04:34 -0300176static int vidioc_querycap (struct file *file, void *priv,
177 struct v4l2_capability *v)
178{
179 strlcpy(v->driver, "radio-maxiradio", sizeof (v->driver));
180 strlcpy(v->card, "Maxi Radio FM2000 radio", sizeof (v->card));
181 sprintf(v->bus_info,"ISA");
182 v->version = RADIO_VERSION;
183 v->capabilities = V4L2_CAP_TUNER;
184
185 return 0;
186}
187
188static int vidioc_g_tuner (struct file *file, void *priv,
189 struct v4l2_tuner *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190{
191 struct video_device *dev = video_devdata(file);
192 struct radio_device *card=dev->priv;
193
Mauro Carvalho Chehab06470ed2007-01-25 09:04:34 -0300194 if (v->index > 0)
195 return -EINVAL;
Mauro Carvalho Chehabe84fef62006-08-08 09:10:05 -0300196
Mauro Carvalho Chehab06470ed2007-01-25 09:04:34 -0300197 memset(v,0,sizeof(*v));
198 strcpy(v->name, "FM");
199 v->type = V4L2_TUNER_RADIO;
200
201 v->rangelow=FREQ_LO;
202 v->rangehigh=FREQ_HI;
203 v->rxsubchans =V4L2_TUNER_SUB_MONO|V4L2_TUNER_SUB_STEREO;
204 v->capability=V4L2_TUNER_CAP_LOW;
205 if(get_stereo(card->io))
206 v->audmode = V4L2_TUNER_MODE_STEREO;
207 else
208 v->audmode = V4L2_TUNER_MODE_MONO;
209 v->signal=0xffff*get_tune(card->io);
210
211 return 0;
212}
213
214static int vidioc_s_tuner (struct file *file, void *priv,
215 struct v4l2_tuner *v)
216{
217 if (v->index > 0)
218 return -EINVAL;
219
220 return 0;
221}
222
Mauro Carvalho Chehab140dcc42007-01-25 15:00:45 -0300223static int vidioc_g_audio (struct file *file, void *priv,
224 struct v4l2_audio *a)
225{
226 if (a->index > 1)
227 return -EINVAL;
228
229 strcpy(a->name, "Radio");
230 a->capability = V4L2_AUDCAP_STEREO;
231 return 0;
232}
233
234static int vidioc_s_audio (struct file *file, void *priv,
235 struct v4l2_audio *a)
236{
237 if (a->index != 0)
238 return -EINVAL;
239
240 return 0;
241}
242
Mauro Carvalho Chehab06470ed2007-01-25 09:04:34 -0300243static int vidioc_s_frequency (struct file *file, void *priv,
244 struct v4l2_frequency *f)
245{
246 struct video_device *dev = video_devdata(file);
247 struct radio_device *card=dev->priv;
248
249 if (f->frequency < FREQ_LO || f->frequency > FREQ_HI)
250 return -EINVAL;
251
252 card->freq = f->frequency;
253 set_freq(card->io, FREQ2BITS(card->freq));
254 msleep(125);
255
256 return 0;
257}
258
259static int vidioc_g_frequency (struct file *file, void *priv,
260 struct v4l2_frequency *f)
261{
262 struct video_device *dev = video_devdata(file);
263 struct radio_device *card=dev->priv;
264
265 f->type = V4L2_TUNER_RADIO;
266 f->frequency = card->freq;
267
268 return 0;
269}
270
271static int vidioc_queryctrl (struct file *file, void *priv,
272 struct v4l2_queryctrl *qc)
273{
274 int i;
275
276 for (i = 0; i < ARRAY_SIZE(radio_qctrl); i++) {
277 if (qc->id && qc->id == radio_qctrl[i].id) {
278 memcpy(qc, &(radio_qctrl[i]), sizeof(*qc));
279 return (0);
Mauro Carvalho Chehabe84fef62006-08-08 09:10:05 -0300280 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 }
Mauro Carvalho Chehab06470ed2007-01-25 09:04:34 -0300282 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283}
284
Mauro Carvalho Chehab06470ed2007-01-25 09:04:34 -0300285static int vidioc_g_ctrl (struct file *file, void *priv,
286 struct v4l2_control *ctrl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287{
288 struct video_device *dev = video_devdata(file);
289 struct radio_device *card=dev->priv;
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -0300290
Mauro Carvalho Chehab06470ed2007-01-25 09:04:34 -0300291 switch (ctrl->id) {
292 case V4L2_CID_AUDIO_MUTE:
293 ctrl->value=card->muted;
294 return (0);
295 }
296 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297}
298
Mauro Carvalho Chehab06470ed2007-01-25 09:04:34 -0300299static int vidioc_s_ctrl (struct file *file, void *priv,
300 struct v4l2_control *ctrl)
301{
302 struct video_device *dev = video_devdata(file);
303 struct radio_device *card=dev->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
Mauro Carvalho Chehab06470ed2007-01-25 09:04:34 -0300305 switch (ctrl->id) {
306 case V4L2_CID_AUDIO_MUTE:
307 card->muted = ctrl->value;
308 if(card->muted)
309 turn_power(card->io, 0);
310 else
311 set_freq(card->io, FREQ2BITS(card->freq));
312 return 0;
313 }
314 return -EINVAL;
315}
316
317static struct video_device maxiradio_radio =
318{
319 .owner = THIS_MODULE,
320 .name = "Maxi Radio FM2000 radio",
321 .type = VID_TYPE_TUNER,
322 .fops = &maxiradio_fops,
323
324 .vidioc_querycap = vidioc_querycap,
325 .vidioc_g_tuner = vidioc_g_tuner,
326 .vidioc_s_tuner = vidioc_s_tuner,
Mauro Carvalho Chehab140dcc42007-01-25 15:00:45 -0300327 .vidioc_g_audio = vidioc_g_audio,
328 .vidioc_s_audio = vidioc_s_audio,
Mauro Carvalho Chehab06470ed2007-01-25 09:04:34 -0300329 .vidioc_g_frequency = vidioc_g_frequency,
330 .vidioc_s_frequency = vidioc_s_frequency,
331 .vidioc_queryctrl = vidioc_queryctrl,
332 .vidioc_g_ctrl = vidioc_g_ctrl,
333 .vidioc_s_ctrl = vidioc_s_ctrl,
334
335};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
337static int __devinit maxiradio_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
338{
339 if(!request_region(pci_resource_start(pdev, 0),
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -0300340 pci_resource_len(pdev, 0), "Maxi Radio FM 2000")) {
341 printk(KERN_ERR "radio-maxiradio: can't reserve I/O ports\n");
342 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 }
344
345 if (pci_enable_device(pdev))
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -0300346 goto err_out_free_region;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
348 radio_unit.io = pci_resource_start(pdev, 0);
Ingo Molnar3593cab2006-02-07 06:49:14 -0200349 mutex_init(&radio_unit.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 maxiradio_radio.priv = &radio_unit;
351
352 if(video_register_device(&maxiradio_radio, VFL_TYPE_RADIO, radio_nr)==-1) {
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -0300353 printk("radio-maxiradio: can't register device!");
354 goto err_out_free_region;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 }
356
357 printk(KERN_INFO "radio-maxiradio: version "
358 DRIVER_VERSION
359 " time "
360 __TIME__ " "
361 __DATE__
362 "\n");
363
364 printk(KERN_INFO "radio-maxiradio: found Guillemot MAXI Radio device (io = 0x%x)\n",
365 radio_unit.io);
366 return 0;
367
368err_out_free_region:
369 release_region(pci_resource_start(pdev, 0), pci_resource_len(pdev, 0));
370err_out:
371 return -ENODEV;
372}
373
374static void __devexit maxiradio_remove_one(struct pci_dev *pdev)
375{
376 video_unregister_device(&maxiradio_radio);
377 release_region(pci_resource_start(pdev, 0), pci_resource_len(pdev, 0));
378}
379
380static struct pci_device_id maxiradio_pci_tbl[] = {
381 { PCI_VENDOR_ID_GUILLEMOT, PCI_DEVICE_ID_GUILLEMOT_MAXIRADIO,
382 PCI_ANY_ID, PCI_ANY_ID, },
383 { 0,}
384};
385
386MODULE_DEVICE_TABLE(pci, maxiradio_pci_tbl);
387
388static struct pci_driver maxiradio_driver = {
389 .name = "radio-maxiradio",
390 .id_table = maxiradio_pci_tbl,
391 .probe = maxiradio_init_one,
392 .remove = __devexit_p(maxiradio_remove_one),
393};
394
395static int __init maxiradio_radio_init(void)
396{
Richard Knutsson9bfab8c2005-11-30 00:59:34 +0100397 return pci_register_driver(&maxiradio_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398}
399
400static void __exit maxiradio_radio_exit(void)
401{
402 pci_unregister_driver(&maxiradio_driver);
403}
404
405module_init(maxiradio_radio_init);
406module_exit(maxiradio_radio_exit);
Mauro Carvalho Chehab06470ed2007-01-25 09:04:34 -0300407
408MODULE_AUTHOR("Dimitromanolakis Apostolos, apdim@grecian.net");
409MODULE_DESCRIPTION("Radio driver for the Guillemot Maxi Radio FM2000 radio.");
410MODULE_LICENSE("GPL");
411
412module_param_named(debug,maxiradio_radio.debug, int, 0644);
413MODULE_PARM_DESC(debug,"activates debug info");