btaudio.c 26.8 KB
Newer Older
Linus Torvalds's avatar
Linus Torvalds committed
1 2 3
/*
    btaudio - bt878 audio dma driver for linux 2.4.x

Linus Torvalds's avatar
Linus Torvalds committed
4
    (c) 2000 Gerd Knorr <kraxel@bytesex.org>
Linus Torvalds's avatar
Linus Torvalds committed
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.

*/

#include <linux/version.h>
#include <linux/module.h>
#include <linux/errno.h>
#include <linux/pci.h>
#include <linux/sched.h>
#include <linux/signal.h>
#include <linux/types.h>
#include <linux/wrapper.h>
#include <linux/interrupt.h>
#include <linux/init.h>
#include <linux/poll.h>
#include <linux/sound.h>
#include <linux/soundcard.h>
Linus Torvalds's avatar
Linus Torvalds committed
35
#include <linux/slab.h>
Linus Torvalds's avatar
Linus Torvalds committed
36
#include <asm/uaccess.h>
Linus Torvalds's avatar
Linus Torvalds committed
37
#include <asm/io.h>
Linus Torvalds's avatar
Linus Torvalds committed
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101


/* mmio access */
#define btwrite(dat,adr)    writel((dat), (bta->mmio+(adr)))
#define btread(adr)         readl(bta->mmio+(adr))

#define btand(dat,adr)      btwrite((dat) & btread(adr), adr)
#define btor(dat,adr)       btwrite((dat) | btread(adr), adr)
#define btaor(dat,mask,adr) btwrite((dat) | ((mask) & btread(adr)), adr)

/* registers (shifted because bta->mmio is long) */
#define REG_INT_STAT      (0x100 >> 2)
#define REG_INT_MASK      (0x104 >> 2)
#define REG_GPIO_DMA_CTL  (0x10c >> 2)
#define REG_PACKET_LEN    (0x110 >> 2)
#define REG_RISC_STRT_ADD (0x114 >> 2)
#define REG_RISC_COUNT    (0x120 >> 2)

/* IRQ bits - REG_INT_(STAT|MASK) */
#define IRQ_SCERR         (1 << 19)
#define IRQ_OCERR         (1 << 18)
#define IRQ_PABORT        (1 << 17)
#define IRQ_RIPERR        (1 << 16)
#define IRQ_PPERR         (1 << 15)
#define IRQ_FDSR          (1 << 14)
#define IRQ_FTRGT         (1 << 13)
#define IRQ_FBUS          (1 << 12)
#define IRQ_RISCI         (1 << 11)
#define IRQ_OFLOW         (1 <<  3)

#define IRQ_BTAUDIO       (IRQ_SCERR | IRQ_OCERR | IRQ_PABORT | IRQ_RIPERR |\
			   IRQ_PPERR | IRQ_FDSR  | IRQ_FTRGT  | IRQ_FBUS   |\
			   IRQ_RISCI)

/* REG_GPIO_DMA_CTL bits */
#define DMA_CTL_A_PWRDN   (1 << 26)
#define DMA_CTL_DA_SBR    (1 << 14)
#define DMA_CTL_DA_ES2    (1 << 13)
#define DMA_CTL_ACAP_EN   (1 <<  4)
#define DMA_CTL_RISC_EN   (1 <<  1)
#define DMA_CTL_FIFO_EN   (1 <<  0)

/* RISC instructions */
#define RISC_WRITE        (0x01 << 28)
#define RISC_JUMP         (0x07 << 28)
#define RISC_SYNC         (0x08 << 28)

/* RISC bits */
#define RISC_WR_SOL       (1 << 27)
#define RISC_WR_EOL       (1 << 26)
#define RISC_IRQ          (1 << 24)
#define RISC_SYNC_RESYNC  (1 << 15)
#define RISC_SYNC_FM1     0x06
#define RISC_SYNC_VRO     0x0c

#define HWBASE_AD (448000)

/* -------------------------------------------------------------- */

struct btaudio {
	/* linked list */
	struct btaudio *next;

	/* device info */
Linus Torvalds's avatar
Linus Torvalds committed
102 103
	int            dsp_digital;
	int            dsp_analog;
Linus Torvalds's avatar
Linus Torvalds committed
104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144
	int            mixer_dev;
	struct pci_dev *pci;
	unsigned int   irq;
	unsigned long  mem;
	unsigned long  *mmio;

	/* locking */
	int            users;
	struct semaphore lock;

	/* risc instructions */
	unsigned int   risc_size;
	unsigned long  *risc_cpu;
	dma_addr_t     risc_dma;

	/* audio data */
	unsigned int   buf_size;
	unsigned char  *buf_cpu;
	dma_addr_t     buf_dma;

	/* buffer setup */
	int line_bytes;
	int line_count;
	int block_bytes;
	int block_count;

	/* read fifo management */
	int recording;
	int dma_block;
	int read_offset;
	int read_count;
	wait_queue_head_t readq;

	/* settings */
	int gain[3];
	int source;
	int bits;
	int decimation;
	int mixcount;
	int sampleshift;
	int channels;
Linus Torvalds's avatar
Linus Torvalds committed
145
	int analog;
Linus Torvalds's avatar
Linus Torvalds committed
146 147 148
};

static struct btaudio *btaudios = NULL;
Linus Torvalds's avatar
Linus Torvalds committed
149 150
static unsigned int dsp1 = -1;
static unsigned int dsp2 = -1;
Linus Torvalds's avatar
Linus Torvalds committed
151 152 153
static unsigned int mixer = -1;
static unsigned int debug = 0;
static unsigned int irq_debug = 0;
Linus Torvalds's avatar
Linus Torvalds committed
154 155 156
static int digital = 1;
static int analog = 1;
static int rate = 32000;
Linus Torvalds's avatar
Linus Torvalds committed
157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216

/* -------------------------------------------------------------- */

#define BUF_DEFAULT 128*1024
#define BUF_MIN         8192

static int alloc_buffer(struct btaudio *bta)
{
	if (NULL == bta->buf_cpu) {
		for (bta->buf_size = BUF_DEFAULT; bta->buf_size >= BUF_MIN;
		     bta->buf_size = bta->buf_size >> 1) {
			bta->buf_cpu = pci_alloc_consistent
				(bta->pci, bta->buf_size, &bta->buf_dma);
			if (NULL != bta->buf_cpu)
				break;
		}
		if (NULL == bta->buf_cpu)
			return -ENOMEM;
		memset(bta->buf_cpu,0,bta->buf_size);
	}
	if (NULL == bta->risc_cpu) {
		bta->risc_size = PAGE_SIZE;
		bta->risc_cpu = pci_alloc_consistent
			(bta->pci, bta->risc_size, &bta->risc_dma);
		if (NULL == bta->risc_cpu)
			return -ENOMEM;
	}
	return 0;
}

static void free_buffer(struct btaudio *bta)
{
	if (NULL != bta->buf_cpu) {
		pci_free_consistent(bta->pci, bta->buf_size,
				    bta->buf_cpu, bta->buf_dma);
		bta->buf_cpu = NULL;
	}
	if (NULL != bta->risc_cpu) {
		pci_free_consistent(bta->pci, bta->risc_size,
				    bta->risc_cpu, bta->risc_dma);
		bta->risc_cpu = NULL;
	}
}

static int make_risc(struct btaudio *bta)
{
	int rp, bp, line, block;
	unsigned long risc;

	bta->block_bytes = bta->buf_size >> 4;
	bta->block_count = 1 << 4;
	bta->line_bytes  = bta->block_bytes;
	bta->line_count  = bta->block_count;
	while (bta->line_bytes > 4095) {
		bta->line_bytes >>= 1;
		bta->line_count <<= 1;
	}
	if (bta->line_count > 255)
		return -EINVAL;
	if (debug)
Linus Torvalds's avatar
Linus Torvalds committed
217 218
		printk(KERN_DEBUG
		       "btaudio: bufsize=%d - bs=%d bc=%d - ls=%d, lc=%d\n",
Linus Torvalds's avatar
Linus Torvalds committed
219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257
		       bta->buf_size,bta->block_bytes,bta->block_count,
		       bta->line_bytes,bta->line_count);
        rp = 0; bp = 0;
	block = 0;
	bta->risc_cpu[rp++] = cpu_to_le32(RISC_SYNC|RISC_SYNC_FM1);
	bta->risc_cpu[rp++] = cpu_to_le32(0);
	for (line = 0; line < bta->line_count; line++) {
		risc  = RISC_WRITE | RISC_WR_SOL | RISC_WR_EOL;
		risc |= bta->line_bytes;
		if (0 == (bp & (bta->block_bytes-1))) {
			risc |= RISC_IRQ;
			risc |= (block  & 0x0f) << 16;
			risc |= (~block & 0x0f) << 20;
			block++;
		}
		bta->risc_cpu[rp++] = cpu_to_le32(risc);
		bta->risc_cpu[rp++] = cpu_to_le32(bta->buf_dma + bp);
		bp += bta->line_bytes;
	}
	bta->risc_cpu[rp++] = cpu_to_le32(RISC_SYNC|RISC_SYNC_VRO);
	bta->risc_cpu[rp++] = cpu_to_le32(0);
	bta->risc_cpu[rp++] = cpu_to_le32(RISC_JUMP); 
	bta->risc_cpu[rp++] = cpu_to_le32(bta->risc_dma);
	return 0;
}

static int start_recording(struct btaudio *bta)
{
	int ret;

	if (0 != (ret = alloc_buffer(bta)))
		return ret;
	if (0 != (ret = make_risc(bta)))
		return ret;

	btwrite(bta->risc_dma, REG_RISC_STRT_ADD);
	btwrite((bta->line_count << 16) | bta->line_bytes,
		REG_PACKET_LEN);
	btwrite(IRQ_BTAUDIO, REG_INT_MASK);
Linus Torvalds's avatar
Linus Torvalds committed
258
	if (bta->analog) {
Linus Torvalds's avatar
Linus Torvalds committed
259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285
		btwrite(DMA_CTL_ACAP_EN |
			DMA_CTL_RISC_EN |
			DMA_CTL_FIFO_EN |
			DMA_CTL_DA_ES2  |
			((bta->bits == 8) ? DMA_CTL_DA_SBR : 0) |
			(bta->gain[bta->source] << 28) |
			(bta->source            << 24) |
			(bta->decimation        <<  8),
			REG_GPIO_DMA_CTL);
	} else {
		btwrite(DMA_CTL_ACAP_EN |
			DMA_CTL_RISC_EN |
			DMA_CTL_FIFO_EN |
			DMA_CTL_DA_ES2  |
			DMA_CTL_A_PWRDN |
			(1 << 6)   |
			((bta->bits == 8) ? DMA_CTL_DA_SBR : 0) |
			(bta->gain[bta->source] << 28) |
			(bta->source            << 24) |
			(bta->decimation        <<  8),
			REG_GPIO_DMA_CTL);
	}
	bta->dma_block = 0;
	bta->read_offset = 0;
	bta->read_count = 0;
	bta->recording = 1;
	if (debug)
Linus Torvalds's avatar
Linus Torvalds committed
286
		printk(KERN_DEBUG "btaudio: recording started\n");
Linus Torvalds's avatar
Linus Torvalds committed
287 288 289 290 291 292 293 294
	return 0;
}

static void stop_recording(struct btaudio *bta)
{
        btand(~15, REG_GPIO_DMA_CTL);
	bta->recording = 0;
	if (debug)
Linus Torvalds's avatar
Linus Torvalds committed
295
		printk(KERN_DEBUG "btaudio: recording stopped\n");
Linus Torvalds's avatar
Linus Torvalds committed
296 297 298 299 300 301 302
}


/* -------------------------------------------------------------- */

static int btaudio_mixer_open(struct inode *inode, struct file *file)
{
Linus Torvalds's avatar
Linus Torvalds committed
303
	int minor = minor(inode->i_rdev);
Linus Torvalds's avatar
Linus Torvalds committed
304 305 306 307 308 309 310 311
	struct btaudio *bta;

	for (bta = btaudios; bta != NULL; bta = bta->next)
		if (bta->mixer_dev == minor)
			break;
	if (NULL == bta)
		return -ENODEV;

Linus Torvalds's avatar
Linus Torvalds committed
312 313
	if (debug)
		printk("btaudio: open mixer [%d]\n",minor);
Linus Torvalds's avatar
Linus Torvalds committed
314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330
	file->private_data = bta;
	return 0;
}

static int btaudio_mixer_release(struct inode *inode, struct file *file)
{
	return 0;
}

static int btaudio_mixer_ioctl(struct inode *inode, struct file *file,
			       unsigned int cmd, unsigned long arg)
{
	struct btaudio *bta = file->private_data;
	int ret,val=0,i=0;

	if (cmd == SOUND_MIXER_INFO) {
		mixer_info info;
Linus Torvalds's avatar
Linus Torvalds committed
331 332 333
		memset(&info,0,sizeof(info));
                strncpy(info.id,"bt878",sizeof(info.id)-1);
                strncpy(info.name,"Brooktree Bt878 audio",sizeof(info.name)-1);
Linus Torvalds's avatar
Linus Torvalds committed
334 335 336 337 338 339 340
                info.modify_counter = bta->mixcount;
                if (copy_to_user((void *)arg, &info, sizeof(info)))
                        return -EFAULT;
		return 0;
	}
	if (cmd == SOUND_OLD_MIXER_INFO) {
		_old_mixer_info info;
Linus Torvalds's avatar
Linus Torvalds committed
341 342 343
		memset(&info,0,sizeof(info));
                strncpy(info.id,"bt878",sizeof(info.id)-1);
                strncpy(info.name,"Brooktree Bt878 audio",sizeof(info.name)-1);
Linus Torvalds's avatar
Linus Torvalds committed
344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 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 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428
                if (copy_to_user((void *)arg, &info, sizeof(info)))
                        return -EFAULT;
		return 0;
	}
	if (cmd == OSS_GETVERSION)
		return put_user(SOUND_VERSION, (int *)arg);

	/* read */
	if (_SIOC_DIR(cmd) & _SIOC_WRITE)
		if (get_user(val, (int *)arg))
			return -EFAULT;

	switch (cmd) {
	case MIXER_READ(SOUND_MIXER_CAPS):
		ret = SOUND_CAP_EXCL_INPUT;
		break;
	case MIXER_READ(SOUND_MIXER_STEREODEVS):
		ret = 0;
		break;
	case MIXER_READ(SOUND_MIXER_RECMASK):
	case MIXER_READ(SOUND_MIXER_DEVMASK):
		ret = SOUND_MASK_LINE1|SOUND_MASK_LINE2|SOUND_MASK_LINE3;
		break;

	case MIXER_WRITE(SOUND_MIXER_RECSRC):
		if (val & SOUND_MASK_LINE1 && bta->source != 0)
			bta->source = 0;
		else if (val & SOUND_MASK_LINE2 && bta->source != 1)
			bta->source = 1;
		else if (val & SOUND_MASK_LINE3 && bta->source != 2)
			bta->source = 2;
		btaor((bta->gain[bta->source] << 28) |
		      (bta->source            << 24),
		      0x0cffffff, REG_GPIO_DMA_CTL);
	case MIXER_READ(SOUND_MIXER_RECSRC):
		switch (bta->source) {
		case 0:  ret = SOUND_MASK_LINE1; break;
		case 1:  ret = SOUND_MASK_LINE2; break;
		case 2:  ret = SOUND_MASK_LINE3; break;
		default: ret = 0;
		}
		break;

	case MIXER_WRITE(SOUND_MIXER_LINE1):
	case MIXER_WRITE(SOUND_MIXER_LINE2):
	case MIXER_WRITE(SOUND_MIXER_LINE3):
		if (MIXER_WRITE(SOUND_MIXER_LINE1) == cmd)
			i = 0;
		if (MIXER_WRITE(SOUND_MIXER_LINE2) == cmd)
			i = 1;
		if (MIXER_WRITE(SOUND_MIXER_LINE3) == cmd)
			i = 2;
		bta->gain[i] = (val & 0xff) * 15 / 100;
		if (bta->gain[i] > 15) bta->gain[i] = 15;
		if (bta->gain[i] <  0) bta->gain[i] =  0;
		if (i == bta->source)
			btaor((bta->gain[bta->source]<<28),
			      0x0fffffff, REG_GPIO_DMA_CTL);
		ret  = bta->gain[i] * 100 / 15;
		ret |= ret << 8;
		break;

	case MIXER_READ(SOUND_MIXER_LINE1):
	case MIXER_READ(SOUND_MIXER_LINE2):
	case MIXER_READ(SOUND_MIXER_LINE3):
		if (MIXER_READ(SOUND_MIXER_LINE1) == cmd)
			i = 0;
		if (MIXER_READ(SOUND_MIXER_LINE2) == cmd)
			i = 1;
		if (MIXER_READ(SOUND_MIXER_LINE3) == cmd)
			i = 2;
		ret  = bta->gain[i] * 100 / 15;
		ret |= ret << 8;
		break;

	default:
		return -EINVAL;
	}
	if (put_user(ret, (int *)arg))
		return -EFAULT;
	return 0;
}

static struct file_operations btaudio_mixer_fops = {
	owner:   THIS_MODULE,
Linus Torvalds's avatar
Linus Torvalds committed
429
	llseek:  no_llseek,
Linus Torvalds's avatar
Linus Torvalds committed
430 431 432 433 434 435 436
	open:    btaudio_mixer_open,
	release: btaudio_mixer_release,
	ioctl:   btaudio_mixer_ioctl,
};

/* -------------------------------------------------------------- */

Linus Torvalds's avatar
Linus Torvalds committed
437 438
static int btaudio_dsp_open(struct inode *inode, struct file *file,
			    struct btaudio *bta, int analog)
Linus Torvalds's avatar
Linus Torvalds committed
439 440 441 442 443 444 445
{
	down(&bta->lock);
	if (bta->users)
		goto busy;
	bta->users++;
	file->private_data = bta;

Linus Torvalds's avatar
Linus Torvalds committed
446
	bta->analog = analog;
Linus Torvalds's avatar
Linus Torvalds committed
447 448 449 450 451 452 453 454 455 456 457 458 459
	bta->dma_block = 0;
	bta->read_offset = 0;
	bta->read_count = 0;
	bta->sampleshift = 0;

	up(&bta->lock);
	return 0;

 busy:
	up(&bta->lock);
	return -EBUSY;
}

Linus Torvalds's avatar
Linus Torvalds committed
460 461
static int btaudio_dsp_open_digital(struct inode *inode, struct file *file)
{
Linus Torvalds's avatar
Linus Torvalds committed
462
	int minor = minor(inode->i_rdev);
Linus Torvalds's avatar
Linus Torvalds committed
463 464 465 466 467 468 469 470 471 472 473 474 475 476 477
	struct btaudio *bta;

	for (bta = btaudios; bta != NULL; bta = bta->next)
		if (bta->dsp_digital == minor)
			break;
	if (NULL == bta)
		return -ENODEV;
	
	if (debug)
		printk("btaudio: open digital dsp [%d]\n",minor);
	return btaudio_dsp_open(inode,file,bta,0);
}

static int btaudio_dsp_open_analog(struct inode *inode, struct file *file)
{
Linus Torvalds's avatar
Linus Torvalds committed
478
	int minor = minor(inode->i_rdev);
Linus Torvalds's avatar
Linus Torvalds committed
479 480 481 482 483 484 485 486 487 488 489 490 491
	struct btaudio *bta;

	for (bta = btaudios; bta != NULL; bta = bta->next)
		if (bta->dsp_analog == minor)
			break;
	if (NULL == bta)
		return -ENODEV;

	if (debug)
		printk("btaudio: open analog dsp [%d]\n",minor);
	return btaudio_dsp_open(inode,file,bta,1);
}

Linus Torvalds's avatar
Linus Torvalds committed
492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 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
static int btaudio_dsp_release(struct inode *inode, struct file *file)
{
	struct btaudio *bta = file->private_data;

	down(&bta->lock);
	if (bta->recording)
		stop_recording(bta);
	bta->users--;
	up(&bta->lock);
	return 0;
}

static ssize_t btaudio_dsp_read(struct file *file, char *buffer,
				size_t swcount, loff_t *ppos)
{
	struct btaudio *bta = file->private_data;
	int hwcount = swcount << bta->sampleshift;
	int nsrc, ndst, err, ret = 0;
	DECLARE_WAITQUEUE(wait, current);

	add_wait_queue(&bta->readq, &wait);
	down(&bta->lock);
	while (swcount > 0) {
		if (0 == bta->read_count) {
			if (!bta->recording) {
				if (0 != (err = start_recording(bta))) {
					if (0 == ret)
						ret = err;
					break;
				}
			}
			if (file->f_flags & O_NONBLOCK) {
				if (0 == ret)
					ret = -EAGAIN;
				break;
			}
			up(&bta->lock);
			current->state = TASK_INTERRUPTIBLE;
			schedule();
			down(&bta->lock);
			if(signal_pending(current)) {
				if (0 == ret)
					ret = -EINTR;
				break;
			}
		}
		nsrc = (bta->read_count < hwcount) ? bta->read_count : hwcount;
		if (nsrc > bta->buf_size - bta->read_offset)
			nsrc = bta->buf_size - bta->read_offset;
		ndst = nsrc >> bta->sampleshift;
Linus Torvalds's avatar
Linus Torvalds committed
542 543 544
		
		if ((bta->analog  && 0 == bta->sampleshift) ||
		    (!bta->analog && 2 == bta->channels)) {
Linus Torvalds's avatar
Linus Torvalds committed
545 546 547 548 549 550 551
			/* just copy */
			if (copy_to_user(buffer + ret, bta->buf_cpu + bta->read_offset, nsrc)) {
				if (0 == ret)
					ret = -EFAULT;
				break;
			}

Linus Torvalds's avatar
Linus Torvalds committed
552
		} else if (!bta->analog) {
Linus Torvalds's avatar
Linus Torvalds committed
553
			/* stereo => mono (digital audio) */
Linus Torvalds's avatar
Linus Torvalds committed
554 555 556
			__s16 *src = (__s16*)(bta->buf_cpu + bta->read_offset);
			__s16 *dst = (__s16*)(buffer + ret);
			__s16 avg;
Linus Torvalds's avatar
Linus Torvalds committed
557 558 559 560 561 562 563
			int n = ndst>>1;
			if (0 != verify_area(VERIFY_WRITE,dst,ndst)) {
				if (0 == ret)
					ret = -EFAULT;
				break;
			}
			for (; n; n--, dst++) {
Linus Torvalds's avatar
Linus Torvalds committed
564 565 566
				avg  = (__s16)le16_to_cpu(*src) / 2; src++;
				avg += (__s16)le16_to_cpu(*src) / 2; src++;
				__put_user(cpu_to_le16(avg),(__u16*)(dst));
Linus Torvalds's avatar
Linus Torvalds committed
567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630
			}

		} else if (8 == bta->bits) {
			/* copy + byte downsampling (audio A/D) */
			__u8 *src = bta->buf_cpu + bta->read_offset;
			__u8 *dst = buffer + ret;
			int n = ndst;
			if (0 != verify_area(VERIFY_WRITE,dst,ndst)) {
				if (0 == ret)
					ret = -EFAULT;
				break;
			}
			for (; n; n--, src += (1 << bta->sampleshift), dst++)
				__put_user(*src,(__u8*)(dst));

		} else {
			/* copy + word downsampling (audio A/D) */
			__u16 *src = (__u16*)(bta->buf_cpu + bta->read_offset);
			__u16 *dst = (__u16*)(buffer + ret);
			int n = ndst>>1;
			if (0 != verify_area(VERIFY_WRITE,dst,ndst)) {
				if (0 == ret)
					ret = -EFAULT;
				break;
			}
			for (; n; n--, src += (1 << bta->sampleshift), dst++)
				__put_user(*src,(__u16*)(dst));
		}

		ret     += ndst;
		swcount -= ndst;
		hwcount -= nsrc;
		bta->read_count  -= nsrc;
		bta->read_offset += nsrc;
		if (bta->read_offset == bta->buf_size)
			bta->read_offset = 0;
	}
	up(&bta->lock);
	remove_wait_queue(&bta->readq, &wait);
	current->state = TASK_RUNNING;
	return ret;
}

static ssize_t btaudio_dsp_write(struct file *file, const char *buffer,
				 size_t count, loff_t *ppos)
{
	return -EINVAL;
}

static int btaudio_dsp_ioctl(struct inode *inode, struct file *file,
			     unsigned int cmd, unsigned long arg)
{
	struct btaudio *bta = file->private_data;
	int s, i, ret, val = 0;
	
        switch (cmd) {
        case OSS_GETVERSION:
                return put_user(SOUND_VERSION, (int *)arg);
        case SNDCTL_DSP_GETCAPS:
		return 0;

        case SNDCTL_DSP_SPEED:
		if (get_user(val, (int*)arg))
			return -EFAULT;
Linus Torvalds's avatar
Linus Torvalds committed
631
		if (bta->analog) {
Linus Torvalds's avatar
Linus Torvalds committed
632 633 634 635 636 637 638 639 640
			for (s = 0; s < 16; s++)
				if (val << s >= HWBASE_AD*4/15)
					break;
			for (i = 15; i >= 5; i--)
				if (val << s <= HWBASE_AD*4/i)
					break;
			bta->sampleshift = s;
			bta->decimation  = i;
			if (debug)
Linus Torvalds's avatar
Linus Torvalds committed
641 642
				printk(KERN_DEBUG "btaudio: rate: req=%d  "
				       "dec=%d shift=%d hwrate=%d swrate=%d\n",
Linus Torvalds's avatar
Linus Torvalds committed
643 644 645 646 647 648 649 650 651 652 653 654 655
				       val,i,s,(HWBASE_AD*4/i),(HWBASE_AD*4/i)>>s);
		} else {
			bta->sampleshift = (bta->channels == 2) ? 0 : 1;
			bta->decimation  = 0;
		}
		if (bta->recording) {
			down(&bta->lock);
			stop_recording(bta);
			start_recording(bta);
			up(&bta->lock);
		}
		/* fall through */
        case SOUND_PCM_READ_RATE:
Linus Torvalds's avatar
Linus Torvalds committed
656
		if (bta->analog) {
Linus Torvalds's avatar
Linus Torvalds committed
657 658
			return put_user(HWBASE_AD*4/bta->decimation>>bta->sampleshift, (int*)arg);
		} else {
Linus Torvalds's avatar
Linus Torvalds committed
659
			return put_user(rate, (int*)arg);
Linus Torvalds's avatar
Linus Torvalds committed
660 661 662
		}

        case SNDCTL_DSP_STEREO:
Linus Torvalds's avatar
Linus Torvalds committed
663
		if (!bta->analog) {
Linus Torvalds's avatar
Linus Torvalds committed
664 665 666 667
			if (get_user(val, (int*)arg))
				return -EFAULT;
			bta->channels    = (val > 0) ? 2 : 1;
			bta->sampleshift = (bta->channels == 2) ? 0 : 1;
Linus Torvalds's avatar
Linus Torvalds committed
668 669 670 671
			if (debug)
				printk(KERN_INFO
				       "btaudio: stereo=%d channels=%d\n",
				       val,bta->channels);
Linus Torvalds's avatar
Linus Torvalds committed
672 673 674 675 676
		} else {
			if (val == 1)
				return -EFAULT;
			else {
				bta->channels = 1;
Linus Torvalds's avatar
Linus Torvalds committed
677 678 679
				if (debug)
					printk(KERN_INFO
					       "btaudio: stereo=0 channels=1\n");
Linus Torvalds's avatar
Linus Torvalds committed
680 681 682 683 684 685 686 687 688 689
			}
		}
		return put_user((bta->channels)-1, (int *)arg);

        case SNDCTL_DSP_CHANNELS:
		if (!analog) {
			if (get_user(val, (int*)arg))
				return -EFAULT;
			bta->channels    = (val > 1) ? 2 : 1;
			bta->sampleshift = (bta->channels == 2) ? 0 : 1;
Linus Torvalds's avatar
Linus Torvalds committed
690 691 692 693
			if (debug)
				printk(KERN_DEBUG
				       "btaudio: val=%d channels=%d\n",
				       val,bta->channels);
Linus Torvalds's avatar
Linus Torvalds committed
694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720
		}
		/* fall through */
        case SOUND_PCM_READ_CHANNELS:
		return put_user(bta->channels, (int *)arg);
		
        case SNDCTL_DSP_GETFMTS: /* Returns a mask */
		if (analog)
			return put_user(AFMT_S16_LE|AFMT_S8, (int*)arg);
		else
			return put_user(AFMT_S16_LE, (int*)arg);

        case SNDCTL_DSP_SETFMT: /* Selects ONE fmt*/
		if (get_user(val, (int*)arg))
			return -EFAULT;
                if (val != AFMT_QUERY) {
			if (analog)
				bta->bits = (val == AFMT_S8) ? 8 : 16;
			else
				bta->bits = 16;
			if (bta->recording) {
				down(&bta->lock);
				stop_recording(bta);
				start_recording(bta);
				up(&bta->lock);
			}
		}
		if (debug)
Linus Torvalds's avatar
Linus Torvalds committed
721
			printk(KERN_DEBUG "btaudio: fmt: bits=%d\n",bta->bits);
Linus Torvalds's avatar
Linus Torvalds committed
722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750
                return put_user((bta->bits==16) ? AFMT_S16_LE : AFMT_S8,
				(int*)arg);
		break;
        case SOUND_PCM_READ_BITS:
		return put_user(bta->bits, (int*)arg);

        case SNDCTL_DSP_NONBLOCK:
                file->f_flags |= O_NONBLOCK;
                return 0;

        case SNDCTL_DSP_RESET:
		if (bta->recording) {
			down(&bta->lock);
			stop_recording(bta);
			up(&bta->lock);
		}
		return 0;
        case SNDCTL_DSP_GETBLKSIZE:
		if (!bta->recording) {
			if (0 != (ret = alloc_buffer(bta)))
				return ret;
			if (0 != (ret = make_risc(bta)))
				return ret;
		}
		return put_user(bta->block_bytes>>bta->sampleshift,(int*)arg);

        case SNDCTL_DSP_SYNC:
		/* NOP */
		return 0;
Linus Torvalds's avatar
Linus Torvalds committed
751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768
	case SNDCTL_DSP_GETISPACE:
	{
		audio_buf_info info;
		if (!bta->recording)
			return -EINVAL;
		info.fragsize = bta->block_bytes>>bta->sampleshift;
		info.fragstotal = bta->block_count;
		info.bytes = bta->read_count;
		info.fragments = info.bytes / info.fragsize;
		if (debug)
			printk(KERN_DEBUG "btaudio: SNDCTL_DSP_GETISPACE "
			       "returns %d/%d/%d/%d\n",
			       info.fragsize, info.fragstotal,
			       info.bytes, info.fragments);
		if (copy_to_user((void *)arg, &info, sizeof(info)))
			return -EFAULT;
		return 0;
	}
Linus Torvalds's avatar
Linus Torvalds committed
769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791
#if 0 /* TODO */
        case SNDCTL_DSP_GETTRIGGER:
        case SNDCTL_DSP_SETTRIGGER:
        case SNDCTL_DSP_SETFRAGMENT:
#endif
	default:
		return -EINVAL;
	}
}

static unsigned int btaudio_dsp_poll(struct file *file, struct poll_table_struct *wait)
{
	struct btaudio *bta = file->private_data;
	unsigned int mask = 0;

	poll_wait(file, &bta->readq, wait);

	if (0 == bta->read_count)
		mask |= (POLLIN | POLLRDNORM);

	return mask;
}

Linus Torvalds's avatar
Linus Torvalds committed
792
static struct file_operations btaudio_digital_dsp_fops = {
Linus Torvalds's avatar
Linus Torvalds committed
793
	owner:   THIS_MODULE,
Linus Torvalds's avatar
Linus Torvalds committed
794 795 796 797 798 799 800 801 802 803 804 805 806
	llseek:  no_llseek,
	open:    btaudio_dsp_open_digital,
	release: btaudio_dsp_release,
	read:    btaudio_dsp_read,
	write:   btaudio_dsp_write,
	ioctl:   btaudio_dsp_ioctl,
	poll:    btaudio_dsp_poll,
};

static struct file_operations btaudio_analog_dsp_fops = {
	owner:   THIS_MODULE,
	llseek:  no_llseek,
	open:    btaudio_dsp_open_analog,
Linus Torvalds's avatar
Linus Torvalds committed
807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835
	release: btaudio_dsp_release,
	read:    btaudio_dsp_read,
	write:   btaudio_dsp_write,
	ioctl:   btaudio_dsp_ioctl,
	poll:    btaudio_dsp_poll,
};

/* -------------------------------------------------------------- */

static char *irq_name[] = { "", "", "", "OFLOW", "", "", "", "", "", "", "",
			    "RISCI", "FBUS", "FTRGT", "FDSR", "PPERR",
			    "RIPERR", "PABORT", "OCERR", "SCERR" };

static void btaudio_irq(int irq, void *dev_id, struct pt_regs * regs)
{
	int count = 0;
	u32 stat,astat;
	struct btaudio *bta = dev_id;

	for (;;) {
		count++;
		stat  = btread(REG_INT_STAT);
		astat = stat & btread(REG_INT_MASK);
		if (!astat)
			return;
		btwrite(astat,REG_INT_STAT);

		if (irq_debug) {
			int i;
Linus Torvalds's avatar
Linus Torvalds committed
836
			printk(KERN_DEBUG "btaudio: irq loop=%d risc=%x, bits:",
Linus Torvalds's avatar
Linus Torvalds committed
837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853
			       count, stat>>28);
			for (i = 0; i < (sizeof(irq_name)/sizeof(char*)); i++) {
				if (stat & (1 << i))
					printk(" %s",irq_name[i]);
				if (astat & (1 << i))
					printk("*");
			}
			printk("\n");
		}
		if (stat & IRQ_RISCI) {
			int blocks;
			blocks = (stat >> 28) - bta->dma_block;
			if (blocks < 0)
				blocks += bta->block_count;
			bta->dma_block = stat >> 28;
			if (bta->read_count + 2*bta->block_bytes > bta->buf_size) {
				stop_recording(bta);
Linus Torvalds's avatar
Linus Torvalds committed
854
				printk(KERN_INFO "btaudio: buffer overrun\n");
Linus Torvalds's avatar
Linus Torvalds committed
855 856 857 858 859 860 861
			}
			if (blocks > 0) {
				bta->read_count += blocks * bta->block_bytes;
				wake_up_interruptible(&bta->readq);
			}
		}
		if (count > 10) {
Linus Torvalds's avatar
Linus Torvalds committed
862 863
			printk(KERN_WARNING
			       "btaudio: Oops - irq mask cleared\n");
Linus Torvalds's avatar
Linus Torvalds committed
864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898
			btwrite(0, REG_INT_MASK);
		}
	}
	return;
}

/* -------------------------------------------------------------- */

static int __devinit btaudio_probe(struct pci_dev *pci_dev,
				   const struct pci_device_id *pci_id)
{
	struct btaudio *bta;
	unsigned char revision,latency;
	int rc = -EBUSY;

	if (pci_enable_device(pci_dev))
		return -EIO;
	if (!request_mem_region(pci_resource_start(pci_dev,0),
				pci_resource_len(pci_dev,0),
				"btaudio")) {
		return -EBUSY;
	}

	bta = kmalloc(sizeof(*bta),GFP_ATOMIC);
	memset(bta,0,sizeof(*bta));

	bta->pci  = pci_dev;
	bta->irq  = pci_dev->irq;
	bta->mem  = pci_resource_start(pci_dev,0);
	bta->mmio = ioremap(pci_resource_start(pci_dev,0),
			    pci_resource_len(pci_dev,0));

	bta->source     = 1;
	bta->bits       = 8;
	bta->channels   = 1;
Linus Torvalds's avatar
Linus Torvalds committed
899
	if (bta->analog) {
Linus Torvalds's avatar
Linus Torvalds committed
900 901 902 903 904 905 906 907 908 909 910
		bta->decimation  = 15;
	} else {
		bta->decimation  = 0;
		bta->sampleshift = 1;
	}

	init_MUTEX(&bta->lock);
        init_waitqueue_head(&bta->readq);

        pci_read_config_byte(pci_dev, PCI_CLASS_REVISION, &revision);
        pci_read_config_byte(pci_dev, PCI_LATENCY_TIMER, &latency);
Linus Torvalds's avatar
Linus Torvalds committed
911
        printk(KERN_INFO "btaudio: Bt%x (rev %d) at %02x:%02x.%x, ",
Linus Torvalds's avatar
Linus Torvalds committed
912 913 914 915 916 917 918 919
	       pci_dev->device,revision,pci_dev->bus->number,
	       PCI_SLOT(pci_dev->devfn),PCI_FUNC(pci_dev->devfn));
        printk("irq: %d, latency: %d, memory: 0x%lx\n",
	       bta->irq, latency, bta->mem);

	/* init hw */
        btwrite(0, REG_GPIO_DMA_CTL);
        btwrite(0, REG_INT_MASK);
Linus Torvalds's avatar
Linus Torvalds committed
920
        btwrite(~0x0UL, REG_INT_STAT);
Linus Torvalds's avatar
Linus Torvalds committed
921 922 923 924
	pci_set_master(pci_dev);

	if ((rc = request_irq(bta->irq, btaudio_irq, SA_SHIRQ|SA_INTERRUPT,
			       "btaudio",(void *)bta)) < 0) {
Linus Torvalds's avatar
Linus Torvalds committed
925 926
		printk(KERN_WARNING
		       "btaudio: can't request irq (rc=%d)\n",rc);
Linus Torvalds's avatar
Linus Torvalds committed
927 928 929 930
		goto fail1;
	}

	/* register devices */
Linus Torvalds's avatar
Linus Torvalds committed
931 932 933 934 935 936 937 938
	if (digital) {
		rc = bta->dsp_digital =
			register_sound_dsp(&btaudio_digital_dsp_fops,dsp1);
		if (rc < 0) {
			printk(KERN_WARNING
			       "btaudio: can't register digital dsp (rc=%d)\n",rc);
			goto fail2;
		}
Linus Torvalds's avatar
Linus Torvalds committed
939 940
	}
	if (analog) {
Linus Torvalds's avatar
Linus Torvalds committed
941 942
		rc = bta->dsp_analog =
			register_sound_dsp(&btaudio_analog_dsp_fops,dsp2);
Linus Torvalds's avatar
Linus Torvalds committed
943
		if (rc < 0) {
Linus Torvalds's avatar
Linus Torvalds committed
944 945
			printk(KERN_WARNING
			       "btaudio: can't register analog dsp (rc=%d)\n",rc);
Linus Torvalds's avatar
Linus Torvalds committed
946 947
			goto fail3;
		}
Linus Torvalds's avatar
Linus Torvalds committed
948 949 950 951 952 953
		rc = bta->mixer_dev = register_sound_mixer(&btaudio_mixer_fops,mixer);
		if (rc < 0) {
			printk(KERN_WARNING
			       "btaudio: can't register mixer (rc=%d)\n",rc);
			goto fail4;
		}
Linus Torvalds's avatar
Linus Torvalds committed
954 955
	}
	if (debug)
Linus Torvalds's avatar
Linus Torvalds committed
956 957
		printk(KERN_DEBUG "btaudio: minors: digital=%d, analog=%d, mixer=%d\n",
		       bta->dsp_digital, bta->dsp_analog, bta->mixer_dev);
Linus Torvalds's avatar
Linus Torvalds committed
958 959 960 961 962 963 964 965

	/* hook into linked list */
	bta->next = btaudios;
	btaudios = bta;

	pci_set_drvdata(pci_dev,bta);
        return 0;

Linus Torvalds's avatar
Linus Torvalds committed
966 967
 fail4:
	unregister_sound_dsp(bta->dsp_analog);
Linus Torvalds's avatar
Linus Torvalds committed
968
 fail3:
Linus Torvalds's avatar
Linus Torvalds committed
969 970
	if (digital)
		unregister_sound_dsp(bta->dsp_digital);
Linus Torvalds's avatar
Linus Torvalds committed
971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987
 fail2:
        free_irq(bta->irq,bta);	
 fail1:
	release_mem_region(pci_resource_start(pci_dev,0),
			   pci_resource_len(pci_dev,0));
	kfree(bta);
	return rc;
}

static void __devexit btaudio_remove(struct pci_dev *pci_dev)
{
	struct btaudio *bta = pci_get_drvdata(pci_dev);
	struct btaudio *walk;

	/* turn off all DMA / IRQs */
        btand(~15, REG_GPIO_DMA_CTL);
        btwrite(0, REG_INT_MASK);
Linus Torvalds's avatar
Linus Torvalds committed
988
        btwrite(~0x0UL, REG_INT_STAT);
Linus Torvalds's avatar
Linus Torvalds committed
989 990

	/* unregister devices */
Linus Torvalds's avatar
Linus Torvalds committed
991 992 993 994 995
	if (digital) {
		unregister_sound_dsp(bta->dsp_digital);
	}
	if (analog) {
		unregister_sound_dsp(bta->dsp_analog);
Linus Torvalds's avatar
Linus Torvalds committed
996
		unregister_sound_mixer(bta->mixer_dev);
Linus Torvalds's avatar
Linus Torvalds committed
997
	}
Linus Torvalds's avatar
Linus Torvalds committed
998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037

	/* free resources */
	free_buffer(bta);
        free_irq(bta->irq,bta);
	release_mem_region(pci_resource_start(pci_dev,0),
			   pci_resource_len(pci_dev,0));

	/* remove from linked list */
	if (bta == btaudios) {
		btaudios = NULL;
	} else {
		for (walk = btaudios; walk->next != bta; walk = walk->next)
			; /* if (NULL == walk->next) BUG(); */
		walk->next = bta->next;
	}

	pci_set_drvdata(pci_dev, NULL);
	kfree(bta);
	return;
}

/* -------------------------------------------------------------- */

static struct pci_device_id btaudio_pci_tbl[] __devinitdata = {
        { PCI_VENDOR_ID_BROOKTREE, 0x0878,
          PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
        { PCI_VENDOR_ID_BROOKTREE, 0x0879,
          PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
        {0,}
};

static struct pci_driver btaudio_pci_driver = {
        name:     "btaudio",
        id_table: btaudio_pci_tbl,
        probe:    btaudio_probe,
        remove:   btaudio_remove,
};

int btaudio_init_module(void)
{
Linus Torvalds's avatar
Linus Torvalds committed
1038 1039 1040 1041
	printk(KERN_INFO "btaudio: driver version 0.6 loaded [%s%s%s]\n",
	       analog ? "analog" : "",
	       analog && digital ? "+" : "",
	       digital ? "digital" : "");
Linus Torvalds's avatar
Linus Torvalds committed
1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053
	return pci_module_init(&btaudio_pci_driver);
}

void btaudio_cleanup_module(void)
{
	pci_unregister_driver(&btaudio_pci_driver);
	return;
}

module_init(btaudio_init_module);
module_exit(btaudio_cleanup_module);

Linus Torvalds's avatar
Linus Torvalds committed
1054 1055
MODULE_PARM(dsp1,"i");
MODULE_PARM(dsp2,"i");
Linus Torvalds's avatar
Linus Torvalds committed
1056 1057 1058
MODULE_PARM(mixer,"i");
MODULE_PARM(debug,"i");
MODULE_PARM(irq_debug,"i");
Linus Torvalds's avatar
Linus Torvalds committed
1059
MODULE_PARM(digital,"i");
Linus Torvalds's avatar
Linus Torvalds committed
1060
MODULE_PARM(analog,"i");
Linus Torvalds's avatar
Linus Torvalds committed
1061
MODULE_PARM(rate,"i");
Linus Torvalds's avatar
Linus Torvalds committed
1062 1063

MODULE_DEVICE_TABLE(pci, btaudio_pci_tbl);
Linus Torvalds's avatar
Linus Torvalds committed
1064
MODULE_DESCRIPTION("bt878 audio dma driver");
Linus Torvalds's avatar
Linus Torvalds committed
1065
MODULE_AUTHOR("Gerd Knorr");
Linus Torvalds's avatar
Linus Torvalds committed
1066
MODULE_LICENSE("GPL");
Linus Torvalds's avatar
Linus Torvalds committed
1067 1068 1069 1070 1071 1072

/*
 * Local variables:
 * c-basic-offset: 8
 * End:
 */