[679] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later
|
---|
[358] | 2 | /*
|
---|
| 3 | * bt87x.c - Brooktree Bt878/Bt879 driver for ALSA
|
---|
| 4 | *
|
---|
| 5 | * Copyright (c) Clemens Ladisch <clemens@ladisch.de>
|
---|
| 6 | *
|
---|
| 7 | * based on btaudio.c by Gerd Knorr <kraxel@bytesex.org>
|
---|
| 8 | */
|
---|
| 9 |
|
---|
[679] | 10 | #ifdef TARGET_OS2
|
---|
| 11 | #define KBUILD_MODNAME "bt87x"
|
---|
| 12 | #endif
|
---|
| 13 |
|
---|
[358] | 14 | #include <linux/init.h>
|
---|
| 15 | #include <linux/interrupt.h>
|
---|
| 16 | #include <linux/pci.h>
|
---|
| 17 | #include <linux/slab.h>
|
---|
[679] | 18 | #include <linux/module.h>
|
---|
[358] | 19 | #include <linux/bitops.h>
|
---|
[679] | 20 | #include <linux/io.h>
|
---|
[358] | 21 | #include <sound/core.h>
|
---|
| 22 | #include <sound/pcm.h>
|
---|
| 23 | #include <sound/pcm_params.h>
|
---|
| 24 | #include <sound/control.h>
|
---|
| 25 | #include <sound/initval.h>
|
---|
| 26 |
|
---|
| 27 | MODULE_AUTHOR("Clemens Ladisch <clemens@ladisch.de>");
|
---|
| 28 | MODULE_DESCRIPTION("Brooktree Bt87x audio driver");
|
---|
| 29 | MODULE_LICENSE("GPL");
|
---|
| 30 |
|
---|
| 31 | #ifndef TARGET_OS2
|
---|
| 32 | static int index[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = -2}; /* Exclude the first card */
|
---|
| 33 | static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */
|
---|
| 34 | #else
|
---|
| 35 | static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */
|
---|
| 36 | static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */
|
---|
| 37 | #endif
|
---|
[679] | 38 | static bool enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP; /* Enable this card */
|
---|
[358] | 39 | static int digital_rate[SNDRV_CARDS]; /* digital input rate */
|
---|
[679] | 40 | static bool load_all; /* allow to load cards not the allowlist */
|
---|
[358] | 41 |
|
---|
| 42 | module_param_array(index, int, NULL, 0444);
|
---|
| 43 | MODULE_PARM_DESC(index, "Index value for Bt87x soundcard");
|
---|
| 44 | module_param_array(id, charp, NULL, 0444);
|
---|
| 45 | MODULE_PARM_DESC(id, "ID string for Bt87x soundcard");
|
---|
| 46 | module_param_array(enable, bool, NULL, 0444);
|
---|
| 47 | MODULE_PARM_DESC(enable, "Enable Bt87x soundcard");
|
---|
| 48 | module_param_array(digital_rate, int, NULL, 0444);
|
---|
| 49 | MODULE_PARM_DESC(digital_rate, "Digital input rate for Bt87x soundcard");
|
---|
| 50 | module_param(load_all, bool, 0444);
|
---|
[679] | 51 | MODULE_PARM_DESC(load_all, "Allow to load cards not on the allowlist");
|
---|
[358] | 52 |
|
---|
| 53 |
|
---|
| 54 | /* register offsets */
|
---|
| 55 | #define REG_INT_STAT 0x100 /* interrupt status */
|
---|
| 56 | #define REG_INT_MASK 0x104 /* interrupt mask */
|
---|
| 57 | #define REG_GPIO_DMA_CTL 0x10c /* audio control */
|
---|
| 58 | #define REG_PACKET_LEN 0x110 /* audio packet lengths */
|
---|
| 59 | #define REG_RISC_STRT_ADD 0x114 /* RISC program start address */
|
---|
| 60 | #define REG_RISC_COUNT 0x120 /* RISC program counter */
|
---|
| 61 |
|
---|
| 62 | /* interrupt bits */
|
---|
| 63 | #define INT_OFLOW (1 << 3) /* audio A/D overflow */
|
---|
| 64 | #define INT_RISCI (1 << 11) /* RISC instruction IRQ bit set */
|
---|
| 65 | #define INT_FBUS (1 << 12) /* FIFO overrun due to bus access latency */
|
---|
| 66 | #define INT_FTRGT (1 << 13) /* FIFO overrun due to target latency */
|
---|
| 67 | #define INT_FDSR (1 << 14) /* FIFO data stream resynchronization */
|
---|
| 68 | #define INT_PPERR (1 << 15) /* PCI parity error */
|
---|
| 69 | #define INT_RIPERR (1 << 16) /* RISC instruction parity error */
|
---|
| 70 | #define INT_PABORT (1 << 17) /* PCI master or target abort */
|
---|
| 71 | #define INT_OCERR (1 << 18) /* invalid opcode */
|
---|
| 72 | #define INT_SCERR (1 << 19) /* sync counter overflow */
|
---|
| 73 | #define INT_RISC_EN (1 << 27) /* DMA controller running */
|
---|
| 74 | #define INT_RISCS_SHIFT 28 /* RISC status bits */
|
---|
| 75 |
|
---|
| 76 | /* audio control bits */
|
---|
| 77 | #define CTL_FIFO_ENABLE (1 << 0) /* enable audio data FIFO */
|
---|
| 78 | #define CTL_RISC_ENABLE (1 << 1) /* enable audio DMA controller */
|
---|
| 79 | #define CTL_PKTP_4 (0 << 2) /* packet mode FIFO trigger point - 4 DWORDs */
|
---|
| 80 | #define CTL_PKTP_8 (1 << 2) /* 8 DWORDs */
|
---|
| 81 | #define CTL_PKTP_16 (2 << 2) /* 16 DWORDs */
|
---|
| 82 | #define CTL_ACAP_EN (1 << 4) /* enable audio capture */
|
---|
| 83 | #define CTL_DA_APP (1 << 5) /* GPIO input */
|
---|
| 84 | #define CTL_DA_IOM_AFE (0 << 6) /* audio A/D input */
|
---|
| 85 | #define CTL_DA_IOM_DA (1 << 6) /* digital audio input */
|
---|
| 86 | #define CTL_DA_SDR_SHIFT 8 /* DDF first stage decimation rate */
|
---|
| 87 | #define CTL_DA_SDR_MASK (0xf<< 8)
|
---|
| 88 | #define CTL_DA_LMT (1 << 12) /* limit audio data values */
|
---|
| 89 | #define CTL_DA_ES2 (1 << 13) /* enable DDF stage 2 */
|
---|
| 90 | #define CTL_DA_SBR (1 << 14) /* samples rounded to 8 bits */
|
---|
| 91 | #define CTL_DA_DPM (1 << 15) /* data packet mode */
|
---|
| 92 | #define CTL_DA_LRD_SHIFT 16 /* ALRCK delay */
|
---|
| 93 | #define CTL_DA_MLB (1 << 21) /* MSB/LSB format */
|
---|
| 94 | #define CTL_DA_LRI (1 << 22) /* left/right indication */
|
---|
| 95 | #define CTL_DA_SCE (1 << 23) /* sample clock edge */
|
---|
| 96 | #define CTL_A_SEL_STV (0 << 24) /* TV tuner audio input */
|
---|
| 97 | #define CTL_A_SEL_SFM (1 << 24) /* FM audio input */
|
---|
| 98 | #define CTL_A_SEL_SML (2 << 24) /* mic/line audio input */
|
---|
| 99 | #define CTL_A_SEL_SMXC (3 << 24) /* MUX bypass */
|
---|
| 100 | #define CTL_A_SEL_SHIFT 24
|
---|
| 101 | #define CTL_A_SEL_MASK (3 << 24)
|
---|
| 102 | #define CTL_A_PWRDN (1 << 26) /* analog audio power-down */
|
---|
| 103 | #define CTL_A_G2X (1 << 27) /* audio gain boost */
|
---|
| 104 | #define CTL_A_GAIN_SHIFT 28 /* audio input gain */
|
---|
| 105 | #define CTL_A_GAIN_MASK (0xf<<28)
|
---|
| 106 |
|
---|
| 107 | /* RISC instruction opcodes */
|
---|
| 108 | #define RISC_WRITE (0x1 << 28) /* write FIFO data to memory at address */
|
---|
| 109 | #define RISC_WRITEC (0x5 << 28) /* write FIFO data to memory at current address */
|
---|
| 110 | #define RISC_SKIP (0x2 << 28) /* skip FIFO data */
|
---|
| 111 | #define RISC_JUMP (0x7 << 28) /* jump to address */
|
---|
| 112 | #define RISC_SYNC (0x8 << 28) /* synchronize with FIFO */
|
---|
| 113 |
|
---|
| 114 | /* RISC instruction bits */
|
---|
| 115 | #define RISC_BYTES_ENABLE (0xf << 12) /* byte enable bits */
|
---|
| 116 | #define RISC_RESYNC ( 1 << 15) /* disable FDSR errors */
|
---|
| 117 | #define RISC_SET_STATUS_SHIFT 16 /* set status bits */
|
---|
| 118 | #define RISC_RESET_STATUS_SHIFT 20 /* clear status bits */
|
---|
| 119 | #define RISC_IRQ ( 1 << 24) /* interrupt */
|
---|
| 120 | #define RISC_EOL ( 1 << 26) /* end of line */
|
---|
| 121 | #define RISC_SOL ( 1 << 27) /* start of line */
|
---|
| 122 |
|
---|
| 123 | /* SYNC status bits values */
|
---|
| 124 | #define RISC_SYNC_FM1 0x6
|
---|
| 125 | #define RISC_SYNC_VRO 0xc
|
---|
| 126 |
|
---|
| 127 | #define ANALOG_CLOCK 1792000
|
---|
| 128 | #ifdef CONFIG_SND_BT87X_OVERCLOCK
|
---|
| 129 | #define CLOCK_DIV_MIN 1
|
---|
| 130 | #else
|
---|
| 131 | #define CLOCK_DIV_MIN 4
|
---|
| 132 | #endif
|
---|
| 133 | #define CLOCK_DIV_MAX 15
|
---|
| 134 |
|
---|
| 135 | #define ERROR_INTERRUPTS (INT_FBUS | INT_FTRGT | INT_PPERR | \
|
---|
| 136 | INT_RIPERR | INT_PABORT | INT_OCERR)
|
---|
| 137 | #define MY_INTERRUPTS (INT_RISCI | ERROR_INTERRUPTS)
|
---|
| 138 |
|
---|
| 139 | /* SYNC, one WRITE per line, one extra WRITE per page boundary, SYNC, JUMP */
|
---|
| 140 | #define MAX_RISC_SIZE ((1 + 255 + (PAGE_ALIGN(255 * 4092) / PAGE_SIZE - 1) + 1 + 1) * 8)
|
---|
| 141 |
|
---|
| 142 | /* Cards with configuration information */
|
---|
| 143 | enum snd_bt87x_boardid {
|
---|
| 144 | SND_BT87X_BOARD_UNKNOWN,
|
---|
| 145 | SND_BT87X_BOARD_GENERIC, /* both an & dig interfaces, 32kHz */
|
---|
| 146 | SND_BT87X_BOARD_ANALOG, /* board with no external A/D */
|
---|
| 147 | SND_BT87X_BOARD_OSPREY2x0,
|
---|
| 148 | SND_BT87X_BOARD_OSPREY440,
|
---|
| 149 | SND_BT87X_BOARD_AVPHONE98,
|
---|
| 150 | };
|
---|
| 151 |
|
---|
| 152 | /* Card configuration */
|
---|
| 153 | struct snd_bt87x_board {
|
---|
| 154 | int dig_rate; /* Digital input sampling rate */
|
---|
| 155 | u32 digital_fmt; /* Register settings for digital input */
|
---|
| 156 | unsigned no_analog:1; /* No analog input */
|
---|
| 157 | unsigned no_digital:1; /* No digital input */
|
---|
| 158 | };
|
---|
| 159 |
|
---|
[679] | 160 | static const struct snd_bt87x_board snd_bt87x_boards[] = {
|
---|
[358] | 161 | [SND_BT87X_BOARD_UNKNOWN] = {
|
---|
| 162 | .dig_rate = 32000, /* just a guess */
|
---|
| 163 | },
|
---|
| 164 | [SND_BT87X_BOARD_GENERIC] = {
|
---|
| 165 | .dig_rate = 32000,
|
---|
| 166 | },
|
---|
| 167 | [SND_BT87X_BOARD_ANALOG] = {
|
---|
| 168 | .no_digital = 1,
|
---|
| 169 | },
|
---|
| 170 | [SND_BT87X_BOARD_OSPREY2x0] = {
|
---|
| 171 | .dig_rate = 44100,
|
---|
| 172 | .digital_fmt = CTL_DA_LRI | (1 << CTL_DA_LRD_SHIFT),
|
---|
| 173 | },
|
---|
| 174 | [SND_BT87X_BOARD_OSPREY440] = {
|
---|
| 175 | .dig_rate = 32000,
|
---|
| 176 | .digital_fmt = CTL_DA_LRI | (1 << CTL_DA_LRD_SHIFT),
|
---|
| 177 | .no_analog = 1,
|
---|
| 178 | },
|
---|
| 179 | [SND_BT87X_BOARD_AVPHONE98] = {
|
---|
| 180 | .dig_rate = 48000,
|
---|
| 181 | },
|
---|
| 182 | };
|
---|
| 183 |
|
---|
| 184 | struct snd_bt87x {
|
---|
| 185 | struct snd_card *card;
|
---|
| 186 | struct pci_dev *pci;
|
---|
| 187 | struct snd_bt87x_board board;
|
---|
| 188 |
|
---|
| 189 | void __iomem *mmio;
|
---|
| 190 | int irq;
|
---|
| 191 |
|
---|
| 192 | spinlock_t reg_lock;
|
---|
| 193 | unsigned long opened;
|
---|
| 194 | struct snd_pcm_substream *substream;
|
---|
| 195 |
|
---|
| 196 | struct snd_dma_buffer dma_risc;
|
---|
| 197 | unsigned int line_bytes;
|
---|
| 198 | unsigned int lines;
|
---|
| 199 |
|
---|
| 200 | u32 reg_control;
|
---|
| 201 | u32 interrupt_mask;
|
---|
| 202 |
|
---|
| 203 | int current_line;
|
---|
| 204 |
|
---|
| 205 | int pci_parity_errors;
|
---|
| 206 | };
|
---|
| 207 |
|
---|
| 208 | enum { DEVICE_DIGITAL, DEVICE_ANALOG };
|
---|
| 209 |
|
---|
| 210 | static inline u32 snd_bt87x_readl(struct snd_bt87x *chip, u32 reg)
|
---|
| 211 | {
|
---|
| 212 | return readl(chip->mmio + reg);
|
---|
| 213 | }
|
---|
| 214 |
|
---|
| 215 | static inline void snd_bt87x_writel(struct snd_bt87x *chip, u32 reg, u32 value)
|
---|
| 216 | {
|
---|
| 217 | writel(value, chip->mmio + reg);
|
---|
| 218 | }
|
---|
| 219 |
|
---|
| 220 | static int snd_bt87x_create_risc(struct snd_bt87x *chip, struct snd_pcm_substream *substream,
|
---|
| 221 | unsigned int periods, unsigned int period_bytes)
|
---|
| 222 | {
|
---|
| 223 | unsigned int i, offset;
|
---|
[679] | 224 | __le32 *risc;
|
---|
[358] | 225 |
|
---|
| 226 | if (chip->dma_risc.area == NULL) {
|
---|
[679] | 227 | if (snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV, &chip->pci->dev,
|
---|
[358] | 228 | PAGE_ALIGN(MAX_RISC_SIZE), &chip->dma_risc) < 0)
|
---|
| 229 | return -ENOMEM;
|
---|
| 230 | }
|
---|
[679] | 231 | risc = (__le32 *)chip->dma_risc.area;
|
---|
[358] | 232 | offset = 0;
|
---|
| 233 | *risc++ = cpu_to_le32(RISC_SYNC | RISC_SYNC_FM1);
|
---|
| 234 | *risc++ = cpu_to_le32(0);
|
---|
| 235 | for (i = 0; i < periods; ++i) {
|
---|
| 236 | u32 rest;
|
---|
| 237 |
|
---|
| 238 | rest = period_bytes;
|
---|
| 239 | do {
|
---|
| 240 | u32 cmd, len;
|
---|
[399] | 241 | unsigned int addr;
|
---|
[358] | 242 |
|
---|
| 243 | len = PAGE_SIZE - (offset % PAGE_SIZE);
|
---|
| 244 | if (len > rest)
|
---|
| 245 | len = rest;
|
---|
| 246 | cmd = RISC_WRITE | len;
|
---|
| 247 | if (rest == period_bytes) {
|
---|
| 248 | u32 block = i * 16 / periods;
|
---|
| 249 | cmd |= RISC_SOL;
|
---|
| 250 | cmd |= block << RISC_SET_STATUS_SHIFT;
|
---|
| 251 | cmd |= (~block & 0xf) << RISC_RESET_STATUS_SHIFT;
|
---|
| 252 | }
|
---|
| 253 | if (len == rest)
|
---|
| 254 | cmd |= RISC_EOL | RISC_IRQ;
|
---|
| 255 | *risc++ = cpu_to_le32(cmd);
|
---|
[399] | 256 | addr = snd_pcm_sgbuf_get_addr(substream, offset);
|
---|
| 257 | *risc++ = cpu_to_le32(addr);
|
---|
[358] | 258 | offset += len;
|
---|
| 259 | rest -= len;
|
---|
| 260 | } while (rest > 0);
|
---|
| 261 | }
|
---|
| 262 | *risc++ = cpu_to_le32(RISC_SYNC | RISC_SYNC_VRO);
|
---|
| 263 | *risc++ = cpu_to_le32(0);
|
---|
| 264 | *risc++ = cpu_to_le32(RISC_JUMP);
|
---|
| 265 | *risc++ = cpu_to_le32(chip->dma_risc.addr);
|
---|
| 266 | chip->line_bytes = period_bytes;
|
---|
| 267 | chip->lines = periods;
|
---|
| 268 | return 0;
|
---|
| 269 | }
|
---|
| 270 |
|
---|
| 271 | static void snd_bt87x_free_risc(struct snd_bt87x *chip)
|
---|
| 272 | {
|
---|
| 273 | if (chip->dma_risc.area) {
|
---|
| 274 | snd_dma_free_pages(&chip->dma_risc);
|
---|
| 275 | chip->dma_risc.area = NULL;
|
---|
| 276 | }
|
---|
| 277 | }
|
---|
| 278 |
|
---|
| 279 | static void snd_bt87x_pci_error(struct snd_bt87x *chip, unsigned int status)
|
---|
| 280 | {
|
---|
[679] | 281 | int pci_status = pci_status_get_and_clear_errors(chip->pci);
|
---|
[358] | 282 |
|
---|
| 283 | if (pci_status != PCI_STATUS_DETECTED_PARITY)
|
---|
[679] | 284 | dev_err(chip->card->dev,
|
---|
| 285 | "Aieee - PCI error! status %#08x, PCI status %#04x\n",
|
---|
[358] | 286 | status & ERROR_INTERRUPTS, pci_status);
|
---|
| 287 | else {
|
---|
[679] | 288 | dev_err(chip->card->dev,
|
---|
| 289 | "Aieee - PCI parity error detected!\n");
|
---|
[358] | 290 | /* error 'handling' similar to aic7xxx_pci.c: */
|
---|
| 291 | chip->pci_parity_errors++;
|
---|
| 292 | if (chip->pci_parity_errors > 20) {
|
---|
[679] | 293 | dev_err(chip->card->dev,
|
---|
| 294 | "Too many PCI parity errors observed.\n");
|
---|
| 295 | dev_err(chip->card->dev,
|
---|
| 296 | "Some device on this bus is generating bad parity.\n");
|
---|
| 297 | dev_err(chip->card->dev,
|
---|
| 298 | "This is an error *observed by*, not *generated by*, this card.\n");
|
---|
| 299 | dev_err(chip->card->dev,
|
---|
| 300 | "PCI parity error checking has been disabled.\n");
|
---|
[358] | 301 | chip->interrupt_mask &= ~(INT_PPERR | INT_RIPERR);
|
---|
| 302 | snd_bt87x_writel(chip, REG_INT_MASK, chip->interrupt_mask);
|
---|
| 303 | }
|
---|
| 304 | }
|
---|
| 305 | }
|
---|
| 306 |
|
---|
| 307 | static irqreturn_t snd_bt87x_interrupt(int irq, void *dev_id)
|
---|
| 308 | {
|
---|
| 309 | struct snd_bt87x *chip = dev_id;
|
---|
| 310 | unsigned int status, irq_status;
|
---|
| 311 |
|
---|
| 312 | status = snd_bt87x_readl(chip, REG_INT_STAT);
|
---|
| 313 | irq_status = status & chip->interrupt_mask;
|
---|
| 314 | if (!irq_status)
|
---|
| 315 | return IRQ_NONE;
|
---|
| 316 | snd_bt87x_writel(chip, REG_INT_STAT, irq_status);
|
---|
| 317 |
|
---|
| 318 | if (irq_status & ERROR_INTERRUPTS) {
|
---|
| 319 | if (irq_status & (INT_FBUS | INT_FTRGT))
|
---|
[679] | 320 | dev_warn(chip->card->dev,
|
---|
| 321 | "FIFO overrun, status %#08x\n", status);
|
---|
[358] | 322 | if (irq_status & INT_OCERR)
|
---|
[679] | 323 | dev_err(chip->card->dev,
|
---|
| 324 | "internal RISC error, status %#08x\n", status);
|
---|
[358] | 325 | if (irq_status & (INT_PPERR | INT_RIPERR | INT_PABORT))
|
---|
| 326 | snd_bt87x_pci_error(chip, irq_status);
|
---|
| 327 | }
|
---|
| 328 | if ((irq_status & INT_RISCI) && (chip->reg_control & CTL_ACAP_EN)) {
|
---|
| 329 | int current_block, irq_block;
|
---|
| 330 |
|
---|
| 331 | /* assume that exactly one line has been recorded */
|
---|
| 332 | chip->current_line = (chip->current_line + 1) % chip->lines;
|
---|
| 333 | /* but check if some interrupts have been skipped */
|
---|
| 334 | current_block = chip->current_line * 16 / chip->lines;
|
---|
| 335 | irq_block = status >> INT_RISCS_SHIFT;
|
---|
| 336 | if (current_block != irq_block)
|
---|
[695] | 337 | chip->current_line = DIV_ROUND_UP(irq_block * chip->lines,
|
---|
| 338 | 16);
|
---|
[358] | 339 |
|
---|
| 340 | snd_pcm_period_elapsed(chip->substream);
|
---|
| 341 | }
|
---|
| 342 | return IRQ_HANDLED;
|
---|
| 343 | }
|
---|
| 344 |
|
---|
[679] | 345 | static const struct snd_pcm_hardware snd_bt87x_digital_hw = {
|
---|
[358] | 346 | .info = SNDRV_PCM_INFO_MMAP |
|
---|
| 347 | SNDRV_PCM_INFO_INTERLEAVED |
|
---|
| 348 | SNDRV_PCM_INFO_BLOCK_TRANSFER |
|
---|
[464] | 349 | SNDRV_PCM_INFO_MMAP_VALID |
|
---|
| 350 | SNDRV_PCM_INFO_BATCH,
|
---|
[358] | 351 | .formats = SNDRV_PCM_FMTBIT_S16_LE,
|
---|
| 352 | .rates = 0, /* set at runtime */
|
---|
| 353 | .channels_min = 2,
|
---|
| 354 | .channels_max = 2,
|
---|
| 355 | .buffer_bytes_max = 255 * 4092,
|
---|
| 356 | .period_bytes_min = 32,
|
---|
| 357 | .period_bytes_max = 4092,
|
---|
| 358 | .periods_min = 2,
|
---|
| 359 | .periods_max = 255,
|
---|
| 360 | };
|
---|
| 361 |
|
---|
[679] | 362 | static const struct snd_pcm_hardware snd_bt87x_analog_hw = {
|
---|
[358] | 363 | .info = SNDRV_PCM_INFO_MMAP |
|
---|
| 364 | SNDRV_PCM_INFO_INTERLEAVED |
|
---|
| 365 | SNDRV_PCM_INFO_BLOCK_TRANSFER |
|
---|
[464] | 366 | SNDRV_PCM_INFO_MMAP_VALID |
|
---|
| 367 | SNDRV_PCM_INFO_BATCH,
|
---|
[358] | 368 | .formats = SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S8,
|
---|
| 369 | .rates = SNDRV_PCM_RATE_KNOT,
|
---|
| 370 | .rate_min = ANALOG_CLOCK / CLOCK_DIV_MAX,
|
---|
| 371 | .rate_max = ANALOG_CLOCK / CLOCK_DIV_MIN,
|
---|
| 372 | .channels_min = 1,
|
---|
| 373 | .channels_max = 1,
|
---|
| 374 | .buffer_bytes_max = 255 * 4092,
|
---|
| 375 | .period_bytes_min = 32,
|
---|
| 376 | .period_bytes_max = 4092,
|
---|
| 377 | .periods_min = 2,
|
---|
| 378 | .periods_max = 255,
|
---|
| 379 | };
|
---|
| 380 |
|
---|
| 381 | static int snd_bt87x_set_digital_hw(struct snd_bt87x *chip, struct snd_pcm_runtime *runtime)
|
---|
| 382 | {
|
---|
| 383 | chip->reg_control |= CTL_DA_IOM_DA | CTL_A_PWRDN;
|
---|
| 384 | runtime->hw = snd_bt87x_digital_hw;
|
---|
| 385 | runtime->hw.rates = snd_pcm_rate_to_rate_bit(chip->board.dig_rate);
|
---|
| 386 | runtime->hw.rate_min = chip->board.dig_rate;
|
---|
| 387 | runtime->hw.rate_max = chip->board.dig_rate;
|
---|
| 388 | return 0;
|
---|
| 389 | }
|
---|
| 390 |
|
---|
| 391 | static int snd_bt87x_set_analog_hw(struct snd_bt87x *chip, struct snd_pcm_runtime *runtime)
|
---|
| 392 | {
|
---|
[679] | 393 | static const struct snd_ratnum analog_clock = {
|
---|
[358] | 394 | .num = ANALOG_CLOCK,
|
---|
| 395 | .den_min = CLOCK_DIV_MIN,
|
---|
| 396 | .den_max = CLOCK_DIV_MAX,
|
---|
| 397 | .den_step = 1
|
---|
| 398 | };
|
---|
[679] | 399 | static const struct snd_pcm_hw_constraint_ratnums constraint_rates = {
|
---|
[358] | 400 | .nrats = 1,
|
---|
| 401 | .rats = &analog_clock
|
---|
| 402 | };
|
---|
| 403 |
|
---|
| 404 | chip->reg_control &= ~(CTL_DA_IOM_DA | CTL_A_PWRDN);
|
---|
| 405 | runtime->hw = snd_bt87x_analog_hw;
|
---|
| 406 | return snd_pcm_hw_constraint_ratnums(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
|
---|
| 407 | &constraint_rates);
|
---|
| 408 | }
|
---|
| 409 |
|
---|
| 410 | static int snd_bt87x_pcm_open(struct snd_pcm_substream *substream)
|
---|
| 411 | {
|
---|
| 412 | struct snd_bt87x *chip = snd_pcm_substream_chip(substream);
|
---|
| 413 | struct snd_pcm_runtime *runtime = substream->runtime;
|
---|
| 414 | int err;
|
---|
| 415 |
|
---|
| 416 | if (test_and_set_bit(0, &chip->opened))
|
---|
| 417 | return -EBUSY;
|
---|
| 418 |
|
---|
| 419 | if (substream->pcm->device == DEVICE_DIGITAL)
|
---|
| 420 | err = snd_bt87x_set_digital_hw(chip, runtime);
|
---|
| 421 | else
|
---|
| 422 | err = snd_bt87x_set_analog_hw(chip, runtime);
|
---|
| 423 | if (err < 0)
|
---|
| 424 | goto _error;
|
---|
| 425 |
|
---|
| 426 | err = snd_pcm_hw_constraint_integer(runtime, SNDRV_PCM_HW_PARAM_PERIODS);
|
---|
| 427 | if (err < 0)
|
---|
| 428 | goto _error;
|
---|
| 429 |
|
---|
| 430 | chip->substream = substream;
|
---|
| 431 | return 0;
|
---|
| 432 |
|
---|
| 433 | _error:
|
---|
| 434 | clear_bit(0, &chip->opened);
|
---|
[679] | 435 | smp_mb__after_atomic();
|
---|
[358] | 436 | return err;
|
---|
| 437 | }
|
---|
| 438 |
|
---|
| 439 | static int snd_bt87x_close(struct snd_pcm_substream *substream)
|
---|
| 440 | {
|
---|
| 441 | struct snd_bt87x *chip = snd_pcm_substream_chip(substream);
|
---|
| 442 |
|
---|
| 443 | spin_lock_irq(&chip->reg_lock);
|
---|
| 444 | chip->reg_control |= CTL_A_PWRDN;
|
---|
| 445 | snd_bt87x_writel(chip, REG_GPIO_DMA_CTL, chip->reg_control);
|
---|
| 446 | spin_unlock_irq(&chip->reg_lock);
|
---|
| 447 |
|
---|
| 448 | chip->substream = NULL;
|
---|
| 449 | clear_bit(0, &chip->opened);
|
---|
[679] | 450 | smp_mb__after_atomic();
|
---|
[358] | 451 | return 0;
|
---|
| 452 | }
|
---|
| 453 |
|
---|
| 454 | static int snd_bt87x_hw_params(struct snd_pcm_substream *substream,
|
---|
| 455 | struct snd_pcm_hw_params *hw_params)
|
---|
| 456 | {
|
---|
| 457 | struct snd_bt87x *chip = snd_pcm_substream_chip(substream);
|
---|
| 458 |
|
---|
| 459 | return snd_bt87x_create_risc(chip, substream,
|
---|
| 460 | params_periods(hw_params),
|
---|
| 461 | params_period_bytes(hw_params));
|
---|
| 462 | }
|
---|
| 463 |
|
---|
| 464 | static int snd_bt87x_hw_free(struct snd_pcm_substream *substream)
|
---|
| 465 | {
|
---|
| 466 | struct snd_bt87x *chip = snd_pcm_substream_chip(substream);
|
---|
| 467 |
|
---|
| 468 | snd_bt87x_free_risc(chip);
|
---|
| 469 | return 0;
|
---|
| 470 | }
|
---|
| 471 |
|
---|
| 472 | static int snd_bt87x_prepare(struct snd_pcm_substream *substream)
|
---|
| 473 | {
|
---|
| 474 | struct snd_bt87x *chip = snd_pcm_substream_chip(substream);
|
---|
| 475 | struct snd_pcm_runtime *runtime = substream->runtime;
|
---|
| 476 | int decimation;
|
---|
| 477 |
|
---|
| 478 | spin_lock_irq(&chip->reg_lock);
|
---|
| 479 | chip->reg_control &= ~(CTL_DA_SDR_MASK | CTL_DA_SBR);
|
---|
| 480 | decimation = (ANALOG_CLOCK + runtime->rate / 4) / runtime->rate;
|
---|
| 481 | chip->reg_control |= decimation << CTL_DA_SDR_SHIFT;
|
---|
| 482 | if (runtime->format == SNDRV_PCM_FORMAT_S8)
|
---|
| 483 | chip->reg_control |= CTL_DA_SBR;
|
---|
| 484 | snd_bt87x_writel(chip, REG_GPIO_DMA_CTL, chip->reg_control);
|
---|
| 485 | spin_unlock_irq(&chip->reg_lock);
|
---|
| 486 | return 0;
|
---|
| 487 | }
|
---|
| 488 |
|
---|
| 489 | static int snd_bt87x_start(struct snd_bt87x *chip)
|
---|
| 490 | {
|
---|
| 491 | spin_lock(&chip->reg_lock);
|
---|
| 492 | chip->current_line = 0;
|
---|
| 493 | chip->reg_control |= CTL_FIFO_ENABLE | CTL_RISC_ENABLE | CTL_ACAP_EN;
|
---|
| 494 | snd_bt87x_writel(chip, REG_RISC_STRT_ADD, chip->dma_risc.addr);
|
---|
| 495 | snd_bt87x_writel(chip, REG_PACKET_LEN,
|
---|
| 496 | chip->line_bytes | (chip->lines << 16));
|
---|
| 497 | snd_bt87x_writel(chip, REG_INT_MASK, chip->interrupt_mask);
|
---|
| 498 | snd_bt87x_writel(chip, REG_GPIO_DMA_CTL, chip->reg_control);
|
---|
| 499 | spin_unlock(&chip->reg_lock);
|
---|
| 500 | return 0;
|
---|
| 501 | }
|
---|
| 502 |
|
---|
| 503 | static int snd_bt87x_stop(struct snd_bt87x *chip)
|
---|
| 504 | {
|
---|
| 505 | spin_lock(&chip->reg_lock);
|
---|
| 506 | chip->reg_control &= ~(CTL_FIFO_ENABLE | CTL_RISC_ENABLE | CTL_ACAP_EN);
|
---|
| 507 | snd_bt87x_writel(chip, REG_GPIO_DMA_CTL, chip->reg_control);
|
---|
| 508 | snd_bt87x_writel(chip, REG_INT_MASK, 0);
|
---|
| 509 | snd_bt87x_writel(chip, REG_INT_STAT, MY_INTERRUPTS);
|
---|
| 510 | spin_unlock(&chip->reg_lock);
|
---|
| 511 | return 0;
|
---|
| 512 | }
|
---|
| 513 |
|
---|
| 514 | static int snd_bt87x_trigger(struct snd_pcm_substream *substream, int cmd)
|
---|
| 515 | {
|
---|
| 516 | struct snd_bt87x *chip = snd_pcm_substream_chip(substream);
|
---|
| 517 |
|
---|
| 518 | switch (cmd) {
|
---|
| 519 | case SNDRV_PCM_TRIGGER_START:
|
---|
| 520 | return snd_bt87x_start(chip);
|
---|
| 521 | case SNDRV_PCM_TRIGGER_STOP:
|
---|
| 522 | return snd_bt87x_stop(chip);
|
---|
| 523 | default:
|
---|
| 524 | return -EINVAL;
|
---|
| 525 | }
|
---|
| 526 | }
|
---|
| 527 |
|
---|
| 528 | static snd_pcm_uframes_t snd_bt87x_pointer(struct snd_pcm_substream *substream)
|
---|
| 529 | {
|
---|
| 530 | struct snd_bt87x *chip = snd_pcm_substream_chip(substream);
|
---|
| 531 | struct snd_pcm_runtime *runtime = substream->runtime;
|
---|
| 532 |
|
---|
| 533 | return (snd_pcm_uframes_t)bytes_to_frames(runtime, chip->current_line * chip->line_bytes);
|
---|
| 534 | }
|
---|
| 535 |
|
---|
[679] | 536 | static const struct snd_pcm_ops snd_bt87x_pcm_ops = {
|
---|
[358] | 537 | .open = snd_bt87x_pcm_open,
|
---|
| 538 | .close = snd_bt87x_close,
|
---|
| 539 | .hw_params = snd_bt87x_hw_params,
|
---|
| 540 | .hw_free = snd_bt87x_hw_free,
|
---|
| 541 | .prepare = snd_bt87x_prepare,
|
---|
| 542 | .trigger = snd_bt87x_trigger,
|
---|
| 543 | .pointer = snd_bt87x_pointer,
|
---|
| 544 | };
|
---|
| 545 |
|
---|
| 546 | static int snd_bt87x_capture_volume_info(struct snd_kcontrol *kcontrol,
|
---|
| 547 | struct snd_ctl_elem_info *info)
|
---|
| 548 | {
|
---|
| 549 | info->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
|
---|
| 550 | info->count = 1;
|
---|
| 551 | info->value.integer.min = 0;
|
---|
| 552 | info->value.integer.max = 15;
|
---|
| 553 | return 0;
|
---|
| 554 | }
|
---|
| 555 |
|
---|
| 556 | static int snd_bt87x_capture_volume_get(struct snd_kcontrol *kcontrol,
|
---|
| 557 | struct snd_ctl_elem_value *value)
|
---|
| 558 | {
|
---|
| 559 | struct snd_bt87x *chip = snd_kcontrol_chip(kcontrol);
|
---|
| 560 |
|
---|
| 561 | value->value.integer.value[0] = (chip->reg_control & CTL_A_GAIN_MASK) >> CTL_A_GAIN_SHIFT;
|
---|
| 562 | return 0;
|
---|
| 563 | }
|
---|
| 564 |
|
---|
| 565 | static int snd_bt87x_capture_volume_put(struct snd_kcontrol *kcontrol,
|
---|
| 566 | struct snd_ctl_elem_value *value)
|
---|
| 567 | {
|
---|
| 568 | struct snd_bt87x *chip = snd_kcontrol_chip(kcontrol);
|
---|
| 569 | u32 old_control;
|
---|
| 570 | int changed;
|
---|
| 571 |
|
---|
| 572 | spin_lock_irq(&chip->reg_lock);
|
---|
| 573 | old_control = chip->reg_control;
|
---|
| 574 | chip->reg_control = (chip->reg_control & ~CTL_A_GAIN_MASK)
|
---|
| 575 | | (value->value.integer.value[0] << CTL_A_GAIN_SHIFT);
|
---|
| 576 | snd_bt87x_writel(chip, REG_GPIO_DMA_CTL, chip->reg_control);
|
---|
| 577 | changed = old_control != chip->reg_control;
|
---|
| 578 | spin_unlock_irq(&chip->reg_lock);
|
---|
| 579 | return changed;
|
---|
| 580 | }
|
---|
| 581 |
|
---|
[679] | 582 | static const struct snd_kcontrol_new snd_bt87x_capture_volume = {
|
---|
[358] | 583 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
|
---|
| 584 | .name = "Capture Volume",
|
---|
| 585 | .info = snd_bt87x_capture_volume_info,
|
---|
| 586 | .get = snd_bt87x_capture_volume_get,
|
---|
| 587 | .put = snd_bt87x_capture_volume_put,
|
---|
| 588 | };
|
---|
| 589 |
|
---|
| 590 | #define snd_bt87x_capture_boost_info snd_ctl_boolean_mono_info
|
---|
| 591 |
|
---|
| 592 | static int snd_bt87x_capture_boost_get(struct snd_kcontrol *kcontrol,
|
---|
| 593 | struct snd_ctl_elem_value *value)
|
---|
| 594 | {
|
---|
| 595 | struct snd_bt87x *chip = snd_kcontrol_chip(kcontrol);
|
---|
| 596 |
|
---|
| 597 | value->value.integer.value[0] = !! (chip->reg_control & CTL_A_G2X);
|
---|
| 598 | return 0;
|
---|
| 599 | }
|
---|
| 600 |
|
---|
| 601 | static int snd_bt87x_capture_boost_put(struct snd_kcontrol *kcontrol,
|
---|
| 602 | struct snd_ctl_elem_value *value)
|
---|
| 603 | {
|
---|
| 604 | struct snd_bt87x *chip = snd_kcontrol_chip(kcontrol);
|
---|
| 605 | u32 old_control;
|
---|
| 606 | int changed;
|
---|
| 607 |
|
---|
| 608 | spin_lock_irq(&chip->reg_lock);
|
---|
| 609 | old_control = chip->reg_control;
|
---|
| 610 | chip->reg_control = (chip->reg_control & ~CTL_A_G2X)
|
---|
| 611 | | (value->value.integer.value[0] ? CTL_A_G2X : 0);
|
---|
| 612 | snd_bt87x_writel(chip, REG_GPIO_DMA_CTL, chip->reg_control);
|
---|
| 613 | changed = chip->reg_control != old_control;
|
---|
| 614 | spin_unlock_irq(&chip->reg_lock);
|
---|
| 615 | return changed;
|
---|
| 616 | }
|
---|
| 617 |
|
---|
[679] | 618 | static const struct snd_kcontrol_new snd_bt87x_capture_boost = {
|
---|
[358] | 619 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
|
---|
| 620 | .name = "Capture Boost",
|
---|
| 621 | .info = snd_bt87x_capture_boost_info,
|
---|
| 622 | .get = snd_bt87x_capture_boost_get,
|
---|
| 623 | .put = snd_bt87x_capture_boost_put,
|
---|
| 624 | };
|
---|
| 625 |
|
---|
| 626 | static int snd_bt87x_capture_source_info(struct snd_kcontrol *kcontrol,
|
---|
| 627 | struct snd_ctl_elem_info *info)
|
---|
| 628 | {
|
---|
[598] | 629 | static const char *const texts[3] = {"TV Tuner", "FM", "Mic/Line"};
|
---|
[358] | 630 |
|
---|
[598] | 631 | return snd_ctl_enum_info(info, 1, 3, texts);
|
---|
[358] | 632 | }
|
---|
| 633 |
|
---|
| 634 | static int snd_bt87x_capture_source_get(struct snd_kcontrol *kcontrol,
|
---|
| 635 | struct snd_ctl_elem_value *value)
|
---|
| 636 | {
|
---|
| 637 | struct snd_bt87x *chip = snd_kcontrol_chip(kcontrol);
|
---|
| 638 |
|
---|
| 639 | value->value.enumerated.item[0] = (chip->reg_control & CTL_A_SEL_MASK) >> CTL_A_SEL_SHIFT;
|
---|
| 640 | return 0;
|
---|
| 641 | }
|
---|
| 642 |
|
---|
| 643 | static int snd_bt87x_capture_source_put(struct snd_kcontrol *kcontrol,
|
---|
| 644 | struct snd_ctl_elem_value *value)
|
---|
| 645 | {
|
---|
| 646 | struct snd_bt87x *chip = snd_kcontrol_chip(kcontrol);
|
---|
| 647 | u32 old_control;
|
---|
| 648 | int changed;
|
---|
| 649 |
|
---|
| 650 | spin_lock_irq(&chip->reg_lock);
|
---|
| 651 | old_control = chip->reg_control;
|
---|
| 652 | chip->reg_control = (chip->reg_control & ~CTL_A_SEL_MASK)
|
---|
| 653 | | (value->value.enumerated.item[0] << CTL_A_SEL_SHIFT);
|
---|
| 654 | snd_bt87x_writel(chip, REG_GPIO_DMA_CTL, chip->reg_control);
|
---|
| 655 | changed = chip->reg_control != old_control;
|
---|
| 656 | spin_unlock_irq(&chip->reg_lock);
|
---|
| 657 | return changed;
|
---|
| 658 | }
|
---|
| 659 |
|
---|
[679] | 660 | static const struct snd_kcontrol_new snd_bt87x_capture_source = {
|
---|
[358] | 661 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
|
---|
| 662 | .name = "Capture Source",
|
---|
| 663 | .info = snd_bt87x_capture_source_info,
|
---|
| 664 | .get = snd_bt87x_capture_source_get,
|
---|
| 665 | .put = snd_bt87x_capture_source_put,
|
---|
| 666 | };
|
---|
| 667 |
|
---|
[717] | 668 | static void snd_bt87x_free(struct snd_card *card)
|
---|
[358] | 669 | {
|
---|
[717] | 670 | struct snd_bt87x *chip = card->private_data;
|
---|
[358] | 671 |
|
---|
[717] | 672 | snd_bt87x_stop(chip);
|
---|
[358] | 673 | }
|
---|
| 674 |
|
---|
[679] | 675 | static int snd_bt87x_pcm(struct snd_bt87x *chip, int device, char *name)
|
---|
[358] | 676 | {
|
---|
| 677 | int err;
|
---|
| 678 | struct snd_pcm *pcm;
|
---|
| 679 |
|
---|
| 680 | err = snd_pcm_new(chip->card, name, device, 0, 1, &pcm);
|
---|
| 681 | if (err < 0)
|
---|
| 682 | return err;
|
---|
| 683 | pcm->private_data = chip;
|
---|
| 684 | strcpy(pcm->name, name);
|
---|
| 685 | snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_bt87x_pcm_ops);
|
---|
[679] | 686 | snd_pcm_set_managed_buffer_all(pcm, SNDRV_DMA_TYPE_DEV_SG,
|
---|
| 687 | &chip->pci->dev,
|
---|
| 688 | 128 * 1024,
|
---|
| 689 | ALIGN(255 * 4092, 1024));
|
---|
| 690 | return 0;
|
---|
[358] | 691 | }
|
---|
| 692 |
|
---|
[679] | 693 | static int snd_bt87x_create(struct snd_card *card,
|
---|
[717] | 694 | struct pci_dev *pci)
|
---|
[358] | 695 | {
|
---|
[717] | 696 | struct snd_bt87x *chip = card->private_data;
|
---|
[358] | 697 | int err;
|
---|
| 698 |
|
---|
[717] | 699 | err = pcim_enable_device(pci);
|
---|
[358] | 700 | if (err < 0)
|
---|
| 701 | return err;
|
---|
| 702 |
|
---|
| 703 | chip->card = card;
|
---|
| 704 | chip->pci = pci;
|
---|
| 705 | chip->irq = -1;
|
---|
| 706 | spin_lock_init(&chip->reg_lock);
|
---|
| 707 |
|
---|
[717] | 708 | err = pcim_iomap_regions(pci, 1 << 0, "Bt87x audio");
|
---|
| 709 | if (err < 0)
|
---|
| 710 | return err;
|
---|
| 711 | chip->mmio = pcim_iomap_table(pci)[0];
|
---|
[358] | 712 | chip->reg_control = CTL_A_PWRDN | CTL_DA_ES2 |
|
---|
| 713 | CTL_PKTP_16 | (15 << CTL_DA_SDR_SHIFT);
|
---|
| 714 | chip->interrupt_mask = MY_INTERRUPTS;
|
---|
| 715 | snd_bt87x_writel(chip, REG_GPIO_DMA_CTL, chip->reg_control);
|
---|
| 716 | snd_bt87x_writel(chip, REG_INT_MASK, 0);
|
---|
| 717 | snd_bt87x_writel(chip, REG_INT_STAT, MY_INTERRUPTS);
|
---|
| 718 |
|
---|
[717] | 719 | err = devm_request_irq(&pci->dev, pci->irq, snd_bt87x_interrupt,
|
---|
| 720 | IRQF_SHARED, KBUILD_MODNAME, chip);
|
---|
[358] | 721 | if (err < 0) {
|
---|
[679] | 722 | dev_err(card->dev, "cannot grab irq %d\n", pci->irq);
|
---|
[717] | 723 | return err;
|
---|
[358] | 724 | }
|
---|
| 725 | chip->irq = pci->irq;
|
---|
[679] | 726 | card->sync_irq = chip->irq;
|
---|
[717] | 727 | card->private_free = snd_bt87x_free;
|
---|
[358] | 728 | pci_set_master(pci);
|
---|
| 729 |
|
---|
| 730 | return 0;
|
---|
| 731 | }
|
---|
| 732 |
|
---|
| 733 | #define BT_DEVICE(chip, subvend, subdev, id) \
|
---|
| 734 | { .vendor = PCI_VENDOR_ID_BROOKTREE, \
|
---|
| 735 | .device = chip, \
|
---|
| 736 | .subvendor = subvend, .subdevice = subdev, \
|
---|
| 737 | .driver_data = SND_BT87X_BOARD_ ## id }
|
---|
| 738 | /* driver_data is the card id for that device */
|
---|
| 739 |
|
---|
[679] | 740 | static const struct pci_device_id snd_bt87x_ids[] = {
|
---|
[358] | 741 | /* Hauppauge WinTV series */
|
---|
| 742 | BT_DEVICE(PCI_DEVICE_ID_BROOKTREE_878, 0x0070, 0x13eb, GENERIC),
|
---|
| 743 | /* Hauppauge WinTV series */
|
---|
| 744 | BT_DEVICE(PCI_DEVICE_ID_BROOKTREE_879, 0x0070, 0x13eb, GENERIC),
|
---|
| 745 | /* Viewcast Osprey 200 */
|
---|
| 746 | BT_DEVICE(PCI_DEVICE_ID_BROOKTREE_878, 0x0070, 0xff01, OSPREY2x0),
|
---|
| 747 | /* Viewcast Osprey 440 (rate is configurable via gpio) */
|
---|
| 748 | BT_DEVICE(PCI_DEVICE_ID_BROOKTREE_878, 0x0070, 0xff07, OSPREY440),
|
---|
| 749 | /* ATI TV-Wonder */
|
---|
| 750 | BT_DEVICE(PCI_DEVICE_ID_BROOKTREE_878, 0x1002, 0x0001, GENERIC),
|
---|
| 751 | /* Leadtek Winfast tv 2000xp delux */
|
---|
| 752 | BT_DEVICE(PCI_DEVICE_ID_BROOKTREE_878, 0x107d, 0x6606, GENERIC),
|
---|
[598] | 753 | /* Pinnacle PCTV */
|
---|
| 754 | BT_DEVICE(PCI_DEVICE_ID_BROOKTREE_878, 0x11bd, 0x0012, GENERIC),
|
---|
[358] | 755 | /* Voodoo TV 200 */
|
---|
| 756 | BT_DEVICE(PCI_DEVICE_ID_BROOKTREE_878, 0x121a, 0x3000, GENERIC),
|
---|
[464] | 757 | /* Askey Computer Corp. MagicTView'99 */
|
---|
| 758 | BT_DEVICE(PCI_DEVICE_ID_BROOKTREE_878, 0x144f, 0x3000, GENERIC),
|
---|
[358] | 759 | /* AVerMedia Studio No. 103, 203, ...? */
|
---|
| 760 | BT_DEVICE(PCI_DEVICE_ID_BROOKTREE_878, 0x1461, 0x0003, AVPHONE98),
|
---|
| 761 | /* Prolink PixelView PV-M4900 */
|
---|
| 762 | BT_DEVICE(PCI_DEVICE_ID_BROOKTREE_878, 0x1554, 0x4011, GENERIC),
|
---|
| 763 | /* Pinnacle Studio PCTV rave */
|
---|
| 764 | BT_DEVICE(PCI_DEVICE_ID_BROOKTREE_878, 0xbd11, 0x1200, GENERIC),
|
---|
| 765 | {0}
|
---|
| 766 | };
|
---|
| 767 | MODULE_DEVICE_TABLE(pci, snd_bt87x_ids);
|
---|
| 768 |
|
---|
| 769 | /* cards known not to have audio
|
---|
| 770 | * (DVB cards use the audio function to transfer MPEG data) */
|
---|
| 771 | static struct {
|
---|
| 772 | unsigned short subvendor, subdevice;
|
---|
[679] | 773 | } denylist[] = {
|
---|
[358] | 774 | {0x0071, 0x0101}, /* Nebula Electronics DigiTV */
|
---|
| 775 | {0x11bd, 0x001c}, /* Pinnacle PCTV Sat */
|
---|
| 776 | {0x11bd, 0x0026}, /* Pinnacle PCTV SAT CI */
|
---|
| 777 | {0x1461, 0x0761}, /* AVermedia AverTV DVB-T */
|
---|
| 778 | {0x1461, 0x0771}, /* AVermedia DVB-T 771 */
|
---|
| 779 | {0x1822, 0x0001}, /* Twinhan VisionPlus DVB-T */
|
---|
| 780 | {0x18ac, 0xd500}, /* DVICO FusionHDTV 5 Lite */
|
---|
| 781 | {0x18ac, 0xdb10}, /* DVICO FusionHDTV DVB-T Lite */
|
---|
| 782 | {0x18ac, 0xdb11}, /* Ultraview DVB-T Lite */
|
---|
| 783 | {0x270f, 0xfc00}, /* Chaintech Digitop DST-1000 DVB-S */
|
---|
| 784 | {0x7063, 0x2000}, /* pcHDTV HD-2000 TV */
|
---|
| 785 | };
|
---|
| 786 |
|
---|
| 787 | static struct pci_driver driver;
|
---|
| 788 |
|
---|
[679] | 789 | /* return the id of the card, or a negative value if it's on the denylist */
|
---|
| 790 | static int snd_bt87x_detect_card(struct pci_dev *pci)
|
---|
[358] | 791 | {
|
---|
| 792 | int i;
|
---|
| 793 | const struct pci_device_id *supported;
|
---|
| 794 |
|
---|
| 795 | supported = pci_match_id(snd_bt87x_ids, pci);
|
---|
| 796 | if (supported && supported->driver_data > 0)
|
---|
| 797 | return supported->driver_data;
|
---|
| 798 |
|
---|
[679] | 799 | for (i = 0; i < ARRAY_SIZE(denylist); ++i)
|
---|
| 800 | if (denylist[i].subvendor == pci->subsystem_vendor &&
|
---|
| 801 | denylist[i].subdevice == pci->subsystem_device) {
|
---|
| 802 | dev_dbg(&pci->dev,
|
---|
| 803 | "card %#04x-%#04x:%#04x has no audio\n",
|
---|
[358] | 804 | pci->device, pci->subsystem_vendor, pci->subsystem_device);
|
---|
| 805 | return -EBUSY;
|
---|
| 806 | }
|
---|
| 807 |
|
---|
[679] | 808 | dev_info(&pci->dev, "unknown card %#04x-%#04x:%#04x\n",
|
---|
[358] | 809 | pci->device, pci->subsystem_vendor, pci->subsystem_device);
|
---|
[679] | 810 | dev_info(&pci->dev, "please mail id, board name, and, "
|
---|
[358] | 811 | "if it works, the correct digital_rate option to "
|
---|
| 812 | "<alsa-devel@alsa-project.org>\n");
|
---|
| 813 | return SND_BT87X_BOARD_UNKNOWN;
|
---|
| 814 | }
|
---|
| 815 |
|
---|
[717] | 816 | static int __snd_bt87x_probe(struct pci_dev *pci,
|
---|
| 817 | const struct pci_device_id *pci_id)
|
---|
[358] | 818 | {
|
---|
| 819 | static int dev;
|
---|
| 820 | struct snd_card *card;
|
---|
| 821 | struct snd_bt87x *chip;
|
---|
| 822 | int err;
|
---|
| 823 | enum snd_bt87x_boardid boardid;
|
---|
| 824 |
|
---|
| 825 | if (!pci_id->driver_data) {
|
---|
| 826 | err = snd_bt87x_detect_card(pci);
|
---|
| 827 | if (err < 0)
|
---|
| 828 | return -ENODEV;
|
---|
| 829 | boardid = err;
|
---|
| 830 | } else
|
---|
| 831 | boardid = pci_id->driver_data;
|
---|
| 832 |
|
---|
| 833 | if (dev >= SNDRV_CARDS)
|
---|
| 834 | return -ENODEV;
|
---|
| 835 | if (!enable[dev]) {
|
---|
| 836 | ++dev;
|
---|
| 837 | return -ENOENT;
|
---|
| 838 | }
|
---|
| 839 |
|
---|
[717] | 840 | err = snd_devm_card_new(&pci->dev, index[dev], id[dev], THIS_MODULE,
|
---|
| 841 | sizeof(*chip), &card);
|
---|
[410] | 842 | if (err < 0)
|
---|
| 843 | return err;
|
---|
[717] | 844 | chip = card->private_data;
|
---|
[358] | 845 |
|
---|
[717] | 846 | err = snd_bt87x_create(card, pci);
|
---|
[358] | 847 | if (err < 0)
|
---|
[717] | 848 | return err;
|
---|
[358] | 849 |
|
---|
| 850 | memcpy(&chip->board, &snd_bt87x_boards[boardid], sizeof(chip->board));
|
---|
| 851 |
|
---|
| 852 | if (!chip->board.no_digital) {
|
---|
| 853 | if (digital_rate[dev] > 0)
|
---|
| 854 | chip->board.dig_rate = digital_rate[dev];
|
---|
| 855 |
|
---|
| 856 | chip->reg_control |= chip->board.digital_fmt;
|
---|
| 857 |
|
---|
| 858 | err = snd_bt87x_pcm(chip, DEVICE_DIGITAL, "Bt87x Digital");
|
---|
| 859 | if (err < 0)
|
---|
[717] | 860 | return err;
|
---|
[358] | 861 | }
|
---|
| 862 | if (!chip->board.no_analog) {
|
---|
| 863 | err = snd_bt87x_pcm(chip, DEVICE_ANALOG, "Bt87x Analog");
|
---|
| 864 | if (err < 0)
|
---|
[717] | 865 | return err;
|
---|
[358] | 866 | err = snd_ctl_add(card, snd_ctl_new1(
|
---|
| 867 | &snd_bt87x_capture_volume, chip));
|
---|
| 868 | if (err < 0)
|
---|
[717] | 869 | return err;
|
---|
[358] | 870 | err = snd_ctl_add(card, snd_ctl_new1(
|
---|
| 871 | &snd_bt87x_capture_boost, chip));
|
---|
| 872 | if (err < 0)
|
---|
[717] | 873 | return err;
|
---|
[358] | 874 | err = snd_ctl_add(card, snd_ctl_new1(
|
---|
| 875 | &snd_bt87x_capture_source, chip));
|
---|
| 876 | if (err < 0)
|
---|
[717] | 877 | return err;
|
---|
[358] | 878 | }
|
---|
[679] | 879 | dev_info(card->dev, "bt87x%d: Using board %d, %sanalog, %sdigital "
|
---|
[358] | 880 | "(rate %d Hz)\n", dev, boardid,
|
---|
| 881 | chip->board.no_analog ? "no " : "",
|
---|
| 882 | chip->board.no_digital ? "no " : "", chip->board.dig_rate);
|
---|
| 883 |
|
---|
| 884 | strcpy(card->driver, "Bt87x");
|
---|
| 885 | sprintf(card->shortname, "Brooktree Bt%x", pci->device);
|
---|
| 886 | sprintf(card->longname, "%s at %#llx, irq %i",
|
---|
| 887 | card->shortname, (unsigned long long)pci_resource_start(pci, 0),
|
---|
| 888 | chip->irq);
|
---|
| 889 | strcpy(card->mixername, "Bt87x");
|
---|
| 890 |
|
---|
| 891 | err = snd_card_register(card);
|
---|
| 892 | if (err < 0)
|
---|
[717] | 893 | return err;
|
---|
[358] | 894 |
|
---|
| 895 | pci_set_drvdata(pci, card);
|
---|
| 896 | ++dev;
|
---|
| 897 | return 0;
|
---|
| 898 | }
|
---|
| 899 |
|
---|
[717] | 900 | static int snd_bt87x_probe(struct pci_dev *pci,
|
---|
| 901 | const struct pci_device_id *pci_id)
|
---|
[358] | 902 | {
|
---|
[717] | 903 | return snd_card_free_on_error(&pci->dev, __snd_bt87x_probe(pci, pci_id));
|
---|
[358] | 904 | }
|
---|
| 905 |
|
---|
| 906 | /* default entries for all Bt87x cards - it's not exported */
|
---|
| 907 | /* driver_data is set to 0 to call detection */
|
---|
[679] | 908 | static const struct pci_device_id snd_bt87x_default_ids[] = {
|
---|
[358] | 909 | BT_DEVICE(PCI_DEVICE_ID_BROOKTREE_878, PCI_ANY_ID, PCI_ANY_ID, UNKNOWN),
|
---|
| 910 | BT_DEVICE(PCI_DEVICE_ID_BROOKTREE_879, PCI_ANY_ID, PCI_ANY_ID, UNKNOWN),
|
---|
| 911 | {0}
|
---|
| 912 | };
|
---|
| 913 |
|
---|
| 914 | static struct pci_driver driver = {
|
---|
[679] | 915 | .name = KBUILD_MODNAME,
|
---|
[358] | 916 | .id_table = snd_bt87x_ids,
|
---|
| 917 | .probe = snd_bt87x_probe,
|
---|
| 918 | };
|
---|
| 919 |
|
---|
| 920 | static int __init alsa_card_bt87x_init(void)
|
---|
| 921 | {
|
---|
| 922 | if (load_all)
|
---|
| 923 | driver.id_table = snd_bt87x_default_ids;
|
---|
| 924 | return pci_register_driver(&driver);
|
---|
| 925 | }
|
---|
| 926 |
|
---|
| 927 | static void __exit alsa_card_bt87x_exit(void)
|
---|
| 928 | {
|
---|
| 929 | pci_unregister_driver(&driver);
|
---|
| 930 | }
|
---|
| 931 |
|
---|
| 932 | module_init(alsa_card_bt87x_init)
|
---|
| 933 | module_exit(alsa_card_bt87x_exit)
|
---|