1 /* SPDX-License-Identifier: GPL-2.0 */
2 /* Copyright (c) 2019, Intel Corporation. */
3 
4 #ifndef _ICE_FLEX_PIPE_H_
5 #define _ICE_FLEX_PIPE_H_
6 
7 #include "ice_type.h"
8 
9 int
10 ice_acquire_change_lock(struct ice_hw *hw, enum ice_aq_res_access_type access);
11 void ice_release_change_lock(struct ice_hw *hw);
12 int
13 ice_find_prot_off(struct ice_hw *hw, enum ice_block blk, u8 prof, u16 fv_idx,
14 		  u8 *prot, u16 *off);
15 void
16 ice_get_sw_fv_bitmap(struct ice_hw *hw, enum ice_prof_type type,
17 		     unsigned long *bm);
18 void
19 ice_init_prof_result_bm(struct ice_hw *hw);
20 int
21 ice_get_sw_fv_list(struct ice_hw *hw, struct ice_prot_lkup_ext *lkups,
22 		   unsigned long *bm, struct list_head *fv_list);
23 int
24 ice_pkg_buf_unreserve_section(struct ice_buf_build *bld, u16 count);
25 u16 ice_pkg_buf_get_free_space(struct ice_buf_build *bld);
26 int
27 ice_aq_upload_section(struct ice_hw *hw, struct ice_buf_hdr *pkg_buf,
28 		      u16 buf_size, struct ice_sq_cd *cd);
29 bool
30 ice_get_open_tunnel_port(struct ice_hw *hw, u16 *port,
31 			 enum ice_tunnel_type type);
32 int ice_udp_tunnel_set_port(struct net_device *netdev, unsigned int table,
33 			    unsigned int idx, struct udp_tunnel_info *ti);
34 int ice_udp_tunnel_unset_port(struct net_device *netdev, unsigned int table,
35 			      unsigned int idx, struct udp_tunnel_info *ti);
36 int ice_set_dvm_boost_entries(struct ice_hw *hw);
37 
38 /* Rx parser PTYPE functions */
39 bool ice_hw_ptype_ena(struct ice_hw *hw, u16 ptype);
40 
41 /* XLT2/VSI group functions */
42 int
43 ice_add_prof(struct ice_hw *hw, enum ice_block blk, u64 id, u8 ptypes[],
44 	     const struct ice_ptype_attributes *attr, u16 attr_cnt,
45 	     struct ice_fv_word *es, u16 *masks);
46 int
47 ice_add_prof_id_flow(struct ice_hw *hw, enum ice_block blk, u16 vsi, u64 hdl);
48 int
49 ice_rem_prof_id_flow(struct ice_hw *hw, enum ice_block blk, u16 vsi, u64 hdl);
50 enum ice_ddp_state ice_init_pkg(struct ice_hw *hw, u8 *buff, u32 len);
51 enum ice_ddp_state
52 ice_copy_and_init_pkg(struct ice_hw *hw, const u8 *buf, u32 len);
53 bool ice_is_init_pkg_successful(enum ice_ddp_state state);
54 int 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_clear_hw_tbls(struct ice_hw *hw);
58 void ice_free_hw_tbls(struct ice_hw *hw);
59 int ice_rem_prof(struct ice_hw *hw, enum ice_block blk, u64 id);
60 struct ice_buf_build *
61 ice_pkg_buf_alloc_single_section(struct ice_hw *hw, u32 type, u16 size,
62 				 void **section);
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 #endif /* _ICE_FLEX_PIPE_H_ */
67