msm-pcm-hostless.c 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. /* Copyright (c) 2011-2014, 2017 The Linux Foundation. All rights reserved.
  2. *
  3. * This program is free software; you can redistribute it and/or modify
  4. * it under the terms of the GNU General Public License version 2 and
  5. * only version 2 as published by the Free Software Foundation.
  6. *
  7. * This program is distributed in the hope that it will be useful,
  8. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. * GNU General Public License for more details.
  11. */
  12. #include <linux/init.h>
  13. #include <linux/module.h>
  14. #include <linux/platform_device.h>
  15. #include <linux/of_device.h>
  16. #include <sound/core.h>
  17. #include <sound/soc.h>
  18. #include <sound/pcm.h>
  19. static int msm_pcm_hostless_prepare(struct snd_pcm_substream *substream)
  20. {
  21. if (!substream) {
  22. pr_err("%s: invalid params\n", __func__);
  23. return -EINVAL;
  24. }
  25. pm_qos_remove_request(&substream->latency_pm_qos_req);
  26. return 0;
  27. }
  28. static const struct snd_pcm_ops msm_pcm_hostless_ops = {
  29. .prepare = msm_pcm_hostless_prepare
  30. };
  31. static struct snd_soc_platform_driver msm_soc_hostless_platform = {
  32. .ops = &msm_pcm_hostless_ops,
  33. };
  34. static int msm_pcm_hostless_probe(struct platform_device *pdev)
  35. {
  36. pr_debug("%s: dev name %s\n", __func__, dev_name(&pdev->dev));
  37. return snd_soc_register_platform(&pdev->dev,
  38. &msm_soc_hostless_platform);
  39. }
  40. static int msm_pcm_hostless_remove(struct platform_device *pdev)
  41. {
  42. snd_soc_unregister_platform(&pdev->dev);
  43. return 0;
  44. }
  45. static const struct of_device_id msm_pcm_hostless_dt_match[] = {
  46. {.compatible = "qcom,msm-pcm-hostless"},
  47. {}
  48. };
  49. static struct platform_driver msm_pcm_hostless_driver = {
  50. .driver = {
  51. .name = "msm-pcm-hostless",
  52. .owner = THIS_MODULE,
  53. .of_match_table = msm_pcm_hostless_dt_match,
  54. },
  55. .probe = msm_pcm_hostless_probe,
  56. .remove = msm_pcm_hostless_remove,
  57. };
  58. static int __init msm_soc_platform_init(void)
  59. {
  60. return platform_driver_register(&msm_pcm_hostless_driver);
  61. }
  62. module_init(msm_soc_platform_init);
  63. static void __exit msm_soc_platform_exit(void)
  64. {
  65. platform_driver_unregister(&msm_pcm_hostless_driver);
  66. }
  67. module_exit(msm_soc_platform_exit);
  68. MODULE_DESCRIPTION("Hostless platform driver");
  69. MODULE_LICENSE("GPL v2");