blob: 730fe16126cb9598610e5821d020ce2f8f78f485 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* GemTek radio card driver for Linux (C) 1998 Jonas Munsin <jmunsin@iki.fi>
2 *
3 * GemTek hasn't released any specs on the card, so the protocol had to
4 * be reverse engineered with dosemu.
5 *
6 * Besides the protocol changes, this is mostly a copy of:
7 *
8 * RadioTrack II driver for Linux radio support (C) 1998 Ben Pfaff
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -03009 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 * Based on RadioTrack I/RadioReveal (C) 1997 M. Kirkwood
11 * Converted to new API by Alan Cox <Alan.Cox@linux.org>
12 * Various bugfixes and enhancements by Russell Kroll <rkroll@exploits.org>
13 *
14 * TODO: Allow for more than one of these foolish entities :-)
15 *
Mauro Carvalho Chehabd1c4ecd2006-08-08 09:10:01 -030016 * Converted to V4L2 API by Mauro Carvalho Chehab <mchehab@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
18
19#include <linux/module.h> /* Modules */
20#include <linux/init.h> /* Initdata */
Peter Osterlundfb911ee2005-09-13 01:25:15 -070021#include <linux/ioport.h> /* request_region */
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/delay.h> /* udelay */
23#include <asm/io.h> /* outb, outb_p */
24#include <asm/uaccess.h> /* copy to/from user */
Mauro Carvalho Chehabd1c4ecd2006-08-08 09:10:01 -030025#include <linux/videodev2.h> /* kernel radio structs */
Mauro Carvalho Chehab5e87efa2006-06-05 10:26:32 -030026#include <media/v4l2-common.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/spinlock.h>
28
Mauro Carvalho Chehabd1c4ecd2006-08-08 09:10:01 -030029#include <linux/version.h> /* for KERNEL_VERSION MACRO */
30#define RADIO_VERSION KERNEL_VERSION(0,0,2)
31
32static struct v4l2_queryctrl radio_qctrl[] = {
33 {
34 .id = V4L2_CID_AUDIO_MUTE,
35 .name = "Mute",
36 .minimum = 0,
37 .maximum = 1,
38 .default_value = 1,
39 .type = V4L2_CTRL_TYPE_BOOLEAN,
40 },{
41 .id = V4L2_CID_AUDIO_VOLUME,
42 .name = "Volume",
43 .minimum = 0,
44 .maximum = 65535,
45 .step = 65535,
46 .default_value = 0xff,
47 .type = V4L2_CTRL_TYPE_INTEGER,
48 }
49};
50
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#ifndef CONFIG_RADIO_GEMTEK_PORT
52#define CONFIG_RADIO_GEMTEK_PORT -1
53#endif
54
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -030055static int io = CONFIG_RADIO_GEMTEK_PORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056static int radio_nr = -1;
57static spinlock_t lock;
58
59struct gemtek_device
60{
61 int port;
62 unsigned long curfreq;
63 int muted;
64};
65
66
67/* local things */
68
69/* the correct way to mute the gemtek may be to write the last written
70 * frequency || 0x10, but just writing 0x10 once seems to do it as well
71 */
72static void gemtek_mute(struct gemtek_device *dev)
73{
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -030074 if(dev->muted)
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 return;
76 spin_lock(&lock);
77 outb(0x10, io);
78 spin_unlock(&lock);
79 dev->muted = 1;
80}
81
82static void gemtek_unmute(struct gemtek_device *dev)
83{
84 if(dev->muted == 0)
85 return;
86 spin_lock(&lock);
87 outb(0x20, io);
88 spin_unlock(&lock);
89 dev->muted = 0;
90}
91
92static void zero(void)
93{
94 outb_p(0x04, io);
95 udelay(5);
96 outb_p(0x05, io);
97 udelay(5);
98}
99
100static void one(void)
101{
102 outb_p(0x06, io);
103 udelay(5);
104 outb_p(0x07, io);
105 udelay(5);
106}
107
108static int gemtek_setfreq(struct gemtek_device *dev, unsigned long freq)
109{
110 int i;
111
112/* freq = 78.25*((float)freq/16000.0 + 10.52); */
113
114 freq /= 16;
115 freq += 10520;
116 freq *= 7825;
117 freq /= 100000;
118
119 spin_lock(&lock);
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -0300120
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 /* 2 start bits */
122 outb_p(0x03, io);
123 udelay(5);
124 outb_p(0x07, io);
125 udelay(5);
126
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -0300127 /* 28 frequency bits (lsb first) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 for (i = 0; i < 14; i++)
129 if (freq & (1 << i))
130 one();
131 else
132 zero();
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -0300133 /* 36 unknown bits */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 for (i = 0; i < 11; i++)
135 zero();
136 one();
137 for (i = 0; i < 4; i++)
138 zero();
139 one();
140 zero();
141
142 /* 2 end bits */
143 outb_p(0x03, io);
144 udelay(5);
145 outb_p(0x07, io);
146 udelay(5);
147
148 spin_unlock(&lock);
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -0300149
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 return 0;
151}
152
153static int gemtek_getsigstr(struct gemtek_device *dev)
154{
155 spin_lock(&lock);
156 inb(io);
157 udelay(5);
158 spin_unlock(&lock);
159 if (inb(io) & 8) /* bit set = no signal present */
160 return 0;
161 return 1; /* signal present */
162}
163
164static int gemtek_do_ioctl(struct inode *inode, struct file *file,
165 unsigned int cmd, void *arg)
166{
167 struct video_device *dev = video_devdata(file);
168 struct gemtek_device *rt=dev->priv;
169
170 switch(cmd)
171 {
Mauro Carvalho Chehabd1c4ecd2006-08-08 09:10:01 -0300172 case VIDIOC_QUERYCAP:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 {
Mauro Carvalho Chehabd1c4ecd2006-08-08 09:10:01 -0300174 struct v4l2_capability *v = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 memset(v,0,sizeof(*v));
Mauro Carvalho Chehabd1c4ecd2006-08-08 09:10:01 -0300176 strlcpy(v->driver, "radio-gemtek", sizeof (v->driver));
177 strlcpy(v->card, "GemTek", sizeof (v->card));
178 sprintf(v->bus_info,"ISA");
179 v->version = RADIO_VERSION;
180 v->capabilities = V4L2_CAP_TUNER;
181
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 return 0;
183 }
Mauro Carvalho Chehabd1c4ecd2006-08-08 09:10:01 -0300184 case VIDIOC_G_TUNER:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 {
Mauro Carvalho Chehabd1c4ecd2006-08-08 09:10:01 -0300186 struct v4l2_tuner *v = arg;
187
188 if (v->index > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 return -EINVAL;
Mauro Carvalho Chehabd1c4ecd2006-08-08 09:10:01 -0300190
191 memset(v,0,sizeof(*v));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 strcpy(v->name, "FM");
Mauro Carvalho Chehabd1c4ecd2006-08-08 09:10:01 -0300193 v->type = V4L2_TUNER_RADIO;
194
195 v->rangelow=(87*16000);
196 v->rangehigh=(108*16000);
197 v->rxsubchans =V4L2_TUNER_SUB_MONO;
198 v->capability=V4L2_TUNER_CAP_LOW;
199 v->audmode = V4L2_TUNER_MODE_MONO;
200 v->signal=0xFFFF*gemtek_getsigstr(rt);
201
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 return 0;
203 }
Mauro Carvalho Chehabd1c4ecd2006-08-08 09:10:01 -0300204 case VIDIOC_S_TUNER:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 {
Mauro Carvalho Chehabd1c4ecd2006-08-08 09:10:01 -0300206 struct v4l2_tuner *v = arg;
207
208 if (v->index > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 return -EINVAL;
Mauro Carvalho Chehabd1c4ecd2006-08-08 09:10:01 -0300210
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 return 0;
212 }
Mauro Carvalho Chehabd1c4ecd2006-08-08 09:10:01 -0300213 case VIDIOC_S_FREQUENCY:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 {
Mauro Carvalho Chehabd1c4ecd2006-08-08 09:10:01 -0300215 struct v4l2_frequency *f = arg;
216
217 rt->curfreq = f->frequency;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 /* needs to be called twice in order for getsigstr to work */
219 gemtek_setfreq(rt, rt->curfreq);
220 gemtek_setfreq(rt, rt->curfreq);
221 return 0;
222 }
Mauro Carvalho Chehabd1c4ecd2006-08-08 09:10:01 -0300223 case VIDIOC_G_FREQUENCY:
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -0300224 {
Mauro Carvalho Chehabd1c4ecd2006-08-08 09:10:01 -0300225 struct v4l2_frequency *f = arg;
226
227 f->type = V4L2_TUNER_RADIO;
228 f->frequency = rt->curfreq;
229
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -0300230 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 }
Mauro Carvalho Chehabd1c4ecd2006-08-08 09:10:01 -0300232 case VIDIOC_QUERYCTRL:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 {
Mauro Carvalho Chehabd1c4ecd2006-08-08 09:10:01 -0300234 struct v4l2_queryctrl *qc = arg;
235 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
Mauro Carvalho Chehabd1c4ecd2006-08-08 09:10:01 -0300237 for (i = 0; i < ARRAY_SIZE(radio_qctrl); i++) {
238 if (qc->id && qc->id == radio_qctrl[i].id) {
239 memcpy(qc, &(radio_qctrl[i]),
240 sizeof(*qc));
241 return (0);
242 }
243 }
244 return -EINVAL;
245 }
246 case VIDIOC_G_CTRL:
247 {
248 struct v4l2_control *ctrl= arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
Mauro Carvalho Chehabd1c4ecd2006-08-08 09:10:01 -0300250 switch (ctrl->id) {
251 case V4L2_CID_AUDIO_MUTE:
252 ctrl->value=rt->muted;
253 return (0);
254 case V4L2_CID_AUDIO_VOLUME:
255 if (rt->muted)
256 ctrl->value=0;
257 else
258 ctrl->value=65535;
259 return (0);
260 }
261 return -EINVAL;
262 }
263 case VIDIOC_S_CTRL:
264 {
265 struct v4l2_control *ctrl= arg;
266
267 switch (ctrl->id) {
268 case V4L2_CID_AUDIO_MUTE:
269 if (ctrl->value) {
270 gemtek_mute(rt);
271 } else {
272 gemtek_unmute(rt);
273 }
274 return (0);
275 case V4L2_CID_AUDIO_VOLUME:
276 if (ctrl->value) {
277 gemtek_unmute(rt);
278 } else {
279 gemtek_mute(rt);
280 }
281 return (0);
282 }
283 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 }
285 default:
Mauro Carvalho Chehabd1c4ecd2006-08-08 09:10:01 -0300286 return v4l_compat_translate_ioctl(inode,file,cmd,arg,
287 gemtek_do_ioctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 }
289}
290
291static int gemtek_ioctl(struct inode *inode, struct file *file,
292 unsigned int cmd, unsigned long arg)
293{
294 return video_usercopy(inode, file, cmd, arg, gemtek_do_ioctl);
295}
296
297static struct gemtek_device gemtek_unit;
298
299static struct file_operations gemtek_fops = {
300 .owner = THIS_MODULE,
301 .open = video_exclusive_open,
302 .release = video_exclusive_release,
303 .ioctl = gemtek_ioctl,
Arnd Bergmann0d0fbf82006-01-09 15:24:57 -0200304 .compat_ioctl = v4l_compat_ioctl32,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 .llseek = no_llseek,
306};
307
308static struct video_device gemtek_radio=
309{
310 .owner = THIS_MODULE,
311 .name = "GemTek radio",
312 .type = VID_TYPE_TUNER,
Mauro Carvalho Chehabd1c4ecd2006-08-08 09:10:01 -0300313 .hardware = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 .fops = &gemtek_fops,
315};
316
317static int __init gemtek_init(void)
318{
319 if(io==-1)
320 {
321 printk(KERN_ERR "You must set an I/O address with io=0x20c, io=0x30c, io=0x24c or io=0x34c (io=0x020c or io=0x248 for the combined sound/radiocard)\n");
322 return -EINVAL;
323 }
324
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -0300325 if (!request_region(io, 4, "gemtek"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 {
327 printk(KERN_ERR "gemtek: port 0x%x already in use\n", io);
328 return -EBUSY;
329 }
330
331 gemtek_radio.priv=&gemtek_unit;
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -0300332
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 if(video_register_device(&gemtek_radio, VFL_TYPE_RADIO, radio_nr)==-1)
334 {
335 release_region(io, 4);
336 return -EINVAL;
337 }
338 printk(KERN_INFO "GemTek Radio Card driver.\n");
339
340 spin_lock_init(&lock);
341
342 /* this is _maybe_ unnecessary */
343 outb(0x01, io);
344
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -0300345 /* mute card - prevents noisy bootups */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 gemtek_unit.muted = 0;
347 gemtek_mute(&gemtek_unit);
348
349 return 0;
350}
351
352MODULE_AUTHOR("Jonas Munsin");
353MODULE_DESCRIPTION("A driver for the GemTek Radio Card");
354MODULE_LICENSE("GPL");
355
356module_param(io, int, 0);
357MODULE_PARM_DESC(io, "I/O address of the GemTek card (0x20c, 0x30c, 0x24c or 0x34c (0x20c or 0x248 have been reported to work for the combined sound/radiocard)).");
358module_param(radio_nr, int, 0);
359
360static void __exit gemtek_cleanup(void)
361{
362 video_unregister_device(&gemtek_radio);
363 release_region(io,4);
364}
365
366module_init(gemtek_init);
367module_exit(gemtek_cleanup);
368
369/*
370 Local variables:
371 compile-command: "gcc -c -DMODVERSIONS -D__KERNEL__ -DMODULE -O6 -Wall -Wstrict-prototypes -I /home/blp/tmp/linux-2.1.111-rtrack/include radio-rtrack2.c"
372 End:
373*/