be.h 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002
  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. u32 tx_sge_err;
  218. struct u64_stats_sync sync;
  219. struct u64_stats_sync sync_compl;
  220. };
  221. /* Structure to hold some data of interest obtained from a TX CQE */
  222. struct be_tx_compl_info {
  223. u8 status; /* Completion status */
  224. u16 end_index; /* Completed TXQ Index */
  225. };
  226. struct be_tx_obj {
  227. u32 db_offset;
  228. struct be_queue_info q;
  229. struct be_queue_info cq;
  230. struct be_tx_compl_info txcp;
  231. /* Remember the skbs that were transmitted */
  232. struct sk_buff *sent_skb_list[TX_Q_LEN];
  233. struct be_tx_stats stats;
  234. u16 pend_wrb_cnt; /* Number of WRBs yet to be given to HW */
  235. u16 last_req_wrb_cnt; /* wrb cnt of the last req in the Q */
  236. u16 last_req_hdr; /* index of the last req's hdr-wrb */
  237. } ____cacheline_aligned_in_smp;
  238. /* Struct to remember the pages posted for rx frags */
  239. struct be_rx_page_info {
  240. struct page *page;
  241. /* set to page-addr for last frag of the page & frag-addr otherwise */
  242. DEFINE_DMA_UNMAP_ADDR(bus);
  243. u16 page_offset;
  244. bool last_frag; /* last frag of the page */
  245. };
  246. struct be_rx_stats {
  247. u64 rx_bytes;
  248. u64 rx_pkts;
  249. u64 rx_vxlan_offload_pkts;
  250. u32 rx_drops_no_skbs; /* skb allocation errors */
  251. u32 rx_drops_no_frags; /* HW has no fetched frags */
  252. u32 rx_post_fail; /* page post alloc failures */
  253. u32 rx_compl;
  254. u32 rx_mcast_pkts;
  255. u32 rx_compl_err; /* completions with err set */
  256. struct u64_stats_sync sync;
  257. };
  258. struct be_rx_compl_info {
  259. u32 rss_hash;
  260. u16 vlan_tag;
  261. u16 pkt_size;
  262. u16 port;
  263. u8 vlanf;
  264. u8 num_rcvd;
  265. u8 err;
  266. u8 ipf;
  267. u8 tcpf;
  268. u8 udpf;
  269. u8 ip_csum;
  270. u8 l4_csum;
  271. u8 ipv6;
  272. u8 qnq;
  273. u8 pkt_type;
  274. u8 ip_frag;
  275. u8 tunneled;
  276. };
  277. struct be_rx_obj {
  278. struct be_adapter *adapter;
  279. struct be_queue_info q;
  280. struct be_queue_info cq;
  281. struct be_rx_compl_info rxcp;
  282. struct be_rx_page_info page_info_tbl[RX_Q_LEN];
  283. struct be_rx_stats stats;
  284. u8 rss_id;
  285. bool rx_post_starved; /* Zero rx frags have been posted to BE */
  286. } ____cacheline_aligned_in_smp;
  287. struct be_drv_stats {
  288. u32 eth_red_drops;
  289. u32 dma_map_errors;
  290. u32 rx_drops_no_pbuf;
  291. u32 rx_drops_no_txpb;
  292. u32 rx_drops_no_erx_descr;
  293. u32 rx_drops_no_tpre_descr;
  294. u32 rx_drops_too_many_frags;
  295. u32 forwarded_packets;
  296. u32 rx_drops_mtu;
  297. u32 rx_crc_errors;
  298. u32 rx_alignment_symbol_errors;
  299. u32 rx_pause_frames;
  300. u32 rx_priority_pause_frames;
  301. u32 rx_control_frames;
  302. u32 rx_in_range_errors;
  303. u32 rx_out_range_errors;
  304. u32 rx_frame_too_long;
  305. u32 rx_address_filtered;
  306. u32 rx_dropped_too_small;
  307. u32 rx_dropped_too_short;
  308. u32 rx_dropped_header_too_small;
  309. u32 rx_dropped_tcp_length;
  310. u32 rx_dropped_runt;
  311. u32 rx_ip_checksum_errs;
  312. u32 rx_tcp_checksum_errs;
  313. u32 rx_udp_checksum_errs;
  314. u32 tx_pauseframes;
  315. u32 tx_priority_pauseframes;
  316. u32 tx_controlframes;
  317. u32 rxpp_fifo_overflow_drop;
  318. u32 rx_input_fifo_overflow_drop;
  319. u32 pmem_fifo_overflow_drop;
  320. u32 jabber_events;
  321. u32 rx_roce_bytes_lsd;
  322. u32 rx_roce_bytes_msd;
  323. u32 rx_roce_frames;
  324. u32 roce_drops_payload_len;
  325. u32 roce_drops_crc;
  326. };
  327. /* A vlan-id of 0xFFFF must be used to clear transparent vlan-tagging */
  328. #define BE_RESET_VLAN_TAG_ID 0xFFFF
  329. struct be_vf_cfg {
  330. unsigned char mac_addr[ETH_ALEN];
  331. int if_handle;
  332. int pmac_id;
  333. u16 vlan_tag;
  334. u32 tx_rate;
  335. u32 plink_tracking;
  336. u32 privileges;
  337. bool spoofchk;
  338. };
  339. enum vf_state {
  340. ENABLED = 0,
  341. ASSIGNED = 1
  342. };
  343. #define BE_FLAGS_LINK_STATUS_INIT BIT(1)
  344. #define BE_FLAGS_SRIOV_ENABLED BIT(2)
  345. #define BE_FLAGS_WORKER_SCHEDULED BIT(3)
  346. #define BE_FLAGS_NAPI_ENABLED BIT(6)
  347. #define BE_FLAGS_QNQ_ASYNC_EVT_RCVD BIT(7)
  348. #define BE_FLAGS_VXLAN_OFFLOADS BIT(8)
  349. #define BE_FLAGS_SETUP_DONE BIT(9)
  350. #define BE_FLAGS_PHY_MISCONFIGURED BIT(10)
  351. #define BE_FLAGS_ERR_DETECTION_SCHEDULED BIT(11)
  352. #define BE_FLAGS_OS2BMC BIT(12)
  353. #define BE_FLAGS_TRY_RECOVERY BIT(13)
  354. #define BE_UC_PMAC_COUNT 30
  355. #define BE_VF_UC_PMAC_COUNT 2
  356. #define MAX_ERR_RECOVERY_RETRY_COUNT 3
  357. #define ERR_DETECTION_DELAY 1000
  358. /* Ethtool set_dump flags */
  359. #define LANCER_INITIATE_FW_DUMP 0x1
  360. #define LANCER_DELETE_FW_DUMP 0x2
  361. struct phy_info {
  362. /* From SFF-8472 spec */
  363. #define SFP_VENDOR_NAME_LEN 17
  364. u8 transceiver;
  365. u8 autoneg;
  366. u8 fc_autoneg;
  367. u8 port_type;
  368. u16 phy_type;
  369. u16 interface_type;
  370. u32 misc_params;
  371. u16 auto_speeds_supported;
  372. u16 fixed_speeds_supported;
  373. int link_speed;
  374. u32 advertising;
  375. u32 supported;
  376. u8 cable_type;
  377. u8 vendor_name[SFP_VENDOR_NAME_LEN];
  378. u8 vendor_pn[SFP_VENDOR_NAME_LEN];
  379. };
  380. struct be_resources {
  381. u16 max_vfs; /* Total VFs "really" supported by FW/HW */
  382. u16 max_mcast_mac;
  383. u16 max_tx_qs;
  384. u16 max_rss_qs;
  385. u16 max_rx_qs;
  386. u16 max_cq_count;
  387. u16 max_uc_mac; /* Max UC MACs programmable */
  388. u16 max_vlans; /* Number of vlans supported */
  389. u16 max_iface_count;
  390. u16 max_mcc_count;
  391. u16 max_evt_qs;
  392. u16 max_nic_evt_qs; /* NIC's share of evt qs */
  393. u32 if_cap_flags;
  394. u32 vf_if_cap_flags; /* VF if capability flags */
  395. u32 flags;
  396. /* Calculated PF Pool's share of RSS Tables. This is not enforced by
  397. * the FW, but is a self-imposed driver limitation.
  398. */
  399. u16 max_rss_tables;
  400. };
  401. /* These are port-wide values */
  402. struct be_port_resources {
  403. u16 max_vfs;
  404. u16 nic_pfs;
  405. };
  406. #define be_is_os2bmc_enabled(adapter) (adapter->flags & BE_FLAGS_OS2BMC)
  407. struct rss_info {
  408. u64 rss_flags;
  409. u8 rsstable[RSS_INDIR_TABLE_LEN];
  410. u8 rss_queue[RSS_INDIR_TABLE_LEN];
  411. u8 rss_hkey[RSS_HASH_KEY_LEN];
  412. };
  413. #define BE_INVALID_DIE_TEMP 0xFF
  414. struct be_hwmon {
  415. struct device *hwmon_dev;
  416. u8 be_on_die_temp; /* Unit: millidegree Celsius */
  417. };
  418. /* Macros to read/write the 'features' word of be_wrb_params structure.
  419. */
  420. #define BE_WRB_F_BIT(name) BE_WRB_F_##name##_BIT
  421. #define BE_WRB_F_MASK(name) BIT_MASK(BE_WRB_F_##name##_BIT)
  422. #define BE_WRB_F_GET(word, name) \
  423. (((word) & (BE_WRB_F_MASK(name))) >> BE_WRB_F_BIT(name))
  424. #define BE_WRB_F_SET(word, name, val) \
  425. ((word) |= (((val) << BE_WRB_F_BIT(name)) & BE_WRB_F_MASK(name)))
  426. /* Feature/offload bits */
  427. enum {
  428. BE_WRB_F_CRC_BIT, /* Ethernet CRC */
  429. BE_WRB_F_IPCS_BIT, /* IP csum */
  430. BE_WRB_F_TCPCS_BIT, /* TCP csum */
  431. BE_WRB_F_UDPCS_BIT, /* UDP csum */
  432. BE_WRB_F_LSO_BIT, /* LSO */
  433. BE_WRB_F_LSO6_BIT, /* LSO6 */
  434. BE_WRB_F_VLAN_BIT, /* VLAN */
  435. BE_WRB_F_VLAN_SKIP_HW_BIT, /* Skip VLAN tag (workaround) */
  436. BE_WRB_F_OS2BMC_BIT /* Send packet to the management ring */
  437. };
  438. /* The structure below provides a HW-agnostic abstraction of WRB params
  439. * retrieved from a TX skb. This is in turn passed to chip specific routines
  440. * during transmit, to set the corresponding params in the WRB.
  441. */
  442. struct be_wrb_params {
  443. u32 features; /* Feature bits */
  444. u16 vlan_tag; /* VLAN tag */
  445. u16 lso_mss; /* MSS for LSO */
  446. };
  447. struct be_eth_addr {
  448. unsigned char mac[ETH_ALEN];
  449. };
  450. #define BE_SEC 1000 /* in msec */
  451. #define BE_MIN (60 * BE_SEC) /* in msec */
  452. #define BE_HOUR (60 * BE_MIN) /* in msec */
  453. #define ERR_RECOVERY_MAX_RETRY_COUNT 3
  454. #define ERR_RECOVERY_DETECTION_DELAY BE_SEC
  455. #define ERR_RECOVERY_RETRY_DELAY (30 * BE_SEC)
  456. /* UE-detection-duration in BEx/Skyhawk:
  457. * All PFs must wait for this duration after they detect UE before reading
  458. * SLIPORT_SEMAPHORE register. At the end of this duration, the Firmware
  459. * guarantees that the SLIPORT_SEMAPHORE register is updated to indicate
  460. * if the UE is recoverable.
  461. */
  462. #define ERR_RECOVERY_UE_DETECT_DURATION BE_SEC
  463. /* Initial idle time (in msec) to elapse after driver load,
  464. * before UE recovery is allowed.
  465. */
  466. #define ERR_IDLE_HR 24
  467. #define ERR_RECOVERY_IDLE_TIME (ERR_IDLE_HR * BE_HOUR)
  468. /* Time interval (in msec) after which UE recovery can be repeated */
  469. #define ERR_INTERVAL_HR 72
  470. #define ERR_RECOVERY_INTERVAL (ERR_INTERVAL_HR * BE_HOUR)
  471. /* BEx/SH UE recovery state machine */
  472. enum {
  473. ERR_RECOVERY_ST_NONE = 0, /* No Recovery */
  474. ERR_RECOVERY_ST_DETECT = 1, /* UE detection duration */
  475. ERR_RECOVERY_ST_RESET = 2, /* Reset Phase (PF0 only) */
  476. ERR_RECOVERY_ST_PRE_POLL = 3, /* Pre-Poll Phase (all PFs) */
  477. ERR_RECOVERY_ST_REINIT = 4 /* Re-initialize Phase */
  478. };
  479. struct be_error_recovery {
  480. /* Lancer error recovery variables */
  481. u8 recovery_retries;
  482. /* BEx/Skyhawk error recovery variables */
  483. u8 recovery_state;
  484. u16 ue_to_reset_time; /* Time after UE, to soft reset
  485. * the chip - PF0 only
  486. */
  487. u16 ue_to_poll_time; /* Time after UE, to Restart Polling
  488. * of SLIPORT_SEMAPHORE reg
  489. */
  490. u16 last_err_code;
  491. bool recovery_supported;
  492. unsigned long probe_time;
  493. unsigned long last_recovery_time;
  494. /* Common to both Lancer & BEx/SH error recovery */
  495. u32 resched_delay;
  496. struct delayed_work err_detection_work;
  497. };
  498. /* Ethtool priv_flags */
  499. #define BE_DISABLE_TPE_RECOVERY 0x1
  500. struct be_vxlan_port {
  501. struct list_head list;
  502. __be16 port; /* VxLAN UDP dst port */
  503. int port_aliases; /* alias count */
  504. };
  505. struct be_adapter {
  506. struct pci_dev *pdev;
  507. struct net_device *netdev;
  508. u8 __iomem *csr; /* CSR BAR used only for BE2/3 */
  509. u8 __iomem *db; /* Door Bell */
  510. u8 __iomem *pcicfg; /* On SH,BEx only. Shadow of PCI config space */
  511. struct mutex mbox_lock; /* For serializing mbox cmds to BE card */
  512. struct be_dma_mem mbox_mem;
  513. /* Mbox mem is adjusted to align to 16 bytes. The allocated addr
  514. * is stored for freeing purpose */
  515. struct be_dma_mem mbox_mem_alloced;
  516. struct be_mcc_obj mcc_obj;
  517. struct mutex mcc_lock; /* For serializing mcc cmds to BE card */
  518. spinlock_t mcc_cq_lock;
  519. u16 cfg_num_rx_irqs; /* configured via set-channels */
  520. u16 cfg_num_tx_irqs; /* configured via set-channels */
  521. u16 num_evt_qs;
  522. u16 num_msix_vec;
  523. struct be_eq_obj eq_obj[MAX_EVT_QS];
  524. struct msix_entry msix_entries[MAX_MSIX_VECTORS];
  525. bool isr_registered;
  526. /* TX Rings */
  527. u16 num_tx_qs;
  528. struct be_tx_obj tx_obj[MAX_TX_QS];
  529. /* Rx rings */
  530. u16 num_rx_qs;
  531. u16 num_rss_qs;
  532. u16 need_def_rxq;
  533. struct be_rx_obj rx_obj[MAX_RX_QS];
  534. u32 big_page_size; /* Compounded page size shared by rx wrbs */
  535. struct be_drv_stats drv_stats;
  536. struct be_aic_obj aic_obj[MAX_EVT_QS];
  537. u8 vlan_prio_bmap; /* Available Priority BitMap */
  538. u16 recommended_prio_bits;/* Recommended Priority bits in vlan tag */
  539. struct be_dma_mem rx_filter; /* Cmd DMA mem for rx-filter */
  540. struct be_dma_mem stats_cmd;
  541. /* Work queue used to perform periodic tasks like getting statistics */
  542. struct delayed_work work;
  543. u16 work_counter;
  544. u8 recovery_retries;
  545. u8 err_flags;
  546. bool pcicfg_mapped; /* pcicfg obtained via pci_iomap() */
  547. u32 flags;
  548. u32 cmd_privileges;
  549. /* Ethtool knobs and info */
  550. char fw_ver[FW_VER_LEN];
  551. char fw_on_flash[FW_VER_LEN];
  552. /* IFACE filtering fields */
  553. int if_handle; /* Used to configure filtering */
  554. u32 if_flags; /* Interface filtering flags */
  555. u32 *pmac_id; /* MAC addr handle used by BE card */
  556. struct be_eth_addr *uc_list;/* list of uc-addrs programmed (not perm) */
  557. u32 uc_macs; /* Count of secondary UC MAC programmed */
  558. struct be_eth_addr *mc_list;/* list of mcast addrs programmed */
  559. u32 mc_count;
  560. unsigned long vids[BITS_TO_LONGS(VLAN_N_VID)];
  561. u16 vlans_added;
  562. bool update_uc_list;
  563. bool update_mc_list;
  564. struct mutex rx_filter_lock;/* For protecting vids[] & mc/uc_list[] */
  565. u32 beacon_state; /* for set_phys_id */
  566. u32 port_num;
  567. char port_name;
  568. u8 mc_type;
  569. u32 function_mode;
  570. u32 function_caps;
  571. u32 rx_fc; /* Rx flow control */
  572. u32 tx_fc; /* Tx flow control */
  573. bool stats_cmd_sent;
  574. struct {
  575. u32 size;
  576. u32 total_size;
  577. u64 io_addr;
  578. } roce_db;
  579. u32 num_msix_roce_vec;
  580. struct ocrdma_dev *ocrdma_dev;
  581. struct list_head entry;
  582. u32 flash_status;
  583. struct completion et_cmd_compl;
  584. struct be_resources pool_res; /* resources available for the port */
  585. struct be_resources res; /* resources available for the func */
  586. u16 num_vfs; /* Number of VFs provisioned by PF */
  587. u8 pf_num; /* Numbering used by FW, starts at 0 */
  588. u8 vf_num; /* Numbering used by FW, starts at 1 */
  589. u8 virtfn;
  590. struct be_vf_cfg *vf_cfg;
  591. bool be3_native;
  592. u32 sli_family;
  593. u8 hba_port_num;
  594. u16 pvid;
  595. __be16 vxlan_port; /* offloaded vxlan port num */
  596. int vxlan_port_count; /* active vxlan port count */
  597. struct list_head vxlan_port_list; /* vxlan port list */
  598. struct phy_info phy;
  599. u8 wol_cap;
  600. bool wol_en;
  601. u16 asic_rev;
  602. u16 qnq_vid;
  603. u32 msg_enable;
  604. int be_get_temp_freq;
  605. struct be_hwmon hwmon_info;
  606. struct rss_info rss_info;
  607. /* Filters for packets that need to be sent to BMC */
  608. u32 bmc_filt_mask;
  609. u32 fat_dump_len;
  610. u16 serial_num[CNTL_SERIAL_NUM_WORDS];
  611. u8 phy_state; /* state of sfp optics (functional, faulted, etc.,) */
  612. u8 dev_mac[ETH_ALEN];
  613. u32 priv_flags; /* ethtool get/set_priv_flags() */
  614. struct be_error_recovery error_recovery;
  615. };
  616. /* Used for defered FW config cmds. Add fields to this struct as reqd */
  617. struct be_cmd_work {
  618. struct work_struct work;
  619. struct be_adapter *adapter;
  620. union {
  621. __be16 vxlan_port;
  622. } info;
  623. };
  624. #define be_physfn(adapter) (!adapter->virtfn)
  625. #define be_virtfn(adapter) (adapter->virtfn)
  626. #define sriov_enabled(adapter) (adapter->flags & \
  627. BE_FLAGS_SRIOV_ENABLED)
  628. #define for_all_vfs(adapter, vf_cfg, i) \
  629. for (i = 0, vf_cfg = &adapter->vf_cfg[i]; i < adapter->num_vfs; \
  630. i++, vf_cfg++)
  631. #define ON 1
  632. #define OFF 0
  633. #define be_max_vlans(adapter) (adapter->res.max_vlans)
  634. #define be_max_uc(adapter) (adapter->res.max_uc_mac)
  635. #define be_max_mc(adapter) (adapter->res.max_mcast_mac)
  636. #define be_max_vfs(adapter) (adapter->pool_res.max_vfs)
  637. #define be_max_rss(adapter) (adapter->res.max_rss_qs)
  638. #define be_max_txqs(adapter) (adapter->res.max_tx_qs)
  639. #define be_max_prio_txqs(adapter) (adapter->res.max_prio_tx_qs)
  640. #define be_max_rxqs(adapter) (adapter->res.max_rx_qs)
  641. /* Max number of EQs available for the function (NIC + RoCE (if enabled)) */
  642. #define be_max_func_eqs(adapter) (adapter->res.max_evt_qs)
  643. /* Max number of EQs available avaialble only for NIC */
  644. #define be_max_nic_eqs(adapter) (adapter->res.max_nic_evt_qs)
  645. #define be_if_cap_flags(adapter) (adapter->res.if_cap_flags)
  646. #define be_max_pf_pool_rss_tables(adapter) \
  647. (adapter->pool_res.max_rss_tables)
  648. /* Max irqs avaialble for NIC */
  649. #define be_max_irqs(adapter) \
  650. (min_t(u16, be_max_nic_eqs(adapter), num_online_cpus()))
  651. /* Max irqs *needed* for RX queues */
  652. static inline u16 be_max_rx_irqs(struct be_adapter *adapter)
  653. {
  654. /* If no RSS, need atleast one irq for def-RXQ */
  655. u16 num = max_t(u16, be_max_rss(adapter), 1);
  656. return min_t(u16, num, be_max_irqs(adapter));
  657. }
  658. /* Max irqs *needed* for TX queues */
  659. static inline u16 be_max_tx_irqs(struct be_adapter *adapter)
  660. {
  661. return min_t(u16, be_max_txqs(adapter), be_max_irqs(adapter));
  662. }
  663. /* Max irqs *needed* for combined queues */
  664. static inline u16 be_max_qp_irqs(struct be_adapter *adapter)
  665. {
  666. return min(be_max_tx_irqs(adapter), be_max_rx_irqs(adapter));
  667. }
  668. /* Max irqs *needed* for RX and TX queues together */
  669. static inline u16 be_max_any_irqs(struct be_adapter *adapter)
  670. {
  671. return max(be_max_tx_irqs(adapter), be_max_rx_irqs(adapter));
  672. }
  673. /* Is BE in pvid_tagging mode */
  674. #define be_pvid_tagging_enabled(adapter) (adapter->pvid)
  675. /* Is BE in QNQ multi-channel mode */
  676. #define be_is_qnq_mode(adapter) (adapter->function_mode & QNQ_MODE)
  677. #define lancer_chip(adapter) (adapter->pdev->device == OC_DEVICE_ID3 || \
  678. adapter->pdev->device == OC_DEVICE_ID4)
  679. #define skyhawk_chip(adapter) (adapter->pdev->device == OC_DEVICE_ID5 || \
  680. adapter->pdev->device == OC_DEVICE_ID6)
  681. #define BE3_chip(adapter) (adapter->pdev->device == BE_DEVICE_ID2 || \
  682. adapter->pdev->device == OC_DEVICE_ID2)
  683. #define BE2_chip(adapter) (adapter->pdev->device == BE_DEVICE_ID1 || \
  684. adapter->pdev->device == OC_DEVICE_ID1)
  685. #define BEx_chip(adapter) (BE3_chip(adapter) || BE2_chip(adapter))
  686. #define be_roce_supported(adapter) (skyhawk_chip(adapter) && \
  687. (adapter->function_mode & RDMA_ENABLED))
  688. extern const struct ethtool_ops be_ethtool_ops;
  689. #define msix_enabled(adapter) (adapter->num_msix_vec > 0)
  690. #define num_irqs(adapter) (msix_enabled(adapter) ? \
  691. adapter->num_msix_vec : 1)
  692. #define tx_stats(txo) (&(txo)->stats)
  693. #define rx_stats(rxo) (&(rxo)->stats)
  694. /* The default RXQ is the last RXQ */
  695. #define default_rxo(adpt) (&adpt->rx_obj[adpt->num_rx_qs - 1])
  696. #define for_all_rx_queues(adapter, rxo, i) \
  697. for (i = 0, rxo = &adapter->rx_obj[i]; i < adapter->num_rx_qs; \
  698. i++, rxo++)
  699. #define for_all_rss_queues(adapter, rxo, i) \
  700. for (i = 0, rxo = &adapter->rx_obj[i]; i < adapter->num_rss_qs; \
  701. i++, rxo++)
  702. #define for_all_tx_queues(adapter, txo, i) \
  703. for (i = 0, txo = &adapter->tx_obj[i]; i < adapter->num_tx_qs; \
  704. i++, txo++)
  705. #define for_all_evt_queues(adapter, eqo, i) \
  706. for (i = 0, eqo = &adapter->eq_obj[i]; i < adapter->num_evt_qs; \
  707. i++, eqo++)
  708. #define for_all_rx_queues_on_eq(adapter, eqo, rxo, i) \
  709. for (i = eqo->idx, rxo = &adapter->rx_obj[i]; i < adapter->num_rx_qs;\
  710. i += adapter->num_evt_qs, rxo += adapter->num_evt_qs)
  711. #define for_all_tx_queues_on_eq(adapter, eqo, txo, i) \
  712. for (i = eqo->idx, txo = &adapter->tx_obj[i]; i < adapter->num_tx_qs;\
  713. i += adapter->num_evt_qs, txo += adapter->num_evt_qs)
  714. #define is_mcc_eqo(eqo) (eqo->idx == 0)
  715. #define mcc_eqo(adapter) (&adapter->eq_obj[0])
  716. #define PAGE_SHIFT_4K 12
  717. #define PAGE_SIZE_4K (1 << PAGE_SHIFT_4K)
  718. /* Returns number of pages spanned by the data starting at the given addr */
  719. #define PAGES_4K_SPANNED(_address, size) \
  720. ((u32)((((size_t)(_address) & (PAGE_SIZE_4K - 1)) + \
  721. (size) + (PAGE_SIZE_4K - 1)) >> PAGE_SHIFT_4K))
  722. /* Returns bit offset within a DWORD of a bitfield */
  723. #define AMAP_BIT_OFFSET(_struct, field) \
  724. (((size_t)&(((_struct *)0)->field))%32)
  725. /* Returns the bit mask of the field that is NOT shifted into location. */
  726. static inline u32 amap_mask(u32 bitsize)
  727. {
  728. return (bitsize == 32 ? 0xFFFFFFFF : (1 << bitsize) - 1);
  729. }
  730. static inline void
  731. amap_set(void *ptr, u32 dw_offset, u32 mask, u32 offset, u32 value)
  732. {
  733. u32 *dw = (u32 *) ptr + dw_offset;
  734. *dw &= ~(mask << offset);
  735. *dw |= (mask & value) << offset;
  736. }
  737. #define AMAP_SET_BITS(_struct, field, ptr, val) \
  738. amap_set(ptr, \
  739. offsetof(_struct, field)/32, \
  740. amap_mask(sizeof(((_struct *)0)->field)), \
  741. AMAP_BIT_OFFSET(_struct, field), \
  742. val)
  743. static inline u32 amap_get(void *ptr, u32 dw_offset, u32 mask, u32 offset)
  744. {
  745. u32 *dw = (u32 *) ptr;
  746. return mask & (*(dw + dw_offset) >> offset);
  747. }
  748. #define AMAP_GET_BITS(_struct, field, ptr) \
  749. amap_get(ptr, \
  750. offsetof(_struct, field)/32, \
  751. amap_mask(sizeof(((_struct *)0)->field)), \
  752. AMAP_BIT_OFFSET(_struct, field))
  753. #define GET_RX_COMPL_V0_BITS(field, ptr) \
  754. AMAP_GET_BITS(struct amap_eth_rx_compl_v0, field, ptr)
  755. #define GET_RX_COMPL_V1_BITS(field, ptr) \
  756. AMAP_GET_BITS(struct amap_eth_rx_compl_v1, field, ptr)
  757. #define GET_TX_COMPL_BITS(field, ptr) \
  758. AMAP_GET_BITS(struct amap_eth_tx_compl, field, ptr)
  759. #define SET_TX_WRB_HDR_BITS(field, ptr, val) \
  760. AMAP_SET_BITS(struct amap_eth_hdr_wrb, field, ptr, val)
  761. #define be_dws_cpu_to_le(wrb, len) swap_dws(wrb, len)
  762. #define be_dws_le_to_cpu(wrb, len) swap_dws(wrb, len)
  763. static inline void swap_dws(void *wrb, int len)
  764. {
  765. #ifdef __BIG_ENDIAN
  766. u32 *dw = wrb;
  767. BUG_ON(len % 4);
  768. do {
  769. *dw = cpu_to_le32(*dw);
  770. dw++;
  771. len -= 4;
  772. } while (len);
  773. #endif /* __BIG_ENDIAN */
  774. }
  775. #define be_cmd_status(status) (status > 0 ? -EIO : status)
  776. static inline u8 is_tcp_pkt(struct sk_buff *skb)
  777. {
  778. u8 val = 0;
  779. if (ip_hdr(skb)->version == 4)
  780. val = (ip_hdr(skb)->protocol == IPPROTO_TCP);
  781. else if (ip_hdr(skb)->version == 6)
  782. val = (ipv6_hdr(skb)->nexthdr == NEXTHDR_TCP);
  783. return val;
  784. }
  785. static inline u8 is_udp_pkt(struct sk_buff *skb)
  786. {
  787. u8 val = 0;
  788. if (ip_hdr(skb)->version == 4)
  789. val = (ip_hdr(skb)->protocol == IPPROTO_UDP);
  790. else if (ip_hdr(skb)->version == 6)
  791. val = (ipv6_hdr(skb)->nexthdr == NEXTHDR_UDP);
  792. return val;
  793. }
  794. static inline bool is_ipv4_pkt(struct sk_buff *skb)
  795. {
  796. return skb->protocol == htons(ETH_P_IP) && ip_hdr(skb)->version == 4;
  797. }
  798. static inline bool is_ipv6_ext_hdr(struct sk_buff *skb)
  799. {
  800. if (ip_hdr(skb)->version == 6)
  801. return ipv6_ext_hdr(ipv6_hdr(skb)->nexthdr);
  802. else
  803. return false;
  804. }
  805. #define be_error_recovering(adapter) \
  806. (adapter->flags & BE_FLAGS_TRY_RECOVERY)
  807. #define BE_ERROR_EEH 1
  808. #define BE_ERROR_UE BIT(1)
  809. #define BE_ERROR_FW BIT(2)
  810. #define BE_ERROR_TX BIT(3)
  811. #define BE_ERROR_HW (BE_ERROR_EEH | BE_ERROR_UE | BE_ERROR_TX)
  812. #define BE_ERROR_ANY (BE_ERROR_EEH | BE_ERROR_UE | BE_ERROR_FW | \
  813. BE_ERROR_TX)
  814. #define BE_CLEAR_ALL 0xFF
  815. static inline u8 be_check_error(struct be_adapter *adapter, u32 err_type)
  816. {
  817. return (adapter->err_flags & err_type);
  818. }
  819. static inline void be_set_error(struct be_adapter *adapter, int err_type)
  820. {
  821. struct net_device *netdev = adapter->netdev;
  822. adapter->err_flags |= err_type;
  823. netif_carrier_off(netdev);
  824. dev_info(&adapter->pdev->dev, "%s: Link down\n", netdev->name);
  825. }
  826. static inline void be_clear_error(struct be_adapter *adapter, int err_type)
  827. {
  828. adapter->err_flags &= ~err_type;
  829. }
  830. static inline bool be_multi_rxq(const struct be_adapter *adapter)
  831. {
  832. return adapter->num_rx_qs > 1;
  833. }
  834. void be_cq_notify(struct be_adapter *adapter, u16 qid, bool arm,
  835. u16 num_popped);
  836. void be_link_status_update(struct be_adapter *adapter, u8 link_status);
  837. void be_parse_stats(struct be_adapter *adapter);
  838. int be_load_fw(struct be_adapter *adapter, u8 *func);
  839. bool be_is_wol_supported(struct be_adapter *adapter);
  840. bool be_pause_supported(struct be_adapter *adapter);
  841. u32 be_get_fw_log_level(struct be_adapter *adapter);
  842. int be_update_queues(struct be_adapter *adapter);
  843. int be_poll(struct napi_struct *napi, int budget);
  844. void be_eqd_update(struct be_adapter *adapter, bool force_update);
  845. /*
  846. * internal function to initialize-cleanup roce device.
  847. */
  848. void be_roce_dev_add(struct be_adapter *);
  849. void be_roce_dev_remove(struct be_adapter *);
  850. /*
  851. * internal function to open-close roce device during ifup-ifdown.
  852. */
  853. void be_roce_dev_shutdown(struct be_adapter *);
  854. #endif /* BE_H */