be.h 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927
  1. /*
  2. * Copyright (C) 2005 - 2014 Emulex
  3. * All rights reserved.
  4. *
  5. * This program is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU General Public License version 2
  7. * as published by the Free Software Foundation. The full GNU General
  8. * Public License is included in this distribution in the file called COPYING.
  9. *
  10. * Contact Information:
  11. * linux-drivers@emulex.com
  12. *
  13. * Emulex
  14. * 3333 Susan Street
  15. * Costa Mesa, CA 92626
  16. */
  17. #ifndef BE_H
  18. #define BE_H
  19. #include <linux/pci.h>
  20. #include <linux/etherdevice.h>
  21. #include <linux/delay.h>
  22. #include <net/tcp.h>
  23. #include <net/ip.h>
  24. #include <net/ipv6.h>
  25. #include <linux/if_vlan.h>
  26. #include <linux/workqueue.h>
  27. #include <linux/interrupt.h>
  28. #include <linux/firmware.h>
  29. #include <linux/slab.h>
  30. #include <linux/u64_stats_sync.h>
  31. #include "be_hw.h"
  32. #include "be_roce.h"
  33. #define DRV_VER "10.4u"
  34. #define DRV_NAME "be2net"
  35. #define BE_NAME "Emulex BladeEngine2"
  36. #define BE3_NAME "Emulex BladeEngine3"
  37. #define OC_NAME "Emulex OneConnect"
  38. #define OC_NAME_BE OC_NAME "(be3)"
  39. #define OC_NAME_LANCER OC_NAME "(Lancer)"
  40. #define OC_NAME_SH OC_NAME "(Skyhawk)"
  41. #define DRV_DESC "Emulex OneConnect NIC Driver"
  42. #define BE_VENDOR_ID 0x19a2
  43. #define EMULEX_VENDOR_ID 0x10df
  44. #define BE_DEVICE_ID1 0x211
  45. #define BE_DEVICE_ID2 0x221
  46. #define OC_DEVICE_ID1 0x700 /* Device Id for BE2 cards */
  47. #define OC_DEVICE_ID2 0x710 /* Device Id for BE3 cards */
  48. #define OC_DEVICE_ID3 0xe220 /* Device id for Lancer cards */
  49. #define OC_DEVICE_ID4 0xe228 /* Device id for VF in Lancer */
  50. #define OC_DEVICE_ID5 0x720 /* Device Id for Skyhawk cards */
  51. #define OC_DEVICE_ID6 0x728 /* Device id for VF in SkyHawk */
  52. #define OC_SUBSYS_DEVICE_ID1 0xE602
  53. #define OC_SUBSYS_DEVICE_ID2 0xE642
  54. #define OC_SUBSYS_DEVICE_ID3 0xE612
  55. #define OC_SUBSYS_DEVICE_ID4 0xE652
  56. static inline char *nic_name(struct pci_dev *pdev)
  57. {
  58. switch (pdev->device) {
  59. case OC_DEVICE_ID1:
  60. return OC_NAME;
  61. case OC_DEVICE_ID2:
  62. return OC_NAME_BE;
  63. case OC_DEVICE_ID3:
  64. case OC_DEVICE_ID4:
  65. return OC_NAME_LANCER;
  66. case BE_DEVICE_ID2:
  67. return BE3_NAME;
  68. case OC_DEVICE_ID5:
  69. case OC_DEVICE_ID6:
  70. return OC_NAME_SH;
  71. default:
  72. return BE_NAME;
  73. }
  74. }
  75. /* Number of bytes of an RX frame that are copied to skb->data */
  76. #define BE_HDR_LEN ((u16) 64)
  77. /* allocate extra space to allow tunneling decapsulation without head reallocation */
  78. #define BE_RX_SKB_ALLOC_SIZE (BE_HDR_LEN + 64)
  79. #define BE_MAX_JUMBO_FRAME_SIZE 9018
  80. #define BE_MIN_MTU 256
  81. #define BE_MAX_MTU (BE_MAX_JUMBO_FRAME_SIZE - \
  82. (ETH_HLEN + ETH_FCS_LEN))
  83. #define BE_NUM_VLANS_SUPPORTED 64
  84. #define BE_MAX_EQD 128u
  85. #define BE_MAX_TX_FRAG_COUNT 30
  86. #define EVNT_Q_LEN 1024
  87. #define TX_Q_LEN 2048
  88. #define TX_CQ_LEN 1024
  89. #define RX_Q_LEN 1024 /* Does not support any other value */
  90. #define RX_CQ_LEN 1024
  91. #define MCC_Q_LEN 128 /* total size not to exceed 8 pages */
  92. #define MCC_CQ_LEN 256
  93. #define BE2_MAX_RSS_QS 4
  94. #define BE3_MAX_RSS_QS 16
  95. #define BE3_MAX_TX_QS 16
  96. #define BE3_MAX_EVT_QS 16
  97. #define BE3_SRIOV_MAX_EVT_QS 8
  98. #define MAX_RX_QS 32
  99. #define MAX_EVT_QS 32
  100. #define MAX_TX_QS 32
  101. #define MAX_ROCE_EQS 5
  102. #define MAX_MSIX_VECTORS 32
  103. #define MIN_MSIX_VECTORS 1
  104. #define BE_NAPI_WEIGHT 64
  105. #define MAX_RX_POST BE_NAPI_WEIGHT /* Frags posted at a time */
  106. #define RX_FRAGS_REFILL_WM (RX_Q_LEN - MAX_RX_POST)
  107. #define MAX_VFS 30 /* Max VFs supported by BE3 FW */
  108. #define FW_VER_LEN 32
  109. #define RSS_INDIR_TABLE_LEN 128
  110. #define RSS_HASH_KEY_LEN 40
  111. struct be_dma_mem {
  112. void *va;
  113. dma_addr_t dma;
  114. u32 size;
  115. };
  116. struct be_queue_info {
  117. struct be_dma_mem dma_mem;
  118. u16 len;
  119. u16 entry_size; /* Size of an element in the queue */
  120. u16 id;
  121. u16 tail, head;
  122. bool created;
  123. atomic_t used; /* Number of valid elements in the queue */
  124. };
  125. static inline u32 MODULO(u16 val, u16 limit)
  126. {
  127. BUG_ON(limit & (limit - 1));
  128. return val & (limit - 1);
  129. }
  130. static inline void index_adv(u16 *index, u16 val, u16 limit)
  131. {
  132. *index = MODULO((*index + val), limit);
  133. }
  134. static inline void index_inc(u16 *index, u16 limit)
  135. {
  136. *index = MODULO((*index + 1), limit);
  137. }
  138. static inline void *queue_head_node(struct be_queue_info *q)
  139. {
  140. return q->dma_mem.va + q->head * q->entry_size;
  141. }
  142. static inline void *queue_tail_node(struct be_queue_info *q)
  143. {
  144. return q->dma_mem.va + q->tail * q->entry_size;
  145. }
  146. static inline void *queue_index_node(struct be_queue_info *q, u16 index)
  147. {
  148. return q->dma_mem.va + index * q->entry_size;
  149. }
  150. static inline void queue_head_inc(struct be_queue_info *q)
  151. {
  152. index_inc(&q->head, q->len);
  153. }
  154. static inline void index_dec(u16 *index, u16 limit)
  155. {
  156. *index = MODULO((*index - 1), limit);
  157. }
  158. static inline void queue_tail_inc(struct be_queue_info *q)
  159. {
  160. index_inc(&q->tail, q->len);
  161. }
  162. struct be_eq_obj {
  163. struct be_queue_info q;
  164. char desc[32];
  165. /* Adaptive interrupt coalescing (AIC) info */
  166. bool enable_aic;
  167. u32 min_eqd; /* in usecs */
  168. u32 max_eqd; /* in usecs */
  169. u32 eqd; /* configured val when aic is off */
  170. u32 cur_eqd; /* in usecs */
  171. u8 idx; /* array index */
  172. u8 msix_idx;
  173. u16 spurious_intr;
  174. struct napi_struct napi;
  175. struct be_adapter *adapter;
  176. #ifdef CONFIG_NET_RX_BUSY_POLL
  177. #define BE_EQ_IDLE 0
  178. #define BE_EQ_NAPI 1 /* napi owns this EQ */
  179. #define BE_EQ_POLL 2 /* poll owns this EQ */
  180. #define BE_EQ_LOCKED (BE_EQ_NAPI | BE_EQ_POLL)
  181. #define BE_EQ_NAPI_YIELD 4 /* napi yielded this EQ */
  182. #define BE_EQ_POLL_YIELD 8 /* poll yielded this EQ */
  183. #define BE_EQ_YIELD (BE_EQ_NAPI_YIELD | BE_EQ_POLL_YIELD)
  184. #define BE_EQ_USER_PEND (BE_EQ_POLL | BE_EQ_POLL_YIELD)
  185. unsigned int state;
  186. spinlock_t lock; /* lock to serialize napi and busy-poll */
  187. #endif /* CONFIG_NET_RX_BUSY_POLL */
  188. } ____cacheline_aligned_in_smp;
  189. struct be_aic_obj { /* Adaptive interrupt coalescing (AIC) info */
  190. bool enable;
  191. u32 min_eqd; /* in usecs */
  192. u32 max_eqd; /* in usecs */
  193. u32 prev_eqd; /* in usecs */
  194. u32 et_eqd; /* configured val when aic is off */
  195. ulong jiffies;
  196. u64 rx_pkts_prev; /* Used to calculate RX pps */
  197. u64 tx_reqs_prev; /* Used to calculate TX pps */
  198. };
  199. enum {
  200. NAPI_POLLING,
  201. BUSY_POLLING
  202. };
  203. struct be_mcc_obj {
  204. struct be_queue_info q;
  205. struct be_queue_info cq;
  206. bool rearm_cq;
  207. };
  208. struct be_tx_stats {
  209. u64 tx_bytes;
  210. u64 tx_pkts;
  211. u64 tx_reqs;
  212. u64 tx_wrbs;
  213. u64 tx_compl;
  214. ulong tx_jiffies;
  215. u32 tx_stops;
  216. u32 tx_drv_drops; /* pkts dropped by driver */
  217. /* the error counters are described in be_ethtool.c */
  218. u32 tx_hdr_parse_err;
  219. u32 tx_dma_err;
  220. u32 tx_tso_err;
  221. u32 tx_spoof_check_err;
  222. u32 tx_qinq_err;
  223. u32 tx_internal_parity_err;
  224. struct u64_stats_sync sync;
  225. struct u64_stats_sync sync_compl;
  226. };
  227. struct be_tx_obj {
  228. u32 db_offset;
  229. struct be_queue_info q;
  230. struct be_queue_info cq;
  231. /* Remember the skbs that were transmitted */
  232. struct sk_buff *sent_skb_list[TX_Q_LEN];
  233. struct be_tx_stats stats;
  234. } ____cacheline_aligned_in_smp;
  235. /* Struct to remember the pages posted for rx frags */
  236. struct be_rx_page_info {
  237. struct page *page;
  238. /* set to page-addr for last frag of the page & frag-addr otherwise */
  239. DEFINE_DMA_UNMAP_ADDR(bus);
  240. u16 page_offset;
  241. bool last_frag; /* last frag of the page */
  242. };
  243. struct be_rx_stats {
  244. u64 rx_bytes;
  245. u64 rx_pkts;
  246. u32 rx_drops_no_skbs; /* skb allocation errors */
  247. u32 rx_drops_no_frags; /* HW has no fetched frags */
  248. u32 rx_post_fail; /* page post alloc failures */
  249. u32 rx_compl;
  250. u32 rx_mcast_pkts;
  251. u32 rx_compl_err; /* completions with err set */
  252. struct u64_stats_sync sync;
  253. };
  254. struct be_rx_compl_info {
  255. u32 rss_hash;
  256. u16 vlan_tag;
  257. u16 pkt_size;
  258. u16 port;
  259. u8 vlanf;
  260. u8 num_rcvd;
  261. u8 err;
  262. u8 ipf;
  263. u8 tcpf;
  264. u8 udpf;
  265. u8 ip_csum;
  266. u8 l4_csum;
  267. u8 ipv6;
  268. u8 qnq;
  269. u8 pkt_type;
  270. u8 ip_frag;
  271. u8 tunneled;
  272. };
  273. struct be_rx_obj {
  274. struct be_adapter *adapter;
  275. struct be_queue_info q;
  276. struct be_queue_info cq;
  277. struct be_rx_compl_info rxcp;
  278. struct be_rx_page_info page_info_tbl[RX_Q_LEN];
  279. struct be_rx_stats stats;
  280. u8 rss_id;
  281. bool rx_post_starved; /* Zero rx frags have been posted to BE */
  282. } ____cacheline_aligned_in_smp;
  283. struct be_drv_stats {
  284. u32 be_on_die_temperature;
  285. u32 eth_red_drops;
  286. u32 dma_map_errors;
  287. u32 rx_drops_no_pbuf;
  288. u32 rx_drops_no_txpb;
  289. u32 rx_drops_no_erx_descr;
  290. u32 rx_drops_no_tpre_descr;
  291. u32 rx_drops_too_many_frags;
  292. u32 forwarded_packets;
  293. u32 rx_drops_mtu;
  294. u32 rx_crc_errors;
  295. u32 rx_alignment_symbol_errors;
  296. u32 rx_pause_frames;
  297. u32 rx_priority_pause_frames;
  298. u32 rx_control_frames;
  299. u32 rx_in_range_errors;
  300. u32 rx_out_range_errors;
  301. u32 rx_frame_too_long;
  302. u32 rx_address_filtered;
  303. u32 rx_dropped_too_small;
  304. u32 rx_dropped_too_short;
  305. u32 rx_dropped_header_too_small;
  306. u32 rx_dropped_tcp_length;
  307. u32 rx_dropped_runt;
  308. u32 rx_ip_checksum_errs;
  309. u32 rx_tcp_checksum_errs;
  310. u32 rx_udp_checksum_errs;
  311. u32 tx_pauseframes;
  312. u32 tx_priority_pauseframes;
  313. u32 tx_controlframes;
  314. u32 rxpp_fifo_overflow_drop;
  315. u32 rx_input_fifo_overflow_drop;
  316. u32 pmem_fifo_overflow_drop;
  317. u32 jabber_events;
  318. u32 rx_roce_bytes_lsd;
  319. u32 rx_roce_bytes_msd;
  320. u32 rx_roce_frames;
  321. u32 roce_drops_payload_len;
  322. u32 roce_drops_crc;
  323. };
  324. /* A vlan-id of 0xFFFF must be used to clear transparent vlan-tagging */
  325. #define BE_RESET_VLAN_TAG_ID 0xFFFF
  326. struct be_vf_cfg {
  327. unsigned char mac_addr[ETH_ALEN];
  328. int if_handle;
  329. int pmac_id;
  330. u16 vlan_tag;
  331. u32 tx_rate;
  332. u32 plink_tracking;
  333. };
  334. enum vf_state {
  335. ENABLED = 0,
  336. ASSIGNED = 1
  337. };
  338. #define BE_FLAGS_LINK_STATUS_INIT 1
  339. #define BE_FLAGS_SRIOV_ENABLED (1 << 2)
  340. #define BE_FLAGS_WORKER_SCHEDULED (1 << 3)
  341. #define BE_FLAGS_VLAN_PROMISC (1 << 4)
  342. #define BE_FLAGS_MCAST_PROMISC (1 << 5)
  343. #define BE_FLAGS_NAPI_ENABLED (1 << 9)
  344. #define BE_FLAGS_QNQ_ASYNC_EVT_RCVD (1 << 11)
  345. #define BE_FLAGS_VXLAN_OFFLOADS (1 << 12)
  346. #define BE_FLAGS_SETUP_DONE (1 << 13)
  347. #define BE_UC_PMAC_COUNT 30
  348. #define BE_VF_UC_PMAC_COUNT 2
  349. /* Ethtool set_dump flags */
  350. #define LANCER_INITIATE_FW_DUMP 0x1
  351. #define LANCER_DELETE_FW_DUMP 0x2
  352. struct phy_info {
  353. u8 transceiver;
  354. u8 autoneg;
  355. u8 fc_autoneg;
  356. u8 port_type;
  357. u16 phy_type;
  358. u16 interface_type;
  359. u32 misc_params;
  360. u16 auto_speeds_supported;
  361. u16 fixed_speeds_supported;
  362. int link_speed;
  363. u32 advertising;
  364. u32 supported;
  365. u8 cable_type;
  366. };
  367. struct be_resources {
  368. u16 max_vfs; /* Total VFs "really" supported by FW/HW */
  369. u16 max_mcast_mac;
  370. u16 max_tx_qs;
  371. u16 max_rss_qs;
  372. u16 max_rx_qs;
  373. u16 max_uc_mac; /* Max UC MACs programmable */
  374. u16 max_vlans; /* Number of vlans supported */
  375. u16 max_evt_qs;
  376. u32 if_cap_flags;
  377. u32 vf_if_cap_flags; /* VF if capability flags */
  378. };
  379. struct rss_info {
  380. u64 rss_flags;
  381. u8 rsstable[RSS_INDIR_TABLE_LEN];
  382. u8 rss_queue[RSS_INDIR_TABLE_LEN];
  383. u8 rss_hkey[RSS_HASH_KEY_LEN];
  384. };
  385. struct be_adapter {
  386. struct pci_dev *pdev;
  387. struct net_device *netdev;
  388. u8 __iomem *csr; /* CSR BAR used only for BE2/3 */
  389. u8 __iomem *db; /* Door Bell */
  390. struct mutex mbox_lock; /* For serializing mbox cmds to BE card */
  391. struct be_dma_mem mbox_mem;
  392. /* Mbox mem is adjusted to align to 16 bytes. The allocated addr
  393. * is stored for freeing purpose */
  394. struct be_dma_mem mbox_mem_alloced;
  395. struct be_mcc_obj mcc_obj;
  396. spinlock_t mcc_lock; /* For serializing mcc cmds to BE card */
  397. spinlock_t mcc_cq_lock;
  398. u16 cfg_num_qs; /* configured via set-channels */
  399. u16 num_evt_qs;
  400. u16 num_msix_vec;
  401. struct be_eq_obj eq_obj[MAX_EVT_QS];
  402. struct msix_entry msix_entries[MAX_MSIX_VECTORS];
  403. bool isr_registered;
  404. /* TX Rings */
  405. u16 num_tx_qs;
  406. struct be_tx_obj tx_obj[MAX_TX_QS];
  407. /* Rx rings */
  408. u16 num_rx_qs;
  409. struct be_rx_obj rx_obj[MAX_RX_QS];
  410. u32 big_page_size; /* Compounded page size shared by rx wrbs */
  411. struct be_drv_stats drv_stats;
  412. struct be_aic_obj aic_obj[MAX_EVT_QS];
  413. u16 vlans_added;
  414. unsigned long vids[BITS_TO_LONGS(VLAN_N_VID)];
  415. u8 vlan_prio_bmap; /* Available Priority BitMap */
  416. u16 recommended_prio; /* Recommended Priority */
  417. struct be_dma_mem rx_filter; /* Cmd DMA mem for rx-filter */
  418. struct be_dma_mem stats_cmd;
  419. /* Work queue used to perform periodic tasks like getting statistics */
  420. struct delayed_work work;
  421. u16 work_counter;
  422. struct delayed_work func_recovery_work;
  423. u32 flags;
  424. u32 cmd_privileges;
  425. /* Ethtool knobs and info */
  426. char fw_ver[FW_VER_LEN];
  427. char fw_on_flash[FW_VER_LEN];
  428. int if_handle; /* Used to configure filtering */
  429. u32 *pmac_id; /* MAC addr handle used by BE card */
  430. u32 beacon_state; /* for set_phys_id */
  431. bool eeh_error;
  432. bool fw_timeout;
  433. bool hw_error;
  434. u32 port_num;
  435. bool promiscuous;
  436. u8 mc_type;
  437. u32 function_mode;
  438. u32 function_caps;
  439. u32 rx_fc; /* Rx flow control */
  440. u32 tx_fc; /* Tx flow control */
  441. bool stats_cmd_sent;
  442. struct {
  443. u32 size;
  444. u32 total_size;
  445. u64 io_addr;
  446. } roce_db;
  447. u32 num_msix_roce_vec;
  448. struct ocrdma_dev *ocrdma_dev;
  449. struct list_head entry;
  450. u32 flash_status;
  451. struct completion et_cmd_compl;
  452. struct be_resources pool_res; /* resources available for the port */
  453. struct be_resources res; /* resources available for the func */
  454. u16 num_vfs; /* Number of VFs provisioned by PF */
  455. u8 virtfn;
  456. struct be_vf_cfg *vf_cfg;
  457. bool be3_native;
  458. u32 sli_family;
  459. u8 hba_port_num;
  460. u16 pvid;
  461. __be16 vxlan_port;
  462. int vxlan_port_count;
  463. struct phy_info phy;
  464. u8 wol_cap;
  465. bool wol_en;
  466. u32 uc_macs; /* Count of secondary UC MAC programmed */
  467. u16 asic_rev;
  468. u16 qnq_vid;
  469. u32 msg_enable;
  470. int be_get_temp_freq;
  471. u8 pf_number;
  472. struct rss_info rss_info;
  473. };
  474. #define be_physfn(adapter) (!adapter->virtfn)
  475. #define be_virtfn(adapter) (adapter->virtfn)
  476. #define sriov_enabled(adapter) (adapter->flags & \
  477. BE_FLAGS_SRIOV_ENABLED)
  478. #define for_all_vfs(adapter, vf_cfg, i) \
  479. for (i = 0, vf_cfg = &adapter->vf_cfg[i]; i < adapter->num_vfs; \
  480. i++, vf_cfg++)
  481. #define ON 1
  482. #define OFF 0
  483. #define be_max_vlans(adapter) (adapter->res.max_vlans)
  484. #define be_max_uc(adapter) (adapter->res.max_uc_mac)
  485. #define be_max_mc(adapter) (adapter->res.max_mcast_mac)
  486. #define be_max_vfs(adapter) (adapter->pool_res.max_vfs)
  487. #define be_max_rss(adapter) (adapter->res.max_rss_qs)
  488. #define be_max_txqs(adapter) (adapter->res.max_tx_qs)
  489. #define be_max_prio_txqs(adapter) (adapter->res.max_prio_tx_qs)
  490. #define be_max_rxqs(adapter) (adapter->res.max_rx_qs)
  491. #define be_max_eqs(adapter) (adapter->res.max_evt_qs)
  492. #define be_if_cap_flags(adapter) (adapter->res.if_cap_flags)
  493. static inline u16 be_max_qs(struct be_adapter *adapter)
  494. {
  495. /* If no RSS, need atleast the one def RXQ */
  496. u16 num = max_t(u16, be_max_rss(adapter), 1);
  497. num = min(num, be_max_eqs(adapter));
  498. return min_t(u16, num, num_online_cpus());
  499. }
  500. /* Is BE in pvid_tagging mode */
  501. #define be_pvid_tagging_enabled(adapter) (adapter->pvid)
  502. /* Is BE in QNQ multi-channel mode */
  503. #define be_is_qnq_mode(adapter) (adapter->function_mode & QNQ_MODE)
  504. #define lancer_chip(adapter) (adapter->pdev->device == OC_DEVICE_ID3 || \
  505. adapter->pdev->device == OC_DEVICE_ID4)
  506. #define skyhawk_chip(adapter) (adapter->pdev->device == OC_DEVICE_ID5 || \
  507. adapter->pdev->device == OC_DEVICE_ID6)
  508. #define BE3_chip(adapter) (adapter->pdev->device == BE_DEVICE_ID2 || \
  509. adapter->pdev->device == OC_DEVICE_ID2)
  510. #define BE2_chip(adapter) (adapter->pdev->device == BE_DEVICE_ID1 || \
  511. adapter->pdev->device == OC_DEVICE_ID1)
  512. #define BEx_chip(adapter) (BE3_chip(adapter) || BE2_chip(adapter))
  513. #define be_roce_supported(adapter) (skyhawk_chip(adapter) && \
  514. (adapter->function_mode & RDMA_ENABLED))
  515. extern const struct ethtool_ops be_ethtool_ops;
  516. #define msix_enabled(adapter) (adapter->num_msix_vec > 0)
  517. #define num_irqs(adapter) (msix_enabled(adapter) ? \
  518. adapter->num_msix_vec : 1)
  519. #define tx_stats(txo) (&(txo)->stats)
  520. #define rx_stats(rxo) (&(rxo)->stats)
  521. /* The default RXQ is the last RXQ */
  522. #define default_rxo(adpt) (&adpt->rx_obj[adpt->num_rx_qs - 1])
  523. #define for_all_rx_queues(adapter, rxo, i) \
  524. for (i = 0, rxo = &adapter->rx_obj[i]; i < adapter->num_rx_qs; \
  525. i++, rxo++)
  526. /* Skip the default non-rss queue (last one)*/
  527. #define for_all_rss_queues(adapter, rxo, i) \
  528. for (i = 0, rxo = &adapter->rx_obj[i]; i < (adapter->num_rx_qs - 1);\
  529. i++, rxo++)
  530. #define for_all_tx_queues(adapter, txo, i) \
  531. for (i = 0, txo = &adapter->tx_obj[i]; i < adapter->num_tx_qs; \
  532. i++, txo++)
  533. #define for_all_evt_queues(adapter, eqo, i) \
  534. for (i = 0, eqo = &adapter->eq_obj[i]; i < adapter->num_evt_qs; \
  535. i++, eqo++)
  536. #define for_all_rx_queues_on_eq(adapter, eqo, rxo, i) \
  537. for (i = eqo->idx, rxo = &adapter->rx_obj[i]; i < adapter->num_rx_qs;\
  538. i += adapter->num_evt_qs, rxo += adapter->num_evt_qs)
  539. #define for_all_tx_queues_on_eq(adapter, eqo, txo, i) \
  540. for (i = eqo->idx, txo = &adapter->tx_obj[i]; i < adapter->num_tx_qs;\
  541. i += adapter->num_evt_qs, txo += adapter->num_evt_qs)
  542. #define is_mcc_eqo(eqo) (eqo->idx == 0)
  543. #define mcc_eqo(adapter) (&adapter->eq_obj[0])
  544. #define PAGE_SHIFT_4K 12
  545. #define PAGE_SIZE_4K (1 << PAGE_SHIFT_4K)
  546. /* Returns number of pages spanned by the data starting at the given addr */
  547. #define PAGES_4K_SPANNED(_address, size) \
  548. ((u32)((((size_t)(_address) & (PAGE_SIZE_4K - 1)) + \
  549. (size) + (PAGE_SIZE_4K - 1)) >> PAGE_SHIFT_4K))
  550. /* Returns bit offset within a DWORD of a bitfield */
  551. #define AMAP_BIT_OFFSET(_struct, field) \
  552. (((size_t)&(((_struct *)0)->field))%32)
  553. /* Returns the bit mask of the field that is NOT shifted into location. */
  554. static inline u32 amap_mask(u32 bitsize)
  555. {
  556. return (bitsize == 32 ? 0xFFFFFFFF : (1 << bitsize) - 1);
  557. }
  558. static inline void
  559. amap_set(void *ptr, u32 dw_offset, u32 mask, u32 offset, u32 value)
  560. {
  561. u32 *dw = (u32 *) ptr + dw_offset;
  562. *dw &= ~(mask << offset);
  563. *dw |= (mask & value) << offset;
  564. }
  565. #define AMAP_SET_BITS(_struct, field, ptr, val) \
  566. amap_set(ptr, \
  567. offsetof(_struct, field)/32, \
  568. amap_mask(sizeof(((_struct *)0)->field)), \
  569. AMAP_BIT_OFFSET(_struct, field), \
  570. val)
  571. static inline u32 amap_get(void *ptr, u32 dw_offset, u32 mask, u32 offset)
  572. {
  573. u32 *dw = (u32 *) ptr;
  574. return mask & (*(dw + dw_offset) >> offset);
  575. }
  576. #define AMAP_GET_BITS(_struct, field, ptr) \
  577. amap_get(ptr, \
  578. offsetof(_struct, field)/32, \
  579. amap_mask(sizeof(((_struct *)0)->field)), \
  580. AMAP_BIT_OFFSET(_struct, field))
  581. #define GET_RX_COMPL_V0_BITS(field, ptr) \
  582. AMAP_GET_BITS(struct amap_eth_rx_compl_v0, field, ptr)
  583. #define GET_RX_COMPL_V1_BITS(field, ptr) \
  584. AMAP_GET_BITS(struct amap_eth_rx_compl_v1, field, ptr)
  585. #define GET_TX_COMPL_BITS(field, ptr) \
  586. AMAP_GET_BITS(struct amap_eth_tx_compl, field, ptr)
  587. #define SET_TX_WRB_HDR_BITS(field, ptr, val) \
  588. AMAP_SET_BITS(struct amap_eth_hdr_wrb, field, ptr, val)
  589. #define be_dws_cpu_to_le(wrb, len) swap_dws(wrb, len)
  590. #define be_dws_le_to_cpu(wrb, len) swap_dws(wrb, len)
  591. static inline void swap_dws(void *wrb, int len)
  592. {
  593. #ifdef __BIG_ENDIAN
  594. u32 *dw = wrb;
  595. BUG_ON(len % 4);
  596. do {
  597. *dw = cpu_to_le32(*dw);
  598. dw++;
  599. len -= 4;
  600. } while (len);
  601. #endif /* __BIG_ENDIAN */
  602. }
  603. #define be_cmd_status(status) (status > 0 ? -EIO : status)
  604. static inline u8 is_tcp_pkt(struct sk_buff *skb)
  605. {
  606. u8 val = 0;
  607. if (ip_hdr(skb)->version == 4)
  608. val = (ip_hdr(skb)->protocol == IPPROTO_TCP);
  609. else if (ip_hdr(skb)->version == 6)
  610. val = (ipv6_hdr(skb)->nexthdr == NEXTHDR_TCP);
  611. return val;
  612. }
  613. static inline u8 is_udp_pkt(struct sk_buff *skb)
  614. {
  615. u8 val = 0;
  616. if (ip_hdr(skb)->version == 4)
  617. val = (ip_hdr(skb)->protocol == IPPROTO_UDP);
  618. else if (ip_hdr(skb)->version == 6)
  619. val = (ipv6_hdr(skb)->nexthdr == NEXTHDR_UDP);
  620. return val;
  621. }
  622. static inline bool is_ipv4_pkt(struct sk_buff *skb)
  623. {
  624. return skb->protocol == htons(ETH_P_IP) && ip_hdr(skb)->version == 4;
  625. }
  626. static inline void be_vf_eth_addr_generate(struct be_adapter *adapter, u8 *mac)
  627. {
  628. u32 addr;
  629. addr = jhash(adapter->netdev->dev_addr, ETH_ALEN, 0);
  630. mac[5] = (u8)(addr & 0xFF);
  631. mac[4] = (u8)((addr >> 8) & 0xFF);
  632. mac[3] = (u8)((addr >> 16) & 0xFF);
  633. /* Use the OUI from the current MAC address */
  634. memcpy(mac, adapter->netdev->dev_addr, 3);
  635. }
  636. static inline bool be_multi_rxq(const struct be_adapter *adapter)
  637. {
  638. return adapter->num_rx_qs > 1;
  639. }
  640. static inline bool be_error(struct be_adapter *adapter)
  641. {
  642. return adapter->eeh_error || adapter->hw_error || adapter->fw_timeout;
  643. }
  644. static inline bool be_hw_error(struct be_adapter *adapter)
  645. {
  646. return adapter->eeh_error || adapter->hw_error;
  647. }
  648. static inline void be_clear_all_error(struct be_adapter *adapter)
  649. {
  650. adapter->eeh_error = false;
  651. adapter->hw_error = false;
  652. adapter->fw_timeout = false;
  653. }
  654. static inline bool be_is_wol_excluded(struct be_adapter *adapter)
  655. {
  656. struct pci_dev *pdev = adapter->pdev;
  657. if (!be_physfn(adapter))
  658. return true;
  659. switch (pdev->subsystem_device) {
  660. case OC_SUBSYS_DEVICE_ID1:
  661. case OC_SUBSYS_DEVICE_ID2:
  662. case OC_SUBSYS_DEVICE_ID3:
  663. case OC_SUBSYS_DEVICE_ID4:
  664. return true;
  665. default:
  666. return false;
  667. }
  668. }
  669. static inline int qnq_async_evt_rcvd(struct be_adapter *adapter)
  670. {
  671. return adapter->flags & BE_FLAGS_QNQ_ASYNC_EVT_RCVD;
  672. }
  673. #ifdef CONFIG_NET_RX_BUSY_POLL
  674. static inline bool be_lock_napi(struct be_eq_obj *eqo)
  675. {
  676. bool status = true;
  677. spin_lock(&eqo->lock); /* BH is already disabled */
  678. if (eqo->state & BE_EQ_LOCKED) {
  679. WARN_ON(eqo->state & BE_EQ_NAPI);
  680. eqo->state |= BE_EQ_NAPI_YIELD;
  681. status = false;
  682. } else {
  683. eqo->state = BE_EQ_NAPI;
  684. }
  685. spin_unlock(&eqo->lock);
  686. return status;
  687. }
  688. static inline void be_unlock_napi(struct be_eq_obj *eqo)
  689. {
  690. spin_lock(&eqo->lock); /* BH is already disabled */
  691. WARN_ON(eqo->state & (BE_EQ_POLL | BE_EQ_NAPI_YIELD));
  692. eqo->state = BE_EQ_IDLE;
  693. spin_unlock(&eqo->lock);
  694. }
  695. static inline bool be_lock_busy_poll(struct be_eq_obj *eqo)
  696. {
  697. bool status = true;
  698. spin_lock_bh(&eqo->lock);
  699. if (eqo->state & BE_EQ_LOCKED) {
  700. eqo->state |= BE_EQ_POLL_YIELD;
  701. status = false;
  702. } else {
  703. eqo->state |= BE_EQ_POLL;
  704. }
  705. spin_unlock_bh(&eqo->lock);
  706. return status;
  707. }
  708. static inline void be_unlock_busy_poll(struct be_eq_obj *eqo)
  709. {
  710. spin_lock_bh(&eqo->lock);
  711. WARN_ON(eqo->state & (BE_EQ_NAPI));
  712. eqo->state = BE_EQ_IDLE;
  713. spin_unlock_bh(&eqo->lock);
  714. }
  715. static inline void be_enable_busy_poll(struct be_eq_obj *eqo)
  716. {
  717. spin_lock_init(&eqo->lock);
  718. eqo->state = BE_EQ_IDLE;
  719. }
  720. static inline void be_disable_busy_poll(struct be_eq_obj *eqo)
  721. {
  722. local_bh_disable();
  723. /* It's enough to just acquire napi lock on the eqo to stop
  724. * be_busy_poll() from processing any queueus.
  725. */
  726. while (!be_lock_napi(eqo))
  727. mdelay(1);
  728. local_bh_enable();
  729. }
  730. #else /* CONFIG_NET_RX_BUSY_POLL */
  731. static inline bool be_lock_napi(struct be_eq_obj *eqo)
  732. {
  733. return true;
  734. }
  735. static inline void be_unlock_napi(struct be_eq_obj *eqo)
  736. {
  737. }
  738. static inline bool be_lock_busy_poll(struct be_eq_obj *eqo)
  739. {
  740. return false;
  741. }
  742. static inline void be_unlock_busy_poll(struct be_eq_obj *eqo)
  743. {
  744. }
  745. static inline void be_enable_busy_poll(struct be_eq_obj *eqo)
  746. {
  747. }
  748. static inline void be_disable_busy_poll(struct be_eq_obj *eqo)
  749. {
  750. }
  751. #endif /* CONFIG_NET_RX_BUSY_POLL */
  752. void be_cq_notify(struct be_adapter *adapter, u16 qid, bool arm,
  753. u16 num_popped);
  754. void be_link_status_update(struct be_adapter *adapter, u8 link_status);
  755. void be_parse_stats(struct be_adapter *adapter);
  756. int be_load_fw(struct be_adapter *adapter, u8 *func);
  757. bool be_is_wol_supported(struct be_adapter *adapter);
  758. bool be_pause_supported(struct be_adapter *adapter);
  759. u32 be_get_fw_log_level(struct be_adapter *adapter);
  760. static inline int fw_major_num(const char *fw_ver)
  761. {
  762. int fw_major = 0;
  763. sscanf(fw_ver, "%d.", &fw_major);
  764. return fw_major;
  765. }
  766. int be_update_queues(struct be_adapter *adapter);
  767. int be_poll(struct napi_struct *napi, int budget);
  768. /*
  769. * internal function to initialize-cleanup roce device.
  770. */
  771. void be_roce_dev_add(struct be_adapter *);
  772. void be_roce_dev_remove(struct be_adapter *);
  773. /*
  774. * internal function to open-close roce device during ifup-ifdown.
  775. */
  776. void be_roce_dev_open(struct be_adapter *);
  777. void be_roce_dev_close(struct be_adapter *);
  778. void be_roce_dev_shutdown(struct be_adapter *);
  779. #endif /* BE_H */