radio-cadet.c 13.3 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10
/* radio-cadet.c - A video4linux driver for the ADS Cadet AM/FM Radio Card
 *
 * by Fred Gleason <fredg@wava.com>
 * Version 0.3.3
 *
 * (Loosely) based on code for the Aztech radio card by
 *
 * Russell Kroll    (rkroll@exploits.org)
 * Quay Ly
 * Donald Song
11
 * Jason Lewis      (jlewis@twilight.vtc.vsc.edu)
L
Linus Torvalds 已提交
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
 * Scott McGrath    (smcgrath@twilight.vtc.vsc.edu)
 * William McGrath  (wmcgrath@twilight.vtc.vsc.edu)
 *
 * History:
 * 2000-04-29	Russell Kroll <rkroll@exploits.org>
 *		Added ISAPnP detection for Linux 2.3/2.4
 *
 * 2001-01-10	Russell Kroll <rkroll@exploits.org>
 *		Removed dead CONFIG_RADIO_CADET_PORT code
 *		PnP detection on load is now default (no args necessary)
 *
 * 2002-01-17	Adam Belay <ambx1@neo.rr.com>
 *		Updated to latest pnp code
 *
 * 2003-01-31	Alan Cox <alan@redhat.com>
 *		Cleaned up locking, delay code, general odds and ends
28 29 30
 *
 * 2006-07-30	Hans J. Koch <koch@hjk-az.de>
 *		Changed API to V4L2
L
Linus Torvalds 已提交
31 32 33 34
 */

#include <linux/module.h>	/* Modules 			*/
#include <linux/init.h>		/* Initdata			*/
35
#include <linux/ioport.h>	/* request_region		*/
L
Linus Torvalds 已提交
36 37 38
#include <linux/delay.h>	/* udelay			*/
#include <asm/io.h>		/* outb, outb_p			*/
#include <asm/uaccess.h>	/* copy to/from user		*/
39
#include <linux/videodev2.h>	/* V4L2 API defs		*/
40
#include <media/v4l2-common.h>
L
Linus Torvalds 已提交
41 42 43 44
#include <linux/param.h>
#include <linux/pnp.h>

#define RDS_BUFFER 256
45 46 47 48
#define RDS_RX_FLAG 1
#define MBS_RX_FLAG 2

#define CADET_VERSION KERNEL_VERSION(0,3,3)
L
Linus Torvalds 已提交
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65

static int io=-1;		/* default to isapnp activation */
static int radio_nr = -1;
static int users=0;
static int curtuner=0;
static int tunestat=0;
static int sigstrength=0;
static wait_queue_head_t read_queue;
static struct timer_list readtimer;
static __u8 rdsin=0,rdsout=0,rdsstat=0;
static unsigned char rdsbuf[RDS_BUFFER];
static spinlock_t cadet_io_lock;

static int cadet_probe(void);

/*
 * Signal Strength Threshold Values
66
 * The V4L API spec does not define any particular unit for the signal
L
Linus Torvalds 已提交
67 68 69 70 71
 * strength value.  These values are in microvolts of RF at the tuner's input.
 */
static __u16 sigtable[2][4]={{5,10,30,150},{28,40,63,1000}};


72 73
static int
cadet_getstereo(void)
L
Linus Torvalds 已提交
74
{
75
	int ret = V4L2_TUNER_SUB_MONO;
76
	if(curtuner != 0)	/* Only FM has stereo capability! */
77
		return V4L2_TUNER_SUB_MONO;
L
Linus Torvalds 已提交
78 79

	spin_lock(&cadet_io_lock);
80
	outb(7,io);          /* Select tuner control */
L
Linus Torvalds 已提交
81
	if( (inb(io+1) & 0x40) == 0)
82
		ret = V4L2_TUNER_SUB_STEREO;
83 84
	spin_unlock(&cadet_io_lock);
	return ret;
L
Linus Torvalds 已提交
85 86
}

87 88
static unsigned
cadet_gettune(void)
L
Linus Torvalds 已提交
89
{
90
	int curvol,i;
L
Linus Torvalds 已提交
91 92
	unsigned fifo=0;

93 94 95
	/*
	 * Prepare for read
	 */
L
Linus Torvalds 已提交
96 97

	spin_lock(&cadet_io_lock);
98 99 100 101

	outb(7,io);       /* Select tuner control */
	curvol=inb(io+1); /* Save current volume/mute setting */
	outb(0x00,io+1);  /* Ensure WRITE-ENABLE is LOW */
L
Linus Torvalds 已提交
102 103
	tunestat=0xffff;

104 105 106 107 108 109 110
	/*
	 * Read the shift register
	 */
	for(i=0;i<25;i++) {
		fifo=(fifo<<1)|((inb(io+1)>>7)&0x01);
		if(i<24) {
			outb(0x01,io+1);
L
Linus Torvalds 已提交
111
			tunestat&=inb(io+1);
112 113 114 115 116 117 118 119
			outb(0x00,io+1);
		}
	}

	/*
	 * Restore volume/mute setting
	 */
	outb(curvol,io+1);
L
Linus Torvalds 已提交
120 121 122 123 124
	spin_unlock(&cadet_io_lock);

	return fifo;
}

125 126
static unsigned
cadet_getfreq(void)
L
Linus Torvalds 已提交
127
{
128 129
	int i;
	unsigned freq=0,test,fifo=0;
L
Linus Torvalds 已提交
130 131 132 133 134 135

	/*
	 * Read current tuning
	 */
	fifo=cadet_gettune();

136 137 138
	/*
	 * Convert to actual frequency
	 */
L
Linus Torvalds 已提交
139
	if(curtuner==0) {    /* FM */
140 141 142 143 144 145 146 147 148 149
		test=12500;
		for(i=0;i<14;i++) {
			if((fifo&0x01)!=0) {
				freq+=test;
			}
			test=test<<1;
			fifo=fifo>>1;
		}
		freq-=10700000;           /* IF frequency is 10.7 MHz */
		freq=(freq*16)/1000000;   /* Make it 1/16 MHz */
L
Linus Torvalds 已提交
150 151
	}
	if(curtuner==1) {    /* AM */
152
		freq=((fifo&0x7fff)-2010)*16;
L
Linus Torvalds 已提交
153 154
	}

155
	return freq;
L
Linus Torvalds 已提交
156 157
}

158 159
static void
cadet_settune(unsigned fifo)
L
Linus Torvalds 已提交
160
{
161 162
	int i;
	unsigned test;
L
Linus Torvalds 已提交
163 164

	spin_lock(&cadet_io_lock);
165

L
Linus Torvalds 已提交
166 167 168 169 170 171 172 173 174 175
	outb(7,io);                /* Select tuner control */
	/*
	 * Write the shift register
	 */
	test=0;
	test=(fifo>>23)&0x02;      /* Align data for SDO */
	test|=0x1c;                /* SDM=1, SWE=1, SEN=1, SCK=0 */
	outb(7,io);                /* Select tuner control */
	outb(test,io+1);           /* Initialize for write */
	for(i=0;i<25;i++) {
176
		test|=0x01;              /* Toggle SCK High */
L
Linus Torvalds 已提交
177 178 179 180 181 182 183 184 185 186
		outb(test,io+1);
		test&=0xfe;              /* Toggle SCK Low */
		outb(test,io+1);
		fifo=fifo<<1;            /* Prepare the next bit */
		test=0x1c|((fifo>>23)&0x02);
		outb(test,io+1);
	}
	spin_unlock(&cadet_io_lock);
}

187 188
static void
cadet_setfreq(unsigned freq)
L
Linus Torvalds 已提交
189
{
190 191 192
	unsigned fifo;
	int i,j,test;
	int curvol;
L
Linus Torvalds 已提交
193

194 195 196
	/*
	 * Formulate a fifo command
	 */
L
Linus Torvalds 已提交
197 198
	fifo=0;
	if(curtuner==0) {    /* FM */
199 200 201 202 203 204 205 206 207 208 209
		test=102400;
		freq=(freq*1000)/16;       /* Make it kHz */
		freq+=10700;               /* IF is 10700 kHz */
		for(i=0;i<14;i++) {
			fifo=fifo<<1;
			if(freq>=test) {
				fifo|=0x01;
				freq-=test;
			}
			test=test>>1;
		}
L
Linus Torvalds 已提交
210 211
	}
	if(curtuner==1) {    /* AM */
212
		fifo=(freq/16)+2010;            /* Make it kHz */
L
Linus Torvalds 已提交
213 214 215
		fifo|=0x100000;            /* Select AM Band */
	}

216 217 218
	/*
	 * Save current volume/mute setting
	 */
L
Linus Torvalds 已提交
219 220 221

	spin_lock(&cadet_io_lock);
	outb(7,io);                /* Select tuner control */
222 223
	curvol=inb(io+1);
	spin_unlock(&cadet_io_lock);
L
Linus Torvalds 已提交
224 225 226 227 228

	/*
	 * Tune the card
	 */
	for(j=3;j>-1;j--) {
229 230 231
		cadet_settune(fifo|(j<<16));

		spin_lock(&cadet_io_lock);
L
Linus Torvalds 已提交
232 233 234
		outb(7,io);         /* Select tuner control */
		outb(curvol,io+1);
		spin_unlock(&cadet_io_lock);
235

L
Linus Torvalds 已提交
236 237 238 239
		msleep(100);

		cadet_gettune();
		if((tunestat & 0x40) == 0) {   /* Tuned */
240
			sigstrength=sigtable[curtuner][j];
L
Linus Torvalds 已提交
241 242 243 244 245 246 247
			return;
		}
	}
	sigstrength=0;
}


248 249
static int
cadet_getvol(void)
L
Linus Torvalds 已提交
250 251
{
	int ret = 0;
252

L
Linus Torvalds 已提交
253
	spin_lock(&cadet_io_lock);
254 255 256 257 258 259 260

	outb(7,io);                /* Select tuner control */
	if((inb(io + 1) & 0x20) != 0)
		ret = 0xffff;

	spin_unlock(&cadet_io_lock);
	return ret;
L
Linus Torvalds 已提交
261 262 263
}


264 265
static void
cadet_setvol(int vol)
L
Linus Torvalds 已提交
266 267
{
	spin_lock(&cadet_io_lock);
268 269 270 271 272
	outb(7,io);                /* Select tuner control */
	if(vol>0)
		outb(0x20,io+1);
	else
		outb(0x00,io+1);
L
Linus Torvalds 已提交
273
	spin_unlock(&cadet_io_lock);
274
}
L
Linus Torvalds 已提交
275

276 277
static void
cadet_handler(unsigned long data)
L
Linus Torvalds 已提交
278 279 280 281 282 283 284
{
	/*
	 * Service the RDS fifo
	 */

	if(spin_trylock(&cadet_io_lock))
	{
285
		outb(0x3,io);       /* Select RDS Decoder Control */
L
Linus Torvalds 已提交
286
		if((inb(io+1)&0x20)!=0) {
287
			printk(KERN_CRIT "cadet: RDS fifo overflow\n");
L
Linus Torvalds 已提交
288 289 290
		}
		outb(0x80,io);      /* Select RDS fifo */
		while((inb(io)&0x80)!=0) {
291
			rdsbuf[rdsin]=inb(io+1);
L
Linus Torvalds 已提交
292
			if(rdsin==rdsout)
293
				printk(KERN_WARNING "cadet: RDS buffer overflow\n");
L
Linus Torvalds 已提交
294 295 296 297 298 299 300 301 302 303
			else
				rdsin++;
		}
		spin_unlock(&cadet_io_lock);
	}

	/*
	 * Service pending read
	 */
	if( rdsin!=rdsout)
304
		wake_up_interruptible(&read_queue);
L
Linus Torvalds 已提交
305

306
	/*
L
Linus Torvalds 已提交
307 308 309 310 311 312 313 314 315 316 317
	 * Clean up and exit
	 */
	init_timer(&readtimer);
	readtimer.function=cadet_handler;
	readtimer.data=(unsigned long)0;
	readtimer.expires=jiffies+(HZ/20);
	add_timer(&readtimer);
}



318 319
static ssize_t
cadet_read(struct file *file, char __user *data, size_t count, loff_t *ppos)
L
Linus Torvalds 已提交
320
{
321
	int i=0;
L
Linus Torvalds 已提交
322 323
	unsigned char readbuf[RDS_BUFFER];

324
	if(rdsstat==0) {
L
Linus Torvalds 已提交
325
		spin_lock(&cadet_io_lock);
326
		rdsstat=1;
L
Linus Torvalds 已提交
327 328 329 330 331 332 333 334 335
		outb(0x80,io);        /* Select RDS fifo */
		spin_unlock(&cadet_io_lock);
		init_timer(&readtimer);
		readtimer.function=cadet_handler;
		readtimer.data=(unsigned long)0;
		readtimer.expires=jiffies+(HZ/20);
		add_timer(&readtimer);
	}
	if(rdsin==rdsout) {
336 337 338 339
		if (file->f_flags & O_NONBLOCK)
			return -EWOULDBLOCK;
		interruptible_sleep_on(&read_queue);
	}
L
Linus Torvalds 已提交
340
	while( i<count && rdsin!=rdsout)
341
		readbuf[i++]=rdsbuf[rdsout++];
L
Linus Torvalds 已提交
342 343

	if (copy_to_user(data,readbuf,i))
344
		return -EFAULT;
L
Linus Torvalds 已提交
345 346 347 348 349 350 351 352 353 354
	return i;
}



static int cadet_do_ioctl(struct inode *inode, struct file *file,
			  unsigned int cmd, void *arg)
{
	switch(cmd)
	{
355
		case VIDIOC_QUERYCAP:
L
Linus Torvalds 已提交
356
		{
357 358 359 360 361 362 363 364
			struct v4l2_capability *cap = arg;
			memset(cap,0,sizeof(*cap));
			cap->capabilities =
				V4L2_CAP_TUNER |
				V4L2_CAP_READWRITE;
			cap->version = CADET_VERSION;
			strcpy(cap->driver, "ADS Cadet");
			strcpy(cap->card, "ADS Cadet");
L
Linus Torvalds 已提交
365 366
			return 0;
		}
367
		case VIDIOC_G_TUNER:
L
Linus Torvalds 已提交
368
		{
369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397
			struct v4l2_tuner *t = arg;
			memset(t,0,sizeof(*t));
			t->type = V4L2_TUNER_RADIO;
			switch (t->index)
			{
				case 0: strcpy(t->name, "FM");
					t->capability = V4L2_TUNER_CAP_STEREO;
					t->rangelow = 1400;     /* 87.5 MHz */
					t->rangehigh = 1728;    /* 108.0 MHz */
					t->rxsubchans=cadet_getstereo();
					switch (t->rxsubchans){
						case V4L2_TUNER_SUB_MONO:
							t->audmode = V4L2_TUNER_MODE_MONO;
							break;
						case V4L2_TUNER_SUB_STEREO:
							t->audmode = V4L2_TUNER_MODE_STEREO;
							break;
						default: ;
					}
					break;
				case 1: strcpy(t->name, "AM");
					t->capability = V4L2_TUNER_CAP_LOW;
					t->rangelow = 8320;      /* 520 kHz */
					t->rangehigh = 26400;    /* 1650 kHz */
					t->rxsubchans = V4L2_TUNER_SUB_MONO;
					t->audmode = V4L2_TUNER_MODE_MONO;
					break;
				default:
					return -EINVAL;
L
Linus Torvalds 已提交
398
			}
399 400

			t->signal = sigstrength; /* We might need to modify scaling of this */
L
Linus Torvalds 已提交
401 402
			return 0;
		}
403
		case VIDIOC_S_TUNER:
L
Linus Torvalds 已提交
404
		{
405 406
			struct v4l2_tuner *t = arg;
			if((t->index != 0)&&(t->index != 1))
L
Linus Torvalds 已提交
407
				return -EINVAL;
408 409

			curtuner = t->index;
L
Linus Torvalds 已提交
410 411
			return 0;
		}
412
		case VIDIOC_G_FREQUENCY:
L
Linus Torvalds 已提交
413
		{
414 415 416 417 418
			struct v4l2_frequency *f = arg;
			memset(f,0,sizeof(*f));
			f->tuner = curtuner;
			f->type = V4L2_TUNER_RADIO;
			f->frequency = cadet_getfreq();
L
Linus Torvalds 已提交
419 420
			return 0;
		}
421
		case VIDIOC_S_FREQUENCY:
L
Linus Torvalds 已提交
422
		{
423 424 425 426 427
			struct v4l2_frequency *f = arg;
			if (f->type != V4L2_TUNER_RADIO){
				return -EINVAL;
			}
			if((curtuner==0)&&((f->frequency<1400)||(f->frequency>1728))) {
428
				return -EINVAL;
L
Linus Torvalds 已提交
429
			}
430
			if((curtuner==1)&&((f->frequency<8320)||(f->frequency>26400))) {
431
				return -EINVAL;
L
Linus Torvalds 已提交
432
			}
433
			cadet_setfreq(f->frequency);
L
Linus Torvalds 已提交
434 435
			return 0;
		}
436
		case VIDIOC_G_CTRL:
437
		{
438 439 440 441 442 443 444 445 446 447
			struct v4l2_control *c = arg;
			switch (c->id){
				case V4L2_CID_AUDIO_MUTE: /* TODO: Handle this correctly */
					c->value = (cadet_getvol() == 0);
					break;
				case V4L2_CID_AUDIO_VOLUME:
					c->value = cadet_getvol();
					break;
				default:
					return -EINVAL;
L
Linus Torvalds 已提交
448
			}
449
			return 0;
L
Linus Torvalds 已提交
450
		}
451
		case VIDIOC_S_CTRL:
L
Linus Torvalds 已提交
452
		{
453 454 455 456 457 458 459 460 461 462 463 464
			struct v4l2_control *c = arg;
			switch (c->id){
				case V4L2_CID_AUDIO_MUTE: /* TODO: Handle this correctly */
					if (c->value) cadet_setvol(0);
						else cadet_setvol(0xffff);
					break;
				case V4L2_CID_AUDIO_VOLUME:
					cadet_setvol(c->value);
					break;
				default:
					return -EINVAL;
			}
L
Linus Torvalds 已提交
465 466
			return 0;
		}
467

L
Linus Torvalds 已提交
468 469 470 471 472
		default:
			return -ENOIOCTLCMD;
	}
}

473 474
static int
cadet_ioctl(struct inode *inode, struct file *file,
L
Linus Torvalds 已提交
475 476 477 478 479
		       unsigned int cmd, unsigned long arg)
{
	return video_usercopy(inode, file, cmd, arg, cadet_do_ioctl);
}

480 481
static int
cadet_open(struct inode *inode, struct file *file)
L
Linus Torvalds 已提交
482 483
{
	users++;
484
	if (1 == users) init_waitqueue_head(&read_queue);
L
Linus Torvalds 已提交
485 486 487
	return 0;
}

488 489
static int
cadet_release(struct inode *inode, struct file *file)
L
Linus Torvalds 已提交
490 491
{
	users--;
492 493 494 495 496 497 498 499 500 501 502 503 504
	if (0 == users){
		del_timer_sync(&readtimer);
		rdsstat=0;
	}
	return 0;
}

static unsigned int
cadet_poll(struct file *file, struct poll_table_struct *wait)
{
	poll_wait(file,&read_queue,wait);
	if(rdsin != rdsout)
		return POLLIN | POLLRDNORM;
L
Linus Torvalds 已提交
505 506 507 508 509 510 511 512 513 514
	return 0;
}


static struct file_operations cadet_fops = {
	.owner		= THIS_MODULE,
	.open		= cadet_open,
	.release       	= cadet_release,
	.read		= cadet_read,
	.ioctl		= cadet_ioctl,
515
	.poll		= cadet_poll,
516
	.compat_ioctl	= v4l_compat_ioctl32,
L
Linus Torvalds 已提交
517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563
	.llseek         = no_llseek,
};

static struct video_device cadet_radio=
{
	.owner		= THIS_MODULE,
	.name		= "Cadet radio",
	.type		= VID_TYPE_TUNER,
	.fops           = &cadet_fops,
};

static struct pnp_device_id cadet_pnp_devices[] = {
	/* ADS Cadet AM/FM Radio Card */
	{.id = "MSM0c24", .driver_data = 0},
	{.id = ""}
};

MODULE_DEVICE_TABLE(pnp, cadet_pnp_devices);

static int cadet_pnp_probe(struct pnp_dev * dev, const struct pnp_device_id *dev_id)
{
	if (!dev)
		return -ENODEV;
	/* only support one device */
	if (io > 0)
		return -EBUSY;

	if (!pnp_port_valid(dev, 0)) {
		return -ENODEV;
	}

	io = pnp_port_start(dev, 0);

	printk ("radio-cadet: PnP reports device at %#x\n", io);

	return io;
}

static struct pnp_driver cadet_pnp_driver = {
	.name		= "radio-cadet",
	.id_table	= cadet_pnp_devices,
	.probe		= cadet_pnp_probe,
	.remove		= NULL,
};

static int cadet_probe(void)
{
564
	static int iovals[8]={0x330,0x332,0x334,0x336,0x338,0x33a,0x33c,0x33e};
L
Linus Torvalds 已提交
565 566 567
	int i;

	for(i=0;i<8;i++) {
568
		io=iovals[i];
569
		if (request_region(io, 2, "cadet-probe")) {
570
			cadet_setfreq(1410);
L
Linus Torvalds 已提交
571 572
			if(cadet_getfreq()==1410) {
				release_region(io, 2);
573
				return io;
L
Linus Torvalds 已提交
574 575 576 577 578 579 580
			}
			release_region(io, 2);
		}
	}
	return -1;
}

581
/*
L
Linus Torvalds 已提交
582 583 584 585 586 587 588
 * io should only be set if the user has used something like
 * isapnp (the userspace program) to initialize this card for us
 */

static int __init cadet_init(void)
{
	spin_lock_init(&cadet_io_lock);
589

L
Linus Torvalds 已提交
590 591 592 593 594 595 596 597 598 599 600 601 602 603
	/*
	 *	If a probe was requested then probe ISAPnP first (safest)
	 */
	if (io < 0)
		pnp_register_driver(&cadet_pnp_driver);
	/*
	 *	If that fails then probe unsafely if probe is requested
	 */
	if(io < 0)
		io = cadet_probe ();

	/*
	 *	Else we bail out
	 */
604 605 606

	if(io < 0) {
#ifdef MODULE
L
Linus Torvalds 已提交
607 608
		printk(KERN_ERR "You must set an I/O address with io=0x???\n");
#endif
609
		goto fail;
L
Linus Torvalds 已提交
610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643
	}
	if (!request_region(io,2,"cadet"))
		goto fail;
	if(video_register_device(&cadet_radio,VFL_TYPE_RADIO,radio_nr)==-1) {
		release_region(io,2);
		goto fail;
	}
	printk(KERN_INFO "ADS Cadet Radio Card at 0x%x\n",io);
	return 0;
fail:
	pnp_unregister_driver(&cadet_pnp_driver);
	return -1;
}



MODULE_AUTHOR("Fred Gleason, Russell Kroll, Quay Lu, Donald Song, Jason Lewis, Scott McGrath, William McGrath");
MODULE_DESCRIPTION("A driver for the ADS Cadet AM/FM/RDS radio card.");
MODULE_LICENSE("GPL");

module_param(io, int, 0);
MODULE_PARM_DESC(io, "I/O address of Cadet card (0x330,0x332,0x334,0x336,0x338,0x33a,0x33c,0x33e)");
module_param(radio_nr, int, 0);

static void __exit cadet_cleanup_module(void)
{
	video_unregister_device(&cadet_radio);
	release_region(io,2);
	pnp_unregister_driver(&cadet_pnp_driver);
}

module_init(cadet_init);
module_exit(cadet_cleanup_module);