swr-mstr-ctrl.h 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright (c) 2015-2019, 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. #include <soc/swr-common.h>
  12. #ifdef CONFIG_DEBUG_FS
  13. #include <linux/debugfs.h>
  14. #include <linux/uaccess.h>
  15. #define SWR_MSTR_MAX_REG_ADDR 0x1740
  16. #define SWR_MSTR_START_REG_ADDR 0x00
  17. #define SWR_MSTR_MAX_BUF_LEN 32
  18. #define BYTES_PER_LINE 12
  19. #define SWR_MSTR_RD_BUF_LEN 8
  20. #define SWR_MSTR_WR_BUF_LEN 32
  21. #endif
  22. #define SWR_ROW_48 0
  23. #define SWR_ROW_50 1
  24. #define SWR_ROW_64 2
  25. #define SWR_MAX_COL 7 /* Cols = 16 */
  26. #define SWR_MIN_COL 0 /* Cols = 2 */
  27. #define SWR_WCD_NAME "swr-wcd"
  28. #define SWR_MSTR_PORT_LEN 8 /* Number of master ports */
  29. #define SWRM_VERSION_1_0 0x01010000
  30. #define SWRM_VERSION_1_2 0x01030000
  31. #define SWRM_VERSION_1_3 0x01040000
  32. #define SWRM_VERSION_1_5 0x01050000
  33. #define SWRM_VERSION_1_5_1 0x01050001
  34. #define SWR_MAX_CH_PER_PORT 8
  35. #define SWR_MAX_SLAVE_DEVICES 11
  36. enum {
  37. SWR_MSTR_PAUSE,
  38. SWR_MSTR_RESUME,
  39. SWR_MSTR_UP,
  40. SWR_MSTR_DOWN,
  41. SWR_MSTR_SSR,
  42. };
  43. enum swrm_pm_state {
  44. SWRM_PM_SLEEPABLE,
  45. SWRM_PM_AWAKE,
  46. SWRM_PM_ASLEEP,
  47. };
  48. enum {
  49. SWR_IRQ_FREE,
  50. SWR_IRQ_REGISTER,
  51. };
  52. enum {
  53. SWR_DAC_PORT,
  54. SWR_COMP_PORT,
  55. SWR_BOOST_PORT,
  56. SWR_VISENSE_PORT,
  57. };
  58. struct usecase {
  59. u8 num_port;
  60. u8 num_ch;
  61. u32 chrate;
  62. };
  63. struct swrm_mports {
  64. struct list_head port_req_list;
  65. bool port_en;
  66. u8 ch_en;
  67. u8 req_ch;
  68. u8 ch_rate;
  69. u8 offset1;
  70. u8 offset2;
  71. u8 sinterval;
  72. u8 hstart;
  73. u8 hstop;
  74. u8 blk_grp_count;
  75. u8 blk_pack_mode;
  76. u8 word_length;
  77. u8 lane_ctrl;
  78. };
  79. struct swrm_port_type {
  80. u8 port_type;
  81. u8 ch_mask;
  82. };
  83. struct swr_ctrl_platform_data {
  84. void *handle; /* holds priv data */
  85. int (*read)(void *handle, int reg);
  86. int (*write)(void *handle, int reg, int val);
  87. int (*bulk_write)(void *handle, u32 *reg, u32 *val, size_t len);
  88. int (*clk)(void *handle, bool enable);
  89. int (*core_vote)(void *handle, bool enable);
  90. int (*reg_irq)(void *handle, irqreturn_t(*irq_handler)(int irq,
  91. void *data), void *swr_handle, int type);
  92. };
  93. struct swr_mstr_ctrl {
  94. struct swr_master master;
  95. struct device *dev;
  96. struct resource *supplies;
  97. struct clk *mclk;
  98. int clk_ref_count;
  99. struct completion clk_off_complete;
  100. struct completion reset;
  101. struct completion broadcast;
  102. struct mutex clklock;
  103. struct mutex iolock;
  104. struct mutex devlock;
  105. struct mutex mlock;
  106. struct mutex reslock;
  107. struct mutex pm_lock;
  108. u32 swrm_base_reg;
  109. char __iomem *swrm_dig_base;
  110. u8 rcmd_id;
  111. u8 wcmd_id;
  112. u32 master_id;
  113. void *handle; /* SWR Master handle from client for read and writes */
  114. int (*read)(void *handle, int reg);
  115. int (*write)(void *handle, int reg, int val);
  116. int (*bulk_write)(void *handle, u32 *reg, u32 *val, size_t len);
  117. int (*clk)(void *handle, bool enable);
  118. int (*core_vote)(void *handle, bool enable);
  119. int (*reg_irq)(void *handle, irqreturn_t(*irq_handler)(int irq,
  120. void *data), void *swr_handle, int type);
  121. int irq;
  122. int wake_irq;
  123. int version;
  124. int mclk_freq;
  125. u32 num_dev;
  126. int slave_status;
  127. struct swrm_mports mport_cfg[SWR_MAX_MSTR_PORT_NUM];
  128. struct list_head port_req_list;
  129. unsigned long port_req_pending;
  130. int state;
  131. struct platform_device *pdev;
  132. int num_rx_chs;
  133. u8 num_cfg_devs;
  134. struct mutex force_down_lock;
  135. int force_down_state;
  136. struct notifier_block event_notifier;
  137. struct work_struct dc_presence_work;
  138. u8 num_ports;
  139. struct swrm_port_type
  140. port_mapping[SWR_MSTR_PORT_LEN][SWR_MAX_CH_PER_PORT];
  141. int swr_irq;
  142. u32 clk_stop_mode0_supp;
  143. struct work_struct wakeup_work;
  144. u32 ipc_wakeup;
  145. bool dev_up;
  146. bool ipc_wakeup_triggered;
  147. struct pm_qos_request pm_qos_req;
  148. enum swrm_pm_state pm_state;
  149. wait_queue_head_t pm_wq;
  150. int wlock_holders;
  151. u32 intr_mask;
  152. struct port_params **port_param;
  153. struct clk *lpass_core_hw_vote;
  154. struct clk *lpass_core_audio;
  155. u8 num_usecase;
  156. u32 swr_irq_wakeup_capable;
  157. int hw_core_clk_en;
  158. int aud_core_clk_en;
  159. #ifdef CONFIG_DEBUG_FS
  160. struct dentry *debugfs_swrm_dent;
  161. struct dentry *debugfs_peek;
  162. struct dentry *debugfs_poke;
  163. struct dentry *debugfs_reg_dump;
  164. unsigned int read_data;
  165. #endif
  166. };
  167. #endif /* _SWR_WCD_CTRL_H */