Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 1 | /* |
| 2 | * |
| 3 | * Support for audio capture |
| 4 | * PCI function #1 of the cx2388x. |
| 5 | * |
Trent Piepho | 05b2723 | 2007-08-24 01:06:34 -0300 | [diff] [blame] | 6 | * (c) 2007 Trent Piepho <xyzzy@speakeasy.org> |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 7 | * (c) 2005,2006 Ricardo Cerqueira <v4l@cerqueira.org> |
Mauro Carvalho Chehab | 2e7c6dc | 2006-04-03 07:53:40 -0300 | [diff] [blame] | 8 | * (c) 2005 Mauro Carvalho Chehab <mchehab@infradead.org> |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 9 | * Based on a dummy cx88 module by Gerd Knorr <kraxel@bytesex.org> |
Jaroslav Kysela | c1017a4 | 2007-10-15 09:50:19 +0200 | [diff] [blame] | 10 | * Based on dummy.c by Jaroslav Kysela <perex@perex.cz> |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 11 | * |
| 12 | * This program is free software; you can redistribute it and/or modify |
| 13 | * it under the terms of the GNU General Public License as published by |
| 14 | * the Free Software Foundation; either version 2 of the License, or |
| 15 | * (at your option) any later version. |
| 16 | * |
| 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. |
| 21 | * |
| 22 | * You should have received a copy of the GNU General Public License |
| 23 | * along with this program; if not, write to the Free Software |
| 24 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
| 25 | */ |
| 26 | |
| 27 | #include <linux/module.h> |
| 28 | #include <linux/init.h> |
| 29 | #include <linux/device.h> |
| 30 | #include <linux/interrupt.h> |
Trent Piepho | f6210c9 | 2007-08-24 01:06:36 -0300 | [diff] [blame] | 31 | #include <linux/vmalloc.h> |
Andrew Morton | c24228d | 2007-05-06 14:51:55 -0700 | [diff] [blame] | 32 | #include <linux/dma-mapping.h> |
Trent Piepho | 19453bc | 2007-08-18 22:54:49 -0300 | [diff] [blame] | 33 | #include <linux/pci.h> |
Andrew Morton | c24228d | 2007-05-06 14:51:55 -0700 | [diff] [blame] | 34 | |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 35 | #include <asm/delay.h> |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 36 | #include <sound/core.h> |
| 37 | #include <sound/pcm.h> |
| 38 | #include <sound/pcm_params.h> |
| 39 | #include <sound/control.h> |
| 40 | #include <sound/initval.h> |
Trent Piepho | bbaccc0 | 2007-09-06 23:02:25 -0300 | [diff] [blame] | 41 | #include <sound/tlv.h> |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 42 | |
| 43 | #include "cx88.h" |
| 44 | #include "cx88-reg.h" |
| 45 | |
| 46 | #define dprintk(level,fmt, arg...) if (debug >= level) \ |
| 47 | printk(KERN_INFO "%s/1: " fmt, chip->core->name , ## arg) |
| 48 | |
| 49 | #define dprintk_core(level,fmt, arg...) if (debug >= level) \ |
| 50 | printk(KERN_DEBUG "%s/1: " fmt, chip->core->name , ## arg) |
| 51 | |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 52 | /**************************************************************************** |
| 53 | Data type declarations - Can be moded to a header file later |
| 54 | ****************************************************************************/ |
| 55 | |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 56 | struct cx88_audio_dev { |
| 57 | struct cx88_core *core; |
| 58 | struct cx88_dmaqueue q; |
| 59 | |
| 60 | /* pci i/o */ |
| 61 | struct pci_dev *pci; |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 62 | |
| 63 | /* audio controls */ |
| 64 | int irq; |
| 65 | |
Takashi Iwai | f7cbb7f | 2006-01-13 18:48:06 +0100 | [diff] [blame] | 66 | struct snd_card *card; |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 67 | |
| 68 | spinlock_t reg_lock; |
Trent Piepho | 05b2723 | 2007-08-24 01:06:34 -0300 | [diff] [blame] | 69 | atomic_t count; |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 70 | |
| 71 | unsigned int dma_size; |
| 72 | unsigned int period_size; |
| 73 | unsigned int num_periods; |
| 74 | |
Mauro Carvalho Chehab | c1accaa | 2007-08-23 16:37:49 -0300 | [diff] [blame] | 75 | struct videobuf_dmabuf *dma_risc; |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 76 | |
Trent Piepho | 05b2723 | 2007-08-24 01:06:34 -0300 | [diff] [blame] | 77 | struct cx88_buffer *buf; |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 78 | |
Trent Piepho | 05b2723 | 2007-08-24 01:06:34 -0300 | [diff] [blame] | 79 | struct snd_pcm_substream *substream; |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 80 | }; |
| 81 | typedef struct cx88_audio_dev snd_cx88_card_t; |
| 82 | |
| 83 | |
| 84 | |
Trent Piepho | 54ac005 | 2007-09-06 23:02:23 -0300 | [diff] [blame] | 85 | |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 86 | /**************************************************************************** |
| 87 | Module global static vars |
| 88 | ****************************************************************************/ |
| 89 | |
| 90 | static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */ |
| 91 | static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */ |
| 92 | static int enable[SNDRV_CARDS] = {1, [1 ... (SNDRV_CARDS - 1)] = 1}; |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 93 | |
| 94 | module_param_array(enable, bool, NULL, 0444); |
| 95 | MODULE_PARM_DESC(enable, "Enable cx88x soundcard. default enabled."); |
| 96 | |
| 97 | module_param_array(index, int, NULL, 0444); |
| 98 | MODULE_PARM_DESC(index, "Index value for cx88x capture interface(s)."); |
| 99 | |
| 100 | |
| 101 | /**************************************************************************** |
| 102 | Module macros |
| 103 | ****************************************************************************/ |
| 104 | |
| 105 | MODULE_DESCRIPTION("ALSA driver module for cx2388x based TV cards"); |
| 106 | MODULE_AUTHOR("Ricardo Cerqueira"); |
Mauro Carvalho Chehab | 2e7c6dc | 2006-04-03 07:53:40 -0300 | [diff] [blame] | 107 | MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@infradead.org>"); |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 108 | MODULE_LICENSE("GPL"); |
| 109 | MODULE_SUPPORTED_DEVICE("{{Conexant,23881}," |
| 110 | "{{Conexant,23882}," |
| 111 | "{{Conexant,23883}"); |
Mauro Carvalho Chehab | a5ed425 | 2006-01-13 14:10:19 -0200 | [diff] [blame] | 112 | static unsigned int debug; |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 113 | module_param(debug,int,0644); |
| 114 | MODULE_PARM_DESC(debug,"enable debug messages"); |
| 115 | |
| 116 | /**************************************************************************** |
| 117 | Module specific funtions |
| 118 | ****************************************************************************/ |
| 119 | |
| 120 | /* |
| 121 | * BOARD Specific: Sets audio DMA |
| 122 | */ |
| 123 | |
Mauro Carvalho Chehab | be8a82d | 2006-02-07 06:49:14 -0200 | [diff] [blame] | 124 | static int _cx88_start_audio_dma(snd_cx88_card_t *chip) |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 125 | { |
| 126 | struct cx88_buffer *buf = chip->buf; |
| 127 | struct cx88_core *core=chip->core; |
| 128 | struct sram_channel *audio_ch = &cx88_sram_channels[SRAM_CH25]; |
| 129 | |
Trent Piepho | 59fd8f8 | 2007-08-18 22:09:42 -0300 | [diff] [blame] | 130 | /* Make sure RISC/FIFO are off before changing FIFO/RISC settings */ |
| 131 | cx_clear(MO_AUD_DMACNTRL, 0x11); |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 132 | |
| 133 | /* setup fifo + format - out channel */ |
Trent Piepho | 59fd8f8 | 2007-08-18 22:09:42 -0300 | [diff] [blame] | 134 | cx88_sram_channel_setup(chip->core, audio_ch, buf->bpl, buf->risc.dma); |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 135 | |
| 136 | /* sets bpl size */ |
| 137 | cx_write(MO_AUDD_LNGTH, buf->bpl); |
| 138 | |
| 139 | /* reset counter */ |
Trent Piepho | 05b2723 | 2007-08-24 01:06:34 -0300 | [diff] [blame] | 140 | cx_write(MO_AUDD_GPCNTRL, GP_COUNT_CONTROL_RESET); |
| 141 | atomic_set(&chip->count, 0); |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 142 | |
Trent Piepho | 05b2723 | 2007-08-24 01:06:34 -0300 | [diff] [blame] | 143 | dprintk(1, "Start audio DMA, %d B/line, %d lines/FIFO, %d periods, %d " |
| 144 | "byte buffer\n", buf->bpl, cx_read(audio_ch->cmds_start + 8)>>1, |
Trent Piepho | 59fd8f8 | 2007-08-18 22:09:42 -0300 | [diff] [blame] | 145 | chip->num_periods, buf->bpl * chip->num_periods); |
| 146 | |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 147 | /* Enables corresponding bits at AUD_INT_STAT */ |
Trent Piepho | 59fd8f8 | 2007-08-18 22:09:42 -0300 | [diff] [blame] | 148 | cx_write(MO_AUD_INTMSK, AUD_INT_OPC_ERR | AUD_INT_DN_SYNC | |
| 149 | AUD_INT_DN_RISCI2 | AUD_INT_DN_RISCI1); |
| 150 | |
| 151 | /* Clean any pending interrupt bits already set */ |
| 152 | cx_write(MO_AUD_INTSTAT, ~0); |
| 153 | |
| 154 | /* enable audio irqs */ |
| 155 | cx_set(MO_PCI_INTMSK, chip->core->pci_irqmask | PCI_INT_AUDINT); |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 156 | |
| 157 | /* start dma */ |
| 158 | cx_set(MO_DEV_CNTRL2, (1<<5)); /* Enables Risc Processor */ |
| 159 | cx_set(MO_AUD_DMACNTRL, 0x11); /* audio downstream FIFO and RISC enable */ |
| 160 | |
| 161 | if (debug) |
Trent Piepho | 59fd8f8 | 2007-08-18 22:09:42 -0300 | [diff] [blame] | 162 | cx88_sram_channel_dump(chip->core, audio_ch); |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 163 | |
| 164 | return 0; |
| 165 | } |
| 166 | |
| 167 | /* |
| 168 | * BOARD Specific: Resets audio DMA |
| 169 | */ |
Mauro Carvalho Chehab | be8a82d | 2006-02-07 06:49:14 -0200 | [diff] [blame] | 170 | static int _cx88_stop_audio_dma(snd_cx88_card_t *chip) |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 171 | { |
| 172 | struct cx88_core *core=chip->core; |
| 173 | dprintk(1, "Stopping audio DMA\n"); |
| 174 | |
| 175 | /* stop dma */ |
| 176 | cx_clear(MO_AUD_DMACNTRL, 0x11); |
| 177 | |
| 178 | /* disable irqs */ |
Trent Piepho | 8ddac9e | 2007-08-18 06:57:55 -0300 | [diff] [blame] | 179 | cx_clear(MO_PCI_INTMSK, PCI_INT_AUDINT); |
Trent Piepho | 59fd8f8 | 2007-08-18 22:09:42 -0300 | [diff] [blame] | 180 | cx_clear(MO_AUD_INTMSK, AUD_INT_OPC_ERR | AUD_INT_DN_SYNC | |
| 181 | AUD_INT_DN_RISCI2 | AUD_INT_DN_RISCI1); |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 182 | |
| 183 | if (debug) |
| 184 | cx88_sram_channel_dump(chip->core, &cx88_sram_channels[SRAM_CH25]); |
| 185 | |
| 186 | return 0; |
| 187 | } |
| 188 | |
Trent Piepho | 05b2723 | 2007-08-24 01:06:34 -0300 | [diff] [blame] | 189 | #define MAX_IRQ_LOOP 50 |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 190 | |
| 191 | /* |
| 192 | * BOARD Specific: IRQ dma bits |
| 193 | */ |
| 194 | static char *cx88_aud_irqs[32] = { |
| 195 | "dn_risci1", "up_risci1", "rds_dn_risc1", /* 0-2 */ |
| 196 | NULL, /* reserved */ |
| 197 | "dn_risci2", "up_risci2", "rds_dn_risc2", /* 4-6 */ |
| 198 | NULL, /* reserved */ |
| 199 | "dnf_of", "upf_uf", "rds_dnf_uf", /* 8-10 */ |
| 200 | NULL, /* reserved */ |
| 201 | "dn_sync", "up_sync", "rds_dn_sync", /* 12-14 */ |
| 202 | NULL, /* reserved */ |
| 203 | "opc_err", "par_err", "rip_err", /* 16-18 */ |
| 204 | "pci_abort", "ber_irq", "mchg_irq" /* 19-21 */ |
| 205 | }; |
| 206 | |
| 207 | /* |
| 208 | * BOARD Specific: Threats IRQ audio specific calls |
| 209 | */ |
| 210 | static void cx8801_aud_irq(snd_cx88_card_t *chip) |
| 211 | { |
| 212 | struct cx88_core *core = chip->core; |
| 213 | u32 status, mask; |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 214 | |
| 215 | status = cx_read(MO_AUD_INTSTAT); |
| 216 | mask = cx_read(MO_AUD_INTMSK); |
Trent Piepho | 05b2723 | 2007-08-24 01:06:34 -0300 | [diff] [blame] | 217 | if (0 == (status & mask)) |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 218 | return; |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 219 | cx_write(MO_AUD_INTSTAT, status); |
| 220 | if (debug > 1 || (status & mask & ~0xff)) |
| 221 | cx88_print_irqbits(core->name, "irq aud", |
Mauro Carvalho Chehab | 66623a0 | 2007-03-29 08:47:04 -0300 | [diff] [blame] | 222 | cx88_aud_irqs, ARRAY_SIZE(cx88_aud_irqs), |
| 223 | status, mask); |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 224 | /* risc op code error */ |
Trent Piepho | 59fd8f8 | 2007-08-18 22:09:42 -0300 | [diff] [blame] | 225 | if (status & AUD_INT_OPC_ERR) { |
Trent Piepho | 05b2723 | 2007-08-24 01:06:34 -0300 | [diff] [blame] | 226 | printk(KERN_WARNING "%s/1: Audio risc op code error\n",core->name); |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 227 | cx_clear(MO_AUD_DMACNTRL, 0x11); |
| 228 | cx88_sram_channel_dump(core, &cx88_sram_channels[SRAM_CH25]); |
| 229 | } |
Trent Piepho | 05b2723 | 2007-08-24 01:06:34 -0300 | [diff] [blame] | 230 | if (status & AUD_INT_DN_SYNC) { |
| 231 | dprintk(1, "Downstream sync error\n"); |
| 232 | cx_write(MO_AUDD_GPCNTRL, GP_COUNT_CONTROL_RESET); |
| 233 | return; |
| 234 | } |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 235 | /* risc1 downstream */ |
Trent Piepho | 59fd8f8 | 2007-08-18 22:09:42 -0300 | [diff] [blame] | 236 | if (status & AUD_INT_DN_RISCI1) { |
Trent Piepho | 05b2723 | 2007-08-24 01:06:34 -0300 | [diff] [blame] | 237 | atomic_set(&chip->count, cx_read(MO_AUDD_GPCNT)); |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 238 | snd_pcm_period_elapsed(chip->substream); |
| 239 | } |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 240 | /* FIXME: Any other status should deserve a special handling? */ |
| 241 | } |
| 242 | |
| 243 | /* |
| 244 | * BOARD Specific: Handles IRQ calls |
| 245 | */ |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 246 | static irqreturn_t cx8801_irq(int irq, void *dev_id) |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 247 | { |
| 248 | snd_cx88_card_t *chip = dev_id; |
| 249 | struct cx88_core *core = chip->core; |
| 250 | u32 status; |
| 251 | int loop, handled = 0; |
| 252 | |
| 253 | for (loop = 0; loop < MAX_IRQ_LOOP; loop++) { |
Trent Piepho | 8ddac9e | 2007-08-18 06:57:55 -0300 | [diff] [blame] | 254 | status = cx_read(MO_PCI_INTSTAT) & |
| 255 | (core->pci_irqmask | PCI_INT_AUDINT); |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 256 | if (0 == status) |
| 257 | goto out; |
Trent Piepho | 05b2723 | 2007-08-24 01:06:34 -0300 | [diff] [blame] | 258 | dprintk(3, "cx8801_irq loop %d/%d, status %x\n", |
| 259 | loop, MAX_IRQ_LOOP, status); |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 260 | handled = 1; |
| 261 | cx_write(MO_PCI_INTSTAT, status); |
| 262 | |
Trent Piepho | 5ba862b | 2007-08-18 07:02:26 -0300 | [diff] [blame] | 263 | if (status & core->pci_irqmask) |
| 264 | cx88_core_irq(core, status); |
Trent Piepho | 05b2723 | 2007-08-24 01:06:34 -0300 | [diff] [blame] | 265 | if (status & PCI_INT_AUDINT) |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 266 | cx8801_aud_irq(chip); |
Trent Piepho | 05b2723 | 2007-08-24 01:06:34 -0300 | [diff] [blame] | 267 | } |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 268 | |
| 269 | if (MAX_IRQ_LOOP == loop) { |
Trent Piepho | 05b2723 | 2007-08-24 01:06:34 -0300 | [diff] [blame] | 270 | printk(KERN_ERR |
| 271 | "%s/1: IRQ loop detected, disabling interrupts\n", |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 272 | core->name); |
Trent Piepho | 8ddac9e | 2007-08-18 06:57:55 -0300 | [diff] [blame] | 273 | cx_clear(MO_PCI_INTMSK, PCI_INT_AUDINT); |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 274 | } |
| 275 | |
| 276 | out: |
| 277 | return IRQ_RETVAL(handled); |
| 278 | } |
| 279 | |
| 280 | |
| 281 | static int dsp_buffer_free(snd_cx88_card_t *chip) |
| 282 | { |
| 283 | BUG_ON(!chip->dma_size); |
| 284 | |
| 285 | dprintk(2,"Freeing buffer\n"); |
Guennadi Liakhovetski | 0705135 | 2008-04-22 14:42:13 -0300 | [diff] [blame] | 286 | videobuf_sg_dma_unmap(&chip->pci->dev, chip->dma_risc); |
Mauro Carvalho Chehab | c1accaa | 2007-08-23 16:37:49 -0300 | [diff] [blame] | 287 | videobuf_dma_free(chip->dma_risc); |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 288 | btcx_riscmem_free(chip->pci,&chip->buf->risc); |
| 289 | kfree(chip->buf); |
| 290 | |
Mauro Carvalho Chehab | c1accaa | 2007-08-23 16:37:49 -0300 | [diff] [blame] | 291 | chip->dma_risc = NULL; |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 292 | chip->dma_size = 0; |
| 293 | |
Trent Piepho | 05b2723 | 2007-08-24 01:06:34 -0300 | [diff] [blame] | 294 | return 0; |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 295 | } |
| 296 | |
| 297 | /**************************************************************************** |
| 298 | ALSA PCM Interface |
| 299 | ****************************************************************************/ |
| 300 | |
| 301 | /* |
| 302 | * Digital hardware definition |
| 303 | */ |
Trent Piepho | 05b2723 | 2007-08-24 01:06:34 -0300 | [diff] [blame] | 304 | #define DEFAULT_FIFO_SIZE 4096 |
Takashi Iwai | f7cbb7f | 2006-01-13 18:48:06 +0100 | [diff] [blame] | 305 | static struct snd_pcm_hardware snd_cx88_digital_hw = { |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 306 | .info = SNDRV_PCM_INFO_MMAP | |
| 307 | SNDRV_PCM_INFO_INTERLEAVED | |
| 308 | SNDRV_PCM_INFO_BLOCK_TRANSFER | |
| 309 | SNDRV_PCM_INFO_MMAP_VALID, |
| 310 | .formats = SNDRV_PCM_FMTBIT_S16_LE, |
| 311 | |
| 312 | .rates = SNDRV_PCM_RATE_48000, |
| 313 | .rate_min = 48000, |
| 314 | .rate_max = 48000, |
Trent Piepho | 5a5b3b5 | 2007-08-18 21:01:40 -0300 | [diff] [blame] | 315 | .channels_min = 2, |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 316 | .channels_max = 2, |
Trent Piepho | 05b2723 | 2007-08-24 01:06:34 -0300 | [diff] [blame] | 317 | /* Analog audio output will be full of clicks and pops if there |
| 318 | are not exactly four lines in the SRAM FIFO buffer. */ |
| 319 | .period_bytes_min = DEFAULT_FIFO_SIZE/4, |
| 320 | .period_bytes_max = DEFAULT_FIFO_SIZE/4, |
| 321 | .periods_min = 1, |
| 322 | .periods_max = 1024, |
| 323 | .buffer_bytes_max = (1024*1024), |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 324 | }; |
| 325 | |
| 326 | /* |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 327 | * audio pcm capture open callback |
| 328 | */ |
Takashi Iwai | f7cbb7f | 2006-01-13 18:48:06 +0100 | [diff] [blame] | 329 | static int snd_cx88_pcm_open(struct snd_pcm_substream *substream) |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 330 | { |
| 331 | snd_cx88_card_t *chip = snd_pcm_substream_chip(substream); |
Takashi Iwai | f7cbb7f | 2006-01-13 18:48:06 +0100 | [diff] [blame] | 332 | struct snd_pcm_runtime *runtime = substream->runtime; |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 333 | int err; |
| 334 | |
Trent Piepho | 05b2723 | 2007-08-24 01:06:34 -0300 | [diff] [blame] | 335 | err = snd_pcm_hw_constraint_pow2(runtime, 0, SNDRV_PCM_HW_PARAM_PERIODS); |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 336 | if (err < 0) |
| 337 | goto _error; |
| 338 | |
| 339 | chip->substream = substream; |
| 340 | |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 341 | runtime->hw = snd_cx88_digital_hw; |
| 342 | |
Trent Piepho | 05b2723 | 2007-08-24 01:06:34 -0300 | [diff] [blame] | 343 | if (cx88_sram_channels[SRAM_CH25].fifo_size != DEFAULT_FIFO_SIZE) { |
| 344 | unsigned int bpl = cx88_sram_channels[SRAM_CH25].fifo_size / 4; |
| 345 | bpl &= ~7; /* must be multiple of 8 */ |
| 346 | runtime->hw.period_bytes_min = bpl; |
| 347 | runtime->hw.period_bytes_max = bpl; |
| 348 | } |
| 349 | |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 350 | return 0; |
| 351 | _error: |
| 352 | dprintk(1,"Error opening PCM!\n"); |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 353 | return err; |
| 354 | } |
| 355 | |
| 356 | /* |
| 357 | * audio close callback |
| 358 | */ |
Takashi Iwai | f7cbb7f | 2006-01-13 18:48:06 +0100 | [diff] [blame] | 359 | static int snd_cx88_close(struct snd_pcm_substream *substream) |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 360 | { |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 361 | return 0; |
| 362 | } |
| 363 | |
| 364 | /* |
| 365 | * hw_params callback |
| 366 | */ |
Takashi Iwai | f7cbb7f | 2006-01-13 18:48:06 +0100 | [diff] [blame] | 367 | static int snd_cx88_hw_params(struct snd_pcm_substream * substream, |
| 368 | struct snd_pcm_hw_params * hw_params) |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 369 | { |
| 370 | snd_cx88_card_t *chip = snd_pcm_substream_chip(substream); |
Mauro Carvalho Chehab | c1accaa | 2007-08-23 16:37:49 -0300 | [diff] [blame] | 371 | struct videobuf_dmabuf *dma; |
| 372 | |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 373 | struct cx88_buffer *buf; |
Trent Piepho | 05b2723 | 2007-08-24 01:06:34 -0300 | [diff] [blame] | 374 | int ret; |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 375 | |
| 376 | if (substream->runtime->dma_area) { |
| 377 | dsp_buffer_free(chip); |
| 378 | substream->runtime->dma_area = NULL; |
| 379 | } |
| 380 | |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 381 | chip->period_size = params_period_bytes(hw_params); |
| 382 | chip->num_periods = params_periods(hw_params); |
| 383 | chip->dma_size = chip->period_size * params_periods(hw_params); |
| 384 | |
| 385 | BUG_ON(!chip->dma_size); |
Trent Piepho | 05b2723 | 2007-08-24 01:06:34 -0300 | [diff] [blame] | 386 | BUG_ON(chip->num_periods & (chip->num_periods-1)); |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 387 | |
Guennadi Liakhovetski | 0705135 | 2008-04-22 14:42:13 -0300 | [diff] [blame] | 388 | buf = videobuf_sg_alloc(sizeof(*buf)); |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 389 | if (NULL == buf) |
| 390 | return -ENOMEM; |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 391 | |
| 392 | buf->vb.memory = V4L2_MEMORY_MMAP; |
Trent Piepho | 05b2723 | 2007-08-24 01:06:34 -0300 | [diff] [blame] | 393 | buf->vb.field = V4L2_FIELD_NONE; |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 394 | buf->vb.width = chip->period_size; |
Trent Piepho | 05b2723 | 2007-08-24 01:06:34 -0300 | [diff] [blame] | 395 | buf->bpl = chip->period_size; |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 396 | buf->vb.height = chip->num_periods; |
| 397 | buf->vb.size = chip->dma_size; |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 398 | |
Guennadi Liakhovetski | 0705135 | 2008-04-22 14:42:13 -0300 | [diff] [blame] | 399 | dma = videobuf_to_dma(&buf->vb); |
Mauro Carvalho Chehab | c1accaa | 2007-08-23 16:37:49 -0300 | [diff] [blame] | 400 | videobuf_dma_init(dma); |
| 401 | ret = videobuf_dma_init_kernel(dma, PCI_DMA_FROMDEVICE, |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 402 | (PAGE_ALIGN(buf->vb.size) >> PAGE_SHIFT)); |
Trent Piepho | 05b2723 | 2007-08-24 01:06:34 -0300 | [diff] [blame] | 403 | if (ret < 0) |
| 404 | goto error; |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 405 | |
Guennadi Liakhovetski | 0705135 | 2008-04-22 14:42:13 -0300 | [diff] [blame] | 406 | ret = videobuf_sg_dma_map(&chip->pci->dev, dma); |
Trent Piepho | 05b2723 | 2007-08-24 01:06:34 -0300 | [diff] [blame] | 407 | if (ret < 0) |
| 408 | goto error; |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 409 | |
Mauro Carvalho Chehab | c1accaa | 2007-08-23 16:37:49 -0300 | [diff] [blame] | 410 | ret = cx88_risc_databuffer(chip->pci, &buf->risc, dma->sglist, |
Trent Piepho | 05b2723 | 2007-08-24 01:06:34 -0300 | [diff] [blame] | 411 | buf->vb.width, buf->vb.height, 1); |
| 412 | if (ret < 0) |
| 413 | goto error; |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 414 | |
Trent Piepho | 05b2723 | 2007-08-24 01:06:34 -0300 | [diff] [blame] | 415 | /* Loop back to start of program */ |
| 416 | buf->risc.jmp[0] = cpu_to_le32(RISC_JUMP|RISC_IRQ1|RISC_CNT_INC); |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 417 | buf->risc.jmp[1] = cpu_to_le32(buf->risc.dma); |
| 418 | |
Brandon Philips | 0fc0686 | 2007-11-06 20:02:36 -0300 | [diff] [blame] | 419 | buf->vb.state = VIDEOBUF_PREPARED; |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 420 | |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 421 | chip->buf = buf; |
Mauro Carvalho Chehab | c1accaa | 2007-08-23 16:37:49 -0300 | [diff] [blame] | 422 | chip->dma_risc = dma; |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 423 | |
Mauro Carvalho Chehab | c1accaa | 2007-08-23 16:37:49 -0300 | [diff] [blame] | 424 | substream->runtime->dma_area = chip->dma_risc->vmalloc; |
Trent Piepho | f6210c9 | 2007-08-24 01:06:36 -0300 | [diff] [blame] | 425 | substream->runtime->dma_bytes = chip->dma_size; |
| 426 | substream->runtime->dma_addr = 0; |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 427 | return 0; |
Trent Piepho | 05b2723 | 2007-08-24 01:06:34 -0300 | [diff] [blame] | 428 | |
| 429 | error: |
| 430 | kfree(buf); |
| 431 | return ret; |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 432 | } |
| 433 | |
| 434 | /* |
| 435 | * hw free callback |
| 436 | */ |
Takashi Iwai | f7cbb7f | 2006-01-13 18:48:06 +0100 | [diff] [blame] | 437 | static int snd_cx88_hw_free(struct snd_pcm_substream * substream) |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 438 | { |
| 439 | |
| 440 | snd_cx88_card_t *chip = snd_pcm_substream_chip(substream); |
| 441 | |
| 442 | if (substream->runtime->dma_area) { |
| 443 | dsp_buffer_free(chip); |
| 444 | substream->runtime->dma_area = NULL; |
| 445 | } |
| 446 | |
| 447 | return 0; |
| 448 | } |
| 449 | |
| 450 | /* |
| 451 | * prepare callback |
| 452 | */ |
Takashi Iwai | f7cbb7f | 2006-01-13 18:48:06 +0100 | [diff] [blame] | 453 | static int snd_cx88_prepare(struct snd_pcm_substream *substream) |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 454 | { |
| 455 | return 0; |
| 456 | } |
| 457 | |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 458 | /* |
| 459 | * trigger callback |
| 460 | */ |
Takashi Iwai | f7cbb7f | 2006-01-13 18:48:06 +0100 | [diff] [blame] | 461 | static int snd_cx88_card_trigger(struct snd_pcm_substream *substream, int cmd) |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 462 | { |
| 463 | snd_cx88_card_t *chip = snd_pcm_substream_chip(substream); |
| 464 | int err; |
| 465 | |
Trent Piepho | 05b2723 | 2007-08-24 01:06:34 -0300 | [diff] [blame] | 466 | /* Local interrupts are already disabled by ALSA */ |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 467 | spin_lock(&chip->reg_lock); |
| 468 | |
| 469 | switch (cmd) { |
| 470 | case SNDRV_PCM_TRIGGER_START: |
| 471 | err=_cx88_start_audio_dma(chip); |
| 472 | break; |
| 473 | case SNDRV_PCM_TRIGGER_STOP: |
| 474 | err=_cx88_stop_audio_dma(chip); |
| 475 | break; |
| 476 | default: |
| 477 | err=-EINVAL; |
| 478 | break; |
| 479 | } |
| 480 | |
| 481 | spin_unlock(&chip->reg_lock); |
| 482 | |
| 483 | return err; |
| 484 | } |
| 485 | |
| 486 | /* |
| 487 | * pointer callback |
| 488 | */ |
Takashi Iwai | f7cbb7f | 2006-01-13 18:48:06 +0100 | [diff] [blame] | 489 | static snd_pcm_uframes_t snd_cx88_pointer(struct snd_pcm_substream *substream) |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 490 | { |
| 491 | snd_cx88_card_t *chip = snd_pcm_substream_chip(substream); |
Takashi Iwai | f7cbb7f | 2006-01-13 18:48:06 +0100 | [diff] [blame] | 492 | struct snd_pcm_runtime *runtime = substream->runtime; |
Trent Piepho | 05b2723 | 2007-08-24 01:06:34 -0300 | [diff] [blame] | 493 | u16 count; |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 494 | |
Trent Piepho | 05b2723 | 2007-08-24 01:06:34 -0300 | [diff] [blame] | 495 | count = atomic_read(&chip->count); |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 496 | |
Harvey Harrison | 32d83ef | 2008-04-08 23:20:00 -0300 | [diff] [blame^] | 497 | // dprintk(2, "%s - count %d (+%u), period %d, frame %lu\n", __func__, |
Trent Piepho | 05b2723 | 2007-08-24 01:06:34 -0300 | [diff] [blame] | 498 | // count, new, count & (runtime->periods-1), |
| 499 | // runtime->period_size * (count & (runtime->periods-1))); |
| 500 | return runtime->period_size * (count & (runtime->periods-1)); |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 501 | } |
| 502 | |
| 503 | /* |
Trent Piepho | f6210c9 | 2007-08-24 01:06:36 -0300 | [diff] [blame] | 504 | * page callback (needed for mmap) |
| 505 | */ |
| 506 | static struct page *snd_cx88_page(struct snd_pcm_substream *substream, |
| 507 | unsigned long offset) |
| 508 | { |
| 509 | void *pageptr = substream->runtime->dma_area + offset; |
| 510 | return vmalloc_to_page(pageptr); |
| 511 | } |
| 512 | |
| 513 | /* |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 514 | * operators |
| 515 | */ |
Takashi Iwai | f7cbb7f | 2006-01-13 18:48:06 +0100 | [diff] [blame] | 516 | static struct snd_pcm_ops snd_cx88_pcm_ops = { |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 517 | .open = snd_cx88_pcm_open, |
| 518 | .close = snd_cx88_close, |
| 519 | .ioctl = snd_pcm_lib_ioctl, |
| 520 | .hw_params = snd_cx88_hw_params, |
| 521 | .hw_free = snd_cx88_hw_free, |
| 522 | .prepare = snd_cx88_prepare, |
| 523 | .trigger = snd_cx88_card_trigger, |
| 524 | .pointer = snd_cx88_pointer, |
Trent Piepho | f6210c9 | 2007-08-24 01:06:36 -0300 | [diff] [blame] | 525 | .page = snd_cx88_page, |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 526 | }; |
| 527 | |
| 528 | /* |
| 529 | * create a PCM device |
| 530 | */ |
| 531 | static int __devinit snd_cx88_pcm(snd_cx88_card_t *chip, int device, char *name) |
| 532 | { |
| 533 | int err; |
Takashi Iwai | f7cbb7f | 2006-01-13 18:48:06 +0100 | [diff] [blame] | 534 | struct snd_pcm *pcm; |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 535 | |
| 536 | err = snd_pcm_new(chip->card, name, device, 0, 1, &pcm); |
| 537 | if (err < 0) |
| 538 | return err; |
| 539 | pcm->private_data = chip; |
| 540 | strcpy(pcm->name, name); |
| 541 | snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_cx88_pcm_ops); |
| 542 | |
| 543 | return 0; |
| 544 | } |
| 545 | |
| 546 | /**************************************************************************** |
| 547 | CONTROL INTERFACE |
| 548 | ****************************************************************************/ |
Trent Piepho | 54ac005 | 2007-09-06 23:02:23 -0300 | [diff] [blame] | 549 | static int snd_cx88_volume_info(struct snd_kcontrol *kcontrol, |
| 550 | struct snd_ctl_elem_info *info) |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 551 | { |
| 552 | info->type = SNDRV_CTL_ELEM_TYPE_INTEGER; |
Trent Piepho | 82896f2 | 2007-09-06 23:02:23 -0300 | [diff] [blame] | 553 | info->count = 2; |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 554 | info->value.integer.min = 0; |
| 555 | info->value.integer.max = 0x3f; |
| 556 | |
| 557 | return 0; |
| 558 | } |
| 559 | |
Trent Piepho | 54ac005 | 2007-09-06 23:02:23 -0300 | [diff] [blame] | 560 | static int snd_cx88_volume_get(struct snd_kcontrol *kcontrol, |
| 561 | struct snd_ctl_elem_value *value) |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 562 | { |
| 563 | snd_cx88_card_t *chip = snd_kcontrol_chip(kcontrol); |
| 564 | struct cx88_core *core=chip->core; |
Trent Piepho | 82896f2 | 2007-09-06 23:02:23 -0300 | [diff] [blame] | 565 | int vol = 0x3f - (cx_read(AUD_VOL_CTL) & 0x3f), |
| 566 | bal = cx_read(AUD_BAL_CTL); |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 567 | |
Trent Piepho | 82896f2 | 2007-09-06 23:02:23 -0300 | [diff] [blame] | 568 | value->value.integer.value[(bal & 0x40) ? 0 : 1] = vol; |
| 569 | vol -= (bal & 0x3f); |
| 570 | value->value.integer.value[(bal & 0x40) ? 1 : 0] = vol < 0 ? 0 : vol; |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 571 | |
| 572 | return 0; |
| 573 | } |
| 574 | |
| 575 | /* OK - TODO: test it */ |
Trent Piepho | 54ac005 | 2007-09-06 23:02:23 -0300 | [diff] [blame] | 576 | static int snd_cx88_volume_put(struct snd_kcontrol *kcontrol, |
| 577 | struct snd_ctl_elem_value *value) |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 578 | { |
| 579 | snd_cx88_card_t *chip = snd_kcontrol_chip(kcontrol); |
| 580 | struct cx88_core *core=chip->core; |
Trent Piepho | 82896f2 | 2007-09-06 23:02:23 -0300 | [diff] [blame] | 581 | int v, b; |
| 582 | int changed = 0; |
| 583 | u32 old; |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 584 | |
Trent Piepho | 82896f2 | 2007-09-06 23:02:23 -0300 | [diff] [blame] | 585 | b = value->value.integer.value[1] - value->value.integer.value[0]; |
| 586 | if (b < 0) { |
| 587 | v = 0x3f - value->value.integer.value[0]; |
| 588 | b = (-b) | 0x40; |
| 589 | } else { |
| 590 | v = 0x3f - value->value.integer.value[1]; |
| 591 | } |
Trent Piepho | 05b2723 | 2007-08-24 01:06:34 -0300 | [diff] [blame] | 592 | /* Do we really know this will always be called with IRQs on? */ |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 593 | spin_lock_irq(&chip->reg_lock); |
Trent Piepho | 82896f2 | 2007-09-06 23:02:23 -0300 | [diff] [blame] | 594 | old = cx_read(AUD_VOL_CTL); |
| 595 | if (v != (old & 0x3f)) { |
| 596 | cx_write(AUD_VOL_CTL, (old & ~0x3f) | v); |
| 597 | changed = 1; |
| 598 | } |
| 599 | if (cx_read(AUD_BAL_CTL) != b) { |
| 600 | cx_write(AUD_BAL_CTL, b); |
| 601 | changed = 1; |
| 602 | } |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 603 | spin_unlock_irq(&chip->reg_lock); |
| 604 | |
Trent Piepho | 82896f2 | 2007-09-06 23:02:23 -0300 | [diff] [blame] | 605 | return changed; |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 606 | } |
| 607 | |
Trent Piepho | bbaccc0 | 2007-09-06 23:02:25 -0300 | [diff] [blame] | 608 | static const DECLARE_TLV_DB_SCALE(snd_cx88_db_scale, -6300, 100, 0); |
| 609 | |
Trent Piepho | 54ac005 | 2007-09-06 23:02:23 -0300 | [diff] [blame] | 610 | static struct snd_kcontrol_new snd_cx88_volume = { |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 611 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
Trent Piepho | bbaccc0 | 2007-09-06 23:02:25 -0300 | [diff] [blame] | 612 | .access = SNDRV_CTL_ELEM_ACCESS_READWRITE | |
| 613 | SNDRV_CTL_ELEM_ACCESS_TLV_READ, |
Trent Piepho | 54ac005 | 2007-09-06 23:02:23 -0300 | [diff] [blame] | 614 | .name = "Playback Volume", |
| 615 | .info = snd_cx88_volume_info, |
| 616 | .get = snd_cx88_volume_get, |
| 617 | .put = snd_cx88_volume_put, |
Trent Piepho | bbaccc0 | 2007-09-06 23:02:25 -0300 | [diff] [blame] | 618 | .tlv.p = snd_cx88_db_scale, |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 619 | }; |
| 620 | |
Trent Piepho | 54ac005 | 2007-09-06 23:02:23 -0300 | [diff] [blame] | 621 | static int snd_cx88_switch_get(struct snd_kcontrol *kcontrol, |
| 622 | struct snd_ctl_elem_value *value) |
| 623 | { |
| 624 | snd_cx88_card_t *chip = snd_kcontrol_chip(kcontrol); |
| 625 | struct cx88_core *core = chip->core; |
| 626 | u32 bit = kcontrol->private_value; |
| 627 | |
| 628 | value->value.integer.value[0] = !(cx_read(AUD_VOL_CTL) & bit); |
| 629 | return 0; |
| 630 | } |
| 631 | |
| 632 | static int snd_cx88_switch_put(struct snd_kcontrol *kcontrol, |
| 633 | struct snd_ctl_elem_value *value) |
| 634 | { |
| 635 | snd_cx88_card_t *chip = snd_kcontrol_chip(kcontrol); |
| 636 | struct cx88_core *core = chip->core; |
| 637 | u32 bit = kcontrol->private_value; |
| 638 | int ret = 0; |
| 639 | u32 vol; |
| 640 | |
| 641 | spin_lock_irq(&chip->reg_lock); |
| 642 | vol = cx_read(AUD_VOL_CTL); |
| 643 | if (value->value.integer.value[0] != !(vol & bit)) { |
| 644 | vol ^= bit; |
| 645 | cx_write(AUD_VOL_CTL, vol); |
| 646 | ret = 1; |
| 647 | } |
| 648 | spin_unlock_irq(&chip->reg_lock); |
| 649 | return ret; |
| 650 | } |
| 651 | |
| 652 | static struct snd_kcontrol_new snd_cx88_dac_switch = { |
| 653 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
| 654 | .name = "Playback Switch", |
| 655 | .info = snd_ctl_boolean_mono_info, |
| 656 | .get = snd_cx88_switch_get, |
| 657 | .put = snd_cx88_switch_put, |
| 658 | .private_value = (1<<8), |
| 659 | }; |
| 660 | |
| 661 | static struct snd_kcontrol_new snd_cx88_source_switch = { |
| 662 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
| 663 | .name = "Capture Switch", |
| 664 | .info = snd_ctl_boolean_mono_info, |
| 665 | .get = snd_cx88_switch_get, |
| 666 | .put = snd_cx88_switch_put, |
| 667 | .private_value = (1<<6), |
| 668 | }; |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 669 | |
| 670 | /**************************************************************************** |
| 671 | Basic Flow for Sound Devices |
| 672 | ****************************************************************************/ |
| 673 | |
| 674 | /* |
| 675 | * PCI ID Table - 14f1:8801 and 14f1:8811 means function 1: Audio |
| 676 | * Only boards with eeprom and byte 1 at eeprom=1 have it |
| 677 | */ |
| 678 | |
Henrik Kretzschmar | 396c9b9 | 2006-04-24 15:59:04 +0200 | [diff] [blame] | 679 | static struct pci_device_id cx88_audio_pci_tbl[] __devinitdata = { |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 680 | {0x14f1,0x8801,PCI_ANY_ID,PCI_ANY_ID,0,0,0}, |
| 681 | {0x14f1,0x8811,PCI_ANY_ID,PCI_ANY_ID,0,0,0}, |
| 682 | {0, } |
| 683 | }; |
| 684 | MODULE_DEVICE_TABLE(pci, cx88_audio_pci_tbl); |
| 685 | |
| 686 | /* |
| 687 | * Chip-specific destructor |
| 688 | */ |
| 689 | |
| 690 | static int snd_cx88_free(snd_cx88_card_t *chip) |
| 691 | { |
| 692 | |
| 693 | if (chip->irq >= 0){ |
| 694 | synchronize_irq(chip->irq); |
| 695 | free_irq(chip->irq, chip); |
| 696 | } |
| 697 | |
| 698 | cx88_core_put(chip->core,chip->pci); |
| 699 | |
| 700 | pci_disable_device(chip->pci); |
| 701 | return 0; |
| 702 | } |
| 703 | |
| 704 | /* |
| 705 | * Component Destructor |
| 706 | */ |
Takashi Iwai | f7cbb7f | 2006-01-13 18:48:06 +0100 | [diff] [blame] | 707 | static void snd_cx88_dev_free(struct snd_card * card) |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 708 | { |
| 709 | snd_cx88_card_t *chip = card->private_data; |
| 710 | |
| 711 | snd_cx88_free(chip); |
| 712 | } |
| 713 | |
| 714 | |
| 715 | /* |
| 716 | * Alsa Constructor - Component probe |
| 717 | */ |
| 718 | |
Mauro Carvalho Chehab | a5ed425 | 2006-01-13 14:10:19 -0200 | [diff] [blame] | 719 | static int devno; |
Takashi Iwai | f7cbb7f | 2006-01-13 18:48:06 +0100 | [diff] [blame] | 720 | static int __devinit snd_cx88_create(struct snd_card *card, |
| 721 | struct pci_dev *pci, |
| 722 | snd_cx88_card_t **rchip) |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 723 | { |
| 724 | snd_cx88_card_t *chip; |
| 725 | struct cx88_core *core; |
| 726 | int err; |
Trent Piepho | 19453bc | 2007-08-18 22:54:49 -0300 | [diff] [blame] | 727 | unsigned char pci_lat; |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 728 | |
| 729 | *rchip = NULL; |
| 730 | |
| 731 | err = pci_enable_device(pci); |
| 732 | if (err < 0) |
| 733 | return err; |
| 734 | |
| 735 | pci_set_master(pci); |
| 736 | |
| 737 | chip = (snd_cx88_card_t *) card->private_data; |
| 738 | |
| 739 | core = cx88_core_get(pci); |
Duncan Sands | 31dcbf9 | 2006-03-14 12:12:39 -0300 | [diff] [blame] | 740 | if (NULL == core) { |
| 741 | err = -EINVAL; |
| 742 | kfree (chip); |
| 743 | return err; |
| 744 | } |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 745 | |
Mauro Carvalho Chehab | aaa40cb | 2007-03-30 10:58:01 -0300 | [diff] [blame] | 746 | if (!pci_dma_supported(pci,DMA_32BIT_MASK)) { |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 747 | dprintk(0, "%s/1: Oops: no 32bit PCI DMA ???\n",core->name); |
| 748 | err = -EIO; |
| 749 | cx88_core_put(core,pci); |
| 750 | return err; |
| 751 | } |
| 752 | |
| 753 | |
| 754 | /* pci init */ |
| 755 | chip->card = card; |
| 756 | chip->pci = pci; |
| 757 | chip->irq = -1; |
| 758 | spin_lock_init(&chip->reg_lock); |
| 759 | |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 760 | chip->core = core; |
| 761 | |
| 762 | /* get irq */ |
| 763 | err = request_irq(chip->pci->irq, cx8801_irq, |
Thomas Gleixner | 8076fe3 | 2006-07-01 19:29:37 -0700 | [diff] [blame] | 764 | IRQF_SHARED | IRQF_DISABLED, chip->core->name, chip); |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 765 | if (err < 0) { |
| 766 | dprintk(0, "%s: can't get IRQ %d\n", |
| 767 | chip->core->name, chip->pci->irq); |
| 768 | return err; |
| 769 | } |
| 770 | |
| 771 | /* print pci info */ |
Trent Piepho | 19453bc | 2007-08-18 22:54:49 -0300 | [diff] [blame] | 772 | pci_read_config_byte(pci, PCI_LATENCY_TIMER, &pci_lat); |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 773 | |
| 774 | dprintk(1,"ALSA %s/%i: found at %s, rev: %d, irq: %d, " |
Greg Kroah-Hartman | 228aef6 | 2006-06-12 15:16:52 -0700 | [diff] [blame] | 775 | "latency: %d, mmio: 0x%llx\n", core->name, devno, |
Trent Piepho | 19453bc | 2007-08-18 22:54:49 -0300 | [diff] [blame] | 776 | pci_name(pci), pci->revision, pci->irq, |
| 777 | pci_lat, (unsigned long long)pci_resource_start(pci,0)); |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 778 | |
| 779 | chip->irq = pci->irq; |
| 780 | synchronize_irq(chip->irq); |
| 781 | |
| 782 | snd_card_set_dev(card, &pci->dev); |
| 783 | |
| 784 | *rchip = chip; |
| 785 | |
| 786 | return 0; |
| 787 | } |
| 788 | |
| 789 | static int __devinit cx88_audio_initdev(struct pci_dev *pci, |
| 790 | const struct pci_device_id *pci_id) |
| 791 | { |
Takashi Iwai | f7cbb7f | 2006-01-13 18:48:06 +0100 | [diff] [blame] | 792 | struct snd_card *card; |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 793 | snd_cx88_card_t *chip; |
| 794 | int err; |
| 795 | |
| 796 | if (devno >= SNDRV_CARDS) |
| 797 | return (-ENODEV); |
| 798 | |
| 799 | if (!enable[devno]) { |
| 800 | ++devno; |
| 801 | return (-ENOENT); |
| 802 | } |
| 803 | |
| 804 | card = snd_card_new(index[devno], id[devno], THIS_MODULE, sizeof(snd_cx88_card_t)); |
| 805 | if (!card) |
| 806 | return (-ENOMEM); |
| 807 | |
| 808 | card->private_free = snd_cx88_dev_free; |
| 809 | |
| 810 | err = snd_cx88_create(card, pci, &chip); |
| 811 | if (err < 0) |
| 812 | return (err); |
| 813 | |
| 814 | err = snd_cx88_pcm(chip, 0, "CX88 Digital"); |
Trent Piepho | 82896f2 | 2007-09-06 23:02:23 -0300 | [diff] [blame] | 815 | if (err < 0) |
| 816 | goto error; |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 817 | |
Trent Piepho | 54ac005 | 2007-09-06 23:02:23 -0300 | [diff] [blame] | 818 | err = snd_ctl_add(card, snd_ctl_new1(&snd_cx88_volume, chip)); |
| 819 | if (err < 0) |
| 820 | goto error; |
| 821 | err = snd_ctl_add(card, snd_ctl_new1(&snd_cx88_dac_switch, chip)); |
| 822 | if (err < 0) |
| 823 | goto error; |
| 824 | err = snd_ctl_add(card, snd_ctl_new1(&snd_cx88_source_switch, chip)); |
Trent Piepho | 82896f2 | 2007-09-06 23:02:23 -0300 | [diff] [blame] | 825 | if (err < 0) |
| 826 | goto error; |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 827 | |
| 828 | strcpy (card->driver, "CX88x"); |
| 829 | sprintf(card->shortname, "Conexant CX%x", pci->device); |
Greg Kroah-Hartman | 228aef6 | 2006-06-12 15:16:52 -0700 | [diff] [blame] | 830 | sprintf(card->longname, "%s at %#llx", |
| 831 | card->shortname,(unsigned long long)pci_resource_start(pci, 0)); |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 832 | strcpy (card->mixername, "CX88"); |
| 833 | |
| 834 | dprintk (0, "%s/%i: ALSA support for cx2388x boards\n", |
| 835 | card->driver,devno); |
| 836 | |
| 837 | err = snd_card_register(card); |
Trent Piepho | 82896f2 | 2007-09-06 23:02:23 -0300 | [diff] [blame] | 838 | if (err < 0) |
| 839 | goto error; |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 840 | pci_set_drvdata(pci,card); |
| 841 | |
| 842 | devno++; |
| 843 | return 0; |
Trent Piepho | 82896f2 | 2007-09-06 23:02:23 -0300 | [diff] [blame] | 844 | |
| 845 | error: |
| 846 | snd_card_free(card); |
| 847 | return err; |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 848 | } |
| 849 | /* |
| 850 | * ALSA destructor |
| 851 | */ |
| 852 | static void __devexit cx88_audio_finidev(struct pci_dev *pci) |
| 853 | { |
| 854 | struct cx88_audio_dev *card = pci_get_drvdata(pci); |
| 855 | |
| 856 | snd_card_free((void *)card); |
| 857 | |
| 858 | pci_set_drvdata(pci, NULL); |
| 859 | |
| 860 | devno--; |
| 861 | } |
| 862 | |
| 863 | /* |
| 864 | * PCI driver definition |
| 865 | */ |
| 866 | |
| 867 | static struct pci_driver cx88_audio_pci_driver = { |
| 868 | .name = "cx88_audio", |
| 869 | .id_table = cx88_audio_pci_tbl, |
| 870 | .probe = cx88_audio_initdev, |
| 871 | .remove = cx88_audio_finidev, |
Mauro Carvalho Chehab | b7f355d | 2006-01-09 15:32:44 -0200 | [diff] [blame] | 872 | }; |
| 873 | |
| 874 | /**************************************************************************** |
| 875 | LINUX MODULE INIT |
| 876 | ****************************************************************************/ |
| 877 | |
| 878 | /* |
| 879 | * module init |
| 880 | */ |
| 881 | static int cx88_audio_init(void) |
| 882 | { |
| 883 | printk(KERN_INFO "cx2388x alsa driver version %d.%d.%d loaded\n", |
| 884 | (CX88_VERSION_CODE >> 16) & 0xff, |
| 885 | (CX88_VERSION_CODE >> 8) & 0xff, |
| 886 | CX88_VERSION_CODE & 0xff); |
| 887 | #ifdef SNAPSHOT |
| 888 | printk(KERN_INFO "cx2388x: snapshot date %04d-%02d-%02d\n", |
| 889 | SNAPSHOT/10000, (SNAPSHOT/100)%100, SNAPSHOT%100); |
| 890 | #endif |
| 891 | return pci_register_driver(&cx88_audio_pci_driver); |
| 892 | } |
| 893 | |
| 894 | /* |
| 895 | * module remove |
| 896 | */ |
| 897 | static void cx88_audio_fini(void) |
| 898 | { |
| 899 | |
| 900 | pci_unregister_driver(&cx88_audio_pci_driver); |
| 901 | } |
| 902 | |
| 903 | module_init(cx88_audio_init); |
| 904 | module_exit(cx88_audio_fini); |
| 905 | |
| 906 | /* ----------------------------------------------------------- */ |
| 907 | /* |
| 908 | * Local variables: |
| 909 | * c-basic-offset: 8 |
| 910 | * End: |
| 911 | */ |