⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 bt878.c

📁 linux环境下的dvb驱动程序
💻 C
📖 第 1 页 / 共 2 页
字号:
/* * bt878.c: part of the driver for the Pinnacle PCTV Sat DVB PCI card * * Copyright (C) 2002 Peter Hettkamp <peter.hettkamp@t-online.de> * * large parts based on the bttv driver * Copyright (C) 1996,97,98 Ralph  Metzler (rjkm@thp.uni-koeln.de) *                        & Marcus Metzler (mocm@thp.uni-koeln.de) * (c) 1999,2000 Gerd Knorr <kraxel@goldbach.in-berlin.de> * * 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * Or, point your browser to http://www.gnu.org/copyleft/gpl.html *  */#include <linux/version.h>#include <linux/module.h>#include <linux/kernel.h>#include <linux/pci.h>#include <asm/io.h>#include <linux/ioport.h>#include <asm/pgtable.h>#include <asm/page.h>#include <linux/types.h>#include <linux/interrupt.h>#include <linux/kmod.h>#include <linux/vmalloc.h>#include <linux/init.h>#include "dmxdev.h"#include "dvbdev.h"#include "bt878.h"#if (LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0))#include "dst-bt878.h"#else#include "../frontends/dst-bt878.h"#endif#include "dvb_functions.h"/**************************************//* Miscellaneous utility  definitions *//**************************************/unsigned int bt878_verbose = 1;unsigned int bt878_debug = 0;MODULE_PARM(bt878_verbose, "i");MODULE_PARM_DESC(bt878_verbose,		 "verbose startup messages, default is 1 (yes)");MODULE_PARM(bt878_debug, "i");MODULE_PARM_DESC(bt878_debug, "debug messages, default is 0 (no)");MODULE_LICENSE("GPL");int bt878_num;struct bt878 bt878[BT878_MAX];EXPORT_SYMBOL(bt878_debug);EXPORT_SYMBOL(bt878_verbose);EXPORT_SYMBOL(bt878_num);EXPORT_SYMBOL(bt878);#define btwrite(dat,adr)    bmtwrite((dat), (bt->bt878_mem+(adr)))#define btread(adr)         bmtread(bt->bt878_mem+(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)#if defined(dprintk)#undef dprintk#endif#define dprintk if(bt878_debug) printkstatic void bt878_mem_free(struct bt878 *bt){	if (bt->buf_cpu) {		pci_free_consistent(bt->dev, bt->buf_size, bt->buf_cpu,				    bt->buf_dma);		bt->buf_cpu = NULL;	}	if (bt->risc_cpu) {		pci_free_consistent(bt->dev, bt->risc_size, bt->risc_cpu,				    bt->risc_dma);		bt->risc_cpu = NULL;	}}static int bt878_mem_alloc(struct bt878 *bt){	if (!bt->buf_cpu) {		bt->buf_size = 128 * 1024;		bt->buf_cpu =		    pci_alloc_consistent(bt->dev, bt->buf_size,					 &bt->buf_dma);		if (!bt->buf_cpu)			return -ENOMEM;		memset(bt->buf_cpu, 0, bt->buf_size);	}	if (!bt->risc_cpu) {		bt->risc_size = PAGE_SIZE;		bt->risc_cpu =		    pci_alloc_consistent(bt->dev, bt->risc_size,					 &bt->risc_dma);		if (!bt->risc_cpu) {			bt878_mem_free(bt);			return -ENOMEM;		}		memset(bt->risc_cpu, 0, bt->risc_size);	}	return 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_STATUS(status)	((((~status) & 0x0F) << 20) | ((status & 0x0F) << 16))#define RISC_SYNC_RESYNC  	(1 << 15)#define RISC_SYNC_FM1     	0x06#define RISC_SYNC_VRO     	0x0C#define RISC_FLUSH()		bt->risc_pos = 0#define RISC_INSTR(instr) 	bt->risc_cpu[bt->risc_pos++] = cpu_to_le32(instr)static int bt878_make_risc(struct bt878 *bt){	bt->block_bytes = bt->buf_size >> 4;	bt->block_count = 1 << 4;	bt->line_bytes = bt->block_bytes;	bt->line_count = bt->block_count;	while (bt->line_bytes > 4095) {		bt->line_bytes >>= 1;		bt->line_count <<= 1;	}	if (bt->line_count > 255) {		printk("bt878: buffer size error!\n");		return -EINVAL;	}	return 0;}static void bt878_risc_program(struct bt878 *bt, u32 op_sync_orin){	u32 buf_pos = 0;	u32 line;	RISC_FLUSH();	RISC_INSTR(RISC_SYNC | RISC_SYNC_FM1 | op_sync_orin);	RISC_INSTR(0);	dprintk("bt878: risc len lines %u, bytes per line %u\n", 			bt->line_count, bt->line_bytes);	for (line = 0; line < bt->line_count; line++) {		// At the beginning of every block we issue an IRQ with previous (finished) block number set		if (!(buf_pos % bt->block_bytes))			RISC_INSTR(RISC_WRITE | RISC_WR_SOL | RISC_WR_EOL |				   RISC_IRQ |				   RISC_STATUS(((buf_pos /						 bt->block_bytes) +						(bt->block_count -						 1)) %					       bt->block_count) | bt->				   line_bytes);		else			RISC_INSTR(RISC_WRITE | RISC_WR_SOL | RISC_WR_EOL |				   bt->line_bytes);		RISC_INSTR(bt->buf_dma + buf_pos);		buf_pos += bt->line_bytes;	}	RISC_INSTR(RISC_SYNC | op_sync_orin | RISC_SYNC_VRO);	RISC_INSTR(0);	RISC_INSTR(RISC_JUMP);	RISC_INSTR(bt->risc_dma);	btwrite((bt->line_count << 16) | bt->line_bytes, BT878_APACK_LEN);}/*****************************//* Start/Stop grabbing funcs *//*****************************/void bt878_start(struct bt878 *bt, u32 controlreg, u32 op_sync_orin,		u32 irq_err_ignore){	u32 int_mask;	dprintk("bt878 debug: bt878_start (ctl=%8.8x)\n", controlreg);	/* complete the writing of the risc dma program now we have	 * the card specifics	 */	bt878_risc_program(bt, op_sync_orin);	controlreg &= ~0x1f;	controlreg |= 0x1b;	btwrite(cpu_to_le32(bt->risc_dma), BT878_ARISC_START);	/* original int mask had :	 *    6    2    8    4    0	 * 1111 1111 1000 0000 0000	 * SCERR|OCERR|PABORT|RIPERR|FDSR|FTRGT|FBUS|RISCI	 * Hacked for DST to:	 * SCERR | OCERR | FDSR | FTRGT | FBUS | RISCI	 */	int_mask = BT878_ASCERR | BT878_AOCERR | BT878_APABORT | 		BT878_ARIPERR | BT878_APPERR | BT878_AFDSR | BT878_AFTRGT | 		BT878_AFBUS | BT878_ARISCI;	/* ignore pesky bits */	int_mask &= ~irq_err_ignore;		btwrite(int_mask, BT878_AINT_MASK);	btwrite(controlreg, BT878_AGPIO_DMA_CTL);}void bt878_stop(struct bt878 *bt){	u32 stat;	int i = 0;	dprintk("bt878 debug: bt878_stop\n");	btwrite(0, BT878_AINT_MASK);	btand(~0x13, BT878_AGPIO_DMA_CTL);	do {		stat = btread(BT878_AINT_STAT);		if (!(stat & BT878_ARISC_EN))			break;		i++;	} while (i < 500);	dprintk("bt878(%d) debug: bt878_stop, i=%d, stat=0x%8.8x\n",		bt->nr, i, stat);}EXPORT_SYMBOL(bt878_start);EXPORT_SYMBOL(bt878_stop);/*****************************//* Interrupt service routine *//*****************************/static irqreturn_t bt878_irq(int irq, void *dev_id, struct pt_regs *regs){	u32 stat, astat, mask;	int count;	struct bt878 *bt;	bt = (struct bt878 *) dev_id;	count = 0;	while (1) {		stat = btread(BT878_AINT_STAT);		mask = btread(BT878_AINT_MASK);		if (!(astat = (stat & mask)))			return IRQ_NONE;	/* this interrupt is not for me *//*		dprintk("bt878(%d) debug: irq count %d, stat 0x%8.8x, mask 0x%8.8x\n",bt->nr,count,stat,mask); */		btwrite(astat, BT878_AINT_STAT);	/* try to clear interupt condition */		if (astat & (BT878_ASCERR | BT878_AOCERR)) {			if (bt878_verbose) {				printk("bt878(%d): irq%s%s risc_pc=%08x\n",				       bt->nr,				       (astat & BT878_ASCERR) ? " SCERR" :				       "",				       (astat & BT878_AOCERR) ? " OCERR" :				       "", btread(BT878_ARISC_PC));			}		}		if (astat & (BT878_APABORT | BT878_ARIPERR | BT878_APPERR)) {			if (bt878_verbose) {				printk				    ("bt878(%d): irq%s%s%s risc_pc=%08x\n",				     bt->nr,				     (astat & BT878_APABORT) ? " PABORT" :				     "",

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -