net/ice/base: add compatibility check for package version
[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 struct ice_generic_seg_hdr *
31 ice_find_seg_in_pkg(struct ice_hw *hw, u32 seg_type,
32                     struct ice_pkg_hdr *pkg_hdr);
33 enum ice_status ice_download_pkg(struct ice_hw *hw, struct ice_seg *ice_seg);
34
35 enum ice_status
36 ice_init_pkg_info(struct ice_hw *hw, struct ice_pkg_hdr *pkg_header);
37 enum ice_status
38 ice_get_pkg_info(struct ice_hw *hw);
39
40 void ice_init_pkg_hints(struct ice_hw *hw, struct ice_seg *ice_seg);
41
42 enum ice_status
43 ice_find_label_value(struct ice_seg *ice_seg, char const *name, u32 type,
44                      u16 *value);
45 enum ice_status
46 ice_get_sw_fv_list(struct ice_hw *hw, u16 *prot_ids, u8 ids_cnt,
47                    struct LIST_HEAD_TYPE *fv_list);
48 enum ice_status
49 ice_aq_upload_section(struct ice_hw *hw, struct ice_buf_hdr *pkg_buf,
50                       u16 buf_size, struct ice_sq_cd *cd);
51
52 enum ice_status
53 ice_pkg_buf_unreserve_section(struct ice_buf_build *bld, u16 count);
54 u16 ice_pkg_buf_get_free_space(struct ice_buf_build *bld);
55 u16 ice_pkg_buf_get_active_sections(struct ice_buf_build *bld);
56
57 /* package buffer building routines */
58
59 struct ice_buf_build *ice_pkg_buf_alloc(struct ice_hw *hw);
60 enum ice_status
61 ice_pkg_buf_reserve_section(struct ice_buf_build *bld, u16 count);
62 void *ice_pkg_buf_alloc_section(struct ice_buf_build *bld, u32 type, u16 size);
63 struct ice_buf *ice_pkg_buf(struct ice_buf_build *bld);
64 void ice_pkg_buf_free(struct ice_hw *hw, struct ice_buf_build *bld);
65
66 /* XLT1/PType group functions */
67 enum ice_status ice_ptg_update_xlt1(struct ice_hw *hw, enum ice_block blk);
68 enum ice_status
69 ice_ptg_find_ptype(struct ice_hw *hw, enum ice_block blk, u16 ptype, u8 *ptg);
70 u8 ice_ptg_alloc(struct ice_hw *hw, enum ice_block blk);
71 void ice_ptg_free(struct ice_hw *hw, enum ice_block blk, u8 ptg);
72 enum ice_status
73 ice_ptg_add_mv_ptype(struct ice_hw *hw, enum ice_block blk, u16 ptype, u8 ptg);
74
75 /* XLT2/VSI group functions */
76 enum ice_status ice_vsig_update_xlt2(struct ice_hw *hw, enum ice_block blk);
77 enum ice_status
78 ice_vsig_find_vsi(struct ice_hw *hw, enum ice_block blk, u16 vsi, u16 *vsig);
79 enum ice_status
80 ice_find_dup_props_vsig(struct ice_hw *hw, enum ice_block blk,
81                         struct LIST_HEAD_TYPE *chs, u16 *vsig);
82
83 enum ice_status
84 ice_vsig_add_mv_vsi(struct ice_hw *hw, enum ice_block blk, u16 vsi, u16 vsig);
85 enum ice_status ice_vsig_free(struct ice_hw *hw, enum ice_block blk, u16 vsig);
86 enum ice_status
87 ice_vsig_add_mv_vsi(struct ice_hw *hw, enum ice_block blk, u16 vsi, u16 vsig);
88 enum ice_status
89 ice_vsig_remove_vsi(struct ice_hw *hw, enum ice_block blk, u16 vsi, u16 vsig);
90 enum ice_status
91 ice_add_prof(struct ice_hw *hw, enum ice_block blk, u64 id, u8 ptypes[],
92              struct ice_fv_word *es);
93 struct ice_prof_map *
94 ice_search_prof_id(struct ice_hw *hw, enum ice_block blk, u64 id);
95 enum ice_status
96 ice_add_prof_id_flow(struct ice_hw *hw, enum ice_block blk, u16 vsi, u64 hdl);
97 enum ice_status
98 ice_rem_prof_id_flow(struct ice_hw *hw, enum ice_block blk, u16 vsi, u64 hdl);
99 struct ice_prof_map *
100 ice_set_prof_context(struct ice_hw *hw, enum ice_block blk, u64 id, u64 cntxt);
101 struct ice_prof_map *
102 ice_get_prof_context(struct ice_hw *hw, enum ice_block blk, u64 id, u64 *cntxt);
103 enum ice_status
104 ice_init_pkg(struct ice_hw *hw, u8 *buff, u32 len);
105 enum ice_status
106 ice_copy_and_init_pkg(struct ice_hw *hw, const u8 *buf, u32 len);
107 enum ice_status ice_init_hw_tbls(struct ice_hw *hw);
108 void ice_free_seg(struct ice_hw *hw);
109 void ice_fill_blk_tbls(struct ice_hw *hw);
110 void ice_free_hw_tbls(struct ice_hw *hw);
111 enum ice_status
112 ice_add_flow(struct ice_hw *hw, enum ice_block blk, u16 vsi[], u8 count,
113              u64 id);
114 enum ice_status
115 ice_rem_flow(struct ice_hw *hw, enum ice_block blk, u16 vsi[], u8 count,
116              u64 id);
117 enum ice_status
118 ice_rem_prof(struct ice_hw *hw, enum ice_block blk, u64 id);
119
120 enum ice_status
121 ice_set_key(u8 *key, u16 size, u8 *val, u8 *upd, u8 *dc, u8 *nm, u16 off,
122             u16 len);
123 #endif /* _ICE_FLEX_PIPE_H_ */