atmel-pcm.h 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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_endx; /* SSC ENDTX or ENDRX */
  51. u32 ssc_endbuf; /* SSC TXBUFE or RXBUFF */
  52. u32 pdc_enable; /* PDC recv/trans enable */
  53. u32 pdc_disable; /* PDC recv/trans disable */
  54. };
  55. /*
  56. * This structure, shared between the PCM driver and the interface,
  57. * contains all information required by the PCM driver to perform the
  58. * PDC DMA operation. All fields except dma_intr_handler() are initialized
  59. * by the interface. The dma_intr_handler() pointer is set by the PCM
  60. * driver and called by the interface SSC interrupt handler if it is
  61. * non-NULL.
  62. */
  63. struct atmel_pcm_dma_params {
  64. char *name; /* stream identifier */
  65. int pdc_xfer_size; /* PDC counter increment in bytes */
  66. struct ssc_device *ssc; /* SSC device for stream */
  67. struct atmel_pdc_regs *pdc; /* PDC receive or transmit registers */
  68. struct atmel_ssc_mask *mask; /* SSC & PDC status bits */
  69. struct snd_pcm_substream *substream;
  70. void (*dma_intr_handler)(u32, struct snd_pcm_substream *);
  71. };
  72. /*
  73. * SSC register access (since ssc_writel() / ssc_readl() require literal name)
  74. */
  75. #define ssc_readx(base, reg) (__raw_readl((base) + (reg)))
  76. #define ssc_writex(base, reg, value) __raw_writel((value), (base) + (reg))
  77. int atmel_pcm_new(struct snd_soc_pcm_runtime *rtd);
  78. void atmel_pcm_free(struct snd_pcm *pcm);
  79. int atmel_pcm_mmap(struct snd_pcm_substream *substream,
  80. struct vm_area_struct *vma);
  81. #ifdef CONFIG_SND_ATMEL_SOC_PDC
  82. int atmel_pcm_pdc_platform_register(struct device *dev);
  83. void atmel_pcm_pdc_platform_unregister(struct device *dev);
  84. #else
  85. static inline int atmel_pcm_pdc_platform_register(struct device *dev)
  86. {
  87. return 0;
  88. }
  89. static inline void atmel_pcm_pdc_platform_unregister(struct device *dev)
  90. {
  91. }
  92. #endif
  93. #endif /* _ATMEL_PCM_H */