atmel-pcm.h 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. /*
  2. * at91-pcm.h - ALSA PCM interface for the Atmel AT91 SoC.
  3. *
  4. * Copyright (C) 2005 SAN People
  5. * Copyright (C) 2008 Atmel
  6. *
  7. * Authors: Sedji Gaouaou <sedji.gaouaou@atmel.com>
  8. *
  9. * Based on at91-pcm. by:
  10. * Frank Mandarino <fmandarino@endrelia.com>
  11. * Copyright 2006 Endrelia Technologies Inc.
  12. *
  13. * Based on pxa2xx-pcm.c by:
  14. *
  15. * Author: Nicolas Pitre
  16. * Created: Nov 30, 2004
  17. * Copyright: (C) 2004 MontaVista Software, Inc.
  18. *
  19. * This program is free software; you can redistribute it and/or modify
  20. * it under the terms of the GNU General Public License as published by
  21. * the Free Software Foundation; either version 2 of the License, or
  22. * (at your option) any later version.
  23. *
  24. * This program is distributed in the hope that it will be useful,
  25. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  26. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  27. * GNU General Public License for more details.
  28. *
  29. * You should have received a copy of the GNU General Public License
  30. * along with this program; if not, write to the Free Software
  31. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  32. */
  33. #ifndef _ATMEL_PCM_H
  34. #define _ATMEL_PCM_H
  35. #include <linux/atmel-ssc.h>
  36. #define ATMEL_SSC_DMABUF_SIZE (64 * 1024)
  37. /*
  38. * Registers and status bits that are required by the PCM driver.
  39. */
  40. struct atmel_pdc_regs {
  41. unsigned int xpr; /* PDC recv/trans pointer */
  42. unsigned int xcr; /* PDC recv/trans counter */
  43. unsigned int xnpr; /* PDC next recv/trans pointer */
  44. unsigned int xncr; /* PDC next recv/trans counter */
  45. unsigned int ptcr; /* PDC transfer control */
  46. };
  47. struct atmel_ssc_mask {
  48. u32 ssc_enable; /* SSC recv/trans enable */
  49. u32 ssc_disable; /* SSC recv/trans disable */
  50. u32 ssc_error; /* SSC error conditions */
  51. u32 ssc_endx; /* SSC ENDTX or ENDRX */
  52. u32 ssc_endbuf; /* SSC TXBUFE or RXBUFF */
  53. u32 pdc_enable; /* PDC recv/trans enable */
  54. u32 pdc_disable; /* PDC recv/trans disable */
  55. };
  56. /*
  57. * This structure, shared between the PCM driver and the interface,
  58. * contains all information required by the PCM driver to perform the
  59. * PDC DMA operation. All fields except dma_intr_handler() are initialized
  60. * by the interface. The dma_intr_handler() pointer is set by the PCM
  61. * driver and called by the interface SSC interrupt handler if it is
  62. * non-NULL.
  63. */
  64. struct atmel_pcm_dma_params {
  65. char *name; /* stream identifier */
  66. int pdc_xfer_size; /* PDC counter increment in bytes */
  67. struct ssc_device *ssc; /* SSC device for stream */
  68. struct atmel_pdc_regs *pdc; /* PDC receive or transmit registers */
  69. struct atmel_ssc_mask *mask; /* SSC & PDC status bits */
  70. struct snd_pcm_substream *substream;
  71. void (*dma_intr_handler)(u32, struct snd_pcm_substream *);
  72. };
  73. /*
  74. * SSC register access (since ssc_writel() / ssc_readl() require literal name)
  75. */
  76. #define ssc_readx(base, reg) (__raw_readl((base) + (reg)))
  77. #define ssc_writex(base, reg, value) __raw_writel((value), (base) + (reg))
  78. #if defined(CONFIG_SND_ATMEL_SOC_PDC) || \
  79. defined(CONFIG_SND_ATMEL_SOC_PDC_MODULE)
  80. int atmel_pcm_pdc_platform_register(struct device *dev);
  81. void atmel_pcm_pdc_platform_unregister(struct device *dev);
  82. #else
  83. static inline int atmel_pcm_pdc_platform_register(struct device *dev)
  84. {
  85. return 0;
  86. }
  87. static inline void atmel_pcm_pdc_platform_unregister(struct device *dev)
  88. {
  89. }
  90. #endif
  91. #if defined(CONFIG_SND_ATMEL_SOC_DMA) || \
  92. defined(CONFIG_SND_ATMEL_SOC_DMA_MODULE)
  93. int atmel_pcm_dma_platform_register(struct device *dev);
  94. void atmel_pcm_dma_platform_unregister(struct device *dev);
  95. #else
  96. static inline int atmel_pcm_dma_platform_register(struct device *dev)
  97. {
  98. return 0;
  99. }
  100. static inline void atmel_pcm_dma_platform_unregister(struct device *dev)
  101. {
  102. }
  103. #endif
  104. #endif /* _ATMEL_PCM_H */