swr-wcd.h 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. };
  25. struct swr_mstr_port {
  26. int num_port;
  27. u8 *port;
  28. };
  29. #if (IS_ENABLED(CONFIG_SOUNDWIRE_WCD_CTRL) || \
  30. IS_ENABLED(CONFIG_SOUNDWIRE_MSTR_CTRL))
  31. extern int swrm_wcd_notify(struct platform_device *pdev, u32 id, void *data);
  32. #else /* CONFIG_SOUNDWIRE_WCD_CTRL */
  33. static inline int swrm_wcd_notify(struct platform_device *pdev, u32 id,
  34. void *data)
  35. {
  36. return 0;
  37. }
  38. #endif /* CONFIG_SOUNDWIRE_WCD_CTRL */
  39. #endif /* _LINUX_SWR_WCD_H */