icnss2.h 6.5 KB

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