swr-mstr-ctrl.h 3.6 KB

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