blob: 834d43651c70fc1017ee65fa371ef3e18c86d11f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* SF16FMI radio driver for Linux radio support
2 * heavily based on rtrack driver...
3 * (c) 1997 M. Kirkwood
4 * (c) 1998 Petr Vandrovec, vandrove@vc.cvut.cz
5 *
Alan Coxd9b01442008-10-27 15:13:47 -03006 * Fitted to new interface by Alan Cox <alan@lxorguk.ukuu.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * Made working and cleaned up functions <mikael.hedin@irf.se>
8 * Support for ISAPnP by Ladislav Michl <ladis@psi.cz>
9 *
10 * Notes on the hardware
11 *
12 * Frequency control is done digitally -- ie out(port,encodefreq(95.8));
13 * No volume control - only mute/unmute - you have to use line volume
14 * control on SB-part of SF16FMI
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -030015 *
Mauro Carvalho Chehaba2ef73a2006-08-08 09:10:02 -030016 * Converted to V4L2 API by Mauro Carvalho Chehab <mchehab@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
18
Andrew Morton2cd885a2006-08-08 09:10:09 -030019#include <linux/version.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/kernel.h> /* __setup */
21#include <linux/module.h> /* Modules */
22#include <linux/init.h> /* Initdata */
Peter Osterlundfb911ee2005-09-13 01:25:15 -070023#include <linux/ioport.h> /* request_region */
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/delay.h> /* udelay */
Mauro Carvalho Chehaba2ef73a2006-08-08 09:10:02 -030025#include <linux/videodev2.h> /* kernel radio structs */
Mauro Carvalho Chehab5e87efa2006-06-05 10:26:32 -030026#include <media/v4l2-common.h>
Hans Verkuil35ea11f2008-07-20 08:12:02 -030027#include <media/v4l2-ioctl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/isapnp.h>
29#include <asm/io.h> /* outb, outb_p */
30#include <asm/uaccess.h> /* copy to/from user */
Ingo Molnar3593cab2006-02-07 06:49:14 -020031#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
Mauro Carvalho Chehaba2ef73a2006-08-08 09:10:02 -030033#define RADIO_VERSION KERNEL_VERSION(0,0,2)
34
35static struct v4l2_queryctrl radio_qctrl[] = {
36 {
37 .id = V4L2_CID_AUDIO_MUTE,
38 .name = "Mute",
39 .minimum = 0,
40 .maximum = 1,
41 .default_value = 1,
42 .type = V4L2_CTRL_TYPE_BOOLEAN,
43 }
44};
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046struct fmi_device
47{
Hans Verkuil3ca685a2008-08-23 04:49:13 -030048 unsigned long in_use;
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 int port;
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -030050 int curvol; /* 1 or 0 */
51 unsigned long curfreq; /* freq in kHz */
52 __u32 flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053};
54
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -030055static int io = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056static int radio_nr = -1;
57static struct pnp_dev *dev = NULL;
Ingo Molnar3593cab2006-02-07 06:49:14 -020058static struct mutex lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60/* freq is in 1/16 kHz to internal number, hw precision is 50 kHz */
61/* It is only useful to give freq in intervall of 800 (=0.05Mhz),
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -030062 * other bits will be truncated, e.g 92.7400016 -> 92.7, but
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 * 92.7400017 -> 92.75
64 */
65#define RSF16_ENCODE(x) ((x)/800+214)
66#define RSF16_MINFREQ 87*16000
67#define RSF16_MAXFREQ 108*16000
68
69static void outbits(int bits, unsigned int data, int port)
70{
71 while(bits--) {
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -030072 if(data & 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 outb(5, port);
74 udelay(6);
75 outb(7, port);
76 udelay(6);
77 } else {
78 outb(1, port);
79 udelay(6);
80 outb(3, port);
81 udelay(6);
82 }
83 data>>=1;
84 }
85}
86
87static inline void fmi_mute(int port)
88{
Ingo Molnar3593cab2006-02-07 06:49:14 -020089 mutex_lock(&lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 outb(0x00, port);
Ingo Molnar3593cab2006-02-07 06:49:14 -020091 mutex_unlock(&lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092}
93
94static inline void fmi_unmute(int port)
95{
Ingo Molnar3593cab2006-02-07 06:49:14 -020096 mutex_lock(&lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 outb(0x08, port);
Ingo Molnar3593cab2006-02-07 06:49:14 -020098 mutex_unlock(&lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099}
100
101static inline int fmi_setfreq(struct fmi_device *dev)
102{
103 int myport = dev->port;
104 unsigned long freq = dev->curfreq;
105
Ingo Molnar3593cab2006-02-07 06:49:14 -0200106 mutex_lock(&lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
108 outbits(16, RSF16_ENCODE(freq), myport);
109 outbits(8, 0xC0, myport);
110 msleep(143); /* was schedule_timeout(HZ/7) */
Ingo Molnar3593cab2006-02-07 06:49:14 -0200111 mutex_unlock(&lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 if (dev->curvol) fmi_unmute(myport);
113 return 0;
114}
115
116static inline int fmi_getsigstr(struct fmi_device *dev)
117{
118 int val;
119 int res;
120 int myport = dev->port;
121
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -0300122
Ingo Molnar3593cab2006-02-07 06:49:14 -0200123 mutex_lock(&lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 val = dev->curvol ? 0x08 : 0x00; /* unmute/mute */
125 outb(val, myport);
126 outb(val | 0x10, myport);
127 msleep(143); /* was schedule_timeout(HZ/7) */
128 res = (int)inb(myport+1);
129 outb(val, myport);
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -0300130
Ingo Molnar3593cab2006-02-07 06:49:14 -0200131 mutex_unlock(&lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 return (res & 2) ? 0 : 0xFFFF;
133}
134
Douglas Landgrafc123b862007-04-23 17:52:12 -0300135static int vidioc_querycap(struct file *file, void *priv,
136 struct v4l2_capability *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137{
Douglas Landgrafc123b862007-04-23 17:52:12 -0300138 strlcpy(v->driver, "radio-sf16fmi", sizeof(v->driver));
139 strlcpy(v->card, "SF16-FMx radio", sizeof(v->card));
140 sprintf(v->bus_info, "ISA");
141 v->version = RADIO_VERSION;
142 v->capabilities = V4L2_CAP_TUNER;
143 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144}
145
Douglas Landgrafc123b862007-04-23 17:52:12 -0300146static int vidioc_g_tuner(struct file *file, void *priv,
147 struct v4l2_tuner *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148{
Douglas Landgrafc123b862007-04-23 17:52:12 -0300149 int mult;
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300150 struct fmi_device *fmi = video_drvdata(file);
Douglas Landgrafc123b862007-04-23 17:52:12 -0300151
152 if (v->index > 0)
153 return -EINVAL;
154
155 strcpy(v->name, "FM");
156 v->type = V4L2_TUNER_RADIO;
157 mult = (fmi->flags & V4L2_TUNER_CAP_LOW) ? 1 : 1000;
158 v->rangelow = RSF16_MINFREQ/mult;
159 v->rangehigh = RSF16_MAXFREQ/mult;
160 v->rxsubchans = V4L2_TUNER_SUB_MONO | V4L2_TUNER_MODE_STEREO;
161 v->capability = fmi->flags&V4L2_TUNER_CAP_LOW;
162 v->audmode = V4L2_TUNER_MODE_STEREO;
163 v->signal = fmi_getsigstr(fmi);
164 return 0;
165}
166
167static int vidioc_s_tuner(struct file *file, void *priv,
168 struct v4l2_tuner *v)
169{
170 if (v->index > 0)
171 return -EINVAL;
172 return 0;
173}
174
175static int vidioc_s_frequency(struct file *file, void *priv,
176 struct v4l2_frequency *f)
177{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300178 struct fmi_device *fmi = video_drvdata(file);
Douglas Landgrafc123b862007-04-23 17:52:12 -0300179
180 if (!(fmi->flags & V4L2_TUNER_CAP_LOW))
181 f->frequency *= 1000;
182 if (f->frequency < RSF16_MINFREQ ||
183 f->frequency > RSF16_MAXFREQ )
184 return -EINVAL;
185 /*rounding in steps of 800 to match th freq
186 that will be used */
187 fmi->curfreq = (f->frequency/800)*800;
188 fmi_setfreq(fmi);
189 return 0;
190}
191
192static int vidioc_g_frequency(struct file *file, void *priv,
193 struct v4l2_frequency *f)
194{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300195 struct fmi_device *fmi = video_drvdata(file);
Douglas Landgrafc123b862007-04-23 17:52:12 -0300196
197 f->type = V4L2_TUNER_RADIO;
198 f->frequency = fmi->curfreq;
199 if (!(fmi->flags & V4L2_TUNER_CAP_LOW))
200 f->frequency /= 1000;
201 return 0;
202}
203
204static int vidioc_queryctrl(struct file *file, void *priv,
205 struct v4l2_queryctrl *qc)
206{
207 int i;
208
209 for (i = 0; i < ARRAY_SIZE(radio_qctrl); i++) {
210 if (qc->id && qc->id == radio_qctrl[i].id) {
211 memcpy(qc, &(radio_qctrl[i]),
212 sizeof(*qc));
213 return 0;
214 }
215 }
216 return -EINVAL;
217}
218
219static int vidioc_g_ctrl(struct file *file, void *priv,
220 struct v4l2_control *ctrl)
221{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300222 struct fmi_device *fmi = video_drvdata(file);
Douglas Landgrafc123b862007-04-23 17:52:12 -0300223
224 switch (ctrl->id) {
225 case V4L2_CID_AUDIO_MUTE:
226 ctrl->value = fmi->curvol;
227 return 0;
228 }
229 return -EINVAL;
230}
231
232static int vidioc_s_ctrl(struct file *file, void *priv,
233 struct v4l2_control *ctrl)
234{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300235 struct fmi_device *fmi = video_drvdata(file);
Douglas Landgrafc123b862007-04-23 17:52:12 -0300236
237 switch (ctrl->id) {
238 case V4L2_CID_AUDIO_MUTE:
239 if (ctrl->value)
240 fmi_mute(fmi->port);
241 else
242 fmi_unmute(fmi->port);
243 fmi->curvol = ctrl->value;
244 return 0;
245 }
246 return -EINVAL;
247}
248
249static int vidioc_g_audio(struct file *file, void *priv,
250 struct v4l2_audio *a)
251{
252 if (a->index > 1)
253 return -EINVAL;
254
255 strcpy(a->name, "Radio");
256 a->capability = V4L2_AUDCAP_STEREO;
257 return 0;
258}
259
260static int vidioc_g_input(struct file *filp, void *priv, unsigned int *i)
261{
262 *i = 0;
263 return 0;
264}
265
266static int vidioc_s_input(struct file *filp, void *priv, unsigned int i)
267{
268 if (i != 0)
269 return -EINVAL;
270 return 0;
271}
272
273static int vidioc_s_audio(struct file *file, void *priv,
274 struct v4l2_audio *a)
275{
276 if (a->index != 0)
277 return -EINVAL;
278 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279}
280
281static struct fmi_device fmi_unit;
282
Hans Verkuil3ca685a2008-08-23 04:49:13 -0300283static int fmi_exclusive_open(struct inode *inode, struct file *file)
284{
285 return test_and_set_bit(0, &fmi_unit.in_use) ? -EBUSY : 0;
286}
287
288static int fmi_exclusive_release(struct inode *inode, struct file *file)
289{
290 clear_bit(0, &fmi_unit.in_use);
291 return 0;
292}
293
Arjan van de Venfa027c22007-02-12 00:55:33 -0800294static const struct file_operations fmi_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 .owner = THIS_MODULE,
Hans Verkuil3ca685a2008-08-23 04:49:13 -0300296 .open = fmi_exclusive_open,
297 .release = fmi_exclusive_release,
Douglas Landgrafc123b862007-04-23 17:52:12 -0300298 .ioctl = video_ioctl2,
Douglas Schilling Landgraf078ff792008-04-22 14:46:11 -0300299#ifdef CONFIG_COMPAT
Arnd Bergmann0d0fbf82006-01-09 15:24:57 -0200300 .compat_ioctl = v4l_compat_ioctl32,
Douglas Schilling Landgraf078ff792008-04-22 14:46:11 -0300301#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 .llseek = no_llseek,
303};
304
Hans Verkuila3998102008-07-21 02:57:38 -0300305static const struct v4l2_ioctl_ops fmi_ioctl_ops = {
Douglas Landgrafc123b862007-04-23 17:52:12 -0300306 .vidioc_querycap = vidioc_querycap,
307 .vidioc_g_tuner = vidioc_g_tuner,
308 .vidioc_s_tuner = vidioc_s_tuner,
309 .vidioc_g_audio = vidioc_g_audio,
310 .vidioc_s_audio = vidioc_s_audio,
311 .vidioc_g_input = vidioc_g_input,
312 .vidioc_s_input = vidioc_s_input,
313 .vidioc_g_frequency = vidioc_g_frequency,
314 .vidioc_s_frequency = vidioc_s_frequency,
315 .vidioc_queryctrl = vidioc_queryctrl,
316 .vidioc_g_ctrl = vidioc_g_ctrl,
317 .vidioc_s_ctrl = vidioc_s_ctrl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318};
319
Hans Verkuila3998102008-07-21 02:57:38 -0300320static struct video_device fmi_radio = {
Hans Verkuila3998102008-07-21 02:57:38 -0300321 .name = "SF16FMx radio",
Hans Verkuila3998102008-07-21 02:57:38 -0300322 .fops = &fmi_fops,
323 .ioctl_ops = &fmi_ioctl_ops,
Hans Verkuilaa5e90a2008-08-23 06:23:55 -0300324 .release = video_device_release_empty,
Hans Verkuila3998102008-07-21 02:57:38 -0300325};
326
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327/* ladis: this is my card. does any other types exist? */
328static struct isapnp_device_id id_table[] __devinitdata = {
329 { ISAPNP_ANY_ID, ISAPNP_ANY_ID,
330 ISAPNP_VENDOR('M','F','R'), ISAPNP_FUNCTION(0xad10), 0},
331 { ISAPNP_CARD_END, },
332};
333
334MODULE_DEVICE_TABLE(isapnp, id_table);
335
Randy Dunlapa9993372008-01-23 02:39:39 -0300336static int __init isapnp_fmi_probe(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337{
338 int i = 0;
339
340 while (id_table[i].card_vendor != 0 && dev == NULL) {
341 dev = pnp_find_dev(NULL, id_table[i].vendor,
342 id_table[i].function, NULL);
343 i++;
344 }
345
346 if (!dev)
347 return -ENODEV;
348 if (pnp_device_attach(dev) < 0)
349 return -EAGAIN;
350 if (pnp_activate_dev(dev) < 0) {
351 printk ("radio-sf16fmi: PnP configure failed (out of resources?)\n");
352 pnp_device_detach(dev);
353 return -ENOMEM;
354 }
355 if (!pnp_port_valid(dev, 0)) {
356 pnp_device_detach(dev);
357 return -ENODEV;
358 }
359
360 i = pnp_port_start(dev, 0);
361 printk ("radio-sf16fmi: PnP reports card at %#x\n", i);
362
363 return i;
364}
365
366static int __init fmi_init(void)
367{
368 if (io < 0)
369 io = isapnp_fmi_probe();
370 if (io < 0) {
371 printk(KERN_ERR "radio-sf16fmi: No PnP card found.\n");
372 return io;
373 }
374 if (!request_region(io, 2, "radio-sf16fmi")) {
375 printk(KERN_ERR "radio-sf16fmi: port 0x%x already in use\n", io);
Mauro Carvalho Chehabe08a8c92008-01-27 14:43:20 -0300376 pnp_device_detach(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 return -EBUSY;
378 }
379
380 fmi_unit.port = io;
381 fmi_unit.curvol = 0;
382 fmi_unit.curfreq = 0;
Mauro Carvalho Chehaba2ef73a2006-08-08 09:10:02 -0300383 fmi_unit.flags = V4L2_TUNER_CAP_LOW;
Hans Verkuil601e9442008-08-23 07:24:07 -0300384 video_set_drvdata(&fmi_radio, &fmi_unit);
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -0300385
Ingo Molnar3593cab2006-02-07 06:49:14 -0200386 mutex_init(&lock);
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -0300387
Hans Verkuilcba99ae2008-09-03 17:11:58 -0300388 if (video_register_device(&fmi_radio, VFL_TYPE_RADIO, radio_nr) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 release_region(io, 2);
390 return -EINVAL;
391 }
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -0300392
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 printk(KERN_INFO "SF16FMx radio card driver at 0x%x\n", io);
394 /* mute card - prevents noisy bootups */
395 fmi_mute(io);
396 return 0;
397}
398
399MODULE_AUTHOR("Petr Vandrovec, vandrove@vc.cvut.cz and M. Kirkwood");
400MODULE_DESCRIPTION("A driver for the SF16MI radio.");
401MODULE_LICENSE("GPL");
402
403module_param(io, int, 0);
404MODULE_PARM_DESC(io, "I/O address of the SF16MI card (0x284 or 0x384)");
405module_param(radio_nr, int, 0);
406
407static void __exit fmi_cleanup_module(void)
408{
409 video_unregister_device(&fmi_radio);
410 release_region(io, 2);
411 if (dev)
412 pnp_device_detach(dev);
413}
414
415module_init(fmi_init);
416module_exit(fmi_cleanup_module);