swr-wcd.h 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. /* Copyright (c) 2015, 2017-2018 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. #ifndef _LINUX_SWR_WCD_H
  13. #define _LINUX_SWR_WCD_H
  14. #include <linux/module.h>
  15. #include <linux/platform_device.h>
  16. #include <linux/device.h>
  17. #include <linux/bitops.h>
  18. enum {
  19. SWR_CH_MAP,
  20. SWR_DEVICE_DOWN,
  21. SWR_DEVICE_UP,
  22. SWR_SUBSYS_RESTART,
  23. SWR_SET_NUM_RX_CH,
  24. SWR_CLK_FREQ,
  25. SWR_DEVICE_SSR_DOWN,
  26. SWR_DEVICE_SSR_UP,
  27. };
  28. struct swr_mstr_port {
  29. int num_port;
  30. u8 *port;
  31. };
  32. #define MCLK_FREQ 9600000
  33. #define MCLK_FREQ_NATIVE 11289600
  34. #if (IS_ENABLED(CONFIG_SOUNDWIRE_WCD_CTRL) || \
  35. IS_ENABLED(CONFIG_SOUNDWIRE_MSTR_CTRL))
  36. extern int swrm_wcd_notify(struct platform_device *pdev, u32 id, void *data);
  37. #else /* CONFIG_SOUNDWIRE_WCD_CTRL */
  38. static inline int swrm_wcd_notify(struct platform_device *pdev, u32 id,
  39. void *data)
  40. {
  41. return 0;
  42. }
  43. #endif /* CONFIG_SOUNDWIRE_WCD_CTRL */
  44. #endif /* _LINUX_SWR_WCD_H */