ipa_defs.h 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright (c) 2018-2019, The Linux Foundation. All rights reserved.
  4. */
  5. #ifndef _IPA_DEFS_H_
  6. #define _IPA_DEFS_H_
  7. #include <linux/ipa.h>
  8. /**
  9. * struct ipa_rt_rule_i - attributes of a routing rule
  10. * @dst: dst "client"
  11. * @hdr_hdl: handle to the dynamic header
  12. it is not an index or an offset
  13. * @hdr_proc_ctx_hdl: handle to header processing context. if it is provided
  14. hdr_hdl shall be 0
  15. * @attrib: attributes of the rule
  16. * @max_prio: bool switch. is this rule with Max priority? meaning on rule hit,
  17. * IPA will use the rule and will not look for other rules that may have
  18. * higher priority
  19. * @hashable: bool switch. is this rule hashable or not?
  20. * ipa uses hashable rules to cache their hit results to be used in
  21. * consecutive packets
  22. * @retain_hdr: bool switch to instruct IPA core to add back to the packet
  23. * the header removed as part of header removal
  24. * @coalesce: bool to decide whether packets should be coalesced or not
  25. * @enable_stats: is true when we want to enable stats for this
  26. * rt rule.
  27. * @cnt_idx: if enable_stats is 1 and cnt_idx is 0, then cnt_idx
  28. * will be assigned by ipa driver.
  29. */
  30. struct ipa_rt_rule_i {
  31. enum ipa_client_type dst;
  32. u32 hdr_hdl;
  33. u32 hdr_proc_ctx_hdl;
  34. struct ipa_rule_attrib attrib;
  35. u8 max_prio;
  36. u8 hashable;
  37. u8 retain_hdr;
  38. u8 coalesce;
  39. u8 enable_stats;
  40. u8 cnt_idx;
  41. };
  42. /**
  43. * struct ipa_flt_rule_i - attributes of a filtering rule
  44. * @retain_hdr: bool switch to instruct IPA core to add back to the packet
  45. * the header removed as part of header removal
  46. * @to_uc: bool switch to pass packet to micro-controller
  47. * @action: action field
  48. * @rt_tbl_hdl: handle of table from "get"
  49. * @attrib: attributes of the rule
  50. * @eq_attrib: attributes of the rule in equation form (valid when
  51. * eq_attrib_type is true)
  52. * @rt_tbl_idx: index of RT table referred to by filter rule (valid when
  53. * eq_attrib_type is true and non-exception action)
  54. * @eq_attrib_type: true if equation level form used to specify attributes
  55. * @max_prio: bool switch. is this rule with Max priority? meaning on rule hit,
  56. * IPA will use the rule and will not look for other rules that may have
  57. * higher priority
  58. * @hashable: bool switch. is this rule hashable or not?
  59. * ipa uses hashable rules to cache their hit results to be used in
  60. * consecutive packets
  61. * @rule_id: rule_id to be assigned to the filter rule. In case client specifies
  62. * rule_id as 0 the driver will assign a new rule_id
  63. * @set_metadata: bool switch. should metadata replacement at the NAT block
  64. * take place?
  65. * @pdn_idx: if action is "pass to source\destination NAT" then a comparison
  66. * against the PDN index in the matching PDN entry will take place as an
  67. * additional condition for NAT hit.
  68. * @enable_stats: is true when we want to enable stats for this
  69. * flt rule.
  70. * @cnt_idx: if 0 means disable, otherwise use for index.
  71. * will be assigned by ipa driver.
  72. */
  73. struct ipa_flt_rule_i {
  74. u8 retain_hdr;
  75. u8 to_uc;
  76. enum ipa_flt_action action;
  77. u32 rt_tbl_hdl;
  78. struct ipa_rule_attrib attrib;
  79. struct ipa_ipfltri_rule_eq eq_attrib;
  80. u32 rt_tbl_idx;
  81. u8 eq_attrib_type;
  82. u8 max_prio;
  83. u8 hashable;
  84. u16 rule_id;
  85. u8 set_metadata;
  86. u8 pdn_idx;
  87. u8 enable_stats;
  88. u8 cnt_idx;
  89. };
  90. #endif /* _IPA_DEFS_H_ */