net/ice/base: refactor VSI node scheduler
[dpdk.git] / drivers / net / ice / base / ice_flex_pipe.h
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2001-2019
3  */
4
5 #ifndef _ICE_FLEX_PIPE_H_
6 #define _ICE_FLEX_PIPE_H_
7
8 #include "ice_type.h"
9
10 /* Package minimal version supported */
11 #define ICE_PKG_SUPP_VER_MAJ    1
12 #define ICE_PKG_SUPP_VER_MNR    2
13
14 /* Package format version */
15 #define ICE_PKG_FMT_VER_MAJ     1
16 #define ICE_PKG_FMT_VER_MNR     0
17 #define ICE_PKG_FMT_VER_UPD     0
18 #define ICE_PKG_FMT_VER_DFT     0
19
20 #define ICE_PKG_CNT 4
21
22 enum ice_status
23 ice_update_pkg(struct ice_hw *hw, struct ice_buf *bufs, u32 count);
24 enum ice_status
25 ice_acquire_change_lock(struct ice_hw *hw, enum ice_aq_res_access_type access);
26 void ice_release_change_lock(struct ice_hw *hw);
27 enum ice_status
28 ice_find_prot_off(struct ice_hw *hw, enum ice_block blk, u8 prof, u8 fv_idx,
29                   u8 *prot, u16 *off);
30 enum ice_status
31 ice_find_label_value(struct ice_seg *ice_seg, char const *name, u32 type,
32                      u16 *value);
33 enum ice_status
34 ice_get_sw_fv_list(struct ice_hw *hw, u16 *prot_ids, u8 ids_cnt,
35                    struct LIST_HEAD_TYPE *fv_list);
36
37
38 /* XLT2/VSI group functions */
39 enum ice_status
40 ice_vsig_find_vsi(struct ice_hw *hw, enum ice_block blk, u16 vsi, u16 *vsig);
41 enum ice_status
42 ice_add_prof(struct ice_hw *hw, enum ice_block blk, u64 id, u8 ptypes[],
43              struct ice_fv_word *es);
44 struct ice_prof_map *
45 ice_search_prof_id(struct ice_hw *hw, enum ice_block blk, u64 id);
46 enum ice_status
47 ice_add_prof_id_flow(struct ice_hw *hw, enum ice_block blk, u16 vsi, u64 hdl);
48 enum ice_status
49 ice_rem_prof_id_flow(struct ice_hw *hw, enum ice_block blk, u16 vsi, u64 hdl);
50 enum ice_status
51 ice_init_pkg(struct ice_hw *hw, u8 *buff, u32 len);
52 enum ice_status
53 ice_copy_and_init_pkg(struct ice_hw *hw, const u8 *buf, u32 len);
54 enum ice_status ice_init_hw_tbls(struct ice_hw *hw);
55 void ice_free_seg(struct ice_hw *hw);
56 void ice_fill_blk_tbls(struct ice_hw *hw);
57 void ice_free_hw_tbls(struct ice_hw *hw);
58 enum ice_status
59 ice_rem_prof(struct ice_hw *hw, enum ice_block blk, u64 id);
60
61 enum ice_status
62 ice_set_key(u8 *key, u16 size, u8 *val, u8 *upd, u8 *dc, u8 *nm, u16 off,
63             u16 len);
64 #endif /* _ICE_FLEX_PIPE_H_ */