mxs-pcm.c 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. // SPDX-License-Identifier: GPL-2.0-or-later
  2. /*
  3. * Copyright (C) 2011 Freescale Semiconductor, Inc. All Rights Reserved.
  4. *
  5. * Based on sound/soc/imx/imx-pcm-dma-mx2.c
  6. */
  7. #include <linux/device.h>
  8. #include <linux/init.h>
  9. #include <linux/module.h>
  10. #include <sound/core.h>
  11. #include <sound/pcm.h>
  12. #include <sound/soc.h>
  13. #include <sound/dmaengine_pcm.h>
  14. #include "mxs-pcm.h"
  15. static const struct snd_pcm_hardware snd_mxs_hardware = {
  16. .info = SNDRV_PCM_INFO_MMAP |
  17. SNDRV_PCM_INFO_MMAP_VALID |
  18. SNDRV_PCM_INFO_PAUSE |
  19. SNDRV_PCM_INFO_RESUME |
  20. SNDRV_PCM_INFO_INTERLEAVED |
  21. SNDRV_PCM_INFO_HALF_DUPLEX,
  22. .period_bytes_min = 32,
  23. .period_bytes_max = 8192,
  24. .periods_min = 1,
  25. .periods_max = 52,
  26. .buffer_bytes_max = 64 * 1024,
  27. .fifo_size = 32,
  28. };
  29. static const struct snd_dmaengine_pcm_config mxs_dmaengine_pcm_config = {
  30. .pcm_hardware = &snd_mxs_hardware,
  31. .prealloc_buffer_size = 64 * 1024,
  32. };
  33. int mxs_pcm_platform_register(struct device *dev)
  34. {
  35. return devm_snd_dmaengine_pcm_register(dev, &mxs_dmaengine_pcm_config,
  36. SND_DMAENGINE_PCM_FLAG_HALF_DUPLEX);
  37. }
  38. EXPORT_SYMBOL_GPL(mxs_pcm_platform_register);
  39. MODULE_LICENSE("GPL");