qed_sp.h 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364
  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 rx_queue_start_ramrod_data rx_queue_start;
  49. struct rx_queue_update_ramrod_data rx_queue_update;
  50. struct rx_queue_stop_ramrod_data rx_queue_stop;
  51. struct tx_queue_start_ramrod_data tx_queue_start;
  52. struct tx_queue_stop_ramrod_data tx_queue_stop;
  53. struct vport_start_ramrod_data vport_start;
  54. struct vport_stop_ramrod_data vport_stop;
  55. struct vport_update_ramrod_data vport_update;
  56. struct vport_filter_update_ramrod_data vport_filter_update;
  57. };
  58. #define EQ_MAX_CREDIT 0xffffffff
  59. enum spq_priority {
  60. QED_SPQ_PRIORITY_NORMAL,
  61. QED_SPQ_PRIORITY_HIGH,
  62. };
  63. union qed_spq_req_comp {
  64. struct qed_spq_comp_cb cb;
  65. u64 *done_addr;
  66. };
  67. struct qed_spq_comp_done {
  68. u64 done;
  69. u8 fw_return_code;
  70. };
  71. struct qed_spq_entry {
  72. struct list_head list;
  73. u8 flags;
  74. /* HSI slow path element */
  75. struct slow_path_element elem;
  76. union ramrod_data ramrod;
  77. enum spq_priority priority;
  78. /* pending queue for this entry */
  79. struct list_head *queue;
  80. enum spq_mode comp_mode;
  81. struct qed_spq_comp_cb comp_cb;
  82. struct qed_spq_comp_done comp_done; /* SPQ_MODE_EBLOCK */
  83. };
  84. struct qed_eq {
  85. struct qed_chain chain;
  86. u8 eq_sb_index; /* index within the SB */
  87. __le16 *p_fw_cons; /* ptr to index value */
  88. };
  89. struct qed_consq {
  90. struct qed_chain chain;
  91. };
  92. struct qed_spq {
  93. spinlock_t lock; /* SPQ lock */
  94. struct list_head unlimited_pending;
  95. struct list_head pending;
  96. struct list_head completion_pending;
  97. struct list_head free_pool;
  98. struct qed_chain chain;
  99. /* allocated dma-able memory for spq entries (+ramrod data) */
  100. dma_addr_t p_phys;
  101. struct qed_spq_entry *p_virt;
  102. #define SPQ_RING_SIZE \
  103. (CORE_SPQE_PAGE_SIZE_BYTES / sizeof(struct slow_path_element))
  104. /* Bitmap for handling out-of-order completions */
  105. DECLARE_BITMAP(p_comp_bitmap, SPQ_RING_SIZE);
  106. u8 comp_bitmap_idx;
  107. /* Statistics */
  108. u32 unlimited_pending_count;
  109. u32 normal_count;
  110. u32 high_count;
  111. u32 comp_sent_count;
  112. u32 comp_count;
  113. u32 cid;
  114. };
  115. /**
  116. * @brief qed_spq_post - Posts a Slow hwfn request to FW, or lacking that
  117. * Pends it to the future list.
  118. *
  119. * @param p_hwfn
  120. * @param p_req
  121. *
  122. * @return int
  123. */
  124. int qed_spq_post(struct qed_hwfn *p_hwfn,
  125. struct qed_spq_entry *p_ent,
  126. u8 *fw_return_code);
  127. /**
  128. * @brief qed_spq_allocate - Alloocates & initializes the SPQ and EQ.
  129. *
  130. * @param p_hwfn
  131. *
  132. * @return int
  133. */
  134. int qed_spq_alloc(struct qed_hwfn *p_hwfn);
  135. /**
  136. * @brief qed_spq_setup - Reset the SPQ to its start state.
  137. *
  138. * @param p_hwfn
  139. */
  140. void qed_spq_setup(struct qed_hwfn *p_hwfn);
  141. /**
  142. * @brief qed_spq_deallocate - Deallocates the given SPQ struct.
  143. *
  144. * @param p_hwfn
  145. */
  146. void qed_spq_free(struct qed_hwfn *p_hwfn);
  147. /**
  148. * @brief qed_spq_get_entry - Obtain an entrry from the spq
  149. * free pool list.
  150. *
  151. *
  152. *
  153. * @param p_hwfn
  154. * @param pp_ent
  155. *
  156. * @return int
  157. */
  158. int
  159. qed_spq_get_entry(struct qed_hwfn *p_hwfn,
  160. struct qed_spq_entry **pp_ent);
  161. /**
  162. * @brief qed_spq_return_entry - Return an entry to spq free
  163. * pool list
  164. *
  165. * @param p_hwfn
  166. * @param p_ent
  167. */
  168. void qed_spq_return_entry(struct qed_hwfn *p_hwfn,
  169. struct qed_spq_entry *p_ent);
  170. /**
  171. * @brief qed_eq_allocate - Allocates & initializes an EQ struct
  172. *
  173. * @param p_hwfn
  174. * @param num_elem number of elements in the eq
  175. *
  176. * @return struct qed_eq* - a newly allocated structure; NULL upon error.
  177. */
  178. struct qed_eq *qed_eq_alloc(struct qed_hwfn *p_hwfn,
  179. u16 num_elem);
  180. /**
  181. * @brief qed_eq_setup - Reset the SPQ to its start state.
  182. *
  183. * @param p_hwfn
  184. * @param p_eq
  185. */
  186. void qed_eq_setup(struct qed_hwfn *p_hwfn,
  187. struct qed_eq *p_eq);
  188. /**
  189. * @brief qed_eq_deallocate - deallocates the given EQ struct.
  190. *
  191. * @param p_hwfn
  192. * @param p_eq
  193. */
  194. void qed_eq_free(struct qed_hwfn *p_hwfn,
  195. struct qed_eq *p_eq);
  196. /**
  197. * @brief qed_eq_prod_update - update the FW with default EQ producer
  198. *
  199. * @param p_hwfn
  200. * @param prod
  201. */
  202. void qed_eq_prod_update(struct qed_hwfn *p_hwfn,
  203. u16 prod);
  204. /**
  205. * @brief qed_eq_completion - Completes currently pending EQ elements
  206. *
  207. * @param p_hwfn
  208. * @param cookie
  209. *
  210. * @return int
  211. */
  212. int qed_eq_completion(struct qed_hwfn *p_hwfn,
  213. void *cookie);
  214. /**
  215. * @brief qed_spq_completion - Completes a single event
  216. *
  217. * @param p_hwfn
  218. * @param echo - echo value from cookie (used for determining completion)
  219. * @param p_data - data from cookie (used in callback function if applicable)
  220. *
  221. * @return int
  222. */
  223. int qed_spq_completion(struct qed_hwfn *p_hwfn,
  224. __le16 echo,
  225. u8 fw_return_code,
  226. union event_ring_data *p_data);
  227. /**
  228. * @brief qed_spq_get_cid - Given p_hwfn, return cid for the hwfn's SPQ
  229. *
  230. * @param p_hwfn
  231. *
  232. * @return u32 - SPQ CID
  233. */
  234. u32 qed_spq_get_cid(struct qed_hwfn *p_hwfn);
  235. /**
  236. * @brief qed_consq_alloc - Allocates & initializes an ConsQ
  237. * struct
  238. *
  239. * @param p_hwfn
  240. *
  241. * @return struct qed_eq* - a newly allocated structure; NULL upon error.
  242. */
  243. struct qed_consq *qed_consq_alloc(struct qed_hwfn *p_hwfn);
  244. /**
  245. * @brief qed_consq_setup - Reset the ConsQ to its start
  246. * state.
  247. *
  248. * @param p_hwfn
  249. * @param p_eq
  250. */
  251. void qed_consq_setup(struct qed_hwfn *p_hwfn,
  252. struct qed_consq *p_consq);
  253. /**
  254. * @brief qed_consq_free - deallocates the given ConsQ struct.
  255. *
  256. * @param p_hwfn
  257. * @param p_eq
  258. */
  259. void qed_consq_free(struct qed_hwfn *p_hwfn,
  260. struct qed_consq *p_consq);
  261. /**
  262. * @file
  263. *
  264. * @brief Slow-hwfn low-level commands (Ramrods) function definitions.
  265. */
  266. #define QED_SP_EQ_COMPLETION 0x01
  267. #define QED_SP_CQE_COMPLETION 0x02
  268. struct qed_sp_init_request_params {
  269. size_t ramrod_data_size;
  270. enum spq_mode comp_mode;
  271. struct qed_spq_comp_cb *p_comp_data;
  272. };
  273. int qed_sp_init_request(struct qed_hwfn *p_hwfn,
  274. struct qed_spq_entry **pp_ent,
  275. u32 cid,
  276. u16 opaque_fid,
  277. u8 cmd,
  278. u8 protocol,
  279. struct qed_sp_init_request_params *p_params);
  280. /**
  281. * @brief qed_sp_pf_start - PF Function Start Ramrod
  282. *
  283. * This ramrod is sent to initialize a physical function (PF). It will
  284. * configure the function related parameters and write its completion to the
  285. * event ring specified in the parameters.
  286. *
  287. * Ramrods complete on the common event ring for the PF. This ring is
  288. * allocated by the driver on host memory and its parameters are written
  289. * to the internal RAM of the UStorm by the Function Start Ramrod.
  290. *
  291. * @param p_hwfn
  292. * @param mode
  293. *
  294. * @return int
  295. */
  296. int qed_sp_pf_start(struct qed_hwfn *p_hwfn,
  297. enum mf_mode mode);
  298. /**
  299. * @brief qed_sp_pf_stop - PF Function Stop Ramrod
  300. *
  301. * This ramrod is sent to close a Physical Function (PF). It is the last ramrod
  302. * sent and the last completion written to the PFs Event Ring. This ramrod also
  303. * deletes the context for the Slowhwfn connection on this PF.
  304. *
  305. * @note Not required for first packet.
  306. *
  307. * @param p_hwfn
  308. *
  309. * @return int
  310. */
  311. int qed_sp_pf_stop(struct qed_hwfn *p_hwfn);
  312. #endif