blob: 10460fd3ce3994c5865e11e4f990407b2b583c47 [file] [log] [blame]
Nickolay V. Shmyrev5f7591c2005-11-08 21:37:04 -08001/*
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -08002 * SAA713x ALSA support for V4L
Nickolay V. Shmyrev5f7591c2005-11-08 21:37:04 -08003 *
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -08004 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, version 2
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program; if not, write to the Free Software
15 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 *
Nickolay V. Shmyrev5f7591c2005-11-08 21:37:04 -080017 */
18
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -080019#include <linux/init.h>
20#include <linux/slab.h>
21#include <linux/time.h>
22#include <linux/wait.h>
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -080023#include <linux/module.h>
Nickolay V. Shmyrev5f7591c2005-11-08 21:37:04 -080024#include <sound/core.h>
Nickolay V. Shmyrev5f7591c2005-11-08 21:37:04 -080025#include <sound/control.h>
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -080026#include <sound/pcm.h>
Ricardo Cerqueirad5ee43a2005-11-13 16:08:10 -080027#include <sound/pcm_params.h>
Nickolay V. Shmyrev5f7591c2005-11-08 21:37:04 -080028#include <sound/initval.h>
Nickolay V. Shmyrev871242b2005-11-13 16:07:51 -080029#include <linux/interrupt.h>
Nickolay V. Shmyrev5f7591c2005-11-08 21:37:04 -080030
31#include "saa7134.h"
32#include "saa7134-reg.h"
33
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -030034static unsigned int debug;
Ricardo Cerqueira79dd0c692005-11-08 21:38:53 -080035module_param(debug, int, 0644);
36MODULE_PARM_DESC(debug,"enable debug messages [alsa]");
37
Ricardo Cerqueirab2c15ea2005-11-08 21:37:14 -080038/*
39 * Configuration macros
40 */
41
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -080042/* defaults */
Oldřich Jedlička736dada2009-08-22 15:13:51 -030043#define MIXER_ADDR_UNSELECTED -1
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -080044#define MIXER_ADDR_TVTUNER 0
45#define MIXER_ADDR_LINE1 1
46#define MIXER_ADDR_LINE2 2
47#define MIXER_ADDR_LAST 2
Nickolay V. Shmyrev5f7591c2005-11-08 21:37:04 -080048
Mauro Carvalho Chehab674434c2005-12-12 00:37:28 -080049
Ricardo Cerqueirab2c15ea2005-11-08 21:37:14 -080050static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */
51static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */
Ricardo Cerqueiraede22412006-02-27 00:08:11 -030052static int enable[SNDRV_CARDS] = {1, [1 ... (SNDRV_CARDS - 1)] = 1};
Ricardo Cerqueirab2c15ea2005-11-08 21:37:14 -080053
Ricardo Cerqueirab54134b2005-11-08 21:38:54 -080054module_param_array(index, int, NULL, 0444);
Ricardo Cerqueiraede22412006-02-27 00:08:11 -030055module_param_array(enable, int, NULL, 0444);
Ricardo Cerqueirab54134b2005-11-08 21:38:54 -080056MODULE_PARM_DESC(index, "Index value for SAA7134 capture interface(s).");
Ricardo Cerqueiraede22412006-02-27 00:08:11 -030057MODULE_PARM_DESC(enable, "Enable (or not) the SAA7134 capture interface(s).");
Ricardo Cerqueirab54134b2005-11-08 21:38:54 -080058
Ricardo Cerqueira79dd0c692005-11-08 21:38:53 -080059#define dprintk(fmt, arg...) if (debug) \
Jean Delvaref85c6572005-12-19 08:53:59 -020060 printk(KERN_DEBUG "%s/alsa: " fmt, dev->name , ##arg)
Mauro Carvalho Chehab674434c2005-12-12 00:37:28 -080061
62
Ricardo Cerqueirab2c15ea2005-11-08 21:37:14 -080063
64/*
65 * Main chip structure
66 */
Mauro Carvalho Chehab674434c2005-12-12 00:37:28 -080067
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -080068typedef struct snd_card_saa7134 {
Takashi Iwaif7cbb7f2006-01-13 18:48:06 +010069 struct snd_card *card;
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -080070 spinlock_t mixer_lock;
71 int mixer_volume[MIXER_ADDR_LAST+1][2];
Oldřich Jedlička736dada2009-08-22 15:13:51 -030072 int capture_source_addr;
73 int capture_source[2];
74 struct snd_kcontrol *capture_ctl[MIXER_ADDR_LAST+1];
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -080075 struct pci_dev *pci;
Ricardo Cerqueira4aabf632005-11-13 16:08:00 -080076 struct saa7134_dev *dev;
Nickolay V. Shmyrev5f7591c2005-11-08 21:37:04 -080077
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -080078 unsigned long iobase;
Rafał Bilskiaac0ca62007-06-20 05:36:26 -030079 s16 irq;
80 u16 mute_was_on;
Nickolay V. Shmyrev5f7591c2005-11-08 21:37:04 -080081
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -080082 spinlock_t lock;
83} snd_card_saa7134_t;
Nickolay V. Shmyrev5f7591c2005-11-08 21:37:04 -080084
Nickolay V. Shmyrev07eef6c2005-11-08 21:38:14 -080085
Ricardo Cerqueirab2c15ea2005-11-08 21:37:14 -080086/*
87 * PCM structure
88 */
89
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -080090typedef struct snd_card_saa7134_pcm {
Ricardo Cerqueira4aabf632005-11-13 16:08:00 -080091 struct saa7134_dev *dev;
Nickolay V. Shmyrev5f7591c2005-11-08 21:37:04 -080092
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -080093 spinlock_t lock;
Ricardo Cerqueira4aabf632005-11-13 16:08:00 -080094
Takashi Iwaif7cbb7f2006-01-13 18:48:06 +010095 struct snd_pcm_substream *substream;
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -080096} snd_card_saa7134_pcm_t;
97
Takashi Iwaif7cbb7f2006-01-13 18:48:06 +010098static struct snd_card *snd_saa7134_cards[SNDRV_CARDS];
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -080099
Ricardo Cerqueira79dd0c692005-11-08 21:38:53 -0800100
Ricardo Cerqueirab2c15ea2005-11-08 21:37:14 -0800101/*
102 * saa7134 DMA audio stop
103 *
104 * Called when the capture device is released or the buffer overflows
105 *
Ricardo Cerqueirac817e762005-11-13 16:07:47 -0800106 * - Copied verbatim from saa7134-oss's dsp_dma_stop.
Ricardo Cerqueirab2c15ea2005-11-08 21:37:14 -0800107 *
108 */
109
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800110static void saa7134_dma_stop(struct saa7134_dev *dev)
Nickolay V. Shmyrev5f7591c2005-11-08 21:37:04 -0800111{
Ricardo Cerqueirab54134b2005-11-08 21:38:54 -0800112 dev->dmasound.dma_blk = -1;
113 dev->dmasound.dma_running = 0;
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800114 saa7134_set_dmabits(dev);
Nickolay V. Shmyrev5f7591c2005-11-08 21:37:04 -0800115}
116
Ricardo Cerqueirab2c15ea2005-11-08 21:37:14 -0800117/*
118 * saa7134 DMA audio start
119 *
120 * Called when preparing the capture device for use
121 *
Ricardo Cerqueirac817e762005-11-13 16:07:47 -0800122 * - Copied verbatim from saa7134-oss's dsp_dma_start.
Ricardo Cerqueirab2c15ea2005-11-08 21:37:14 -0800123 *
124 */
125
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800126static void saa7134_dma_start(struct saa7134_dev *dev)
Nickolay V. Shmyrev5f7591c2005-11-08 21:37:04 -0800127{
Ricardo Cerqueirab54134b2005-11-08 21:38:54 -0800128 dev->dmasound.dma_blk = 0;
129 dev->dmasound.dma_running = 1;
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800130 saa7134_set_dmabits(dev);
Nickolay V. Shmyrev5f7591c2005-11-08 21:37:04 -0800131}
132
Ricardo Cerqueirab2c15ea2005-11-08 21:37:14 -0800133/*
134 * saa7134 audio DMA IRQ handler
135 *
136 * Called whenever we get an SAA7134_IRQ_REPORT_DONE_RA3 interrupt
137 * Handles shifting between the 2 buffers, manages the read counters,
138 * and notifies ALSA when periods elapse
139 *
140 * - Mostly copied from saa7134-oss's saa7134_irq_oss_done.
141 *
142 */
143
Adrian Bunk943a4902005-12-01 00:51:35 -0800144static void saa7134_irq_alsa_done(struct saa7134_dev *dev,
145 unsigned long status)
Nickolay V. Shmyrev5f7591c2005-11-08 21:37:04 -0800146{
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800147 int next_blk, reg = 0;
148
149 spin_lock(&dev->slock);
Ricardo Cerqueirab54134b2005-11-08 21:38:54 -0800150 if (UNSET == dev->dmasound.dma_blk) {
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800151 dprintk("irq: recording stopped\n");
152 goto done;
153 }
154 if (0 != (status & 0x0f000000))
155 dprintk("irq: lost %ld\n", (status >> 24) & 0x0f);
156 if (0 == (status & 0x10000000)) {
157 /* odd */
Ricardo Cerqueirab54134b2005-11-08 21:38:54 -0800158 if (0 == (dev->dmasound.dma_blk & 0x01))
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800159 reg = SAA7134_RS_BA1(6);
160 } else {
161 /* even */
Ricardo Cerqueirab54134b2005-11-08 21:38:54 -0800162 if (1 == (dev->dmasound.dma_blk & 0x01))
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800163 reg = SAA7134_RS_BA2(6);
164 }
165 if (0 == reg) {
166 dprintk("irq: field oops [%s]\n",
167 (status & 0x10000000) ? "even" : "odd");
168 goto done;
169 }
170
Ricardo Cerqueirab54134b2005-11-08 21:38:54 -0800171 if (dev->dmasound.read_count >= dev->dmasound.blksize * (dev->dmasound.blocks-2)) {
172 dprintk("irq: overrun [full=%d/%d] - Blocks in %d\n",dev->dmasound.read_count,
173 dev->dmasound.bufsize, dev->dmasound.blocks);
Ricardo Cerqueirad5ee43a2005-11-13 16:08:10 -0800174 spin_unlock(&dev->slock);
Ricardo Cerqueirab54134b2005-11-08 21:38:54 -0800175 snd_pcm_stop(dev->dmasound.substream,SNDRV_PCM_STATE_XRUN);
Ricardo Cerqueirad5ee43a2005-11-13 16:08:10 -0800176 return;
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800177 }
178
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800179 /* next block addr */
Ricardo Cerqueirab54134b2005-11-08 21:38:54 -0800180 next_blk = (dev->dmasound.dma_blk + 2) % dev->dmasound.blocks;
181 saa_writel(reg,next_blk * dev->dmasound.blksize);
Ricardo Cerqueira79dd0c692005-11-08 21:38:53 -0800182 if (debug > 2)
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800183 dprintk("irq: ok, %s, next_blk=%d, addr=%x, blocks=%u, size=%u, read=%u\n",
184 (status & 0x10000000) ? "even" : "odd ", next_blk,
Ricardo Cerqueirab54134b2005-11-08 21:38:54 -0800185 next_blk * dev->dmasound.blksize, dev->dmasound.blocks, dev->dmasound.blksize, dev->dmasound.read_count);
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800186
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800187 /* update status & wake waiting readers */
Ricardo Cerqueirab54134b2005-11-08 21:38:54 -0800188 dev->dmasound.dma_blk = (dev->dmasound.dma_blk + 1) % dev->dmasound.blocks;
189 dev->dmasound.read_count += dev->dmasound.blksize;
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800190
Ricardo Cerqueirab54134b2005-11-08 21:38:54 -0800191 dev->dmasound.recording_on = reg;
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800192
Ricardo Cerqueirab54134b2005-11-08 21:38:54 -0800193 if (dev->dmasound.read_count >= snd_pcm_lib_period_bytes(dev->dmasound.substream)) {
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800194 spin_unlock(&dev->slock);
Ricardo Cerqueirab54134b2005-11-08 21:38:54 -0800195 snd_pcm_period_elapsed(dev->dmasound.substream);
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800196 spin_lock(&dev->slock);
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800197 }
Ricardo Cerqueira4aabf632005-11-13 16:08:00 -0800198
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800199 done:
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800200 spin_unlock(&dev->slock);
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800201
Nickolay V. Shmyrev5f7591c2005-11-08 21:37:04 -0800202}
203
Ricardo Cerqueirab2c15ea2005-11-08 21:37:14 -0800204/*
Ricardo Cerqueira79dd0c692005-11-08 21:38:53 -0800205 * IRQ request handler
206 *
207 * Runs along with saa7134's IRQ handler, discards anything that isn't
208 * DMA sound
209 *
210 */
211
David Howells7d12e782006-10-05 14:55:46 +0100212static irqreturn_t saa7134_alsa_irq(int irq, void *dev_id)
Ricardo Cerqueira79dd0c692005-11-08 21:38:53 -0800213{
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -0800214 struct saa7134_dmasound *dmasound = dev_id;
215 struct saa7134_dev *dev = dmasound->priv_data;
Ricardo Cerqueira4aabf632005-11-13 16:08:00 -0800216
Ricardo Cerqueira79dd0c692005-11-08 21:38:53 -0800217 unsigned long report, status;
218 int loop, handled = 0;
219
220 for (loop = 0; loop < 10; loop++) {
221 report = saa_readl(SAA7134_IRQ_REPORT);
222 status = saa_readl(SAA7134_IRQ_STATUS);
223
224 if (report & SAA7134_IRQ_REPORT_DONE_RA3) {
225 handled = 1;
Heikki Lindholm843b1372007-11-30 13:27:26 -0300226 saa_writel(SAA7134_IRQ_REPORT,
227 SAA7134_IRQ_REPORT_DONE_RA3);
Ricardo Cerqueira79dd0c692005-11-08 21:38:53 -0800228 saa7134_irq_alsa_done(dev, status);
229 } else {
230 goto out;
231 }
232 }
233
234 if (loop == 10) {
235 dprintk("error! looping IRQ!");
236 }
237
238out:
239 return IRQ_RETVAL(handled);
240}
241
242/*
Ricardo Cerqueirab2c15ea2005-11-08 21:37:14 -0800243 * ALSA capture trigger
244 *
245 * - One of the ALSA capture callbacks.
246 *
247 * Called whenever a capture is started or stopped. Must be defined,
248 * but there's nothing we want to do here
249 *
250 */
Nickolay V. Shmyrev5f7591c2005-11-08 21:37:04 -0800251
Takashi Iwaif7cbb7f2006-01-13 18:48:06 +0100252static int snd_card_saa7134_capture_trigger(struct snd_pcm_substream * substream,
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800253 int cmd)
Nickolay V. Shmyrev5f7591c2005-11-08 21:37:04 -0800254{
Takashi Iwaif7cbb7f2006-01-13 18:48:06 +0100255 struct snd_pcm_runtime *runtime = substream->runtime;
Ricardo Cerqueira4aabf632005-11-13 16:08:00 -0800256 snd_card_saa7134_pcm_t *pcm = runtime->private_data;
257 struct saa7134_dev *dev=pcm->dev;
Ricardo Cerqueirab54134b2005-11-08 21:38:54 -0800258 int err = 0;
259
Ricardo Cerqueirad5ee43a2005-11-13 16:08:10 -0800260 spin_lock(&dev->slock);
Ricardo Cerqueirac817e762005-11-13 16:07:47 -0800261 if (cmd == SNDRV_PCM_TRIGGER_START) {
Ricardo Cerqueirab54134b2005-11-08 21:38:54 -0800262 /* start dma */
263 saa7134_dma_start(dev);
Ricardo Cerqueirac817e762005-11-13 16:07:47 -0800264 } else if (cmd == SNDRV_PCM_TRIGGER_STOP) {
Ricardo Cerqueirab54134b2005-11-08 21:38:54 -0800265 /* stop dma */
266 saa7134_dma_stop(dev);
Ricardo Cerqueirac817e762005-11-13 16:07:47 -0800267 } else {
268 err = -EINVAL;
269 }
Ricardo Cerqueirad5ee43a2005-11-13 16:08:10 -0800270 spin_unlock(&dev->slock);
Ricardo Cerqueirab54134b2005-11-08 21:38:54 -0800271
Ricardo Cerqueirac817e762005-11-13 16:07:47 -0800272 return err;
Nickolay V. Shmyrev5f7591c2005-11-08 21:37:04 -0800273}
274
Ricardo Cerqueirab2c15ea2005-11-08 21:37:14 -0800275/*
Ricardo Cerqueirab2c15ea2005-11-08 21:37:14 -0800276 * DMA buffer initialization
277 *
278 * Uses V4L functions to initialize the DMA. Shouldn't be necessary in
279 * ALSA, but I was unable to use ALSA's own DMA, and had to force the
280 * usage of V4L's
281 *
Ricardo Cerqueirac817e762005-11-13 16:07:47 -0800282 * - Copied verbatim from saa7134-oss.
283 *
Ricardo Cerqueirab2c15ea2005-11-08 21:37:14 -0800284 */
285
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800286static int dsp_buffer_init(struct saa7134_dev *dev)
287{
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800288 int err;
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800289
Ricardo Cerqueira4aabf632005-11-13 16:08:00 -0800290 BUG_ON(!dev->dmasound.bufsize);
291
Ricardo Cerqueirab54134b2005-11-08 21:38:54 -0800292 videobuf_dma_init(&dev->dmasound.dma);
293 err = videobuf_dma_init_kernel(&dev->dmasound.dma, PCI_DMA_FROMDEVICE,
294 (dev->dmasound.bufsize + PAGE_SIZE) >> PAGE_SHIFT);
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800295 if (0 != err)
296 return err;
297 return 0;
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800298}
299
Ricardo Cerqueirab2c15ea2005-11-08 21:37:14 -0800300/*
Ricardo Cerqueirad5ee43a2005-11-13 16:08:10 -0800301 * DMA buffer release
302 *
303 * Called after closing the device, during snd_card_saa7134_capture_close
304 *
305 */
306
307static int dsp_buffer_free(struct saa7134_dev *dev)
308{
Eric Sesterhennae246012006-03-13 13:17:11 -0300309 BUG_ON(!dev->dmasound.blksize);
Ricardo Cerqueirad5ee43a2005-11-13 16:08:10 -0800310
311 videobuf_dma_free(&dev->dmasound.dma);
312
313 dev->dmasound.blocks = 0;
314 dev->dmasound.blksize = 0;
315 dev->dmasound.bufsize = 0;
316
Michael Krufkyb930e1d2007-08-27 18:16:54 -0300317 return 0;
Ricardo Cerqueirad5ee43a2005-11-13 16:08:10 -0800318}
319
Oldřich Jedlička736dada2009-08-22 15:13:51 -0300320/*
321 * Setting the capture source and updating the ALSA controls
322 */
323static int snd_saa7134_capsrc_set(struct snd_kcontrol *kcontrol,
324 int left, int right, bool force_notify)
325{
326 snd_card_saa7134_t *chip = snd_kcontrol_chip(kcontrol);
327 int change = 0, addr = kcontrol->private_value;
328 int active, old_addr;
329 u32 anabar, xbarin;
330 int analog_io, rate;
331 struct saa7134_dev *dev;
332
333 dev = chip->dev;
334
335 spin_lock_irq(&chip->mixer_lock);
336
337 active = left != 0 || right != 0;
338 old_addr = chip->capture_source_addr;
339
340 /* The active capture source cannot be deactivated */
341 if (active) {
342 change = old_addr != addr ||
343 chip->capture_source[0] != left ||
344 chip->capture_source[1] != right;
345
346 chip->capture_source[0] = left;
347 chip->capture_source[1] = right;
348 chip->capture_source_addr = addr;
349 dev->dmasound.input = addr;
350 }
351 spin_unlock_irq(&chip->mixer_lock);
352
353 if (change) {
354 switch (dev->pci->device) {
355
356 case PCI_DEVICE_ID_PHILIPS_SAA7134:
357 switch (addr) {
358 case MIXER_ADDR_TVTUNER:
359 saa_andorb(SAA7134_AUDIO_FORMAT_CTRL,
360 0xc0, 0xc0);
361 saa_andorb(SAA7134_SIF_SAMPLE_FREQ,
362 0x03, 0x00);
363 break;
364 case MIXER_ADDR_LINE1:
365 case MIXER_ADDR_LINE2:
366 analog_io = (MIXER_ADDR_LINE1 == addr) ?
367 0x00 : 0x08;
368 rate = (32000 == dev->dmasound.rate) ?
369 0x01 : 0x03;
370 saa_andorb(SAA7134_ANALOG_IO_SELECT,
371 0x08, analog_io);
372 saa_andorb(SAA7134_AUDIO_FORMAT_CTRL,
373 0xc0, 0x80);
374 saa_andorb(SAA7134_SIF_SAMPLE_FREQ,
375 0x03, rate);
376 break;
377 }
378
379 break;
380 case PCI_DEVICE_ID_PHILIPS_SAA7133:
381 case PCI_DEVICE_ID_PHILIPS_SAA7135:
382 xbarin = 0x03; /* adc */
383 anabar = 0;
384 switch (addr) {
385 case MIXER_ADDR_TVTUNER:
386 xbarin = 0; /* Demodulator */
387 anabar = 2; /* DACs */
388 break;
389 case MIXER_ADDR_LINE1:
390 anabar = 0; /* aux1, aux1 */
391 break;
392 case MIXER_ADDR_LINE2:
393 anabar = 9; /* aux2, aux2 */
394 break;
395 }
396
397 /* output xbar always main channel */
398 saa_dsp_writel(dev, SAA7133_DIGITAL_OUTPUT_SEL1,
399 0xbbbb10);
400
401 if (left || right) {
402 /* We've got data, turn the input on */
403 saa_dsp_writel(dev, SAA7133_DIGITAL_INPUT_XBAR1,
404 xbarin);
405 saa_writel(SAA7133_ANALOG_IO_SELECT, anabar);
406 } else {
407 saa_dsp_writel(dev, SAA7133_DIGITAL_INPUT_XBAR1,
408 0);
409 saa_writel(SAA7133_ANALOG_IO_SELECT, 0);
410 }
411 break;
412 }
413 }
414
415 if (change) {
416 if (force_notify)
417 snd_ctl_notify(chip->card,
418 SNDRV_CTL_EVENT_MASK_VALUE,
419 &chip->capture_ctl[addr]->id);
420
421 if (old_addr != MIXER_ADDR_UNSELECTED && old_addr != addr)
422 snd_ctl_notify(chip->card,
423 SNDRV_CTL_EVENT_MASK_VALUE,
424 &chip->capture_ctl[old_addr]->id);
425 }
426
427 return change;
428}
Ricardo Cerqueirad5ee43a2005-11-13 16:08:10 -0800429
430/*
Ricardo Cerqueirab2c15ea2005-11-08 21:37:14 -0800431 * ALSA PCM preparation
432 *
433 * - One of the ALSA capture callbacks.
434 *
435 * Called right after the capture device is opened, this function configures
436 * the buffer using the previously defined functions, allocates the memory,
437 * sets up the hardware registers, and then starts the DMA. When this function
438 * returns, the audio should be flowing.
439 *
440 */
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800441
Takashi Iwaif7cbb7f2006-01-13 18:48:06 +0100442static int snd_card_saa7134_capture_prepare(struct snd_pcm_substream * substream)
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800443{
Takashi Iwaif7cbb7f2006-01-13 18:48:06 +0100444 struct snd_pcm_runtime *runtime = substream->runtime;
Ricardo Cerqueirad5ee43a2005-11-13 16:08:10 -0800445 int bswap, sign;
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800446 u32 fmt, control;
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800447 snd_card_saa7134_t *saa7134 = snd_pcm_substream_chip(substream);
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800448 struct saa7134_dev *dev;
Ricardo Cerqueira4aabf632005-11-13 16:08:00 -0800449 snd_card_saa7134_pcm_t *pcm = runtime->private_data;
Nickolay V. Shmyrev5f7591c2005-11-08 21:37:04 -0800450
Ricardo Cerqueira4aabf632005-11-13 16:08:00 -0800451 pcm->dev->dmasound.substream = substream;
Nickolay V. Shmyrev5f7591c2005-11-08 21:37:04 -0800452
Ricardo Cerqueirad5ee43a2005-11-13 16:08:10 -0800453 dev = saa7134->dev;
Nickolay V. Shmyrev5f7591c2005-11-08 21:37:04 -0800454
Ricardo Cerqueirad5ee43a2005-11-13 16:08:10 -0800455 if (snd_pcm_format_width(runtime->format) == 8)
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800456 fmt = 0x00;
Ricardo Cerqueirad5ee43a2005-11-13 16:08:10 -0800457 else
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800458 fmt = 0x01;
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800459
Ricardo Cerqueirad5ee43a2005-11-13 16:08:10 -0800460 if (snd_pcm_format_signed(runtime->format))
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800461 sign = 1;
Ricardo Cerqueirad5ee43a2005-11-13 16:08:10 -0800462 else
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800463 sign = 0;
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800464
Ricardo Cerqueirad5ee43a2005-11-13 16:08:10 -0800465 if (snd_pcm_format_big_endian(runtime->format))
466 bswap = 1;
467 else
468 bswap = 0;
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800469
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800470 switch (dev->pci->device) {
471 case PCI_DEVICE_ID_PHILIPS_SAA7134:
472 if (1 == runtime->channels)
473 fmt |= (1 << 3);
474 if (2 == runtime->channels)
475 fmt |= (3 << 3);
476 if (sign)
477 fmt |= 0x04;
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800478
Ricardo Cerqueirab54134b2005-11-08 21:38:54 -0800479 fmt |= (MIXER_ADDR_TVTUNER == dev->dmasound.input) ? 0xc0 : 0x80;
480 saa_writeb(SAA7134_NUM_SAMPLES0, ((dev->dmasound.blksize - 1) & 0x0000ff));
481 saa_writeb(SAA7134_NUM_SAMPLES1, ((dev->dmasound.blksize - 1) & 0x00ff00) >> 8);
482 saa_writeb(SAA7134_NUM_SAMPLES2, ((dev->dmasound.blksize - 1) & 0xff0000) >> 16);
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800483 saa_writeb(SAA7134_AUDIO_FORMAT_CTRL, fmt);
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800484
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800485 break;
486 case PCI_DEVICE_ID_PHILIPS_SAA7133:
487 case PCI_DEVICE_ID_PHILIPS_SAA7135:
488 if (1 == runtime->channels)
489 fmt |= (1 << 4);
490 if (2 == runtime->channels)
491 fmt |= (2 << 4);
492 if (!sign)
493 fmt |= 0x04;
Ricardo Cerqueirab54134b2005-11-08 21:38:54 -0800494 saa_writel(SAA7133_NUM_SAMPLES, dev->dmasound.blksize -1);
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800495 saa_writel(SAA7133_AUDIO_CHANNEL, 0x543210 | (fmt << 24));
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800496 break;
497 }
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800498
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800499 dprintk("rec_start: afmt=%d ch=%d => fmt=0x%x swap=%c\n",
500 runtime->format, runtime->channels, fmt,
501 bswap ? 'b' : '-');
502 /* dma: setup channel 6 (= AUDIO) */
503 control = SAA7134_RS_CONTROL_BURST_16 |
504 SAA7134_RS_CONTROL_ME |
Ricardo Cerqueirab54134b2005-11-08 21:38:54 -0800505 (dev->dmasound.pt.dma >> 12);
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800506 if (bswap)
507 control |= SAA7134_RS_CONTROL_BSWAP;
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800508
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800509 saa_writel(SAA7134_RS_BA1(6),0);
Ricardo Cerqueirab54134b2005-11-08 21:38:54 -0800510 saa_writel(SAA7134_RS_BA2(6),dev->dmasound.blksize);
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800511 saa_writel(SAA7134_RS_PITCH(6),0);
512 saa_writel(SAA7134_RS_CONTROL(6),control);
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800513
Ricardo Cerqueirab54134b2005-11-08 21:38:54 -0800514 dev->dmasound.rate = runtime->rate;
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800515
Oldřich Jedlička736dada2009-08-22 15:13:51 -0300516 /* Setup and update the card/ALSA controls */
517 snd_saa7134_capsrc_set(saa7134->capture_ctl[dev->dmasound.input], 1, 1,
518 true);
519
Nickolay V. Shmyrev5f7591c2005-11-08 21:37:04 -0800520 return 0;
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800521
Nickolay V. Shmyrev5f7591c2005-11-08 21:37:04 -0800522}
523
Ricardo Cerqueirab2c15ea2005-11-08 21:37:14 -0800524/*
525 * ALSA pointer fetching
526 *
527 * - One of the ALSA capture callbacks.
528 *
529 * Called whenever a period elapses, it must return the current hardware
530 * position of the buffer.
531 * Also resets the read counter used to prevent overruns
532 *
533 */
Nickolay V. Shmyrev5f7591c2005-11-08 21:37:04 -0800534
Takashi Iwaif7cbb7f2006-01-13 18:48:06 +0100535static snd_pcm_uframes_t
536snd_card_saa7134_capture_pointer(struct snd_pcm_substream * substream)
Nickolay V. Shmyrev5f7591c2005-11-08 21:37:04 -0800537{
Takashi Iwaif7cbb7f2006-01-13 18:48:06 +0100538 struct snd_pcm_runtime *runtime = substream->runtime;
Ricardo Cerqueira4aabf632005-11-13 16:08:00 -0800539 snd_card_saa7134_pcm_t *pcm = runtime->private_data;
540 struct saa7134_dev *dev=pcm->dev;
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800541
Ricardo Cerqueirab54134b2005-11-08 21:38:54 -0800542 if (dev->dmasound.read_count) {
543 dev->dmasound.read_count -= snd_pcm_lib_period_bytes(substream);
544 dev->dmasound.read_offset += snd_pcm_lib_period_bytes(substream);
545 if (dev->dmasound.read_offset == dev->dmasound.bufsize)
546 dev->dmasound.read_offset = 0;
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800547 }
548
Ricardo Cerqueirab54134b2005-11-08 21:38:54 -0800549 return bytes_to_frames(runtime, dev->dmasound.read_offset);
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800550}
551
Ricardo Cerqueirab2c15ea2005-11-08 21:37:14 -0800552/*
553 * ALSA hardware capabilities definition
Oldřich Jedlička7b543602009-08-18 16:24:54 -0300554 *
555 * Report only 32kHz for ALSA:
556 *
557 * - SAA7133/35 uses DDEP (DemDec Easy Programming mode), which works in 32kHz
558 * only
559 * - SAA7134 for TV mode uses DemDec mode (32kHz)
560 * - Radio works in 32kHz only
561 * - When recording 48kHz from Line1/Line2, switching of capture source to TV
562 * means
563 * switching to 32kHz without any frequency translation
Ricardo Cerqueirab2c15ea2005-11-08 21:37:14 -0800564 */
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800565
Takashi Iwaif7cbb7f2006-01-13 18:48:06 +0100566static struct snd_pcm_hardware snd_card_saa7134_capture =
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800567{
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800568 .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
Mauro Carvalho Chehabf2421ca2005-11-08 21:37:45 -0800569 SNDRV_PCM_INFO_BLOCK_TRANSFER |
570 SNDRV_PCM_INFO_MMAP_VALID),
Ricardo Cerqueirab54134b2005-11-08 21:38:54 -0800571 .formats = SNDRV_PCM_FMTBIT_S16_LE | \
572 SNDRV_PCM_FMTBIT_S16_BE | \
573 SNDRV_PCM_FMTBIT_S8 | \
574 SNDRV_PCM_FMTBIT_U8 | \
575 SNDRV_PCM_FMTBIT_U16_LE | \
576 SNDRV_PCM_FMTBIT_U16_BE,
Oldřich Jedlička7b543602009-08-18 16:24:54 -0300577 .rates = SNDRV_PCM_RATE_32000,
Ricardo Cerqueirab54134b2005-11-08 21:38:54 -0800578 .rate_min = 32000,
Oldřich Jedlička7b543602009-08-18 16:24:54 -0300579 .rate_max = 32000,
Ricardo Cerqueirab54134b2005-11-08 21:38:54 -0800580 .channels_min = 1,
581 .channels_max = 2,
582 .buffer_bytes_max = (256*1024),
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800583 .period_bytes_min = 64,
Ricardo Cerqueirab54134b2005-11-08 21:38:54 -0800584 .period_bytes_max = (256*1024),
Heikki Lindholm174eb8e2007-11-23 18:59:18 -0300585 .periods_min = 4,
Ricardo Cerqueirab54134b2005-11-08 21:38:54 -0800586 .periods_max = 1024,
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800587};
588
Takashi Iwaif7cbb7f2006-01-13 18:48:06 +0100589static void snd_card_saa7134_runtime_free(struct snd_pcm_runtime *runtime)
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800590{
Ricardo Cerqueira4aabf632005-11-13 16:08:00 -0800591 snd_card_saa7134_pcm_t *pcm = runtime->private_data;
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800592
Ricardo Cerqueira4aabf632005-11-13 16:08:00 -0800593 kfree(pcm);
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800594}
595
596
Ricardo Cerqueirab2c15ea2005-11-08 21:37:14 -0800597/*
598 * ALSA hardware params
599 *
600 * - One of the ALSA capture callbacks.
601 *
602 * Called on initialization, right before the PCM preparation
Ricardo Cerqueirab2c15ea2005-11-08 21:37:14 -0800603 *
604 */
605
Takashi Iwaif7cbb7f2006-01-13 18:48:06 +0100606static int snd_card_saa7134_hw_params(struct snd_pcm_substream * substream,
607 struct snd_pcm_hw_params * hw_params)
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800608{
Ricardo Cerqueirad5ee43a2005-11-13 16:08:10 -0800609 snd_card_saa7134_t *saa7134 = snd_pcm_substream_chip(substream);
610 struct saa7134_dev *dev;
611 unsigned int period_size, periods;
612 int err;
613
614 period_size = params_period_bytes(hw_params);
615 periods = params_periods(hw_params);
616
Takashi Iwai5e246b82008-08-08 17:12:47 +0200617 if (period_size < 0x100 || period_size > 0x10000)
618 return -EINVAL;
619 if (periods < 4)
620 return -EINVAL;
621 if (period_size * periods > 1024 * 1024)
622 return -EINVAL;
Ricardo Cerqueirad5ee43a2005-11-13 16:08:10 -0800623
624 dev = saa7134->dev;
625
626 if (dev->dmasound.blocks == periods &&
627 dev->dmasound.blksize == period_size)
628 return 0;
629
630 /* release the old buffer */
631 if (substream->runtime->dma_area) {
632 saa7134_pgtable_free(dev->pci, &dev->dmasound.pt);
Laurent Pinchart95268402010-05-11 10:36:30 -0300633 videobuf_dma_unmap(&dev->pci->dev, &dev->dmasound.dma);
Ricardo Cerqueirad5ee43a2005-11-13 16:08:10 -0800634 dsp_buffer_free(dev);
635 substream->runtime->dma_area = NULL;
636 }
637 dev->dmasound.blocks = periods;
638 dev->dmasound.blksize = period_size;
639 dev->dmasound.bufsize = period_size * periods;
640
641 err = dsp_buffer_init(dev);
642 if (0 != err) {
643 dev->dmasound.blocks = 0;
644 dev->dmasound.blksize = 0;
645 dev->dmasound.bufsize = 0;
646 return err;
647 }
648
Laurent Pinchart95268402010-05-11 10:36:30 -0300649 if (0 != (err = videobuf_dma_map(&dev->pci->dev, &dev->dmasound.dma))) {
Ricardo Cerqueirad5ee43a2005-11-13 16:08:10 -0800650 dsp_buffer_free(dev);
651 return err;
652 }
653 if (0 != (err = saa7134_pgtable_alloc(dev->pci,&dev->dmasound.pt))) {
Laurent Pinchart95268402010-05-11 10:36:30 -0300654 videobuf_dma_unmap(&dev->pci->dev, &dev->dmasound.dma);
Ricardo Cerqueirad5ee43a2005-11-13 16:08:10 -0800655 dsp_buffer_free(dev);
656 return err;
657 }
658 if (0 != (err = saa7134_pgtable_build(dev->pci,&dev->dmasound.pt,
659 dev->dmasound.dma.sglist,
660 dev->dmasound.dma.sglen,
661 0))) {
662 saa7134_pgtable_free(dev->pci, &dev->dmasound.pt);
Laurent Pinchart95268402010-05-11 10:36:30 -0300663 videobuf_dma_unmap(&dev->pci->dev, &dev->dmasound.dma);
Ricardo Cerqueirad5ee43a2005-11-13 16:08:10 -0800664 dsp_buffer_free(dev);
665 return err;
666 }
667
668 /* I should be able to use runtime->dma_addr in the control
669 byte, but it doesn't work. So I allocate the DMA using the
670 V4L functions, and force ALSA to use that as the DMA area */
671
Laurent Pinchartbb6dbe72010-05-11 10:36:34 -0300672 substream->runtime->dma_area = dev->dmasound.dma.vaddr;
Alexander E. Patrakov32d111a2007-10-31 11:40:09 -0300673 substream->runtime->dma_bytes = dev->dmasound.bufsize;
674 substream->runtime->dma_addr = 0;
Ricardo Cerqueirad5ee43a2005-11-13 16:08:10 -0800675
Alexander E. Patrakov32d111a2007-10-31 11:40:09 -0300676 return 0;
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800677
Nickolay V. Shmyrev5f7591c2005-11-08 21:37:04 -0800678}
679
Ricardo Cerqueirab2c15ea2005-11-08 21:37:14 -0800680/*
681 * ALSA hardware release
682 *
683 * - One of the ALSA capture callbacks.
684 *
685 * Called after closing the device, but before snd_card_saa7134_capture_close
Ricardo Cerqueirad5ee43a2005-11-13 16:08:10 -0800686 * It stops the DMA audio and releases the buffers.
Ricardo Cerqueirab2c15ea2005-11-08 21:37:14 -0800687 *
688 */
689
Takashi Iwaif7cbb7f2006-01-13 18:48:06 +0100690static int snd_card_saa7134_hw_free(struct snd_pcm_substream * substream)
Nickolay V. Shmyrev5f7591c2005-11-08 21:37:04 -0800691{
Ricardo Cerqueirad5ee43a2005-11-13 16:08:10 -0800692 snd_card_saa7134_t *saa7134 = snd_pcm_substream_chip(substream);
693 struct saa7134_dev *dev;
Nickolay V. Shmyrev5f7591c2005-11-08 21:37:04 -0800694
Ricardo Cerqueirad5ee43a2005-11-13 16:08:10 -0800695 dev = saa7134->dev;
Ricardo Cerqueirab2c15ea2005-11-08 21:37:14 -0800696
Ricardo Cerqueirad5ee43a2005-11-13 16:08:10 -0800697 if (substream->runtime->dma_area) {
698 saa7134_pgtable_free(dev->pci, &dev->dmasound.pt);
Laurent Pinchart95268402010-05-11 10:36:30 -0300699 videobuf_dma_unmap(&dev->pci->dev, &dev->dmasound.dma);
Ricardo Cerqueirad5ee43a2005-11-13 16:08:10 -0800700 dsp_buffer_free(dev);
701 substream->runtime->dma_area = NULL;
702 }
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800703
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800704 return 0;
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800705}
706
Ricardo Cerqueirab2c15ea2005-11-08 21:37:14 -0800707/*
708 * ALSA capture finish
709 *
710 * - One of the ALSA capture callbacks.
711 *
Ricardo Cerqueirad5ee43a2005-11-13 16:08:10 -0800712 * Called after closing the device.
Ricardo Cerqueirab2c15ea2005-11-08 21:37:14 -0800713 *
714 */
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800715
Takashi Iwaif7cbb7f2006-01-13 18:48:06 +0100716static int snd_card_saa7134_capture_close(struct snd_pcm_substream * substream)
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800717{
Ricardo Cerqueiradafcaaf2006-09-06 06:25:38 -0300718 snd_card_saa7134_t *saa7134 = snd_pcm_substream_chip(substream);
719 struct saa7134_dev *dev = saa7134->dev;
720
Rafał Bilskiaac0ca62007-06-20 05:36:26 -0300721 if (saa7134->mute_was_on) {
722 dev->ctl_mute = 1;
723 saa7134_tvaudio_setmute(dev);
724 }
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800725 return 0;
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800726}
727
Ricardo Cerqueirab2c15ea2005-11-08 21:37:14 -0800728/*
729 * ALSA capture start
730 *
731 * - One of the ALSA capture callbacks.
732 *
733 * Called when opening the device. It creates and populates the PCM
734 * structure
735 *
736 */
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800737
Takashi Iwaif7cbb7f2006-01-13 18:48:06 +0100738static int snd_card_saa7134_capture_open(struct snd_pcm_substream * substream)
Ricardo Cerqueirab2c15ea2005-11-08 21:37:14 -0800739{
Takashi Iwaif7cbb7f2006-01-13 18:48:06 +0100740 struct snd_pcm_runtime *runtime = substream->runtime;
Ricardo Cerqueira4aabf632005-11-13 16:08:00 -0800741 snd_card_saa7134_pcm_t *pcm;
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800742 snd_card_saa7134_t *saa7134 = snd_pcm_substream_chip(substream);
Mauro Carvalho Chehab83ee87a2008-06-14 09:41:18 -0300743 struct saa7134_dev *dev;
Hartmut Hackmann5cfbacd2006-11-21 19:59:27 -0300744 int amux, err;
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800745
Mauro Carvalho Chehab83ee87a2008-06-14 09:41:18 -0300746 if (!saa7134) {
747 printk(KERN_ERR "BUG: saa7134 can't find device struct."
748 " Can't proceed with open\n");
749 return -ENODEV;
750 }
751 dev = saa7134->dev;
Ingo Molnar3593cab2006-02-07 06:49:14 -0200752 mutex_lock(&dev->dmasound.lock);
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800753
Ricardo Cerqueirab54134b2005-11-08 21:38:54 -0800754 dev->dmasound.read_count = 0;
755 dev->dmasound.read_offset = 0;
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800756
Hartmut Hackmann5cfbacd2006-11-21 19:59:27 -0300757 amux = dev->input->amux;
758 if ((amux < 1) || (amux > 3))
759 amux = 1;
760 dev->dmasound.input = amux - 1;
761
Ingo Molnar3593cab2006-02-07 06:49:14 -0200762 mutex_unlock(&dev->dmasound.lock);
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800763
Ricardo Cerqueira4aabf632005-11-13 16:08:00 -0800764 pcm = kzalloc(sizeof(*pcm), GFP_KERNEL);
765 if (pcm == NULL)
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800766 return -ENOMEM;
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800767
Ricardo Cerqueira4aabf632005-11-13 16:08:00 -0800768 pcm->dev=saa7134->dev;
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800769
Ricardo Cerqueira4aabf632005-11-13 16:08:00 -0800770 spin_lock_init(&pcm->lock);
771
772 pcm->substream = substream;
773 runtime->private_data = pcm;
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800774 runtime->private_free = snd_card_saa7134_runtime_free;
775 runtime->hw = snd_card_saa7134_capture;
776
Rafał Bilskiaac0ca62007-06-20 05:36:26 -0300777 if (dev->ctl_mute != 0) {
778 saa7134->mute_was_on = 1;
779 dev->ctl_mute = 0;
780 saa7134_tvaudio_setmute(dev);
781 }
Ricardo Cerqueiradafcaaf2006-09-06 06:25:38 -0300782
Heikki Lindholm174eb8e2007-11-23 18:59:18 -0300783 err = snd_pcm_hw_constraint_integer(runtime,
784 SNDRV_PCM_HW_PARAM_PERIODS);
785 if (err < 0)
786 return err;
787
788 err = snd_pcm_hw_constraint_step(runtime, 0,
789 SNDRV_PCM_HW_PARAM_PERIODS, 2);
790 if (err < 0)
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800791 return err;
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800792
793 return 0;
794}
795
Ricardo Cerqueirab2c15ea2005-11-08 21:37:14 -0800796/*
Alexander E. Patrakov32d111a2007-10-31 11:40:09 -0300797 * page callback (needed for mmap)
798 */
799
800static struct page *snd_card_saa7134_page(struct snd_pcm_substream *substream,
801 unsigned long offset)
802{
803 void *pageptr = substream->runtime->dma_area + offset;
804 return vmalloc_to_page(pageptr);
805}
806
807/*
Ricardo Cerqueirab2c15ea2005-11-08 21:37:14 -0800808 * ALSA capture callbacks definition
809 */
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800810
Takashi Iwaif7cbb7f2006-01-13 18:48:06 +0100811static struct snd_pcm_ops snd_card_saa7134_capture_ops = {
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800812 .open = snd_card_saa7134_capture_open,
813 .close = snd_card_saa7134_capture_close,
814 .ioctl = snd_pcm_lib_ioctl,
815 .hw_params = snd_card_saa7134_hw_params,
816 .hw_free = snd_card_saa7134_hw_free,
817 .prepare = snd_card_saa7134_capture_prepare,
818 .trigger = snd_card_saa7134_capture_trigger,
819 .pointer = snd_card_saa7134_capture_pointer,
Alexander E. Patrakov32d111a2007-10-31 11:40:09 -0300820 .page = snd_card_saa7134_page,
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800821};
822
Ricardo Cerqueirab2c15ea2005-11-08 21:37:14 -0800823/*
824 * ALSA PCM setup
825 *
826 * Called when initializing the board. Sets up the name and hooks up
827 * the callbacks
828 *
829 */
830
831static int snd_card_saa7134_pcm(snd_card_saa7134_t *saa7134, int device)
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800832{
Takashi Iwaif7cbb7f2006-01-13 18:48:06 +0100833 struct snd_pcm *pcm;
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800834 int err;
Nickolay V. Shmyrev5f7591c2005-11-08 21:37:04 -0800835
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800836 if ((err = snd_pcm_new(saa7134->card, "SAA7134 PCM", device, 0, 1, &pcm)) < 0)
Nickolay V. Shmyrev5f7591c2005-11-08 21:37:04 -0800837 return err;
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800838 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_card_saa7134_capture_ops);
839 pcm->private_data = saa7134;
840 pcm->info_flags = 0;
841 strcpy(pcm->name, "SAA7134 PCM");
Nickolay V. Shmyrev5f7591c2005-11-08 21:37:04 -0800842 return 0;
843}
844
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800845#define SAA713x_VOLUME(xname, xindex, addr) \
846{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \
847 .info = snd_saa7134_volume_info, \
848 .get = snd_saa7134_volume_get, .put = snd_saa7134_volume_put, \
849 .private_value = addr }
Nickolay V. Shmyrev5f7591c2005-11-08 21:37:04 -0800850
Takashi Iwaif7cbb7f2006-01-13 18:48:06 +0100851static int snd_saa7134_volume_info(struct snd_kcontrol * kcontrol,
852 struct snd_ctl_elem_info * uinfo)
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800853{
854 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
855 uinfo->count = 2;
856 uinfo->value.integer.min = 0;
857 uinfo->value.integer.max = 20;
Nickolay V. Shmyrev5f7591c2005-11-08 21:37:04 -0800858 return 0;
859}
860
Takashi Iwaif7cbb7f2006-01-13 18:48:06 +0100861static int snd_saa7134_volume_get(struct snd_kcontrol * kcontrol,
862 struct snd_ctl_elem_value * ucontrol)
Nickolay V. Shmyrev5f7591c2005-11-08 21:37:04 -0800863{
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800864 snd_card_saa7134_t *chip = snd_kcontrol_chip(kcontrol);
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800865 int addr = kcontrol->private_value;
Nickolay V. Shmyrev5f7591c2005-11-08 21:37:04 -0800866
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800867 ucontrol->value.integer.value[0] = chip->mixer_volume[addr][0];
868 ucontrol->value.integer.value[1] = chip->mixer_volume[addr][1];
Nickolay V. Shmyrev5f7591c2005-11-08 21:37:04 -0800869 return 0;
870}
871
Takashi Iwaif7cbb7f2006-01-13 18:48:06 +0100872static int snd_saa7134_volume_put(struct snd_kcontrol * kcontrol,
873 struct snd_ctl_elem_value * ucontrol)
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800874{
875 snd_card_saa7134_t *chip = snd_kcontrol_chip(kcontrol);
Hartmut Hackmann5cfbacd2006-11-21 19:59:27 -0300876 struct saa7134_dev *dev = chip->dev;
877
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800878 int change, addr = kcontrol->private_value;
879 int left, right;
880
881 left = ucontrol->value.integer.value[0];
882 if (left < 0)
883 left = 0;
884 if (left > 20)
885 left = 20;
886 right = ucontrol->value.integer.value[1];
887 if (right < 0)
888 right = 0;
889 if (right > 20)
890 right = 20;
Ricardo Cerqueirad5ee43a2005-11-13 16:08:10 -0800891 spin_lock_irq(&chip->mixer_lock);
Hartmut Hackmann5cfbacd2006-11-21 19:59:27 -0300892 change = 0;
893 if (chip->mixer_volume[addr][0] != left) {
894 change = 1;
895 right = left;
896 }
897 if (chip->mixer_volume[addr][1] != right) {
898 change = 1;
899 left = right;
900 }
901 if (change) {
902 switch (dev->pci->device) {
903 case PCI_DEVICE_ID_PHILIPS_SAA7134:
904 switch (addr) {
905 case MIXER_ADDR_TVTUNER:
906 left = 20;
907 break;
908 case MIXER_ADDR_LINE1:
909 saa_andorb(SAA7134_ANALOG_IO_SELECT, 0x10,
910 (left > 10) ? 0x00 : 0x10);
911 break;
912 case MIXER_ADDR_LINE2:
913 saa_andorb(SAA7134_ANALOG_IO_SELECT, 0x20,
914 (left > 10) ? 0x00 : 0x20);
915 break;
916 }
917 break;
918 case PCI_DEVICE_ID_PHILIPS_SAA7133:
919 case PCI_DEVICE_ID_PHILIPS_SAA7135:
920 switch (addr) {
921 case MIXER_ADDR_TVTUNER:
922 left = 20;
923 break;
924 case MIXER_ADDR_LINE1:
925 saa_andorb(0x0594, 0x10,
926 (left > 10) ? 0x00 : 0x10);
927 break;
928 case MIXER_ADDR_LINE2:
929 saa_andorb(0x0594, 0x20,
930 (left > 10) ? 0x00 : 0x20);
931 break;
932 }
933 break;
934 }
935 chip->mixer_volume[addr][0] = left;
936 chip->mixer_volume[addr][1] = right;
937 }
Ricardo Cerqueirad5ee43a2005-11-13 16:08:10 -0800938 spin_unlock_irq(&chip->mixer_lock);
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800939 return change;
940}
941
942#define SAA713x_CAPSRC(xname, xindex, addr) \
943{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \
944 .info = snd_saa7134_capsrc_info, \
945 .get = snd_saa7134_capsrc_get, .put = snd_saa7134_capsrc_put, \
946 .private_value = addr }
947
Takashi Iwaif7cbb7f2006-01-13 18:48:06 +0100948static int snd_saa7134_capsrc_info(struct snd_kcontrol * kcontrol,
949 struct snd_ctl_elem_info * uinfo)
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800950{
951 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
Ricardo Cerqueirab2c15ea2005-11-08 21:37:14 -0800952 uinfo->count = 2;
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800953 uinfo->value.integer.min = 0;
954 uinfo->value.integer.max = 1;
955 return 0;
956}
957
Takashi Iwaif7cbb7f2006-01-13 18:48:06 +0100958static int snd_saa7134_capsrc_get(struct snd_kcontrol * kcontrol,
959 struct snd_ctl_elem_value * ucontrol)
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800960{
961 snd_card_saa7134_t *chip = snd_kcontrol_chip(kcontrol);
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800962 int addr = kcontrol->private_value;
963
Ricardo Cerqueirad5ee43a2005-11-13 16:08:10 -0800964 spin_lock_irq(&chip->mixer_lock);
Oldřich Jedlička736dada2009-08-22 15:13:51 -0300965 if (chip->capture_source_addr == addr) {
966 ucontrol->value.integer.value[0] = chip->capture_source[0];
967 ucontrol->value.integer.value[1] = chip->capture_source[1];
968 } else {
969 ucontrol->value.integer.value[0] = 0;
970 ucontrol->value.integer.value[1] = 0;
971 }
Ricardo Cerqueirad5ee43a2005-11-13 16:08:10 -0800972 spin_unlock_irq(&chip->mixer_lock);
Ricardo Cerqueira4aabf632005-11-13 16:08:00 -0800973
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800974 return 0;
975}
976
Takashi Iwaif7cbb7f2006-01-13 18:48:06 +0100977static int snd_saa7134_capsrc_put(struct snd_kcontrol * kcontrol,
978 struct snd_ctl_elem_value * ucontrol)
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800979{
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800980 int left, right;
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800981 left = ucontrol->value.integer.value[0] & 1;
982 right = ucontrol->value.integer.value[1] & 1;
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800983
Oldřich Jedlička736dada2009-08-22 15:13:51 -0300984 return snd_saa7134_capsrc_set(kcontrol, left, right, false);
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800985}
986
Oldřich Jedlička736dada2009-08-22 15:13:51 -0300987static struct snd_kcontrol_new snd_saa7134_volume_controls[] = {
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800988SAA713x_VOLUME("Video Volume", 0, MIXER_ADDR_TVTUNER),
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800989SAA713x_VOLUME("Line Volume", 1, MIXER_ADDR_LINE1),
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800990SAA713x_VOLUME("Line Volume", 2, MIXER_ADDR_LINE2),
Oldřich Jedlička736dada2009-08-22 15:13:51 -0300991};
992
993static struct snd_kcontrol_new snd_saa7134_capture_controls[] = {
994SAA713x_CAPSRC("Video Capture Switch", 0, MIXER_ADDR_TVTUNER),
995SAA713x_CAPSRC("Line Capture Switch", 1, MIXER_ADDR_LINE1),
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -0800996SAA713x_CAPSRC("Line Capture Switch", 2, MIXER_ADDR_LINE2),
Nickolay V. Shmyrev5f7591c2005-11-08 21:37:04 -0800997};
998
Ricardo Cerqueirab2c15ea2005-11-08 21:37:14 -0800999/*
1000 * ALSA mixer setup
1001 *
1002 * Called when initializing the board. Sets up the name and hooks up
1003 * the callbacks
1004 *
1005 */
1006
1007static int snd_card_saa7134_new_mixer(snd_card_saa7134_t * chip)
Nickolay V. Shmyrev5f7591c2005-11-08 21:37:04 -08001008{
Takashi Iwaif7cbb7f2006-01-13 18:48:06 +01001009 struct snd_card *card = chip->card;
Oldřich Jedlička736dada2009-08-22 15:13:51 -03001010 struct snd_kcontrol *kcontrol;
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -08001011 unsigned int idx;
Oldřich Jedlička736dada2009-08-22 15:13:51 -03001012 int err, addr;
Nickolay V. Shmyrev5f7591c2005-11-08 21:37:04 -08001013
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -08001014 strcpy(card->mixername, "SAA7134 Mixer");
Nickolay V. Shmyrev5f7591c2005-11-08 21:37:04 -08001015
Oldřich Jedlička736dada2009-08-22 15:13:51 -03001016 for (idx = 0; idx < ARRAY_SIZE(snd_saa7134_volume_controls); idx++) {
1017 kcontrol = snd_ctl_new1(&snd_saa7134_volume_controls[idx],
1018 chip);
1019 err = snd_ctl_add(card, kcontrol);
1020 if (err < 0)
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -08001021 return err;
1022 }
Oldřich Jedlička736dada2009-08-22 15:13:51 -03001023
1024 for (idx = 0; idx < ARRAY_SIZE(snd_saa7134_capture_controls); idx++) {
1025 kcontrol = snd_ctl_new1(&snd_saa7134_capture_controls[idx],
1026 chip);
1027 addr = snd_saa7134_capture_controls[idx].private_value;
1028 chip->capture_ctl[addr] = kcontrol;
1029 err = snd_ctl_add(card, kcontrol);
1030 if (err < 0)
1031 return err;
1032 }
1033
1034 chip->capture_source_addr = MIXER_ADDR_UNSELECTED;
Nickolay V. Shmyrev5f7591c2005-11-08 21:37:04 -08001035 return 0;
1036}
1037
Takashi Iwaif7cbb7f2006-01-13 18:48:06 +01001038static void snd_saa7134_free(struct snd_card * card)
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -08001039{
Ricardo Cerqueirad5ee43a2005-11-13 16:08:10 -08001040 snd_card_saa7134_t *chip = card->private_data;
Ricardo Cerqueirac817e762005-11-13 16:07:47 -08001041
Ricardo Cerqueira4aabf632005-11-13 16:08:00 -08001042 if (chip->dev->dmasound.priv_data == NULL)
Ricardo Cerqueirad5ee43a2005-11-13 16:08:10 -08001043 return;
Ricardo Cerqueira4aabf632005-11-13 16:08:00 -08001044
Jeff Garzikf000fd82008-04-22 13:50:34 +02001045 if (chip->irq >= 0)
Ricardo Cerqueira4aabf632005-11-13 16:08:00 -08001046 free_irq(chip->irq, &chip->dev->dmasound);
Ricardo Cerqueirac817e762005-11-13 16:07:47 -08001047
Ricardo Cerqueira4aabf632005-11-13 16:08:00 -08001048 chip->dev->dmasound.priv_data = NULL;
1049
Nickolay V. Shmyrev5f7591c2005-11-08 21:37:04 -08001050}
1051
Ricardo Cerqueirab2c15ea2005-11-08 21:37:14 -08001052/*
1053 * ALSA initialization
1054 *
Ricardo Cerqueirac817e762005-11-13 16:07:47 -08001055 * Called by the init routine, once for each saa7134 device present,
1056 * it creates the basic structures and registers the ALSA devices
Ricardo Cerqueirab2c15ea2005-11-08 21:37:14 -08001057 *
1058 */
1059
Adrian Bunk943a4902005-12-01 00:51:35 -08001060static int alsa_card_saa7134_create(struct saa7134_dev *dev, int devnum)
Nickolay V. Shmyrev5f7591c2005-11-08 21:37:04 -08001061{
Ricardo Cerqueira79dd0c692005-11-08 21:38:53 -08001062
Takashi Iwaif7cbb7f2006-01-13 18:48:06 +01001063 struct snd_card *card;
Ricardo Cerqueirab2c15ea2005-11-08 21:37:14 -08001064 snd_card_saa7134_t *chip;
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -08001065 int err;
Nickolay V. Shmyrev5f7591c2005-11-08 21:37:04 -08001066
Ricardo Cerqueira79dd0c692005-11-08 21:38:53 -08001067
Ricardo Cerqueira4aabf632005-11-13 16:08:00 -08001068 if (devnum >= SNDRV_CARDS)
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08001069 return -ENODEV;
Ricardo Cerqueira4aabf632005-11-13 16:08:00 -08001070 if (!enable[devnum])
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -08001071 return -ENODEV;
Ricardo Cerqueirab2c15ea2005-11-08 21:37:14 -08001072
Takashi Iwai758021b2009-01-12 15:17:09 +01001073 err = snd_card_create(index[devnum], id[devnum], THIS_MODULE,
1074 sizeof(snd_card_saa7134_t), &card);
1075 if (err < 0)
1076 return err;
Nickolay V. Shmyrev5f7591c2005-11-08 21:37:04 -08001077
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -08001078 strcpy(card->driver, "SAA7134");
Nickolay V. Shmyrev5f7591c2005-11-08 21:37:04 -08001079
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -08001080 /* Card "creation" */
Ricardo Cerqueirab2c15ea2005-11-08 21:37:14 -08001081
Ricardo Cerqueirac817e762005-11-13 16:07:47 -08001082 card->private_free = snd_saa7134_free;
Joe Perchesabf84382010-07-12 17:50:03 -03001083 chip = card->private_data;
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -08001084
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08001085 spin_lock_init(&chip->lock);
Ricardo Cerqueirab54134b2005-11-08 21:38:54 -08001086 spin_lock_init(&chip->mixer_lock);
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -08001087
Ricardo Cerqueira4aabf632005-11-13 16:08:00 -08001088 chip->dev = dev;
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -08001089
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08001090 chip->card = card;
Ricardo Cerqueirab2c15ea2005-11-08 21:37:14 -08001091
Ricardo Cerqueira4aabf632005-11-13 16:08:00 -08001092 chip->pci = dev->pci;
Ricardo Cerqueira4aabf632005-11-13 16:08:00 -08001093 chip->iobase = pci_resource_start(dev->pci, 0);
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -08001094
Ricardo Cerqueira4aabf632005-11-13 16:08:00 -08001095
1096 err = request_irq(dev->pci->irq, saa7134_alsa_irq,
Thomas Gleixner8076fe32006-07-01 19:29:37 -07001097 IRQF_SHARED | IRQF_DISABLED, dev->name,
Ricardo Cerqueira4aabf632005-11-13 16:08:00 -08001098 (void*) &dev->dmasound);
Ricardo Cerqueira79dd0c692005-11-08 21:38:53 -08001099
1100 if (err < 0) {
1101 printk(KERN_ERR "%s: can't get IRQ %d for ALSA\n",
Ricardo Cerqueira4aabf632005-11-13 16:08:00 -08001102 dev->name, dev->pci->irq);
Ricardo Cerqueirab54134b2005-11-08 21:38:54 -08001103 goto __nodev;
Ricardo Cerqueira79dd0c692005-11-08 21:38:53 -08001104 }
1105
Ricardo Cerqueirad5ee43a2005-11-13 16:08:10 -08001106 chip->irq = dev->pci->irq;
Ricardo Cerqueira4aabf632005-11-13 16:08:00 -08001107
Ingo Molnar3593cab2006-02-07 06:49:14 -02001108 mutex_init(&dev->dmasound.lock);
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -08001109
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -08001110 if ((err = snd_card_saa7134_new_mixer(chip)) < 0)
1111 goto __nodev;
1112
1113 if ((err = snd_card_saa7134_pcm(chip, 0)) < 0)
1114 goto __nodev;
Ricardo Cerqueirab2c15ea2005-11-08 21:37:14 -08001115
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -08001116 snd_card_set_dev(card, &chip->pci->dev);
1117
1118 /* End of "creation" */
1119
1120 strcpy(card->shortname, "SAA7134");
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08001121 sprintf(card->longname, "%s at 0x%lx irq %d",
Ricardo Cerqueira4aabf632005-11-13 16:08:00 -08001122 chip->dev->name, chip->iobase, chip->irq);
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -08001123
Ricardo Cerqueiraf5b974c2005-12-01 00:51:20 -08001124 printk(KERN_INFO "%s/alsa: %s registered as card %d\n",dev->name,card->longname,index[devnum]);
1125
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -08001126 if ((err = snd_card_register(card)) == 0) {
Ricardo Cerqueira4aabf632005-11-13 16:08:00 -08001127 snd_saa7134_cards[devnum] = card;
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -08001128 return 0;
Nickolay V. Shmyrev5f7591c2005-11-08 21:37:04 -08001129 }
1130
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -08001131__nodev:
1132 snd_card_free(card);
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -08001133 return err;
1134}
Nickolay V. Shmyrev5f7591c2005-11-08 21:37:04 -08001135
Ricardo Cerqueiraf5b974c2005-12-01 00:51:20 -08001136
1137static int alsa_device_init(struct saa7134_dev *dev)
1138{
1139 dev->dmasound.priv_data = dev;
1140 alsa_card_saa7134_create(dev,dev->nr);
1141 return 1;
1142}
1143
1144static int alsa_device_exit(struct saa7134_dev *dev)
1145{
1146
1147 snd_card_free(snd_saa7134_cards[dev->nr]);
1148 snd_saa7134_cards[dev->nr] = NULL;
1149 return 1;
1150}
1151
Ricardo Cerqueira79dd0c692005-11-08 21:38:53 -08001152/*
1153 * Module initializer
1154 *
1155 * Loops through present saa7134 cards, and assigns an ALSA device
1156 * to each one
1157 *
1158 */
1159
1160static int saa7134_alsa_init(void)
1161{
Ricardo Cerqueira4aabf632005-11-13 16:08:00 -08001162 struct saa7134_dev *dev = NULL;
Ricardo Cerqueirac817e762005-11-13 16:07:47 -08001163 struct list_head *list;
Ricardo Cerqueira79dd0c692005-11-08 21:38:53 -08001164
Adrian Bunk166fb6b2007-11-21 19:55:52 -03001165 saa7134_dmasound_init = alsa_device_init;
1166 saa7134_dmasound_exit = alsa_device_exit;
Ricardo Cerqueira7bb95292005-12-20 18:26:26 -02001167
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -08001168 printk(KERN_INFO "saa7134 ALSA driver for DMA sound loaded\n");
Ricardo Cerqueirac817e762005-11-13 16:07:47 -08001169
1170 list_for_each(list,&saa7134_devlist) {
Ricardo Cerqueira4aabf632005-11-13 16:08:00 -08001171 dev = list_entry(list, struct saa7134_dev, devlist);
Mauro Carvalho Chehab40c41c82009-01-31 08:09:33 -03001172 if (dev->pci->device == PCI_DEVICE_ID_PHILIPS_SAA7130)
1173 printk(KERN_INFO "%s/alsa: %s doesn't support digital audio\n",
1174 dev->name, saa7134_boards[dev->board].name);
1175 else
1176 alsa_device_init(dev);
Ricardo Cerqueirac817e762005-11-13 16:07:47 -08001177 }
Ricardo Cerqueira79dd0c692005-11-08 21:38:53 -08001178
Ricardo Cerqueira4aabf632005-11-13 16:08:00 -08001179 if (dev == NULL)
Ricardo Cerqueira79dd0c692005-11-08 21:38:53 -08001180 printk(KERN_INFO "saa7134 ALSA: no saa7134 cards found\n");
1181
1182 return 0;
Mauro Carvalho Chehab674434c2005-12-12 00:37:28 -08001183
Ricardo Cerqueira79dd0c692005-11-08 21:38:53 -08001184}
1185
1186/*
1187 * Module destructor
1188 */
1189
Adrian Bunk943a4902005-12-01 00:51:35 -08001190static void saa7134_alsa_exit(void)
Ricardo Cerqueirabd15eba2005-11-08 21:37:11 -08001191{
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08001192 int idx;
Ricardo Cerqueirab54134b2005-11-08 21:38:54 -08001193
Ricardo Cerqueira79dd0c692005-11-08 21:38:53 -08001194 for (idx = 0; idx < SNDRV_CARDS; idx++) {
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08001195 snd_card_free(snd_saa7134_cards[idx]);
Nickolay V. Shmyrev5f7591c2005-11-08 21:37:04 -08001196 }
Ricardo Cerqueirab54134b2005-11-08 21:38:54 -08001197
Adrian Bunk78457012006-07-15 15:19:56 -03001198 saa7134_dmasound_init = NULL;
1199 saa7134_dmasound_exit = NULL;
Ricardo Cerqueira79dd0c692005-11-08 21:38:53 -08001200 printk(KERN_INFO "saa7134 ALSA driver for DMA sound unloaded\n");
Ricardo Cerqueirab54134b2005-11-08 21:38:54 -08001201
Ricardo Cerqueira79dd0c692005-11-08 21:38:53 -08001202 return;
Nickolay V. Shmyrev5f7591c2005-11-08 21:37:04 -08001203}
Ricardo Cerqueira79dd0c692005-11-08 21:38:53 -08001204
Linus Torvaldsc7ac6b42005-12-21 14:52:32 -08001205/* We initialize this late, to make sure the sound system is up and running */
1206late_initcall(saa7134_alsa_init);
Ricardo Cerqueira79dd0c692005-11-08 21:38:53 -08001207module_exit(saa7134_alsa_exit);
1208MODULE_LICENSE("GPL");
1209MODULE_AUTHOR("Ricardo Cerqueira");