net/ice/base: refactor HW table init function
[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 format version */
11 #define ICE_PKG_FMT_VER_MAJ     1
12 #define ICE_PKG_FMT_VER_MNR     0
13 #define ICE_PKG_FMT_VER_UPD     0
14 #define ICE_PKG_FMT_VER_DFT     0
15
16 enum ice_status
17 ice_update_pkg(struct ice_hw *hw, struct ice_buf *bufs, u32 count);
18 enum ice_status
19 ice_acquire_change_lock(struct ice_hw *hw, enum ice_aq_res_access_type access);
20 void ice_release_change_lock(struct ice_hw *hw);
21 enum ice_status
22 ice_find_prot_off(struct ice_hw *hw, enum ice_block blk, u8 prof, u8 fv_idx,
23                   u8 *prot, u16 *off);
24 struct ice_generic_seg_hdr *
25 ice_find_seg_in_pkg(struct ice_hw *hw, u32 seg_type,
26                     struct ice_pkg_hdr *pkg_hdr);
27 enum ice_status ice_download_pkg(struct ice_hw *hw, struct ice_seg *ice_seg);
28
29 enum ice_status
30 ice_init_pkg_info(struct ice_hw *hw, struct ice_pkg_hdr *pkg_header);
31
32 void ice_init_pkg_hints(struct ice_hw *hw, struct ice_seg *ice_seg);
33
34 enum ice_status
35 ice_find_label_value(struct ice_seg *ice_seg, char const *name, u32 type,
36                      u16 *value);
37 enum ice_status
38 ice_get_sw_fv_list(struct ice_hw *hw, u16 *prot_ids, u8 ids_cnt,
39                    struct LIST_HEAD_TYPE *fv_list);
40 enum ice_status
41 ice_aq_upload_section(struct ice_hw *hw, struct ice_buf_hdr *pkg_buf,
42                       u16 buf_size, struct ice_sq_cd *cd);
43
44 enum ice_status
45 ice_pkg_buf_unreserve_section(struct ice_buf_build *bld, u16 count);
46 u16 ice_pkg_buf_get_free_space(struct ice_buf_build *bld);
47 u16 ice_pkg_buf_get_active_sections(struct ice_buf_build *bld);
48
49 /* package buffer building routines */
50
51 struct ice_buf_build *ice_pkg_buf_alloc(struct ice_hw *hw);
52 enum ice_status
53 ice_pkg_buf_reserve_section(struct ice_buf_build *bld, u16 count);
54 void *ice_pkg_buf_alloc_section(struct ice_buf_build *bld, u32 type, u16 size);
55 struct ice_buf *ice_pkg_buf(struct ice_buf_build *bld);
56 void ice_pkg_buf_free(struct ice_hw *hw, struct ice_buf_build *bld);
57
58 /* XLT1/PType group functions */
59 enum ice_status ice_ptg_update_xlt1(struct ice_hw *hw, enum ice_block blk);
60 enum ice_status
61 ice_ptg_find_ptype(struct ice_hw *hw, enum ice_block blk, u16 ptype, u8 *ptg);
62 u8 ice_ptg_alloc(struct ice_hw *hw, enum ice_block blk);
63 void ice_ptg_free(struct ice_hw *hw, enum ice_block blk, u8 ptg);
64 enum ice_status
65 ice_ptg_add_mv_ptype(struct ice_hw *hw, enum ice_block blk, u16 ptype, u8 ptg);
66
67 /* XLT2/VSI group functions */
68 enum ice_status ice_vsig_update_xlt2(struct ice_hw *hw, enum ice_block blk);
69 enum ice_status
70 ice_vsig_find_vsi(struct ice_hw *hw, enum ice_block blk, u16 vsi, u16 *vsig);
71 enum ice_status
72 ice_find_dup_props_vsig(struct ice_hw *hw, enum ice_block blk,
73                         struct LIST_HEAD_TYPE *chs, u16 *vsig);
74
75 enum ice_status
76 ice_vsig_add_mv_vsi(struct ice_hw *hw, enum ice_block blk, u16 vsi, u16 vsig);
77 enum ice_status ice_vsig_free(struct ice_hw *hw, enum ice_block blk, u16 vsig);
78 enum ice_status
79 ice_vsig_add_mv_vsi(struct ice_hw *hw, enum ice_block blk, u16 vsi, u16 vsig);
80 enum ice_status
81 ice_vsig_remove_vsi(struct ice_hw *hw, enum ice_block blk, u16 vsi, u16 vsig);
82 enum ice_status
83 ice_add_prof(struct ice_hw *hw, enum ice_block blk, u64 id, u8 ptypes[],
84              struct ice_fv_word *es);
85 struct ice_prof_map *
86 ice_search_prof_id(struct ice_hw *hw, enum ice_block blk, u64 id);
87 enum ice_status
88 ice_add_prof_id_flow(struct ice_hw *hw, enum ice_block blk, u16 vsi, u64 hdl);
89 enum ice_status
90 ice_rem_prof_id_flow(struct ice_hw *hw, enum ice_block blk, u16 vsi, u64 hdl);
91 struct ice_prof_map *
92 ice_set_prof_context(struct ice_hw *hw, enum ice_block blk, u64 id, u64 cntxt);
93 struct ice_prof_map *
94 ice_get_prof_context(struct ice_hw *hw, enum ice_block blk, u64 id, u64 *cntxt);
95 enum ice_status
96 ice_init_pkg(struct ice_hw *hw, u8 *buff, u32 len);
97 enum ice_status
98 ice_copy_and_init_pkg(struct ice_hw *hw, const u8 *buf, u32 len);
99 enum ice_status ice_init_hw_tbls(struct ice_hw *hw);
100 void ice_free_seg(struct ice_hw *hw);
101 void ice_fill_blk_tbls(struct ice_hw *hw);
102 void ice_free_hw_tbls(struct ice_hw *hw);
103 enum ice_status
104 ice_add_flow(struct ice_hw *hw, enum ice_block blk, u16 vsi[], u8 count,
105              u64 id);
106 enum ice_status
107 ice_rem_flow(struct ice_hw *hw, enum ice_block blk, u16 vsi[], u8 count,
108              u64 id);
109 enum ice_status
110 ice_rem_prof(struct ice_hw *hw, enum ice_block blk, u64 id);
111
112 enum ice_status
113 ice_set_key(u8 *key, u16 size, u8 *val, u8 *upd, u8 *dc, u8 *nm, u16 off,
114             u16 len);
115 #endif /* _ICE_FLEX_PIPE_H_ */