ipahal_nat_i.h 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright (c) 2018-2019, The Linux Foundation. All rights reserved.
  4. */
  5. #ifndef _IPAHAL_NAT_I_H_
  6. #define _IPAHAL_NAT_I_H_
  7. #include <linux/msm_ipa.h>
  8. /* ----------------------- IPv4 NAT Table Entry -------------------------
  9. *
  10. * -----------------------------------------------------------------------
  11. * | 7 | 6 | 5 | 4 | 3 | 2 | 1 | 0 |
  12. * -----------------------------------------------------------------------
  13. * | Target IP(4B) | Private IP(4B) |
  14. * -----------------------------------------------------------------------
  15. * |Target Port(2B) |Private Port(2B)| Public Port(2B) | Next Index(2B) |
  16. * -----------------------------------------------------------------------
  17. * |Proto| TimeStamp(3B) | Flags(2B) |IP check sum Diff|
  18. * |(1B) | |EN|Redirect|Resv | (2B) |
  19. * -----------------------------------------------------------------------
  20. * |TCP/UDP checksum| PDN info(2B) | SW Specific Parameters(4B) |
  21. * | diff (2B) |Info|Resv |index table entry| prev index |
  22. * -----------------------------------------------------------------------
  23. */
  24. struct ipa_nat_hw_ipv4_entry {
  25. /* An IP address can't be bit-field, because its address is used */
  26. u32 private_ip;
  27. u32 target_ip;
  28. u32 next_index : 16;
  29. u32 public_port : 16;
  30. u32 private_port : 16;
  31. u32 target_port : 16;
  32. u32 ip_chksum : 16;
  33. u32 rsvd1 : 14;
  34. u32 redirect : 1;
  35. u32 enable : 1;
  36. u32 time_stamp : 24;
  37. u32 protocol : 8;
  38. u32 prev_index : 16;
  39. u32 indx_tbl_entry : 16;
  40. u32 rsvd2 : 12;
  41. u32 pdn_index : 4; /* IPA 4.0 and greater */
  42. u32 tcp_udp_chksum : 16;
  43. };
  44. /*--- IPV4 NAT Index Table Entry --
  45. *---------------------------------
  46. *| 3 | 2 | 1 | 0 |
  47. *---------------------------------
  48. *|next index(2B) |table entry(2B)|
  49. *---------------------------------
  50. */
  51. struct ipa_nat_hw_indx_entry {
  52. u16 tbl_entry;
  53. u16 next_index;
  54. };
  55. /**
  56. * struct ipa_nat_hw_pdn_entry - IPA PDN config table entry
  57. * @public_ip: the PDN's public ip
  58. * @src_metadata: the PDN's metadata to be replaced for source NAT
  59. * @dst_metadata: the PDN's metadata to be replaced for destination NAT
  60. * @resrvd: reserved field
  61. * ---------------------------------
  62. * | 3 | 2 | 1 | 0 |
  63. * ---------------------------------
  64. * | public_ip (4B) |
  65. * ---------------------------------
  66. * | src_metadata (4B) |
  67. * ---------------------------------
  68. * | dst_metadata (4B) |
  69. * ---------------------------------
  70. * | resrvd (4B) |
  71. * ---------------------------------
  72. */
  73. struct ipa_nat_hw_pdn_entry {
  74. u32 public_ip;
  75. u32 src_metadata;
  76. u32 dst_metadata;
  77. u32 resrvd;
  78. };
  79. /*------------------------- IPV6CT Table Entry ------------------------------
  80. *-----------------------------------------------------------------------------
  81. *| 7 | 6 | 5 | 4 | 3 | 2 | 1 | 0 |
  82. *-----------------------------------------------------------------------------
  83. *| Outbound Src IPv6 Address (8 LSB Bytes) |
  84. *-----------------------------------------------------------------------------
  85. *| Outbound Src IPv6 Address (8 MSB Bytes) |
  86. *-----------------------------------------------------------------------------
  87. *| Outbound Dest IPv6 Address (8 LSB Bytes) |
  88. *-----------------------------------------------------------------------------
  89. *| Outbound Dest IPv6 Address (8 MSB Bytes) |
  90. *-----------------------------------------------------------------------------
  91. *|Protocol| TimeStamp (3B) | Flags (2B) |Reserved (2B) |
  92. *| (1B) | |Enable|Redirect|Resv | |
  93. *-----------------------------------------------------------------------------
  94. *|Reserved|Direction(1B)|Src Port(2B)| Dest Port (2B) |Next Index(2B)|
  95. *| (1B) |IN|OUT|Resv | | | |
  96. *-----------------------------------------------------------------------------
  97. *| SW Specific Parameters(4B) | Reserved (4B) |
  98. *| Prev Index (2B) |Reserved(2B)| |
  99. *-----------------------------------------------------------------------------
  100. *| Reserved (8B) |
  101. *-----------------------------------------------------------------------------
  102. */
  103. struct ipa_nat_hw_ipv6ct_entry {
  104. /* An IP address can't be bit-field, because its address is used */
  105. u64 src_ipv6_lsb;
  106. u64 src_ipv6_msb;
  107. u64 dest_ipv6_lsb;
  108. u64 dest_ipv6_msb;
  109. u64 rsvd1 : 30;
  110. u64 redirect : 1;
  111. u64 enable : 1;
  112. u64 time_stamp : 24;
  113. u64 protocol : 8;
  114. u64 next_index : 16;
  115. u64 dest_port : 16;
  116. u64 src_port : 16;
  117. u64 rsvd2 : 6;
  118. u64 out_allowed : 1;
  119. u64 in_allowed : 1;
  120. u64 rsvd3 : 8;
  121. u64 rsvd4 : 48;
  122. u64 prev_index : 16;
  123. u64 rsvd5 : 64;
  124. };
  125. int ipahal_nat_init(enum ipa_hw_type ipa_hw_type);
  126. #endif /* _IPAHAL_NAT_I_H_ */