blob: 85e36a1d6d782d4c8c4581014e9944c9ec9e43dc [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * bt878.c: part of the driver for the Pinnacle PCTV Sat DVB PCI card
3 *
Johannes Stezenbacha8d995c2005-09-09 13:02:19 -07004 * Copyright (C) 2002 Peter Hettkamp <peter.hettkamp@htp-tel.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
6 * large parts based on the bttv driver
Johannes Stezenbach50b215a2005-05-16 21:54:41 -07007 * Copyright (C) 1996,97,98 Ralph Metzler (rjkm@metzlerbros.de)
8 * & Marcus Metzler (mocm@metzlerbros.de)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * (c) 1999,2000 Gerd Knorr <kraxel@goldbach.in-berlin.de>
10 *
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation; either version 2
14 * of the License, or (at your option) any later version.
Johannes Stezenbach43f1a8f2005-05-16 21:54:49 -070015 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070016
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
Johannes Stezenbach43f1a8f2005-05-16 21:54:49 -070021 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
26 * Or, point your browser to http://www.gnu.org/copyleft/gpl.html
Johannes Stezenbach43f1a8f2005-05-16 21:54:49 -070027 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 */
29
30#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/kernel.h>
32#include <linux/pci.h>
33#include <asm/io.h>
34#include <linux/ioport.h>
35#include <asm/pgtable.h>
36#include <asm/page.h>
37#include <linux/types.h>
38#include <linux/interrupt.h>
39#include <linux/kmod.h>
40#include <linux/vmalloc.h>
41#include <linux/init.h>
42
43#include "dmxdev.h"
44#include "dvbdev.h"
45#include "bt878.h"
46#include "dst_priv.h"
47
48
49/**************************************/
50/* Miscellaneous utility definitions */
51/**************************************/
52
53static unsigned int bt878_verbose = 1;
54static unsigned int bt878_debug;
55
56module_param_named(verbose, bt878_verbose, int, 0444);
57MODULE_PARM_DESC(verbose,
58 "verbose startup messages, default is 1 (yes)");
59module_param_named(debug, bt878_debug, int, 0644);
Johannes Stezenbach43f1a8f2005-05-16 21:54:49 -070060MODULE_PARM_DESC(debug, "Turn on/off debugging, default is 0 (off).");
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62int bt878_num;
63struct bt878 bt878[BT878_MAX];
64
Linus Torvalds1da177e2005-04-16 15:20:36 -070065EXPORT_SYMBOL(bt878_num);
66EXPORT_SYMBOL(bt878);
67
68#define btwrite(dat,adr) bmtwrite((dat), (bt->bt878_mem+(adr)))
69#define btread(adr) bmtread(bt->bt878_mem+(adr))
70
71#define btand(dat,adr) btwrite((dat) & btread(adr), adr)
72#define btor(dat,adr) btwrite((dat) | btread(adr), adr)
73#define btaor(dat,mask,adr) btwrite((dat) | ((mask) & btread(adr)), adr)
74
75#if defined(dprintk)
76#undef dprintk
77#endif
78#define dprintk if(bt878_debug) printk
79
80static void bt878_mem_free(struct bt878 *bt)
81{
82 if (bt->buf_cpu) {
83 pci_free_consistent(bt->dev, bt->buf_size, bt->buf_cpu,
84 bt->buf_dma);
85 bt->buf_cpu = NULL;
86 }
87
88 if (bt->risc_cpu) {
89 pci_free_consistent(bt->dev, bt->risc_size, bt->risc_cpu,
90 bt->risc_dma);
91 bt->risc_cpu = NULL;
92 }
93}
94
95static int bt878_mem_alloc(struct bt878 *bt)
96{
97 if (!bt->buf_cpu) {
98 bt->buf_size = 128 * 1024;
99
100 bt->buf_cpu =
101 pci_alloc_consistent(bt->dev, bt->buf_size,
102 &bt->buf_dma);
103
104 if (!bt->buf_cpu)
105 return -ENOMEM;
106
107 memset(bt->buf_cpu, 0, bt->buf_size);
108 }
109
110 if (!bt->risc_cpu) {
111 bt->risc_size = PAGE_SIZE;
112 bt->risc_cpu =
113 pci_alloc_consistent(bt->dev, bt->risc_size,
114 &bt->risc_dma);
115
116 if (!bt->risc_cpu) {
117 bt878_mem_free(bt);
118 return -ENOMEM;
119 }
120
121 memset(bt->risc_cpu, 0, bt->risc_size);
122 }
123
124 return 0;
125}
126
127/* RISC instructions */
Johannes Stezenbach43f1a8f2005-05-16 21:54:49 -0700128#define RISC_WRITE (0x01 << 28)
129#define RISC_JUMP (0x07 << 28)
130#define RISC_SYNC (0x08 << 28)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
132/* RISC bits */
Johannes Stezenbach43f1a8f2005-05-16 21:54:49 -0700133#define RISC_WR_SOL (1 << 27)
134#define RISC_WR_EOL (1 << 26)
135#define RISC_IRQ (1 << 24)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136#define RISC_STATUS(status) ((((~status) & 0x0F) << 20) | ((status & 0x0F) << 16))
Johannes Stezenbach43f1a8f2005-05-16 21:54:49 -0700137#define RISC_SYNC_RESYNC (1 << 15)
138#define RISC_SYNC_FM1 0x06
139#define RISC_SYNC_VRO 0x0C
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
141#define RISC_FLUSH() bt->risc_pos = 0
Johannes Stezenbach43f1a8f2005-05-16 21:54:49 -0700142#define RISC_INSTR(instr) bt->risc_cpu[bt->risc_pos++] = cpu_to_le32(instr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
144static int bt878_make_risc(struct bt878 *bt)
145{
146 bt->block_bytes = bt->buf_size >> 4;
147 bt->block_count = 1 << 4;
148 bt->line_bytes = bt->block_bytes;
149 bt->line_count = bt->block_count;
150
151 while (bt->line_bytes > 4095) {
152 bt->line_bytes >>= 1;
153 bt->line_count <<= 1;
154 }
155
156 if (bt->line_count > 255) {
157 printk("bt878: buffer size error!\n");
158 return -EINVAL;
159 }
160 return 0;
161}
162
163
164static void bt878_risc_program(struct bt878 *bt, u32 op_sync_orin)
165{
166 u32 buf_pos = 0;
167 u32 line;
168
169 RISC_FLUSH();
170 RISC_INSTR(RISC_SYNC | RISC_SYNC_FM1 | op_sync_orin);
171 RISC_INSTR(0);
172
Johannes Stezenbach43f1a8f2005-05-16 21:54:49 -0700173 dprintk("bt878: risc len lines %u, bytes per line %u\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 bt->line_count, bt->line_bytes);
175 for (line = 0; line < bt->line_count; line++) {
176 // At the beginning of every block we issue an IRQ with previous (finished) block number set
177 if (!(buf_pos % bt->block_bytes))
178 RISC_INSTR(RISC_WRITE | RISC_WR_SOL | RISC_WR_EOL |
179 RISC_IRQ |
180 RISC_STATUS(((buf_pos /
181 bt->block_bytes) +
182 (bt->block_count -
183 1)) %
184 bt->block_count) | bt->
185 line_bytes);
186 else
187 RISC_INSTR(RISC_WRITE | RISC_WR_SOL | RISC_WR_EOL |
188 bt->line_bytes);
189 RISC_INSTR(bt->buf_dma + buf_pos);
190 buf_pos += bt->line_bytes;
191 }
192
193 RISC_INSTR(RISC_SYNC | op_sync_orin | RISC_SYNC_VRO);
194 RISC_INSTR(0);
195
196 RISC_INSTR(RISC_JUMP);
197 RISC_INSTR(bt->risc_dma);
198
199 btwrite((bt->line_count << 16) | bt->line_bytes, BT878_APACK_LEN);
200}
201
202/*****************************/
203/* Start/Stop grabbing funcs */
204/*****************************/
205
206void bt878_start(struct bt878 *bt, u32 controlreg, u32 op_sync_orin,
207 u32 irq_err_ignore)
208{
209 u32 int_mask;
210
211 dprintk("bt878 debug: bt878_start (ctl=%8.8x)\n", controlreg);
212 /* complete the writing of the risc dma program now we have
213 * the card specifics
214 */
215 bt878_risc_program(bt, op_sync_orin);
216 controlreg &= ~0x1f;
217 controlreg |= 0x1b;
218
Johannes Stezenbach466d7252005-09-09 13:02:53 -0700219 btwrite(bt->risc_dma, BT878_ARISC_START);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
221 /* original int mask had :
222 * 6 2 8 4 0
223 * 1111 1111 1000 0000 0000
224 * SCERR|OCERR|PABORT|RIPERR|FDSR|FTRGT|FBUS|RISCI
225 * Hacked for DST to:
226 * SCERR | OCERR | FDSR | FTRGT | FBUS | RISCI
227 */
Johannes Stezenbach43f1a8f2005-05-16 21:54:49 -0700228 int_mask = BT878_ASCERR | BT878_AOCERR | BT878_APABORT |
229 BT878_ARIPERR | BT878_APPERR | BT878_AFDSR | BT878_AFTRGT |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 BT878_AFBUS | BT878_ARISCI;
231
232
233 /* ignore pesky bits */
234 int_mask &= ~irq_err_ignore;
Johannes Stezenbach43f1a8f2005-05-16 21:54:49 -0700235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 btwrite(int_mask, BT878_AINT_MASK);
237 btwrite(controlreg, BT878_AGPIO_DMA_CTL);
238}
239
240void bt878_stop(struct bt878 *bt)
241{
242 u32 stat;
243 int i = 0;
244
245 dprintk("bt878 debug: bt878_stop\n");
246
247 btwrite(0, BT878_AINT_MASK);
248 btand(~0x13, BT878_AGPIO_DMA_CTL);
249
250 do {
251 stat = btread(BT878_AINT_STAT);
252 if (!(stat & BT878_ARISC_EN))
253 break;
254 i++;
255 } while (i < 500);
256
257 dprintk("bt878(%d) debug: bt878_stop, i=%d, stat=0x%8.8x\n",
258 bt->nr, i, stat);
259}
260
261EXPORT_SYMBOL(bt878_start);
262EXPORT_SYMBOL(bt878_stop);
263
264/*****************************/
265/* Interrupt service routine */
266/*****************************/
267
David Howells7d12e782006-10-05 14:55:46 +0100268static irqreturn_t bt878_irq(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269{
270 u32 stat, astat, mask;
271 int count;
272 struct bt878 *bt;
273
274 bt = (struct bt878 *) dev_id;
275
276 count = 0;
277 while (1) {
278 stat = btread(BT878_AINT_STAT);
279 mask = btread(BT878_AINT_MASK);
280 if (!(astat = (stat & mask)))
281 return IRQ_NONE; /* this interrupt is not for me */
282/* dprintk("bt878(%d) debug: irq count %d, stat 0x%8.8x, mask 0x%8.8x\n",bt->nr,count,stat,mask); */
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +0200283 btwrite(astat, BT878_AINT_STAT); /* try to clear interrupt condition */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
285
286 if (astat & (BT878_ASCERR | BT878_AOCERR)) {
287 if (bt878_verbose) {
288 printk("bt878(%d): irq%s%s risc_pc=%08x\n",
289 bt->nr,
290 (astat & BT878_ASCERR) ? " SCERR" :
291 "",
292 (astat & BT878_AOCERR) ? " OCERR" :
293 "", btread(BT878_ARISC_PC));
294 }
295 }
296 if (astat & (BT878_APABORT | BT878_ARIPERR | BT878_APPERR)) {
297 if (bt878_verbose) {
298 printk
299 ("bt878(%d): irq%s%s%s risc_pc=%08x\n",
300 bt->nr,
301 (astat & BT878_APABORT) ? " PABORT" :
302 "",
303 (astat & BT878_ARIPERR) ? " RIPERR" :
304 "",
305 (astat & BT878_APPERR) ? " PPERR" :
306 "", btread(BT878_ARISC_PC));
307 }
308 }
309 if (astat & (BT878_AFDSR | BT878_AFTRGT | BT878_AFBUS)) {
310 if (bt878_verbose) {
311 printk
312 ("bt878(%d): irq%s%s%s risc_pc=%08x\n",
313 bt->nr,
314 (astat & BT878_AFDSR) ? " FDSR" : "",
315 (astat & BT878_AFTRGT) ? " FTRGT" :
316 "",
317 (astat & BT878_AFBUS) ? " FBUS" : "",
318 btread(BT878_ARISC_PC));
319 }
320 }
321 if (astat & BT878_ARISCI) {
322 bt->finished_block = (stat & BT878_ARISCS) >> 28;
323 tasklet_schedule(&bt->tasklet);
324 break;
325 }
326 count++;
327 if (count > 20) {
328 btwrite(0, BT878_AINT_MASK);
329 printk(KERN_ERR
330 "bt878(%d): IRQ lockup, cleared int mask\n",
331 bt->nr);
332 break;
333 }
334 }
335 return IRQ_HANDLED;
336}
337
338int
339bt878_device_control(struct bt878 *bt, unsigned int cmd, union dst_gpio_packet *mp)
340{
341 int retval;
342
343 retval = 0;
Ingo Molnar3593cab2006-02-07 06:49:14 -0200344 if (mutex_lock_interruptible(&bt->gpio_lock))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 return -ERESTARTSYS;
346 /* special gpio signal */
347 switch (cmd) {
348 case DST_IG_ENABLE:
349 // dprintk("dvb_bt8xx: dst enable mask 0x%02x enb 0x%02x \n", mp->dstg.enb.mask, mp->dstg.enb.enable);
350 retval = bttv_gpio_enable(bt->bttv_nr,
351 mp->enb.mask,
352 mp->enb.enable);
353 break;
354 case DST_IG_WRITE:
355 // dprintk("dvb_bt8xx: dst write gpio mask 0x%02x out 0x%02x\n", mp->dstg.outp.mask, mp->dstg.outp.highvals);
356 retval = bttv_write_gpio(bt->bttv_nr,
357 mp->outp.mask,
358 mp->outp.highvals);
359
360 break;
361 case DST_IG_READ:
362 /* read */
363 retval = bttv_read_gpio(bt->bttv_nr, &mp->rd.value);
364 // dprintk("dvb_bt8xx: dst read gpio 0x%02x\n", (unsigned)mp->dstg.rd.value);
365 break;
366 case DST_IG_TS:
367 /* Set packet size */
368 bt->TS_Size = mp->psize;
369 break;
370
371 default:
372 retval = -EINVAL;
373 break;
374 }
Ingo Molnar3593cab2006-02-07 06:49:14 -0200375 mutex_unlock(&bt->gpio_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 return retval;
377}
378
379EXPORT_SYMBOL(bt878_device_control);
380
Manu Abraham6a5b28f2006-02-07 06:45:30 -0200381
Manu Abraham36b36562006-02-27 00:07:52 -0300382static struct cards card_list[] __devinitdata = {
Manu Abraham6a5b28f2006-02-07 06:45:30 -0200383
384 { 0x01010071, BTTV_BOARD_NEBULA_DIGITV, "Nebula Electronics DigiTV" },
385 { 0x07611461, BTTV_BOARD_AVDVBT_761, "AverMedia AverTV DVB-T 761" },
386 { 0x001c11bd, BTTV_BOARD_PINNACLESAT, "Pinnacle PCTV Sat" },
387 { 0x002611bd, BTTV_BOARD_TWINHAN_DST, "Pinnacle PCTV SAT CI" },
388 { 0x00011822, BTTV_BOARD_TWINHAN_DST, "Twinhan VisionPlus DVB" },
389 { 0xfc00270f, BTTV_BOARD_TWINHAN_DST, "ChainTech digitop DST-1000 DVB-S" },
390 { 0x07711461, BTTV_BOARD_AVDVBT_771, "AVermedia AverTV DVB-T 771" },
391 { 0xdb1018ac, BTTV_BOARD_DVICO_DVBT_LITE, "DViCO FusionHDTV DVB-T Lite" },
Michael Krufky19790db2007-01-07 22:12:22 -0300392 { 0xdb1118ac, BTTV_BOARD_DVICO_DVBT_LITE, "Ultraview DVB-T Lite" },
Manu Abraham6a5b28f2006-02-07 06:45:30 -0200393 { 0xd50018ac, BTTV_BOARD_DVICO_FUSIONHDTV_5_LITE, "DViCO FusionHDTV 5 Lite" },
Cameron Hutchinson442d15d2006-06-21 18:45:31 -0300394 { 0x20007063, BTTV_BOARD_PC_HDTV, "pcHDTV HD-2000 TV" },
Akinobu Mita66ab6e02007-04-14 10:24:15 -0300395 { 0x00261822, BTTV_BOARD_TWINHAN_DST, "DNTV Live! Mini" }
Manu Abraham6a5b28f2006-02-07 06:45:30 -0200396};
397
398
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399/***********************/
400/* PCI device handling */
401/***********************/
402
403static int __devinit bt878_probe(struct pci_dev *dev,
404 const struct pci_device_id *pci_id)
405{
Manu Abraham6a5b28f2006-02-07 06:45:30 -0200406 int result = 0, has_dvb = 0, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 unsigned char lat;
408 struct bt878 *bt;
409#if defined(__powerpc__)
410 unsigned int cmd;
411#endif
Manu Abraham6a5b28f2006-02-07 06:45:30 -0200412 unsigned int cardid;
413 unsigned short id;
414 struct cards *dvb_cards;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
416 printk(KERN_INFO "bt878: Bt878 AUDIO function found (%d).\n",
417 bt878_num);
Sigmund Augdal Helberg77e0be12006-06-21 10:35:48 -0300418 if (bt878_num >= BT878_MAX) {
419 printk(KERN_ERR "bt878: Too many devices inserted\n");
420 result = -ENOMEM;
421 goto fail0;
422 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 if (pci_enable_device(dev))
424 return -EIO;
425
Manu Abraham6a5b28f2006-02-07 06:45:30 -0200426 pci_read_config_word(dev, PCI_SUBSYSTEM_ID, &id);
427 cardid = id << 16;
428 pci_read_config_word(dev, PCI_SUBSYSTEM_VENDOR_ID, &id);
429 cardid |= id;
430
431 for (i = 0, dvb_cards = card_list; i < ARRAY_SIZE(card_list); i++, dvb_cards++) {
432 if (cardid == dvb_cards->pci_id) {
433 printk("%s: card id=[0x%x],[ %s ] has DVB functions.\n",
434 __func__, cardid, dvb_cards->name);
435 has_dvb = 1;
436 }
437 }
438
439 if (!has_dvb) {
440 printk("%s: card id=[0x%x], Unknown card.\nExiting..\n", __func__, cardid);
441 result = -EINVAL;
442
443 goto fail0;
444 }
445
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 bt = &bt878[bt878_num];
447 bt->dev = dev;
448 bt->nr = bt878_num;
449 bt->shutdown = 0;
450
451 bt->id = dev->device;
452 bt->irq = dev->irq;
453 bt->bt878_adr = pci_resource_start(dev, 0);
454 if (!request_mem_region(pci_resource_start(dev, 0),
455 pci_resource_len(dev, 0), "bt878")) {
456 result = -EBUSY;
457 goto fail0;
458 }
459
460 pci_read_config_byte(dev, PCI_CLASS_REVISION, &bt->revision);
461 pci_read_config_byte(dev, PCI_LATENCY_TIMER, &lat);
Manu Abraham6a5b28f2006-02-07 06:45:30 -0200462
463
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 printk(KERN_INFO "bt878(%d): Bt%x (rev %d) at %02x:%02x.%x, ",
465 bt878_num, bt->id, bt->revision, dev->bus->number,
466 PCI_SLOT(dev->devfn), PCI_FUNC(dev->devfn));
467 printk("irq: %d, latency: %d, memory: 0x%lx\n",
468 bt->irq, lat, bt->bt878_adr);
469
470
471#if defined(__powerpc__)
472 /* on OpenFirmware machines (PowerMac at least), PCI memory cycle */
473 /* response on cards with no firmware is not enabled by OF */
474 pci_read_config_dword(dev, PCI_COMMAND, &cmd);
475 cmd = (cmd | PCI_COMMAND_MEMORY);
476 pci_write_config_dword(dev, PCI_COMMAND, cmd);
477#endif
478
479#ifdef __sparc__
480 bt->bt878_mem = (unsigned char *) bt->bt878_adr;
481#else
482 bt->bt878_mem = ioremap(bt->bt878_adr, 0x1000);
483#endif
484
485 /* clear interrupt mask */
486 btwrite(0, BT848_INT_MASK);
487
488 result = request_irq(bt->irq, bt878_irq,
Thomas Gleixner8076fe32006-07-01 19:29:37 -0700489 IRQF_SHARED | IRQF_DISABLED, "bt878",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 (void *) bt);
491 if (result == -EINVAL) {
492 printk(KERN_ERR "bt878(%d): Bad irq number or handler\n",
493 bt878_num);
494 goto fail1;
495 }
496 if (result == -EBUSY) {
497 printk(KERN_ERR
498 "bt878(%d): IRQ %d busy, change your PnP config in BIOS\n",
499 bt878_num, bt->irq);
500 goto fail1;
501 }
502 if (result < 0)
503 goto fail1;
504
505 pci_set_master(dev);
506 pci_set_drvdata(dev, bt);
507
508/* if(init_bt878(btv) < 0) {
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700509 bt878_remove(dev);
510 return -EIO;
511 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512*/
513
514 if ((result = bt878_mem_alloc(bt))) {
515 printk("bt878: failed to allocate memory!\n");
516 goto fail2;
517 }
518
519 bt878_make_risc(bt);
520 btwrite(0, BT878_AINT_MASK);
521 bt878_num++;
522
523 return 0;
524
525 fail2:
526 free_irq(bt->irq, bt);
527 fail1:
528 release_mem_region(pci_resource_start(bt->dev, 0),
529 pci_resource_len(bt->dev, 0));
530 fail0:
531 pci_disable_device(dev);
532 return result;
533}
534
535static void __devexit bt878_remove(struct pci_dev *pci_dev)
536{
537 u8 command;
538 struct bt878 *bt = pci_get_drvdata(pci_dev);
539
540 if (bt878_verbose)
541 printk("bt878(%d): unloading\n", bt->nr);
542
543 /* turn off all capturing, DMA and IRQs */
544 btand(~0x13, BT878_AGPIO_DMA_CTL);
545
546 /* first disable interrupts before unmapping the memory! */
547 btwrite(0, BT878_AINT_MASK);
548 btwrite(~0U, BT878_AINT_STAT);
549
550 /* disable PCI bus-mastering */
551 pci_read_config_byte(bt->dev, PCI_COMMAND, &command);
552 /* Should this be &=~ ?? */
553 command &= ~PCI_COMMAND_MASTER;
554 pci_write_config_byte(bt->dev, PCI_COMMAND, command);
555
556 free_irq(bt->irq, bt);
557 printk(KERN_DEBUG "bt878_mem: 0x%p.\n", bt->bt878_mem);
558 if (bt->bt878_mem)
559 iounmap(bt->bt878_mem);
560
561 release_mem_region(pci_resource_start(bt->dev, 0),
562 pci_resource_len(bt->dev, 0));
563 /* wake up any waiting processes
564 because shutdown flag is set, no new processes (in this queue)
565 are expected
566 */
567 bt->shutdown = 1;
568 bt878_mem_free(bt);
569
570 pci_set_drvdata(pci_dev, NULL);
571 pci_disable_device(pci_dev);
572 return;
573}
574
575static struct pci_device_id bt878_pci_tbl[] __devinitdata = {
576 {PCI_VENDOR_ID_BROOKTREE, PCI_DEVICE_ID_BROOKTREE_878,
577 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
578 {0,}
579};
580
581MODULE_DEVICE_TABLE(pci, bt878_pci_tbl);
582
583static struct pci_driver bt878_pci_driver = {
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700584 .name = "bt878",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 .id_table = bt878_pci_tbl,
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700586 .probe = bt878_probe,
587 .remove = bt878_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588};
589
Mauro Carvalho Chehaba5ed4252006-01-13 14:10:19 -0200590static int bt878_pci_driver_registered;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
592/*******************************/
593/* Module management functions */
594/*******************************/
595
596static int bt878_init_module(void)
597{
598 bt878_num = 0;
599 bt878_pci_driver_registered = 0;
600
601 printk(KERN_INFO "bt878: AUDIO driver version %d.%d.%d loaded\n",
602 (BT878_VERSION_CODE >> 16) & 0xff,
603 (BT878_VERSION_CODE >> 8) & 0xff,
604 BT878_VERSION_CODE & 0xff);
605/*
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700606 bt878_check_chipset();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607*/
608 /* later we register inside of bt878_find_audio_dma()
609 * because we may want to ignore certain cards */
610 bt878_pci_driver_registered = 1;
611 return pci_register_driver(&bt878_pci_driver);
612}
613
614static void bt878_cleanup_module(void)
615{
616 if (bt878_pci_driver_registered) {
617 bt878_pci_driver_registered = 0;
618 pci_unregister_driver(&bt878_pci_driver);
619 }
620 return;
621}
622
623module_init(bt878_init_module);
624module_exit(bt878_cleanup_module);
625
626//MODULE_AUTHOR("XXX");
627MODULE_LICENSE("GPL");
628
629/*
630 * Local variables:
631 * c-basic-offset: 8
632 * End:
633 */