ipahal_fltrt_i.h 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright (c) 2012-2019, The Linux Foundation. All rights reserved.
  4. */
  5. #ifndef _IPAHAL_FLTRT_I_H_
  6. #define _IPAHAL_FLTRT_I_H_
  7. /*
  8. * enum ipa_fltrt_equations - RULE equations
  9. * These are names values to the equations that can be used
  10. * The HAL layer holds mapping between these names and H/W
  11. * presentation.
  12. */
  13. enum ipa_fltrt_equations {
  14. IPA_TOS_EQ,
  15. IPA_PROTOCOL_EQ,
  16. IPA_TC_EQ,
  17. IPA_OFFSET_MEQ128_0,
  18. IPA_OFFSET_MEQ128_1,
  19. IPA_OFFSET_MEQ32_0,
  20. IPA_OFFSET_MEQ32_1,
  21. IPA_IHL_OFFSET_MEQ32_0,
  22. IPA_IHL_OFFSET_MEQ32_1,
  23. IPA_METADATA_COMPARE,
  24. IPA_IHL_OFFSET_RANGE16_0,
  25. IPA_IHL_OFFSET_RANGE16_1,
  26. IPA_IHL_OFFSET_EQ_32,
  27. IPA_IHL_OFFSET_EQ_16,
  28. IPA_FL_EQ,
  29. IPA_IS_FRAG,
  30. IPA_IS_PURE_ACK,
  31. IPA_EQ_MAX,
  32. };
  33. /* Width and Alignment values for H/W structures.
  34. * Specific for IPA version.
  35. */
  36. #define IPA3_0_HW_TBL_SYSADDR_ALIGNMENT (127)
  37. #define IPA3_0_HW_TBL_LCLADDR_ALIGNMENT (7)
  38. #define IPA3_0_HW_TBL_BLK_SIZE_ALIGNMENT (127)
  39. #define IPA3_0_HW_TBL_WIDTH (8)
  40. #define IPA3_0_HW_TBL_HDR_WIDTH (8)
  41. #define IPA3_0_HW_TBL_ADDR_MASK (127)
  42. #define IPA3_0_HW_RULE_BUF_SIZE (256)
  43. #define IPA3_0_HW_RULE_START_ALIGNMENT (7)
  44. /*
  45. * Rules Priority.
  46. * Needed due to rules classification to hashable and non-hashable.
  47. * Higher priority is lower in number. i.e. 0 is highest priority
  48. */
  49. #define IPA3_0_RULE_MAX_PRIORITY (0)
  50. #define IPA3_0_RULE_MIN_PRIORITY (1023)
  51. /*
  52. * RULE ID, bit length (e.g. 10 bits).
  53. */
  54. #define IPA3_0_RULE_ID_BIT_LEN (10)
  55. #define IPA3_0_LOW_RULE_ID (1)
  56. /*
  57. * COUNTER ID, LOW COUNTER ID.
  58. */
  59. #define IPA4_5_LOW_CNT_ID (1)
  60. /**
  61. * struct ipa3_0_rt_rule_hw_hdr - HW header of IPA routing rule
  62. * @word: routing rule header properties
  63. * @en_rule: enable rule - Equation bit fields
  64. * @pipe_dest_idx: destination pipe index
  65. * @system: Is referenced header is lcl or sys memory
  66. * @hdr_offset: header offset
  67. * @proc_ctx: whether hdr_offset points to header table or to
  68. * header processing context table
  69. * @priority: Rule priority. Added to distinguish rules order
  70. * at the integrated table consisting from hashable and
  71. * non-hashable parts
  72. * @rsvd1: reserved bits
  73. * @retain_hdr: added to add back to the packet the header removed
  74. * as part of header removal. This will be done as part of
  75. * header insertion block.
  76. * @rule_id: rule ID that will be returned in the packet status
  77. * @rsvd2: reserved bits
  78. */
  79. struct ipa3_0_rt_rule_hw_hdr {
  80. union {
  81. u64 word;
  82. struct {
  83. u64 en_rule:16;
  84. u64 pipe_dest_idx:5;
  85. u64 system:1;
  86. u64 hdr_offset:9;
  87. u64 proc_ctx:1;
  88. u64 priority:10;
  89. u64 rsvd1:5;
  90. u64 retain_hdr:1;
  91. u64 rule_id:10;
  92. u64 rsvd2:6;
  93. } hdr;
  94. } u;
  95. };
  96. /**
  97. * struct ipa3_0_rt_rule_hw_hdr - HW header of IPA routing rule
  98. * @word: routing rule header properties
  99. * @en_rule: enable rule - Equation bit fields
  100. * @pipe_dest_idx: destination pipe index
  101. * @system: Is referenced header is lcl or sys memory
  102. * @hdr_offset: header offset
  103. * @proc_ctx: whether hdr_offset points to header table or to
  104. * header processing context table
  105. * @priority: Rule priority. Added to distinguish rules order
  106. * at the integrated table consisting from hashable and
  107. * non-hashable parts
  108. * @stats_cnt_idx_msb: stats cnt index msb
  109. * @rsvd2: reserved bits
  110. * @retain_hdr: added to add back to the packet the header removed
  111. * as part of header removal. This will be done as part of
  112. * header insertion block.
  113. * @rule_id: rule ID that will be returned in the packet status
  114. * @stats_cnt_idx_lsb: stats cnt index lsb
  115. */
  116. struct ipa4_5_rt_rule_hw_hdr {
  117. union {
  118. u64 word;
  119. struct {
  120. u64 en_rule:16;
  121. u64 pipe_dest_idx:5;
  122. u64 system:1;
  123. u64 hdr_offset:9;
  124. u64 proc_ctx:1;
  125. u64 priority:10;
  126. u64 stats_cnt_idx_msb : 2;
  127. u64 rsvd2 : 3;
  128. u64 retain_hdr:1;
  129. u64 rule_id:10;
  130. u64 stats_cnt_idx_lsb : 6;
  131. } hdr;
  132. } u;
  133. };
  134. /**
  135. * struct ipa3_0_flt_rule_hw_hdr - HW header of IPA filter rule
  136. * @word: filtering rule properties
  137. * @en_rule: enable rule
  138. * @action: post filtering action
  139. * @rt_tbl_idx: index in routing table
  140. * @retain_hdr: added to add back to the packet the header removed
  141. * as part of header removal. This will be done as part of
  142. * header insertion block.
  143. * @rsvd1: reserved bits
  144. * @priority: Rule priority. Added to distinguish rules order
  145. * at the integrated table consisting from hashable and
  146. * non-hashable parts
  147. * @rsvd2: reserved bits
  148. * @rule_id: rule ID that will be returned in the packet status
  149. * @rsvd3: reserved bits
  150. */
  151. struct ipa3_0_flt_rule_hw_hdr {
  152. union {
  153. u64 word;
  154. struct {
  155. u64 en_rule:16;
  156. u64 action:5;
  157. u64 rt_tbl_idx:5;
  158. u64 retain_hdr:1;
  159. u64 rsvd1:5;
  160. u64 priority:10;
  161. u64 rsvd2:6;
  162. u64 rule_id:10;
  163. u64 rsvd3:6;
  164. } hdr;
  165. } u;
  166. };
  167. /**
  168. * struct ipa4_0_flt_rule_hw_hdr - HW header of IPA filter rule
  169. * @word: filtering rule properties
  170. * @en_rule: enable rule
  171. * @action: post filtering action
  172. * @rt_tbl_idx: index in routing table
  173. * @retain_hdr: added to add back to the packet the header removed
  174. * as part of header removal. This will be done as part of
  175. * header insertion block.
  176. * @pdn_idx: in case of go to src nat action possible to input the pdn index to
  177. * the NAT block
  178. * @set_metadata: enable metadata replacement in the NAT block
  179. * @priority: Rule priority. Added to distinguish rules order
  180. * at the integrated table consisting from hashable and
  181. * non-hashable parts
  182. * @rsvd2: reserved bits
  183. * @rule_id: rule ID that will be returned in the packet status
  184. * @rsvd3: reserved bits
  185. */
  186. struct ipa4_0_flt_rule_hw_hdr {
  187. union {
  188. u64 word;
  189. struct {
  190. u64 en_rule : 16;
  191. u64 action : 5;
  192. u64 rt_tbl_idx : 5;
  193. u64 retain_hdr : 1;
  194. u64 pdn_idx : 4;
  195. u64 set_metadata : 1;
  196. u64 priority : 10;
  197. u64 rsvd2 : 6;
  198. u64 rule_id : 10;
  199. u64 rsvd3 : 6;
  200. } hdr;
  201. } u;
  202. };
  203. /**
  204. * struct ipa4_5_flt_rule_hw_hdr - HW header of IPA filter rule
  205. * @word: filtering rule properties
  206. * @en_rule: enable rule
  207. * @action: post filtering action
  208. * @rt_tbl_idx: index in routing table
  209. * @retain_hdr: added to add back to the packet the header removed
  210. * as part of header removal. This will be done as part of
  211. * header insertion block.
  212. * @pdn_idx: in case of go to src nat action possible to input the pdn index to
  213. * the NAT block
  214. * @set_metadata: enable metadata replacement in the NAT block
  215. * @priority: Rule priority. Added to distinguish rules order
  216. * at the integrated table consisting from hashable and
  217. * non-hashable parts
  218. * @stats_cnt_idx_msb: stats cnt index msb
  219. * @rsvd2: reserved bits
  220. * @rule_id: rule ID that will be returned in the packet status
  221. * @stats_cnt_idx_lsb: stats cnt index lsb
  222. */
  223. struct ipa4_5_flt_rule_hw_hdr {
  224. union {
  225. u64 word;
  226. struct {
  227. u64 en_rule : 16;
  228. u64 action : 5;
  229. u64 rt_tbl_idx : 5;
  230. u64 retain_hdr : 1;
  231. u64 pdn_idx : 4;
  232. u64 set_metadata : 1;
  233. u64 priority : 10;
  234. u64 stats_cnt_idx_msb : 2;
  235. u64 rsvd2 : 4;
  236. u64 rule_id : 10;
  237. u64 stats_cnt_idx_lsb : 6;
  238. } hdr;
  239. } u;
  240. };
  241. int ipahal_fltrt_init(enum ipa_hw_type ipa_hw_type);
  242. void ipahal_fltrt_destroy(void);
  243. #endif /* _IPAHAL_FLTRT_I_H_ */