1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2018-2019 Hisilicon Limited.
6 #include <rte_ethdev.h>
8 #include <rte_malloc.h>
9 #include <rte_memcpy.h>
10 #include <rte_spinlock.h>
12 #include "hns3_ethdev.h"
13 #include "hns3_logs.h"
16 * The hash key used for rss initialization.
18 static const uint8_t hns3_hash_key[] = {
19 0x6D, 0x5A, 0x56, 0xDA, 0x25, 0x5B, 0x0E, 0xC2,
20 0x41, 0x67, 0x25, 0x3D, 0x43, 0xA3, 0x8F, 0xB0,
21 0xD0, 0xCA, 0x2B, 0xCB, 0xAE, 0x7B, 0x30, 0xB4,
22 0x77, 0xCB, 0x2D, 0xA3, 0x80, 0x30, 0xF2, 0x0C,
23 0x6A, 0x42, 0xB7, 0x3B, 0xBE, 0xAC, 0x01, 0xFA
26 enum hns3_tuple_field {
27 /* IPV4_TCP ENABLE FIELD */
28 HNS3_RSS_FIELD_IPV4_TCP_EN_TCP_D = 0,
29 HNS3_RSS_FIELD_IPV4_TCP_EN_TCP_S,
30 HNS3_RSS_FIELD_IPV4_TCP_EN_IP_D,
31 HNS3_RSS_FIELD_IPV4_TCP_EN_IP_S,
33 /* IPV4_UDP ENABLE FIELD */
34 HNS3_RSS_FIELD_IPV4_UDP_EN_UDP_D = 8,
35 HNS3_RSS_FIELD_IPV4_UDP_EN_UDP_S,
36 HNS3_RSS_FIELD_IPV4_UDP_EN_IP_D,
37 HNS3_RSS_FIELD_IPV4_UDP_EN_IP_S,
39 /* IPV4_SCTP ENABLE FIELD */
40 HNS3_RSS_FIELD_IPV4_SCTP_EN_SCTP_D = 16,
41 HNS3_RSS_FIELD_IPV4_SCTP_EN_SCTP_S,
42 HNS3_RSS_FIELD_IPV4_SCTP_EN_IP_D,
43 HNS3_RSS_FIELD_IPV4_SCTP_EN_IP_S,
44 HNS3_RSS_FIELD_IPV4_SCTP_EN_SCTP_VER,
46 /* IPV4 ENABLE FIELD */
47 HNS3_RSS_FIELD_IPV4_EN_NONFRAG_IP_D = 24,
48 HNS3_RSS_FIELD_IPV4_EN_NONFRAG_IP_S,
49 HNS3_RSS_FIELD_IPV4_EN_FRAG_IP_D,
50 HNS3_RSS_FIELD_IPV4_EN_FRAG_IP_S,
52 /* IPV6_TCP ENABLE FIELD */
53 HNS3_RSS_FIELD_IPV6_TCP_EN_TCP_D = 32,
54 HNS3_RSS_FIELD_IPV6_TCP_EN_TCP_S,
55 HNS3_RSS_FIELD_IPV6_TCP_EN_IP_D,
56 HNS3_RSS_FIELD_IPV6_TCP_EN_IP_S,
58 /* IPV6_UDP ENABLE FIELD */
59 HNS3_RSS_FIELD_IPV6_UDP_EN_UDP_D = 40,
60 HNS3_RSS_FIELD_IPV6_UDP_EN_UDP_S,
61 HNS3_RSS_FIELD_IPV6_UDP_EN_IP_D,
62 HNS3_RSS_FIELD_IPV6_UDP_EN_IP_S,
64 /* IPV6_SCTP ENABLE FIELD */
65 HNS3_RSS_FILED_IPV6_SCTP_EN_SCTP_D = 48,
66 HNS3_RSS_FILED_IPV6_SCTP_EN_SCTP_S,
67 HNS3_RSS_FIELD_IPV6_SCTP_EN_IP_D,
68 HNS3_RSS_FIELD_IPV6_SCTP_EN_IP_S,
69 HNS3_RSS_FIELD_IPV6_SCTP_EN_SCTP_VER,
71 /* IPV6 ENABLE FIELD */
72 HNS3_RSS_FIELD_IPV6_NONFRAG_IP_D = 56,
73 HNS3_RSS_FIELD_IPV6_NONFRAG_IP_S,
74 HNS3_RSS_FIELD_IPV6_FRAG_IP_D,
75 HNS3_RSS_FIELD_IPV6_FRAG_IP_S
81 } hns3_set_tuple_table[] = {
82 { ETH_RSS_FRAG_IPV4 | ETH_RSS_L3_SRC_ONLY,
83 BIT_ULL(HNS3_RSS_FIELD_IPV4_EN_FRAG_IP_S) },
84 { ETH_RSS_FRAG_IPV4 | ETH_RSS_L3_DST_ONLY,
85 BIT_ULL(HNS3_RSS_FIELD_IPV4_EN_FRAG_IP_D) },
86 { ETH_RSS_NONFRAG_IPV4_TCP | ETH_RSS_L3_SRC_ONLY,
87 BIT_ULL(HNS3_RSS_FIELD_IPV4_TCP_EN_IP_S) },
88 { ETH_RSS_NONFRAG_IPV4_TCP | ETH_RSS_L3_DST_ONLY,
89 BIT_ULL(HNS3_RSS_FIELD_IPV4_TCP_EN_IP_D) },
90 { ETH_RSS_NONFRAG_IPV4_TCP | ETH_RSS_L4_SRC_ONLY,
91 BIT_ULL(HNS3_RSS_FIELD_IPV4_TCP_EN_TCP_S) },
92 { ETH_RSS_NONFRAG_IPV4_TCP | ETH_RSS_L4_DST_ONLY,
93 BIT_ULL(HNS3_RSS_FIELD_IPV4_TCP_EN_TCP_D) },
94 { ETH_RSS_NONFRAG_IPV4_UDP | ETH_RSS_L3_SRC_ONLY,
95 BIT_ULL(HNS3_RSS_FIELD_IPV4_UDP_EN_IP_S) },
96 { ETH_RSS_NONFRAG_IPV4_UDP | ETH_RSS_L3_DST_ONLY,
97 BIT_ULL(HNS3_RSS_FIELD_IPV4_UDP_EN_IP_D) },
98 { ETH_RSS_NONFRAG_IPV4_UDP | ETH_RSS_L4_SRC_ONLY,
99 BIT_ULL(HNS3_RSS_FIELD_IPV4_UDP_EN_UDP_S) },
100 { ETH_RSS_NONFRAG_IPV4_UDP | ETH_RSS_L4_DST_ONLY,
101 BIT_ULL(HNS3_RSS_FIELD_IPV4_UDP_EN_UDP_D) },
102 { ETH_RSS_NONFRAG_IPV4_SCTP | ETH_RSS_L3_SRC_ONLY,
103 BIT_ULL(HNS3_RSS_FIELD_IPV4_SCTP_EN_IP_S) },
104 { ETH_RSS_NONFRAG_IPV4_SCTP | ETH_RSS_L3_DST_ONLY,
105 BIT_ULL(HNS3_RSS_FIELD_IPV4_SCTP_EN_IP_D) },
106 { ETH_RSS_NONFRAG_IPV4_SCTP | ETH_RSS_L4_SRC_ONLY,
107 BIT_ULL(HNS3_RSS_FIELD_IPV4_SCTP_EN_SCTP_S) },
108 { ETH_RSS_NONFRAG_IPV4_SCTP | ETH_RSS_L4_DST_ONLY,
109 BIT_ULL(HNS3_RSS_FIELD_IPV4_SCTP_EN_SCTP_D) },
110 { ETH_RSS_NONFRAG_IPV4_OTHER | ETH_RSS_L3_SRC_ONLY,
111 BIT_ULL(HNS3_RSS_FIELD_IPV4_EN_NONFRAG_IP_S) },
112 { ETH_RSS_NONFRAG_IPV4_OTHER | ETH_RSS_L3_DST_ONLY,
113 BIT_ULL(HNS3_RSS_FIELD_IPV4_EN_NONFRAG_IP_D) },
114 { ETH_RSS_FRAG_IPV6 | ETH_RSS_L3_SRC_ONLY,
115 BIT_ULL(HNS3_RSS_FIELD_IPV6_FRAG_IP_S) },
116 { ETH_RSS_FRAG_IPV6 | ETH_RSS_L3_DST_ONLY,
117 BIT_ULL(HNS3_RSS_FIELD_IPV6_FRAG_IP_D) },
118 { ETH_RSS_NONFRAG_IPV6_TCP | ETH_RSS_L3_SRC_ONLY,
119 BIT_ULL(HNS3_RSS_FIELD_IPV6_TCP_EN_IP_S) },
120 { ETH_RSS_NONFRAG_IPV6_TCP | ETH_RSS_L3_DST_ONLY,
121 BIT_ULL(HNS3_RSS_FIELD_IPV6_TCP_EN_IP_D) },
122 { ETH_RSS_NONFRAG_IPV6_TCP | ETH_RSS_L4_SRC_ONLY,
123 BIT_ULL(HNS3_RSS_FIELD_IPV6_TCP_EN_TCP_S) },
124 { ETH_RSS_NONFRAG_IPV6_TCP | ETH_RSS_L4_DST_ONLY,
125 BIT_ULL(HNS3_RSS_FIELD_IPV6_TCP_EN_TCP_D) },
126 { ETH_RSS_NONFRAG_IPV6_UDP | ETH_RSS_L3_SRC_ONLY,
127 BIT_ULL(HNS3_RSS_FIELD_IPV6_UDP_EN_IP_S) },
128 { ETH_RSS_NONFRAG_IPV6_UDP | ETH_RSS_L3_DST_ONLY,
129 BIT_ULL(HNS3_RSS_FIELD_IPV6_UDP_EN_IP_D) },
130 { ETH_RSS_NONFRAG_IPV6_UDP | ETH_RSS_L4_SRC_ONLY,
131 BIT_ULL(HNS3_RSS_FIELD_IPV6_UDP_EN_UDP_S) },
132 { ETH_RSS_NONFRAG_IPV6_UDP | ETH_RSS_L4_DST_ONLY,
133 BIT_ULL(HNS3_RSS_FIELD_IPV6_UDP_EN_UDP_D) },
134 { ETH_RSS_NONFRAG_IPV6_SCTP | ETH_RSS_L3_SRC_ONLY,
135 BIT_ULL(HNS3_RSS_FIELD_IPV6_SCTP_EN_IP_S) },
136 { ETH_RSS_NONFRAG_IPV6_SCTP | ETH_RSS_L3_DST_ONLY,
137 BIT_ULL(HNS3_RSS_FIELD_IPV6_SCTP_EN_IP_D) },
138 { ETH_RSS_NONFRAG_IPV6_SCTP | ETH_RSS_L4_SRC_ONLY,
139 BIT_ULL(HNS3_RSS_FILED_IPV6_SCTP_EN_SCTP_S) },
140 { ETH_RSS_NONFRAG_IPV6_SCTP | ETH_RSS_L4_DST_ONLY,
141 BIT_ULL(HNS3_RSS_FILED_IPV6_SCTP_EN_SCTP_D) },
142 { ETH_RSS_NONFRAG_IPV6_OTHER | ETH_RSS_L3_SRC_ONLY,
143 BIT_ULL(HNS3_RSS_FIELD_IPV6_NONFRAG_IP_S) },
144 { ETH_RSS_NONFRAG_IPV6_OTHER | ETH_RSS_L3_DST_ONLY,
145 BIT_ULL(HNS3_RSS_FIELD_IPV6_NONFRAG_IP_D) },
148 static const struct {
151 } hns3_set_rss_types[] = {
152 { ETH_RSS_FRAG_IPV4, BIT_ULL(HNS3_RSS_FIELD_IPV4_EN_FRAG_IP_D) |
153 BIT_ULL(HNS3_RSS_FIELD_IPV4_EN_FRAG_IP_S) },
154 { ETH_RSS_NONFRAG_IPV4_TCP, BIT_ULL(HNS3_RSS_FIELD_IPV4_TCP_EN_IP_S) |
155 BIT_ULL(HNS3_RSS_FIELD_IPV4_TCP_EN_IP_D) |
156 BIT_ULL(HNS3_RSS_FIELD_IPV4_TCP_EN_TCP_S) |
157 BIT_ULL(HNS3_RSS_FIELD_IPV4_TCP_EN_TCP_D) },
158 { ETH_RSS_NONFRAG_IPV4_TCP, BIT_ULL(HNS3_RSS_FIELD_IPV4_TCP_EN_IP_S) |
159 BIT_ULL(HNS3_RSS_FIELD_IPV4_TCP_EN_IP_D) |
160 BIT_ULL(HNS3_RSS_FIELD_IPV4_TCP_EN_TCP_S) |
161 BIT_ULL(HNS3_RSS_FIELD_IPV4_TCP_EN_TCP_D) },
162 { ETH_RSS_NONFRAG_IPV4_UDP, BIT_ULL(HNS3_RSS_FIELD_IPV4_UDP_EN_IP_S) |
163 BIT_ULL(HNS3_RSS_FIELD_IPV4_UDP_EN_IP_D) |
164 BIT_ULL(HNS3_RSS_FIELD_IPV4_UDP_EN_UDP_S) |
165 BIT_ULL(HNS3_RSS_FIELD_IPV4_UDP_EN_UDP_D) },
166 { ETH_RSS_NONFRAG_IPV4_SCTP, BIT_ULL(HNS3_RSS_FIELD_IPV4_SCTP_EN_IP_S) |
167 BIT_ULL(HNS3_RSS_FIELD_IPV4_SCTP_EN_IP_D) |
168 BIT_ULL(HNS3_RSS_FIELD_IPV4_SCTP_EN_SCTP_S) |
169 BIT_ULL(HNS3_RSS_FIELD_IPV4_SCTP_EN_SCTP_D) |
170 BIT_ULL(HNS3_RSS_FIELD_IPV4_SCTP_EN_SCTP_VER) },
171 { ETH_RSS_NONFRAG_IPV4_OTHER,
172 BIT_ULL(HNS3_RSS_FIELD_IPV4_EN_NONFRAG_IP_S) |
173 BIT_ULL(HNS3_RSS_FIELD_IPV4_EN_NONFRAG_IP_D) },
174 { ETH_RSS_FRAG_IPV6, BIT_ULL(HNS3_RSS_FIELD_IPV6_FRAG_IP_S) |
175 BIT_ULL(HNS3_RSS_FIELD_IPV6_FRAG_IP_D) },
176 { ETH_RSS_NONFRAG_IPV6_TCP, BIT_ULL(HNS3_RSS_FIELD_IPV6_TCP_EN_IP_S) |
177 BIT_ULL(HNS3_RSS_FIELD_IPV6_TCP_EN_IP_D) |
178 BIT_ULL(HNS3_RSS_FIELD_IPV6_TCP_EN_TCP_S) |
179 BIT_ULL(HNS3_RSS_FIELD_IPV6_TCP_EN_TCP_D) },
180 { ETH_RSS_NONFRAG_IPV6_UDP, BIT_ULL(HNS3_RSS_FIELD_IPV6_UDP_EN_IP_S) |
181 BIT_ULL(HNS3_RSS_FIELD_IPV6_UDP_EN_IP_D) |
182 BIT_ULL(HNS3_RSS_FIELD_IPV6_UDP_EN_UDP_S) |
183 BIT_ULL(HNS3_RSS_FIELD_IPV6_UDP_EN_UDP_D) },
184 { ETH_RSS_NONFRAG_IPV6_SCTP, BIT_ULL(HNS3_RSS_FIELD_IPV6_SCTP_EN_IP_S) |
185 BIT_ULL(HNS3_RSS_FIELD_IPV6_SCTP_EN_IP_D) |
186 BIT_ULL(HNS3_RSS_FILED_IPV6_SCTP_EN_SCTP_D) |
187 BIT_ULL(HNS3_RSS_FILED_IPV6_SCTP_EN_SCTP_S) |
188 BIT_ULL(HNS3_RSS_FIELD_IPV6_SCTP_EN_SCTP_VER) },
189 { ETH_RSS_NONFRAG_IPV6_OTHER,
190 BIT_ULL(HNS3_RSS_FIELD_IPV6_NONFRAG_IP_S) |
191 BIT_ULL(HNS3_RSS_FIELD_IPV6_NONFRAG_IP_D) }
195 * rss_generic_config command function, opcode:0x0D01.
196 * Used to set algorithm, key_offset and hash key of rss.
199 hns3_set_rss_algo_key(struct hns3_hw *hw, const uint8_t *key)
201 #define HNS3_KEY_OFFSET_MAX 3
202 #define HNS3_SET_HASH_KEY_BYTE_FOUR 2
204 struct hns3_rss_generic_config_cmd *req;
205 struct hns3_cmd_desc desc;
206 uint32_t key_offset, key_size;
207 const uint8_t *key_cur;
211 req = (struct hns3_rss_generic_config_cmd *)desc.data;
214 * key_offset=0, hash key byte0~15 is set to hardware.
215 * key_offset=1, hash key byte16~31 is set to hardware.
216 * key_offset=2, hash key byte32~39 is set to hardware.
218 for (key_offset = 0; key_offset < HNS3_KEY_OFFSET_MAX; key_offset++) {
219 hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_RSS_GENERIC_CONFIG,
223 (hw->rss_info.hash_algo & HNS3_RSS_HASH_ALGO_MASK);
224 req->hash_config |= (key_offset << HNS3_RSS_HASH_KEY_OFFSET_B);
226 if (key_offset == HNS3_SET_HASH_KEY_BYTE_FOUR)
227 key_size = HNS3_RSS_KEY_SIZE - HNS3_RSS_HASH_KEY_NUM *
228 HNS3_SET_HASH_KEY_BYTE_FOUR;
230 key_size = HNS3_RSS_HASH_KEY_NUM;
232 cur_offset = key_offset * HNS3_RSS_HASH_KEY_NUM;
233 key_cur = key + cur_offset;
234 memcpy(req->hash_key, key_cur, key_size);
236 ret = hns3_cmd_send(hw, &desc, 1);
238 hns3_err(hw, "Configure RSS algo key failed %d", ret);
242 /* Update the shadow RSS key with user specified */
243 memcpy(hw->rss_info.key, key, HNS3_RSS_KEY_SIZE);
248 * Used to configure the tuple selection for RSS hash input.
251 hns3_set_rss_input_tuple(struct hns3_hw *hw)
253 struct hns3_rss_conf *rss_config = &hw->rss_info;
254 struct hns3_rss_input_tuple_cmd *req;
255 struct hns3_cmd_desc desc_tuple;
258 hns3_cmd_setup_basic_desc(&desc_tuple, HNS3_OPC_RSS_INPUT_TUPLE, false);
260 req = (struct hns3_rss_input_tuple_cmd *)desc_tuple.data;
263 rte_cpu_to_le_64(rss_config->rss_tuple_sets.rss_tuple_fields);
265 ret = hns3_cmd_send(hw, &desc_tuple, 1);
267 hns3_err(hw, "Configure RSS input tuple mode failed %d", ret);
273 * rss_indirection_table command function, opcode:0x0D07.
274 * Used to configure the indirection table of rss.
277 hns3_set_rss_indir_table(struct hns3_hw *hw, uint16_t *indir, uint16_t size)
279 struct hns3_rss_indirection_table_cmd *req;
280 struct hns3_cmd_desc desc;
287 req = (struct hns3_rss_indirection_table_cmd *)desc.data;
289 for (i = 0; i < size / HNS3_RSS_CFG_TBL_SIZE; i++) {
290 hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_RSS_INDIR_TABLE,
292 req->start_table_index =
293 rte_cpu_to_le_16(i * HNS3_RSS_CFG_TBL_SIZE);
294 req->rss_set_bitmap = rte_cpu_to_le_16(HNS3_RSS_SET_BITMAP_MSK);
295 for (j = 0; j < HNS3_RSS_CFG_TBL_SIZE; j++) {
296 q_id = indir[i * HNS3_RSS_CFG_TBL_SIZE + j];
297 req->rss_result_l[j] = q_id & 0xff;
300 j * HNS3_RSS_CFG_TBL_BW_H / HNS3_BITS_PER_BYTE;
301 qid_msb_val = (q_id >> HNS3_RSS_CFG_TBL_BW_L & 0x1)
302 << (j * HNS3_RSS_CFG_TBL_BW_H %
304 req->rss_result_h[qid_msb_off] |= qid_msb_val;
307 ret = hns3_cmd_send(hw, &desc, 1);
310 "Sets RSS indirection table failed %d size %u",
316 /* Update redirection table of hw */
317 memcpy(hw->rss_info.rss_indirection_tbl, indir,
318 sizeof(hw->rss_info.rss_indirection_tbl));
324 hns3_rss_reset_indir_table(struct hns3_hw *hw)
329 lut = rte_zmalloc("hns3_rss_lut",
330 HNS3_RSS_IND_TBL_SIZE * sizeof(uint16_t), 0);
332 hns3_err(hw, "No hns3_rss_lut memory can be allocated");
336 ret = hns3_set_rss_indir_table(hw, lut, HNS3_RSS_IND_TBL_SIZE);
338 hns3_err(hw, "RSS uninit indir table failed: %d", ret);
345 hns3_set_rss_tuple_by_rss_hf(struct hns3_hw *hw,
346 struct hns3_rss_tuple_cfg *tuple, uint64_t rss_hf)
348 struct hns3_rss_input_tuple_cmd *req;
349 struct hns3_cmd_desc desc;
350 uint32_t fields_count = 0; /* count times for setting tuple fields */
354 hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_RSS_INPUT_TUPLE, false);
356 req = (struct hns3_rss_input_tuple_cmd *)desc.data;
358 for (i = 0; i < RTE_DIM(hns3_set_tuple_table); i++) {
359 if ((rss_hf & hns3_set_tuple_table[i].rss_types) ==
360 hns3_set_tuple_table[i].rss_types) {
362 rte_cpu_to_le_64(hns3_set_tuple_table[i].rss_field);
368 * When user does not specify the following types or a combination of
369 * the following types, it enables all fields for the supported RSS
370 * types. the following types as:
371 * - ETH_RSS_L3_SRC_ONLY
372 * - ETH_RSS_L3_DST_ONLY
373 * - ETH_RSS_L4_SRC_ONLY
374 * - ETH_RSS_L4_DST_ONLY
376 if (fields_count == 0) {
377 for (i = 0; i < RTE_DIM(hns3_set_rss_types); i++) {
378 if ((rss_hf & hns3_set_rss_types[i].rss_types) ==
379 hns3_set_rss_types[i].rss_types)
380 req->tuple_field |= rte_cpu_to_le_64(
381 hns3_set_rss_types[i].rss_field);
385 ret = hns3_cmd_send(hw, &desc, 1);
387 hns3_err(hw, "Update RSS flow types tuples failed %d", ret);
391 tuple->rss_tuple_fields = rte_le_to_cpu_64(req->tuple_field);
397 * Configure RSS hash protocols and hash key.
399 * Pointer to Ethernet device.
401 * The configuration select of rss key size and tuple flow_types.
403 * 0 on success, a negative errno value otherwise is set.
406 hns3_dev_rss_hash_update(struct rte_eth_dev *dev,
407 struct rte_eth_rss_conf *rss_conf)
409 struct hns3_adapter *hns = dev->data->dev_private;
410 struct hns3_hw *hw = &hns->hw;
411 struct hns3_rss_tuple_cfg *tuple = &hw->rss_info.rss_tuple_sets;
412 struct hns3_rss_conf *rss_cfg = &hw->rss_info;
413 uint8_t key_len = rss_conf->rss_key_len;
414 uint64_t rss_hf = rss_conf->rss_hf;
415 uint8_t *key = rss_conf->rss_key;
418 if (hw->rss_dis_flag)
421 rte_spinlock_lock(&hw->lock);
422 ret = hns3_set_rss_tuple_by_rss_hf(hw, tuple, rss_hf);
426 if (rss_cfg->conf.types && rss_hf == 0) {
427 /* Disable RSS, reset indirection table by local variable */
428 ret = hns3_rss_reset_indir_table(hw);
431 } else if (rss_hf && rss_cfg->conf.types == 0) {
432 /* Enable RSS, restore indirection table by hw's config */
433 ret = hns3_set_rss_indir_table(hw, rss_cfg->rss_indirection_tbl,
434 HNS3_RSS_IND_TBL_SIZE);
439 /* Update supported flow types when set tuple success */
440 rss_cfg->conf.types = rss_hf;
443 if (key_len != HNS3_RSS_KEY_SIZE) {
444 hns3_err(hw, "The hash key len(%u) is invalid",
449 ret = hns3_set_rss_algo_key(hw, key);
453 rte_spinlock_unlock(&hw->lock);
458 rte_spinlock_unlock(&hw->lock);
463 * Get rss key and rss_hf types set of RSS hash configuration.
465 * Pointer to Ethernet device.
467 * The buffer to get rss key size and tuple types.
472 hns3_dev_rss_hash_conf_get(struct rte_eth_dev *dev,
473 struct rte_eth_rss_conf *rss_conf)
475 struct hns3_adapter *hns = dev->data->dev_private;
476 struct hns3_hw *hw = &hns->hw;
477 struct hns3_rss_conf *rss_cfg = &hw->rss_info;
479 rte_spinlock_lock(&hw->lock);
480 rss_conf->rss_hf = rss_cfg->conf.types;
482 /* Get the RSS Key required by the user */
483 if (rss_conf->rss_key && rss_conf->rss_key_len >= HNS3_RSS_KEY_SIZE) {
484 memcpy(rss_conf->rss_key, rss_cfg->key, HNS3_RSS_KEY_SIZE);
485 rss_conf->rss_key_len = HNS3_RSS_KEY_SIZE;
487 rte_spinlock_unlock(&hw->lock);
493 * Update rss redirection table of RSS.
495 * Pointer to Ethernet device.
497 * Pointer to the configuration select of mask and redirection tables.
499 * Redirection table size.
501 * 0 on success, a negative errno value otherwise is set.
504 hns3_dev_rss_reta_update(struct rte_eth_dev *dev,
505 struct rte_eth_rss_reta_entry64 *reta_conf,
508 struct hns3_adapter *hns = dev->data->dev_private;
509 struct hns3_hw *hw = &hns->hw;
510 struct hns3_rss_conf *rss_cfg = &hw->rss_info;
511 uint16_t i, indir_size = HNS3_RSS_IND_TBL_SIZE; /* Table size is 512 */
512 uint16_t indirection_tbl[HNS3_RSS_IND_TBL_SIZE];
516 if (reta_size != indir_size || reta_size > ETH_RSS_RETA_SIZE_512) {
517 hns3_err(hw, "The size of hash lookup table configured (%u)"
518 "doesn't match the number hardware can supported"
519 "(%u)", reta_size, indir_size);
522 rte_spinlock_lock(&hw->lock);
523 memcpy(indirection_tbl, rss_cfg->rss_indirection_tbl,
524 sizeof(rss_cfg->rss_indirection_tbl));
525 for (i = 0; i < reta_size; i++) {
526 idx = i / RTE_RETA_GROUP_SIZE;
527 shift = i % RTE_RETA_GROUP_SIZE;
528 if (reta_conf[idx].reta[shift] >= hw->alloc_rss_size) {
529 rte_spinlock_unlock(&hw->lock);
530 hns3_err(hw, "queue id(%u) set to redirection table "
531 "exceeds queue number(%u) allocated to a TC",
532 reta_conf[idx].reta[shift],
537 if (reta_conf[idx].mask & (1ULL << shift))
538 indirection_tbl[i] = reta_conf[idx].reta[shift];
541 ret = hns3_set_rss_indir_table(hw, indirection_tbl,
542 HNS3_RSS_IND_TBL_SIZE);
544 rte_spinlock_unlock(&hw->lock);
549 * Get rss redirection table of RSS hash configuration.
551 * Pointer to Ethernet device.
553 * Pointer to the configuration select of mask and redirection tables.
555 * Redirection table size.
557 * 0 on success, a negative errno value otherwise is set.
560 hns3_dev_rss_reta_query(struct rte_eth_dev *dev,
561 struct rte_eth_rss_reta_entry64 *reta_conf,
564 struct hns3_adapter *hns = dev->data->dev_private;
565 struct hns3_hw *hw = &hns->hw;
566 struct hns3_rss_conf *rss_cfg = &hw->rss_info;
567 uint16_t i, indir_size = HNS3_RSS_IND_TBL_SIZE; /* Table size is 512 */
570 if (reta_size != indir_size || reta_size > ETH_RSS_RETA_SIZE_512) {
571 hns3_err(hw, "The size of hash lookup table configured (%u)"
572 " doesn't match the number hardware can supported"
573 "(%u)", reta_size, indir_size);
576 rte_spinlock_lock(&hw->lock);
577 for (i = 0; i < reta_size; i++) {
578 idx = i / RTE_RETA_GROUP_SIZE;
579 shift = i % RTE_RETA_GROUP_SIZE;
580 if (reta_conf[idx].mask & (1ULL << shift))
581 reta_conf[idx].reta[shift] =
582 rss_cfg->rss_indirection_tbl[i];
584 rte_spinlock_unlock(&hw->lock);
589 * Used to configure the tc_size and tc_offset.
592 hns3_set_rss_tc_mode(struct hns3_hw *hw)
594 uint16_t rss_size = hw->alloc_rss_size;
595 struct hns3_rss_tc_mode_cmd *req;
596 uint16_t tc_offset[HNS3_MAX_TC_NUM];
597 uint8_t tc_valid[HNS3_MAX_TC_NUM];
598 uint16_t tc_size[HNS3_MAX_TC_NUM];
599 struct hns3_cmd_desc desc;
600 uint16_t roundup_size;
604 req = (struct hns3_rss_tc_mode_cmd *)desc.data;
606 roundup_size = roundup_pow_of_two(rss_size);
607 roundup_size = ilog2(roundup_size);
609 for (i = 0; i < HNS3_MAX_TC_NUM; i++) {
610 tc_valid[i] = !!(hw->hw_tc_map & BIT(i));
611 tc_size[i] = roundup_size;
612 tc_offset[i] = rss_size * i;
615 hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_RSS_TC_MODE, false);
616 for (i = 0; i < HNS3_MAX_TC_NUM; i++) {
619 hns3_set_bit(mode, HNS3_RSS_TC_VALID_B, (tc_valid[i] & 0x1));
620 hns3_set_field(mode, HNS3_RSS_TC_SIZE_M, HNS3_RSS_TC_SIZE_S,
622 if (tc_size[i] >> HNS3_RSS_TC_SIZE_MSB_OFFSET > 0)
623 hns3_set_bit(mode, HNS3_RSS_TC_SIZE_MSB_S, 1);
624 hns3_set_field(mode, HNS3_RSS_TC_OFFSET_M, HNS3_RSS_TC_OFFSET_S,
627 req->rss_tc_mode[i] = rte_cpu_to_le_16(mode);
629 ret = hns3_cmd_send(hw, &desc, 1);
631 hns3_err(hw, "Sets rss tc mode failed %d", ret);
637 hns3_rss_tuple_uninit(struct hns3_hw *hw)
639 struct hns3_rss_input_tuple_cmd *req;
640 struct hns3_cmd_desc desc;
643 hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_RSS_INPUT_TUPLE, false);
645 req = (struct hns3_rss_input_tuple_cmd *)desc.data;
647 memset(req, 0, sizeof(struct hns3_rss_tuple_cfg));
649 ret = hns3_cmd_send(hw, &desc, 1);
651 hns3_err(hw, "RSS uninit tuple failed %d", ret);
657 * Set the default rss configuration in the init of driver.
660 hns3_set_default_rss_args(struct hns3_hw *hw)
662 struct hns3_rss_conf *rss_cfg = &hw->rss_info;
663 uint16_t queue_num = hw->alloc_rss_size;
666 /* Default hash algorithm */
667 rss_cfg->conf.func = RTE_ETH_HASH_FUNCTION_TOEPLITZ;
669 /* Default RSS key */
670 memcpy(rss_cfg->key, hns3_hash_key, HNS3_RSS_KEY_SIZE);
672 /* Initialize RSS indirection table */
673 for (i = 0; i < HNS3_RSS_IND_TBL_SIZE; i++)
674 rss_cfg->rss_indirection_tbl[i] = i % queue_num;
678 * RSS initialization for hns3 pmd driver.
681 hns3_config_rss(struct hns3_adapter *hns)
683 struct hns3_hw *hw = &hns->hw;
684 struct hns3_rss_conf *rss_cfg = &hw->rss_info;
685 uint8_t *hash_key = rss_cfg->key;
688 enum rte_eth_rx_mq_mode mq_mode = hw->data->dev_conf.rxmode.mq_mode;
690 switch (hw->rss_info.conf.func) {
691 case RTE_ETH_HASH_FUNCTION_SIMPLE_XOR:
692 hw->rss_info.hash_algo = HNS3_RSS_HASH_ALGO_SIMPLE;
694 case RTE_ETH_HASH_FUNCTION_SYMMETRIC_TOEPLITZ:
695 hw->rss_info.hash_algo = HNS3_RSS_HASH_ALGO_SYMMETRIC_TOEP;
698 hw->rss_info.hash_algo = HNS3_RSS_HASH_ALGO_TOEPLITZ;
702 /* When RSS is off, redirect the packet queue 0 */
703 if (((uint32_t)mq_mode & ETH_MQ_RX_RSS_FLAG) == 0)
704 hns3_rss_uninit(hns);
706 /* Configure RSS hash algorithm and hash key offset */
707 ret = hns3_set_rss_algo_key(hw, hash_key);
711 /* Configure the tuple selection for RSS hash input */
712 ret = hns3_set_rss_input_tuple(hw);
717 * When RSS is off, it doesn't need to configure rss redirection table
720 if (((uint32_t)mq_mode & ETH_MQ_RX_RSS_FLAG)) {
721 ret = hns3_set_rss_indir_table(hw, rss_cfg->rss_indirection_tbl,
722 HNS3_RSS_IND_TBL_SIZE);
724 goto rss_tuple_uninit;
727 ret = hns3_set_rss_tc_mode(hw);
729 goto rss_indir_table_uninit;
733 rss_indir_table_uninit:
734 if (((uint32_t)mq_mode & ETH_MQ_RX_RSS_FLAG)) {
735 ret1 = hns3_rss_reset_indir_table(hw);
741 hns3_rss_tuple_uninit(hw);
744 hw->rss_info.conf.types = 0;
750 * RSS uninitialization for hns3 pmd driver.
753 hns3_rss_uninit(struct hns3_adapter *hns)
755 struct hns3_hw *hw = &hns->hw;
758 hns3_rss_tuple_uninit(hw);
759 ret = hns3_rss_reset_indir_table(hw);
764 hw->rss_info.conf.types = 0;