1 // SPDX-License-Identifier: GPL-2.0+
2 // Copyright (c) 2016-2017 Hisilicon Limited.
4 #include <linux/acpi.h>
5 #include <linux/device.h>
6 #include <linux/etherdevice.h>
7 #include <linux/init.h>
8 #include <linux/interrupt.h>
9 #include <linux/kernel.h>
10 #include <linux/module.h>
11 #include <linux/netdevice.h>
12 #include <linux/pci.h>
13 #include <linux/platform_device.h>
14 #include <linux/if_vlan.h>
15 #include <linux/crash_dump.h>
17 #include <net/rtnetlink.h>
18 #include "hclge_cmd.h"
19 #include "hclge_dcb.h"
20 #include "hclge_main.h"
21 #include "hclge_mbx.h"
22 #include "hclge_mdio.h"
24 #include "hclge_err.h"
26 #include "hclge_devlink.h"
27 #include "hclge_comm_cmd.h"
29 #define HCLGE_NAME "hclge"
31 #define HCLGE_BUF_SIZE_UNIT 256U
32 #define HCLGE_BUF_MUL_BY 2
33 #define HCLGE_BUF_DIV_BY 2
34 #define NEED_RESERVE_TC_NUM 2
35 #define BUF_MAX_PERCENT 100
36 #define BUF_RESERVE_PERCENT 90
38 #define HCLGE_RESET_MAX_FAIL_CNT 5
39 #define HCLGE_RESET_SYNC_TIME 100
40 #define HCLGE_PF_RESET_SYNC_TIME 20
41 #define HCLGE_PF_RESET_SYNC_CNT 1500
43 /* Get DFX BD number offset */
44 #define HCLGE_DFX_BIOS_BD_OFFSET 1
45 #define HCLGE_DFX_SSU_0_BD_OFFSET 2
46 #define HCLGE_DFX_SSU_1_BD_OFFSET 3
47 #define HCLGE_DFX_IGU_BD_OFFSET 4
48 #define HCLGE_DFX_RPU_0_BD_OFFSET 5
49 #define HCLGE_DFX_RPU_1_BD_OFFSET 6
50 #define HCLGE_DFX_NCSI_BD_OFFSET 7
51 #define HCLGE_DFX_RTC_BD_OFFSET 8
52 #define HCLGE_DFX_PPP_BD_OFFSET 9
53 #define HCLGE_DFX_RCB_BD_OFFSET 10
54 #define HCLGE_DFX_TQP_BD_OFFSET 11
55 #define HCLGE_DFX_SSU_2_BD_OFFSET 12
57 #define HCLGE_LINK_STATUS_MS 10
59 static int hclge_set_mac_mtu(struct hclge_dev *hdev, int new_mps);
60 static int hclge_init_vlan_config(struct hclge_dev *hdev);
61 static void hclge_sync_vlan_filter(struct hclge_dev *hdev);
62 static int hclge_reset_ae_dev(struct hnae3_ae_dev *ae_dev);
63 static bool hclge_get_hw_reset_stat(struct hnae3_handle *handle);
64 static void hclge_rfs_filter_expire(struct hclge_dev *hdev);
65 static int hclge_clear_arfs_rules(struct hclge_dev *hdev);
66 static enum hnae3_reset_type hclge_get_reset_level(struct hnae3_ae_dev *ae_dev,
68 static int hclge_set_default_loopback(struct hclge_dev *hdev);
70 static void hclge_sync_mac_table(struct hclge_dev *hdev);
71 static void hclge_restore_hw_table(struct hclge_dev *hdev);
72 static void hclge_sync_promisc_mode(struct hclge_dev *hdev);
73 static void hclge_sync_fd_table(struct hclge_dev *hdev);
74 static void hclge_update_fec_stats(struct hclge_dev *hdev);
76 static struct hnae3_ae_algo ae_algo;
78 static struct workqueue_struct *hclge_wq;
80 static const struct pci_device_id ae_algo_pci_tbl[] = {
81 {PCI_VDEVICE(HUAWEI, HNAE3_DEV_ID_GE), 0},
82 {PCI_VDEVICE(HUAWEI, HNAE3_DEV_ID_25GE), 0},
83 {PCI_VDEVICE(HUAWEI, HNAE3_DEV_ID_25GE_RDMA), 0},
84 {PCI_VDEVICE(HUAWEI, HNAE3_DEV_ID_25GE_RDMA_MACSEC), 0},
85 {PCI_VDEVICE(HUAWEI, HNAE3_DEV_ID_50GE_RDMA), 0},
86 {PCI_VDEVICE(HUAWEI, HNAE3_DEV_ID_50GE_RDMA_MACSEC), 0},
87 {PCI_VDEVICE(HUAWEI, HNAE3_DEV_ID_100G_RDMA_MACSEC), 0},
88 {PCI_VDEVICE(HUAWEI, HNAE3_DEV_ID_200G_RDMA), 0},
89 /* required last entry */
93 MODULE_DEVICE_TABLE(pci, ae_algo_pci_tbl);
95 static const u32 cmdq_reg_addr_list[] = {HCLGE_COMM_NIC_CSQ_BASEADDR_L_REG,
96 HCLGE_COMM_NIC_CSQ_BASEADDR_H_REG,
97 HCLGE_COMM_NIC_CSQ_DEPTH_REG,
98 HCLGE_COMM_NIC_CSQ_TAIL_REG,
99 HCLGE_COMM_NIC_CSQ_HEAD_REG,
100 HCLGE_COMM_NIC_CRQ_BASEADDR_L_REG,
101 HCLGE_COMM_NIC_CRQ_BASEADDR_H_REG,
102 HCLGE_COMM_NIC_CRQ_DEPTH_REG,
103 HCLGE_COMM_NIC_CRQ_TAIL_REG,
104 HCLGE_COMM_NIC_CRQ_HEAD_REG,
105 HCLGE_COMM_VECTOR0_CMDQ_SRC_REG,
106 HCLGE_COMM_CMDQ_INTR_STS_REG,
107 HCLGE_COMM_CMDQ_INTR_EN_REG,
108 HCLGE_COMM_CMDQ_INTR_GEN_REG};
110 static const u32 common_reg_addr_list[] = {HCLGE_MISC_VECTOR_REG_BASE,
111 HCLGE_PF_OTHER_INT_REG,
112 HCLGE_MISC_RESET_STS_REG,
113 HCLGE_MISC_VECTOR_INT_STS,
114 HCLGE_GLOBAL_RESET_REG,
118 static const u32 ring_reg_addr_list[] = {HCLGE_RING_RX_ADDR_L_REG,
119 HCLGE_RING_RX_ADDR_H_REG,
120 HCLGE_RING_RX_BD_NUM_REG,
121 HCLGE_RING_RX_BD_LENGTH_REG,
122 HCLGE_RING_RX_MERGE_EN_REG,
123 HCLGE_RING_RX_TAIL_REG,
124 HCLGE_RING_RX_HEAD_REG,
125 HCLGE_RING_RX_FBD_NUM_REG,
126 HCLGE_RING_RX_OFFSET_REG,
127 HCLGE_RING_RX_FBD_OFFSET_REG,
128 HCLGE_RING_RX_STASH_REG,
129 HCLGE_RING_RX_BD_ERR_REG,
130 HCLGE_RING_TX_ADDR_L_REG,
131 HCLGE_RING_TX_ADDR_H_REG,
132 HCLGE_RING_TX_BD_NUM_REG,
133 HCLGE_RING_TX_PRIORITY_REG,
134 HCLGE_RING_TX_TC_REG,
135 HCLGE_RING_TX_MERGE_EN_REG,
136 HCLGE_RING_TX_TAIL_REG,
137 HCLGE_RING_TX_HEAD_REG,
138 HCLGE_RING_TX_FBD_NUM_REG,
139 HCLGE_RING_TX_OFFSET_REG,
140 HCLGE_RING_TX_EBD_NUM_REG,
141 HCLGE_RING_TX_EBD_OFFSET_REG,
142 HCLGE_RING_TX_BD_ERR_REG,
145 static const u32 tqp_intr_reg_addr_list[] = {HCLGE_TQP_INTR_CTRL_REG,
146 HCLGE_TQP_INTR_GL0_REG,
147 HCLGE_TQP_INTR_GL1_REG,
148 HCLGE_TQP_INTR_GL2_REG,
149 HCLGE_TQP_INTR_RL_REG};
151 static const char hns3_nic_test_strs[][ETH_GSTRING_LEN] = {
152 "External Loopback test",
154 "Serdes serial Loopback test",
155 "Serdes parallel Loopback test",
159 static const struct hclge_comm_stats_str g_mac_stats_string[] = {
160 {"mac_tx_mac_pause_num", HCLGE_MAC_STATS_MAX_NUM_V1,
161 HCLGE_MAC_STATS_FIELD_OFF(mac_tx_mac_pause_num)},
162 {"mac_rx_mac_pause_num", HCLGE_MAC_STATS_MAX_NUM_V1,
163 HCLGE_MAC_STATS_FIELD_OFF(mac_rx_mac_pause_num)},
164 {"mac_tx_pause_xoff_time", HCLGE_MAC_STATS_MAX_NUM_V2,
165 HCLGE_MAC_STATS_FIELD_OFF(mac_tx_pause_xoff_time)},
166 {"mac_rx_pause_xoff_time", HCLGE_MAC_STATS_MAX_NUM_V2,
167 HCLGE_MAC_STATS_FIELD_OFF(mac_rx_pause_xoff_time)},
168 {"mac_tx_control_pkt_num", HCLGE_MAC_STATS_MAX_NUM_V1,
169 HCLGE_MAC_STATS_FIELD_OFF(mac_tx_ctrl_pkt_num)},
170 {"mac_rx_control_pkt_num", HCLGE_MAC_STATS_MAX_NUM_V1,
171 HCLGE_MAC_STATS_FIELD_OFF(mac_rx_ctrl_pkt_num)},
172 {"mac_tx_pfc_pkt_num", HCLGE_MAC_STATS_MAX_NUM_V1,
173 HCLGE_MAC_STATS_FIELD_OFF(mac_tx_pfc_pause_pkt_num)},
174 {"mac_tx_pfc_pri0_pkt_num", HCLGE_MAC_STATS_MAX_NUM_V1,
175 HCLGE_MAC_STATS_FIELD_OFF(mac_tx_pfc_pri0_pkt_num)},
176 {"mac_tx_pfc_pri1_pkt_num", HCLGE_MAC_STATS_MAX_NUM_V1,
177 HCLGE_MAC_STATS_FIELD_OFF(mac_tx_pfc_pri1_pkt_num)},
178 {"mac_tx_pfc_pri2_pkt_num", HCLGE_MAC_STATS_MAX_NUM_V1,
179 HCLGE_MAC_STATS_FIELD_OFF(mac_tx_pfc_pri2_pkt_num)},
180 {"mac_tx_pfc_pri3_pkt_num", HCLGE_MAC_STATS_MAX_NUM_V1,
181 HCLGE_MAC_STATS_FIELD_OFF(mac_tx_pfc_pri3_pkt_num)},
182 {"mac_tx_pfc_pri4_pkt_num", HCLGE_MAC_STATS_MAX_NUM_V1,
183 HCLGE_MAC_STATS_FIELD_OFF(mac_tx_pfc_pri4_pkt_num)},
184 {"mac_tx_pfc_pri5_pkt_num", HCLGE_MAC_STATS_MAX_NUM_V1,
185 HCLGE_MAC_STATS_FIELD_OFF(mac_tx_pfc_pri5_pkt_num)},
186 {"mac_tx_pfc_pri6_pkt_num", HCLGE_MAC_STATS_MAX_NUM_V1,
187 HCLGE_MAC_STATS_FIELD_OFF(mac_tx_pfc_pri6_pkt_num)},
188 {"mac_tx_pfc_pri7_pkt_num", HCLGE_MAC_STATS_MAX_NUM_V1,
189 HCLGE_MAC_STATS_FIELD_OFF(mac_tx_pfc_pri7_pkt_num)},
190 {"mac_tx_pfc_pri0_xoff_time", HCLGE_MAC_STATS_MAX_NUM_V2,
191 HCLGE_MAC_STATS_FIELD_OFF(mac_tx_pfc_pri0_xoff_time)},
192 {"mac_tx_pfc_pri1_xoff_time", HCLGE_MAC_STATS_MAX_NUM_V2,
193 HCLGE_MAC_STATS_FIELD_OFF(mac_tx_pfc_pri1_xoff_time)},
194 {"mac_tx_pfc_pri2_xoff_time", HCLGE_MAC_STATS_MAX_NUM_V2,
195 HCLGE_MAC_STATS_FIELD_OFF(mac_tx_pfc_pri2_xoff_time)},
196 {"mac_tx_pfc_pri3_xoff_time", HCLGE_MAC_STATS_MAX_NUM_V2,
197 HCLGE_MAC_STATS_FIELD_OFF(mac_tx_pfc_pri3_xoff_time)},
198 {"mac_tx_pfc_pri4_xoff_time", HCLGE_MAC_STATS_MAX_NUM_V2,
199 HCLGE_MAC_STATS_FIELD_OFF(mac_tx_pfc_pri4_xoff_time)},
200 {"mac_tx_pfc_pri5_xoff_time", HCLGE_MAC_STATS_MAX_NUM_V2,
201 HCLGE_MAC_STATS_FIELD_OFF(mac_tx_pfc_pri5_xoff_time)},
202 {"mac_tx_pfc_pri6_xoff_time", HCLGE_MAC_STATS_MAX_NUM_V2,
203 HCLGE_MAC_STATS_FIELD_OFF(mac_tx_pfc_pri6_xoff_time)},
204 {"mac_tx_pfc_pri7_xoff_time", HCLGE_MAC_STATS_MAX_NUM_V2,
205 HCLGE_MAC_STATS_FIELD_OFF(mac_tx_pfc_pri7_xoff_time)},
206 {"mac_rx_pfc_pkt_num", HCLGE_MAC_STATS_MAX_NUM_V1,
207 HCLGE_MAC_STATS_FIELD_OFF(mac_rx_pfc_pause_pkt_num)},
208 {"mac_rx_pfc_pri0_pkt_num", HCLGE_MAC_STATS_MAX_NUM_V1,
209 HCLGE_MAC_STATS_FIELD_OFF(mac_rx_pfc_pri0_pkt_num)},
210 {"mac_rx_pfc_pri1_pkt_num", HCLGE_MAC_STATS_MAX_NUM_V1,
211 HCLGE_MAC_STATS_FIELD_OFF(mac_rx_pfc_pri1_pkt_num)},
212 {"mac_rx_pfc_pri2_pkt_num", HCLGE_MAC_STATS_MAX_NUM_V1,
213 HCLGE_MAC_STATS_FIELD_OFF(mac_rx_pfc_pri2_pkt_num)},
214 {"mac_rx_pfc_pri3_pkt_num", HCLGE_MAC_STATS_MAX_NUM_V1,
215 HCLGE_MAC_STATS_FIELD_OFF(mac_rx_pfc_pri3_pkt_num)},
216 {"mac_rx_pfc_pri4_pkt_num", HCLGE_MAC_STATS_MAX_NUM_V1,
217 HCLGE_MAC_STATS_FIELD_OFF(mac_rx_pfc_pri4_pkt_num)},
218 {"mac_rx_pfc_pri5_pkt_num", HCLGE_MAC_STATS_MAX_NUM_V1,
219 HCLGE_MAC_STATS_FIELD_OFF(mac_rx_pfc_pri5_pkt_num)},
220 {"mac_rx_pfc_pri6_pkt_num", HCLGE_MAC_STATS_MAX_NUM_V1,
221 HCLGE_MAC_STATS_FIELD_OFF(mac_rx_pfc_pri6_pkt_num)},
222 {"mac_rx_pfc_pri7_pkt_num", HCLGE_MAC_STATS_MAX_NUM_V1,
223 HCLGE_MAC_STATS_FIELD_OFF(mac_rx_pfc_pri7_pkt_num)},
224 {"mac_rx_pfc_pri0_xoff_time", HCLGE_MAC_STATS_MAX_NUM_V2,
225 HCLGE_MAC_STATS_FIELD_OFF(mac_rx_pfc_pri0_xoff_time)},
226 {"mac_rx_pfc_pri1_xoff_time", HCLGE_MAC_STATS_MAX_NUM_V2,
227 HCLGE_MAC_STATS_FIELD_OFF(mac_rx_pfc_pri1_xoff_time)},
228 {"mac_rx_pfc_pri2_xoff_time", HCLGE_MAC_STATS_MAX_NUM_V2,
229 HCLGE_MAC_STATS_FIELD_OFF(mac_rx_pfc_pri2_xoff_time)},
230 {"mac_rx_pfc_pri3_xoff_time", HCLGE_MAC_STATS_MAX_NUM_V2,
231 HCLGE_MAC_STATS_FIELD_OFF(mac_rx_pfc_pri3_xoff_time)},
232 {"mac_rx_pfc_pri4_xoff_time", HCLGE_MAC_STATS_MAX_NUM_V2,
233 HCLGE_MAC_STATS_FIELD_OFF(mac_rx_pfc_pri4_xoff_time)},
234 {"mac_rx_pfc_pri5_xoff_time", HCLGE_MAC_STATS_MAX_NUM_V2,
235 HCLGE_MAC_STATS_FIELD_OFF(mac_rx_pfc_pri5_xoff_time)},
236 {"mac_rx_pfc_pri6_xoff_time", HCLGE_MAC_STATS_MAX_NUM_V2,
237 HCLGE_MAC_STATS_FIELD_OFF(mac_rx_pfc_pri6_xoff_time)},
238 {"mac_rx_pfc_pri7_xoff_time", HCLGE_MAC_STATS_MAX_NUM_V2,
239 HCLGE_MAC_STATS_FIELD_OFF(mac_rx_pfc_pri7_xoff_time)},
240 {"mac_tx_total_pkt_num", HCLGE_MAC_STATS_MAX_NUM_V1,
241 HCLGE_MAC_STATS_FIELD_OFF(mac_tx_total_pkt_num)},
242 {"mac_tx_total_oct_num", HCLGE_MAC_STATS_MAX_NUM_V1,
243 HCLGE_MAC_STATS_FIELD_OFF(mac_tx_total_oct_num)},
244 {"mac_tx_good_pkt_num", HCLGE_MAC_STATS_MAX_NUM_V1,
245 HCLGE_MAC_STATS_FIELD_OFF(mac_tx_good_pkt_num)},
246 {"mac_tx_bad_pkt_num", HCLGE_MAC_STATS_MAX_NUM_V1,
247 HCLGE_MAC_STATS_FIELD_OFF(mac_tx_bad_pkt_num)},
248 {"mac_tx_good_oct_num", HCLGE_MAC_STATS_MAX_NUM_V1,
249 HCLGE_MAC_STATS_FIELD_OFF(mac_tx_good_oct_num)},
250 {"mac_tx_bad_oct_num", HCLGE_MAC_STATS_MAX_NUM_V1,
251 HCLGE_MAC_STATS_FIELD_OFF(mac_tx_bad_oct_num)},
252 {"mac_tx_uni_pkt_num", HCLGE_MAC_STATS_MAX_NUM_V1,
253 HCLGE_MAC_STATS_FIELD_OFF(mac_tx_uni_pkt_num)},
254 {"mac_tx_multi_pkt_num", HCLGE_MAC_STATS_MAX_NUM_V1,
255 HCLGE_MAC_STATS_FIELD_OFF(mac_tx_multi_pkt_num)},
256 {"mac_tx_broad_pkt_num", HCLGE_MAC_STATS_MAX_NUM_V1,
257 HCLGE_MAC_STATS_FIELD_OFF(mac_tx_broad_pkt_num)},
258 {"mac_tx_undersize_pkt_num", HCLGE_MAC_STATS_MAX_NUM_V1,
259 HCLGE_MAC_STATS_FIELD_OFF(mac_tx_undersize_pkt_num)},
260 {"mac_tx_oversize_pkt_num", HCLGE_MAC_STATS_MAX_NUM_V1,
261 HCLGE_MAC_STATS_FIELD_OFF(mac_tx_oversize_pkt_num)},
262 {"mac_tx_64_oct_pkt_num", HCLGE_MAC_STATS_MAX_NUM_V1,
263 HCLGE_MAC_STATS_FIELD_OFF(mac_tx_64_oct_pkt_num)},
264 {"mac_tx_65_127_oct_pkt_num", HCLGE_MAC_STATS_MAX_NUM_V1,
265 HCLGE_MAC_STATS_FIELD_OFF(mac_tx_65_127_oct_pkt_num)},
266 {"mac_tx_128_255_oct_pkt_num", HCLGE_MAC_STATS_MAX_NUM_V1,
267 HCLGE_MAC_STATS_FIELD_OFF(mac_tx_128_255_oct_pkt_num)},
268 {"mac_tx_256_511_oct_pkt_num", HCLGE_MAC_STATS_MAX_NUM_V1,
269 HCLGE_MAC_STATS_FIELD_OFF(mac_tx_256_511_oct_pkt_num)},
270 {"mac_tx_512_1023_oct_pkt_num", HCLGE_MAC_STATS_MAX_NUM_V1,
271 HCLGE_MAC_STATS_FIELD_OFF(mac_tx_512_1023_oct_pkt_num)},
272 {"mac_tx_1024_1518_oct_pkt_num", HCLGE_MAC_STATS_MAX_NUM_V1,
273 HCLGE_MAC_STATS_FIELD_OFF(mac_tx_1024_1518_oct_pkt_num)},
274 {"mac_tx_1519_2047_oct_pkt_num", HCLGE_MAC_STATS_MAX_NUM_V1,
275 HCLGE_MAC_STATS_FIELD_OFF(mac_tx_1519_2047_oct_pkt_num)},
276 {"mac_tx_2048_4095_oct_pkt_num", HCLGE_MAC_STATS_MAX_NUM_V1,
277 HCLGE_MAC_STATS_FIELD_OFF(mac_tx_2048_4095_oct_pkt_num)},
278 {"mac_tx_4096_8191_oct_pkt_num", HCLGE_MAC_STATS_MAX_NUM_V1,
279 HCLGE_MAC_STATS_FIELD_OFF(mac_tx_4096_8191_oct_pkt_num)},
280 {"mac_tx_8192_9216_oct_pkt_num", HCLGE_MAC_STATS_MAX_NUM_V1,
281 HCLGE_MAC_STATS_FIELD_OFF(mac_tx_8192_9216_oct_pkt_num)},
282 {"mac_tx_9217_12287_oct_pkt_num", HCLGE_MAC_STATS_MAX_NUM_V1,
283 HCLGE_MAC_STATS_FIELD_OFF(mac_tx_9217_12287_oct_pkt_num)},
284 {"mac_tx_12288_16383_oct_pkt_num", HCLGE_MAC_STATS_MAX_NUM_V1,
285 HCLGE_MAC_STATS_FIELD_OFF(mac_tx_12288_16383_oct_pkt_num)},
286 {"mac_tx_1519_max_good_pkt_num", HCLGE_MAC_STATS_MAX_NUM_V1,
287 HCLGE_MAC_STATS_FIELD_OFF(mac_tx_1519_max_good_oct_pkt_num)},
288 {"mac_tx_1519_max_bad_pkt_num", HCLGE_MAC_STATS_MAX_NUM_V1,
289 HCLGE_MAC_STATS_FIELD_OFF(mac_tx_1519_max_bad_oct_pkt_num)},
290 {"mac_rx_total_pkt_num", HCLGE_MAC_STATS_MAX_NUM_V1,
291 HCLGE_MAC_STATS_FIELD_OFF(mac_rx_total_pkt_num)},
292 {"mac_rx_total_oct_num", HCLGE_MAC_STATS_MAX_NUM_V1,
293 HCLGE_MAC_STATS_FIELD_OFF(mac_rx_total_oct_num)},
294 {"mac_rx_good_pkt_num", HCLGE_MAC_STATS_MAX_NUM_V1,
295 HCLGE_MAC_STATS_FIELD_OFF(mac_rx_good_pkt_num)},
296 {"mac_rx_bad_pkt_num", HCLGE_MAC_STATS_MAX_NUM_V1,
297 HCLGE_MAC_STATS_FIELD_OFF(mac_rx_bad_pkt_num)},
298 {"mac_rx_good_oct_num", HCLGE_MAC_STATS_MAX_NUM_V1,
299 HCLGE_MAC_STATS_FIELD_OFF(mac_rx_good_oct_num)},
300 {"mac_rx_bad_oct_num", HCLGE_MAC_STATS_MAX_NUM_V1,
301 HCLGE_MAC_STATS_FIELD_OFF(mac_rx_bad_oct_num)},
302 {"mac_rx_uni_pkt_num", HCLGE_MAC_STATS_MAX_NUM_V1,
303 HCLGE_MAC_STATS_FIELD_OFF(mac_rx_uni_pkt_num)},
304 {"mac_rx_multi_pkt_num", HCLGE_MAC_STATS_MAX_NUM_V1,
305 HCLGE_MAC_STATS_FIELD_OFF(mac_rx_multi_pkt_num)},
306 {"mac_rx_broad_pkt_num", HCLGE_MAC_STATS_MAX_NUM_V1,
307 HCLGE_MAC_STATS_FIELD_OFF(mac_rx_broad_pkt_num)},
308 {"mac_rx_undersize_pkt_num", HCLGE_MAC_STATS_MAX_NUM_V1,
309 HCLGE_MAC_STATS_FIELD_OFF(mac_rx_undersize_pkt_num)},
310 {"mac_rx_oversize_pkt_num", HCLGE_MAC_STATS_MAX_NUM_V1,
311 HCLGE_MAC_STATS_FIELD_OFF(mac_rx_oversize_pkt_num)},
312 {"mac_rx_64_oct_pkt_num", HCLGE_MAC_STATS_MAX_NUM_V1,
313 HCLGE_MAC_STATS_FIELD_OFF(mac_rx_64_oct_pkt_num)},
314 {"mac_rx_65_127_oct_pkt_num", HCLGE_MAC_STATS_MAX_NUM_V1,
315 HCLGE_MAC_STATS_FIELD_OFF(mac_rx_65_127_oct_pkt_num)},
316 {"mac_rx_128_255_oct_pkt_num", HCLGE_MAC_STATS_MAX_NUM_V1,
317 HCLGE_MAC_STATS_FIELD_OFF(mac_rx_128_255_oct_pkt_num)},
318 {"mac_rx_256_511_oct_pkt_num", HCLGE_MAC_STATS_MAX_NUM_V1,
319 HCLGE_MAC_STATS_FIELD_OFF(mac_rx_256_511_oct_pkt_num)},
320 {"mac_rx_512_1023_oct_pkt_num", HCLGE_MAC_STATS_MAX_NUM_V1,
321 HCLGE_MAC_STATS_FIELD_OFF(mac_rx_512_1023_oct_pkt_num)},
322 {"mac_rx_1024_1518_oct_pkt_num", HCLGE_MAC_STATS_MAX_NUM_V1,
323 HCLGE_MAC_STATS_FIELD_OFF(mac_rx_1024_1518_oct_pkt_num)},
324 {"mac_rx_1519_2047_oct_pkt_num", HCLGE_MAC_STATS_MAX_NUM_V1,
325 HCLGE_MAC_STATS_FIELD_OFF(mac_rx_1519_2047_oct_pkt_num)},
326 {"mac_rx_2048_4095_oct_pkt_num", HCLGE_MAC_STATS_MAX_NUM_V1,
327 HCLGE_MAC_STATS_FIELD_OFF(mac_rx_2048_4095_oct_pkt_num)},
328 {"mac_rx_4096_8191_oct_pkt_num", HCLGE_MAC_STATS_MAX_NUM_V1,
329 HCLGE_MAC_STATS_FIELD_OFF(mac_rx_4096_8191_oct_pkt_num)},
330 {"mac_rx_8192_9216_oct_pkt_num", HCLGE_MAC_STATS_MAX_NUM_V1,
331 HCLGE_MAC_STATS_FIELD_OFF(mac_rx_8192_9216_oct_pkt_num)},
332 {"mac_rx_9217_12287_oct_pkt_num", HCLGE_MAC_STATS_MAX_NUM_V1,
333 HCLGE_MAC_STATS_FIELD_OFF(mac_rx_9217_12287_oct_pkt_num)},
334 {"mac_rx_12288_16383_oct_pkt_num", HCLGE_MAC_STATS_MAX_NUM_V1,
335 HCLGE_MAC_STATS_FIELD_OFF(mac_rx_12288_16383_oct_pkt_num)},
336 {"mac_rx_1519_max_good_pkt_num", HCLGE_MAC_STATS_MAX_NUM_V1,
337 HCLGE_MAC_STATS_FIELD_OFF(mac_rx_1519_max_good_oct_pkt_num)},
338 {"mac_rx_1519_max_bad_pkt_num", HCLGE_MAC_STATS_MAX_NUM_V1,
339 HCLGE_MAC_STATS_FIELD_OFF(mac_rx_1519_max_bad_oct_pkt_num)},
341 {"mac_tx_fragment_pkt_num", HCLGE_MAC_STATS_MAX_NUM_V1,
342 HCLGE_MAC_STATS_FIELD_OFF(mac_tx_fragment_pkt_num)},
343 {"mac_tx_undermin_pkt_num", HCLGE_MAC_STATS_MAX_NUM_V1,
344 HCLGE_MAC_STATS_FIELD_OFF(mac_tx_undermin_pkt_num)},
345 {"mac_tx_jabber_pkt_num", HCLGE_MAC_STATS_MAX_NUM_V1,
346 HCLGE_MAC_STATS_FIELD_OFF(mac_tx_jabber_pkt_num)},
347 {"mac_tx_err_all_pkt_num", HCLGE_MAC_STATS_MAX_NUM_V1,
348 HCLGE_MAC_STATS_FIELD_OFF(mac_tx_err_all_pkt_num)},
349 {"mac_tx_from_app_good_pkt_num", HCLGE_MAC_STATS_MAX_NUM_V1,
350 HCLGE_MAC_STATS_FIELD_OFF(mac_tx_from_app_good_pkt_num)},
351 {"mac_tx_from_app_bad_pkt_num", HCLGE_MAC_STATS_MAX_NUM_V1,
352 HCLGE_MAC_STATS_FIELD_OFF(mac_tx_from_app_bad_pkt_num)},
353 {"mac_rx_fragment_pkt_num", HCLGE_MAC_STATS_MAX_NUM_V1,
354 HCLGE_MAC_STATS_FIELD_OFF(mac_rx_fragment_pkt_num)},
355 {"mac_rx_undermin_pkt_num", HCLGE_MAC_STATS_MAX_NUM_V1,
356 HCLGE_MAC_STATS_FIELD_OFF(mac_rx_undermin_pkt_num)},
357 {"mac_rx_jabber_pkt_num", HCLGE_MAC_STATS_MAX_NUM_V1,
358 HCLGE_MAC_STATS_FIELD_OFF(mac_rx_jabber_pkt_num)},
359 {"mac_rx_fcs_err_pkt_num", HCLGE_MAC_STATS_MAX_NUM_V1,
360 HCLGE_MAC_STATS_FIELD_OFF(mac_rx_fcs_err_pkt_num)},
361 {"mac_rx_send_app_good_pkt_num", HCLGE_MAC_STATS_MAX_NUM_V1,
362 HCLGE_MAC_STATS_FIELD_OFF(mac_rx_send_app_good_pkt_num)},
363 {"mac_rx_send_app_bad_pkt_num", HCLGE_MAC_STATS_MAX_NUM_V1,
364 HCLGE_MAC_STATS_FIELD_OFF(mac_rx_send_app_bad_pkt_num)}
367 static const struct hclge_mac_mgr_tbl_entry_cmd hclge_mgr_table[] = {
369 .flags = HCLGE_MAC_MGR_MASK_VLAN_B,
370 .ethter_type = cpu_to_le16(ETH_P_LLDP),
371 .mac_addr = {0x01, 0x80, 0xc2, 0x00, 0x00, 0x0e},
372 .i_port_bitmap = 0x1,
376 static const u32 hclge_dfx_bd_offset_list[] = {
377 HCLGE_DFX_BIOS_BD_OFFSET,
378 HCLGE_DFX_SSU_0_BD_OFFSET,
379 HCLGE_DFX_SSU_1_BD_OFFSET,
380 HCLGE_DFX_IGU_BD_OFFSET,
381 HCLGE_DFX_RPU_0_BD_OFFSET,
382 HCLGE_DFX_RPU_1_BD_OFFSET,
383 HCLGE_DFX_NCSI_BD_OFFSET,
384 HCLGE_DFX_RTC_BD_OFFSET,
385 HCLGE_DFX_PPP_BD_OFFSET,
386 HCLGE_DFX_RCB_BD_OFFSET,
387 HCLGE_DFX_TQP_BD_OFFSET,
388 HCLGE_DFX_SSU_2_BD_OFFSET
391 static const enum hclge_opcode_type hclge_dfx_reg_opcode_list[] = {
392 HCLGE_OPC_DFX_BIOS_COMMON_REG,
393 HCLGE_OPC_DFX_SSU_REG_0,
394 HCLGE_OPC_DFX_SSU_REG_1,
395 HCLGE_OPC_DFX_IGU_EGU_REG,
396 HCLGE_OPC_DFX_RPU_REG_0,
397 HCLGE_OPC_DFX_RPU_REG_1,
398 HCLGE_OPC_DFX_NCSI_REG,
399 HCLGE_OPC_DFX_RTC_REG,
400 HCLGE_OPC_DFX_PPP_REG,
401 HCLGE_OPC_DFX_RCB_REG,
402 HCLGE_OPC_DFX_TQP_REG,
403 HCLGE_OPC_DFX_SSU_REG_2
406 static const struct key_info meta_data_key_info[] = {
407 { PACKET_TYPE_ID, 6 },
414 { TUNNEL_PACKET, 1 },
417 static const struct key_info tuple_key_info[] = {
418 { OUTER_DST_MAC, 48, KEY_OPT_MAC, -1, -1 },
419 { OUTER_SRC_MAC, 48, KEY_OPT_MAC, -1, -1 },
420 { OUTER_VLAN_TAG_FST, 16, KEY_OPT_LE16, -1, -1 },
421 { OUTER_VLAN_TAG_SEC, 16, KEY_OPT_LE16, -1, -1 },
422 { OUTER_ETH_TYPE, 16, KEY_OPT_LE16, -1, -1 },
423 { OUTER_L2_RSV, 16, KEY_OPT_LE16, -1, -1 },
424 { OUTER_IP_TOS, 8, KEY_OPT_U8, -1, -1 },
425 { OUTER_IP_PROTO, 8, KEY_OPT_U8, -1, -1 },
426 { OUTER_SRC_IP, 32, KEY_OPT_IP, -1, -1 },
427 { OUTER_DST_IP, 32, KEY_OPT_IP, -1, -1 },
428 { OUTER_L3_RSV, 16, KEY_OPT_LE16, -1, -1 },
429 { OUTER_SRC_PORT, 16, KEY_OPT_LE16, -1, -1 },
430 { OUTER_DST_PORT, 16, KEY_OPT_LE16, -1, -1 },
431 { OUTER_L4_RSV, 32, KEY_OPT_LE32, -1, -1 },
432 { OUTER_TUN_VNI, 24, KEY_OPT_VNI, -1, -1 },
433 { OUTER_TUN_FLOW_ID, 8, KEY_OPT_U8, -1, -1 },
434 { INNER_DST_MAC, 48, KEY_OPT_MAC,
435 offsetof(struct hclge_fd_rule, tuples.dst_mac),
436 offsetof(struct hclge_fd_rule, tuples_mask.dst_mac) },
437 { INNER_SRC_MAC, 48, KEY_OPT_MAC,
438 offsetof(struct hclge_fd_rule, tuples.src_mac),
439 offsetof(struct hclge_fd_rule, tuples_mask.src_mac) },
440 { INNER_VLAN_TAG_FST, 16, KEY_OPT_LE16,
441 offsetof(struct hclge_fd_rule, tuples.vlan_tag1),
442 offsetof(struct hclge_fd_rule, tuples_mask.vlan_tag1) },
443 { INNER_VLAN_TAG_SEC, 16, KEY_OPT_LE16, -1, -1 },
444 { INNER_ETH_TYPE, 16, KEY_OPT_LE16,
445 offsetof(struct hclge_fd_rule, tuples.ether_proto),
446 offsetof(struct hclge_fd_rule, tuples_mask.ether_proto) },
447 { INNER_L2_RSV, 16, KEY_OPT_LE16,
448 offsetof(struct hclge_fd_rule, tuples.l2_user_def),
449 offsetof(struct hclge_fd_rule, tuples_mask.l2_user_def) },
450 { INNER_IP_TOS, 8, KEY_OPT_U8,
451 offsetof(struct hclge_fd_rule, tuples.ip_tos),
452 offsetof(struct hclge_fd_rule, tuples_mask.ip_tos) },
453 { INNER_IP_PROTO, 8, KEY_OPT_U8,
454 offsetof(struct hclge_fd_rule, tuples.ip_proto),
455 offsetof(struct hclge_fd_rule, tuples_mask.ip_proto) },
456 { INNER_SRC_IP, 32, KEY_OPT_IP,
457 offsetof(struct hclge_fd_rule, tuples.src_ip),
458 offsetof(struct hclge_fd_rule, tuples_mask.src_ip) },
459 { INNER_DST_IP, 32, KEY_OPT_IP,
460 offsetof(struct hclge_fd_rule, tuples.dst_ip),
461 offsetof(struct hclge_fd_rule, tuples_mask.dst_ip) },
462 { INNER_L3_RSV, 16, KEY_OPT_LE16,
463 offsetof(struct hclge_fd_rule, tuples.l3_user_def),
464 offsetof(struct hclge_fd_rule, tuples_mask.l3_user_def) },
465 { INNER_SRC_PORT, 16, KEY_OPT_LE16,
466 offsetof(struct hclge_fd_rule, tuples.src_port),
467 offsetof(struct hclge_fd_rule, tuples_mask.src_port) },
468 { INNER_DST_PORT, 16, KEY_OPT_LE16,
469 offsetof(struct hclge_fd_rule, tuples.dst_port),
470 offsetof(struct hclge_fd_rule, tuples_mask.dst_port) },
471 { INNER_L4_RSV, 32, KEY_OPT_LE32,
472 offsetof(struct hclge_fd_rule, tuples.l4_user_def),
473 offsetof(struct hclge_fd_rule, tuples_mask.l4_user_def) },
477 * hclge_cmd_send - send command to command queue
478 * @hw: pointer to the hw struct
479 * @desc: prefilled descriptor for describing the command
480 * @num : the number of descriptors to be sent
482 * This is the main send command for command queue, it
483 * sends the queue, cleans the queue, etc
485 int hclge_cmd_send(struct hclge_hw *hw, struct hclge_desc *desc, int num)
487 return hclge_comm_cmd_send(&hw->hw, desc, num);
490 static int hclge_mac_update_stats_defective(struct hclge_dev *hdev)
492 #define HCLGE_MAC_CMD_NUM 21
494 u64 *data = (u64 *)(&hdev->mac_stats);
495 struct hclge_desc desc[HCLGE_MAC_CMD_NUM];
501 hclge_cmd_setup_basic_desc(&desc[0], HCLGE_OPC_STATS_MAC, true);
502 ret = hclge_cmd_send(&hdev->hw, desc, HCLGE_MAC_CMD_NUM);
504 dev_err(&hdev->pdev->dev,
505 "Get MAC pkt stats fail, status = %d.\n", ret);
510 /* The first desc has a 64-bit header, so data size need to minus 1 */
511 data_size = sizeof(desc) / (sizeof(u64)) - 1;
513 desc_data = (__le64 *)(&desc[0].data[0]);
514 for (i = 0; i < data_size; i++) {
515 /* data memory is continuous becase only the first desc has a
516 * header in this command
518 *data += le64_to_cpu(*desc_data);
526 static int hclge_mac_update_stats_complete(struct hclge_dev *hdev)
528 #define HCLGE_REG_NUM_PER_DESC 4
530 u32 reg_num = hdev->ae_dev->dev_specs.mac_stats_num;
531 u64 *data = (u64 *)(&hdev->mac_stats);
532 struct hclge_desc *desc;
539 /* The first desc has a 64-bit header, so need to consider it */
540 desc_num = reg_num / HCLGE_REG_NUM_PER_DESC + 1;
542 /* This may be called inside atomic sections,
543 * so GFP_ATOMIC is more suitalbe here
545 desc = kcalloc(desc_num, sizeof(struct hclge_desc), GFP_ATOMIC);
549 hclge_cmd_setup_basic_desc(&desc[0], HCLGE_OPC_STATS_MAC_ALL, true);
550 ret = hclge_cmd_send(&hdev->hw, desc, desc_num);
556 data_size = min_t(u32, sizeof(hdev->mac_stats) / sizeof(u64), reg_num);
558 desc_data = (__le64 *)(&desc[0].data[0]);
559 for (i = 0; i < data_size; i++) {
560 /* data memory is continuous becase only the first desc has a
561 * header in this command
563 *data += le64_to_cpu(*desc_data);
573 static int hclge_mac_query_reg_num(struct hclge_dev *hdev, u32 *reg_num)
575 struct hclge_desc desc;
578 /* Driver needs total register number of both valid registers and
579 * reserved registers, but the old firmware only returns number
580 * of valid registers in device V2. To be compatible with these
581 * devices, driver uses a fixed value.
583 if (hdev->ae_dev->dev_version == HNAE3_DEVICE_VERSION_V2) {
584 *reg_num = HCLGE_MAC_STATS_MAX_NUM_V1;
588 hclge_cmd_setup_basic_desc(&desc, HCLGE_OPC_QUERY_MAC_REG_NUM, true);
589 ret = hclge_cmd_send(&hdev->hw, &desc, 1);
591 dev_err(&hdev->pdev->dev,
592 "failed to query mac statistic reg number, ret = %d\n",
597 *reg_num = le32_to_cpu(desc.data[0]);
599 dev_err(&hdev->pdev->dev,
600 "mac statistic reg number is invalid!\n");
607 int hclge_mac_update_stats(struct hclge_dev *hdev)
609 /* The firmware supports the new statistics acquisition method */
610 if (hdev->ae_dev->dev_specs.mac_stats_num)
611 return hclge_mac_update_stats_complete(hdev);
613 return hclge_mac_update_stats_defective(hdev);
616 static int hclge_comm_get_count(struct hclge_dev *hdev,
617 const struct hclge_comm_stats_str strs[],
623 for (i = 0; i < size; i++)
624 if (strs[i].stats_num <= hdev->ae_dev->dev_specs.mac_stats_num)
630 static u64 *hclge_comm_get_stats(struct hclge_dev *hdev,
631 const struct hclge_comm_stats_str strs[],
637 for (i = 0; i < size; i++) {
638 if (strs[i].stats_num > hdev->ae_dev->dev_specs.mac_stats_num)
641 *buf = HCLGE_STATS_READ(&hdev->mac_stats, strs[i].offset);
648 static u8 *hclge_comm_get_strings(struct hclge_dev *hdev, u32 stringset,
649 const struct hclge_comm_stats_str strs[],
652 char *buff = (char *)data;
655 if (stringset != ETH_SS_STATS)
658 for (i = 0; i < size; i++) {
659 if (strs[i].stats_num > hdev->ae_dev->dev_specs.mac_stats_num)
662 snprintf(buff, ETH_GSTRING_LEN, "%s", strs[i].desc);
663 buff = buff + ETH_GSTRING_LEN;
669 static void hclge_update_stats_for_all(struct hclge_dev *hdev)
671 struct hnae3_handle *handle;
674 handle = &hdev->vport[0].nic;
675 if (handle->client) {
676 status = hclge_comm_tqps_update_stats(handle, &hdev->hw.hw);
678 dev_err(&hdev->pdev->dev,
679 "Update TQPS stats fail, status = %d.\n",
684 hclge_update_fec_stats(hdev);
686 status = hclge_mac_update_stats(hdev);
688 dev_err(&hdev->pdev->dev,
689 "Update MAC stats fail, status = %d.\n", status);
692 static void hclge_update_stats(struct hnae3_handle *handle,
693 struct net_device_stats *net_stats)
695 struct hclge_vport *vport = hclge_get_vport(handle);
696 struct hclge_dev *hdev = vport->back;
699 if (test_and_set_bit(HCLGE_STATE_STATISTICS_UPDATING, &hdev->state))
702 status = hclge_mac_update_stats(hdev);
704 dev_err(&hdev->pdev->dev,
705 "Update MAC stats fail, status = %d.\n",
708 status = hclge_comm_tqps_update_stats(handle, &hdev->hw.hw);
710 dev_err(&hdev->pdev->dev,
711 "Update TQPS stats fail, status = %d.\n",
714 clear_bit(HCLGE_STATE_STATISTICS_UPDATING, &hdev->state);
717 static int hclge_get_sset_count(struct hnae3_handle *handle, int stringset)
719 #define HCLGE_LOOPBACK_TEST_FLAGS (HNAE3_SUPPORT_APP_LOOPBACK | \
720 HNAE3_SUPPORT_PHY_LOOPBACK | \
721 HNAE3_SUPPORT_SERDES_SERIAL_LOOPBACK | \
722 HNAE3_SUPPORT_SERDES_PARALLEL_LOOPBACK | \
723 HNAE3_SUPPORT_EXTERNAL_LOOPBACK)
725 struct hclge_vport *vport = hclge_get_vport(handle);
726 struct hclge_dev *hdev = vport->back;
729 /* Loopback test support rules:
730 * mac: only GE mode support
731 * serdes: all mac mode will support include GE/XGE/LGE/CGE
732 * phy: only support when phy device exist on board
734 if (stringset == ETH_SS_TEST) {
735 /* clear loopback bit flags at first */
736 handle->flags = (handle->flags & (~HCLGE_LOOPBACK_TEST_FLAGS));
737 if (hdev->ae_dev->dev_version >= HNAE3_DEVICE_VERSION_V2 ||
738 hdev->hw.mac.speed == HCLGE_MAC_SPEED_10M ||
739 hdev->hw.mac.speed == HCLGE_MAC_SPEED_100M ||
740 hdev->hw.mac.speed == HCLGE_MAC_SPEED_1G) {
742 handle->flags |= HNAE3_SUPPORT_APP_LOOPBACK;
746 handle->flags |= HNAE3_SUPPORT_SERDES_SERIAL_LOOPBACK;
748 handle->flags |= HNAE3_SUPPORT_SERDES_PARALLEL_LOOPBACK;
750 handle->flags |= HNAE3_SUPPORT_EXTERNAL_LOOPBACK;
752 if ((hdev->hw.mac.phydev && hdev->hw.mac.phydev->drv &&
753 hdev->hw.mac.phydev->drv->set_loopback) ||
754 hnae3_dev_phy_imp_supported(hdev)) {
756 handle->flags |= HNAE3_SUPPORT_PHY_LOOPBACK;
758 } else if (stringset == ETH_SS_STATS) {
759 count = hclge_comm_get_count(hdev, g_mac_stats_string,
760 ARRAY_SIZE(g_mac_stats_string)) +
761 hclge_comm_tqps_get_sset_count(handle);
767 static void hclge_get_strings(struct hnae3_handle *handle, u32 stringset,
770 struct hclge_vport *vport = hclge_get_vport(handle);
771 struct hclge_dev *hdev = vport->back;
772 u8 *p = (char *)data;
775 if (stringset == ETH_SS_STATS) {
776 size = ARRAY_SIZE(g_mac_stats_string);
777 p = hclge_comm_get_strings(hdev, stringset, g_mac_stats_string,
779 p = hclge_comm_tqps_get_strings(handle, p);
780 } else if (stringset == ETH_SS_TEST) {
781 if (handle->flags & HNAE3_SUPPORT_EXTERNAL_LOOPBACK) {
782 memcpy(p, hns3_nic_test_strs[HNAE3_LOOP_EXTERNAL],
784 p += ETH_GSTRING_LEN;
786 if (handle->flags & HNAE3_SUPPORT_APP_LOOPBACK) {
787 memcpy(p, hns3_nic_test_strs[HNAE3_LOOP_APP],
789 p += ETH_GSTRING_LEN;
791 if (handle->flags & HNAE3_SUPPORT_SERDES_SERIAL_LOOPBACK) {
792 memcpy(p, hns3_nic_test_strs[HNAE3_LOOP_SERIAL_SERDES],
794 p += ETH_GSTRING_LEN;
796 if (handle->flags & HNAE3_SUPPORT_SERDES_PARALLEL_LOOPBACK) {
798 hns3_nic_test_strs[HNAE3_LOOP_PARALLEL_SERDES],
800 p += ETH_GSTRING_LEN;
802 if (handle->flags & HNAE3_SUPPORT_PHY_LOOPBACK) {
803 memcpy(p, hns3_nic_test_strs[HNAE3_LOOP_PHY],
805 p += ETH_GSTRING_LEN;
810 static void hclge_get_stats(struct hnae3_handle *handle, u64 *data)
812 struct hclge_vport *vport = hclge_get_vport(handle);
813 struct hclge_dev *hdev = vport->back;
816 p = hclge_comm_get_stats(hdev, g_mac_stats_string,
817 ARRAY_SIZE(g_mac_stats_string), data);
818 p = hclge_comm_tqps_get_stats(handle, p);
821 static void hclge_get_mac_stat(struct hnae3_handle *handle,
822 struct hns3_mac_stats *mac_stats)
824 struct hclge_vport *vport = hclge_get_vport(handle);
825 struct hclge_dev *hdev = vport->back;
827 hclge_update_stats(handle, NULL);
829 mac_stats->tx_pause_cnt = hdev->mac_stats.mac_tx_mac_pause_num;
830 mac_stats->rx_pause_cnt = hdev->mac_stats.mac_rx_mac_pause_num;
833 static int hclge_parse_func_status(struct hclge_dev *hdev,
834 struct hclge_func_status_cmd *status)
836 #define HCLGE_MAC_ID_MASK 0xF
838 if (!(status->pf_state & HCLGE_PF_STATE_DONE))
841 /* Set the pf to main pf */
842 if (status->pf_state & HCLGE_PF_STATE_MAIN)
843 hdev->flag |= HCLGE_FLAG_MAIN;
845 hdev->flag &= ~HCLGE_FLAG_MAIN;
847 hdev->hw.mac.mac_id = status->mac_id & HCLGE_MAC_ID_MASK;
851 static int hclge_query_function_status(struct hclge_dev *hdev)
853 #define HCLGE_QUERY_MAX_CNT 5
855 struct hclge_func_status_cmd *req;
856 struct hclge_desc desc;
860 hclge_cmd_setup_basic_desc(&desc, HCLGE_OPC_QUERY_FUNC_STATUS, true);
861 req = (struct hclge_func_status_cmd *)desc.data;
864 ret = hclge_cmd_send(&hdev->hw, &desc, 1);
866 dev_err(&hdev->pdev->dev,
867 "query function status failed %d.\n", ret);
871 /* Check pf reset is done */
874 usleep_range(1000, 2000);
875 } while (timeout++ < HCLGE_QUERY_MAX_CNT);
877 return hclge_parse_func_status(hdev, req);
880 static int hclge_query_pf_resource(struct hclge_dev *hdev)
882 struct hclge_pf_res_cmd *req;
883 struct hclge_desc desc;
886 hclge_cmd_setup_basic_desc(&desc, HCLGE_OPC_QUERY_PF_RSRC, true);
887 ret = hclge_cmd_send(&hdev->hw, &desc, 1);
889 dev_err(&hdev->pdev->dev,
890 "query pf resource failed %d.\n", ret);
894 req = (struct hclge_pf_res_cmd *)desc.data;
895 hdev->num_tqps = le16_to_cpu(req->tqp_num) +
896 le16_to_cpu(req->ext_tqp_num);
897 hdev->pkt_buf_size = le16_to_cpu(req->buf_size) << HCLGE_BUF_UNIT_S;
899 if (req->tx_buf_size)
901 le16_to_cpu(req->tx_buf_size) << HCLGE_BUF_UNIT_S;
903 hdev->tx_buf_size = HCLGE_DEFAULT_TX_BUF;
905 hdev->tx_buf_size = roundup(hdev->tx_buf_size, HCLGE_BUF_SIZE_UNIT);
907 if (req->dv_buf_size)
909 le16_to_cpu(req->dv_buf_size) << HCLGE_BUF_UNIT_S;
911 hdev->dv_buf_size = HCLGE_DEFAULT_DV;
913 hdev->dv_buf_size = roundup(hdev->dv_buf_size, HCLGE_BUF_SIZE_UNIT);
915 hdev->num_nic_msi = le16_to_cpu(req->msixcap_localid_number_nic);
916 if (hdev->num_nic_msi < HNAE3_MIN_VECTOR_NUM) {
917 dev_err(&hdev->pdev->dev,
918 "only %u msi resources available, not enough for pf(min:2).\n",
923 if (hnae3_dev_roce_supported(hdev)) {
925 le16_to_cpu(req->pf_intr_vector_number_roce);
927 /* PF should have NIC vectors and Roce vectors,
928 * NIC vectors are queued before Roce vectors.
930 hdev->num_msi = hdev->num_nic_msi + hdev->num_roce_msi;
932 hdev->num_msi = hdev->num_nic_msi;
938 static int hclge_parse_speed(u8 speed_cmd, u32 *speed)
941 case HCLGE_FW_MAC_SPEED_10M:
942 *speed = HCLGE_MAC_SPEED_10M;
944 case HCLGE_FW_MAC_SPEED_100M:
945 *speed = HCLGE_MAC_SPEED_100M;
947 case HCLGE_FW_MAC_SPEED_1G:
948 *speed = HCLGE_MAC_SPEED_1G;
950 case HCLGE_FW_MAC_SPEED_10G:
951 *speed = HCLGE_MAC_SPEED_10G;
953 case HCLGE_FW_MAC_SPEED_25G:
954 *speed = HCLGE_MAC_SPEED_25G;
956 case HCLGE_FW_MAC_SPEED_40G:
957 *speed = HCLGE_MAC_SPEED_40G;
959 case HCLGE_FW_MAC_SPEED_50G:
960 *speed = HCLGE_MAC_SPEED_50G;
962 case HCLGE_FW_MAC_SPEED_100G:
963 *speed = HCLGE_MAC_SPEED_100G;
965 case HCLGE_FW_MAC_SPEED_200G:
966 *speed = HCLGE_MAC_SPEED_200G;
975 static const struct hclge_speed_bit_map speed_bit_map[] = {
976 {HCLGE_MAC_SPEED_10M, HCLGE_SUPPORT_10M_BIT},
977 {HCLGE_MAC_SPEED_100M, HCLGE_SUPPORT_100M_BIT},
978 {HCLGE_MAC_SPEED_1G, HCLGE_SUPPORT_1G_BIT},
979 {HCLGE_MAC_SPEED_10G, HCLGE_SUPPORT_10G_BIT},
980 {HCLGE_MAC_SPEED_25G, HCLGE_SUPPORT_25G_BIT},
981 {HCLGE_MAC_SPEED_40G, HCLGE_SUPPORT_40G_BIT},
982 {HCLGE_MAC_SPEED_50G, HCLGE_SUPPORT_50G_BIT},
983 {HCLGE_MAC_SPEED_100G, HCLGE_SUPPORT_100G_BIT},
984 {HCLGE_MAC_SPEED_200G, HCLGE_SUPPORT_200G_BIT},
987 static int hclge_get_speed_bit(u32 speed, u32 *speed_bit)
991 for (i = 0; i < ARRAY_SIZE(speed_bit_map); i++) {
992 if (speed == speed_bit_map[i].speed) {
993 *speed_bit = speed_bit_map[i].speed_bit;
1001 static int hclge_check_port_speed(struct hnae3_handle *handle, u32 speed)
1003 struct hclge_vport *vport = hclge_get_vport(handle);
1004 struct hclge_dev *hdev = vport->back;
1005 u32 speed_ability = hdev->hw.mac.speed_ability;
1009 ret = hclge_get_speed_bit(speed, &speed_bit);
1013 if (speed_bit & speed_ability)
1019 static void hclge_update_fec_support(struct hclge_mac *mac)
1021 linkmode_clear_bit(ETHTOOL_LINK_MODE_FEC_BASER_BIT, mac->supported);
1022 linkmode_clear_bit(ETHTOOL_LINK_MODE_FEC_RS_BIT, mac->supported);
1023 linkmode_clear_bit(ETHTOOL_LINK_MODE_FEC_LLRS_BIT, mac->supported);
1024 linkmode_clear_bit(ETHTOOL_LINK_MODE_FEC_NONE_BIT, mac->supported);
1026 if (mac->fec_ability & BIT(HNAE3_FEC_BASER))
1027 linkmode_set_bit(ETHTOOL_LINK_MODE_FEC_BASER_BIT,
1029 if (mac->fec_ability & BIT(HNAE3_FEC_RS))
1030 linkmode_set_bit(ETHTOOL_LINK_MODE_FEC_RS_BIT,
1032 if (mac->fec_ability & BIT(HNAE3_FEC_LLRS))
1033 linkmode_set_bit(ETHTOOL_LINK_MODE_FEC_LLRS_BIT,
1035 if (mac->fec_ability & BIT(HNAE3_FEC_NONE))
1036 linkmode_set_bit(ETHTOOL_LINK_MODE_FEC_NONE_BIT,
1040 static void hclge_convert_setting_sr(u16 speed_ability,
1041 unsigned long *link_mode)
1043 if (speed_ability & HCLGE_SUPPORT_10G_BIT)
1044 linkmode_set_bit(ETHTOOL_LINK_MODE_10000baseSR_Full_BIT,
1046 if (speed_ability & HCLGE_SUPPORT_25G_BIT)
1047 linkmode_set_bit(ETHTOOL_LINK_MODE_25000baseSR_Full_BIT,
1049 if (speed_ability & HCLGE_SUPPORT_40G_BIT)
1050 linkmode_set_bit(ETHTOOL_LINK_MODE_40000baseSR4_Full_BIT,
1052 if (speed_ability & HCLGE_SUPPORT_50G_BIT)
1053 linkmode_set_bit(ETHTOOL_LINK_MODE_50000baseSR2_Full_BIT,
1055 if (speed_ability & HCLGE_SUPPORT_100G_BIT)
1056 linkmode_set_bit(ETHTOOL_LINK_MODE_100000baseSR4_Full_BIT,
1058 if (speed_ability & HCLGE_SUPPORT_200G_BIT)
1059 linkmode_set_bit(ETHTOOL_LINK_MODE_200000baseSR4_Full_BIT,
1063 static void hclge_convert_setting_lr(u16 speed_ability,
1064 unsigned long *link_mode)
1066 if (speed_ability & HCLGE_SUPPORT_10G_BIT)
1067 linkmode_set_bit(ETHTOOL_LINK_MODE_10000baseLR_Full_BIT,
1069 if (speed_ability & HCLGE_SUPPORT_25G_BIT)
1070 linkmode_set_bit(ETHTOOL_LINK_MODE_25000baseSR_Full_BIT,
1072 if (speed_ability & HCLGE_SUPPORT_50G_BIT)
1073 linkmode_set_bit(ETHTOOL_LINK_MODE_50000baseLR_ER_FR_Full_BIT,
1075 if (speed_ability & HCLGE_SUPPORT_40G_BIT)
1076 linkmode_set_bit(ETHTOOL_LINK_MODE_40000baseLR4_Full_BIT,
1078 if (speed_ability & HCLGE_SUPPORT_100G_BIT)
1079 linkmode_set_bit(ETHTOOL_LINK_MODE_100000baseLR4_ER4_Full_BIT,
1081 if (speed_ability & HCLGE_SUPPORT_200G_BIT)
1083 ETHTOOL_LINK_MODE_200000baseLR4_ER4_FR4_Full_BIT,
1087 static void hclge_convert_setting_cr(u16 speed_ability,
1088 unsigned long *link_mode)
1090 if (speed_ability & HCLGE_SUPPORT_10G_BIT)
1091 linkmode_set_bit(ETHTOOL_LINK_MODE_10000baseCR_Full_BIT,
1093 if (speed_ability & HCLGE_SUPPORT_25G_BIT)
1094 linkmode_set_bit(ETHTOOL_LINK_MODE_25000baseCR_Full_BIT,
1096 if (speed_ability & HCLGE_SUPPORT_40G_BIT)
1097 linkmode_set_bit(ETHTOOL_LINK_MODE_40000baseCR4_Full_BIT,
1099 if (speed_ability & HCLGE_SUPPORT_50G_BIT)
1100 linkmode_set_bit(ETHTOOL_LINK_MODE_50000baseCR2_Full_BIT,
1102 if (speed_ability & HCLGE_SUPPORT_100G_BIT)
1103 linkmode_set_bit(ETHTOOL_LINK_MODE_100000baseCR4_Full_BIT,
1105 if (speed_ability & HCLGE_SUPPORT_200G_BIT)
1106 linkmode_set_bit(ETHTOOL_LINK_MODE_200000baseCR4_Full_BIT,
1110 static void hclge_convert_setting_kr(u16 speed_ability,
1111 unsigned long *link_mode)
1113 if (speed_ability & HCLGE_SUPPORT_1G_BIT)
1114 linkmode_set_bit(ETHTOOL_LINK_MODE_1000baseKX_Full_BIT,
1116 if (speed_ability & HCLGE_SUPPORT_10G_BIT)
1117 linkmode_set_bit(ETHTOOL_LINK_MODE_10000baseKR_Full_BIT,
1119 if (speed_ability & HCLGE_SUPPORT_25G_BIT)
1120 linkmode_set_bit(ETHTOOL_LINK_MODE_25000baseKR_Full_BIT,
1122 if (speed_ability & HCLGE_SUPPORT_40G_BIT)
1123 linkmode_set_bit(ETHTOOL_LINK_MODE_40000baseKR4_Full_BIT,
1125 if (speed_ability & HCLGE_SUPPORT_50G_BIT)
1126 linkmode_set_bit(ETHTOOL_LINK_MODE_50000baseKR2_Full_BIT,
1128 if (speed_ability & HCLGE_SUPPORT_100G_BIT)
1129 linkmode_set_bit(ETHTOOL_LINK_MODE_100000baseKR4_Full_BIT,
1131 if (speed_ability & HCLGE_SUPPORT_200G_BIT)
1132 linkmode_set_bit(ETHTOOL_LINK_MODE_200000baseKR4_Full_BIT,
1136 static void hclge_convert_setting_fec(struct hclge_mac *mac)
1138 /* If firmware has reported fec_ability, don't need to convert by speed */
1139 if (mac->fec_ability)
1142 switch (mac->speed) {
1143 case HCLGE_MAC_SPEED_10G:
1144 case HCLGE_MAC_SPEED_40G:
1145 mac->fec_ability = BIT(HNAE3_FEC_BASER) | BIT(HNAE3_FEC_AUTO) |
1146 BIT(HNAE3_FEC_NONE);
1148 case HCLGE_MAC_SPEED_25G:
1149 case HCLGE_MAC_SPEED_50G:
1150 mac->fec_ability = BIT(HNAE3_FEC_BASER) | BIT(HNAE3_FEC_RS) |
1151 BIT(HNAE3_FEC_AUTO) | BIT(HNAE3_FEC_NONE);
1153 case HCLGE_MAC_SPEED_100G:
1154 mac->fec_ability = BIT(HNAE3_FEC_RS) | BIT(HNAE3_FEC_AUTO) |
1155 BIT(HNAE3_FEC_NONE);
1157 case HCLGE_MAC_SPEED_200G:
1158 mac->fec_ability = BIT(HNAE3_FEC_RS) | BIT(HNAE3_FEC_AUTO) |
1159 BIT(HNAE3_FEC_LLRS);
1162 mac->fec_ability = 0;
1167 hclge_update_fec_support(mac);
1170 static void hclge_parse_fiber_link_mode(struct hclge_dev *hdev,
1173 struct hclge_mac *mac = &hdev->hw.mac;
1175 if (speed_ability & HCLGE_SUPPORT_1G_BIT)
1176 linkmode_set_bit(ETHTOOL_LINK_MODE_1000baseX_Full_BIT,
1179 hclge_convert_setting_sr(speed_ability, mac->supported);
1180 hclge_convert_setting_lr(speed_ability, mac->supported);
1181 hclge_convert_setting_cr(speed_ability, mac->supported);
1182 if (hnae3_dev_fec_supported(hdev))
1183 hclge_convert_setting_fec(mac);
1185 if (hnae3_dev_pause_supported(hdev))
1186 linkmode_set_bit(ETHTOOL_LINK_MODE_Pause_BIT, mac->supported);
1188 linkmode_set_bit(ETHTOOL_LINK_MODE_FIBRE_BIT, mac->supported);
1189 linkmode_set_bit(ETHTOOL_LINK_MODE_FEC_NONE_BIT, mac->supported);
1192 static void hclge_parse_backplane_link_mode(struct hclge_dev *hdev,
1195 struct hclge_mac *mac = &hdev->hw.mac;
1197 hclge_convert_setting_kr(speed_ability, mac->supported);
1198 if (hnae3_dev_fec_supported(hdev))
1199 hclge_convert_setting_fec(mac);
1201 if (hnae3_dev_pause_supported(hdev))
1202 linkmode_set_bit(ETHTOOL_LINK_MODE_Pause_BIT, mac->supported);
1204 linkmode_set_bit(ETHTOOL_LINK_MODE_Backplane_BIT, mac->supported);
1205 linkmode_set_bit(ETHTOOL_LINK_MODE_FEC_NONE_BIT, mac->supported);
1208 static void hclge_parse_copper_link_mode(struct hclge_dev *hdev,
1211 unsigned long *supported = hdev->hw.mac.supported;
1213 /* default to support all speed for GE port */
1215 speed_ability = HCLGE_SUPPORT_GE;
1217 if (speed_ability & HCLGE_SUPPORT_1G_BIT)
1218 linkmode_set_bit(ETHTOOL_LINK_MODE_1000baseT_Full_BIT,
1221 if (speed_ability & HCLGE_SUPPORT_100M_BIT) {
1222 linkmode_set_bit(ETHTOOL_LINK_MODE_100baseT_Full_BIT,
1224 linkmode_set_bit(ETHTOOL_LINK_MODE_100baseT_Half_BIT,
1228 if (speed_ability & HCLGE_SUPPORT_10M_BIT) {
1229 linkmode_set_bit(ETHTOOL_LINK_MODE_10baseT_Full_BIT, supported);
1230 linkmode_set_bit(ETHTOOL_LINK_MODE_10baseT_Half_BIT, supported);
1233 if (hnae3_dev_pause_supported(hdev)) {
1234 linkmode_set_bit(ETHTOOL_LINK_MODE_Pause_BIT, supported);
1235 linkmode_set_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT, supported);
1238 linkmode_set_bit(ETHTOOL_LINK_MODE_Autoneg_BIT, supported);
1239 linkmode_set_bit(ETHTOOL_LINK_MODE_TP_BIT, supported);
1242 static void hclge_parse_link_mode(struct hclge_dev *hdev, u16 speed_ability)
1244 u8 media_type = hdev->hw.mac.media_type;
1246 if (media_type == HNAE3_MEDIA_TYPE_FIBER)
1247 hclge_parse_fiber_link_mode(hdev, speed_ability);
1248 else if (media_type == HNAE3_MEDIA_TYPE_COPPER)
1249 hclge_parse_copper_link_mode(hdev, speed_ability);
1250 else if (media_type == HNAE3_MEDIA_TYPE_BACKPLANE)
1251 hclge_parse_backplane_link_mode(hdev, speed_ability);
1254 static u32 hclge_get_max_speed(u16 speed_ability)
1256 if (speed_ability & HCLGE_SUPPORT_200G_BIT)
1257 return HCLGE_MAC_SPEED_200G;
1259 if (speed_ability & HCLGE_SUPPORT_100G_BIT)
1260 return HCLGE_MAC_SPEED_100G;
1262 if (speed_ability & HCLGE_SUPPORT_50G_BIT)
1263 return HCLGE_MAC_SPEED_50G;
1265 if (speed_ability & HCLGE_SUPPORT_40G_BIT)
1266 return HCLGE_MAC_SPEED_40G;
1268 if (speed_ability & HCLGE_SUPPORT_25G_BIT)
1269 return HCLGE_MAC_SPEED_25G;
1271 if (speed_ability & HCLGE_SUPPORT_10G_BIT)
1272 return HCLGE_MAC_SPEED_10G;
1274 if (speed_ability & HCLGE_SUPPORT_1G_BIT)
1275 return HCLGE_MAC_SPEED_1G;
1277 if (speed_ability & HCLGE_SUPPORT_100M_BIT)
1278 return HCLGE_MAC_SPEED_100M;
1280 if (speed_ability & HCLGE_SUPPORT_10M_BIT)
1281 return HCLGE_MAC_SPEED_10M;
1283 return HCLGE_MAC_SPEED_1G;
1286 static void hclge_parse_cfg(struct hclge_cfg *cfg, struct hclge_desc *desc)
1288 #define HCLGE_TX_SPARE_SIZE_UNIT 4096
1289 #define SPEED_ABILITY_EXT_SHIFT 8
1291 struct hclge_cfg_param_cmd *req;
1292 u64 mac_addr_tmp_high;
1293 u16 speed_ability_ext;
1297 req = (struct hclge_cfg_param_cmd *)desc[0].data;
1299 /* get the configuration */
1300 cfg->tc_num = hnae3_get_field(__le32_to_cpu(req->param[0]),
1301 HCLGE_CFG_TC_NUM_M, HCLGE_CFG_TC_NUM_S);
1302 cfg->tqp_desc_num = hnae3_get_field(__le32_to_cpu(req->param[0]),
1303 HCLGE_CFG_TQP_DESC_N_M,
1304 HCLGE_CFG_TQP_DESC_N_S);
1306 cfg->phy_addr = hnae3_get_field(__le32_to_cpu(req->param[1]),
1307 HCLGE_CFG_PHY_ADDR_M,
1308 HCLGE_CFG_PHY_ADDR_S);
1309 cfg->media_type = hnae3_get_field(__le32_to_cpu(req->param[1]),
1310 HCLGE_CFG_MEDIA_TP_M,
1311 HCLGE_CFG_MEDIA_TP_S);
1312 cfg->rx_buf_len = hnae3_get_field(__le32_to_cpu(req->param[1]),
1313 HCLGE_CFG_RX_BUF_LEN_M,
1314 HCLGE_CFG_RX_BUF_LEN_S);
1315 /* get mac_address */
1316 mac_addr_tmp = __le32_to_cpu(req->param[2]);
1317 mac_addr_tmp_high = hnae3_get_field(__le32_to_cpu(req->param[3]),
1318 HCLGE_CFG_MAC_ADDR_H_M,
1319 HCLGE_CFG_MAC_ADDR_H_S);
1321 mac_addr_tmp |= (mac_addr_tmp_high << 31) << 1;
1323 cfg->default_speed = hnae3_get_field(__le32_to_cpu(req->param[3]),
1324 HCLGE_CFG_DEFAULT_SPEED_M,
1325 HCLGE_CFG_DEFAULT_SPEED_S);
1326 cfg->vf_rss_size_max = hnae3_get_field(__le32_to_cpu(req->param[3]),
1327 HCLGE_CFG_RSS_SIZE_M,
1328 HCLGE_CFG_RSS_SIZE_S);
1330 for (i = 0; i < ETH_ALEN; i++)
1331 cfg->mac_addr[i] = (mac_addr_tmp >> (8 * i)) & 0xff;
1333 req = (struct hclge_cfg_param_cmd *)desc[1].data;
1334 cfg->numa_node_map = __le32_to_cpu(req->param[0]);
1336 cfg->speed_ability = hnae3_get_field(__le32_to_cpu(req->param[1]),
1337 HCLGE_CFG_SPEED_ABILITY_M,
1338 HCLGE_CFG_SPEED_ABILITY_S);
1339 speed_ability_ext = hnae3_get_field(__le32_to_cpu(req->param[1]),
1340 HCLGE_CFG_SPEED_ABILITY_EXT_M,
1341 HCLGE_CFG_SPEED_ABILITY_EXT_S);
1342 cfg->speed_ability |= speed_ability_ext << SPEED_ABILITY_EXT_SHIFT;
1344 cfg->vlan_fliter_cap = hnae3_get_field(__le32_to_cpu(req->param[1]),
1345 HCLGE_CFG_VLAN_FLTR_CAP_M,
1346 HCLGE_CFG_VLAN_FLTR_CAP_S);
1348 cfg->umv_space = hnae3_get_field(__le32_to_cpu(req->param[1]),
1349 HCLGE_CFG_UMV_TBL_SPACE_M,
1350 HCLGE_CFG_UMV_TBL_SPACE_S);
1352 cfg->pf_rss_size_max = hnae3_get_field(__le32_to_cpu(req->param[2]),
1353 HCLGE_CFG_PF_RSS_SIZE_M,
1354 HCLGE_CFG_PF_RSS_SIZE_S);
1356 /* HCLGE_CFG_PF_RSS_SIZE_M is the PF max rss size, which is a
1357 * power of 2, instead of reading out directly. This would
1358 * be more flexible for future changes and expansions.
1359 * When VF max rss size field is HCLGE_CFG_RSS_SIZE_S,
1360 * it does not make sense if PF's field is 0. In this case, PF and VF
1361 * has the same max rss size filed: HCLGE_CFG_RSS_SIZE_S.
1363 cfg->pf_rss_size_max = cfg->pf_rss_size_max ?
1364 1U << cfg->pf_rss_size_max :
1365 cfg->vf_rss_size_max;
1367 /* The unit of the tx spare buffer size queried from configuration
1368 * file is HCLGE_TX_SPARE_SIZE_UNIT(4096) bytes, so a conversion is
1371 cfg->tx_spare_buf_size = hnae3_get_field(__le32_to_cpu(req->param[2]),
1372 HCLGE_CFG_TX_SPARE_BUF_SIZE_M,
1373 HCLGE_CFG_TX_SPARE_BUF_SIZE_S);
1374 cfg->tx_spare_buf_size *= HCLGE_TX_SPARE_SIZE_UNIT;
1377 /* hclge_get_cfg: query the static parameter from flash
1378 * @hdev: pointer to struct hclge_dev
1379 * @hcfg: the config structure to be getted
1381 static int hclge_get_cfg(struct hclge_dev *hdev, struct hclge_cfg *hcfg)
1383 struct hclge_desc desc[HCLGE_PF_CFG_DESC_NUM];
1384 struct hclge_cfg_param_cmd *req;
1388 for (i = 0; i < HCLGE_PF_CFG_DESC_NUM; i++) {
1391 req = (struct hclge_cfg_param_cmd *)desc[i].data;
1392 hclge_cmd_setup_basic_desc(&desc[i], HCLGE_OPC_GET_CFG_PARAM,
1394 hnae3_set_field(offset, HCLGE_CFG_OFFSET_M,
1395 HCLGE_CFG_OFFSET_S, i * HCLGE_CFG_RD_LEN_BYTES);
1396 /* Len should be united by 4 bytes when send to hardware */
1397 hnae3_set_field(offset, HCLGE_CFG_RD_LEN_M, HCLGE_CFG_RD_LEN_S,
1398 HCLGE_CFG_RD_LEN_BYTES / HCLGE_CFG_RD_LEN_UNIT);
1399 req->offset = cpu_to_le32(offset);
1402 ret = hclge_cmd_send(&hdev->hw, desc, HCLGE_PF_CFG_DESC_NUM);
1404 dev_err(&hdev->pdev->dev, "get config failed %d.\n", ret);
1408 hclge_parse_cfg(hcfg, desc);
1413 static void hclge_set_default_dev_specs(struct hclge_dev *hdev)
1415 #define HCLGE_MAX_NON_TSO_BD_NUM 8U
1417 struct hnae3_ae_dev *ae_dev = pci_get_drvdata(hdev->pdev);
1419 ae_dev->dev_specs.max_non_tso_bd_num = HCLGE_MAX_NON_TSO_BD_NUM;
1420 ae_dev->dev_specs.rss_ind_tbl_size = HCLGE_RSS_IND_TBL_SIZE;
1421 ae_dev->dev_specs.rss_key_size = HCLGE_COMM_RSS_KEY_SIZE;
1422 ae_dev->dev_specs.max_tm_rate = HCLGE_ETHER_MAX_RATE;
1423 ae_dev->dev_specs.max_int_gl = HCLGE_DEF_MAX_INT_GL;
1424 ae_dev->dev_specs.max_frm_size = HCLGE_MAC_MAX_FRAME;
1425 ae_dev->dev_specs.max_qset_num = HCLGE_MAX_QSET_NUM;
1426 ae_dev->dev_specs.umv_size = HCLGE_DEFAULT_UMV_SPACE_PER_PF;
1429 static void hclge_parse_dev_specs(struct hclge_dev *hdev,
1430 struct hclge_desc *desc)
1432 struct hnae3_ae_dev *ae_dev = pci_get_drvdata(hdev->pdev);
1433 struct hclge_dev_specs_0_cmd *req0;
1434 struct hclge_dev_specs_1_cmd *req1;
1436 req0 = (struct hclge_dev_specs_0_cmd *)desc[0].data;
1437 req1 = (struct hclge_dev_specs_1_cmd *)desc[1].data;
1439 ae_dev->dev_specs.max_non_tso_bd_num = req0->max_non_tso_bd_num;
1440 ae_dev->dev_specs.rss_ind_tbl_size =
1441 le16_to_cpu(req0->rss_ind_tbl_size);
1442 ae_dev->dev_specs.int_ql_max = le16_to_cpu(req0->int_ql_max);
1443 ae_dev->dev_specs.rss_key_size = le16_to_cpu(req0->rss_key_size);
1444 ae_dev->dev_specs.max_tm_rate = le32_to_cpu(req0->max_tm_rate);
1445 ae_dev->dev_specs.max_qset_num = le16_to_cpu(req1->max_qset_num);
1446 ae_dev->dev_specs.max_int_gl = le16_to_cpu(req1->max_int_gl);
1447 ae_dev->dev_specs.max_frm_size = le16_to_cpu(req1->max_frm_size);
1448 ae_dev->dev_specs.umv_size = le16_to_cpu(req1->umv_size);
1449 ae_dev->dev_specs.mc_mac_size = le16_to_cpu(req1->mc_mac_size);
1452 static void hclge_check_dev_specs(struct hclge_dev *hdev)
1454 struct hnae3_dev_specs *dev_specs = &hdev->ae_dev->dev_specs;
1456 if (!dev_specs->max_non_tso_bd_num)
1457 dev_specs->max_non_tso_bd_num = HCLGE_MAX_NON_TSO_BD_NUM;
1458 if (!dev_specs->rss_ind_tbl_size)
1459 dev_specs->rss_ind_tbl_size = HCLGE_RSS_IND_TBL_SIZE;
1460 if (!dev_specs->rss_key_size)
1461 dev_specs->rss_key_size = HCLGE_COMM_RSS_KEY_SIZE;
1462 if (!dev_specs->max_tm_rate)
1463 dev_specs->max_tm_rate = HCLGE_ETHER_MAX_RATE;
1464 if (!dev_specs->max_qset_num)
1465 dev_specs->max_qset_num = HCLGE_MAX_QSET_NUM;
1466 if (!dev_specs->max_int_gl)
1467 dev_specs->max_int_gl = HCLGE_DEF_MAX_INT_GL;
1468 if (!dev_specs->max_frm_size)
1469 dev_specs->max_frm_size = HCLGE_MAC_MAX_FRAME;
1470 if (!dev_specs->umv_size)
1471 dev_specs->umv_size = HCLGE_DEFAULT_UMV_SPACE_PER_PF;
1474 static int hclge_query_mac_stats_num(struct hclge_dev *hdev)
1479 ret = hclge_mac_query_reg_num(hdev, ®_num);
1480 if (ret && ret != -EOPNOTSUPP)
1483 hdev->ae_dev->dev_specs.mac_stats_num = reg_num;
1487 static int hclge_query_dev_specs(struct hclge_dev *hdev)
1489 struct hclge_desc desc[HCLGE_QUERY_DEV_SPECS_BD_NUM];
1493 ret = hclge_query_mac_stats_num(hdev);
1497 /* set default specifications as devices lower than version V3 do not
1498 * support querying specifications from firmware.
1500 if (hdev->ae_dev->dev_version < HNAE3_DEVICE_VERSION_V3) {
1501 hclge_set_default_dev_specs(hdev);
1505 for (i = 0; i < HCLGE_QUERY_DEV_SPECS_BD_NUM - 1; i++) {
1506 hclge_cmd_setup_basic_desc(&desc[i], HCLGE_OPC_QUERY_DEV_SPECS,
1508 desc[i].flag |= cpu_to_le16(HCLGE_COMM_CMD_FLAG_NEXT);
1510 hclge_cmd_setup_basic_desc(&desc[i], HCLGE_OPC_QUERY_DEV_SPECS, true);
1512 ret = hclge_cmd_send(&hdev->hw, desc, HCLGE_QUERY_DEV_SPECS_BD_NUM);
1516 hclge_parse_dev_specs(hdev, desc);
1517 hclge_check_dev_specs(hdev);
1522 static int hclge_get_cap(struct hclge_dev *hdev)
1526 ret = hclge_query_function_status(hdev);
1528 dev_err(&hdev->pdev->dev,
1529 "query function status error %d.\n", ret);
1533 /* get pf resource */
1534 return hclge_query_pf_resource(hdev);
1537 static void hclge_init_kdump_kernel_config(struct hclge_dev *hdev)
1539 #define HCLGE_MIN_TX_DESC 64
1540 #define HCLGE_MIN_RX_DESC 64
1542 if (!is_kdump_kernel())
1545 dev_info(&hdev->pdev->dev,
1546 "Running kdump kernel. Using minimal resources\n");
1548 /* minimal queue pairs equals to the number of vports */
1549 hdev->num_tqps = hdev->num_req_vfs + 1;
1550 hdev->num_tx_desc = HCLGE_MIN_TX_DESC;
1551 hdev->num_rx_desc = HCLGE_MIN_RX_DESC;
1554 static void hclge_init_tc_config(struct hclge_dev *hdev)
1558 if (hdev->tc_max > HNAE3_MAX_TC ||
1560 dev_warn(&hdev->pdev->dev, "TC num = %u.\n",
1565 /* Dev does not support DCB */
1566 if (!hnae3_dev_dcb_supported(hdev)) {
1570 hdev->pfc_max = hdev->tc_max;
1573 hdev->tm_info.num_tc = 1;
1575 /* Currently not support uncontiuous tc */
1576 for (i = 0; i < hdev->tm_info.num_tc; i++)
1577 hnae3_set_bit(hdev->hw_tc_map, i, 1);
1579 hdev->tx_sch_mode = HCLGE_FLAG_TC_BASE_SCH_MODE;
1582 static int hclge_configure(struct hclge_dev *hdev)
1584 struct hnae3_ae_dev *ae_dev = pci_get_drvdata(hdev->pdev);
1585 struct hclge_cfg cfg;
1588 ret = hclge_get_cfg(hdev, &cfg);
1592 hdev->base_tqp_pid = 0;
1593 hdev->vf_rss_size_max = cfg.vf_rss_size_max;
1594 hdev->pf_rss_size_max = cfg.pf_rss_size_max;
1595 hdev->rx_buf_len = cfg.rx_buf_len;
1596 ether_addr_copy(hdev->hw.mac.mac_addr, cfg.mac_addr);
1597 hdev->hw.mac.media_type = cfg.media_type;
1598 hdev->hw.mac.phy_addr = cfg.phy_addr;
1599 hdev->num_tx_desc = cfg.tqp_desc_num;
1600 hdev->num_rx_desc = cfg.tqp_desc_num;
1601 hdev->tm_info.num_pg = 1;
1602 hdev->tc_max = cfg.tc_num;
1603 hdev->tm_info.hw_pfc_map = 0;
1605 hdev->wanted_umv_size = cfg.umv_space;
1607 hdev->wanted_umv_size = hdev->ae_dev->dev_specs.umv_size;
1608 hdev->tx_spare_buf_size = cfg.tx_spare_buf_size;
1609 hdev->gro_en = true;
1610 if (cfg.vlan_fliter_cap == HCLGE_VLAN_FLTR_CAN_MDF)
1611 set_bit(HNAE3_DEV_SUPPORT_VLAN_FLTR_MDF_B, ae_dev->caps);
1613 if (hnae3_ae_dev_fd_supported(hdev->ae_dev)) {
1615 hdev->fd_active_type = HCLGE_FD_RULE_NONE;
1618 ret = hclge_parse_speed(cfg.default_speed, &hdev->hw.mac.speed);
1620 dev_err(&hdev->pdev->dev, "failed to parse speed %u, ret = %d\n",
1621 cfg.default_speed, ret);
1625 hclge_parse_link_mode(hdev, cfg.speed_ability);
1627 hdev->hw.mac.max_speed = hclge_get_max_speed(cfg.speed_ability);
1629 hclge_init_tc_config(hdev);
1630 hclge_init_kdump_kernel_config(hdev);
1635 static int hclge_config_tso(struct hclge_dev *hdev, u16 tso_mss_min,
1638 struct hclge_cfg_tso_status_cmd *req;
1639 struct hclge_desc desc;
1641 hclge_cmd_setup_basic_desc(&desc, HCLGE_OPC_TSO_GENERIC_CONFIG, false);
1643 req = (struct hclge_cfg_tso_status_cmd *)desc.data;
1644 req->tso_mss_min = cpu_to_le16(tso_mss_min);
1645 req->tso_mss_max = cpu_to_le16(tso_mss_max);
1647 return hclge_cmd_send(&hdev->hw, &desc, 1);
1650 static int hclge_config_gro(struct hclge_dev *hdev)
1652 struct hclge_cfg_gro_status_cmd *req;
1653 struct hclge_desc desc;
1656 if (!hnae3_ae_dev_gro_supported(hdev->ae_dev))
1659 hclge_cmd_setup_basic_desc(&desc, HCLGE_OPC_GRO_GENERIC_CONFIG, false);
1660 req = (struct hclge_cfg_gro_status_cmd *)desc.data;
1662 req->gro_en = hdev->gro_en ? 1 : 0;
1664 ret = hclge_cmd_send(&hdev->hw, &desc, 1);
1666 dev_err(&hdev->pdev->dev,
1667 "GRO hardware config cmd failed, ret = %d\n", ret);
1672 static int hclge_alloc_tqps(struct hclge_dev *hdev)
1674 struct hnae3_ae_dev *ae_dev = pci_get_drvdata(hdev->pdev);
1675 struct hclge_comm_tqp *tqp;
1678 hdev->htqp = devm_kcalloc(&hdev->pdev->dev, hdev->num_tqps,
1679 sizeof(struct hclge_comm_tqp), GFP_KERNEL);
1685 for (i = 0; i < hdev->num_tqps; i++) {
1686 tqp->dev = &hdev->pdev->dev;
1689 tqp->q.ae_algo = &ae_algo;
1690 tqp->q.buf_size = hdev->rx_buf_len;
1691 tqp->q.tx_desc_num = hdev->num_tx_desc;
1692 tqp->q.rx_desc_num = hdev->num_rx_desc;
1694 /* need an extended offset to configure queues >=
1695 * HCLGE_TQP_MAX_SIZE_DEV_V2
1697 if (i < HCLGE_TQP_MAX_SIZE_DEV_V2)
1698 tqp->q.io_base = hdev->hw.hw.io_base +
1699 HCLGE_TQP_REG_OFFSET +
1700 i * HCLGE_TQP_REG_SIZE;
1702 tqp->q.io_base = hdev->hw.hw.io_base +
1703 HCLGE_TQP_REG_OFFSET +
1704 HCLGE_TQP_EXT_REG_OFFSET +
1705 (i - HCLGE_TQP_MAX_SIZE_DEV_V2) *
1708 /* when device supports tx push and has device memory,
1709 * the queue can execute push mode or doorbell mode on
1712 if (test_bit(HNAE3_DEV_SUPPORT_TX_PUSH_B, ae_dev->caps))
1713 tqp->q.mem_base = hdev->hw.hw.mem_base +
1714 HCLGE_TQP_MEM_OFFSET(hdev, i);
1722 static int hclge_map_tqps_to_func(struct hclge_dev *hdev, u16 func_id,
1723 u16 tqp_pid, u16 tqp_vid, bool is_pf)
1725 struct hclge_tqp_map_cmd *req;
1726 struct hclge_desc desc;
1729 hclge_cmd_setup_basic_desc(&desc, HCLGE_OPC_SET_TQP_MAP, false);
1731 req = (struct hclge_tqp_map_cmd *)desc.data;
1732 req->tqp_id = cpu_to_le16(tqp_pid);
1733 req->tqp_vf = func_id;
1734 req->tqp_flag = 1U << HCLGE_TQP_MAP_EN_B;
1736 req->tqp_flag |= 1U << HCLGE_TQP_MAP_TYPE_B;
1737 req->tqp_vid = cpu_to_le16(tqp_vid);
1739 ret = hclge_cmd_send(&hdev->hw, &desc, 1);
1741 dev_err(&hdev->pdev->dev, "TQP map failed %d.\n", ret);
1746 static int hclge_assign_tqp(struct hclge_vport *vport, u16 num_tqps)
1748 struct hnae3_knic_private_info *kinfo = &vport->nic.kinfo;
1749 struct hclge_dev *hdev = vport->back;
1752 for (i = 0, alloced = 0; i < hdev->num_tqps &&
1753 alloced < num_tqps; i++) {
1754 if (!hdev->htqp[i].alloced) {
1755 hdev->htqp[i].q.handle = &vport->nic;
1756 hdev->htqp[i].q.tqp_index = alloced;
1757 hdev->htqp[i].q.tx_desc_num = kinfo->num_tx_desc;
1758 hdev->htqp[i].q.rx_desc_num = kinfo->num_rx_desc;
1759 kinfo->tqp[alloced] = &hdev->htqp[i].q;
1760 hdev->htqp[i].alloced = true;
1764 vport->alloc_tqps = alloced;
1765 kinfo->rss_size = min_t(u16, hdev->pf_rss_size_max,
1766 vport->alloc_tqps / hdev->tm_info.num_tc);
1768 /* ensure one to one mapping between irq and queue at default */
1769 kinfo->rss_size = min_t(u16, kinfo->rss_size,
1770 (hdev->num_nic_msi - 1) / hdev->tm_info.num_tc);
1775 static int hclge_knic_setup(struct hclge_vport *vport, u16 num_tqps,
1776 u16 num_tx_desc, u16 num_rx_desc)
1779 struct hnae3_handle *nic = &vport->nic;
1780 struct hnae3_knic_private_info *kinfo = &nic->kinfo;
1781 struct hclge_dev *hdev = vport->back;
1784 kinfo->num_tx_desc = num_tx_desc;
1785 kinfo->num_rx_desc = num_rx_desc;
1787 kinfo->rx_buf_len = hdev->rx_buf_len;
1788 kinfo->tx_spare_buf_size = hdev->tx_spare_buf_size;
1790 kinfo->tqp = devm_kcalloc(&hdev->pdev->dev, num_tqps,
1791 sizeof(struct hnae3_queue *), GFP_KERNEL);
1795 ret = hclge_assign_tqp(vport, num_tqps);
1797 dev_err(&hdev->pdev->dev, "fail to assign TQPs %d.\n", ret);
1802 static int hclge_map_tqp_to_vport(struct hclge_dev *hdev,
1803 struct hclge_vport *vport)
1805 struct hnae3_handle *nic = &vport->nic;
1806 struct hnae3_knic_private_info *kinfo;
1809 kinfo = &nic->kinfo;
1810 for (i = 0; i < vport->alloc_tqps; i++) {
1811 struct hclge_comm_tqp *q =
1812 container_of(kinfo->tqp[i], struct hclge_comm_tqp, q);
1816 is_pf = !(vport->vport_id);
1817 ret = hclge_map_tqps_to_func(hdev, vport->vport_id, q->index,
1826 static int hclge_map_tqp(struct hclge_dev *hdev)
1828 struct hclge_vport *vport = hdev->vport;
1831 num_vport = hdev->num_req_vfs + 1;
1832 for (i = 0; i < num_vport; i++) {
1835 ret = hclge_map_tqp_to_vport(hdev, vport);
1845 static int hclge_vport_setup(struct hclge_vport *vport, u16 num_tqps)
1847 struct hnae3_handle *nic = &vport->nic;
1848 struct hclge_dev *hdev = vport->back;
1851 nic->pdev = hdev->pdev;
1852 nic->ae_algo = &ae_algo;
1853 nic->numa_node_mask = hdev->numa_node_mask;
1854 nic->kinfo.io_base = hdev->hw.hw.io_base;
1856 ret = hclge_knic_setup(vport, num_tqps,
1857 hdev->num_tx_desc, hdev->num_rx_desc);
1859 dev_err(&hdev->pdev->dev, "knic setup failed %d\n", ret);
1864 static int hclge_alloc_vport(struct hclge_dev *hdev)
1866 struct pci_dev *pdev = hdev->pdev;
1867 struct hclge_vport *vport;
1873 /* We need to alloc a vport for main NIC of PF */
1874 num_vport = hdev->num_req_vfs + 1;
1876 if (hdev->num_tqps < num_vport) {
1877 dev_err(&hdev->pdev->dev, "tqps(%u) is less than vports(%d)",
1878 hdev->num_tqps, num_vport);
1882 /* Alloc the same number of TQPs for every vport */
1883 tqp_per_vport = hdev->num_tqps / num_vport;
1884 tqp_main_vport = tqp_per_vport + hdev->num_tqps % num_vport;
1886 vport = devm_kcalloc(&pdev->dev, num_vport, sizeof(struct hclge_vport),
1891 hdev->vport = vport;
1892 hdev->num_alloc_vport = num_vport;
1894 if (IS_ENABLED(CONFIG_PCI_IOV))
1895 hdev->num_alloc_vfs = hdev->num_req_vfs;
1897 for (i = 0; i < num_vport; i++) {
1899 vport->vport_id = i;
1900 vport->vf_info.link_state = IFLA_VF_LINK_STATE_AUTO;
1901 vport->mps = HCLGE_MAC_DEFAULT_FRAME;
1902 vport->port_base_vlan_cfg.state = HNAE3_PORT_BASE_VLAN_DISABLE;
1903 vport->port_base_vlan_cfg.tbl_sta = true;
1904 vport->rxvlan_cfg.rx_vlan_offload_en = true;
1905 vport->req_vlan_fltr_en = true;
1906 INIT_LIST_HEAD(&vport->vlan_list);
1907 INIT_LIST_HEAD(&vport->uc_mac_list);
1908 INIT_LIST_HEAD(&vport->mc_mac_list);
1909 spin_lock_init(&vport->mac_list_lock);
1912 ret = hclge_vport_setup(vport, tqp_main_vport);
1914 ret = hclge_vport_setup(vport, tqp_per_vport);
1917 "vport setup failed for vport %d, %d\n",
1928 static int hclge_cmd_alloc_tx_buff(struct hclge_dev *hdev,
1929 struct hclge_pkt_buf_alloc *buf_alloc)
1931 /* TX buffer size is unit by 128 byte */
1932 #define HCLGE_BUF_SIZE_UNIT_SHIFT 7
1933 #define HCLGE_BUF_SIZE_UPDATE_EN_MSK BIT(15)
1934 struct hclge_tx_buff_alloc_cmd *req;
1935 struct hclge_desc desc;
1939 req = (struct hclge_tx_buff_alloc_cmd *)desc.data;
1941 hclge_cmd_setup_basic_desc(&desc, HCLGE_OPC_TX_BUFF_ALLOC, 0);
1942 for (i = 0; i < HCLGE_MAX_TC_NUM; i++) {
1943 u32 buf_size = buf_alloc->priv_buf[i].tx_buf_size;
1945 req->tx_pkt_buff[i] =
1946 cpu_to_le16((buf_size >> HCLGE_BUF_SIZE_UNIT_SHIFT) |
1947 HCLGE_BUF_SIZE_UPDATE_EN_MSK);
1950 ret = hclge_cmd_send(&hdev->hw, &desc, 1);
1952 dev_err(&hdev->pdev->dev, "tx buffer alloc cmd failed %d.\n",
1958 static int hclge_tx_buffer_alloc(struct hclge_dev *hdev,
1959 struct hclge_pkt_buf_alloc *buf_alloc)
1961 int ret = hclge_cmd_alloc_tx_buff(hdev, buf_alloc);
1964 dev_err(&hdev->pdev->dev, "tx buffer alloc failed %d\n", ret);
1969 static u32 hclge_get_tc_num(struct hclge_dev *hdev)
1974 for (i = 0; i < HCLGE_MAX_TC_NUM; i++)
1975 if (hdev->hw_tc_map & BIT(i))
1980 /* Get the number of pfc enabled TCs, which have private buffer */
1981 static int hclge_get_pfc_priv_num(struct hclge_dev *hdev,
1982 struct hclge_pkt_buf_alloc *buf_alloc)
1984 struct hclge_priv_buf *priv;
1988 for (i = 0; i < HCLGE_MAX_TC_NUM; i++) {
1989 priv = &buf_alloc->priv_buf[i];
1990 if ((hdev->tm_info.hw_pfc_map & BIT(i)) &&
1998 /* Get the number of pfc disabled TCs, which have private buffer */
1999 static int hclge_get_no_pfc_priv_num(struct hclge_dev *hdev,
2000 struct hclge_pkt_buf_alloc *buf_alloc)
2002 struct hclge_priv_buf *priv;
2006 for (i = 0; i < HCLGE_MAX_TC_NUM; i++) {
2007 priv = &buf_alloc->priv_buf[i];
2008 if (hdev->hw_tc_map & BIT(i) &&
2009 !(hdev->tm_info.hw_pfc_map & BIT(i)) &&
2017 static u32 hclge_get_rx_priv_buff_alloced(struct hclge_pkt_buf_alloc *buf_alloc)
2019 struct hclge_priv_buf *priv;
2023 for (i = 0; i < HCLGE_MAX_TC_NUM; i++) {
2024 priv = &buf_alloc->priv_buf[i];
2026 rx_priv += priv->buf_size;
2031 static u32 hclge_get_tx_buff_alloced(struct hclge_pkt_buf_alloc *buf_alloc)
2033 u32 i, total_tx_size = 0;
2035 for (i = 0; i < HCLGE_MAX_TC_NUM; i++)
2036 total_tx_size += buf_alloc->priv_buf[i].tx_buf_size;
2038 return total_tx_size;
2041 static bool hclge_is_rx_buf_ok(struct hclge_dev *hdev,
2042 struct hclge_pkt_buf_alloc *buf_alloc,
2045 u32 shared_buf_min, shared_buf_tc, shared_std, hi_thrd, lo_thrd;
2046 u32 tc_num = hclge_get_tc_num(hdev);
2047 u32 shared_buf, aligned_mps;
2051 aligned_mps = roundup(hdev->mps, HCLGE_BUF_SIZE_UNIT);
2053 if (hnae3_dev_dcb_supported(hdev))
2054 shared_buf_min = HCLGE_BUF_MUL_BY * aligned_mps +
2057 shared_buf_min = aligned_mps + HCLGE_NON_DCB_ADDITIONAL_BUF
2058 + hdev->dv_buf_size;
2060 shared_buf_tc = tc_num * aligned_mps + aligned_mps;
2061 shared_std = roundup(max_t(u32, shared_buf_min, shared_buf_tc),
2062 HCLGE_BUF_SIZE_UNIT);
2064 rx_priv = hclge_get_rx_priv_buff_alloced(buf_alloc);
2065 if (rx_all < rx_priv + shared_std)
2068 shared_buf = rounddown(rx_all - rx_priv, HCLGE_BUF_SIZE_UNIT);
2069 buf_alloc->s_buf.buf_size = shared_buf;
2070 if (hnae3_dev_dcb_supported(hdev)) {
2071 buf_alloc->s_buf.self.high = shared_buf - hdev->dv_buf_size;
2072 buf_alloc->s_buf.self.low = buf_alloc->s_buf.self.high
2073 - roundup(aligned_mps / HCLGE_BUF_DIV_BY,
2074 HCLGE_BUF_SIZE_UNIT);
2076 buf_alloc->s_buf.self.high = aligned_mps +
2077 HCLGE_NON_DCB_ADDITIONAL_BUF;
2078 buf_alloc->s_buf.self.low = aligned_mps;
2081 if (hnae3_dev_dcb_supported(hdev)) {
2082 hi_thrd = shared_buf - hdev->dv_buf_size;
2084 if (tc_num <= NEED_RESERVE_TC_NUM)
2085 hi_thrd = hi_thrd * BUF_RESERVE_PERCENT
2089 hi_thrd = hi_thrd / tc_num;
2091 hi_thrd = max_t(u32, hi_thrd, HCLGE_BUF_MUL_BY * aligned_mps);
2092 hi_thrd = rounddown(hi_thrd, HCLGE_BUF_SIZE_UNIT);
2093 lo_thrd = hi_thrd - aligned_mps / HCLGE_BUF_DIV_BY;
2095 hi_thrd = aligned_mps + HCLGE_NON_DCB_ADDITIONAL_BUF;
2096 lo_thrd = aligned_mps;
2099 for (i = 0; i < HCLGE_MAX_TC_NUM; i++) {
2100 buf_alloc->s_buf.tc_thrd[i].low = lo_thrd;
2101 buf_alloc->s_buf.tc_thrd[i].high = hi_thrd;
2107 static int hclge_tx_buffer_calc(struct hclge_dev *hdev,
2108 struct hclge_pkt_buf_alloc *buf_alloc)
2112 total_size = hdev->pkt_buf_size;
2114 /* alloc tx buffer for all enabled tc */
2115 for (i = 0; i < HCLGE_MAX_TC_NUM; i++) {
2116 struct hclge_priv_buf *priv = &buf_alloc->priv_buf[i];
2118 if (hdev->hw_tc_map & BIT(i)) {
2119 if (total_size < hdev->tx_buf_size)
2122 priv->tx_buf_size = hdev->tx_buf_size;
2124 priv->tx_buf_size = 0;
2127 total_size -= priv->tx_buf_size;
2133 static bool hclge_rx_buf_calc_all(struct hclge_dev *hdev, bool max,
2134 struct hclge_pkt_buf_alloc *buf_alloc)
2136 u32 rx_all = hdev->pkt_buf_size - hclge_get_tx_buff_alloced(buf_alloc);
2137 u32 aligned_mps = round_up(hdev->mps, HCLGE_BUF_SIZE_UNIT);
2140 for (i = 0; i < HCLGE_MAX_TC_NUM; i++) {
2141 struct hclge_priv_buf *priv = &buf_alloc->priv_buf[i];
2148 if (!(hdev->hw_tc_map & BIT(i)))
2153 if (hdev->tm_info.hw_pfc_map & BIT(i)) {
2154 priv->wl.low = max ? aligned_mps : HCLGE_BUF_SIZE_UNIT;
2155 priv->wl.high = roundup(priv->wl.low + aligned_mps,
2156 HCLGE_BUF_SIZE_UNIT);
2159 priv->wl.high = max ? (aligned_mps * HCLGE_BUF_MUL_BY) :
2163 priv->buf_size = priv->wl.high + hdev->dv_buf_size;
2166 return hclge_is_rx_buf_ok(hdev, buf_alloc, rx_all);
2169 static bool hclge_drop_nopfc_buf_till_fit(struct hclge_dev *hdev,
2170 struct hclge_pkt_buf_alloc *buf_alloc)
2172 u32 rx_all = hdev->pkt_buf_size - hclge_get_tx_buff_alloced(buf_alloc);
2173 int no_pfc_priv_num = hclge_get_no_pfc_priv_num(hdev, buf_alloc);
2176 /* let the last to be cleared first */
2177 for (i = HCLGE_MAX_TC_NUM - 1; i >= 0; i--) {
2178 struct hclge_priv_buf *priv = &buf_alloc->priv_buf[i];
2179 unsigned int mask = BIT((unsigned int)i);
2181 if (hdev->hw_tc_map & mask &&
2182 !(hdev->tm_info.hw_pfc_map & mask)) {
2183 /* Clear the no pfc TC private buffer */
2191 if (hclge_is_rx_buf_ok(hdev, buf_alloc, rx_all) ||
2192 no_pfc_priv_num == 0)
2196 return hclge_is_rx_buf_ok(hdev, buf_alloc, rx_all);
2199 static bool hclge_drop_pfc_buf_till_fit(struct hclge_dev *hdev,
2200 struct hclge_pkt_buf_alloc *buf_alloc)
2202 u32 rx_all = hdev->pkt_buf_size - hclge_get_tx_buff_alloced(buf_alloc);
2203 int pfc_priv_num = hclge_get_pfc_priv_num(hdev, buf_alloc);
2206 /* let the last to be cleared first */
2207 for (i = HCLGE_MAX_TC_NUM - 1; i >= 0; i--) {
2208 struct hclge_priv_buf *priv = &buf_alloc->priv_buf[i];
2209 unsigned int mask = BIT((unsigned int)i);
2211 if (hdev->hw_tc_map & mask &&
2212 hdev->tm_info.hw_pfc_map & mask) {
2213 /* Reduce the number of pfc TC with private buffer */
2221 if (hclge_is_rx_buf_ok(hdev, buf_alloc, rx_all) ||
2226 return hclge_is_rx_buf_ok(hdev, buf_alloc, rx_all);
2229 static int hclge_only_alloc_priv_buff(struct hclge_dev *hdev,
2230 struct hclge_pkt_buf_alloc *buf_alloc)
2232 #define COMPENSATE_BUFFER 0x3C00
2233 #define COMPENSATE_HALF_MPS_NUM 5
2234 #define PRIV_WL_GAP 0x1800
2236 u32 rx_priv = hdev->pkt_buf_size - hclge_get_tx_buff_alloced(buf_alloc);
2237 u32 tc_num = hclge_get_tc_num(hdev);
2238 u32 half_mps = hdev->mps >> 1;
2243 rx_priv = rx_priv / tc_num;
2245 if (tc_num <= NEED_RESERVE_TC_NUM)
2246 rx_priv = rx_priv * BUF_RESERVE_PERCENT / BUF_MAX_PERCENT;
2248 min_rx_priv = hdev->dv_buf_size + COMPENSATE_BUFFER +
2249 COMPENSATE_HALF_MPS_NUM * half_mps;
2250 min_rx_priv = round_up(min_rx_priv, HCLGE_BUF_SIZE_UNIT);
2251 rx_priv = round_down(rx_priv, HCLGE_BUF_SIZE_UNIT);
2252 if (rx_priv < min_rx_priv)
2255 for (i = 0; i < HCLGE_MAX_TC_NUM; i++) {
2256 struct hclge_priv_buf *priv = &buf_alloc->priv_buf[i];
2263 if (!(hdev->hw_tc_map & BIT(i)))
2267 priv->buf_size = rx_priv;
2268 priv->wl.high = rx_priv - hdev->dv_buf_size;
2269 priv->wl.low = priv->wl.high - PRIV_WL_GAP;
2272 buf_alloc->s_buf.buf_size = 0;
2277 /* hclge_rx_buffer_calc: calculate the rx private buffer size for all TCs
2278 * @hdev: pointer to struct hclge_dev
2279 * @buf_alloc: pointer to buffer calculation data
2280 * @return: 0: calculate successful, negative: fail
2282 static int hclge_rx_buffer_calc(struct hclge_dev *hdev,
2283 struct hclge_pkt_buf_alloc *buf_alloc)
2285 /* When DCB is not supported, rx private buffer is not allocated. */
2286 if (!hnae3_dev_dcb_supported(hdev)) {
2287 u32 rx_all = hdev->pkt_buf_size;
2289 rx_all -= hclge_get_tx_buff_alloced(buf_alloc);
2290 if (!hclge_is_rx_buf_ok(hdev, buf_alloc, rx_all))
2296 if (hclge_only_alloc_priv_buff(hdev, buf_alloc))
2299 if (hclge_rx_buf_calc_all(hdev, true, buf_alloc))
2302 /* try to decrease the buffer size */
2303 if (hclge_rx_buf_calc_all(hdev, false, buf_alloc))
2306 if (hclge_drop_nopfc_buf_till_fit(hdev, buf_alloc))
2309 if (hclge_drop_pfc_buf_till_fit(hdev, buf_alloc))
2315 static int hclge_rx_priv_buf_alloc(struct hclge_dev *hdev,
2316 struct hclge_pkt_buf_alloc *buf_alloc)
2318 struct hclge_rx_priv_buff_cmd *req;
2319 struct hclge_desc desc;
2323 hclge_cmd_setup_basic_desc(&desc, HCLGE_OPC_RX_PRIV_BUFF_ALLOC, false);
2324 req = (struct hclge_rx_priv_buff_cmd *)desc.data;
2326 /* Alloc private buffer TCs */
2327 for (i = 0; i < HCLGE_MAX_TC_NUM; i++) {
2328 struct hclge_priv_buf *priv = &buf_alloc->priv_buf[i];
2331 cpu_to_le16(priv->buf_size >> HCLGE_BUF_UNIT_S);
2333 cpu_to_le16(1 << HCLGE_TC0_PRI_BUF_EN_B);
2337 cpu_to_le16((buf_alloc->s_buf.buf_size >> HCLGE_BUF_UNIT_S) |
2338 (1 << HCLGE_TC0_PRI_BUF_EN_B));
2340 ret = hclge_cmd_send(&hdev->hw, &desc, 1);
2342 dev_err(&hdev->pdev->dev,
2343 "rx private buffer alloc cmd failed %d\n", ret);
2348 static int hclge_rx_priv_wl_config(struct hclge_dev *hdev,
2349 struct hclge_pkt_buf_alloc *buf_alloc)
2351 struct hclge_rx_priv_wl_buf *req;
2352 struct hclge_priv_buf *priv;
2353 struct hclge_desc desc[2];
2357 for (i = 0; i < 2; i++) {
2358 hclge_cmd_setup_basic_desc(&desc[i], HCLGE_OPC_RX_PRIV_WL_ALLOC,
2360 req = (struct hclge_rx_priv_wl_buf *)desc[i].data;
2362 /* The first descriptor set the NEXT bit to 1 */
2364 desc[i].flag |= cpu_to_le16(HCLGE_COMM_CMD_FLAG_NEXT);
2366 desc[i].flag &= ~cpu_to_le16(HCLGE_COMM_CMD_FLAG_NEXT);
2368 for (j = 0; j < HCLGE_TC_NUM_ONE_DESC; j++) {
2369 u32 idx = i * HCLGE_TC_NUM_ONE_DESC + j;
2371 priv = &buf_alloc->priv_buf[idx];
2372 req->tc_wl[j].high =
2373 cpu_to_le16(priv->wl.high >> HCLGE_BUF_UNIT_S);
2374 req->tc_wl[j].high |=
2375 cpu_to_le16(BIT(HCLGE_RX_PRIV_EN_B));
2377 cpu_to_le16(priv->wl.low >> HCLGE_BUF_UNIT_S);
2378 req->tc_wl[j].low |=
2379 cpu_to_le16(BIT(HCLGE_RX_PRIV_EN_B));
2383 /* Send 2 descriptor at one time */
2384 ret = hclge_cmd_send(&hdev->hw, desc, 2);
2386 dev_err(&hdev->pdev->dev,
2387 "rx private waterline config cmd failed %d\n",
2392 static int hclge_common_thrd_config(struct hclge_dev *hdev,
2393 struct hclge_pkt_buf_alloc *buf_alloc)
2395 struct hclge_shared_buf *s_buf = &buf_alloc->s_buf;
2396 struct hclge_rx_com_thrd *req;
2397 struct hclge_desc desc[2];
2398 struct hclge_tc_thrd *tc;
2402 for (i = 0; i < 2; i++) {
2403 hclge_cmd_setup_basic_desc(&desc[i],
2404 HCLGE_OPC_RX_COM_THRD_ALLOC, false);
2405 req = (struct hclge_rx_com_thrd *)&desc[i].data;
2407 /* The first descriptor set the NEXT bit to 1 */
2409 desc[i].flag |= cpu_to_le16(HCLGE_COMM_CMD_FLAG_NEXT);
2411 desc[i].flag &= ~cpu_to_le16(HCLGE_COMM_CMD_FLAG_NEXT);
2413 for (j = 0; j < HCLGE_TC_NUM_ONE_DESC; j++) {
2414 tc = &s_buf->tc_thrd[i * HCLGE_TC_NUM_ONE_DESC + j];
2416 req->com_thrd[j].high =
2417 cpu_to_le16(tc->high >> HCLGE_BUF_UNIT_S);
2418 req->com_thrd[j].high |=
2419 cpu_to_le16(BIT(HCLGE_RX_PRIV_EN_B));
2420 req->com_thrd[j].low =
2421 cpu_to_le16(tc->low >> HCLGE_BUF_UNIT_S);
2422 req->com_thrd[j].low |=
2423 cpu_to_le16(BIT(HCLGE_RX_PRIV_EN_B));
2427 /* Send 2 descriptors at one time */
2428 ret = hclge_cmd_send(&hdev->hw, desc, 2);
2430 dev_err(&hdev->pdev->dev,
2431 "common threshold config cmd failed %d\n", ret);
2435 static int hclge_common_wl_config(struct hclge_dev *hdev,
2436 struct hclge_pkt_buf_alloc *buf_alloc)
2438 struct hclge_shared_buf *buf = &buf_alloc->s_buf;
2439 struct hclge_rx_com_wl *req;
2440 struct hclge_desc desc;
2443 hclge_cmd_setup_basic_desc(&desc, HCLGE_OPC_RX_COM_WL_ALLOC, false);
2445 req = (struct hclge_rx_com_wl *)desc.data;
2446 req->com_wl.high = cpu_to_le16(buf->self.high >> HCLGE_BUF_UNIT_S);
2447 req->com_wl.high |= cpu_to_le16(BIT(HCLGE_RX_PRIV_EN_B));
2449 req->com_wl.low = cpu_to_le16(buf->self.low >> HCLGE_BUF_UNIT_S);
2450 req->com_wl.low |= cpu_to_le16(BIT(HCLGE_RX_PRIV_EN_B));
2452 ret = hclge_cmd_send(&hdev->hw, &desc, 1);
2454 dev_err(&hdev->pdev->dev,
2455 "common waterline config cmd failed %d\n", ret);
2460 int hclge_buffer_alloc(struct hclge_dev *hdev)
2462 struct hclge_pkt_buf_alloc *pkt_buf;
2465 pkt_buf = kzalloc(sizeof(*pkt_buf), GFP_KERNEL);
2469 ret = hclge_tx_buffer_calc(hdev, pkt_buf);
2471 dev_err(&hdev->pdev->dev,
2472 "could not calc tx buffer size for all TCs %d\n", ret);
2476 ret = hclge_tx_buffer_alloc(hdev, pkt_buf);
2478 dev_err(&hdev->pdev->dev,
2479 "could not alloc tx buffers %d\n", ret);
2483 ret = hclge_rx_buffer_calc(hdev, pkt_buf);
2485 dev_err(&hdev->pdev->dev,
2486 "could not calc rx priv buffer size for all TCs %d\n",
2491 ret = hclge_rx_priv_buf_alloc(hdev, pkt_buf);
2493 dev_err(&hdev->pdev->dev, "could not alloc rx priv buffer %d\n",
2498 if (hnae3_dev_dcb_supported(hdev)) {
2499 ret = hclge_rx_priv_wl_config(hdev, pkt_buf);
2501 dev_err(&hdev->pdev->dev,
2502 "could not configure rx private waterline %d\n",
2507 ret = hclge_common_thrd_config(hdev, pkt_buf);
2509 dev_err(&hdev->pdev->dev,
2510 "could not configure common threshold %d\n",
2516 ret = hclge_common_wl_config(hdev, pkt_buf);
2518 dev_err(&hdev->pdev->dev,
2519 "could not configure common waterline %d\n", ret);
2526 static int hclge_init_roce_base_info(struct hclge_vport *vport)
2528 struct hnae3_handle *roce = &vport->roce;
2529 struct hnae3_handle *nic = &vport->nic;
2530 struct hclge_dev *hdev = vport->back;
2532 roce->rinfo.num_vectors = vport->back->num_roce_msi;
2534 if (hdev->num_msi < hdev->num_nic_msi + hdev->num_roce_msi)
2537 roce->rinfo.base_vector = hdev->num_nic_msi;
2539 roce->rinfo.netdev = nic->kinfo.netdev;
2540 roce->rinfo.roce_io_base = hdev->hw.hw.io_base;
2541 roce->rinfo.roce_mem_base = hdev->hw.hw.mem_base;
2543 roce->pdev = nic->pdev;
2544 roce->ae_algo = nic->ae_algo;
2545 roce->numa_node_mask = nic->numa_node_mask;
2550 static int hclge_init_msi(struct hclge_dev *hdev)
2552 struct pci_dev *pdev = hdev->pdev;
2556 vectors = pci_alloc_irq_vectors(pdev, HNAE3_MIN_VECTOR_NUM,
2558 PCI_IRQ_MSI | PCI_IRQ_MSIX);
2561 "failed(%d) to allocate MSI/MSI-X vectors\n",
2565 if (vectors < hdev->num_msi)
2566 dev_warn(&hdev->pdev->dev,
2567 "requested %u MSI/MSI-X, but allocated %d MSI/MSI-X\n",
2568 hdev->num_msi, vectors);
2570 hdev->num_msi = vectors;
2571 hdev->num_msi_left = vectors;
2573 hdev->vector_status = devm_kcalloc(&pdev->dev, hdev->num_msi,
2574 sizeof(u16), GFP_KERNEL);
2575 if (!hdev->vector_status) {
2576 pci_free_irq_vectors(pdev);
2580 for (i = 0; i < hdev->num_msi; i++)
2581 hdev->vector_status[i] = HCLGE_INVALID_VPORT;
2583 hdev->vector_irq = devm_kcalloc(&pdev->dev, hdev->num_msi,
2584 sizeof(int), GFP_KERNEL);
2585 if (!hdev->vector_irq) {
2586 pci_free_irq_vectors(pdev);
2593 static u8 hclge_check_speed_dup(u8 duplex, int speed)
2595 if (!(speed == HCLGE_MAC_SPEED_10M || speed == HCLGE_MAC_SPEED_100M))
2596 duplex = HCLGE_MAC_FULL;
2601 static struct hclge_mac_speed_map hclge_mac_speed_map_to_fw[] = {
2602 {HCLGE_MAC_SPEED_10M, HCLGE_FW_MAC_SPEED_10M},
2603 {HCLGE_MAC_SPEED_100M, HCLGE_FW_MAC_SPEED_100M},
2604 {HCLGE_MAC_SPEED_1G, HCLGE_FW_MAC_SPEED_1G},
2605 {HCLGE_MAC_SPEED_10G, HCLGE_FW_MAC_SPEED_10G},
2606 {HCLGE_MAC_SPEED_25G, HCLGE_FW_MAC_SPEED_25G},
2607 {HCLGE_MAC_SPEED_40G, HCLGE_FW_MAC_SPEED_40G},
2608 {HCLGE_MAC_SPEED_50G, HCLGE_FW_MAC_SPEED_50G},
2609 {HCLGE_MAC_SPEED_100G, HCLGE_FW_MAC_SPEED_100G},
2610 {HCLGE_MAC_SPEED_200G, HCLGE_FW_MAC_SPEED_200G},
2613 static int hclge_convert_to_fw_speed(u32 speed_drv, u32 *speed_fw)
2617 for (i = 0; i < ARRAY_SIZE(hclge_mac_speed_map_to_fw); i++) {
2618 if (hclge_mac_speed_map_to_fw[i].speed_drv == speed_drv) {
2619 *speed_fw = hclge_mac_speed_map_to_fw[i].speed_fw;
2627 static int hclge_cfg_mac_speed_dup_hw(struct hclge_dev *hdev, int speed,
2628 u8 duplex, u8 lane_num)
2630 struct hclge_config_mac_speed_dup_cmd *req;
2631 struct hclge_desc desc;
2635 req = (struct hclge_config_mac_speed_dup_cmd *)desc.data;
2637 hclge_cmd_setup_basic_desc(&desc, HCLGE_OPC_CONFIG_SPEED_DUP, false);
2640 hnae3_set_bit(req->speed_dup, HCLGE_CFG_DUPLEX_B, 1);
2642 ret = hclge_convert_to_fw_speed(speed, &speed_fw);
2644 dev_err(&hdev->pdev->dev, "invalid speed (%d)\n", speed);
2648 hnae3_set_field(req->speed_dup, HCLGE_CFG_SPEED_M, HCLGE_CFG_SPEED_S,
2650 hnae3_set_bit(req->mac_change_fec_en, HCLGE_CFG_MAC_SPEED_CHANGE_EN_B,
2652 req->lane_num = lane_num;
2654 ret = hclge_cmd_send(&hdev->hw, &desc, 1);
2656 dev_err(&hdev->pdev->dev,
2657 "mac speed/duplex config cmd failed %d.\n", ret);
2664 int hclge_cfg_mac_speed_dup(struct hclge_dev *hdev, int speed, u8 duplex, u8 lane_num)
2666 struct hclge_mac *mac = &hdev->hw.mac;
2669 duplex = hclge_check_speed_dup(duplex, speed);
2670 if (!mac->support_autoneg && mac->speed == speed &&
2671 mac->duplex == duplex && (mac->lane_num == lane_num || lane_num == 0))
2674 ret = hclge_cfg_mac_speed_dup_hw(hdev, speed, duplex, lane_num);
2678 hdev->hw.mac.speed = speed;
2679 hdev->hw.mac.duplex = duplex;
2681 hdev->hw.mac.lane_num = lane_num;
2686 static int hclge_cfg_mac_speed_dup_h(struct hnae3_handle *handle, int speed,
2687 u8 duplex, u8 lane_num)
2689 struct hclge_vport *vport = hclge_get_vport(handle);
2690 struct hclge_dev *hdev = vport->back;
2692 return hclge_cfg_mac_speed_dup(hdev, speed, duplex, lane_num);
2695 static int hclge_set_autoneg_en(struct hclge_dev *hdev, bool enable)
2697 struct hclge_config_auto_neg_cmd *req;
2698 struct hclge_desc desc;
2702 hclge_cmd_setup_basic_desc(&desc, HCLGE_OPC_CONFIG_AN_MODE, false);
2704 req = (struct hclge_config_auto_neg_cmd *)desc.data;
2706 hnae3_set_bit(flag, HCLGE_MAC_CFG_AN_EN_B, 1U);
2707 req->cfg_an_cmd_flag = cpu_to_le32(flag);
2709 ret = hclge_cmd_send(&hdev->hw, &desc, 1);
2711 dev_err(&hdev->pdev->dev, "auto neg set cmd failed %d.\n",
2717 static int hclge_set_autoneg(struct hnae3_handle *handle, bool enable)
2719 struct hclge_vport *vport = hclge_get_vport(handle);
2720 struct hclge_dev *hdev = vport->back;
2722 if (!hdev->hw.mac.support_autoneg) {
2724 dev_err(&hdev->pdev->dev,
2725 "autoneg is not supported by current port\n");
2732 return hclge_set_autoneg_en(hdev, enable);
2735 static int hclge_get_autoneg(struct hnae3_handle *handle)
2737 struct hclge_vport *vport = hclge_get_vport(handle);
2738 struct hclge_dev *hdev = vport->back;
2739 struct phy_device *phydev = hdev->hw.mac.phydev;
2742 return phydev->autoneg;
2744 return hdev->hw.mac.autoneg;
2747 static int hclge_restart_autoneg(struct hnae3_handle *handle)
2749 struct hclge_vport *vport = hclge_get_vport(handle);
2750 struct hclge_dev *hdev = vport->back;
2753 dev_dbg(&hdev->pdev->dev, "restart autoneg\n");
2755 ret = hclge_notify_client(hdev, HNAE3_DOWN_CLIENT);
2758 return hclge_notify_client(hdev, HNAE3_UP_CLIENT);
2761 static int hclge_halt_autoneg(struct hnae3_handle *handle, bool halt)
2763 struct hclge_vport *vport = hclge_get_vport(handle);
2764 struct hclge_dev *hdev = vport->back;
2766 if (hdev->hw.mac.support_autoneg && hdev->hw.mac.autoneg)
2767 return hclge_set_autoneg_en(hdev, !halt);
2772 static void hclge_parse_fec_stats_lanes(struct hclge_dev *hdev,
2773 struct hclge_desc *desc, u32 desc_len)
2775 u32 lane_size = HCLGE_FEC_STATS_MAX_LANES * 2;
2780 for (i = 0; i < lane_size; i++) {
2781 if (data_index >= HCLGE_DESC_DATA_LEN) {
2786 if (desc_index >= desc_len)
2789 hdev->fec_stats.per_lanes[i] +=
2790 le32_to_cpu(desc[desc_index].data[data_index]);
2795 static void hclge_parse_fec_stats(struct hclge_dev *hdev,
2796 struct hclge_desc *desc, u32 desc_len)
2798 struct hclge_query_fec_stats_cmd *req;
2800 req = (struct hclge_query_fec_stats_cmd *)desc[0].data;
2802 hdev->fec_stats.base_r_lane_num = req->base_r_lane_num;
2803 hdev->fec_stats.rs_corr_blocks +=
2804 le32_to_cpu(req->rs_fec_corr_blocks);
2805 hdev->fec_stats.rs_uncorr_blocks +=
2806 le32_to_cpu(req->rs_fec_uncorr_blocks);
2807 hdev->fec_stats.rs_error_blocks +=
2808 le32_to_cpu(req->rs_fec_error_blocks);
2809 hdev->fec_stats.base_r_corr_blocks +=
2810 le32_to_cpu(req->base_r_fec_corr_blocks);
2811 hdev->fec_stats.base_r_uncorr_blocks +=
2812 le32_to_cpu(req->base_r_fec_uncorr_blocks);
2814 hclge_parse_fec_stats_lanes(hdev, &desc[1], desc_len - 1);
2817 static int hclge_update_fec_stats_hw(struct hclge_dev *hdev)
2819 struct hclge_desc desc[HCLGE_FEC_STATS_CMD_NUM];
2823 for (i = 0; i < HCLGE_FEC_STATS_CMD_NUM; i++) {
2824 hclge_cmd_setup_basic_desc(&desc[i], HCLGE_OPC_QUERY_FEC_STATS,
2826 if (i != (HCLGE_FEC_STATS_CMD_NUM - 1))
2827 desc[i].flag |= cpu_to_le16(HCLGE_COMM_CMD_FLAG_NEXT);
2830 ret = hclge_cmd_send(&hdev->hw, desc, HCLGE_FEC_STATS_CMD_NUM);
2834 hclge_parse_fec_stats(hdev, desc, HCLGE_FEC_STATS_CMD_NUM);
2839 static void hclge_update_fec_stats(struct hclge_dev *hdev)
2841 struct hnae3_ae_dev *ae_dev = pci_get_drvdata(hdev->pdev);
2844 if (!hnae3_ae_dev_fec_stats_supported(ae_dev) ||
2845 test_and_set_bit(HCLGE_STATE_FEC_STATS_UPDATING, &hdev->state))
2848 ret = hclge_update_fec_stats_hw(hdev);
2850 dev_err(&hdev->pdev->dev,
2851 "failed to update fec stats, ret = %d\n", ret);
2853 clear_bit(HCLGE_STATE_FEC_STATS_UPDATING, &hdev->state);
2856 static void hclge_get_fec_stats_total(struct hclge_dev *hdev,
2857 struct ethtool_fec_stats *fec_stats)
2859 fec_stats->corrected_blocks.total = hdev->fec_stats.rs_corr_blocks;
2860 fec_stats->uncorrectable_blocks.total =
2861 hdev->fec_stats.rs_uncorr_blocks;
2864 static void hclge_get_fec_stats_lanes(struct hclge_dev *hdev,
2865 struct ethtool_fec_stats *fec_stats)
2869 if (hdev->fec_stats.base_r_lane_num == 0 ||
2870 hdev->fec_stats.base_r_lane_num > HCLGE_FEC_STATS_MAX_LANES) {
2871 dev_err(&hdev->pdev->dev,
2872 "fec stats lane number(%llu) is invalid\n",
2873 hdev->fec_stats.base_r_lane_num);
2877 for (i = 0; i < hdev->fec_stats.base_r_lane_num; i++) {
2878 fec_stats->corrected_blocks.lanes[i] =
2879 hdev->fec_stats.base_r_corr_per_lanes[i];
2880 fec_stats->uncorrectable_blocks.lanes[i] =
2881 hdev->fec_stats.base_r_uncorr_per_lanes[i];
2885 static void hclge_comm_get_fec_stats(struct hclge_dev *hdev,
2886 struct ethtool_fec_stats *fec_stats)
2888 u32 fec_mode = hdev->hw.mac.fec_mode;
2891 case BIT(HNAE3_FEC_RS):
2892 case BIT(HNAE3_FEC_LLRS):
2893 hclge_get_fec_stats_total(hdev, fec_stats);
2895 case BIT(HNAE3_FEC_BASER):
2896 hclge_get_fec_stats_lanes(hdev, fec_stats);
2899 dev_err(&hdev->pdev->dev,
2900 "fec stats is not supported by current fec mode(0x%x)\n",
2906 static void hclge_get_fec_stats(struct hnae3_handle *handle,
2907 struct ethtool_fec_stats *fec_stats)
2909 struct hclge_vport *vport = hclge_get_vport(handle);
2910 struct hclge_dev *hdev = vport->back;
2911 u32 fec_mode = hdev->hw.mac.fec_mode;
2913 if (fec_mode == BIT(HNAE3_FEC_NONE) ||
2914 fec_mode == BIT(HNAE3_FEC_AUTO) ||
2915 fec_mode == BIT(HNAE3_FEC_USER_DEF))
2918 hclge_update_fec_stats(hdev);
2920 hclge_comm_get_fec_stats(hdev, fec_stats);
2923 static int hclge_set_fec_hw(struct hclge_dev *hdev, u32 fec_mode)
2925 struct hclge_config_fec_cmd *req;
2926 struct hclge_desc desc;
2929 hclge_cmd_setup_basic_desc(&desc, HCLGE_OPC_CONFIG_FEC_MODE, false);
2931 req = (struct hclge_config_fec_cmd *)desc.data;
2932 if (fec_mode & BIT(HNAE3_FEC_AUTO))
2933 hnae3_set_bit(req->fec_mode, HCLGE_MAC_CFG_FEC_AUTO_EN_B, 1);
2934 if (fec_mode & BIT(HNAE3_FEC_RS))
2935 hnae3_set_field(req->fec_mode, HCLGE_MAC_CFG_FEC_MODE_M,
2936 HCLGE_MAC_CFG_FEC_MODE_S, HCLGE_MAC_FEC_RS);
2937 if (fec_mode & BIT(HNAE3_FEC_LLRS))
2938 hnae3_set_field(req->fec_mode, HCLGE_MAC_CFG_FEC_MODE_M,
2939 HCLGE_MAC_CFG_FEC_MODE_S, HCLGE_MAC_FEC_LLRS);
2940 if (fec_mode & BIT(HNAE3_FEC_BASER))
2941 hnae3_set_field(req->fec_mode, HCLGE_MAC_CFG_FEC_MODE_M,
2942 HCLGE_MAC_CFG_FEC_MODE_S, HCLGE_MAC_FEC_BASER);
2944 ret = hclge_cmd_send(&hdev->hw, &desc, 1);
2946 dev_err(&hdev->pdev->dev, "set fec mode failed %d.\n", ret);
2951 static int hclge_set_fec(struct hnae3_handle *handle, u32 fec_mode)
2953 struct hclge_vport *vport = hclge_get_vport(handle);
2954 struct hclge_dev *hdev = vport->back;
2955 struct hclge_mac *mac = &hdev->hw.mac;
2958 if (fec_mode && !(mac->fec_ability & fec_mode)) {
2959 dev_err(&hdev->pdev->dev, "unsupported fec mode\n");
2963 ret = hclge_set_fec_hw(hdev, fec_mode);
2967 mac->user_fec_mode = fec_mode | BIT(HNAE3_FEC_USER_DEF);
2971 static void hclge_get_fec(struct hnae3_handle *handle, u8 *fec_ability,
2974 struct hclge_vport *vport = hclge_get_vport(handle);
2975 struct hclge_dev *hdev = vport->back;
2976 struct hclge_mac *mac = &hdev->hw.mac;
2979 *fec_ability = mac->fec_ability;
2981 *fec_mode = mac->fec_mode;
2984 static int hclge_mac_init(struct hclge_dev *hdev)
2986 struct hclge_mac *mac = &hdev->hw.mac;
2989 hdev->support_sfp_query = true;
2990 hdev->hw.mac.duplex = HCLGE_MAC_FULL;
2991 ret = hclge_cfg_mac_speed_dup_hw(hdev, hdev->hw.mac.speed,
2992 hdev->hw.mac.duplex, hdev->hw.mac.lane_num);
2996 if (hdev->hw.mac.support_autoneg) {
2997 ret = hclge_set_autoneg_en(hdev, hdev->hw.mac.autoneg);
3004 if (mac->user_fec_mode & BIT(HNAE3_FEC_USER_DEF)) {
3005 ret = hclge_set_fec_hw(hdev, mac->user_fec_mode);
3010 ret = hclge_set_mac_mtu(hdev, hdev->mps);
3012 dev_err(&hdev->pdev->dev, "set mtu failed ret=%d\n", ret);
3016 ret = hclge_set_default_loopback(hdev);
3020 ret = hclge_buffer_alloc(hdev);
3022 dev_err(&hdev->pdev->dev,
3023 "allocate buffer fail, ret=%d\n", ret);
3028 static void hclge_mbx_task_schedule(struct hclge_dev *hdev)
3030 if (!test_bit(HCLGE_STATE_REMOVING, &hdev->state) &&
3031 !test_and_set_bit(HCLGE_STATE_MBX_SERVICE_SCHED, &hdev->state)) {
3032 hdev->last_mbx_scheduled = jiffies;
3033 mod_delayed_work(hclge_wq, &hdev->service_task, 0);
3037 static void hclge_reset_task_schedule(struct hclge_dev *hdev)
3039 if (!test_bit(HCLGE_STATE_REMOVING, &hdev->state) &&
3040 test_bit(HCLGE_STATE_SERVICE_INITED, &hdev->state) &&
3041 !test_and_set_bit(HCLGE_STATE_RST_SERVICE_SCHED, &hdev->state)) {
3042 hdev->last_rst_scheduled = jiffies;
3043 mod_delayed_work(hclge_wq, &hdev->service_task, 0);
3047 static void hclge_errhand_task_schedule(struct hclge_dev *hdev)
3049 if (!test_bit(HCLGE_STATE_REMOVING, &hdev->state) &&
3050 !test_and_set_bit(HCLGE_STATE_ERR_SERVICE_SCHED, &hdev->state))
3051 mod_delayed_work(hclge_wq, &hdev->service_task, 0);
3054 void hclge_task_schedule(struct hclge_dev *hdev, unsigned long delay_time)
3056 if (!test_bit(HCLGE_STATE_REMOVING, &hdev->state) &&
3057 !test_bit(HCLGE_STATE_RST_FAIL, &hdev->state))
3058 mod_delayed_work(hclge_wq, &hdev->service_task, delay_time);
3061 static int hclge_get_mac_link_status(struct hclge_dev *hdev, int *link_status)
3063 struct hclge_link_status_cmd *req;
3064 struct hclge_desc desc;
3067 hclge_cmd_setup_basic_desc(&desc, HCLGE_OPC_QUERY_LINK_STATUS, true);
3068 ret = hclge_cmd_send(&hdev->hw, &desc, 1);
3070 dev_err(&hdev->pdev->dev, "get link status cmd failed %d\n",
3075 req = (struct hclge_link_status_cmd *)desc.data;
3076 *link_status = (req->status & HCLGE_LINK_STATUS_UP_M) > 0 ?
3077 HCLGE_LINK_STATUS_UP : HCLGE_LINK_STATUS_DOWN;
3082 static int hclge_get_mac_phy_link(struct hclge_dev *hdev, int *link_status)
3084 struct phy_device *phydev = hdev->hw.mac.phydev;
3086 *link_status = HCLGE_LINK_STATUS_DOWN;
3088 if (test_bit(HCLGE_STATE_DOWN, &hdev->state))
3091 if (phydev && (phydev->state != PHY_RUNNING || !phydev->link))
3094 return hclge_get_mac_link_status(hdev, link_status);
3097 static void hclge_push_link_status(struct hclge_dev *hdev)
3099 struct hclge_vport *vport;
3103 for (i = 0; i < pci_num_vf(hdev->pdev); i++) {
3104 vport = &hdev->vport[i + HCLGE_VF_VPORT_START_NUM];
3106 if (!test_bit(HCLGE_VPORT_STATE_ALIVE, &vport->state) ||
3107 vport->vf_info.link_state != IFLA_VF_LINK_STATE_AUTO)
3110 ret = hclge_push_vf_link_status(vport);
3112 dev_err(&hdev->pdev->dev,
3113 "failed to push link status to vf%u, ret = %d\n",
3119 static void hclge_update_link_status(struct hclge_dev *hdev)
3121 struct hnae3_handle *rhandle = &hdev->vport[0].roce;
3122 struct hnae3_handle *handle = &hdev->vport[0].nic;
3123 struct hnae3_client *rclient = hdev->roce_client;
3124 struct hnae3_client *client = hdev->nic_client;
3131 if (test_and_set_bit(HCLGE_STATE_LINK_UPDATING, &hdev->state))
3134 ret = hclge_get_mac_phy_link(hdev, &state);
3136 clear_bit(HCLGE_STATE_LINK_UPDATING, &hdev->state);
3140 if (state != hdev->hw.mac.link) {
3141 hdev->hw.mac.link = state;
3142 client->ops->link_status_change(handle, state);
3143 hclge_config_mac_tnl_int(hdev, state);
3144 if (rclient && rclient->ops->link_status_change)
3145 rclient->ops->link_status_change(rhandle, state);
3147 hclge_push_link_status(hdev);
3150 clear_bit(HCLGE_STATE_LINK_UPDATING, &hdev->state);
3153 static void hclge_update_speed_advertising(struct hclge_mac *mac)
3157 if (hclge_get_speed_bit(mac->speed, &speed_ability))
3160 switch (mac->module_type) {
3161 case HNAE3_MODULE_TYPE_FIBRE_LR:
3162 hclge_convert_setting_lr(speed_ability, mac->advertising);
3164 case HNAE3_MODULE_TYPE_FIBRE_SR:
3165 case HNAE3_MODULE_TYPE_AOC:
3166 hclge_convert_setting_sr(speed_ability, mac->advertising);
3168 case HNAE3_MODULE_TYPE_CR:
3169 hclge_convert_setting_cr(speed_ability, mac->advertising);
3171 case HNAE3_MODULE_TYPE_KR:
3172 hclge_convert_setting_kr(speed_ability, mac->advertising);
3179 static void hclge_update_fec_advertising(struct hclge_mac *mac)
3181 if (mac->fec_mode & BIT(HNAE3_FEC_RS))
3182 linkmode_set_bit(ETHTOOL_LINK_MODE_FEC_RS_BIT,
3184 else if (mac->fec_mode & BIT(HNAE3_FEC_LLRS))
3185 linkmode_set_bit(ETHTOOL_LINK_MODE_FEC_LLRS_BIT,
3187 else if (mac->fec_mode & BIT(HNAE3_FEC_BASER))
3188 linkmode_set_bit(ETHTOOL_LINK_MODE_FEC_BASER_BIT,
3191 linkmode_set_bit(ETHTOOL_LINK_MODE_FEC_NONE_BIT,
3195 static void hclge_update_pause_advertising(struct hclge_dev *hdev)
3197 struct hclge_mac *mac = &hdev->hw.mac;
3200 switch (hdev->fc_mode_last_time) {
3201 case HCLGE_FC_RX_PAUSE:
3205 case HCLGE_FC_TX_PAUSE:
3219 linkmode_set_pause(mac->advertising, tx_en, rx_en);
3222 static void hclge_update_advertising(struct hclge_dev *hdev)
3224 struct hclge_mac *mac = &hdev->hw.mac;
3226 linkmode_zero(mac->advertising);
3227 hclge_update_speed_advertising(mac);
3228 hclge_update_fec_advertising(mac);
3229 hclge_update_pause_advertising(hdev);
3232 static void hclge_update_port_capability(struct hclge_dev *hdev,
3233 struct hclge_mac *mac)
3235 if (hnae3_dev_fec_supported(hdev))
3236 hclge_convert_setting_fec(mac);
3238 /* firmware can not identify back plane type, the media type
3239 * read from configuration can help deal it
3241 if (mac->media_type == HNAE3_MEDIA_TYPE_BACKPLANE &&
3242 mac->module_type == HNAE3_MODULE_TYPE_UNKNOWN)
3243 mac->module_type = HNAE3_MODULE_TYPE_KR;
3244 else if (mac->media_type == HNAE3_MEDIA_TYPE_COPPER)
3245 mac->module_type = HNAE3_MODULE_TYPE_TP;
3247 if (mac->support_autoneg) {
3248 linkmode_set_bit(ETHTOOL_LINK_MODE_Autoneg_BIT, mac->supported);
3249 linkmode_copy(mac->advertising, mac->supported);
3251 linkmode_clear_bit(ETHTOOL_LINK_MODE_Autoneg_BIT,
3253 hclge_update_advertising(hdev);
3257 static int hclge_get_sfp_speed(struct hclge_dev *hdev, u32 *speed)
3259 struct hclge_sfp_info_cmd *resp;
3260 struct hclge_desc desc;
3263 hclge_cmd_setup_basic_desc(&desc, HCLGE_OPC_GET_SFP_INFO, true);
3264 resp = (struct hclge_sfp_info_cmd *)desc.data;
3265 ret = hclge_cmd_send(&hdev->hw, &desc, 1);
3266 if (ret == -EOPNOTSUPP) {
3267 dev_warn(&hdev->pdev->dev,
3268 "IMP do not support get SFP speed %d\n", ret);
3271 dev_err(&hdev->pdev->dev, "get sfp speed failed %d\n", ret);
3275 *speed = le32_to_cpu(resp->speed);
3280 static int hclge_get_sfp_info(struct hclge_dev *hdev, struct hclge_mac *mac)
3282 struct hclge_sfp_info_cmd *resp;
3283 struct hclge_desc desc;
3286 hclge_cmd_setup_basic_desc(&desc, HCLGE_OPC_GET_SFP_INFO, true);
3287 resp = (struct hclge_sfp_info_cmd *)desc.data;
3289 resp->query_type = QUERY_ACTIVE_SPEED;
3291 ret = hclge_cmd_send(&hdev->hw, &desc, 1);
3292 if (ret == -EOPNOTSUPP) {
3293 dev_warn(&hdev->pdev->dev,
3294 "IMP does not support get SFP info %d\n", ret);
3297 dev_err(&hdev->pdev->dev, "get sfp info failed %d\n", ret);
3301 /* In some case, mac speed get from IMP may be 0, it shouldn't be
3302 * set to mac->speed.
3304 if (!le32_to_cpu(resp->speed))
3307 mac->speed = le32_to_cpu(resp->speed);
3308 /* if resp->speed_ability is 0, it means it's an old version
3309 * firmware, do not update these params
3311 if (resp->speed_ability) {
3312 mac->module_type = le32_to_cpu(resp->module_type);
3313 mac->speed_ability = le32_to_cpu(resp->speed_ability);
3314 mac->autoneg = resp->autoneg;
3315 mac->support_autoneg = resp->autoneg_ability;
3316 mac->speed_type = QUERY_ACTIVE_SPEED;
3317 mac->lane_num = resp->lane_num;
3318 if (!resp->active_fec)
3321 mac->fec_mode = BIT(resp->active_fec);
3322 mac->fec_ability = resp->fec_ability;
3324 mac->speed_type = QUERY_SFP_SPEED;
3330 static int hclge_get_phy_link_ksettings(struct hnae3_handle *handle,
3331 struct ethtool_link_ksettings *cmd)
3333 struct hclge_desc desc[HCLGE_PHY_LINK_SETTING_BD_NUM];
3334 struct hclge_vport *vport = hclge_get_vport(handle);
3335 struct hclge_phy_link_ksetting_0_cmd *req0;
3336 struct hclge_phy_link_ksetting_1_cmd *req1;
3337 u32 supported, advertising, lp_advertising;
3338 struct hclge_dev *hdev = vport->back;
3341 hclge_cmd_setup_basic_desc(&desc[0], HCLGE_OPC_PHY_LINK_KSETTING,
3343 desc[0].flag |= cpu_to_le16(HCLGE_COMM_CMD_FLAG_NEXT);
3344 hclge_cmd_setup_basic_desc(&desc[1], HCLGE_OPC_PHY_LINK_KSETTING,
3347 ret = hclge_cmd_send(&hdev->hw, desc, HCLGE_PHY_LINK_SETTING_BD_NUM);
3349 dev_err(&hdev->pdev->dev,
3350 "failed to get phy link ksetting, ret = %d.\n", ret);
3354 req0 = (struct hclge_phy_link_ksetting_0_cmd *)desc[0].data;
3355 cmd->base.autoneg = req0->autoneg;
3356 cmd->base.speed = le32_to_cpu(req0->speed);
3357 cmd->base.duplex = req0->duplex;
3358 cmd->base.port = req0->port;
3359 cmd->base.transceiver = req0->transceiver;
3360 cmd->base.phy_address = req0->phy_address;
3361 cmd->base.eth_tp_mdix = req0->eth_tp_mdix;
3362 cmd->base.eth_tp_mdix_ctrl = req0->eth_tp_mdix_ctrl;
3363 supported = le32_to_cpu(req0->supported);
3364 advertising = le32_to_cpu(req0->advertising);
3365 lp_advertising = le32_to_cpu(req0->lp_advertising);
3366 ethtool_convert_legacy_u32_to_link_mode(cmd->link_modes.supported,
3368 ethtool_convert_legacy_u32_to_link_mode(cmd->link_modes.advertising,
3370 ethtool_convert_legacy_u32_to_link_mode(cmd->link_modes.lp_advertising,
3373 req1 = (struct hclge_phy_link_ksetting_1_cmd *)desc[1].data;
3374 cmd->base.master_slave_cfg = req1->master_slave_cfg;
3375 cmd->base.master_slave_state = req1->master_slave_state;
3381 hclge_set_phy_link_ksettings(struct hnae3_handle *handle,
3382 const struct ethtool_link_ksettings *cmd)
3384 struct hclge_desc desc[HCLGE_PHY_LINK_SETTING_BD_NUM];
3385 struct hclge_vport *vport = hclge_get_vport(handle);
3386 struct hclge_phy_link_ksetting_0_cmd *req0;
3387 struct hclge_phy_link_ksetting_1_cmd *req1;
3388 struct hclge_dev *hdev = vport->back;
3392 if (cmd->base.autoneg == AUTONEG_DISABLE &&
3393 ((cmd->base.speed != SPEED_100 && cmd->base.speed != SPEED_10) ||
3394 (cmd->base.duplex != DUPLEX_HALF &&
3395 cmd->base.duplex != DUPLEX_FULL)))
3398 hclge_cmd_setup_basic_desc(&desc[0], HCLGE_OPC_PHY_LINK_KSETTING,
3400 desc[0].flag |= cpu_to_le16(HCLGE_COMM_CMD_FLAG_NEXT);
3401 hclge_cmd_setup_basic_desc(&desc[1], HCLGE_OPC_PHY_LINK_KSETTING,
3404 req0 = (struct hclge_phy_link_ksetting_0_cmd *)desc[0].data;
3405 req0->autoneg = cmd->base.autoneg;
3406 req0->speed = cpu_to_le32(cmd->base.speed);
3407 req0->duplex = cmd->base.duplex;
3408 ethtool_convert_link_mode_to_legacy_u32(&advertising,
3409 cmd->link_modes.advertising);
3410 req0->advertising = cpu_to_le32(advertising);
3411 req0->eth_tp_mdix_ctrl = cmd->base.eth_tp_mdix_ctrl;
3413 req1 = (struct hclge_phy_link_ksetting_1_cmd *)desc[1].data;
3414 req1->master_slave_cfg = cmd->base.master_slave_cfg;
3416 ret = hclge_cmd_send(&hdev->hw, desc, HCLGE_PHY_LINK_SETTING_BD_NUM);
3418 dev_err(&hdev->pdev->dev,
3419 "failed to set phy link ksettings, ret = %d.\n", ret);
3423 hdev->hw.mac.autoneg = cmd->base.autoneg;
3424 hdev->hw.mac.speed = cmd->base.speed;
3425 hdev->hw.mac.duplex = cmd->base.duplex;
3426 linkmode_copy(hdev->hw.mac.advertising, cmd->link_modes.advertising);
3431 static int hclge_update_tp_port_info(struct hclge_dev *hdev)
3433 struct ethtool_link_ksettings cmd;
3436 if (!hnae3_dev_phy_imp_supported(hdev))
3439 ret = hclge_get_phy_link_ksettings(&hdev->vport->nic, &cmd);
3443 hdev->hw.mac.autoneg = cmd.base.autoneg;
3444 hdev->hw.mac.speed = cmd.base.speed;
3445 hdev->hw.mac.duplex = cmd.base.duplex;
3450 static int hclge_tp_port_init(struct hclge_dev *hdev)
3452 struct ethtool_link_ksettings cmd;
3454 if (!hnae3_dev_phy_imp_supported(hdev))
3457 cmd.base.autoneg = hdev->hw.mac.autoneg;
3458 cmd.base.speed = hdev->hw.mac.speed;
3459 cmd.base.duplex = hdev->hw.mac.duplex;
3460 linkmode_copy(cmd.link_modes.advertising, hdev->hw.mac.advertising);
3462 return hclge_set_phy_link_ksettings(&hdev->vport->nic, &cmd);
3465 static int hclge_update_port_info(struct hclge_dev *hdev)
3467 struct hclge_mac *mac = &hdev->hw.mac;
3471 /* get the port info from SFP cmd if not copper port */
3472 if (mac->media_type == HNAE3_MEDIA_TYPE_COPPER)
3473 return hclge_update_tp_port_info(hdev);
3475 /* if IMP does not support get SFP/qSFP info, return directly */
3476 if (!hdev->support_sfp_query)
3479 if (hdev->ae_dev->dev_version >= HNAE3_DEVICE_VERSION_V2) {
3481 ret = hclge_get_sfp_info(hdev, mac);
3483 speed = HCLGE_MAC_SPEED_UNKNOWN;
3484 ret = hclge_get_sfp_speed(hdev, &speed);
3487 if (ret == -EOPNOTSUPP) {
3488 hdev->support_sfp_query = false;
3494 if (hdev->ae_dev->dev_version >= HNAE3_DEVICE_VERSION_V2) {
3495 if (mac->speed_type == QUERY_ACTIVE_SPEED) {
3496 hclge_update_port_capability(hdev, mac);
3497 if (mac->speed != speed)
3498 (void)hclge_tm_port_shaper_cfg(hdev);
3501 return hclge_cfg_mac_speed_dup(hdev, mac->speed,
3502 HCLGE_MAC_FULL, mac->lane_num);
3504 if (speed == HCLGE_MAC_SPEED_UNKNOWN)
3505 return 0; /* do nothing if no SFP */
3507 /* must config full duplex for SFP */
3508 return hclge_cfg_mac_speed_dup(hdev, speed, HCLGE_MAC_FULL, 0);
3512 static int hclge_get_status(struct hnae3_handle *handle)
3514 struct hclge_vport *vport = hclge_get_vport(handle);
3515 struct hclge_dev *hdev = vport->back;
3517 hclge_update_link_status(hdev);
3519 return hdev->hw.mac.link;
3522 static struct hclge_vport *hclge_get_vf_vport(struct hclge_dev *hdev, int vf)
3524 if (!pci_num_vf(hdev->pdev)) {
3525 dev_err(&hdev->pdev->dev,
3526 "SRIOV is disabled, can not get vport(%d) info.\n", vf);
3530 if (vf < 0 || vf >= pci_num_vf(hdev->pdev)) {
3531 dev_err(&hdev->pdev->dev,
3532 "vf id(%d) is out of range(0 <= vfid < %d)\n",
3533 vf, pci_num_vf(hdev->pdev));
3537 /* VF start from 1 in vport */
3538 vf += HCLGE_VF_VPORT_START_NUM;
3539 return &hdev->vport[vf];
3542 static int hclge_get_vf_config(struct hnae3_handle *handle, int vf,
3543 struct ifla_vf_info *ivf)
3545 struct hclge_vport *vport = hclge_get_vport(handle);
3546 struct hclge_dev *hdev = vport->back;
3548 vport = hclge_get_vf_vport(hdev, vf);
3553 ivf->linkstate = vport->vf_info.link_state;
3554 ivf->spoofchk = vport->vf_info.spoofchk;
3555 ivf->trusted = vport->vf_info.trusted;
3556 ivf->min_tx_rate = 0;
3557 ivf->max_tx_rate = vport->vf_info.max_tx_rate;
3558 ivf->vlan = vport->port_base_vlan_cfg.vlan_info.vlan_tag;
3559 ivf->vlan_proto = htons(vport->port_base_vlan_cfg.vlan_info.vlan_proto);
3560 ivf->qos = vport->port_base_vlan_cfg.vlan_info.qos;
3561 ether_addr_copy(ivf->mac, vport->vf_info.mac);
3566 static int hclge_set_vf_link_state(struct hnae3_handle *handle, int vf,
3569 struct hclge_vport *vport = hclge_get_vport(handle);
3570 struct hclge_dev *hdev = vport->back;
3574 vport = hclge_get_vf_vport(hdev, vf);
3578 link_state_old = vport->vf_info.link_state;
3579 vport->vf_info.link_state = link_state;
3581 /* return success directly if the VF is unalive, VF will
3582 * query link state itself when it starts work.
3584 if (!test_bit(HCLGE_VPORT_STATE_ALIVE, &vport->state))
3587 ret = hclge_push_vf_link_status(vport);
3589 vport->vf_info.link_state = link_state_old;
3590 dev_err(&hdev->pdev->dev,
3591 "failed to push vf%d link status, ret = %d\n", vf, ret);
3597 static u32 hclge_check_event_cause(struct hclge_dev *hdev, u32 *clearval)
3599 u32 cmdq_src_reg, msix_src_reg, hw_err_src_reg;
3601 /* fetch the events from their corresponding regs */
3602 cmdq_src_reg = hclge_read_dev(&hdev->hw, HCLGE_VECTOR0_CMDQ_SRC_REG);
3603 msix_src_reg = hclge_read_dev(&hdev->hw, HCLGE_MISC_VECTOR_INT_STS);
3604 hw_err_src_reg = hclge_read_dev(&hdev->hw,
3605 HCLGE_RAS_PF_OTHER_INT_STS_REG);
3607 /* Assumption: If by any chance reset and mailbox events are reported
3608 * together then we will only process reset event in this go and will
3609 * defer the processing of the mailbox events. Since, we would have not
3610 * cleared RX CMDQ event this time we would receive again another
3611 * interrupt from H/W just for the mailbox.
3613 * check for vector0 reset event sources
3615 if (BIT(HCLGE_VECTOR0_IMPRESET_INT_B) & msix_src_reg) {
3616 dev_info(&hdev->pdev->dev, "IMP reset interrupt\n");
3617 set_bit(HNAE3_IMP_RESET, &hdev->reset_pending);
3618 set_bit(HCLGE_COMM_STATE_CMD_DISABLE, &hdev->hw.hw.comm_state);
3619 *clearval = BIT(HCLGE_VECTOR0_IMPRESET_INT_B);
3620 hdev->rst_stats.imp_rst_cnt++;
3621 return HCLGE_VECTOR0_EVENT_RST;
3624 if (BIT(HCLGE_VECTOR0_GLOBALRESET_INT_B) & msix_src_reg) {
3625 dev_info(&hdev->pdev->dev, "global reset interrupt\n");
3626 set_bit(HCLGE_COMM_STATE_CMD_DISABLE, &hdev->hw.hw.comm_state);
3627 set_bit(HNAE3_GLOBAL_RESET, &hdev->reset_pending);
3628 *clearval = BIT(HCLGE_VECTOR0_GLOBALRESET_INT_B);
3629 hdev->rst_stats.global_rst_cnt++;
3630 return HCLGE_VECTOR0_EVENT_RST;
3633 /* check for vector0 msix event and hardware error event source */
3634 if (msix_src_reg & HCLGE_VECTOR0_REG_MSIX_MASK ||
3635 hw_err_src_reg & HCLGE_RAS_REG_ERR_MASK)
3636 return HCLGE_VECTOR0_EVENT_ERR;
3638 /* check for vector0 ptp event source */
3639 if (BIT(HCLGE_VECTOR0_REG_PTP_INT_B) & msix_src_reg) {
3640 *clearval = msix_src_reg;
3641 return HCLGE_VECTOR0_EVENT_PTP;
3644 /* check for vector0 mailbox(=CMDQ RX) event source */
3645 if (BIT(HCLGE_VECTOR0_RX_CMDQ_INT_B) & cmdq_src_reg) {
3646 cmdq_src_reg &= ~BIT(HCLGE_VECTOR0_RX_CMDQ_INT_B);
3647 *clearval = cmdq_src_reg;
3648 return HCLGE_VECTOR0_EVENT_MBX;
3651 /* print other vector0 event source */
3652 dev_info(&hdev->pdev->dev,
3653 "INT status: CMDQ(%#x) HW errors(%#x) other(%#x)\n",
3654 cmdq_src_reg, hw_err_src_reg, msix_src_reg);
3656 return HCLGE_VECTOR0_EVENT_OTHER;
3659 static void hclge_clear_event_cause(struct hclge_dev *hdev, u32 event_type,
3662 switch (event_type) {
3663 case HCLGE_VECTOR0_EVENT_PTP:
3664 case HCLGE_VECTOR0_EVENT_RST:
3665 hclge_write_dev(&hdev->hw, HCLGE_MISC_RESET_STS_REG, regclr);
3667 case HCLGE_VECTOR0_EVENT_MBX:
3668 hclge_write_dev(&hdev->hw, HCLGE_VECTOR0_CMDQ_SRC_REG, regclr);
3675 static void hclge_clear_all_event_cause(struct hclge_dev *hdev)
3677 hclge_clear_event_cause(hdev, HCLGE_VECTOR0_EVENT_RST,
3678 BIT(HCLGE_VECTOR0_GLOBALRESET_INT_B) |
3679 BIT(HCLGE_VECTOR0_CORERESET_INT_B) |
3680 BIT(HCLGE_VECTOR0_IMPRESET_INT_B));
3681 hclge_clear_event_cause(hdev, HCLGE_VECTOR0_EVENT_MBX, 0);
3684 static void hclge_enable_vector(struct hclge_misc_vector *vector, bool enable)
3686 writel(enable ? 1 : 0, vector->addr);
3689 static irqreturn_t hclge_misc_irq_handle(int irq, void *data)
3691 struct hclge_dev *hdev = data;
3692 unsigned long flags;
3696 hclge_enable_vector(&hdev->misc_vector, false);
3697 event_cause = hclge_check_event_cause(hdev, &clearval);
3699 /* vector 0 interrupt is shared with reset and mailbox source events. */
3700 switch (event_cause) {
3701 case HCLGE_VECTOR0_EVENT_ERR:
3702 hclge_errhand_task_schedule(hdev);
3704 case HCLGE_VECTOR0_EVENT_RST:
3705 hclge_reset_task_schedule(hdev);
3707 case HCLGE_VECTOR0_EVENT_PTP:
3708 spin_lock_irqsave(&hdev->ptp->lock, flags);
3709 hclge_ptp_clean_tx_hwts(hdev);
3710 spin_unlock_irqrestore(&hdev->ptp->lock, flags);
3712 case HCLGE_VECTOR0_EVENT_MBX:
3713 /* If we are here then,
3714 * 1. Either we are not handling any mbx task and we are not
3717 * 2. We could be handling a mbx task but nothing more is
3719 * In both cases, we should schedule mbx task as there are more
3720 * mbx messages reported by this interrupt.
3722 hclge_mbx_task_schedule(hdev);
3725 dev_warn(&hdev->pdev->dev,
3726 "received unknown or unhandled event of vector0\n");
3730 hclge_clear_event_cause(hdev, event_cause, clearval);
3732 /* Enable interrupt if it is not caused by reset event or error event */
3733 if (event_cause == HCLGE_VECTOR0_EVENT_PTP ||
3734 event_cause == HCLGE_VECTOR0_EVENT_MBX ||
3735 event_cause == HCLGE_VECTOR0_EVENT_OTHER)
3736 hclge_enable_vector(&hdev->misc_vector, true);
3741 static void hclge_free_vector(struct hclge_dev *hdev, int vector_id)
3743 if (hdev->vector_status[vector_id] == HCLGE_INVALID_VPORT) {
3744 dev_warn(&hdev->pdev->dev,
3745 "vector(vector_id %d) has been freed.\n", vector_id);
3749 hdev->vector_status[vector_id] = HCLGE_INVALID_VPORT;
3750 hdev->num_msi_left += 1;
3751 hdev->num_msi_used -= 1;
3754 static void hclge_get_misc_vector(struct hclge_dev *hdev)
3756 struct hclge_misc_vector *vector = &hdev->misc_vector;
3758 vector->vector_irq = pci_irq_vector(hdev->pdev, 0);
3760 vector->addr = hdev->hw.hw.io_base + HCLGE_MISC_VECTOR_REG_BASE;
3761 hdev->vector_status[0] = 0;
3763 hdev->num_msi_left -= 1;
3764 hdev->num_msi_used += 1;
3767 static int hclge_misc_irq_init(struct hclge_dev *hdev)
3771 hclge_get_misc_vector(hdev);
3773 /* this would be explicitly freed in the end */
3774 snprintf(hdev->misc_vector.name, HNAE3_INT_NAME_LEN, "%s-misc-%s",
3775 HCLGE_NAME, pci_name(hdev->pdev));
3776 ret = request_irq(hdev->misc_vector.vector_irq, hclge_misc_irq_handle,
3777 0, hdev->misc_vector.name, hdev);
3779 hclge_free_vector(hdev, 0);
3780 dev_err(&hdev->pdev->dev, "request misc irq(%d) fail\n",
3781 hdev->misc_vector.vector_irq);
3787 static void hclge_misc_irq_uninit(struct hclge_dev *hdev)
3789 free_irq(hdev->misc_vector.vector_irq, hdev);
3790 hclge_free_vector(hdev, 0);
3793 int hclge_notify_client(struct hclge_dev *hdev,
3794 enum hnae3_reset_notify_type type)
3796 struct hnae3_handle *handle = &hdev->vport[0].nic;
3797 struct hnae3_client *client = hdev->nic_client;
3800 if (!test_bit(HCLGE_STATE_NIC_REGISTERED, &hdev->state) || !client)
3803 if (!client->ops->reset_notify)
3806 ret = client->ops->reset_notify(handle, type);
3808 dev_err(&hdev->pdev->dev, "notify nic client failed %d(%d)\n",
3814 static int hclge_notify_roce_client(struct hclge_dev *hdev,
3815 enum hnae3_reset_notify_type type)
3817 struct hnae3_handle *handle = &hdev->vport[0].roce;
3818 struct hnae3_client *client = hdev->roce_client;
3821 if (!test_bit(HCLGE_STATE_ROCE_REGISTERED, &hdev->state) || !client)
3824 if (!client->ops->reset_notify)
3827 ret = client->ops->reset_notify(handle, type);
3829 dev_err(&hdev->pdev->dev, "notify roce client failed %d(%d)",
3835 static int hclge_reset_wait(struct hclge_dev *hdev)
3837 #define HCLGE_RESET_WATI_MS 100
3838 #define HCLGE_RESET_WAIT_CNT 350
3840 u32 val, reg, reg_bit;
3843 switch (hdev->reset_type) {
3844 case HNAE3_IMP_RESET:
3845 reg = HCLGE_GLOBAL_RESET_REG;
3846 reg_bit = HCLGE_IMP_RESET_BIT;
3848 case HNAE3_GLOBAL_RESET:
3849 reg = HCLGE_GLOBAL_RESET_REG;
3850 reg_bit = HCLGE_GLOBAL_RESET_BIT;
3852 case HNAE3_FUNC_RESET:
3853 reg = HCLGE_FUN_RST_ING;
3854 reg_bit = HCLGE_FUN_RST_ING_B;
3857 dev_err(&hdev->pdev->dev,
3858 "Wait for unsupported reset type: %d\n",
3863 val = hclge_read_dev(&hdev->hw, reg);
3864 while (hnae3_get_bit(val, reg_bit) && cnt < HCLGE_RESET_WAIT_CNT) {
3865 msleep(HCLGE_RESET_WATI_MS);
3866 val = hclge_read_dev(&hdev->hw, reg);
3870 if (cnt >= HCLGE_RESET_WAIT_CNT) {
3871 dev_warn(&hdev->pdev->dev,
3872 "Wait for reset timeout: %d\n", hdev->reset_type);
3879 static int hclge_set_vf_rst(struct hclge_dev *hdev, int func_id, bool reset)
3881 struct hclge_vf_rst_cmd *req;
3882 struct hclge_desc desc;
3884 req = (struct hclge_vf_rst_cmd *)desc.data;
3885 hclge_cmd_setup_basic_desc(&desc, HCLGE_OPC_GBL_RST_STATUS, false);
3886 req->dest_vfid = func_id;
3891 return hclge_cmd_send(&hdev->hw, &desc, 1);
3894 static int hclge_set_all_vf_rst(struct hclge_dev *hdev, bool reset)
3898 for (i = HCLGE_VF_VPORT_START_NUM; i < hdev->num_alloc_vport; i++) {
3899 struct hclge_vport *vport = &hdev->vport[i];
3902 /* Send cmd to set/clear VF's FUNC_RST_ING */
3903 ret = hclge_set_vf_rst(hdev, vport->vport_id, reset);
3905 dev_err(&hdev->pdev->dev,
3906 "set vf(%u) rst failed %d!\n",
3907 vport->vport_id - HCLGE_VF_VPORT_START_NUM,
3912 if (!reset || !test_bit(HCLGE_VPORT_STATE_ALIVE, &vport->state))
3915 /* Inform VF to process the reset.
3916 * hclge_inform_reset_assert_to_vf may fail if VF
3917 * driver is not loaded.
3919 ret = hclge_inform_reset_assert_to_vf(vport);
3921 dev_warn(&hdev->pdev->dev,
3922 "inform reset to vf(%u) failed %d!\n",
3923 vport->vport_id - HCLGE_VF_VPORT_START_NUM,
3930 static void hclge_mailbox_service_task(struct hclge_dev *hdev)
3932 if (!test_and_clear_bit(HCLGE_STATE_MBX_SERVICE_SCHED, &hdev->state) ||
3933 test_bit(HCLGE_COMM_STATE_CMD_DISABLE, &hdev->hw.hw.comm_state) ||
3934 test_and_set_bit(HCLGE_STATE_MBX_HANDLING, &hdev->state))
3937 if (time_is_before_jiffies(hdev->last_mbx_scheduled +
3938 HCLGE_MBX_SCHED_TIMEOUT))
3939 dev_warn(&hdev->pdev->dev,
3940 "mbx service task is scheduled after %ums on cpu%u!\n",
3941 jiffies_to_msecs(jiffies - hdev->last_mbx_scheduled),
3942 smp_processor_id());
3944 hclge_mbx_handler(hdev);
3946 clear_bit(HCLGE_STATE_MBX_HANDLING, &hdev->state);
3949 static void hclge_func_reset_sync_vf(struct hclge_dev *hdev)
3951 struct hclge_pf_rst_sync_cmd *req;
3952 struct hclge_desc desc;
3956 req = (struct hclge_pf_rst_sync_cmd *)desc.data;
3957 hclge_cmd_setup_basic_desc(&desc, HCLGE_OPC_QUERY_VF_RST_RDY, true);
3960 /* vf need to down netdev by mbx during PF or FLR reset */
3961 hclge_mailbox_service_task(hdev);
3963 ret = hclge_cmd_send(&hdev->hw, &desc, 1);
3964 /* for compatible with old firmware, wait
3965 * 100 ms for VF to stop IO
3967 if (ret == -EOPNOTSUPP) {
3968 msleep(HCLGE_RESET_SYNC_TIME);
3971 dev_warn(&hdev->pdev->dev, "sync with VF fail %d!\n",
3974 } else if (req->all_vf_ready) {
3977 msleep(HCLGE_PF_RESET_SYNC_TIME);
3978 hclge_comm_cmd_reuse_desc(&desc, true);
3979 } while (cnt++ < HCLGE_PF_RESET_SYNC_CNT);
3981 dev_warn(&hdev->pdev->dev, "sync with VF timeout!\n");
3984 void hclge_report_hw_error(struct hclge_dev *hdev,
3985 enum hnae3_hw_error_type type)
3987 struct hnae3_client *client = hdev->nic_client;
3989 if (!client || !client->ops->process_hw_error ||
3990 !test_bit(HCLGE_STATE_NIC_REGISTERED, &hdev->state))
3993 client->ops->process_hw_error(&hdev->vport[0].nic, type);
3996 static void hclge_handle_imp_error(struct hclge_dev *hdev)
4000 reg_val = hclge_read_dev(&hdev->hw, HCLGE_PF_OTHER_INT_REG);
4001 if (reg_val & BIT(HCLGE_VECTOR0_IMP_RD_POISON_B)) {
4002 hclge_report_hw_error(hdev, HNAE3_IMP_RD_POISON_ERROR);
4003 reg_val &= ~BIT(HCLGE_VECTOR0_IMP_RD_POISON_B);
4004 hclge_write_dev(&hdev->hw, HCLGE_PF_OTHER_INT_REG, reg_val);
4007 if (reg_val & BIT(HCLGE_VECTOR0_IMP_CMDQ_ERR_B)) {
4008 hclge_report_hw_error(hdev, HNAE3_CMDQ_ECC_ERROR);
4009 reg_val &= ~BIT(HCLGE_VECTOR0_IMP_CMDQ_ERR_B);
4010 hclge_write_dev(&hdev->hw, HCLGE_PF_OTHER_INT_REG, reg_val);
4014 int hclge_func_reset_cmd(struct hclge_dev *hdev, int func_id)
4016 struct hclge_desc desc;
4017 struct hclge_reset_cmd *req = (struct hclge_reset_cmd *)desc.data;
4020 hclge_cmd_setup_basic_desc(&desc, HCLGE_OPC_CFG_RST_TRIGGER, false);
4021 hnae3_set_bit(req->mac_func_reset, HCLGE_CFG_RESET_FUNC_B, 1);
4022 req->fun_reset_vfid = func_id;
4024 ret = hclge_cmd_send(&hdev->hw, &desc, 1);
4026 dev_err(&hdev->pdev->dev,
4027 "send function reset cmd fail, status =%d\n", ret);
4032 static void hclge_do_reset(struct hclge_dev *hdev)
4034 struct hnae3_handle *handle = &hdev->vport[0].nic;
4035 struct pci_dev *pdev = hdev->pdev;
4038 if (hclge_get_hw_reset_stat(handle)) {
4039 dev_info(&pdev->dev, "hardware reset not finish\n");
4040 dev_info(&pdev->dev, "func_rst_reg:0x%x, global_rst_reg:0x%x\n",
4041 hclge_read_dev(&hdev->hw, HCLGE_FUN_RST_ING),
4042 hclge_read_dev(&hdev->hw, HCLGE_GLOBAL_RESET_REG));
4046 switch (hdev->reset_type) {
4047 case HNAE3_IMP_RESET:
4048 dev_info(&pdev->dev, "IMP reset requested\n");
4049 val = hclge_read_dev(&hdev->hw, HCLGE_PF_OTHER_INT_REG);
4050 hnae3_set_bit(val, HCLGE_TRIGGER_IMP_RESET_B, 1);
4051 hclge_write_dev(&hdev->hw, HCLGE_PF_OTHER_INT_REG, val);
4053 case HNAE3_GLOBAL_RESET:
4054 dev_info(&pdev->dev, "global reset requested\n");
4055 val = hclge_read_dev(&hdev->hw, HCLGE_GLOBAL_RESET_REG);
4056 hnae3_set_bit(val, HCLGE_GLOBAL_RESET_BIT, 1);
4057 hclge_write_dev(&hdev->hw, HCLGE_GLOBAL_RESET_REG, val);
4059 case HNAE3_FUNC_RESET:
4060 dev_info(&pdev->dev, "PF reset requested\n");
4061 /* schedule again to check later */
4062 set_bit(HNAE3_FUNC_RESET, &hdev->reset_pending);
4063 hclge_reset_task_schedule(hdev);
4066 dev_warn(&pdev->dev,
4067 "unsupported reset type: %d\n", hdev->reset_type);
4072 static enum hnae3_reset_type hclge_get_reset_level(struct hnae3_ae_dev *ae_dev,
4073 unsigned long *addr)
4075 enum hnae3_reset_type rst_level = HNAE3_NONE_RESET;
4076 struct hclge_dev *hdev = ae_dev->priv;
4078 /* return the highest priority reset level amongst all */
4079 if (test_bit(HNAE3_IMP_RESET, addr)) {
4080 rst_level = HNAE3_IMP_RESET;
4081 clear_bit(HNAE3_IMP_RESET, addr);
4082 clear_bit(HNAE3_GLOBAL_RESET, addr);
4083 clear_bit(HNAE3_FUNC_RESET, addr);
4084 } else if (test_bit(HNAE3_GLOBAL_RESET, addr)) {
4085 rst_level = HNAE3_GLOBAL_RESET;
4086 clear_bit(HNAE3_GLOBAL_RESET, addr);
4087 clear_bit(HNAE3_FUNC_RESET, addr);
4088 } else if (test_bit(HNAE3_FUNC_RESET, addr)) {
4089 rst_level = HNAE3_FUNC_RESET;
4090 clear_bit(HNAE3_FUNC_RESET, addr);
4091 } else if (test_bit(HNAE3_FLR_RESET, addr)) {
4092 rst_level = HNAE3_FLR_RESET;
4093 clear_bit(HNAE3_FLR_RESET, addr);
4096 if (hdev->reset_type != HNAE3_NONE_RESET &&
4097 rst_level < hdev->reset_type)
4098 return HNAE3_NONE_RESET;
4103 static void hclge_clear_reset_cause(struct hclge_dev *hdev)
4107 switch (hdev->reset_type) {
4108 case HNAE3_IMP_RESET:
4109 clearval = BIT(HCLGE_VECTOR0_IMPRESET_INT_B);
4111 case HNAE3_GLOBAL_RESET:
4112 clearval = BIT(HCLGE_VECTOR0_GLOBALRESET_INT_B);
4121 /* For revision 0x20, the reset interrupt source
4122 * can only be cleared after hardware reset done
4124 if (hdev->ae_dev->dev_version < HNAE3_DEVICE_VERSION_V2)
4125 hclge_write_dev(&hdev->hw, HCLGE_MISC_RESET_STS_REG,
4128 hclge_enable_vector(&hdev->misc_vector, true);
4131 static void hclge_reset_handshake(struct hclge_dev *hdev, bool enable)
4135 reg_val = hclge_read_dev(&hdev->hw, HCLGE_COMM_NIC_CSQ_DEPTH_REG);
4137 reg_val |= HCLGE_COMM_NIC_SW_RST_RDY;
4139 reg_val &= ~HCLGE_COMM_NIC_SW_RST_RDY;
4141 hclge_write_dev(&hdev->hw, HCLGE_COMM_NIC_CSQ_DEPTH_REG, reg_val);
4144 static int hclge_func_reset_notify_vf(struct hclge_dev *hdev)
4148 ret = hclge_set_all_vf_rst(hdev, true);
4152 hclge_func_reset_sync_vf(hdev);
4157 static int hclge_reset_prepare_wait(struct hclge_dev *hdev)
4162 switch (hdev->reset_type) {
4163 case HNAE3_FUNC_RESET:
4164 ret = hclge_func_reset_notify_vf(hdev);
4168 ret = hclge_func_reset_cmd(hdev, 0);
4170 dev_err(&hdev->pdev->dev,
4171 "asserting function reset fail %d!\n", ret);
4175 /* After performaning pf reset, it is not necessary to do the
4176 * mailbox handling or send any command to firmware, because
4177 * any mailbox handling or command to firmware is only valid
4178 * after hclge_comm_cmd_init is called.
4180 set_bit(HCLGE_COMM_STATE_CMD_DISABLE, &hdev->hw.hw.comm_state);
4181 hdev->rst_stats.pf_rst_cnt++;
4183 case HNAE3_FLR_RESET:
4184 ret = hclge_func_reset_notify_vf(hdev);
4188 case HNAE3_IMP_RESET:
4189 hclge_handle_imp_error(hdev);
4190 reg_val = hclge_read_dev(&hdev->hw, HCLGE_PF_OTHER_INT_REG);
4191 hclge_write_dev(&hdev->hw, HCLGE_PF_OTHER_INT_REG,
4192 BIT(HCLGE_VECTOR0_IMP_RESET_INT_B) | reg_val);
4198 /* inform hardware that preparatory work is done */
4199 msleep(HCLGE_RESET_SYNC_TIME);
4200 hclge_reset_handshake(hdev, true);
4201 dev_info(&hdev->pdev->dev, "prepare wait ok\n");
4206 static void hclge_show_rst_info(struct hclge_dev *hdev)
4210 buf = kzalloc(HCLGE_DBG_RESET_INFO_LEN, GFP_KERNEL);
4214 hclge_dbg_dump_rst_info(hdev, buf, HCLGE_DBG_RESET_INFO_LEN);
4216 dev_info(&hdev->pdev->dev, "dump reset info:\n%s", buf);
4221 static bool hclge_reset_err_handle(struct hclge_dev *hdev)
4223 #define MAX_RESET_FAIL_CNT 5
4225 if (hdev->reset_pending) {
4226 dev_info(&hdev->pdev->dev, "Reset pending %lu\n",
4227 hdev->reset_pending);
4229 } else if (hclge_read_dev(&hdev->hw, HCLGE_MISC_VECTOR_INT_STS) &
4230 HCLGE_RESET_INT_M) {
4231 dev_info(&hdev->pdev->dev,
4232 "reset failed because new reset interrupt\n");
4233 hclge_clear_reset_cause(hdev);
4235 } else if (hdev->rst_stats.reset_fail_cnt < MAX_RESET_FAIL_CNT) {
4236 hdev->rst_stats.reset_fail_cnt++;
4237 set_bit(hdev->reset_type, &hdev->reset_pending);
4238 dev_info(&hdev->pdev->dev,
4239 "re-schedule reset task(%u)\n",
4240 hdev->rst_stats.reset_fail_cnt);
4244 hclge_clear_reset_cause(hdev);
4246 /* recover the handshake status when reset fail */
4247 hclge_reset_handshake(hdev, true);
4249 dev_err(&hdev->pdev->dev, "Reset fail!\n");
4251 hclge_show_rst_info(hdev);
4253 set_bit(HCLGE_STATE_RST_FAIL, &hdev->state);
4258 static void hclge_update_reset_level(struct hclge_dev *hdev)
4260 struct hnae3_ae_dev *ae_dev = pci_get_drvdata(hdev->pdev);
4261 enum hnae3_reset_type reset_level;
4263 /* reset request will not be set during reset, so clear
4264 * pending reset request to avoid unnecessary reset
4265 * caused by the same reason.
4267 hclge_get_reset_level(ae_dev, &hdev->reset_request);
4269 /* if default_reset_request has a higher level reset request,
4270 * it should be handled as soon as possible. since some errors
4271 * need this kind of reset to fix.
4273 reset_level = hclge_get_reset_level(ae_dev,
4274 &hdev->default_reset_request);
4275 if (reset_level != HNAE3_NONE_RESET)
4276 set_bit(reset_level, &hdev->reset_request);
4279 static int hclge_set_rst_done(struct hclge_dev *hdev)
4281 struct hclge_pf_rst_done_cmd *req;
4282 struct hclge_desc desc;
4285 req = (struct hclge_pf_rst_done_cmd *)desc.data;
4286 hclge_cmd_setup_basic_desc(&desc, HCLGE_OPC_PF_RST_DONE, false);
4287 req->pf_rst_done |= HCLGE_PF_RESET_DONE_BIT;
4289 ret = hclge_cmd_send(&hdev->hw, &desc, 1);
4290 /* To be compatible with the old firmware, which does not support
4291 * command HCLGE_OPC_PF_RST_DONE, just print a warning and
4294 if (ret == -EOPNOTSUPP) {
4295 dev_warn(&hdev->pdev->dev,
4296 "current firmware does not support command(0x%x)!\n",
4297 HCLGE_OPC_PF_RST_DONE);
4300 dev_err(&hdev->pdev->dev, "assert PF reset done fail %d!\n",
4307 static int hclge_reset_prepare_up(struct hclge_dev *hdev)
4311 switch (hdev->reset_type) {
4312 case HNAE3_FUNC_RESET:
4313 case HNAE3_FLR_RESET:
4314 ret = hclge_set_all_vf_rst(hdev, false);
4316 case HNAE3_GLOBAL_RESET:
4317 case HNAE3_IMP_RESET:
4318 ret = hclge_set_rst_done(hdev);
4324 /* clear up the handshake status after re-initialize done */
4325 hclge_reset_handshake(hdev, false);
4330 static int hclge_reset_stack(struct hclge_dev *hdev)
4334 ret = hclge_notify_client(hdev, HNAE3_UNINIT_CLIENT);
4338 ret = hclge_reset_ae_dev(hdev->ae_dev);
4342 return hclge_notify_client(hdev, HNAE3_INIT_CLIENT);
4345 static int hclge_reset_prepare(struct hclge_dev *hdev)
4349 hdev->rst_stats.reset_cnt++;
4350 /* perform reset of the stack & ae device for a client */
4351 ret = hclge_notify_roce_client(hdev, HNAE3_DOWN_CLIENT);
4356 ret = hclge_notify_client(hdev, HNAE3_DOWN_CLIENT);
4361 return hclge_reset_prepare_wait(hdev);
4364 static int hclge_reset_rebuild(struct hclge_dev *hdev)
4368 hdev->rst_stats.hw_reset_done_cnt++;
4370 ret = hclge_notify_roce_client(hdev, HNAE3_UNINIT_CLIENT);
4375 ret = hclge_reset_stack(hdev);
4380 hclge_clear_reset_cause(hdev);
4382 ret = hclge_notify_roce_client(hdev, HNAE3_INIT_CLIENT);
4383 /* ignore RoCE notify error if it fails HCLGE_RESET_MAX_FAIL_CNT - 1
4387 hdev->rst_stats.reset_fail_cnt < HCLGE_RESET_MAX_FAIL_CNT - 1)
4390 ret = hclge_reset_prepare_up(hdev);
4395 ret = hclge_notify_client(hdev, HNAE3_UP_CLIENT);
4400 ret = hclge_notify_roce_client(hdev, HNAE3_UP_CLIENT);
4404 hdev->last_reset_time = jiffies;
4405 hdev->rst_stats.reset_fail_cnt = 0;
4406 hdev->rst_stats.reset_done_cnt++;
4407 clear_bit(HCLGE_STATE_RST_FAIL, &hdev->state);
4409 hclge_update_reset_level(hdev);
4414 static void hclge_reset(struct hclge_dev *hdev)
4416 if (hclge_reset_prepare(hdev))
4419 if (hclge_reset_wait(hdev))
4422 if (hclge_reset_rebuild(hdev))
4428 if (hclge_reset_err_handle(hdev))
4429 hclge_reset_task_schedule(hdev);
4432 static void hclge_reset_event(struct pci_dev *pdev, struct hnae3_handle *handle)
4434 struct hnae3_ae_dev *ae_dev = pci_get_drvdata(pdev);
4435 struct hclge_dev *hdev = ae_dev->priv;
4437 /* We might end up getting called broadly because of 2 below cases:
4438 * 1. Recoverable error was conveyed through APEI and only way to bring
4439 * normalcy is to reset.
4440 * 2. A new reset request from the stack due to timeout
4442 * check if this is a new reset request and we are not here just because
4443 * last reset attempt did not succeed and watchdog hit us again. We will
4444 * know this if last reset request did not occur very recently (watchdog
4445 * timer = 5*HZ, let us check after sufficiently large time, say 4*5*Hz)
4446 * In case of new request we reset the "reset level" to PF reset.
4447 * And if it is a repeat reset request of the most recent one then we
4448 * want to make sure we throttle the reset request. Therefore, we will
4449 * not allow it again before 3*HZ times.
4452 if (time_before(jiffies, (hdev->last_reset_time +
4453 HCLGE_RESET_INTERVAL))) {
4454 mod_timer(&hdev->reset_timer, jiffies + HCLGE_RESET_INTERVAL);
4458 if (hdev->default_reset_request) {
4460 hclge_get_reset_level(ae_dev,
4461 &hdev->default_reset_request);
4462 } else if (time_after(jiffies, (hdev->last_reset_time + 4 * 5 * HZ))) {
4463 hdev->reset_level = HNAE3_FUNC_RESET;
4466 dev_info(&hdev->pdev->dev, "received reset event, reset type is %d\n",
4469 /* request reset & schedule reset task */
4470 set_bit(hdev->reset_level, &hdev->reset_request);
4471 hclge_reset_task_schedule(hdev);
4473 if (hdev->reset_level < HNAE3_GLOBAL_RESET)
4474 hdev->reset_level++;
4477 static void hclge_set_def_reset_request(struct hnae3_ae_dev *ae_dev,
4478 enum hnae3_reset_type rst_type)
4480 struct hclge_dev *hdev = ae_dev->priv;
4482 set_bit(rst_type, &hdev->default_reset_request);
4485 static void hclge_reset_timer(struct timer_list *t)
4487 struct hclge_dev *hdev = from_timer(hdev, t, reset_timer);
4489 /* if default_reset_request has no value, it means that this reset
4490 * request has already be handled, so just return here
4492 if (!hdev->default_reset_request)
4495 dev_info(&hdev->pdev->dev,
4496 "triggering reset in reset timer\n");
4497 hclge_reset_event(hdev->pdev, NULL);
4500 static void hclge_reset_subtask(struct hclge_dev *hdev)
4502 struct hnae3_ae_dev *ae_dev = pci_get_drvdata(hdev->pdev);
4504 /* check if there is any ongoing reset in the hardware. This status can
4505 * be checked from reset_pending. If there is then, we need to wait for
4506 * hardware to complete reset.
4507 * a. If we are able to figure out in reasonable time that hardware
4508 * has fully resetted then, we can proceed with driver, client
4510 * b. else, we can come back later to check this status so re-sched
4513 hdev->last_reset_time = jiffies;
4514 hdev->reset_type = hclge_get_reset_level(ae_dev, &hdev->reset_pending);
4515 if (hdev->reset_type != HNAE3_NONE_RESET)
4518 /* check if we got any *new* reset requests to be honored */
4519 hdev->reset_type = hclge_get_reset_level(ae_dev, &hdev->reset_request);
4520 if (hdev->reset_type != HNAE3_NONE_RESET)
4521 hclge_do_reset(hdev);
4523 hdev->reset_type = HNAE3_NONE_RESET;
4526 static void hclge_handle_err_reset_request(struct hclge_dev *hdev)
4528 struct hnae3_ae_dev *ae_dev = pci_get_drvdata(hdev->pdev);
4529 enum hnae3_reset_type reset_type;
4531 if (ae_dev->hw_err_reset_req) {
4532 reset_type = hclge_get_reset_level(ae_dev,
4533 &ae_dev->hw_err_reset_req);
4534 hclge_set_def_reset_request(ae_dev, reset_type);
4537 if (hdev->default_reset_request && ae_dev->ops->reset_event)
4538 ae_dev->ops->reset_event(hdev->pdev, NULL);
4540 /* enable interrupt after error handling complete */
4541 hclge_enable_vector(&hdev->misc_vector, true);
4544 static void hclge_handle_err_recovery(struct hclge_dev *hdev)
4546 struct hnae3_ae_dev *ae_dev = pci_get_drvdata(hdev->pdev);
4548 ae_dev->hw_err_reset_req = 0;
4550 if (hclge_find_error_source(hdev)) {
4551 hclge_handle_error_info_log(ae_dev);
4552 hclge_handle_mac_tnl(hdev);
4555 hclge_handle_err_reset_request(hdev);
4558 static void hclge_misc_err_recovery(struct hclge_dev *hdev)
4560 struct hnae3_ae_dev *ae_dev = pci_get_drvdata(hdev->pdev);
4561 struct device *dev = &hdev->pdev->dev;
4564 msix_sts_reg = hclge_read_dev(&hdev->hw, HCLGE_MISC_VECTOR_INT_STS);
4565 if (msix_sts_reg & HCLGE_VECTOR0_REG_MSIX_MASK) {
4566 if (hclge_handle_hw_msix_error
4567 (hdev, &hdev->default_reset_request))
4568 dev_info(dev, "received msix interrupt 0x%x\n",
4572 hclge_handle_hw_ras_error(ae_dev);
4574 hclge_handle_err_reset_request(hdev);
4577 static void hclge_errhand_service_task(struct hclge_dev *hdev)
4579 if (!test_and_clear_bit(HCLGE_STATE_ERR_SERVICE_SCHED, &hdev->state))
4582 if (hnae3_dev_ras_imp_supported(hdev))
4583 hclge_handle_err_recovery(hdev);
4585 hclge_misc_err_recovery(hdev);
4588 static void hclge_reset_service_task(struct hclge_dev *hdev)
4590 if (!test_and_clear_bit(HCLGE_STATE_RST_SERVICE_SCHED, &hdev->state))
4593 if (time_is_before_jiffies(hdev->last_rst_scheduled +
4594 HCLGE_RESET_SCHED_TIMEOUT))
4595 dev_warn(&hdev->pdev->dev,
4596 "reset service task is scheduled after %ums on cpu%u!\n",
4597 jiffies_to_msecs(jiffies - hdev->last_rst_scheduled),
4598 smp_processor_id());
4600 down(&hdev->reset_sem);
4601 set_bit(HCLGE_STATE_RST_HANDLING, &hdev->state);
4603 hclge_reset_subtask(hdev);
4605 clear_bit(HCLGE_STATE_RST_HANDLING, &hdev->state);
4606 up(&hdev->reset_sem);
4609 static void hclge_update_vport_alive(struct hclge_dev *hdev)
4613 /* start from vport 1 for PF is always alive */
4614 for (i = 1; i < hdev->num_alloc_vport; i++) {
4615 struct hclge_vport *vport = &hdev->vport[i];
4617 if (time_after(jiffies, vport->last_active_jiffies + 8 * HZ))
4618 clear_bit(HCLGE_VPORT_STATE_ALIVE, &vport->state);
4620 /* If vf is not alive, set to default value */
4621 if (!test_bit(HCLGE_VPORT_STATE_ALIVE, &vport->state))
4622 vport->mps = HCLGE_MAC_DEFAULT_FRAME;
4626 static void hclge_periodic_service_task(struct hclge_dev *hdev)
4628 unsigned long delta = round_jiffies_relative(HZ);
4630 if (test_bit(HCLGE_STATE_RST_FAIL, &hdev->state))
4633 /* Always handle the link updating to make sure link state is
4634 * updated when it is triggered by mbx.
4636 hclge_update_link_status(hdev);
4637 hclge_sync_mac_table(hdev);
4638 hclge_sync_promisc_mode(hdev);
4639 hclge_sync_fd_table(hdev);
4641 if (time_is_after_jiffies(hdev->last_serv_processed + HZ)) {
4642 delta = jiffies - hdev->last_serv_processed;
4644 if (delta < round_jiffies_relative(HZ)) {
4645 delta = round_jiffies_relative(HZ) - delta;
4650 hdev->serv_processed_cnt++;
4651 hclge_update_vport_alive(hdev);
4653 if (test_bit(HCLGE_STATE_DOWN, &hdev->state)) {
4654 hdev->last_serv_processed = jiffies;
4658 if (!(hdev->serv_processed_cnt % HCLGE_STATS_TIMER_INTERVAL))
4659 hclge_update_stats_for_all(hdev);
4661 hclge_update_port_info(hdev);
4662 hclge_sync_vlan_filter(hdev);
4664 if (!(hdev->serv_processed_cnt % HCLGE_ARFS_EXPIRE_INTERVAL))
4665 hclge_rfs_filter_expire(hdev);
4667 hdev->last_serv_processed = jiffies;
4670 hclge_task_schedule(hdev, delta);
4673 static void hclge_ptp_service_task(struct hclge_dev *hdev)
4675 unsigned long flags;
4677 if (!test_bit(HCLGE_STATE_PTP_EN, &hdev->state) ||
4678 !test_bit(HCLGE_STATE_PTP_TX_HANDLING, &hdev->state) ||
4679 !time_is_before_jiffies(hdev->ptp->tx_start + HZ))
4682 /* to prevent concurrence with the irq handler */
4683 spin_lock_irqsave(&hdev->ptp->lock, flags);
4685 /* check HCLGE_STATE_PTP_TX_HANDLING here again, since the irq
4686 * handler may handle it just before spin_lock_irqsave().
4688 if (test_bit(HCLGE_STATE_PTP_TX_HANDLING, &hdev->state))
4689 hclge_ptp_clean_tx_hwts(hdev);
4691 spin_unlock_irqrestore(&hdev->ptp->lock, flags);
4694 static void hclge_service_task(struct work_struct *work)
4696 struct hclge_dev *hdev =
4697 container_of(work, struct hclge_dev, service_task.work);
4699 hclge_errhand_service_task(hdev);
4700 hclge_reset_service_task(hdev);
4701 hclge_ptp_service_task(hdev);
4702 hclge_mailbox_service_task(hdev);
4703 hclge_periodic_service_task(hdev);
4705 /* Handle error recovery, reset and mbx again in case periodical task
4706 * delays the handling by calling hclge_task_schedule() in
4707 * hclge_periodic_service_task().
4709 hclge_errhand_service_task(hdev);
4710 hclge_reset_service_task(hdev);
4711 hclge_mailbox_service_task(hdev);
4714 struct hclge_vport *hclge_get_vport(struct hnae3_handle *handle)
4716 /* VF handle has no client */
4717 if (!handle->client)
4718 return container_of(handle, struct hclge_vport, nic);
4719 else if (handle->client->type == HNAE3_CLIENT_ROCE)
4720 return container_of(handle, struct hclge_vport, roce);
4722 return container_of(handle, struct hclge_vport, nic);
4725 static void hclge_get_vector_info(struct hclge_dev *hdev, u16 idx,
4726 struct hnae3_vector_info *vector_info)
4728 #define HCLGE_PF_MAX_VECTOR_NUM_DEV_V2 64
4730 vector_info->vector = pci_irq_vector(hdev->pdev, idx);
4732 /* need an extend offset to config vector >= 64 */
4733 if (idx - 1 < HCLGE_PF_MAX_VECTOR_NUM_DEV_V2)
4734 vector_info->io_addr = hdev->hw.hw.io_base +
4735 HCLGE_VECTOR_REG_BASE +
4736 (idx - 1) * HCLGE_VECTOR_REG_OFFSET;
4738 vector_info->io_addr = hdev->hw.hw.io_base +
4739 HCLGE_VECTOR_EXT_REG_BASE +
4740 (idx - 1) / HCLGE_PF_MAX_VECTOR_NUM_DEV_V2 *
4741 HCLGE_VECTOR_REG_OFFSET_H +
4742 (idx - 1) % HCLGE_PF_MAX_VECTOR_NUM_DEV_V2 *
4743 HCLGE_VECTOR_REG_OFFSET;
4745 hdev->vector_status[idx] = hdev->vport[0].vport_id;
4746 hdev->vector_irq[idx] = vector_info->vector;
4749 static int hclge_get_vector(struct hnae3_handle *handle, u16 vector_num,
4750 struct hnae3_vector_info *vector_info)
4752 struct hclge_vport *vport = hclge_get_vport(handle);
4753 struct hnae3_vector_info *vector = vector_info;
4754 struct hclge_dev *hdev = vport->back;
4759 vector_num = min_t(u16, hdev->num_nic_msi - 1, vector_num);
4760 vector_num = min(hdev->num_msi_left, vector_num);
4762 for (j = 0; j < vector_num; j++) {
4763 while (++i < hdev->num_nic_msi) {
4764 if (hdev->vector_status[i] == HCLGE_INVALID_VPORT) {
4765 hclge_get_vector_info(hdev, i, vector);
4773 hdev->num_msi_left -= alloc;
4774 hdev->num_msi_used += alloc;
4779 static int hclge_get_vector_index(struct hclge_dev *hdev, int vector)
4783 for (i = 0; i < hdev->num_msi; i++)
4784 if (vector == hdev->vector_irq[i])
4790 static int hclge_put_vector(struct hnae3_handle *handle, int vector)
4792 struct hclge_vport *vport = hclge_get_vport(handle);
4793 struct hclge_dev *hdev = vport->back;
4796 vector_id = hclge_get_vector_index(hdev, vector);
4797 if (vector_id < 0) {
4798 dev_err(&hdev->pdev->dev,
4799 "Get vector index fail. vector = %d\n", vector);
4803 hclge_free_vector(hdev, vector_id);
4808 static int hclge_get_rss(struct hnae3_handle *handle, u32 *indir,
4811 struct hnae3_ae_dev *ae_dev = pci_get_drvdata(handle->pdev);
4812 struct hclge_vport *vport = hclge_get_vport(handle);
4813 struct hclge_comm_rss_cfg *rss_cfg = &vport->back->rss_cfg;
4815 hclge_comm_get_rss_hash_info(rss_cfg, key, hfunc);
4817 hclge_comm_get_rss_indir_tbl(rss_cfg, indir,
4818 ae_dev->dev_specs.rss_ind_tbl_size);
4823 static int hclge_set_rss(struct hnae3_handle *handle, const u32 *indir,
4824 const u8 *key, const u8 hfunc)
4826 struct hnae3_ae_dev *ae_dev = pci_get_drvdata(handle->pdev);
4827 struct hclge_vport *vport = hclge_get_vport(handle);
4828 struct hclge_dev *hdev = vport->back;
4829 struct hclge_comm_rss_cfg *rss_cfg = &hdev->rss_cfg;
4832 ret = hclge_comm_set_rss_hash_key(rss_cfg, &hdev->hw.hw, key, hfunc);
4834 dev_err(&hdev->pdev->dev, "invalid hfunc type %u\n", hfunc);
4838 /* Update the shadow RSS table with user specified qids */
4839 for (i = 0; i < ae_dev->dev_specs.rss_ind_tbl_size; i++)
4840 rss_cfg->rss_indirection_tbl[i] = indir[i];
4842 /* Update the hardware */
4843 return hclge_comm_set_rss_indir_table(ae_dev, &hdev->hw.hw,
4844 rss_cfg->rss_indirection_tbl);
4847 static int hclge_set_rss_tuple(struct hnae3_handle *handle,
4848 struct ethtool_rxnfc *nfc)
4850 struct hclge_vport *vport = hclge_get_vport(handle);
4851 struct hclge_dev *hdev = vport->back;
4854 ret = hclge_comm_set_rss_tuple(hdev->ae_dev, &hdev->hw.hw,
4855 &hdev->rss_cfg, nfc);
4857 dev_err(&hdev->pdev->dev,
4858 "failed to set rss tuple, ret = %d.\n", ret);
4862 hclge_comm_get_rss_type(&vport->nic, &hdev->rss_cfg.rss_tuple_sets);
4866 static int hclge_get_rss_tuple(struct hnae3_handle *handle,
4867 struct ethtool_rxnfc *nfc)
4869 struct hclge_vport *vport = hclge_get_vport(handle);
4875 ret = hclge_comm_get_rss_tuple(&vport->back->rss_cfg, nfc->flow_type,
4877 if (ret || !tuple_sets)
4880 nfc->data = hclge_comm_convert_rss_tuple(tuple_sets);
4885 static int hclge_get_tc_size(struct hnae3_handle *handle)
4887 struct hclge_vport *vport = hclge_get_vport(handle);
4888 struct hclge_dev *hdev = vport->back;
4890 return hdev->pf_rss_size_max;
4893 static int hclge_init_rss_tc_mode(struct hclge_dev *hdev)
4895 struct hnae3_ae_dev *ae_dev = hdev->ae_dev;
4896 struct hclge_vport *vport = hdev->vport;
4897 u16 tc_offset[HCLGE_MAX_TC_NUM] = {0};
4898 u16 tc_valid[HCLGE_MAX_TC_NUM] = {0};
4899 u16 tc_size[HCLGE_MAX_TC_NUM] = {0};
4900 struct hnae3_tc_info *tc_info;
4905 tc_info = &vport->nic.kinfo.tc_info;
4906 for (i = 0; i < HCLGE_MAX_TC_NUM; i++) {
4907 rss_size = tc_info->tqp_count[i];
4910 if (!(hdev->hw_tc_map & BIT(i)))
4913 /* tc_size set to hardware is the log2 of roundup power of two
4914 * of rss_size, the acutal queue size is limited by indirection
4917 if (rss_size > ae_dev->dev_specs.rss_ind_tbl_size ||
4919 dev_err(&hdev->pdev->dev,
4920 "Configure rss tc size failed, invalid TC_SIZE = %u\n",
4925 roundup_size = roundup_pow_of_two(rss_size);
4926 roundup_size = ilog2(roundup_size);
4929 tc_size[i] = roundup_size;
4930 tc_offset[i] = tc_info->tqp_offset[i];
4933 return hclge_comm_set_rss_tc_mode(&hdev->hw.hw, tc_offset, tc_valid,
4937 int hclge_rss_init_hw(struct hclge_dev *hdev)
4939 u16 *rss_indir = hdev->rss_cfg.rss_indirection_tbl;
4940 u8 *key = hdev->rss_cfg.rss_hash_key;
4941 u8 hfunc = hdev->rss_cfg.rss_algo;
4944 ret = hclge_comm_set_rss_indir_table(hdev->ae_dev, &hdev->hw.hw,
4949 ret = hclge_comm_set_rss_algo_key(&hdev->hw.hw, hfunc, key);
4953 ret = hclge_comm_set_rss_input_tuple(&hdev->vport[0].nic,
4959 return hclge_init_rss_tc_mode(hdev);
4962 int hclge_bind_ring_with_vector(struct hclge_vport *vport,
4963 int vector_id, bool en,
4964 struct hnae3_ring_chain_node *ring_chain)
4966 struct hclge_dev *hdev = vport->back;
4967 struct hnae3_ring_chain_node *node;
4968 struct hclge_desc desc;
4969 struct hclge_ctrl_vector_chain_cmd *req =
4970 (struct hclge_ctrl_vector_chain_cmd *)desc.data;
4971 enum hclge_comm_cmd_status status;
4972 enum hclge_opcode_type op;
4973 u16 tqp_type_and_id;
4976 op = en ? HCLGE_OPC_ADD_RING_TO_VECTOR : HCLGE_OPC_DEL_RING_TO_VECTOR;
4977 hclge_cmd_setup_basic_desc(&desc, op, false);
4978 req->int_vector_id_l = hnae3_get_field(vector_id,
4979 HCLGE_VECTOR_ID_L_M,
4980 HCLGE_VECTOR_ID_L_S);
4981 req->int_vector_id_h = hnae3_get_field(vector_id,
4982 HCLGE_VECTOR_ID_H_M,
4983 HCLGE_VECTOR_ID_H_S);
4986 for (node = ring_chain; node; node = node->next) {
4987 tqp_type_and_id = le16_to_cpu(req->tqp_type_and_id[i]);
4988 hnae3_set_field(tqp_type_and_id, HCLGE_INT_TYPE_M,
4990 hnae3_get_bit(node->flag, HNAE3_RING_TYPE_B));
4991 hnae3_set_field(tqp_type_and_id, HCLGE_TQP_ID_M,
4992 HCLGE_TQP_ID_S, node->tqp_index);
4993 hnae3_set_field(tqp_type_and_id, HCLGE_INT_GL_IDX_M,
4995 hnae3_get_field(node->int_gl_idx,
4996 HNAE3_RING_GL_IDX_M,
4997 HNAE3_RING_GL_IDX_S));
4998 req->tqp_type_and_id[i] = cpu_to_le16(tqp_type_and_id);
4999 if (++i >= HCLGE_VECTOR_ELEMENTS_PER_CMD) {
5000 req->int_cause_num = HCLGE_VECTOR_ELEMENTS_PER_CMD;
5001 req->vfid = vport->vport_id;
5003 status = hclge_cmd_send(&hdev->hw, &desc, 1);
5005 dev_err(&hdev->pdev->dev,
5006 "Map TQP fail, status is %d.\n",
5012 hclge_cmd_setup_basic_desc(&desc,
5015 req->int_vector_id_l =
5016 hnae3_get_field(vector_id,
5017 HCLGE_VECTOR_ID_L_M,
5018 HCLGE_VECTOR_ID_L_S);
5019 req->int_vector_id_h =
5020 hnae3_get_field(vector_id,
5021 HCLGE_VECTOR_ID_H_M,
5022 HCLGE_VECTOR_ID_H_S);
5027 req->int_cause_num = i;
5028 req->vfid = vport->vport_id;
5029 status = hclge_cmd_send(&hdev->hw, &desc, 1);
5031 dev_err(&hdev->pdev->dev,
5032 "Map TQP fail, status is %d.\n", status);
5040 static int hclge_map_ring_to_vector(struct hnae3_handle *handle, int vector,
5041 struct hnae3_ring_chain_node *ring_chain)
5043 struct hclge_vport *vport = hclge_get_vport(handle);
5044 struct hclge_dev *hdev = vport->back;
5047 vector_id = hclge_get_vector_index(hdev, vector);
5048 if (vector_id < 0) {
5049 dev_err(&hdev->pdev->dev,
5050 "failed to get vector index. vector=%d\n", vector);
5054 return hclge_bind_ring_with_vector(vport, vector_id, true, ring_chain);
5057 static int hclge_unmap_ring_frm_vector(struct hnae3_handle *handle, int vector,
5058 struct hnae3_ring_chain_node *ring_chain)
5060 struct hclge_vport *vport = hclge_get_vport(handle);
5061 struct hclge_dev *hdev = vport->back;
5064 if (test_bit(HCLGE_STATE_RST_HANDLING, &hdev->state))
5067 vector_id = hclge_get_vector_index(hdev, vector);
5068 if (vector_id < 0) {
5069 dev_err(&handle->pdev->dev,
5070 "Get vector index fail. ret =%d\n", vector_id);
5074 ret = hclge_bind_ring_with_vector(vport, vector_id, false, ring_chain);
5076 dev_err(&handle->pdev->dev,
5077 "Unmap ring from vector fail. vectorid=%d, ret =%d\n",
5083 static int hclge_cmd_set_promisc_mode(struct hclge_dev *hdev, u8 vf_id,
5084 bool en_uc, bool en_mc, bool en_bc)
5086 struct hclge_vport *vport = &hdev->vport[vf_id];
5087 struct hnae3_handle *handle = &vport->nic;
5088 struct hclge_promisc_cfg_cmd *req;
5089 struct hclge_desc desc;
5090 bool uc_tx_en = en_uc;
5094 hclge_cmd_setup_basic_desc(&desc, HCLGE_OPC_CFG_PROMISC_MODE, false);
5096 req = (struct hclge_promisc_cfg_cmd *)desc.data;
5099 if (test_bit(HNAE3_PFLAG_LIMIT_PROMISC, &handle->priv_flags))
5102 hnae3_set_bit(promisc_cfg, HCLGE_PROMISC_UC_RX_EN, en_uc ? 1 : 0);
5103 hnae3_set_bit(promisc_cfg, HCLGE_PROMISC_MC_RX_EN, en_mc ? 1 : 0);
5104 hnae3_set_bit(promisc_cfg, HCLGE_PROMISC_BC_RX_EN, en_bc ? 1 : 0);
5105 hnae3_set_bit(promisc_cfg, HCLGE_PROMISC_UC_TX_EN, uc_tx_en ? 1 : 0);
5106 hnae3_set_bit(promisc_cfg, HCLGE_PROMISC_MC_TX_EN, en_mc ? 1 : 0);
5107 hnae3_set_bit(promisc_cfg, HCLGE_PROMISC_BC_TX_EN, en_bc ? 1 : 0);
5108 req->extend_promisc = promisc_cfg;
5110 /* to be compatible with DEVICE_VERSION_V1/2 */
5112 hnae3_set_bit(promisc_cfg, HCLGE_PROMISC_EN_UC, en_uc ? 1 : 0);
5113 hnae3_set_bit(promisc_cfg, HCLGE_PROMISC_EN_MC, en_mc ? 1 : 0);
5114 hnae3_set_bit(promisc_cfg, HCLGE_PROMISC_EN_BC, en_bc ? 1 : 0);
5115 hnae3_set_bit(promisc_cfg, HCLGE_PROMISC_TX_EN, 1);
5116 hnae3_set_bit(promisc_cfg, HCLGE_PROMISC_RX_EN, 1);
5117 req->promisc = promisc_cfg;
5119 ret = hclge_cmd_send(&hdev->hw, &desc, 1);
5121 dev_err(&hdev->pdev->dev,
5122 "failed to set vport %u promisc mode, ret = %d.\n",
5128 int hclge_set_vport_promisc_mode(struct hclge_vport *vport, bool en_uc_pmc,
5129 bool en_mc_pmc, bool en_bc_pmc)
5131 return hclge_cmd_set_promisc_mode(vport->back, vport->vport_id,
5132 en_uc_pmc, en_mc_pmc, en_bc_pmc);
5135 static int hclge_set_promisc_mode(struct hnae3_handle *handle, bool en_uc_pmc,
5138 struct hclge_vport *vport = hclge_get_vport(handle);
5139 struct hclge_dev *hdev = vport->back;
5140 bool en_bc_pmc = true;
5142 /* For device whose version below V2, if broadcast promisc enabled,
5143 * vlan filter is always bypassed. So broadcast promisc should be
5144 * disabled until user enable promisc mode
5146 if (hdev->ae_dev->dev_version < HNAE3_DEVICE_VERSION_V2)
5147 en_bc_pmc = handle->netdev_flags & HNAE3_BPE ? true : false;
5149 return hclge_set_vport_promisc_mode(vport, en_uc_pmc, en_mc_pmc,
5153 static void hclge_request_update_promisc_mode(struct hnae3_handle *handle)
5155 struct hclge_vport *vport = hclge_get_vport(handle);
5157 set_bit(HCLGE_VPORT_STATE_PROMISC_CHANGE, &vport->state);
5160 static void hclge_sync_fd_state(struct hclge_dev *hdev)
5162 if (hlist_empty(&hdev->fd_rule_list))
5163 hdev->fd_active_type = HCLGE_FD_RULE_NONE;
5166 static void hclge_fd_inc_rule_cnt(struct hclge_dev *hdev, u16 location)
5168 if (!test_bit(location, hdev->fd_bmap)) {
5169 set_bit(location, hdev->fd_bmap);
5170 hdev->hclge_fd_rule_num++;
5174 static void hclge_fd_dec_rule_cnt(struct hclge_dev *hdev, u16 location)
5176 if (test_bit(location, hdev->fd_bmap)) {
5177 clear_bit(location, hdev->fd_bmap);
5178 hdev->hclge_fd_rule_num--;
5182 static void hclge_fd_free_node(struct hclge_dev *hdev,
5183 struct hclge_fd_rule *rule)
5185 hlist_del(&rule->rule_node);
5187 hclge_sync_fd_state(hdev);
5190 static void hclge_update_fd_rule_node(struct hclge_dev *hdev,
5191 struct hclge_fd_rule *old_rule,
5192 struct hclge_fd_rule *new_rule,
5193 enum HCLGE_FD_NODE_STATE state)
5196 case HCLGE_FD_TO_ADD:
5197 case HCLGE_FD_ACTIVE:
5198 /* 1) if the new state is TO_ADD, just replace the old rule
5199 * with the same location, no matter its state, because the
5200 * new rule will be configured to the hardware.
5201 * 2) if the new state is ACTIVE, it means the new rule
5202 * has been configured to the hardware, so just replace
5203 * the old rule node with the same location.
5204 * 3) for it doesn't add a new node to the list, so it's
5205 * unnecessary to update the rule number and fd_bmap.
5207 new_rule->rule_node.next = old_rule->rule_node.next;
5208 new_rule->rule_node.pprev = old_rule->rule_node.pprev;
5209 memcpy(old_rule, new_rule, sizeof(*old_rule));
5212 case HCLGE_FD_DELETED:
5213 hclge_fd_dec_rule_cnt(hdev, old_rule->location);
5214 hclge_fd_free_node(hdev, old_rule);
5216 case HCLGE_FD_TO_DEL:
5217 /* if new request is TO_DEL, and old rule is existent
5218 * 1) the state of old rule is TO_DEL, we need do nothing,
5219 * because we delete rule by location, other rule content
5221 * 2) the state of old rule is ACTIVE, we need to change its
5222 * state to TO_DEL, so the rule will be deleted when periodic
5223 * task being scheduled.
5224 * 3) the state of old rule is TO_ADD, it means the rule hasn't
5225 * been added to hardware, so we just delete the rule node from
5226 * fd_rule_list directly.
5228 if (old_rule->state == HCLGE_FD_TO_ADD) {
5229 hclge_fd_dec_rule_cnt(hdev, old_rule->location);
5230 hclge_fd_free_node(hdev, old_rule);
5233 old_rule->state = HCLGE_FD_TO_DEL;
5238 static struct hclge_fd_rule *hclge_find_fd_rule(struct hlist_head *hlist,
5240 struct hclge_fd_rule **parent)
5242 struct hclge_fd_rule *rule;
5243 struct hlist_node *node;
5245 hlist_for_each_entry_safe(rule, node, hlist, rule_node) {
5246 if (rule->location == location)
5248 else if (rule->location > location)
5250 /* record the parent node, use to keep the nodes in fd_rule_list
5259 /* insert fd rule node in ascend order according to rule->location */
5260 static void hclge_fd_insert_rule_node(struct hlist_head *hlist,
5261 struct hclge_fd_rule *rule,
5262 struct hclge_fd_rule *parent)
5264 INIT_HLIST_NODE(&rule->rule_node);
5267 hlist_add_behind(&rule->rule_node, &parent->rule_node);
5269 hlist_add_head(&rule->rule_node, hlist);
5272 static int hclge_fd_set_user_def_cmd(struct hclge_dev *hdev,
5273 struct hclge_fd_user_def_cfg *cfg)
5275 struct hclge_fd_user_def_cfg_cmd *req;
5276 struct hclge_desc desc;
5280 hclge_cmd_setup_basic_desc(&desc, HCLGE_OPC_FD_USER_DEF_OP, false);
5282 req = (struct hclge_fd_user_def_cfg_cmd *)desc.data;
5284 hnae3_set_bit(data, HCLGE_FD_USER_DEF_EN_B, cfg[0].ref_cnt > 0);
5285 hnae3_set_field(data, HCLGE_FD_USER_DEF_OFT_M,
5286 HCLGE_FD_USER_DEF_OFT_S, cfg[0].offset);
5287 req->ol2_cfg = cpu_to_le16(data);
5290 hnae3_set_bit(data, HCLGE_FD_USER_DEF_EN_B, cfg[1].ref_cnt > 0);
5291 hnae3_set_field(data, HCLGE_FD_USER_DEF_OFT_M,
5292 HCLGE_FD_USER_DEF_OFT_S, cfg[1].offset);
5293 req->ol3_cfg = cpu_to_le16(data);
5296 hnae3_set_bit(data, HCLGE_FD_USER_DEF_EN_B, cfg[2].ref_cnt > 0);
5297 hnae3_set_field(data, HCLGE_FD_USER_DEF_OFT_M,
5298 HCLGE_FD_USER_DEF_OFT_S, cfg[2].offset);
5299 req->ol4_cfg = cpu_to_le16(data);
5301 ret = hclge_cmd_send(&hdev->hw, &desc, 1);
5303 dev_err(&hdev->pdev->dev,
5304 "failed to set fd user def data, ret= %d\n", ret);
5308 static void hclge_sync_fd_user_def_cfg(struct hclge_dev *hdev, bool locked)
5312 if (!test_and_clear_bit(HCLGE_STATE_FD_USER_DEF_CHANGED, &hdev->state))
5316 spin_lock_bh(&hdev->fd_rule_lock);
5318 ret = hclge_fd_set_user_def_cmd(hdev, hdev->fd_cfg.user_def_cfg);
5320 set_bit(HCLGE_STATE_FD_USER_DEF_CHANGED, &hdev->state);
5323 spin_unlock_bh(&hdev->fd_rule_lock);
5326 static int hclge_fd_check_user_def_refcnt(struct hclge_dev *hdev,
5327 struct hclge_fd_rule *rule)
5329 struct hlist_head *hlist = &hdev->fd_rule_list;
5330 struct hclge_fd_rule *fd_rule, *parent = NULL;
5331 struct hclge_fd_user_def_info *info, *old_info;
5332 struct hclge_fd_user_def_cfg *cfg;
5334 if (!rule || rule->rule_type != HCLGE_FD_EP_ACTIVE ||
5335 rule->ep.user_def.layer == HCLGE_FD_USER_DEF_NONE)
5338 /* for valid layer is start from 1, so need minus 1 to get the cfg */
5339 cfg = &hdev->fd_cfg.user_def_cfg[rule->ep.user_def.layer - 1];
5340 info = &rule->ep.user_def;
5342 if (!cfg->ref_cnt || cfg->offset == info->offset)
5345 if (cfg->ref_cnt > 1)
5348 fd_rule = hclge_find_fd_rule(hlist, rule->location, &parent);
5350 old_info = &fd_rule->ep.user_def;
5351 if (info->layer == old_info->layer)
5356 dev_err(&hdev->pdev->dev,
5357 "No available offset for layer%d fd rule, each layer only support one user def offset.\n",
5362 static void hclge_fd_inc_user_def_refcnt(struct hclge_dev *hdev,
5363 struct hclge_fd_rule *rule)
5365 struct hclge_fd_user_def_cfg *cfg;
5367 if (!rule || rule->rule_type != HCLGE_FD_EP_ACTIVE ||
5368 rule->ep.user_def.layer == HCLGE_FD_USER_DEF_NONE)
5371 cfg = &hdev->fd_cfg.user_def_cfg[rule->ep.user_def.layer - 1];
5372 if (!cfg->ref_cnt) {
5373 cfg->offset = rule->ep.user_def.offset;
5374 set_bit(HCLGE_STATE_FD_USER_DEF_CHANGED, &hdev->state);
5379 static void hclge_fd_dec_user_def_refcnt(struct hclge_dev *hdev,
5380 struct hclge_fd_rule *rule)
5382 struct hclge_fd_user_def_cfg *cfg;
5384 if (!rule || rule->rule_type != HCLGE_FD_EP_ACTIVE ||
5385 rule->ep.user_def.layer == HCLGE_FD_USER_DEF_NONE)
5388 cfg = &hdev->fd_cfg.user_def_cfg[rule->ep.user_def.layer - 1];
5393 if (!cfg->ref_cnt) {
5395 set_bit(HCLGE_STATE_FD_USER_DEF_CHANGED, &hdev->state);
5399 static void hclge_update_fd_list(struct hclge_dev *hdev,
5400 enum HCLGE_FD_NODE_STATE state, u16 location,
5401 struct hclge_fd_rule *new_rule)
5403 struct hlist_head *hlist = &hdev->fd_rule_list;
5404 struct hclge_fd_rule *fd_rule, *parent = NULL;
5406 fd_rule = hclge_find_fd_rule(hlist, location, &parent);
5408 hclge_fd_dec_user_def_refcnt(hdev, fd_rule);
5409 if (state == HCLGE_FD_ACTIVE)
5410 hclge_fd_inc_user_def_refcnt(hdev, new_rule);
5411 hclge_sync_fd_user_def_cfg(hdev, true);
5413 hclge_update_fd_rule_node(hdev, fd_rule, new_rule, state);
5417 /* it's unlikely to fail here, because we have checked the rule
5420 if (unlikely(state == HCLGE_FD_TO_DEL || state == HCLGE_FD_DELETED)) {
5421 dev_warn(&hdev->pdev->dev,
5422 "failed to delete fd rule %u, it's inexistent\n",
5427 hclge_fd_inc_user_def_refcnt(hdev, new_rule);
5428 hclge_sync_fd_user_def_cfg(hdev, true);
5430 hclge_fd_insert_rule_node(hlist, new_rule, parent);
5431 hclge_fd_inc_rule_cnt(hdev, new_rule->location);
5433 if (state == HCLGE_FD_TO_ADD) {
5434 set_bit(HCLGE_STATE_FD_TBL_CHANGED, &hdev->state);
5435 hclge_task_schedule(hdev, 0);
5439 static int hclge_get_fd_mode(struct hclge_dev *hdev, u8 *fd_mode)
5441 struct hclge_get_fd_mode_cmd *req;
5442 struct hclge_desc desc;
5445 hclge_cmd_setup_basic_desc(&desc, HCLGE_OPC_FD_MODE_CTRL, true);
5447 req = (struct hclge_get_fd_mode_cmd *)desc.data;
5449 ret = hclge_cmd_send(&hdev->hw, &desc, 1);
5451 dev_err(&hdev->pdev->dev, "get fd mode fail, ret=%d\n", ret);
5455 *fd_mode = req->mode;
5460 static int hclge_get_fd_allocation(struct hclge_dev *hdev,
5461 u32 *stage1_entry_num,
5462 u32 *stage2_entry_num,
5463 u16 *stage1_counter_num,
5464 u16 *stage2_counter_num)
5466 struct hclge_get_fd_allocation_cmd *req;
5467 struct hclge_desc desc;
5470 hclge_cmd_setup_basic_desc(&desc, HCLGE_OPC_FD_GET_ALLOCATION, true);
5472 req = (struct hclge_get_fd_allocation_cmd *)desc.data;
5474 ret = hclge_cmd_send(&hdev->hw, &desc, 1);
5476 dev_err(&hdev->pdev->dev, "query fd allocation fail, ret=%d\n",
5481 *stage1_entry_num = le32_to_cpu(req->stage1_entry_num);
5482 *stage2_entry_num = le32_to_cpu(req->stage2_entry_num);
5483 *stage1_counter_num = le16_to_cpu(req->stage1_counter_num);
5484 *stage2_counter_num = le16_to_cpu(req->stage2_counter_num);
5489 static int hclge_set_fd_key_config(struct hclge_dev *hdev,
5490 enum HCLGE_FD_STAGE stage_num)
5492 struct hclge_set_fd_key_config_cmd *req;
5493 struct hclge_fd_key_cfg *stage;
5494 struct hclge_desc desc;
5497 hclge_cmd_setup_basic_desc(&desc, HCLGE_OPC_FD_KEY_CONFIG, false);
5499 req = (struct hclge_set_fd_key_config_cmd *)desc.data;
5500 stage = &hdev->fd_cfg.key_cfg[stage_num];
5501 req->stage = stage_num;
5502 req->key_select = stage->key_sel;
5503 req->inner_sipv6_word_en = stage->inner_sipv6_word_en;
5504 req->inner_dipv6_word_en = stage->inner_dipv6_word_en;
5505 req->outer_sipv6_word_en = stage->outer_sipv6_word_en;
5506 req->outer_dipv6_word_en = stage->outer_dipv6_word_en;
5507 req->tuple_mask = cpu_to_le32(~stage->tuple_active);
5508 req->meta_data_mask = cpu_to_le32(~stage->meta_data_active);
5510 ret = hclge_cmd_send(&hdev->hw, &desc, 1);
5512 dev_err(&hdev->pdev->dev, "set fd key fail, ret=%d\n", ret);
5517 static void hclge_fd_disable_user_def(struct hclge_dev *hdev)
5519 struct hclge_fd_user_def_cfg *cfg = hdev->fd_cfg.user_def_cfg;
5521 spin_lock_bh(&hdev->fd_rule_lock);
5522 memset(cfg, 0, sizeof(hdev->fd_cfg.user_def_cfg));
5523 spin_unlock_bh(&hdev->fd_rule_lock);
5525 hclge_fd_set_user_def_cmd(hdev, cfg);
5528 static int hclge_init_fd_config(struct hclge_dev *hdev)
5530 #define LOW_2_WORDS 0x03
5531 struct hclge_fd_key_cfg *key_cfg;
5534 if (!hnae3_ae_dev_fd_supported(hdev->ae_dev))
5537 ret = hclge_get_fd_mode(hdev, &hdev->fd_cfg.fd_mode);
5541 switch (hdev->fd_cfg.fd_mode) {
5542 case HCLGE_FD_MODE_DEPTH_2K_WIDTH_400B_STAGE_1:
5543 hdev->fd_cfg.max_key_length = MAX_KEY_LENGTH;
5545 case HCLGE_FD_MODE_DEPTH_4K_WIDTH_200B_STAGE_1:
5546 hdev->fd_cfg.max_key_length = MAX_KEY_LENGTH / 2;
5549 dev_err(&hdev->pdev->dev,
5550 "Unsupported flow director mode %u\n",
5551 hdev->fd_cfg.fd_mode);
5555 key_cfg = &hdev->fd_cfg.key_cfg[HCLGE_FD_STAGE_1];
5556 key_cfg->key_sel = HCLGE_FD_KEY_BASE_ON_TUPLE;
5557 key_cfg->inner_sipv6_word_en = LOW_2_WORDS;
5558 key_cfg->inner_dipv6_word_en = LOW_2_WORDS;
5559 key_cfg->outer_sipv6_word_en = 0;
5560 key_cfg->outer_dipv6_word_en = 0;
5562 key_cfg->tuple_active = BIT(INNER_VLAN_TAG_FST) | BIT(INNER_ETH_TYPE) |
5563 BIT(INNER_IP_PROTO) | BIT(INNER_IP_TOS) |
5564 BIT(INNER_SRC_IP) | BIT(INNER_DST_IP) |
5565 BIT(INNER_SRC_PORT) | BIT(INNER_DST_PORT);
5567 /* If use max 400bit key, we can support tuples for ether type */
5568 if (hdev->fd_cfg.fd_mode == HCLGE_FD_MODE_DEPTH_2K_WIDTH_400B_STAGE_1) {
5569 key_cfg->tuple_active |=
5570 BIT(INNER_DST_MAC) | BIT(INNER_SRC_MAC);
5571 if (hdev->ae_dev->dev_version >= HNAE3_DEVICE_VERSION_V3)
5572 key_cfg->tuple_active |= HCLGE_FD_TUPLE_USER_DEF_TUPLES;
5575 /* roce_type is used to filter roce frames
5576 * dst_vport is used to specify the rule
5578 key_cfg->meta_data_active = BIT(ROCE_TYPE) | BIT(DST_VPORT);
5580 ret = hclge_get_fd_allocation(hdev,
5581 &hdev->fd_cfg.rule_num[HCLGE_FD_STAGE_1],
5582 &hdev->fd_cfg.rule_num[HCLGE_FD_STAGE_2],
5583 &hdev->fd_cfg.cnt_num[HCLGE_FD_STAGE_1],
5584 &hdev->fd_cfg.cnt_num[HCLGE_FD_STAGE_2]);
5588 return hclge_set_fd_key_config(hdev, HCLGE_FD_STAGE_1);
5591 static int hclge_fd_tcam_config(struct hclge_dev *hdev, u8 stage, bool sel_x,
5592 int loc, u8 *key, bool is_add)
5594 struct hclge_fd_tcam_config_1_cmd *req1;
5595 struct hclge_fd_tcam_config_2_cmd *req2;
5596 struct hclge_fd_tcam_config_3_cmd *req3;
5597 struct hclge_desc desc[3];
5600 hclge_cmd_setup_basic_desc(&desc[0], HCLGE_OPC_FD_TCAM_OP, false);
5601 desc[0].flag |= cpu_to_le16(HCLGE_COMM_CMD_FLAG_NEXT);
5602 hclge_cmd_setup_basic_desc(&desc[1], HCLGE_OPC_FD_TCAM_OP, false);
5603 desc[1].flag |= cpu_to_le16(HCLGE_COMM_CMD_FLAG_NEXT);
5604 hclge_cmd_setup_basic_desc(&desc[2], HCLGE_OPC_FD_TCAM_OP, false);
5606 req1 = (struct hclge_fd_tcam_config_1_cmd *)desc[0].data;
5607 req2 = (struct hclge_fd_tcam_config_2_cmd *)desc[1].data;
5608 req3 = (struct hclge_fd_tcam_config_3_cmd *)desc[2].data;
5610 req1->stage = stage;
5611 req1->xy_sel = sel_x ? 1 : 0;
5612 hnae3_set_bit(req1->port_info, HCLGE_FD_EPORT_SW_EN_B, 0);
5613 req1->index = cpu_to_le32(loc);
5614 req1->entry_vld = sel_x ? is_add : 0;
5617 memcpy(req1->tcam_data, &key[0], sizeof(req1->tcam_data));
5618 memcpy(req2->tcam_data, &key[sizeof(req1->tcam_data)],
5619 sizeof(req2->tcam_data));
5620 memcpy(req3->tcam_data, &key[sizeof(req1->tcam_data) +
5621 sizeof(req2->tcam_data)], sizeof(req3->tcam_data));
5624 ret = hclge_cmd_send(&hdev->hw, desc, 3);
5626 dev_err(&hdev->pdev->dev,
5627 "config tcam key fail, ret=%d\n",
5633 static int hclge_fd_ad_config(struct hclge_dev *hdev, u8 stage, int loc,
5634 struct hclge_fd_ad_data *action)
5636 struct hnae3_ae_dev *ae_dev = pci_get_drvdata(hdev->pdev);
5637 struct hclge_fd_ad_config_cmd *req;
5638 struct hclge_desc desc;
5642 hclge_cmd_setup_basic_desc(&desc, HCLGE_OPC_FD_AD_OP, false);
5644 req = (struct hclge_fd_ad_config_cmd *)desc.data;
5645 req->index = cpu_to_le32(loc);
5648 hnae3_set_bit(ad_data, HCLGE_FD_AD_WR_RULE_ID_B,
5649 action->write_rule_id_to_bd);
5650 hnae3_set_field(ad_data, HCLGE_FD_AD_RULE_ID_M, HCLGE_FD_AD_RULE_ID_S,
5652 if (test_bit(HNAE3_DEV_SUPPORT_FD_FORWARD_TC_B, ae_dev->caps)) {
5653 hnae3_set_bit(ad_data, HCLGE_FD_AD_TC_OVRD_B,
5654 action->override_tc);
5655 hnae3_set_field(ad_data, HCLGE_FD_AD_TC_SIZE_M,
5656 HCLGE_FD_AD_TC_SIZE_S, (u32)action->tc_size);
5659 hnae3_set_bit(ad_data, HCLGE_FD_AD_DROP_B, action->drop_packet);
5660 hnae3_set_bit(ad_data, HCLGE_FD_AD_DIRECT_QID_B,
5661 action->forward_to_direct_queue);
5662 hnae3_set_field(ad_data, HCLGE_FD_AD_QID_M, HCLGE_FD_AD_QID_S,
5664 hnae3_set_bit(ad_data, HCLGE_FD_AD_USE_COUNTER_B, action->use_counter);
5665 hnae3_set_field(ad_data, HCLGE_FD_AD_COUNTER_NUM_M,
5666 HCLGE_FD_AD_COUNTER_NUM_S, action->counter_id);
5667 hnae3_set_bit(ad_data, HCLGE_FD_AD_NXT_STEP_B, action->use_next_stage);
5668 hnae3_set_field(ad_data, HCLGE_FD_AD_NXT_KEY_M, HCLGE_FD_AD_NXT_KEY_S,
5669 action->counter_id);
5671 req->ad_data = cpu_to_le64(ad_data);
5672 ret = hclge_cmd_send(&hdev->hw, &desc, 1);
5674 dev_err(&hdev->pdev->dev, "fd ad config fail, ret=%d\n", ret);
5679 static bool hclge_fd_convert_tuple(u32 tuple_bit, u8 *key_x, u8 *key_y,
5680 struct hclge_fd_rule *rule)
5682 int offset, moffset, ip_offset;
5683 enum HCLGE_FD_KEY_OPT key_opt;
5684 u16 tmp_x_s, tmp_y_s;
5685 u32 tmp_x_l, tmp_y_l;
5689 if (rule->unused_tuple & BIT(tuple_bit))
5692 key_opt = tuple_key_info[tuple_bit].key_opt;
5693 offset = tuple_key_info[tuple_bit].offset;
5694 moffset = tuple_key_info[tuple_bit].moffset;
5698 calc_x(*key_x, p[offset], p[moffset]);
5699 calc_y(*key_y, p[offset], p[moffset]);
5703 calc_x(tmp_x_s, *(u16 *)(&p[offset]), *(u16 *)(&p[moffset]));
5704 calc_y(tmp_y_s, *(u16 *)(&p[offset]), *(u16 *)(&p[moffset]));
5705 *(__le16 *)key_x = cpu_to_le16(tmp_x_s);
5706 *(__le16 *)key_y = cpu_to_le16(tmp_y_s);
5710 calc_x(tmp_x_l, *(u32 *)(&p[offset]), *(u32 *)(&p[moffset]));
5711 calc_y(tmp_y_l, *(u32 *)(&p[offset]), *(u32 *)(&p[moffset]));
5712 *(__le32 *)key_x = cpu_to_le32(tmp_x_l);
5713 *(__le32 *)key_y = cpu_to_le32(tmp_y_l);
5717 for (i = 0; i < ETH_ALEN; i++) {
5718 calc_x(key_x[ETH_ALEN - 1 - i], p[offset + i],
5720 calc_y(key_y[ETH_ALEN - 1 - i], p[offset + i],
5726 ip_offset = IPV4_INDEX * sizeof(u32);
5727 calc_x(tmp_x_l, *(u32 *)(&p[offset + ip_offset]),
5728 *(u32 *)(&p[moffset + ip_offset]));
5729 calc_y(tmp_y_l, *(u32 *)(&p[offset + ip_offset]),
5730 *(u32 *)(&p[moffset + ip_offset]));
5731 *(__le32 *)key_x = cpu_to_le32(tmp_x_l);
5732 *(__le32 *)key_y = cpu_to_le32(tmp_y_l);
5740 static u32 hclge_get_port_number(enum HLCGE_PORT_TYPE port_type, u8 pf_id,
5741 u8 vf_id, u8 network_port_id)
5743 u32 port_number = 0;
5745 if (port_type == HOST_PORT) {
5746 hnae3_set_field(port_number, HCLGE_PF_ID_M, HCLGE_PF_ID_S,
5748 hnae3_set_field(port_number, HCLGE_VF_ID_M, HCLGE_VF_ID_S,
5750 hnae3_set_bit(port_number, HCLGE_PORT_TYPE_B, HOST_PORT);
5752 hnae3_set_field(port_number, HCLGE_NETWORK_PORT_ID_M,
5753 HCLGE_NETWORK_PORT_ID_S, network_port_id);
5754 hnae3_set_bit(port_number, HCLGE_PORT_TYPE_B, NETWORK_PORT);
5760 static void hclge_fd_convert_meta_data(struct hclge_fd_key_cfg *key_cfg,
5761 __le32 *key_x, __le32 *key_y,
5762 struct hclge_fd_rule *rule)
5764 u32 tuple_bit, meta_data = 0, tmp_x, tmp_y, port_number;
5765 u8 cur_pos = 0, tuple_size, shift_bits;
5768 for (i = 0; i < MAX_META_DATA; i++) {
5769 tuple_size = meta_data_key_info[i].key_length;
5770 tuple_bit = key_cfg->meta_data_active & BIT(i);
5772 switch (tuple_bit) {
5773 case BIT(ROCE_TYPE):
5774 hnae3_set_bit(meta_data, cur_pos, NIC_PACKET);
5775 cur_pos += tuple_size;
5777 case BIT(DST_VPORT):
5778 port_number = hclge_get_port_number(HOST_PORT, 0,
5780 hnae3_set_field(meta_data,
5781 GENMASK(cur_pos + tuple_size, cur_pos),
5782 cur_pos, port_number);
5783 cur_pos += tuple_size;
5790 calc_x(tmp_x, meta_data, 0xFFFFFFFF);
5791 calc_y(tmp_y, meta_data, 0xFFFFFFFF);
5792 shift_bits = sizeof(meta_data) * 8 - cur_pos;
5794 *key_x = cpu_to_le32(tmp_x << shift_bits);
5795 *key_y = cpu_to_le32(tmp_y << shift_bits);
5798 /* A complete key is combined with meta data key and tuple key.
5799 * Meta data key is stored at the MSB region, and tuple key is stored at
5800 * the LSB region, unused bits will be filled 0.
5802 static int hclge_config_key(struct hclge_dev *hdev, u8 stage,
5803 struct hclge_fd_rule *rule)
5805 struct hclge_fd_key_cfg *key_cfg = &hdev->fd_cfg.key_cfg[stage];
5806 u8 key_x[MAX_KEY_BYTES], key_y[MAX_KEY_BYTES];
5807 u8 *cur_key_x, *cur_key_y;
5808 u8 meta_data_region;
5813 memset(key_x, 0, sizeof(key_x));
5814 memset(key_y, 0, sizeof(key_y));
5818 for (i = 0; i < MAX_TUPLE; i++) {
5821 tuple_size = tuple_key_info[i].key_length / 8;
5822 if (!(key_cfg->tuple_active & BIT(i)))
5825 tuple_valid = hclge_fd_convert_tuple(i, cur_key_x,
5828 cur_key_x += tuple_size;
5829 cur_key_y += tuple_size;
5833 meta_data_region = hdev->fd_cfg.max_key_length / 8 -
5834 MAX_META_DATA_LENGTH / 8;
5836 hclge_fd_convert_meta_data(key_cfg,
5837 (__le32 *)(key_x + meta_data_region),
5838 (__le32 *)(key_y + meta_data_region),
5841 ret = hclge_fd_tcam_config(hdev, stage, false, rule->location, key_y,
5844 dev_err(&hdev->pdev->dev,
5845 "fd key_y config fail, loc=%u, ret=%d\n",
5846 rule->queue_id, ret);
5850 ret = hclge_fd_tcam_config(hdev, stage, true, rule->location, key_x,
5853 dev_err(&hdev->pdev->dev,
5854 "fd key_x config fail, loc=%u, ret=%d\n",
5855 rule->queue_id, ret);
5859 static int hclge_config_action(struct hclge_dev *hdev, u8 stage,
5860 struct hclge_fd_rule *rule)
5862 struct hclge_vport *vport = hdev->vport;
5863 struct hnae3_knic_private_info *kinfo = &vport->nic.kinfo;
5864 struct hclge_fd_ad_data ad_data;
5866 memset(&ad_data, 0, sizeof(struct hclge_fd_ad_data));
5867 ad_data.ad_id = rule->location;
5869 if (rule->action == HCLGE_FD_ACTION_DROP_PACKET) {
5870 ad_data.drop_packet = true;
5871 } else if (rule->action == HCLGE_FD_ACTION_SELECT_TC) {
5872 ad_data.override_tc = true;
5874 kinfo->tc_info.tqp_offset[rule->cls_flower.tc];
5876 ilog2(kinfo->tc_info.tqp_count[rule->cls_flower.tc]);
5878 ad_data.forward_to_direct_queue = true;
5879 ad_data.queue_id = rule->queue_id;
5882 if (hdev->fd_cfg.cnt_num[HCLGE_FD_STAGE_1]) {
5883 ad_data.use_counter = true;
5884 ad_data.counter_id = rule->vf_id %
5885 hdev->fd_cfg.cnt_num[HCLGE_FD_STAGE_1];
5887 ad_data.use_counter = false;
5888 ad_data.counter_id = 0;
5891 ad_data.use_next_stage = false;
5892 ad_data.next_input_key = 0;
5894 ad_data.write_rule_id_to_bd = true;
5895 ad_data.rule_id = rule->location;
5897 return hclge_fd_ad_config(hdev, stage, ad_data.ad_id, &ad_data);
5900 static int hclge_fd_check_tcpip4_tuple(struct ethtool_tcpip4_spec *spec,
5903 if (!spec || !unused_tuple)
5906 *unused_tuple |= BIT(INNER_SRC_MAC) | BIT(INNER_DST_MAC);
5909 *unused_tuple |= BIT(INNER_SRC_IP);
5912 *unused_tuple |= BIT(INNER_DST_IP);
5915 *unused_tuple |= BIT(INNER_SRC_PORT);
5918 *unused_tuple |= BIT(INNER_DST_PORT);
5921 *unused_tuple |= BIT(INNER_IP_TOS);
5926 static int hclge_fd_check_ip4_tuple(struct ethtool_usrip4_spec *spec,
5929 if (!spec || !unused_tuple)
5932 *unused_tuple |= BIT(INNER_SRC_MAC) | BIT(INNER_DST_MAC) |
5933 BIT(INNER_SRC_PORT) | BIT(INNER_DST_PORT);
5936 *unused_tuple |= BIT(INNER_SRC_IP);
5939 *unused_tuple |= BIT(INNER_DST_IP);
5942 *unused_tuple |= BIT(INNER_IP_TOS);
5945 *unused_tuple |= BIT(INNER_IP_PROTO);
5947 if (spec->l4_4_bytes)
5950 if (spec->ip_ver != ETH_RX_NFC_IP4)
5956 static int hclge_fd_check_tcpip6_tuple(struct ethtool_tcpip6_spec *spec,
5959 if (!spec || !unused_tuple)
5962 *unused_tuple |= BIT(INNER_SRC_MAC) | BIT(INNER_DST_MAC);
5964 /* check whether src/dst ip address used */
5965 if (ipv6_addr_any((struct in6_addr *)spec->ip6src))
5966 *unused_tuple |= BIT(INNER_SRC_IP);
5968 if (ipv6_addr_any((struct in6_addr *)spec->ip6dst))
5969 *unused_tuple |= BIT(INNER_DST_IP);
5972 *unused_tuple |= BIT(INNER_SRC_PORT);
5975 *unused_tuple |= BIT(INNER_DST_PORT);
5978 *unused_tuple |= BIT(INNER_IP_TOS);
5983 static int hclge_fd_check_ip6_tuple(struct ethtool_usrip6_spec *spec,
5986 if (!spec || !unused_tuple)
5989 *unused_tuple |= BIT(INNER_SRC_MAC) | BIT(INNER_DST_MAC) |
5990 BIT(INNER_SRC_PORT) | BIT(INNER_DST_PORT);
5992 /* check whether src/dst ip address used */
5993 if (ipv6_addr_any((struct in6_addr *)spec->ip6src))
5994 *unused_tuple |= BIT(INNER_SRC_IP);
5996 if (ipv6_addr_any((struct in6_addr *)spec->ip6dst))
5997 *unused_tuple |= BIT(INNER_DST_IP);
5999 if (!spec->l4_proto)
6000 *unused_tuple |= BIT(INNER_IP_PROTO);
6003 *unused_tuple |= BIT(INNER_IP_TOS);
6005 if (spec->l4_4_bytes)
6011 static int hclge_fd_check_ether_tuple(struct ethhdr *spec, u32 *unused_tuple)
6013 if (!spec || !unused_tuple)
6016 *unused_tuple |= BIT(INNER_SRC_IP) | BIT(INNER_DST_IP) |
6017 BIT(INNER_SRC_PORT) | BIT(INNER_DST_PORT) |
6018 BIT(INNER_IP_TOS) | BIT(INNER_IP_PROTO);
6020 if (is_zero_ether_addr(spec->h_source))
6021 *unused_tuple |= BIT(INNER_SRC_MAC);
6023 if (is_zero_ether_addr(spec->h_dest))
6024 *unused_tuple |= BIT(INNER_DST_MAC);
6027 *unused_tuple |= BIT(INNER_ETH_TYPE);
6032 static int hclge_fd_check_ext_tuple(struct hclge_dev *hdev,
6033 struct ethtool_rx_flow_spec *fs,
6036 if (fs->flow_type & FLOW_EXT) {
6037 if (fs->h_ext.vlan_etype) {
6038 dev_err(&hdev->pdev->dev, "vlan-etype is not supported!\n");
6042 if (!fs->h_ext.vlan_tci)
6043 *unused_tuple |= BIT(INNER_VLAN_TAG_FST);
6045 if (fs->m_ext.vlan_tci &&
6046 be16_to_cpu(fs->h_ext.vlan_tci) >= VLAN_N_VID) {
6047 dev_err(&hdev->pdev->dev,
6048 "failed to config vlan_tci, invalid vlan_tci: %u, max is %d.\n",
6049 ntohs(fs->h_ext.vlan_tci), VLAN_N_VID - 1);
6053 *unused_tuple |= BIT(INNER_VLAN_TAG_FST);
6056 if (fs->flow_type & FLOW_MAC_EXT) {
6057 if (hdev->fd_cfg.fd_mode !=
6058 HCLGE_FD_MODE_DEPTH_2K_WIDTH_400B_STAGE_1) {
6059 dev_err(&hdev->pdev->dev,
6060 "FLOW_MAC_EXT is not supported in current fd mode!\n");
6064 if (is_zero_ether_addr(fs->h_ext.h_dest))
6065 *unused_tuple |= BIT(INNER_DST_MAC);
6067 *unused_tuple &= ~BIT(INNER_DST_MAC);
6073 static int hclge_fd_get_user_def_layer(u32 flow_type, u32 *unused_tuple,
6074 struct hclge_fd_user_def_info *info)
6076 switch (flow_type) {
6078 info->layer = HCLGE_FD_USER_DEF_L2;
6079 *unused_tuple &= ~BIT(INNER_L2_RSV);
6082 case IPV6_USER_FLOW:
6083 info->layer = HCLGE_FD_USER_DEF_L3;
6084 *unused_tuple &= ~BIT(INNER_L3_RSV);
6090 info->layer = HCLGE_FD_USER_DEF_L4;
6091 *unused_tuple &= ~BIT(INNER_L4_RSV);
6100 static bool hclge_fd_is_user_def_all_masked(struct ethtool_rx_flow_spec *fs)
6102 return be32_to_cpu(fs->m_ext.data[1] | fs->m_ext.data[0]) == 0;
6105 static int hclge_fd_parse_user_def_field(struct hclge_dev *hdev,
6106 struct ethtool_rx_flow_spec *fs,
6108 struct hclge_fd_user_def_info *info)
6110 u32 tuple_active = hdev->fd_cfg.key_cfg[HCLGE_FD_STAGE_1].tuple_active;
6111 u32 flow_type = fs->flow_type & ~(FLOW_EXT | FLOW_MAC_EXT);
6112 u16 data, offset, data_mask, offset_mask;
6115 info->layer = HCLGE_FD_USER_DEF_NONE;
6116 *unused_tuple |= HCLGE_FD_TUPLE_USER_DEF_TUPLES;
6118 if (!(fs->flow_type & FLOW_EXT) || hclge_fd_is_user_def_all_masked(fs))
6121 /* user-def data from ethtool is 64 bit value, the bit0~15 is used
6122 * for data, and bit32~47 is used for offset.
6124 data = be32_to_cpu(fs->h_ext.data[1]) & HCLGE_FD_USER_DEF_DATA;
6125 data_mask = be32_to_cpu(fs->m_ext.data[1]) & HCLGE_FD_USER_DEF_DATA;
6126 offset = be32_to_cpu(fs->h_ext.data[0]) & HCLGE_FD_USER_DEF_OFFSET;
6127 offset_mask = be32_to_cpu(fs->m_ext.data[0]) & HCLGE_FD_USER_DEF_OFFSET;
6129 if (!(tuple_active & HCLGE_FD_TUPLE_USER_DEF_TUPLES)) {
6130 dev_err(&hdev->pdev->dev, "user-def bytes are not supported\n");
6134 if (offset > HCLGE_FD_MAX_USER_DEF_OFFSET) {
6135 dev_err(&hdev->pdev->dev,
6136 "user-def offset[%u] should be no more than %u\n",
6137 offset, HCLGE_FD_MAX_USER_DEF_OFFSET);
6141 if (offset_mask != HCLGE_FD_USER_DEF_OFFSET_UNMASK) {
6142 dev_err(&hdev->pdev->dev, "user-def offset can't be masked\n");
6146 ret = hclge_fd_get_user_def_layer(flow_type, unused_tuple, info);
6148 dev_err(&hdev->pdev->dev,
6149 "unsupported flow type for user-def bytes, ret = %d\n",
6155 info->data_mask = data_mask;
6156 info->offset = offset;
6161 static int hclge_fd_check_spec(struct hclge_dev *hdev,
6162 struct ethtool_rx_flow_spec *fs,
6164 struct hclge_fd_user_def_info *info)
6169 if (fs->location >= hdev->fd_cfg.rule_num[HCLGE_FD_STAGE_1]) {
6170 dev_err(&hdev->pdev->dev,
6171 "failed to config fd rules, invalid rule location: %u, max is %u\n.",
6173 hdev->fd_cfg.rule_num[HCLGE_FD_STAGE_1] - 1);
6177 ret = hclge_fd_parse_user_def_field(hdev, fs, unused_tuple, info);
6181 flow_type = fs->flow_type & ~(FLOW_EXT | FLOW_MAC_EXT);
6182 switch (flow_type) {
6186 ret = hclge_fd_check_tcpip4_tuple(&fs->h_u.tcp_ip4_spec,
6190 ret = hclge_fd_check_ip4_tuple(&fs->h_u.usr_ip4_spec,
6196 ret = hclge_fd_check_tcpip6_tuple(&fs->h_u.tcp_ip6_spec,
6199 case IPV6_USER_FLOW:
6200 ret = hclge_fd_check_ip6_tuple(&fs->h_u.usr_ip6_spec,
6204 if (hdev->fd_cfg.fd_mode !=
6205 HCLGE_FD_MODE_DEPTH_2K_WIDTH_400B_STAGE_1) {
6206 dev_err(&hdev->pdev->dev,
6207 "ETHER_FLOW is not supported in current fd mode!\n");
6211 ret = hclge_fd_check_ether_tuple(&fs->h_u.ether_spec,
6215 dev_err(&hdev->pdev->dev,
6216 "unsupported protocol type, protocol type = %#x\n",
6222 dev_err(&hdev->pdev->dev,
6223 "failed to check flow union tuple, ret = %d\n",
6228 return hclge_fd_check_ext_tuple(hdev, fs, unused_tuple);
6231 static void hclge_fd_get_tcpip4_tuple(struct hclge_dev *hdev,
6232 struct ethtool_rx_flow_spec *fs,
6233 struct hclge_fd_rule *rule, u8 ip_proto)
6235 rule->tuples.src_ip[IPV4_INDEX] =
6236 be32_to_cpu(fs->h_u.tcp_ip4_spec.ip4src);
6237 rule->tuples_mask.src_ip[IPV4_INDEX] =
6238 be32_to_cpu(fs->m_u.tcp_ip4_spec.ip4src);
6240 rule->tuples.dst_ip[IPV4_INDEX] =
6241 be32_to_cpu(fs->h_u.tcp_ip4_spec.ip4dst);
6242 rule->tuples_mask.dst_ip[IPV4_INDEX] =
6243 be32_to_cpu(fs->m_u.tcp_ip4_spec.ip4dst);
6245 rule->tuples.src_port = be16_to_cpu(fs->h_u.tcp_ip4_spec.psrc);
6246 rule->tuples_mask.src_port = be16_to_cpu(fs->m_u.tcp_ip4_spec.psrc);
6248 rule->tuples.dst_port = be16_to_cpu(fs->h_u.tcp_ip4_spec.pdst);
6249 rule->tuples_mask.dst_port = be16_to_cpu(fs->m_u.tcp_ip4_spec.pdst);
6251 rule->tuples.ip_tos = fs->h_u.tcp_ip4_spec.tos;
6252 rule->tuples_mask.ip_tos = fs->m_u.tcp_ip4_spec.tos;
6254 rule->tuples.ether_proto = ETH_P_IP;
6255 rule->tuples_mask.ether_proto = 0xFFFF;
6257 rule->tuples.ip_proto = ip_proto;
6258 rule->tuples_mask.ip_proto = 0xFF;
6261 static void hclge_fd_get_ip4_tuple(struct hclge_dev *hdev,
6262 struct ethtool_rx_flow_spec *fs,
6263 struct hclge_fd_rule *rule)
6265 rule->tuples.src_ip[IPV4_INDEX] =
6266 be32_to_cpu(fs->h_u.usr_ip4_spec.ip4src);
6267 rule->tuples_mask.src_ip[IPV4_INDEX] =
6268 be32_to_cpu(fs->m_u.usr_ip4_spec.ip4src);
6270 rule->tuples.dst_ip[IPV4_INDEX] =
6271 be32_to_cpu(fs->h_u.usr_ip4_spec.ip4dst);
6272 rule->tuples_mask.dst_ip[IPV4_INDEX] =
6273 be32_to_cpu(fs->m_u.usr_ip4_spec.ip4dst);
6275 rule->tuples.ip_tos = fs->h_u.usr_ip4_spec.tos;
6276 rule->tuples_mask.ip_tos = fs->m_u.usr_ip4_spec.tos;
6278 rule->tuples.ip_proto = fs->h_u.usr_ip4_spec.proto;
6279 rule->tuples_mask.ip_proto = fs->m_u.usr_ip4_spec.proto;
6281 rule->tuples.ether_proto = ETH_P_IP;
6282 rule->tuples_mask.ether_proto = 0xFFFF;
6285 static void hclge_fd_get_tcpip6_tuple(struct hclge_dev *hdev,
6286 struct ethtool_rx_flow_spec *fs,
6287 struct hclge_fd_rule *rule, u8 ip_proto)
6289 be32_to_cpu_array(rule->tuples.src_ip, fs->h_u.tcp_ip6_spec.ip6src,
6291 be32_to_cpu_array(rule->tuples_mask.src_ip, fs->m_u.tcp_ip6_spec.ip6src,
6294 be32_to_cpu_array(rule->tuples.dst_ip, fs->h_u.tcp_ip6_spec.ip6dst,
6296 be32_to_cpu_array(rule->tuples_mask.dst_ip, fs->m_u.tcp_ip6_spec.ip6dst,
6299 rule->tuples.src_port = be16_to_cpu(fs->h_u.tcp_ip6_spec.psrc);
6300 rule->tuples_mask.src_port = be16_to_cpu(fs->m_u.tcp_ip6_spec.psrc);
6302 rule->tuples.dst_port = be16_to_cpu(fs->h_u.tcp_ip6_spec.pdst);
6303 rule->tuples_mask.dst_port = be16_to_cpu(fs->m_u.tcp_ip6_spec.pdst);
6305 rule->tuples.ether_proto = ETH_P_IPV6;
6306 rule->tuples_mask.ether_proto = 0xFFFF;
6308 rule->tuples.ip_tos = fs->h_u.tcp_ip6_spec.tclass;
6309 rule->tuples_mask.ip_tos = fs->m_u.tcp_ip6_spec.tclass;
6311 rule->tuples.ip_proto = ip_proto;
6312 rule->tuples_mask.ip_proto = 0xFF;
6315 static void hclge_fd_get_ip6_tuple(struct hclge_dev *hdev,
6316 struct ethtool_rx_flow_spec *fs,
6317 struct hclge_fd_rule *rule)
6319 be32_to_cpu_array(rule->tuples.src_ip, fs->h_u.usr_ip6_spec.ip6src,
6321 be32_to_cpu_array(rule->tuples_mask.src_ip, fs->m_u.usr_ip6_spec.ip6src,
6324 be32_to_cpu_array(rule->tuples.dst_ip, fs->h_u.usr_ip6_spec.ip6dst,
6326 be32_to_cpu_array(rule->tuples_mask.dst_ip, fs->m_u.usr_ip6_spec.ip6dst,
6329 rule->tuples.ip_proto = fs->h_u.usr_ip6_spec.l4_proto;
6330 rule->tuples_mask.ip_proto = fs->m_u.usr_ip6_spec.l4_proto;
6332 rule->tuples.ip_tos = fs->h_u.tcp_ip6_spec.tclass;
6333 rule->tuples_mask.ip_tos = fs->m_u.tcp_ip6_spec.tclass;
6335 rule->tuples.ether_proto = ETH_P_IPV6;
6336 rule->tuples_mask.ether_proto = 0xFFFF;
6339 static void hclge_fd_get_ether_tuple(struct hclge_dev *hdev,
6340 struct ethtool_rx_flow_spec *fs,
6341 struct hclge_fd_rule *rule)
6343 ether_addr_copy(rule->tuples.src_mac, fs->h_u.ether_spec.h_source);
6344 ether_addr_copy(rule->tuples_mask.src_mac, fs->m_u.ether_spec.h_source);
6346 ether_addr_copy(rule->tuples.dst_mac, fs->h_u.ether_spec.h_dest);
6347 ether_addr_copy(rule->tuples_mask.dst_mac, fs->m_u.ether_spec.h_dest);
6349 rule->tuples.ether_proto = be16_to_cpu(fs->h_u.ether_spec.h_proto);
6350 rule->tuples_mask.ether_proto = be16_to_cpu(fs->m_u.ether_spec.h_proto);
6353 static void hclge_fd_get_user_def_tuple(struct hclge_fd_user_def_info *info,
6354 struct hclge_fd_rule *rule)
6356 switch (info->layer) {
6357 case HCLGE_FD_USER_DEF_L2:
6358 rule->tuples.l2_user_def = info->data;
6359 rule->tuples_mask.l2_user_def = info->data_mask;
6361 case HCLGE_FD_USER_DEF_L3:
6362 rule->tuples.l3_user_def = info->data;
6363 rule->tuples_mask.l3_user_def = info->data_mask;
6365 case HCLGE_FD_USER_DEF_L4:
6366 rule->tuples.l4_user_def = (u32)info->data << 16;
6367 rule->tuples_mask.l4_user_def = (u32)info->data_mask << 16;
6373 rule->ep.user_def = *info;
6376 static int hclge_fd_get_tuple(struct hclge_dev *hdev,
6377 struct ethtool_rx_flow_spec *fs,
6378 struct hclge_fd_rule *rule,
6379 struct hclge_fd_user_def_info *info)
6381 u32 flow_type = fs->flow_type & ~(FLOW_EXT | FLOW_MAC_EXT);
6383 switch (flow_type) {
6385 hclge_fd_get_tcpip4_tuple(hdev, fs, rule, IPPROTO_SCTP);
6388 hclge_fd_get_tcpip4_tuple(hdev, fs, rule, IPPROTO_TCP);
6391 hclge_fd_get_tcpip4_tuple(hdev, fs, rule, IPPROTO_UDP);
6394 hclge_fd_get_ip4_tuple(hdev, fs, rule);
6397 hclge_fd_get_tcpip6_tuple(hdev, fs, rule, IPPROTO_SCTP);
6400 hclge_fd_get_tcpip6_tuple(hdev, fs, rule, IPPROTO_TCP);
6403 hclge_fd_get_tcpip6_tuple(hdev, fs, rule, IPPROTO_UDP);
6405 case IPV6_USER_FLOW:
6406 hclge_fd_get_ip6_tuple(hdev, fs, rule);
6409 hclge_fd_get_ether_tuple(hdev, fs, rule);
6415 if (fs->flow_type & FLOW_EXT) {
6416 rule->tuples.vlan_tag1 = be16_to_cpu(fs->h_ext.vlan_tci);
6417 rule->tuples_mask.vlan_tag1 = be16_to_cpu(fs->m_ext.vlan_tci);
6418 hclge_fd_get_user_def_tuple(info, rule);
6421 if (fs->flow_type & FLOW_MAC_EXT) {
6422 ether_addr_copy(rule->tuples.dst_mac, fs->h_ext.h_dest);
6423 ether_addr_copy(rule->tuples_mask.dst_mac, fs->m_ext.h_dest);
6429 static int hclge_fd_config_rule(struct hclge_dev *hdev,
6430 struct hclge_fd_rule *rule)
6434 ret = hclge_config_action(hdev, HCLGE_FD_STAGE_1, rule);
6438 return hclge_config_key(hdev, HCLGE_FD_STAGE_1, rule);
6441 static int hclge_add_fd_entry_common(struct hclge_dev *hdev,
6442 struct hclge_fd_rule *rule)
6446 spin_lock_bh(&hdev->fd_rule_lock);
6448 if (hdev->fd_active_type != rule->rule_type &&
6449 (hdev->fd_active_type == HCLGE_FD_TC_FLOWER_ACTIVE ||
6450 hdev->fd_active_type == HCLGE_FD_EP_ACTIVE)) {
6451 dev_err(&hdev->pdev->dev,
6452 "mode conflict(new type %d, active type %d), please delete existent rules first\n",
6453 rule->rule_type, hdev->fd_active_type);
6454 spin_unlock_bh(&hdev->fd_rule_lock);
6458 ret = hclge_fd_check_user_def_refcnt(hdev, rule);
6462 ret = hclge_clear_arfs_rules(hdev);
6466 ret = hclge_fd_config_rule(hdev, rule);
6470 rule->state = HCLGE_FD_ACTIVE;
6471 hdev->fd_active_type = rule->rule_type;
6472 hclge_update_fd_list(hdev, rule->state, rule->location, rule);
6475 spin_unlock_bh(&hdev->fd_rule_lock);
6479 static bool hclge_is_cls_flower_active(struct hnae3_handle *handle)
6481 struct hclge_vport *vport = hclge_get_vport(handle);
6482 struct hclge_dev *hdev = vport->back;
6484 return hdev->fd_active_type == HCLGE_FD_TC_FLOWER_ACTIVE;
6487 static int hclge_fd_parse_ring_cookie(struct hclge_dev *hdev, u64 ring_cookie,
6488 u16 *vport_id, u8 *action, u16 *queue_id)
6490 struct hclge_vport *vport = hdev->vport;
6492 if (ring_cookie == RX_CLS_FLOW_DISC) {
6493 *action = HCLGE_FD_ACTION_DROP_PACKET;
6495 u32 ring = ethtool_get_flow_spec_ring(ring_cookie);
6496 u8 vf = ethtool_get_flow_spec_ring_vf(ring_cookie);
6499 /* To keep consistent with user's configuration, minus 1 when
6500 * printing 'vf', because vf id from ethtool is added 1 for vf.
6502 if (vf > hdev->num_req_vfs) {
6503 dev_err(&hdev->pdev->dev,
6504 "Error: vf id (%u) should be less than %u\n",
6505 vf - 1U, hdev->num_req_vfs);
6509 *vport_id = vf ? hdev->vport[vf].vport_id : vport->vport_id;
6510 tqps = hdev->vport[vf].nic.kinfo.num_tqps;
6513 dev_err(&hdev->pdev->dev,
6514 "Error: queue id (%u) > max tqp num (%u)\n",
6519 *action = HCLGE_FD_ACTION_SELECT_QUEUE;
6526 static int hclge_add_fd_entry(struct hnae3_handle *handle,
6527 struct ethtool_rxnfc *cmd)
6529 struct hclge_vport *vport = hclge_get_vport(handle);
6530 struct hclge_dev *hdev = vport->back;
6531 struct hclge_fd_user_def_info info;
6532 u16 dst_vport_id = 0, q_index = 0;
6533 struct ethtool_rx_flow_spec *fs;
6534 struct hclge_fd_rule *rule;
6539 if (!hnae3_ae_dev_fd_supported(hdev->ae_dev)) {
6540 dev_err(&hdev->pdev->dev,
6541 "flow table director is not supported\n");
6546 dev_err(&hdev->pdev->dev,
6547 "please enable flow director first\n");
6551 fs = (struct ethtool_rx_flow_spec *)&cmd->fs;
6553 ret = hclge_fd_check_spec(hdev, fs, &unused, &info);
6557 ret = hclge_fd_parse_ring_cookie(hdev, fs->ring_cookie, &dst_vport_id,
6562 rule = kzalloc(sizeof(*rule), GFP_KERNEL);
6566 ret = hclge_fd_get_tuple(hdev, fs, rule, &info);
6572 rule->flow_type = fs->flow_type;
6573 rule->location = fs->location;
6574 rule->unused_tuple = unused;
6575 rule->vf_id = dst_vport_id;
6576 rule->queue_id = q_index;
6577 rule->action = action;
6578 rule->rule_type = HCLGE_FD_EP_ACTIVE;
6580 ret = hclge_add_fd_entry_common(hdev, rule);
6587 static int hclge_del_fd_entry(struct hnae3_handle *handle,
6588 struct ethtool_rxnfc *cmd)
6590 struct hclge_vport *vport = hclge_get_vport(handle);
6591 struct hclge_dev *hdev = vport->back;
6592 struct ethtool_rx_flow_spec *fs;
6595 if (!hnae3_ae_dev_fd_supported(hdev->ae_dev))
6598 fs = (struct ethtool_rx_flow_spec *)&cmd->fs;
6600 if (fs->location >= hdev->fd_cfg.rule_num[HCLGE_FD_STAGE_1])
6603 spin_lock_bh(&hdev->fd_rule_lock);
6604 if (hdev->fd_active_type == HCLGE_FD_TC_FLOWER_ACTIVE ||
6605 !test_bit(fs->location, hdev->fd_bmap)) {
6606 dev_err(&hdev->pdev->dev,
6607 "Delete fail, rule %u is inexistent\n", fs->location);
6608 spin_unlock_bh(&hdev->fd_rule_lock);
6612 ret = hclge_fd_tcam_config(hdev, HCLGE_FD_STAGE_1, true, fs->location,
6617 hclge_update_fd_list(hdev, HCLGE_FD_DELETED, fs->location, NULL);
6620 spin_unlock_bh(&hdev->fd_rule_lock);
6624 static void hclge_clear_fd_rules_in_list(struct hclge_dev *hdev,
6627 struct hclge_fd_rule *rule;
6628 struct hlist_node *node;
6631 spin_lock_bh(&hdev->fd_rule_lock);
6633 for_each_set_bit(location, hdev->fd_bmap,
6634 hdev->fd_cfg.rule_num[HCLGE_FD_STAGE_1])
6635 hclge_fd_tcam_config(hdev, HCLGE_FD_STAGE_1, true, location,
6639 hlist_for_each_entry_safe(rule, node, &hdev->fd_rule_list,
6641 hlist_del(&rule->rule_node);
6644 hdev->fd_active_type = HCLGE_FD_RULE_NONE;
6645 hdev->hclge_fd_rule_num = 0;
6646 bitmap_zero(hdev->fd_bmap,
6647 hdev->fd_cfg.rule_num[HCLGE_FD_STAGE_1]);
6650 spin_unlock_bh(&hdev->fd_rule_lock);
6653 static void hclge_del_all_fd_entries(struct hclge_dev *hdev)
6655 if (!hnae3_ae_dev_fd_supported(hdev->ae_dev))
6658 hclge_clear_fd_rules_in_list(hdev, true);
6659 hclge_fd_disable_user_def(hdev);
6662 static int hclge_restore_fd_entries(struct hnae3_handle *handle)
6664 struct hclge_vport *vport = hclge_get_vport(handle);
6665 struct hclge_dev *hdev = vport->back;
6666 struct hclge_fd_rule *rule;
6667 struct hlist_node *node;
6669 /* Return ok here, because reset error handling will check this
6670 * return value. If error is returned here, the reset process will
6673 if (!hnae3_ae_dev_fd_supported(hdev->ae_dev))
6676 /* if fd is disabled, should not restore it when reset */
6680 spin_lock_bh(&hdev->fd_rule_lock);
6681 hlist_for_each_entry_safe(rule, node, &hdev->fd_rule_list, rule_node) {
6682 if (rule->state == HCLGE_FD_ACTIVE)
6683 rule->state = HCLGE_FD_TO_ADD;
6685 spin_unlock_bh(&hdev->fd_rule_lock);
6686 set_bit(HCLGE_STATE_FD_TBL_CHANGED, &hdev->state);
6691 static int hclge_get_fd_rule_cnt(struct hnae3_handle *handle,
6692 struct ethtool_rxnfc *cmd)
6694 struct hclge_vport *vport = hclge_get_vport(handle);
6695 struct hclge_dev *hdev = vport->back;
6697 if (!hnae3_ae_dev_fd_supported(hdev->ae_dev) || hclge_is_cls_flower_active(handle))
6700 cmd->rule_cnt = hdev->hclge_fd_rule_num;
6701 cmd->data = hdev->fd_cfg.rule_num[HCLGE_FD_STAGE_1];
6706 static void hclge_fd_get_tcpip4_info(struct hclge_fd_rule *rule,
6707 struct ethtool_tcpip4_spec *spec,
6708 struct ethtool_tcpip4_spec *spec_mask)
6710 spec->ip4src = cpu_to_be32(rule->tuples.src_ip[IPV4_INDEX]);
6711 spec_mask->ip4src = rule->unused_tuple & BIT(INNER_SRC_IP) ?
6712 0 : cpu_to_be32(rule->tuples_mask.src_ip[IPV4_INDEX]);
6714 spec->ip4dst = cpu_to_be32(rule->tuples.dst_ip[IPV4_INDEX]);
6715 spec_mask->ip4dst = rule->unused_tuple & BIT(INNER_DST_IP) ?
6716 0 : cpu_to_be32(rule->tuples_mask.dst_ip[IPV4_INDEX]);
6718 spec->psrc = cpu_to_be16(rule->tuples.src_port);
6719 spec_mask->psrc = rule->unused_tuple & BIT(INNER_SRC_PORT) ?
6720 0 : cpu_to_be16(rule->tuples_mask.src_port);
6722 spec->pdst = cpu_to_be16(rule->tuples.dst_port);
6723 spec_mask->pdst = rule->unused_tuple & BIT(INNER_DST_PORT) ?
6724 0 : cpu_to_be16(rule->tuples_mask.dst_port);
6726 spec->tos = rule->tuples.ip_tos;
6727 spec_mask->tos = rule->unused_tuple & BIT(INNER_IP_TOS) ?
6728 0 : rule->tuples_mask.ip_tos;
6731 static void hclge_fd_get_ip4_info(struct hclge_fd_rule *rule,
6732 struct ethtool_usrip4_spec *spec,
6733 struct ethtool_usrip4_spec *spec_mask)
6735 spec->ip4src = cpu_to_be32(rule->tuples.src_ip[IPV4_INDEX]);
6736 spec_mask->ip4src = rule->unused_tuple & BIT(INNER_SRC_IP) ?
6737 0 : cpu_to_be32(rule->tuples_mask.src_ip[IPV4_INDEX]);
6739 spec->ip4dst = cpu_to_be32(rule->tuples.dst_ip[IPV4_INDEX]);
6740 spec_mask->ip4dst = rule->unused_tuple & BIT(INNER_DST_IP) ?
6741 0 : cpu_to_be32(rule->tuples_mask.dst_ip[IPV4_INDEX]);
6743 spec->tos = rule->tuples.ip_tos;
6744 spec_mask->tos = rule->unused_tuple & BIT(INNER_IP_TOS) ?
6745 0 : rule->tuples_mask.ip_tos;
6747 spec->proto = rule->tuples.ip_proto;
6748 spec_mask->proto = rule->unused_tuple & BIT(INNER_IP_PROTO) ?
6749 0 : rule->tuples_mask.ip_proto;
6751 spec->ip_ver = ETH_RX_NFC_IP4;
6754 static void hclge_fd_get_tcpip6_info(struct hclge_fd_rule *rule,
6755 struct ethtool_tcpip6_spec *spec,
6756 struct ethtool_tcpip6_spec *spec_mask)
6758 cpu_to_be32_array(spec->ip6src,
6759 rule->tuples.src_ip, IPV6_SIZE);
6760 cpu_to_be32_array(spec->ip6dst,
6761 rule->tuples.dst_ip, IPV6_SIZE);
6762 if (rule->unused_tuple & BIT(INNER_SRC_IP))
6763 memset(spec_mask->ip6src, 0, sizeof(spec_mask->ip6src));
6765 cpu_to_be32_array(spec_mask->ip6src, rule->tuples_mask.src_ip,
6768 if (rule->unused_tuple & BIT(INNER_DST_IP))
6769 memset(spec_mask->ip6dst, 0, sizeof(spec_mask->ip6dst));
6771 cpu_to_be32_array(spec_mask->ip6dst, rule->tuples_mask.dst_ip,
6774 spec->tclass = rule->tuples.ip_tos;
6775 spec_mask->tclass = rule->unused_tuple & BIT(INNER_IP_TOS) ?
6776 0 : rule->tuples_mask.ip_tos;
6778 spec->psrc = cpu_to_be16(rule->tuples.src_port);
6779 spec_mask->psrc = rule->unused_tuple & BIT(INNER_SRC_PORT) ?
6780 0 : cpu_to_be16(rule->tuples_mask.src_port);
6782 spec->pdst = cpu_to_be16(rule->tuples.dst_port);
6783 spec_mask->pdst = rule->unused_tuple & BIT(INNER_DST_PORT) ?
6784 0 : cpu_to_be16(rule->tuples_mask.dst_port);
6787 static void hclge_fd_get_ip6_info(struct hclge_fd_rule *rule,
6788 struct ethtool_usrip6_spec *spec,
6789 struct ethtool_usrip6_spec *spec_mask)
6791 cpu_to_be32_array(spec->ip6src, rule->tuples.src_ip, IPV6_SIZE);
6792 cpu_to_be32_array(spec->ip6dst, rule->tuples.dst_ip, IPV6_SIZE);
6793 if (rule->unused_tuple & BIT(INNER_SRC_IP))
6794 memset(spec_mask->ip6src, 0, sizeof(spec_mask->ip6src));
6796 cpu_to_be32_array(spec_mask->ip6src,
6797 rule->tuples_mask.src_ip, IPV6_SIZE);
6799 if (rule->unused_tuple & BIT(INNER_DST_IP))
6800 memset(spec_mask->ip6dst, 0, sizeof(spec_mask->ip6dst));
6802 cpu_to_be32_array(spec_mask->ip6dst,
6803 rule->tuples_mask.dst_ip, IPV6_SIZE);
6805 spec->tclass = rule->tuples.ip_tos;
6806 spec_mask->tclass = rule->unused_tuple & BIT(INNER_IP_TOS) ?
6807 0 : rule->tuples_mask.ip_tos;
6809 spec->l4_proto = rule->tuples.ip_proto;
6810 spec_mask->l4_proto = rule->unused_tuple & BIT(INNER_IP_PROTO) ?
6811 0 : rule->tuples_mask.ip_proto;
6814 static void hclge_fd_get_ether_info(struct hclge_fd_rule *rule,
6815 struct ethhdr *spec,
6816 struct ethhdr *spec_mask)
6818 ether_addr_copy(spec->h_source, rule->tuples.src_mac);
6819 ether_addr_copy(spec->h_dest, rule->tuples.dst_mac);
6821 if (rule->unused_tuple & BIT(INNER_SRC_MAC))
6822 eth_zero_addr(spec_mask->h_source);
6824 ether_addr_copy(spec_mask->h_source, rule->tuples_mask.src_mac);
6826 if (rule->unused_tuple & BIT(INNER_DST_MAC))
6827 eth_zero_addr(spec_mask->h_dest);
6829 ether_addr_copy(spec_mask->h_dest, rule->tuples_mask.dst_mac);
6831 spec->h_proto = cpu_to_be16(rule->tuples.ether_proto);
6832 spec_mask->h_proto = rule->unused_tuple & BIT(INNER_ETH_TYPE) ?
6833 0 : cpu_to_be16(rule->tuples_mask.ether_proto);
6836 static void hclge_fd_get_user_def_info(struct ethtool_rx_flow_spec *fs,
6837 struct hclge_fd_rule *rule)
6839 if ((rule->unused_tuple & HCLGE_FD_TUPLE_USER_DEF_TUPLES) ==
6840 HCLGE_FD_TUPLE_USER_DEF_TUPLES) {
6841 fs->h_ext.data[0] = 0;
6842 fs->h_ext.data[1] = 0;
6843 fs->m_ext.data[0] = 0;
6844 fs->m_ext.data[1] = 0;
6846 fs->h_ext.data[0] = cpu_to_be32(rule->ep.user_def.offset);
6847 fs->h_ext.data[1] = cpu_to_be32(rule->ep.user_def.data);
6849 cpu_to_be32(HCLGE_FD_USER_DEF_OFFSET_UNMASK);
6850 fs->m_ext.data[1] = cpu_to_be32(rule->ep.user_def.data_mask);
6854 static void hclge_fd_get_ext_info(struct ethtool_rx_flow_spec *fs,
6855 struct hclge_fd_rule *rule)
6857 if (fs->flow_type & FLOW_EXT) {
6858 fs->h_ext.vlan_tci = cpu_to_be16(rule->tuples.vlan_tag1);
6859 fs->m_ext.vlan_tci =
6860 rule->unused_tuple & BIT(INNER_VLAN_TAG_FST) ?
6861 0 : cpu_to_be16(rule->tuples_mask.vlan_tag1);
6863 hclge_fd_get_user_def_info(fs, rule);
6866 if (fs->flow_type & FLOW_MAC_EXT) {
6867 ether_addr_copy(fs->h_ext.h_dest, rule->tuples.dst_mac);
6868 if (rule->unused_tuple & BIT(INNER_DST_MAC))
6869 eth_zero_addr(fs->m_u.ether_spec.h_dest);
6871 ether_addr_copy(fs->m_u.ether_spec.h_dest,
6872 rule->tuples_mask.dst_mac);
6876 static struct hclge_fd_rule *hclge_get_fd_rule(struct hclge_dev *hdev,
6879 struct hclge_fd_rule *rule = NULL;
6880 struct hlist_node *node2;
6882 hlist_for_each_entry_safe(rule, node2, &hdev->fd_rule_list, rule_node) {
6883 if (rule->location == location)
6885 else if (rule->location > location)
6892 static void hclge_fd_get_ring_cookie(struct ethtool_rx_flow_spec *fs,
6893 struct hclge_fd_rule *rule)
6895 if (rule->action == HCLGE_FD_ACTION_DROP_PACKET) {
6896 fs->ring_cookie = RX_CLS_FLOW_DISC;
6900 fs->ring_cookie = rule->queue_id;
6901 vf_id = rule->vf_id;
6902 vf_id <<= ETHTOOL_RX_FLOW_SPEC_RING_VF_OFF;
6903 fs->ring_cookie |= vf_id;
6907 static int hclge_get_fd_rule_info(struct hnae3_handle *handle,
6908 struct ethtool_rxnfc *cmd)
6910 struct hclge_vport *vport = hclge_get_vport(handle);
6911 struct hclge_fd_rule *rule = NULL;
6912 struct hclge_dev *hdev = vport->back;
6913 struct ethtool_rx_flow_spec *fs;
6915 if (!hnae3_ae_dev_fd_supported(hdev->ae_dev))
6918 fs = (struct ethtool_rx_flow_spec *)&cmd->fs;
6920 spin_lock_bh(&hdev->fd_rule_lock);
6922 rule = hclge_get_fd_rule(hdev, fs->location);
6924 spin_unlock_bh(&hdev->fd_rule_lock);
6928 fs->flow_type = rule->flow_type;
6929 switch (fs->flow_type & ~(FLOW_EXT | FLOW_MAC_EXT)) {
6933 hclge_fd_get_tcpip4_info(rule, &fs->h_u.tcp_ip4_spec,
6934 &fs->m_u.tcp_ip4_spec);
6937 hclge_fd_get_ip4_info(rule, &fs->h_u.usr_ip4_spec,
6938 &fs->m_u.usr_ip4_spec);
6943 hclge_fd_get_tcpip6_info(rule, &fs->h_u.tcp_ip6_spec,
6944 &fs->m_u.tcp_ip6_spec);
6946 case IPV6_USER_FLOW:
6947 hclge_fd_get_ip6_info(rule, &fs->h_u.usr_ip6_spec,
6948 &fs->m_u.usr_ip6_spec);
6950 /* The flow type of fd rule has been checked before adding in to rule
6951 * list. As other flow types have been handled, it must be ETHER_FLOW
6952 * for the default case
6955 hclge_fd_get_ether_info(rule, &fs->h_u.ether_spec,
6956 &fs->m_u.ether_spec);
6960 hclge_fd_get_ext_info(fs, rule);
6962 hclge_fd_get_ring_cookie(fs, rule);
6964 spin_unlock_bh(&hdev->fd_rule_lock);
6969 static int hclge_get_all_rules(struct hnae3_handle *handle,
6970 struct ethtool_rxnfc *cmd, u32 *rule_locs)
6972 struct hclge_vport *vport = hclge_get_vport(handle);
6973 struct hclge_dev *hdev = vport->back;
6974 struct hclge_fd_rule *rule;
6975 struct hlist_node *node2;
6978 if (!hnae3_ae_dev_fd_supported(hdev->ae_dev))
6981 cmd->data = hdev->fd_cfg.rule_num[HCLGE_FD_STAGE_1];
6983 spin_lock_bh(&hdev->fd_rule_lock);
6984 hlist_for_each_entry_safe(rule, node2,
6985 &hdev->fd_rule_list, rule_node) {
6986 if (cnt == cmd->rule_cnt) {
6987 spin_unlock_bh(&hdev->fd_rule_lock);
6991 if (rule->state == HCLGE_FD_TO_DEL)
6994 rule_locs[cnt] = rule->location;
6998 spin_unlock_bh(&hdev->fd_rule_lock);
7000 cmd->rule_cnt = cnt;
7005 static void hclge_fd_get_flow_tuples(const struct flow_keys *fkeys,
7006 struct hclge_fd_rule_tuples *tuples)
7008 #define flow_ip6_src fkeys->addrs.v6addrs.src.in6_u.u6_addr32
7009 #define flow_ip6_dst fkeys->addrs.v6addrs.dst.in6_u.u6_addr32
7011 tuples->ether_proto = be16_to_cpu(fkeys->basic.n_proto);
7012 tuples->ip_proto = fkeys->basic.ip_proto;
7013 tuples->dst_port = be16_to_cpu(fkeys->ports.dst);
7015 if (fkeys->basic.n_proto == htons(ETH_P_IP)) {
7016 tuples->src_ip[3] = be32_to_cpu(fkeys->addrs.v4addrs.src);
7017 tuples->dst_ip[3] = be32_to_cpu(fkeys->addrs.v4addrs.dst);
7021 for (i = 0; i < IPV6_SIZE; i++) {
7022 tuples->src_ip[i] = be32_to_cpu(flow_ip6_src[i]);
7023 tuples->dst_ip[i] = be32_to_cpu(flow_ip6_dst[i]);
7028 /* traverse all rules, check whether an existed rule has the same tuples */
7029 static struct hclge_fd_rule *
7030 hclge_fd_search_flow_keys(struct hclge_dev *hdev,
7031 const struct hclge_fd_rule_tuples *tuples)
7033 struct hclge_fd_rule *rule = NULL;
7034 struct hlist_node *node;
7036 hlist_for_each_entry_safe(rule, node, &hdev->fd_rule_list, rule_node) {
7037 if (!memcmp(tuples, &rule->tuples, sizeof(*tuples)))
7044 static void hclge_fd_build_arfs_rule(const struct hclge_fd_rule_tuples *tuples,
7045 struct hclge_fd_rule *rule)
7047 rule->unused_tuple = BIT(INNER_SRC_MAC) | BIT(INNER_DST_MAC) |
7048 BIT(INNER_VLAN_TAG_FST) | BIT(INNER_IP_TOS) |
7049 BIT(INNER_SRC_PORT);
7052 rule->rule_type = HCLGE_FD_ARFS_ACTIVE;
7053 rule->state = HCLGE_FD_TO_ADD;
7054 if (tuples->ether_proto == ETH_P_IP) {
7055 if (tuples->ip_proto == IPPROTO_TCP)
7056 rule->flow_type = TCP_V4_FLOW;
7058 rule->flow_type = UDP_V4_FLOW;
7060 if (tuples->ip_proto == IPPROTO_TCP)
7061 rule->flow_type = TCP_V6_FLOW;
7063 rule->flow_type = UDP_V6_FLOW;
7065 memcpy(&rule->tuples, tuples, sizeof(rule->tuples));
7066 memset(&rule->tuples_mask, 0xFF, sizeof(rule->tuples_mask));
7069 static int hclge_add_fd_entry_by_arfs(struct hnae3_handle *handle, u16 queue_id,
7070 u16 flow_id, struct flow_keys *fkeys)
7072 struct hclge_vport *vport = hclge_get_vport(handle);
7073 struct hclge_fd_rule_tuples new_tuples = {};
7074 struct hclge_dev *hdev = vport->back;
7075 struct hclge_fd_rule *rule;
7078 if (!hnae3_ae_dev_fd_supported(hdev->ae_dev))
7081 /* when there is already fd rule existed add by user,
7082 * arfs should not work
7084 spin_lock_bh(&hdev->fd_rule_lock);
7085 if (hdev->fd_active_type != HCLGE_FD_ARFS_ACTIVE &&
7086 hdev->fd_active_type != HCLGE_FD_RULE_NONE) {
7087 spin_unlock_bh(&hdev->fd_rule_lock);
7091 hclge_fd_get_flow_tuples(fkeys, &new_tuples);
7093 /* check is there flow director filter existed for this flow,
7094 * if not, create a new filter for it;
7095 * if filter exist with different queue id, modify the filter;
7096 * if filter exist with same queue id, do nothing
7098 rule = hclge_fd_search_flow_keys(hdev, &new_tuples);
7100 bit_id = find_first_zero_bit(hdev->fd_bmap, MAX_FD_FILTER_NUM);
7101 if (bit_id >= hdev->fd_cfg.rule_num[HCLGE_FD_STAGE_1]) {
7102 spin_unlock_bh(&hdev->fd_rule_lock);
7106 rule = kzalloc(sizeof(*rule), GFP_ATOMIC);
7108 spin_unlock_bh(&hdev->fd_rule_lock);
7112 rule->location = bit_id;
7113 rule->arfs.flow_id = flow_id;
7114 rule->queue_id = queue_id;
7115 hclge_fd_build_arfs_rule(&new_tuples, rule);
7116 hclge_update_fd_list(hdev, rule->state, rule->location, rule);
7117 hdev->fd_active_type = HCLGE_FD_ARFS_ACTIVE;
7118 } else if (rule->queue_id != queue_id) {
7119 rule->queue_id = queue_id;
7120 rule->state = HCLGE_FD_TO_ADD;
7121 set_bit(HCLGE_STATE_FD_TBL_CHANGED, &hdev->state);
7122 hclge_task_schedule(hdev, 0);
7124 spin_unlock_bh(&hdev->fd_rule_lock);
7125 return rule->location;
7128 static void hclge_rfs_filter_expire(struct hclge_dev *hdev)
7130 #ifdef CONFIG_RFS_ACCEL
7131 struct hnae3_handle *handle = &hdev->vport[0].nic;
7132 struct hclge_fd_rule *rule;
7133 struct hlist_node *node;
7135 spin_lock_bh(&hdev->fd_rule_lock);
7136 if (hdev->fd_active_type != HCLGE_FD_ARFS_ACTIVE) {
7137 spin_unlock_bh(&hdev->fd_rule_lock);
7140 hlist_for_each_entry_safe(rule, node, &hdev->fd_rule_list, rule_node) {
7141 if (rule->state != HCLGE_FD_ACTIVE)
7143 if (rps_may_expire_flow(handle->netdev, rule->queue_id,
7144 rule->arfs.flow_id, rule->location)) {
7145 rule->state = HCLGE_FD_TO_DEL;
7146 set_bit(HCLGE_STATE_FD_TBL_CHANGED, &hdev->state);
7149 spin_unlock_bh(&hdev->fd_rule_lock);
7153 /* make sure being called after lock up with fd_rule_lock */
7154 static int hclge_clear_arfs_rules(struct hclge_dev *hdev)
7156 #ifdef CONFIG_RFS_ACCEL
7157 struct hclge_fd_rule *rule;
7158 struct hlist_node *node;
7161 if (hdev->fd_active_type != HCLGE_FD_ARFS_ACTIVE)
7164 hlist_for_each_entry_safe(rule, node, &hdev->fd_rule_list, rule_node) {
7165 switch (rule->state) {
7166 case HCLGE_FD_TO_DEL:
7167 case HCLGE_FD_ACTIVE:
7168 ret = hclge_fd_tcam_config(hdev, HCLGE_FD_STAGE_1, true,
7169 rule->location, NULL, false);
7173 case HCLGE_FD_TO_ADD:
7174 hclge_fd_dec_rule_cnt(hdev, rule->location);
7175 hlist_del(&rule->rule_node);
7182 hclge_sync_fd_state(hdev);
7188 static void hclge_get_cls_key_basic(const struct flow_rule *flow,
7189 struct hclge_fd_rule *rule)
7191 if (flow_rule_match_key(flow, FLOW_DISSECTOR_KEY_BASIC)) {
7192 struct flow_match_basic match;
7193 u16 ethtype_key, ethtype_mask;
7195 flow_rule_match_basic(flow, &match);
7196 ethtype_key = ntohs(match.key->n_proto);
7197 ethtype_mask = ntohs(match.mask->n_proto);
7199 if (ethtype_key == ETH_P_ALL) {
7203 rule->tuples.ether_proto = ethtype_key;
7204 rule->tuples_mask.ether_proto = ethtype_mask;
7205 rule->tuples.ip_proto = match.key->ip_proto;
7206 rule->tuples_mask.ip_proto = match.mask->ip_proto;
7208 rule->unused_tuple |= BIT(INNER_IP_PROTO);
7209 rule->unused_tuple |= BIT(INNER_ETH_TYPE);
7213 static void hclge_get_cls_key_mac(const struct flow_rule *flow,
7214 struct hclge_fd_rule *rule)
7216 if (flow_rule_match_key(flow, FLOW_DISSECTOR_KEY_ETH_ADDRS)) {
7217 struct flow_match_eth_addrs match;
7219 flow_rule_match_eth_addrs(flow, &match);
7220 ether_addr_copy(rule->tuples.dst_mac, match.key->dst);
7221 ether_addr_copy(rule->tuples_mask.dst_mac, match.mask->dst);
7222 ether_addr_copy(rule->tuples.src_mac, match.key->src);
7223 ether_addr_copy(rule->tuples_mask.src_mac, match.mask->src);
7225 rule->unused_tuple |= BIT(INNER_DST_MAC);
7226 rule->unused_tuple |= BIT(INNER_SRC_MAC);
7230 static void hclge_get_cls_key_vlan(const struct flow_rule *flow,
7231 struct hclge_fd_rule *rule)
7233 if (flow_rule_match_key(flow, FLOW_DISSECTOR_KEY_VLAN)) {
7234 struct flow_match_vlan match;
7236 flow_rule_match_vlan(flow, &match);
7237 rule->tuples.vlan_tag1 = match.key->vlan_id |
7238 (match.key->vlan_priority << VLAN_PRIO_SHIFT);
7239 rule->tuples_mask.vlan_tag1 = match.mask->vlan_id |
7240 (match.mask->vlan_priority << VLAN_PRIO_SHIFT);
7242 rule->unused_tuple |= BIT(INNER_VLAN_TAG_FST);
7246 static void hclge_get_cls_key_ip(const struct flow_rule *flow,
7247 struct hclge_fd_rule *rule)
7251 if (flow_rule_match_key(flow, FLOW_DISSECTOR_KEY_CONTROL)) {
7252 struct flow_match_control match;
7254 flow_rule_match_control(flow, &match);
7255 addr_type = match.key->addr_type;
7258 if (addr_type == FLOW_DISSECTOR_KEY_IPV4_ADDRS) {
7259 struct flow_match_ipv4_addrs match;
7261 flow_rule_match_ipv4_addrs(flow, &match);
7262 rule->tuples.src_ip[IPV4_INDEX] = be32_to_cpu(match.key->src);
7263 rule->tuples_mask.src_ip[IPV4_INDEX] =
7264 be32_to_cpu(match.mask->src);
7265 rule->tuples.dst_ip[IPV4_INDEX] = be32_to_cpu(match.key->dst);
7266 rule->tuples_mask.dst_ip[IPV4_INDEX] =
7267 be32_to_cpu(match.mask->dst);
7268 } else if (addr_type == FLOW_DISSECTOR_KEY_IPV6_ADDRS) {
7269 struct flow_match_ipv6_addrs match;
7271 flow_rule_match_ipv6_addrs(flow, &match);
7272 be32_to_cpu_array(rule->tuples.src_ip, match.key->src.s6_addr32,
7274 be32_to_cpu_array(rule->tuples_mask.src_ip,
7275 match.mask->src.s6_addr32, IPV6_SIZE);
7276 be32_to_cpu_array(rule->tuples.dst_ip, match.key->dst.s6_addr32,
7278 be32_to_cpu_array(rule->tuples_mask.dst_ip,
7279 match.mask->dst.s6_addr32, IPV6_SIZE);
7281 rule->unused_tuple |= BIT(INNER_SRC_IP);
7282 rule->unused_tuple |= BIT(INNER_DST_IP);
7286 static void hclge_get_cls_key_port(const struct flow_rule *flow,
7287 struct hclge_fd_rule *rule)
7289 if (flow_rule_match_key(flow, FLOW_DISSECTOR_KEY_PORTS)) {
7290 struct flow_match_ports match;
7292 flow_rule_match_ports(flow, &match);
7294 rule->tuples.src_port = be16_to_cpu(match.key->src);
7295 rule->tuples_mask.src_port = be16_to_cpu(match.mask->src);
7296 rule->tuples.dst_port = be16_to_cpu(match.key->dst);
7297 rule->tuples_mask.dst_port = be16_to_cpu(match.mask->dst);
7299 rule->unused_tuple |= BIT(INNER_SRC_PORT);
7300 rule->unused_tuple |= BIT(INNER_DST_PORT);
7304 static int hclge_parse_cls_flower(struct hclge_dev *hdev,
7305 struct flow_cls_offload *cls_flower,
7306 struct hclge_fd_rule *rule)
7308 struct flow_rule *flow = flow_cls_offload_flow_rule(cls_flower);
7309 struct flow_dissector *dissector = flow->match.dissector;
7311 if (dissector->used_keys &
7312 ~(BIT(FLOW_DISSECTOR_KEY_CONTROL) |
7313 BIT(FLOW_DISSECTOR_KEY_BASIC) |
7314 BIT(FLOW_DISSECTOR_KEY_ETH_ADDRS) |
7315 BIT(FLOW_DISSECTOR_KEY_VLAN) |
7316 BIT(FLOW_DISSECTOR_KEY_IPV4_ADDRS) |
7317 BIT(FLOW_DISSECTOR_KEY_IPV6_ADDRS) |
7318 BIT(FLOW_DISSECTOR_KEY_PORTS))) {
7319 dev_err(&hdev->pdev->dev, "unsupported key set: %#x\n",
7320 dissector->used_keys);
7324 hclge_get_cls_key_basic(flow, rule);
7325 hclge_get_cls_key_mac(flow, rule);
7326 hclge_get_cls_key_vlan(flow, rule);
7327 hclge_get_cls_key_ip(flow, rule);
7328 hclge_get_cls_key_port(flow, rule);
7333 static int hclge_check_cls_flower(struct hclge_dev *hdev,
7334 struct flow_cls_offload *cls_flower, int tc)
7336 u32 prio = cls_flower->common.prio;
7338 if (tc < 0 || tc > hdev->tc_max) {
7339 dev_err(&hdev->pdev->dev, "invalid traffic class\n");
7344 prio > hdev->fd_cfg.rule_num[HCLGE_FD_STAGE_1]) {
7345 dev_err(&hdev->pdev->dev,
7346 "prio %u should be in range[1, %u]\n",
7347 prio, hdev->fd_cfg.rule_num[HCLGE_FD_STAGE_1]);
7351 if (test_bit(prio - 1, hdev->fd_bmap)) {
7352 dev_err(&hdev->pdev->dev, "prio %u is already used\n", prio);
7358 static int hclge_add_cls_flower(struct hnae3_handle *handle,
7359 struct flow_cls_offload *cls_flower,
7362 struct hclge_vport *vport = hclge_get_vport(handle);
7363 struct hclge_dev *hdev = vport->back;
7364 struct hclge_fd_rule *rule;
7367 if (!hnae3_ae_dev_fd_supported(hdev->ae_dev)) {
7368 dev_err(&hdev->pdev->dev,
7369 "cls flower is not supported\n");
7373 ret = hclge_check_cls_flower(hdev, cls_flower, tc);
7375 dev_err(&hdev->pdev->dev,
7376 "failed to check cls flower params, ret = %d\n", ret);
7380 rule = kzalloc(sizeof(*rule), GFP_KERNEL);
7384 ret = hclge_parse_cls_flower(hdev, cls_flower, rule);
7390 rule->action = HCLGE_FD_ACTION_SELECT_TC;
7391 rule->cls_flower.tc = tc;
7392 rule->location = cls_flower->common.prio - 1;
7394 rule->cls_flower.cookie = cls_flower->cookie;
7395 rule->rule_type = HCLGE_FD_TC_FLOWER_ACTIVE;
7397 ret = hclge_add_fd_entry_common(hdev, rule);
7404 static struct hclge_fd_rule *hclge_find_cls_flower(struct hclge_dev *hdev,
7405 unsigned long cookie)
7407 struct hclge_fd_rule *rule;
7408 struct hlist_node *node;
7410 hlist_for_each_entry_safe(rule, node, &hdev->fd_rule_list, rule_node) {
7411 if (rule->cls_flower.cookie == cookie)
7418 static int hclge_del_cls_flower(struct hnae3_handle *handle,
7419 struct flow_cls_offload *cls_flower)
7421 struct hclge_vport *vport = hclge_get_vport(handle);
7422 struct hclge_dev *hdev = vport->back;
7423 struct hclge_fd_rule *rule;
7426 if (!hnae3_ae_dev_fd_supported(hdev->ae_dev))
7429 spin_lock_bh(&hdev->fd_rule_lock);
7431 rule = hclge_find_cls_flower(hdev, cls_flower->cookie);
7433 spin_unlock_bh(&hdev->fd_rule_lock);
7437 ret = hclge_fd_tcam_config(hdev, HCLGE_FD_STAGE_1, true, rule->location,
7440 spin_unlock_bh(&hdev->fd_rule_lock);
7444 hclge_update_fd_list(hdev, HCLGE_FD_DELETED, rule->location, NULL);
7445 spin_unlock_bh(&hdev->fd_rule_lock);
7450 static void hclge_sync_fd_list(struct hclge_dev *hdev, struct hlist_head *hlist)
7452 struct hclge_fd_rule *rule;
7453 struct hlist_node *node;
7456 if (!test_and_clear_bit(HCLGE_STATE_FD_TBL_CHANGED, &hdev->state))
7459 spin_lock_bh(&hdev->fd_rule_lock);
7461 hlist_for_each_entry_safe(rule, node, hlist, rule_node) {
7462 switch (rule->state) {
7463 case HCLGE_FD_TO_ADD:
7464 ret = hclge_fd_config_rule(hdev, rule);
7467 rule->state = HCLGE_FD_ACTIVE;
7469 case HCLGE_FD_TO_DEL:
7470 ret = hclge_fd_tcam_config(hdev, HCLGE_FD_STAGE_1, true,
7471 rule->location, NULL, false);
7474 hclge_fd_dec_rule_cnt(hdev, rule->location);
7475 hclge_fd_free_node(hdev, rule);
7484 set_bit(HCLGE_STATE_FD_TBL_CHANGED, &hdev->state);
7486 spin_unlock_bh(&hdev->fd_rule_lock);
7489 static void hclge_sync_fd_table(struct hclge_dev *hdev)
7491 if (!hnae3_ae_dev_fd_supported(hdev->ae_dev))
7494 if (test_and_clear_bit(HCLGE_STATE_FD_CLEAR_ALL, &hdev->state)) {
7495 bool clear_list = hdev->fd_active_type == HCLGE_FD_ARFS_ACTIVE;
7497 hclge_clear_fd_rules_in_list(hdev, clear_list);
7500 hclge_sync_fd_user_def_cfg(hdev, false);
7502 hclge_sync_fd_list(hdev, &hdev->fd_rule_list);
7505 static bool hclge_get_hw_reset_stat(struct hnae3_handle *handle)
7507 struct hclge_vport *vport = hclge_get_vport(handle);
7508 struct hclge_dev *hdev = vport->back;
7510 return hclge_read_dev(&hdev->hw, HCLGE_GLOBAL_RESET_REG) ||
7511 hclge_read_dev(&hdev->hw, HCLGE_FUN_RST_ING);
7514 static bool hclge_get_cmdq_stat(struct hnae3_handle *handle)
7516 struct hclge_vport *vport = hclge_get_vport(handle);
7517 struct hclge_dev *hdev = vport->back;
7519 return test_bit(HCLGE_COMM_STATE_CMD_DISABLE, &hdev->hw.hw.comm_state);
7522 static bool hclge_ae_dev_resetting(struct hnae3_handle *handle)
7524 struct hclge_vport *vport = hclge_get_vport(handle);
7525 struct hclge_dev *hdev = vport->back;
7527 return test_bit(HCLGE_STATE_RST_HANDLING, &hdev->state);
7530 static unsigned long hclge_ae_dev_reset_cnt(struct hnae3_handle *handle)
7532 struct hclge_vport *vport = hclge_get_vport(handle);
7533 struct hclge_dev *hdev = vport->back;
7535 return hdev->rst_stats.hw_reset_done_cnt;
7538 static void hclge_enable_fd(struct hnae3_handle *handle, bool enable)
7540 struct hclge_vport *vport = hclge_get_vport(handle);
7541 struct hclge_dev *hdev = vport->back;
7543 hdev->fd_en = enable;
7546 set_bit(HCLGE_STATE_FD_CLEAR_ALL, &hdev->state);
7548 hclge_restore_fd_entries(handle);
7550 hclge_task_schedule(hdev, 0);
7553 static void hclge_cfg_mac_mode(struct hclge_dev *hdev, bool enable)
7555 struct hclge_desc desc;
7556 struct hclge_config_mac_mode_cmd *req =
7557 (struct hclge_config_mac_mode_cmd *)desc.data;
7561 hclge_cmd_setup_basic_desc(&desc, HCLGE_OPC_CONFIG_MAC_MODE, false);
7564 hnae3_set_bit(loop_en, HCLGE_MAC_TX_EN_B, 1U);
7565 hnae3_set_bit(loop_en, HCLGE_MAC_RX_EN_B, 1U);
7566 hnae3_set_bit(loop_en, HCLGE_MAC_PAD_TX_B, 1U);
7567 hnae3_set_bit(loop_en, HCLGE_MAC_PAD_RX_B, 1U);
7568 hnae3_set_bit(loop_en, HCLGE_MAC_FCS_TX_B, 1U);
7569 hnae3_set_bit(loop_en, HCLGE_MAC_RX_FCS_B, 1U);
7570 hnae3_set_bit(loop_en, HCLGE_MAC_RX_FCS_STRIP_B, 1U);
7571 hnae3_set_bit(loop_en, HCLGE_MAC_TX_OVERSIZE_TRUNCATE_B, 1U);
7572 hnae3_set_bit(loop_en, HCLGE_MAC_RX_OVERSIZE_TRUNCATE_B, 1U);
7573 hnae3_set_bit(loop_en, HCLGE_MAC_TX_UNDER_MIN_ERR_B, 1U);
7576 req->txrx_pad_fcs_loop_en = cpu_to_le32(loop_en);
7578 ret = hclge_cmd_send(&hdev->hw, &desc, 1);
7580 dev_err(&hdev->pdev->dev,
7581 "mac enable fail, ret =%d.\n", ret);
7584 static int hclge_config_switch_param(struct hclge_dev *hdev, int vfid,
7585 u8 switch_param, u8 param_mask)
7587 struct hclge_mac_vlan_switch_cmd *req;
7588 struct hclge_desc desc;
7592 func_id = hclge_get_port_number(HOST_PORT, 0, vfid, 0);
7593 req = (struct hclge_mac_vlan_switch_cmd *)desc.data;
7595 /* read current config parameter */
7596 hclge_cmd_setup_basic_desc(&desc, HCLGE_OPC_MAC_VLAN_SWITCH_PARAM,
7598 req->roce_sel = HCLGE_MAC_VLAN_NIC_SEL;
7599 req->func_id = cpu_to_le32(func_id);
7601 ret = hclge_cmd_send(&hdev->hw, &desc, 1);
7603 dev_err(&hdev->pdev->dev,
7604 "read mac vlan switch parameter fail, ret = %d\n", ret);
7608 /* modify and write new config parameter */
7609 hclge_comm_cmd_reuse_desc(&desc, false);
7610 req->switch_param = (req->switch_param & param_mask) | switch_param;
7611 req->param_mask = param_mask;
7613 ret = hclge_cmd_send(&hdev->hw, &desc, 1);
7615 dev_err(&hdev->pdev->dev,
7616 "set mac vlan switch parameter fail, ret = %d\n", ret);
7620 static void hclge_phy_link_status_wait(struct hclge_dev *hdev,
7623 #define HCLGE_PHY_LINK_STATUS_NUM 200
7625 struct phy_device *phydev = hdev->hw.mac.phydev;
7630 ret = phy_read_status(phydev);
7632 dev_err(&hdev->pdev->dev,
7633 "phy update link status fail, ret = %d\n", ret);
7637 if (phydev->link == link_ret)
7640 msleep(HCLGE_LINK_STATUS_MS);
7641 } while (++i < HCLGE_PHY_LINK_STATUS_NUM);
7644 static int hclge_mac_link_status_wait(struct hclge_dev *hdev, int link_ret)
7646 #define HCLGE_MAC_LINK_STATUS_NUM 100
7653 ret = hclge_get_mac_link_status(hdev, &link_status);
7656 if (link_status == link_ret)
7659 msleep(HCLGE_LINK_STATUS_MS);
7660 } while (++i < HCLGE_MAC_LINK_STATUS_NUM);
7664 static int hclge_mac_phy_link_status_wait(struct hclge_dev *hdev, bool en,
7669 link_ret = en ? HCLGE_LINK_STATUS_UP : HCLGE_LINK_STATUS_DOWN;
7672 hclge_phy_link_status_wait(hdev, link_ret);
7674 return hclge_mac_link_status_wait(hdev, link_ret);
7677 static int hclge_set_app_loopback(struct hclge_dev *hdev, bool en)
7679 struct hclge_config_mac_mode_cmd *req;
7680 struct hclge_desc desc;
7684 req = (struct hclge_config_mac_mode_cmd *)&desc.data[0];
7685 /* 1 Read out the MAC mode config at first */
7686 hclge_cmd_setup_basic_desc(&desc, HCLGE_OPC_CONFIG_MAC_MODE, true);
7687 ret = hclge_cmd_send(&hdev->hw, &desc, 1);
7689 dev_err(&hdev->pdev->dev,
7690 "mac loopback get fail, ret =%d.\n", ret);
7694 /* 2 Then setup the loopback flag */
7695 loop_en = le32_to_cpu(req->txrx_pad_fcs_loop_en);
7696 hnae3_set_bit(loop_en, HCLGE_MAC_APP_LP_B, en ? 1 : 0);
7698 req->txrx_pad_fcs_loop_en = cpu_to_le32(loop_en);
7700 /* 3 Config mac work mode with loopback flag
7701 * and its original configure parameters
7703 hclge_comm_cmd_reuse_desc(&desc, false);
7704 ret = hclge_cmd_send(&hdev->hw, &desc, 1);
7706 dev_err(&hdev->pdev->dev,
7707 "mac loopback set fail, ret =%d.\n", ret);
7711 static int hclge_cfg_common_loopback_cmd_send(struct hclge_dev *hdev, bool en,
7712 enum hnae3_loop loop_mode)
7714 struct hclge_common_lb_cmd *req;
7715 struct hclge_desc desc;
7719 req = (struct hclge_common_lb_cmd *)desc.data;
7720 hclge_cmd_setup_basic_desc(&desc, HCLGE_OPC_COMMON_LOOPBACK, false);
7722 switch (loop_mode) {
7723 case HNAE3_LOOP_SERIAL_SERDES:
7724 loop_mode_b = HCLGE_CMD_SERDES_SERIAL_INNER_LOOP_B;
7726 case HNAE3_LOOP_PARALLEL_SERDES:
7727 loop_mode_b = HCLGE_CMD_SERDES_PARALLEL_INNER_LOOP_B;
7729 case HNAE3_LOOP_PHY:
7730 loop_mode_b = HCLGE_CMD_GE_PHY_INNER_LOOP_B;
7733 dev_err(&hdev->pdev->dev,
7734 "unsupported loopback mode %d\n", loop_mode);
7738 req->mask = loop_mode_b;
7740 req->enable = loop_mode_b;
7742 ret = hclge_cmd_send(&hdev->hw, &desc, 1);
7744 dev_err(&hdev->pdev->dev,
7745 "failed to send loopback cmd, loop_mode = %d, ret = %d\n",
7751 static int hclge_cfg_common_loopback_wait(struct hclge_dev *hdev)
7753 #define HCLGE_COMMON_LB_RETRY_MS 10
7754 #define HCLGE_COMMON_LB_RETRY_NUM 100
7756 struct hclge_common_lb_cmd *req;
7757 struct hclge_desc desc;
7761 req = (struct hclge_common_lb_cmd *)desc.data;
7764 msleep(HCLGE_COMMON_LB_RETRY_MS);
7765 hclge_cmd_setup_basic_desc(&desc, HCLGE_OPC_COMMON_LOOPBACK,
7767 ret = hclge_cmd_send(&hdev->hw, &desc, 1);
7769 dev_err(&hdev->pdev->dev,
7770 "failed to get loopback done status, ret = %d\n",
7774 } while (++i < HCLGE_COMMON_LB_RETRY_NUM &&
7775 !(req->result & HCLGE_CMD_COMMON_LB_DONE_B));
7777 if (!(req->result & HCLGE_CMD_COMMON_LB_DONE_B)) {
7778 dev_err(&hdev->pdev->dev, "wait loopback timeout\n");
7780 } else if (!(req->result & HCLGE_CMD_COMMON_LB_SUCCESS_B)) {
7781 dev_err(&hdev->pdev->dev, "failed to do loopback test\n");
7788 static int hclge_cfg_common_loopback(struct hclge_dev *hdev, bool en,
7789 enum hnae3_loop loop_mode)
7793 ret = hclge_cfg_common_loopback_cmd_send(hdev, en, loop_mode);
7797 return hclge_cfg_common_loopback_wait(hdev);
7800 static int hclge_set_common_loopback(struct hclge_dev *hdev, bool en,
7801 enum hnae3_loop loop_mode)
7805 ret = hclge_cfg_common_loopback(hdev, en, loop_mode);
7809 hclge_cfg_mac_mode(hdev, en);
7811 ret = hclge_mac_phy_link_status_wait(hdev, en, false);
7813 dev_err(&hdev->pdev->dev,
7814 "serdes loopback config mac mode timeout\n");
7819 static int hclge_enable_phy_loopback(struct hclge_dev *hdev,
7820 struct phy_device *phydev)
7824 if (!phydev->suspended) {
7825 ret = phy_suspend(phydev);
7830 ret = phy_resume(phydev);
7834 return phy_loopback(phydev, true);
7837 static int hclge_disable_phy_loopback(struct hclge_dev *hdev,
7838 struct phy_device *phydev)
7842 ret = phy_loopback(phydev, false);
7846 return phy_suspend(phydev);
7849 static int hclge_set_phy_loopback(struct hclge_dev *hdev, bool en)
7851 struct phy_device *phydev = hdev->hw.mac.phydev;
7855 if (hnae3_dev_phy_imp_supported(hdev))
7856 return hclge_set_common_loopback(hdev, en,
7862 ret = hclge_enable_phy_loopback(hdev, phydev);
7864 ret = hclge_disable_phy_loopback(hdev, phydev);
7866 dev_err(&hdev->pdev->dev,
7867 "set phy loopback fail, ret = %d\n", ret);
7871 hclge_cfg_mac_mode(hdev, en);
7873 ret = hclge_mac_phy_link_status_wait(hdev, en, true);
7875 dev_err(&hdev->pdev->dev,
7876 "phy loopback config mac mode timeout\n");
7881 static int hclge_tqp_enable_cmd_send(struct hclge_dev *hdev, u16 tqp_id,
7882 u16 stream_id, bool enable)
7884 struct hclge_desc desc;
7885 struct hclge_cfg_com_tqp_queue_cmd *req =
7886 (struct hclge_cfg_com_tqp_queue_cmd *)desc.data;
7888 hclge_cmd_setup_basic_desc(&desc, HCLGE_OPC_CFG_COM_TQP_QUEUE, false);
7889 req->tqp_id = cpu_to_le16(tqp_id);
7890 req->stream_id = cpu_to_le16(stream_id);
7892 req->enable |= 1U << HCLGE_TQP_ENABLE_B;
7894 return hclge_cmd_send(&hdev->hw, &desc, 1);
7897 static int hclge_tqp_enable(struct hnae3_handle *handle, bool enable)
7899 struct hclge_vport *vport = hclge_get_vport(handle);
7900 struct hclge_dev *hdev = vport->back;
7904 for (i = 0; i < handle->kinfo.num_tqps; i++) {
7905 ret = hclge_tqp_enable_cmd_send(hdev, i, 0, enable);
7912 static int hclge_set_loopback(struct hnae3_handle *handle,
7913 enum hnae3_loop loop_mode, bool en)
7915 struct hclge_vport *vport = hclge_get_vport(handle);
7916 struct hclge_dev *hdev = vport->back;
7919 /* Loopback can be enabled in three places: SSU, MAC, and serdes. By
7920 * default, SSU loopback is enabled, so if the SMAC and the DMAC are
7921 * the same, the packets are looped back in the SSU. If SSU loopback
7922 * is disabled, packets can reach MAC even if SMAC is the same as DMAC.
7924 if (hdev->ae_dev->dev_version >= HNAE3_DEVICE_VERSION_V2) {
7925 u8 switch_param = en ? 0 : BIT(HCLGE_SWITCH_ALW_LPBK_B);
7927 ret = hclge_config_switch_param(hdev, PF_VPORT_ID, switch_param,
7928 HCLGE_SWITCH_ALW_LPBK_MASK);
7933 switch (loop_mode) {
7934 case HNAE3_LOOP_APP:
7935 ret = hclge_set_app_loopback(hdev, en);
7937 case HNAE3_LOOP_SERIAL_SERDES:
7938 case HNAE3_LOOP_PARALLEL_SERDES:
7939 ret = hclge_set_common_loopback(hdev, en, loop_mode);
7941 case HNAE3_LOOP_PHY:
7942 ret = hclge_set_phy_loopback(hdev, en);
7944 case HNAE3_LOOP_EXTERNAL:
7948 dev_err(&hdev->pdev->dev,
7949 "loop_mode %d is not supported\n", loop_mode);
7956 ret = hclge_tqp_enable(handle, en);
7958 dev_err(&hdev->pdev->dev, "failed to %s tqp in loopback, ret = %d\n",
7959 en ? "enable" : "disable", ret);
7964 static int hclge_set_default_loopback(struct hclge_dev *hdev)
7968 ret = hclge_set_app_loopback(hdev, false);
7972 ret = hclge_cfg_common_loopback(hdev, false, HNAE3_LOOP_SERIAL_SERDES);
7976 return hclge_cfg_common_loopback(hdev, false,
7977 HNAE3_LOOP_PARALLEL_SERDES);
7980 static void hclge_flush_link_update(struct hclge_dev *hdev)
7982 #define HCLGE_FLUSH_LINK_TIMEOUT 100000
7984 unsigned long last = hdev->serv_processed_cnt;
7987 while (test_bit(HCLGE_STATE_LINK_UPDATING, &hdev->state) &&
7988 i++ < HCLGE_FLUSH_LINK_TIMEOUT &&
7989 last == hdev->serv_processed_cnt)
7993 static void hclge_set_timer_task(struct hnae3_handle *handle, bool enable)
7995 struct hclge_vport *vport = hclge_get_vport(handle);
7996 struct hclge_dev *hdev = vport->back;
7999 hclge_task_schedule(hdev, 0);
8001 /* Set the DOWN flag here to disable link updating */
8002 set_bit(HCLGE_STATE_DOWN, &hdev->state);
8004 /* flush memory to make sure DOWN is seen by service task */
8005 smp_mb__before_atomic();
8006 hclge_flush_link_update(hdev);
8010 static int hclge_ae_start(struct hnae3_handle *handle)
8012 struct hclge_vport *vport = hclge_get_vport(handle);
8013 struct hclge_dev *hdev = vport->back;
8016 hclge_cfg_mac_mode(hdev, true);
8017 clear_bit(HCLGE_STATE_DOWN, &hdev->state);
8018 hdev->hw.mac.link = 0;
8020 /* reset tqp stats */
8021 hclge_comm_reset_tqp_stats(handle);
8023 hclge_mac_start_phy(hdev);
8028 static void hclge_ae_stop(struct hnae3_handle *handle)
8030 struct hclge_vport *vport = hclge_get_vport(handle);
8031 struct hclge_dev *hdev = vport->back;
8033 set_bit(HCLGE_STATE_DOWN, &hdev->state);
8034 spin_lock_bh(&hdev->fd_rule_lock);
8035 hclge_clear_arfs_rules(hdev);
8036 spin_unlock_bh(&hdev->fd_rule_lock);
8038 /* If it is not PF reset or FLR, the firmware will disable the MAC,
8039 * so it only need to stop phy here.
8041 if (test_bit(HCLGE_STATE_RST_HANDLING, &hdev->state) &&
8042 hdev->reset_type != HNAE3_FUNC_RESET &&
8043 hdev->reset_type != HNAE3_FLR_RESET) {
8044 hclge_mac_stop_phy(hdev);
8045 hclge_update_link_status(hdev);
8049 hclge_reset_tqp(handle);
8051 hclge_config_mac_tnl_int(hdev, false);
8054 hclge_cfg_mac_mode(hdev, false);
8056 hclge_mac_stop_phy(hdev);
8058 /* reset tqp stats */
8059 hclge_comm_reset_tqp_stats(handle);
8060 hclge_update_link_status(hdev);
8063 int hclge_vport_start(struct hclge_vport *vport)
8065 struct hclge_dev *hdev = vport->back;
8067 set_bit(HCLGE_VPORT_STATE_ALIVE, &vport->state);
8068 set_bit(HCLGE_VPORT_STATE_PROMISC_CHANGE, &vport->state);
8069 vport->last_active_jiffies = jiffies;
8071 if (test_bit(vport->vport_id, hdev->vport_config_block)) {
8072 if (vport->vport_id) {
8073 hclge_restore_mac_table_common(vport);
8074 hclge_restore_vport_vlan_table(vport);
8076 hclge_restore_hw_table(hdev);
8080 clear_bit(vport->vport_id, hdev->vport_config_block);
8085 void hclge_vport_stop(struct hclge_vport *vport)
8087 clear_bit(HCLGE_VPORT_STATE_ALIVE, &vport->state);
8090 static int hclge_client_start(struct hnae3_handle *handle)
8092 struct hclge_vport *vport = hclge_get_vport(handle);
8094 return hclge_vport_start(vport);
8097 static void hclge_client_stop(struct hnae3_handle *handle)
8099 struct hclge_vport *vport = hclge_get_vport(handle);
8101 hclge_vport_stop(vport);
8104 static int hclge_get_mac_vlan_cmd_status(struct hclge_vport *vport,
8105 u16 cmdq_resp, u8 resp_code,
8106 enum hclge_mac_vlan_tbl_opcode op)
8108 struct hclge_dev *hdev = vport->back;
8111 dev_err(&hdev->pdev->dev,
8112 "cmdq execute failed for get_mac_vlan_cmd_status,status=%u.\n",
8117 if (op == HCLGE_MAC_VLAN_ADD) {
8118 if (!resp_code || resp_code == 1)
8120 else if (resp_code == HCLGE_ADD_UC_OVERFLOW ||
8121 resp_code == HCLGE_ADD_MC_OVERFLOW)
8124 dev_err(&hdev->pdev->dev,
8125 "add mac addr failed for undefined, code=%u.\n",
8128 } else if (op == HCLGE_MAC_VLAN_REMOVE) {
8131 } else if (resp_code == 1) {
8132 dev_dbg(&hdev->pdev->dev,
8133 "remove mac addr failed for miss.\n");
8137 dev_err(&hdev->pdev->dev,
8138 "remove mac addr failed for undefined, code=%u.\n",
8141 } else if (op == HCLGE_MAC_VLAN_LKUP) {
8144 } else if (resp_code == 1) {
8145 dev_dbg(&hdev->pdev->dev,
8146 "lookup mac addr failed for miss.\n");
8150 dev_err(&hdev->pdev->dev,
8151 "lookup mac addr failed for undefined, code=%u.\n",
8156 dev_err(&hdev->pdev->dev,
8157 "unknown opcode for get_mac_vlan_cmd_status, opcode=%d.\n", op);
8162 static int hclge_update_desc_vfid(struct hclge_desc *desc, int vfid, bool clr)
8164 #define HCLGE_VF_NUM_IN_FIRST_DESC 192
8166 unsigned int word_num;
8167 unsigned int bit_num;
8169 if (vfid > 255 || vfid < 0)
8172 if (vfid >= 0 && vfid < HCLGE_VF_NUM_IN_FIRST_DESC) {
8173 word_num = vfid / 32;
8174 bit_num = vfid % 32;
8176 desc[1].data[word_num] &= cpu_to_le32(~(1 << bit_num));
8178 desc[1].data[word_num] |= cpu_to_le32(1 << bit_num);
8180 word_num = (vfid - HCLGE_VF_NUM_IN_FIRST_DESC) / 32;
8181 bit_num = vfid % 32;
8183 desc[2].data[word_num] &= cpu_to_le32(~(1 << bit_num));
8185 desc[2].data[word_num] |= cpu_to_le32(1 << bit_num);
8191 static bool hclge_is_all_function_id_zero(struct hclge_desc *desc)
8193 #define HCLGE_DESC_NUMBER 3
8194 #define HCLGE_FUNC_NUMBER_PER_DESC 6
8197 for (i = 1; i < HCLGE_DESC_NUMBER; i++)
8198 for (j = 0; j < HCLGE_FUNC_NUMBER_PER_DESC; j++)
8199 if (desc[i].data[j])
8205 static void hclge_prepare_mac_addr(struct hclge_mac_vlan_tbl_entry_cmd *new_req,
8206 const u8 *addr, bool is_mc)
8208 const unsigned char *mac_addr = addr;
8209 u32 high_val = mac_addr[2] << 16 | (mac_addr[3] << 24) |
8210 (mac_addr[0]) | (mac_addr[1] << 8);
8211 u32 low_val = mac_addr[4] | (mac_addr[5] << 8);
8213 hnae3_set_bit(new_req->flags, HCLGE_MAC_VLAN_BIT0_EN_B, 1);
8215 hnae3_set_bit(new_req->entry_type, HCLGE_MAC_VLAN_BIT1_EN_B, 1);
8216 hnae3_set_bit(new_req->mc_mac_en, HCLGE_MAC_VLAN_BIT0_EN_B, 1);
8219 new_req->mac_addr_hi32 = cpu_to_le32(high_val);
8220 new_req->mac_addr_lo16 = cpu_to_le16(low_val & 0xffff);
8223 static int hclge_remove_mac_vlan_tbl(struct hclge_vport *vport,
8224 struct hclge_mac_vlan_tbl_entry_cmd *req)
8226 struct hclge_dev *hdev = vport->back;
8227 struct hclge_desc desc;
8232 hclge_cmd_setup_basic_desc(&desc, HCLGE_OPC_MAC_VLAN_REMOVE, false);
8234 memcpy(desc.data, req, sizeof(struct hclge_mac_vlan_tbl_entry_cmd));
8236 ret = hclge_cmd_send(&hdev->hw, &desc, 1);
8238 dev_err(&hdev->pdev->dev,
8239 "del mac addr failed for cmd_send, ret =%d.\n",
8243 resp_code = (le32_to_cpu(desc.data[0]) >> 8) & 0xff;
8244 retval = le16_to_cpu(desc.retval);
8246 return hclge_get_mac_vlan_cmd_status(vport, retval, resp_code,
8247 HCLGE_MAC_VLAN_REMOVE);
8250 static int hclge_lookup_mac_vlan_tbl(struct hclge_vport *vport,
8251 struct hclge_mac_vlan_tbl_entry_cmd *req,
8252 struct hclge_desc *desc,
8255 struct hclge_dev *hdev = vport->back;
8260 hclge_cmd_setup_basic_desc(&desc[0], HCLGE_OPC_MAC_VLAN_ADD, true);
8262 desc[0].flag |= cpu_to_le16(HCLGE_COMM_CMD_FLAG_NEXT);
8263 memcpy(desc[0].data,
8265 sizeof(struct hclge_mac_vlan_tbl_entry_cmd));
8266 hclge_cmd_setup_basic_desc(&desc[1],
8267 HCLGE_OPC_MAC_VLAN_ADD,
8269 desc[1].flag |= cpu_to_le16(HCLGE_COMM_CMD_FLAG_NEXT);
8270 hclge_cmd_setup_basic_desc(&desc[2],
8271 HCLGE_OPC_MAC_VLAN_ADD,
8273 ret = hclge_cmd_send(&hdev->hw, desc, 3);
8275 memcpy(desc[0].data,
8277 sizeof(struct hclge_mac_vlan_tbl_entry_cmd));
8278 ret = hclge_cmd_send(&hdev->hw, desc, 1);
8281 dev_err(&hdev->pdev->dev,
8282 "lookup mac addr failed for cmd_send, ret =%d.\n",
8286 resp_code = (le32_to_cpu(desc[0].data[0]) >> 8) & 0xff;
8287 retval = le16_to_cpu(desc[0].retval);
8289 return hclge_get_mac_vlan_cmd_status(vport, retval, resp_code,
8290 HCLGE_MAC_VLAN_LKUP);
8293 static int hclge_add_mac_vlan_tbl(struct hclge_vport *vport,
8294 struct hclge_mac_vlan_tbl_entry_cmd *req,
8295 struct hclge_desc *mc_desc)
8297 struct hclge_dev *hdev = vport->back;
8304 struct hclge_desc desc;
8306 hclge_cmd_setup_basic_desc(&desc,
8307 HCLGE_OPC_MAC_VLAN_ADD,
8309 memcpy(desc.data, req,
8310 sizeof(struct hclge_mac_vlan_tbl_entry_cmd));
8311 ret = hclge_cmd_send(&hdev->hw, &desc, 1);
8312 resp_code = (le32_to_cpu(desc.data[0]) >> 8) & 0xff;
8313 retval = le16_to_cpu(desc.retval);
8315 cfg_status = hclge_get_mac_vlan_cmd_status(vport, retval,
8317 HCLGE_MAC_VLAN_ADD);
8319 hclge_comm_cmd_reuse_desc(&mc_desc[0], false);
8320 mc_desc[0].flag |= cpu_to_le16(HCLGE_COMM_CMD_FLAG_NEXT);
8321 hclge_comm_cmd_reuse_desc(&mc_desc[1], false);
8322 mc_desc[1].flag |= cpu_to_le16(HCLGE_COMM_CMD_FLAG_NEXT);
8323 hclge_comm_cmd_reuse_desc(&mc_desc[2], false);
8324 mc_desc[2].flag &= cpu_to_le16(~HCLGE_COMM_CMD_FLAG_NEXT);
8325 memcpy(mc_desc[0].data, req,
8326 sizeof(struct hclge_mac_vlan_tbl_entry_cmd));
8327 ret = hclge_cmd_send(&hdev->hw, mc_desc, 3);
8328 resp_code = (le32_to_cpu(mc_desc[0].data[0]) >> 8) & 0xff;
8329 retval = le16_to_cpu(mc_desc[0].retval);
8331 cfg_status = hclge_get_mac_vlan_cmd_status(vport, retval,
8333 HCLGE_MAC_VLAN_ADD);
8337 dev_err(&hdev->pdev->dev,
8338 "add mac addr failed for cmd_send, ret =%d.\n",
8346 static int hclge_set_umv_space(struct hclge_dev *hdev, u16 space_size,
8347 u16 *allocated_size)
8349 struct hclge_umv_spc_alc_cmd *req;
8350 struct hclge_desc desc;
8353 req = (struct hclge_umv_spc_alc_cmd *)desc.data;
8354 hclge_cmd_setup_basic_desc(&desc, HCLGE_OPC_MAC_VLAN_ALLOCATE, false);
8356 req->space_size = cpu_to_le32(space_size);
8358 ret = hclge_cmd_send(&hdev->hw, &desc, 1);
8360 dev_err(&hdev->pdev->dev, "failed to set umv space, ret = %d\n",
8365 *allocated_size = le32_to_cpu(desc.data[1]);
8370 static int hclge_init_umv_space(struct hclge_dev *hdev)
8372 u16 allocated_size = 0;
8375 ret = hclge_set_umv_space(hdev, hdev->wanted_umv_size, &allocated_size);
8379 if (allocated_size < hdev->wanted_umv_size)
8380 dev_warn(&hdev->pdev->dev,
8381 "failed to alloc umv space, want %u, get %u\n",
8382 hdev->wanted_umv_size, allocated_size);
8384 hdev->max_umv_size = allocated_size;
8385 hdev->priv_umv_size = hdev->max_umv_size / (hdev->num_alloc_vport + 1);
8386 hdev->share_umv_size = hdev->priv_umv_size +
8387 hdev->max_umv_size % (hdev->num_alloc_vport + 1);
8389 if (hdev->ae_dev->dev_specs.mc_mac_size)
8390 set_bit(HNAE3_DEV_SUPPORT_MC_MAC_MNG_B, hdev->ae_dev->caps);
8395 static void hclge_reset_umv_space(struct hclge_dev *hdev)
8397 struct hclge_vport *vport;
8400 for (i = 0; i < hdev->num_alloc_vport; i++) {
8401 vport = &hdev->vport[i];
8402 vport->used_umv_num = 0;
8405 mutex_lock(&hdev->vport_lock);
8406 hdev->share_umv_size = hdev->priv_umv_size +
8407 hdev->max_umv_size % (hdev->num_alloc_vport + 1);
8408 mutex_unlock(&hdev->vport_lock);
8410 hdev->used_mc_mac_num = 0;
8413 static bool hclge_is_umv_space_full(struct hclge_vport *vport, bool need_lock)
8415 struct hclge_dev *hdev = vport->back;
8419 mutex_lock(&hdev->vport_lock);
8421 is_full = (vport->used_umv_num >= hdev->priv_umv_size &&
8422 hdev->share_umv_size == 0);
8425 mutex_unlock(&hdev->vport_lock);
8430 static void hclge_update_umv_space(struct hclge_vport *vport, bool is_free)
8432 struct hclge_dev *hdev = vport->back;
8435 if (vport->used_umv_num > hdev->priv_umv_size)
8436 hdev->share_umv_size++;
8438 if (vport->used_umv_num > 0)
8439 vport->used_umv_num--;
8441 if (vport->used_umv_num >= hdev->priv_umv_size &&
8442 hdev->share_umv_size > 0)
8443 hdev->share_umv_size--;
8444 vport->used_umv_num++;
8448 static struct hclge_mac_node *hclge_find_mac_node(struct list_head *list,
8451 struct hclge_mac_node *mac_node, *tmp;
8453 list_for_each_entry_safe(mac_node, tmp, list, node)
8454 if (ether_addr_equal(mac_addr, mac_node->mac_addr))
8460 static void hclge_update_mac_node(struct hclge_mac_node *mac_node,
8461 enum HCLGE_MAC_NODE_STATE state)
8464 /* from set_rx_mode or tmp_add_list */
8465 case HCLGE_MAC_TO_ADD:
8466 if (mac_node->state == HCLGE_MAC_TO_DEL)
8467 mac_node->state = HCLGE_MAC_ACTIVE;
8469 /* only from set_rx_mode */
8470 case HCLGE_MAC_TO_DEL:
8471 if (mac_node->state == HCLGE_MAC_TO_ADD) {
8472 list_del(&mac_node->node);
8475 mac_node->state = HCLGE_MAC_TO_DEL;
8478 /* only from tmp_add_list, the mac_node->state won't be
8481 case HCLGE_MAC_ACTIVE:
8482 if (mac_node->state == HCLGE_MAC_TO_ADD)
8483 mac_node->state = HCLGE_MAC_ACTIVE;
8489 int hclge_update_mac_list(struct hclge_vport *vport,
8490 enum HCLGE_MAC_NODE_STATE state,
8491 enum HCLGE_MAC_ADDR_TYPE mac_type,
8492 const unsigned char *addr)
8494 char format_mac_addr[HNAE3_FORMAT_MAC_ADDR_LEN];
8495 struct hclge_dev *hdev = vport->back;
8496 struct hclge_mac_node *mac_node;
8497 struct list_head *list;
8499 list = (mac_type == HCLGE_MAC_ADDR_UC) ?
8500 &vport->uc_mac_list : &vport->mc_mac_list;
8502 spin_lock_bh(&vport->mac_list_lock);
8504 /* if the mac addr is already in the mac list, no need to add a new
8505 * one into it, just check the mac addr state, convert it to a new
8506 * state, or just remove it, or do nothing.
8508 mac_node = hclge_find_mac_node(list, addr);
8510 hclge_update_mac_node(mac_node, state);
8511 spin_unlock_bh(&vport->mac_list_lock);
8512 set_bit(HCLGE_VPORT_STATE_MAC_TBL_CHANGE, &vport->state);
8516 /* if this address is never added, unnecessary to delete */
8517 if (state == HCLGE_MAC_TO_DEL) {
8518 spin_unlock_bh(&vport->mac_list_lock);
8519 hnae3_format_mac_addr(format_mac_addr, addr);
8520 dev_err(&hdev->pdev->dev,
8521 "failed to delete address %s from mac list\n",
8526 mac_node = kzalloc(sizeof(*mac_node), GFP_ATOMIC);
8528 spin_unlock_bh(&vport->mac_list_lock);
8532 set_bit(HCLGE_VPORT_STATE_MAC_TBL_CHANGE, &vport->state);
8534 mac_node->state = state;
8535 ether_addr_copy(mac_node->mac_addr, addr);
8536 list_add_tail(&mac_node->node, list);
8538 spin_unlock_bh(&vport->mac_list_lock);
8543 static int hclge_add_uc_addr(struct hnae3_handle *handle,
8544 const unsigned char *addr)
8546 struct hclge_vport *vport = hclge_get_vport(handle);
8548 return hclge_update_mac_list(vport, HCLGE_MAC_TO_ADD, HCLGE_MAC_ADDR_UC,
8552 int hclge_add_uc_addr_common(struct hclge_vport *vport,
8553 const unsigned char *addr)
8555 char format_mac_addr[HNAE3_FORMAT_MAC_ADDR_LEN];
8556 struct hclge_dev *hdev = vport->back;
8557 struct hclge_mac_vlan_tbl_entry_cmd req;
8558 struct hclge_desc desc;
8559 u16 egress_port = 0;
8562 /* mac addr check */
8563 if (is_zero_ether_addr(addr) ||
8564 is_broadcast_ether_addr(addr) ||
8565 is_multicast_ether_addr(addr)) {
8566 hnae3_format_mac_addr(format_mac_addr, addr);
8567 dev_err(&hdev->pdev->dev,
8568 "Set_uc mac err! invalid mac:%s. is_zero:%d,is_br=%d,is_mul=%d\n",
8569 format_mac_addr, is_zero_ether_addr(addr),
8570 is_broadcast_ether_addr(addr),
8571 is_multicast_ether_addr(addr));
8575 memset(&req, 0, sizeof(req));
8577 hnae3_set_field(egress_port, HCLGE_MAC_EPORT_VFID_M,
8578 HCLGE_MAC_EPORT_VFID_S, vport->vport_id);
8580 req.egress_port = cpu_to_le16(egress_port);
8582 hclge_prepare_mac_addr(&req, addr, false);
8584 /* Lookup the mac address in the mac_vlan table, and add
8585 * it if the entry is inexistent. Repeated unicast entry
8586 * is not allowed in the mac vlan table.
8588 ret = hclge_lookup_mac_vlan_tbl(vport, &req, &desc, false);
8589 if (ret == -ENOENT) {
8590 mutex_lock(&hdev->vport_lock);
8591 if (!hclge_is_umv_space_full(vport, false)) {
8592 ret = hclge_add_mac_vlan_tbl(vport, &req, NULL);
8594 hclge_update_umv_space(vport, false);
8595 mutex_unlock(&hdev->vport_lock);
8598 mutex_unlock(&hdev->vport_lock);
8600 if (!(vport->overflow_promisc_flags & HNAE3_OVERFLOW_UPE))
8601 dev_err(&hdev->pdev->dev, "UC MAC table full(%u)\n",
8602 hdev->priv_umv_size);
8607 /* check if we just hit the duplicate */
8614 static int hclge_rm_uc_addr(struct hnae3_handle *handle,
8615 const unsigned char *addr)
8617 struct hclge_vport *vport = hclge_get_vport(handle);
8619 return hclge_update_mac_list(vport, HCLGE_MAC_TO_DEL, HCLGE_MAC_ADDR_UC,
8623 int hclge_rm_uc_addr_common(struct hclge_vport *vport,
8624 const unsigned char *addr)
8626 char format_mac_addr[HNAE3_FORMAT_MAC_ADDR_LEN];
8627 struct hclge_dev *hdev = vport->back;
8628 struct hclge_mac_vlan_tbl_entry_cmd req;
8631 /* mac addr check */
8632 if (is_zero_ether_addr(addr) ||
8633 is_broadcast_ether_addr(addr) ||
8634 is_multicast_ether_addr(addr)) {
8635 hnae3_format_mac_addr(format_mac_addr, addr);
8636 dev_dbg(&hdev->pdev->dev, "Remove mac err! invalid mac:%s.\n",
8641 memset(&req, 0, sizeof(req));
8642 hnae3_set_bit(req.entry_type, HCLGE_MAC_VLAN_BIT0_EN_B, 0);
8643 hclge_prepare_mac_addr(&req, addr, false);
8644 ret = hclge_remove_mac_vlan_tbl(vport, &req);
8645 if (!ret || ret == -ENOENT) {
8646 mutex_lock(&hdev->vport_lock);
8647 hclge_update_umv_space(vport, true);
8648 mutex_unlock(&hdev->vport_lock);
8655 static int hclge_add_mc_addr(struct hnae3_handle *handle,
8656 const unsigned char *addr)
8658 struct hclge_vport *vport = hclge_get_vport(handle);
8660 return hclge_update_mac_list(vport, HCLGE_MAC_TO_ADD, HCLGE_MAC_ADDR_MC,
8664 int hclge_add_mc_addr_common(struct hclge_vport *vport,
8665 const unsigned char *addr)
8667 char format_mac_addr[HNAE3_FORMAT_MAC_ADDR_LEN];
8668 struct hclge_dev *hdev = vport->back;
8669 struct hclge_mac_vlan_tbl_entry_cmd req;
8670 struct hclge_desc desc[3];
8671 bool is_new_addr = false;
8674 /* mac addr check */
8675 if (!is_multicast_ether_addr(addr)) {
8676 hnae3_format_mac_addr(format_mac_addr, addr);
8677 dev_err(&hdev->pdev->dev,
8678 "Add mc mac err! invalid mac:%s.\n",
8682 memset(&req, 0, sizeof(req));
8683 hclge_prepare_mac_addr(&req, addr, true);
8684 status = hclge_lookup_mac_vlan_tbl(vport, &req, desc, true);
8686 if (hnae3_ae_dev_mc_mac_mng_supported(hdev->ae_dev) &&
8687 hdev->used_mc_mac_num >=
8688 hdev->ae_dev->dev_specs.mc_mac_size)
8693 /* This mac addr do not exist, add new entry for it */
8694 memset(desc[0].data, 0, sizeof(desc[0].data));
8695 memset(desc[1].data, 0, sizeof(desc[0].data));
8696 memset(desc[2].data, 0, sizeof(desc[0].data));
8698 status = hclge_update_desc_vfid(desc, vport->vport_id, false);
8701 status = hclge_add_mac_vlan_tbl(vport, &req, desc);
8702 if (status == -ENOSPC)
8704 else if (!status && is_new_addr)
8705 hdev->used_mc_mac_num++;
8710 /* if already overflow, not to print each time */
8711 if (!(vport->overflow_promisc_flags & HNAE3_OVERFLOW_MPE)) {
8712 vport->overflow_promisc_flags |= HNAE3_OVERFLOW_MPE;
8713 dev_err(&hdev->pdev->dev, "mc mac vlan table is full\n");
8719 static int hclge_rm_mc_addr(struct hnae3_handle *handle,
8720 const unsigned char *addr)
8722 struct hclge_vport *vport = hclge_get_vport(handle);
8724 return hclge_update_mac_list(vport, HCLGE_MAC_TO_DEL, HCLGE_MAC_ADDR_MC,
8728 int hclge_rm_mc_addr_common(struct hclge_vport *vport,
8729 const unsigned char *addr)
8731 char format_mac_addr[HNAE3_FORMAT_MAC_ADDR_LEN];
8732 struct hclge_dev *hdev = vport->back;
8733 struct hclge_mac_vlan_tbl_entry_cmd req;
8734 enum hclge_comm_cmd_status status;
8735 struct hclge_desc desc[3];
8737 /* mac addr check */
8738 if (!is_multicast_ether_addr(addr)) {
8739 hnae3_format_mac_addr(format_mac_addr, addr);
8740 dev_dbg(&hdev->pdev->dev,
8741 "Remove mc mac err! invalid mac:%s.\n",
8746 memset(&req, 0, sizeof(req));
8747 hclge_prepare_mac_addr(&req, addr, true);
8748 status = hclge_lookup_mac_vlan_tbl(vport, &req, desc, true);
8750 /* This mac addr exist, remove this handle's VFID for it */
8751 status = hclge_update_desc_vfid(desc, vport->vport_id, true);
8755 if (hclge_is_all_function_id_zero(desc)) {
8756 /* All the vfid is zero, so need to delete this entry */
8757 status = hclge_remove_mac_vlan_tbl(vport, &req);
8759 hdev->used_mc_mac_num--;
8761 /* Not all the vfid is zero, update the vfid */
8762 status = hclge_add_mac_vlan_tbl(vport, &req, desc);
8764 } else if (status == -ENOENT) {
8771 static void hclge_sync_vport_mac_list(struct hclge_vport *vport,
8772 struct list_head *list,
8773 enum HCLGE_MAC_ADDR_TYPE mac_type)
8775 int (*sync)(struct hclge_vport *vport, const unsigned char *addr);
8776 struct hclge_mac_node *mac_node, *tmp;
8779 if (mac_type == HCLGE_MAC_ADDR_UC)
8780 sync = hclge_add_uc_addr_common;
8782 sync = hclge_add_mc_addr_common;
8784 list_for_each_entry_safe(mac_node, tmp, list, node) {
8785 ret = sync(vport, mac_node->mac_addr);
8787 mac_node->state = HCLGE_MAC_ACTIVE;
8789 set_bit(HCLGE_VPORT_STATE_MAC_TBL_CHANGE,
8792 /* If one unicast mac address is existing in hardware,
8793 * we need to try whether other unicast mac addresses
8794 * are new addresses that can be added.
8795 * Multicast mac address can be reusable, even though
8796 * there is no space to add new multicast mac address,
8797 * we should check whether other mac addresses are
8798 * existing in hardware for reuse.
8800 if ((mac_type == HCLGE_MAC_ADDR_UC && ret != -EEXIST) ||
8801 (mac_type == HCLGE_MAC_ADDR_MC && ret != -ENOSPC))
8807 static void hclge_unsync_vport_mac_list(struct hclge_vport *vport,
8808 struct list_head *list,
8809 enum HCLGE_MAC_ADDR_TYPE mac_type)
8811 int (*unsync)(struct hclge_vport *vport, const unsigned char *addr);
8812 struct hclge_mac_node *mac_node, *tmp;
8815 if (mac_type == HCLGE_MAC_ADDR_UC)
8816 unsync = hclge_rm_uc_addr_common;
8818 unsync = hclge_rm_mc_addr_common;
8820 list_for_each_entry_safe(mac_node, tmp, list, node) {
8821 ret = unsync(vport, mac_node->mac_addr);
8822 if (!ret || ret == -ENOENT) {
8823 list_del(&mac_node->node);
8826 set_bit(HCLGE_VPORT_STATE_MAC_TBL_CHANGE,
8833 static bool hclge_sync_from_add_list(struct list_head *add_list,
8834 struct list_head *mac_list)
8836 struct hclge_mac_node *mac_node, *tmp, *new_node;
8837 bool all_added = true;
8839 list_for_each_entry_safe(mac_node, tmp, add_list, node) {
8840 if (mac_node->state == HCLGE_MAC_TO_ADD)
8843 /* if the mac address from tmp_add_list is not in the
8844 * uc/mc_mac_list, it means have received a TO_DEL request
8845 * during the time window of adding the mac address into mac
8846 * table. if mac_node state is ACTIVE, then change it to TO_DEL,
8847 * then it will be removed at next time. else it must be TO_ADD,
8848 * this address hasn't been added into mac table,
8849 * so just remove the mac node.
8851 new_node = hclge_find_mac_node(mac_list, mac_node->mac_addr);
8853 hclge_update_mac_node(new_node, mac_node->state);
8854 list_del(&mac_node->node);
8856 } else if (mac_node->state == HCLGE_MAC_ACTIVE) {
8857 mac_node->state = HCLGE_MAC_TO_DEL;
8858 list_move_tail(&mac_node->node, mac_list);
8860 list_del(&mac_node->node);
8868 static void hclge_sync_from_del_list(struct list_head *del_list,
8869 struct list_head *mac_list)
8871 struct hclge_mac_node *mac_node, *tmp, *new_node;
8873 list_for_each_entry_safe(mac_node, tmp, del_list, node) {
8874 new_node = hclge_find_mac_node(mac_list, mac_node->mac_addr);
8876 /* If the mac addr exists in the mac list, it means
8877 * received a new TO_ADD request during the time window
8878 * of configuring the mac address. For the mac node
8879 * state is TO_ADD, and the address is already in the
8880 * in the hardware(due to delete fail), so we just need
8881 * to change the mac node state to ACTIVE.
8883 new_node->state = HCLGE_MAC_ACTIVE;
8884 list_del(&mac_node->node);
8887 list_move_tail(&mac_node->node, mac_list);
8892 static void hclge_update_overflow_flags(struct hclge_vport *vport,
8893 enum HCLGE_MAC_ADDR_TYPE mac_type,
8896 if (mac_type == HCLGE_MAC_ADDR_UC) {
8898 vport->overflow_promisc_flags &= ~HNAE3_OVERFLOW_UPE;
8900 vport->overflow_promisc_flags |= HNAE3_OVERFLOW_UPE;
8903 vport->overflow_promisc_flags &= ~HNAE3_OVERFLOW_MPE;
8905 vport->overflow_promisc_flags |= HNAE3_OVERFLOW_MPE;
8909 static void hclge_sync_vport_mac_table(struct hclge_vport *vport,
8910 enum HCLGE_MAC_ADDR_TYPE mac_type)
8912 struct hclge_mac_node *mac_node, *tmp, *new_node;
8913 struct list_head tmp_add_list, tmp_del_list;
8914 struct list_head *list;
8917 INIT_LIST_HEAD(&tmp_add_list);
8918 INIT_LIST_HEAD(&tmp_del_list);
8920 /* move the mac addr to the tmp_add_list and tmp_del_list, then
8921 * we can add/delete these mac addr outside the spin lock
8923 list = (mac_type == HCLGE_MAC_ADDR_UC) ?
8924 &vport->uc_mac_list : &vport->mc_mac_list;
8926 spin_lock_bh(&vport->mac_list_lock);
8928 list_for_each_entry_safe(mac_node, tmp, list, node) {
8929 switch (mac_node->state) {
8930 case HCLGE_MAC_TO_DEL:
8931 list_move_tail(&mac_node->node, &tmp_del_list);
8933 case HCLGE_MAC_TO_ADD:
8934 new_node = kzalloc(sizeof(*new_node), GFP_ATOMIC);
8937 ether_addr_copy(new_node->mac_addr, mac_node->mac_addr);
8938 new_node->state = mac_node->state;
8939 list_add_tail(&new_node->node, &tmp_add_list);
8947 spin_unlock_bh(&vport->mac_list_lock);
8949 /* delete first, in order to get max mac table space for adding */
8950 hclge_unsync_vport_mac_list(vport, &tmp_del_list, mac_type);
8951 hclge_sync_vport_mac_list(vport, &tmp_add_list, mac_type);
8953 /* if some mac addresses were added/deleted fail, move back to the
8954 * mac_list, and retry at next time.
8956 spin_lock_bh(&vport->mac_list_lock);
8958 hclge_sync_from_del_list(&tmp_del_list, list);
8959 all_added = hclge_sync_from_add_list(&tmp_add_list, list);
8961 spin_unlock_bh(&vport->mac_list_lock);
8963 hclge_update_overflow_flags(vport, mac_type, all_added);
8966 static bool hclge_need_sync_mac_table(struct hclge_vport *vport)
8968 struct hclge_dev *hdev = vport->back;
8970 if (test_bit(vport->vport_id, hdev->vport_config_block))
8973 if (test_and_clear_bit(HCLGE_VPORT_STATE_MAC_TBL_CHANGE, &vport->state))
8979 static void hclge_sync_mac_table(struct hclge_dev *hdev)
8983 for (i = 0; i < hdev->num_alloc_vport; i++) {
8984 struct hclge_vport *vport = &hdev->vport[i];
8986 if (!hclge_need_sync_mac_table(vport))
8989 hclge_sync_vport_mac_table(vport, HCLGE_MAC_ADDR_UC);
8990 hclge_sync_vport_mac_table(vport, HCLGE_MAC_ADDR_MC);
8994 static void hclge_build_del_list(struct list_head *list,
8996 struct list_head *tmp_del_list)
8998 struct hclge_mac_node *mac_cfg, *tmp;
9000 list_for_each_entry_safe(mac_cfg, tmp, list, node) {
9001 switch (mac_cfg->state) {
9002 case HCLGE_MAC_TO_DEL:
9003 case HCLGE_MAC_ACTIVE:
9004 list_move_tail(&mac_cfg->node, tmp_del_list);
9006 case HCLGE_MAC_TO_ADD:
9008 list_del(&mac_cfg->node);
9016 static void hclge_unsync_del_list(struct hclge_vport *vport,
9017 int (*unsync)(struct hclge_vport *vport,
9018 const unsigned char *addr),
9020 struct list_head *tmp_del_list)
9022 struct hclge_mac_node *mac_cfg, *tmp;
9025 list_for_each_entry_safe(mac_cfg, tmp, tmp_del_list, node) {
9026 ret = unsync(vport, mac_cfg->mac_addr);
9027 if (!ret || ret == -ENOENT) {
9028 /* clear all mac addr from hardware, but remain these
9029 * mac addr in the mac list, and restore them after
9030 * vf reset finished.
9033 mac_cfg->state == HCLGE_MAC_ACTIVE) {
9034 mac_cfg->state = HCLGE_MAC_TO_ADD;
9036 list_del(&mac_cfg->node);
9039 } else if (is_del_list) {
9040 mac_cfg->state = HCLGE_MAC_TO_DEL;
9045 void hclge_rm_vport_all_mac_table(struct hclge_vport *vport, bool is_del_list,
9046 enum HCLGE_MAC_ADDR_TYPE mac_type)
9048 int (*unsync)(struct hclge_vport *vport, const unsigned char *addr);
9049 struct hclge_dev *hdev = vport->back;
9050 struct list_head tmp_del_list, *list;
9052 if (mac_type == HCLGE_MAC_ADDR_UC) {
9053 list = &vport->uc_mac_list;
9054 unsync = hclge_rm_uc_addr_common;
9056 list = &vport->mc_mac_list;
9057 unsync = hclge_rm_mc_addr_common;
9060 INIT_LIST_HEAD(&tmp_del_list);
9063 set_bit(vport->vport_id, hdev->vport_config_block);
9065 spin_lock_bh(&vport->mac_list_lock);
9067 hclge_build_del_list(list, is_del_list, &tmp_del_list);
9069 spin_unlock_bh(&vport->mac_list_lock);
9071 hclge_unsync_del_list(vport, unsync, is_del_list, &tmp_del_list);
9073 spin_lock_bh(&vport->mac_list_lock);
9075 hclge_sync_from_del_list(&tmp_del_list, list);
9077 spin_unlock_bh(&vport->mac_list_lock);
9080 /* remove all mac address when uninitailize */
9081 static void hclge_uninit_vport_mac_list(struct hclge_vport *vport,
9082 enum HCLGE_MAC_ADDR_TYPE mac_type)
9084 struct hclge_mac_node *mac_node, *tmp;
9085 struct hclge_dev *hdev = vport->back;
9086 struct list_head tmp_del_list, *list;
9088 INIT_LIST_HEAD(&tmp_del_list);
9090 list = (mac_type == HCLGE_MAC_ADDR_UC) ?
9091 &vport->uc_mac_list : &vport->mc_mac_list;
9093 spin_lock_bh(&vport->mac_list_lock);
9095 list_for_each_entry_safe(mac_node, tmp, list, node) {
9096 switch (mac_node->state) {
9097 case HCLGE_MAC_TO_DEL:
9098 case HCLGE_MAC_ACTIVE:
9099 list_move_tail(&mac_node->node, &tmp_del_list);
9101 case HCLGE_MAC_TO_ADD:
9102 list_del(&mac_node->node);
9108 spin_unlock_bh(&vport->mac_list_lock);
9110 hclge_unsync_vport_mac_list(vport, &tmp_del_list, mac_type);
9112 if (!list_empty(&tmp_del_list))
9113 dev_warn(&hdev->pdev->dev,
9114 "uninit %s mac list for vport %u not completely.\n",
9115 mac_type == HCLGE_MAC_ADDR_UC ? "uc" : "mc",
9118 list_for_each_entry_safe(mac_node, tmp, &tmp_del_list, node) {
9119 list_del(&mac_node->node);
9124 static void hclge_uninit_mac_table(struct hclge_dev *hdev)
9126 struct hclge_vport *vport;
9129 for (i = 0; i < hdev->num_alloc_vport; i++) {
9130 vport = &hdev->vport[i];
9131 hclge_uninit_vport_mac_list(vport, HCLGE_MAC_ADDR_UC);
9132 hclge_uninit_vport_mac_list(vport, HCLGE_MAC_ADDR_MC);
9136 static int hclge_get_mac_ethertype_cmd_status(struct hclge_dev *hdev,
9137 u16 cmdq_resp, u8 resp_code)
9139 #define HCLGE_ETHERTYPE_SUCCESS_ADD 0
9140 #define HCLGE_ETHERTYPE_ALREADY_ADD 1
9141 #define HCLGE_ETHERTYPE_MGR_TBL_OVERFLOW 2
9142 #define HCLGE_ETHERTYPE_KEY_CONFLICT 3
9147 dev_err(&hdev->pdev->dev,
9148 "cmdq execute failed for get_mac_ethertype_cmd_status, status=%u.\n",
9153 switch (resp_code) {
9154 case HCLGE_ETHERTYPE_SUCCESS_ADD:
9155 case HCLGE_ETHERTYPE_ALREADY_ADD:
9158 case HCLGE_ETHERTYPE_MGR_TBL_OVERFLOW:
9159 dev_err(&hdev->pdev->dev,
9160 "add mac ethertype failed for manager table overflow.\n");
9161 return_status = -EIO;
9163 case HCLGE_ETHERTYPE_KEY_CONFLICT:
9164 dev_err(&hdev->pdev->dev,
9165 "add mac ethertype failed for key conflict.\n");
9166 return_status = -EIO;
9169 dev_err(&hdev->pdev->dev,
9170 "add mac ethertype failed for undefined, code=%u.\n",
9172 return_status = -EIO;
9175 return return_status;
9178 static int hclge_set_vf_mac(struct hnae3_handle *handle, int vf,
9181 struct hclge_vport *vport = hclge_get_vport(handle);
9182 char format_mac_addr[HNAE3_FORMAT_MAC_ADDR_LEN];
9183 struct hclge_dev *hdev = vport->back;
9185 vport = hclge_get_vf_vport(hdev, vf);
9189 hnae3_format_mac_addr(format_mac_addr, mac_addr);
9190 if (ether_addr_equal(mac_addr, vport->vf_info.mac)) {
9191 dev_info(&hdev->pdev->dev,
9192 "Specified MAC(=%s) is same as before, no change committed!\n",
9197 ether_addr_copy(vport->vf_info.mac, mac_addr);
9199 /* there is a timewindow for PF to know VF unalive, it may
9200 * cause send mailbox fail, but it doesn't matter, VF will
9201 * query it when reinit.
9203 if (test_bit(HCLGE_VPORT_STATE_ALIVE, &vport->state)) {
9204 dev_info(&hdev->pdev->dev,
9205 "MAC of VF %d has been set to %s, and it will be reinitialized!\n",
9206 vf, format_mac_addr);
9207 (void)hclge_inform_reset_assert_to_vf(vport);
9211 dev_info(&hdev->pdev->dev, "MAC of VF %d has been set to %s\n",
9212 vf, format_mac_addr);
9216 static int hclge_add_mgr_tbl(struct hclge_dev *hdev,
9217 const struct hclge_mac_mgr_tbl_entry_cmd *req)
9219 struct hclge_desc desc;
9224 hclge_cmd_setup_basic_desc(&desc, HCLGE_OPC_MAC_ETHTYPE_ADD, false);
9225 memcpy(desc.data, req, sizeof(struct hclge_mac_mgr_tbl_entry_cmd));
9227 ret = hclge_cmd_send(&hdev->hw, &desc, 1);
9229 dev_err(&hdev->pdev->dev,
9230 "add mac ethertype failed for cmd_send, ret =%d.\n",
9235 resp_code = (le32_to_cpu(desc.data[0]) >> 8) & 0xff;
9236 retval = le16_to_cpu(desc.retval);
9238 return hclge_get_mac_ethertype_cmd_status(hdev, retval, resp_code);
9241 static int init_mgr_tbl(struct hclge_dev *hdev)
9246 for (i = 0; i < ARRAY_SIZE(hclge_mgr_table); i++) {
9247 ret = hclge_add_mgr_tbl(hdev, &hclge_mgr_table[i]);
9249 dev_err(&hdev->pdev->dev,
9250 "add mac ethertype failed, ret =%d.\n",
9259 static void hclge_get_mac_addr(struct hnae3_handle *handle, u8 *p)
9261 struct hclge_vport *vport = hclge_get_vport(handle);
9262 struct hclge_dev *hdev = vport->back;
9264 ether_addr_copy(p, hdev->hw.mac.mac_addr);
9267 int hclge_update_mac_node_for_dev_addr(struct hclge_vport *vport,
9268 const u8 *old_addr, const u8 *new_addr)
9270 struct list_head *list = &vport->uc_mac_list;
9271 struct hclge_mac_node *old_node, *new_node;
9273 new_node = hclge_find_mac_node(list, new_addr);
9275 new_node = kzalloc(sizeof(*new_node), GFP_ATOMIC);
9279 new_node->state = HCLGE_MAC_TO_ADD;
9280 ether_addr_copy(new_node->mac_addr, new_addr);
9281 list_add(&new_node->node, list);
9283 if (new_node->state == HCLGE_MAC_TO_DEL)
9284 new_node->state = HCLGE_MAC_ACTIVE;
9286 /* make sure the new addr is in the list head, avoid dev
9287 * addr may be not re-added into mac table for the umv space
9288 * limitation after global/imp reset which will clear mac
9289 * table by hardware.
9291 list_move(&new_node->node, list);
9294 if (old_addr && !ether_addr_equal(old_addr, new_addr)) {
9295 old_node = hclge_find_mac_node(list, old_addr);
9297 if (old_node->state == HCLGE_MAC_TO_ADD) {
9298 list_del(&old_node->node);
9301 old_node->state = HCLGE_MAC_TO_DEL;
9306 set_bit(HCLGE_VPORT_STATE_MAC_TBL_CHANGE, &vport->state);
9311 static int hclge_set_mac_addr(struct hnae3_handle *handle, const void *p,
9314 const unsigned char *new_addr = (const unsigned char *)p;
9315 struct hclge_vport *vport = hclge_get_vport(handle);
9316 char format_mac_addr[HNAE3_FORMAT_MAC_ADDR_LEN];
9317 struct hclge_dev *hdev = vport->back;
9318 unsigned char *old_addr = NULL;
9321 /* mac addr check */
9322 if (is_zero_ether_addr(new_addr) ||
9323 is_broadcast_ether_addr(new_addr) ||
9324 is_multicast_ether_addr(new_addr)) {
9325 hnae3_format_mac_addr(format_mac_addr, new_addr);
9326 dev_err(&hdev->pdev->dev,
9327 "change uc mac err! invalid mac: %s.\n",
9332 ret = hclge_pause_addr_cfg(hdev, new_addr);
9334 dev_err(&hdev->pdev->dev,
9335 "failed to configure mac pause address, ret = %d\n",
9341 old_addr = hdev->hw.mac.mac_addr;
9343 spin_lock_bh(&vport->mac_list_lock);
9344 ret = hclge_update_mac_node_for_dev_addr(vport, old_addr, new_addr);
9346 hnae3_format_mac_addr(format_mac_addr, new_addr);
9347 dev_err(&hdev->pdev->dev,
9348 "failed to change the mac addr:%s, ret = %d\n",
9349 format_mac_addr, ret);
9350 spin_unlock_bh(&vport->mac_list_lock);
9353 hclge_pause_addr_cfg(hdev, old_addr);
9357 /* we must update dev addr with spin lock protect, preventing dev addr
9358 * being removed by set_rx_mode path.
9360 ether_addr_copy(hdev->hw.mac.mac_addr, new_addr);
9361 spin_unlock_bh(&vport->mac_list_lock);
9363 hclge_task_schedule(hdev, 0);
9368 static int hclge_mii_ioctl(struct hclge_dev *hdev, struct ifreq *ifr, int cmd)
9370 struct mii_ioctl_data *data = if_mii(ifr);
9372 if (!hnae3_dev_phy_imp_supported(hdev))
9377 data->phy_id = hdev->hw.mac.phy_addr;
9378 /* this command reads phy id and register at the same time */
9381 data->val_out = hclge_read_phy_reg(hdev, data->reg_num);
9385 return hclge_write_phy_reg(hdev, data->reg_num, data->val_in);
9391 static int hclge_do_ioctl(struct hnae3_handle *handle, struct ifreq *ifr,
9394 struct hclge_vport *vport = hclge_get_vport(handle);
9395 struct hclge_dev *hdev = vport->back;
9399 return hclge_ptp_get_cfg(hdev, ifr);
9401 return hclge_ptp_set_cfg(hdev, ifr);
9403 if (!hdev->hw.mac.phydev)
9404 return hclge_mii_ioctl(hdev, ifr, cmd);
9407 return phy_mii_ioctl(hdev->hw.mac.phydev, ifr, cmd);
9410 static int hclge_set_port_vlan_filter_bypass(struct hclge_dev *hdev, u8 vf_id,
9413 struct hclge_port_vlan_filter_bypass_cmd *req;
9414 struct hclge_desc desc;
9417 hclge_cmd_setup_basic_desc(&desc, HCLGE_OPC_PORT_VLAN_BYPASS, false);
9418 req = (struct hclge_port_vlan_filter_bypass_cmd *)desc.data;
9420 hnae3_set_bit(req->bypass_state, HCLGE_INGRESS_BYPASS_B,
9423 ret = hclge_cmd_send(&hdev->hw, &desc, 1);
9425 dev_err(&hdev->pdev->dev,
9426 "failed to set vport%u port vlan filter bypass state, ret = %d.\n",
9432 static int hclge_set_vlan_filter_ctrl(struct hclge_dev *hdev, u8 vlan_type,
9433 u8 fe_type, bool filter_en, u8 vf_id)
9435 struct hclge_vlan_filter_ctrl_cmd *req;
9436 struct hclge_desc desc;
9439 /* read current vlan filter parameter */
9440 hclge_cmd_setup_basic_desc(&desc, HCLGE_OPC_VLAN_FILTER_CTRL, true);
9441 req = (struct hclge_vlan_filter_ctrl_cmd *)desc.data;
9442 req->vlan_type = vlan_type;
9445 ret = hclge_cmd_send(&hdev->hw, &desc, 1);
9447 dev_err(&hdev->pdev->dev, "failed to get vport%u vlan filter config, ret = %d.\n",
9452 /* modify and write new config parameter */
9453 hclge_comm_cmd_reuse_desc(&desc, false);
9454 req->vlan_fe = filter_en ?
9455 (req->vlan_fe | fe_type) : (req->vlan_fe & ~fe_type);
9457 ret = hclge_cmd_send(&hdev->hw, &desc, 1);
9459 dev_err(&hdev->pdev->dev, "failed to set vport%u vlan filter, ret = %d.\n",
9465 static int hclge_set_vport_vlan_filter(struct hclge_vport *vport, bool enable)
9467 struct hclge_dev *hdev = vport->back;
9468 struct hnae3_ae_dev *ae_dev = hdev->ae_dev;
9471 if (hdev->ae_dev->dev_version < HNAE3_DEVICE_VERSION_V2)
9472 return hclge_set_vlan_filter_ctrl(hdev, HCLGE_FILTER_TYPE_VF,
9473 HCLGE_FILTER_FE_EGRESS_V1_B,
9474 enable, vport->vport_id);
9476 ret = hclge_set_vlan_filter_ctrl(hdev, HCLGE_FILTER_TYPE_VF,
9477 HCLGE_FILTER_FE_EGRESS, enable,
9482 if (test_bit(HNAE3_DEV_SUPPORT_PORT_VLAN_BYPASS_B, ae_dev->caps)) {
9483 ret = hclge_set_port_vlan_filter_bypass(hdev, vport->vport_id,
9485 } else if (!vport->vport_id) {
9486 if (test_bit(HNAE3_DEV_SUPPORT_VLAN_FLTR_MDF_B, ae_dev->caps))
9489 ret = hclge_set_vlan_filter_ctrl(hdev, HCLGE_FILTER_TYPE_PORT,
9490 HCLGE_FILTER_FE_INGRESS,
9497 static bool hclge_need_enable_vport_vlan_filter(struct hclge_vport *vport)
9499 struct hnae3_handle *handle = &vport->nic;
9500 struct hclge_vport_vlan_cfg *vlan, *tmp;
9501 struct hclge_dev *hdev = vport->back;
9503 if (vport->vport_id) {
9504 if (vport->port_base_vlan_cfg.state !=
9505 HNAE3_PORT_BASE_VLAN_DISABLE)
9508 if (vport->vf_info.trusted && vport->vf_info.request_uc_en)
9510 } else if (handle->netdev_flags & HNAE3_USER_UPE) {
9514 if (!vport->req_vlan_fltr_en)
9517 /* compatible with former device, always enable vlan filter */
9518 if (!test_bit(HNAE3_DEV_SUPPORT_VLAN_FLTR_MDF_B, hdev->ae_dev->caps))
9521 list_for_each_entry_safe(vlan, tmp, &vport->vlan_list, node)
9522 if (vlan->vlan_id != 0)
9528 int hclge_enable_vport_vlan_filter(struct hclge_vport *vport, bool request_en)
9530 struct hclge_dev *hdev = vport->back;
9534 mutex_lock(&hdev->vport_lock);
9536 vport->req_vlan_fltr_en = request_en;
9538 need_en = hclge_need_enable_vport_vlan_filter(vport);
9539 if (need_en == vport->cur_vlan_fltr_en) {
9540 mutex_unlock(&hdev->vport_lock);
9544 ret = hclge_set_vport_vlan_filter(vport, need_en);
9546 mutex_unlock(&hdev->vport_lock);
9550 vport->cur_vlan_fltr_en = need_en;
9552 mutex_unlock(&hdev->vport_lock);
9557 static int hclge_enable_vlan_filter(struct hnae3_handle *handle, bool enable)
9559 struct hclge_vport *vport = hclge_get_vport(handle);
9561 return hclge_enable_vport_vlan_filter(vport, enable);
9564 static int hclge_set_vf_vlan_filter_cmd(struct hclge_dev *hdev, u16 vfid,
9565 bool is_kill, u16 vlan,
9566 struct hclge_desc *desc)
9568 struct hclge_vlan_filter_vf_cfg_cmd *req0;
9569 struct hclge_vlan_filter_vf_cfg_cmd *req1;
9574 hclge_cmd_setup_basic_desc(&desc[0],
9575 HCLGE_OPC_VLAN_FILTER_VF_CFG, false);
9576 hclge_cmd_setup_basic_desc(&desc[1],
9577 HCLGE_OPC_VLAN_FILTER_VF_CFG, false);
9579 desc[0].flag |= cpu_to_le16(HCLGE_COMM_CMD_FLAG_NEXT);
9581 vf_byte_off = vfid / 8;
9582 vf_byte_val = 1 << (vfid % 8);
9584 req0 = (struct hclge_vlan_filter_vf_cfg_cmd *)desc[0].data;
9585 req1 = (struct hclge_vlan_filter_vf_cfg_cmd *)desc[1].data;
9587 req0->vlan_id = cpu_to_le16(vlan);
9588 req0->vlan_cfg = is_kill;
9590 if (vf_byte_off < HCLGE_MAX_VF_BYTES)
9591 req0->vf_bitmap[vf_byte_off] = vf_byte_val;
9593 req1->vf_bitmap[vf_byte_off - HCLGE_MAX_VF_BYTES] = vf_byte_val;
9595 ret = hclge_cmd_send(&hdev->hw, desc, 2);
9597 dev_err(&hdev->pdev->dev,
9598 "Send vf vlan command fail, ret =%d.\n",
9606 static int hclge_check_vf_vlan_cmd_status(struct hclge_dev *hdev, u16 vfid,
9607 bool is_kill, struct hclge_desc *desc)
9609 struct hclge_vlan_filter_vf_cfg_cmd *req;
9611 req = (struct hclge_vlan_filter_vf_cfg_cmd *)desc[0].data;
9614 #define HCLGE_VF_VLAN_NO_ENTRY 2
9615 if (!req->resp_code || req->resp_code == 1)
9618 if (req->resp_code == HCLGE_VF_VLAN_NO_ENTRY) {
9619 set_bit(vfid, hdev->vf_vlan_full);
9620 dev_warn(&hdev->pdev->dev,
9621 "vf vlan table is full, vf vlan filter is disabled\n");
9625 dev_err(&hdev->pdev->dev,
9626 "Add vf vlan filter fail, ret =%u.\n",
9629 #define HCLGE_VF_VLAN_DEL_NO_FOUND 1
9630 if (!req->resp_code)
9633 /* vf vlan filter is disabled when vf vlan table is full,
9634 * then new vlan id will not be added into vf vlan table.
9635 * Just return 0 without warning, avoid massive verbose
9636 * print logs when unload.
9638 if (req->resp_code == HCLGE_VF_VLAN_DEL_NO_FOUND)
9641 dev_err(&hdev->pdev->dev,
9642 "Kill vf vlan filter fail, ret =%u.\n",
9649 static int hclge_set_vf_vlan_common(struct hclge_dev *hdev, u16 vfid,
9650 bool is_kill, u16 vlan)
9652 struct hclge_vport *vport = &hdev->vport[vfid];
9653 struct hclge_desc desc[2];
9656 /* if vf vlan table is full, firmware will close vf vlan filter, it
9657 * is unable and unnecessary to add new vlan id to vf vlan filter.
9658 * If spoof check is enable, and vf vlan is full, it shouldn't add
9659 * new vlan, because tx packets with these vlan id will be dropped.
9661 if (test_bit(vfid, hdev->vf_vlan_full) && !is_kill) {
9662 if (vport->vf_info.spoofchk && vlan) {
9663 dev_err(&hdev->pdev->dev,
9664 "Can't add vlan due to spoof check is on and vf vlan table is full\n");
9670 ret = hclge_set_vf_vlan_filter_cmd(hdev, vfid, is_kill, vlan, desc);
9674 return hclge_check_vf_vlan_cmd_status(hdev, vfid, is_kill, desc);
9677 static int hclge_set_port_vlan_filter(struct hclge_dev *hdev, __be16 proto,
9678 u16 vlan_id, bool is_kill)
9680 struct hclge_vlan_filter_pf_cfg_cmd *req;
9681 struct hclge_desc desc;
9682 u8 vlan_offset_byte_val;
9683 u8 vlan_offset_byte;
9687 hclge_cmd_setup_basic_desc(&desc, HCLGE_OPC_VLAN_FILTER_PF_CFG, false);
9689 vlan_offset_160 = vlan_id / HCLGE_VLAN_ID_OFFSET_STEP;
9690 vlan_offset_byte = (vlan_id % HCLGE_VLAN_ID_OFFSET_STEP) /
9691 HCLGE_VLAN_BYTE_SIZE;
9692 vlan_offset_byte_val = 1 << (vlan_id % HCLGE_VLAN_BYTE_SIZE);
9694 req = (struct hclge_vlan_filter_pf_cfg_cmd *)desc.data;
9695 req->vlan_offset = vlan_offset_160;
9696 req->vlan_cfg = is_kill;
9697 req->vlan_offset_bitmap[vlan_offset_byte] = vlan_offset_byte_val;
9699 ret = hclge_cmd_send(&hdev->hw, &desc, 1);
9701 dev_err(&hdev->pdev->dev,
9702 "port vlan command, send fail, ret =%d.\n", ret);
9706 static bool hclge_need_update_port_vlan(struct hclge_dev *hdev, u16 vport_id,
9707 u16 vlan_id, bool is_kill)
9709 /* vlan 0 may be added twice when 8021q module is enabled */
9710 if (!is_kill && !vlan_id &&
9711 test_bit(vport_id, hdev->vlan_table[vlan_id]))
9714 if (!is_kill && test_and_set_bit(vport_id, hdev->vlan_table[vlan_id])) {
9715 dev_warn(&hdev->pdev->dev,
9716 "Add port vlan failed, vport %u is already in vlan %u\n",
9722 !test_and_clear_bit(vport_id, hdev->vlan_table[vlan_id])) {
9723 dev_warn(&hdev->pdev->dev,
9724 "Delete port vlan failed, vport %u is not in vlan %u\n",
9732 static int hclge_set_vlan_filter_hw(struct hclge_dev *hdev, __be16 proto,
9733 u16 vport_id, u16 vlan_id,
9736 u16 vport_idx, vport_num = 0;
9739 if (is_kill && !vlan_id)
9742 if (vlan_id >= VLAN_N_VID)
9745 ret = hclge_set_vf_vlan_common(hdev, vport_id, is_kill, vlan_id);
9747 dev_err(&hdev->pdev->dev,
9748 "Set %u vport vlan filter config fail, ret =%d.\n",
9753 if (!hclge_need_update_port_vlan(hdev, vport_id, vlan_id, is_kill))
9756 for_each_set_bit(vport_idx, hdev->vlan_table[vlan_id], HCLGE_VPORT_NUM)
9759 if ((is_kill && vport_num == 0) || (!is_kill && vport_num == 1))
9760 ret = hclge_set_port_vlan_filter(hdev, proto, vlan_id,
9766 static int hclge_set_vlan_tx_offload_cfg(struct hclge_vport *vport)
9768 struct hclge_tx_vtag_cfg *vcfg = &vport->txvlan_cfg;
9769 struct hclge_vport_vtag_tx_cfg_cmd *req;
9770 struct hclge_dev *hdev = vport->back;
9771 struct hclge_desc desc;
9775 hclge_cmd_setup_basic_desc(&desc, HCLGE_OPC_VLAN_PORT_TX_CFG, false);
9777 req = (struct hclge_vport_vtag_tx_cfg_cmd *)desc.data;
9778 req->def_vlan_tag1 = cpu_to_le16(vcfg->default_tag1);
9779 req->def_vlan_tag2 = cpu_to_le16(vcfg->default_tag2);
9780 hnae3_set_bit(req->vport_vlan_cfg, HCLGE_ACCEPT_TAG1_B,
9781 vcfg->accept_tag1 ? 1 : 0);
9782 hnae3_set_bit(req->vport_vlan_cfg, HCLGE_ACCEPT_UNTAG1_B,
9783 vcfg->accept_untag1 ? 1 : 0);
9784 hnae3_set_bit(req->vport_vlan_cfg, HCLGE_ACCEPT_TAG2_B,
9785 vcfg->accept_tag2 ? 1 : 0);
9786 hnae3_set_bit(req->vport_vlan_cfg, HCLGE_ACCEPT_UNTAG2_B,
9787 vcfg->accept_untag2 ? 1 : 0);
9788 hnae3_set_bit(req->vport_vlan_cfg, HCLGE_PORT_INS_TAG1_EN_B,
9789 vcfg->insert_tag1_en ? 1 : 0);
9790 hnae3_set_bit(req->vport_vlan_cfg, HCLGE_PORT_INS_TAG2_EN_B,
9791 vcfg->insert_tag2_en ? 1 : 0);
9792 hnae3_set_bit(req->vport_vlan_cfg, HCLGE_TAG_SHIFT_MODE_EN_B,
9793 vcfg->tag_shift_mode_en ? 1 : 0);
9794 hnae3_set_bit(req->vport_vlan_cfg, HCLGE_CFG_NIC_ROCE_SEL_B, 0);
9796 req->vf_offset = vport->vport_id / HCLGE_VF_NUM_PER_CMD;
9797 bmap_index = vport->vport_id % HCLGE_VF_NUM_PER_CMD /
9798 HCLGE_VF_NUM_PER_BYTE;
9799 req->vf_bitmap[bmap_index] =
9800 1U << (vport->vport_id % HCLGE_VF_NUM_PER_BYTE);
9802 status = hclge_cmd_send(&hdev->hw, &desc, 1);
9804 dev_err(&hdev->pdev->dev,
9805 "Send port txvlan cfg command fail, ret =%d\n",
9811 static int hclge_set_vlan_rx_offload_cfg(struct hclge_vport *vport)
9813 struct hclge_rx_vtag_cfg *vcfg = &vport->rxvlan_cfg;
9814 struct hclge_vport_vtag_rx_cfg_cmd *req;
9815 struct hclge_dev *hdev = vport->back;
9816 struct hclge_desc desc;
9820 hclge_cmd_setup_basic_desc(&desc, HCLGE_OPC_VLAN_PORT_RX_CFG, false);
9822 req = (struct hclge_vport_vtag_rx_cfg_cmd *)desc.data;
9823 hnae3_set_bit(req->vport_vlan_cfg, HCLGE_REM_TAG1_EN_B,
9824 vcfg->strip_tag1_en ? 1 : 0);
9825 hnae3_set_bit(req->vport_vlan_cfg, HCLGE_REM_TAG2_EN_B,
9826 vcfg->strip_tag2_en ? 1 : 0);
9827 hnae3_set_bit(req->vport_vlan_cfg, HCLGE_SHOW_TAG1_EN_B,
9828 vcfg->vlan1_vlan_prionly ? 1 : 0);
9829 hnae3_set_bit(req->vport_vlan_cfg, HCLGE_SHOW_TAG2_EN_B,
9830 vcfg->vlan2_vlan_prionly ? 1 : 0);
9831 hnae3_set_bit(req->vport_vlan_cfg, HCLGE_DISCARD_TAG1_EN_B,
9832 vcfg->strip_tag1_discard_en ? 1 : 0);
9833 hnae3_set_bit(req->vport_vlan_cfg, HCLGE_DISCARD_TAG2_EN_B,
9834 vcfg->strip_tag2_discard_en ? 1 : 0);
9836 req->vf_offset = vport->vport_id / HCLGE_VF_NUM_PER_CMD;
9837 bmap_index = vport->vport_id % HCLGE_VF_NUM_PER_CMD /
9838 HCLGE_VF_NUM_PER_BYTE;
9839 req->vf_bitmap[bmap_index] =
9840 1U << (vport->vport_id % HCLGE_VF_NUM_PER_BYTE);
9842 status = hclge_cmd_send(&hdev->hw, &desc, 1);
9844 dev_err(&hdev->pdev->dev,
9845 "Send port rxvlan cfg command fail, ret =%d\n",
9851 static int hclge_vlan_offload_cfg(struct hclge_vport *vport,
9852 u16 port_base_vlan_state,
9853 u16 vlan_tag, u8 qos)
9857 if (port_base_vlan_state == HNAE3_PORT_BASE_VLAN_DISABLE) {
9858 vport->txvlan_cfg.accept_tag1 = true;
9859 vport->txvlan_cfg.insert_tag1_en = false;
9860 vport->txvlan_cfg.default_tag1 = 0;
9862 struct hnae3_ae_dev *ae_dev = pci_get_drvdata(vport->nic.pdev);
9864 vport->txvlan_cfg.accept_tag1 =
9865 ae_dev->dev_version >= HNAE3_DEVICE_VERSION_V3;
9866 vport->txvlan_cfg.insert_tag1_en = true;
9867 vport->txvlan_cfg.default_tag1 = (qos << VLAN_PRIO_SHIFT) |
9871 vport->txvlan_cfg.accept_untag1 = true;
9873 /* accept_tag2 and accept_untag2 are not supported on
9874 * pdev revision(0x20), new revision support them,
9875 * this two fields can not be configured by user.
9877 vport->txvlan_cfg.accept_tag2 = true;
9878 vport->txvlan_cfg.accept_untag2 = true;
9879 vport->txvlan_cfg.insert_tag2_en = false;
9880 vport->txvlan_cfg.default_tag2 = 0;
9881 vport->txvlan_cfg.tag_shift_mode_en = true;
9883 if (port_base_vlan_state == HNAE3_PORT_BASE_VLAN_DISABLE) {
9884 vport->rxvlan_cfg.strip_tag1_en = false;
9885 vport->rxvlan_cfg.strip_tag2_en =
9886 vport->rxvlan_cfg.rx_vlan_offload_en;
9887 vport->rxvlan_cfg.strip_tag2_discard_en = false;
9889 vport->rxvlan_cfg.strip_tag1_en =
9890 vport->rxvlan_cfg.rx_vlan_offload_en;
9891 vport->rxvlan_cfg.strip_tag2_en = true;
9892 vport->rxvlan_cfg.strip_tag2_discard_en = true;
9895 vport->rxvlan_cfg.strip_tag1_discard_en = false;
9896 vport->rxvlan_cfg.vlan1_vlan_prionly = false;
9897 vport->rxvlan_cfg.vlan2_vlan_prionly = false;
9899 ret = hclge_set_vlan_tx_offload_cfg(vport);
9903 return hclge_set_vlan_rx_offload_cfg(vport);
9906 static int hclge_set_vlan_protocol_type(struct hclge_dev *hdev)
9908 struct hclge_rx_vlan_type_cfg_cmd *rx_req;
9909 struct hclge_tx_vlan_type_cfg_cmd *tx_req;
9910 struct hclge_desc desc;
9913 hclge_cmd_setup_basic_desc(&desc, HCLGE_OPC_MAC_VLAN_TYPE_ID, false);
9914 rx_req = (struct hclge_rx_vlan_type_cfg_cmd *)desc.data;
9915 rx_req->ot_fst_vlan_type =
9916 cpu_to_le16(hdev->vlan_type_cfg.rx_ot_fst_vlan_type);
9917 rx_req->ot_sec_vlan_type =
9918 cpu_to_le16(hdev->vlan_type_cfg.rx_ot_sec_vlan_type);
9919 rx_req->in_fst_vlan_type =
9920 cpu_to_le16(hdev->vlan_type_cfg.rx_in_fst_vlan_type);
9921 rx_req->in_sec_vlan_type =
9922 cpu_to_le16(hdev->vlan_type_cfg.rx_in_sec_vlan_type);
9924 status = hclge_cmd_send(&hdev->hw, &desc, 1);
9926 dev_err(&hdev->pdev->dev,
9927 "Send rxvlan protocol type command fail, ret =%d\n",
9932 hclge_cmd_setup_basic_desc(&desc, HCLGE_OPC_MAC_VLAN_INSERT, false);
9934 tx_req = (struct hclge_tx_vlan_type_cfg_cmd *)desc.data;
9935 tx_req->ot_vlan_type = cpu_to_le16(hdev->vlan_type_cfg.tx_ot_vlan_type);
9936 tx_req->in_vlan_type = cpu_to_le16(hdev->vlan_type_cfg.tx_in_vlan_type);
9938 status = hclge_cmd_send(&hdev->hw, &desc, 1);
9940 dev_err(&hdev->pdev->dev,
9941 "Send txvlan protocol type command fail, ret =%d\n",
9947 static int hclge_init_vlan_filter(struct hclge_dev *hdev)
9949 struct hclge_vport *vport;
9953 if (hdev->ae_dev->dev_version < HNAE3_DEVICE_VERSION_V2)
9954 return hclge_set_vlan_filter_ctrl(hdev, HCLGE_FILTER_TYPE_VF,
9955 HCLGE_FILTER_FE_EGRESS_V1_B,
9958 /* for revision 0x21, vf vlan filter is per function */
9959 for (i = 0; i < hdev->num_alloc_vport; i++) {
9960 vport = &hdev->vport[i];
9961 ret = hclge_set_vlan_filter_ctrl(hdev, HCLGE_FILTER_TYPE_VF,
9962 HCLGE_FILTER_FE_EGRESS, true,
9966 vport->cur_vlan_fltr_en = true;
9969 return hclge_set_vlan_filter_ctrl(hdev, HCLGE_FILTER_TYPE_PORT,
9970 HCLGE_FILTER_FE_INGRESS, true, 0);
9973 static int hclge_init_vlan_type(struct hclge_dev *hdev)
9975 hdev->vlan_type_cfg.rx_in_fst_vlan_type = ETH_P_8021Q;
9976 hdev->vlan_type_cfg.rx_in_sec_vlan_type = ETH_P_8021Q;
9977 hdev->vlan_type_cfg.rx_ot_fst_vlan_type = ETH_P_8021Q;
9978 hdev->vlan_type_cfg.rx_ot_sec_vlan_type = ETH_P_8021Q;
9979 hdev->vlan_type_cfg.tx_ot_vlan_type = ETH_P_8021Q;
9980 hdev->vlan_type_cfg.tx_in_vlan_type = ETH_P_8021Q;
9982 return hclge_set_vlan_protocol_type(hdev);
9985 static int hclge_init_vport_vlan_offload(struct hclge_dev *hdev)
9987 struct hclge_port_base_vlan_config *cfg;
9988 struct hclge_vport *vport;
9992 for (i = 0; i < hdev->num_alloc_vport; i++) {
9993 vport = &hdev->vport[i];
9994 cfg = &vport->port_base_vlan_cfg;
9996 ret = hclge_vlan_offload_cfg(vport, cfg->state,
9997 cfg->vlan_info.vlan_tag,
9998 cfg->vlan_info.qos);
10005 static int hclge_init_vlan_config(struct hclge_dev *hdev)
10007 struct hnae3_handle *handle = &hdev->vport[0].nic;
10010 ret = hclge_init_vlan_filter(hdev);
10014 ret = hclge_init_vlan_type(hdev);
10018 ret = hclge_init_vport_vlan_offload(hdev);
10022 return hclge_set_vlan_filter(handle, htons(ETH_P_8021Q), 0, false);
10025 static void hclge_add_vport_vlan_table(struct hclge_vport *vport, u16 vlan_id,
10026 bool writen_to_tbl)
10028 struct hclge_vport_vlan_cfg *vlan, *tmp;
10029 struct hclge_dev *hdev = vport->back;
10031 mutex_lock(&hdev->vport_lock);
10033 list_for_each_entry_safe(vlan, tmp, &vport->vlan_list, node) {
10034 if (vlan->vlan_id == vlan_id) {
10035 mutex_unlock(&hdev->vport_lock);
10040 vlan = kzalloc(sizeof(*vlan), GFP_KERNEL);
10042 mutex_unlock(&hdev->vport_lock);
10046 vlan->hd_tbl_status = writen_to_tbl;
10047 vlan->vlan_id = vlan_id;
10049 list_add_tail(&vlan->node, &vport->vlan_list);
10050 mutex_unlock(&hdev->vport_lock);
10053 static int hclge_add_vport_all_vlan_table(struct hclge_vport *vport)
10055 struct hclge_vport_vlan_cfg *vlan, *tmp;
10056 struct hclge_dev *hdev = vport->back;
10059 mutex_lock(&hdev->vport_lock);
10061 list_for_each_entry_safe(vlan, tmp, &vport->vlan_list, node) {
10062 if (!vlan->hd_tbl_status) {
10063 ret = hclge_set_vlan_filter_hw(hdev, htons(ETH_P_8021Q),
10065 vlan->vlan_id, false);
10067 dev_err(&hdev->pdev->dev,
10068 "restore vport vlan list failed, ret=%d\n",
10071 mutex_unlock(&hdev->vport_lock);
10075 vlan->hd_tbl_status = true;
10078 mutex_unlock(&hdev->vport_lock);
10083 static void hclge_rm_vport_vlan_table(struct hclge_vport *vport, u16 vlan_id,
10086 struct hclge_vport_vlan_cfg *vlan, *tmp;
10087 struct hclge_dev *hdev = vport->back;
10089 mutex_lock(&hdev->vport_lock);
10091 list_for_each_entry_safe(vlan, tmp, &vport->vlan_list, node) {
10092 if (vlan->vlan_id == vlan_id) {
10093 if (is_write_tbl && vlan->hd_tbl_status)
10094 hclge_set_vlan_filter_hw(hdev,
10095 htons(ETH_P_8021Q),
10100 list_del(&vlan->node);
10106 mutex_unlock(&hdev->vport_lock);
10109 void hclge_rm_vport_all_vlan_table(struct hclge_vport *vport, bool is_del_list)
10111 struct hclge_vport_vlan_cfg *vlan, *tmp;
10112 struct hclge_dev *hdev = vport->back;
10114 mutex_lock(&hdev->vport_lock);
10116 list_for_each_entry_safe(vlan, tmp, &vport->vlan_list, node) {
10117 if (vlan->hd_tbl_status)
10118 hclge_set_vlan_filter_hw(hdev,
10119 htons(ETH_P_8021Q),
10124 vlan->hd_tbl_status = false;
10126 list_del(&vlan->node);
10130 clear_bit(vport->vport_id, hdev->vf_vlan_full);
10131 mutex_unlock(&hdev->vport_lock);
10134 void hclge_uninit_vport_vlan_table(struct hclge_dev *hdev)
10136 struct hclge_vport_vlan_cfg *vlan, *tmp;
10137 struct hclge_vport *vport;
10140 mutex_lock(&hdev->vport_lock);
10142 for (i = 0; i < hdev->num_alloc_vport; i++) {
10143 vport = &hdev->vport[i];
10144 list_for_each_entry_safe(vlan, tmp, &vport->vlan_list, node) {
10145 list_del(&vlan->node);
10150 mutex_unlock(&hdev->vport_lock);
10153 void hclge_restore_vport_port_base_vlan_config(struct hclge_dev *hdev)
10155 struct hclge_vlan_info *vlan_info;
10156 struct hclge_vport *vport;
10163 /* PF should restore all vfs port base vlan */
10164 for (vf_id = 0; vf_id < hdev->num_alloc_vfs; vf_id++) {
10165 vport = &hdev->vport[vf_id + HCLGE_VF_VPORT_START_NUM];
10166 vlan_info = vport->port_base_vlan_cfg.tbl_sta ?
10167 &vport->port_base_vlan_cfg.vlan_info :
10168 &vport->port_base_vlan_cfg.old_vlan_info;
10170 vlan_id = vlan_info->vlan_tag;
10171 vlan_proto = vlan_info->vlan_proto;
10172 state = vport->port_base_vlan_cfg.state;
10174 if (state != HNAE3_PORT_BASE_VLAN_DISABLE) {
10175 clear_bit(vport->vport_id, hdev->vlan_table[vlan_id]);
10176 ret = hclge_set_vlan_filter_hw(hdev, htons(vlan_proto),
10179 vport->port_base_vlan_cfg.tbl_sta = ret == 0;
10184 void hclge_restore_vport_vlan_table(struct hclge_vport *vport)
10186 struct hclge_vport_vlan_cfg *vlan, *tmp;
10187 struct hclge_dev *hdev = vport->back;
10190 mutex_lock(&hdev->vport_lock);
10192 if (vport->port_base_vlan_cfg.state == HNAE3_PORT_BASE_VLAN_DISABLE) {
10193 list_for_each_entry_safe(vlan, tmp, &vport->vlan_list, node) {
10194 ret = hclge_set_vlan_filter_hw(hdev, htons(ETH_P_8021Q),
10196 vlan->vlan_id, false);
10199 vlan->hd_tbl_status = true;
10203 mutex_unlock(&hdev->vport_lock);
10206 /* For global reset and imp reset, hardware will clear the mac table,
10207 * so we change the mac address state from ACTIVE to TO_ADD, then they
10208 * can be restored in the service task after reset complete. Furtherly,
10209 * the mac addresses with state TO_DEL or DEL_FAIL are unnecessary to
10210 * be restored after reset, so just remove these mac nodes from mac_list.
10212 static void hclge_mac_node_convert_for_reset(struct list_head *list)
10214 struct hclge_mac_node *mac_node, *tmp;
10216 list_for_each_entry_safe(mac_node, tmp, list, node) {
10217 if (mac_node->state == HCLGE_MAC_ACTIVE) {
10218 mac_node->state = HCLGE_MAC_TO_ADD;
10219 } else if (mac_node->state == HCLGE_MAC_TO_DEL) {
10220 list_del(&mac_node->node);
10226 void hclge_restore_mac_table_common(struct hclge_vport *vport)
10228 spin_lock_bh(&vport->mac_list_lock);
10230 hclge_mac_node_convert_for_reset(&vport->uc_mac_list);
10231 hclge_mac_node_convert_for_reset(&vport->mc_mac_list);
10232 set_bit(HCLGE_VPORT_STATE_MAC_TBL_CHANGE, &vport->state);
10234 spin_unlock_bh(&vport->mac_list_lock);
10237 static void hclge_restore_hw_table(struct hclge_dev *hdev)
10239 struct hclge_vport *vport = &hdev->vport[0];
10240 struct hnae3_handle *handle = &vport->nic;
10242 hclge_restore_mac_table_common(vport);
10243 hclge_restore_vport_port_base_vlan_config(hdev);
10244 hclge_restore_vport_vlan_table(vport);
10245 set_bit(HCLGE_STATE_FD_USER_DEF_CHANGED, &hdev->state);
10246 hclge_restore_fd_entries(handle);
10249 int hclge_en_hw_strip_rxvtag(struct hnae3_handle *handle, bool enable)
10251 struct hclge_vport *vport = hclge_get_vport(handle);
10253 if (vport->port_base_vlan_cfg.state == HNAE3_PORT_BASE_VLAN_DISABLE) {
10254 vport->rxvlan_cfg.strip_tag1_en = false;
10255 vport->rxvlan_cfg.strip_tag2_en = enable;
10256 vport->rxvlan_cfg.strip_tag2_discard_en = false;
10258 vport->rxvlan_cfg.strip_tag1_en = enable;
10259 vport->rxvlan_cfg.strip_tag2_en = true;
10260 vport->rxvlan_cfg.strip_tag2_discard_en = true;
10263 vport->rxvlan_cfg.strip_tag1_discard_en = false;
10264 vport->rxvlan_cfg.vlan1_vlan_prionly = false;
10265 vport->rxvlan_cfg.vlan2_vlan_prionly = false;
10266 vport->rxvlan_cfg.rx_vlan_offload_en = enable;
10268 return hclge_set_vlan_rx_offload_cfg(vport);
10271 static void hclge_set_vport_vlan_fltr_change(struct hclge_vport *vport)
10273 struct hclge_dev *hdev = vport->back;
10275 if (test_bit(HNAE3_DEV_SUPPORT_VLAN_FLTR_MDF_B, hdev->ae_dev->caps))
10276 set_bit(HCLGE_VPORT_STATE_VLAN_FLTR_CHANGE, &vport->state);
10279 static int hclge_update_vlan_filter_entries(struct hclge_vport *vport,
10280 u16 port_base_vlan_state,
10281 struct hclge_vlan_info *new_info,
10282 struct hclge_vlan_info *old_info)
10284 struct hclge_dev *hdev = vport->back;
10287 if (port_base_vlan_state == HNAE3_PORT_BASE_VLAN_ENABLE) {
10288 hclge_rm_vport_all_vlan_table(vport, false);
10289 /* force clear VLAN 0 */
10290 ret = hclge_set_vf_vlan_common(hdev, vport->vport_id, true, 0);
10293 return hclge_set_vlan_filter_hw(hdev,
10294 htons(new_info->vlan_proto),
10296 new_info->vlan_tag,
10300 vport->port_base_vlan_cfg.tbl_sta = false;
10302 /* force add VLAN 0 */
10303 ret = hclge_set_vf_vlan_common(hdev, vport->vport_id, false, 0);
10307 ret = hclge_set_vlan_filter_hw(hdev, htons(old_info->vlan_proto),
10308 vport->vport_id, old_info->vlan_tag,
10313 return hclge_add_vport_all_vlan_table(vport);
10316 static bool hclge_need_update_vlan_filter(const struct hclge_vlan_info *new_cfg,
10317 const struct hclge_vlan_info *old_cfg)
10319 if (new_cfg->vlan_tag != old_cfg->vlan_tag)
10322 if (new_cfg->vlan_tag == 0 && (new_cfg->qos == 0 || old_cfg->qos == 0))
10328 static int hclge_modify_port_base_vlan_tag(struct hclge_vport *vport,
10329 struct hclge_vlan_info *new_info,
10330 struct hclge_vlan_info *old_info)
10332 struct hclge_dev *hdev = vport->back;
10335 /* add new VLAN tag */
10336 ret = hclge_set_vlan_filter_hw(hdev, htons(new_info->vlan_proto),
10337 vport->vport_id, new_info->vlan_tag,
10342 vport->port_base_vlan_cfg.tbl_sta = false;
10343 /* remove old VLAN tag */
10344 if (old_info->vlan_tag == 0)
10345 ret = hclge_set_vf_vlan_common(hdev, vport->vport_id,
10348 ret = hclge_set_vlan_filter_hw(hdev, htons(ETH_P_8021Q),
10350 old_info->vlan_tag, true);
10352 dev_err(&hdev->pdev->dev,
10353 "failed to clear vport%u port base vlan %u, ret = %d.\n",
10354 vport->vport_id, old_info->vlan_tag, ret);
10359 int hclge_update_port_base_vlan_cfg(struct hclge_vport *vport, u16 state,
10360 struct hclge_vlan_info *vlan_info)
10362 struct hnae3_handle *nic = &vport->nic;
10363 struct hclge_vlan_info *old_vlan_info;
10366 old_vlan_info = &vport->port_base_vlan_cfg.vlan_info;
10368 ret = hclge_vlan_offload_cfg(vport, state, vlan_info->vlan_tag,
10373 if (!hclge_need_update_vlan_filter(vlan_info, old_vlan_info))
10376 if (state == HNAE3_PORT_BASE_VLAN_MODIFY)
10377 ret = hclge_modify_port_base_vlan_tag(vport, vlan_info,
10380 ret = hclge_update_vlan_filter_entries(vport, state, vlan_info,
10386 vport->port_base_vlan_cfg.state = state;
10387 if (state == HNAE3_PORT_BASE_VLAN_DISABLE)
10388 nic->port_base_vlan_state = HNAE3_PORT_BASE_VLAN_DISABLE;
10390 nic->port_base_vlan_state = HNAE3_PORT_BASE_VLAN_ENABLE;
10392 vport->port_base_vlan_cfg.old_vlan_info = *old_vlan_info;
10393 vport->port_base_vlan_cfg.vlan_info = *vlan_info;
10394 vport->port_base_vlan_cfg.tbl_sta = true;
10395 hclge_set_vport_vlan_fltr_change(vport);
10400 static u16 hclge_get_port_base_vlan_state(struct hclge_vport *vport,
10401 enum hnae3_port_base_vlan_state state,
10404 if (state == HNAE3_PORT_BASE_VLAN_DISABLE) {
10406 return HNAE3_PORT_BASE_VLAN_NOCHANGE;
10408 return HNAE3_PORT_BASE_VLAN_ENABLE;
10412 return HNAE3_PORT_BASE_VLAN_DISABLE;
10414 if (vport->port_base_vlan_cfg.vlan_info.vlan_tag == vlan &&
10415 vport->port_base_vlan_cfg.vlan_info.qos == qos)
10416 return HNAE3_PORT_BASE_VLAN_NOCHANGE;
10418 return HNAE3_PORT_BASE_VLAN_MODIFY;
10421 static int hclge_set_vf_vlan_filter(struct hnae3_handle *handle, int vfid,
10422 u16 vlan, u8 qos, __be16 proto)
10424 struct hnae3_ae_dev *ae_dev = pci_get_drvdata(handle->pdev);
10425 struct hclge_vport *vport = hclge_get_vport(handle);
10426 struct hclge_dev *hdev = vport->back;
10427 struct hclge_vlan_info vlan_info;
10431 if (hdev->ae_dev->dev_version < HNAE3_DEVICE_VERSION_V2)
10432 return -EOPNOTSUPP;
10434 vport = hclge_get_vf_vport(hdev, vfid);
10438 /* qos is a 3 bits value, so can not be bigger than 7 */
10439 if (vlan > VLAN_N_VID - 1 || qos > 7)
10441 if (proto != htons(ETH_P_8021Q))
10442 return -EPROTONOSUPPORT;
10444 state = hclge_get_port_base_vlan_state(vport,
10445 vport->port_base_vlan_cfg.state,
10447 if (state == HNAE3_PORT_BASE_VLAN_NOCHANGE)
10450 vlan_info.vlan_tag = vlan;
10451 vlan_info.qos = qos;
10452 vlan_info.vlan_proto = ntohs(proto);
10454 ret = hclge_update_port_base_vlan_cfg(vport, state, &vlan_info);
10456 dev_err(&hdev->pdev->dev,
10457 "failed to update port base vlan for vf %d, ret = %d\n",
10462 /* there is a timewindow for PF to know VF unalive, it may
10463 * cause send mailbox fail, but it doesn't matter, VF will
10464 * query it when reinit.
10465 * for DEVICE_VERSION_V3, vf doesn't need to know about the port based
10468 if (ae_dev->dev_version < HNAE3_DEVICE_VERSION_V3 &&
10469 test_bit(HCLGE_VPORT_STATE_ALIVE, &vport->state))
10470 (void)hclge_push_vf_port_base_vlan_info(&hdev->vport[0],
10472 state, &vlan_info);
10477 static void hclge_clear_vf_vlan(struct hclge_dev *hdev)
10479 struct hclge_vlan_info *vlan_info;
10480 struct hclge_vport *vport;
10484 /* clear port base vlan for all vf */
10485 for (vf = HCLGE_VF_VPORT_START_NUM; vf < hdev->num_alloc_vport; vf++) {
10486 vport = &hdev->vport[vf];
10487 vlan_info = &vport->port_base_vlan_cfg.vlan_info;
10489 ret = hclge_set_vlan_filter_hw(hdev, htons(ETH_P_8021Q),
10491 vlan_info->vlan_tag, true);
10493 dev_err(&hdev->pdev->dev,
10494 "failed to clear vf vlan for vf%d, ret = %d\n",
10495 vf - HCLGE_VF_VPORT_START_NUM, ret);
10499 int hclge_set_vlan_filter(struct hnae3_handle *handle, __be16 proto,
10500 u16 vlan_id, bool is_kill)
10502 struct hclge_vport *vport = hclge_get_vport(handle);
10503 struct hclge_dev *hdev = vport->back;
10504 bool writen_to_tbl = false;
10507 /* When device is resetting or reset failed, firmware is unable to
10508 * handle mailbox. Just record the vlan id, and remove it after
10511 if ((test_bit(HCLGE_STATE_RST_HANDLING, &hdev->state) ||
10512 test_bit(HCLGE_STATE_RST_FAIL, &hdev->state)) && is_kill) {
10513 set_bit(vlan_id, vport->vlan_del_fail_bmap);
10517 /* when port base vlan enabled, we use port base vlan as the vlan
10518 * filter entry. In this case, we don't update vlan filter table
10519 * when user add new vlan or remove exist vlan, just update the vport
10520 * vlan list. The vlan id in vlan list will be writen in vlan filter
10521 * table until port base vlan disabled
10523 if (handle->port_base_vlan_state == HNAE3_PORT_BASE_VLAN_DISABLE) {
10524 ret = hclge_set_vlan_filter_hw(hdev, proto, vport->vport_id,
10526 writen_to_tbl = true;
10531 hclge_add_vport_vlan_table(vport, vlan_id,
10533 else if (is_kill && vlan_id != 0)
10534 hclge_rm_vport_vlan_table(vport, vlan_id, false);
10535 } else if (is_kill) {
10536 /* when remove hw vlan filter failed, record the vlan id,
10537 * and try to remove it from hw later, to be consistence
10540 set_bit(vlan_id, vport->vlan_del_fail_bmap);
10543 hclge_set_vport_vlan_fltr_change(vport);
10548 static void hclge_sync_vlan_fltr_state(struct hclge_dev *hdev)
10550 struct hclge_vport *vport;
10554 for (i = 0; i < hdev->num_alloc_vport; i++) {
10555 vport = &hdev->vport[i];
10556 if (!test_and_clear_bit(HCLGE_VPORT_STATE_VLAN_FLTR_CHANGE,
10560 ret = hclge_enable_vport_vlan_filter(vport,
10561 vport->req_vlan_fltr_en);
10563 dev_err(&hdev->pdev->dev,
10564 "failed to sync vlan filter state for vport%u, ret = %d\n",
10565 vport->vport_id, ret);
10566 set_bit(HCLGE_VPORT_STATE_VLAN_FLTR_CHANGE,
10573 static void hclge_sync_vlan_filter(struct hclge_dev *hdev)
10575 #define HCLGE_MAX_SYNC_COUNT 60
10577 int i, ret, sync_cnt = 0;
10580 /* start from vport 1 for PF is always alive */
10581 for (i = 0; i < hdev->num_alloc_vport; i++) {
10582 struct hclge_vport *vport = &hdev->vport[i];
10584 vlan_id = find_first_bit(vport->vlan_del_fail_bmap,
10586 while (vlan_id != VLAN_N_VID) {
10587 ret = hclge_set_vlan_filter_hw(hdev, htons(ETH_P_8021Q),
10588 vport->vport_id, vlan_id,
10590 if (ret && ret != -EINVAL)
10593 clear_bit(vlan_id, vport->vlan_del_fail_bmap);
10594 hclge_rm_vport_vlan_table(vport, vlan_id, false);
10595 hclge_set_vport_vlan_fltr_change(vport);
10598 if (sync_cnt >= HCLGE_MAX_SYNC_COUNT)
10601 vlan_id = find_first_bit(vport->vlan_del_fail_bmap,
10606 hclge_sync_vlan_fltr_state(hdev);
10609 static int hclge_set_mac_mtu(struct hclge_dev *hdev, int new_mps)
10611 struct hclge_config_max_frm_size_cmd *req;
10612 struct hclge_desc desc;
10614 hclge_cmd_setup_basic_desc(&desc, HCLGE_OPC_CONFIG_MAX_FRM_SIZE, false);
10616 req = (struct hclge_config_max_frm_size_cmd *)desc.data;
10617 req->max_frm_size = cpu_to_le16(new_mps);
10618 req->min_frm_size = HCLGE_MAC_MIN_FRAME;
10620 return hclge_cmd_send(&hdev->hw, &desc, 1);
10623 static int hclge_set_mtu(struct hnae3_handle *handle, int new_mtu)
10625 struct hclge_vport *vport = hclge_get_vport(handle);
10627 return hclge_set_vport_mtu(vport, new_mtu);
10630 int hclge_set_vport_mtu(struct hclge_vport *vport, int new_mtu)
10632 struct hclge_dev *hdev = vport->back;
10633 int i, max_frm_size, ret;
10635 /* HW supprt 2 layer vlan */
10636 max_frm_size = new_mtu + ETH_HLEN + ETH_FCS_LEN + 2 * VLAN_HLEN;
10637 if (max_frm_size < HCLGE_MAC_MIN_FRAME ||
10638 max_frm_size > hdev->ae_dev->dev_specs.max_frm_size)
10641 max_frm_size = max(max_frm_size, HCLGE_MAC_DEFAULT_FRAME);
10642 mutex_lock(&hdev->vport_lock);
10643 /* VF's mps must fit within hdev->mps */
10644 if (vport->vport_id && max_frm_size > hdev->mps) {
10645 mutex_unlock(&hdev->vport_lock);
10647 } else if (vport->vport_id) {
10648 vport->mps = max_frm_size;
10649 mutex_unlock(&hdev->vport_lock);
10653 /* PF's mps must be greater then VF's mps */
10654 for (i = 1; i < hdev->num_alloc_vport; i++)
10655 if (max_frm_size < hdev->vport[i].mps) {
10656 dev_err(&hdev->pdev->dev,
10657 "failed to set pf mtu for less than vport %d, mps = %u.\n",
10658 i, hdev->vport[i].mps);
10659 mutex_unlock(&hdev->vport_lock);
10663 hclge_notify_client(hdev, HNAE3_DOWN_CLIENT);
10665 ret = hclge_set_mac_mtu(hdev, max_frm_size);
10667 dev_err(&hdev->pdev->dev,
10668 "Change mtu fail, ret =%d\n", ret);
10672 hdev->mps = max_frm_size;
10673 vport->mps = max_frm_size;
10675 ret = hclge_buffer_alloc(hdev);
10677 dev_err(&hdev->pdev->dev,
10678 "Allocate buffer fail, ret =%d\n", ret);
10681 hclge_notify_client(hdev, HNAE3_UP_CLIENT);
10682 mutex_unlock(&hdev->vport_lock);
10686 static int hclge_reset_tqp_cmd_send(struct hclge_dev *hdev, u16 queue_id,
10689 struct hclge_reset_tqp_queue_cmd *req;
10690 struct hclge_desc desc;
10693 hclge_cmd_setup_basic_desc(&desc, HCLGE_OPC_RESET_TQP_QUEUE, false);
10695 req = (struct hclge_reset_tqp_queue_cmd *)desc.data;
10696 req->tqp_id = cpu_to_le16(queue_id);
10698 hnae3_set_bit(req->reset_req, HCLGE_TQP_RESET_B, 1U);
10700 ret = hclge_cmd_send(&hdev->hw, &desc, 1);
10702 dev_err(&hdev->pdev->dev,
10703 "Send tqp reset cmd error, status =%d\n", ret);
10710 static int hclge_get_reset_status(struct hclge_dev *hdev, u16 queue_id,
10713 struct hclge_reset_tqp_queue_cmd *req;
10714 struct hclge_desc desc;
10717 hclge_cmd_setup_basic_desc(&desc, HCLGE_OPC_RESET_TQP_QUEUE, true);
10719 req = (struct hclge_reset_tqp_queue_cmd *)desc.data;
10720 req->tqp_id = cpu_to_le16(queue_id);
10722 ret = hclge_cmd_send(&hdev->hw, &desc, 1);
10724 dev_err(&hdev->pdev->dev,
10725 "Get reset status error, status =%d\n", ret);
10729 *reset_status = hnae3_get_bit(req->ready_to_reset, HCLGE_TQP_RESET_B);
10734 u16 hclge_covert_handle_qid_global(struct hnae3_handle *handle, u16 queue_id)
10736 struct hclge_comm_tqp *tqp;
10737 struct hnae3_queue *queue;
10739 queue = handle->kinfo.tqp[queue_id];
10740 tqp = container_of(queue, struct hclge_comm_tqp, q);
10745 static int hclge_reset_tqp_cmd(struct hnae3_handle *handle)
10747 struct hclge_vport *vport = hclge_get_vport(handle);
10748 struct hclge_dev *hdev = vport->back;
10749 u16 reset_try_times = 0;
10755 for (i = 0; i < handle->kinfo.num_tqps; i++) {
10756 queue_gid = hclge_covert_handle_qid_global(handle, i);
10757 ret = hclge_reset_tqp_cmd_send(hdev, queue_gid, true);
10759 dev_err(&hdev->pdev->dev,
10760 "failed to send reset tqp cmd, ret = %d\n",
10765 while (reset_try_times++ < HCLGE_TQP_RESET_TRY_TIMES) {
10766 ret = hclge_get_reset_status(hdev, queue_gid,
10774 /* Wait for tqp hw reset */
10775 usleep_range(1000, 1200);
10778 if (reset_try_times >= HCLGE_TQP_RESET_TRY_TIMES) {
10779 dev_err(&hdev->pdev->dev,
10780 "wait for tqp hw reset timeout\n");
10784 ret = hclge_reset_tqp_cmd_send(hdev, queue_gid, false);
10786 dev_err(&hdev->pdev->dev,
10787 "failed to deassert soft reset, ret = %d\n",
10791 reset_try_times = 0;
10796 static int hclge_reset_rcb(struct hnae3_handle *handle)
10798 #define HCLGE_RESET_RCB_NOT_SUPPORT 0U
10799 #define HCLGE_RESET_RCB_SUCCESS 1U
10801 struct hclge_vport *vport = hclge_get_vport(handle);
10802 struct hclge_dev *hdev = vport->back;
10803 struct hclge_reset_cmd *req;
10804 struct hclge_desc desc;
10809 queue_gid = hclge_covert_handle_qid_global(handle, 0);
10811 req = (struct hclge_reset_cmd *)desc.data;
10812 hclge_cmd_setup_basic_desc(&desc, HCLGE_OPC_CFG_RST_TRIGGER, false);
10813 hnae3_set_bit(req->fun_reset_rcb, HCLGE_CFG_RESET_RCB_B, 1);
10814 req->fun_reset_rcb_vqid_start = cpu_to_le16(queue_gid);
10815 req->fun_reset_rcb_vqid_num = cpu_to_le16(handle->kinfo.num_tqps);
10817 ret = hclge_cmd_send(&hdev->hw, &desc, 1);
10819 dev_err(&hdev->pdev->dev,
10820 "failed to send rcb reset cmd, ret = %d\n", ret);
10824 return_status = req->fun_reset_rcb_return_status;
10825 if (return_status == HCLGE_RESET_RCB_SUCCESS)
10828 if (return_status != HCLGE_RESET_RCB_NOT_SUPPORT) {
10829 dev_err(&hdev->pdev->dev, "failed to reset rcb, ret = %u\n",
10834 /* if reset rcb cmd is unsupported, we need to send reset tqp cmd
10835 * again to reset all tqps
10837 return hclge_reset_tqp_cmd(handle);
10840 int hclge_reset_tqp(struct hnae3_handle *handle)
10842 struct hclge_vport *vport = hclge_get_vport(handle);
10843 struct hclge_dev *hdev = vport->back;
10846 /* only need to disable PF's tqp */
10847 if (!vport->vport_id) {
10848 ret = hclge_tqp_enable(handle, false);
10850 dev_err(&hdev->pdev->dev,
10851 "failed to disable tqp, ret = %d\n", ret);
10856 return hclge_reset_rcb(handle);
10859 static u32 hclge_get_fw_version(struct hnae3_handle *handle)
10861 struct hclge_vport *vport = hclge_get_vport(handle);
10862 struct hclge_dev *hdev = vport->back;
10864 return hdev->fw_version;
10867 static void hclge_set_flowctrl_adv(struct hclge_dev *hdev, u32 rx_en, u32 tx_en)
10869 struct phy_device *phydev = hdev->hw.mac.phydev;
10874 phy_set_asym_pause(phydev, rx_en, tx_en);
10877 static int hclge_cfg_pauseparam(struct hclge_dev *hdev, u32 rx_en, u32 tx_en)
10881 if (hdev->tm_info.fc_mode == HCLGE_FC_PFC)
10884 ret = hclge_mac_pause_en_cfg(hdev, tx_en, rx_en);
10886 dev_err(&hdev->pdev->dev,
10887 "configure pauseparam error, ret = %d.\n", ret);
10892 int hclge_cfg_flowctrl(struct hclge_dev *hdev)
10894 struct phy_device *phydev = hdev->hw.mac.phydev;
10895 u16 remote_advertising = 0;
10896 u16 local_advertising;
10897 u32 rx_pause, tx_pause;
10900 if (!phydev->link || !phydev->autoneg)
10903 local_advertising = linkmode_adv_to_lcl_adv_t(phydev->advertising);
10906 remote_advertising = LPA_PAUSE_CAP;
10908 if (phydev->asym_pause)
10909 remote_advertising |= LPA_PAUSE_ASYM;
10911 flowctl = mii_resolve_flowctrl_fdx(local_advertising,
10912 remote_advertising);
10913 tx_pause = flowctl & FLOW_CTRL_TX;
10914 rx_pause = flowctl & FLOW_CTRL_RX;
10916 if (phydev->duplex == HCLGE_MAC_HALF) {
10921 return hclge_cfg_pauseparam(hdev, rx_pause, tx_pause);
10924 static void hclge_get_pauseparam(struct hnae3_handle *handle, u32 *auto_neg,
10925 u32 *rx_en, u32 *tx_en)
10927 struct hclge_vport *vport = hclge_get_vport(handle);
10928 struct hclge_dev *hdev = vport->back;
10929 u8 media_type = hdev->hw.mac.media_type;
10931 *auto_neg = (media_type == HNAE3_MEDIA_TYPE_COPPER) ?
10932 hclge_get_autoneg(handle) : 0;
10934 if (hdev->tm_info.fc_mode == HCLGE_FC_PFC) {
10940 if (hdev->tm_info.fc_mode == HCLGE_FC_RX_PAUSE) {
10943 } else if (hdev->tm_info.fc_mode == HCLGE_FC_TX_PAUSE) {
10946 } else if (hdev->tm_info.fc_mode == HCLGE_FC_FULL) {
10955 static void hclge_record_user_pauseparam(struct hclge_dev *hdev,
10956 u32 rx_en, u32 tx_en)
10958 if (rx_en && tx_en)
10959 hdev->fc_mode_last_time = HCLGE_FC_FULL;
10960 else if (rx_en && !tx_en)
10961 hdev->fc_mode_last_time = HCLGE_FC_RX_PAUSE;
10962 else if (!rx_en && tx_en)
10963 hdev->fc_mode_last_time = HCLGE_FC_TX_PAUSE;
10965 hdev->fc_mode_last_time = HCLGE_FC_NONE;
10967 hdev->tm_info.fc_mode = hdev->fc_mode_last_time;
10970 static int hclge_set_pauseparam(struct hnae3_handle *handle, u32 auto_neg,
10971 u32 rx_en, u32 tx_en)
10973 struct hclge_vport *vport = hclge_get_vport(handle);
10974 struct hclge_dev *hdev = vport->back;
10975 struct phy_device *phydev = hdev->hw.mac.phydev;
10978 if (phydev || hnae3_dev_phy_imp_supported(hdev)) {
10979 fc_autoneg = hclge_get_autoneg(handle);
10980 if (auto_neg != fc_autoneg) {
10981 dev_info(&hdev->pdev->dev,
10982 "To change autoneg please use: ethtool -s <dev> autoneg <on|off>\n");
10983 return -EOPNOTSUPP;
10987 if (hdev->tm_info.fc_mode == HCLGE_FC_PFC) {
10988 dev_info(&hdev->pdev->dev,
10989 "Priority flow control enabled. Cannot set link flow control.\n");
10990 return -EOPNOTSUPP;
10993 hclge_set_flowctrl_adv(hdev, rx_en, tx_en);
10995 hclge_record_user_pauseparam(hdev, rx_en, tx_en);
10997 if (!auto_neg || hnae3_dev_phy_imp_supported(hdev))
10998 return hclge_cfg_pauseparam(hdev, rx_en, tx_en);
11001 return phy_start_aneg(phydev);
11003 return -EOPNOTSUPP;
11006 static void hclge_get_ksettings_an_result(struct hnae3_handle *handle,
11007 u8 *auto_neg, u32 *speed, u8 *duplex, u32 *lane_num)
11009 struct hclge_vport *vport = hclge_get_vport(handle);
11010 struct hclge_dev *hdev = vport->back;
11013 *speed = hdev->hw.mac.speed;
11015 *duplex = hdev->hw.mac.duplex;
11017 *auto_neg = hdev->hw.mac.autoneg;
11019 *lane_num = hdev->hw.mac.lane_num;
11022 static void hclge_get_media_type(struct hnae3_handle *handle, u8 *media_type,
11025 struct hclge_vport *vport = hclge_get_vport(handle);
11026 struct hclge_dev *hdev = vport->back;
11028 /* When nic is down, the service task is not running, doesn't update
11029 * the port information per second. Query the port information before
11030 * return the media type, ensure getting the correct media information.
11032 hclge_update_port_info(hdev);
11035 *media_type = hdev->hw.mac.media_type;
11038 *module_type = hdev->hw.mac.module_type;
11041 static void hclge_get_mdix_mode(struct hnae3_handle *handle,
11042 u8 *tp_mdix_ctrl, u8 *tp_mdix)
11044 struct hclge_vport *vport = hclge_get_vport(handle);
11045 struct hclge_dev *hdev = vport->back;
11046 struct phy_device *phydev = hdev->hw.mac.phydev;
11047 int mdix_ctrl, mdix, is_resolved;
11048 unsigned int retval;
11051 *tp_mdix_ctrl = ETH_TP_MDI_INVALID;
11052 *tp_mdix = ETH_TP_MDI_INVALID;
11056 phy_write(phydev, HCLGE_PHY_PAGE_REG, HCLGE_PHY_PAGE_MDIX);
11058 retval = phy_read(phydev, HCLGE_PHY_CSC_REG);
11059 mdix_ctrl = hnae3_get_field(retval, HCLGE_PHY_MDIX_CTRL_M,
11060 HCLGE_PHY_MDIX_CTRL_S);
11062 retval = phy_read(phydev, HCLGE_PHY_CSS_REG);
11063 mdix = hnae3_get_bit(retval, HCLGE_PHY_MDIX_STATUS_B);
11064 is_resolved = hnae3_get_bit(retval, HCLGE_PHY_SPEED_DUP_RESOLVE_B);
11066 phy_write(phydev, HCLGE_PHY_PAGE_REG, HCLGE_PHY_PAGE_COPPER);
11068 switch (mdix_ctrl) {
11070 *tp_mdix_ctrl = ETH_TP_MDI;
11073 *tp_mdix_ctrl = ETH_TP_MDI_X;
11076 *tp_mdix_ctrl = ETH_TP_MDI_AUTO;
11079 *tp_mdix_ctrl = ETH_TP_MDI_INVALID;
11084 *tp_mdix = ETH_TP_MDI_INVALID;
11086 *tp_mdix = ETH_TP_MDI_X;
11088 *tp_mdix = ETH_TP_MDI;
11091 static void hclge_info_show(struct hclge_dev *hdev)
11093 struct device *dev = &hdev->pdev->dev;
11095 dev_info(dev, "PF info begin:\n");
11097 dev_info(dev, "Task queue pairs numbers: %u\n", hdev->num_tqps);
11098 dev_info(dev, "Desc num per TX queue: %u\n", hdev->num_tx_desc);
11099 dev_info(dev, "Desc num per RX queue: %u\n", hdev->num_rx_desc);
11100 dev_info(dev, "Numbers of vports: %u\n", hdev->num_alloc_vport);
11101 dev_info(dev, "Numbers of VF for this PF: %u\n", hdev->num_req_vfs);
11102 dev_info(dev, "HW tc map: 0x%x\n", hdev->hw_tc_map);
11103 dev_info(dev, "Total buffer size for TX/RX: %u\n", hdev->pkt_buf_size);
11104 dev_info(dev, "TX buffer size for each TC: %u\n", hdev->tx_buf_size);
11105 dev_info(dev, "DV buffer size for each TC: %u\n", hdev->dv_buf_size);
11106 dev_info(dev, "This is %s PF\n",
11107 hdev->flag & HCLGE_FLAG_MAIN ? "main" : "not main");
11108 dev_info(dev, "DCB %s\n",
11109 hdev->flag & HCLGE_FLAG_DCB_ENABLE ? "enable" : "disable");
11110 dev_info(dev, "MQPRIO %s\n",
11111 hdev->flag & HCLGE_FLAG_MQPRIO_ENABLE ? "enable" : "disable");
11112 dev_info(dev, "Default tx spare buffer size: %u\n",
11113 hdev->tx_spare_buf_size);
11115 dev_info(dev, "PF info end.\n");
11118 static int hclge_init_nic_client_instance(struct hnae3_ae_dev *ae_dev,
11119 struct hclge_vport *vport)
11121 struct hnae3_client *client = vport->nic.client;
11122 struct hclge_dev *hdev = ae_dev->priv;
11123 int rst_cnt = hdev->rst_stats.reset_cnt;
11126 ret = client->ops->init_instance(&vport->nic);
11130 set_bit(HCLGE_STATE_NIC_REGISTERED, &hdev->state);
11131 if (test_bit(HCLGE_STATE_RST_HANDLING, &hdev->state) ||
11132 rst_cnt != hdev->rst_stats.reset_cnt) {
11137 /* Enable nic hw error interrupts */
11138 ret = hclge_config_nic_hw_error(hdev, true);
11140 dev_err(&ae_dev->pdev->dev,
11141 "fail(%d) to enable hw error interrupts\n", ret);
11145 hnae3_set_client_init_flag(client, ae_dev, 1);
11147 if (netif_msg_drv(&hdev->vport->nic))
11148 hclge_info_show(hdev);
11153 clear_bit(HCLGE_STATE_NIC_REGISTERED, &hdev->state);
11154 while (test_bit(HCLGE_STATE_RST_HANDLING, &hdev->state))
11155 msleep(HCLGE_WAIT_RESET_DONE);
11157 client->ops->uninit_instance(&vport->nic, 0);
11162 static int hclge_init_roce_client_instance(struct hnae3_ae_dev *ae_dev,
11163 struct hclge_vport *vport)
11165 struct hclge_dev *hdev = ae_dev->priv;
11166 struct hnae3_client *client;
11170 if (!hnae3_dev_roce_supported(hdev) || !hdev->roce_client ||
11174 client = hdev->roce_client;
11175 ret = hclge_init_roce_base_info(vport);
11179 rst_cnt = hdev->rst_stats.reset_cnt;
11180 ret = client->ops->init_instance(&vport->roce);
11184 set_bit(HCLGE_STATE_ROCE_REGISTERED, &hdev->state);
11185 if (test_bit(HCLGE_STATE_RST_HANDLING, &hdev->state) ||
11186 rst_cnt != hdev->rst_stats.reset_cnt) {
11188 goto init_roce_err;
11191 /* Enable roce ras interrupts */
11192 ret = hclge_config_rocee_ras_interrupt(hdev, true);
11194 dev_err(&ae_dev->pdev->dev,
11195 "fail(%d) to enable roce ras interrupts\n", ret);
11196 goto init_roce_err;
11199 hnae3_set_client_init_flag(client, ae_dev, 1);
11204 clear_bit(HCLGE_STATE_ROCE_REGISTERED, &hdev->state);
11205 while (test_bit(HCLGE_STATE_RST_HANDLING, &hdev->state))
11206 msleep(HCLGE_WAIT_RESET_DONE);
11208 hdev->roce_client->ops->uninit_instance(&vport->roce, 0);
11213 static int hclge_init_client_instance(struct hnae3_client *client,
11214 struct hnae3_ae_dev *ae_dev)
11216 struct hclge_dev *hdev = ae_dev->priv;
11217 struct hclge_vport *vport = &hdev->vport[0];
11220 switch (client->type) {
11221 case HNAE3_CLIENT_KNIC:
11222 hdev->nic_client = client;
11223 vport->nic.client = client;
11224 ret = hclge_init_nic_client_instance(ae_dev, vport);
11228 ret = hclge_init_roce_client_instance(ae_dev, vport);
11233 case HNAE3_CLIENT_ROCE:
11234 if (hnae3_dev_roce_supported(hdev)) {
11235 hdev->roce_client = client;
11236 vport->roce.client = client;
11239 ret = hclge_init_roce_client_instance(ae_dev, vport);
11251 hdev->nic_client = NULL;
11252 vport->nic.client = NULL;
11255 hdev->roce_client = NULL;
11256 vport->roce.client = NULL;
11260 static void hclge_uninit_client_instance(struct hnae3_client *client,
11261 struct hnae3_ae_dev *ae_dev)
11263 struct hclge_dev *hdev = ae_dev->priv;
11264 struct hclge_vport *vport = &hdev->vport[0];
11266 if (hdev->roce_client) {
11267 clear_bit(HCLGE_STATE_ROCE_REGISTERED, &hdev->state);
11268 while (test_bit(HCLGE_STATE_RST_HANDLING, &hdev->state))
11269 msleep(HCLGE_WAIT_RESET_DONE);
11271 hdev->roce_client->ops->uninit_instance(&vport->roce, 0);
11272 hdev->roce_client = NULL;
11273 vport->roce.client = NULL;
11275 if (client->type == HNAE3_CLIENT_ROCE)
11277 if (hdev->nic_client && client->ops->uninit_instance) {
11278 clear_bit(HCLGE_STATE_NIC_REGISTERED, &hdev->state);
11279 while (test_bit(HCLGE_STATE_RST_HANDLING, &hdev->state))
11280 msleep(HCLGE_WAIT_RESET_DONE);
11282 client->ops->uninit_instance(&vport->nic, 0);
11283 hdev->nic_client = NULL;
11284 vport->nic.client = NULL;
11288 static int hclge_dev_mem_map(struct hclge_dev *hdev)
11290 struct pci_dev *pdev = hdev->pdev;
11291 struct hclge_hw *hw = &hdev->hw;
11293 /* for device does not have device memory, return directly */
11294 if (!(pci_select_bars(pdev, IORESOURCE_MEM) & BIT(HCLGE_MEM_BAR)))
11298 devm_ioremap_wc(&pdev->dev,
11299 pci_resource_start(pdev, HCLGE_MEM_BAR),
11300 pci_resource_len(pdev, HCLGE_MEM_BAR));
11301 if (!hw->hw.mem_base) {
11302 dev_err(&pdev->dev, "failed to map device memory\n");
11309 static int hclge_pci_init(struct hclge_dev *hdev)
11311 struct pci_dev *pdev = hdev->pdev;
11312 struct hclge_hw *hw;
11315 ret = pci_enable_device(pdev);
11317 dev_err(&pdev->dev, "failed to enable PCI device\n");
11321 ret = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(64));
11323 ret = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
11325 dev_err(&pdev->dev,
11326 "can't set consistent PCI DMA");
11327 goto err_disable_device;
11329 dev_warn(&pdev->dev, "set DMA mask to 32 bits\n");
11332 ret = pci_request_regions(pdev, HCLGE_DRIVER_NAME);
11334 dev_err(&pdev->dev, "PCI request regions failed %d\n", ret);
11335 goto err_disable_device;
11338 pci_set_master(pdev);
11340 hw->hw.io_base = pcim_iomap(pdev, 2, 0);
11341 if (!hw->hw.io_base) {
11342 dev_err(&pdev->dev, "Can't map configuration register space\n");
11344 goto err_clr_master;
11347 ret = hclge_dev_mem_map(hdev);
11349 goto err_unmap_io_base;
11351 hdev->num_req_vfs = pci_sriov_get_totalvfs(pdev);
11356 pcim_iounmap(pdev, hdev->hw.hw.io_base);
11358 pci_clear_master(pdev);
11359 pci_release_regions(pdev);
11360 err_disable_device:
11361 pci_disable_device(pdev);
11366 static void hclge_pci_uninit(struct hclge_dev *hdev)
11368 struct pci_dev *pdev = hdev->pdev;
11370 if (hdev->hw.hw.mem_base)
11371 devm_iounmap(&pdev->dev, hdev->hw.hw.mem_base);
11373 pcim_iounmap(pdev, hdev->hw.hw.io_base);
11374 pci_free_irq_vectors(pdev);
11375 pci_clear_master(pdev);
11376 pci_release_mem_regions(pdev);
11377 pci_disable_device(pdev);
11380 static void hclge_state_init(struct hclge_dev *hdev)
11382 set_bit(HCLGE_STATE_SERVICE_INITED, &hdev->state);
11383 set_bit(HCLGE_STATE_DOWN, &hdev->state);
11384 clear_bit(HCLGE_STATE_RST_SERVICE_SCHED, &hdev->state);
11385 clear_bit(HCLGE_STATE_RST_HANDLING, &hdev->state);
11386 clear_bit(HCLGE_STATE_RST_FAIL, &hdev->state);
11387 clear_bit(HCLGE_STATE_MBX_SERVICE_SCHED, &hdev->state);
11388 clear_bit(HCLGE_STATE_MBX_HANDLING, &hdev->state);
11391 static void hclge_state_uninit(struct hclge_dev *hdev)
11393 set_bit(HCLGE_STATE_DOWN, &hdev->state);
11394 set_bit(HCLGE_STATE_REMOVING, &hdev->state);
11396 if (hdev->reset_timer.function)
11397 del_timer_sync(&hdev->reset_timer);
11398 if (hdev->service_task.work.func)
11399 cancel_delayed_work_sync(&hdev->service_task);
11402 static void hclge_reset_prepare_general(struct hnae3_ae_dev *ae_dev,
11403 enum hnae3_reset_type rst_type)
11405 #define HCLGE_RESET_RETRY_WAIT_MS 500
11406 #define HCLGE_RESET_RETRY_CNT 5
11408 struct hclge_dev *hdev = ae_dev->priv;
11412 while (retry_cnt++ < HCLGE_RESET_RETRY_CNT) {
11413 down(&hdev->reset_sem);
11414 set_bit(HCLGE_STATE_RST_HANDLING, &hdev->state);
11415 hdev->reset_type = rst_type;
11416 ret = hclge_reset_prepare(hdev);
11417 if (!ret && !hdev->reset_pending)
11420 dev_err(&hdev->pdev->dev,
11421 "failed to prepare to reset, ret=%d, reset_pending:0x%lx, retry_cnt:%d\n",
11422 ret, hdev->reset_pending, retry_cnt);
11423 clear_bit(HCLGE_STATE_RST_HANDLING, &hdev->state);
11424 up(&hdev->reset_sem);
11425 msleep(HCLGE_RESET_RETRY_WAIT_MS);
11428 /* disable misc vector before reset done */
11429 hclge_enable_vector(&hdev->misc_vector, false);
11430 set_bit(HCLGE_COMM_STATE_CMD_DISABLE, &hdev->hw.hw.comm_state);
11432 if (hdev->reset_type == HNAE3_FLR_RESET)
11433 hdev->rst_stats.flr_rst_cnt++;
11436 static void hclge_reset_done(struct hnae3_ae_dev *ae_dev)
11438 struct hclge_dev *hdev = ae_dev->priv;
11441 hclge_enable_vector(&hdev->misc_vector, true);
11443 ret = hclge_reset_rebuild(hdev);
11445 dev_err(&hdev->pdev->dev, "fail to rebuild, ret=%d\n", ret);
11447 hdev->reset_type = HNAE3_NONE_RESET;
11448 clear_bit(HCLGE_STATE_RST_HANDLING, &hdev->state);
11449 up(&hdev->reset_sem);
11452 static void hclge_clear_resetting_state(struct hclge_dev *hdev)
11456 for (i = 0; i < hdev->num_alloc_vport; i++) {
11457 struct hclge_vport *vport = &hdev->vport[i];
11460 /* Send cmd to clear vport's FUNC_RST_ING */
11461 ret = hclge_set_vf_rst(hdev, vport->vport_id, false);
11463 dev_warn(&hdev->pdev->dev,
11464 "clear vport(%u) rst failed %d!\n",
11465 vport->vport_id, ret);
11469 static int hclge_clear_hw_resource(struct hclge_dev *hdev)
11471 struct hclge_desc desc;
11474 hclge_cmd_setup_basic_desc(&desc, HCLGE_OPC_CLEAR_HW_RESOURCE, false);
11476 ret = hclge_cmd_send(&hdev->hw, &desc, 1);
11477 /* This new command is only supported by new firmware, it will
11478 * fail with older firmware. Error value -EOPNOSUPP can only be
11479 * returned by older firmware running this command, to keep code
11480 * backward compatible we will override this value and return
11483 if (ret && ret != -EOPNOTSUPP) {
11484 dev_err(&hdev->pdev->dev,
11485 "failed to clear hw resource, ret = %d\n", ret);
11491 static void hclge_init_rxd_adv_layout(struct hclge_dev *hdev)
11493 if (hnae3_ae_dev_rxd_adv_layout_supported(hdev->ae_dev))
11494 hclge_write_dev(&hdev->hw, HCLGE_RXD_ADV_LAYOUT_EN_REG, 1);
11497 static void hclge_uninit_rxd_adv_layout(struct hclge_dev *hdev)
11499 if (hnae3_ae_dev_rxd_adv_layout_supported(hdev->ae_dev))
11500 hclge_write_dev(&hdev->hw, HCLGE_RXD_ADV_LAYOUT_EN_REG, 0);
11503 static int hclge_init_ae_dev(struct hnae3_ae_dev *ae_dev)
11505 struct pci_dev *pdev = ae_dev->pdev;
11506 struct hclge_dev *hdev;
11509 hdev = devm_kzalloc(&pdev->dev, sizeof(*hdev), GFP_KERNEL);
11514 hdev->ae_dev = ae_dev;
11515 hdev->reset_type = HNAE3_NONE_RESET;
11516 hdev->reset_level = HNAE3_FUNC_RESET;
11517 ae_dev->priv = hdev;
11519 /* HW supprt 2 layer vlan */
11520 hdev->mps = ETH_FRAME_LEN + ETH_FCS_LEN + 2 * VLAN_HLEN;
11522 mutex_init(&hdev->vport_lock);
11523 spin_lock_init(&hdev->fd_rule_lock);
11524 sema_init(&hdev->reset_sem, 1);
11526 ret = hclge_pci_init(hdev);
11530 ret = hclge_devlink_init(hdev);
11532 goto err_pci_uninit;
11534 /* Firmware command queue initialize */
11535 ret = hclge_comm_cmd_queue_init(hdev->pdev, &hdev->hw.hw);
11537 goto err_devlink_uninit;
11539 /* Firmware command initialize */
11540 ret = hclge_comm_cmd_init(hdev->ae_dev, &hdev->hw.hw, &hdev->fw_version,
11541 true, hdev->reset_pending);
11543 goto err_cmd_uninit;
11545 ret = hclge_clear_hw_resource(hdev);
11547 goto err_cmd_uninit;
11549 ret = hclge_get_cap(hdev);
11551 goto err_cmd_uninit;
11553 ret = hclge_query_dev_specs(hdev);
11555 dev_err(&pdev->dev, "failed to query dev specifications, ret = %d.\n",
11557 goto err_cmd_uninit;
11560 ret = hclge_configure(hdev);
11562 dev_err(&pdev->dev, "Configure dev error, ret = %d.\n", ret);
11563 goto err_cmd_uninit;
11566 ret = hclge_init_msi(hdev);
11568 dev_err(&pdev->dev, "Init MSI/MSI-X error, ret = %d.\n", ret);
11569 goto err_cmd_uninit;
11572 ret = hclge_misc_irq_init(hdev);
11574 goto err_msi_uninit;
11576 ret = hclge_alloc_tqps(hdev);
11578 dev_err(&pdev->dev, "Allocate TQPs error, ret = %d.\n", ret);
11579 goto err_msi_irq_uninit;
11582 ret = hclge_alloc_vport(hdev);
11584 goto err_msi_irq_uninit;
11586 ret = hclge_map_tqp(hdev);
11588 goto err_msi_irq_uninit;
11590 if (hdev->hw.mac.media_type == HNAE3_MEDIA_TYPE_COPPER &&
11591 !hnae3_dev_phy_imp_supported(hdev)) {
11592 ret = hclge_mac_mdio_config(hdev);
11594 goto err_msi_irq_uninit;
11597 ret = hclge_init_umv_space(hdev);
11599 goto err_mdiobus_unreg;
11601 ret = hclge_mac_init(hdev);
11603 dev_err(&pdev->dev, "Mac init error, ret = %d\n", ret);
11604 goto err_mdiobus_unreg;
11607 ret = hclge_config_tso(hdev, HCLGE_TSO_MSS_MIN, HCLGE_TSO_MSS_MAX);
11609 dev_err(&pdev->dev, "Enable tso fail, ret =%d\n", ret);
11610 goto err_mdiobus_unreg;
11613 ret = hclge_config_gro(hdev);
11615 goto err_mdiobus_unreg;
11617 ret = hclge_init_vlan_config(hdev);
11619 dev_err(&pdev->dev, "VLAN init fail, ret =%d\n", ret);
11620 goto err_mdiobus_unreg;
11623 ret = hclge_tm_schd_init(hdev);
11625 dev_err(&pdev->dev, "tm schd init fail, ret =%d\n", ret);
11626 goto err_mdiobus_unreg;
11629 ret = hclge_comm_rss_init_cfg(&hdev->vport->nic, hdev->ae_dev,
11632 dev_err(&pdev->dev, "failed to init rss cfg, ret = %d\n", ret);
11633 goto err_mdiobus_unreg;
11636 ret = hclge_rss_init_hw(hdev);
11638 dev_err(&pdev->dev, "Rss init fail, ret =%d\n", ret);
11639 goto err_mdiobus_unreg;
11642 ret = init_mgr_tbl(hdev);
11644 dev_err(&pdev->dev, "manager table init fail, ret =%d\n", ret);
11645 goto err_mdiobus_unreg;
11648 ret = hclge_init_fd_config(hdev);
11650 dev_err(&pdev->dev,
11651 "fd table init fail, ret=%d\n", ret);
11652 goto err_mdiobus_unreg;
11655 ret = hclge_ptp_init(hdev);
11657 goto err_mdiobus_unreg;
11659 ret = hclge_update_port_info(hdev);
11661 goto err_mdiobus_unreg;
11663 INIT_KFIFO(hdev->mac_tnl_log);
11665 hclge_dcb_ops_set(hdev);
11667 timer_setup(&hdev->reset_timer, hclge_reset_timer, 0);
11668 INIT_DELAYED_WORK(&hdev->service_task, hclge_service_task);
11670 hclge_clear_all_event_cause(hdev);
11671 hclge_clear_resetting_state(hdev);
11673 /* Log and clear the hw errors those already occurred */
11674 if (hnae3_dev_ras_imp_supported(hdev))
11675 hclge_handle_occurred_error(hdev);
11677 hclge_handle_all_hns_hw_errors(ae_dev);
11679 /* request delayed reset for the error recovery because an immediate
11680 * global reset on a PF affecting pending initialization of other PFs
11682 if (ae_dev->hw_err_reset_req) {
11683 enum hnae3_reset_type reset_level;
11685 reset_level = hclge_get_reset_level(ae_dev,
11686 &ae_dev->hw_err_reset_req);
11687 hclge_set_def_reset_request(ae_dev, reset_level);
11688 mod_timer(&hdev->reset_timer, jiffies + HCLGE_RESET_INTERVAL);
11691 hclge_init_rxd_adv_layout(hdev);
11693 /* Enable MISC vector(vector0) */
11694 hclge_enable_vector(&hdev->misc_vector, true);
11696 hclge_state_init(hdev);
11697 hdev->last_reset_time = jiffies;
11699 dev_info(&hdev->pdev->dev, "%s driver initialization finished.\n",
11700 HCLGE_DRIVER_NAME);
11702 hclge_task_schedule(hdev, round_jiffies_relative(HZ));
11707 if (hdev->hw.mac.phydev)
11708 mdiobus_unregister(hdev->hw.mac.mdio_bus);
11709 err_msi_irq_uninit:
11710 hclge_misc_irq_uninit(hdev);
11712 pci_free_irq_vectors(pdev);
11714 hclge_comm_cmd_uninit(hdev->ae_dev, &hdev->hw.hw);
11715 err_devlink_uninit:
11716 hclge_devlink_uninit(hdev);
11718 pcim_iounmap(pdev, hdev->hw.hw.io_base);
11719 pci_clear_master(pdev);
11720 pci_release_regions(pdev);
11721 pci_disable_device(pdev);
11723 mutex_destroy(&hdev->vport_lock);
11727 static void hclge_stats_clear(struct hclge_dev *hdev)
11729 memset(&hdev->mac_stats, 0, sizeof(hdev->mac_stats));
11730 memset(&hdev->fec_stats, 0, sizeof(hdev->fec_stats));
11733 static int hclge_set_mac_spoofchk(struct hclge_dev *hdev, int vf, bool enable)
11735 return hclge_config_switch_param(hdev, vf, enable,
11736 HCLGE_SWITCH_ANTI_SPOOF_MASK);
11739 static int hclge_set_vlan_spoofchk(struct hclge_dev *hdev, int vf, bool enable)
11741 return hclge_set_vlan_filter_ctrl(hdev, HCLGE_FILTER_TYPE_VF,
11742 HCLGE_FILTER_FE_NIC_INGRESS_B,
11746 static int hclge_set_vf_spoofchk_hw(struct hclge_dev *hdev, int vf, bool enable)
11750 ret = hclge_set_mac_spoofchk(hdev, vf, enable);
11752 dev_err(&hdev->pdev->dev,
11753 "Set vf %d mac spoof check %s failed, ret=%d\n",
11754 vf, enable ? "on" : "off", ret);
11758 ret = hclge_set_vlan_spoofchk(hdev, vf, enable);
11760 dev_err(&hdev->pdev->dev,
11761 "Set vf %d vlan spoof check %s failed, ret=%d\n",
11762 vf, enable ? "on" : "off", ret);
11767 static int hclge_set_vf_spoofchk(struct hnae3_handle *handle, int vf,
11770 struct hclge_vport *vport = hclge_get_vport(handle);
11771 struct hclge_dev *hdev = vport->back;
11772 u32 new_spoofchk = enable ? 1 : 0;
11775 if (hdev->ae_dev->dev_version < HNAE3_DEVICE_VERSION_V2)
11776 return -EOPNOTSUPP;
11778 vport = hclge_get_vf_vport(hdev, vf);
11782 if (vport->vf_info.spoofchk == new_spoofchk)
11785 if (enable && test_bit(vport->vport_id, hdev->vf_vlan_full))
11786 dev_warn(&hdev->pdev->dev,
11787 "vf %d vlan table is full, enable spoof check may cause its packet send fail\n",
11789 else if (enable && hclge_is_umv_space_full(vport, true))
11790 dev_warn(&hdev->pdev->dev,
11791 "vf %d mac table is full, enable spoof check may cause its packet send fail\n",
11794 ret = hclge_set_vf_spoofchk_hw(hdev, vport->vport_id, enable);
11798 vport->vf_info.spoofchk = new_spoofchk;
11802 static int hclge_reset_vport_spoofchk(struct hclge_dev *hdev)
11804 struct hclge_vport *vport = hdev->vport;
11808 if (hdev->ae_dev->dev_version < HNAE3_DEVICE_VERSION_V2)
11811 /* resume the vf spoof check state after reset */
11812 for (i = 0; i < hdev->num_alloc_vport; i++) {
11813 ret = hclge_set_vf_spoofchk_hw(hdev, vport->vport_id,
11814 vport->vf_info.spoofchk);
11824 static int hclge_set_vf_trust(struct hnae3_handle *handle, int vf, bool enable)
11826 struct hclge_vport *vport = hclge_get_vport(handle);
11827 struct hclge_dev *hdev = vport->back;
11828 u32 new_trusted = enable ? 1 : 0;
11830 vport = hclge_get_vf_vport(hdev, vf);
11834 if (vport->vf_info.trusted == new_trusted)
11837 vport->vf_info.trusted = new_trusted;
11838 set_bit(HCLGE_VPORT_STATE_PROMISC_CHANGE, &vport->state);
11839 hclge_task_schedule(hdev, 0);
11844 static void hclge_reset_vf_rate(struct hclge_dev *hdev)
11849 /* reset vf rate to default value */
11850 for (vf = HCLGE_VF_VPORT_START_NUM; vf < hdev->num_alloc_vport; vf++) {
11851 struct hclge_vport *vport = &hdev->vport[vf];
11853 vport->vf_info.max_tx_rate = 0;
11854 ret = hclge_tm_qs_shaper_cfg(vport, vport->vf_info.max_tx_rate);
11856 dev_err(&hdev->pdev->dev,
11857 "vf%d failed to reset to default, ret=%d\n",
11858 vf - HCLGE_VF_VPORT_START_NUM, ret);
11862 static int hclge_vf_rate_param_check(struct hclge_dev *hdev,
11863 int min_tx_rate, int max_tx_rate)
11865 if (min_tx_rate != 0 ||
11866 max_tx_rate < 0 || max_tx_rate > hdev->hw.mac.max_speed) {
11867 dev_err(&hdev->pdev->dev,
11868 "min_tx_rate:%d [0], max_tx_rate:%d [0, %u]\n",
11869 min_tx_rate, max_tx_rate, hdev->hw.mac.max_speed);
11876 static int hclge_set_vf_rate(struct hnae3_handle *handle, int vf,
11877 int min_tx_rate, int max_tx_rate, bool force)
11879 struct hclge_vport *vport = hclge_get_vport(handle);
11880 struct hclge_dev *hdev = vport->back;
11883 ret = hclge_vf_rate_param_check(hdev, min_tx_rate, max_tx_rate);
11887 vport = hclge_get_vf_vport(hdev, vf);
11891 if (!force && max_tx_rate == vport->vf_info.max_tx_rate)
11894 ret = hclge_tm_qs_shaper_cfg(vport, max_tx_rate);
11898 vport->vf_info.max_tx_rate = max_tx_rate;
11903 static int hclge_resume_vf_rate(struct hclge_dev *hdev)
11905 struct hnae3_handle *handle = &hdev->vport->nic;
11906 struct hclge_vport *vport;
11910 /* resume the vf max_tx_rate after reset */
11911 for (vf = 0; vf < pci_num_vf(hdev->pdev); vf++) {
11912 vport = hclge_get_vf_vport(hdev, vf);
11916 /* zero means max rate, after reset, firmware already set it to
11917 * max rate, so just continue.
11919 if (!vport->vf_info.max_tx_rate)
11922 ret = hclge_set_vf_rate(handle, vf, 0,
11923 vport->vf_info.max_tx_rate, true);
11925 dev_err(&hdev->pdev->dev,
11926 "vf%d failed to resume tx_rate:%u, ret=%d\n",
11927 vf, vport->vf_info.max_tx_rate, ret);
11935 static void hclge_reset_vport_state(struct hclge_dev *hdev)
11937 struct hclge_vport *vport = hdev->vport;
11940 for (i = 0; i < hdev->num_alloc_vport; i++) {
11941 hclge_vport_stop(vport);
11946 static int hclge_reset_ae_dev(struct hnae3_ae_dev *ae_dev)
11948 struct hclge_dev *hdev = ae_dev->priv;
11949 struct pci_dev *pdev = ae_dev->pdev;
11952 set_bit(HCLGE_STATE_DOWN, &hdev->state);
11954 hclge_stats_clear(hdev);
11955 /* NOTE: pf reset needn't to clear or restore pf and vf table entry.
11956 * so here should not clean table in memory.
11958 if (hdev->reset_type == HNAE3_IMP_RESET ||
11959 hdev->reset_type == HNAE3_GLOBAL_RESET) {
11960 memset(hdev->vlan_table, 0, sizeof(hdev->vlan_table));
11961 memset(hdev->vf_vlan_full, 0, sizeof(hdev->vf_vlan_full));
11962 bitmap_set(hdev->vport_config_block, 0, hdev->num_alloc_vport);
11963 hclge_reset_umv_space(hdev);
11966 ret = hclge_comm_cmd_init(hdev->ae_dev, &hdev->hw.hw, &hdev->fw_version,
11967 true, hdev->reset_pending);
11969 dev_err(&pdev->dev, "Cmd queue init failed\n");
11973 ret = hclge_map_tqp(hdev);
11975 dev_err(&pdev->dev, "Map tqp error, ret = %d.\n", ret);
11979 ret = hclge_mac_init(hdev);
11981 dev_err(&pdev->dev, "Mac init error, ret = %d\n", ret);
11985 ret = hclge_tp_port_init(hdev);
11987 dev_err(&pdev->dev, "failed to init tp port, ret = %d\n",
11992 ret = hclge_config_tso(hdev, HCLGE_TSO_MSS_MIN, HCLGE_TSO_MSS_MAX);
11994 dev_err(&pdev->dev, "Enable tso fail, ret =%d\n", ret);
11998 ret = hclge_config_gro(hdev);
12002 ret = hclge_init_vlan_config(hdev);
12004 dev_err(&pdev->dev, "VLAN init fail, ret =%d\n", ret);
12008 ret = hclge_tm_init_hw(hdev, true);
12010 dev_err(&pdev->dev, "tm init hw fail, ret =%d\n", ret);
12014 ret = hclge_rss_init_hw(hdev);
12016 dev_err(&pdev->dev, "Rss init fail, ret =%d\n", ret);
12020 ret = init_mgr_tbl(hdev);
12022 dev_err(&pdev->dev,
12023 "failed to reinit manager table, ret = %d\n", ret);
12027 ret = hclge_init_fd_config(hdev);
12029 dev_err(&pdev->dev, "fd table init fail, ret=%d\n", ret);
12033 ret = hclge_ptp_init(hdev);
12037 /* Log and clear the hw errors those already occurred */
12038 if (hnae3_dev_ras_imp_supported(hdev))
12039 hclge_handle_occurred_error(hdev);
12041 hclge_handle_all_hns_hw_errors(ae_dev);
12043 /* Re-enable the hw error interrupts because
12044 * the interrupts get disabled on global reset.
12046 ret = hclge_config_nic_hw_error(hdev, true);
12048 dev_err(&pdev->dev,
12049 "fail(%d) to re-enable NIC hw error interrupts\n",
12054 if (hdev->roce_client) {
12055 ret = hclge_config_rocee_ras_interrupt(hdev, true);
12057 dev_err(&pdev->dev,
12058 "fail(%d) to re-enable roce ras interrupts\n",
12064 hclge_reset_vport_state(hdev);
12065 ret = hclge_reset_vport_spoofchk(hdev);
12069 ret = hclge_resume_vf_rate(hdev);
12073 hclge_init_rxd_adv_layout(hdev);
12075 dev_info(&pdev->dev, "Reset done, %s driver initialization finished.\n",
12076 HCLGE_DRIVER_NAME);
12081 static void hclge_uninit_ae_dev(struct hnae3_ae_dev *ae_dev)
12083 struct hclge_dev *hdev = ae_dev->priv;
12084 struct hclge_mac *mac = &hdev->hw.mac;
12086 hclge_reset_vf_rate(hdev);
12087 hclge_clear_vf_vlan(hdev);
12088 hclge_state_uninit(hdev);
12089 hclge_ptp_uninit(hdev);
12090 hclge_uninit_rxd_adv_layout(hdev);
12091 hclge_uninit_mac_table(hdev);
12092 hclge_del_all_fd_entries(hdev);
12095 mdiobus_unregister(mac->mdio_bus);
12097 /* Disable MISC vector(vector0) */
12098 hclge_enable_vector(&hdev->misc_vector, false);
12099 synchronize_irq(hdev->misc_vector.vector_irq);
12101 /* Disable all hw interrupts */
12102 hclge_config_mac_tnl_int(hdev, false);
12103 hclge_config_nic_hw_error(hdev, false);
12104 hclge_config_rocee_ras_interrupt(hdev, false);
12106 hclge_comm_cmd_uninit(hdev->ae_dev, &hdev->hw.hw);
12107 hclge_misc_irq_uninit(hdev);
12108 hclge_devlink_uninit(hdev);
12109 hclge_pci_uninit(hdev);
12110 hclge_uninit_vport_vlan_table(hdev);
12111 mutex_destroy(&hdev->vport_lock);
12112 ae_dev->priv = NULL;
12115 static u32 hclge_get_max_channels(struct hnae3_handle *handle)
12117 struct hclge_vport *vport = hclge_get_vport(handle);
12118 struct hclge_dev *hdev = vport->back;
12120 return min_t(u32, hdev->pf_rss_size_max, vport->alloc_tqps);
12123 static void hclge_get_channels(struct hnae3_handle *handle,
12124 struct ethtool_channels *ch)
12126 ch->max_combined = hclge_get_max_channels(handle);
12127 ch->other_count = 1;
12129 ch->combined_count = handle->kinfo.rss_size;
12132 static void hclge_get_tqps_and_rss_info(struct hnae3_handle *handle,
12133 u16 *alloc_tqps, u16 *max_rss_size)
12135 struct hclge_vport *vport = hclge_get_vport(handle);
12136 struct hclge_dev *hdev = vport->back;
12138 *alloc_tqps = vport->alloc_tqps;
12139 *max_rss_size = hdev->pf_rss_size_max;
12142 static int hclge_set_rss_tc_mode_cfg(struct hnae3_handle *handle)
12144 struct hclge_vport *vport = hclge_get_vport(handle);
12145 u16 tc_offset[HCLGE_MAX_TC_NUM] = {0};
12146 struct hclge_dev *hdev = vport->back;
12147 u16 tc_size[HCLGE_MAX_TC_NUM] = {0};
12148 u16 tc_valid[HCLGE_MAX_TC_NUM];
12152 roundup_size = roundup_pow_of_two(vport->nic.kinfo.rss_size);
12153 roundup_size = ilog2(roundup_size);
12154 /* Set the RSS TC mode according to the new RSS size */
12155 for (i = 0; i < HCLGE_MAX_TC_NUM; i++) {
12158 if (!(hdev->hw_tc_map & BIT(i)))
12162 tc_size[i] = roundup_size;
12163 tc_offset[i] = vport->nic.kinfo.rss_size * i;
12166 return hclge_comm_set_rss_tc_mode(&hdev->hw.hw, tc_offset, tc_valid,
12170 static int hclge_set_channels(struct hnae3_handle *handle, u32 new_tqps_num,
12171 bool rxfh_configured)
12173 struct hnae3_ae_dev *ae_dev = pci_get_drvdata(handle->pdev);
12174 struct hclge_vport *vport = hclge_get_vport(handle);
12175 struct hnae3_knic_private_info *kinfo = &vport->nic.kinfo;
12176 struct hclge_dev *hdev = vport->back;
12177 u16 cur_rss_size = kinfo->rss_size;
12178 u16 cur_tqps = kinfo->num_tqps;
12183 kinfo->req_rss_size = new_tqps_num;
12185 ret = hclge_tm_vport_map_update(hdev);
12187 dev_err(&hdev->pdev->dev, "tm vport map fail, ret =%d\n", ret);
12191 ret = hclge_set_rss_tc_mode_cfg(handle);
12195 /* RSS indirection table has been configured by user */
12196 if (rxfh_configured)
12199 /* Reinitializes the rss indirect table according to the new RSS size */
12200 rss_indir = kcalloc(ae_dev->dev_specs.rss_ind_tbl_size, sizeof(u32),
12205 for (i = 0; i < ae_dev->dev_specs.rss_ind_tbl_size; i++)
12206 rss_indir[i] = i % kinfo->rss_size;
12208 ret = hclge_set_rss(handle, rss_indir, NULL, 0);
12210 dev_err(&hdev->pdev->dev, "set rss indir table fail, ret=%d\n",
12217 dev_info(&hdev->pdev->dev,
12218 "Channels changed, rss_size from %u to %u, tqps from %u to %u",
12219 cur_rss_size, kinfo->rss_size,
12220 cur_tqps, kinfo->rss_size * kinfo->tc_info.num_tc);
12225 static int hclge_get_regs_num(struct hclge_dev *hdev, u32 *regs_num_32_bit,
12226 u32 *regs_num_64_bit)
12228 struct hclge_desc desc;
12232 hclge_cmd_setup_basic_desc(&desc, HCLGE_OPC_QUERY_REG_NUM, true);
12233 ret = hclge_cmd_send(&hdev->hw, &desc, 1);
12235 dev_err(&hdev->pdev->dev,
12236 "Query register number cmd failed, ret = %d.\n", ret);
12240 *regs_num_32_bit = le32_to_cpu(desc.data[0]);
12241 *regs_num_64_bit = le32_to_cpu(desc.data[1]);
12243 total_num = *regs_num_32_bit + *regs_num_64_bit;
12250 static int hclge_get_32_bit_regs(struct hclge_dev *hdev, u32 regs_num,
12253 #define HCLGE_32_BIT_REG_RTN_DATANUM 8
12254 #define HCLGE_32_BIT_DESC_NODATA_LEN 2
12256 struct hclge_desc *desc;
12257 u32 *reg_val = data;
12267 nodata_num = HCLGE_32_BIT_DESC_NODATA_LEN;
12268 cmd_num = DIV_ROUND_UP(regs_num + nodata_num,
12269 HCLGE_32_BIT_REG_RTN_DATANUM);
12270 desc = kcalloc(cmd_num, sizeof(struct hclge_desc), GFP_KERNEL);
12274 hclge_cmd_setup_basic_desc(&desc[0], HCLGE_OPC_QUERY_32_BIT_REG, true);
12275 ret = hclge_cmd_send(&hdev->hw, desc, cmd_num);
12277 dev_err(&hdev->pdev->dev,
12278 "Query 32 bit register cmd failed, ret = %d.\n", ret);
12283 for (i = 0; i < cmd_num; i++) {
12285 desc_data = (__le32 *)(&desc[i].data[0]);
12286 n = HCLGE_32_BIT_REG_RTN_DATANUM - nodata_num;
12288 desc_data = (__le32 *)(&desc[i]);
12289 n = HCLGE_32_BIT_REG_RTN_DATANUM;
12291 for (k = 0; k < n; k++) {
12292 *reg_val++ = le32_to_cpu(*desc_data++);
12304 static int hclge_get_64_bit_regs(struct hclge_dev *hdev, u32 regs_num,
12307 #define HCLGE_64_BIT_REG_RTN_DATANUM 4
12308 #define HCLGE_64_BIT_DESC_NODATA_LEN 1
12310 struct hclge_desc *desc;
12311 u64 *reg_val = data;
12321 nodata_len = HCLGE_64_BIT_DESC_NODATA_LEN;
12322 cmd_num = DIV_ROUND_UP(regs_num + nodata_len,
12323 HCLGE_64_BIT_REG_RTN_DATANUM);
12324 desc = kcalloc(cmd_num, sizeof(struct hclge_desc), GFP_KERNEL);
12328 hclge_cmd_setup_basic_desc(&desc[0], HCLGE_OPC_QUERY_64_BIT_REG, true);
12329 ret = hclge_cmd_send(&hdev->hw, desc, cmd_num);
12331 dev_err(&hdev->pdev->dev,
12332 "Query 64 bit register cmd failed, ret = %d.\n", ret);
12337 for (i = 0; i < cmd_num; i++) {
12339 desc_data = (__le64 *)(&desc[i].data[0]);
12340 n = HCLGE_64_BIT_REG_RTN_DATANUM - nodata_len;
12342 desc_data = (__le64 *)(&desc[i]);
12343 n = HCLGE_64_BIT_REG_RTN_DATANUM;
12345 for (k = 0; k < n; k++) {
12346 *reg_val++ = le64_to_cpu(*desc_data++);
12358 #define MAX_SEPARATE_NUM 4
12359 #define SEPARATOR_VALUE 0xFDFCFBFA
12360 #define REG_NUM_PER_LINE 4
12361 #define REG_LEN_PER_LINE (REG_NUM_PER_LINE * sizeof(u32))
12362 #define REG_SEPARATOR_LINE 1
12363 #define REG_NUM_REMAIN_MASK 3
12365 int hclge_query_bd_num_cmd_send(struct hclge_dev *hdev, struct hclge_desc *desc)
12369 /* initialize command BD except the last one */
12370 for (i = 0; i < HCLGE_GET_DFX_REG_TYPE_CNT - 1; i++) {
12371 hclge_cmd_setup_basic_desc(&desc[i], HCLGE_OPC_DFX_BD_NUM,
12373 desc[i].flag |= cpu_to_le16(HCLGE_COMM_CMD_FLAG_NEXT);
12376 /* initialize the last command BD */
12377 hclge_cmd_setup_basic_desc(&desc[i], HCLGE_OPC_DFX_BD_NUM, true);
12379 return hclge_cmd_send(&hdev->hw, desc, HCLGE_GET_DFX_REG_TYPE_CNT);
12382 static int hclge_get_dfx_reg_bd_num(struct hclge_dev *hdev,
12386 u32 entries_per_desc, desc_index, index, offset, i;
12387 struct hclge_desc desc[HCLGE_GET_DFX_REG_TYPE_CNT];
12390 ret = hclge_query_bd_num_cmd_send(hdev, desc);
12392 dev_err(&hdev->pdev->dev,
12393 "Get dfx bd num fail, status is %d.\n", ret);
12397 entries_per_desc = ARRAY_SIZE(desc[0].data);
12398 for (i = 0; i < type_num; i++) {
12399 offset = hclge_dfx_bd_offset_list[i];
12400 index = offset % entries_per_desc;
12401 desc_index = offset / entries_per_desc;
12402 bd_num_list[i] = le32_to_cpu(desc[desc_index].data[index]);
12408 static int hclge_dfx_reg_cmd_send(struct hclge_dev *hdev,
12409 struct hclge_desc *desc_src, int bd_num,
12410 enum hclge_opcode_type cmd)
12412 struct hclge_desc *desc = desc_src;
12415 hclge_cmd_setup_basic_desc(desc, cmd, true);
12416 for (i = 0; i < bd_num - 1; i++) {
12417 desc->flag |= cpu_to_le16(HCLGE_COMM_CMD_FLAG_NEXT);
12419 hclge_cmd_setup_basic_desc(desc, cmd, true);
12423 ret = hclge_cmd_send(&hdev->hw, desc, bd_num);
12425 dev_err(&hdev->pdev->dev,
12426 "Query dfx reg cmd(0x%x) send fail, status is %d.\n",
12432 static int hclge_dfx_reg_fetch_data(struct hclge_desc *desc_src, int bd_num,
12435 int entries_per_desc, reg_num, separator_num, desc_index, index, i;
12436 struct hclge_desc *desc = desc_src;
12439 entries_per_desc = ARRAY_SIZE(desc->data);
12440 reg_num = entries_per_desc * bd_num;
12441 separator_num = REG_NUM_PER_LINE - (reg_num & REG_NUM_REMAIN_MASK);
12442 for (i = 0; i < reg_num; i++) {
12443 index = i % entries_per_desc;
12444 desc_index = i / entries_per_desc;
12445 *reg++ = le32_to_cpu(desc[desc_index].data[index]);
12447 for (i = 0; i < separator_num; i++)
12448 *reg++ = SEPARATOR_VALUE;
12450 return reg_num + separator_num;
12453 static int hclge_get_dfx_reg_len(struct hclge_dev *hdev, int *len)
12455 u32 dfx_reg_type_num = ARRAY_SIZE(hclge_dfx_bd_offset_list);
12456 int data_len_per_desc, bd_num, i;
12461 bd_num_list = kcalloc(dfx_reg_type_num, sizeof(int), GFP_KERNEL);
12465 ret = hclge_get_dfx_reg_bd_num(hdev, bd_num_list, dfx_reg_type_num);
12467 dev_err(&hdev->pdev->dev,
12468 "Get dfx reg bd num fail, status is %d.\n", ret);
12472 data_len_per_desc = sizeof_field(struct hclge_desc, data);
12474 for (i = 0; i < dfx_reg_type_num; i++) {
12475 bd_num = bd_num_list[i];
12476 data_len = data_len_per_desc * bd_num;
12477 *len += (data_len / REG_LEN_PER_LINE + 1) * REG_LEN_PER_LINE;
12481 kfree(bd_num_list);
12485 static int hclge_get_dfx_reg(struct hclge_dev *hdev, void *data)
12487 u32 dfx_reg_type_num = ARRAY_SIZE(hclge_dfx_bd_offset_list);
12488 int bd_num, bd_num_max, buf_len, i;
12489 struct hclge_desc *desc_src;
12494 bd_num_list = kcalloc(dfx_reg_type_num, sizeof(int), GFP_KERNEL);
12498 ret = hclge_get_dfx_reg_bd_num(hdev, bd_num_list, dfx_reg_type_num);
12500 dev_err(&hdev->pdev->dev,
12501 "Get dfx reg bd num fail, status is %d.\n", ret);
12505 bd_num_max = bd_num_list[0];
12506 for (i = 1; i < dfx_reg_type_num; i++)
12507 bd_num_max = max_t(int, bd_num_max, bd_num_list[i]);
12509 buf_len = sizeof(*desc_src) * bd_num_max;
12510 desc_src = kzalloc(buf_len, GFP_KERNEL);
12516 for (i = 0; i < dfx_reg_type_num; i++) {
12517 bd_num = bd_num_list[i];
12518 ret = hclge_dfx_reg_cmd_send(hdev, desc_src, bd_num,
12519 hclge_dfx_reg_opcode_list[i]);
12521 dev_err(&hdev->pdev->dev,
12522 "Get dfx reg fail, status is %d.\n", ret);
12526 reg += hclge_dfx_reg_fetch_data(desc_src, bd_num, reg);
12531 kfree(bd_num_list);
12535 static int hclge_fetch_pf_reg(struct hclge_dev *hdev, void *data,
12536 struct hnae3_knic_private_info *kinfo)
12538 #define HCLGE_RING_REG_OFFSET 0x200
12539 #define HCLGE_RING_INT_REG_OFFSET 0x4
12541 int i, j, reg_num, separator_num;
12545 /* fetching per-PF registers valus from PF PCIe register space */
12546 reg_num = ARRAY_SIZE(cmdq_reg_addr_list);
12547 separator_num = MAX_SEPARATE_NUM - (reg_num & REG_NUM_REMAIN_MASK);
12548 for (i = 0; i < reg_num; i++)
12549 *reg++ = hclge_read_dev(&hdev->hw, cmdq_reg_addr_list[i]);
12550 for (i = 0; i < separator_num; i++)
12551 *reg++ = SEPARATOR_VALUE;
12552 data_num_sum = reg_num + separator_num;
12554 reg_num = ARRAY_SIZE(common_reg_addr_list);
12555 separator_num = MAX_SEPARATE_NUM - (reg_num & REG_NUM_REMAIN_MASK);
12556 for (i = 0; i < reg_num; i++)
12557 *reg++ = hclge_read_dev(&hdev->hw, common_reg_addr_list[i]);
12558 for (i = 0; i < separator_num; i++)
12559 *reg++ = SEPARATOR_VALUE;
12560 data_num_sum += reg_num + separator_num;
12562 reg_num = ARRAY_SIZE(ring_reg_addr_list);
12563 separator_num = MAX_SEPARATE_NUM - (reg_num & REG_NUM_REMAIN_MASK);
12564 for (j = 0; j < kinfo->num_tqps; j++) {
12565 for (i = 0; i < reg_num; i++)
12566 *reg++ = hclge_read_dev(&hdev->hw,
12567 ring_reg_addr_list[i] +
12568 HCLGE_RING_REG_OFFSET * j);
12569 for (i = 0; i < separator_num; i++)
12570 *reg++ = SEPARATOR_VALUE;
12572 data_num_sum += (reg_num + separator_num) * kinfo->num_tqps;
12574 reg_num = ARRAY_SIZE(tqp_intr_reg_addr_list);
12575 separator_num = MAX_SEPARATE_NUM - (reg_num & REG_NUM_REMAIN_MASK);
12576 for (j = 0; j < hdev->num_msi_used - 1; j++) {
12577 for (i = 0; i < reg_num; i++)
12578 *reg++ = hclge_read_dev(&hdev->hw,
12579 tqp_intr_reg_addr_list[i] +
12580 HCLGE_RING_INT_REG_OFFSET * j);
12581 for (i = 0; i < separator_num; i++)
12582 *reg++ = SEPARATOR_VALUE;
12584 data_num_sum += (reg_num + separator_num) * (hdev->num_msi_used - 1);
12586 return data_num_sum;
12589 static int hclge_get_regs_len(struct hnae3_handle *handle)
12591 int cmdq_lines, common_lines, ring_lines, tqp_intr_lines;
12592 struct hnae3_knic_private_info *kinfo = &handle->kinfo;
12593 struct hclge_vport *vport = hclge_get_vport(handle);
12594 struct hclge_dev *hdev = vport->back;
12595 int regs_num_32_bit, regs_num_64_bit, dfx_regs_len;
12596 int regs_lines_32_bit, regs_lines_64_bit;
12599 ret = hclge_get_regs_num(hdev, ®s_num_32_bit, ®s_num_64_bit);
12601 dev_err(&hdev->pdev->dev,
12602 "Get register number failed, ret = %d.\n", ret);
12606 ret = hclge_get_dfx_reg_len(hdev, &dfx_regs_len);
12608 dev_err(&hdev->pdev->dev,
12609 "Get dfx reg len failed, ret = %d.\n", ret);
12613 cmdq_lines = sizeof(cmdq_reg_addr_list) / REG_LEN_PER_LINE +
12614 REG_SEPARATOR_LINE;
12615 common_lines = sizeof(common_reg_addr_list) / REG_LEN_PER_LINE +
12616 REG_SEPARATOR_LINE;
12617 ring_lines = sizeof(ring_reg_addr_list) / REG_LEN_PER_LINE +
12618 REG_SEPARATOR_LINE;
12619 tqp_intr_lines = sizeof(tqp_intr_reg_addr_list) / REG_LEN_PER_LINE +
12620 REG_SEPARATOR_LINE;
12621 regs_lines_32_bit = regs_num_32_bit * sizeof(u32) / REG_LEN_PER_LINE +
12622 REG_SEPARATOR_LINE;
12623 regs_lines_64_bit = regs_num_64_bit * sizeof(u64) / REG_LEN_PER_LINE +
12624 REG_SEPARATOR_LINE;
12626 return (cmdq_lines + common_lines + ring_lines * kinfo->num_tqps +
12627 tqp_intr_lines * (hdev->num_msi_used - 1) + regs_lines_32_bit +
12628 regs_lines_64_bit) * REG_LEN_PER_LINE + dfx_regs_len;
12631 static void hclge_get_regs(struct hnae3_handle *handle, u32 *version,
12634 struct hnae3_knic_private_info *kinfo = &handle->kinfo;
12635 struct hclge_vport *vport = hclge_get_vport(handle);
12636 struct hclge_dev *hdev = vport->back;
12637 u32 regs_num_32_bit, regs_num_64_bit;
12638 int i, reg_num, separator_num, ret;
12641 *version = hdev->fw_version;
12643 ret = hclge_get_regs_num(hdev, ®s_num_32_bit, ®s_num_64_bit);
12645 dev_err(&hdev->pdev->dev,
12646 "Get register number failed, ret = %d.\n", ret);
12650 reg += hclge_fetch_pf_reg(hdev, reg, kinfo);
12652 ret = hclge_get_32_bit_regs(hdev, regs_num_32_bit, reg);
12654 dev_err(&hdev->pdev->dev,
12655 "Get 32 bit register failed, ret = %d.\n", ret);
12658 reg_num = regs_num_32_bit;
12660 separator_num = MAX_SEPARATE_NUM - (reg_num & REG_NUM_REMAIN_MASK);
12661 for (i = 0; i < separator_num; i++)
12662 *reg++ = SEPARATOR_VALUE;
12664 ret = hclge_get_64_bit_regs(hdev, regs_num_64_bit, reg);
12666 dev_err(&hdev->pdev->dev,
12667 "Get 64 bit register failed, ret = %d.\n", ret);
12670 reg_num = regs_num_64_bit * 2;
12672 separator_num = MAX_SEPARATE_NUM - (reg_num & REG_NUM_REMAIN_MASK);
12673 for (i = 0; i < separator_num; i++)
12674 *reg++ = SEPARATOR_VALUE;
12676 ret = hclge_get_dfx_reg(hdev, reg);
12678 dev_err(&hdev->pdev->dev,
12679 "Get dfx register failed, ret = %d.\n", ret);
12682 static int hclge_set_led_status(struct hclge_dev *hdev, u8 locate_led_status)
12684 struct hclge_set_led_state_cmd *req;
12685 struct hclge_desc desc;
12688 hclge_cmd_setup_basic_desc(&desc, HCLGE_OPC_LED_STATUS_CFG, false);
12690 req = (struct hclge_set_led_state_cmd *)desc.data;
12691 hnae3_set_field(req->locate_led_config, HCLGE_LED_LOCATE_STATE_M,
12692 HCLGE_LED_LOCATE_STATE_S, locate_led_status);
12694 ret = hclge_cmd_send(&hdev->hw, &desc, 1);
12696 dev_err(&hdev->pdev->dev,
12697 "Send set led state cmd error, ret =%d\n", ret);
12702 enum hclge_led_status {
12705 HCLGE_LED_NO_CHANGE = 0xFF,
12708 static int hclge_set_led_id(struct hnae3_handle *handle,
12709 enum ethtool_phys_id_state status)
12711 struct hclge_vport *vport = hclge_get_vport(handle);
12712 struct hclge_dev *hdev = vport->back;
12715 case ETHTOOL_ID_ACTIVE:
12716 return hclge_set_led_status(hdev, HCLGE_LED_ON);
12717 case ETHTOOL_ID_INACTIVE:
12718 return hclge_set_led_status(hdev, HCLGE_LED_OFF);
12724 static void hclge_get_link_mode(struct hnae3_handle *handle,
12725 unsigned long *supported,
12726 unsigned long *advertising)
12728 unsigned int size = BITS_TO_LONGS(__ETHTOOL_LINK_MODE_MASK_NBITS);
12729 struct hclge_vport *vport = hclge_get_vport(handle);
12730 struct hclge_dev *hdev = vport->back;
12731 unsigned int idx = 0;
12733 for (; idx < size; idx++) {
12734 supported[idx] = hdev->hw.mac.supported[idx];
12735 advertising[idx] = hdev->hw.mac.advertising[idx];
12739 static int hclge_gro_en(struct hnae3_handle *handle, bool enable)
12741 struct hclge_vport *vport = hclge_get_vport(handle);
12742 struct hclge_dev *hdev = vport->back;
12743 bool gro_en_old = hdev->gro_en;
12746 hdev->gro_en = enable;
12747 ret = hclge_config_gro(hdev);
12749 hdev->gro_en = gro_en_old;
12754 static void hclge_sync_promisc_mode(struct hclge_dev *hdev)
12756 struct hclge_vport *vport = &hdev->vport[0];
12757 struct hnae3_handle *handle = &vport->nic;
12762 if (vport->last_promisc_flags != vport->overflow_promisc_flags) {
12763 set_bit(HCLGE_VPORT_STATE_PROMISC_CHANGE, &vport->state);
12764 vport->last_promisc_flags = vport->overflow_promisc_flags;
12767 if (test_bit(HCLGE_VPORT_STATE_PROMISC_CHANGE, &vport->state)) {
12768 tmp_flags = handle->netdev_flags | vport->last_promisc_flags;
12769 ret = hclge_set_promisc_mode(handle, tmp_flags & HNAE3_UPE,
12770 tmp_flags & HNAE3_MPE);
12772 clear_bit(HCLGE_VPORT_STATE_PROMISC_CHANGE,
12774 set_bit(HCLGE_VPORT_STATE_VLAN_FLTR_CHANGE,
12779 for (i = 1; i < hdev->num_alloc_vport; i++) {
12780 bool uc_en = false;
12781 bool mc_en = false;
12784 vport = &hdev->vport[i];
12786 if (!test_and_clear_bit(HCLGE_VPORT_STATE_PROMISC_CHANGE,
12790 if (vport->vf_info.trusted) {
12791 uc_en = vport->vf_info.request_uc_en > 0 ||
12792 vport->overflow_promisc_flags &
12793 HNAE3_OVERFLOW_UPE;
12794 mc_en = vport->vf_info.request_mc_en > 0 ||
12795 vport->overflow_promisc_flags &
12796 HNAE3_OVERFLOW_MPE;
12798 bc_en = vport->vf_info.request_bc_en > 0;
12800 ret = hclge_cmd_set_promisc_mode(hdev, vport->vport_id, uc_en,
12803 set_bit(HCLGE_VPORT_STATE_PROMISC_CHANGE,
12807 hclge_set_vport_vlan_fltr_change(vport);
12811 static bool hclge_module_existed(struct hclge_dev *hdev)
12813 struct hclge_desc desc;
12817 hclge_cmd_setup_basic_desc(&desc, HCLGE_OPC_GET_SFP_EXIST, true);
12818 ret = hclge_cmd_send(&hdev->hw, &desc, 1);
12820 dev_err(&hdev->pdev->dev,
12821 "failed to get SFP exist state, ret = %d\n", ret);
12825 existed = le32_to_cpu(desc.data[0]);
12827 return existed != 0;
12830 /* need 6 bds(total 140 bytes) in one reading
12831 * return the number of bytes actually read, 0 means read failed.
12833 static u16 hclge_get_sfp_eeprom_info(struct hclge_dev *hdev, u32 offset,
12836 struct hclge_desc desc[HCLGE_SFP_INFO_CMD_NUM];
12837 struct hclge_sfp_info_bd0_cmd *sfp_info_bd0;
12843 /* setup all 6 bds to read module eeprom info. */
12844 for (i = 0; i < HCLGE_SFP_INFO_CMD_NUM; i++) {
12845 hclge_cmd_setup_basic_desc(&desc[i], HCLGE_OPC_GET_SFP_EEPROM,
12848 /* bd0~bd4 need next flag */
12849 if (i < HCLGE_SFP_INFO_CMD_NUM - 1)
12850 desc[i].flag |= cpu_to_le16(HCLGE_COMM_CMD_FLAG_NEXT);
12853 /* setup bd0, this bd contains offset and read length. */
12854 sfp_info_bd0 = (struct hclge_sfp_info_bd0_cmd *)desc[0].data;
12855 sfp_info_bd0->offset = cpu_to_le16((u16)offset);
12856 read_len = min_t(u16, len, HCLGE_SFP_INFO_MAX_LEN);
12857 sfp_info_bd0->read_len = cpu_to_le16(read_len);
12859 ret = hclge_cmd_send(&hdev->hw, desc, i);
12861 dev_err(&hdev->pdev->dev,
12862 "failed to get SFP eeprom info, ret = %d\n", ret);
12866 /* copy sfp info from bd0 to out buffer. */
12867 copy_len = min_t(u16, len, HCLGE_SFP_INFO_BD0_LEN);
12868 memcpy(data, sfp_info_bd0->data, copy_len);
12869 read_len = copy_len;
12871 /* copy sfp info from bd1~bd5 to out buffer if needed. */
12872 for (i = 1; i < HCLGE_SFP_INFO_CMD_NUM; i++) {
12873 if (read_len >= len)
12876 copy_len = min_t(u16, len - read_len, HCLGE_SFP_INFO_BDX_LEN);
12877 memcpy(data + read_len, desc[i].data, copy_len);
12878 read_len += copy_len;
12884 static int hclge_get_module_eeprom(struct hnae3_handle *handle, u32 offset,
12887 struct hclge_vport *vport = hclge_get_vport(handle);
12888 struct hclge_dev *hdev = vport->back;
12892 if (hdev->hw.mac.media_type != HNAE3_MEDIA_TYPE_FIBER)
12893 return -EOPNOTSUPP;
12895 if (!hclge_module_existed(hdev))
12898 while (read_len < len) {
12899 data_len = hclge_get_sfp_eeprom_info(hdev,
12906 read_len += data_len;
12912 static int hclge_get_link_diagnosis_info(struct hnae3_handle *handle,
12915 struct hclge_vport *vport = hclge_get_vport(handle);
12916 struct hclge_dev *hdev = vport->back;
12917 struct hclge_desc desc;
12920 if (hdev->ae_dev->dev_version <= HNAE3_DEVICE_VERSION_V2)
12921 return -EOPNOTSUPP;
12923 hclge_cmd_setup_basic_desc(&desc, HCLGE_OPC_QUERY_LINK_DIAGNOSIS, true);
12924 ret = hclge_cmd_send(&hdev->hw, &desc, 1);
12926 dev_err(&hdev->pdev->dev,
12927 "failed to query link diagnosis info, ret = %d\n", ret);
12931 *status_code = le32_to_cpu(desc.data[0]);
12935 /* After disable sriov, VF still has some config and info need clean,
12936 * which configed by PF.
12938 static void hclge_clear_vport_vf_info(struct hclge_vport *vport, int vfid)
12940 struct hclge_dev *hdev = vport->back;
12941 struct hclge_vlan_info vlan_info;
12944 /* after disable sriov, clean VF rate configured by PF */
12945 ret = hclge_tm_qs_shaper_cfg(vport, 0);
12947 dev_err(&hdev->pdev->dev,
12948 "failed to clean vf%d rate config, ret = %d\n",
12951 vlan_info.vlan_tag = 0;
12953 vlan_info.vlan_proto = ETH_P_8021Q;
12954 ret = hclge_update_port_base_vlan_cfg(vport,
12955 HNAE3_PORT_BASE_VLAN_DISABLE,
12958 dev_err(&hdev->pdev->dev,
12959 "failed to clean vf%d port base vlan, ret = %d\n",
12962 ret = hclge_set_vf_spoofchk_hw(hdev, vport->vport_id, false);
12964 dev_err(&hdev->pdev->dev,
12965 "failed to clean vf%d spoof config, ret = %d\n",
12968 memset(&vport->vf_info, 0, sizeof(vport->vf_info));
12971 static void hclge_clean_vport_config(struct hnae3_ae_dev *ae_dev, int num_vfs)
12973 struct hclge_dev *hdev = ae_dev->priv;
12974 struct hclge_vport *vport;
12977 for (i = 0; i < num_vfs; i++) {
12978 vport = &hdev->vport[i + HCLGE_VF_VPORT_START_NUM];
12980 hclge_clear_vport_vf_info(vport, i);
12984 static int hclge_get_dscp_prio(struct hnae3_handle *h, u8 dscp, u8 *tc_mode,
12987 struct hclge_vport *vport = hclge_get_vport(h);
12989 if (dscp >= HNAE3_MAX_DSCP)
12993 *tc_mode = vport->nic.kinfo.tc_map_mode;
12995 *priority = vport->nic.kinfo.dscp_prio[dscp] == HNAE3_PRIO_ID_INVALID ? 0 :
12996 vport->nic.kinfo.dscp_prio[dscp];
13001 static const struct hnae3_ae_ops hclge_ops = {
13002 .init_ae_dev = hclge_init_ae_dev,
13003 .uninit_ae_dev = hclge_uninit_ae_dev,
13004 .reset_prepare = hclge_reset_prepare_general,
13005 .reset_done = hclge_reset_done,
13006 .init_client_instance = hclge_init_client_instance,
13007 .uninit_client_instance = hclge_uninit_client_instance,
13008 .map_ring_to_vector = hclge_map_ring_to_vector,
13009 .unmap_ring_from_vector = hclge_unmap_ring_frm_vector,
13010 .get_vector = hclge_get_vector,
13011 .put_vector = hclge_put_vector,
13012 .set_promisc_mode = hclge_set_promisc_mode,
13013 .request_update_promisc_mode = hclge_request_update_promisc_mode,
13014 .set_loopback = hclge_set_loopback,
13015 .start = hclge_ae_start,
13016 .stop = hclge_ae_stop,
13017 .client_start = hclge_client_start,
13018 .client_stop = hclge_client_stop,
13019 .get_status = hclge_get_status,
13020 .get_ksettings_an_result = hclge_get_ksettings_an_result,
13021 .cfg_mac_speed_dup_h = hclge_cfg_mac_speed_dup_h,
13022 .get_media_type = hclge_get_media_type,
13023 .check_port_speed = hclge_check_port_speed,
13024 .get_fec_stats = hclge_get_fec_stats,
13025 .get_fec = hclge_get_fec,
13026 .set_fec = hclge_set_fec,
13027 .get_rss_key_size = hclge_comm_get_rss_key_size,
13028 .get_rss = hclge_get_rss,
13029 .set_rss = hclge_set_rss,
13030 .set_rss_tuple = hclge_set_rss_tuple,
13031 .get_rss_tuple = hclge_get_rss_tuple,
13032 .get_tc_size = hclge_get_tc_size,
13033 .get_mac_addr = hclge_get_mac_addr,
13034 .set_mac_addr = hclge_set_mac_addr,
13035 .do_ioctl = hclge_do_ioctl,
13036 .add_uc_addr = hclge_add_uc_addr,
13037 .rm_uc_addr = hclge_rm_uc_addr,
13038 .add_mc_addr = hclge_add_mc_addr,
13039 .rm_mc_addr = hclge_rm_mc_addr,
13040 .set_autoneg = hclge_set_autoneg,
13041 .get_autoneg = hclge_get_autoneg,
13042 .restart_autoneg = hclge_restart_autoneg,
13043 .halt_autoneg = hclge_halt_autoneg,
13044 .get_pauseparam = hclge_get_pauseparam,
13045 .set_pauseparam = hclge_set_pauseparam,
13046 .set_mtu = hclge_set_mtu,
13047 .reset_queue = hclge_reset_tqp,
13048 .get_stats = hclge_get_stats,
13049 .get_mac_stats = hclge_get_mac_stat,
13050 .update_stats = hclge_update_stats,
13051 .get_strings = hclge_get_strings,
13052 .get_sset_count = hclge_get_sset_count,
13053 .get_fw_version = hclge_get_fw_version,
13054 .get_mdix_mode = hclge_get_mdix_mode,
13055 .enable_vlan_filter = hclge_enable_vlan_filter,
13056 .set_vlan_filter = hclge_set_vlan_filter,
13057 .set_vf_vlan_filter = hclge_set_vf_vlan_filter,
13058 .enable_hw_strip_rxvtag = hclge_en_hw_strip_rxvtag,
13059 .reset_event = hclge_reset_event,
13060 .get_reset_level = hclge_get_reset_level,
13061 .set_default_reset_request = hclge_set_def_reset_request,
13062 .get_tqps_and_rss_info = hclge_get_tqps_and_rss_info,
13063 .set_channels = hclge_set_channels,
13064 .get_channels = hclge_get_channels,
13065 .get_regs_len = hclge_get_regs_len,
13066 .get_regs = hclge_get_regs,
13067 .set_led_id = hclge_set_led_id,
13068 .get_link_mode = hclge_get_link_mode,
13069 .add_fd_entry = hclge_add_fd_entry,
13070 .del_fd_entry = hclge_del_fd_entry,
13071 .get_fd_rule_cnt = hclge_get_fd_rule_cnt,
13072 .get_fd_rule_info = hclge_get_fd_rule_info,
13073 .get_fd_all_rules = hclge_get_all_rules,
13074 .enable_fd = hclge_enable_fd,
13075 .add_arfs_entry = hclge_add_fd_entry_by_arfs,
13076 .dbg_read_cmd = hclge_dbg_read_cmd,
13077 .handle_hw_ras_error = hclge_handle_hw_ras_error,
13078 .get_hw_reset_stat = hclge_get_hw_reset_stat,
13079 .ae_dev_resetting = hclge_ae_dev_resetting,
13080 .ae_dev_reset_cnt = hclge_ae_dev_reset_cnt,
13081 .set_gro_en = hclge_gro_en,
13082 .get_global_queue_id = hclge_covert_handle_qid_global,
13083 .set_timer_task = hclge_set_timer_task,
13084 .mac_connect_phy = hclge_mac_connect_phy,
13085 .mac_disconnect_phy = hclge_mac_disconnect_phy,
13086 .get_vf_config = hclge_get_vf_config,
13087 .set_vf_link_state = hclge_set_vf_link_state,
13088 .set_vf_spoofchk = hclge_set_vf_spoofchk,
13089 .set_vf_trust = hclge_set_vf_trust,
13090 .set_vf_rate = hclge_set_vf_rate,
13091 .set_vf_mac = hclge_set_vf_mac,
13092 .get_module_eeprom = hclge_get_module_eeprom,
13093 .get_cmdq_stat = hclge_get_cmdq_stat,
13094 .add_cls_flower = hclge_add_cls_flower,
13095 .del_cls_flower = hclge_del_cls_flower,
13096 .cls_flower_active = hclge_is_cls_flower_active,
13097 .get_phy_link_ksettings = hclge_get_phy_link_ksettings,
13098 .set_phy_link_ksettings = hclge_set_phy_link_ksettings,
13099 .set_tx_hwts_info = hclge_ptp_set_tx_info,
13100 .get_rx_hwts = hclge_ptp_get_rx_hwts,
13101 .get_ts_info = hclge_ptp_get_ts_info,
13102 .get_link_diagnosis_info = hclge_get_link_diagnosis_info,
13103 .clean_vf_config = hclge_clean_vport_config,
13104 .get_dscp_prio = hclge_get_dscp_prio,
13107 static struct hnae3_ae_algo ae_algo = {
13109 .pdev_id_table = ae_algo_pci_tbl,
13112 static int __init hclge_init(void)
13114 pr_info("%s is initializing\n", HCLGE_NAME);
13116 hclge_wq = alloc_workqueue("%s", WQ_UNBOUND, 0, HCLGE_NAME);
13118 pr_err("%s: failed to create workqueue\n", HCLGE_NAME);
13122 hnae3_register_ae_algo(&ae_algo);
13127 static void __exit hclge_exit(void)
13129 hnae3_unregister_ae_algo_prepare(&ae_algo);
13130 hnae3_unregister_ae_algo(&ae_algo);
13131 destroy_workqueue(hclge_wq);
13133 module_init(hclge_init);
13134 module_exit(hclge_exit);
13136 MODULE_LICENSE("GPL");
13137 MODULE_AUTHOR("Huawei Tech. Co., Ltd.");
13138 MODULE_DESCRIPTION("HCLGE Driver");
13139 MODULE_VERSION(HCLGE_MOD_VERSION);