xref: /linux/drivers/net/dsa/b53/b53_regs.h (revision 8be4d31cb8aaeea27bde4b7ddb26e28a89062ebf)
1 /*
2  * B53 register definitions
3  *
4  * Copyright (C) 2004 Broadcom Corporation
5  * Copyright (C) 2011-2013 Jonas Gorski <jogo@openwrt.org>
6  *
7  * Permission to use, copy, modify, and/or distribute this software for any
8  * purpose with or without fee is hereby granted, provided that the above
9  * copyright notice and this permission notice appear in all copies.
10  *
11  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
12  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
13  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
14  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
15  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
16  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
17  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
18  */
19 
20 #ifndef __B53_REGS_H
21 #define __B53_REGS_H
22 
23 /* Management Port (SMP) Page offsets */
24 #define B53_CTRL_PAGE			0x00 /* Control */
25 #define B53_STAT_PAGE			0x01 /* Status */
26 #define B53_MGMT_PAGE			0x02 /* Management Mode */
27 #define B53_MIB_AC_PAGE			0x03 /* MIB Autocast */
28 #define B53_ARLCTRL_PAGE		0x04 /* ARL Control */
29 #define B53_ARLIO_PAGE			0x05 /* ARL Access */
30 #define B53_FRAMEBUF_PAGE		0x06 /* Management frame access */
31 #define B53_MEM_ACCESS_PAGE		0x08 /* Memory access */
32 #define B53_IEEE_PAGE			0x0a /* IEEE 802.1X */
33 
34 /* PHY Registers */
35 #define B53_PORT_MII_PAGE(i)		(0x10 + (i)) /* Port i MII Registers */
36 #define B53_IM_PORT_PAGE		0x18 /* Inverse MII Port (to EMAC) */
37 #define B53_ALL_PORT_PAGE		0x19 /* All ports MII (broadcast) */
38 
39 /* MIB registers */
40 #define B53_MIB_PAGE(i)			(0x20 + (i))
41 
42 /* Quality of Service (QoS) Registers */
43 #define B53_QOS_PAGE			0x30
44 
45 /* Port VLAN Page */
46 #define B53_PVLAN_PAGE			0x31
47 
48 /* VLAN Registers */
49 #define B53_VLAN_PAGE			0x34
50 
51 /* Jumbo Frame Registers */
52 #define B53_JUMBO_PAGE			0x40
53 
54 /* EAP Registers */
55 #define B53_EAP_PAGE			0x42
56 
57 /* EEE Control Registers Page */
58 #define B53_EEE_PAGE			0x92
59 
60 /* CFP Configuration Registers Page */
61 #define B53_CFP_PAGE			0xa1
62 
63 /*************************************************************************
64  * Control Page registers
65  *************************************************************************/
66 
67 /* Port Control Register (8 bit) */
68 #define B53_PORT_CTRL(i)		(0x00 + (i))
69 #define   PORT_CTRL_RX_DISABLE		BIT(0)
70 #define   PORT_CTRL_TX_DISABLE		BIT(1)
71 #define   PORT_CTRL_RX_BCST_EN		BIT(2) /* Broadcast RX (P8 only) */
72 #define   PORT_CTRL_RX_MCST_EN		BIT(3) /* Multicast RX (P8 only) */
73 #define   PORT_CTRL_RX_UCST_EN		BIT(4) /* Unicast RX (P8 only) */
74 #define	  PORT_CTRL_STP_STATE_S		5
75 #define   PORT_CTRL_NO_STP		(0 << PORT_CTRL_STP_STATE_S)
76 #define   PORT_CTRL_DIS_STATE		(1 << PORT_CTRL_STP_STATE_S)
77 #define   PORT_CTRL_BLOCK_STATE		(2 << PORT_CTRL_STP_STATE_S)
78 #define   PORT_CTRL_LISTEN_STATE	(3 << PORT_CTRL_STP_STATE_S)
79 #define   PORT_CTRL_LEARN_STATE		(4 << PORT_CTRL_STP_STATE_S)
80 #define   PORT_CTRL_FWD_STATE		(5 << PORT_CTRL_STP_STATE_S)
81 #define   PORT_CTRL_STP_STATE_MASK	(0x7 << PORT_CTRL_STP_STATE_S)
82 
83 /* SMP Control Register (8 bit) */
84 #define B53_SMP_CTRL			0x0a
85 
86 /* Switch Mode Control Register (8 bit) */
87 #define B53_SWITCH_MODE			0x0b
88 #define   SM_SW_FWD_MODE		BIT(0)	/* 1 = Managed Mode */
89 #define   SM_SW_FWD_EN			BIT(1)	/* Forwarding Enable */
90 
91 /* IMP Port state override register (8 bit) */
92 #define B53_PORT_OVERRIDE_CTRL		0x0e
93 #define   PORT_OVERRIDE_LINK		BIT(0)
94 #define   PORT_OVERRIDE_FULL_DUPLEX	BIT(1) /* 0 = Half Duplex */
95 #define   PORT_OVERRIDE_SPEED_S		2
96 #define   PORT_OVERRIDE_SPEED_10M	(0 << PORT_OVERRIDE_SPEED_S)
97 #define   PORT_OVERRIDE_SPEED_100M	(1 << PORT_OVERRIDE_SPEED_S)
98 #define   PORT_OVERRIDE_SPEED_1000M	(2 << PORT_OVERRIDE_SPEED_S)
99 #define   PORT_OVERRIDE_LP_FLOW_25	BIT(3) /* BCM5325 only */
100 #define   PORT_OVERRIDE_RV_MII_25	BIT(4) /* BCM5325 only */
101 #define   PORT_OVERRIDE_RX_FLOW		BIT(4)
102 #define   PORT_OVERRIDE_TX_FLOW		BIT(5)
103 #define   PORT_OVERRIDE_SPEED_2000M	BIT(6) /* BCM5301X only, requires setting 1000M */
104 #define   PORT_OVERRIDE_EN		BIT(7) /* Use the register contents */
105 
106 /* Power-down mode control (8 bit) */
107 #define B53_PD_MODE_CTRL_25		0x0f
108 #define  PD_MODE_PORT_MASK		0x1f
109 /* Bit 0 also powers down the switch. */
110 #define  PD_MODE_POWER_DOWN_PORT(i)	BIT(i)
111 
112 /* IP Multicast control (8 bit) */
113 #define B53_IP_MULTICAST_CTRL		0x21
114 #define  B53_IP_MCAST_25		BIT(0)
115 #define  B53_IPMC_FWD_EN		BIT(1)
116 #define  B53_UC_FWD_EN			BIT(6)
117 #define  B53_MC_FWD_EN			BIT(7)
118 
119 /* Switch control (8 bit) */
120 #define B53_SWITCH_CTRL			0x22
121 #define  B53_MII_DUMB_FWDG_EN		BIT(6)
122 
123 /* (16 bit) */
124 #define B53_UC_FLOOD_MASK		0x32
125 #define B53_MC_FLOOD_MASK		0x34
126 #define B53_IPMC_FLOOD_MASK		0x36
127 #define B53_DIS_LEARNING		0x3c
128 
129 /*
130  * Override Ports 0-7 State on devices with xMII interfaces (8 bit)
131  *
132  * For port 8 still use B53_PORT_OVERRIDE_CTRL
133  * Please note that not all ports are available on every hardware, e.g. BCM5301X
134  * don't include overriding port 6, BCM63xx also have some limitations.
135  */
136 #define B53_GMII_PORT_OVERRIDE_CTRL(i)	(0x58 + (i))
137 #define   GMII_PO_LINK			BIT(0)
138 #define   GMII_PO_FULL_DUPLEX		BIT(1) /* 0 = Half Duplex */
139 #define   GMII_PO_SPEED_S		2
140 #define   GMII_PO_SPEED_10M		(0 << GMII_PO_SPEED_S)
141 #define   GMII_PO_SPEED_100M		(1 << GMII_PO_SPEED_S)
142 #define   GMII_PO_SPEED_1000M		(2 << GMII_PO_SPEED_S)
143 #define   GMII_PO_RX_FLOW		BIT(4)
144 #define   GMII_PO_TX_FLOW		BIT(5)
145 #define   GMII_PO_EN			BIT(6) /* Use the register contents */
146 #define   GMII_PO_SPEED_2000M		BIT(7) /* BCM5301X only, requires setting 1000M */
147 
148 #define B53_RGMII_CTRL_IMP		0x60
149 #define   RGMII_CTRL_ENABLE_GMII	BIT(7)
150 #define   RGMII_CTRL_MII_OVERRIDE	BIT(6)
151 #define   RGMII_CTRL_TIMING_SEL		BIT(2)
152 #define   RGMII_CTRL_DLL_RXC		BIT(1)
153 #define   RGMII_CTRL_DLL_TXC		BIT(0)
154 
155 #define B53_RGMII_CTRL_P(i)		(B53_RGMII_CTRL_IMP + (i))
156 
157 /* Software reset register (8 bit) */
158 #define B53_SOFTRESET			0x79
159 #define   SW_RST			BIT(7)
160 #define   EN_CH_RST			BIT(6)
161 #define   EN_SW_RST			BIT(4)
162 
163 /* Fast Aging Control register (8 bit) */
164 #define B53_FAST_AGE_CTRL		0x88
165 #define   FAST_AGE_STATIC		BIT(0)
166 #define   FAST_AGE_DYNAMIC		BIT(1)
167 #define   FAST_AGE_PORT			BIT(2)
168 #define   FAST_AGE_VLAN			BIT(3)
169 #define   FAST_AGE_STP			BIT(4)
170 #define   FAST_AGE_MC			BIT(5)
171 #define   FAST_AGE_DONE			BIT(7)
172 
173 /* Fast Aging Port Control register (8 bit) */
174 #define B53_FAST_AGE_PORT_CTRL		0x89
175 
176 /* Fast Aging VID Control register (16 bit) */
177 #define B53_FAST_AGE_VID_CTRL		0x8a
178 
179 /*************************************************************************
180  * Status Page registers
181  *************************************************************************/
182 
183 /* Link Status Summary Register (16bit) */
184 #define B53_LINK_STAT			0x00
185 
186 /* Link Status Change Register (16 bit) */
187 #define B53_LINK_STAT_CHANGE		0x02
188 
189 /* Port Speed Summary Register (16 bit for FE, 32 bit for GE) */
190 #define B53_SPEED_STAT			0x04
191 #define  SPEED_PORT_FE(reg, port)	(((reg) >> (port)) & 1)
192 #define  SPEED_PORT_GE(reg, port)	(((reg) >> 2 * (port)) & 3)
193 #define  SPEED_STAT_10M			0
194 #define  SPEED_STAT_100M		1
195 #define  SPEED_STAT_1000M		2
196 
197 /* Duplex Status Summary (16 bit) */
198 #define B53_DUPLEX_STAT_FE		0x06
199 #define B53_DUPLEX_STAT_GE		0x08
200 #define B53_DUPLEX_STAT_63XX		0x0c
201 
202 /* Revision ID register for BCM5325 */
203 #define B53_REV_ID_25			0x50
204 
205 /* Strap Value (48 bit) */
206 #define B53_STRAP_VALUE			0x70
207 #define   SV_GMII_CTRL_115		BIT(27)
208 
209 /*************************************************************************
210  * Management Mode Page Registers
211  *************************************************************************/
212 
213 /* Global Management Config Register (8 bit) */
214 #define B53_GLOBAL_CONFIG		0x00
215 #define   GC_RESET_MIB			0x01
216 #define   GC_RX_BPDU_EN			0x02
217 #define   GC_MIB_AC_HDR_EN		0x10
218 #define   GC_MIB_AC_EN			0x20
219 #define   GC_FRM_MGMT_PORT_M		0xC0
220 #define   GC_FRM_MGMT_PORT_04		0x00
221 #define   GC_FRM_MGMT_PORT_MII		0x80
222 
223 /* Broadcom Header control register (8 bit) */
224 #define B53_BRCM_HDR			0x03
225 #define   BRCM_HDR_P8_EN		BIT(0) /* Enable tagging on port 8 */
226 #define   BRCM_HDR_P5_EN		BIT(1) /* Enable tagging on port 5 */
227 #define   BRCM_HDR_P7_EN		BIT(2) /* Enable tagging on port 7 */
228 
229 /* Aging Time control register (32 bit) */
230 #define B53_AGING_TIME_CONTROL		0x06
231 #define B53_AGING_TIME_CONTROL_63XX	0x08
232 #define  AGE_CHANGE			BIT(20)
233 #define  AGE_TIME_MASK			0x7ffff
234 #define  AGE_TIME_MAX			1048575
235 
236 /* Mirror capture control register (16 bit) */
237 #define B53_MIR_CAP_CTL			0x10
238 #define  CAP_PORT_MASK			0xf
239 #define  BLK_NOT_MIR			BIT(14)
240 #define  MIRROR_EN			BIT(15)
241 
242 /* Ingress mirror control register (16 bit) */
243 #define B53_IG_MIR_CTL			0x12
244 #define  MIRROR_MASK			0x1ff
245 #define  DIV_EN				BIT(13)
246 #define  MIRROR_FILTER_MASK		0x3
247 #define  MIRROR_FILTER_SHIFT		14
248 #define  MIRROR_ALL			0
249 #define  MIRROR_DA			1
250 #define  MIRROR_SA			2
251 
252 /* Ingress mirror divider register (16 bit) */
253 #define B53_IG_MIR_DIV			0x14
254 #define  IN_MIRROR_DIV_MASK		0x3ff
255 
256 /* Ingress mirror MAC address register (48 bit) */
257 #define B53_IG_MIR_MAC			0x16
258 
259 /* Egress mirror control register (16 bit) */
260 #define B53_EG_MIR_CTL			0x1C
261 
262 /* Egress mirror divider register (16 bit) */
263 #define B53_EG_MIR_DIV			0x1E
264 
265 /* Egress mirror MAC address register (48 bit) */
266 #define B53_EG_MIR_MAC			0x20
267 
268 /* Device ID register (8 or 32 bit) */
269 #define B53_DEVICE_ID			0x30
270 
271 /* Revision ID register (8 bit) */
272 #define B53_REV_ID			0x40
273 
274 /* Broadcom header RX control (16 bit) */
275 #define B53_BRCM_HDR_RX_DIS		0x60
276 
277 /* Broadcom header TX control (16 bit)	*/
278 #define B53_BRCM_HDR_TX_DIS		0x62
279 
280 /*************************************************************************
281  * ARL Access Page Registers
282  *************************************************************************/
283 
284 /* VLAN Table Access Register (8 bit) */
285 #define B53_VT_ACCESS			0x80
286 #define B53_VT_ACCESS_9798		0x60 /* for BCM5397/BCM5398 */
287 #define B53_VT_ACCESS_63XX		0x60 /* for BCM6328/62/68 */
288 #define   VTA_CMD_WRITE			0
289 #define   VTA_CMD_READ			1
290 #define   VTA_CMD_CLEAR			2
291 #define   VTA_START_CMD			BIT(7)
292 
293 /* VLAN Table Index Register (16 bit) */
294 #define B53_VT_INDEX			0x81
295 #define B53_VT_INDEX_9798		0x61
296 #define B53_VT_INDEX_63XX		0x62
297 
298 /* VLAN Table Entry Register (32 bit) */
299 #define B53_VT_ENTRY			0x83
300 #define B53_VT_ENTRY_9798		0x63
301 #define B53_VT_ENTRY_63XX		0x64
302 #define   VTE_MEMBERS			0x1ff
303 #define   VTE_UNTAG_S			9
304 #define   VTE_UNTAG			(0x1ff << 9)
305 
306 /*************************************************************************
307  * ARL I/O Registers
308  *************************************************************************/
309 
310 /* ARL Table Read/Write Register (8 bit) */
311 #define B53_ARLTBL_RW_CTRL		0x00
312 #define    ARLTBL_RW			BIT(0)
313 #define    ARLTBL_IVL_SVL_SELECT	BIT(6)
314 #define    ARLTBL_START_DONE		BIT(7)
315 
316 /* MAC Address Index Register (48 bit) */
317 #define B53_MAC_ADDR_IDX		0x02
318 
319 /* VLAN ID Index Register (16 bit) */
320 #define B53_VLAN_ID_IDX			0x08
321 
322 /* ARL Table MAC/VID Entry N Registers (64 bit)
323  *
324  * BCM5325 and BCM5365 share most definitions below
325  */
326 #define B53_ARLTBL_MAC_VID_ENTRY(n)	((0x10 * (n)) + 0x10)
327 #define   ARLTBL_MAC_MASK		0xffffffffffffULL
328 #define   ARLTBL_VID_S			48
329 #define   ARLTBL_VID_MASK_25		0xff
330 #define   ARLTBL_VID_MASK		0xfff
331 #define   ARLTBL_DATA_PORT_ID_S_25	48
332 #define   ARLTBL_DATA_PORT_ID_MASK_25	0xf
333 #define   ARLTBL_VID_S_65		53
334 #define   ARLTBL_AGE_25			BIT_ULL(61)
335 #define   ARLTBL_STATIC_25		BIT_ULL(62)
336 #define   ARLTBL_VALID_25		BIT_ULL(63)
337 
338 /* ARL Table Data Entry N Registers (32 bit) */
339 #define B53_ARLTBL_DATA_ENTRY(n)	((0x10 * (n)) + 0x18)
340 #define   ARLTBL_DATA_PORT_ID_MASK	0x1ff
341 #define   ARLTBL_TC(tc)			((3 & tc) << 11)
342 #define   ARLTBL_AGE			BIT(14)
343 #define   ARLTBL_STATIC			BIT(15)
344 #define   ARLTBL_VALID			BIT(16)
345 
346 /* Maximum number of bin entries in the ARL for all switches */
347 #define B53_ARLTBL_MAX_BIN_ENTRIES	4
348 
349 /* ARL Search Control Register (8 bit) */
350 #define B53_ARL_SRCH_CTL		0x50
351 #define B53_ARL_SRCH_CTL_25		0x20
352 #define   ARL_SRCH_VLID			BIT(0)
353 #define   ARL_SRCH_STDN			BIT(7)
354 
355 /* ARL Search Address Register (16 bit) */
356 #define B53_ARL_SRCH_ADDR		0x51
357 #define B53_ARL_SRCH_ADDR_25		0x22
358 #define B53_ARL_SRCH_ADDR_65		0x24
359 #define  ARL_ADDR_MASK			GENMASK(14, 0)
360 
361 /* ARL Search MAC/VID Result (64 bit) */
362 #define B53_ARL_SRCH_RSTL_0_MACVID	0x60
363 
364 /* Single register search result on 5325 */
365 #define B53_ARL_SRCH_RSTL_0_MACVID_25	0x24
366 /* Single register search result on 5365 */
367 #define B53_ARL_SRCH_RSTL_0_MACVID_65	0x30
368 
369 /* ARL Search Data Result (32 bit) */
370 #define B53_ARL_SRCH_RSTL_0		0x68
371 
372 #define B53_ARL_SRCH_RSTL_MACVID(x)	(B53_ARL_SRCH_RSTL_0_MACVID + ((x) * 0x10))
373 #define B53_ARL_SRCH_RSTL(x)		(B53_ARL_SRCH_RSTL_0 + ((x) * 0x10))
374 
375 /*************************************************************************
376  * IEEE 802.1X Registers
377  *************************************************************************/
378 
379 /* Multicast DLF Drop Control register (16 bit) */
380 #define B53_IEEE_MCAST_DLF		0x94
381 #define B53_IEEE_MCAST_DROP_EN		BIT(11)
382 
383 /* Unicast DLF Drop Control register (16 bit) */
384 #define B53_IEEE_UCAST_DLF		0x96
385 #define B53_IEEE_UCAST_DROP_EN		BIT(11)
386 
387 /*************************************************************************
388  * Port VLAN Registers
389  *************************************************************************/
390 
391 /* Port VLAN mask (16 bit) IMP port is always 8, also on 5325 & co */
392 #define B53_PVLAN_PORT_MASK(i)		((i) * 2)
393 
394 /* Join all VLANs register (16 bit) */
395 #define B53_JOIN_ALL_VLAN_EN		0x50
396 
397 /*************************************************************************
398  * 802.1Q Page Registers
399  *************************************************************************/
400 
401 /* Global QoS Control (8 bit) */
402 #define B53_QOS_GLOBAL_CTL		0x00
403 
404 /* Enable 802.1Q for individual Ports (16 bit) */
405 #define B53_802_1P_EN			0x04
406 
407 /*************************************************************************
408  * VLAN Page Registers
409  *************************************************************************/
410 
411 /* VLAN Control 0 (8 bit) */
412 #define B53_VLAN_CTRL0			0x00
413 #define   VC0_8021PF_CTRL_MASK		0x3
414 #define   VC0_8021PF_CTRL_NONE		0x0
415 #define   VC0_8021PF_CTRL_CHANGE_PRI	0x1
416 #define   VC0_8021PF_CTRL_CHANGE_VID	0x2
417 #define   VC0_8021PF_CTRL_CHANGE_BOTH	0x3
418 #define   VC0_8021QF_CTRL_MASK		0xc
419 #define   VC0_8021QF_CTRL_CHANGE_PRI	0x1
420 #define   VC0_8021QF_CTRL_CHANGE_VID	0x2
421 #define   VC0_8021QF_CTRL_CHANGE_BOTH	0x3
422 #define   VC0_RESERVED_1		BIT(1)
423 #define   VC0_DROP_VID_MISS		BIT(4)
424 #define   VC0_VID_HASH_VID		BIT(5)
425 #define   VC0_VID_CHK_EN		BIT(6)	/* Use VID,DA or VID,SA */
426 #define   VC0_VLAN_EN			BIT(7)	/* 802.1Q VLAN Enabled */
427 
428 /* VLAN Control 1 (8 bit) */
429 #define B53_VLAN_CTRL1			0x01
430 #define   VC1_RX_MCST_TAG_EN		BIT(1)
431 #define   VC1_RX_MCST_FWD_EN		BIT(2)
432 #define   VC1_RX_MCST_UNTAG_EN		BIT(3)
433 
434 /* VLAN Control 2 (8 bit) */
435 #define B53_VLAN_CTRL2			0x02
436 
437 /* VLAN Control 3 (8 bit when BCM5325, 16 bit else) */
438 #define B53_VLAN_CTRL3			0x03
439 #define B53_VLAN_CTRL3_63XX		0x04
440 #define   VC3_MAXSIZE_1532		BIT(6) /* 5325 only */
441 #define   VC3_HIGH_8BIT_EN		BIT(7) /* 5325 only */
442 
443 /* VLAN Control 4 (8 bit) */
444 #define B53_VLAN_CTRL4			0x05
445 #define B53_VLAN_CTRL4_25		0x04
446 #define B53_VLAN_CTRL4_63XX		0x06
447 #define   VC4_ING_VID_CHECK_S		6
448 #define   VC4_ING_VID_CHECK_MASK	(0x3 << VC4_ING_VID_CHECK_S)
449 #define   VC4_ING_VID_VIO_FWD		0 /* forward, but do not learn */
450 #define   VC4_ING_VID_VIO_DROP		1 /* drop VID violations */
451 #define   VC4_NO_ING_VID_CHK		2 /* do not check */
452 #define   VC4_ING_VID_VIO_TO_IMP	3 /* redirect to MII port */
453 
454 /* VLAN Control 5 (8 bit) */
455 #define B53_VLAN_CTRL5			0x06
456 #define B53_VLAN_CTRL5_25		0x05
457 #define B53_VLAN_CTRL5_63XX		0x07
458 #define   VC5_VID_FFF_EN		BIT(2)
459 #define   VC5_DROP_VTABLE_MISS		BIT(3)
460 
461 /* VLAN Control 6 (8 bit) */
462 #define B53_VLAN_CTRL6			0x07
463 #define B53_VLAN_CTRL6_63XX		0x08
464 
465 /* VLAN Table Access Register (16 bit) */
466 #define B53_VLAN_TABLE_ACCESS_25	0x06	/* BCM5325E/5350 */
467 #define B53_VLAN_TABLE_ACCESS_65	0x08	/* BCM5365 */
468 #define   VTA_VID_LOW_MASK_25		0xf
469 #define   VTA_VID_LOW_MASK_65		0xff
470 #define   VTA_VID_HIGH_S_25		4
471 #define   VTA_VID_HIGH_S_65		8
472 #define   VTA_VID_HIGH_MASK_25		(0xff << VTA_VID_HIGH_S_25E)
473 #define   VTA_VID_HIGH_MASK_65		(0xf << VTA_VID_HIGH_S_65)
474 #define   VTA_RW_STATE			BIT(12)
475 #define   VTA_RW_STATE_RD		0
476 #define   VTA_RW_STATE_WR		BIT(12)
477 #define   VTA_RW_OP_EN			BIT(13)
478 
479 /* VLAN Read/Write Registers for (16/32 bit) */
480 #define B53_VLAN_WRITE_25		0x08
481 #define B53_VLAN_WRITE_65		0x0a
482 #define B53_VLAN_READ			0x0c
483 #define   VA_MEMBER_MASK		0x3f
484 #define   VA_UNTAG_S_25			6
485 #define   VA_UNTAG_MASK_25		0x3f
486 #define   VA_UNTAG_S_65			7
487 #define   VA_UNTAG_MASK_65		0x1f
488 #define   VA_VID_HIGH_S			12
489 #define   VA_VID_HIGH_MASK		(0xffff << VA_VID_HIGH_S)
490 #define   VA_VALID_25			BIT(20)
491 #define   VA_VALID_25_R4		BIT(24)
492 #define   VA_VALID_65			BIT(14)
493 
494 /* VLAN Port Default Tag (16 bit) */
495 #define B53_VLAN_PORT_DEF_TAG(i)	(0x10 + 2 * (i))
496 
497 /*************************************************************************
498  * Jumbo Frame Page Registers
499  *************************************************************************/
500 
501 /* Jumbo Enable Port Mask (bit i == port i enabled) (32 bit) */
502 #define B53_JUMBO_PORT_MASK		0x01
503 #define B53_JUMBO_PORT_MASK_63XX	0x04
504 #define   JPM_10_100_JUMBO_EN		BIT(24) /* GigE always enabled */
505 
506 /* Good Frame Max Size without 802.1Q TAG (16 bit) */
507 #define B53_JUMBO_MAX_SIZE		0x05
508 #define B53_JUMBO_MAX_SIZE_63XX		0x08
509 #define   JMS_MIN_SIZE			1518
510 #define   JMS_MAX_SIZE			9724
511 
512 /*************************************************************************
513  * EAP Page Registers
514  *************************************************************************/
515 #define B53_PORT_EAP_CONF(i)		(0x20 + 8 * (i))
516 #define  EAP_MODE_SHIFT			51
517 #define  EAP_MODE_SHIFT_63XX		50
518 #define  EAP_MODE_MASK			(0x3ull << EAP_MODE_SHIFT)
519 #define  EAP_MODE_MASK_63XX		(0x3ull << EAP_MODE_SHIFT_63XX)
520 #define  EAP_MODE_BASIC			0
521 #define  EAP_MODE_SIMPLIFIED		3
522 
523 /*************************************************************************
524  * EEE Configuration Page Registers
525  *************************************************************************/
526 
527 /* EEE Enable control register (16 bit) */
528 #define B53_EEE_EN_CTRL			0x00
529 
530 /* EEE LPI assert status register (16 bit) */
531 #define B53_EEE_LPI_ASSERT_STS		0x02
532 
533 /* EEE LPI indicate status register (16 bit) */
534 #define B53_EEE_LPI_INDICATE		0x4
535 
536 /* EEE Receiving idle symbols status register (16 bit) */
537 #define B53_EEE_RX_IDLE_SYM_STS		0x6
538 
539 /* EEE Pipeline timer register (32 bit) */
540 #define B53_EEE_PIP_TIMER		0xC
541 
542 /* EEE Sleep timer Gig register (32 bit) */
543 #define B53_EEE_SLEEP_TIMER_GIG(i)	(0x10 + 4 * (i))
544 
545 /* EEE Sleep timer FE register (32 bit) */
546 #define B53_EEE_SLEEP_TIMER_FE(i)	(0x34 + 4 * (i))
547 
548 /* EEE Minimum LP timer Gig register (32 bit) */
549 #define B53_EEE_MIN_LP_TIMER_GIG(i)	(0x58 + 4 * (i))
550 
551 /* EEE Minimum LP timer FE register (32 bit) */
552 #define B53_EEE_MIN_LP_TIMER_FE(i)	(0x7c + 4 * (i))
553 
554 /* EEE Wake timer Gig register (16 bit) */
555 #define B53_EEE_WAKE_TIMER_GIG(i)	(0xa0 + 2 * (i))
556 
557 /* EEE Wake timer FE register (16 bit) */
558 #define B53_EEE_WAKE_TIMER_FE(i)	(0xb2 + 2 * (i))
559 
560 
561 /*************************************************************************
562  * CFP Configuration Page Registers
563  *************************************************************************/
564 
565 /* CFP Control Register with ports map (8 bit) */
566 #define B53_CFP_CTRL			0x00
567 
568 #endif /* !__B53_REGS_H */
569