qed_sp.h 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429
  1. /* QLogic qed NIC Driver
  2. * Copyright (c) 2015 QLogic Corporation
  3. *
  4. * This software is available under the terms of the GNU General Public License
  5. * (GPL) Version 2, available from the file COPYING in the main directory of
  6. * this source tree.
  7. */
  8. #ifndef _QED_SP_H
  9. #define _QED_SP_H
  10. #include <linux/types.h>
  11. #include <linux/kernel.h>
  12. #include <linux/list.h>
  13. #include <linux/slab.h>
  14. #include <linux/spinlock.h>
  15. #include <linux/qed/qed_chain.h>
  16. #include "qed.h"
  17. #include "qed_hsi.h"
  18. enum spq_mode {
  19. QED_SPQ_MODE_BLOCK, /* Client will poll a designated mem. address */
  20. QED_SPQ_MODE_CB, /* Client supplies a callback */
  21. QED_SPQ_MODE_EBLOCK, /* QED should block until completion */
  22. };
  23. struct qed_spq_comp_cb {
  24. void (*function)(struct qed_hwfn *,
  25. void *,
  26. union event_ring_data *,
  27. u8 fw_return_code);
  28. void *cookie;
  29. };
  30. /**
  31. * @brief qed_eth_cqe_completion - handles the completion of a
  32. * ramrod on the cqe ring
  33. *
  34. * @param p_hwfn
  35. * @param cqe
  36. *
  37. * @return int
  38. */
  39. int qed_eth_cqe_completion(struct qed_hwfn *p_hwfn,
  40. struct eth_slow_path_rx_cqe *cqe);
  41. /**
  42. * @file
  43. *
  44. * QED Slow-hwfn queue interface
  45. */
  46. union ramrod_data {
  47. struct pf_start_ramrod_data pf_start;
  48. struct pf_update_ramrod_data pf_update;
  49. struct rx_queue_start_ramrod_data rx_queue_start;
  50. struct rx_queue_update_ramrod_data rx_queue_update;
  51. struct rx_queue_stop_ramrod_data rx_queue_stop;
  52. struct tx_queue_start_ramrod_data tx_queue_start;
  53. struct tx_queue_stop_ramrod_data tx_queue_stop;
  54. struct vport_start_ramrod_data vport_start;
  55. struct vport_stop_ramrod_data vport_stop;
  56. struct vport_update_ramrod_data vport_update;
  57. struct core_rx_start_ramrod_data core_rx_queue_start;
  58. struct core_rx_stop_ramrod_data core_rx_queue_stop;
  59. struct core_tx_start_ramrod_data core_tx_queue_start;
  60. struct core_tx_stop_ramrod_data core_tx_queue_stop;
  61. struct vport_filter_update_ramrod_data vport_filter_update;
  62. struct rdma_init_func_ramrod_data rdma_init_func;
  63. struct rdma_close_func_ramrod_data rdma_close_func;
  64. struct rdma_register_tid_ramrod_data rdma_register_tid;
  65. struct rdma_deregister_tid_ramrod_data rdma_deregister_tid;
  66. struct roce_create_qp_resp_ramrod_data roce_create_qp_resp;
  67. struct roce_create_qp_req_ramrod_data roce_create_qp_req;
  68. struct roce_modify_qp_resp_ramrod_data roce_modify_qp_resp;
  69. struct roce_modify_qp_req_ramrod_data roce_modify_qp_req;
  70. struct roce_query_qp_resp_ramrod_data roce_query_qp_resp;
  71. struct roce_query_qp_req_ramrod_data roce_query_qp_req;
  72. struct roce_destroy_qp_resp_ramrod_data roce_destroy_qp_resp;
  73. struct roce_destroy_qp_req_ramrod_data roce_destroy_qp_req;
  74. struct rdma_create_cq_ramrod_data rdma_create_cq;
  75. struct rdma_destroy_cq_ramrod_data rdma_destroy_cq;
  76. struct rdma_srq_create_ramrod_data rdma_create_srq;
  77. struct rdma_srq_destroy_ramrod_data rdma_destroy_srq;
  78. struct rdma_srq_modify_ramrod_data rdma_modify_srq;
  79. struct roce_init_func_ramrod_data roce_init_func;
  80. struct iscsi_slow_path_hdr iscsi_empty;
  81. struct iscsi_init_ramrod_params iscsi_init;
  82. struct iscsi_spe_func_dstry iscsi_destroy;
  83. struct iscsi_spe_conn_offload iscsi_conn_offload;
  84. struct iscsi_conn_update_ramrod_params iscsi_conn_update;
  85. struct iscsi_spe_conn_termination iscsi_conn_terminate;
  86. struct vf_start_ramrod_data vf_start;
  87. struct vf_stop_ramrod_data vf_stop;
  88. };
  89. #define EQ_MAX_CREDIT 0xffffffff
  90. enum spq_priority {
  91. QED_SPQ_PRIORITY_NORMAL,
  92. QED_SPQ_PRIORITY_HIGH,
  93. };
  94. union qed_spq_req_comp {
  95. struct qed_spq_comp_cb cb;
  96. u64 *done_addr;
  97. };
  98. struct qed_spq_comp_done {
  99. unsigned int done;
  100. u8 fw_return_code;
  101. };
  102. struct qed_spq_entry {
  103. struct list_head list;
  104. u8 flags;
  105. /* HSI slow path element */
  106. struct slow_path_element elem;
  107. union ramrod_data ramrod;
  108. enum spq_priority priority;
  109. /* pending queue for this entry */
  110. struct list_head *queue;
  111. enum spq_mode comp_mode;
  112. struct qed_spq_comp_cb comp_cb;
  113. struct qed_spq_comp_done comp_done; /* SPQ_MODE_EBLOCK */
  114. };
  115. struct qed_eq {
  116. struct qed_chain chain;
  117. u8 eq_sb_index; /* index within the SB */
  118. __le16 *p_fw_cons; /* ptr to index value */
  119. };
  120. struct qed_consq {
  121. struct qed_chain chain;
  122. };
  123. struct qed_spq {
  124. spinlock_t lock; /* SPQ lock */
  125. struct list_head unlimited_pending;
  126. struct list_head pending;
  127. struct list_head completion_pending;
  128. struct list_head free_pool;
  129. struct qed_chain chain;
  130. /* allocated dma-able memory for spq entries (+ramrod data) */
  131. dma_addr_t p_phys;
  132. struct qed_spq_entry *p_virt;
  133. #define SPQ_RING_SIZE \
  134. (CORE_SPQE_PAGE_SIZE_BYTES / sizeof(struct slow_path_element))
  135. /* Bitmap for handling out-of-order completions */
  136. DECLARE_BITMAP(p_comp_bitmap, SPQ_RING_SIZE);
  137. u8 comp_bitmap_idx;
  138. /* Statistics */
  139. u32 unlimited_pending_count;
  140. u32 normal_count;
  141. u32 high_count;
  142. u32 comp_sent_count;
  143. u32 comp_count;
  144. u32 cid;
  145. };
  146. /**
  147. * @brief qed_spq_post - Posts a Slow hwfn request to FW, or lacking that
  148. * Pends it to the future list.
  149. *
  150. * @param p_hwfn
  151. * @param p_req
  152. *
  153. * @return int
  154. */
  155. int qed_spq_post(struct qed_hwfn *p_hwfn,
  156. struct qed_spq_entry *p_ent,
  157. u8 *fw_return_code);
  158. /**
  159. * @brief qed_spq_allocate - Alloocates & initializes the SPQ and EQ.
  160. *
  161. * @param p_hwfn
  162. *
  163. * @return int
  164. */
  165. int qed_spq_alloc(struct qed_hwfn *p_hwfn);
  166. /**
  167. * @brief qed_spq_setup - Reset the SPQ to its start state.
  168. *
  169. * @param p_hwfn
  170. */
  171. void qed_spq_setup(struct qed_hwfn *p_hwfn);
  172. /**
  173. * @brief qed_spq_deallocate - Deallocates the given SPQ struct.
  174. *
  175. * @param p_hwfn
  176. */
  177. void qed_spq_free(struct qed_hwfn *p_hwfn);
  178. /**
  179. * @brief qed_spq_get_entry - Obtain an entrry from the spq
  180. * free pool list.
  181. *
  182. *
  183. *
  184. * @param p_hwfn
  185. * @param pp_ent
  186. *
  187. * @return int
  188. */
  189. int
  190. qed_spq_get_entry(struct qed_hwfn *p_hwfn,
  191. struct qed_spq_entry **pp_ent);
  192. /**
  193. * @brief qed_spq_return_entry - Return an entry to spq free
  194. * pool list
  195. *
  196. * @param p_hwfn
  197. * @param p_ent
  198. */
  199. void qed_spq_return_entry(struct qed_hwfn *p_hwfn,
  200. struct qed_spq_entry *p_ent);
  201. /**
  202. * @brief qed_eq_allocate - Allocates & initializes an EQ struct
  203. *
  204. * @param p_hwfn
  205. * @param num_elem number of elements in the eq
  206. *
  207. * @return struct qed_eq* - a newly allocated structure; NULL upon error.
  208. */
  209. struct qed_eq *qed_eq_alloc(struct qed_hwfn *p_hwfn,
  210. u16 num_elem);
  211. /**
  212. * @brief qed_eq_setup - Reset the SPQ to its start state.
  213. *
  214. * @param p_hwfn
  215. * @param p_eq
  216. */
  217. void qed_eq_setup(struct qed_hwfn *p_hwfn,
  218. struct qed_eq *p_eq);
  219. /**
  220. * @brief qed_eq_deallocate - deallocates the given EQ struct.
  221. *
  222. * @param p_hwfn
  223. * @param p_eq
  224. */
  225. void qed_eq_free(struct qed_hwfn *p_hwfn,
  226. struct qed_eq *p_eq);
  227. /**
  228. * @brief qed_eq_prod_update - update the FW with default EQ producer
  229. *
  230. * @param p_hwfn
  231. * @param prod
  232. */
  233. void qed_eq_prod_update(struct qed_hwfn *p_hwfn,
  234. u16 prod);
  235. /**
  236. * @brief qed_eq_completion - Completes currently pending EQ elements
  237. *
  238. * @param p_hwfn
  239. * @param cookie
  240. *
  241. * @return int
  242. */
  243. int qed_eq_completion(struct qed_hwfn *p_hwfn,
  244. void *cookie);
  245. /**
  246. * @brief qed_spq_completion - Completes a single event
  247. *
  248. * @param p_hwfn
  249. * @param echo - echo value from cookie (used for determining completion)
  250. * @param p_data - data from cookie (used in callback function if applicable)
  251. *
  252. * @return int
  253. */
  254. int qed_spq_completion(struct qed_hwfn *p_hwfn,
  255. __le16 echo,
  256. u8 fw_return_code,
  257. union event_ring_data *p_data);
  258. /**
  259. * @brief qed_spq_get_cid - Given p_hwfn, return cid for the hwfn's SPQ
  260. *
  261. * @param p_hwfn
  262. *
  263. * @return u32 - SPQ CID
  264. */
  265. u32 qed_spq_get_cid(struct qed_hwfn *p_hwfn);
  266. /**
  267. * @brief qed_consq_alloc - Allocates & initializes an ConsQ
  268. * struct
  269. *
  270. * @param p_hwfn
  271. *
  272. * @return struct qed_eq* - a newly allocated structure; NULL upon error.
  273. */
  274. struct qed_consq *qed_consq_alloc(struct qed_hwfn *p_hwfn);
  275. /**
  276. * @brief qed_consq_setup - Reset the ConsQ to its start
  277. * state.
  278. *
  279. * @param p_hwfn
  280. * @param p_eq
  281. */
  282. void qed_consq_setup(struct qed_hwfn *p_hwfn,
  283. struct qed_consq *p_consq);
  284. /**
  285. * @brief qed_consq_free - deallocates the given ConsQ struct.
  286. *
  287. * @param p_hwfn
  288. * @param p_eq
  289. */
  290. void qed_consq_free(struct qed_hwfn *p_hwfn,
  291. struct qed_consq *p_consq);
  292. /**
  293. * @file
  294. *
  295. * @brief Slow-hwfn low-level commands (Ramrods) function definitions.
  296. */
  297. #define QED_SP_EQ_COMPLETION 0x01
  298. #define QED_SP_CQE_COMPLETION 0x02
  299. struct qed_sp_init_data {
  300. u32 cid;
  301. u16 opaque_fid;
  302. /* Information regarding operation upon sending & completion */
  303. enum spq_mode comp_mode;
  304. struct qed_spq_comp_cb *p_comp_data;
  305. };
  306. int qed_sp_init_request(struct qed_hwfn *p_hwfn,
  307. struct qed_spq_entry **pp_ent,
  308. u8 cmd,
  309. u8 protocol,
  310. struct qed_sp_init_data *p_data);
  311. /**
  312. * @brief qed_sp_pf_start - PF Function Start Ramrod
  313. *
  314. * This ramrod is sent to initialize a physical function (PF). It will
  315. * configure the function related parameters and write its completion to the
  316. * event ring specified in the parameters.
  317. *
  318. * Ramrods complete on the common event ring for the PF. This ring is
  319. * allocated by the driver on host memory and its parameters are written
  320. * to the internal RAM of the UStorm by the Function Start Ramrod.
  321. *
  322. * @param p_hwfn
  323. * @param p_tunn
  324. * @param mode
  325. * @param allow_npar_tx_switch
  326. *
  327. * @return int
  328. */
  329. int qed_sp_pf_start(struct qed_hwfn *p_hwfn,
  330. struct qed_tunn_start_params *p_tunn,
  331. enum qed_mf_mode mode, bool allow_npar_tx_switch);
  332. /**
  333. * @brief qed_sp_pf_update - PF Function Update Ramrod
  334. *
  335. * This ramrod updates function-related parameters. Every parameter can be
  336. * updated independently, according to configuration flags.
  337. *
  338. * @param p_hwfn
  339. *
  340. * @return int
  341. */
  342. int qed_sp_pf_update(struct qed_hwfn *p_hwfn);
  343. /**
  344. * @brief qed_sp_pf_stop - PF Function Stop Ramrod
  345. *
  346. * This ramrod is sent to close a Physical Function (PF). It is the last ramrod
  347. * sent and the last completion written to the PFs Event Ring. This ramrod also
  348. * deletes the context for the Slowhwfn connection on this PF.
  349. *
  350. * @note Not required for first packet.
  351. *
  352. * @param p_hwfn
  353. *
  354. * @return int
  355. */
  356. int qed_sp_pf_stop(struct qed_hwfn *p_hwfn);
  357. int qed_sp_pf_update_tunn_cfg(struct qed_hwfn *p_hwfn,
  358. struct qed_tunn_update_params *p_tunn,
  359. enum spq_mode comp_mode,
  360. struct qed_spq_comp_cb *p_comp_data);
  361. /**
  362. * @brief qed_sp_heartbeat_ramrod - Send empty Ramrod
  363. *
  364. * @param p_hwfn
  365. *
  366. * @return int
  367. */
  368. int qed_sp_heartbeat_ramrod(struct qed_hwfn *p_hwfn);
  369. #endif