swr-wcd.h 966 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright (c) 2015, 2017-2018 The Linux Foundation. All rights reserved.
  4. */
  5. #ifndef _LINUX_SWR_WCD_H
  6. #define _LINUX_SWR_WCD_H
  7. #include <linux/module.h>
  8. #include <linux/platform_device.h>
  9. #include <linux/device.h>
  10. #include <linux/bitops.h>
  11. enum {
  12. SWR_CH_MAP,
  13. SWR_DEVICE_DOWN,
  14. SWR_DEVICE_UP,
  15. SWR_SUBSYS_RESTART,
  16. SWR_SET_NUM_RX_CH,
  17. SWR_CLK_FREQ,
  18. SWR_DEVICE_SSR_DOWN,
  19. SWR_DEVICE_SSR_UP,
  20. SWR_REGISTER_WAKE_IRQ,
  21. };
  22. struct swr_mstr_port {
  23. int num_port;
  24. u8 *port;
  25. };
  26. #define MCLK_FREQ 9600000
  27. #define MCLK_FREQ_NATIVE 11289600
  28. #if (IS_ENABLED(CONFIG_SOUNDWIRE_WCD_CTRL) || \
  29. IS_ENABLED(CONFIG_SOUNDWIRE_MSTR_CTRL))
  30. extern int swrm_wcd_notify(struct platform_device *pdev, u32 id, void *data);
  31. #else /* CONFIG_SOUNDWIRE_WCD_CTRL */
  32. static inline int swrm_wcd_notify(struct platform_device *pdev, u32 id,
  33. void *data)
  34. {
  35. return 0;
  36. }
  37. #endif /* CONFIG_SOUNDWIRE_WCD_CTRL */
  38. #endif /* _LINUX_SWR_WCD_H */