ar8216.h 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. /*
  2. * ar8216.h: AR8216 switch driver
  3. *
  4. * Copyright (C) 2009 Felix Fietkau <[email protected]>
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public License
  8. * as published by the Free Software Foundation; either version 2
  9. * of the License, or (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. */
  16. #ifndef __AR8216_H
  17. #define __AR8216_H
  18. #define BITS(_s, _n) (((1UL << (_n)) - 1) << _s)
  19. #define AR8216_PORT_CPU 0
  20. #define AR8216_NUM_PORTS 6
  21. #define AR8216_NUM_VLANS 16
  22. #define AR8216_REG_CTRL 0x0000
  23. #define AR8216_CTRL_RESET BIT(31)
  24. #define AR8216_REG_GLOBAL_CTRL 0x0030
  25. #define AR8216_GCTRL_MTU BITS(0, 10)
  26. #define AR8216_REG_VTU 0x0040
  27. #define AR8216_VTU_OP BITS(0, 3)
  28. #define AR8216_VTU_OP_NOOP 0x0
  29. #define AR8216_VTU_OP_FLUSH 0x1
  30. #define AR8216_VTU_OP_LOAD 0x2
  31. #define AR8216_VTU_OP_PURGE 0x3
  32. #define AR8216_VTU_OP_REMOVE_PORT 0x4
  33. #define AR8216_VTU_ACTIVE BIT(3)
  34. #define AR8216_VTU_FULL BIT(4)
  35. #define AR8216_VTU_PORT BITS(8, 4)
  36. #define AR8216_VTU_PORT_S 8
  37. #define AR8216_VTU_VID BITS(16, 12)
  38. #define AR8216_VTU_VID_S 16
  39. #define AR8216_VTU_PRIO BITS(28, 3)
  40. #define AR8216_VTU_PRIO_S 28
  41. #define AR8216_VTU_PRIO_EN BIT(31)
  42. #define AR8216_REG_VTU_DATA 0x0044
  43. #define AR8216_VTUDATA_MEMBER BITS(0, 10)
  44. #define AR8216_VTUDATA_VALID BIT(11)
  45. #define AR8216_REG_ATU 0x0050
  46. #define AR8216_ATU_OP BITS(0, 3)
  47. #define AR8216_ATU_OP_NOOP 0x0
  48. #define AR8216_ATU_OP_FLUSH 0x1
  49. #define AR8216_ATU_OP_LOAD 0x2
  50. #define AR8216_ATU_OP_PURGE 0x3
  51. #define AR8216_ATU_OP_FLUSH_LOCKED 0x4
  52. #define AR8216_ATU_OP_FLUSH_UNICAST 0x5
  53. #define AR8216_ATU_OP_GET_NEXT 0x6
  54. #define AR8216_ATU_ACTIVE BIT(3)
  55. #define AR8216_ATU_PORT_NUM BITS(8, 4)
  56. #define AR8216_ATU_FULL_VIO BIT(12)
  57. #define AR8216_ATU_ADDR4 BITS(16, 8)
  58. #define AR8216_ATU_ADDR5 BITS(24, 8)
  59. #define AR8216_REG_ATU_DATA 0x0054
  60. #define AR8216_ATU_ADDR3 BITS(0, 8)
  61. #define AR8216_ATU_ADDR2 BITS(8, 8)
  62. #define AR8216_ATU_ADDR1 BITS(16, 8)
  63. #define AR8216_ATU_ADDR0 BITS(24, 8)
  64. #define AR8216_PORT_OFFSET(_i) (0x0100 * (_i + 1))
  65. #define AR8216_REG_PORT_STATUS(_i) (AR8216_PORT_OFFSET(_i) + 0x0000)
  66. #define AR8216_PORT_STATUS_SPEED BIT(0)
  67. #define AR8216_PORT_STATUS_SPEED_ERR BIT(1)
  68. #define AR8216_PORT_STATUS_TXMAC BIT(2)
  69. #define AR8216_PORT_STATUS_RXMAC BIT(3)
  70. #define AR8216_PORT_STATUS_TXFLOW BIT(4)
  71. #define AR8216_PORT_STATUS_RXFLOW BIT(5)
  72. #define AR8216_PORT_STATUS_DUPLEX BIT(6)
  73. #define AR8216_PORT_STATUS_LINK_UP BIT(8)
  74. #define AR8216_PORT_STATUS_LINK_AUTO BIT(9)
  75. #define AR8216_PORT_STATUS_LINK_PAUSE BIT(10)
  76. #define AR8216_REG_PORT_CTRL(_i) (AR8216_PORT_OFFSET(_i) + 0x0004)
  77. /* port forwarding state */
  78. #define AR8216_PORT_CTRL_STATE BITS(0, 3)
  79. #define AR8216_PORT_CTRL_STATE_S 0
  80. #define AR8216_PORT_CTRL_LEARN_LOCK BIT(7)
  81. /* egress 802.1q mode */
  82. #define AR8216_PORT_CTRL_VLAN_MODE BITS(8, 2)
  83. #define AR8216_PORT_CTRL_VLAN_MODE_S 8
  84. #define AR8216_PORT_CTRL_IGMP_SNOOP BIT(10)
  85. #define AR8216_PORT_CTRL_HEADER BIT(11)
  86. #define AR8216_PORT_CTRL_MAC_LOOP BIT(12)
  87. #define AR8216_PORT_CTRL_SINGLE_VLAN BIT(13)
  88. #define AR8216_PORT_CTRL_LEARN BIT(14)
  89. #define AR8216_PORT_CTRL_MIRROR_TX BIT(16)
  90. #define AR8216_PORT_CTRL_MIRROR_RX BIT(17)
  91. #define AR8216_REG_PORT_VLAN(_i) (AR8216_PORT_OFFSET(_i) + 0x0008)
  92. #define AR8216_PORT_VLAN_DEFAULT_ID BITS(0, 12)
  93. #define AR8216_PORT_VLAN_DEFAULT_ID_S 0
  94. #define AR8216_PORT_VLAN_DEST_PORTS BITS(16, 9)
  95. #define AR8216_PORT_VLAN_DEST_PORTS_S 16
  96. /* bit0 added to the priority field of egress frames */
  97. #define AR8216_PORT_VLAN_TX_PRIO BIT(27)
  98. /* port default priority */
  99. #define AR8216_PORT_VLAN_PRIORITY BITS(28, 2)
  100. #define AR8216_PORT_VLAN_PRIORITY_S 28
  101. /* ingress 802.1q mode */
  102. #define AR8216_PORT_VLAN_MODE BITS(30, 2)
  103. #define AR8216_PORT_VLAN_MODE_S 30
  104. #define AR8216_REG_PORT_RATE(_i) (AR8216_PORT_OFFSET(_i) + 0x000c)
  105. #define AR8216_REG_PORT_PRIO(_i) (AR8216_PORT_OFFSET(_i) + 0x0010)
  106. /* ingress 802.1q mode */
  107. enum {
  108. AR8216_IN_PORT_ONLY = 0,
  109. AR8216_IN_PORT_FALLBACK = 1,
  110. AR8216_IN_VLAN_ONLY = 2,
  111. AR8216_IN_SECURE = 3
  112. };
  113. /* egress 802.1q mode */
  114. enum {
  115. AR8216_OUT_KEEP = 0,
  116. AR8216_OUT_STRIP_VLAN = 1,
  117. AR8216_OUT_ADD_VLAN = 2
  118. };
  119. /* port forwarding state */
  120. enum {
  121. AR8216_PORT_STATE_DISABLED = 0,
  122. AR8216_PORT_STATE_BLOCK = 1,
  123. AR8216_PORT_STATE_LISTEN = 2,
  124. AR8216_PORT_STATE_LEARN = 3,
  125. AR8216_PORT_STATE_FORWARD = 4
  126. };
  127. #endif