swr-mstr-ctrl.h 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright (c) 2015-2018, The Linux Foundation. All rights reserved.
  4. */
  5. #ifndef _SWR_WCD_CTRL_H
  6. #define _SWR_WCD_CTRL_H
  7. #include <linux/module.h>
  8. #include <soc/swr-wcd.h>
  9. #include <linux/pm_qos.h>
  10. #include <soc/qcom/pm.h>
  11. #define SWR_ROW_48 0
  12. #define SWR_ROW_50 1
  13. #define SWR_ROW_64 2
  14. #define SWR_MAX_COL 7 /* Cols = 16 */
  15. #define SWR_MIN_COL 0 /* Cols = 2 */
  16. #define SWR_WCD_NAME "swr-wcd"
  17. #define SWR_MSTR_PORT_LEN 8 /* Number of master ports */
  18. #define SWRM_VERSION_1_0 0x01010000
  19. #define SWRM_VERSION_1_2 0x01030000
  20. #define SWRM_VERSION_1_3 0x01040000
  21. #define SWRM_VERSION_1_5 0x01050000
  22. #define SWR_MAX_CH_PER_PORT 8
  23. #define SWR_MAX_SLAVE_DEVICES 11
  24. enum {
  25. SWR_MSTR_PAUSE,
  26. SWR_MSTR_RESUME,
  27. SWR_MSTR_UP,
  28. SWR_MSTR_DOWN,
  29. SWR_MSTR_SSR,
  30. };
  31. enum swrm_pm_state {
  32. SWRM_PM_SLEEPABLE,
  33. SWRM_PM_AWAKE,
  34. SWRM_PM_ASLEEP,
  35. };
  36. enum {
  37. SWR_IRQ_FREE,
  38. SWR_IRQ_REGISTER,
  39. };
  40. enum {
  41. SWR_DAC_PORT,
  42. SWR_COMP_PORT,
  43. SWR_BOOST_PORT,
  44. SWR_VISENSE_PORT,
  45. };
  46. struct usecase {
  47. u8 num_port;
  48. u8 num_ch;
  49. u32 chrate;
  50. };
  51. struct port_params {
  52. u8 si;
  53. u8 off1;
  54. u8 off2;
  55. u8 hstart;/* head start */
  56. u8 hstop; /* head stop */
  57. u8 wd_len;/* word length */
  58. u8 bp_mode; /* block pack mode */
  59. u8 bgp_ctrl;/* block group control */
  60. u8 lane_ctrl;/* lane to be used */
  61. };
  62. struct swrm_mports {
  63. struct list_head port_req_list;
  64. bool port_en;
  65. u8 ch_en;
  66. u8 req_ch;
  67. u8 ch_rate;
  68. u8 offset1;
  69. u8 offset2;
  70. u8 sinterval;
  71. u8 hstart;
  72. u8 hstop;
  73. u8 blk_grp_count;
  74. u8 blk_pack_mode;
  75. u8 word_length;
  76. u8 lane_ctrl;
  77. };
  78. struct swrm_port_type {
  79. u8 port_type;
  80. u8 ch_mask;
  81. };
  82. struct swr_ctrl_platform_data {
  83. void *handle; /* holds priv data */
  84. int (*read)(void *handle, int reg);
  85. int (*write)(void *handle, int reg, int val);
  86. int (*bulk_write)(void *handle, u32 *reg, u32 *val, size_t len);
  87. int (*clk)(void *handle, bool enable);
  88. int (*reg_irq)(void *handle, irqreturn_t(*irq_handler)(int irq,
  89. void *data), void *swr_handle, int type);
  90. };
  91. struct swr_mstr_ctrl {
  92. struct swr_master master;
  93. struct device *dev;
  94. struct resource *supplies;
  95. struct clk *mclk;
  96. int clk_ref_count;
  97. struct completion clk_off_complete;
  98. struct completion reset;
  99. struct completion broadcast;
  100. struct mutex clklock;
  101. struct mutex iolock;
  102. struct mutex devlock;
  103. struct mutex mlock;
  104. struct mutex reslock;
  105. struct mutex pm_lock;
  106. u32 swrm_base_reg;
  107. char __iomem *swrm_dig_base;
  108. u8 rcmd_id;
  109. u8 wcmd_id;
  110. u32 master_id;
  111. void *handle; /* SWR Master handle from client for read and writes */
  112. int (*read)(void *handle, int reg);
  113. int (*write)(void *handle, int reg, int val);
  114. int (*bulk_write)(void *handle, u32 *reg, u32 *val, size_t len);
  115. int (*clk)(void *handle, bool enable);
  116. int (*reg_irq)(void *handle, irqreturn_t(*irq_handler)(int irq,
  117. void *data), void *swr_handle, int type);
  118. int irq;
  119. int wake_irq;
  120. int version;
  121. int mclk_freq;
  122. u32 num_dev;
  123. int slave_status;
  124. struct swrm_mports mport_cfg[SWR_MAX_MSTR_PORT_NUM];
  125. struct list_head port_req_list;
  126. unsigned long port_req_pending;
  127. int state;
  128. struct platform_device *pdev;
  129. int num_rx_chs;
  130. u8 num_cfg_devs;
  131. struct mutex force_down_lock;
  132. int force_down_state;
  133. struct notifier_block event_notifier;
  134. struct work_struct dc_presence_work;
  135. u8 num_ports;
  136. struct swrm_port_type
  137. port_mapping[SWR_MSTR_PORT_LEN][SWR_MAX_CH_PER_PORT];
  138. int swr_irq;
  139. u32 clk_stop_mode0_supp;
  140. struct work_struct wakeup_work;
  141. u32 ipc_wakeup;
  142. bool dev_up;
  143. bool ipc_wakeup_triggered;
  144. struct pm_qos_request pm_qos_req;
  145. enum swrm_pm_state pm_state;
  146. wait_queue_head_t pm_wq;
  147. int wlock_holders;
  148. u32 intr_mask;
  149. };
  150. #endif /* _SWR_WCD_CTRL_H */