soc-utils.c 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /*
  2. * soc-util.c -- ALSA SoC Audio Layer utility functions
  3. *
  4. * Copyright 2009 Wolfson Microelectronics PLC.
  5. *
  6. * Author: Mark Brown <broonie@opensource.wolfsonmicro.com>
  7. * Liam Girdwood <lrg@slimlogic.co.uk>
  8. *
  9. *
  10. * This program is free software; you can redistribute it and/or modify it
  11. * under the terms of the GNU General Public License as published by the
  12. * Free Software Foundation; either version 2 of the License, or (at your
  13. * option) any later version.
  14. */
  15. #include <sound/core.h>
  16. #include <sound/pcm.h>
  17. #include <sound/pcm_params.h>
  18. #include <sound/soc.h>
  19. int snd_soc_calc_frame_size(int sample_size, int channels, int tdm_slots)
  20. {
  21. return sample_size * channels * tdm_slots;
  22. }
  23. EXPORT_SYMBOL_GPL(snd_soc_calc_frame_size);
  24. int snd_soc_params_to_frame_size(struct snd_pcm_hw_params *params)
  25. {
  26. int sample_size;
  27. sample_size = snd_pcm_format_width(params_format(params));
  28. if (sample_size < 0)
  29. return sample_size;
  30. return snd_soc_calc_frame_size(sample_size, params_channels(params),
  31. 1);
  32. }
  33. EXPORT_SYMBOL_GPL(snd_soc_params_to_frame_size);
  34. int snd_soc_calc_bclk(int fs, int sample_size, int channels, int tdm_slots)
  35. {
  36. return fs * snd_soc_calc_frame_size(sample_size, channels, tdm_slots);
  37. }
  38. EXPORT_SYMBOL_GPL(snd_soc_calc_bclk);
  39. int snd_soc_params_to_bclk(struct snd_pcm_hw_params *params)
  40. {
  41. int ret;
  42. ret = snd_soc_params_to_frame_size(params);
  43. if (ret > 0)
  44. return ret * params_rate(params);
  45. else
  46. return ret;
  47. }
  48. EXPORT_SYMBOL_GPL(snd_soc_params_to_bclk);