net: hns3: Adds support to dump(using ethool-d) PCIe regs in HNS3 PF driver
[linux-2.6-microblaze.git] / drivers / net / ethernet / hisilicon / hns3 / hns3pf / hclge_main.h
1 // SPDX-License-Identifier: GPL-2.0+
2 // Copyright (c) 2016-2017 Hisilicon Limited.
3
4 #ifndef __HCLGE_MAIN_H
5 #define __HCLGE_MAIN_H
6 #include <linux/fs.h>
7 #include <linux/types.h>
8 #include <linux/phy.h>
9 #include <linux/if_vlan.h>
10
11 #include "hclge_cmd.h"
12 #include "hnae3.h"
13
14 #define HCLGE_MOD_VERSION "1.0"
15 #define HCLGE_DRIVER_NAME "hclge"
16
17 #define HCLGE_MAX_PF_NUM                8
18
19 #define HCLGE_INVALID_VPORT 0xffff
20
21 #define HCLGE_PF_CFG_BLOCK_SIZE         32
22 #define HCLGE_PF_CFG_DESC_NUM \
23         (HCLGE_PF_CFG_BLOCK_SIZE / HCLGE_CFG_RD_LEN_BYTES)
24
25 #define HCLGE_VECTOR_REG_BASE           0x20000
26 #define HCLGE_MISC_VECTOR_REG_BASE      0x20400
27
28 #define HCLGE_VECTOR_REG_OFFSET         0x4
29 #define HCLGE_VECTOR_VF_OFFSET          0x100000
30
31 #define HCLGE_CMDQ_TX_ADDR_L_REG        0x27000
32 #define HCLGE_CMDQ_TX_ADDR_H_REG        0x27004
33 #define HCLGE_CMDQ_TX_DEPTH_REG         0x27008
34 #define HCLGE_CMDQ_TX_TAIL_REG          0x27010
35 #define HCLGE_CMDQ_TX_HEAD_REG          0x27014
36 #define HCLGE_CMDQ_RX_ADDR_L_REG        0x27018
37 #define HCLGE_CMDQ_RX_ADDR_H_REG        0x2701C
38 #define HCLGE_CMDQ_RX_DEPTH_REG         0x27020
39 #define HCLGE_CMDQ_RX_TAIL_REG          0x27024
40 #define HCLGE_CMDQ_RX_HEAD_REG          0x27028
41 #define HCLGE_CMDQ_INTR_SRC_REG         0x27100
42 #define HCLGE_CMDQ_INTR_STS_REG         0x27104
43 #define HCLGE_CMDQ_INTR_EN_REG          0x27108
44 #define HCLGE_CMDQ_INTR_GEN_REG         0x2710C
45
46 /* bar registers for common func */
47 #define HCLGE_VECTOR0_OTER_EN_REG       0x20600
48 #define HCLGE_RAS_OTHER_STS_REG         0x20B00
49 #define HCLGE_FUNC_RESET_STS_REG        0x20C00
50 #define HCLGE_GRO_EN_REG                0x28000
51
52 /* bar registers for rcb */
53 #define HCLGE_RING_RX_ADDR_L_REG        0x80000
54 #define HCLGE_RING_RX_ADDR_H_REG        0x80004
55 #define HCLGE_RING_RX_BD_NUM_REG        0x80008
56 #define HCLGE_RING_RX_BD_LENGTH_REG     0x8000C
57 #define HCLGE_RING_RX_MERGE_EN_REG      0x80014
58 #define HCLGE_RING_RX_TAIL_REG          0x80018
59 #define HCLGE_RING_RX_HEAD_REG          0x8001C
60 #define HCLGE_RING_RX_FBD_NUM_REG       0x80020
61 #define HCLGE_RING_RX_OFFSET_REG        0x80024
62 #define HCLGE_RING_RX_FBD_OFFSET_REG    0x80028
63 #define HCLGE_RING_RX_STASH_REG         0x80030
64 #define HCLGE_RING_RX_BD_ERR_REG        0x80034
65 #define HCLGE_RING_TX_ADDR_L_REG        0x80040
66 #define HCLGE_RING_TX_ADDR_H_REG        0x80044
67 #define HCLGE_RING_TX_BD_NUM_REG        0x80048
68 #define HCLGE_RING_TX_PRIORITY_REG      0x8004C
69 #define HCLGE_RING_TX_TC_REG            0x80050
70 #define HCLGE_RING_TX_MERGE_EN_REG      0x80054
71 #define HCLGE_RING_TX_TAIL_REG          0x80058
72 #define HCLGE_RING_TX_HEAD_REG          0x8005C
73 #define HCLGE_RING_TX_FBD_NUM_REG       0x80060
74 #define HCLGE_RING_TX_OFFSET_REG        0x80064
75 #define HCLGE_RING_TX_EBD_NUM_REG       0x80068
76 #define HCLGE_RING_TX_EBD_OFFSET_REG    0x80070
77 #define HCLGE_RING_TX_BD_ERR_REG        0x80074
78 #define HCLGE_RING_EN_REG               0x80090
79
80 /* bar registers for tqp interrupt */
81 #define HCLGE_TQP_INTR_CTRL_REG         0x20000
82 #define HCLGE_TQP_INTR_GL0_REG          0x20100
83 #define HCLGE_TQP_INTR_GL1_REG          0x20200
84 #define HCLGE_TQP_INTR_GL2_REG          0x20300
85 #define HCLGE_TQP_INTR_RL_REG           0x20900
86
87 #define HCLGE_RSS_IND_TBL_SIZE          512
88 #define HCLGE_RSS_SET_BITMAP_MSK        GENMASK(15, 0)
89 #define HCLGE_RSS_KEY_SIZE              40
90 #define HCLGE_RSS_HASH_ALGO_TOEPLITZ    0
91 #define HCLGE_RSS_HASH_ALGO_SIMPLE      1
92 #define HCLGE_RSS_HASH_ALGO_SYMMETRIC   2
93 #define HCLGE_RSS_HASH_ALGO_MASK        GENMASK(3, 0)
94 #define HCLGE_RSS_CFG_TBL_NUM \
95         (HCLGE_RSS_IND_TBL_SIZE / HCLGE_RSS_CFG_TBL_SIZE)
96
97 #define HCLGE_RSS_INPUT_TUPLE_OTHER     GENMASK(3, 0)
98 #define HCLGE_RSS_INPUT_TUPLE_SCTP      GENMASK(4, 0)
99 #define HCLGE_D_PORT_BIT                BIT(0)
100 #define HCLGE_S_PORT_BIT                BIT(1)
101 #define HCLGE_D_IP_BIT                  BIT(2)
102 #define HCLGE_S_IP_BIT                  BIT(3)
103 #define HCLGE_V_TAG_BIT                 BIT(4)
104
105 #define HCLGE_RSS_TC_SIZE_0             1
106 #define HCLGE_RSS_TC_SIZE_1             2
107 #define HCLGE_RSS_TC_SIZE_2             4
108 #define HCLGE_RSS_TC_SIZE_3             8
109 #define HCLGE_RSS_TC_SIZE_4             16
110 #define HCLGE_RSS_TC_SIZE_5             32
111 #define HCLGE_RSS_TC_SIZE_6             64
112 #define HCLGE_RSS_TC_SIZE_7             128
113
114 #define HCLGE_UMV_TBL_SIZE              3072
115 #define HCLGE_DEFAULT_UMV_SPACE_PER_PF \
116         (HCLGE_UMV_TBL_SIZE / HCLGE_MAX_PF_NUM)
117
118 #define HCLGE_TQP_RESET_TRY_TIMES       10
119
120 #define HCLGE_PHY_PAGE_MDIX             0
121 #define HCLGE_PHY_PAGE_COPPER           0
122
123 /* Page Selection Reg. */
124 #define HCLGE_PHY_PAGE_REG              22
125
126 /* Copper Specific Control Register */
127 #define HCLGE_PHY_CSC_REG               16
128
129 /* Copper Specific Status Register */
130 #define HCLGE_PHY_CSS_REG               17
131
132 #define HCLGE_PHY_MDIX_CTRL_S           5
133 #define HCLGE_PHY_MDIX_CTRL_M           GENMASK(6, 5)
134
135 #define HCLGE_PHY_MDIX_STATUS_B         6
136 #define HCLGE_PHY_SPEED_DUP_RESOLVE_B   11
137
138 /* Factor used to calculate offset and bitmap of VF num */
139 #define HCLGE_VF_NUM_PER_CMD           64
140 #define HCLGE_VF_NUM_PER_BYTE          8
141
142 enum HLCGE_PORT_TYPE {
143         HOST_PORT,
144         NETWORK_PORT
145 };
146
147 #define HCLGE_PF_ID_S                   0
148 #define HCLGE_PF_ID_M                   GENMASK(2, 0)
149 #define HCLGE_VF_ID_S                   3
150 #define HCLGE_VF_ID_M                   GENMASK(10, 3)
151 #define HCLGE_PORT_TYPE_B               11
152 #define HCLGE_NETWORK_PORT_ID_S         0
153 #define HCLGE_NETWORK_PORT_ID_M         GENMASK(3, 0)
154
155 /* Reset related Registers */
156 #define HCLGE_PF_OTHER_INT_REG          0x20600
157 #define HCLGE_MISC_RESET_STS_REG        0x20700
158 #define HCLGE_MISC_VECTOR_INT_STS       0x20800
159 #define HCLGE_GLOBAL_RESET_REG          0x20A00
160 #define HCLGE_GLOBAL_RESET_BIT          0
161 #define HCLGE_CORE_RESET_BIT            1
162 #define HCLGE_IMP_RESET_BIT             2
163 #define HCLGE_FUN_RST_ING               0x20C00
164 #define HCLGE_FUN_RST_ING_B             0
165
166 /* Vector0 register bits define */
167 #define HCLGE_VECTOR0_GLOBALRESET_INT_B 5
168 #define HCLGE_VECTOR0_CORERESET_INT_B   6
169 #define HCLGE_VECTOR0_IMPRESET_INT_B    7
170
171 /* Vector0 interrupt CMDQ event source register(RW) */
172 #define HCLGE_VECTOR0_CMDQ_SRC_REG      0x27100
173 /* CMDQ register bits for RX event(=MBX event) */
174 #define HCLGE_VECTOR0_RX_CMDQ_INT_B     1
175
176 #define HCLGE_VECTOR0_IMP_RESET_INT_B   1
177
178 #define HCLGE_MAC_DEFAULT_FRAME \
179         (ETH_HLEN + ETH_FCS_LEN + 2 * VLAN_HLEN + ETH_DATA_LEN)
180 #define HCLGE_MAC_MIN_FRAME             64
181 #define HCLGE_MAC_MAX_FRAME             9728
182
183 #define HCLGE_SUPPORT_1G_BIT            BIT(0)
184 #define HCLGE_SUPPORT_10G_BIT           BIT(1)
185 #define HCLGE_SUPPORT_25G_BIT           BIT(2)
186 #define HCLGE_SUPPORT_50G_BIT           BIT(3)
187 #define HCLGE_SUPPORT_100G_BIT          BIT(4)
188
189 enum HCLGE_DEV_STATE {
190         HCLGE_STATE_REINITING,
191         HCLGE_STATE_DOWN,
192         HCLGE_STATE_DISABLED,
193         HCLGE_STATE_REMOVING,
194         HCLGE_STATE_SERVICE_INITED,
195         HCLGE_STATE_SERVICE_SCHED,
196         HCLGE_STATE_RST_SERVICE_SCHED,
197         HCLGE_STATE_RST_HANDLING,
198         HCLGE_STATE_MBX_SERVICE_SCHED,
199         HCLGE_STATE_MBX_HANDLING,
200         HCLGE_STATE_STATISTICS_UPDATING,
201         HCLGE_STATE_CMD_DISABLE,
202         HCLGE_STATE_MAX
203 };
204
205 enum hclge_evt_cause {
206         HCLGE_VECTOR0_EVENT_RST,
207         HCLGE_VECTOR0_EVENT_MBX,
208         HCLGE_VECTOR0_EVENT_OTHER,
209 };
210
211 #define HCLGE_MPF_ENBALE 1
212
213 enum HCLGE_MAC_SPEED {
214         HCLGE_MAC_SPEED_UNKNOWN = 0,            /* unknown */
215         HCLGE_MAC_SPEED_10M     = 10,           /* 10 Mbps */
216         HCLGE_MAC_SPEED_100M    = 100,          /* 100 Mbps */
217         HCLGE_MAC_SPEED_1G      = 1000,         /* 1000 Mbps   = 1 Gbps */
218         HCLGE_MAC_SPEED_10G     = 10000,        /* 10000 Mbps  = 10 Gbps */
219         HCLGE_MAC_SPEED_25G     = 25000,        /* 25000 Mbps  = 25 Gbps */
220         HCLGE_MAC_SPEED_40G     = 40000,        /* 40000 Mbps  = 40 Gbps */
221         HCLGE_MAC_SPEED_50G     = 50000,        /* 50000 Mbps  = 50 Gbps */
222         HCLGE_MAC_SPEED_100G    = 100000        /* 100000 Mbps = 100 Gbps */
223 };
224
225 enum HCLGE_MAC_DUPLEX {
226         HCLGE_MAC_HALF,
227         HCLGE_MAC_FULL
228 };
229
230 struct hclge_mac {
231         u8 phy_addr;
232         u8 flag;
233         u8 media_type;
234         u8 mac_addr[ETH_ALEN];
235         u8 autoneg;
236         u8 duplex;
237         u32 speed;
238         int link;       /* store the link status of mac & phy (if phy exit)*/
239         struct phy_device *phydev;
240         struct mii_bus *mdio_bus;
241         phy_interface_t phy_if;
242         __ETHTOOL_DECLARE_LINK_MODE_MASK(supported);
243         __ETHTOOL_DECLARE_LINK_MODE_MASK(advertising);
244 };
245
246 struct hclge_hw {
247         void __iomem *io_base;
248         struct hclge_mac mac;
249         int num_vec;
250         struct hclge_cmq cmq;
251 };
252
253 /* TQP stats */
254 struct hlcge_tqp_stats {
255         /* query_tqp_tx_queue_statistics ,opcode id:  0x0B03 */
256         u64 rcb_tx_ring_pktnum_rcd; /* 32bit */
257         /* query_tqp_rx_queue_statistics ,opcode id:  0x0B13 */
258         u64 rcb_rx_ring_pktnum_rcd; /* 32bit */
259 };
260
261 struct hclge_tqp {
262         /* copy of device pointer from pci_dev,
263          * used when perform DMA mapping
264          */
265         struct device *dev;
266         struct hnae3_queue q;
267         struct hlcge_tqp_stats tqp_stats;
268         u16 index;      /* Global index in a NIC controller */
269
270         bool alloced;
271 };
272
273 enum hclge_fc_mode {
274         HCLGE_FC_NONE,
275         HCLGE_FC_RX_PAUSE,
276         HCLGE_FC_TX_PAUSE,
277         HCLGE_FC_FULL,
278         HCLGE_FC_PFC,
279         HCLGE_FC_DEFAULT
280 };
281
282 #define HCLGE_PG_NUM            4
283 #define HCLGE_SCH_MODE_SP       0
284 #define HCLGE_SCH_MODE_DWRR     1
285 struct hclge_pg_info {
286         u8 pg_id;
287         u8 pg_sch_mode;         /* 0: sp; 1: dwrr */
288         u8 tc_bit_map;
289         u32 bw_limit;
290         u8 tc_dwrr[HNAE3_MAX_TC];
291 };
292
293 struct hclge_tc_info {
294         u8 tc_id;
295         u8 tc_sch_mode;         /* 0: sp; 1: dwrr */
296         u8 pgid;
297         u32 bw_limit;
298 };
299
300 struct hclge_cfg {
301         u8 vmdq_vport_num;
302         u8 tc_num;
303         u16 tqp_desc_num;
304         u16 rx_buf_len;
305         u16 rss_size_max;
306         u8 phy_addr;
307         u8 media_type;
308         u8 mac_addr[ETH_ALEN];
309         u8 default_speed;
310         u32 numa_node_map;
311         u8 speed_ability;
312         u16 umv_space;
313 };
314
315 struct hclge_tm_info {
316         u8 num_tc;
317         u8 num_pg;      /* It must be 1 if vNET-Base schd */
318         u8 pg_dwrr[HCLGE_PG_NUM];
319         u8 prio_tc[HNAE3_MAX_USER_PRIO];
320         struct hclge_pg_info pg_info[HCLGE_PG_NUM];
321         struct hclge_tc_info tc_info[HNAE3_MAX_TC];
322         enum hclge_fc_mode fc_mode;
323         u8 hw_pfc_map; /* Allow for packet drop or not on this TC */
324 };
325
326 struct hclge_comm_stats_str {
327         char desc[ETH_GSTRING_LEN];
328         unsigned long offset;
329 };
330
331 /* mac stats ,opcode id: 0x0032 */
332 struct hclge_mac_stats {
333         u64 mac_tx_mac_pause_num;
334         u64 mac_rx_mac_pause_num;
335         u64 mac_tx_pfc_pri0_pkt_num;
336         u64 mac_tx_pfc_pri1_pkt_num;
337         u64 mac_tx_pfc_pri2_pkt_num;
338         u64 mac_tx_pfc_pri3_pkt_num;
339         u64 mac_tx_pfc_pri4_pkt_num;
340         u64 mac_tx_pfc_pri5_pkt_num;
341         u64 mac_tx_pfc_pri6_pkt_num;
342         u64 mac_tx_pfc_pri7_pkt_num;
343         u64 mac_rx_pfc_pri0_pkt_num;
344         u64 mac_rx_pfc_pri1_pkt_num;
345         u64 mac_rx_pfc_pri2_pkt_num;
346         u64 mac_rx_pfc_pri3_pkt_num;
347         u64 mac_rx_pfc_pri4_pkt_num;
348         u64 mac_rx_pfc_pri5_pkt_num;
349         u64 mac_rx_pfc_pri6_pkt_num;
350         u64 mac_rx_pfc_pri7_pkt_num;
351         u64 mac_tx_total_pkt_num;
352         u64 mac_tx_total_oct_num;
353         u64 mac_tx_good_pkt_num;
354         u64 mac_tx_bad_pkt_num;
355         u64 mac_tx_good_oct_num;
356         u64 mac_tx_bad_oct_num;
357         u64 mac_tx_uni_pkt_num;
358         u64 mac_tx_multi_pkt_num;
359         u64 mac_tx_broad_pkt_num;
360         u64 mac_tx_undersize_pkt_num;
361         u64 mac_tx_oversize_pkt_num;
362         u64 mac_tx_64_oct_pkt_num;
363         u64 mac_tx_65_127_oct_pkt_num;
364         u64 mac_tx_128_255_oct_pkt_num;
365         u64 mac_tx_256_511_oct_pkt_num;
366         u64 mac_tx_512_1023_oct_pkt_num;
367         u64 mac_tx_1024_1518_oct_pkt_num;
368         u64 mac_tx_1519_2047_oct_pkt_num;
369         u64 mac_tx_2048_4095_oct_pkt_num;
370         u64 mac_tx_4096_8191_oct_pkt_num;
371         u64 rsv0;
372         u64 mac_tx_8192_9216_oct_pkt_num;
373         u64 mac_tx_9217_12287_oct_pkt_num;
374         u64 mac_tx_12288_16383_oct_pkt_num;
375         u64 mac_tx_1519_max_good_oct_pkt_num;
376         u64 mac_tx_1519_max_bad_oct_pkt_num;
377
378         u64 mac_rx_total_pkt_num;
379         u64 mac_rx_total_oct_num;
380         u64 mac_rx_good_pkt_num;
381         u64 mac_rx_bad_pkt_num;
382         u64 mac_rx_good_oct_num;
383         u64 mac_rx_bad_oct_num;
384         u64 mac_rx_uni_pkt_num;
385         u64 mac_rx_multi_pkt_num;
386         u64 mac_rx_broad_pkt_num;
387         u64 mac_rx_undersize_pkt_num;
388         u64 mac_rx_oversize_pkt_num;
389         u64 mac_rx_64_oct_pkt_num;
390         u64 mac_rx_65_127_oct_pkt_num;
391         u64 mac_rx_128_255_oct_pkt_num;
392         u64 mac_rx_256_511_oct_pkt_num;
393         u64 mac_rx_512_1023_oct_pkt_num;
394         u64 mac_rx_1024_1518_oct_pkt_num;
395         u64 mac_rx_1519_2047_oct_pkt_num;
396         u64 mac_rx_2048_4095_oct_pkt_num;
397         u64 mac_rx_4096_8191_oct_pkt_num;
398         u64 rsv1;
399         u64 mac_rx_8192_9216_oct_pkt_num;
400         u64 mac_rx_9217_12287_oct_pkt_num;
401         u64 mac_rx_12288_16383_oct_pkt_num;
402         u64 mac_rx_1519_max_good_oct_pkt_num;
403         u64 mac_rx_1519_max_bad_oct_pkt_num;
404
405         u64 mac_tx_fragment_pkt_num;
406         u64 mac_tx_undermin_pkt_num;
407         u64 mac_tx_jabber_pkt_num;
408         u64 mac_tx_err_all_pkt_num;
409         u64 mac_tx_from_app_good_pkt_num;
410         u64 mac_tx_from_app_bad_pkt_num;
411         u64 mac_rx_fragment_pkt_num;
412         u64 mac_rx_undermin_pkt_num;
413         u64 mac_rx_jabber_pkt_num;
414         u64 mac_rx_fcs_err_pkt_num;
415         u64 mac_rx_send_app_good_pkt_num;
416         u64 mac_rx_send_app_bad_pkt_num;
417 };
418
419 #define HCLGE_STATS_TIMER_INTERVAL      (60 * 5)
420 struct hclge_hw_stats {
421         struct hclge_mac_stats      mac_stats;
422         u32 stats_timer;
423 };
424
425 struct hclge_vlan_type_cfg {
426         u16 rx_ot_fst_vlan_type;
427         u16 rx_ot_sec_vlan_type;
428         u16 rx_in_fst_vlan_type;
429         u16 rx_in_sec_vlan_type;
430         u16 tx_ot_vlan_type;
431         u16 tx_in_vlan_type;
432 };
433
434 enum HCLGE_FD_MODE {
435         HCLGE_FD_MODE_DEPTH_2K_WIDTH_400B_STAGE_1,
436         HCLGE_FD_MODE_DEPTH_1K_WIDTH_400B_STAGE_2,
437         HCLGE_FD_MODE_DEPTH_4K_WIDTH_200B_STAGE_1,
438         HCLGE_FD_MODE_DEPTH_2K_WIDTH_200B_STAGE_2,
439 };
440
441 enum HCLGE_FD_KEY_TYPE {
442         HCLGE_FD_KEY_BASE_ON_PTYPE,
443         HCLGE_FD_KEY_BASE_ON_TUPLE,
444 };
445
446 enum HCLGE_FD_STAGE {
447         HCLGE_FD_STAGE_1,
448         HCLGE_FD_STAGE_2,
449 };
450
451 /* OUTER_XXX indicates tuples in tunnel header of tunnel packet
452  * INNER_XXX indicate tuples in tunneled header of tunnel packet or
453  *           tuples of non-tunnel packet
454  */
455 enum HCLGE_FD_TUPLE {
456         OUTER_DST_MAC,
457         OUTER_SRC_MAC,
458         OUTER_VLAN_TAG_FST,
459         OUTER_VLAN_TAG_SEC,
460         OUTER_ETH_TYPE,
461         OUTER_L2_RSV,
462         OUTER_IP_TOS,
463         OUTER_IP_PROTO,
464         OUTER_SRC_IP,
465         OUTER_DST_IP,
466         OUTER_L3_RSV,
467         OUTER_SRC_PORT,
468         OUTER_DST_PORT,
469         OUTER_L4_RSV,
470         OUTER_TUN_VNI,
471         OUTER_TUN_FLOW_ID,
472         INNER_DST_MAC,
473         INNER_SRC_MAC,
474         INNER_VLAN_TAG_FST,
475         INNER_VLAN_TAG_SEC,
476         INNER_ETH_TYPE,
477         INNER_L2_RSV,
478         INNER_IP_TOS,
479         INNER_IP_PROTO,
480         INNER_SRC_IP,
481         INNER_DST_IP,
482         INNER_L3_RSV,
483         INNER_SRC_PORT,
484         INNER_DST_PORT,
485         INNER_L4_RSV,
486         MAX_TUPLE,
487 };
488
489 enum HCLGE_FD_META_DATA {
490         PACKET_TYPE_ID,
491         IP_FRAGEMENT,
492         ROCE_TYPE,
493         NEXT_KEY,
494         VLAN_NUMBER,
495         SRC_VPORT,
496         DST_VPORT,
497         TUNNEL_PACKET,
498         MAX_META_DATA,
499 };
500
501 struct key_info {
502         u8 key_type;
503         u8 key_length;
504 };
505
506 static const struct key_info meta_data_key_info[] = {
507         { PACKET_TYPE_ID, 6},
508         { IP_FRAGEMENT, 1},
509         { ROCE_TYPE, 1},
510         { NEXT_KEY, 5},
511         { VLAN_NUMBER, 2},
512         { SRC_VPORT, 12},
513         { DST_VPORT, 12},
514         { TUNNEL_PACKET, 1},
515 };
516
517 static const struct key_info tuple_key_info[] = {
518         { OUTER_DST_MAC, 48},
519         { OUTER_SRC_MAC, 48},
520         { OUTER_VLAN_TAG_FST, 16},
521         { OUTER_VLAN_TAG_SEC, 16},
522         { OUTER_ETH_TYPE, 16},
523         { OUTER_L2_RSV, 16},
524         { OUTER_IP_TOS, 8},
525         { OUTER_IP_PROTO, 8},
526         { OUTER_SRC_IP, 32},
527         { OUTER_DST_IP, 32},
528         { OUTER_L3_RSV, 16},
529         { OUTER_SRC_PORT, 16},
530         { OUTER_DST_PORT, 16},
531         { OUTER_L4_RSV, 32},
532         { OUTER_TUN_VNI, 24},
533         { OUTER_TUN_FLOW_ID, 8},
534         { INNER_DST_MAC, 48},
535         { INNER_SRC_MAC, 48},
536         { INNER_VLAN_TAG_FST, 16},
537         { INNER_VLAN_TAG_SEC, 16},
538         { INNER_ETH_TYPE, 16},
539         { INNER_L2_RSV, 16},
540         { INNER_IP_TOS, 8},
541         { INNER_IP_PROTO, 8},
542         { INNER_SRC_IP, 32},
543         { INNER_DST_IP, 32},
544         { INNER_L3_RSV, 16},
545         { INNER_SRC_PORT, 16},
546         { INNER_DST_PORT, 16},
547         { INNER_L4_RSV, 32},
548 };
549
550 #define MAX_KEY_LENGTH  400
551 #define MAX_KEY_DWORDS  DIV_ROUND_UP(MAX_KEY_LENGTH / 8, 4)
552 #define MAX_KEY_BYTES   (MAX_KEY_DWORDS * 4)
553 #define MAX_META_DATA_LENGTH    32
554
555 enum HCLGE_FD_PACKET_TYPE {
556         NIC_PACKET,
557         ROCE_PACKET,
558 };
559
560 enum HCLGE_FD_ACTION {
561         HCLGE_FD_ACTION_ACCEPT_PACKET,
562         HCLGE_FD_ACTION_DROP_PACKET,
563 };
564
565 struct hclge_fd_key_cfg {
566         u8 key_sel;
567         u8 inner_sipv6_word_en;
568         u8 inner_dipv6_word_en;
569         u8 outer_sipv6_word_en;
570         u8 outer_dipv6_word_en;
571         u32 tuple_active;
572         u32 meta_data_active;
573 };
574
575 struct hclge_fd_cfg {
576         u8 fd_mode;
577         u8 fd_en;
578         u16 max_key_length;
579         u32 proto_support;
580         u32 rule_num[2]; /* rule entry number */
581         u16 cnt_num[2]; /* rule hit counter number */
582         struct hclge_fd_key_cfg key_cfg[2];
583 };
584
585 struct hclge_fd_rule_tuples {
586         u8 src_mac[6];
587         u8 dst_mac[6];
588         u32 src_ip[4];
589         u32 dst_ip[4];
590         u16 src_port;
591         u16 dst_port;
592         u16 vlan_tag1;
593         u16 ether_proto;
594         u8 ip_tos;
595         u8 ip_proto;
596 };
597
598 struct hclge_fd_rule {
599         struct hlist_node rule_node;
600         struct hclge_fd_rule_tuples tuples;
601         struct hclge_fd_rule_tuples tuples_mask;
602         u32 unused_tuple;
603         u32 flow_type;
604         u8 action;
605         u16 vf_id;
606         u16 queue_id;
607         u16 location;
608 };
609
610 struct hclge_fd_ad_data {
611         u16 ad_id;
612         u8 drop_packet;
613         u8 forward_to_direct_queue;
614         u16 queue_id;
615         u8 use_counter;
616         u8 counter_id;
617         u8 use_next_stage;
618         u8 write_rule_id_to_bd;
619         u8 next_input_key;
620         u16 rule_id;
621 };
622
623 /* For each bit of TCAM entry, it uses a pair of 'x' and
624  * 'y' to indicate which value to match, like below:
625  * ----------------------------------
626  * | bit x | bit y |  search value  |
627  * ----------------------------------
628  * |   0   |   0   |   always hit   |
629  * ----------------------------------
630  * |   1   |   0   |   match '0'    |
631  * ----------------------------------
632  * |   0   |   1   |   match '1'    |
633  * ----------------------------------
634  * |   1   |   1   |   invalid      |
635  * ----------------------------------
636  * Then for input key(k) and mask(v), we can calculate the value by
637  * the formulae:
638  *      x = (~k) & v
639  *      y = (k ^ ~v) & k
640  */
641 #define calc_x(x, k, v) ((x) = (~(k) & (v)))
642 #define calc_y(y, k, v) \
643         do { \
644                 const typeof(k) _k_ = (k); \
645                 const typeof(v) _v_ = (v); \
646                 (y) = (_k_ ^ ~_v_) & (_k_); \
647         } while (0)
648
649 #define HCLGE_VPORT_NUM 256
650 struct hclge_dev {
651         struct pci_dev *pdev;
652         struct hnae3_ae_dev *ae_dev;
653         struct hclge_hw hw;
654         struct hclge_misc_vector misc_vector;
655         struct hclge_hw_stats hw_stats;
656         unsigned long state;
657         unsigned long flr_state;
658         unsigned long last_reset_time;
659
660         enum hnae3_reset_type reset_type;
661         enum hnae3_reset_type reset_level;
662         unsigned long default_reset_request;
663         unsigned long reset_request;    /* reset has been requested */
664         unsigned long reset_pending;    /* client rst is pending to be served */
665         unsigned long reset_count;      /* the number of reset has been done */
666         u32 reset_fail_cnt;
667         u32 fw_version;
668         u16 num_vmdq_vport;             /* Num vmdq vport this PF has set up */
669         u16 num_tqps;                   /* Num task queue pairs of this PF */
670         u16 num_req_vfs;                /* Num VFs requested for this PF */
671
672         u16 base_tqp_pid;       /* Base task tqp physical id of this PF */
673         u16 alloc_rss_size;             /* Allocated RSS task queue */
674         u16 rss_size_max;               /* HW defined max RSS task queue */
675
676         u16 fdir_pf_filter_count; /* Num of guaranteed filters for this PF */
677         u16 num_alloc_vport;            /* Num vports this driver supports */
678         u32 numa_node_mask;
679         u16 rx_buf_len;
680         u16 num_desc;
681         u8 hw_tc_map;
682         u8 tc_num_last_time;
683         enum hclge_fc_mode fc_mode_last_time;
684         u8 support_sfp_query;
685
686 #define HCLGE_FLAG_TC_BASE_SCH_MODE             1
687 #define HCLGE_FLAG_VNET_BASE_SCH_MODE           2
688         u8 tx_sch_mode;
689         u8 tc_max;
690         u8 pfc_max;
691
692         u8 default_up;
693         u8 dcbx_cap;
694         struct hclge_tm_info tm_info;
695
696         u16 num_msi;
697         u16 num_msi_left;
698         u16 num_msi_used;
699         u16 roce_base_msix_offset;
700         u32 base_msi_vector;
701         u16 *vector_status;
702         int *vector_irq;
703         u16 num_roce_msi;       /* Num of roce vectors for this PF */
704         int roce_base_vector;
705
706         u16 pending_udp_bitmap;
707
708         u16 rx_itr_default;
709         u16 tx_itr_default;
710
711         u16 adminq_work_limit; /* Num of admin receive queue desc to process */
712         unsigned long service_timer_period;
713         unsigned long service_timer_previous;
714         struct timer_list service_timer;
715         struct timer_list reset_timer;
716         struct work_struct service_task;
717         struct work_struct rst_service_task;
718         struct work_struct mbx_service_task;
719
720         bool cur_promisc;
721         int num_alloc_vfs;      /* Actual number of VFs allocated */
722
723         struct hclge_tqp *htqp;
724         struct hclge_vport *vport;
725
726         struct dentry *hclge_dbgfs;
727
728         struct hnae3_client *nic_client;
729         struct hnae3_client *roce_client;
730
731 #define HCLGE_FLAG_MAIN                 BIT(0)
732 #define HCLGE_FLAG_DCB_CAPABLE          BIT(1)
733 #define HCLGE_FLAG_DCB_ENABLE           BIT(2)
734 #define HCLGE_FLAG_MQPRIO_ENABLE        BIT(3)
735         u32 flag;
736
737         u32 pkt_buf_size; /* Total pf buf size for tx/rx */
738         u32 mps; /* Max packet size */
739         /* vport_lock protect resource shared by vports */
740         struct mutex vport_lock;
741
742         struct hclge_vlan_type_cfg vlan_type_cfg;
743
744         unsigned long vlan_table[VLAN_N_VID][BITS_TO_LONGS(HCLGE_VPORT_NUM)];
745
746         struct hclge_fd_cfg fd_cfg;
747         struct hlist_head fd_rule_list;
748         u16 hclge_fd_rule_num;
749
750         u16 wanted_umv_size;
751         /* max available unicast mac vlan space */
752         u16 max_umv_size;
753         /* private unicast mac vlan space, it's same for PF and its VFs */
754         u16 priv_umv_size;
755         /* unicast mac vlan space shared by PF and its VFs */
756         u16 share_umv_size;
757         struct mutex umv_mutex; /* protect share_umv_size */
758 };
759
760 /* VPort level vlan tag configuration for TX direction */
761 struct hclge_tx_vtag_cfg {
762         bool accept_tag1;       /* Whether accept tag1 packet from host */
763         bool accept_untag1;     /* Whether accept untag1 packet from host */
764         bool accept_tag2;
765         bool accept_untag2;
766         bool insert_tag1_en;    /* Whether insert inner vlan tag */
767         bool insert_tag2_en;    /* Whether insert outer vlan tag */
768         u16  default_tag1;      /* The default inner vlan tag to insert */
769         u16  default_tag2;      /* The default outer vlan tag to insert */
770 };
771
772 /* VPort level vlan tag configuration for RX direction */
773 struct hclge_rx_vtag_cfg {
774         bool strip_tag1_en;     /* Whether strip inner vlan tag */
775         bool strip_tag2_en;     /* Whether strip outer vlan tag */
776         bool vlan1_vlan_prionly;/* Inner VLAN Tag up to descriptor Enable */
777         bool vlan2_vlan_prionly;/* Outer VLAN Tag up to descriptor Enable */
778 };
779
780 struct hclge_rss_tuple_cfg {
781         u8 ipv4_tcp_en;
782         u8 ipv4_udp_en;
783         u8 ipv4_sctp_en;
784         u8 ipv4_fragment_en;
785         u8 ipv6_tcp_en;
786         u8 ipv6_udp_en;
787         u8 ipv6_sctp_en;
788         u8 ipv6_fragment_en;
789 };
790
791 enum HCLGE_VPORT_STATE {
792         HCLGE_VPORT_STATE_ALIVE,
793         HCLGE_VPORT_STATE_MAX
794 };
795
796 struct hclge_vport {
797         u16 alloc_tqps; /* Allocated Tx/Rx queues */
798
799         u8  rss_hash_key[HCLGE_RSS_KEY_SIZE]; /* User configured hash keys */
800         /* User configured lookup table entries */
801         u8  rss_indirection_tbl[HCLGE_RSS_IND_TBL_SIZE];
802         int rss_algo;           /* User configured hash algorithm */
803         /* User configured rss tuple sets */
804         struct hclge_rss_tuple_cfg rss_tuple_sets;
805
806         u16 alloc_rss_size;
807
808         u16 qs_offset;
809         u16 bw_limit;           /* VSI BW Limit (0 = disabled) */
810         u8  dwrr;
811
812         struct hclge_tx_vtag_cfg  txvlan_cfg;
813         struct hclge_rx_vtag_cfg  rxvlan_cfg;
814
815         u16 used_umv_num;
816
817         int vport_id;
818         struct hclge_dev *back;  /* Back reference to associated dev */
819         struct hnae3_handle nic;
820         struct hnae3_handle roce;
821
822         unsigned long state;
823         unsigned long last_active_jiffies;
824         u32 mps; /* Max packet size */
825 };
826
827 void hclge_promisc_param_init(struct hclge_promisc_param *param, bool en_uc,
828                               bool en_mc, bool en_bc, int vport_id);
829
830 int hclge_add_uc_addr_common(struct hclge_vport *vport,
831                              const unsigned char *addr);
832 int hclge_rm_uc_addr_common(struct hclge_vport *vport,
833                             const unsigned char *addr);
834 int hclge_add_mc_addr_common(struct hclge_vport *vport,
835                              const unsigned char *addr);
836 int hclge_rm_mc_addr_common(struct hclge_vport *vport,
837                             const unsigned char *addr);
838
839 struct hclge_vport *hclge_get_vport(struct hnae3_handle *handle);
840 int hclge_bind_ring_with_vector(struct hclge_vport *vport,
841                                 int vector_id, bool en,
842                                 struct hnae3_ring_chain_node *ring_chain);
843
844 static inline int hclge_get_queue_id(struct hnae3_queue *queue)
845 {
846         struct hclge_tqp *tqp = container_of(queue, struct hclge_tqp, q);
847
848         return tqp->index;
849 }
850
851 static inline bool hclge_is_reset_pending(struct hclge_dev *hdev)
852 {
853         return !!hdev->reset_pending;
854 }
855
856 int hclge_inform_reset_assert_to_vf(struct hclge_vport *vport);
857 int hclge_cfg_mac_speed_dup(struct hclge_dev *hdev, int speed, u8 duplex);
858 int hclge_set_vlan_filter(struct hnae3_handle *handle, __be16 proto,
859                           u16 vlan_id, bool is_kill);
860 int hclge_en_hw_strip_rxvtag(struct hnae3_handle *handle, bool enable);
861
862 int hclge_buffer_alloc(struct hclge_dev *hdev);
863 int hclge_rss_init_hw(struct hclge_dev *hdev);
864 void hclge_rss_indir_init_cfg(struct hclge_dev *hdev);
865
866 int hclge_inform_reset_assert_to_vf(struct hclge_vport *vport);
867 void hclge_mbx_handler(struct hclge_dev *hdev);
868 int hclge_reset_tqp(struct hnae3_handle *handle, u16 queue_id);
869 void hclge_reset_vf_queue(struct hclge_vport *vport, u16 queue_id);
870 int hclge_cfg_flowctrl(struct hclge_dev *hdev);
871 int hclge_func_reset_cmd(struct hclge_dev *hdev, int func_id);
872 int hclge_vport_start(struct hclge_vport *vport);
873 void hclge_vport_stop(struct hclge_vport *vport);
874 int hclge_set_vport_mtu(struct hclge_vport *vport, int new_mtu);
875 int hclge_dbg_run_cmd(struct hnae3_handle *handle, char *cmd_buf);
876 #endif