ipa_common_i.h 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright (c) 2012-2019, The Linux Foundation. All rights reserved.
  4. */
  5. #include <linux/ipa_mhi.h>
  6. #include <linux/ipa_qmi_service_v01.h>
  7. #ifndef _IPA_COMMON_I_H_
  8. #define _IPA_COMMON_I_H_
  9. #include <linux/errno.h>
  10. #include <linux/ipc_logging.h>
  11. #include <linux/ipa.h>
  12. #include <linux/ipa_uc_offload.h>
  13. #include <linux/ipa_wdi3.h>
  14. #include <linux/ipa_wigig.h>
  15. #include <linux/ratelimit.h>
  16. #define WARNON_RATELIMIT_BURST 1
  17. #define IPA_RATELIMIT_BURST 1
  18. #define __FILENAME__ \
  19. (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
  20. #define IPA_ACTIVE_CLIENTS_PREP_EP(log_info, client) \
  21. log_info.file = __FILENAME__; \
  22. log_info.line = __LINE__; \
  23. log_info.type = EP; \
  24. log_info.id_string = (client < 0 || client >= IPA_CLIENT_MAX) \
  25. ? "Invalid Client" : ipa_clients_strings[client]
  26. #define IPA_ACTIVE_CLIENTS_PREP_SIMPLE(log_info) \
  27. log_info.file = __FILENAME__; \
  28. log_info.line = __LINE__; \
  29. log_info.type = SIMPLE; \
  30. log_info.id_string = __func__
  31. #define IPA_ACTIVE_CLIENTS_PREP_RESOURCE(log_info, resource_name) \
  32. log_info.file = __FILENAME__; \
  33. log_info.line = __LINE__; \
  34. log_info.type = RESOURCE; \
  35. log_info.id_string = resource_name
  36. #define IPA_ACTIVE_CLIENTS_PREP_SPECIAL(log_info, id_str) \
  37. log_info.file = __FILENAME__; \
  38. log_info.line = __LINE__; \
  39. log_info.type = SPECIAL; \
  40. log_info.id_string = id_str
  41. #define IPA_ACTIVE_CLIENTS_INC_EP(client) \
  42. do { \
  43. struct ipa_active_client_logging_info log_info; \
  44. IPA_ACTIVE_CLIENTS_PREP_EP(log_info, client); \
  45. ipa_inc_client_enable_clks(&log_info); \
  46. } while (0)
  47. #define IPA_ACTIVE_CLIENTS_DEC_EP(client) \
  48. do { \
  49. struct ipa_active_client_logging_info log_info; \
  50. IPA_ACTIVE_CLIENTS_PREP_EP(log_info, client); \
  51. ipa_dec_client_disable_clks(&log_info); \
  52. } while (0)
  53. #define IPA_ACTIVE_CLIENTS_INC_SIMPLE() \
  54. do { \
  55. struct ipa_active_client_logging_info log_info; \
  56. IPA_ACTIVE_CLIENTS_PREP_SIMPLE(log_info); \
  57. ipa_inc_client_enable_clks(&log_info); \
  58. } while (0)
  59. #define IPA_ACTIVE_CLIENTS_DEC_SIMPLE() \
  60. do { \
  61. struct ipa_active_client_logging_info log_info; \
  62. IPA_ACTIVE_CLIENTS_PREP_SIMPLE(log_info); \
  63. ipa_dec_client_disable_clks(&log_info); \
  64. } while (0)
  65. #define IPA_ACTIVE_CLIENTS_INC_RESOURCE(resource_name) \
  66. do { \
  67. struct ipa_active_client_logging_info log_info; \
  68. IPA_ACTIVE_CLIENTS_PREP_RESOURCE(log_info, resource_name); \
  69. ipa_inc_client_enable_clks(&log_info); \
  70. } while (0)
  71. #define IPA_ACTIVE_CLIENTS_DEC_RESOURCE(resource_name) \
  72. do { \
  73. struct ipa_active_client_logging_info log_info; \
  74. IPA_ACTIVE_CLIENTS_PREP_RESOURCE(log_info, resource_name); \
  75. ipa_dec_client_disable_clks(&log_info); \
  76. } while (0)
  77. #define IPA_ACTIVE_CLIENTS_INC_SPECIAL(id_str) \
  78. do { \
  79. struct ipa_active_client_logging_info log_info; \
  80. IPA_ACTIVE_CLIENTS_PREP_SPECIAL(log_info, id_str); \
  81. ipa_inc_client_enable_clks(&log_info); \
  82. } while (0)
  83. #define IPA_ACTIVE_CLIENTS_DEC_SPECIAL(id_str) \
  84. do { \
  85. struct ipa_active_client_logging_info log_info; \
  86. IPA_ACTIVE_CLIENTS_PREP_SPECIAL(log_info, id_str); \
  87. ipa_dec_client_disable_clks(&log_info); \
  88. } while (0)
  89. /*
  90. * Printing one warning message in 5 seconds if multiple warning messages
  91. * are coming back to back.
  92. */
  93. #define WARN_ON_RATELIMIT_IPA(condition) \
  94. ({ \
  95. static DEFINE_RATELIMIT_STATE(_rs, \
  96. DEFAULT_RATELIMIT_INTERVAL, \
  97. WARNON_RATELIMIT_BURST); \
  98. int rtn = !!(condition); \
  99. \
  100. if (unlikely(rtn && __ratelimit(&_rs))) \
  101. WARN_ON(rtn); \
  102. })
  103. /*
  104. * Printing one error message in 5 seconds if multiple error messages
  105. * are coming back to back.
  106. */
  107. #define pr_err_ratelimited_ipa(fmt, args...) \
  108. ({ \
  109. static DEFINE_RATELIMIT_STATE(_rs, \
  110. DEFAULT_RATELIMIT_INTERVAL, \
  111. IPA_RATELIMIT_BURST); \
  112. \
  113. if (__ratelimit(&_rs)) \
  114. pr_err(fmt, ## args); \
  115. })
  116. #define ipa_assert_on(condition)\
  117. do {\
  118. if (unlikely(condition))\
  119. ipa_assert();\
  120. } while (0)
  121. #define IPA_CLIENT_IS_PROD(x) \
  122. (x < IPA_CLIENT_MAX && (x & 0x1) == 0)
  123. #define IPA_CLIENT_IS_CONS(x) \
  124. (x < IPA_CLIENT_MAX && (x & 0x1) == 1)
  125. #define IPA_GSI_CHANNEL_STOP_SLEEP_MIN_USEC (1000)
  126. #define IPA_GSI_CHANNEL_STOP_SLEEP_MAX_USEC (2000)
  127. enum ipa_active_client_log_type {
  128. EP,
  129. SIMPLE,
  130. RESOURCE,
  131. SPECIAL,
  132. INVALID
  133. };
  134. struct ipa_active_client_logging_info {
  135. const char *id_string;
  136. char *file;
  137. int line;
  138. enum ipa_active_client_log_type type;
  139. };
  140. /**
  141. * struct ipa_mem_buffer - IPA memory buffer
  142. * @base: base
  143. * @phys_base: physical base address
  144. * @size: size of memory buffer
  145. */
  146. struct ipa_mem_buffer {
  147. void *base;
  148. dma_addr_t phys_base;
  149. u32 size;
  150. };
  151. /**
  152. * enum ipa3_mhi_burst_mode - MHI channel burst mode state
  153. *
  154. * Values are according to MHI specification
  155. * @IPA_MHI_BURST_MODE_DEFAULT: burst mode enabled for HW channels,
  156. * disabled for SW channels
  157. * @IPA_MHI_BURST_MODE_RESERVED:
  158. * @IPA_MHI_BURST_MODE_DISABLE: Burst mode is disabled for this channel
  159. * @IPA_MHI_BURST_MODE_ENABLE: Burst mode is enabled for this channel
  160. *
  161. */
  162. enum ipa3_mhi_burst_mode {
  163. IPA_MHI_BURST_MODE_DEFAULT,
  164. IPA_MHI_BURST_MODE_RESERVED,
  165. IPA_MHI_BURST_MODE_DISABLE,
  166. IPA_MHI_BURST_MODE_ENABLE,
  167. };
  168. /**
  169. * enum ipa_hw_mhi_channel_states - MHI channel state machine
  170. *
  171. * Values are according to MHI specification
  172. * @IPA_HW_MHI_CHANNEL_STATE_DISABLE: Channel is disabled and not processed by
  173. * the host or device.
  174. * @IPA_HW_MHI_CHANNEL_STATE_ENABLE: A channel is enabled after being
  175. * initialized and configured by host, including its channel context and
  176. * associated transfer ring. While this state, the channel is not active
  177. * and the device does not process transfer.
  178. * @IPA_HW_MHI_CHANNEL_STATE_RUN: The device processes transfers and doorbell
  179. * for channels.
  180. * @IPA_HW_MHI_CHANNEL_STATE_SUSPEND: Used to halt operations on the channel.
  181. * The device does not process transfers for the channel in this state.
  182. * This state is typically used to synchronize the transition to low power
  183. * modes.
  184. * @IPA_HW_MHI_CHANNEL_STATE_STOP: Used to halt operations on the channel.
  185. * The device does not process transfers for the channel in this state.
  186. * @IPA_HW_MHI_CHANNEL_STATE_ERROR: The device detected an error in an element
  187. * from the transfer ring associated with the channel.
  188. * @IPA_HW_MHI_CHANNEL_STATE_INVALID: Invalid state. Shall not be in use in
  189. * operational scenario.
  190. */
  191. enum ipa_hw_mhi_channel_states {
  192. IPA_HW_MHI_CHANNEL_STATE_DISABLE = 0,
  193. IPA_HW_MHI_CHANNEL_STATE_ENABLE = 1,
  194. IPA_HW_MHI_CHANNEL_STATE_RUN = 2,
  195. IPA_HW_MHI_CHANNEL_STATE_SUSPEND = 3,
  196. IPA_HW_MHI_CHANNEL_STATE_STOP = 4,
  197. IPA_HW_MHI_CHANNEL_STATE_ERROR = 5,
  198. IPA_HW_MHI_CHANNEL_STATE_INVALID = 0xFF
  199. };
  200. /**
  201. * Structure holding the parameters for IPA_CPU_2_HW_CMD_MHI_DL_UL_SYNC_INFO
  202. * command. Parameters are sent as 32b immediate parameters.
  203. * @isDlUlSyncEnabled: Flag to indicate if DL UL Syncronization is enabled
  204. * @UlAccmVal: UL Timer Accumulation value (Period after which device will poll
  205. * for UL data)
  206. * @ulMsiEventThreshold: Threshold at which HW fires MSI to host for UL events
  207. * @dlMsiEventThreshold: Threshold at which HW fires MSI to host for DL events
  208. */
  209. union IpaHwMhiDlUlSyncCmdData_t {
  210. struct IpaHwMhiDlUlSyncCmdParams_t {
  211. u32 isDlUlSyncEnabled:8;
  212. u32 UlAccmVal:8;
  213. u32 ulMsiEventThreshold:8;
  214. u32 dlMsiEventThreshold:8;
  215. } params;
  216. u32 raw32b;
  217. };
  218. struct ipa_mhi_ch_ctx {
  219. u8 chstate;/*0-7*/
  220. u8 brstmode:2;/*8-9*/
  221. u8 pollcfg:6;/*10-15*/
  222. u16 rsvd;/*16-31*/
  223. u32 chtype;
  224. u32 erindex;
  225. u64 rbase;
  226. u64 rlen;
  227. u64 rp;
  228. u64 wp;
  229. } __packed;
  230. struct ipa_mhi_ev_ctx {
  231. u32 intmodc:16;
  232. u32 intmodt:16;
  233. u32 ertype;
  234. u32 msivec;
  235. u64 rbase;
  236. u64 rlen;
  237. u64 rp;
  238. u64 wp;
  239. } __packed;
  240. struct ipa_mhi_init_uc_engine {
  241. struct ipa_mhi_msi_info *msi;
  242. u32 mmio_addr;
  243. u32 host_ctrl_addr;
  244. u32 host_data_addr;
  245. u32 first_ch_idx;
  246. u32 first_er_idx;
  247. union IpaHwMhiDlUlSyncCmdData_t *ipa_cached_dl_ul_sync_info;
  248. };
  249. struct ipa_mhi_init_gsi_engine {
  250. u32 first_ch_idx;
  251. };
  252. struct ipa_mhi_init_engine {
  253. struct ipa_mhi_init_uc_engine uC;
  254. struct ipa_mhi_init_gsi_engine gsi;
  255. };
  256. struct start_gsi_channel {
  257. enum ipa_hw_mhi_channel_states state;
  258. struct ipa_mhi_msi_info *msi;
  259. struct ipa_mhi_ev_ctx *ev_ctx_host;
  260. u64 event_context_addr;
  261. struct ipa_mhi_ch_ctx *ch_ctx_host;
  262. u64 channel_context_addr;
  263. void (*ch_err_cb)(struct gsi_chan_err_notify *notify);
  264. void (*ev_err_cb)(struct gsi_evt_err_notify *notify);
  265. void *channel;
  266. bool assert_bit40;
  267. struct gsi_mhi_channel_scratch *mhi;
  268. unsigned long *cached_gsi_evt_ring_hdl;
  269. uint8_t evchid;
  270. };
  271. struct start_uc_channel {
  272. enum ipa_hw_mhi_channel_states state;
  273. u8 index;
  274. u8 id;
  275. };
  276. struct start_mhi_channel {
  277. struct start_uc_channel uC;
  278. struct start_gsi_channel gsi;
  279. };
  280. struct ipa_mhi_connect_params_internal {
  281. struct ipa_sys_connect_params *sys;
  282. u8 channel_id;
  283. struct start_mhi_channel start;
  284. };
  285. /**
  286. * struct ipa_hdr_offset_entry - IPA header offset entry
  287. * @link: entry's link in global header offset entries list
  288. * @offset: the offset
  289. * @bin: bin
  290. * @ipacm_installed: indicate if installed by ipacm
  291. */
  292. struct ipa_hdr_offset_entry {
  293. struct list_head link;
  294. u32 offset;
  295. u32 bin;
  296. bool ipacm_installed;
  297. };
  298. extern const char *ipa_clients_strings[];
  299. #define IPA_IPC_LOGGING(buf, fmt, args...) \
  300. do { \
  301. if (buf) \
  302. ipc_log_string((buf), fmt, __func__, __LINE__, \
  303. ## args); \
  304. } while (0)
  305. void ipa_inc_client_enable_clks(struct ipa_active_client_logging_info *id);
  306. void ipa_dec_client_disable_clks(struct ipa_active_client_logging_info *id);
  307. int ipa_inc_client_enable_clks_no_block(
  308. struct ipa_active_client_logging_info *id);
  309. int ipa_suspend_resource_no_block(enum ipa_rm_resource_name resource);
  310. int ipa_resume_resource(enum ipa_rm_resource_name name);
  311. int ipa_suspend_resource_sync(enum ipa_rm_resource_name resource);
  312. int ipa_set_required_perf_profile(enum ipa_voltage_level floor_voltage,
  313. u32 bandwidth_mbps);
  314. void *ipa_get_ipc_logbuf(void);
  315. void *ipa_get_ipc_logbuf_low(void);
  316. void ipa_assert(void);
  317. /* MHI */
  318. int ipa_mhi_init_engine(struct ipa_mhi_init_engine *params);
  319. int ipa_connect_mhi_pipe(struct ipa_mhi_connect_params_internal *in,
  320. u32 *clnt_hdl);
  321. int ipa_disconnect_mhi_pipe(u32 clnt_hdl);
  322. bool ipa_mhi_stop_gsi_channel(enum ipa_client_type client);
  323. int ipa_qmi_enable_force_clear_datapath_send(
  324. struct ipa_enable_force_clear_datapath_req_msg_v01 *req);
  325. int ipa_qmi_disable_force_clear_datapath_send(
  326. struct ipa_disable_force_clear_datapath_req_msg_v01 *req);
  327. int ipa_generate_tag_process(void);
  328. int ipa_disable_sps_pipe(enum ipa_client_type client);
  329. int ipa_mhi_reset_channel_internal(enum ipa_client_type client);
  330. int ipa_mhi_start_channel_internal(enum ipa_client_type client);
  331. bool ipa_mhi_sps_channel_empty(enum ipa_client_type client);
  332. int ipa_mhi_resume_channels_internal(enum ipa_client_type client,
  333. bool LPTransitionRejected, bool brstmode_enabled,
  334. union __packed gsi_channel_scratch ch_scratch, u8 index);
  335. int ipa_mhi_handle_ipa_config_req(struct ipa_config_req_msg_v01 *config_req);
  336. int ipa_mhi_query_ch_info(enum ipa_client_type client,
  337. struct gsi_chan_info *ch_info);
  338. int ipa_mhi_destroy_channel(enum ipa_client_type client);
  339. int ipa_mhi_is_using_dma(bool *flag);
  340. const char *ipa_mhi_get_state_str(int state);
  341. /* MHI uC */
  342. int ipa_uc_mhi_send_dl_ul_sync_info(union IpaHwMhiDlUlSyncCmdData_t *cmd);
  343. int ipa_uc_mhi_init
  344. (void (*ready_cb)(void), void (*wakeup_request_cb)(void));
  345. void ipa_uc_mhi_cleanup(void);
  346. int ipa_uc_mhi_reset_channel(int channelHandle);
  347. int ipa_uc_mhi_suspend_channel(int channelHandle);
  348. int ipa_uc_mhi_stop_event_update_channel(int channelHandle);
  349. int ipa_uc_mhi_print_stats(char *dbg_buff, int size);
  350. /* uC */
  351. int ipa_uc_state_check(void);
  352. /* general */
  353. void ipa_get_holb(int ep_idx, struct ipa_ep_cfg_holb *holb);
  354. void ipa_set_tag_process_before_gating(bool val);
  355. bool ipa_has_open_aggr_frame(enum ipa_client_type client);
  356. int ipa_setup_uc_ntn_pipes(struct ipa_ntn_conn_in_params *in,
  357. ipa_notify_cb notify, void *priv, u8 hdr_len,
  358. struct ipa_ntn_conn_out_params *outp);
  359. int ipa_tear_down_uc_offload_pipes(int ipa_ep_idx_ul, int ipa_ep_idx_dl,
  360. struct ipa_ntn_conn_in_params *params);
  361. u8 *ipa_write_64(u64 w, u8 *dest);
  362. u8 *ipa_write_32(u32 w, u8 *dest);
  363. u8 *ipa_write_16(u16 hw, u8 *dest);
  364. u8 *ipa_write_8(u8 b, u8 *dest);
  365. u8 *ipa_pad_to_64(u8 *dest);
  366. u8 *ipa_pad_to_32(u8 *dest);
  367. int ipa_ntn_uc_reg_rdyCB(void (*ipauc_ready_cb)(void *user_data),
  368. void *user_data);
  369. void ipa_ntn_uc_dereg_rdyCB(void);
  370. int ipa_conn_wdi_pipes(struct ipa_wdi_conn_in_params *in,
  371. struct ipa_wdi_conn_out_params *out,
  372. ipa_wdi_meter_notifier_cb wdi_notify);
  373. int ipa_disconn_wdi_pipes(int ipa_ep_idx_tx, int ipa_ep_idx_rx);
  374. int ipa_enable_wdi_pipes(int ipa_ep_idx_tx, int ipa_ep_idx_rx);
  375. int ipa_disable_wdi_pipes(int ipa_ep_idx_tx, int ipa_ep_idx_rx);
  376. const char *ipa_get_version_string(enum ipa_hw_type ver);
  377. int ipa_start_gsi_channel(u32 clnt_hdl);
  378. int ipa_smmu_store_sgt(struct sg_table **out_ch_ptr,
  379. struct sg_table *in_sgt_ptr);
  380. int ipa_smmu_free_sgt(struct sg_table **out_sgt_ptr);
  381. #ifdef CONFIG_IPA_UT
  382. int ipa_ut_module_init(void);
  383. void ipa_ut_module_exit(void);
  384. #else
  385. static inline int ipa_ut_module_init(void)
  386. {
  387. return -EPERM;
  388. }
  389. static inline void ipa_ut_module_exit(void)
  390. {
  391. }
  392. #endif
  393. int ipa_wigig_internal_init(
  394. struct ipa_wdi_uc_ready_params *inout,
  395. ipa_wigig_misc_int_cb int_notify,
  396. phys_addr_t *uc_db_pa);
  397. int ipa_conn_wigig_rx_pipe_i(void *in, struct ipa_wigig_conn_out_params *out,
  398. struct dentry **parent);
  399. int ipa_conn_wigig_client_i(void *in, struct ipa_wigig_conn_out_params *out,
  400. ipa_notify_cb tx_notify,
  401. void *priv);
  402. int ipa_wigig_uc_msi_init(
  403. bool init,
  404. phys_addr_t periph_baddr_pa,
  405. phys_addr_t pseudo_cause_pa,
  406. phys_addr_t int_gen_tx_pa,
  407. phys_addr_t int_gen_rx_pa,
  408. phys_addr_t dma_ep_misc_pa);
  409. int ipa_disconn_wigig_pipe_i(enum ipa_client_type client,
  410. struct ipa_wigig_pipe_setup_info_smmu *pipe_smmu,
  411. void *dbuff);
  412. int ipa_enable_wigig_pipe_i(enum ipa_client_type client);
  413. int ipa_disable_wigig_pipe_i(enum ipa_client_type client);
  414. int ipa_wigig_send_msg(int msg_type,
  415. const char *netdev_name, u8 *mac,
  416. enum ipa_client_type client, bool to_wigig);
  417. int ipa_wigig_save_regs(void);
  418. void ipa_register_client_callback(int (*client_cb)(bool is_lock),
  419. bool (*teth_port_state)(void), u32 ipa_ep_idx);
  420. void ipa_deregister_client_callback(u32 ipa_ep_idx);
  421. #endif /* _IPA_COMMON_I_H_ */