blob: 00330985beec1f7ac0e07adb076904f98a35d51a [file] [log] [blame]
Takashi Iwai2c484df2005-06-30 18:54:04 +02001/*
2 * linux/sound/arm/pxa2xx-pcm.h -- ALSA PCM interface for the Intel PXA2xx chip
3 *
4 * Author: Nicolas Pitre
5 * Created: Nov 30, 2004
6 * Copyright: MontaVista Software, Inc.
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 */
12
Dmitry Baryshkova6d77312008-09-10 05:01:20 +040013struct pxa2xx_runtime_data {
14 int dma_ch;
Daniel Mackd65a1452013-08-12 10:42:39 +020015 struct snd_dmaengine_dai_dma_data *params;
Arnd Bergmannb4528142014-05-04 11:25:21 +080016 struct pxa_dma_desc *dma_desc_array;
Dmitry Baryshkova6d77312008-09-10 05:01:20 +040017 dma_addr_t dma_desc_array_phys;
Takashi Iwaid18f8372005-11-17 15:10:38 +010018};
Dmitry Baryshkova6d77312008-09-10 05:01:20 +040019
Takashi Iwaid18f8372005-11-17 15:10:38 +010020struct pxa2xx_pcm_client {
Daniel Mackd65a1452013-08-12 10:42:39 +020021 struct snd_dmaengine_dai_dma_data *playback_params;
22 struct snd_dmaengine_dai_dma_data *capture_params;
Takashi Iwaid18f8372005-11-17 15:10:38 +010023 int (*startup)(struct snd_pcm_substream *);
24 void (*shutdown)(struct snd_pcm_substream *);
25 int (*prepare)(struct snd_pcm_substream *);
26};
Takashi Iwai2c484df2005-06-30 18:54:04 +020027
Takashi Iwaid18f8372005-11-17 15:10:38 +010028extern int pxa2xx_pcm_new(struct snd_card *, struct pxa2xx_pcm_client *, struct snd_pcm **);
Takashi Iwai2c484df2005-06-30 18:54:04 +020029