psc.h 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /*
  2. * Au12x0/Au1550 PSC ALSA ASoC audio support.
  3. *
  4. * (c) 2007-2008 MSC Vertriebsges.m.b.H.,
  5. * Manuel Lauss <manuel.lauss@gmail.com>
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License version 2 as
  9. * published by the Free Software Foundation.
  10. *
  11. * NOTE: all of these drivers can only work with a SINGLE instance
  12. * of a PSC. Multiple independent audio devices are impossible
  13. * with ASoC v1.
  14. */
  15. #ifndef _AU1X_PCM_H
  16. #define _AU1X_PCM_H
  17. extern struct snd_ac97_bus_ops soc_ac97_ops;
  18. /* DBDMA helpers */
  19. extern struct platform_device *au1xpsc_pcm_add(struct platform_device *pdev);
  20. extern void au1xpsc_pcm_destroy(struct platform_device *dmapd);
  21. struct au1xpsc_audio_data {
  22. void __iomem *mmio;
  23. unsigned long cfg;
  24. unsigned long rate;
  25. unsigned long pm[2];
  26. struct mutex lock;
  27. struct platform_device *dmapd;
  28. };
  29. #define PCM_TX 0
  30. #define PCM_RX 1
  31. #define SUBSTREAM_TYPE(substream) \
  32. ((substream)->stream == SNDRV_PCM_STREAM_PLAYBACK ? PCM_TX : PCM_RX)
  33. /* easy access macros */
  34. #define PSC_CTRL(x) ((unsigned long)((x)->mmio) + PSC_CTRL_OFFSET)
  35. #define PSC_SEL(x) ((unsigned long)((x)->mmio) + PSC_SEL_OFFSET)
  36. #define I2S_STAT(x) ((unsigned long)((x)->mmio) + PSC_I2SSTAT_OFFSET)
  37. #define I2S_CFG(x) ((unsigned long)((x)->mmio) + PSC_I2SCFG_OFFSET)
  38. #define I2S_PCR(x) ((unsigned long)((x)->mmio) + PSC_I2SPCR_OFFSET)
  39. #define AC97_CFG(x) ((unsigned long)((x)->mmio) + PSC_AC97CFG_OFFSET)
  40. #define AC97_CDC(x) ((unsigned long)((x)->mmio) + PSC_AC97CDC_OFFSET)
  41. #define AC97_EVNT(x) ((unsigned long)((x)->mmio) + PSC_AC97EVNT_OFFSET)
  42. #define AC97_PCR(x) ((unsigned long)((x)->mmio) + PSC_AC97PCR_OFFSET)
  43. #define AC97_RST(x) ((unsigned long)((x)->mmio) + PSC_AC97RST_OFFSET)
  44. #define AC97_STAT(x) ((unsigned long)((x)->mmio) + PSC_AC97STAT_OFFSET)
  45. #endif