Nickolay V. Shmyrev | 5f7591c | 2005-11-08 21:37:04 -0800 | [diff] [blame] | 1 | /* |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 2 | * SAA713x ALSA support for V4L |
Nickolay V. Shmyrev | 5f7591c | 2005-11-08 21:37:04 -0800 | [diff] [blame] | 3 | * |
Nickolay V. Shmyrev | 5f7591c | 2005-11-08 21:37:04 -0800 | [diff] [blame] | 4 | * |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 5 | * Caveats: |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 6 | * - Volume doesn't work (it's always at max) |
Nickolay V. Shmyrev | 5f7591c | 2005-11-08 21:37:04 -0800 | [diff] [blame] | 7 | * |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 8 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License as published by |
| 10 | * the Free Software Foundation, version 2 |
| 11 | * |
| 12 | * This program is distributed in the hope that it will be useful, |
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 15 | * GNU General Public License for more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU General Public License |
| 18 | * along with this program; if not, write to the Free Software |
| 19 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 20 | * |
Nickolay V. Shmyrev | 5f7591c | 2005-11-08 21:37:04 -0800 | [diff] [blame] | 21 | */ |
| 22 | |
Nickolay V. Shmyrev | 5f7591c | 2005-11-08 21:37:04 -0800 | [diff] [blame] | 23 | #include <sound/driver.h> |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 24 | #include <linux/init.h> |
| 25 | #include <linux/slab.h> |
| 26 | #include <linux/time.h> |
| 27 | #include <linux/wait.h> |
| 28 | #include <linux/moduleparam.h> |
| 29 | #include <linux/module.h> |
Nickolay V. Shmyrev | 5f7591c | 2005-11-08 21:37:04 -0800 | [diff] [blame] | 30 | #include <sound/core.h> |
Nickolay V. Shmyrev | 5f7591c | 2005-11-08 21:37:04 -0800 | [diff] [blame] | 31 | #include <sound/control.h> |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 32 | #include <sound/pcm.h> |
Nickolay V. Shmyrev | 5f7591c | 2005-11-08 21:37:04 -0800 | [diff] [blame] | 33 | #include <sound/initval.h> |
Nickolay V. Shmyrev | 871242b | 2005-11-13 16:07:51 -0800 | [diff] [blame] | 34 | #include <linux/interrupt.h> |
Nickolay V. Shmyrev | 5f7591c | 2005-11-08 21:37:04 -0800 | [diff] [blame] | 35 | |
| 36 | #include "saa7134.h" |
| 37 | #include "saa7134-reg.h" |
| 38 | |
Ricardo Cerqueira | 79dd0c69 | 2005-11-08 21:38:53 -0800 | [diff] [blame] | 39 | static unsigned int debug = 0; |
| 40 | module_param(debug, int, 0644); |
| 41 | MODULE_PARM_DESC(debug,"enable debug messages [alsa]"); |
| 42 | |
Ricardo Cerqueira | b2c15ea | 2005-11-08 21:37:14 -0800 | [diff] [blame] | 43 | /* |
| 44 | * Configuration macros |
| 45 | */ |
| 46 | |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 47 | /* defaults */ |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 48 | #define MIXER_ADDR_TVTUNER 0 |
| 49 | #define MIXER_ADDR_LINE1 1 |
| 50 | #define MIXER_ADDR_LINE2 2 |
| 51 | #define MIXER_ADDR_LAST 2 |
Nickolay V. Shmyrev | 5f7591c | 2005-11-08 21:37:04 -0800 | [diff] [blame] | 52 | |
Ricardo Cerqueira | b2c15ea | 2005-11-08 21:37:14 -0800 | [diff] [blame] | 53 | static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */ |
| 54 | static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */ |
| 55 | static int enable[SNDRV_CARDS] = {1, [1 ... (SNDRV_CARDS - 1)] = 0}; |
| 56 | |
Ricardo Cerqueira | b54134b | 2005-11-08 21:38:54 -0800 | [diff] [blame] | 57 | module_param_array(index, int, NULL, 0444); |
| 58 | MODULE_PARM_DESC(index, "Index value for SAA7134 capture interface(s)."); |
| 59 | |
Ricardo Cerqueira | c817e76 | 2005-11-13 16:07:47 -0800 | [diff] [blame] | 60 | int position; |
| 61 | |
Ricardo Cerqueira | 79dd0c69 | 2005-11-08 21:38:53 -0800 | [diff] [blame] | 62 | #define dprintk(fmt, arg...) if (debug) \ |
Ricardo Cerqueira | b2c15ea | 2005-11-08 21:37:14 -0800 | [diff] [blame] | 63 | printk(KERN_DEBUG "%s/alsa: " fmt, dev->name , ## arg) |
| 64 | |
| 65 | /* |
| 66 | * Main chip structure |
| 67 | */ |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 68 | typedef struct snd_card_saa7134 { |
| 69 | snd_card_t *card; |
| 70 | spinlock_t mixer_lock; |
| 71 | int mixer_volume[MIXER_ADDR_LAST+1][2]; |
| 72 | int capture_source[MIXER_ADDR_LAST+1][2]; |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 73 | struct pci_dev *pci; |
Ricardo Cerqueira | 4aabf63 | 2005-11-13 16:08:00 -0800 | [diff] [blame^] | 74 | struct saa7134_dev *dev; |
Nickolay V. Shmyrev | 5f7591c | 2005-11-08 21:37:04 -0800 | [diff] [blame] | 75 | |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 76 | unsigned long iobase; |
| 77 | int irq; |
Nickolay V. Shmyrev | 5f7591c | 2005-11-08 21:37:04 -0800 | [diff] [blame] | 78 | |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 79 | spinlock_t lock; |
| 80 | } snd_card_saa7134_t; |
Nickolay V. Shmyrev | 5f7591c | 2005-11-08 21:37:04 -0800 | [diff] [blame] | 81 | |
Nickolay V. Shmyrev | 07eef6c | 2005-11-08 21:38:14 -0800 | [diff] [blame] | 82 | |
| 83 | |
Ricardo Cerqueira | b2c15ea | 2005-11-08 21:37:14 -0800 | [diff] [blame] | 84 | /* |
| 85 | * PCM structure |
| 86 | */ |
| 87 | |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 88 | typedef struct snd_card_saa7134_pcm { |
Ricardo Cerqueira | 4aabf63 | 2005-11-13 16:08:00 -0800 | [diff] [blame^] | 89 | struct saa7134_dev *dev; |
Nickolay V. Shmyrev | 5f7591c | 2005-11-08 21:37:04 -0800 | [diff] [blame] | 90 | |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 91 | spinlock_t lock; |
Ricardo Cerqueira | 4aabf63 | 2005-11-13 16:08:00 -0800 | [diff] [blame^] | 92 | |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 93 | snd_pcm_substream_t *substream; |
| 94 | } snd_card_saa7134_pcm_t; |
| 95 | |
Ricardo Cerqueira | b54134b | 2005-11-08 21:38:54 -0800 | [diff] [blame] | 96 | static snd_card_t *snd_saa7134_cards[SNDRV_CARDS]; |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 97 | |
Ricardo Cerqueira | 79dd0c69 | 2005-11-08 21:38:53 -0800 | [diff] [blame] | 98 | |
Ricardo Cerqueira | b2c15ea | 2005-11-08 21:37:14 -0800 | [diff] [blame] | 99 | /* |
| 100 | * saa7134 DMA audio stop |
| 101 | * |
| 102 | * Called when the capture device is released or the buffer overflows |
| 103 | * |
Ricardo Cerqueira | c817e76 | 2005-11-13 16:07:47 -0800 | [diff] [blame] | 104 | * - Copied verbatim from saa7134-oss's dsp_dma_stop. |
Ricardo Cerqueira | b2c15ea | 2005-11-08 21:37:14 -0800 | [diff] [blame] | 105 | * |
| 106 | */ |
| 107 | |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 108 | static void saa7134_dma_stop(struct saa7134_dev *dev) |
Nickolay V. Shmyrev | 5f7591c | 2005-11-08 21:37:04 -0800 | [diff] [blame] | 109 | { |
Ricardo Cerqueira | b54134b | 2005-11-08 21:38:54 -0800 | [diff] [blame] | 110 | dev->dmasound.dma_blk = -1; |
| 111 | dev->dmasound.dma_running = 0; |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 112 | saa7134_set_dmabits(dev); |
Nickolay V. Shmyrev | 5f7591c | 2005-11-08 21:37:04 -0800 | [diff] [blame] | 113 | } |
| 114 | |
Ricardo Cerqueira | b2c15ea | 2005-11-08 21:37:14 -0800 | [diff] [blame] | 115 | /* |
| 116 | * saa7134 DMA audio start |
| 117 | * |
| 118 | * Called when preparing the capture device for use |
| 119 | * |
Ricardo Cerqueira | c817e76 | 2005-11-13 16:07:47 -0800 | [diff] [blame] | 120 | * - Copied verbatim from saa7134-oss's dsp_dma_start. |
Ricardo Cerqueira | b2c15ea | 2005-11-08 21:37:14 -0800 | [diff] [blame] | 121 | * |
| 122 | */ |
| 123 | |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 124 | static void saa7134_dma_start(struct saa7134_dev *dev) |
Nickolay V. Shmyrev | 5f7591c | 2005-11-08 21:37:04 -0800 | [diff] [blame] | 125 | { |
Ricardo Cerqueira | b54134b | 2005-11-08 21:38:54 -0800 | [diff] [blame] | 126 | dev->dmasound.dma_blk = 0; |
| 127 | dev->dmasound.dma_running = 1; |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 128 | saa7134_set_dmabits(dev); |
Nickolay V. Shmyrev | 5f7591c | 2005-11-08 21:37:04 -0800 | [diff] [blame] | 129 | } |
| 130 | |
Ricardo Cerqueira | b2c15ea | 2005-11-08 21:37:14 -0800 | [diff] [blame] | 131 | /* |
| 132 | * saa7134 audio DMA IRQ handler |
| 133 | * |
| 134 | * Called whenever we get an SAA7134_IRQ_REPORT_DONE_RA3 interrupt |
| 135 | * Handles shifting between the 2 buffers, manages the read counters, |
| 136 | * and notifies ALSA when periods elapse |
| 137 | * |
| 138 | * - Mostly copied from saa7134-oss's saa7134_irq_oss_done. |
| 139 | * |
| 140 | */ |
| 141 | |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 142 | void saa7134_irq_alsa_done(struct saa7134_dev *dev, unsigned long status) |
Nickolay V. Shmyrev | 5f7591c | 2005-11-08 21:37:04 -0800 | [diff] [blame] | 143 | { |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 144 | int next_blk, reg = 0; |
| 145 | |
| 146 | spin_lock(&dev->slock); |
Ricardo Cerqueira | b54134b | 2005-11-08 21:38:54 -0800 | [diff] [blame] | 147 | if (UNSET == dev->dmasound.dma_blk) { |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 148 | dprintk("irq: recording stopped\n"); |
| 149 | goto done; |
| 150 | } |
| 151 | if (0 != (status & 0x0f000000)) |
| 152 | dprintk("irq: lost %ld\n", (status >> 24) & 0x0f); |
| 153 | if (0 == (status & 0x10000000)) { |
| 154 | /* odd */ |
Ricardo Cerqueira | b54134b | 2005-11-08 21:38:54 -0800 | [diff] [blame] | 155 | if (0 == (dev->dmasound.dma_blk & 0x01)) |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 156 | reg = SAA7134_RS_BA1(6); |
| 157 | } else { |
| 158 | /* even */ |
Ricardo Cerqueira | b54134b | 2005-11-08 21:38:54 -0800 | [diff] [blame] | 159 | if (1 == (dev->dmasound.dma_blk & 0x01)) |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 160 | reg = SAA7134_RS_BA2(6); |
| 161 | } |
| 162 | if (0 == reg) { |
| 163 | dprintk("irq: field oops [%s]\n", |
| 164 | (status & 0x10000000) ? "even" : "odd"); |
| 165 | goto done; |
| 166 | } |
| 167 | |
Ricardo Cerqueira | b54134b | 2005-11-08 21:38:54 -0800 | [diff] [blame] | 168 | if (dev->dmasound.read_count >= dev->dmasound.blksize * (dev->dmasound.blocks-2)) { |
| 169 | dprintk("irq: overrun [full=%d/%d] - Blocks in %d\n",dev->dmasound.read_count, |
| 170 | dev->dmasound.bufsize, dev->dmasound.blocks); |
| 171 | snd_pcm_stop(dev->dmasound.substream,SNDRV_PCM_STATE_XRUN); |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 172 | goto done; |
| 173 | } |
| 174 | |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 175 | /* next block addr */ |
Ricardo Cerqueira | b54134b | 2005-11-08 21:38:54 -0800 | [diff] [blame] | 176 | next_blk = (dev->dmasound.dma_blk + 2) % dev->dmasound.blocks; |
| 177 | saa_writel(reg,next_blk * dev->dmasound.blksize); |
Ricardo Cerqueira | 79dd0c69 | 2005-11-08 21:38:53 -0800 | [diff] [blame] | 178 | if (debug > 2) |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 179 | dprintk("irq: ok, %s, next_blk=%d, addr=%x, blocks=%u, size=%u, read=%u\n", |
| 180 | (status & 0x10000000) ? "even" : "odd ", next_blk, |
Ricardo Cerqueira | b54134b | 2005-11-08 21:38:54 -0800 | [diff] [blame] | 181 | next_blk * dev->dmasound.blksize, dev->dmasound.blocks, dev->dmasound.blksize, dev->dmasound.read_count); |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 182 | |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 183 | /* update status & wake waiting readers */ |
Ricardo Cerqueira | b54134b | 2005-11-08 21:38:54 -0800 | [diff] [blame] | 184 | dev->dmasound.dma_blk = (dev->dmasound.dma_blk + 1) % dev->dmasound.blocks; |
| 185 | dev->dmasound.read_count += dev->dmasound.blksize; |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 186 | |
Ricardo Cerqueira | b54134b | 2005-11-08 21:38:54 -0800 | [diff] [blame] | 187 | dev->dmasound.recording_on = reg; |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 188 | |
Ricardo Cerqueira | b54134b | 2005-11-08 21:38:54 -0800 | [diff] [blame] | 189 | if (dev->dmasound.read_count >= snd_pcm_lib_period_bytes(dev->dmasound.substream)) { |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 190 | spin_unlock(&dev->slock); |
Ricardo Cerqueira | b54134b | 2005-11-08 21:38:54 -0800 | [diff] [blame] | 191 | snd_pcm_period_elapsed(dev->dmasound.substream); |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 192 | spin_lock(&dev->slock); |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 193 | } |
Ricardo Cerqueira | 4aabf63 | 2005-11-13 16:08:00 -0800 | [diff] [blame^] | 194 | |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 195 | done: |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 196 | spin_unlock(&dev->slock); |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 197 | |
Nickolay V. Shmyrev | 5f7591c | 2005-11-08 21:37:04 -0800 | [diff] [blame] | 198 | } |
| 199 | |
Ricardo Cerqueira | b2c15ea | 2005-11-08 21:37:14 -0800 | [diff] [blame] | 200 | /* |
Ricardo Cerqueira | 79dd0c69 | 2005-11-08 21:38:53 -0800 | [diff] [blame] | 201 | * IRQ request handler |
| 202 | * |
| 203 | * Runs along with saa7134's IRQ handler, discards anything that isn't |
| 204 | * DMA sound |
| 205 | * |
| 206 | */ |
| 207 | |
| 208 | static irqreturn_t saa7134_alsa_irq(int irq, void *dev_id, struct pt_regs *regs) |
| 209 | { |
Ricardo Cerqueira | 4aabf63 | 2005-11-13 16:08:00 -0800 | [diff] [blame^] | 210 | struct saa7134_dmasound *dmasound = dev_id; |
| 211 | struct saa7134_dev *dev = dmasound->priv_data; |
| 212 | |
Ricardo Cerqueira | 79dd0c69 | 2005-11-08 21:38:53 -0800 | [diff] [blame] | 213 | unsigned long report, status; |
| 214 | int loop, handled = 0; |
| 215 | |
| 216 | for (loop = 0; loop < 10; loop++) { |
| 217 | report = saa_readl(SAA7134_IRQ_REPORT); |
| 218 | status = saa_readl(SAA7134_IRQ_STATUS); |
| 219 | |
| 220 | if (report & SAA7134_IRQ_REPORT_DONE_RA3) { |
| 221 | handled = 1; |
| 222 | saa_writel(SAA7134_IRQ_REPORT,report); |
| 223 | saa7134_irq_alsa_done(dev, status); |
| 224 | } else { |
| 225 | goto out; |
| 226 | } |
| 227 | } |
| 228 | |
| 229 | if (loop == 10) { |
| 230 | dprintk("error! looping IRQ!"); |
| 231 | } |
| 232 | |
| 233 | out: |
| 234 | return IRQ_RETVAL(handled); |
| 235 | } |
| 236 | |
| 237 | /* |
Ricardo Cerqueira | b2c15ea | 2005-11-08 21:37:14 -0800 | [diff] [blame] | 238 | * ALSA capture trigger |
| 239 | * |
| 240 | * - One of the ALSA capture callbacks. |
| 241 | * |
| 242 | * Called whenever a capture is started or stopped. Must be defined, |
| 243 | * but there's nothing we want to do here |
| 244 | * |
| 245 | */ |
Nickolay V. Shmyrev | 5f7591c | 2005-11-08 21:37:04 -0800 | [diff] [blame] | 246 | |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 247 | static int snd_card_saa7134_capture_trigger(snd_pcm_substream_t * substream, |
| 248 | int cmd) |
Nickolay V. Shmyrev | 5f7591c | 2005-11-08 21:37:04 -0800 | [diff] [blame] | 249 | { |
Ricardo Cerqueira | b54134b | 2005-11-08 21:38:54 -0800 | [diff] [blame] | 250 | snd_pcm_runtime_t *runtime = substream->runtime; |
Ricardo Cerqueira | 4aabf63 | 2005-11-13 16:08:00 -0800 | [diff] [blame^] | 251 | snd_card_saa7134_pcm_t *pcm = runtime->private_data; |
| 252 | struct saa7134_dev *dev=pcm->dev; |
Ricardo Cerqueira | b54134b | 2005-11-08 21:38:54 -0800 | [diff] [blame] | 253 | int err = 0; |
| 254 | |
| 255 | spin_lock_irq(&dev->slock); |
Ricardo Cerqueira | c817e76 | 2005-11-13 16:07:47 -0800 | [diff] [blame] | 256 | if (cmd == SNDRV_PCM_TRIGGER_START) { |
Ricardo Cerqueira | b54134b | 2005-11-08 21:38:54 -0800 | [diff] [blame] | 257 | /* start dma */ |
| 258 | saa7134_dma_start(dev); |
Ricardo Cerqueira | c817e76 | 2005-11-13 16:07:47 -0800 | [diff] [blame] | 259 | } else if (cmd == SNDRV_PCM_TRIGGER_STOP) { |
Ricardo Cerqueira | b54134b | 2005-11-08 21:38:54 -0800 | [diff] [blame] | 260 | /* stop dma */ |
| 261 | saa7134_dma_stop(dev); |
Ricardo Cerqueira | c817e76 | 2005-11-13 16:07:47 -0800 | [diff] [blame] | 262 | } else { |
| 263 | err = -EINVAL; |
| 264 | } |
Ricardo Cerqueira | b54134b | 2005-11-08 21:38:54 -0800 | [diff] [blame] | 265 | spin_unlock_irq(&dev->slock); |
| 266 | |
Ricardo Cerqueira | c817e76 | 2005-11-13 16:07:47 -0800 | [diff] [blame] | 267 | return err; |
Nickolay V. Shmyrev | 5f7591c | 2005-11-08 21:37:04 -0800 | [diff] [blame] | 268 | } |
| 269 | |
Ricardo Cerqueira | b2c15ea | 2005-11-08 21:37:14 -0800 | [diff] [blame] | 270 | /* |
| 271 | * DMA buffer config |
| 272 | * |
| 273 | * Sets the values that will later be used as the size of the buffer, |
| 274 | * size of the fragments, and total number of fragments. |
| 275 | * Must be called during the preparation stage, before memory is |
| 276 | * allocated |
| 277 | * |
Ricardo Cerqueira | c817e76 | 2005-11-13 16:07:47 -0800 | [diff] [blame] | 278 | * - Copied verbatim from saa7134-oss. |
| 279 | * |
Ricardo Cerqueira | b2c15ea | 2005-11-08 21:37:14 -0800 | [diff] [blame] | 280 | */ |
| 281 | |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 282 | static int dsp_buffer_conf(struct saa7134_dev *dev, int blksize, int blocks) |
Nickolay V. Shmyrev | 5f7591c | 2005-11-08 21:37:04 -0800 | [diff] [blame] | 283 | { |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 284 | if (blksize < 0x100) |
| 285 | blksize = 0x100; |
| 286 | if (blksize > 0x10000) |
| 287 | blksize = 0x10000; |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 288 | |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 289 | if (blocks < 2) |
| 290 | blocks = 2; |
| 291 | if ((blksize * blocks) > 1024*1024) |
| 292 | blocks = 1024*1024 / blksize; |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 293 | |
Ricardo Cerqueira | b54134b | 2005-11-08 21:38:54 -0800 | [diff] [blame] | 294 | dev->dmasound.blocks = blocks; |
| 295 | dev->dmasound.blksize = blksize; |
| 296 | dev->dmasound.bufsize = blksize * blocks; |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 297 | |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 298 | dprintk("buffer config: %d blocks / %d bytes, %d kB total\n", |
| 299 | blocks,blksize,blksize * blocks / 1024); |
| 300 | return 0; |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 301 | } |
| 302 | |
Ricardo Cerqueira | b2c15ea | 2005-11-08 21:37:14 -0800 | [diff] [blame] | 303 | /* |
| 304 | * DMA buffer initialization |
| 305 | * |
| 306 | * Uses V4L functions to initialize the DMA. Shouldn't be necessary in |
| 307 | * ALSA, but I was unable to use ALSA's own DMA, and had to force the |
| 308 | * usage of V4L's |
| 309 | * |
Ricardo Cerqueira | c817e76 | 2005-11-13 16:07:47 -0800 | [diff] [blame] | 310 | * - Copied verbatim from saa7134-oss. |
| 311 | * |
Ricardo Cerqueira | b2c15ea | 2005-11-08 21:37:14 -0800 | [diff] [blame] | 312 | */ |
| 313 | |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 314 | static int dsp_buffer_init(struct saa7134_dev *dev) |
| 315 | { |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 316 | int err; |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 317 | |
Ricardo Cerqueira | 4aabf63 | 2005-11-13 16:08:00 -0800 | [diff] [blame^] | 318 | BUG_ON(!dev->dmasound.bufsize); |
| 319 | |
Ricardo Cerqueira | b54134b | 2005-11-08 21:38:54 -0800 | [diff] [blame] | 320 | videobuf_dma_init(&dev->dmasound.dma); |
| 321 | err = videobuf_dma_init_kernel(&dev->dmasound.dma, PCI_DMA_FROMDEVICE, |
| 322 | (dev->dmasound.bufsize + PAGE_SIZE) >> PAGE_SHIFT); |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 323 | if (0 != err) |
| 324 | return err; |
| 325 | return 0; |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 326 | } |
| 327 | |
Ricardo Cerqueira | b2c15ea | 2005-11-08 21:37:14 -0800 | [diff] [blame] | 328 | /* |
| 329 | * ALSA PCM preparation |
| 330 | * |
| 331 | * - One of the ALSA capture callbacks. |
| 332 | * |
| 333 | * Called right after the capture device is opened, this function configures |
| 334 | * the buffer using the previously defined functions, allocates the memory, |
| 335 | * sets up the hardware registers, and then starts the DMA. When this function |
| 336 | * returns, the audio should be flowing. |
| 337 | * |
| 338 | */ |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 339 | |
Ricardo Cerqueira | b2c15ea | 2005-11-08 21:37:14 -0800 | [diff] [blame] | 340 | static int snd_card_saa7134_capture_prepare(snd_pcm_substream_t * substream) |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 341 | { |
Nickolay V. Shmyrev | 5f7591c | 2005-11-08 21:37:04 -0800 | [diff] [blame] | 342 | snd_pcm_runtime_t *runtime = substream->runtime; |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 343 | int err, bswap, sign; |
| 344 | u32 fmt, control; |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 345 | snd_card_saa7134_t *saa7134 = snd_pcm_substream_chip(substream); |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 346 | struct saa7134_dev *dev; |
Ricardo Cerqueira | 4aabf63 | 2005-11-13 16:08:00 -0800 | [diff] [blame^] | 347 | snd_card_saa7134_pcm_t *pcm = runtime->private_data; |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 348 | unsigned long size; |
| 349 | unsigned count; |
Nickolay V. Shmyrev | 5f7591c | 2005-11-08 21:37:04 -0800 | [diff] [blame] | 350 | |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 351 | size = snd_pcm_lib_buffer_bytes(substream); |
| 352 | count = snd_pcm_lib_period_bytes(substream); |
Nickolay V. Shmyrev | 5f7591c | 2005-11-08 21:37:04 -0800 | [diff] [blame] | 353 | |
Ricardo Cerqueira | 4aabf63 | 2005-11-13 16:08:00 -0800 | [diff] [blame^] | 354 | pcm->dev->dmasound.substream = substream; |
Nickolay V. Shmyrev | 5f7591c | 2005-11-08 21:37:04 -0800 | [diff] [blame] | 355 | |
Ricardo Cerqueira | 4aabf63 | 2005-11-13 16:08:00 -0800 | [diff] [blame^] | 356 | dev=saa7134->dev; |
Nickolay V. Shmyrev | 5f7591c | 2005-11-08 21:37:04 -0800 | [diff] [blame] | 357 | |
Ricardo Cerqueira | 4aabf63 | 2005-11-13 16:08:00 -0800 | [diff] [blame^] | 358 | dsp_buffer_conf(dev,count,(size/count)); |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 359 | |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 360 | err = dsp_buffer_init(dev); |
| 361 | if (0 != err) |
Ricardo Cerqueira | c817e76 | 2005-11-13 16:07:47 -0800 | [diff] [blame] | 362 | return err; |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 363 | |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 364 | /* prepare buffer */ |
Ricardo Cerqueira | b54134b | 2005-11-08 21:38:54 -0800 | [diff] [blame] | 365 | if (0 != (err = videobuf_dma_pci_map(dev->pci,&dev->dmasound.dma))) |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 366 | return err; |
Ricardo Cerqueira | b54134b | 2005-11-08 21:38:54 -0800 | [diff] [blame] | 367 | if (0 != (err = saa7134_pgtable_alloc(dev->pci,&dev->dmasound.pt))) |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 368 | goto fail1; |
Ricardo Cerqueira | b54134b | 2005-11-08 21:38:54 -0800 | [diff] [blame] | 369 | if (0 != (err = saa7134_pgtable_build(dev->pci,&dev->dmasound.pt, |
| 370 | dev->dmasound.dma.sglist, |
| 371 | dev->dmasound.dma.sglen, |
Mauro Carvalho Chehab | f2421ca | 2005-11-08 21:37:45 -0800 | [diff] [blame] | 372 | 0))) |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 373 | goto fail2; |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 374 | |
| 375 | |
| 376 | |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 377 | switch (runtime->format) { |
| 378 | case SNDRV_PCM_FORMAT_U8: |
| 379 | case SNDRV_PCM_FORMAT_S8: |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 380 | fmt = 0x00; |
| 381 | break; |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 382 | case SNDRV_PCM_FORMAT_U16_LE: |
| 383 | case SNDRV_PCM_FORMAT_U16_BE: |
| 384 | case SNDRV_PCM_FORMAT_S16_LE: |
| 385 | case SNDRV_PCM_FORMAT_S16_BE: |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 386 | fmt = 0x01; |
| 387 | break; |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 388 | default: |
| 389 | err = -EINVAL; |
| 390 | return 1; |
| 391 | } |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 392 | |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 393 | switch (runtime->format) { |
| 394 | case SNDRV_PCM_FORMAT_S8: |
| 395 | case SNDRV_PCM_FORMAT_S16_LE: |
| 396 | case SNDRV_PCM_FORMAT_S16_BE: |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 397 | sign = 1; |
| 398 | break; |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 399 | default: |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 400 | sign = 0; |
| 401 | break; |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 402 | } |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 403 | |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 404 | switch (runtime->format) { |
| 405 | case SNDRV_PCM_FORMAT_U16_BE: |
| 406 | case SNDRV_PCM_FORMAT_S16_BE: |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 407 | bswap = 1; break; |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 408 | default: |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 409 | bswap = 0; break; |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 410 | } |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 411 | |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 412 | switch (dev->pci->device) { |
| 413 | case PCI_DEVICE_ID_PHILIPS_SAA7134: |
| 414 | if (1 == runtime->channels) |
| 415 | fmt |= (1 << 3); |
| 416 | if (2 == runtime->channels) |
| 417 | fmt |= (3 << 3); |
| 418 | if (sign) |
| 419 | fmt |= 0x04; |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 420 | |
Ricardo Cerqueira | b54134b | 2005-11-08 21:38:54 -0800 | [diff] [blame] | 421 | fmt |= (MIXER_ADDR_TVTUNER == dev->dmasound.input) ? 0xc0 : 0x80; |
| 422 | saa_writeb(SAA7134_NUM_SAMPLES0, ((dev->dmasound.blksize - 1) & 0x0000ff)); |
| 423 | saa_writeb(SAA7134_NUM_SAMPLES1, ((dev->dmasound.blksize - 1) & 0x00ff00) >> 8); |
| 424 | saa_writeb(SAA7134_NUM_SAMPLES2, ((dev->dmasound.blksize - 1) & 0xff0000) >> 16); |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 425 | saa_writeb(SAA7134_AUDIO_FORMAT_CTRL, fmt); |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 426 | |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 427 | break; |
| 428 | case PCI_DEVICE_ID_PHILIPS_SAA7133: |
| 429 | case PCI_DEVICE_ID_PHILIPS_SAA7135: |
| 430 | if (1 == runtime->channels) |
| 431 | fmt |= (1 << 4); |
| 432 | if (2 == runtime->channels) |
| 433 | fmt |= (2 << 4); |
| 434 | if (!sign) |
| 435 | fmt |= 0x04; |
Ricardo Cerqueira | b54134b | 2005-11-08 21:38:54 -0800 | [diff] [blame] | 436 | saa_writel(SAA7133_NUM_SAMPLES, dev->dmasound.blksize -1); |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 437 | saa_writel(SAA7133_AUDIO_CHANNEL, 0x543210 | (fmt << 24)); |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 438 | break; |
| 439 | } |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 440 | |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 441 | dprintk("rec_start: afmt=%d ch=%d => fmt=0x%x swap=%c\n", |
| 442 | runtime->format, runtime->channels, fmt, |
| 443 | bswap ? 'b' : '-'); |
| 444 | /* dma: setup channel 6 (= AUDIO) */ |
| 445 | control = SAA7134_RS_CONTROL_BURST_16 | |
| 446 | SAA7134_RS_CONTROL_ME | |
Ricardo Cerqueira | b54134b | 2005-11-08 21:38:54 -0800 | [diff] [blame] | 447 | (dev->dmasound.pt.dma >> 12); |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 448 | if (bswap) |
| 449 | control |= SAA7134_RS_CONTROL_BSWAP; |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 450 | |
Ricardo Cerqueira | b2c15ea | 2005-11-08 21:37:14 -0800 | [diff] [blame] | 451 | /* I should be able to use runtime->dma_addr in the control |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 452 | byte, but it doesn't work. So I allocate the DMA using the |
| 453 | V4L functions, and force ALSA to use that as the DMA area */ |
Ricardo Cerqueira | b2c15ea | 2005-11-08 21:37:14 -0800 | [diff] [blame] | 454 | |
Ricardo Cerqueira | b54134b | 2005-11-08 21:38:54 -0800 | [diff] [blame] | 455 | runtime->dma_area = dev->dmasound.dma.vmalloc; |
Ricardo Cerqueira | b2c15ea | 2005-11-08 21:37:14 -0800 | [diff] [blame] | 456 | |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 457 | saa_writel(SAA7134_RS_BA1(6),0); |
Ricardo Cerqueira | b54134b | 2005-11-08 21:38:54 -0800 | [diff] [blame] | 458 | saa_writel(SAA7134_RS_BA2(6),dev->dmasound.blksize); |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 459 | saa_writel(SAA7134_RS_PITCH(6),0); |
| 460 | saa_writel(SAA7134_RS_CONTROL(6),control); |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 461 | |
Ricardo Cerqueira | b54134b | 2005-11-08 21:38:54 -0800 | [diff] [blame] | 462 | dev->dmasound.rate = runtime->rate; |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 463 | |
Nickolay V. Shmyrev | 5f7591c | 2005-11-08 21:37:04 -0800 | [diff] [blame] | 464 | return 0; |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 465 | fail2: |
Ricardo Cerqueira | b54134b | 2005-11-08 21:38:54 -0800 | [diff] [blame] | 466 | saa7134_pgtable_free(dev->pci,&dev->dmasound.pt); |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 467 | fail1: |
Ricardo Cerqueira | b54134b | 2005-11-08 21:38:54 -0800 | [diff] [blame] | 468 | videobuf_dma_pci_unmap(dev->pci,&dev->dmasound.dma); |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 469 | return err; |
Nickolay V. Shmyrev | 5f7591c | 2005-11-08 21:37:04 -0800 | [diff] [blame] | 470 | |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 471 | |
Nickolay V. Shmyrev | 5f7591c | 2005-11-08 21:37:04 -0800 | [diff] [blame] | 472 | } |
| 473 | |
Ricardo Cerqueira | b2c15ea | 2005-11-08 21:37:14 -0800 | [diff] [blame] | 474 | /* |
| 475 | * ALSA pointer fetching |
| 476 | * |
| 477 | * - One of the ALSA capture callbacks. |
| 478 | * |
| 479 | * Called whenever a period elapses, it must return the current hardware |
| 480 | * position of the buffer. |
| 481 | * Also resets the read counter used to prevent overruns |
| 482 | * |
| 483 | */ |
Nickolay V. Shmyrev | 5f7591c | 2005-11-08 21:37:04 -0800 | [diff] [blame] | 484 | |
Ricardo Cerqueira | b2c15ea | 2005-11-08 21:37:14 -0800 | [diff] [blame] | 485 | static snd_pcm_uframes_t snd_card_saa7134_capture_pointer(snd_pcm_substream_t * substream) |
Nickolay V. Shmyrev | 5f7591c | 2005-11-08 21:37:04 -0800 | [diff] [blame] | 486 | { |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 487 | snd_pcm_runtime_t *runtime = substream->runtime; |
Ricardo Cerqueira | 4aabf63 | 2005-11-13 16:08:00 -0800 | [diff] [blame^] | 488 | snd_card_saa7134_pcm_t *pcm = runtime->private_data; |
| 489 | struct saa7134_dev *dev=pcm->dev; |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 490 | |
Ricardo Cerqueira | b54134b | 2005-11-08 21:38:54 -0800 | [diff] [blame] | 491 | if (dev->dmasound.read_count) { |
| 492 | dev->dmasound.read_count -= snd_pcm_lib_period_bytes(substream); |
| 493 | dev->dmasound.read_offset += snd_pcm_lib_period_bytes(substream); |
| 494 | if (dev->dmasound.read_offset == dev->dmasound.bufsize) |
| 495 | dev->dmasound.read_offset = 0; |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 496 | } |
| 497 | |
Ricardo Cerqueira | b54134b | 2005-11-08 21:38:54 -0800 | [diff] [blame] | 498 | return bytes_to_frames(runtime, dev->dmasound.read_offset); |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 499 | } |
| 500 | |
Ricardo Cerqueira | b2c15ea | 2005-11-08 21:37:14 -0800 | [diff] [blame] | 501 | /* |
| 502 | * ALSA hardware capabilities definition |
| 503 | */ |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 504 | |
| 505 | static snd_pcm_hardware_t snd_card_saa7134_capture = |
| 506 | { |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 507 | .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED | |
Mauro Carvalho Chehab | f2421ca | 2005-11-08 21:37:45 -0800 | [diff] [blame] | 508 | SNDRV_PCM_INFO_BLOCK_TRANSFER | |
| 509 | SNDRV_PCM_INFO_MMAP_VALID), |
Ricardo Cerqueira | b54134b | 2005-11-08 21:38:54 -0800 | [diff] [blame] | 510 | .formats = SNDRV_PCM_FMTBIT_S16_LE | \ |
| 511 | SNDRV_PCM_FMTBIT_S16_BE | \ |
| 512 | SNDRV_PCM_FMTBIT_S8 | \ |
| 513 | SNDRV_PCM_FMTBIT_U8 | \ |
| 514 | SNDRV_PCM_FMTBIT_U16_LE | \ |
| 515 | SNDRV_PCM_FMTBIT_U16_BE, |
| 516 | .rates = SNDRV_PCM_RATE_32000 | SNDRV_PCM_RATE_48000, |
| 517 | .rate_min = 32000, |
| 518 | .rate_max = 48000, |
| 519 | .channels_min = 1, |
| 520 | .channels_max = 2, |
| 521 | .buffer_bytes_max = (256*1024), |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 522 | .period_bytes_min = 64, |
Ricardo Cerqueira | b54134b | 2005-11-08 21:38:54 -0800 | [diff] [blame] | 523 | .period_bytes_max = (256*1024), |
| 524 | .periods_min = 2, |
| 525 | .periods_max = 1024, |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 526 | }; |
| 527 | |
| 528 | static void snd_card_saa7134_runtime_free(snd_pcm_runtime_t *runtime) |
| 529 | { |
Ricardo Cerqueira | 4aabf63 | 2005-11-13 16:08:00 -0800 | [diff] [blame^] | 530 | snd_card_saa7134_pcm_t *pcm = runtime->private_data; |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 531 | |
Ricardo Cerqueira | 4aabf63 | 2005-11-13 16:08:00 -0800 | [diff] [blame^] | 532 | kfree(pcm); |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 533 | } |
| 534 | |
| 535 | |
Ricardo Cerqueira | b2c15ea | 2005-11-08 21:37:14 -0800 | [diff] [blame] | 536 | /* |
| 537 | * ALSA hardware params |
| 538 | * |
| 539 | * - One of the ALSA capture callbacks. |
| 540 | * |
| 541 | * Called on initialization, right before the PCM preparation |
| 542 | * Usually used in ALSA to allocate the DMA, but since we don't use the |
Ricardo Cerqueira | e8b23c0 | 2005-11-08 21:37:56 -0800 | [diff] [blame] | 543 | * ALSA DMA it does nothing |
Ricardo Cerqueira | b2c15ea | 2005-11-08 21:37:14 -0800 | [diff] [blame] | 544 | * |
| 545 | */ |
| 546 | |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 547 | static int snd_card_saa7134_hw_params(snd_pcm_substream_t * substream, |
| 548 | snd_pcm_hw_params_t * hw_params) |
| 549 | { |
Ricardo Cerqueira | e8b23c0 | 2005-11-08 21:37:56 -0800 | [diff] [blame] | 550 | return 0; |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 551 | |
Nickolay V. Shmyrev | 5f7591c | 2005-11-08 21:37:04 -0800 | [diff] [blame] | 552 | } |
| 553 | |
Ricardo Cerqueira | b2c15ea | 2005-11-08 21:37:14 -0800 | [diff] [blame] | 554 | /* |
| 555 | * ALSA hardware release |
| 556 | * |
| 557 | * - One of the ALSA capture callbacks. |
| 558 | * |
| 559 | * Called after closing the device, but before snd_card_saa7134_capture_close |
| 560 | * Usually used in ALSA to free the DMA, but since we don't use the |
Ricardo Cerqueira | 4aabf63 | 2005-11-13 16:08:00 -0800 | [diff] [blame^] | 561 | * ALSA DMA it does nothing |
Ricardo Cerqueira | b2c15ea | 2005-11-08 21:37:14 -0800 | [diff] [blame] | 562 | * |
| 563 | */ |
| 564 | |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 565 | static int snd_card_saa7134_hw_free(snd_pcm_substream_t * substream) |
Nickolay V. Shmyrev | 5f7591c | 2005-11-08 21:37:04 -0800 | [diff] [blame] | 566 | { |
Ricardo Cerqueira | e8b23c0 | 2005-11-08 21:37:56 -0800 | [diff] [blame] | 567 | return 0; |
Nickolay V. Shmyrev | 5f7591c | 2005-11-08 21:37:04 -0800 | [diff] [blame] | 568 | } |
| 569 | |
Ricardo Cerqueira | b2c15ea | 2005-11-08 21:37:14 -0800 | [diff] [blame] | 570 | /* |
| 571 | * DMA buffer release |
| 572 | * |
| 573 | * Called after closing the device, during snd_card_saa7134_capture_close |
| 574 | * |
| 575 | */ |
| 576 | |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 577 | static int dsp_buffer_free(struct saa7134_dev *dev) |
Nickolay V. Shmyrev | 5f7591c | 2005-11-08 21:37:04 -0800 | [diff] [blame] | 578 | { |
Ricardo Cerqueira | b54134b | 2005-11-08 21:38:54 -0800 | [diff] [blame] | 579 | if (!dev->dmasound.blksize) |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 580 | BUG(); |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 581 | |
Ricardo Cerqueira | b54134b | 2005-11-08 21:38:54 -0800 | [diff] [blame] | 582 | videobuf_dma_free(&dev->dmasound.dma); |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 583 | |
Ricardo Cerqueira | b54134b | 2005-11-08 21:38:54 -0800 | [diff] [blame] | 584 | dev->dmasound.blocks = 0; |
| 585 | dev->dmasound.blksize = 0; |
| 586 | dev->dmasound.bufsize = 0; |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 587 | |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 588 | return 0; |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 589 | } |
| 590 | |
Ricardo Cerqueira | b2c15ea | 2005-11-08 21:37:14 -0800 | [diff] [blame] | 591 | /* |
| 592 | * ALSA capture finish |
| 593 | * |
| 594 | * - One of the ALSA capture callbacks. |
| 595 | * |
| 596 | * Called after closing the device. It stops the DMA audio and releases |
| 597 | * the buffers |
| 598 | * |
| 599 | */ |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 600 | |
Ricardo Cerqueira | b2c15ea | 2005-11-08 21:37:14 -0800 | [diff] [blame] | 601 | static int snd_card_saa7134_capture_close(snd_pcm_substream_t * substream) |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 602 | { |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 603 | snd_card_saa7134_t *chip = snd_pcm_substream_chip(substream); |
Ricardo Cerqueira | 4aabf63 | 2005-11-13 16:08:00 -0800 | [diff] [blame^] | 604 | struct saa7134_dev *dev = chip->dev; |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 605 | |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 606 | /* unlock buffer */ |
Ricardo Cerqueira | b54134b | 2005-11-08 21:38:54 -0800 | [diff] [blame] | 607 | saa7134_pgtable_free(dev->pci,&dev->dmasound.pt); |
| 608 | videobuf_dma_pci_unmap(dev->pci,&dev->dmasound.dma); |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 609 | |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 610 | dsp_buffer_free(dev); |
| 611 | return 0; |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 612 | } |
| 613 | |
Ricardo Cerqueira | b2c15ea | 2005-11-08 21:37:14 -0800 | [diff] [blame] | 614 | /* |
| 615 | * ALSA capture start |
| 616 | * |
| 617 | * - One of the ALSA capture callbacks. |
| 618 | * |
| 619 | * Called when opening the device. It creates and populates the PCM |
| 620 | * structure |
| 621 | * |
| 622 | */ |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 623 | |
Ricardo Cerqueira | b2c15ea | 2005-11-08 21:37:14 -0800 | [diff] [blame] | 624 | static int snd_card_saa7134_capture_open(snd_pcm_substream_t * substream) |
| 625 | { |
| 626 | snd_pcm_runtime_t *runtime = substream->runtime; |
Ricardo Cerqueira | 4aabf63 | 2005-11-13 16:08:00 -0800 | [diff] [blame^] | 627 | snd_card_saa7134_pcm_t *pcm; |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 628 | snd_card_saa7134_t *saa7134 = snd_pcm_substream_chip(substream); |
Ricardo Cerqueira | 4aabf63 | 2005-11-13 16:08:00 -0800 | [diff] [blame^] | 629 | struct saa7134_dev *dev = saa7134->dev; |
Ricardo Cerqueira | b2c15ea | 2005-11-08 21:37:14 -0800 | [diff] [blame] | 630 | int err; |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 631 | |
Ricardo Cerqueira | b54134b | 2005-11-08 21:38:54 -0800 | [diff] [blame] | 632 | down(&dev->dmasound.lock); |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 633 | |
Ricardo Cerqueira | b54134b | 2005-11-08 21:38:54 -0800 | [diff] [blame] | 634 | dev->dmasound.read_count = 0; |
| 635 | dev->dmasound.read_offset = 0; |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 636 | |
Ricardo Cerqueira | b54134b | 2005-11-08 21:38:54 -0800 | [diff] [blame] | 637 | up(&dev->dmasound.lock); |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 638 | |
Ricardo Cerqueira | 4aabf63 | 2005-11-13 16:08:00 -0800 | [diff] [blame^] | 639 | pcm = kzalloc(sizeof(*pcm), GFP_KERNEL); |
| 640 | if (pcm == NULL) |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 641 | return -ENOMEM; |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 642 | |
Ricardo Cerqueira | 4aabf63 | 2005-11-13 16:08:00 -0800 | [diff] [blame^] | 643 | pcm->dev=saa7134->dev; |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 644 | |
Ricardo Cerqueira | 4aabf63 | 2005-11-13 16:08:00 -0800 | [diff] [blame^] | 645 | spin_lock_init(&pcm->lock); |
| 646 | |
| 647 | pcm->substream = substream; |
| 648 | runtime->private_data = pcm; |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 649 | runtime->private_free = snd_card_saa7134_runtime_free; |
| 650 | runtime->hw = snd_card_saa7134_capture; |
| 651 | |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 652 | if ((err = snd_pcm_hw_constraint_integer(runtime, SNDRV_PCM_HW_PARAM_PERIODS)) < 0) |
| 653 | return err; |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 654 | |
| 655 | return 0; |
| 656 | } |
| 657 | |
Ricardo Cerqueira | b2c15ea | 2005-11-08 21:37:14 -0800 | [diff] [blame] | 658 | /* |
| 659 | * ALSA capture callbacks definition |
| 660 | */ |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 661 | |
| 662 | static snd_pcm_ops_t snd_card_saa7134_capture_ops = { |
| 663 | .open = snd_card_saa7134_capture_open, |
| 664 | .close = snd_card_saa7134_capture_close, |
| 665 | .ioctl = snd_pcm_lib_ioctl, |
| 666 | .hw_params = snd_card_saa7134_hw_params, |
| 667 | .hw_free = snd_card_saa7134_hw_free, |
| 668 | .prepare = snd_card_saa7134_capture_prepare, |
| 669 | .trigger = snd_card_saa7134_capture_trigger, |
| 670 | .pointer = snd_card_saa7134_capture_pointer, |
| 671 | }; |
| 672 | |
Ricardo Cerqueira | b2c15ea | 2005-11-08 21:37:14 -0800 | [diff] [blame] | 673 | /* |
| 674 | * ALSA PCM setup |
| 675 | * |
| 676 | * Called when initializing the board. Sets up the name and hooks up |
| 677 | * the callbacks |
| 678 | * |
| 679 | */ |
| 680 | |
| 681 | static int snd_card_saa7134_pcm(snd_card_saa7134_t *saa7134, int device) |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 682 | { |
Nickolay V. Shmyrev | 5f7591c | 2005-11-08 21:37:04 -0800 | [diff] [blame] | 683 | snd_pcm_t *pcm; |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 684 | int err; |
Nickolay V. Shmyrev | 5f7591c | 2005-11-08 21:37:04 -0800 | [diff] [blame] | 685 | |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 686 | if ((err = snd_pcm_new(saa7134->card, "SAA7134 PCM", device, 0, 1, &pcm)) < 0) |
Nickolay V. Shmyrev | 5f7591c | 2005-11-08 21:37:04 -0800 | [diff] [blame] | 687 | return err; |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 688 | snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_card_saa7134_capture_ops); |
| 689 | pcm->private_data = saa7134; |
| 690 | pcm->info_flags = 0; |
| 691 | strcpy(pcm->name, "SAA7134 PCM"); |
Nickolay V. Shmyrev | 5f7591c | 2005-11-08 21:37:04 -0800 | [diff] [blame] | 692 | return 0; |
| 693 | } |
| 694 | |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 695 | #define SAA713x_VOLUME(xname, xindex, addr) \ |
| 696 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \ |
| 697 | .info = snd_saa7134_volume_info, \ |
| 698 | .get = snd_saa7134_volume_get, .put = snd_saa7134_volume_put, \ |
| 699 | .private_value = addr } |
Nickolay V. Shmyrev | 5f7591c | 2005-11-08 21:37:04 -0800 | [diff] [blame] | 700 | |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 701 | static int snd_saa7134_volume_info(snd_kcontrol_t * kcontrol, snd_ctl_elem_info_t * uinfo) |
| 702 | { |
| 703 | uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER; |
| 704 | uinfo->count = 2; |
| 705 | uinfo->value.integer.min = 0; |
| 706 | uinfo->value.integer.max = 20; |
Nickolay V. Shmyrev | 5f7591c | 2005-11-08 21:37:04 -0800 | [diff] [blame] | 707 | return 0; |
| 708 | } |
| 709 | |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 710 | static int snd_saa7134_volume_get(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_t * ucontrol) |
Nickolay V. Shmyrev | 5f7591c | 2005-11-08 21:37:04 -0800 | [diff] [blame] | 711 | { |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 712 | snd_card_saa7134_t *chip = snd_kcontrol_chip(kcontrol); |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 713 | int addr = kcontrol->private_value; |
Nickolay V. Shmyrev | 5f7591c | 2005-11-08 21:37:04 -0800 | [diff] [blame] | 714 | |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 715 | ucontrol->value.integer.value[0] = chip->mixer_volume[addr][0]; |
| 716 | ucontrol->value.integer.value[1] = chip->mixer_volume[addr][1]; |
Nickolay V. Shmyrev | 5f7591c | 2005-11-08 21:37:04 -0800 | [diff] [blame] | 717 | return 0; |
| 718 | } |
| 719 | |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 720 | static int snd_saa7134_volume_put(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_t * ucontrol) |
| 721 | { |
| 722 | snd_card_saa7134_t *chip = snd_kcontrol_chip(kcontrol); |
| 723 | unsigned long flags; |
| 724 | int change, addr = kcontrol->private_value; |
| 725 | int left, right; |
| 726 | |
| 727 | left = ucontrol->value.integer.value[0]; |
| 728 | if (left < 0) |
| 729 | left = 0; |
| 730 | if (left > 20) |
| 731 | left = 20; |
| 732 | right = ucontrol->value.integer.value[1]; |
| 733 | if (right < 0) |
| 734 | right = 0; |
| 735 | if (right > 20) |
| 736 | right = 20; |
| 737 | spin_lock_irqsave(&chip->mixer_lock, flags); |
| 738 | change = chip->mixer_volume[addr][0] != left || |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 739 | chip->mixer_volume[addr][1] != right; |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 740 | chip->mixer_volume[addr][0] = left; |
| 741 | chip->mixer_volume[addr][1] = right; |
| 742 | spin_unlock_irqrestore(&chip->mixer_lock, flags); |
| 743 | return change; |
| 744 | } |
| 745 | |
| 746 | #define SAA713x_CAPSRC(xname, xindex, addr) \ |
| 747 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \ |
| 748 | .info = snd_saa7134_capsrc_info, \ |
| 749 | .get = snd_saa7134_capsrc_get, .put = snd_saa7134_capsrc_put, \ |
| 750 | .private_value = addr } |
| 751 | |
| 752 | static int snd_saa7134_capsrc_info(snd_kcontrol_t * kcontrol, snd_ctl_elem_info_t * uinfo) |
| 753 | { |
| 754 | uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN; |
Ricardo Cerqueira | b2c15ea | 2005-11-08 21:37:14 -0800 | [diff] [blame] | 755 | uinfo->count = 2; |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 756 | uinfo->value.integer.min = 0; |
| 757 | uinfo->value.integer.max = 1; |
| 758 | return 0; |
| 759 | } |
| 760 | |
| 761 | static int snd_saa7134_capsrc_get(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_t * ucontrol) |
| 762 | { |
| 763 | snd_card_saa7134_t *chip = snd_kcontrol_chip(kcontrol); |
| 764 | unsigned long flags; |
| 765 | int addr = kcontrol->private_value; |
| 766 | |
| 767 | spin_lock_irqsave(&chip->mixer_lock, flags); |
| 768 | ucontrol->value.integer.value[0] = chip->capture_source[addr][0]; |
| 769 | ucontrol->value.integer.value[1] = chip->capture_source[addr][1]; |
| 770 | spin_unlock_irqrestore(&chip->mixer_lock, flags); |
Ricardo Cerqueira | 4aabf63 | 2005-11-13 16:08:00 -0800 | [diff] [blame^] | 771 | |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 772 | return 0; |
| 773 | } |
| 774 | |
| 775 | static int snd_saa7134_capsrc_put(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_t * ucontrol) |
| 776 | { |
| 777 | snd_card_saa7134_t *chip = snd_kcontrol_chip(kcontrol); |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 778 | int change, addr = kcontrol->private_value; |
| 779 | int left, right; |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 780 | u32 anabar, xbarin; |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 781 | int analog_io, rate; |
| 782 | struct saa7134_dev *dev; |
| 783 | |
Ricardo Cerqueira | 4aabf63 | 2005-11-13 16:08:00 -0800 | [diff] [blame^] | 784 | dev = chip->dev; |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 785 | |
| 786 | left = ucontrol->value.integer.value[0] & 1; |
| 787 | right = ucontrol->value.integer.value[1] & 1; |
Ricardo Cerqueira | c817e76 | 2005-11-13 16:07:47 -0800 | [diff] [blame] | 788 | spin_lock_irq(&chip->mixer_lock); |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 789 | |
Ricardo Cerqueira | b2c15ea | 2005-11-08 21:37:14 -0800 | [diff] [blame] | 790 | change = chip->capture_source[addr][0] != left || |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 791 | chip->capture_source[addr][1] != right; |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 792 | chip->capture_source[addr][0] = left; |
| 793 | chip->capture_source[addr][1] = right; |
Ricardo Cerqueira | b54134b | 2005-11-08 21:38:54 -0800 | [diff] [blame] | 794 | dev->dmasound.input=addr; |
Ricardo Cerqueira | c817e76 | 2005-11-13 16:07:47 -0800 | [diff] [blame] | 795 | spin_unlock_irq(&chip->mixer_lock); |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 796 | |
| 797 | |
Ricardo Cerqueira | b2c15ea | 2005-11-08 21:37:14 -0800 | [diff] [blame] | 798 | if (change) { |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 799 | switch (dev->pci->device) { |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 800 | |
| 801 | case PCI_DEVICE_ID_PHILIPS_SAA7134: |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 802 | switch (addr) { |
| 803 | case MIXER_ADDR_TVTUNER: |
| 804 | saa_andorb(SAA7134_AUDIO_FORMAT_CTRL, 0xc0, 0xc0); |
| 805 | saa_andorb(SAA7134_SIF_SAMPLE_FREQ, 0x03, 0x00); |
| 806 | break; |
| 807 | case MIXER_ADDR_LINE1: |
| 808 | case MIXER_ADDR_LINE2: |
| 809 | analog_io = (MIXER_ADDR_LINE1 == addr) ? 0x00 : 0x08; |
Ricardo Cerqueira | b54134b | 2005-11-08 21:38:54 -0800 | [diff] [blame] | 810 | rate = (32000 == dev->dmasound.rate) ? 0x01 : 0x03; |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 811 | saa_andorb(SAA7134_ANALOG_IO_SELECT, 0x08, analog_io); |
| 812 | saa_andorb(SAA7134_AUDIO_FORMAT_CTRL, 0xc0, 0x80); |
| 813 | saa_andorb(SAA7134_SIF_SAMPLE_FREQ, 0x03, rate); |
| 814 | break; |
| 815 | } |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 816 | |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 817 | break; |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 818 | case PCI_DEVICE_ID_PHILIPS_SAA7133: |
| 819 | case PCI_DEVICE_ID_PHILIPS_SAA7135: |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 820 | xbarin = 0x03; // adc |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 821 | anabar = 0; |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 822 | switch (addr) { |
| 823 | case MIXER_ADDR_TVTUNER: |
| 824 | xbarin = 0; // Demodulator |
| 825 | anabar = 2; // DACs |
| 826 | break; |
| 827 | case MIXER_ADDR_LINE1: |
| 828 | anabar = 0; // aux1, aux1 |
| 829 | break; |
| 830 | case MIXER_ADDR_LINE2: |
| 831 | anabar = 9; // aux2, aux2 |
| 832 | break; |
| 833 | } |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 834 | |
| 835 | /* output xbar always main channel */ |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 836 | saa_dsp_writel(dev, SAA7133_DIGITAL_OUTPUT_SEL1, 0xbbbb10); |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 837 | |
| 838 | if (left || right) { // We've got data, turn the input on |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 839 | saa_dsp_writel(dev, SAA7133_DIGITAL_INPUT_XBAR1, xbarin); |
| 840 | saa_writel(SAA7133_ANALOG_IO_SELECT, anabar); |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 841 | } else { |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 842 | saa_dsp_writel(dev, SAA7133_DIGITAL_INPUT_XBAR1, 0); |
| 843 | saa_writel(SAA7133_ANALOG_IO_SELECT, 0); |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 844 | } |
Ricardo Cerqueira | a866623 | 2005-11-08 21:37:14 -0800 | [diff] [blame] | 845 | break; |
Ricardo Cerqueira | b2c15ea | 2005-11-08 21:37:14 -0800 | [diff] [blame] | 846 | } |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 847 | } |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 848 | |
| 849 | return change; |
| 850 | } |
| 851 | |
| 852 | static snd_kcontrol_new_t snd_saa7134_controls[] = { |
| 853 | SAA713x_VOLUME("Video Volume", 0, MIXER_ADDR_TVTUNER), |
| 854 | SAA713x_CAPSRC("Video Capture Switch", 0, MIXER_ADDR_TVTUNER), |
| 855 | SAA713x_VOLUME("Line Volume", 1, MIXER_ADDR_LINE1), |
| 856 | SAA713x_CAPSRC("Line Capture Switch", 1, MIXER_ADDR_LINE1), |
| 857 | SAA713x_VOLUME("Line Volume", 2, MIXER_ADDR_LINE2), |
| 858 | SAA713x_CAPSRC("Line Capture Switch", 2, MIXER_ADDR_LINE2), |
Nickolay V. Shmyrev | 5f7591c | 2005-11-08 21:37:04 -0800 | [diff] [blame] | 859 | }; |
| 860 | |
Ricardo Cerqueira | b2c15ea | 2005-11-08 21:37:14 -0800 | [diff] [blame] | 861 | /* |
| 862 | * ALSA mixer setup |
| 863 | * |
| 864 | * Called when initializing the board. Sets up the name and hooks up |
| 865 | * the callbacks |
| 866 | * |
| 867 | */ |
| 868 | |
| 869 | static int snd_card_saa7134_new_mixer(snd_card_saa7134_t * chip) |
Nickolay V. Shmyrev | 5f7591c | 2005-11-08 21:37:04 -0800 | [diff] [blame] | 870 | { |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 871 | snd_card_t *card = chip->card; |
| 872 | unsigned int idx; |
| 873 | int err; |
Nickolay V. Shmyrev | 5f7591c | 2005-11-08 21:37:04 -0800 | [diff] [blame] | 874 | |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 875 | snd_assert(chip != NULL, return -EINVAL); |
| 876 | strcpy(card->mixername, "SAA7134 Mixer"); |
Nickolay V. Shmyrev | 5f7591c | 2005-11-08 21:37:04 -0800 | [diff] [blame] | 877 | |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 878 | for (idx = 0; idx < ARRAY_SIZE(snd_saa7134_controls); idx++) { |
| 879 | if ((err = snd_ctl_add(card, snd_ctl_new1(&snd_saa7134_controls[idx], chip))) < 0) |
| 880 | return err; |
| 881 | } |
Nickolay V. Shmyrev | 5f7591c | 2005-11-08 21:37:04 -0800 | [diff] [blame] | 882 | return 0; |
| 883 | } |
| 884 | |
Ricardo Cerqueira | c817e76 | 2005-11-13 16:07:47 -0800 | [diff] [blame] | 885 | static void snd_saa7134_free(snd_card_t * card) |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 886 | { |
Ricardo Cerqueira | c817e76 | 2005-11-13 16:07:47 -0800 | [diff] [blame] | 887 | return; |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 888 | } |
| 889 | |
Nickolay V. Shmyrev | 5f7591c | 2005-11-08 21:37:04 -0800 | [diff] [blame] | 890 | static int snd_saa7134_dev_free(snd_device_t *device) |
| 891 | { |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 892 | snd_card_saa7134_t *chip = device->device_data; |
Ricardo Cerqueira | c817e76 | 2005-11-13 16:07:47 -0800 | [diff] [blame] | 893 | |
Ricardo Cerqueira | 4aabf63 | 2005-11-13 16:08:00 -0800 | [diff] [blame^] | 894 | if (chip->dev->dmasound.priv_data == NULL) |
| 895 | return 0; |
| 896 | |
Ricardo Cerqueira | c817e76 | 2005-11-13 16:07:47 -0800 | [diff] [blame] | 897 | if (chip->irq >= 0) { |
| 898 | synchronize_irq(chip->irq); |
Ricardo Cerqueira | 4aabf63 | 2005-11-13 16:08:00 -0800 | [diff] [blame^] | 899 | free_irq(chip->irq, &chip->dev->dmasound); |
Ricardo Cerqueira | c817e76 | 2005-11-13 16:07:47 -0800 | [diff] [blame] | 900 | } |
| 901 | |
Ricardo Cerqueira | 4aabf63 | 2005-11-13 16:08:00 -0800 | [diff] [blame^] | 902 | chip->dev->dmasound.priv_data = NULL; |
| 903 | |
Ricardo Cerqueira | c817e76 | 2005-11-13 16:07:47 -0800 | [diff] [blame] | 904 | return 0; |
Nickolay V. Shmyrev | 5f7591c | 2005-11-08 21:37:04 -0800 | [diff] [blame] | 905 | } |
| 906 | |
Ricardo Cerqueira | b2c15ea | 2005-11-08 21:37:14 -0800 | [diff] [blame] | 907 | /* |
| 908 | * ALSA initialization |
| 909 | * |
Ricardo Cerqueira | c817e76 | 2005-11-13 16:07:47 -0800 | [diff] [blame] | 910 | * Called by the init routine, once for each saa7134 device present, |
| 911 | * it creates the basic structures and registers the ALSA devices |
Ricardo Cerqueira | b2c15ea | 2005-11-08 21:37:14 -0800 | [diff] [blame] | 912 | * |
| 913 | */ |
| 914 | |
Ricardo Cerqueira | 4aabf63 | 2005-11-13 16:08:00 -0800 | [diff] [blame^] | 915 | int alsa_card_saa7134_create(struct saa7134_dev *dev, int devnum) |
Nickolay V. Shmyrev | 5f7591c | 2005-11-08 21:37:04 -0800 | [diff] [blame] | 916 | { |
Ricardo Cerqueira | 79dd0c69 | 2005-11-08 21:38:53 -0800 | [diff] [blame] | 917 | |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 918 | snd_card_t *card; |
Ricardo Cerqueira | b2c15ea | 2005-11-08 21:37:14 -0800 | [diff] [blame] | 919 | snd_card_saa7134_t *chip; |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 920 | int err; |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 921 | static snd_device_ops_t ops = { |
| 922 | .dev_free = snd_saa7134_dev_free, |
| 923 | }; |
Nickolay V. Shmyrev | 5f7591c | 2005-11-08 21:37:04 -0800 | [diff] [blame] | 924 | |
Ricardo Cerqueira | 79dd0c69 | 2005-11-08 21:38:53 -0800 | [diff] [blame] | 925 | |
Ricardo Cerqueira | 4aabf63 | 2005-11-13 16:08:00 -0800 | [diff] [blame^] | 926 | if (devnum >= SNDRV_CARDS) |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 927 | return -ENODEV; |
Ricardo Cerqueira | 4aabf63 | 2005-11-13 16:08:00 -0800 | [diff] [blame^] | 928 | if (!enable[devnum]) |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 929 | return -ENODEV; |
Ricardo Cerqueira | b2c15ea | 2005-11-08 21:37:14 -0800 | [diff] [blame] | 930 | |
Ricardo Cerqueira | 4aabf63 | 2005-11-13 16:08:00 -0800 | [diff] [blame^] | 931 | card = snd_card_new(index[devnum], id[devnum], THIS_MODULE, sizeof(snd_card_saa7134_t)); |
Ricardo Cerqueira | b54134b | 2005-11-08 21:38:54 -0800 | [diff] [blame] | 932 | |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 933 | if (card == NULL) |
| 934 | return -ENOMEM; |
Nickolay V. Shmyrev | 5f7591c | 2005-11-08 21:37:04 -0800 | [diff] [blame] | 935 | |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 936 | strcpy(card->driver, "SAA7134"); |
Nickolay V. Shmyrev | 5f7591c | 2005-11-08 21:37:04 -0800 | [diff] [blame] | 937 | |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 938 | /* Card "creation" */ |
Ricardo Cerqueira | b2c15ea | 2005-11-08 21:37:14 -0800 | [diff] [blame] | 939 | |
Ricardo Cerqueira | c817e76 | 2005-11-13 16:07:47 -0800 | [diff] [blame] | 940 | card->private_free = snd_saa7134_free; |
| 941 | chip = (snd_card_saa7134_t *) card->private_data; |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 942 | |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 943 | spin_lock_init(&chip->lock); |
Ricardo Cerqueira | b54134b | 2005-11-08 21:38:54 -0800 | [diff] [blame] | 944 | spin_lock_init(&chip->mixer_lock); |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 945 | |
Ricardo Cerqueira | 4aabf63 | 2005-11-13 16:08:00 -0800 | [diff] [blame^] | 946 | chip->dev = dev; |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 947 | |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 948 | chip->card = card; |
Ricardo Cerqueira | b2c15ea | 2005-11-08 21:37:14 -0800 | [diff] [blame] | 949 | |
Ricardo Cerqueira | 4aabf63 | 2005-11-13 16:08:00 -0800 | [diff] [blame^] | 950 | chip->pci = dev->pci; |
| 951 | chip->irq = dev->pci->irq; |
| 952 | chip->iobase = pci_resource_start(dev->pci, 0); |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 953 | |
Ricardo Cerqueira | 4aabf63 | 2005-11-13 16:08:00 -0800 | [diff] [blame^] | 954 | |
| 955 | err = request_irq(dev->pci->irq, saa7134_alsa_irq, |
| 956 | SA_SHIRQ | SA_INTERRUPT, dev->name, |
| 957 | (void*) &dev->dmasound); |
Ricardo Cerqueira | 79dd0c69 | 2005-11-08 21:38:53 -0800 | [diff] [blame] | 958 | |
| 959 | if (err < 0) { |
| 960 | printk(KERN_ERR "%s: can't get IRQ %d for ALSA\n", |
Ricardo Cerqueira | 4aabf63 | 2005-11-13 16:08:00 -0800 | [diff] [blame^] | 961 | dev->name, dev->pci->irq); |
Ricardo Cerqueira | b54134b | 2005-11-08 21:38:54 -0800 | [diff] [blame] | 962 | goto __nodev; |
Ricardo Cerqueira | 79dd0c69 | 2005-11-08 21:38:53 -0800 | [diff] [blame] | 963 | } |
| 964 | |
Ricardo Cerqueira | 4aabf63 | 2005-11-13 16:08:00 -0800 | [diff] [blame^] | 965 | init_MUTEX(&dev->dmasound.lock); |
| 966 | |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 967 | if ((err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops)) < 0) { |
Ricardo Cerqueira | b54134b | 2005-11-08 21:38:54 -0800 | [diff] [blame] | 968 | goto __nodev; |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 969 | } |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 970 | |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 971 | if ((err = snd_card_saa7134_new_mixer(chip)) < 0) |
| 972 | goto __nodev; |
| 973 | |
| 974 | if ((err = snd_card_saa7134_pcm(chip, 0)) < 0) |
| 975 | goto __nodev; |
Ricardo Cerqueira | b2c15ea | 2005-11-08 21:37:14 -0800 | [diff] [blame] | 976 | |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 977 | snd_card_set_dev(card, &chip->pci->dev); |
| 978 | |
| 979 | /* End of "creation" */ |
| 980 | |
| 981 | strcpy(card->shortname, "SAA7134"); |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 982 | sprintf(card->longname, "%s at 0x%lx irq %d", |
Ricardo Cerqueira | 4aabf63 | 2005-11-13 16:08:00 -0800 | [diff] [blame^] | 983 | chip->dev->name, chip->iobase, chip->irq); |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 984 | |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 985 | if ((err = snd_card_register(card)) == 0) { |
Ricardo Cerqueira | 4aabf63 | 2005-11-13 16:08:00 -0800 | [diff] [blame^] | 986 | snd_saa7134_cards[devnum] = card; |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 987 | return 0; |
Nickolay V. Shmyrev | 5f7591c | 2005-11-08 21:37:04 -0800 | [diff] [blame] | 988 | } |
| 989 | |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 990 | __nodev: |
| 991 | snd_card_free(card); |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 992 | return err; |
| 993 | } |
Nickolay V. Shmyrev | 5f7591c | 2005-11-08 21:37:04 -0800 | [diff] [blame] | 994 | |
Ricardo Cerqueira | 79dd0c69 | 2005-11-08 21:38:53 -0800 | [diff] [blame] | 995 | /* |
| 996 | * Module initializer |
| 997 | * |
| 998 | * Loops through present saa7134 cards, and assigns an ALSA device |
| 999 | * to each one |
| 1000 | * |
| 1001 | */ |
| 1002 | |
| 1003 | static int saa7134_alsa_init(void) |
| 1004 | { |
Ricardo Cerqueira | 4aabf63 | 2005-11-13 16:08:00 -0800 | [diff] [blame^] | 1005 | struct saa7134_dev *dev = NULL; |
Ricardo Cerqueira | c817e76 | 2005-11-13 16:07:47 -0800 | [diff] [blame] | 1006 | struct list_head *list; |
Ricardo Cerqueira | 79dd0c69 | 2005-11-08 21:38:53 -0800 | [diff] [blame] | 1007 | |
Ricardo Cerqueira | c817e76 | 2005-11-13 16:07:47 -0800 | [diff] [blame] | 1008 | position = 0; |
Ricardo Cerqueira | 79dd0c69 | 2005-11-08 21:38:53 -0800 | [diff] [blame] | 1009 | |
Ricardo Cerqueira | c817e76 | 2005-11-13 16:07:47 -0800 | [diff] [blame] | 1010 | printk(KERN_INFO "saa7134 ALSA driver for DMA sound loaded\n"); |
| 1011 | |
| 1012 | list_for_each(list,&saa7134_devlist) { |
Ricardo Cerqueira | 4aabf63 | 2005-11-13 16:08:00 -0800 | [diff] [blame^] | 1013 | dev = list_entry(list, struct saa7134_dev, devlist); |
| 1014 | if (dev->dmasound.priv_data == NULL) { |
| 1015 | dev->dmasound.priv_data = dev; |
| 1016 | alsa_card_saa7134_create(dev,position); |
| 1017 | position++; |
| 1018 | } else { |
| 1019 | printk(KERN_ERR "saa7134 ALSA: DMA sound is being handled by OSS. ignoring %s\n",dev->name); |
| 1020 | return -EBUSY; |
| 1021 | } |
Ricardo Cerqueira | c817e76 | 2005-11-13 16:07:47 -0800 | [diff] [blame] | 1022 | } |
Ricardo Cerqueira | 79dd0c69 | 2005-11-08 21:38:53 -0800 | [diff] [blame] | 1023 | |
Ricardo Cerqueira | 4aabf63 | 2005-11-13 16:08:00 -0800 | [diff] [blame^] | 1024 | if (dev == NULL) |
Ricardo Cerqueira | 79dd0c69 | 2005-11-08 21:38:53 -0800 | [diff] [blame] | 1025 | printk(KERN_INFO "saa7134 ALSA: no saa7134 cards found\n"); |
| 1026 | |
| 1027 | return 0; |
Ricardo Cerqueira | 79dd0c69 | 2005-11-08 21:38:53 -0800 | [diff] [blame] | 1028 | } |
| 1029 | |
| 1030 | /* |
| 1031 | * Module destructor |
| 1032 | */ |
| 1033 | |
| 1034 | void saa7134_alsa_exit(void) |
Ricardo Cerqueira | bd15eba | 2005-11-08 21:37:11 -0800 | [diff] [blame] | 1035 | { |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 1036 | int idx; |
Ricardo Cerqueira | b54134b | 2005-11-08 21:38:54 -0800 | [diff] [blame] | 1037 | |
Ricardo Cerqueira | 79dd0c69 | 2005-11-08 21:38:53 -0800 | [diff] [blame] | 1038 | for (idx = 0; idx < SNDRV_CARDS; idx++) { |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 1039 | snd_card_free(snd_saa7134_cards[idx]); |
Nickolay V. Shmyrev | 5f7591c | 2005-11-08 21:37:04 -0800 | [diff] [blame] | 1040 | } |
Ricardo Cerqueira | b54134b | 2005-11-08 21:38:54 -0800 | [diff] [blame] | 1041 | |
Ricardo Cerqueira | 79dd0c69 | 2005-11-08 21:38:53 -0800 | [diff] [blame] | 1042 | printk(KERN_INFO "saa7134 ALSA driver for DMA sound unloaded\n"); |
Ricardo Cerqueira | b54134b | 2005-11-08 21:38:54 -0800 | [diff] [blame] | 1043 | |
Ricardo Cerqueira | 79dd0c69 | 2005-11-08 21:38:53 -0800 | [diff] [blame] | 1044 | return; |
Nickolay V. Shmyrev | 5f7591c | 2005-11-08 21:37:04 -0800 | [diff] [blame] | 1045 | } |
Ricardo Cerqueira | 79dd0c69 | 2005-11-08 21:38:53 -0800 | [diff] [blame] | 1046 | |
| 1047 | module_init(saa7134_alsa_init); |
| 1048 | module_exit(saa7134_alsa_exit); |
| 1049 | MODULE_LICENSE("GPL"); |
| 1050 | MODULE_AUTHOR("Ricardo Cerqueira"); |