123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308 |
- /* SPDX-License-Identifier: GPL-2.0-only */
- /*
- * Copyright (c) 2016-2019, The Linux Foundation. All rights reserved.
- */
- #ifndef _IPAHAL_FLTRT_H_
- #define _IPAHAL_FLTRT_H_
- /*
- * struct ipahal_fltrt_alloc_imgs_params - Params for tbls imgs allocations
- * The allocation logic will allocate DMA memory representing the header.
- * If the bodies are local (SRAM) the allocation will allocate
- * a DMA buffers that would contain the content of these local tables in raw
- * @ipt: IP version type
- * @tbls_num: Number of tables to represent by the header
- * @num_lcl_hash_tbls: Number of local (sram) hashable tables
- * @num_lcl_nhash_tbls: Number of local (sram) non-hashable tables
- * @total_sz_lcl_hash_tbls: Total size of local hashable tables
- * @total_sz_lcl_nhash_tbls: Total size of local non-hashable tables
- * @hash_hdr/nhash_hdr: OUT params for the header structures
- * @hash_bdy/nhash_bdy: OUT params for the local body structures
- */
- struct ipahal_fltrt_alloc_imgs_params {
- enum ipa_ip_type ipt;
- u32 tbls_num;
- u32 num_lcl_hash_tbls;
- u32 num_lcl_nhash_tbls;
- u32 total_sz_lcl_hash_tbls;
- u32 total_sz_lcl_nhash_tbls;
- /* OUT PARAMS */
- struct ipa_mem_buffer hash_hdr;
- struct ipa_mem_buffer nhash_hdr;
- struct ipa_mem_buffer hash_bdy;
- struct ipa_mem_buffer nhash_bdy;
- };
- /*
- * enum ipahal_rt_rule_hdr_type - Header type used in rt rules
- * @IPAHAL_RT_RULE_HDR_NONE: No header is used
- * @IPAHAL_RT_RULE_HDR_RAW: Raw header is used
- * @IPAHAL_RT_RULE_HDR_PROC_CTX: Header Processing context is used
- */
- enum ipahal_rt_rule_hdr_type {
- IPAHAL_RT_RULE_HDR_NONE,
- IPAHAL_RT_RULE_HDR_RAW,
- IPAHAL_RT_RULE_HDR_PROC_CTX,
- };
- /*
- * struct ipahal_rt_rule_gen_params - Params for generating rt rule
- * @ipt: IP family version
- * @dst_pipe_idx: Destination pipe index
- * @hdr_type: Header type to be used
- * @hdr_lcl: Does header on local or system table?
- * @hdr_ofst: Offset of the header in the header table
- * @priority: Rule priority
- * @id: Rule ID
- * @cnt_idx: Stats counter index
- * @rule: Rule info
- */
- struct ipahal_rt_rule_gen_params {
- enum ipa_ip_type ipt;
- int dst_pipe_idx;
- enum ipahal_rt_rule_hdr_type hdr_type;
- bool hdr_lcl;
- u32 hdr_ofst;
- u32 priority;
- u32 id;
- u8 cnt_idx;
- const struct ipa_rt_rule_i *rule;
- };
- /*
- * struct ipahal_rt_rule_entry - Rt rule info parsed from H/W
- * @dst_pipe_idx: Destination pipe index
- * @hdr_lcl: Does the references header located in sram or system mem?
- * @hdr_ofst: Offset of the header in the header table
- * @hdr_type: Header type to be used
- * @priority: Rule priority
- * @retain_hdr: to retain the removed header in header removal
- * @id: Rule ID
- * @cnt_idx: stats counter index
- * @eq_attrib: Equations and their params in the rule
- * @rule_size: Rule size in memory
- */
- struct ipahal_rt_rule_entry {
- int dst_pipe_idx;
- bool hdr_lcl;
- u32 hdr_ofst;
- enum ipahal_rt_rule_hdr_type hdr_type;
- u32 priority;
- bool retain_hdr;
- u32 id;
- u8 cnt_idx;
- struct ipa_ipfltri_rule_eq eq_attrib;
- u32 rule_size;
- };
- /*
- * struct ipahal_flt_rule_gen_params - Params for generating flt rule
- * @ipt: IP family version
- * @rt_tbl_idx: Routing table the rule pointing to
- * @priority: Rule priority
- * @id: Rule ID
- * @cnt_idx: Stats counter index
- * @rule: Rule info
- */
- struct ipahal_flt_rule_gen_params {
- enum ipa_ip_type ipt;
- u32 rt_tbl_idx;
- u32 priority;
- u32 id;
- u8 cnt_idx;
- const struct ipa_flt_rule_i *rule;
- };
- /*
- * struct ipahal_flt_rule_entry - Flt rule info parsed from H/W
- * @rule: Rule info
- * @priority: Rule priority
- * @id: Rule ID
- * @cnt_idx: stats counter index
- * @rule_size: Rule size in memory
- */
- struct ipahal_flt_rule_entry {
- struct ipa_flt_rule_i rule;
- u32 priority;
- u32 id;
- u8 cnt_idx;
- u32 rule_size;
- };
- /* Get the H/W table (flt/rt) header width */
- u32 ipahal_get_hw_tbl_hdr_width(void);
- /* Get the H/W local table (SRAM) address alignment
- * Tables headers references to local tables via offsets in SRAM
- * This function return the alignment of the offset that IPA expects
- */
- u32 ipahal_get_lcl_tbl_addr_alignment(void);
- /*
- * Rule priority is used to distinguish rules order
- * at the integrated table consisting from hashable and
- * non-hashable tables. Max priority are rules that once are
- * scanned by IPA, IPA will not look for further rules and use it.
- */
- int ipahal_get_rule_max_priority(void);
- /* Given a priority, calc and return the next lower one if it is in
- * legal range.
- */
- int ipahal_rule_decrease_priority(int *prio);
- /* Does the given ID represents rule miss? */
- bool ipahal_is_rule_miss_id(u32 id);
- /* Get rule ID with high bit only asserted
- * Used e.g. to create groups of IDs according to this bit
- */
- u32 ipahal_get_rule_id_hi_bit(void);
- /* Get the low value possible to be used for rule-id */
- u32 ipahal_get_low_rule_id(void);
- /*
- * low value possible for counter hdl id
- */
- u32 ipahal_get_low_hdl_id(void);
- /*
- * max counter hdl id for stats
- */
- u32 ipahal_get_high_hdl_id(void);
- /* used for query check and associated with rt/flt rules */
- bool ipahal_is_rule_cnt_id_valid(u8 cnt_id);
- /* max rule id for stats */
- bool ipahal_get_max_stats_rule_id(void);
- /*
- * ipahal_rt_generate_empty_img() - Generate empty route image
- * Creates routing header buffer for the given tables number.
- * For each table, make it point to the empty table on DDR.
- * @tbls_num: Number of tables. For each will have an entry in the header
- * @hash_hdr_size: SRAM buf size of the hash tbls hdr. Used for space check
- * @nhash_hdr_size: SRAM buf size of the nhash tbls hdr. Used for space check
- * @mem: mem object that points to DMA mem representing the hdr structure
- * @atomic: should DMA allocation be executed with atomic flag
- */
- int ipahal_rt_generate_empty_img(u32 tbls_num, u32 hash_hdr_size,
- u32 nhash_hdr_size, struct ipa_mem_buffer *mem, bool atomic);
- /*
- * ipahal_flt_generate_empty_img() - Generate empty filter image
- * Creates filter header buffer for the given tables number.
- * For each table, make it point to the empty table on DDR.
- * @tbls_num: Number of tables. For each will have an entry in the header
- * @hash_hdr_size: SRAM buf size of the hash tbls hdr. Used for space check
- * @nhash_hdr_size: SRAM buf size of the nhash tbls hdr. Used for space check
- * @ep_bitmap: Bitmap representing the EP that has flt tables. The format
- * should be: bit0->EP0, bit1->EP1
- * @mem: mem object that points to DMA mem representing the hdr structure
- * @atomic: should DMA allocation be executed with atomic flag
- */
- int ipahal_flt_generate_empty_img(u32 tbls_num, u32 hash_hdr_size,
- u32 nhash_hdr_size, u64 ep_bitmap, struct ipa_mem_buffer *mem,
- bool atomic);
- /*
- * ipahal_fltrt_allocate_hw_tbl_imgs() - Allocate tbl images DMA structures
- * Used usually during commit.
- * Allocates header structures and init them to point to empty DDR table
- * Allocate body strucutres for local bodies tables
- * @params: Parameters for IN and OUT regard the allocation.
- */
- int ipahal_fltrt_allocate_hw_tbl_imgs(
- struct ipahal_fltrt_alloc_imgs_params *params);
- /*
- * ipahal_fltrt_allocate_hw_sys_tbl() - Allocate DMA mem for H/W flt/rt sys tbl
- * @tbl_mem: IN/OUT param. size for effective table size. Pointer, for the
- * allocated memory.
- *
- * The size is adapted for needed alignments/borders.
- */
- int ipahal_fltrt_allocate_hw_sys_tbl(struct ipa_mem_buffer *tbl_mem);
- /*
- * ipahal_fltrt_write_addr_to_hdr() - Fill table header with table address
- * Given table addr/offset, adapt it to IPA H/W format and write it
- * to given header index.
- * @addr: Address or offset to be used
- * @hdr_base: base address of header structure to write the address
- * @hdr_idx: index of the address in the header structure
- * @is_sys: Is it system address or local offset
- */
- int ipahal_fltrt_write_addr_to_hdr(u64 addr, void *hdr_base, u32 hdr_idx,
- bool is_sys);
- /*
- * ipahal_fltrt_read_addr_from_hdr() - Given sram address, read it's
- * content (physical address or offset) and parse it.
- * @hdr_base: base sram address of the header structure.
- * @hdr_idx: index of the header entry line in the header structure.
- * @addr: The parsed address - Out parameter
- * @is_sys: Is this system or local address - Out parameter
- */
- int ipahal_fltrt_read_addr_from_hdr(void *hdr_base, u32 hdr_idx, u64 *addr,
- bool *is_sys);
- /*
- * ipahal_rt_generate_hw_rule() - generates the routing hardware rule.
- * @params: Params for the rule creation.
- * @hw_len: Size of the H/W rule to be returned
- * @buf: Buffer to build the rule in. If buf is NULL, then the rule will
- * be built in internal temp buf. This is used e.g. to get the rule size
- * only.
- */
- int ipahal_rt_generate_hw_rule(struct ipahal_rt_rule_gen_params *params,
- u32 *hw_len, u8 *buf);
- /*
- * ipahal_flt_generate_hw_rule() - generates the filtering hardware rule.
- * @params: Params for the rule creation.
- * @hw_len: Size of the H/W rule to be returned
- * @buf: Buffer to build the rule in. If buf is NULL, then the rule will
- * be built in internal temp buf. This is used e.g. to get the rule size
- * only.
- */
- int ipahal_flt_generate_hw_rule(struct ipahal_flt_rule_gen_params *params,
- u32 *hw_len, u8 *buf);
- /*
- * ipahal_flt_generate_equation() - generate flt rule in equation form
- * Will build equation form flt rule from given info.
- * @ipt: IP family
- * @attrib: Rule attribute to be generated
- * @eq_atrb: Equation form generated rule
- * Note: Usage example: Pass the generated form to other sub-systems
- * for inter-subsystems rules exchange.
- */
- int ipahal_flt_generate_equation(enum ipa_ip_type ipt,
- const struct ipa_rule_attrib *attrib,
- struct ipa_ipfltri_rule_eq *eq_atrb);
- /*
- * ipahal_rt_parse_hw_rule() - Parse H/W formated rt rule
- * Given the rule address, read the rule info from H/W and parse it.
- * @rule_addr: Rule address (virtual memory)
- * @rule: Out parameter for parsed rule info
- */
- int ipahal_rt_parse_hw_rule(u8 *rule_addr,
- struct ipahal_rt_rule_entry *rule);
- /*
- * ipahal_flt_parse_hw_rule() - Parse H/W formated flt rule
- * Given the rule address, read the rule info from H/W and parse it.
- * @rule_addr: Rule address (virtual memory)
- * @rule: Out parameter for parsed rule info
- */
- int ipahal_flt_parse_hw_rule(u8 *rule_addr,
- struct ipahal_flt_rule_entry *rule);
- #endif /* _IPAHAL_FLTRT_H_ */
|