swr-common.h 928 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright (c) 2015, 2017-2019 The Linux Foundation. All rights reserved.
  4. */
  5. #ifndef _LINUX_SWR_COMMON_H
  6. #define _LINUX_SWR_COMMON_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_UC0 = 0,
  13. SWR_UC1,
  14. SWR_UC_MAX,
  15. };
  16. struct port_params {
  17. u8 si;
  18. u8 off1;
  19. u8 off2;
  20. u8 hstart;/* head start */
  21. u8 hstop; /* head stop */
  22. u8 wd_len;/* word length */
  23. u8 bp_mode; /* block pack mode */
  24. u8 bgp_ctrl;/* block group control */
  25. u8 lane_ctrl;/* lane to be used */
  26. u8 dir; /* master port dir: OUT = 0 IN = 1 */
  27. u8 stream_type; /* PDM = 0, PCM = 1 */
  28. };
  29. struct swrm_port_config {
  30. u32 size;
  31. u32 uc;
  32. void *params;
  33. };
  34. struct swr_mstr_port_map {
  35. u32 id;
  36. u32 uc;
  37. struct port_params *swr_port_params;
  38. };
  39. #define SWR_MSTR_PORT_LEN 8 /* Number of master ports */
  40. #endif /* _LINUX_SWR_COMMON_H */