icnss2.h 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright (c) 2015-2021, The Linux Foundation. All rights reserved.
  4. * Copyright (c) 2023 Qualcomm Innovation Center, Inc. All rights reserved.
  5. */
  6. #ifndef _ICNSS_WLAN_H_
  7. #define _ICNSS_WLAN_H_
  8. #include <linux/interrupt.h>
  9. #include <linux/device.h>
  10. #define ICNSS_MAX_IRQ_REGISTRATIONS 12
  11. #define IWCN_MAX_IRQ_REGISTRATIONS 32
  12. #define ICNSS_MAX_TIMESTAMP_LEN 32
  13. #define ICNSS_WLFW_MAX_BUILD_ID_LEN 128
  14. #define DEVICE_NAME_MAX 10
  15. enum icnss_uevent {
  16. ICNSS_UEVENT_FW_CRASHED,
  17. ICNSS_UEVENT_FW_DOWN,
  18. ICNSS_UEVENT_HANG_DATA,
  19. ICNSS_UEVENT_SMMU_FAULT,
  20. };
  21. enum icnss_device_config {
  22. ICNSS_IPA_DISABLED,
  23. };
  24. struct icnss_uevent_hang_data {
  25. void *hang_event_data;
  26. uint16_t hang_event_data_len;
  27. };
  28. struct icnss_uevent_fw_down_data {
  29. bool crashed;
  30. };
  31. struct icnss_uevent_data {
  32. enum icnss_uevent uevent;
  33. void *data;
  34. };
  35. /* Device information like supported device ids, etc*/
  36. struct device_info {
  37. char name[DEVICE_NAME_MAX];
  38. uint16_t device_id;
  39. };
  40. struct icnss_driver_ops {
  41. char *name;
  42. struct device_info *dev_info;
  43. unsigned long drv_state;
  44. struct device_driver driver;
  45. int (*probe)(struct device *dev);
  46. void (*remove)(struct device *dev);
  47. void (*shutdown)(struct device *dev);
  48. int (*reinit)(struct device *dev);
  49. void (*crash_shutdown)(void *pdev);
  50. int (*pm_suspend)(struct device *dev);
  51. int (*pm_resume)(struct device *dev);
  52. int (*suspend_noirq)(struct device *dev);
  53. int (*resume_noirq)(struct device *dev);
  54. int (*runtime_suspend)(struct device *dev);
  55. int (*runtime_resume)(struct device *dev);
  56. int (*uevent)(struct device *dev, struct icnss_uevent_data *uevent);
  57. int (*idle_shutdown)(struct device *dev);
  58. int (*idle_restart)(struct device *dev);
  59. int (*set_therm_cdev_state)(struct device *dev,
  60. unsigned long thermal_state,
  61. int tcdev_id);
  62. };
  63. struct ce_tgt_pipe_cfg {
  64. u32 pipe_num;
  65. u32 pipe_dir;
  66. u32 nentries;
  67. u32 nbytes_max;
  68. u32 flags;
  69. u32 reserved;
  70. };
  71. struct ce_svc_pipe_cfg {
  72. u32 service_id;
  73. u32 pipe_dir;
  74. u32 pipe_num;
  75. };
  76. struct icnss_shadow_reg_cfg {
  77. u16 ce_id;
  78. u16 reg_offset;
  79. };
  80. struct icnss_shadow_reg_v2_cfg {
  81. u32 addr;
  82. };
  83. struct icnss_shadow_reg_v3_cfg {
  84. u32 addr;
  85. };
  86. struct icnss_rri_over_ddr_cfg {
  87. u32 base_addr_low;
  88. u32 base_addr_high;
  89. };
  90. /* CE configuration to target */
  91. struct icnss_wlan_enable_cfg {
  92. u32 num_ce_tgt_cfg;
  93. struct ce_tgt_pipe_cfg *ce_tgt_cfg;
  94. u32 num_ce_svc_pipe_cfg;
  95. struct ce_svc_pipe_cfg *ce_svc_cfg;
  96. u32 num_shadow_reg_cfg;
  97. struct icnss_shadow_reg_cfg *shadow_reg_cfg;
  98. u32 num_shadow_reg_v2_cfg;
  99. struct icnss_shadow_reg_v2_cfg *shadow_reg_v2_cfg;
  100. u32 num_shadow_reg_v3_cfg;
  101. struct icnss_shadow_reg_v3_cfg *shadow_reg_v3_cfg;
  102. bool rri_over_ddr_cfg_valid;
  103. struct icnss_rri_over_ddr_cfg rri_over_ddr_cfg;
  104. };
  105. /* driver modes */
  106. enum icnss_driver_mode {
  107. ICNSS_MISSION,
  108. ICNSS_FTM,
  109. ICNSS_EPPING,
  110. ICNSS_WALTEST,
  111. ICNSS_OFF,
  112. ICNSS_CCPM,
  113. ICNSS_QVIT,
  114. ICNSS_CALIBRATION,
  115. };
  116. enum icnss_rd_card_chain_cap {
  117. ICNSS_RD_CARD_CHAIN_CAP_UNSPECIFIED,
  118. ICNSS_RD_CARD_CHAIN_CAP_1x1,
  119. ICNSS_RD_CARD_CHAIN_CAP_2x2,
  120. ICNSS_RD_CARD_CHAIN_CAP_MAX_VAL,
  121. };
  122. enum icnss_phy_he_channel_width_cap {
  123. ICNSS_PHY_HE_CHANNEL_WIDTH_CAP_UNSPECIFIED,
  124. ICNSS_PHY_HE_CHANNEL_WIDTH_CAP_80MHZ,
  125. ICNSS_PHY_HE_CHANNEL_WIDTH_CAP_160MHZ,
  126. ICNSS_PHY_HE_CHANNEL_WIDTH_CAP_MAX_VAL,
  127. };
  128. enum icnss_phy_qam_cap {
  129. ICNSS_PHY_QAM_CAP_UNSPECIFIED,
  130. ICNSS_PHY_QAM_CAP_1K,
  131. ICNSS_PHY_QAM_CAP_4K,
  132. ICNSS_PHY_QAM_CAP_MAX_VAL,
  133. };
  134. struct icnss_soc_info {
  135. void __iomem *v_addr;
  136. phys_addr_t p_addr;
  137. uint32_t chip_id;
  138. uint32_t chip_family;
  139. uint32_t board_id;
  140. uint32_t soc_id;
  141. uint32_t fw_version;
  142. char fw_build_timestamp[ICNSS_MAX_TIMESTAMP_LEN + 1];
  143. char fw_build_id[ICNSS_WLFW_MAX_BUILD_ID_LEN + 1];
  144. enum icnss_rd_card_chain_cap rd_card_chain_cap;
  145. enum icnss_phy_he_channel_width_cap phy_he_channel_width_cap;
  146. enum icnss_phy_qam_cap phy_qam_cap;
  147. };
  148. #define icnss_register_driver(ops) \
  149. __icnss_register_driver(ops, THIS_MODULE, KBUILD_MODNAME)
  150. extern int __icnss_register_driver(struct icnss_driver_ops *ops,
  151. struct module *owner, const char *mod_name);
  152. extern int icnss_unregister_driver(struct icnss_driver_ops *ops);
  153. extern int icnss_wlan_enable(struct device *dev,
  154. struct icnss_wlan_enable_cfg *config,
  155. enum icnss_driver_mode mode,
  156. const char *host_version);
  157. extern int icnss_wlan_disable(struct device *dev, enum icnss_driver_mode mode);
  158. extern void icnss_enable_irq(struct device *dev, unsigned int ce_id);
  159. extern void icnss_disable_irq(struct device *dev, unsigned int ce_id);
  160. extern int icnss_get_soc_info(struct device *dev, struct icnss_soc_info *info);
  161. extern int icnss_ce_free_irq(struct device *dev, unsigned int ce_id, void *ctx);
  162. extern int icnss_ce_request_irq(struct device *dev, unsigned int ce_id,
  163. irqreturn_t (*handler)(int, void *),
  164. unsigned long flags, const char *name, void *ctx);
  165. extern int icnss_get_ce_id(struct device *dev, int irq);
  166. extern int icnss_set_fw_log_mode(struct device *dev, uint8_t fw_log_mode);
  167. extern int icnss_athdiag_read(struct device *dev, uint32_t offset,
  168. uint32_t mem_type, uint32_t data_len,
  169. uint8_t *output);
  170. extern int icnss_athdiag_write(struct device *dev, uint32_t offset,
  171. uint32_t mem_type, uint32_t data_len,
  172. uint8_t *input);
  173. extern int icnss_get_irq(struct device *dev, int ce_id);
  174. extern int icnss_power_on(struct device *dev);
  175. extern int icnss_power_off(struct device *dev);
  176. extern struct dma_iommu_mapping *icnss_smmu_get_mapping(struct device *dev);
  177. extern struct iommu_domain *icnss_smmu_get_domain(struct device *dev);
  178. extern int icnss_smmu_map(struct device *dev, phys_addr_t paddr,
  179. uint32_t *iova_addr, size_t size);
  180. extern int icnss_smmu_unmap(struct device *dev,
  181. uint32_t iova_addr, size_t size);
  182. extern unsigned int icnss_socinfo_get_serial_number(struct device *dev);
  183. extern bool icnss_is_qmi_disable(struct device *dev);
  184. extern bool icnss_is_fw_ready(void);
  185. extern bool icnss_is_fw_down(void);
  186. extern bool icnss_is_low_power(void);
  187. extern bool icnss_is_rejuvenate(void);
  188. extern int icnss_trigger_recovery(struct device *dev);
  189. extern void icnss_block_shutdown(bool status);
  190. extern bool icnss_is_pdr(void);
  191. extern int icnss_idle_restart(struct device *dev);
  192. extern int icnss_idle_shutdown(struct device *dev);
  193. extern int icnss_get_user_msi_assignment(struct device *dev, char *user_name,
  194. int *num_vectors, u32 *user_base_data,
  195. u32 *base_vector);
  196. extern int icnss_get_msi_irq(struct device *dev, unsigned int vector);
  197. extern void icnss_get_msi_address(struct device *dev, u32 *msi_addr_low,
  198. u32 *msi_addr_high);
  199. extern int icnss_qmi_send(struct device *dev, int type, void *cmd,
  200. int cmd_len, void *cb_ctx,
  201. int (*cb)(void *ctx, void *event, int event_len));
  202. extern int icnss_force_wake_request(struct device *dev);
  203. extern int icnss_force_wake_release(struct device *dev);
  204. extern int icnss_is_device_awake(struct device *dev);
  205. extern int icnss_thermal_cdev_register(struct device *dev,
  206. unsigned long max_state,
  207. int tcdev_id);
  208. extern void icnss_thermal_cdev_unregister(struct device *dev, int tcdev_id);
  209. extern int icnss_get_curr_therm_cdev_state(struct device *dev,
  210. unsigned long *thermal_state,
  211. int tcdev_id);
  212. extern int icnss_exit_power_save(struct device *dev);
  213. extern int icnss_prevent_l1(struct device *dev);
  214. extern void icnss_allow_l1(struct device *dev);
  215. extern int icnss_get_mhi_state(struct device *dev);
  216. extern int icnss_is_pci_ep_awake(struct device *dev);
  217. extern unsigned long icnss_get_device_config(void);
  218. #endif /* _ICNSS_WLAN_H_ */