qed_fcoe_if.h 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef _QED_FCOE_IF_H
  3. #define _QED_FCOE_IF_H
  4. #include <linux/types.h>
  5. #include <linux/qed/qed_if.h>
  6. struct qed_fcoe_stats {
  7. u64 fcoe_rx_byte_cnt;
  8. u64 fcoe_rx_data_pkt_cnt;
  9. u64 fcoe_rx_xfer_pkt_cnt;
  10. u64 fcoe_rx_other_pkt_cnt;
  11. u32 fcoe_silent_drop_pkt_cmdq_full_cnt;
  12. u32 fcoe_silent_drop_pkt_rq_full_cnt;
  13. u32 fcoe_silent_drop_pkt_crc_error_cnt;
  14. u32 fcoe_silent_drop_pkt_task_invalid_cnt;
  15. u32 fcoe_silent_drop_total_pkt_cnt;
  16. u64 fcoe_tx_byte_cnt;
  17. u64 fcoe_tx_data_pkt_cnt;
  18. u64 fcoe_tx_xfer_pkt_cnt;
  19. u64 fcoe_tx_other_pkt_cnt;
  20. };
  21. struct qed_dev_fcoe_info {
  22. struct qed_dev_info common;
  23. void __iomem *primary_dbq_rq_addr;
  24. void __iomem *secondary_bdq_rq_addr;
  25. u64 wwpn;
  26. u64 wwnn;
  27. u8 num_cqs;
  28. };
  29. struct qed_fcoe_params_offload {
  30. dma_addr_t sq_pbl_addr;
  31. dma_addr_t sq_curr_page_addr;
  32. dma_addr_t sq_next_page_addr;
  33. u8 src_mac[ETH_ALEN];
  34. u8 dst_mac[ETH_ALEN];
  35. u16 tx_max_fc_pay_len;
  36. u16 e_d_tov_timer_val;
  37. u16 rec_tov_timer_val;
  38. u16 rx_max_fc_pay_len;
  39. u16 vlan_tag;
  40. struct fc_addr_nw s_id;
  41. u8 max_conc_seqs_c3;
  42. struct fc_addr_nw d_id;
  43. u8 flags;
  44. u8 def_q_idx;
  45. };
  46. #define MAX_TID_BLOCKS_FCOE (512)
  47. struct qed_fcoe_tid {
  48. u32 size; /* In bytes per task */
  49. u32 num_tids_per_block;
  50. u8 *blocks[MAX_TID_BLOCKS_FCOE];
  51. };
  52. struct qed_fcoe_cb_ops {
  53. struct qed_common_cb_ops common;
  54. u32 (*get_login_failures)(void *cookie);
  55. };
  56. void qed_fcoe_set_pf_params(struct qed_dev *cdev,
  57. struct qed_fcoe_pf_params *params);
  58. /**
  59. * struct qed_fcoe_ops - qed FCoE operations.
  60. * @common: common operations pointer
  61. * @fill_dev_info: fills FCoE specific information
  62. * @param cdev
  63. * @param info
  64. * @return 0 on sucesss, otherwise error value.
  65. * @register_ops: register FCoE operations
  66. * @param cdev
  67. * @param ops - specified using qed_iscsi_cb_ops
  68. * @param cookie - driver private
  69. * @ll2: light L2 operations pointer
  70. * @start: fcoe in FW
  71. * @param cdev
  72. * @param tasks - qed will fill information about tasks
  73. * return 0 on success, otherwise error value.
  74. * @stop: stops fcoe in FW
  75. * @param cdev
  76. * return 0 on success, otherwise error value.
  77. * @acquire_conn: acquire a new fcoe connection
  78. * @param cdev
  79. * @param handle - qed will fill handle that should be
  80. * used henceforth as identifier of the
  81. * connection.
  82. * @param p_doorbell - qed will fill the address of the
  83. * doorbell.
  84. * return 0 on sucesss, otherwise error value.
  85. * @release_conn: release a previously acquired fcoe connection
  86. * @param cdev
  87. * @param handle - the connection handle.
  88. * return 0 on success, otherwise error value.
  89. * @offload_conn: configures an offloaded connection
  90. * @param cdev
  91. * @param handle - the connection handle.
  92. * @param conn_info - the configuration to use for the
  93. * offload.
  94. * return 0 on success, otherwise error value.
  95. * @destroy_conn: stops an offloaded connection
  96. * @param cdev
  97. * @param handle - the connection handle.
  98. * @param terminate_params
  99. * return 0 on success, otherwise error value.
  100. * @get_stats: gets FCoE related statistics
  101. * @param cdev
  102. * @param stats - pointer to struck that would be filled
  103. * we stats
  104. * return 0 on success, error otherwise.
  105. */
  106. struct qed_fcoe_ops {
  107. const struct qed_common_ops *common;
  108. int (*fill_dev_info)(struct qed_dev *cdev,
  109. struct qed_dev_fcoe_info *info);
  110. void (*register_ops)(struct qed_dev *cdev,
  111. struct qed_fcoe_cb_ops *ops, void *cookie);
  112. const struct qed_ll2_ops *ll2;
  113. int (*start)(struct qed_dev *cdev, struct qed_fcoe_tid *tasks);
  114. int (*stop)(struct qed_dev *cdev);
  115. int (*acquire_conn)(struct qed_dev *cdev,
  116. u32 *handle,
  117. u32 *fw_cid, void __iomem **p_doorbell);
  118. int (*release_conn)(struct qed_dev *cdev, u32 handle);
  119. int (*offload_conn)(struct qed_dev *cdev,
  120. u32 handle,
  121. struct qed_fcoe_params_offload *conn_info);
  122. int (*destroy_conn)(struct qed_dev *cdev,
  123. u32 handle, dma_addr_t terminate_params);
  124. int (*get_stats)(struct qed_dev *cdev, struct qed_fcoe_stats *stats);
  125. };
  126. const struct qed_fcoe_ops *qed_get_fcoe_ops(void);
  127. void qed_put_fcoe_ops(void);
  128. #endif