blob: 639164a974a13d11721f26158551149ea832478f [file] [log] [blame]
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -03001/* radio-aztech.c - Aztech radio card driver for Linux 2.2
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 *
Mauro Carvalho Chehaba4366af2006-08-08 09:10:01 -03003 * Converted to V4L2 API by Mauro Carvalho Chehab <mchehab@infradead.org>
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -03004 * Adapted to support the Video for Linux API by
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Russell Kroll <rkroll@exploits.org>. Based on original tuner code by:
6 *
7 * Quay Ly
8 * Donald Song
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -03009 * Jason Lewis (jlewis@twilight.vtc.vsc.edu)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 * Scott McGrath (smcgrath@twilight.vtc.vsc.edu)
11 * William McGrath (wmcgrath@twilight.vtc.vsc.edu)
12 *
13 * The basis for this code may be found at http://bigbang.vtc.vsc.edu/fmradio/
14 * along with more information on the card itself.
15 *
16 * History:
17 * 1999-02-24 Russell Kroll <rkroll@exploits.org>
18 * Fine tuning/VIDEO_TUNER_LOW
19 * Range expanded to 87-108 MHz (from 87.9-107.8)
20 *
21 * Notable changes from the original source:
22 * - includes stripped down to the essentials
23 * - for loops used as delays replaced with udelay()
24 * - #defines removed, changed to static values
25 * - tuning structure changed - no more character arrays, other changes
26*/
27
28#include <linux/module.h> /* Modules */
29#include <linux/init.h> /* Initdata */
Peter Osterlundfb911ee2005-09-13 01:25:15 -070030#include <linux/ioport.h> /* request_region */
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/delay.h> /* udelay */
32#include <asm/io.h> /* outb, outb_p */
33#include <asm/uaccess.h> /* copy to/from user */
Mauro Carvalho Chehaba4366af2006-08-08 09:10:01 -030034#include <linux/videodev2.h> /* kernel radio structs */
Mauro Carvalho Chehab5e87efa2006-06-05 10:26:32 -030035#include <media/v4l2-common.h>
Hans Verkuil35ea11f2008-07-20 08:12:02 -030036#include <media/v4l2-ioctl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
Mauro Carvalho Chehaba4366af2006-08-08 09:10:01 -030038#include <linux/version.h> /* for KERNEL_VERSION MACRO */
39#define RADIO_VERSION KERNEL_VERSION(0,0,2)
40
41static struct v4l2_queryctrl radio_qctrl[] = {
42 {
43 .id = V4L2_CID_AUDIO_MUTE,
44 .name = "Mute",
45 .minimum = 0,
46 .maximum = 1,
47 .default_value = 1,
48 .type = V4L2_CTRL_TYPE_BOOLEAN,
49 },{
50 .id = V4L2_CID_AUDIO_VOLUME,
51 .name = "Volume",
52 .minimum = 0,
53 .maximum = 0xff,
54 .step = 1,
55 .default_value = 0xff,
56 .type = V4L2_CTRL_TYPE_INTEGER,
57 }
58};
59
Linus Torvalds1da177e2005-04-16 15:20:36 -070060/* acceptable ports: 0x350 (JP3 shorted), 0x358 (JP3 open) */
61
62#ifndef CONFIG_RADIO_AZTECH_PORT
63#define CONFIG_RADIO_AZTECH_PORT -1
64#endif
65
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -030066static int io = CONFIG_RADIO_AZTECH_PORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067static int radio_nr = -1;
68static int radio_wait_time = 1000;
Ingo Molnar3593cab2006-02-07 06:49:14 -020069static struct mutex lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
71struct az_device
72{
73 int curvol;
74 unsigned long curfreq;
75 int stereo;
76};
77
78static int volconvert(int level)
79{
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -030080 level>>=14; /* Map 16bits down to 2 bit */
81 level&=3;
82
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 /* convert to card-friendly values */
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -030084 switch (level)
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 {
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -030086 case 0:
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 return 0;
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -030088 case 1:
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 return 1;
90 case 2:
91 return 4;
92 case 3:
93 return 5;
94 }
95 return 0; /* Quieten gcc */
96}
97
98static void send_0_byte (struct az_device *dev)
99{
100 udelay(radio_wait_time);
101 outb_p(2+volconvert(dev->curvol), io);
102 outb_p(64+2+volconvert(dev->curvol), io);
103}
104
105static void send_1_byte (struct az_device *dev)
106{
107 udelay (radio_wait_time);
108 outb_p(128+2+volconvert(dev->curvol), io);
109 outb_p(128+64+2+volconvert(dev->curvol), io);
110}
111
112static int az_setvol(struct az_device *dev, int vol)
113{
Ingo Molnar3593cab2006-02-07 06:49:14 -0200114 mutex_lock(&lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 outb (volconvert(vol), io);
Ingo Molnar3593cab2006-02-07 06:49:14 -0200116 mutex_unlock(&lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 return 0;
118}
119
120/* thanks to Michael Dwyer for giving me a dose of clues in
121 * the signal strength department..
122 *
123 * This card has a stereo bit - bit 0 set = mono, not set = stereo
124 * It also has a "signal" bit - bit 1 set = bad signal, not set = good
125 *
126 */
127
128static int az_getsigstr(struct az_device *dev)
129{
130 if (inb(io) & 2) /* bit set = no signal present */
131 return 0;
132 return 1; /* signal present */
133}
134
135static int az_getstereo(struct az_device *dev)
136{
137 if (inb(io) & 1) /* bit set = mono */
138 return 0;
139 return 1; /* stereo */
140}
141
142static int az_setfreq(struct az_device *dev, unsigned long frequency)
143{
144 int i;
145
146 frequency += 171200; /* Add 10.7 MHz IF */
147 frequency /= 800; /* Convert to 50 kHz units */
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -0300148
Ingo Molnar3593cab2006-02-07 06:49:14 -0200149 mutex_lock(&lock);
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -0300150
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 send_0_byte (dev); /* 0: LSB of frequency */
152
153 for (i = 0; i < 13; i++) /* : frequency bits (1-13) */
154 if (frequency & (1 << i))
155 send_1_byte (dev);
156 else
157 send_0_byte (dev);
158
159 send_0_byte (dev); /* 14: test bit - always 0 */
160 send_0_byte (dev); /* 15: test bit - always 0 */
161 send_0_byte (dev); /* 16: band data 0 - always 0 */
162 if (dev->stereo) /* 17: stereo (1 to enable) */
163 send_1_byte (dev);
164 else
165 send_0_byte (dev);
166
167 send_1_byte (dev); /* 18: band data 1 - unknown */
168 send_0_byte (dev); /* 19: time base - always 0 */
169 send_0_byte (dev); /* 20: spacing (0 = 25 kHz) */
170 send_1_byte (dev); /* 21: spacing (1 = 25 kHz) */
171 send_0_byte (dev); /* 22: spacing (0 = 25 kHz) */
172 send_1_byte (dev); /* 23: AM/FM (FM = 1, always) */
173
174 /* latch frequency */
175
176 udelay (radio_wait_time);
177 outb_p(128+64+volconvert(dev->curvol), io);
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -0300178
Ingo Molnar3593cab2006-02-07 06:49:14 -0200179 mutex_unlock(&lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
181 return 0;
182}
183
Mauro Carvalho Chehab99218fe2007-01-25 08:09:32 -0300184static int vidioc_querycap (struct file *file, void *priv,
185 struct v4l2_capability *v)
186{
187 strlcpy(v->driver, "radio-aztech", sizeof (v->driver));
188 strlcpy(v->card, "Aztech Radio", sizeof (v->card));
189 sprintf(v->bus_info,"ISA");
190 v->version = RADIO_VERSION;
191 v->capabilities = V4L2_CAP_TUNER;
192 return 0;
193}
194
195static int vidioc_g_tuner (struct file *file, void *priv,
196 struct v4l2_tuner *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197{
198 struct video_device *dev = video_devdata(file);
199 struct az_device *az = dev->priv;
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -0300200
Mauro Carvalho Chehab99218fe2007-01-25 08:09:32 -0300201 if (v->index > 0)
202 return -EINVAL;
Mauro Carvalho Chehaba4366af2006-08-08 09:10:01 -0300203
Mauro Carvalho Chehab99218fe2007-01-25 08:09:32 -0300204 strcpy(v->name, "FM");
205 v->type = V4L2_TUNER_RADIO;
Mauro Carvalho Chehaba4366af2006-08-08 09:10:01 -0300206
Mauro Carvalho Chehab99218fe2007-01-25 08:09:32 -0300207 v->rangelow=(87*16000);
208 v->rangehigh=(108*16000);
209 v->rxsubchans =V4L2_TUNER_SUB_MONO|V4L2_TUNER_SUB_STEREO;
210 v->capability=V4L2_TUNER_CAP_LOW;
211 if(az_getstereo(az))
212 v->audmode = V4L2_TUNER_MODE_STEREO;
213 else
214 v->audmode = V4L2_TUNER_MODE_MONO;
215 v->signal=0xFFFF*az_getsigstr(az);
Mauro Carvalho Chehaba4366af2006-08-08 09:10:01 -0300216
Mauro Carvalho Chehab99218fe2007-01-25 08:09:32 -0300217 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218}
219
Mauro Carvalho Chehab99218fe2007-01-25 08:09:32 -0300220
221static int vidioc_s_tuner (struct file *file, void *priv,
222 struct v4l2_tuner *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223{
Mauro Carvalho Chehab99218fe2007-01-25 08:09:32 -0300224 if (v->index > 0)
225 return -EINVAL;
226
227 return 0;
228}
229
Mauro Carvalho Chehab676b0ac2007-01-25 15:10:31 -0300230static int vidioc_g_audio (struct file *file, void *priv,
231 struct v4l2_audio *a)
232{
233 if (a->index > 1)
234 return -EINVAL;
235
236 strcpy(a->name, "Radio");
237 a->capability = V4L2_AUDCAP_STEREO;
238 return 0;
239}
240
Mauro Carvalho Chehaba0c05ab2007-01-25 16:48:13 -0300241static int vidioc_g_input(struct file *filp, void *priv, unsigned int *i)
242{
243 *i = 0;
244 return 0;
245}
246
247static int vidioc_s_input(struct file *filp, void *priv, unsigned int i)
248{
249 if (i != 0)
250 return -EINVAL;
251 return 0;
252}
253
254
Mauro Carvalho Chehab676b0ac2007-01-25 15:10:31 -0300255static int vidioc_s_audio (struct file *file, void *priv,
256 struct v4l2_audio *a)
257{
258 if (a->index != 0)
259 return -EINVAL;
260
261 return 0;
262}
263
Mauro Carvalho Chehab99218fe2007-01-25 08:09:32 -0300264static int vidioc_s_frequency (struct file *file, void *priv,
265 struct v4l2_frequency *f)
266{
267 struct video_device *dev = video_devdata(file);
268 struct az_device *az = dev->priv;
269
270 az->curfreq = f->frequency;
271 az_setfreq(az, az->curfreq);
272 return 0;
273}
274
275static int vidioc_g_frequency (struct file *file, void *priv,
276 struct v4l2_frequency *f)
277{
278 struct video_device *dev = video_devdata(file);
279 struct az_device *az = dev->priv;
280
281 f->type = V4L2_TUNER_RADIO;
282 f->frequency = az->curfreq;
283
284 return 0;
285}
286
287static int vidioc_queryctrl (struct file *file, void *priv,
288 struct v4l2_queryctrl *qc)
289{
290 int i;
291
292 for (i = 0; i < ARRAY_SIZE(radio_qctrl); i++) {
293 if (qc->id && qc->id == radio_qctrl[i].id) {
294 memcpy(qc, &(radio_qctrl[i]),
295 sizeof(*qc));
296 return (0);
297 }
298 }
299 return -EINVAL;
300}
301
302static int vidioc_g_ctrl (struct file *file, void *priv,
303 struct v4l2_control *ctrl)
304{
305 struct video_device *dev = video_devdata(file);
306 struct az_device *az = dev->priv;
307
308 switch (ctrl->id) {
309 case V4L2_CID_AUDIO_MUTE:
310 if (az->curvol==0)
311 ctrl->value=1;
312 else
313 ctrl->value=0;
314 return (0);
315 case V4L2_CID_AUDIO_VOLUME:
316 ctrl->value=az->curvol * 6554;
317 return (0);
318 }
319 return -EINVAL;
320}
321
322static int vidioc_s_ctrl (struct file *file, void *priv,
323 struct v4l2_control *ctrl)
324{
325 struct video_device *dev = video_devdata(file);
326 struct az_device *az = dev->priv;
327
328 switch (ctrl->id) {
329 case V4L2_CID_AUDIO_MUTE:
330 if (ctrl->value) {
331 az_setvol(az,0);
332 } else {
333 az_setvol(az,az->curvol);
334 }
335 return (0);
336 case V4L2_CID_AUDIO_VOLUME:
337 az_setvol(az,ctrl->value);
338 return (0);
339 }
340 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341}
342
343static struct az_device aztech_unit;
344
Arjan van de Venfa027c22007-02-12 00:55:33 -0800345static const struct file_operations aztech_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 .owner = THIS_MODULE,
347 .open = video_exclusive_open,
348 .release = video_exclusive_release,
Mauro Carvalho Chehab99218fe2007-01-25 08:09:32 -0300349 .ioctl = video_ioctl2,
Douglas Schilling Landgraf078ff792008-04-22 14:46:11 -0300350#ifdef CONFIG_COMPAT
Arnd Bergmann0d0fbf82006-01-09 15:24:57 -0200351 .compat_ioctl = v4l_compat_ioctl32,
Douglas Schilling Landgraf078ff792008-04-22 14:46:11 -0300352#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 .llseek = no_llseek,
354};
355
356static struct video_device aztech_radio=
357{
Mauro Carvalho Chehab99218fe2007-01-25 08:09:32 -0300358 .owner = THIS_MODULE,
359 .name = "Aztech radio",
360 .type = VID_TYPE_TUNER,
Mauro Carvalho Chehab99218fe2007-01-25 08:09:32 -0300361 .fops = &aztech_fops,
362 .vidioc_querycap = vidioc_querycap,
363 .vidioc_g_tuner = vidioc_g_tuner,
364 .vidioc_s_tuner = vidioc_s_tuner,
Mauro Carvalho Chehab676b0ac2007-01-25 15:10:31 -0300365 .vidioc_g_audio = vidioc_g_audio,
366 .vidioc_s_audio = vidioc_s_audio,
Mauro Carvalho Chehaba0c05ab2007-01-25 16:48:13 -0300367 .vidioc_g_input = vidioc_g_input,
368 .vidioc_s_input = vidioc_s_input,
Mauro Carvalho Chehab99218fe2007-01-25 08:09:32 -0300369 .vidioc_g_frequency = vidioc_g_frequency,
370 .vidioc_s_frequency = vidioc_s_frequency,
371 .vidioc_queryctrl = vidioc_queryctrl,
372 .vidioc_g_ctrl = vidioc_g_ctrl,
373 .vidioc_s_ctrl = vidioc_s_ctrl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374};
375
Mauro Carvalho Chehab99218fe2007-01-25 08:09:32 -0300376module_param_named(debug,aztech_radio.debug, int, 0644);
377MODULE_PARM_DESC(debug,"activates debug info");
378
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379static int __init aztech_init(void)
380{
381 if(io==-1)
382 {
383 printk(KERN_ERR "You must set an I/O address with io=0x???\n");
384 return -EINVAL;
385 }
386
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -0300387 if (!request_region(io, 2, "aztech"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 {
389 printk(KERN_ERR "aztech: port 0x%x already in use\n", io);
390 return -EBUSY;
391 }
392
Ingo Molnar3593cab2006-02-07 06:49:14 -0200393 mutex_init(&lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 aztech_radio.priv=&aztech_unit;
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -0300395
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 if(video_register_device(&aztech_radio, VFL_TYPE_RADIO, radio_nr)==-1)
397 {
398 release_region(io,2);
399 return -EINVAL;
400 }
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -0300401
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 printk(KERN_INFO "Aztech radio card driver v1.00/19990224 rkroll@exploits.org\n");
403 /* mute card - prevents noisy bootups */
404 outb (0, io);
405 return 0;
406}
407
408MODULE_AUTHOR("Russell Kroll, Quay Lu, Donald Song, Jason Lewis, Scott McGrath, William McGrath");
409MODULE_DESCRIPTION("A driver for the Aztech radio card.");
410MODULE_LICENSE("GPL");
411
412module_param(io, int, 0);
413module_param(radio_nr, int, 0);
414MODULE_PARM_DESC(io, "I/O address of the Aztech card (0x350 or 0x358)");
415
416static void __exit aztech_cleanup(void)
417{
418 video_unregister_device(&aztech_radio);
419 release_region(io,2);
420}
421
422module_init(aztech_init);
423module_exit(aztech_cleanup);