be.h 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999
  1. /*
  2. * Copyright (C) 2005 - 2016 Broadcom
  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 <linux/cpumask.h>
  32. #include <linux/hwmon.h>
  33. #include <linux/hwmon-sysfs.h>
  34. #include "be_hw.h"
  35. #include "be_roce.h"
  36. #define DRV_VER "11.4.0.0"
  37. #define DRV_NAME "be2net"
  38. #define BE_NAME "Emulex BladeEngine2"
  39. #define BE3_NAME "Emulex BladeEngine3"
  40. #define OC_NAME "Emulex OneConnect"
  41. #define OC_NAME_BE OC_NAME "(be3)"
  42. #define OC_NAME_LANCER OC_NAME "(Lancer)"
  43. #define OC_NAME_SH OC_NAME "(Skyhawk)"
  44. #define DRV_DESC "Emulex OneConnect NIC Driver"
  45. #define BE_VENDOR_ID 0x19a2
  46. #define EMULEX_VENDOR_ID 0x10df
  47. #define BE_DEVICE_ID1 0x211
  48. #define BE_DEVICE_ID2 0x221
  49. #define OC_DEVICE_ID1 0x700 /* Device Id for BE2 cards */
  50. #define OC_DEVICE_ID2 0x710 /* Device Id for BE3 cards */
  51. #define OC_DEVICE_ID3 0xe220 /* Device id for Lancer cards */
  52. #define OC_DEVICE_ID4 0xe228 /* Device id for VF in Lancer */
  53. #define OC_DEVICE_ID5 0x720 /* Device Id for Skyhawk cards */
  54. #define OC_DEVICE_ID6 0x728 /* Device id for VF in SkyHawk */
  55. #define OC_SUBSYS_DEVICE_ID1 0xE602
  56. #define OC_SUBSYS_DEVICE_ID2 0xE642
  57. #define OC_SUBSYS_DEVICE_ID3 0xE612
  58. #define OC_SUBSYS_DEVICE_ID4 0xE652
  59. /* Number of bytes of an RX frame that are copied to skb->data */
  60. #define BE_HDR_LEN ((u16) 64)
  61. /* allocate extra space to allow tunneling decapsulation without head reallocation */
  62. #define BE_RX_SKB_ALLOC_SIZE 256
  63. #define BE_MAX_JUMBO_FRAME_SIZE 9018
  64. #define BE_MIN_MTU 256
  65. #define BE_MAX_MTU (BE_MAX_JUMBO_FRAME_SIZE - \
  66. (ETH_HLEN + ETH_FCS_LEN))
  67. /* Accommodate for QnQ configurations where VLAN insertion is enabled in HW */
  68. #define BE_MAX_GSO_SIZE (65535 - 2 * VLAN_HLEN)
  69. #define BE_NUM_VLANS_SUPPORTED 64
  70. #define BE_MAX_EQD 128u
  71. #define BE_MAX_TX_FRAG_COUNT 30
  72. #define EVNT_Q_LEN 1024
  73. #define TX_Q_LEN 2048
  74. #define TX_CQ_LEN 1024
  75. #define RX_Q_LEN 1024 /* Does not support any other value */
  76. #define RX_CQ_LEN 1024
  77. #define MCC_Q_LEN 128 /* total size not to exceed 8 pages */
  78. #define MCC_CQ_LEN 256
  79. #define BE2_MAX_RSS_QS 4
  80. #define BE3_MAX_RSS_QS 16
  81. #define BE3_MAX_TX_QS 16
  82. #define BE3_MAX_EVT_QS 16
  83. #define BE3_SRIOV_MAX_EVT_QS 8
  84. #define SH_VF_MAX_NIC_EQS 3 /* Skyhawk VFs can have a max of 4 EQs
  85. * and at least 1 is granted to either
  86. * SURF/DPDK
  87. */
  88. #define MAX_PORT_RSS_TABLES 15
  89. #define MAX_NIC_FUNCS 16
  90. #define MAX_RX_QS 32
  91. #define MAX_EVT_QS 32
  92. #define MAX_TX_QS 32
  93. #define MAX_ROCE_EQS 5
  94. #define MAX_MSIX_VECTORS 32
  95. #define MIN_MSIX_VECTORS 1
  96. #define BE_NAPI_WEIGHT 64
  97. #define MAX_RX_POST BE_NAPI_WEIGHT /* Frags posted at a time */
  98. #define RX_FRAGS_REFILL_WM (RX_Q_LEN - MAX_RX_POST)
  99. #define MAX_NUM_POST_ERX_DB 255u
  100. #define MAX_VFS 30 /* Max VFs supported by BE3 FW */
  101. #define FW_VER_LEN 32
  102. #define CNTL_SERIAL_NUM_WORDS 8 /* Controller serial number words */
  103. #define CNTL_SERIAL_NUM_WORD_SZ (sizeof(u16)) /* Byte-sz of serial num word */
  104. #define RSS_INDIR_TABLE_LEN 128
  105. #define RSS_HASH_KEY_LEN 40
  106. #define BE_UNKNOWN_PHY_STATE 0xFF
  107. struct be_dma_mem {
  108. void *va;
  109. dma_addr_t dma;
  110. u32 size;
  111. };
  112. struct be_queue_info {
  113. u32 len;
  114. u32 entry_size; /* Size of an element in the queue */
  115. u32 tail, head;
  116. atomic_t used; /* Number of valid elements in the queue */
  117. u32 id;
  118. struct be_dma_mem dma_mem;
  119. bool created;
  120. };
  121. static inline u32 MODULO(u32 val, u32 limit)
  122. {
  123. BUG_ON(limit & (limit - 1));
  124. return val & (limit - 1);
  125. }
  126. static inline void index_adv(u32 *index, u32 val, u32 limit)
  127. {
  128. *index = MODULO((*index + val), limit);
  129. }
  130. static inline void index_inc(u32 *index, u32 limit)
  131. {
  132. *index = MODULO((*index + 1), limit);
  133. }
  134. static inline void *queue_head_node(struct be_queue_info *q)
  135. {
  136. return q->dma_mem.va + q->head * q->entry_size;
  137. }
  138. static inline void *queue_tail_node(struct be_queue_info *q)
  139. {
  140. return q->dma_mem.va + q->tail * q->entry_size;
  141. }
  142. static inline void *queue_index_node(struct be_queue_info *q, u16 index)
  143. {
  144. return q->dma_mem.va + index * q->entry_size;
  145. }
  146. static inline void queue_head_inc(struct be_queue_info *q)
  147. {
  148. index_inc(&q->head, q->len);
  149. }
  150. static inline void index_dec(u32 *index, u32 limit)
  151. {
  152. *index = MODULO((*index - 1), limit);
  153. }
  154. static inline void queue_tail_inc(struct be_queue_info *q)
  155. {
  156. index_inc(&q->tail, q->len);
  157. }
  158. struct be_eq_obj {
  159. struct be_queue_info q;
  160. char desc[32];
  161. /* Adaptive interrupt coalescing (AIC) info */
  162. bool enable_aic;
  163. u32 min_eqd; /* in usecs */
  164. u32 max_eqd; /* in usecs */
  165. u32 eqd; /* configured val when aic is off */
  166. u32 cur_eqd; /* in usecs */
  167. u8 idx; /* array index */
  168. u8 msix_idx;
  169. u16 spurious_intr;
  170. struct napi_struct napi;
  171. struct be_adapter *adapter;
  172. cpumask_var_t affinity_mask;
  173. #ifdef CONFIG_NET_RX_BUSY_POLL
  174. #define BE_EQ_IDLE 0
  175. #define BE_EQ_NAPI 1 /* napi owns this EQ */
  176. #define BE_EQ_POLL 2 /* poll owns this EQ */
  177. #define BE_EQ_LOCKED (BE_EQ_NAPI | BE_EQ_POLL)
  178. #define BE_EQ_NAPI_YIELD 4 /* napi yielded this EQ */
  179. #define BE_EQ_POLL_YIELD 8 /* poll yielded this EQ */
  180. #define BE_EQ_YIELD (BE_EQ_NAPI_YIELD | BE_EQ_POLL_YIELD)
  181. #define BE_EQ_USER_PEND (BE_EQ_POLL | BE_EQ_POLL_YIELD)
  182. unsigned int state;
  183. spinlock_t lock; /* lock to serialize napi and busy-poll */
  184. #endif /* CONFIG_NET_RX_BUSY_POLL */
  185. } ____cacheline_aligned_in_smp;
  186. struct be_aic_obj { /* Adaptive interrupt coalescing (AIC) info */
  187. bool enable;
  188. u32 min_eqd; /* in usecs */
  189. u32 max_eqd; /* in usecs */
  190. u32 prev_eqd; /* in usecs */
  191. u32 et_eqd; /* configured val when aic is off */
  192. ulong jiffies;
  193. u64 rx_pkts_prev; /* Used to calculate RX pps */
  194. u64 tx_reqs_prev; /* Used to calculate TX pps */
  195. };
  196. struct be_mcc_obj {
  197. struct be_queue_info q;
  198. struct be_queue_info cq;
  199. bool rearm_cq;
  200. };
  201. struct be_tx_stats {
  202. u64 tx_bytes;
  203. u64 tx_pkts;
  204. u64 tx_vxlan_offload_pkts;
  205. u64 tx_reqs;
  206. u64 tx_compl;
  207. ulong tx_jiffies;
  208. u32 tx_stops;
  209. u32 tx_drv_drops; /* pkts dropped by driver */
  210. /* the error counters are described in be_ethtool.c */
  211. u32 tx_hdr_parse_err;
  212. u32 tx_dma_err;
  213. u32 tx_tso_err;
  214. u32 tx_spoof_check_err;
  215. u32 tx_qinq_err;
  216. u32 tx_internal_parity_err;
  217. struct u64_stats_sync sync;
  218. struct u64_stats_sync sync_compl;
  219. };
  220. /* Structure to hold some data of interest obtained from a TX CQE */
  221. struct be_tx_compl_info {
  222. u8 status; /* Completion status */
  223. u16 end_index; /* Completed TXQ Index */
  224. };
  225. struct be_tx_obj {
  226. u32 db_offset;
  227. struct be_queue_info q;
  228. struct be_queue_info cq;
  229. struct be_tx_compl_info txcp;
  230. /* Remember the skbs that were transmitted */
  231. struct sk_buff *sent_skb_list[TX_Q_LEN];
  232. struct be_tx_stats stats;
  233. u16 pend_wrb_cnt; /* Number of WRBs yet to be given to HW */
  234. u16 last_req_wrb_cnt; /* wrb cnt of the last req in the Q */
  235. u16 last_req_hdr; /* index of the last req's hdr-wrb */
  236. } ____cacheline_aligned_in_smp;
  237. /* Struct to remember the pages posted for rx frags */
  238. struct be_rx_page_info {
  239. struct page *page;
  240. /* set to page-addr for last frag of the page & frag-addr otherwise */
  241. DEFINE_DMA_UNMAP_ADDR(bus);
  242. u16 page_offset;
  243. bool last_frag; /* last frag of the page */
  244. };
  245. struct be_rx_stats {
  246. u64 rx_bytes;
  247. u64 rx_pkts;
  248. u64 rx_vxlan_offload_pkts;
  249. u32 rx_drops_no_skbs; /* skb allocation errors */
  250. u32 rx_drops_no_frags; /* HW has no fetched frags */
  251. u32 rx_post_fail; /* page post alloc failures */
  252. u32 rx_compl;
  253. u32 rx_mcast_pkts;
  254. u32 rx_compl_err; /* completions with err set */
  255. struct u64_stats_sync sync;
  256. };
  257. struct be_rx_compl_info {
  258. u32 rss_hash;
  259. u16 vlan_tag;
  260. u16 pkt_size;
  261. u16 port;
  262. u8 vlanf;
  263. u8 num_rcvd;
  264. u8 err;
  265. u8 ipf;
  266. u8 tcpf;
  267. u8 udpf;
  268. u8 ip_csum;
  269. u8 l4_csum;
  270. u8 ipv6;
  271. u8 qnq;
  272. u8 pkt_type;
  273. u8 ip_frag;
  274. u8 tunneled;
  275. };
  276. struct be_rx_obj {
  277. struct be_adapter *adapter;
  278. struct be_queue_info q;
  279. struct be_queue_info cq;
  280. struct be_rx_compl_info rxcp;
  281. struct be_rx_page_info page_info_tbl[RX_Q_LEN];
  282. struct be_rx_stats stats;
  283. u8 rss_id;
  284. bool rx_post_starved; /* Zero rx frags have been posted to BE */
  285. } ____cacheline_aligned_in_smp;
  286. struct be_drv_stats {
  287. u32 eth_red_drops;
  288. u32 dma_map_errors;
  289. u32 rx_drops_no_pbuf;
  290. u32 rx_drops_no_txpb;
  291. u32 rx_drops_no_erx_descr;
  292. u32 rx_drops_no_tpre_descr;
  293. u32 rx_drops_too_many_frags;
  294. u32 forwarded_packets;
  295. u32 rx_drops_mtu;
  296. u32 rx_crc_errors;
  297. u32 rx_alignment_symbol_errors;
  298. u32 rx_pause_frames;
  299. u32 rx_priority_pause_frames;
  300. u32 rx_control_frames;
  301. u32 rx_in_range_errors;
  302. u32 rx_out_range_errors;
  303. u32 rx_frame_too_long;
  304. u32 rx_address_filtered;
  305. u32 rx_dropped_too_small;
  306. u32 rx_dropped_too_short;
  307. u32 rx_dropped_header_too_small;
  308. u32 rx_dropped_tcp_length;
  309. u32 rx_dropped_runt;
  310. u32 rx_ip_checksum_errs;
  311. u32 rx_tcp_checksum_errs;
  312. u32 rx_udp_checksum_errs;
  313. u32 tx_pauseframes;
  314. u32 tx_priority_pauseframes;
  315. u32 tx_controlframes;
  316. u32 rxpp_fifo_overflow_drop;
  317. u32 rx_input_fifo_overflow_drop;
  318. u32 pmem_fifo_overflow_drop;
  319. u32 jabber_events;
  320. u32 rx_roce_bytes_lsd;
  321. u32 rx_roce_bytes_msd;
  322. u32 rx_roce_frames;
  323. u32 roce_drops_payload_len;
  324. u32 roce_drops_crc;
  325. };
  326. /* A vlan-id of 0xFFFF must be used to clear transparent vlan-tagging */
  327. #define BE_RESET_VLAN_TAG_ID 0xFFFF
  328. struct be_vf_cfg {
  329. unsigned char mac_addr[ETH_ALEN];
  330. int if_handle;
  331. int pmac_id;
  332. u16 vlan_tag;
  333. u32 tx_rate;
  334. u32 plink_tracking;
  335. u32 privileges;
  336. bool spoofchk;
  337. };
  338. enum vf_state {
  339. ENABLED = 0,
  340. ASSIGNED = 1
  341. };
  342. #define BE_FLAGS_LINK_STATUS_INIT BIT(1)
  343. #define BE_FLAGS_SRIOV_ENABLED BIT(2)
  344. #define BE_FLAGS_WORKER_SCHEDULED BIT(3)
  345. #define BE_FLAGS_NAPI_ENABLED BIT(6)
  346. #define BE_FLAGS_QNQ_ASYNC_EVT_RCVD BIT(7)
  347. #define BE_FLAGS_VXLAN_OFFLOADS BIT(8)
  348. #define BE_FLAGS_SETUP_DONE BIT(9)
  349. #define BE_FLAGS_PHY_MISCONFIGURED BIT(10)
  350. #define BE_FLAGS_ERR_DETECTION_SCHEDULED BIT(11)
  351. #define BE_FLAGS_OS2BMC BIT(12)
  352. #define BE_FLAGS_TRY_RECOVERY BIT(13)
  353. #define BE_UC_PMAC_COUNT 30
  354. #define BE_VF_UC_PMAC_COUNT 2
  355. #define MAX_ERR_RECOVERY_RETRY_COUNT 3
  356. #define ERR_DETECTION_DELAY 1000
  357. /* Ethtool set_dump flags */
  358. #define LANCER_INITIATE_FW_DUMP 0x1
  359. #define LANCER_DELETE_FW_DUMP 0x2
  360. struct phy_info {
  361. /* From SFF-8472 spec */
  362. #define SFP_VENDOR_NAME_LEN 17
  363. u8 transceiver;
  364. u8 autoneg;
  365. u8 fc_autoneg;
  366. u8 port_type;
  367. u16 phy_type;
  368. u16 interface_type;
  369. u32 misc_params;
  370. u16 auto_speeds_supported;
  371. u16 fixed_speeds_supported;
  372. int link_speed;
  373. u32 advertising;
  374. u32 supported;
  375. u8 cable_type;
  376. u8 vendor_name[SFP_VENDOR_NAME_LEN];
  377. u8 vendor_pn[SFP_VENDOR_NAME_LEN];
  378. };
  379. struct be_resources {
  380. u16 max_vfs; /* Total VFs "really" supported by FW/HW */
  381. u16 max_mcast_mac;
  382. u16 max_tx_qs;
  383. u16 max_rss_qs;
  384. u16 max_rx_qs;
  385. u16 max_cq_count;
  386. u16 max_uc_mac; /* Max UC MACs programmable */
  387. u16 max_vlans; /* Number of vlans supported */
  388. u16 max_iface_count;
  389. u16 max_mcc_count;
  390. u16 max_evt_qs;
  391. u16 max_nic_evt_qs; /* NIC's share of evt qs */
  392. u32 if_cap_flags;
  393. u32 vf_if_cap_flags; /* VF if capability flags */
  394. u32 flags;
  395. /* Calculated PF Pool's share of RSS Tables. This is not enforced by
  396. * the FW, but is a self-imposed driver limitation.
  397. */
  398. u16 max_rss_tables;
  399. };
  400. /* These are port-wide values */
  401. struct be_port_resources {
  402. u16 max_vfs;
  403. u16 nic_pfs;
  404. };
  405. #define be_is_os2bmc_enabled(adapter) (adapter->flags & BE_FLAGS_OS2BMC)
  406. struct rss_info {
  407. u64 rss_flags;
  408. u8 rsstable[RSS_INDIR_TABLE_LEN];
  409. u8 rss_queue[RSS_INDIR_TABLE_LEN];
  410. u8 rss_hkey[RSS_HASH_KEY_LEN];
  411. };
  412. #define BE_INVALID_DIE_TEMP 0xFF
  413. struct be_hwmon {
  414. struct device *hwmon_dev;
  415. u8 be_on_die_temp; /* Unit: millidegree Celsius */
  416. };
  417. /* Macros to read/write the 'features' word of be_wrb_params structure.
  418. */
  419. #define BE_WRB_F_BIT(name) BE_WRB_F_##name##_BIT
  420. #define BE_WRB_F_MASK(name) BIT_MASK(BE_WRB_F_##name##_BIT)
  421. #define BE_WRB_F_GET(word, name) \
  422. (((word) & (BE_WRB_F_MASK(name))) >> BE_WRB_F_BIT(name))
  423. #define BE_WRB_F_SET(word, name, val) \
  424. ((word) |= (((val) << BE_WRB_F_BIT(name)) & BE_WRB_F_MASK(name)))
  425. /* Feature/offload bits */
  426. enum {
  427. BE_WRB_F_CRC_BIT, /* Ethernet CRC */
  428. BE_WRB_F_IPCS_BIT, /* IP csum */
  429. BE_WRB_F_TCPCS_BIT, /* TCP csum */
  430. BE_WRB_F_UDPCS_BIT, /* UDP csum */
  431. BE_WRB_F_LSO_BIT, /* LSO */
  432. BE_WRB_F_LSO6_BIT, /* LSO6 */
  433. BE_WRB_F_VLAN_BIT, /* VLAN */
  434. BE_WRB_F_VLAN_SKIP_HW_BIT, /* Skip VLAN tag (workaround) */
  435. BE_WRB_F_OS2BMC_BIT /* Send packet to the management ring */
  436. };
  437. /* The structure below provides a HW-agnostic abstraction of WRB params
  438. * retrieved from a TX skb. This is in turn passed to chip specific routines
  439. * during transmit, to set the corresponding params in the WRB.
  440. */
  441. struct be_wrb_params {
  442. u32 features; /* Feature bits */
  443. u16 vlan_tag; /* VLAN tag */
  444. u16 lso_mss; /* MSS for LSO */
  445. };
  446. struct be_eth_addr {
  447. unsigned char mac[ETH_ALEN];
  448. };
  449. #define BE_SEC 1000 /* in msec */
  450. #define BE_MIN (60 * BE_SEC) /* in msec */
  451. #define BE_HOUR (60 * BE_MIN) /* in msec */
  452. #define ERR_RECOVERY_MAX_RETRY_COUNT 3
  453. #define ERR_RECOVERY_DETECTION_DELAY BE_SEC
  454. #define ERR_RECOVERY_RETRY_DELAY (30 * BE_SEC)
  455. /* UE-detection-duration in BEx/Skyhawk:
  456. * All PFs must wait for this duration after they detect UE before reading
  457. * SLIPORT_SEMAPHORE register. At the end of this duration, the Firmware
  458. * guarantees that the SLIPORT_SEMAPHORE register is updated to indicate
  459. * if the UE is recoverable.
  460. */
  461. #define ERR_RECOVERY_UE_DETECT_DURATION BE_SEC
  462. /* Initial idle time (in msec) to elapse after driver load,
  463. * before UE recovery is allowed.
  464. */
  465. #define ERR_IDLE_HR 24
  466. #define ERR_RECOVERY_IDLE_TIME (ERR_IDLE_HR * BE_HOUR)
  467. /* Time interval (in msec) after which UE recovery can be repeated */
  468. #define ERR_INTERVAL_HR 72
  469. #define ERR_RECOVERY_INTERVAL (ERR_INTERVAL_HR * BE_HOUR)
  470. /* BEx/SH UE recovery state machine */
  471. enum {
  472. ERR_RECOVERY_ST_NONE = 0, /* No Recovery */
  473. ERR_RECOVERY_ST_DETECT = 1, /* UE detection duration */
  474. ERR_RECOVERY_ST_RESET = 2, /* Reset Phase (PF0 only) */
  475. ERR_RECOVERY_ST_PRE_POLL = 3, /* Pre-Poll Phase (all PFs) */
  476. ERR_RECOVERY_ST_REINIT = 4 /* Re-initialize Phase */
  477. };
  478. struct be_error_recovery {
  479. /* Lancer error recovery variables */
  480. u8 recovery_retries;
  481. /* BEx/Skyhawk error recovery variables */
  482. u8 recovery_state;
  483. u16 ue_to_reset_time; /* Time after UE, to soft reset
  484. * the chip - PF0 only
  485. */
  486. u16 ue_to_poll_time; /* Time after UE, to Restart Polling
  487. * of SLIPORT_SEMAPHORE reg
  488. */
  489. u16 last_err_code;
  490. bool recovery_supported;
  491. unsigned long probe_time;
  492. unsigned long last_recovery_time;
  493. /* Common to both Lancer & BEx/SH error recovery */
  494. u32 resched_delay;
  495. struct delayed_work err_detection_work;
  496. };
  497. /* Ethtool priv_flags */
  498. #define BE_DISABLE_TPE_RECOVERY 0x1
  499. struct be_vxlan_port {
  500. struct list_head list;
  501. __be16 port; /* VxLAN UDP dst port */
  502. int port_aliases; /* alias count */
  503. };
  504. struct be_adapter {
  505. struct pci_dev *pdev;
  506. struct net_device *netdev;
  507. u8 __iomem *csr; /* CSR BAR used only for BE2/3 */
  508. u8 __iomem *db; /* Door Bell */
  509. u8 __iomem *pcicfg; /* On SH,BEx only. Shadow of PCI config space */
  510. struct mutex mbox_lock; /* For serializing mbox cmds to BE card */
  511. struct be_dma_mem mbox_mem;
  512. /* Mbox mem is adjusted to align to 16 bytes. The allocated addr
  513. * is stored for freeing purpose */
  514. struct be_dma_mem mbox_mem_alloced;
  515. struct be_mcc_obj mcc_obj;
  516. struct mutex mcc_lock; /* For serializing mcc cmds to BE card */
  517. spinlock_t mcc_cq_lock;
  518. u16 cfg_num_rx_irqs; /* configured via set-channels */
  519. u16 cfg_num_tx_irqs; /* configured via set-channels */
  520. u16 num_evt_qs;
  521. u16 num_msix_vec;
  522. struct be_eq_obj eq_obj[MAX_EVT_QS];
  523. struct msix_entry msix_entries[MAX_MSIX_VECTORS];
  524. bool isr_registered;
  525. /* TX Rings */
  526. u16 num_tx_qs;
  527. struct be_tx_obj tx_obj[MAX_TX_QS];
  528. /* Rx rings */
  529. u16 num_rx_qs;
  530. u16 num_rss_qs;
  531. u16 need_def_rxq;
  532. struct be_rx_obj rx_obj[MAX_RX_QS];
  533. u32 big_page_size; /* Compounded page size shared by rx wrbs */
  534. struct be_drv_stats drv_stats;
  535. struct be_aic_obj aic_obj[MAX_EVT_QS];
  536. u8 vlan_prio_bmap; /* Available Priority BitMap */
  537. u16 recommended_prio_bits;/* Recommended Priority bits in vlan tag */
  538. struct be_dma_mem rx_filter; /* Cmd DMA mem for rx-filter */
  539. struct be_dma_mem stats_cmd;
  540. /* Work queue used to perform periodic tasks like getting statistics */
  541. struct delayed_work work;
  542. u16 work_counter;
  543. u8 recovery_retries;
  544. u8 err_flags;
  545. bool pcicfg_mapped; /* pcicfg obtained via pci_iomap() */
  546. u32 flags;
  547. u32 cmd_privileges;
  548. /* Ethtool knobs and info */
  549. char fw_ver[FW_VER_LEN];
  550. char fw_on_flash[FW_VER_LEN];
  551. /* IFACE filtering fields */
  552. int if_handle; /* Used to configure filtering */
  553. u32 if_flags; /* Interface filtering flags */
  554. u32 *pmac_id; /* MAC addr handle used by BE card */
  555. struct be_eth_addr *uc_list;/* list of uc-addrs programmed (not perm) */
  556. u32 uc_macs; /* Count of secondary UC MAC programmed */
  557. struct be_eth_addr *mc_list;/* list of mcast addrs programmed */
  558. u32 mc_count;
  559. unsigned long vids[BITS_TO_LONGS(VLAN_N_VID)];
  560. u16 vlans_added;
  561. bool update_uc_list;
  562. bool update_mc_list;
  563. struct mutex rx_filter_lock;/* For protecting vids[] & mc/uc_list[] */
  564. u32 beacon_state; /* for set_phys_id */
  565. u32 port_num;
  566. char port_name;
  567. u8 mc_type;
  568. u32 function_mode;
  569. u32 function_caps;
  570. u32 rx_fc; /* Rx flow control */
  571. u32 tx_fc; /* Tx flow control */
  572. bool stats_cmd_sent;
  573. struct {
  574. u32 size;
  575. u32 total_size;
  576. u64 io_addr;
  577. } roce_db;
  578. u32 num_msix_roce_vec;
  579. struct ocrdma_dev *ocrdma_dev;
  580. struct list_head entry;
  581. u32 flash_status;
  582. struct completion et_cmd_compl;
  583. struct be_resources pool_res; /* resources available for the port */
  584. struct be_resources res; /* resources available for the func */
  585. u16 num_vfs; /* Number of VFs provisioned by PF */
  586. u8 pf_num; /* Numbering used by FW, starts at 0 */
  587. u8 vf_num; /* Numbering used by FW, starts at 1 */
  588. u8 virtfn;
  589. struct be_vf_cfg *vf_cfg;
  590. bool be3_native;
  591. u32 sli_family;
  592. u8 hba_port_num;
  593. u16 pvid;
  594. __be16 vxlan_port; /* offloaded vxlan port num */
  595. int vxlan_port_count; /* active vxlan port count */
  596. struct list_head vxlan_port_list; /* vxlan port list */
  597. struct phy_info phy;
  598. u8 wol_cap;
  599. bool wol_en;
  600. u16 asic_rev;
  601. u16 qnq_vid;
  602. u32 msg_enable;
  603. int be_get_temp_freq;
  604. struct be_hwmon hwmon_info;
  605. struct rss_info rss_info;
  606. /* Filters for packets that need to be sent to BMC */
  607. u32 bmc_filt_mask;
  608. u32 fat_dump_len;
  609. u16 serial_num[CNTL_SERIAL_NUM_WORDS];
  610. u8 phy_state; /* state of sfp optics (functional, faulted, etc.,) */
  611. u8 dev_mac[ETH_ALEN];
  612. u32 priv_flags; /* ethtool get/set_priv_flags() */
  613. struct be_error_recovery error_recovery;
  614. };
  615. /* Used for defered FW config cmds. Add fields to this struct as reqd */
  616. struct be_cmd_work {
  617. struct work_struct work;
  618. struct be_adapter *adapter;
  619. union {
  620. __be16 vxlan_port;
  621. } info;
  622. };
  623. #define be_physfn(adapter) (!adapter->virtfn)
  624. #define be_virtfn(adapter) (adapter->virtfn)
  625. #define sriov_enabled(adapter) (adapter->flags & \
  626. BE_FLAGS_SRIOV_ENABLED)
  627. #define for_all_vfs(adapter, vf_cfg, i) \
  628. for (i = 0, vf_cfg = &adapter->vf_cfg[i]; i < adapter->num_vfs; \
  629. i++, vf_cfg++)
  630. #define ON 1
  631. #define OFF 0
  632. #define be_max_vlans(adapter) (adapter->res.max_vlans)
  633. #define be_max_uc(adapter) (adapter->res.max_uc_mac)
  634. #define be_max_mc(adapter) (adapter->res.max_mcast_mac)
  635. #define be_max_vfs(adapter) (adapter->pool_res.max_vfs)
  636. #define be_max_rss(adapter) (adapter->res.max_rss_qs)
  637. #define be_max_txqs(adapter) (adapter->res.max_tx_qs)
  638. #define be_max_prio_txqs(adapter) (adapter->res.max_prio_tx_qs)
  639. #define be_max_rxqs(adapter) (adapter->res.max_rx_qs)
  640. /* Max number of EQs available for the function (NIC + RoCE (if enabled)) */
  641. #define be_max_func_eqs(adapter) (adapter->res.max_evt_qs)
  642. /* Max number of EQs available avaialble only for NIC */
  643. #define be_max_nic_eqs(adapter) (adapter->res.max_nic_evt_qs)
  644. #define be_if_cap_flags(adapter) (adapter->res.if_cap_flags)
  645. #define be_max_pf_pool_rss_tables(adapter) \
  646. (adapter->pool_res.max_rss_tables)
  647. /* Max irqs avaialble for NIC */
  648. #define be_max_irqs(adapter) \
  649. (min_t(u16, be_max_nic_eqs(adapter), num_online_cpus()))
  650. /* Max irqs *needed* for RX queues */
  651. static inline u16 be_max_rx_irqs(struct be_adapter *adapter)
  652. {
  653. /* If no RSS, need atleast one irq for def-RXQ */
  654. u16 num = max_t(u16, be_max_rss(adapter), 1);
  655. return min_t(u16, num, be_max_irqs(adapter));
  656. }
  657. /* Max irqs *needed* for TX queues */
  658. static inline u16 be_max_tx_irqs(struct be_adapter *adapter)
  659. {
  660. return min_t(u16, be_max_txqs(adapter), be_max_irqs(adapter));
  661. }
  662. /* Max irqs *needed* for combined queues */
  663. static inline u16 be_max_qp_irqs(struct be_adapter *adapter)
  664. {
  665. return min(be_max_tx_irqs(adapter), be_max_rx_irqs(adapter));
  666. }
  667. /* Max irqs *needed* for RX and TX queues together */
  668. static inline u16 be_max_any_irqs(struct be_adapter *adapter)
  669. {
  670. return max(be_max_tx_irqs(adapter), be_max_rx_irqs(adapter));
  671. }
  672. /* Is BE in pvid_tagging mode */
  673. #define be_pvid_tagging_enabled(adapter) (adapter->pvid)
  674. /* Is BE in QNQ multi-channel mode */
  675. #define be_is_qnq_mode(adapter) (adapter->function_mode & QNQ_MODE)
  676. #define lancer_chip(adapter) (adapter->pdev->device == OC_DEVICE_ID3 || \
  677. adapter->pdev->device == OC_DEVICE_ID4)
  678. #define skyhawk_chip(adapter) (adapter->pdev->device == OC_DEVICE_ID5 || \
  679. adapter->pdev->device == OC_DEVICE_ID6)
  680. #define BE3_chip(adapter) (adapter->pdev->device == BE_DEVICE_ID2 || \
  681. adapter->pdev->device == OC_DEVICE_ID2)
  682. #define BE2_chip(adapter) (adapter->pdev->device == BE_DEVICE_ID1 || \
  683. adapter->pdev->device == OC_DEVICE_ID1)
  684. #define BEx_chip(adapter) (BE3_chip(adapter) || BE2_chip(adapter))
  685. #define be_roce_supported(adapter) (skyhawk_chip(adapter) && \
  686. (adapter->function_mode & RDMA_ENABLED))
  687. extern const struct ethtool_ops be_ethtool_ops;
  688. #define msix_enabled(adapter) (adapter->num_msix_vec > 0)
  689. #define num_irqs(adapter) (msix_enabled(adapter) ? \
  690. adapter->num_msix_vec : 1)
  691. #define tx_stats(txo) (&(txo)->stats)
  692. #define rx_stats(rxo) (&(rxo)->stats)
  693. /* The default RXQ is the last RXQ */
  694. #define default_rxo(adpt) (&adpt->rx_obj[adpt->num_rx_qs - 1])
  695. #define for_all_rx_queues(adapter, rxo, i) \
  696. for (i = 0, rxo = &adapter->rx_obj[i]; i < adapter->num_rx_qs; \
  697. i++, rxo++)
  698. #define for_all_rss_queues(adapter, rxo, i) \
  699. for (i = 0, rxo = &adapter->rx_obj[i]; i < adapter->num_rss_qs; \
  700. i++, rxo++)
  701. #define for_all_tx_queues(adapter, txo, i) \
  702. for (i = 0, txo = &adapter->tx_obj[i]; i < adapter->num_tx_qs; \
  703. i++, txo++)
  704. #define for_all_evt_queues(adapter, eqo, i) \
  705. for (i = 0, eqo = &adapter->eq_obj[i]; i < adapter->num_evt_qs; \
  706. i++, eqo++)
  707. #define for_all_rx_queues_on_eq(adapter, eqo, rxo, i) \
  708. for (i = eqo->idx, rxo = &adapter->rx_obj[i]; i < adapter->num_rx_qs;\
  709. i += adapter->num_evt_qs, rxo += adapter->num_evt_qs)
  710. #define for_all_tx_queues_on_eq(adapter, eqo, txo, i) \
  711. for (i = eqo->idx, txo = &adapter->tx_obj[i]; i < adapter->num_tx_qs;\
  712. i += adapter->num_evt_qs, txo += adapter->num_evt_qs)
  713. #define is_mcc_eqo(eqo) (eqo->idx == 0)
  714. #define mcc_eqo(adapter) (&adapter->eq_obj[0])
  715. #define PAGE_SHIFT_4K 12
  716. #define PAGE_SIZE_4K (1 << PAGE_SHIFT_4K)
  717. /* Returns number of pages spanned by the data starting at the given addr */
  718. #define PAGES_4K_SPANNED(_address, size) \
  719. ((u32)((((size_t)(_address) & (PAGE_SIZE_4K - 1)) + \
  720. (size) + (PAGE_SIZE_4K - 1)) >> PAGE_SHIFT_4K))
  721. /* Returns bit offset within a DWORD of a bitfield */
  722. #define AMAP_BIT_OFFSET(_struct, field) \
  723. (((size_t)&(((_struct *)0)->field))%32)
  724. /* Returns the bit mask of the field that is NOT shifted into location. */
  725. static inline u32 amap_mask(u32 bitsize)
  726. {
  727. return (bitsize == 32 ? 0xFFFFFFFF : (1 << bitsize) - 1);
  728. }
  729. static inline void
  730. amap_set(void *ptr, u32 dw_offset, u32 mask, u32 offset, u32 value)
  731. {
  732. u32 *dw = (u32 *) ptr + dw_offset;
  733. *dw &= ~(mask << offset);
  734. *dw |= (mask & value) << offset;
  735. }
  736. #define AMAP_SET_BITS(_struct, field, ptr, val) \
  737. amap_set(ptr, \
  738. offsetof(_struct, field)/32, \
  739. amap_mask(sizeof(((_struct *)0)->field)), \
  740. AMAP_BIT_OFFSET(_struct, field), \
  741. val)
  742. static inline u32 amap_get(void *ptr, u32 dw_offset, u32 mask, u32 offset)
  743. {
  744. u32 *dw = (u32 *) ptr;
  745. return mask & (*(dw + dw_offset) >> offset);
  746. }
  747. #define AMAP_GET_BITS(_struct, field, ptr) \
  748. amap_get(ptr, \
  749. offsetof(_struct, field)/32, \
  750. amap_mask(sizeof(((_struct *)0)->field)), \
  751. AMAP_BIT_OFFSET(_struct, field))
  752. #define GET_RX_COMPL_V0_BITS(field, ptr) \
  753. AMAP_GET_BITS(struct amap_eth_rx_compl_v0, field, ptr)
  754. #define GET_RX_COMPL_V1_BITS(field, ptr) \
  755. AMAP_GET_BITS(struct amap_eth_rx_compl_v1, field, ptr)
  756. #define GET_TX_COMPL_BITS(field, ptr) \
  757. AMAP_GET_BITS(struct amap_eth_tx_compl, field, ptr)
  758. #define SET_TX_WRB_HDR_BITS(field, ptr, val) \
  759. AMAP_SET_BITS(struct amap_eth_hdr_wrb, field, ptr, val)
  760. #define be_dws_cpu_to_le(wrb, len) swap_dws(wrb, len)
  761. #define be_dws_le_to_cpu(wrb, len) swap_dws(wrb, len)
  762. static inline void swap_dws(void *wrb, int len)
  763. {
  764. #ifdef __BIG_ENDIAN
  765. u32 *dw = wrb;
  766. BUG_ON(len % 4);
  767. do {
  768. *dw = cpu_to_le32(*dw);
  769. dw++;
  770. len -= 4;
  771. } while (len);
  772. #endif /* __BIG_ENDIAN */
  773. }
  774. #define be_cmd_status(status) (status > 0 ? -EIO : status)
  775. static inline u8 is_tcp_pkt(struct sk_buff *skb)
  776. {
  777. u8 val = 0;
  778. if (ip_hdr(skb)->version == 4)
  779. val = (ip_hdr(skb)->protocol == IPPROTO_TCP);
  780. else if (ip_hdr(skb)->version == 6)
  781. val = (ipv6_hdr(skb)->nexthdr == NEXTHDR_TCP);
  782. return val;
  783. }
  784. static inline u8 is_udp_pkt(struct sk_buff *skb)
  785. {
  786. u8 val = 0;
  787. if (ip_hdr(skb)->version == 4)
  788. val = (ip_hdr(skb)->protocol == IPPROTO_UDP);
  789. else if (ip_hdr(skb)->version == 6)
  790. val = (ipv6_hdr(skb)->nexthdr == NEXTHDR_UDP);
  791. return val;
  792. }
  793. static inline bool is_ipv4_pkt(struct sk_buff *skb)
  794. {
  795. return skb->protocol == htons(ETH_P_IP) && ip_hdr(skb)->version == 4;
  796. }
  797. static inline bool is_ipv6_ext_hdr(struct sk_buff *skb)
  798. {
  799. if (ip_hdr(skb)->version == 6)
  800. return ipv6_ext_hdr(ipv6_hdr(skb)->nexthdr);
  801. else
  802. return false;
  803. }
  804. #define be_error_recovering(adapter) \
  805. (adapter->flags & BE_FLAGS_TRY_RECOVERY)
  806. #define BE_ERROR_EEH 1
  807. #define BE_ERROR_UE BIT(1)
  808. #define BE_ERROR_FW BIT(2)
  809. #define BE_ERROR_HW (BE_ERROR_EEH | BE_ERROR_UE)
  810. #define BE_ERROR_ANY (BE_ERROR_EEH | BE_ERROR_UE | BE_ERROR_FW)
  811. #define BE_CLEAR_ALL 0xFF
  812. static inline u8 be_check_error(struct be_adapter *adapter, u32 err_type)
  813. {
  814. return (adapter->err_flags & err_type);
  815. }
  816. static inline void be_set_error(struct be_adapter *adapter, int err_type)
  817. {
  818. struct net_device *netdev = adapter->netdev;
  819. adapter->err_flags |= err_type;
  820. netif_carrier_off(netdev);
  821. dev_info(&adapter->pdev->dev, "%s: Link down\n", netdev->name);
  822. }
  823. static inline void be_clear_error(struct be_adapter *adapter, int err_type)
  824. {
  825. adapter->err_flags &= ~err_type;
  826. }
  827. static inline bool be_multi_rxq(const struct be_adapter *adapter)
  828. {
  829. return adapter->num_rx_qs > 1;
  830. }
  831. void be_cq_notify(struct be_adapter *adapter, u16 qid, bool arm,
  832. u16 num_popped);
  833. void be_link_status_update(struct be_adapter *adapter, u8 link_status);
  834. void be_parse_stats(struct be_adapter *adapter);
  835. int be_load_fw(struct be_adapter *adapter, u8 *func);
  836. bool be_is_wol_supported(struct be_adapter *adapter);
  837. bool be_pause_supported(struct be_adapter *adapter);
  838. u32 be_get_fw_log_level(struct be_adapter *adapter);
  839. int be_update_queues(struct be_adapter *adapter);
  840. int be_poll(struct napi_struct *napi, int budget);
  841. void be_eqd_update(struct be_adapter *adapter, bool force_update);
  842. /*
  843. * internal function to initialize-cleanup roce device.
  844. */
  845. void be_roce_dev_add(struct be_adapter *);
  846. void be_roce_dev_remove(struct be_adapter *);
  847. /*
  848. * internal function to open-close roce device during ifup-ifdown.
  849. */
  850. void be_roce_dev_shutdown(struct be_adapter *);
  851. #endif /* BE_H */