e3fb0434df40a8d08f7ede8b9ccdfcda93106def
[dpdk.git] / drivers / net / ice / base / ice_switch.h
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2001-2019
3  */
4
5 #ifndef _ICE_SWITCH_H_
6 #define _ICE_SWITCH_H_
7
8 #include "ice_common.h"
9 #include "ice_protocol_type.h"
10
11 #define ICE_SW_CFG_MAX_BUF_LEN 2048
12 #define ICE_MAX_SW 256
13 #define ICE_DFLT_VSI_INVAL 0xff
14
15
16 /* Worst case buffer length for ice_aqc_opc_get_res_alloc */
17 #define ICE_MAX_RES_TYPES 0x80
18 #define ICE_AQ_GET_RES_ALLOC_BUF_LEN \
19         (ICE_MAX_RES_TYPES * sizeof(struct ice_aqc_get_res_resp_elem))
20
21 #define ICE_VSI_INVAL_ID 0xFFFF
22 #define ICE_INVAL_Q_HANDLE 0xFFFF
23
24 /* VSI context structure for add/get/update/free operations */
25 struct ice_vsi_ctx {
26         u16 vsi_num;
27         u16 vsis_allocd;
28         u16 vsis_unallocated;
29         u16 flags;
30         struct ice_aqc_vsi_props info;
31         struct ice_sched_vsi_info sched;
32         u8 alloc_from_pool;
33         u16 num_lan_q_entries[ICE_MAX_TRAFFIC_CLASS];
34         struct ice_q_ctx *lan_q_ctx[ICE_MAX_TRAFFIC_CLASS];
35         struct ice_lock rss_locks;      /* protect rss config in VSI ctx */
36         struct LIST_HEAD_TYPE rss_list_head;
37 };
38
39 /* This is to be used by add/update mirror rule Admin Queue command */
40 struct ice_mir_rule_buf {
41         u16 vsi_idx; /* VSI index */
42
43         /* For each VSI, user can specify whether corresponding VSI
44          * should be added/removed to/from mirror rule
45          *
46          * add mirror rule: this should always be TRUE.
47          * update mirror rule:  add(true) or remove(false) VSI to/from
48          * mirror rule
49          */
50         u8 add;
51 };
52
53 /* Switch recipe ID enum values are specific to hardware */
54 enum ice_sw_lkup_type {
55         ICE_SW_LKUP_ETHERTYPE = 0,
56         ICE_SW_LKUP_MAC = 1,
57         ICE_SW_LKUP_MAC_VLAN = 2,
58         ICE_SW_LKUP_PROMISC = 3,
59         ICE_SW_LKUP_VLAN = 4,
60         ICE_SW_LKUP_DFLT = 5,
61         ICE_SW_LKUP_ETHERTYPE_MAC = 8,
62         ICE_SW_LKUP_PROMISC_VLAN = 9,
63         ICE_SW_LKUP_LAST
64 };
65
66 /* type of filter src ID */
67 enum ice_src_id {
68         ICE_SRC_ID_UNKNOWN = 0,
69         ICE_SRC_ID_VSI,
70         ICE_SRC_ID_QUEUE,
71         ICE_SRC_ID_LPORT,
72 };
73
74 struct ice_fltr_info {
75         /* Look up information: how to look up packet */
76         enum ice_sw_lkup_type lkup_type;
77         /* Forward action: filter action to do after lookup */
78         enum ice_sw_fwd_act_type fltr_act;
79         /* rule ID returned by firmware once filter rule is created */
80         u16 fltr_rule_id;
81         u16 flag;
82 #define ICE_FLTR_RX             BIT(0)
83 #define ICE_FLTR_TX             BIT(1)
84 #define ICE_FLTR_TX_RX          (ICE_FLTR_RX | ICE_FLTR_TX)
85
86         /* Source VSI for LOOKUP_TX or source port for LOOKUP_RX */
87         u16 src;
88         enum ice_src_id src_id;
89
90         union {
91                 struct {
92                         u8 mac_addr[ETH_ALEN];
93                 } mac;
94                 struct {
95                         u8 mac_addr[ETH_ALEN];
96                         u16 vlan_id;
97                 } mac_vlan;
98                 struct {
99                         u16 vlan_id;
100                 } vlan;
101                 /* Set lkup_type as ICE_SW_LKUP_ETHERTYPE
102                  * if just using ethertype as filter. Set lkup_type as
103                  * ICE_SW_LKUP_ETHERTYPE_MAC if MAC also needs to be
104                  * passed in as filter.
105                  */
106                 struct {
107                         u16 ethertype;
108                         u8 mac_addr[ETH_ALEN]; /* optional */
109                 } ethertype_mac;
110         } l_data; /* Make sure to zero out the memory of l_data before using
111                    * it or only set the data associated with lookup match
112                    * rest everything should be zero
113                    */
114
115         /* Depending on filter action */
116         union {
117                 /* queue ID in case of ICE_FWD_TO_Q and starting
118                  * queue ID in case of ICE_FWD_TO_QGRP.
119                  */
120                 u16 q_id:11;
121                 u16 hw_vsi_id:10;
122                 u16 vsi_id:10;
123                 u16 vsi_list_id:10;
124         } fwd_id;
125
126         /* Sw VSI handle */
127         u16 vsi_handle;
128
129         /* Set to num_queues if action is ICE_FWD_TO_QGRP. This field
130          * determines the range of queues the packet needs to be forwarded to.
131          * Note that qgrp_size must be set to a power of 2.
132          */
133         u8 qgrp_size;
134
135         /* Rule creations populate these indicators basing on the switch type */
136         u8 lb_en;       /* Indicate if packet can be looped back */
137         u8 lan_en;      /* Indicate if packet can be forwarded to the uplink */
138 };
139
140 struct ice_adv_lkup_elem {
141         enum ice_protocol_type type;
142         union ice_prot_hdr h_u; /* Header values */
143         union ice_prot_hdr m_u; /* Mask of header values to match */
144 };
145
146 struct ice_sw_act_ctrl {
147         /* Source VSI for LOOKUP_TX or source port for LOOKUP_RX */
148         u16 src;
149         u16 flag;
150 #define ICE_FLTR_RX             BIT(0)
151 #define ICE_FLTR_TX             BIT(1)
152 #define ICE_FLTR_TX_RX (ICE_FLTR_RX | ICE_FLTR_TX)
153
154         enum ice_sw_fwd_act_type fltr_act;
155         /* Depending on filter action */
156         union {
157                 /* This is a queue ID in case of ICE_FWD_TO_Q and starting
158                  * queue ID in case of ICE_FWD_TO_QGRP.
159                  */
160                 u16 q_id:11;
161                 u16 vsi_id:10;
162                 u16 hw_vsi_id:10;
163                 u16 vsi_list_id:10;
164         } fwd_id;
165         /* software VSI handle */
166         u16 vsi_handle;
167         u8 qgrp_size;
168 };
169
170 struct ice_rule_query_data {
171         /* Recipe ID for which the requested rule was added */
172         u16 rid;
173         /* Rule ID that was added or is supposed to be removed */
174         u16 rule_id;
175         /* vsi_handle for which Rule was added or is supposed to be removed */
176         u16 vsi_handle;
177 };
178
179 struct ice_adv_rule_info {
180         enum ice_sw_tunnel_type tun_type;
181         struct ice_sw_act_ctrl sw_act;
182         u32 priority;
183         u8 rx; /* true means LOOKUP_RX otherwise LOOKUP_TX */
184         u16 fltr_rule_id;
185 };
186
187 /* A collection of one or more four word recipe */
188 struct ice_sw_recipe {
189         /* For a chained recipe the root recipe is what should be used for
190          * programming rules
191          */
192         u8 root_rid;
193         u8 recp_created;
194
195         /* Number of extraction words */
196         u8 n_ext_words;
197         /* Protocol ID and Offset pair (extraction word) to describe the
198          * recipe
199          */
200         struct ice_fv_word ext_words[ICE_MAX_CHAIN_WORDS];
201
202         /* if this recipe is a collection of other recipe */
203         u8 big_recp;
204
205         /* if this recipe is part of another bigger recipe then chain index
206          * corresponding to this recipe
207          */
208         u8 chain_idx;
209
210         /* if this recipe is a collection of other recipe then count of other
211          * recipes and recipe IDs of those recipes
212          */
213         u8 n_grp_count;
214
215         /* Bit map specifying the IDs associated with this group of recipe */
216         ice_declare_bitmap(r_bitmap, ICE_MAX_NUM_RECIPES);
217
218         enum ice_sw_tunnel_type tun_type;
219
220         /* List of type ice_fltr_mgmt_list_entry or adv_rule */
221         u8 adv_rule;
222         struct LIST_HEAD_TYPE filt_rules;
223         struct LIST_HEAD_TYPE filt_replay_rules;
224
225         struct ice_lock filt_rule_lock; /* protect filter rule structure */
226
227         /* Profiles this recipe should be associated with */
228         struct LIST_HEAD_TYPE fv_list;
229
230 #define ICE_MAX_NUM_PROFILES 256
231         /* Profiles this recipe is associated with */
232         u8 num_profs, *prof_ids;
233
234         /* This allows user to specify the recipe priority.
235          * For now, this becomes 'fwd_priority' when recipe
236          * is created, usually recipes can have 'fwd' and 'join'
237          * priority.
238          */
239         u8 priority;
240
241         struct LIST_HEAD_TYPE rg_list;
242
243         /* AQ buffer associated with this recipe */
244         struct ice_aqc_recipe_data_elem *root_buf;
245         /* This struct saves the fv_words for a given lookup */
246         struct ice_prot_lkup_ext lkup_exts;
247 };
248
249 /* Bookkeeping structure to hold bitmap of VSIs corresponding to VSI list ID */
250 struct ice_vsi_list_map_info {
251         struct LIST_ENTRY_TYPE list_entry;
252         ice_declare_bitmap(vsi_map, ICE_MAX_VSI);
253         u16 vsi_list_id;
254         /* counter to track how many rules are reusing this VSI list */
255         u16 ref_cnt;
256 };
257
258 struct ice_fltr_list_entry {
259         struct LIST_ENTRY_TYPE list_entry;
260         enum ice_status status;
261         struct ice_fltr_info fltr_info;
262 };
263
264 /* This defines an entry in the list that maintains MAC or VLAN membership
265  * to HW list mapping, since multiple VSIs can subscribe to the same MAC or
266  * VLAN. As an optimization the VSI list should be created only when a
267  * second VSI becomes a subscriber to the same MAC address. VSI lists are always
268  * used for VLAN membership.
269  */
270 struct ice_fltr_mgmt_list_entry {
271         /* back pointer to VSI list ID to VSI list mapping */
272         struct ice_vsi_list_map_info *vsi_list_info;
273         u16 vsi_count;
274 #define ICE_INVAL_LG_ACT_INDEX 0xffff
275         u16 lg_act_idx;
276 #define ICE_INVAL_SW_MARKER_ID 0xffff
277         u16 sw_marker_id;
278         struct LIST_ENTRY_TYPE list_entry;
279         struct ice_fltr_info fltr_info;
280 #define ICE_INVAL_COUNTER_ID 0xff
281         u8 counter_index;
282 };
283
284 struct ice_adv_fltr_mgmt_list_entry {
285         struct LIST_ENTRY_TYPE list_entry;
286
287         struct ice_adv_lkup_elem *lkups;
288         struct ice_adv_rule_info rule_info;
289         u16 lkups_cnt;
290         struct ice_vsi_list_map_info *vsi_list_info;
291         u16 vsi_count;
292 };
293
294 enum ice_promisc_flags {
295         ICE_PROMISC_UCAST_RX = 0x1,
296         ICE_PROMISC_UCAST_TX = 0x2,
297         ICE_PROMISC_MCAST_RX = 0x4,
298         ICE_PROMISC_MCAST_TX = 0x8,
299         ICE_PROMISC_BCAST_RX = 0x10,
300         ICE_PROMISC_BCAST_TX = 0x20,
301         ICE_PROMISC_VLAN_RX = 0x40,
302         ICE_PROMISC_VLAN_TX = 0x80,
303 };
304
305 /* VSI related commands */
306 enum ice_status
307 ice_aq_add_vsi(struct ice_hw *hw, struct ice_vsi_ctx *vsi_ctx,
308                struct ice_sq_cd *cd);
309 enum ice_status
310 ice_aq_free_vsi(struct ice_hw *hw, struct ice_vsi_ctx *vsi_ctx,
311                 bool keep_vsi_alloc, struct ice_sq_cd *cd);
312 enum ice_status
313 ice_aq_update_vsi(struct ice_hw *hw, struct ice_vsi_ctx *vsi_ctx,
314                   struct ice_sq_cd *cd);
315 enum ice_status
316 ice_add_vsi(struct ice_hw *hw, u16 vsi_handle, struct ice_vsi_ctx *vsi_ctx,
317             struct ice_sq_cd *cd);
318 enum ice_status
319 ice_free_vsi(struct ice_hw *hw, u16 vsi_handle, struct ice_vsi_ctx *vsi_ctx,
320              bool keep_vsi_alloc, struct ice_sq_cd *cd);
321 enum ice_status
322 ice_update_vsi(struct ice_hw *hw, u16 vsi_handle, struct ice_vsi_ctx *vsi_ctx,
323                struct ice_sq_cd *cd);
324 struct ice_vsi_ctx *ice_get_vsi_ctx(struct ice_hw *hw, u16 vsi_handle);
325 void ice_clear_all_vsi_ctx(struct ice_hw *hw);
326 enum ice_status
327 ice_aq_get_vsi_params(struct ice_hw *hw, struct ice_vsi_ctx *vsi_ctx,
328                       struct ice_sq_cd *cd);
329 enum ice_status
330 ice_aq_add_update_mir_rule(struct ice_hw *hw, u16 rule_type, u16 dest_vsi,
331                            u16 count, struct ice_mir_rule_buf *mr_buf,
332                            struct ice_sq_cd *cd, u16 *rule_id);
333 enum ice_status
334 ice_aq_delete_mir_rule(struct ice_hw *hw, u16 rule_id, bool keep_allocd,
335                        struct ice_sq_cd *cd);
336 enum ice_status
337 ice_aq_get_storm_ctrl(struct ice_hw *hw, u32 *bcast_thresh, u32 *mcast_thresh,
338                       u32 *ctl_bitmask);
339 enum ice_status
340 ice_aq_set_storm_ctrl(struct ice_hw *hw, u32 bcast_thresh, u32 mcast_thresh,
341                       u32 ctl_bitmask);
342 /* Switch config */
343 enum ice_status ice_get_initial_sw_cfg(struct ice_hw *hw);
344
345 enum ice_status
346 ice_alloc_vlan_res_counter(struct ice_hw *hw, u16 *counter_id);
347 enum ice_status
348 ice_free_vlan_res_counter(struct ice_hw *hw, u16 counter_id);
349 enum ice_status
350 ice_alloc_res_cntr(struct ice_hw *hw, u8 type, u8 alloc_shared, u16 num_items,
351                    u16 *counter_id);
352 enum ice_status
353 ice_free_res_cntr(struct ice_hw *hw, u8 type, u8 alloc_shared, u16 num_items,
354                   u16 counter_id);
355
356 /* Switch/bridge related commands */
357 enum ice_status ice_update_sw_rule_bridge_mode(struct ice_hw *hw);
358 enum ice_status
359 ice_alloc_sw(struct ice_hw *hw, bool ena_stats, bool shared_res, u16 *sw_id,
360              u16 *counter_id);
361 enum ice_status
362 ice_free_sw(struct ice_hw *hw, u16 sw_id, u16 counter_id);
363 enum ice_status
364 ice_aq_get_res_alloc(struct ice_hw *hw, u16 *num_entries, void *buf,
365                      u16 buf_size, struct ice_sq_cd *cd);
366 enum ice_status
367 ice_aq_get_res_descs(struct ice_hw *hw, u16 num_entries,
368                      struct ice_aqc_get_allocd_res_desc_resp *buf,
369                      u16 buf_size, u16 res_type, bool res_shared, u16 *desc_id,
370                      struct ice_sq_cd *cd);
371 enum ice_status
372 ice_add_vlan(struct ice_hw *hw, struct LIST_HEAD_TYPE *m_list);
373 void ice_rem_all_sw_rules_info(struct ice_hw *hw);
374 enum ice_status ice_add_mac(struct ice_hw *hw, struct LIST_HEAD_TYPE *m_lst);
375 enum ice_status ice_remove_mac(struct ice_hw *hw, struct LIST_HEAD_TYPE *m_lst);
376 enum ice_status
377 ice_add_eth_mac(struct ice_hw *hw, struct LIST_HEAD_TYPE *em_list);
378 enum ice_status
379 ice_remove_eth_mac(struct ice_hw *hw, struct LIST_HEAD_TYPE *em_list);
380 enum ice_status
381 ice_remove_vlan(struct ice_hw *hw, struct LIST_HEAD_TYPE *v_list);
382 #ifndef NO_MACVLAN_SUPPORT
383 enum ice_status
384 ice_add_mac_vlan(struct ice_hw *hw, struct LIST_HEAD_TYPE *m_list);
385 enum ice_status
386 ice_remove_mac_vlan(struct ice_hw *hw, struct LIST_HEAD_TYPE *v_list);
387 #endif /* !NO_MACVLAN_SUPPORT */
388
389 enum ice_status
390 ice_add_mac_with_sw_marker(struct ice_hw *hw, struct ice_fltr_info *f_info,
391                            u16 sw_marker);
392 enum ice_status
393 ice_add_mac_with_counter(struct ice_hw *hw, struct ice_fltr_info *f_info);
394 void ice_remove_vsi_fltr(struct ice_hw *hw, u16 vsi_handle);
395
396
397 /* Promisc/defport setup for VSIs */
398 enum ice_status
399 ice_cfg_dflt_vsi(struct ice_port_info *pi, u16 vsi_handle, bool set,
400                  u8 direction);
401 enum ice_status
402 ice_set_vsi_promisc(struct ice_hw *hw, u16 vsi_handle, u8 promisc_mask,
403                     u16 vid);
404 enum ice_status
405 ice_clear_vsi_promisc(struct ice_hw *hw, u16 vsi_handle, u8 promisc_mask,
406                       u16 vid);
407 enum ice_status
408 ice_set_vlan_vsi_promisc(struct ice_hw *hw, u16 vsi_handle, u8 promisc_mask,
409                          bool rm_vlan_promisc);
410
411 /* Get VSIs Promisc/defport settings */
412 enum ice_status
413 ice_get_vsi_promisc(struct ice_hw *hw, u16 vsi_handle, u8 *promisc_mask,
414                     u16 *vid);
415 enum ice_status
416 ice_get_vsi_vlan_promisc(struct ice_hw *hw, u16 vsi_handle, u8 *promisc_mask,
417                          u16 *vid);
418
419 enum ice_status
420 ice_aq_add_recipe(struct ice_hw *hw,
421                   struct ice_aqc_recipe_data_elem *s_recipe_list,
422                   u16 num_recipes, struct ice_sq_cd *cd);
423
424 enum ice_status
425 ice_aq_get_recipe(struct ice_hw *hw,
426                   struct ice_aqc_recipe_data_elem *s_recipe_list,
427                   u16 *num_recipes, u16 recipe_root, struct ice_sq_cd *cd);
428 enum ice_status
429 ice_aq_map_recipe_to_profile(struct ice_hw *hw, u32 profile_id, u8 *r_bitmap,
430                              struct ice_sq_cd *cd);
431
432 enum ice_status
433 ice_aq_get_recipe_to_profile(struct ice_hw *hw, u32 profile_id, u8 *r_bitmap,
434                              struct ice_sq_cd *cd);
435
436 enum ice_status ice_alloc_recipe(struct ice_hw *hw, u16 *recipe_id);
437 enum ice_status
438 ice_add_adv_rule(struct ice_hw *hw, struct ice_adv_lkup_elem *lkups,
439                  u16 lkups_cnt, struct ice_adv_rule_info *rinfo,
440                  struct ice_rule_query_data *added_entry);
441 enum ice_status
442 ice_rem_adv_rule_for_vsi(struct ice_hw *hw, u16 vsi_handle);
443 enum ice_status
444 ice_rem_adv_rule_by_id(struct ice_hw *hw,
445                        struct ice_rule_query_data *remove_entry);
446 enum ice_status
447 ice_rem_adv_rule(struct ice_hw *hw, struct ice_adv_lkup_elem *lkups,
448                  u16 lkups_cnt, struct ice_adv_rule_info *rinfo);
449
450 enum ice_status ice_replay_all_fltr(struct ice_hw *hw);
451
452 enum ice_status ice_init_def_sw_recp(struct ice_hw *hw);
453 u16 ice_get_hw_vsi_num(struct ice_hw *hw, u16 vsi_handle);
454 bool ice_is_vsi_valid(struct ice_hw *hw, u16 vsi_handle);
455
456 enum ice_status ice_replay_vsi_all_fltr(struct ice_hw *hw, u16 vsi_handle);
457 void ice_rm_all_sw_replay_rule_info(struct ice_hw *hw);
458
459 #endif /* _ICE_SWITCH_H_ */