mvpp2_prs.h 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314
  1. /*
  2. * Header Parser definitions for Marvell PPv2 Network Controller
  3. *
  4. * Copyright (C) 2014 Marvell
  5. *
  6. * Marcin Wojtas <mw@semihalf.com>
  7. *
  8. * This file is licensed under the terms of the GNU General Public
  9. * License version 2. This program is licensed "as is" without any
  10. * warranty of any kind, whether express or implied.
  11. */
  12. #include <linux/kernel.h>
  13. #include <linux/netdevice.h>
  14. #include "mvpp2.h"
  15. #ifndef _MVPP2_PRS_H_
  16. #define _MVPP2_PRS_H_
  17. /* Parser constants */
  18. #define MVPP2_PRS_TCAM_SRAM_SIZE 256
  19. #define MVPP2_PRS_TCAM_WORDS 6
  20. #define MVPP2_PRS_SRAM_WORDS 4
  21. #define MVPP2_PRS_FLOW_ID_SIZE 64
  22. #define MVPP2_PRS_FLOW_ID_MASK 0x3f
  23. #define MVPP2_PRS_TCAM_ENTRY_INVALID 1
  24. #define MVPP2_PRS_TCAM_DSA_TAGGED_BIT BIT(5)
  25. #define MVPP2_PRS_IPV4_HEAD 0x40
  26. #define MVPP2_PRS_IPV4_HEAD_MASK 0xf0
  27. #define MVPP2_PRS_IPV4_MC 0xe0
  28. #define MVPP2_PRS_IPV4_MC_MASK 0xf0
  29. #define MVPP2_PRS_IPV4_BC_MASK 0xff
  30. #define MVPP2_PRS_IPV4_IHL 0x5
  31. #define MVPP2_PRS_IPV4_IHL_MASK 0xf
  32. #define MVPP2_PRS_IPV6_MC 0xff
  33. #define MVPP2_PRS_IPV6_MC_MASK 0xff
  34. #define MVPP2_PRS_IPV6_HOP_MASK 0xff
  35. #define MVPP2_PRS_TCAM_PROTO_MASK 0xff
  36. #define MVPP2_PRS_TCAM_PROTO_MASK_L 0x3f
  37. #define MVPP2_PRS_DBL_VLANS_MAX 100
  38. #define MVPP2_PRS_CAST_MASK BIT(0)
  39. #define MVPP2_PRS_MCAST_VAL BIT(0)
  40. #define MVPP2_PRS_UCAST_VAL 0x0
  41. /* Tcam structure:
  42. * - lookup ID - 4 bits
  43. * - port ID - 1 byte
  44. * - additional information - 1 byte
  45. * - header data - 8 bytes
  46. * The fields are represented by MVPP2_PRS_TCAM_DATA_REG(5)->(0).
  47. */
  48. #define MVPP2_PRS_AI_BITS 8
  49. #define MVPP2_PRS_PORT_MASK 0xff
  50. #define MVPP2_PRS_LU_MASK 0xf
  51. #define MVPP2_PRS_TCAM_DATA_BYTE(offs) \
  52. (((offs) - ((offs) % 2)) * 2 + ((offs) % 2))
  53. #define MVPP2_PRS_TCAM_DATA_BYTE_EN(offs) \
  54. (((offs) * 2) - ((offs) % 2) + 2)
  55. #define MVPP2_PRS_TCAM_AI_BYTE 16
  56. #define MVPP2_PRS_TCAM_PORT_BYTE 17
  57. #define MVPP2_PRS_TCAM_LU_BYTE 20
  58. #define MVPP2_PRS_TCAM_EN_OFFS(offs) ((offs) + 2)
  59. #define MVPP2_PRS_TCAM_INV_WORD 5
  60. #define MVPP2_PRS_VID_TCAM_BYTE 2
  61. /* TCAM range for unicast and multicast filtering. We have 25 entries per port,
  62. * with 4 dedicated to UC filtering and the rest to multicast filtering.
  63. * Additionnally we reserve one entry for the broadcast address, and one for
  64. * each port's own address.
  65. */
  66. #define MVPP2_PRS_MAC_UC_MC_FILT_MAX 25
  67. #define MVPP2_PRS_MAC_RANGE_SIZE 80
  68. /* Number of entries per port dedicated to UC and MC filtering */
  69. #define MVPP2_PRS_MAC_UC_FILT_MAX 4
  70. #define MVPP2_PRS_MAC_MC_FILT_MAX (MVPP2_PRS_MAC_UC_MC_FILT_MAX - \
  71. MVPP2_PRS_MAC_UC_FILT_MAX)
  72. /* There is a TCAM range reserved for VLAN filtering entries, range size is 33
  73. * 10 VLAN ID filter entries per port
  74. * 1 default VLAN filter entry per port
  75. * It is assumed that there are 3 ports for filter, not including loopback port
  76. */
  77. #define MVPP2_PRS_VLAN_FILT_MAX 11
  78. #define MVPP2_PRS_VLAN_FILT_RANGE_SIZE 33
  79. #define MVPP2_PRS_VLAN_FILT_MAX_ENTRY (MVPP2_PRS_VLAN_FILT_MAX - 2)
  80. #define MVPP2_PRS_VLAN_FILT_DFLT_ENTRY (MVPP2_PRS_VLAN_FILT_MAX - 1)
  81. /* Tcam entries ID */
  82. #define MVPP2_PE_DROP_ALL 0
  83. #define MVPP2_PE_FIRST_FREE_TID 1
  84. /* MAC filtering range */
  85. #define MVPP2_PE_MAC_RANGE_END (MVPP2_PE_VID_FILT_RANGE_START - 1)
  86. #define MVPP2_PE_MAC_RANGE_START (MVPP2_PE_MAC_RANGE_END - \
  87. MVPP2_PRS_MAC_RANGE_SIZE + 1)
  88. /* VLAN filtering range */
  89. #define MVPP2_PE_VID_FILT_RANGE_END (MVPP2_PRS_TCAM_SRAM_SIZE - 31)
  90. #define MVPP2_PE_VID_FILT_RANGE_START (MVPP2_PE_VID_FILT_RANGE_END - \
  91. MVPP2_PRS_VLAN_FILT_RANGE_SIZE + 1)
  92. #define MVPP2_PE_LAST_FREE_TID (MVPP2_PE_MAC_RANGE_START - 1)
  93. #define MVPP2_PE_IP6_EXT_PROTO_UN (MVPP2_PRS_TCAM_SRAM_SIZE - 30)
  94. #define MVPP2_PE_IP6_ADDR_UN (MVPP2_PRS_TCAM_SRAM_SIZE - 29)
  95. #define MVPP2_PE_IP4_ADDR_UN (MVPP2_PRS_TCAM_SRAM_SIZE - 28)
  96. #define MVPP2_PE_LAST_DEFAULT_FLOW (MVPP2_PRS_TCAM_SRAM_SIZE - 27)
  97. #define MVPP2_PE_FIRST_DEFAULT_FLOW (MVPP2_PRS_TCAM_SRAM_SIZE - 22)
  98. #define MVPP2_PE_EDSA_TAGGED (MVPP2_PRS_TCAM_SRAM_SIZE - 21)
  99. #define MVPP2_PE_EDSA_UNTAGGED (MVPP2_PRS_TCAM_SRAM_SIZE - 20)
  100. #define MVPP2_PE_DSA_TAGGED (MVPP2_PRS_TCAM_SRAM_SIZE - 19)
  101. #define MVPP2_PE_DSA_UNTAGGED (MVPP2_PRS_TCAM_SRAM_SIZE - 18)
  102. #define MVPP2_PE_ETYPE_EDSA_TAGGED (MVPP2_PRS_TCAM_SRAM_SIZE - 17)
  103. #define MVPP2_PE_ETYPE_EDSA_UNTAGGED (MVPP2_PRS_TCAM_SRAM_SIZE - 16)
  104. #define MVPP2_PE_ETYPE_DSA_TAGGED (MVPP2_PRS_TCAM_SRAM_SIZE - 15)
  105. #define MVPP2_PE_ETYPE_DSA_UNTAGGED (MVPP2_PRS_TCAM_SRAM_SIZE - 14)
  106. #define MVPP2_PE_MH_DEFAULT (MVPP2_PRS_TCAM_SRAM_SIZE - 13)
  107. #define MVPP2_PE_DSA_DEFAULT (MVPP2_PRS_TCAM_SRAM_SIZE - 12)
  108. #define MVPP2_PE_IP6_PROTO_UN (MVPP2_PRS_TCAM_SRAM_SIZE - 11)
  109. #define MVPP2_PE_IP4_PROTO_UN (MVPP2_PRS_TCAM_SRAM_SIZE - 10)
  110. #define MVPP2_PE_ETH_TYPE_UN (MVPP2_PRS_TCAM_SRAM_SIZE - 9)
  111. #define MVPP2_PE_VID_FLTR_DEFAULT (MVPP2_PRS_TCAM_SRAM_SIZE - 8)
  112. #define MVPP2_PE_VID_EDSA_FLTR_DEFAULT (MVPP2_PRS_TCAM_SRAM_SIZE - 7)
  113. #define MVPP2_PE_VLAN_DBL (MVPP2_PRS_TCAM_SRAM_SIZE - 6)
  114. #define MVPP2_PE_VLAN_NONE (MVPP2_PRS_TCAM_SRAM_SIZE - 5)
  115. /* reserved */
  116. #define MVPP2_PE_MAC_MC_PROMISCUOUS (MVPP2_PRS_TCAM_SRAM_SIZE - 3)
  117. #define MVPP2_PE_MAC_UC_PROMISCUOUS (MVPP2_PRS_TCAM_SRAM_SIZE - 2)
  118. #define MVPP2_PE_MAC_NON_PROMISCUOUS (MVPP2_PRS_TCAM_SRAM_SIZE - 1)
  119. #define MVPP2_PRS_VID_PORT_FIRST(port) (MVPP2_PE_VID_FILT_RANGE_START + \
  120. ((port) * MVPP2_PRS_VLAN_FILT_MAX))
  121. #define MVPP2_PRS_VID_PORT_LAST(port) (MVPP2_PRS_VID_PORT_FIRST(port) \
  122. + MVPP2_PRS_VLAN_FILT_MAX_ENTRY)
  123. /* Index of default vid filter for given port */
  124. #define MVPP2_PRS_VID_PORT_DFLT(port) (MVPP2_PRS_VID_PORT_FIRST(port) \
  125. + MVPP2_PRS_VLAN_FILT_DFLT_ENTRY)
  126. /* Sram structure
  127. * The fields are represented by MVPP2_PRS_TCAM_DATA_REG(3)->(0).
  128. */
  129. #define MVPP2_PRS_SRAM_RI_OFFS 0
  130. #define MVPP2_PRS_SRAM_RI_WORD 0
  131. #define MVPP2_PRS_SRAM_RI_CTRL_OFFS 32
  132. #define MVPP2_PRS_SRAM_RI_CTRL_WORD 1
  133. #define MVPP2_PRS_SRAM_RI_CTRL_BITS 32
  134. #define MVPP2_PRS_SRAM_SHIFT_OFFS 64
  135. #define MVPP2_PRS_SRAM_SHIFT_SIGN_BIT 72
  136. #define MVPP2_PRS_SRAM_UDF_OFFS 73
  137. #define MVPP2_PRS_SRAM_UDF_BITS 8
  138. #define MVPP2_PRS_SRAM_UDF_MASK 0xff
  139. #define MVPP2_PRS_SRAM_UDF_SIGN_BIT 81
  140. #define MVPP2_PRS_SRAM_UDF_TYPE_OFFS 82
  141. #define MVPP2_PRS_SRAM_UDF_TYPE_MASK 0x7
  142. #define MVPP2_PRS_SRAM_UDF_TYPE_L3 1
  143. #define MVPP2_PRS_SRAM_UDF_TYPE_L4 4
  144. #define MVPP2_PRS_SRAM_OP_SEL_SHIFT_OFFS 85
  145. #define MVPP2_PRS_SRAM_OP_SEL_SHIFT_MASK 0x3
  146. #define MVPP2_PRS_SRAM_OP_SEL_SHIFT_ADD 1
  147. #define MVPP2_PRS_SRAM_OP_SEL_SHIFT_IP4_ADD 2
  148. #define MVPP2_PRS_SRAM_OP_SEL_SHIFT_IP6_ADD 3
  149. #define MVPP2_PRS_SRAM_OP_SEL_UDF_OFFS 87
  150. #define MVPP2_PRS_SRAM_OP_SEL_UDF_BITS 2
  151. #define MVPP2_PRS_SRAM_OP_SEL_UDF_MASK 0x3
  152. #define MVPP2_PRS_SRAM_OP_SEL_UDF_ADD 0
  153. #define MVPP2_PRS_SRAM_OP_SEL_UDF_IP4_ADD 2
  154. #define MVPP2_PRS_SRAM_OP_SEL_UDF_IP6_ADD 3
  155. #define MVPP2_PRS_SRAM_OP_SEL_BASE_OFFS 89
  156. #define MVPP2_PRS_SRAM_AI_OFFS 90
  157. #define MVPP2_PRS_SRAM_AI_CTRL_OFFS 98
  158. #define MVPP2_PRS_SRAM_AI_CTRL_BITS 8
  159. #define MVPP2_PRS_SRAM_AI_MASK 0xff
  160. #define MVPP2_PRS_SRAM_NEXT_LU_OFFS 106
  161. #define MVPP2_PRS_SRAM_NEXT_LU_MASK 0xf
  162. #define MVPP2_PRS_SRAM_LU_DONE_BIT 110
  163. #define MVPP2_PRS_SRAM_LU_GEN_BIT 111
  164. /* Sram result info bits assignment */
  165. #define MVPP2_PRS_RI_MAC_ME_MASK 0x1
  166. #define MVPP2_PRS_RI_DSA_MASK 0x2
  167. #define MVPP2_PRS_RI_VLAN_MASK (BIT(2) | BIT(3))
  168. #define MVPP2_PRS_RI_VLAN_NONE 0x0
  169. #define MVPP2_PRS_RI_VLAN_SINGLE BIT(2)
  170. #define MVPP2_PRS_RI_VLAN_DOUBLE BIT(3)
  171. #define MVPP2_PRS_RI_VLAN_TRIPLE (BIT(2) | BIT(3))
  172. #define MVPP2_PRS_RI_CPU_CODE_MASK 0x70
  173. #define MVPP2_PRS_RI_CPU_CODE_RX_SPEC BIT(4)
  174. #define MVPP2_PRS_RI_L2_CAST_MASK (BIT(9) | BIT(10))
  175. #define MVPP2_PRS_RI_L2_UCAST 0x0
  176. #define MVPP2_PRS_RI_L2_MCAST BIT(9)
  177. #define MVPP2_PRS_RI_L2_BCAST BIT(10)
  178. #define MVPP2_PRS_RI_PPPOE_MASK 0x800
  179. #define MVPP2_PRS_RI_L3_PROTO_MASK (BIT(12) | BIT(13) | BIT(14))
  180. #define MVPP2_PRS_RI_L3_UN 0x0
  181. #define MVPP2_PRS_RI_L3_IP4 BIT(12)
  182. #define MVPP2_PRS_RI_L3_IP4_OPT BIT(13)
  183. #define MVPP2_PRS_RI_L3_IP4_OTHER (BIT(12) | BIT(13))
  184. #define MVPP2_PRS_RI_L3_IP6 BIT(14)
  185. #define MVPP2_PRS_RI_L3_IP6_EXT (BIT(12) | BIT(14))
  186. #define MVPP2_PRS_RI_L3_ARP (BIT(13) | BIT(14))
  187. #define MVPP2_PRS_RI_L3_ADDR_MASK (BIT(15) | BIT(16))
  188. #define MVPP2_PRS_RI_L3_UCAST 0x0
  189. #define MVPP2_PRS_RI_L3_MCAST BIT(15)
  190. #define MVPP2_PRS_RI_L3_BCAST (BIT(15) | BIT(16))
  191. #define MVPP2_PRS_RI_IP_FRAG_MASK 0x20000
  192. #define MVPP2_PRS_RI_IP_FRAG_TRUE BIT(17)
  193. #define MVPP2_PRS_RI_UDF3_MASK 0x300000
  194. #define MVPP2_PRS_RI_UDF3_RX_SPECIAL BIT(21)
  195. #define MVPP2_PRS_RI_L4_PROTO_MASK 0x1c00000
  196. #define MVPP2_PRS_RI_L4_TCP BIT(22)
  197. #define MVPP2_PRS_RI_L4_UDP BIT(23)
  198. #define MVPP2_PRS_RI_L4_OTHER (BIT(22) | BIT(23))
  199. #define MVPP2_PRS_RI_UDF7_MASK 0x60000000
  200. #define MVPP2_PRS_RI_UDF7_IP6_LITE BIT(29)
  201. #define MVPP2_PRS_RI_DROP_MASK 0x80000000
  202. /* Sram additional info bits assignment */
  203. #define MVPP2_PRS_IPV4_DIP_AI_BIT BIT(0)
  204. #define MVPP2_PRS_IPV6_NO_EXT_AI_BIT BIT(0)
  205. #define MVPP2_PRS_IPV6_EXT_AI_BIT BIT(1)
  206. #define MVPP2_PRS_IPV6_EXT_AH_AI_BIT BIT(2)
  207. #define MVPP2_PRS_IPV6_EXT_AH_LEN_AI_BIT BIT(3)
  208. #define MVPP2_PRS_IPV6_EXT_AH_L4_AI_BIT BIT(4)
  209. #define MVPP2_PRS_SINGLE_VLAN_AI 0
  210. #define MVPP2_PRS_DBL_VLAN_AI_BIT BIT(7)
  211. #define MVPP2_PRS_EDSA_VID_AI_BIT BIT(0)
  212. /* DSA/EDSA type */
  213. #define MVPP2_PRS_TAGGED true
  214. #define MVPP2_PRS_UNTAGGED false
  215. #define MVPP2_PRS_EDSA true
  216. #define MVPP2_PRS_DSA false
  217. /* MAC entries, shadow udf */
  218. enum mvpp2_prs_udf {
  219. MVPP2_PRS_UDF_MAC_DEF,
  220. MVPP2_PRS_UDF_MAC_RANGE,
  221. MVPP2_PRS_UDF_L2_DEF,
  222. MVPP2_PRS_UDF_L2_DEF_COPY,
  223. MVPP2_PRS_UDF_L2_USER,
  224. };
  225. /* Lookup ID */
  226. enum mvpp2_prs_lookup {
  227. MVPP2_PRS_LU_MH,
  228. MVPP2_PRS_LU_MAC,
  229. MVPP2_PRS_LU_DSA,
  230. MVPP2_PRS_LU_VLAN,
  231. MVPP2_PRS_LU_VID,
  232. MVPP2_PRS_LU_L2,
  233. MVPP2_PRS_LU_PPPOE,
  234. MVPP2_PRS_LU_IP4,
  235. MVPP2_PRS_LU_IP6,
  236. MVPP2_PRS_LU_FLOWS,
  237. MVPP2_PRS_LU_LAST,
  238. };
  239. union mvpp2_prs_tcam_entry {
  240. u32 word[MVPP2_PRS_TCAM_WORDS];
  241. u8 byte[MVPP2_PRS_TCAM_WORDS * 4];
  242. };
  243. union mvpp2_prs_sram_entry {
  244. u32 word[MVPP2_PRS_SRAM_WORDS];
  245. u8 byte[MVPP2_PRS_SRAM_WORDS * 4];
  246. };
  247. struct mvpp2_prs_entry {
  248. u32 index;
  249. union mvpp2_prs_tcam_entry tcam;
  250. union mvpp2_prs_sram_entry sram;
  251. };
  252. struct mvpp2_prs_shadow {
  253. bool valid;
  254. bool finish;
  255. /* Lookup ID */
  256. int lu;
  257. /* User defined offset */
  258. int udf;
  259. /* Result info */
  260. u32 ri;
  261. u32 ri_mask;
  262. };
  263. int mvpp2_prs_default_init(struct platform_device *pdev, struct mvpp2 *priv);
  264. int mvpp2_prs_mac_da_accept(struct mvpp2_port *port, const u8 *da, bool add);
  265. int mvpp2_prs_tag_mode_set(struct mvpp2 *priv, int port, int type);
  266. int mvpp2_prs_def_flow(struct mvpp2_port *port);
  267. void mvpp2_prs_vid_enable_filtering(struct mvpp2_port *port);
  268. void mvpp2_prs_vid_disable_filtering(struct mvpp2_port *port);
  269. int mvpp2_prs_vid_entry_add(struct mvpp2_port *port, u16 vid);
  270. void mvpp2_prs_vid_entry_remove(struct mvpp2_port *port, u16 vid);
  271. void mvpp2_prs_vid_remove_all(struct mvpp2_port *port);
  272. void mvpp2_prs_mac_promisc_set(struct mvpp2 *priv, int port,
  273. enum mvpp2_prs_l2_cast l2_cast, bool add);
  274. void mvpp2_prs_mac_del_all(struct mvpp2_port *port);
  275. int mvpp2_prs_update_mac_da(struct net_device *dev, const u8 *da);
  276. #endif