swr-wcd.h 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /* Copyright (c) 2015, 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. #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. 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 */