1 | // SPDX-License-Identifier: GPL-2.0-or-later
|
---|
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 |
|
---|
10 | #ifdef TARGET_OS2
|
---|
11 | #define KBUILD_MODNAME "bt87x"
|
---|
12 | #endif
|
---|
13 |
|
---|
14 | #include <linux/init.h>
|
---|
15 | #include <linux/interrupt.h>
|
---|
16 | #include <linux/pci.h>
|
---|
17 | #include <linux/slab.h>
|
---|
18 | #include <linux/module.h>
|
---|
19 | #include <linux/bitops.h>
|
---|
20 | #include <linux/io.h>
|
---|
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
|
---|
38 | static bool enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP; /* Enable this card */
|
---|
39 | static int digital_rate[SNDRV_CARDS]; /* digital input rate */
|
---|
40 | static bool load_all; /* allow to load cards not the allowlist */
|
---|
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);
|
---|
51 | MODULE_PARM_DESC(load_all, "Allow to load cards not on the allowlist");
|
---|
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 |
|
---|
160 | static const struct snd_bt87x_board snd_bt87x_boards[] = {
|
---|
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;
|
---|
224 | __le32 *risc;
|
---|
225 |
|
---|
226 | if (chip->dma_risc.area == NULL) {
|
---|
227 | if (snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV, &chip->pci->dev,
|
---|
228 | PAGE_ALIGN(MAX_RISC_SIZE), &chip->dma_risc) < 0)
|
---|
229 | return -ENOMEM;
|
---|
230 | }
|
---|
231 | risc = (__le32 *)chip->dma_risc.area;
|
---|
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;
|
---|
241 | unsigned int addr;
|
---|
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);
|
---|
256 | addr = snd_pcm_sgbuf_get_addr(substream, offset);
|
---|
257 | *risc++ = cpu_to_le32(addr);
|
---|
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 | {
|
---|
281 | int pci_status = pci_status_get_and_clear_errors(chip->pci);
|
---|
282 |
|
---|
283 | if (pci_status != PCI_STATUS_DETECTED_PARITY)
|
---|
284 | dev_err(chip->card->dev,
|
---|
285 | "Aieee - PCI error! status %#08x, PCI status %#04x\n",
|
---|
286 | status & ERROR_INTERRUPTS, pci_status);
|
---|
287 | else {
|
---|
288 | dev_err(chip->card->dev,
|
---|
289 | "Aieee - PCI parity error detected!\n");
|
---|
290 | /* error 'handling' similar to aic7xxx_pci.c: */
|
---|
291 | chip->pci_parity_errors++;
|
---|
292 | if (chip->pci_parity_errors > 20) {
|
---|
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");
|
---|
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))
|
---|
320 | dev_warn(chip->card->dev,
|
---|
321 | "FIFO overrun, status %#08x\n", status);
|
---|
322 | if (irq_status & INT_OCERR)
|
---|
323 | dev_err(chip->card->dev,
|
---|
324 | "internal RISC error, status %#08x\n", status);
|
---|
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)
|
---|
337 | chip->current_line = DIV_ROUND_UP(irq_block * chip->lines,
|
---|
338 | 16);
|
---|
339 |
|
---|
340 | snd_pcm_period_elapsed(chip->substream);
|
---|
341 | }
|
---|
342 | return IRQ_HANDLED;
|
---|
343 | }
|
---|
344 |
|
---|
345 | static const struct snd_pcm_hardware snd_bt87x_digital_hw = {
|
---|
346 | .info = SNDRV_PCM_INFO_MMAP |
|
---|
347 | SNDRV_PCM_INFO_INTERLEAVED |
|
---|
348 | SNDRV_PCM_INFO_BLOCK_TRANSFER |
|
---|
349 | SNDRV_PCM_INFO_MMAP_VALID |
|
---|
350 | SNDRV_PCM_INFO_BATCH,
|
---|
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 |
|
---|
362 | static const struct snd_pcm_hardware snd_bt87x_analog_hw = {
|
---|
363 | .info = SNDRV_PCM_INFO_MMAP |
|
---|
364 | SNDRV_PCM_INFO_INTERLEAVED |
|
---|
365 | SNDRV_PCM_INFO_BLOCK_TRANSFER |
|
---|
366 | SNDRV_PCM_INFO_MMAP_VALID |
|
---|
367 | SNDRV_PCM_INFO_BATCH,
|
---|
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 | {
|
---|
393 | static const struct snd_ratnum analog_clock = {
|
---|
394 | .num = ANALOG_CLOCK,
|
---|
395 | .den_min = CLOCK_DIV_MIN,
|
---|
396 | .den_max = CLOCK_DIV_MAX,
|
---|
397 | .den_step = 1
|
---|
398 | };
|
---|
399 | static const struct snd_pcm_hw_constraint_ratnums constraint_rates = {
|
---|
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);
|
---|
435 | smp_mb__after_atomic();
|
---|
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);
|
---|
450 | smp_mb__after_atomic();
|
---|
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 |
|
---|
536 | static const struct snd_pcm_ops snd_bt87x_pcm_ops = {
|
---|
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 |
|
---|
582 | static const struct snd_kcontrol_new snd_bt87x_capture_volume = {
|
---|
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 |
|
---|
618 | static const struct snd_kcontrol_new snd_bt87x_capture_boost = {
|
---|
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 | {
|
---|
629 | static const char *const texts[3] = {"TV Tuner", "FM", "Mic/Line"};
|
---|
630 |
|
---|
631 | return snd_ctl_enum_info(info, 1, 3, texts);
|
---|
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 |
|
---|
660 | static const struct snd_kcontrol_new snd_bt87x_capture_source = {
|
---|
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 |
|
---|
668 | static int snd_bt87x_free(struct snd_bt87x *chip)
|
---|
669 | {
|
---|
670 | if (chip->mmio)
|
---|
671 | snd_bt87x_stop(chip);
|
---|
672 | if (chip->irq >= 0)
|
---|
673 | free_irq(chip->irq, chip);
|
---|
674 | iounmap(chip->mmio);
|
---|
675 | pci_release_regions(chip->pci);
|
---|
676 | pci_disable_device(chip->pci);
|
---|
677 | kfree(chip);
|
---|
678 | return 0;
|
---|
679 | }
|
---|
680 |
|
---|
681 | static int snd_bt87x_dev_free(struct snd_device *device)
|
---|
682 | {
|
---|
683 | struct snd_bt87x *chip = device->device_data;
|
---|
684 | return snd_bt87x_free(chip);
|
---|
685 | }
|
---|
686 |
|
---|
687 | static int snd_bt87x_pcm(struct snd_bt87x *chip, int device, char *name)
|
---|
688 | {
|
---|
689 | int err;
|
---|
690 | struct snd_pcm *pcm;
|
---|
691 |
|
---|
692 | err = snd_pcm_new(chip->card, name, device, 0, 1, &pcm);
|
---|
693 | if (err < 0)
|
---|
694 | return err;
|
---|
695 | pcm->private_data = chip;
|
---|
696 | strcpy(pcm->name, name);
|
---|
697 | snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_bt87x_pcm_ops);
|
---|
698 | snd_pcm_set_managed_buffer_all(pcm, SNDRV_DMA_TYPE_DEV_SG,
|
---|
699 | &chip->pci->dev,
|
---|
700 | 128 * 1024,
|
---|
701 | ALIGN(255 * 4092, 1024));
|
---|
702 | return 0;
|
---|
703 | }
|
---|
704 |
|
---|
705 | static int snd_bt87x_create(struct snd_card *card,
|
---|
706 | struct pci_dev *pci,
|
---|
707 | struct snd_bt87x **rchip)
|
---|
708 | {
|
---|
709 | struct snd_bt87x *chip;
|
---|
710 | int err;
|
---|
711 | static const struct snd_device_ops ops = {
|
---|
712 | .dev_free = snd_bt87x_dev_free
|
---|
713 | };
|
---|
714 |
|
---|
715 | *rchip = NULL;
|
---|
716 |
|
---|
717 | err = pci_enable_device(pci);
|
---|
718 | if (err < 0)
|
---|
719 | return err;
|
---|
720 |
|
---|
721 | chip = kzalloc(sizeof(*chip), GFP_KERNEL);
|
---|
722 | if (!chip) {
|
---|
723 | pci_disable_device(pci);
|
---|
724 | return -ENOMEM;
|
---|
725 | }
|
---|
726 | chip->card = card;
|
---|
727 | chip->pci = pci;
|
---|
728 | chip->irq = -1;
|
---|
729 | spin_lock_init(&chip->reg_lock);
|
---|
730 |
|
---|
731 | err = pci_request_regions(pci, "Bt87x audio");
|
---|
732 | if (err < 0) {
|
---|
733 | kfree(chip);
|
---|
734 | pci_disable_device(pci);
|
---|
735 | return err;
|
---|
736 | }
|
---|
737 | chip->mmio = pci_ioremap_bar(pci, 0);
|
---|
738 | if (!chip->mmio) {
|
---|
739 | dev_err(card->dev, "cannot remap io memory\n");
|
---|
740 | err = -ENOMEM;
|
---|
741 | goto fail;
|
---|
742 | }
|
---|
743 |
|
---|
744 | chip->reg_control = CTL_A_PWRDN | CTL_DA_ES2 |
|
---|
745 | CTL_PKTP_16 | (15 << CTL_DA_SDR_SHIFT);
|
---|
746 | chip->interrupt_mask = MY_INTERRUPTS;
|
---|
747 | snd_bt87x_writel(chip, REG_GPIO_DMA_CTL, chip->reg_control);
|
---|
748 | snd_bt87x_writel(chip, REG_INT_MASK, 0);
|
---|
749 | snd_bt87x_writel(chip, REG_INT_STAT, MY_INTERRUPTS);
|
---|
750 |
|
---|
751 | err = request_irq(pci->irq, snd_bt87x_interrupt, IRQF_SHARED,
|
---|
752 | KBUILD_MODNAME, chip);
|
---|
753 | if (err < 0) {
|
---|
754 | dev_err(card->dev, "cannot grab irq %d\n", pci->irq);
|
---|
755 | goto fail;
|
---|
756 | }
|
---|
757 | chip->irq = pci->irq;
|
---|
758 | card->sync_irq = chip->irq;
|
---|
759 | pci_set_master(pci);
|
---|
760 |
|
---|
761 | err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops);
|
---|
762 | if (err < 0)
|
---|
763 | goto fail;
|
---|
764 |
|
---|
765 | *rchip = chip;
|
---|
766 | return 0;
|
---|
767 |
|
---|
768 | fail:
|
---|
769 | snd_bt87x_free(chip);
|
---|
770 | return err;
|
---|
771 | }
|
---|
772 |
|
---|
773 | #define BT_DEVICE(chip, subvend, subdev, id) \
|
---|
774 | { .vendor = PCI_VENDOR_ID_BROOKTREE, \
|
---|
775 | .device = chip, \
|
---|
776 | .subvendor = subvend, .subdevice = subdev, \
|
---|
777 | .driver_data = SND_BT87X_BOARD_ ## id }
|
---|
778 | /* driver_data is the card id for that device */
|
---|
779 |
|
---|
780 | static const struct pci_device_id snd_bt87x_ids[] = {
|
---|
781 | /* Hauppauge WinTV series */
|
---|
782 | BT_DEVICE(PCI_DEVICE_ID_BROOKTREE_878, 0x0070, 0x13eb, GENERIC),
|
---|
783 | /* Hauppauge WinTV series */
|
---|
784 | BT_DEVICE(PCI_DEVICE_ID_BROOKTREE_879, 0x0070, 0x13eb, GENERIC),
|
---|
785 | /* Viewcast Osprey 200 */
|
---|
786 | BT_DEVICE(PCI_DEVICE_ID_BROOKTREE_878, 0x0070, 0xff01, OSPREY2x0),
|
---|
787 | /* Viewcast Osprey 440 (rate is configurable via gpio) */
|
---|
788 | BT_DEVICE(PCI_DEVICE_ID_BROOKTREE_878, 0x0070, 0xff07, OSPREY440),
|
---|
789 | /* ATI TV-Wonder */
|
---|
790 | BT_DEVICE(PCI_DEVICE_ID_BROOKTREE_878, 0x1002, 0x0001, GENERIC),
|
---|
791 | /* Leadtek Winfast tv 2000xp delux */
|
---|
792 | BT_DEVICE(PCI_DEVICE_ID_BROOKTREE_878, 0x107d, 0x6606, GENERIC),
|
---|
793 | /* Pinnacle PCTV */
|
---|
794 | BT_DEVICE(PCI_DEVICE_ID_BROOKTREE_878, 0x11bd, 0x0012, GENERIC),
|
---|
795 | /* Voodoo TV 200 */
|
---|
796 | BT_DEVICE(PCI_DEVICE_ID_BROOKTREE_878, 0x121a, 0x3000, GENERIC),
|
---|
797 | /* Askey Computer Corp. MagicTView'99 */
|
---|
798 | BT_DEVICE(PCI_DEVICE_ID_BROOKTREE_878, 0x144f, 0x3000, GENERIC),
|
---|
799 | /* AVerMedia Studio No. 103, 203, ...? */
|
---|
800 | BT_DEVICE(PCI_DEVICE_ID_BROOKTREE_878, 0x1461, 0x0003, AVPHONE98),
|
---|
801 | /* Prolink PixelView PV-M4900 */
|
---|
802 | BT_DEVICE(PCI_DEVICE_ID_BROOKTREE_878, 0x1554, 0x4011, GENERIC),
|
---|
803 | /* Pinnacle Studio PCTV rave */
|
---|
804 | BT_DEVICE(PCI_DEVICE_ID_BROOKTREE_878, 0xbd11, 0x1200, GENERIC),
|
---|
805 | {0}
|
---|
806 | };
|
---|
807 | MODULE_DEVICE_TABLE(pci, snd_bt87x_ids);
|
---|
808 |
|
---|
809 | /* cards known not to have audio
|
---|
810 | * (DVB cards use the audio function to transfer MPEG data) */
|
---|
811 | static struct {
|
---|
812 | unsigned short subvendor, subdevice;
|
---|
813 | } denylist[] = {
|
---|
814 | {0x0071, 0x0101}, /* Nebula Electronics DigiTV */
|
---|
815 | {0x11bd, 0x001c}, /* Pinnacle PCTV Sat */
|
---|
816 | {0x11bd, 0x0026}, /* Pinnacle PCTV SAT CI */
|
---|
817 | {0x1461, 0x0761}, /* AVermedia AverTV DVB-T */
|
---|
818 | {0x1461, 0x0771}, /* AVermedia DVB-T 771 */
|
---|
819 | {0x1822, 0x0001}, /* Twinhan VisionPlus DVB-T */
|
---|
820 | {0x18ac, 0xd500}, /* DVICO FusionHDTV 5 Lite */
|
---|
821 | {0x18ac, 0xdb10}, /* DVICO FusionHDTV DVB-T Lite */
|
---|
822 | {0x18ac, 0xdb11}, /* Ultraview DVB-T Lite */
|
---|
823 | {0x270f, 0xfc00}, /* Chaintech Digitop DST-1000 DVB-S */
|
---|
824 | {0x7063, 0x2000}, /* pcHDTV HD-2000 TV */
|
---|
825 | };
|
---|
826 |
|
---|
827 | static struct pci_driver driver;
|
---|
828 |
|
---|
829 | /* return the id of the card, or a negative value if it's on the denylist */
|
---|
830 | static int snd_bt87x_detect_card(struct pci_dev *pci)
|
---|
831 | {
|
---|
832 | int i;
|
---|
833 | const struct pci_device_id *supported;
|
---|
834 |
|
---|
835 | supported = pci_match_id(snd_bt87x_ids, pci);
|
---|
836 | if (supported && supported->driver_data > 0)
|
---|
837 | return supported->driver_data;
|
---|
838 |
|
---|
839 | for (i = 0; i < ARRAY_SIZE(denylist); ++i)
|
---|
840 | if (denylist[i].subvendor == pci->subsystem_vendor &&
|
---|
841 | denylist[i].subdevice == pci->subsystem_device) {
|
---|
842 | dev_dbg(&pci->dev,
|
---|
843 | "card %#04x-%#04x:%#04x has no audio\n",
|
---|
844 | pci->device, pci->subsystem_vendor, pci->subsystem_device);
|
---|
845 | return -EBUSY;
|
---|
846 | }
|
---|
847 |
|
---|
848 | dev_info(&pci->dev, "unknown card %#04x-%#04x:%#04x\n",
|
---|
849 | pci->device, pci->subsystem_vendor, pci->subsystem_device);
|
---|
850 | dev_info(&pci->dev, "please mail id, board name, and, "
|
---|
851 | "if it works, the correct digital_rate option to "
|
---|
852 | "<alsa-devel@alsa-project.org>\n");
|
---|
853 | return SND_BT87X_BOARD_UNKNOWN;
|
---|
854 | }
|
---|
855 |
|
---|
856 | static int snd_bt87x_probe(struct pci_dev *pci,
|
---|
857 | const struct pci_device_id *pci_id)
|
---|
858 | {
|
---|
859 | static int dev;
|
---|
860 | struct snd_card *card;
|
---|
861 | struct snd_bt87x *chip;
|
---|
862 | int err;
|
---|
863 | enum snd_bt87x_boardid boardid;
|
---|
864 |
|
---|
865 | if (!pci_id->driver_data) {
|
---|
866 | err = snd_bt87x_detect_card(pci);
|
---|
867 | if (err < 0)
|
---|
868 | return -ENODEV;
|
---|
869 | boardid = err;
|
---|
870 | } else
|
---|
871 | boardid = pci_id->driver_data;
|
---|
872 |
|
---|
873 | if (dev >= SNDRV_CARDS)
|
---|
874 | return -ENODEV;
|
---|
875 | if (!enable[dev]) {
|
---|
876 | ++dev;
|
---|
877 | return -ENOENT;
|
---|
878 | }
|
---|
879 |
|
---|
880 | err = snd_card_new(&pci->dev, index[dev], id[dev], THIS_MODULE,
|
---|
881 | 0, &card);
|
---|
882 | if (err < 0)
|
---|
883 | return err;
|
---|
884 |
|
---|
885 | err = snd_bt87x_create(card, pci, &chip);
|
---|
886 | if (err < 0)
|
---|
887 | goto _error;
|
---|
888 |
|
---|
889 | memcpy(&chip->board, &snd_bt87x_boards[boardid], sizeof(chip->board));
|
---|
890 |
|
---|
891 | if (!chip->board.no_digital) {
|
---|
892 | if (digital_rate[dev] > 0)
|
---|
893 | chip->board.dig_rate = digital_rate[dev];
|
---|
894 |
|
---|
895 | chip->reg_control |= chip->board.digital_fmt;
|
---|
896 |
|
---|
897 | err = snd_bt87x_pcm(chip, DEVICE_DIGITAL, "Bt87x Digital");
|
---|
898 | if (err < 0)
|
---|
899 | goto _error;
|
---|
900 | }
|
---|
901 | if (!chip->board.no_analog) {
|
---|
902 | err = snd_bt87x_pcm(chip, DEVICE_ANALOG, "Bt87x Analog");
|
---|
903 | if (err < 0)
|
---|
904 | goto _error;
|
---|
905 | err = snd_ctl_add(card, snd_ctl_new1(
|
---|
906 | &snd_bt87x_capture_volume, chip));
|
---|
907 | if (err < 0)
|
---|
908 | goto _error;
|
---|
909 | err = snd_ctl_add(card, snd_ctl_new1(
|
---|
910 | &snd_bt87x_capture_boost, chip));
|
---|
911 | if (err < 0)
|
---|
912 | goto _error;
|
---|
913 | err = snd_ctl_add(card, snd_ctl_new1(
|
---|
914 | &snd_bt87x_capture_source, chip));
|
---|
915 | if (err < 0)
|
---|
916 | goto _error;
|
---|
917 | }
|
---|
918 | dev_info(card->dev, "bt87x%d: Using board %d, %sanalog, %sdigital "
|
---|
919 | "(rate %d Hz)\n", dev, boardid,
|
---|
920 | chip->board.no_analog ? "no " : "",
|
---|
921 | chip->board.no_digital ? "no " : "", chip->board.dig_rate);
|
---|
922 |
|
---|
923 | strcpy(card->driver, "Bt87x");
|
---|
924 | sprintf(card->shortname, "Brooktree Bt%x", pci->device);
|
---|
925 | sprintf(card->longname, "%s at %#llx, irq %i",
|
---|
926 | card->shortname, (unsigned long long)pci_resource_start(pci, 0),
|
---|
927 | chip->irq);
|
---|
928 | strcpy(card->mixername, "Bt87x");
|
---|
929 |
|
---|
930 | err = snd_card_register(card);
|
---|
931 | if (err < 0)
|
---|
932 | goto _error;
|
---|
933 |
|
---|
934 | pci_set_drvdata(pci, card);
|
---|
935 | ++dev;
|
---|
936 | return 0;
|
---|
937 |
|
---|
938 | _error:
|
---|
939 | snd_card_free(card);
|
---|
940 | return err;
|
---|
941 | }
|
---|
942 |
|
---|
943 | static void snd_bt87x_remove(struct pci_dev *pci)
|
---|
944 | {
|
---|
945 | snd_card_free(pci_get_drvdata(pci));
|
---|
946 | }
|
---|
947 |
|
---|
948 | /* default entries for all Bt87x cards - it's not exported */
|
---|
949 | /* driver_data is set to 0 to call detection */
|
---|
950 | static const struct pci_device_id snd_bt87x_default_ids[] = {
|
---|
951 | BT_DEVICE(PCI_DEVICE_ID_BROOKTREE_878, PCI_ANY_ID, PCI_ANY_ID, UNKNOWN),
|
---|
952 | BT_DEVICE(PCI_DEVICE_ID_BROOKTREE_879, PCI_ANY_ID, PCI_ANY_ID, UNKNOWN),
|
---|
953 | {0}
|
---|
954 | };
|
---|
955 |
|
---|
956 | static struct pci_driver driver = {
|
---|
957 | .name = KBUILD_MODNAME,
|
---|
958 | .id_table = snd_bt87x_ids,
|
---|
959 | .probe = snd_bt87x_probe,
|
---|
960 | .remove = snd_bt87x_remove,
|
---|
961 | };
|
---|
962 |
|
---|
963 | static int __init alsa_card_bt87x_init(void)
|
---|
964 | {
|
---|
965 | if (load_all)
|
---|
966 | driver.id_table = snd_bt87x_default_ids;
|
---|
967 | return pci_register_driver(&driver);
|
---|
968 | }
|
---|
969 |
|
---|
970 | static void __exit alsa_card_bt87x_exit(void)
|
---|
971 | {
|
---|
972 | pci_unregister_driver(&driver);
|
---|
973 | }
|
---|
974 |
|
---|
975 | module_init(alsa_card_bt87x_init)
|
---|
976 | module_exit(alsa_card_bt87x_exit)
|
---|