be.h 27 KB

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