ipahal_fltrt.h 10.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright (c) 2016-2019, The Linux Foundation. All rights reserved.
  4. */
  5. #ifndef _IPAHAL_FLTRT_H_
  6. #define _IPAHAL_FLTRT_H_
  7. /*
  8. * struct ipahal_fltrt_alloc_imgs_params - Params for tbls imgs allocations
  9. * The allocation logic will allocate DMA memory representing the header.
  10. * If the bodies are local (SRAM) the allocation will allocate
  11. * a DMA buffers that would contain the content of these local tables in raw
  12. * @ipt: IP version type
  13. * @tbls_num: Number of tables to represent by the header
  14. * @num_lcl_hash_tbls: Number of local (sram) hashable tables
  15. * @num_lcl_nhash_tbls: Number of local (sram) non-hashable tables
  16. * @total_sz_lcl_hash_tbls: Total size of local hashable tables
  17. * @total_sz_lcl_nhash_tbls: Total size of local non-hashable tables
  18. * @hash_hdr/nhash_hdr: OUT params for the header structures
  19. * @hash_bdy/nhash_bdy: OUT params for the local body structures
  20. */
  21. struct ipahal_fltrt_alloc_imgs_params {
  22. enum ipa_ip_type ipt;
  23. u32 tbls_num;
  24. u32 num_lcl_hash_tbls;
  25. u32 num_lcl_nhash_tbls;
  26. u32 total_sz_lcl_hash_tbls;
  27. u32 total_sz_lcl_nhash_tbls;
  28. /* OUT PARAMS */
  29. struct ipa_mem_buffer hash_hdr;
  30. struct ipa_mem_buffer nhash_hdr;
  31. struct ipa_mem_buffer hash_bdy;
  32. struct ipa_mem_buffer nhash_bdy;
  33. };
  34. /*
  35. * enum ipahal_rt_rule_hdr_type - Header type used in rt rules
  36. * @IPAHAL_RT_RULE_HDR_NONE: No header is used
  37. * @IPAHAL_RT_RULE_HDR_RAW: Raw header is used
  38. * @IPAHAL_RT_RULE_HDR_PROC_CTX: Header Processing context is used
  39. */
  40. enum ipahal_rt_rule_hdr_type {
  41. IPAHAL_RT_RULE_HDR_NONE,
  42. IPAHAL_RT_RULE_HDR_RAW,
  43. IPAHAL_RT_RULE_HDR_PROC_CTX,
  44. };
  45. /*
  46. * struct ipahal_rt_rule_gen_params - Params for generating rt rule
  47. * @ipt: IP family version
  48. * @dst_pipe_idx: Destination pipe index
  49. * @hdr_type: Header type to be used
  50. * @hdr_lcl: Does header on local or system table?
  51. * @hdr_ofst: Offset of the header in the header table
  52. * @priority: Rule priority
  53. * @id: Rule ID
  54. * @cnt_idx: Stats counter index
  55. * @rule: Rule info
  56. */
  57. struct ipahal_rt_rule_gen_params {
  58. enum ipa_ip_type ipt;
  59. int dst_pipe_idx;
  60. enum ipahal_rt_rule_hdr_type hdr_type;
  61. bool hdr_lcl;
  62. u32 hdr_ofst;
  63. u32 priority;
  64. u32 id;
  65. u8 cnt_idx;
  66. const struct ipa_rt_rule_i *rule;
  67. };
  68. /*
  69. * struct ipahal_rt_rule_entry - Rt rule info parsed from H/W
  70. * @dst_pipe_idx: Destination pipe index
  71. * @hdr_lcl: Does the references header located in sram or system mem?
  72. * @hdr_ofst: Offset of the header in the header table
  73. * @hdr_type: Header type to be used
  74. * @priority: Rule priority
  75. * @retain_hdr: to retain the removed header in header removal
  76. * @id: Rule ID
  77. * @cnt_idx: stats counter index
  78. * @eq_attrib: Equations and their params in the rule
  79. * @rule_size: Rule size in memory
  80. */
  81. struct ipahal_rt_rule_entry {
  82. int dst_pipe_idx;
  83. bool hdr_lcl;
  84. u32 hdr_ofst;
  85. enum ipahal_rt_rule_hdr_type hdr_type;
  86. u32 priority;
  87. bool retain_hdr;
  88. u32 id;
  89. u8 cnt_idx;
  90. struct ipa_ipfltri_rule_eq eq_attrib;
  91. u32 rule_size;
  92. };
  93. /*
  94. * struct ipahal_flt_rule_gen_params - Params for generating flt rule
  95. * @ipt: IP family version
  96. * @rt_tbl_idx: Routing table the rule pointing to
  97. * @priority: Rule priority
  98. * @id: Rule ID
  99. * @cnt_idx: Stats counter index
  100. * @rule: Rule info
  101. */
  102. struct ipahal_flt_rule_gen_params {
  103. enum ipa_ip_type ipt;
  104. u32 rt_tbl_idx;
  105. u32 priority;
  106. u32 id;
  107. u8 cnt_idx;
  108. const struct ipa_flt_rule_i *rule;
  109. };
  110. /*
  111. * struct ipahal_flt_rule_entry - Flt rule info parsed from H/W
  112. * @rule: Rule info
  113. * @priority: Rule priority
  114. * @id: Rule ID
  115. * @cnt_idx: stats counter index
  116. * @rule_size: Rule size in memory
  117. */
  118. struct ipahal_flt_rule_entry {
  119. struct ipa_flt_rule_i rule;
  120. u32 priority;
  121. u32 id;
  122. u8 cnt_idx;
  123. u32 rule_size;
  124. };
  125. /* Get the H/W table (flt/rt) header width */
  126. u32 ipahal_get_hw_tbl_hdr_width(void);
  127. /* Get the H/W local table (SRAM) address alignment
  128. * Tables headers references to local tables via offsets in SRAM
  129. * This function return the alignment of the offset that IPA expects
  130. */
  131. u32 ipahal_get_lcl_tbl_addr_alignment(void);
  132. /*
  133. * Rule priority is used to distinguish rules order
  134. * at the integrated table consisting from hashable and
  135. * non-hashable tables. Max priority are rules that once are
  136. * scanned by IPA, IPA will not look for further rules and use it.
  137. */
  138. int ipahal_get_rule_max_priority(void);
  139. /* Given a priority, calc and return the next lower one if it is in
  140. * legal range.
  141. */
  142. int ipahal_rule_decrease_priority(int *prio);
  143. /* Does the given ID represents rule miss? */
  144. bool ipahal_is_rule_miss_id(u32 id);
  145. /* Get rule ID with high bit only asserted
  146. * Used e.g. to create groups of IDs according to this bit
  147. */
  148. u32 ipahal_get_rule_id_hi_bit(void);
  149. /* Get the low value possible to be used for rule-id */
  150. u32 ipahal_get_low_rule_id(void);
  151. /*
  152. * low value possible for counter hdl id
  153. */
  154. u32 ipahal_get_low_hdl_id(void);
  155. /*
  156. * max counter hdl id for stats
  157. */
  158. u32 ipahal_get_high_hdl_id(void);
  159. /* used for query check and associated with rt/flt rules */
  160. bool ipahal_is_rule_cnt_id_valid(u8 cnt_id);
  161. /* max rule id for stats */
  162. bool ipahal_get_max_stats_rule_id(void);
  163. /*
  164. * ipahal_rt_generate_empty_img() - Generate empty route image
  165. * Creates routing header buffer for the given tables number.
  166. * For each table, make it point to the empty table on DDR.
  167. * @tbls_num: Number of tables. For each will have an entry in the header
  168. * @hash_hdr_size: SRAM buf size of the hash tbls hdr. Used for space check
  169. * @nhash_hdr_size: SRAM buf size of the nhash tbls hdr. Used for space check
  170. * @mem: mem object that points to DMA mem representing the hdr structure
  171. * @atomic: should DMA allocation be executed with atomic flag
  172. */
  173. int ipahal_rt_generate_empty_img(u32 tbls_num, u32 hash_hdr_size,
  174. u32 nhash_hdr_size, struct ipa_mem_buffer *mem, bool atomic);
  175. /*
  176. * ipahal_flt_generate_empty_img() - Generate empty filter image
  177. * Creates filter header buffer for the given tables number.
  178. * For each table, make it point to the empty table on DDR.
  179. * @tbls_num: Number of tables. For each will have an entry in the header
  180. * @hash_hdr_size: SRAM buf size of the hash tbls hdr. Used for space check
  181. * @nhash_hdr_size: SRAM buf size of the nhash tbls hdr. Used for space check
  182. * @ep_bitmap: Bitmap representing the EP that has flt tables. The format
  183. * should be: bit0->EP0, bit1->EP1
  184. * @mem: mem object that points to DMA mem representing the hdr structure
  185. * @atomic: should DMA allocation be executed with atomic flag
  186. */
  187. int ipahal_flt_generate_empty_img(u32 tbls_num, u32 hash_hdr_size,
  188. u32 nhash_hdr_size, u64 ep_bitmap, struct ipa_mem_buffer *mem,
  189. bool atomic);
  190. /*
  191. * ipahal_fltrt_allocate_hw_tbl_imgs() - Allocate tbl images DMA structures
  192. * Used usually during commit.
  193. * Allocates header structures and init them to point to empty DDR table
  194. * Allocate body strucutres for local bodies tables
  195. * @params: Parameters for IN and OUT regard the allocation.
  196. */
  197. int ipahal_fltrt_allocate_hw_tbl_imgs(
  198. struct ipahal_fltrt_alloc_imgs_params *params);
  199. /*
  200. * ipahal_fltrt_allocate_hw_sys_tbl() - Allocate DMA mem for H/W flt/rt sys tbl
  201. * @tbl_mem: IN/OUT param. size for effective table size. Pointer, for the
  202. * allocated memory.
  203. *
  204. * The size is adapted for needed alignments/borders.
  205. */
  206. int ipahal_fltrt_allocate_hw_sys_tbl(struct ipa_mem_buffer *tbl_mem);
  207. /*
  208. * ipahal_fltrt_write_addr_to_hdr() - Fill table header with table address
  209. * Given table addr/offset, adapt it to IPA H/W format and write it
  210. * to given header index.
  211. * @addr: Address or offset to be used
  212. * @hdr_base: base address of header structure to write the address
  213. * @hdr_idx: index of the address in the header structure
  214. * @is_sys: Is it system address or local offset
  215. */
  216. int ipahal_fltrt_write_addr_to_hdr(u64 addr, void *hdr_base, u32 hdr_idx,
  217. bool is_sys);
  218. /*
  219. * ipahal_fltrt_read_addr_from_hdr() - Given sram address, read it's
  220. * content (physical address or offset) and parse it.
  221. * @hdr_base: base sram address of the header structure.
  222. * @hdr_idx: index of the header entry line in the header structure.
  223. * @addr: The parsed address - Out parameter
  224. * @is_sys: Is this system or local address - Out parameter
  225. */
  226. int ipahal_fltrt_read_addr_from_hdr(void *hdr_base, u32 hdr_idx, u64 *addr,
  227. bool *is_sys);
  228. /*
  229. * ipahal_rt_generate_hw_rule() - generates the routing hardware rule.
  230. * @params: Params for the rule creation.
  231. * @hw_len: Size of the H/W rule to be returned
  232. * @buf: Buffer to build the rule in. If buf is NULL, then the rule will
  233. * be built in internal temp buf. This is used e.g. to get the rule size
  234. * only.
  235. */
  236. int ipahal_rt_generate_hw_rule(struct ipahal_rt_rule_gen_params *params,
  237. u32 *hw_len, u8 *buf);
  238. /*
  239. * ipahal_flt_generate_hw_rule() - generates the filtering hardware rule.
  240. * @params: Params for the rule creation.
  241. * @hw_len: Size of the H/W rule to be returned
  242. * @buf: Buffer to build the rule in. If buf is NULL, then the rule will
  243. * be built in internal temp buf. This is used e.g. to get the rule size
  244. * only.
  245. */
  246. int ipahal_flt_generate_hw_rule(struct ipahal_flt_rule_gen_params *params,
  247. u32 *hw_len, u8 *buf);
  248. /*
  249. * ipahal_flt_generate_equation() - generate flt rule in equation form
  250. * Will build equation form flt rule from given info.
  251. * @ipt: IP family
  252. * @attrib: Rule attribute to be generated
  253. * @eq_atrb: Equation form generated rule
  254. * Note: Usage example: Pass the generated form to other sub-systems
  255. * for inter-subsystems rules exchange.
  256. */
  257. int ipahal_flt_generate_equation(enum ipa_ip_type ipt,
  258. const struct ipa_rule_attrib *attrib,
  259. struct ipa_ipfltri_rule_eq *eq_atrb);
  260. /*
  261. * ipahal_rt_parse_hw_rule() - Parse H/W formated rt rule
  262. * Given the rule address, read the rule info from H/W and parse it.
  263. * @rule_addr: Rule address (virtual memory)
  264. * @rule: Out parameter for parsed rule info
  265. */
  266. int ipahal_rt_parse_hw_rule(u8 *rule_addr,
  267. struct ipahal_rt_rule_entry *rule);
  268. /*
  269. * ipahal_flt_parse_hw_rule() - Parse H/W formated flt rule
  270. * Given the rule address, read the rule info from H/W and parse it.
  271. * @rule_addr: Rule address (virtual memory)
  272. * @rule: Out parameter for parsed rule info
  273. */
  274. int ipahal_flt_parse_hw_rule(u8 *rule_addr,
  275. struct ipahal_flt_rule_entry *rule);
  276. #endif /* _IPAHAL_FLTRT_H_ */