qede.h 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421
  1. /* QLogic qede 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 _QEDE_H_
  9. #define _QEDE_H_
  10. #include <linux/compiler.h>
  11. #include <linux/version.h>
  12. #include <linux/workqueue.h>
  13. #include <linux/netdevice.h>
  14. #include <linux/interrupt.h>
  15. #include <linux/bitmap.h>
  16. #include <linux/kernel.h>
  17. #include <linux/mutex.h>
  18. #include <linux/bpf.h>
  19. #include <linux/io.h>
  20. #include <linux/qed/common_hsi.h>
  21. #include <linux/qed/eth_common.h>
  22. #include <linux/qed/qed_if.h>
  23. #include <linux/qed/qed_chain.h>
  24. #include <linux/qed/qed_eth_if.h>
  25. #define QEDE_MAJOR_VERSION 8
  26. #define QEDE_MINOR_VERSION 10
  27. #define QEDE_REVISION_VERSION 9
  28. #define QEDE_ENGINEERING_VERSION 20
  29. #define DRV_MODULE_VERSION __stringify(QEDE_MAJOR_VERSION) "." \
  30. __stringify(QEDE_MINOR_VERSION) "." \
  31. __stringify(QEDE_REVISION_VERSION) "." \
  32. __stringify(QEDE_ENGINEERING_VERSION)
  33. #define DRV_MODULE_SYM qede
  34. struct qede_stats {
  35. u64 no_buff_discards;
  36. u64 packet_too_big_discard;
  37. u64 ttl0_discard;
  38. u64 rx_ucast_bytes;
  39. u64 rx_mcast_bytes;
  40. u64 rx_bcast_bytes;
  41. u64 rx_ucast_pkts;
  42. u64 rx_mcast_pkts;
  43. u64 rx_bcast_pkts;
  44. u64 mftag_filter_discards;
  45. u64 mac_filter_discards;
  46. u64 tx_ucast_bytes;
  47. u64 tx_mcast_bytes;
  48. u64 tx_bcast_bytes;
  49. u64 tx_ucast_pkts;
  50. u64 tx_mcast_pkts;
  51. u64 tx_bcast_pkts;
  52. u64 tx_err_drop_pkts;
  53. u64 coalesced_pkts;
  54. u64 coalesced_events;
  55. u64 coalesced_aborts_num;
  56. u64 non_coalesced_pkts;
  57. u64 coalesced_bytes;
  58. /* port */
  59. u64 rx_64_byte_packets;
  60. u64 rx_65_to_127_byte_packets;
  61. u64 rx_128_to_255_byte_packets;
  62. u64 rx_256_to_511_byte_packets;
  63. u64 rx_512_to_1023_byte_packets;
  64. u64 rx_1024_to_1518_byte_packets;
  65. u64 rx_1519_to_1522_byte_packets;
  66. u64 rx_1519_to_2047_byte_packets;
  67. u64 rx_2048_to_4095_byte_packets;
  68. u64 rx_4096_to_9216_byte_packets;
  69. u64 rx_9217_to_16383_byte_packets;
  70. u64 rx_crc_errors;
  71. u64 rx_mac_crtl_frames;
  72. u64 rx_pause_frames;
  73. u64 rx_pfc_frames;
  74. u64 rx_align_errors;
  75. u64 rx_carrier_errors;
  76. u64 rx_oversize_packets;
  77. u64 rx_jabbers;
  78. u64 rx_undersize_packets;
  79. u64 rx_fragments;
  80. u64 tx_64_byte_packets;
  81. u64 tx_65_to_127_byte_packets;
  82. u64 tx_128_to_255_byte_packets;
  83. u64 tx_256_to_511_byte_packets;
  84. u64 tx_512_to_1023_byte_packets;
  85. u64 tx_1024_to_1518_byte_packets;
  86. u64 tx_1519_to_2047_byte_packets;
  87. u64 tx_2048_to_4095_byte_packets;
  88. u64 tx_4096_to_9216_byte_packets;
  89. u64 tx_9217_to_16383_byte_packets;
  90. u64 tx_pause_frames;
  91. u64 tx_pfc_frames;
  92. u64 tx_lpi_entry_count;
  93. u64 tx_total_collisions;
  94. u64 brb_truncates;
  95. u64 brb_discards;
  96. u64 tx_mac_ctrl_frames;
  97. };
  98. struct qede_vlan {
  99. struct list_head list;
  100. u16 vid;
  101. bool configured;
  102. };
  103. struct qede_rdma_dev {
  104. struct qedr_dev *qedr_dev;
  105. struct list_head entry;
  106. struct list_head roce_event_list;
  107. struct workqueue_struct *roce_wq;
  108. };
  109. struct qede_dev {
  110. struct qed_dev *cdev;
  111. struct net_device *ndev;
  112. struct pci_dev *pdev;
  113. u32 dp_module;
  114. u8 dp_level;
  115. u32 flags;
  116. #define QEDE_FLAG_IS_VF BIT(0)
  117. #define IS_VF(edev) (!!((edev)->flags & QEDE_FLAG_IS_VF))
  118. const struct qed_eth_ops *ops;
  119. struct qed_dev_eth_info dev_info;
  120. #define QEDE_MAX_RSS_CNT(edev) ((edev)->dev_info.num_queues)
  121. #define QEDE_MAX_TSS_CNT(edev) ((edev)->dev_info.num_queues)
  122. struct qede_fastpath *fp_array;
  123. u8 req_num_tx;
  124. u8 fp_num_tx;
  125. u8 req_num_rx;
  126. u8 fp_num_rx;
  127. u16 req_queues;
  128. u16 num_queues;
  129. #define QEDE_QUEUE_CNT(edev) ((edev)->num_queues)
  130. #define QEDE_RSS_COUNT(edev) ((edev)->num_queues - (edev)->fp_num_tx)
  131. #define QEDE_TSS_COUNT(edev) ((edev)->num_queues - (edev)->fp_num_rx)
  132. struct qed_int_info int_info;
  133. unsigned char primary_mac[ETH_ALEN];
  134. /* Smaller private varaiant of the RTNL lock */
  135. struct mutex qede_lock;
  136. u32 state; /* Protected by qede_lock */
  137. u16 rx_buf_size;
  138. u32 rx_copybreak;
  139. /* L2 header size + 2*VLANs (8 bytes) + LLC SNAP (8 bytes) */
  140. #define ETH_OVERHEAD (ETH_HLEN + 8 + 8)
  141. /* Max supported alignment is 256 (8 shift)
  142. * minimal alignment shift 6 is optimal for 57xxx HW performance
  143. */
  144. #define QEDE_RX_ALIGN_SHIFT max(6, min(8, L1_CACHE_SHIFT))
  145. /* We assume skb_build() uses sizeof(struct skb_shared_info) bytes
  146. * at the end of skb->data, to avoid wasting a full cache line.
  147. * This reduces memory use (skb->truesize).
  148. */
  149. #define QEDE_FW_RX_ALIGN_END \
  150. max_t(u64, 1UL << QEDE_RX_ALIGN_SHIFT, \
  151. SKB_DATA_ALIGN(sizeof(struct skb_shared_info)))
  152. struct qede_stats stats;
  153. #define QEDE_RSS_INDIR_INITED BIT(0)
  154. #define QEDE_RSS_KEY_INITED BIT(1)
  155. #define QEDE_RSS_CAPS_INITED BIT(2)
  156. u32 rss_params_inited; /* bit-field to track initialized rss params */
  157. struct qed_update_vport_rss_params rss_params;
  158. u16 q_num_rx_buffers; /* Must be a power of two */
  159. u16 q_num_tx_buffers; /* Must be a power of two */
  160. bool gro_disable;
  161. struct list_head vlan_list;
  162. u16 configured_vlans;
  163. u16 non_configured_vlans;
  164. bool accept_any_vlan;
  165. struct delayed_work sp_task;
  166. unsigned long sp_flags;
  167. u16 vxlan_dst_port;
  168. u16 geneve_dst_port;
  169. bool wol_enabled;
  170. struct qede_rdma_dev rdma_info;
  171. struct bpf_prog *xdp_prog;
  172. };
  173. enum QEDE_STATE {
  174. QEDE_STATE_CLOSED,
  175. QEDE_STATE_OPEN,
  176. };
  177. #define HILO_U64(hi, lo) ((((u64)(hi)) << 32) + (lo))
  178. #define MAX_NUM_TC 8
  179. #define MAX_NUM_PRI 8
  180. /* The driver supports the new build_skb() API:
  181. * RX ring buffer contains pointer to kmalloc() data only,
  182. * skb are built only after the frame was DMA-ed.
  183. */
  184. struct sw_rx_data {
  185. struct page *data;
  186. dma_addr_t mapping;
  187. unsigned int page_offset;
  188. };
  189. enum qede_agg_state {
  190. QEDE_AGG_STATE_NONE = 0,
  191. QEDE_AGG_STATE_START = 1,
  192. QEDE_AGG_STATE_ERROR = 2
  193. };
  194. struct qede_agg_info {
  195. /* rx_buf is a data buffer that can be placed / consumed from rx bd
  196. * chain. It has two purposes: We will preallocate the data buffer
  197. * for each aggregation when we open the interface and will place this
  198. * buffer on the rx-bd-ring when we receive TPA_START. We don't want
  199. * to be in a state where allocation fails, as we can't reuse the
  200. * consumer buffer in the rx-chain since FW may still be writing to it
  201. * (since header needs to be modified for TPA).
  202. * The second purpose is to keep a pointer to the bd buffer during
  203. * aggregation.
  204. */
  205. struct sw_rx_data buffer;
  206. dma_addr_t buffer_mapping;
  207. struct sk_buff *skb;
  208. /* We need some structs from the start cookie until termination */
  209. u16 vlan_tag;
  210. u16 start_cqe_bd_len;
  211. u8 start_cqe_placement_offset;
  212. u8 state;
  213. u8 frag_id;
  214. u8 tunnel_type;
  215. };
  216. struct qede_rx_queue {
  217. __le16 *hw_cons_ptr;
  218. void __iomem *hw_rxq_prod_addr;
  219. /* Required for the allocation of replacement buffers */
  220. struct device *dev;
  221. struct bpf_prog *xdp_prog;
  222. u16 sw_rx_cons;
  223. u16 sw_rx_prod;
  224. u16 num_rx_buffers; /* Slowpath */
  225. u8 data_direction;
  226. u8 rxq_id;
  227. u32 rx_buf_size;
  228. u32 rx_buf_seg_size;
  229. u64 rcv_pkts;
  230. struct sw_rx_data *sw_rx_ring;
  231. struct qed_chain rx_bd_ring;
  232. struct qed_chain rx_comp_ring ____cacheline_aligned;
  233. /* GRO */
  234. struct qede_agg_info tpa_info[ETH_TPA_MAX_AGGS_NUM];
  235. u64 rx_hw_errors;
  236. u64 rx_alloc_errors;
  237. u64 rx_ip_frags;
  238. u64 xdp_no_pass;
  239. void *handle;
  240. };
  241. union db_prod {
  242. struct eth_db_data data;
  243. u32 raw;
  244. };
  245. struct sw_tx_bd {
  246. struct sk_buff *skb;
  247. u8 flags;
  248. /* Set on the first BD descriptor when there is a split BD */
  249. #define QEDE_TSO_SPLIT_BD BIT(0)
  250. };
  251. struct qede_tx_queue {
  252. u8 is_xdp;
  253. bool is_legacy;
  254. u16 sw_tx_cons;
  255. u16 sw_tx_prod;
  256. u16 num_tx_buffers; /* Slowpath only */
  257. u64 xmit_pkts;
  258. u64 stopped_cnt;
  259. __le16 *hw_cons_ptr;
  260. /* Needed for the mapping of packets */
  261. struct device *dev;
  262. void __iomem *doorbell_addr;
  263. union db_prod tx_db;
  264. int index; /* Slowpath only */
  265. #define QEDE_TXQ_XDP_TO_IDX(edev, txq) ((txq)->index - \
  266. QEDE_MAX_TSS_CNT(edev))
  267. #define QEDE_TXQ_IDX_TO_XDP(edev, idx) ((idx) + QEDE_MAX_TSS_CNT(edev))
  268. /* Regular Tx requires skb + metadata for release purpose,
  269. * while XDP requires only the pages themselves.
  270. */
  271. union {
  272. struct sw_tx_bd *skbs;
  273. struct page **pages;
  274. } sw_tx_ring;
  275. struct qed_chain tx_pbl;
  276. /* Slowpath; Should be kept in end [unless missing padding] */
  277. void *handle;
  278. };
  279. #define BD_UNMAP_ADDR(bd) HILO_U64(le32_to_cpu((bd)->addr.hi), \
  280. le32_to_cpu((bd)->addr.lo))
  281. #define BD_SET_UNMAP_ADDR_LEN(bd, maddr, len) \
  282. do { \
  283. (bd)->addr.hi = cpu_to_le32(upper_32_bits(maddr)); \
  284. (bd)->addr.lo = cpu_to_le32(lower_32_bits(maddr)); \
  285. (bd)->nbytes = cpu_to_le16(len); \
  286. } while (0)
  287. #define BD_UNMAP_LEN(bd) (le16_to_cpu((bd)->nbytes))
  288. struct qede_fastpath {
  289. struct qede_dev *edev;
  290. #define QEDE_FASTPATH_TX BIT(0)
  291. #define QEDE_FASTPATH_RX BIT(1)
  292. #define QEDE_FASTPATH_XDP BIT(2)
  293. #define QEDE_FASTPATH_COMBINED (QEDE_FASTPATH_TX | QEDE_FASTPATH_RX)
  294. u8 type;
  295. u8 id;
  296. u8 xdp_xmit;
  297. struct napi_struct napi;
  298. struct qed_sb_info *sb_info;
  299. struct qede_rx_queue *rxq;
  300. struct qede_tx_queue *txq;
  301. struct qede_tx_queue *xdp_tx;
  302. #define VEC_NAME_SIZE (sizeof(((struct net_device *)0)->name) + 8)
  303. char name[VEC_NAME_SIZE];
  304. };
  305. /* Debug print definitions */
  306. #define DP_NAME(edev) ((edev)->ndev->name)
  307. #define XMIT_PLAIN 0
  308. #define XMIT_L4_CSUM BIT(0)
  309. #define XMIT_LSO BIT(1)
  310. #define XMIT_ENC BIT(2)
  311. #define XMIT_ENC_GSO_L4_CSUM BIT(3)
  312. #define QEDE_CSUM_ERROR BIT(0)
  313. #define QEDE_CSUM_UNNECESSARY BIT(1)
  314. #define QEDE_TUNN_CSUM_UNNECESSARY BIT(2)
  315. #define QEDE_SP_RX_MODE 1
  316. #define QEDE_SP_VXLAN_PORT_CONFIG 2
  317. #define QEDE_SP_GENEVE_PORT_CONFIG 3
  318. struct qede_reload_args {
  319. void (*func)(struct qede_dev *edev, struct qede_reload_args *args);
  320. union {
  321. netdev_features_t features;
  322. struct bpf_prog *new_prog;
  323. u16 mtu;
  324. } u;
  325. };
  326. #ifdef CONFIG_DCB
  327. void qede_set_dcbnl_ops(struct net_device *ndev);
  328. #endif
  329. void qede_config_debug(uint debug, u32 *p_dp_module, u8 *p_dp_level);
  330. void qede_set_ethtool_ops(struct net_device *netdev);
  331. void qede_reload(struct qede_dev *edev,
  332. struct qede_reload_args *args, bool is_locked);
  333. int qede_change_mtu(struct net_device *dev, int new_mtu);
  334. void qede_fill_by_demand_stats(struct qede_dev *edev);
  335. void __qede_lock(struct qede_dev *edev);
  336. void __qede_unlock(struct qede_dev *edev);
  337. bool qede_has_rx_work(struct qede_rx_queue *rxq);
  338. int qede_txq_has_work(struct qede_tx_queue *txq);
  339. void qede_recycle_rx_bd_ring(struct qede_rx_queue *rxq, u8 count);
  340. void qede_update_rx_prod(struct qede_dev *edev, struct qede_rx_queue *rxq);
  341. #define RX_RING_SIZE_POW 13
  342. #define RX_RING_SIZE ((u16)BIT(RX_RING_SIZE_POW))
  343. #define NUM_RX_BDS_MAX (RX_RING_SIZE - 1)
  344. #define NUM_RX_BDS_MIN 128
  345. #define NUM_RX_BDS_DEF ((u16)BIT(10) - 1)
  346. #define TX_RING_SIZE_POW 13
  347. #define TX_RING_SIZE ((u16)BIT(TX_RING_SIZE_POW))
  348. #define NUM_TX_BDS_MAX (TX_RING_SIZE - 1)
  349. #define NUM_TX_BDS_MIN 128
  350. #define NUM_TX_BDS_DEF NUM_TX_BDS_MAX
  351. #define QEDE_MIN_PKT_LEN 64
  352. #define QEDE_RX_HDR_SIZE 256
  353. #define QEDE_MAX_JUMBO_PACKET_SIZE 9600
  354. #define for_each_queue(i) for (i = 0; i < edev->num_queues; i++)
  355. #endif /* _QEDE_H_ */