pxa2xx-pcm.h 828 B

123456789101112131415161718192021222324252627
  1. /*
  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. struct pxa2xx_runtime_data {
  13. int dma_ch;
  14. struct snd_dmaengine_dai_dma_data *params;
  15. };
  16. struct pxa2xx_pcm_client {
  17. struct snd_dmaengine_dai_dma_data *playback_params;
  18. struct snd_dmaengine_dai_dma_data *capture_params;
  19. int (*startup)(struct snd_pcm_substream *);
  20. void (*shutdown)(struct snd_pcm_substream *);
  21. int (*prepare)(struct snd_pcm_substream *);
  22. };
  23. extern int pxa2xx_pcm_new(struct snd_card *, struct pxa2xx_pcm_client *, struct snd_pcm **);