swr-mstr-ctrl.h 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  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 3
  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 SWRM_VERSION_1_6 0x01060000
  35. #define SWR_MAX_CH_PER_PORT 8
  36. #define SWR_MAX_SLAVE_DEVICES 11
  37. enum {
  38. SWR_MSTR_PAUSE,
  39. SWR_MSTR_RESUME,
  40. SWR_MSTR_UP,
  41. SWR_MSTR_DOWN,
  42. SWR_MSTR_SSR,
  43. };
  44. enum swrm_pm_state {
  45. SWRM_PM_SLEEPABLE,
  46. SWRM_PM_AWAKE,
  47. SWRM_PM_ASLEEP,
  48. };
  49. enum {
  50. SWR_IRQ_FREE,
  51. SWR_IRQ_REGISTER,
  52. };
  53. enum {
  54. SWR_DAC_PORT,
  55. SWR_COMP_PORT,
  56. SWR_BOOST_PORT,
  57. SWR_VISENSE_PORT,
  58. };
  59. struct usecase {
  60. u8 num_port;
  61. u8 num_ch;
  62. u32 chrate;
  63. };
  64. struct swrm_mports {
  65. struct list_head port_req_list;
  66. bool port_en;
  67. u8 ch_en;
  68. u8 req_ch;
  69. u8 ch_rate;
  70. u8 offset1;
  71. u8 offset2;
  72. u8 sinterval;
  73. u8 hstart;
  74. u8 hstop;
  75. u8 blk_grp_count;
  76. u8 blk_pack_mode;
  77. u8 word_length;
  78. u8 lane_ctrl;
  79. };
  80. struct swrm_port_type {
  81. u8 port_type;
  82. u8 ch_mask;
  83. };
  84. struct swr_ctrl_platform_data {
  85. void *handle; /* holds priv data */
  86. int (*read)(void *handle, int reg);
  87. int (*write)(void *handle, int reg, int val);
  88. int (*bulk_write)(void *handle, u32 *reg, u32 *val, size_t len);
  89. int (*clk)(void *handle, bool enable);
  90. int (*core_vote)(void *handle, bool enable);
  91. int (*reg_irq)(void *handle, irqreturn_t(*irq_handler)(int irq,
  92. void *data), void *swr_handle, int type);
  93. };
  94. struct swr_mstr_ctrl {
  95. struct swr_master master;
  96. struct device *dev;
  97. struct resource *supplies;
  98. struct clk *mclk;
  99. int clk_ref_count;
  100. struct completion clk_off_complete;
  101. struct completion reset;
  102. struct completion broadcast;
  103. struct mutex clklock;
  104. struct mutex iolock;
  105. struct mutex devlock;
  106. struct mutex mlock;
  107. struct mutex reslock;
  108. struct mutex pm_lock;
  109. struct mutex irq_lock;
  110. u32 swrm_base_reg;
  111. char __iomem *swrm_dig_base;
  112. char __iomem *swrm_hctl_reg;
  113. u8 rcmd_id;
  114. u8 wcmd_id;
  115. u32 master_id;
  116. void *handle; /* SWR Master handle from client for read and writes */
  117. int (*read)(void *handle, int reg);
  118. int (*write)(void *handle, int reg, int val);
  119. int (*bulk_write)(void *handle, u32 *reg, u32 *val, size_t len);
  120. int (*clk)(void *handle, bool enable);
  121. int (*core_vote)(void *handle, bool enable);
  122. int (*reg_irq)(void *handle, irqreturn_t(*irq_handler)(int irq,
  123. void *data), void *swr_handle, int type);
  124. int irq;
  125. int wake_irq;
  126. int version;
  127. int mclk_freq;
  128. int bus_clk;
  129. u32 num_dev;
  130. int slave_status;
  131. struct swrm_mports mport_cfg[SWR_MAX_MSTR_PORT_NUM];
  132. struct list_head port_req_list;
  133. unsigned long port_req_pending;
  134. int state;
  135. struct platform_device *pdev;
  136. int num_rx_chs;
  137. u8 num_cfg_devs;
  138. struct mutex force_down_lock;
  139. int force_down_state;
  140. struct notifier_block event_notifier;
  141. struct work_struct dc_presence_work;
  142. u8 num_ports;
  143. struct swrm_port_type
  144. port_mapping[SWR_MSTR_PORT_LEN][SWR_MAX_CH_PER_PORT];
  145. int swr_irq;
  146. u32 clk_stop_mode0_supp;
  147. struct work_struct wakeup_work;
  148. u32 ipc_wakeup;
  149. bool dev_up;
  150. bool ipc_wakeup_triggered;
  151. struct pm_qos_request pm_qos_req;
  152. enum swrm_pm_state pm_state;
  153. wait_queue_head_t pm_wq;
  154. int wlock_holders;
  155. u32 intr_mask;
  156. struct port_params **port_param;
  157. struct clk *lpass_core_hw_vote;
  158. struct clk *lpass_core_audio;
  159. u8 num_usecase;
  160. u32 swr_irq_wakeup_capable;
  161. int hw_core_clk_en;
  162. int aud_core_clk_en;
  163. #ifdef CONFIG_DEBUG_FS
  164. struct dentry *debugfs_swrm_dent;
  165. struct dentry *debugfs_peek;
  166. struct dentry *debugfs_poke;
  167. struct dentry *debugfs_reg_dump;
  168. unsigned int read_data;
  169. #endif
  170. };
  171. #endif /* _SWR_WCD_CTRL_H */