radio-aimslab.c 10.9 KB
Newer Older
L
Linus Torvalds 已提交
1 2
/* radiotrack (radioreveal) driver for Linux radio support
 * (c) 1997 M. Kirkwood
3
 * Converted to V4L2 API by Mauro Carvalho Chehab <mchehab@infradead.org>
4
 * Converted to new API by Alan Cox <alan@lxorguk.ukuu.org.uk>
L
Linus Torvalds 已提交
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
 * Various bugfixes and enhancements by Russell Kroll <rkroll@exploits.org>
 *
 * History:
 * 1999-02-24	Russell Kroll <rkroll@exploits.org>
 * 		Fine tuning/VIDEO_TUNER_LOW
 *		Frequency range expanded to start at 87 MHz
 *
 * TODO: Allow for more than one of these foolish entities :-)
 *
 * Notes on the hardware (reverse engineered from other peoples'
 * reverse engineering of AIMS' code :-)
 *
 *  Frequency control is done digitally -- ie out(port,encodefreq(95.8));
 *
 *  The signal strength query is unsurprisingly inaccurate.  And it seems
 *  to indicate that (on my card, at least) the frequency setting isn't
 *  too great.  (I have to tune up .025MHz from what the freq should be
 *  to get a report that the thing is tuned.)
 *
 *  Volume control is (ugh) analogue:
 *   out(port, start_increasing_volume);
 *   wait(a_wee_while);
 *   out(port, stop_changing_the_volume);
28
 *
L
Linus Torvalds 已提交
29 30 31 32
 */

#include <linux/module.h>	/* Modules 			*/
#include <linux/init.h>		/* Initdata			*/
33
#include <linux/ioport.h>	/* request_region		*/
L
Linus Torvalds 已提交
34
#include <linux/delay.h>	/* udelay			*/
35
#include <linux/videodev2.h>	/* kernel radio structs		*/
36 37 38
#include <linux/version.h>	/* for KERNEL_VERSION MACRO	*/
#include <linux/io.h>		/* outb, outb_p			*/
#include <media/v4l2-device.h>
39
#include <media/v4l2-ioctl.h>
L
Linus Torvalds 已提交
40

41 42 43
MODULE_AUTHOR("M.Kirkwood");
MODULE_DESCRIPTION("A driver for the RadioTrack/RadioReveal radio card.");
MODULE_LICENSE("GPL");
44

L
Linus Torvalds 已提交
45 46 47 48
#ifndef CONFIG_RADIO_RTRACK_PORT
#define CONFIG_RADIO_RTRACK_PORT -1
#endif

49
static int io = CONFIG_RADIO_RTRACK_PORT;
L
Linus Torvalds 已提交
50 51
static int radio_nr = -1;

52 53 54 55 56 57 58
module_param(io, int, 0);
MODULE_PARM_DESC(io, "I/O address of the RadioTrack card (0x20f or 0x30f)");
module_param(radio_nr, int, 0);

#define RADIO_VERSION KERNEL_VERSION(0, 0, 2)

struct rtrack
L
Linus Torvalds 已提交
59
{
60 61
	struct v4l2_device v4l2_dev;
	struct video_device vdev;
L
Linus Torvalds 已提交
62 63 64 65
	int port;
	int curvol;
	unsigned long curfreq;
	int muted;
66 67
	int io;
	struct mutex lock;
L
Linus Torvalds 已提交
68 69
};

70
static struct rtrack rtrack_card;
L
Linus Torvalds 已提交
71 72 73 74 75 76

/* local things */

static void sleep_delay(long n)
{
	/* Sleep nicely for 'n' uS */
77 78
	int d = n / msecs_to_jiffies(1000);
	if (!d)
L
Linus Torvalds 已提交
79 80 81 82 83
		udelay(n);
	else
		msleep(jiffies_to_msecs(d));
}

84
static void rt_decvol(struct rtrack *rt)
L
Linus Torvalds 已提交
85
{
86
	outb(0x58, rt->io);		/* volume down + sigstr + on	*/
L
Linus Torvalds 已提交
87
	sleep_delay(100000);
88
	outb(0xd8, rt->io);		/* volume steady + sigstr + on	*/
L
Linus Torvalds 已提交
89 90
}

91
static void rt_incvol(struct rtrack *rt)
L
Linus Torvalds 已提交
92
{
93
	outb(0x98, rt->io);		/* volume up + sigstr + on	*/
L
Linus Torvalds 已提交
94
	sleep_delay(100000);
95
	outb(0xd8, rt->io);		/* volume steady + sigstr + on	*/
L
Linus Torvalds 已提交
96 97
}

98
static void rt_mute(struct rtrack *rt)
L
Linus Torvalds 已提交
99
{
100 101 102 103
	rt->muted = 1;
	mutex_lock(&rt->lock);
	outb(0xd0, rt->io);		/* volume steady, off		*/
	mutex_unlock(&rt->lock);
L
Linus Torvalds 已提交
104 105
}

106
static int rt_setvol(struct rtrack *rt, int vol)
L
Linus Torvalds 已提交
107 108 109
{
	int i;

110
	mutex_lock(&rt->lock);
111

112 113 114 115
	if (vol == rt->curvol) {	/* requested volume = current */
		if (rt->muted) {	/* user is unmuting the card  */
			rt->muted = 0;
			outb(0xd8, rt->io);	/* enable card */
116
		}
117
		mutex_unlock(&rt->lock);
L
Linus Torvalds 已提交
118 119 120
		return 0;
	}

121 122
	if (vol == 0) {			/* volume = 0 means mute the card */
		outb(0x48, rt->io);	/* volume down but still "on"	*/
L
Linus Torvalds 已提交
123
		sleep_delay(2000000);	/* make sure it's totally down	*/
124 125 126
		outb(0xd0, rt->io);	/* volume steady, off		*/
		rt->curvol = 0;		/* track the volume state!	*/
		mutex_unlock(&rt->lock);
L
Linus Torvalds 已提交
127 128 129
		return 0;
	}

130 131 132 133
	rt->muted = 0;
	if (vol > rt->curvol)
		for (i = rt->curvol; i < vol; i++)
			rt_incvol(rt);
L
Linus Torvalds 已提交
134
	else
135 136
		for (i = rt->curvol; i > vol; i--)
			rt_decvol(rt);
L
Linus Torvalds 已提交
137

138 139
	rt->curvol = vol;
	mutex_unlock(&rt->lock);
L
Linus Torvalds 已提交
140 141 142
	return 0;
}

143
/* the 128+64 on these outb's is to keep the volume stable while tuning
L
Linus Torvalds 已提交
144 145 146 147
 * without them, the volume _will_ creep up with each frequency change
 * and bit 4 (+16) is to keep the signal strength meter enabled
 */

148
static void send_0_byte(struct rtrack *rt)
L
Linus Torvalds 已提交
149
{
150 151 152
	if (rt->curvol == 0 || rt->muted) {
		outb_p(128+64+16+  1, rt->io);   /* wr-enable + data low */
		outb_p(128+64+16+2+1, rt->io);   /* clock */
L
Linus Torvalds 已提交
153 154
	}
	else {
155 156
		outb_p(128+64+16+8+  1, rt->io);  /* on + wr-enable + data low */
		outb_p(128+64+16+8+2+1, rt->io);  /* clock */
L
Linus Torvalds 已提交
157
	}
158
	sleep_delay(1000);
L
Linus Torvalds 已提交
159 160
}

161
static void send_1_byte(struct rtrack *rt)
L
Linus Torvalds 已提交
162
{
163 164 165
	if (rt->curvol == 0 || rt->muted) {
		outb_p(128+64+16+4  +1, rt->io);   /* wr-enable+data high */
		outb_p(128+64+16+4+2+1, rt->io);   /* clock */
166
	}
L
Linus Torvalds 已提交
167
	else {
168 169
		outb_p(128+64+16+8+4  +1, rt->io); /* on+wr-enable+data high */
		outb_p(128+64+16+8+4+2+1, rt->io); /* clock */
L
Linus Torvalds 已提交
170 171
	}

172
	sleep_delay(1000);
L
Linus Torvalds 已提交
173 174
}

175
static int rt_setfreq(struct rtrack *rt, unsigned long freq)
L
Linus Torvalds 已提交
176 177 178
{
	int i;

179 180 181
	mutex_lock(&rt->lock);			/* Stop other ops interfering */

	rt->curfreq = freq;
L
Linus Torvalds 已提交
182 183 184 185 186

	/* now uses VIDEO_TUNER_LOW for fine tuning */

	freq += 171200;			/* Add 10.7 MHz IF 		*/
	freq /= 800;			/* Convert to 50 kHz units	*/
187

188
	send_0_byte(rt);		/*  0: LSB of frequency		*/
L
Linus Torvalds 已提交
189 190 191

	for (i = 0; i < 13; i++)	/*   : frequency bits (1-13)	*/
		if (freq & (1 << i))
192
			send_1_byte(rt);
L
Linus Torvalds 已提交
193
		else
194
			send_0_byte(rt);
L
Linus Torvalds 已提交
195

196 197
	send_0_byte(rt);		/* 14: test bit - always 0    */
	send_0_byte(rt);		/* 15: test bit - always 0    */
L
Linus Torvalds 已提交
198

199 200 201 202
	send_0_byte(rt);		/* 16: band data 0 - always 0 */
	send_0_byte(rt);		/* 17: band data 1 - always 0 */
	send_0_byte(rt);		/* 18: band data 2 - always 0 */
	send_0_byte(rt);		/* 19: time base - always 0   */
L
Linus Torvalds 已提交
203

204 205 206 207
	send_0_byte(rt);		/* 20: spacing (0 = 25 kHz)   */
	send_1_byte(rt);		/* 21: spacing (1 = 25 kHz)   */
	send_0_byte(rt);		/* 22: spacing (0 = 25 kHz)   */
	send_1_byte(rt);		/* 23: AM/FM (FM = 1, always) */
L
Linus Torvalds 已提交
208

209 210
	if (rt->curvol == 0 || rt->muted)
		outb(0xd0, rt->io);	/* volume steady + sigstr */
L
Linus Torvalds 已提交
211
	else
212
		outb(0xd8, rt->io);	/* volume steady + sigstr + on */
213

214
	mutex_unlock(&rt->lock);
L
Linus Torvalds 已提交
215 216 217 218

	return 0;
}

219
static int rt_getsigstr(struct rtrack *rt)
L
Linus Torvalds 已提交
220
{
221
	int sig = 1;
L
Linus Torvalds 已提交
222

223 224 225 226 227 228
	mutex_lock(&rt->lock);
	if (inb(rt->io) & 2)	/* bit set = no signal present	*/
		sig = 0;
	mutex_unlock(&rt->lock);
	return sig;
}
229

230 231 232 233 234
static int vidioc_querycap(struct file *file, void  *priv,
					struct v4l2_capability *v)
{
	strlcpy(v->driver, "radio-aimslab", sizeof(v->driver));
	strlcpy(v->card, "RadioTrack", sizeof(v->card));
235
	strlcpy(v->bus_info, "ISA", sizeof(v->bus_info));
236
	v->version = RADIO_VERSION;
237
	v->capabilities = V4L2_CAP_TUNER | V4L2_CAP_RADIO;
238 239 240 241 242
	return 0;
}

static int vidioc_g_tuner(struct file *file, void *priv,
					struct v4l2_tuner *v)
L
Linus Torvalds 已提交
243
{
244
	struct rtrack *rt = video_drvdata(file);
245

246 247
	if (v->index > 0)
		return -EINVAL;
248

249
	strlcpy(v->name, "FM", sizeof(v->name));
250
	v->type = V4L2_TUNER_RADIO;
251 252
	v->rangelow = 87 * 16000;
	v->rangehigh = 108 * 16000;
253 254 255
	v->rxsubchans = V4L2_TUNER_SUB_MONO;
	v->capability = V4L2_TUNER_CAP_LOW;
	v->audmode = V4L2_TUNER_MODE_MONO;
256
	v->signal = 0xffff * rt_getsigstr(rt);
257 258 259 260 261 262
	return 0;
}

static int vidioc_s_tuner(struct file *file, void *priv,
					struct v4l2_tuner *v)
{
263
	return v->index ? -EINVAL : 0;
264
}
265

266 267 268
static int vidioc_s_frequency(struct file *file, void *priv,
					struct v4l2_frequency *f)
{
269
	struct rtrack *rt = video_drvdata(file);
270

271 272
	if (f->tuner != 0 || f->type != V4L2_TUNER_RADIO)
		return -EINVAL;
273
	rt_setfreq(rt, f->frequency);
274 275
	return 0;
}
276

277 278 279
static int vidioc_g_frequency(struct file *file, void *priv,
					struct v4l2_frequency *f)
{
280
	struct rtrack *rt = video_drvdata(file);
281

282 283
	if (f->tuner != 0)
		return -EINVAL;
284 285 286 287
	f->type = V4L2_TUNER_RADIO;
	f->frequency = rt->curfreq;
	return 0;
}
288

289 290 291
static int vidioc_queryctrl(struct file *file, void *priv,
					struct v4l2_queryctrl *qc)
{
292 293 294 295 296
	switch (qc->id) {
	case V4L2_CID_AUDIO_MUTE:
		return v4l2_ctrl_query_fill(qc, 0, 1, 1, 1);
	case V4L2_CID_AUDIO_VOLUME:
		return v4l2_ctrl_query_fill(qc, 0, 0xff, 1, 0xff);
297 298 299
	}
	return -EINVAL;
}
300

301 302 303
static int vidioc_g_ctrl(struct file *file, void *priv,
					struct v4l2_control *ctrl)
{
304
	struct rtrack *rt = video_drvdata(file);
305

306 307 308 309 310
	switch (ctrl->id) {
	case V4L2_CID_AUDIO_MUTE:
		ctrl->value = rt->muted;
		return 0;
	case V4L2_CID_AUDIO_VOLUME:
311
		ctrl->value = rt->curvol;
312 313 314 315
		return 0;
	}
	return -EINVAL;
}
316

317 318 319
static int vidioc_s_ctrl(struct file *file, void *priv,
					struct v4l2_control *ctrl)
{
320
	struct rtrack *rt = video_drvdata(file);
321

322 323 324 325 326
	switch (ctrl->id) {
	case V4L2_CID_AUDIO_MUTE:
		if (ctrl->value)
			rt_mute(rt);
		else
327
			rt_setvol(rt, rt->curvol);
328 329
		return 0;
	case V4L2_CID_AUDIO_VOLUME:
330
		rt_setvol(rt, ctrl->value);
331
		return 0;
L
Linus Torvalds 已提交
332
	}
333 334 335 336 337 338 339 340 341 342 343
	return -EINVAL;
}

static int vidioc_g_input(struct file *filp, void *priv, unsigned int *i)
{
	*i = 0;
	return 0;
}

static int vidioc_s_input(struct file *filp, void *priv, unsigned int i)
{
344
	return i ? -EINVAL : 0;
L
Linus Torvalds 已提交
345 346
}

347
static int vidioc_g_audio(struct file *file, void *priv,
348
					struct v4l2_audio *a)
L
Linus Torvalds 已提交
349
{
350 351 352
	a->index = 0;
	strlcpy(a->name, "Radio", sizeof(a->name));
	a->capability = V4L2_AUDCAP_STEREO;
353
	return 0;
L
Linus Torvalds 已提交
354 355
}

356 357 358 359 360
static int vidioc_s_audio(struct file *file, void *priv,
					struct v4l2_audio *a)
{
	return a->index ? -EINVAL : 0;
}
L
Linus Torvalds 已提交
361

362
static const struct v4l2_file_operations rtrack_fops = {
L
Linus Torvalds 已提交
363
	.owner		= THIS_MODULE,
364
	.ioctl		= video_ioctl2,
L
Linus Torvalds 已提交
365 366
};

367
static const struct v4l2_ioctl_ops rtrack_ioctl_ops = {
368 369 370 371 372 373 374 375 376 377 378 379
	.vidioc_querycap    = vidioc_querycap,
	.vidioc_g_tuner     = vidioc_g_tuner,
	.vidioc_s_tuner     = vidioc_s_tuner,
	.vidioc_g_audio     = vidioc_g_audio,
	.vidioc_s_audio     = vidioc_s_audio,
	.vidioc_g_input     = vidioc_g_input,
	.vidioc_s_input     = vidioc_s_input,
	.vidioc_g_frequency = vidioc_g_frequency,
	.vidioc_s_frequency = vidioc_s_frequency,
	.vidioc_queryctrl   = vidioc_queryctrl,
	.vidioc_g_ctrl      = vidioc_g_ctrl,
	.vidioc_s_ctrl      = vidioc_s_ctrl,
L
Linus Torvalds 已提交
380 381 382 383
};

static int __init rtrack_init(void)
{
384 385 386 387 388 389 390 391
	struct rtrack *rt = &rtrack_card;
	struct v4l2_device *v4l2_dev = &rt->v4l2_dev;
	int res;

	strlcpy(v4l2_dev->name, "rtrack", sizeof(v4l2_dev->name));
	rt->io = io;

	if (rt->io == -1) {
392
		v4l2_err(v4l2_dev, "you must set an I/O address with io=0x20f or 0x30f\n");
L
Linus Torvalds 已提交
393 394 395
		return -EINVAL;
	}

396 397
	if (!request_region(rt->io, 2, "rtrack")) {
		v4l2_err(v4l2_dev, "port 0x%x already in use\n", rt->io);
L
Linus Torvalds 已提交
398 399 400
		return -EBUSY;
	}

401 402 403 404 405 406
	res = v4l2_device_register(NULL, v4l2_dev);
	if (res < 0) {
		release_region(rt->io, 2);
		v4l2_err(v4l2_dev, "could not register v4l2_device\n");
		return res;
	}
407

408 409 410 411 412 413 414 415 416 417
	strlcpy(rt->vdev.name, v4l2_dev->name, sizeof(rt->vdev.name));
	rt->vdev.v4l2_dev = v4l2_dev;
	rt->vdev.fops = &rtrack_fops;
	rt->vdev.ioctl_ops = &rtrack_ioctl_ops;
	rt->vdev.release = video_device_release_empty;
	video_set_drvdata(&rt->vdev, rt);

	if (video_register_device(&rt->vdev, VFL_TYPE_RADIO, radio_nr) < 0) {
		v4l2_device_unregister(&rt->v4l2_dev);
		release_region(rt->io, 2);
L
Linus Torvalds 已提交
418 419
		return -EINVAL;
	}
420
	v4l2_info(v4l2_dev, "AIMSlab RadioTrack/RadioReveal card driver.\n");
L
Linus Torvalds 已提交
421 422

	/* Set up the I/O locking */
423

424
	mutex_init(&rt->lock);
425 426

	/* mute card - prevents noisy bootups */
L
Linus Torvalds 已提交
427 428

	/* this ensures that the volume is all the way down  */
429
	outb(0x48, rt->io);		/* volume down but still "on"	*/
L
Linus Torvalds 已提交
430
	sleep_delay(2000000);	/* make sure it's totally down	*/
431
	outb(0xc0, rt->io);		/* steady volume, mute card	*/
L
Linus Torvalds 已提交
432 433 434 435

	return 0;
}

436
static void __exit rtrack_exit(void)
L
Linus Torvalds 已提交
437
{
438 439 440 441 442
	struct rtrack *rt = &rtrack_card;

	video_unregister_device(&rt->vdev);
	v4l2_device_unregister(&rt->v4l2_dev);
	release_region(rt->io, 2);
L
Linus Torvalds 已提交
443 444 445
}

module_init(rtrack_init);
446
module_exit(rtrack_exit);
L
Linus Torvalds 已提交
447