xref: /linux/drivers/net/ethernet/broadcom/bnx2x/bnx2x_reg.h (revision f6b6eb696889b65dea83aa097dac94342540c16a)
1adfc5217SJeff Kirsher /* bnx2x_reg.h: Broadcom Everest network driver.
2adfc5217SJeff Kirsher  *
385b26ea1SAriel Elior  * Copyright (c) 2007-2012 Broadcom Corporation
4adfc5217SJeff Kirsher  *
5adfc5217SJeff Kirsher  * This program is free software; you can redistribute it and/or modify
6adfc5217SJeff Kirsher  * it under the terms of the GNU General Public License as published by
7adfc5217SJeff Kirsher  * the Free Software Foundation.
8adfc5217SJeff Kirsher  *
9adfc5217SJeff Kirsher  * The registers description starts with the register Access type followed
10adfc5217SJeff Kirsher  * by size in bits. For example [RW 32]. The access types are:
11adfc5217SJeff Kirsher  * R  - Read only
12adfc5217SJeff Kirsher  * RC - Clear on read
13adfc5217SJeff Kirsher  * RW - Read/Write
14adfc5217SJeff Kirsher  * ST - Statistics register (clear on read)
15adfc5217SJeff Kirsher  * W  - Write only
16adfc5217SJeff Kirsher  * WB - Wide bus register - the size is over 32 bits and it should be
17adfc5217SJeff Kirsher  *      read/write in consecutive 32 bits accesses
18adfc5217SJeff Kirsher  * WR - Write Clear (write 1 to clear the bit)
19adfc5217SJeff Kirsher  *
20adfc5217SJeff Kirsher  */
21adfc5217SJeff Kirsher #ifndef BNX2X_REG_H
22adfc5217SJeff Kirsher #define BNX2X_REG_H
23adfc5217SJeff Kirsher 
24adfc5217SJeff Kirsher #define ATC_ATC_INT_STS_REG_ADDRESS_ERROR			 (0x1<<0)
25adfc5217SJeff Kirsher #define ATC_ATC_INT_STS_REG_ATC_GPA_MULTIPLE_HITS		 (0x1<<2)
26adfc5217SJeff Kirsher #define ATC_ATC_INT_STS_REG_ATC_IREQ_LESS_THAN_STU		 (0x1<<5)
27adfc5217SJeff Kirsher #define ATC_ATC_INT_STS_REG_ATC_RCPL_TO_EMPTY_CNT		 (0x1<<3)
28adfc5217SJeff Kirsher #define ATC_ATC_INT_STS_REG_ATC_TCPL_ERROR			 (0x1<<4)
29adfc5217SJeff Kirsher #define ATC_ATC_INT_STS_REG_ATC_TCPL_TO_NOT_PEND		 (0x1<<1)
30adfc5217SJeff Kirsher /* [RW 1] Initiate the ATC array - reset all the valid bits */
31adfc5217SJeff Kirsher #define ATC_REG_ATC_INIT_ARRAY					 0x1100b8
32adfc5217SJeff Kirsher /* [R 1] ATC initalization done */
33adfc5217SJeff Kirsher #define ATC_REG_ATC_INIT_DONE					 0x1100bc
34adfc5217SJeff Kirsher /* [RC 6] Interrupt register #0 read clear */
35adfc5217SJeff Kirsher #define ATC_REG_ATC_INT_STS_CLR					 0x1101c0
36adfc5217SJeff Kirsher /* [RW 5] Parity mask register #0 read/write */
37adfc5217SJeff Kirsher #define ATC_REG_ATC_PRTY_MASK					 0x1101d8
38adfc5217SJeff Kirsher /* [RC 5] Parity register #0 read clear */
39adfc5217SJeff Kirsher #define ATC_REG_ATC_PRTY_STS_CLR				 0x1101d0
40adfc5217SJeff Kirsher /* [RW 19] Interrupt mask register #0 read/write */
41adfc5217SJeff Kirsher #define BRB1_REG_BRB1_INT_MASK					 0x60128
42adfc5217SJeff Kirsher /* [R 19] Interrupt register #0 read */
43adfc5217SJeff Kirsher #define BRB1_REG_BRB1_INT_STS					 0x6011c
44adfc5217SJeff Kirsher /* [RW 4] Parity mask register #0 read/write */
45adfc5217SJeff Kirsher #define BRB1_REG_BRB1_PRTY_MASK 				 0x60138
46adfc5217SJeff Kirsher /* [R 4] Parity register #0 read */
47adfc5217SJeff Kirsher #define BRB1_REG_BRB1_PRTY_STS					 0x6012c
48adfc5217SJeff Kirsher /* [RC 4] Parity register #0 read clear */
49adfc5217SJeff Kirsher #define BRB1_REG_BRB1_PRTY_STS_CLR				 0x60130
50adfc5217SJeff Kirsher /* [RW 10] At address BRB1_IND_FREE_LIST_PRS_CRDT initialize free head. At
51adfc5217SJeff Kirsher  * address BRB1_IND_FREE_LIST_PRS_CRDT+1 initialize free tail. At address
52adfc5217SJeff Kirsher  * BRB1_IND_FREE_LIST_PRS_CRDT+2 initialize parser initial credit. Warning -
53adfc5217SJeff Kirsher  * following reset the first rbc access to this reg must be write; there can
54adfc5217SJeff Kirsher  * be no more rbc writes after the first one; there can be any number of rbc
55adfc5217SJeff Kirsher  * read following the first write; rbc access not following these rules will
56adfc5217SJeff Kirsher  * result in hang condition. */
57adfc5217SJeff Kirsher #define BRB1_REG_FREE_LIST_PRS_CRDT				 0x60200
58adfc5217SJeff Kirsher /* [RW 10] The number of free blocks below which the full signal to class 0
59adfc5217SJeff Kirsher  * is asserted */
60adfc5217SJeff Kirsher #define BRB1_REG_FULL_0_XOFF_THRESHOLD_0			 0x601d0
61adfc5217SJeff Kirsher #define BRB1_REG_FULL_0_XOFF_THRESHOLD_1			 0x60230
62adfc5217SJeff Kirsher /* [RW 11] The number of free blocks above which the full signal to class 0
63adfc5217SJeff Kirsher  * is de-asserted */
64adfc5217SJeff Kirsher #define BRB1_REG_FULL_0_XON_THRESHOLD_0				 0x601d4
65adfc5217SJeff Kirsher #define BRB1_REG_FULL_0_XON_THRESHOLD_1				 0x60234
66adfc5217SJeff Kirsher /* [RW 11] The number of free blocks below which the full signal to class 1
67adfc5217SJeff Kirsher  * is asserted */
68adfc5217SJeff Kirsher #define BRB1_REG_FULL_1_XOFF_THRESHOLD_0			 0x601d8
69adfc5217SJeff Kirsher #define BRB1_REG_FULL_1_XOFF_THRESHOLD_1			 0x60238
70adfc5217SJeff Kirsher /* [RW 11] The number of free blocks above which the full signal to class 1
71adfc5217SJeff Kirsher  * is de-asserted */
72adfc5217SJeff Kirsher #define BRB1_REG_FULL_1_XON_THRESHOLD_0				 0x601dc
73adfc5217SJeff Kirsher #define BRB1_REG_FULL_1_XON_THRESHOLD_1				 0x6023c
74adfc5217SJeff Kirsher /* [RW 11] The number of free blocks below which the full signal to the LB
75adfc5217SJeff Kirsher  * port is asserted */
76adfc5217SJeff Kirsher #define BRB1_REG_FULL_LB_XOFF_THRESHOLD				 0x601e0
77adfc5217SJeff Kirsher /* [RW 10] The number of free blocks above which the full signal to the LB
78adfc5217SJeff Kirsher  * port is de-asserted */
79adfc5217SJeff Kirsher #define BRB1_REG_FULL_LB_XON_THRESHOLD				 0x601e4
80adfc5217SJeff Kirsher /* [RW 10] The number of free blocks above which the High_llfc signal to
81adfc5217SJeff Kirsher    interface #n is de-asserted. */
82adfc5217SJeff Kirsher #define BRB1_REG_HIGH_LLFC_HIGH_THRESHOLD_0			 0x6014c
83adfc5217SJeff Kirsher /* [RW 10] The number of free blocks below which the High_llfc signal to
84adfc5217SJeff Kirsher    interface #n is asserted. */
85adfc5217SJeff Kirsher #define BRB1_REG_HIGH_LLFC_LOW_THRESHOLD_0			 0x6013c
86adfc5217SJeff Kirsher /* [RW 11] The number of blocks guarantied for the LB port */
87adfc5217SJeff Kirsher #define BRB1_REG_LB_GUARANTIED					 0x601ec
88adfc5217SJeff Kirsher /* [RW 11] The hysteresis on the guarantied buffer space for the Lb port
89adfc5217SJeff Kirsher  * before signaling XON. */
90adfc5217SJeff Kirsher #define BRB1_REG_LB_GUARANTIED_HYST				 0x60264
91adfc5217SJeff Kirsher /* [RW 24] LL RAM data. */
92adfc5217SJeff Kirsher #define BRB1_REG_LL_RAM						 0x61000
93adfc5217SJeff Kirsher /* [RW 10] The number of free blocks above which the Low_llfc signal to
94adfc5217SJeff Kirsher    interface #n is de-asserted. */
95adfc5217SJeff Kirsher #define BRB1_REG_LOW_LLFC_HIGH_THRESHOLD_0			 0x6016c
96adfc5217SJeff Kirsher /* [RW 10] The number of free blocks below which the Low_llfc signal to
97adfc5217SJeff Kirsher    interface #n is asserted. */
98adfc5217SJeff Kirsher #define BRB1_REG_LOW_LLFC_LOW_THRESHOLD_0			 0x6015c
99adfc5217SJeff Kirsher /* [RW 11] The number of blocks guarantied for class 0 in MAC 0. The
100adfc5217SJeff Kirsher  * register is applicable only when per_class_guaranty_mode is set. */
101adfc5217SJeff Kirsher #define BRB1_REG_MAC_0_CLASS_0_GUARANTIED			 0x60244
102adfc5217SJeff Kirsher /* [RW 11] The hysteresis on the guarantied buffer space for class 0 in MAC
103adfc5217SJeff Kirsher  * 1 before signaling XON. The register is applicable only when
104adfc5217SJeff Kirsher  * per_class_guaranty_mode is set. */
105adfc5217SJeff Kirsher #define BRB1_REG_MAC_0_CLASS_0_GUARANTIED_HYST			 0x60254
106adfc5217SJeff Kirsher /* [RW 11] The number of blocks guarantied for class 1 in MAC 0. The
107adfc5217SJeff Kirsher  * register is applicable only when per_class_guaranty_mode is set. */
108adfc5217SJeff Kirsher #define BRB1_REG_MAC_0_CLASS_1_GUARANTIED			 0x60248
109adfc5217SJeff Kirsher /* [RW 11] The hysteresis on the guarantied buffer space for class 1in MAC 0
110adfc5217SJeff Kirsher  * before signaling XON. The register is applicable only when
111adfc5217SJeff Kirsher  * per_class_guaranty_mode is set. */
112adfc5217SJeff Kirsher #define BRB1_REG_MAC_0_CLASS_1_GUARANTIED_HYST			 0x60258
113adfc5217SJeff Kirsher /* [RW 11] The number of blocks guarantied for class 0in MAC1.The register
114adfc5217SJeff Kirsher  * is applicable only when per_class_guaranty_mode is set. */
115adfc5217SJeff Kirsher #define BRB1_REG_MAC_1_CLASS_0_GUARANTIED			 0x6024c
116adfc5217SJeff Kirsher /* [RW 11] The hysteresis on the guarantied buffer space for class 0 in MAC
117adfc5217SJeff Kirsher  * 1 before signaling XON. The register is applicable only when
118adfc5217SJeff Kirsher  * per_class_guaranty_mode is set. */
119adfc5217SJeff Kirsher #define BRB1_REG_MAC_1_CLASS_0_GUARANTIED_HYST			 0x6025c
120adfc5217SJeff Kirsher /* [RW 11] The number of blocks guarantied for class 1 in MAC 1. The
121adfc5217SJeff Kirsher  * register is applicable only when per_class_guaranty_mode is set. */
122adfc5217SJeff Kirsher #define BRB1_REG_MAC_1_CLASS_1_GUARANTIED			 0x60250
123adfc5217SJeff Kirsher /* [RW 11] The hysteresis on the guarantied buffer space for class 1 in MAC
124adfc5217SJeff Kirsher  * 1 before signaling XON. The register is applicable only when
125adfc5217SJeff Kirsher  * per_class_guaranty_mode is set. */
126adfc5217SJeff Kirsher #define BRB1_REG_MAC_1_CLASS_1_GUARANTIED_HYST			 0x60260
127adfc5217SJeff Kirsher /* [RW 11] The number of blocks guarantied for the MAC port. The register is
128adfc5217SJeff Kirsher  * applicable only when per_class_guaranty_mode is reset. */
129adfc5217SJeff Kirsher #define BRB1_REG_MAC_GUARANTIED_0				 0x601e8
130adfc5217SJeff Kirsher #define BRB1_REG_MAC_GUARANTIED_1				 0x60240
131adfc5217SJeff Kirsher /* [R 24] The number of full blocks. */
132adfc5217SJeff Kirsher #define BRB1_REG_NUM_OF_FULL_BLOCKS				 0x60090
133adfc5217SJeff Kirsher /* [ST 32] The number of cycles that the write_full signal towards MAC #0
134adfc5217SJeff Kirsher    was asserted. */
135adfc5217SJeff Kirsher #define BRB1_REG_NUM_OF_FULL_CYCLES_0				 0x600c8
136adfc5217SJeff Kirsher #define BRB1_REG_NUM_OF_FULL_CYCLES_1				 0x600cc
137adfc5217SJeff Kirsher #define BRB1_REG_NUM_OF_FULL_CYCLES_4				 0x600d8
138adfc5217SJeff Kirsher /* [ST 32] The number of cycles that the pause signal towards MAC #0 was
139adfc5217SJeff Kirsher    asserted. */
140adfc5217SJeff Kirsher #define BRB1_REG_NUM_OF_PAUSE_CYCLES_0				 0x600b8
141adfc5217SJeff Kirsher #define BRB1_REG_NUM_OF_PAUSE_CYCLES_1				 0x600bc
142adfc5217SJeff Kirsher /* [RW 10] The number of free blocks below which the pause signal to class 0
143adfc5217SJeff Kirsher  * is asserted */
144adfc5217SJeff Kirsher #define BRB1_REG_PAUSE_0_XOFF_THRESHOLD_0			 0x601c0
145adfc5217SJeff Kirsher #define BRB1_REG_PAUSE_0_XOFF_THRESHOLD_1			 0x60220
146adfc5217SJeff Kirsher /* [RW 11] The number of free blocks above which the pause signal to class 0
147adfc5217SJeff Kirsher  * is de-asserted */
148adfc5217SJeff Kirsher #define BRB1_REG_PAUSE_0_XON_THRESHOLD_0			 0x601c4
149adfc5217SJeff Kirsher #define BRB1_REG_PAUSE_0_XON_THRESHOLD_1			 0x60224
150adfc5217SJeff Kirsher /* [RW 11] The number of free blocks below which the pause signal to class 1
151adfc5217SJeff Kirsher  * is asserted */
152adfc5217SJeff Kirsher #define BRB1_REG_PAUSE_1_XOFF_THRESHOLD_0			 0x601c8
153adfc5217SJeff Kirsher #define BRB1_REG_PAUSE_1_XOFF_THRESHOLD_1			 0x60228
154adfc5217SJeff Kirsher /* [RW 11] The number of free blocks above which the pause signal to class 1
155adfc5217SJeff Kirsher  * is de-asserted */
156adfc5217SJeff Kirsher #define BRB1_REG_PAUSE_1_XON_THRESHOLD_0			 0x601cc
157adfc5217SJeff Kirsher #define BRB1_REG_PAUSE_1_XON_THRESHOLD_1			 0x6022c
158adfc5217SJeff Kirsher /* [RW 10] Write client 0: De-assert pause threshold. Not Functional */
159adfc5217SJeff Kirsher #define BRB1_REG_PAUSE_HIGH_THRESHOLD_0 			 0x60078
160adfc5217SJeff Kirsher #define BRB1_REG_PAUSE_HIGH_THRESHOLD_1 			 0x6007c
161adfc5217SJeff Kirsher /* [RW 10] Write client 0: Assert pause threshold. */
162adfc5217SJeff Kirsher #define BRB1_REG_PAUSE_LOW_THRESHOLD_0				 0x60068
163866cedaeSYaniv Rosner /* [RW 1] Indicates if to use per-class guaranty mode (new mode) or per-MAC
164866cedaeSYaniv Rosner  * guaranty mode (backwards-compatible mode). 0=per-MAC guaranty mode (BC
165866cedaeSYaniv Rosner  * mode). 1=per-class guaranty mode (new mode). */
166866cedaeSYaniv Rosner #define BRB1_REG_PER_CLASS_GUARANTY_MODE			 0x60268
167866cedaeSYaniv Rosner /* [R 24] The number of full blocks occpied by port. */
168adfc5217SJeff Kirsher #define BRB1_REG_PORT_NUM_OCC_BLOCKS_0				 0x60094
169adfc5217SJeff Kirsher /* [RW 1] Reset the design by software. */
170adfc5217SJeff Kirsher #define BRB1_REG_SOFT_RESET					 0x600dc
171adfc5217SJeff Kirsher /* [R 5] Used to read the value of the XX protection CAM occupancy counter. */
172adfc5217SJeff Kirsher #define CCM_REG_CAM_OCCUP					 0xd0188
173adfc5217SJeff Kirsher /* [RW 1] CM - CFC Interface enable. If 0 - the valid input is disregarded;
174adfc5217SJeff Kirsher    acknowledge output is deasserted; all other signals are treated as usual;
175adfc5217SJeff Kirsher    if 1 - normal activity. */
176adfc5217SJeff Kirsher #define CCM_REG_CCM_CFC_IFEN					 0xd003c
177adfc5217SJeff Kirsher /* [RW 1] CM - QM Interface enable. If 0 - the acknowledge input is
178adfc5217SJeff Kirsher    disregarded; valid is deasserted; all other signals are treated as usual;
179adfc5217SJeff Kirsher    if 1 - normal activity. */
180adfc5217SJeff Kirsher #define CCM_REG_CCM_CQM_IFEN					 0xd000c
181adfc5217SJeff Kirsher /* [RW 1] If set the Q index; received from the QM is inserted to event ID.
182adfc5217SJeff Kirsher    Otherwise 0 is inserted. */
183adfc5217SJeff Kirsher #define CCM_REG_CCM_CQM_USE_Q					 0xd00c0
184adfc5217SJeff Kirsher /* [RW 11] Interrupt mask register #0 read/write */
185adfc5217SJeff Kirsher #define CCM_REG_CCM_INT_MASK					 0xd01e4
186adfc5217SJeff Kirsher /* [R 11] Interrupt register #0 read */
187adfc5217SJeff Kirsher #define CCM_REG_CCM_INT_STS					 0xd01d8
188adfc5217SJeff Kirsher /* [RW 27] Parity mask register #0 read/write */
189adfc5217SJeff Kirsher #define CCM_REG_CCM_PRTY_MASK					 0xd01f4
190adfc5217SJeff Kirsher /* [R 27] Parity register #0 read */
191adfc5217SJeff Kirsher #define CCM_REG_CCM_PRTY_STS					 0xd01e8
192adfc5217SJeff Kirsher /* [RC 27] Parity register #0 read clear */
193adfc5217SJeff Kirsher #define CCM_REG_CCM_PRTY_STS_CLR				 0xd01ec
194adfc5217SJeff Kirsher /* [RW 3] The size of AG context region 0 in REG-pairs. Designates the MS
195adfc5217SJeff Kirsher    REG-pair number (e.g. if region 0 is 6 REG-pairs; the value should be 5).
196adfc5217SJeff Kirsher    Is used to determine the number of the AG context REG-pairs written back;
197adfc5217SJeff Kirsher    when the input message Reg1WbFlg isn't set. */
198adfc5217SJeff Kirsher #define CCM_REG_CCM_REG0_SZ					 0xd00c4
199adfc5217SJeff Kirsher /* [RW 1] CM - STORM 0 Interface enable. If 0 - the acknowledge input is
200adfc5217SJeff Kirsher    disregarded; valid is deasserted; all other signals are treated as usual;
201adfc5217SJeff Kirsher    if 1 - normal activity. */
202adfc5217SJeff Kirsher #define CCM_REG_CCM_STORM0_IFEN 				 0xd0004
203adfc5217SJeff Kirsher /* [RW 1] CM - STORM 1 Interface enable. If 0 - the acknowledge input is
204adfc5217SJeff Kirsher    disregarded; valid is deasserted; all other signals are treated as usual;
205adfc5217SJeff Kirsher    if 1 - normal activity. */
206adfc5217SJeff Kirsher #define CCM_REG_CCM_STORM1_IFEN 				 0xd0008
207adfc5217SJeff Kirsher /* [RW 1] CDU AG read Interface enable. If 0 - the request input is
208adfc5217SJeff Kirsher    disregarded; valid output is deasserted; all other signals are treated as
209adfc5217SJeff Kirsher    usual; if 1 - normal activity. */
210adfc5217SJeff Kirsher #define CCM_REG_CDU_AG_RD_IFEN					 0xd0030
211adfc5217SJeff Kirsher /* [RW 1] CDU AG write Interface enable. If 0 - the request and valid input
212adfc5217SJeff Kirsher    are disregarded; all other signals are treated as usual; if 1 - normal
213adfc5217SJeff Kirsher    activity. */
214adfc5217SJeff Kirsher #define CCM_REG_CDU_AG_WR_IFEN					 0xd002c
215adfc5217SJeff Kirsher /* [RW 1] CDU STORM read Interface enable. If 0 - the request input is
216adfc5217SJeff Kirsher    disregarded; valid output is deasserted; all other signals are treated as
217adfc5217SJeff Kirsher    usual; if 1 - normal activity. */
218adfc5217SJeff Kirsher #define CCM_REG_CDU_SM_RD_IFEN					 0xd0038
219adfc5217SJeff Kirsher /* [RW 1] CDU STORM write Interface enable. If 0 - the request and valid
220adfc5217SJeff Kirsher    input is disregarded; all other signals are treated as usual; if 1 -
221adfc5217SJeff Kirsher    normal activity. */
222adfc5217SJeff Kirsher #define CCM_REG_CDU_SM_WR_IFEN					 0xd0034
223adfc5217SJeff Kirsher /* [RW 4] CFC output initial credit. Max credit available - 15.Write writes
224adfc5217SJeff Kirsher    the initial credit value; read returns the current value of the credit
225adfc5217SJeff Kirsher    counter. Must be initialized to 1 at start-up. */
226adfc5217SJeff Kirsher #define CCM_REG_CFC_INIT_CRD					 0xd0204
227adfc5217SJeff Kirsher /* [RW 2] Auxiliary counter flag Q number 1. */
228adfc5217SJeff Kirsher #define CCM_REG_CNT_AUX1_Q					 0xd00c8
229adfc5217SJeff Kirsher /* [RW 2] Auxiliary counter flag Q number 2. */
230adfc5217SJeff Kirsher #define CCM_REG_CNT_AUX2_Q					 0xd00cc
231adfc5217SJeff Kirsher /* [RW 28] The CM header value for QM request (primary). */
232adfc5217SJeff Kirsher #define CCM_REG_CQM_CCM_HDR_P					 0xd008c
233adfc5217SJeff Kirsher /* [RW 28] The CM header value for QM request (secondary). */
234adfc5217SJeff Kirsher #define CCM_REG_CQM_CCM_HDR_S					 0xd0090
235adfc5217SJeff Kirsher /* [RW 1] QM - CM Interface enable. If 0 - the valid input is disregarded;
236adfc5217SJeff Kirsher    acknowledge output is deasserted; all other signals are treated as usual;
237adfc5217SJeff Kirsher    if 1 - normal activity. */
238adfc5217SJeff Kirsher #define CCM_REG_CQM_CCM_IFEN					 0xd0014
239adfc5217SJeff Kirsher /* [RW 6] QM output initial credit. Max credit available - 32. Write writes
240adfc5217SJeff Kirsher    the initial credit value; read returns the current value of the credit
241adfc5217SJeff Kirsher    counter. Must be initialized to 32 at start-up. */
242adfc5217SJeff Kirsher #define CCM_REG_CQM_INIT_CRD					 0xd020c
243adfc5217SJeff Kirsher /* [RW 3] The weight of the QM (primary) input in the WRR mechanism. 0
244adfc5217SJeff Kirsher    stands for weight 8 (the most prioritised); 1 stands for weight 1(least
245adfc5217SJeff Kirsher    prioritised); 2 stands for weight 2; tc. */
246adfc5217SJeff Kirsher #define CCM_REG_CQM_P_WEIGHT					 0xd00b8
247adfc5217SJeff Kirsher /* [RW 3] The weight of the QM (secondary) input in the WRR mechanism. 0
248adfc5217SJeff Kirsher    stands for weight 8 (the most prioritised); 1 stands for weight 1(least
249adfc5217SJeff Kirsher    prioritised); 2 stands for weight 2; tc. */
250adfc5217SJeff Kirsher #define CCM_REG_CQM_S_WEIGHT					 0xd00bc
251adfc5217SJeff Kirsher /* [RW 1] Input SDM Interface enable. If 0 - the valid input is disregarded;
252adfc5217SJeff Kirsher    acknowledge output is deasserted; all other signals are treated as usual;
253adfc5217SJeff Kirsher    if 1 - normal activity. */
254adfc5217SJeff Kirsher #define CCM_REG_CSDM_IFEN					 0xd0018
255adfc5217SJeff Kirsher /* [RC 1] Set when the message length mismatch (relative to last indication)
256adfc5217SJeff Kirsher    at the SDM interface is detected. */
257adfc5217SJeff Kirsher #define CCM_REG_CSDM_LENGTH_MIS 				 0xd0170
258adfc5217SJeff Kirsher /* [RW 3] The weight of the SDM input in the WRR mechanism. 0 stands for
259adfc5217SJeff Kirsher    weight 8 (the most prioritised); 1 stands for weight 1(least
260adfc5217SJeff Kirsher    prioritised); 2 stands for weight 2; tc. */
261adfc5217SJeff Kirsher #define CCM_REG_CSDM_WEIGHT					 0xd00b4
262adfc5217SJeff Kirsher /* [RW 28] The CM header for QM formatting in case of an error in the QM
263adfc5217SJeff Kirsher    inputs. */
264adfc5217SJeff Kirsher #define CCM_REG_ERR_CCM_HDR					 0xd0094
265adfc5217SJeff Kirsher /* [RW 8] The Event ID in case the input message ErrorFlg is set. */
266adfc5217SJeff Kirsher #define CCM_REG_ERR_EVNT_ID					 0xd0098
267adfc5217SJeff Kirsher /* [RW 8] FIC0 output initial credit. Max credit available - 255. Write
268adfc5217SJeff Kirsher    writes the initial credit value; read returns the current value of the
269adfc5217SJeff Kirsher    credit counter. Must be initialized to 64 at start-up. */
270adfc5217SJeff Kirsher #define CCM_REG_FIC0_INIT_CRD					 0xd0210
271adfc5217SJeff Kirsher /* [RW 8] FIC1 output initial credit. Max credit available - 255.Write
272adfc5217SJeff Kirsher    writes the initial credit value; read returns the current value of the
273adfc5217SJeff Kirsher    credit counter. Must be initialized to 64 at start-up. */
274adfc5217SJeff Kirsher #define CCM_REG_FIC1_INIT_CRD					 0xd0214
275adfc5217SJeff Kirsher /* [RW 1] Arbitration between Input Arbiter groups: 0 - fair Round-Robin; 1
276adfc5217SJeff Kirsher    - strict priority defined by ~ccm_registers_gr_ag_pr.gr_ag_pr;
277adfc5217SJeff Kirsher    ~ccm_registers_gr_ld0_pr.gr_ld0_pr and
278adfc5217SJeff Kirsher    ~ccm_registers_gr_ld1_pr.gr_ld1_pr. Groups are according to channels and
279adfc5217SJeff Kirsher    outputs to STORM: aggregation; load FIC0; load FIC1 and store. */
280adfc5217SJeff Kirsher #define CCM_REG_GR_ARB_TYPE					 0xd015c
281adfc5217SJeff Kirsher /* [RW 2] Load (FIC0) channel group priority. The lowest priority is 0; the
282adfc5217SJeff Kirsher    highest priority is 3. It is supposed; that the Store channel priority is
283adfc5217SJeff Kirsher    the compliment to 4 of the rest priorities - Aggregation channel; Load
284adfc5217SJeff Kirsher    (FIC0) channel and Load (FIC1). */
285adfc5217SJeff Kirsher #define CCM_REG_GR_LD0_PR					 0xd0164
286adfc5217SJeff Kirsher /* [RW 2] Load (FIC1) channel group priority. The lowest priority is 0; the
287adfc5217SJeff Kirsher    highest priority is 3. It is supposed; that the Store channel priority is
288adfc5217SJeff Kirsher    the compliment to 4 of the rest priorities - Aggregation channel; Load
289adfc5217SJeff Kirsher    (FIC0) channel and Load (FIC1). */
290adfc5217SJeff Kirsher #define CCM_REG_GR_LD1_PR					 0xd0168
291adfc5217SJeff Kirsher /* [RW 2] General flags index. */
292adfc5217SJeff Kirsher #define CCM_REG_INV_DONE_Q					 0xd0108
293adfc5217SJeff Kirsher /* [RW 4] The number of double REG-pairs(128 bits); loaded from the STORM
294adfc5217SJeff Kirsher    context and sent to STORM; for a specific connection type. The double
295adfc5217SJeff Kirsher    REG-pairs are used in order to align to STORM context row size of 128
296adfc5217SJeff Kirsher    bits. The offset of these data in the STORM context is always 0. Index
297adfc5217SJeff Kirsher    _(0..15) stands for the connection type (one of 16). */
298adfc5217SJeff Kirsher #define CCM_REG_N_SM_CTX_LD_0					 0xd004c
299adfc5217SJeff Kirsher #define CCM_REG_N_SM_CTX_LD_1					 0xd0050
300adfc5217SJeff Kirsher #define CCM_REG_N_SM_CTX_LD_2					 0xd0054
301adfc5217SJeff Kirsher #define CCM_REG_N_SM_CTX_LD_3					 0xd0058
302adfc5217SJeff Kirsher #define CCM_REG_N_SM_CTX_LD_4					 0xd005c
303adfc5217SJeff Kirsher /* [RW 1] Input pbf Interface enable. If 0 - the valid input is disregarded;
304adfc5217SJeff Kirsher    acknowledge output is deasserted; all other signals are treated as usual;
305adfc5217SJeff Kirsher    if 1 - normal activity. */
306adfc5217SJeff Kirsher #define CCM_REG_PBF_IFEN					 0xd0028
307adfc5217SJeff Kirsher /* [RC 1] Set when the message length mismatch (relative to last indication)
308adfc5217SJeff Kirsher    at the pbf interface is detected. */
309adfc5217SJeff Kirsher #define CCM_REG_PBF_LENGTH_MIS					 0xd0180
310adfc5217SJeff Kirsher /* [RW 3] The weight of the input pbf in the WRR mechanism. 0 stands for
311adfc5217SJeff Kirsher    weight 8 (the most prioritised); 1 stands for weight 1(least
312adfc5217SJeff Kirsher    prioritised); 2 stands for weight 2; tc. */
313adfc5217SJeff Kirsher #define CCM_REG_PBF_WEIGHT					 0xd00ac
314adfc5217SJeff Kirsher #define CCM_REG_PHYS_QNUM1_0					 0xd0134
315adfc5217SJeff Kirsher #define CCM_REG_PHYS_QNUM1_1					 0xd0138
316adfc5217SJeff Kirsher #define CCM_REG_PHYS_QNUM2_0					 0xd013c
317adfc5217SJeff Kirsher #define CCM_REG_PHYS_QNUM2_1					 0xd0140
318adfc5217SJeff Kirsher #define CCM_REG_PHYS_QNUM3_0					 0xd0144
319adfc5217SJeff Kirsher #define CCM_REG_PHYS_QNUM3_1					 0xd0148
320adfc5217SJeff Kirsher #define CCM_REG_QOS_PHYS_QNUM0_0				 0xd0114
321adfc5217SJeff Kirsher #define CCM_REG_QOS_PHYS_QNUM0_1				 0xd0118
322adfc5217SJeff Kirsher #define CCM_REG_QOS_PHYS_QNUM1_0				 0xd011c
323adfc5217SJeff Kirsher #define CCM_REG_QOS_PHYS_QNUM1_1				 0xd0120
324adfc5217SJeff Kirsher #define CCM_REG_QOS_PHYS_QNUM2_0				 0xd0124
325adfc5217SJeff Kirsher #define CCM_REG_QOS_PHYS_QNUM2_1				 0xd0128
326adfc5217SJeff Kirsher #define CCM_REG_QOS_PHYS_QNUM3_0				 0xd012c
327adfc5217SJeff Kirsher #define CCM_REG_QOS_PHYS_QNUM3_1				 0xd0130
328adfc5217SJeff Kirsher /* [RW 1] STORM - CM Interface enable. If 0 - the valid input is
329adfc5217SJeff Kirsher    disregarded; acknowledge output is deasserted; all other signals are
330adfc5217SJeff Kirsher    treated as usual; if 1 - normal activity. */
331adfc5217SJeff Kirsher #define CCM_REG_STORM_CCM_IFEN					 0xd0010
332adfc5217SJeff Kirsher /* [RC 1] Set when the message length mismatch (relative to last indication)
333adfc5217SJeff Kirsher    at the STORM interface is detected. */
334adfc5217SJeff Kirsher #define CCM_REG_STORM_LENGTH_MIS				 0xd016c
335adfc5217SJeff Kirsher /* [RW 3] The weight of the STORM input in the WRR (Weighted Round robin)
336adfc5217SJeff Kirsher    mechanism. 0 stands for weight 8 (the most prioritised); 1 stands for
337adfc5217SJeff Kirsher    weight 1(least prioritised); 2 stands for weight 2 (more prioritised);
338adfc5217SJeff Kirsher    tc. */
339adfc5217SJeff Kirsher #define CCM_REG_STORM_WEIGHT					 0xd009c
340adfc5217SJeff Kirsher /* [RW 1] Input tsem Interface enable. If 0 - the valid input is
341adfc5217SJeff Kirsher    disregarded; acknowledge output is deasserted; all other signals are
342adfc5217SJeff Kirsher    treated as usual; if 1 - normal activity. */
343adfc5217SJeff Kirsher #define CCM_REG_TSEM_IFEN					 0xd001c
344adfc5217SJeff Kirsher /* [RC 1] Set when the message length mismatch (relative to last indication)
345adfc5217SJeff Kirsher    at the tsem interface is detected. */
346adfc5217SJeff Kirsher #define CCM_REG_TSEM_LENGTH_MIS 				 0xd0174
347adfc5217SJeff Kirsher /* [RW 3] The weight of the input tsem in the WRR mechanism. 0 stands for
348adfc5217SJeff Kirsher    weight 8 (the most prioritised); 1 stands for weight 1(least
349adfc5217SJeff Kirsher    prioritised); 2 stands for weight 2; tc. */
350adfc5217SJeff Kirsher #define CCM_REG_TSEM_WEIGHT					 0xd00a0
351adfc5217SJeff Kirsher /* [RW 1] Input usem Interface enable. If 0 - the valid input is
352adfc5217SJeff Kirsher    disregarded; acknowledge output is deasserted; all other signals are
353adfc5217SJeff Kirsher    treated as usual; if 1 - normal activity. */
354adfc5217SJeff Kirsher #define CCM_REG_USEM_IFEN					 0xd0024
355adfc5217SJeff Kirsher /* [RC 1] Set when message length mismatch (relative to last indication) at
356adfc5217SJeff Kirsher    the usem interface is detected. */
357adfc5217SJeff Kirsher #define CCM_REG_USEM_LENGTH_MIS 				 0xd017c
358adfc5217SJeff Kirsher /* [RW 3] The weight of the input usem in the WRR mechanism. 0 stands for
359adfc5217SJeff Kirsher    weight 8 (the most prioritised); 1 stands for weight 1(least
360adfc5217SJeff Kirsher    prioritised); 2 stands for weight 2; tc. */
361adfc5217SJeff Kirsher #define CCM_REG_USEM_WEIGHT					 0xd00a8
362adfc5217SJeff Kirsher /* [RW 1] Input xsem Interface enable. If 0 - the valid input is
363adfc5217SJeff Kirsher    disregarded; acknowledge output is deasserted; all other signals are
364adfc5217SJeff Kirsher    treated as usual; if 1 - normal activity. */
365adfc5217SJeff Kirsher #define CCM_REG_XSEM_IFEN					 0xd0020
366adfc5217SJeff Kirsher /* [RC 1] Set when the message length mismatch (relative to last indication)
367adfc5217SJeff Kirsher    at the xsem interface is detected. */
368adfc5217SJeff Kirsher #define CCM_REG_XSEM_LENGTH_MIS 				 0xd0178
369adfc5217SJeff Kirsher /* [RW 3] The weight of the input xsem in the WRR mechanism. 0 stands for
370adfc5217SJeff Kirsher    weight 8 (the most prioritised); 1 stands for weight 1(least
371adfc5217SJeff Kirsher    prioritised); 2 stands for weight 2; tc. */
372adfc5217SJeff Kirsher #define CCM_REG_XSEM_WEIGHT					 0xd00a4
373adfc5217SJeff Kirsher /* [RW 19] Indirect access to the descriptor table of the XX protection
374adfc5217SJeff Kirsher    mechanism. The fields are: [5:0] - message length; [12:6] - message
375adfc5217SJeff Kirsher    pointer; 18:13] - next pointer. */
376adfc5217SJeff Kirsher #define CCM_REG_XX_DESCR_TABLE					 0xd0300
377adfc5217SJeff Kirsher #define CCM_REG_XX_DESCR_TABLE_SIZE				 24
378adfc5217SJeff Kirsher /* [R 7] Used to read the value of XX protection Free counter. */
379adfc5217SJeff Kirsher #define CCM_REG_XX_FREE 					 0xd0184
380adfc5217SJeff Kirsher /* [RW 6] Initial value for the credit counter; responsible for fulfilling
381adfc5217SJeff Kirsher    of the Input Stage XX protection buffer by the XX protection pending
382adfc5217SJeff Kirsher    messages. Max credit available - 127. Write writes the initial credit
383adfc5217SJeff Kirsher    value; read returns the current value of the credit counter. Must be
384adfc5217SJeff Kirsher    initialized to maximum XX protected message size - 2 at start-up. */
385adfc5217SJeff Kirsher #define CCM_REG_XX_INIT_CRD					 0xd0220
386adfc5217SJeff Kirsher /* [RW 7] The maximum number of pending messages; which may be stored in XX
387adfc5217SJeff Kirsher    protection. At read the ~ccm_registers_xx_free.xx_free counter is read.
388adfc5217SJeff Kirsher    At write comprises the start value of the ~ccm_registers_xx_free.xx_free
389adfc5217SJeff Kirsher    counter. */
390adfc5217SJeff Kirsher #define CCM_REG_XX_MSG_NUM					 0xd0224
391adfc5217SJeff Kirsher /* [RW 8] The Event ID; sent to the STORM in case of XX overflow. */
392adfc5217SJeff Kirsher #define CCM_REG_XX_OVFL_EVNT_ID 				 0xd0044
393adfc5217SJeff Kirsher /* [RW 18] Indirect access to the XX table of the XX protection mechanism.
394adfc5217SJeff Kirsher    The fields are: [5:0] - tail pointer; 11:6] - Link List size; 17:12] -
395adfc5217SJeff Kirsher    header pointer. */
396adfc5217SJeff Kirsher #define CCM_REG_XX_TABLE					 0xd0280
397adfc5217SJeff Kirsher #define CDU_REG_CDU_CHK_MASK0					 0x101000
398adfc5217SJeff Kirsher #define CDU_REG_CDU_CHK_MASK1					 0x101004
399adfc5217SJeff Kirsher #define CDU_REG_CDU_CONTROL0					 0x101008
400adfc5217SJeff Kirsher #define CDU_REG_CDU_DEBUG					 0x101010
401adfc5217SJeff Kirsher #define CDU_REG_CDU_GLOBAL_PARAMS				 0x101020
402adfc5217SJeff Kirsher /* [RW 7] Interrupt mask register #0 read/write */
403adfc5217SJeff Kirsher #define CDU_REG_CDU_INT_MASK					 0x10103c
404adfc5217SJeff Kirsher /* [R 7] Interrupt register #0 read */
405adfc5217SJeff Kirsher #define CDU_REG_CDU_INT_STS					 0x101030
406adfc5217SJeff Kirsher /* [RW 5] Parity mask register #0 read/write */
407adfc5217SJeff Kirsher #define CDU_REG_CDU_PRTY_MASK					 0x10104c
408adfc5217SJeff Kirsher /* [R 5] Parity register #0 read */
409adfc5217SJeff Kirsher #define CDU_REG_CDU_PRTY_STS					 0x101040
410adfc5217SJeff Kirsher /* [RC 5] Parity register #0 read clear */
411adfc5217SJeff Kirsher #define CDU_REG_CDU_PRTY_STS_CLR				 0x101044
412adfc5217SJeff Kirsher /* [RC 32] logging of error data in case of a CDU load error:
413adfc5217SJeff Kirsher    {expected_cid[15:0]; xpected_type[2:0]; xpected_region[2:0]; ctive_error;
414adfc5217SJeff Kirsher    ype_error; ctual_active; ctual_compressed_context}; */
415adfc5217SJeff Kirsher #define CDU_REG_ERROR_DATA					 0x101014
416adfc5217SJeff Kirsher /* [WB 216] L1TT ram access. each entry has the following format :
417adfc5217SJeff Kirsher    {mrege_regions[7:0]; ffset12[5:0]...offset0[5:0];
418adfc5217SJeff Kirsher    ength12[5:0]...length0[5:0]; d12[3:0]...id0[3:0]} */
419adfc5217SJeff Kirsher #define CDU_REG_L1TT						 0x101800
420adfc5217SJeff Kirsher /* [WB 24] MATT ram access. each entry has the following
421adfc5217SJeff Kirsher    format:{RegionLength[11:0]; egionOffset[11:0]} */
422adfc5217SJeff Kirsher #define CDU_REG_MATT						 0x101100
423adfc5217SJeff Kirsher /* [RW 1] when this bit is set the CDU operates in e1hmf mode */
424adfc5217SJeff Kirsher #define CDU_REG_MF_MODE 					 0x101050
425adfc5217SJeff Kirsher /* [R 1] indication the initializing the activity counter by the hardware
426adfc5217SJeff Kirsher    was done. */
427adfc5217SJeff Kirsher #define CFC_REG_AC_INIT_DONE					 0x104078
428adfc5217SJeff Kirsher /* [RW 13] activity counter ram access */
429adfc5217SJeff Kirsher #define CFC_REG_ACTIVITY_COUNTER				 0x104400
430adfc5217SJeff Kirsher #define CFC_REG_ACTIVITY_COUNTER_SIZE				 256
431adfc5217SJeff Kirsher /* [R 1] indication the initializing the cams by the hardware was done. */
432adfc5217SJeff Kirsher #define CFC_REG_CAM_INIT_DONE					 0x10407c
433adfc5217SJeff Kirsher /* [RW 2] Interrupt mask register #0 read/write */
434adfc5217SJeff Kirsher #define CFC_REG_CFC_INT_MASK					 0x104108
435adfc5217SJeff Kirsher /* [R 2] Interrupt register #0 read */
436adfc5217SJeff Kirsher #define CFC_REG_CFC_INT_STS					 0x1040fc
437adfc5217SJeff Kirsher /* [RC 2] Interrupt register #0 read clear */
438adfc5217SJeff Kirsher #define CFC_REG_CFC_INT_STS_CLR 				 0x104100
439adfc5217SJeff Kirsher /* [RW 4] Parity mask register #0 read/write */
440adfc5217SJeff Kirsher #define CFC_REG_CFC_PRTY_MASK					 0x104118
441adfc5217SJeff Kirsher /* [R 4] Parity register #0 read */
442adfc5217SJeff Kirsher #define CFC_REG_CFC_PRTY_STS					 0x10410c
443adfc5217SJeff Kirsher /* [RC 4] Parity register #0 read clear */
444adfc5217SJeff Kirsher #define CFC_REG_CFC_PRTY_STS_CLR				 0x104110
445adfc5217SJeff Kirsher /* [RW 21] CID cam access (21:1 - Data; alid - 0) */
446adfc5217SJeff Kirsher #define CFC_REG_CID_CAM 					 0x104800
447adfc5217SJeff Kirsher #define CFC_REG_CONTROL0					 0x104028
448adfc5217SJeff Kirsher #define CFC_REG_DEBUG0						 0x104050
449adfc5217SJeff Kirsher /* [RW 14] indicates per error (in #cfc_registers_cfc_error_vector.cfc_error
450adfc5217SJeff Kirsher    vector) whether the cfc should be disabled upon it */
451adfc5217SJeff Kirsher #define CFC_REG_DISABLE_ON_ERROR				 0x104044
452adfc5217SJeff Kirsher /* [RC 14] CFC error vector. when the CFC detects an internal error it will
453adfc5217SJeff Kirsher    set one of these bits. the bit description can be found in CFC
454adfc5217SJeff Kirsher    specifications */
455adfc5217SJeff Kirsher #define CFC_REG_ERROR_VECTOR					 0x10403c
456adfc5217SJeff Kirsher /* [WB 93] LCID info ram access */
457adfc5217SJeff Kirsher #define CFC_REG_INFO_RAM					 0x105000
458adfc5217SJeff Kirsher #define CFC_REG_INFO_RAM_SIZE					 1024
459adfc5217SJeff Kirsher #define CFC_REG_INIT_REG					 0x10404c
460adfc5217SJeff Kirsher #define CFC_REG_INTERFACES					 0x104058
461adfc5217SJeff Kirsher /* [RW 24] {weight_load_client7[2:0] to weight_load_client0[2:0]}. this
462adfc5217SJeff Kirsher    field allows changing the priorities of the weighted-round-robin arbiter
463adfc5217SJeff Kirsher    which selects which CFC load client should be served next */
464adfc5217SJeff Kirsher #define CFC_REG_LCREQ_WEIGHTS					 0x104084
465adfc5217SJeff Kirsher /* [RW 16] Link List ram access; data = {prev_lcid; ext_lcid} */
466adfc5217SJeff Kirsher #define CFC_REG_LINK_LIST					 0x104c00
467adfc5217SJeff Kirsher #define CFC_REG_LINK_LIST_SIZE					 256
468adfc5217SJeff Kirsher /* [R 1] indication the initializing the link list by the hardware was done. */
469adfc5217SJeff Kirsher #define CFC_REG_LL_INIT_DONE					 0x104074
470adfc5217SJeff Kirsher /* [R 9] Number of allocated LCIDs which are at empty state */
471adfc5217SJeff Kirsher #define CFC_REG_NUM_LCIDS_ALLOC 				 0x104020
472adfc5217SJeff Kirsher /* [R 9] Number of Arriving LCIDs in Link List Block */
473adfc5217SJeff Kirsher #define CFC_REG_NUM_LCIDS_ARRIVING				 0x104004
474adfc5217SJeff Kirsher #define CFC_REG_NUM_LCIDS_INSIDE_PF				 0x104120
475adfc5217SJeff Kirsher /* [R 9] Number of Leaving LCIDs in Link List Block */
476adfc5217SJeff Kirsher #define CFC_REG_NUM_LCIDS_LEAVING				 0x104018
477adfc5217SJeff Kirsher #define CFC_REG_WEAK_ENABLE_PF					 0x104124
478adfc5217SJeff Kirsher /* [RW 8] The event id for aggregated interrupt 0 */
479adfc5217SJeff Kirsher #define CSDM_REG_AGG_INT_EVENT_0				 0xc2038
480adfc5217SJeff Kirsher #define CSDM_REG_AGG_INT_EVENT_10				 0xc2060
481adfc5217SJeff Kirsher #define CSDM_REG_AGG_INT_EVENT_11				 0xc2064
482adfc5217SJeff Kirsher #define CSDM_REG_AGG_INT_EVENT_12				 0xc2068
483adfc5217SJeff Kirsher #define CSDM_REG_AGG_INT_EVENT_13				 0xc206c
484adfc5217SJeff Kirsher #define CSDM_REG_AGG_INT_EVENT_14				 0xc2070
485adfc5217SJeff Kirsher #define CSDM_REG_AGG_INT_EVENT_15				 0xc2074
486adfc5217SJeff Kirsher #define CSDM_REG_AGG_INT_EVENT_16				 0xc2078
487adfc5217SJeff Kirsher #define CSDM_REG_AGG_INT_EVENT_2				 0xc2040
488adfc5217SJeff Kirsher #define CSDM_REG_AGG_INT_EVENT_3				 0xc2044
489adfc5217SJeff Kirsher #define CSDM_REG_AGG_INT_EVENT_4				 0xc2048
490adfc5217SJeff Kirsher #define CSDM_REG_AGG_INT_EVENT_5				 0xc204c
491adfc5217SJeff Kirsher #define CSDM_REG_AGG_INT_EVENT_6				 0xc2050
492adfc5217SJeff Kirsher #define CSDM_REG_AGG_INT_EVENT_7				 0xc2054
493adfc5217SJeff Kirsher #define CSDM_REG_AGG_INT_EVENT_8				 0xc2058
494adfc5217SJeff Kirsher #define CSDM_REG_AGG_INT_EVENT_9				 0xc205c
495adfc5217SJeff Kirsher /* [RW 1] For each aggregated interrupt index whether the mode is normal (0)
496adfc5217SJeff Kirsher    or auto-mask-mode (1) */
497adfc5217SJeff Kirsher #define CSDM_REG_AGG_INT_MODE_10				 0xc21e0
498adfc5217SJeff Kirsher #define CSDM_REG_AGG_INT_MODE_11				 0xc21e4
499adfc5217SJeff Kirsher #define CSDM_REG_AGG_INT_MODE_12				 0xc21e8
500adfc5217SJeff Kirsher #define CSDM_REG_AGG_INT_MODE_13				 0xc21ec
501adfc5217SJeff Kirsher #define CSDM_REG_AGG_INT_MODE_14				 0xc21f0
502adfc5217SJeff Kirsher #define CSDM_REG_AGG_INT_MODE_15				 0xc21f4
503adfc5217SJeff Kirsher #define CSDM_REG_AGG_INT_MODE_16				 0xc21f8
504adfc5217SJeff Kirsher #define CSDM_REG_AGG_INT_MODE_6 				 0xc21d0
505adfc5217SJeff Kirsher #define CSDM_REG_AGG_INT_MODE_7 				 0xc21d4
506adfc5217SJeff Kirsher #define CSDM_REG_AGG_INT_MODE_8 				 0xc21d8
507adfc5217SJeff Kirsher #define CSDM_REG_AGG_INT_MODE_9 				 0xc21dc
508adfc5217SJeff Kirsher /* [RW 13] The start address in the internal RAM for the cfc_rsp lcid */
509adfc5217SJeff Kirsher #define CSDM_REG_CFC_RSP_START_ADDR				 0xc2008
510adfc5217SJeff Kirsher /* [RW 16] The maximum value of the completion counter #0 */
511adfc5217SJeff Kirsher #define CSDM_REG_CMP_COUNTER_MAX0				 0xc201c
512adfc5217SJeff Kirsher /* [RW 16] The maximum value of the completion counter #1 */
513adfc5217SJeff Kirsher #define CSDM_REG_CMP_COUNTER_MAX1				 0xc2020
514adfc5217SJeff Kirsher /* [RW 16] The maximum value of the completion counter #2 */
515adfc5217SJeff Kirsher #define CSDM_REG_CMP_COUNTER_MAX2				 0xc2024
516adfc5217SJeff Kirsher /* [RW 16] The maximum value of the completion counter #3 */
517adfc5217SJeff Kirsher #define CSDM_REG_CMP_COUNTER_MAX3				 0xc2028
518adfc5217SJeff Kirsher /* [RW 13] The start address in the internal RAM for the completion
519adfc5217SJeff Kirsher    counters. */
520adfc5217SJeff Kirsher #define CSDM_REG_CMP_COUNTER_START_ADDR 			 0xc200c
521adfc5217SJeff Kirsher /* [RW 32] Interrupt mask register #0 read/write */
522adfc5217SJeff Kirsher #define CSDM_REG_CSDM_INT_MASK_0				 0xc229c
523adfc5217SJeff Kirsher #define CSDM_REG_CSDM_INT_MASK_1				 0xc22ac
524adfc5217SJeff Kirsher /* [R 32] Interrupt register #0 read */
525adfc5217SJeff Kirsher #define CSDM_REG_CSDM_INT_STS_0 				 0xc2290
526adfc5217SJeff Kirsher #define CSDM_REG_CSDM_INT_STS_1 				 0xc22a0
527adfc5217SJeff Kirsher /* [RW 11] Parity mask register #0 read/write */
528adfc5217SJeff Kirsher #define CSDM_REG_CSDM_PRTY_MASK 				 0xc22bc
529adfc5217SJeff Kirsher /* [R 11] Parity register #0 read */
530adfc5217SJeff Kirsher #define CSDM_REG_CSDM_PRTY_STS					 0xc22b0
531adfc5217SJeff Kirsher /* [RC 11] Parity register #0 read clear */
532adfc5217SJeff Kirsher #define CSDM_REG_CSDM_PRTY_STS_CLR				 0xc22b4
533adfc5217SJeff Kirsher #define CSDM_REG_ENABLE_IN1					 0xc2238
534adfc5217SJeff Kirsher #define CSDM_REG_ENABLE_IN2					 0xc223c
535adfc5217SJeff Kirsher #define CSDM_REG_ENABLE_OUT1					 0xc2240
536adfc5217SJeff Kirsher #define CSDM_REG_ENABLE_OUT2					 0xc2244
537adfc5217SJeff Kirsher /* [RW 4] The initial number of messages that can be sent to the pxp control
538adfc5217SJeff Kirsher    interface without receiving any ACK. */
539adfc5217SJeff Kirsher #define CSDM_REG_INIT_CREDIT_PXP_CTRL				 0xc24bc
540adfc5217SJeff Kirsher /* [ST 32] The number of ACK after placement messages received */
541adfc5217SJeff Kirsher #define CSDM_REG_NUM_OF_ACK_AFTER_PLACE 			 0xc227c
542adfc5217SJeff Kirsher /* [ST 32] The number of packet end messages received from the parser */
543adfc5217SJeff Kirsher #define CSDM_REG_NUM_OF_PKT_END_MSG				 0xc2274
544adfc5217SJeff Kirsher /* [ST 32] The number of requests received from the pxp async if */
545adfc5217SJeff Kirsher #define CSDM_REG_NUM_OF_PXP_ASYNC_REQ				 0xc2278
546adfc5217SJeff Kirsher /* [ST 32] The number of commands received in queue 0 */
547adfc5217SJeff Kirsher #define CSDM_REG_NUM_OF_Q0_CMD					 0xc2248
548adfc5217SJeff Kirsher /* [ST 32] The number of commands received in queue 10 */
549adfc5217SJeff Kirsher #define CSDM_REG_NUM_OF_Q10_CMD 				 0xc226c
550adfc5217SJeff Kirsher /* [ST 32] The number of commands received in queue 11 */
551adfc5217SJeff Kirsher #define CSDM_REG_NUM_OF_Q11_CMD 				 0xc2270
552adfc5217SJeff Kirsher /* [ST 32] The number of commands received in queue 1 */
553adfc5217SJeff Kirsher #define CSDM_REG_NUM_OF_Q1_CMD					 0xc224c
554adfc5217SJeff Kirsher /* [ST 32] The number of commands received in queue 3 */
555adfc5217SJeff Kirsher #define CSDM_REG_NUM_OF_Q3_CMD					 0xc2250
556adfc5217SJeff Kirsher /* [ST 32] The number of commands received in queue 4 */
557adfc5217SJeff Kirsher #define CSDM_REG_NUM_OF_Q4_CMD					 0xc2254
558adfc5217SJeff Kirsher /* [ST 32] The number of commands received in queue 5 */
559adfc5217SJeff Kirsher #define CSDM_REG_NUM_OF_Q5_CMD					 0xc2258
560adfc5217SJeff Kirsher /* [ST 32] The number of commands received in queue 6 */
561adfc5217SJeff Kirsher #define CSDM_REG_NUM_OF_Q6_CMD					 0xc225c
562adfc5217SJeff Kirsher /* [ST 32] The number of commands received in queue 7 */
563adfc5217SJeff Kirsher #define CSDM_REG_NUM_OF_Q7_CMD					 0xc2260
564adfc5217SJeff Kirsher /* [ST 32] The number of commands received in queue 8 */
565adfc5217SJeff Kirsher #define CSDM_REG_NUM_OF_Q8_CMD					 0xc2264
566adfc5217SJeff Kirsher /* [ST 32] The number of commands received in queue 9 */
567adfc5217SJeff Kirsher #define CSDM_REG_NUM_OF_Q9_CMD					 0xc2268
568adfc5217SJeff Kirsher /* [RW 13] The start address in the internal RAM for queue counters */
569adfc5217SJeff Kirsher #define CSDM_REG_Q_COUNTER_START_ADDR				 0xc2010
570adfc5217SJeff Kirsher /* [R 1] pxp_ctrl rd_data fifo empty in sdm_dma_rsp block */
571adfc5217SJeff Kirsher #define CSDM_REG_RSP_PXP_CTRL_RDATA_EMPTY			 0xc2548
572adfc5217SJeff Kirsher /* [R 1] parser fifo empty in sdm_sync block */
573adfc5217SJeff Kirsher #define CSDM_REG_SYNC_PARSER_EMPTY				 0xc2550
574adfc5217SJeff Kirsher /* [R 1] parser serial fifo empty in sdm_sync block */
575adfc5217SJeff Kirsher #define CSDM_REG_SYNC_SYNC_EMPTY				 0xc2558
576adfc5217SJeff Kirsher /* [RW 32] Tick for timer counter. Applicable only when
577adfc5217SJeff Kirsher    ~csdm_registers_timer_tick_enable.timer_tick_enable =1 */
578adfc5217SJeff Kirsher #define CSDM_REG_TIMER_TICK					 0xc2000
579adfc5217SJeff Kirsher /* [RW 5] The number of time_slots in the arbitration cycle */
580adfc5217SJeff Kirsher #define CSEM_REG_ARB_CYCLE_SIZE 				 0x200034
581adfc5217SJeff Kirsher /* [RW 3] The source that is associated with arbitration element 0. Source
582adfc5217SJeff Kirsher    decoding is: 0- foc0; 1-fic1; 2-sleeping thread with priority 0; 3-
583adfc5217SJeff Kirsher    sleeping thread with priority 1; 4- sleeping thread with priority 2 */
584adfc5217SJeff Kirsher #define CSEM_REG_ARB_ELEMENT0					 0x200020
585adfc5217SJeff Kirsher /* [RW 3] The source that is associated with arbitration element 1. Source
586adfc5217SJeff Kirsher    decoding is: 0- foc0; 1-fic1; 2-sleeping thread with priority 0; 3-
587adfc5217SJeff Kirsher    sleeping thread with priority 1; 4- sleeping thread with priority 2.
588adfc5217SJeff Kirsher    Could not be equal to register ~csem_registers_arb_element0.arb_element0 */
589adfc5217SJeff Kirsher #define CSEM_REG_ARB_ELEMENT1					 0x200024
590adfc5217SJeff Kirsher /* [RW 3] The source that is associated with arbitration element 2. Source
591adfc5217SJeff Kirsher    decoding is: 0- foc0; 1-fic1; 2-sleeping thread with priority 0; 3-
592adfc5217SJeff Kirsher    sleeping thread with priority 1; 4- sleeping thread with priority 2.
593adfc5217SJeff Kirsher    Could not be equal to register ~csem_registers_arb_element0.arb_element0
594adfc5217SJeff Kirsher    and ~csem_registers_arb_element1.arb_element1 */
595adfc5217SJeff Kirsher #define CSEM_REG_ARB_ELEMENT2					 0x200028
596adfc5217SJeff Kirsher /* [RW 3] The source that is associated with arbitration element 3. Source
597adfc5217SJeff Kirsher    decoding is: 0- foc0; 1-fic1; 2-sleeping thread with priority 0; 3-
598adfc5217SJeff Kirsher    sleeping thread with priority 1; 4- sleeping thread with priority 2.Could
599adfc5217SJeff Kirsher    not be equal to register ~csem_registers_arb_element0.arb_element0 and
600adfc5217SJeff Kirsher    ~csem_registers_arb_element1.arb_element1 and
601adfc5217SJeff Kirsher    ~csem_registers_arb_element2.arb_element2 */
602adfc5217SJeff Kirsher #define CSEM_REG_ARB_ELEMENT3					 0x20002c
603adfc5217SJeff Kirsher /* [RW 3] The source that is associated with arbitration element 4. Source
604adfc5217SJeff Kirsher    decoding is: 0- foc0; 1-fic1; 2-sleeping thread with priority 0; 3-
605adfc5217SJeff Kirsher    sleeping thread with priority 1; 4- sleeping thread with priority 2.
606adfc5217SJeff Kirsher    Could not be equal to register ~csem_registers_arb_element0.arb_element0
607adfc5217SJeff Kirsher    and ~csem_registers_arb_element1.arb_element1 and
608adfc5217SJeff Kirsher    ~csem_registers_arb_element2.arb_element2 and
609adfc5217SJeff Kirsher    ~csem_registers_arb_element3.arb_element3 */
610adfc5217SJeff Kirsher #define CSEM_REG_ARB_ELEMENT4					 0x200030
611adfc5217SJeff Kirsher /* [RW 32] Interrupt mask register #0 read/write */
612adfc5217SJeff Kirsher #define CSEM_REG_CSEM_INT_MASK_0				 0x200110
613adfc5217SJeff Kirsher #define CSEM_REG_CSEM_INT_MASK_1				 0x200120
614adfc5217SJeff Kirsher /* [R 32] Interrupt register #0 read */
615adfc5217SJeff Kirsher #define CSEM_REG_CSEM_INT_STS_0 				 0x200104
616adfc5217SJeff Kirsher #define CSEM_REG_CSEM_INT_STS_1 				 0x200114
617adfc5217SJeff Kirsher /* [RW 32] Parity mask register #0 read/write */
618adfc5217SJeff Kirsher #define CSEM_REG_CSEM_PRTY_MASK_0				 0x200130
619adfc5217SJeff Kirsher #define CSEM_REG_CSEM_PRTY_MASK_1				 0x200140
620adfc5217SJeff Kirsher /* [R 32] Parity register #0 read */
621adfc5217SJeff Kirsher #define CSEM_REG_CSEM_PRTY_STS_0				 0x200124
622adfc5217SJeff Kirsher #define CSEM_REG_CSEM_PRTY_STS_1				 0x200134
623adfc5217SJeff Kirsher /* [RC 32] Parity register #0 read clear */
624adfc5217SJeff Kirsher #define CSEM_REG_CSEM_PRTY_STS_CLR_0				 0x200128
625adfc5217SJeff Kirsher #define CSEM_REG_CSEM_PRTY_STS_CLR_1				 0x200138
626adfc5217SJeff Kirsher #define CSEM_REG_ENABLE_IN					 0x2000a4
627adfc5217SJeff Kirsher #define CSEM_REG_ENABLE_OUT					 0x2000a8
628adfc5217SJeff Kirsher /* [RW 32] This address space contains all registers and memories that are
629adfc5217SJeff Kirsher    placed in SEM_FAST block. The SEM_FAST registers are described in
630adfc5217SJeff Kirsher    appendix B. In order to access the sem_fast registers the base address
631adfc5217SJeff Kirsher    ~fast_memory.fast_memory should be added to eachsem_fast register offset. */
632adfc5217SJeff Kirsher #define CSEM_REG_FAST_MEMORY					 0x220000
633adfc5217SJeff Kirsher /* [RW 1] Disables input messages from FIC0 May be updated during run_time
634adfc5217SJeff Kirsher    by the microcode */
635adfc5217SJeff Kirsher #define CSEM_REG_FIC0_DISABLE					 0x200224
636adfc5217SJeff Kirsher /* [RW 1] Disables input messages from FIC1 May be updated during run_time
637adfc5217SJeff Kirsher    by the microcode */
638adfc5217SJeff Kirsher #define CSEM_REG_FIC1_DISABLE					 0x200234
639adfc5217SJeff Kirsher /* [RW 15] Interrupt table Read and write access to it is not possible in
640adfc5217SJeff Kirsher    the middle of the work */
641adfc5217SJeff Kirsher #define CSEM_REG_INT_TABLE					 0x200400
642adfc5217SJeff Kirsher /* [ST 24] Statistics register. The number of messages that entered through
643adfc5217SJeff Kirsher    FIC0 */
644adfc5217SJeff Kirsher #define CSEM_REG_MSG_NUM_FIC0					 0x200000
645adfc5217SJeff Kirsher /* [ST 24] Statistics register. The number of messages that entered through
646adfc5217SJeff Kirsher    FIC1 */
647adfc5217SJeff Kirsher #define CSEM_REG_MSG_NUM_FIC1					 0x200004
648adfc5217SJeff Kirsher /* [ST 24] Statistics register. The number of messages that were sent to
649adfc5217SJeff Kirsher    FOC0 */
650adfc5217SJeff Kirsher #define CSEM_REG_MSG_NUM_FOC0					 0x200008
651adfc5217SJeff Kirsher /* [ST 24] Statistics register. The number of messages that were sent to
652adfc5217SJeff Kirsher    FOC1 */
653adfc5217SJeff Kirsher #define CSEM_REG_MSG_NUM_FOC1					 0x20000c
654adfc5217SJeff Kirsher /* [ST 24] Statistics register. The number of messages that were sent to
655adfc5217SJeff Kirsher    FOC2 */
656adfc5217SJeff Kirsher #define CSEM_REG_MSG_NUM_FOC2					 0x200010
657adfc5217SJeff Kirsher /* [ST 24] Statistics register. The number of messages that were sent to
658adfc5217SJeff Kirsher    FOC3 */
659adfc5217SJeff Kirsher #define CSEM_REG_MSG_NUM_FOC3					 0x200014
660adfc5217SJeff Kirsher /* [RW 1] Disables input messages from the passive buffer May be updated
661adfc5217SJeff Kirsher    during run_time by the microcode */
662adfc5217SJeff Kirsher #define CSEM_REG_PAS_DISABLE					 0x20024c
663adfc5217SJeff Kirsher /* [WB 128] Debug only. Passive buffer memory */
664adfc5217SJeff Kirsher #define CSEM_REG_PASSIVE_BUFFER 				 0x202000
665adfc5217SJeff Kirsher /* [WB 46] pram memory. B45 is parity; b[44:0] - data. */
666adfc5217SJeff Kirsher #define CSEM_REG_PRAM						 0x240000
667adfc5217SJeff Kirsher /* [R 16] Valid sleeping threads indication have bit per thread */
668adfc5217SJeff Kirsher #define CSEM_REG_SLEEP_THREADS_VALID				 0x20026c
669adfc5217SJeff Kirsher /* [R 1] EXT_STORE FIFO is empty in sem_slow_ls_ext */
670adfc5217SJeff Kirsher #define CSEM_REG_SLOW_EXT_STORE_EMPTY				 0x2002a0
671adfc5217SJeff Kirsher /* [RW 16] List of free threads . There is a bit per thread. */
672adfc5217SJeff Kirsher #define CSEM_REG_THREADS_LIST					 0x2002e4
673adfc5217SJeff Kirsher /* [RW 3] The arbitration scheme of time_slot 0 */
674adfc5217SJeff Kirsher #define CSEM_REG_TS_0_AS					 0x200038
675adfc5217SJeff Kirsher /* [RW 3] The arbitration scheme of time_slot 10 */
676adfc5217SJeff Kirsher #define CSEM_REG_TS_10_AS					 0x200060
677adfc5217SJeff Kirsher /* [RW 3] The arbitration scheme of time_slot 11 */
678adfc5217SJeff Kirsher #define CSEM_REG_TS_11_AS					 0x200064
679adfc5217SJeff Kirsher /* [RW 3] The arbitration scheme of time_slot 12 */
680adfc5217SJeff Kirsher #define CSEM_REG_TS_12_AS					 0x200068
681adfc5217SJeff Kirsher /* [RW 3] The arbitration scheme of time_slot 13 */
682adfc5217SJeff Kirsher #define CSEM_REG_TS_13_AS					 0x20006c
683adfc5217SJeff Kirsher /* [RW 3] The arbitration scheme of time_slot 14 */
684adfc5217SJeff Kirsher #define CSEM_REG_TS_14_AS					 0x200070
685adfc5217SJeff Kirsher /* [RW 3] The arbitration scheme of time_slot 15 */
686adfc5217SJeff Kirsher #define CSEM_REG_TS_15_AS					 0x200074
687adfc5217SJeff Kirsher /* [RW 3] The arbitration scheme of time_slot 16 */
688adfc5217SJeff Kirsher #define CSEM_REG_TS_16_AS					 0x200078
689adfc5217SJeff Kirsher /* [RW 3] The arbitration scheme of time_slot 17 */
690adfc5217SJeff Kirsher #define CSEM_REG_TS_17_AS					 0x20007c
691adfc5217SJeff Kirsher /* [RW 3] The arbitration scheme of time_slot 18 */
692adfc5217SJeff Kirsher #define CSEM_REG_TS_18_AS					 0x200080
693adfc5217SJeff Kirsher /* [RW 3] The arbitration scheme of time_slot 1 */
694adfc5217SJeff Kirsher #define CSEM_REG_TS_1_AS					 0x20003c
695adfc5217SJeff Kirsher /* [RW 3] The arbitration scheme of time_slot 2 */
696adfc5217SJeff Kirsher #define CSEM_REG_TS_2_AS					 0x200040
697adfc5217SJeff Kirsher /* [RW 3] The arbitration scheme of time_slot 3 */
698adfc5217SJeff Kirsher #define CSEM_REG_TS_3_AS					 0x200044
699adfc5217SJeff Kirsher /* [RW 3] The arbitration scheme of time_slot 4 */
700adfc5217SJeff Kirsher #define CSEM_REG_TS_4_AS					 0x200048
701adfc5217SJeff Kirsher /* [RW 3] The arbitration scheme of time_slot 5 */
702adfc5217SJeff Kirsher #define CSEM_REG_TS_5_AS					 0x20004c
703adfc5217SJeff Kirsher /* [RW 3] The arbitration scheme of time_slot 6 */
704adfc5217SJeff Kirsher #define CSEM_REG_TS_6_AS					 0x200050
705adfc5217SJeff Kirsher /* [RW 3] The arbitration scheme of time_slot 7 */
706adfc5217SJeff Kirsher #define CSEM_REG_TS_7_AS					 0x200054
707adfc5217SJeff Kirsher /* [RW 3] The arbitration scheme of time_slot 8 */
708adfc5217SJeff Kirsher #define CSEM_REG_TS_8_AS					 0x200058
709adfc5217SJeff Kirsher /* [RW 3] The arbitration scheme of time_slot 9 */
710adfc5217SJeff Kirsher #define CSEM_REG_TS_9_AS					 0x20005c
711adfc5217SJeff Kirsher /* [W 7] VF or PF ID for reset error bit. Values 0-63 reset error bit for 64
712adfc5217SJeff Kirsher  * VF; values 64-67 reset error for 4 PF; values 68-127 are not valid. */
713adfc5217SJeff Kirsher #define CSEM_REG_VFPF_ERR_NUM					 0x200380
714adfc5217SJeff Kirsher /* [RW 1] Parity mask register #0 read/write */
715adfc5217SJeff Kirsher #define DBG_REG_DBG_PRTY_MASK					 0xc0a8
716adfc5217SJeff Kirsher /* [R 1] Parity register #0 read */
717adfc5217SJeff Kirsher #define DBG_REG_DBG_PRTY_STS					 0xc09c
718adfc5217SJeff Kirsher /* [RC 1] Parity register #0 read clear */
719adfc5217SJeff Kirsher #define DBG_REG_DBG_PRTY_STS_CLR				 0xc0a0
720adfc5217SJeff Kirsher /* [RW 1] When set the DMAE will process the commands as in E1.5. 1.The
721adfc5217SJeff Kirsher  * function that is used is always SRC-PCI; 2.VF_Valid = 0; 3.VFID=0;
722adfc5217SJeff Kirsher  * 4.Completion function=0; 5.Error handling=0 */
723adfc5217SJeff Kirsher #define DMAE_REG_BACKWARD_COMP_EN				 0x10207c
724adfc5217SJeff Kirsher /* [RW 32] Commands memory. The address to command X; row Y is to calculated
725adfc5217SJeff Kirsher    as 14*X+Y. */
726adfc5217SJeff Kirsher #define DMAE_REG_CMD_MEM					 0x102400
727adfc5217SJeff Kirsher #define DMAE_REG_CMD_MEM_SIZE					 224
728adfc5217SJeff Kirsher /* [RW 1] If 0 - the CRC-16c initial value is all zeroes; if 1 - the CRC-16c
729adfc5217SJeff Kirsher    initial value is all ones. */
730adfc5217SJeff Kirsher #define DMAE_REG_CRC16C_INIT					 0x10201c
731adfc5217SJeff Kirsher /* [RW 1] If 0 - the CRC-16 T10 initial value is all zeroes; if 1 - the
732adfc5217SJeff Kirsher    CRC-16 T10 initial value is all ones. */
733adfc5217SJeff Kirsher #define DMAE_REG_CRC16T10_INIT					 0x102020
734adfc5217SJeff Kirsher /* [RW 2] Interrupt mask register #0 read/write */
735adfc5217SJeff Kirsher #define DMAE_REG_DMAE_INT_MASK					 0x102054
736adfc5217SJeff Kirsher /* [RW 4] Parity mask register #0 read/write */
737adfc5217SJeff Kirsher #define DMAE_REG_DMAE_PRTY_MASK 				 0x102064
738adfc5217SJeff Kirsher /* [R 4] Parity register #0 read */
739adfc5217SJeff Kirsher #define DMAE_REG_DMAE_PRTY_STS					 0x102058
740adfc5217SJeff Kirsher /* [RC 4] Parity register #0 read clear */
741adfc5217SJeff Kirsher #define DMAE_REG_DMAE_PRTY_STS_CLR				 0x10205c
742adfc5217SJeff Kirsher /* [RW 1] Command 0 go. */
743adfc5217SJeff Kirsher #define DMAE_REG_GO_C0						 0x102080
744adfc5217SJeff Kirsher /* [RW 1] Command 1 go. */
745adfc5217SJeff Kirsher #define DMAE_REG_GO_C1						 0x102084
746adfc5217SJeff Kirsher /* [RW 1] Command 10 go. */
747adfc5217SJeff Kirsher #define DMAE_REG_GO_C10 					 0x102088
748adfc5217SJeff Kirsher /* [RW 1] Command 11 go. */
749adfc5217SJeff Kirsher #define DMAE_REG_GO_C11 					 0x10208c
750adfc5217SJeff Kirsher /* [RW 1] Command 12 go. */
751adfc5217SJeff Kirsher #define DMAE_REG_GO_C12 					 0x102090
752adfc5217SJeff Kirsher /* [RW 1] Command 13 go. */
753adfc5217SJeff Kirsher #define DMAE_REG_GO_C13 					 0x102094
754adfc5217SJeff Kirsher /* [RW 1] Command 14 go. */
755adfc5217SJeff Kirsher #define DMAE_REG_GO_C14 					 0x102098
756adfc5217SJeff Kirsher /* [RW 1] Command 15 go. */
757adfc5217SJeff Kirsher #define DMAE_REG_GO_C15 					 0x10209c
758adfc5217SJeff Kirsher /* [RW 1] Command 2 go. */
759adfc5217SJeff Kirsher #define DMAE_REG_GO_C2						 0x1020a0
760adfc5217SJeff Kirsher /* [RW 1] Command 3 go. */
761adfc5217SJeff Kirsher #define DMAE_REG_GO_C3						 0x1020a4
762adfc5217SJeff Kirsher /* [RW 1] Command 4 go. */
763adfc5217SJeff Kirsher #define DMAE_REG_GO_C4						 0x1020a8
764adfc5217SJeff Kirsher /* [RW 1] Command 5 go. */
765adfc5217SJeff Kirsher #define DMAE_REG_GO_C5						 0x1020ac
766adfc5217SJeff Kirsher /* [RW 1] Command 6 go. */
767adfc5217SJeff Kirsher #define DMAE_REG_GO_C6						 0x1020b0
768adfc5217SJeff Kirsher /* [RW 1] Command 7 go. */
769adfc5217SJeff Kirsher #define DMAE_REG_GO_C7						 0x1020b4
770adfc5217SJeff Kirsher /* [RW 1] Command 8 go. */
771adfc5217SJeff Kirsher #define DMAE_REG_GO_C8						 0x1020b8
772adfc5217SJeff Kirsher /* [RW 1] Command 9 go. */
773adfc5217SJeff Kirsher #define DMAE_REG_GO_C9						 0x1020bc
774adfc5217SJeff Kirsher /* [RW 1] DMAE GRC Interface (Target; aster) enable. If 0 - the acknowledge
775adfc5217SJeff Kirsher    input is disregarded; valid is deasserted; all other signals are treated
776adfc5217SJeff Kirsher    as usual; if 1 - normal activity. */
777adfc5217SJeff Kirsher #define DMAE_REG_GRC_IFEN					 0x102008
778adfc5217SJeff Kirsher /* [RW 1] DMAE PCI Interface (Request; ead; rite) enable. If 0 - the
779adfc5217SJeff Kirsher    acknowledge input is disregarded; valid is deasserted; full is asserted;
780adfc5217SJeff Kirsher    all other signals are treated as usual; if 1 - normal activity. */
781adfc5217SJeff Kirsher #define DMAE_REG_PCI_IFEN					 0x102004
782adfc5217SJeff Kirsher /* [RW 4] DMAE- PCI Request Interface initial credit. Write writes the
783adfc5217SJeff Kirsher    initial value to the credit counter; related to the address. Read returns
784adfc5217SJeff Kirsher    the current value of the counter. */
785adfc5217SJeff Kirsher #define DMAE_REG_PXP_REQ_INIT_CRD				 0x1020c0
786adfc5217SJeff Kirsher /* [RW 8] Aggregation command. */
787adfc5217SJeff Kirsher #define DORQ_REG_AGG_CMD0					 0x170060
788adfc5217SJeff Kirsher /* [RW 8] Aggregation command. */
789adfc5217SJeff Kirsher #define DORQ_REG_AGG_CMD1					 0x170064
790adfc5217SJeff Kirsher /* [RW 8] Aggregation command. */
791adfc5217SJeff Kirsher #define DORQ_REG_AGG_CMD2					 0x170068
792adfc5217SJeff Kirsher /* [RW 8] Aggregation command. */
793adfc5217SJeff Kirsher #define DORQ_REG_AGG_CMD3					 0x17006c
794adfc5217SJeff Kirsher /* [RW 28] UCM Header. */
795adfc5217SJeff Kirsher #define DORQ_REG_CMHEAD_RX					 0x170050
796adfc5217SJeff Kirsher /* [RW 32] Doorbell address for RBC doorbells (function 0). */
797adfc5217SJeff Kirsher #define DORQ_REG_DB_ADDR0					 0x17008c
798adfc5217SJeff Kirsher /* [RW 5] Interrupt mask register #0 read/write */
799adfc5217SJeff Kirsher #define DORQ_REG_DORQ_INT_MASK					 0x170180
800adfc5217SJeff Kirsher /* [R 5] Interrupt register #0 read */
801adfc5217SJeff Kirsher #define DORQ_REG_DORQ_INT_STS					 0x170174
802adfc5217SJeff Kirsher /* [RC 5] Interrupt register #0 read clear */
803adfc5217SJeff Kirsher #define DORQ_REG_DORQ_INT_STS_CLR				 0x170178
804adfc5217SJeff Kirsher /* [RW 2] Parity mask register #0 read/write */
805adfc5217SJeff Kirsher #define DORQ_REG_DORQ_PRTY_MASK 				 0x170190
806adfc5217SJeff Kirsher /* [R 2] Parity register #0 read */
807adfc5217SJeff Kirsher #define DORQ_REG_DORQ_PRTY_STS					 0x170184
808adfc5217SJeff Kirsher /* [RC 2] Parity register #0 read clear */
809adfc5217SJeff Kirsher #define DORQ_REG_DORQ_PRTY_STS_CLR				 0x170188
810adfc5217SJeff Kirsher /* [RW 8] The address to write the DPM CID to STORM. */
811adfc5217SJeff Kirsher #define DORQ_REG_DPM_CID_ADDR					 0x170044
812adfc5217SJeff Kirsher /* [RW 5] The DPM mode CID extraction offset. */
813adfc5217SJeff Kirsher #define DORQ_REG_DPM_CID_OFST					 0x170030
814adfc5217SJeff Kirsher /* [RW 12] The threshold of the DQ FIFO to send the almost full interrupt. */
815adfc5217SJeff Kirsher #define DORQ_REG_DQ_FIFO_AFULL_TH				 0x17007c
816adfc5217SJeff Kirsher /* [RW 12] The threshold of the DQ FIFO to send the full interrupt. */
817adfc5217SJeff Kirsher #define DORQ_REG_DQ_FIFO_FULL_TH				 0x170078
818adfc5217SJeff Kirsher /* [R 13] Current value of the DQ FIFO fill level according to following
819adfc5217SJeff Kirsher    pointer. The range is 0 - 256 FIFO rows; where each row stands for the
820adfc5217SJeff Kirsher    doorbell. */
821adfc5217SJeff Kirsher #define DORQ_REG_DQ_FILL_LVLF					 0x1700a4
822adfc5217SJeff Kirsher /* [R 1] DQ FIFO full status. Is set; when FIFO filling level is more or
823adfc5217SJeff Kirsher    equal to full threshold; reset on full clear. */
824adfc5217SJeff Kirsher #define DORQ_REG_DQ_FULL_ST					 0x1700c0
825adfc5217SJeff Kirsher /* [RW 28] The value sent to CM header in the case of CFC load error. */
826adfc5217SJeff Kirsher #define DORQ_REG_ERR_CMHEAD					 0x170058
827adfc5217SJeff Kirsher #define DORQ_REG_IF_EN						 0x170004
828adfc5217SJeff Kirsher #define DORQ_REG_MODE_ACT					 0x170008
829adfc5217SJeff Kirsher /* [RW 5] The normal mode CID extraction offset. */
830adfc5217SJeff Kirsher #define DORQ_REG_NORM_CID_OFST					 0x17002c
831adfc5217SJeff Kirsher /* [RW 28] TCM Header when only TCP context is loaded. */
832adfc5217SJeff Kirsher #define DORQ_REG_NORM_CMHEAD_TX 				 0x17004c
833adfc5217SJeff Kirsher /* [RW 3] The number of simultaneous outstanding requests to Context Fetch
834adfc5217SJeff Kirsher    Interface. */
835adfc5217SJeff Kirsher #define DORQ_REG_OUTST_REQ					 0x17003c
836adfc5217SJeff Kirsher #define DORQ_REG_PF_USAGE_CNT					 0x1701d0
837adfc5217SJeff Kirsher #define DORQ_REG_REGN						 0x170038
838adfc5217SJeff Kirsher /* [R 4] Current value of response A counter credit. Initial credit is
839adfc5217SJeff Kirsher    configured through write to ~dorq_registers_rsp_init_crd.rsp_init_crd
840adfc5217SJeff Kirsher    register. */
841adfc5217SJeff Kirsher #define DORQ_REG_RSPA_CRD_CNT					 0x1700ac
842adfc5217SJeff Kirsher /* [R 4] Current value of response B counter credit. Initial credit is
843adfc5217SJeff Kirsher    configured through write to ~dorq_registers_rsp_init_crd.rsp_init_crd
844adfc5217SJeff Kirsher    register. */
845adfc5217SJeff Kirsher #define DORQ_REG_RSPB_CRD_CNT					 0x1700b0
846adfc5217SJeff Kirsher /* [RW 4] The initial credit at the Doorbell Response Interface. The write
847adfc5217SJeff Kirsher    writes the same initial credit to the rspa_crd_cnt and rspb_crd_cnt. The
848adfc5217SJeff Kirsher    read reads this written value. */
849adfc5217SJeff Kirsher #define DORQ_REG_RSP_INIT_CRD					 0x170048
850adfc5217SJeff Kirsher /* [RW 4] Initial activity counter value on the load request; when the
851adfc5217SJeff Kirsher    shortcut is done. */
852adfc5217SJeff Kirsher #define DORQ_REG_SHRT_ACT_CNT					 0x170070
853adfc5217SJeff Kirsher /* [RW 28] TCM Header when both ULP and TCP context is loaded. */
854adfc5217SJeff Kirsher #define DORQ_REG_SHRT_CMHEAD					 0x170054
855adfc5217SJeff Kirsher #define HC_CONFIG_0_REG_ATTN_BIT_EN_0				 (0x1<<4)
856adfc5217SJeff Kirsher #define HC_CONFIG_0_REG_BLOCK_DISABLE_0				 (0x1<<0)
857adfc5217SJeff Kirsher #define HC_CONFIG_0_REG_INT_LINE_EN_0				 (0x1<<3)
858adfc5217SJeff Kirsher #define HC_CONFIG_0_REG_MSI_ATTN_EN_0				 (0x1<<7)
859adfc5217SJeff Kirsher #define HC_CONFIG_0_REG_MSI_MSIX_INT_EN_0			 (0x1<<2)
860adfc5217SJeff Kirsher #define HC_CONFIG_0_REG_SINGLE_ISR_EN_0				 (0x1<<1)
861adfc5217SJeff Kirsher #define HC_CONFIG_1_REG_BLOCK_DISABLE_1				 (0x1<<0)
862adfc5217SJeff Kirsher #define HC_REG_AGG_INT_0					 0x108050
863adfc5217SJeff Kirsher #define HC_REG_AGG_INT_1					 0x108054
864adfc5217SJeff Kirsher #define HC_REG_ATTN_BIT 					 0x108120
865adfc5217SJeff Kirsher #define HC_REG_ATTN_IDX 					 0x108100
866adfc5217SJeff Kirsher #define HC_REG_ATTN_MSG0_ADDR_L 				 0x108018
867adfc5217SJeff Kirsher #define HC_REG_ATTN_MSG1_ADDR_L 				 0x108020
868adfc5217SJeff Kirsher #define HC_REG_ATTN_NUM_P0					 0x108038
869adfc5217SJeff Kirsher #define HC_REG_ATTN_NUM_P1					 0x10803c
870adfc5217SJeff Kirsher #define HC_REG_COMMAND_REG					 0x108180
871adfc5217SJeff Kirsher #define HC_REG_CONFIG_0 					 0x108000
872adfc5217SJeff Kirsher #define HC_REG_CONFIG_1 					 0x108004
873adfc5217SJeff Kirsher #define HC_REG_FUNC_NUM_P0					 0x1080ac
874adfc5217SJeff Kirsher #define HC_REG_FUNC_NUM_P1					 0x1080b0
875adfc5217SJeff Kirsher /* [RW 3] Parity mask register #0 read/write */
876adfc5217SJeff Kirsher #define HC_REG_HC_PRTY_MASK					 0x1080a0
877adfc5217SJeff Kirsher /* [R 3] Parity register #0 read */
878adfc5217SJeff Kirsher #define HC_REG_HC_PRTY_STS					 0x108094
879adfc5217SJeff Kirsher /* [RC 3] Parity register #0 read clear */
880adfc5217SJeff Kirsher #define HC_REG_HC_PRTY_STS_CLR					 0x108098
881adfc5217SJeff Kirsher #define HC_REG_INT_MASK						 0x108108
882adfc5217SJeff Kirsher #define HC_REG_LEADING_EDGE_0					 0x108040
883adfc5217SJeff Kirsher #define HC_REG_LEADING_EDGE_1					 0x108048
884adfc5217SJeff Kirsher #define HC_REG_MAIN_MEMORY					 0x108800
885adfc5217SJeff Kirsher #define HC_REG_MAIN_MEMORY_SIZE					 152
886adfc5217SJeff Kirsher #define HC_REG_P0_PROD_CONS					 0x108200
887adfc5217SJeff Kirsher #define HC_REG_P1_PROD_CONS					 0x108400
888adfc5217SJeff Kirsher #define HC_REG_PBA_COMMAND					 0x108140
889adfc5217SJeff Kirsher #define HC_REG_PCI_CONFIG_0					 0x108010
890adfc5217SJeff Kirsher #define HC_REG_PCI_CONFIG_1					 0x108014
891adfc5217SJeff Kirsher #define HC_REG_STATISTIC_COUNTERS				 0x109000
892adfc5217SJeff Kirsher #define HC_REG_TRAILING_EDGE_0					 0x108044
893adfc5217SJeff Kirsher #define HC_REG_TRAILING_EDGE_1					 0x10804c
894adfc5217SJeff Kirsher #define HC_REG_UC_RAM_ADDR_0					 0x108028
895adfc5217SJeff Kirsher #define HC_REG_UC_RAM_ADDR_1					 0x108030
896adfc5217SJeff Kirsher #define HC_REG_USTORM_ADDR_FOR_COALESCE 			 0x108068
897adfc5217SJeff Kirsher #define HC_REG_VQID_0						 0x108008
898adfc5217SJeff Kirsher #define HC_REG_VQID_1						 0x10800c
899adfc5217SJeff Kirsher #define IGU_BLOCK_CONFIGURATION_REG_BACKWARD_COMP_EN		 (0x1<<1)
900adfc5217SJeff Kirsher #define IGU_BLOCK_CONFIGURATION_REG_BLOCK_ENABLE		 (0x1<<0)
901adfc5217SJeff Kirsher #define IGU_REG_ATTENTION_ACK_BITS				 0x130108
902adfc5217SJeff Kirsher /* [R 4] Debug: attn_fsm */
903adfc5217SJeff Kirsher #define IGU_REG_ATTN_FSM					 0x130054
904adfc5217SJeff Kirsher #define IGU_REG_ATTN_MSG_ADDR_H				 0x13011c
905adfc5217SJeff Kirsher #define IGU_REG_ATTN_MSG_ADDR_L				 0x130120
906adfc5217SJeff Kirsher /* [R 4] Debug: [3] - attention write done message is pending (0-no pending;
907adfc5217SJeff Kirsher  * 1-pending). [2:0] = PFID. Pending means attention message was sent; but
908adfc5217SJeff Kirsher  * write done didn't receive. */
909adfc5217SJeff Kirsher #define IGU_REG_ATTN_WRITE_DONE_PENDING			 0x130030
910adfc5217SJeff Kirsher #define IGU_REG_BLOCK_CONFIGURATION				 0x130000
911adfc5217SJeff Kirsher #define IGU_REG_COMMAND_REG_32LSB_DATA				 0x130124
912adfc5217SJeff Kirsher #define IGU_REG_COMMAND_REG_CTRL				 0x13012c
913adfc5217SJeff Kirsher /* [WB_R 32] Cleanup bit status per SB. 1 = cleanup is set. 0 = cleanup bit
914adfc5217SJeff Kirsher  * is clear. The bits in this registers are set and clear via the producer
915adfc5217SJeff Kirsher  * command. Data valid only in addresses 0-4. all the rest are zero. */
916adfc5217SJeff Kirsher #define IGU_REG_CSTORM_TYPE_0_SB_CLEANUP			 0x130200
917adfc5217SJeff Kirsher /* [R 5] Debug: ctrl_fsm */
918adfc5217SJeff Kirsher #define IGU_REG_CTRL_FSM					 0x130064
919adfc5217SJeff Kirsher /* [R 1] data available for error memory. If this bit is clear do not red
920adfc5217SJeff Kirsher  * from error_handling_memory. */
921adfc5217SJeff Kirsher #define IGU_REG_ERROR_HANDLING_DATA_VALID			 0x130130
922adfc5217SJeff Kirsher /* [RW 11] Parity mask register #0 read/write */
923adfc5217SJeff Kirsher #define IGU_REG_IGU_PRTY_MASK					 0x1300a8
924adfc5217SJeff Kirsher /* [R 11] Parity register #0 read */
925adfc5217SJeff Kirsher #define IGU_REG_IGU_PRTY_STS					 0x13009c
926adfc5217SJeff Kirsher /* [RC 11] Parity register #0 read clear */
927adfc5217SJeff Kirsher #define IGU_REG_IGU_PRTY_STS_CLR				 0x1300a0
928adfc5217SJeff Kirsher /* [R 4] Debug: int_handle_fsm */
929adfc5217SJeff Kirsher #define IGU_REG_INT_HANDLE_FSM					 0x130050
930adfc5217SJeff Kirsher #define IGU_REG_LEADING_EDGE_LATCH				 0x130134
931adfc5217SJeff Kirsher /* [RW 14] mapping CAM; relevant for E2 operating mode only. [0] - valid.
932adfc5217SJeff Kirsher  * [6:1] - vector number; [13:7] - FID (if VF - [13] = 0; [12:7] = VF
933adfc5217SJeff Kirsher  * number; if PF - [13] = 1; [12:10] = 0; [9:7] = PF number); */
934adfc5217SJeff Kirsher #define IGU_REG_MAPPING_MEMORY					 0x131000
935adfc5217SJeff Kirsher #define IGU_REG_MAPPING_MEMORY_SIZE				 136
936adfc5217SJeff Kirsher #define IGU_REG_PBA_STATUS_LSB					 0x130138
937adfc5217SJeff Kirsher #define IGU_REG_PBA_STATUS_MSB					 0x13013c
938adfc5217SJeff Kirsher #define IGU_REG_PCI_PF_MSI_EN					 0x130140
939adfc5217SJeff Kirsher #define IGU_REG_PCI_PF_MSIX_EN					 0x130144
940adfc5217SJeff Kirsher #define IGU_REG_PCI_PF_MSIX_FUNC_MASK				 0x130148
941adfc5217SJeff Kirsher /* [WB_R 32] Each bit represent the pending bits status for that SB. 0 = no
942adfc5217SJeff Kirsher  * pending; 1 = pending. Pendings means interrupt was asserted; and write
943adfc5217SJeff Kirsher  * done was not received. Data valid only in addresses 0-4. all the rest are
944adfc5217SJeff Kirsher  * zero. */
945adfc5217SJeff Kirsher #define IGU_REG_PENDING_BITS_STATUS				 0x130300
946adfc5217SJeff Kirsher #define IGU_REG_PF_CONFIGURATION				 0x130154
947adfc5217SJeff Kirsher /* [RW 20] producers only. E2 mode: address 0-135 match to the mapping
948adfc5217SJeff Kirsher  * memory; 136 - PF0 default prod; 137 PF1 default prod; 138 - PF2 default
949adfc5217SJeff Kirsher  * prod; 139 PF3 default prod; 140 - PF0 - ATTN prod; 141 - PF1 - ATTN prod;
950adfc5217SJeff Kirsher  * 142 - PF2 - ATTN prod; 143 - PF3 - ATTN prod; 144-147 reserved. E1.5 mode
951adfc5217SJeff Kirsher  * - In backward compatible mode; for non default SB; each even line in the
952adfc5217SJeff Kirsher  * memory holds the U producer and each odd line hold the C producer. The
953adfc5217SJeff Kirsher  * first 128 producer are for NDSB (PF0 - 0-31; PF1 - 32-63 and so on). The
954adfc5217SJeff Kirsher  * last 20 producers are for the DSB for each PF. each PF has five segments
955adfc5217SJeff Kirsher  * (the order inside each segment is PF0; PF1; PF2; PF3) - 128-131 U prods;
956adfc5217SJeff Kirsher  * 132-135 C prods; 136-139 X prods; 140-143 T prods; 144-147 ATTN prods; */
957adfc5217SJeff Kirsher #define IGU_REG_PROD_CONS_MEMORY				 0x132000
958adfc5217SJeff Kirsher /* [R 3] Debug: pxp_arb_fsm */
959adfc5217SJeff Kirsher #define IGU_REG_PXP_ARB_FSM					 0x130068
960adfc5217SJeff Kirsher /* [RW 6] Write one for each bit will reset the appropriate memory. When the
961adfc5217SJeff Kirsher  * memory reset finished the appropriate bit will be clear. Bit 0 - mapping
962adfc5217SJeff Kirsher  * memory; Bit 1 - SB memory; Bit 2 - SB interrupt and mask register; Bit 3
963adfc5217SJeff Kirsher  * - MSIX memory; Bit 4 - PBA memory; Bit 5 - statistics; */
964adfc5217SJeff Kirsher #define IGU_REG_RESET_MEMORIES					 0x130158
965adfc5217SJeff Kirsher /* [R 4] Debug: sb_ctrl_fsm */
966adfc5217SJeff Kirsher #define IGU_REG_SB_CTRL_FSM					 0x13004c
967adfc5217SJeff Kirsher #define IGU_REG_SB_INT_BEFORE_MASK_LSB				 0x13015c
968adfc5217SJeff Kirsher #define IGU_REG_SB_INT_BEFORE_MASK_MSB				 0x130160
969adfc5217SJeff Kirsher #define IGU_REG_SB_MASK_LSB					 0x130164
970adfc5217SJeff Kirsher #define IGU_REG_SB_MASK_MSB					 0x130168
971adfc5217SJeff Kirsher /* [RW 16] Number of command that were dropped without causing an interrupt
972adfc5217SJeff Kirsher  * due to: read access for WO BAR address; or write access for RO BAR
973adfc5217SJeff Kirsher  * address or any access for reserved address or PCI function error is set
974adfc5217SJeff Kirsher  * and address is not MSIX; PBA or cleanup */
975adfc5217SJeff Kirsher #define IGU_REG_SILENT_DROP					 0x13016c
976adfc5217SJeff Kirsher /* [RW 10] Number of MSI/MSIX/ATTN messages sent for the function: 0-63 -
977adfc5217SJeff Kirsher  * number of MSIX messages per VF; 64-67 - number of MSI/MSIX messages per
978adfc5217SJeff Kirsher  * PF; 68-71 number of ATTN messages per PF */
979adfc5217SJeff Kirsher #define IGU_REG_STATISTIC_NUM_MESSAGE_SENT			 0x130800
980adfc5217SJeff Kirsher /* [RW 32] Number of cycles the timer mask masking the IGU interrupt when a
981adfc5217SJeff Kirsher  * timer mask command arrives. Value must be bigger than 100. */
982adfc5217SJeff Kirsher #define IGU_REG_TIMER_MASKING_VALUE				 0x13003c
983adfc5217SJeff Kirsher #define IGU_REG_TRAILING_EDGE_LATCH				 0x130104
984adfc5217SJeff Kirsher #define IGU_REG_VF_CONFIGURATION				 0x130170
985adfc5217SJeff Kirsher /* [WB_R 32] Each bit represent write done pending bits status for that SB
986adfc5217SJeff Kirsher  * (MSI/MSIX message was sent and write done was not received yet). 0 =
987adfc5217SJeff Kirsher  * clear; 1 = set. Data valid only in addresses 0-4. all the rest are zero. */
988adfc5217SJeff Kirsher #define IGU_REG_WRITE_DONE_PENDING				 0x130480
989adfc5217SJeff Kirsher #define MCP_A_REG_MCPR_SCRATCH					 0x3a0000
990452427b0SYuval Mintz #define MCP_REG_MCPR_ACCESS_LOCK				 0x8009c
991adfc5217SJeff Kirsher #define MCP_REG_MCPR_CPU_PROGRAM_COUNTER			 0x8501c
992adfc5217SJeff Kirsher #define MCP_REG_MCPR_GP_INPUTS					 0x800c0
993adfc5217SJeff Kirsher #define MCP_REG_MCPR_GP_OENABLE					 0x800c8
994adfc5217SJeff Kirsher #define MCP_REG_MCPR_GP_OUTPUTS					 0x800c4
995adfc5217SJeff Kirsher #define MCP_REG_MCPR_IMC_COMMAND				 0x85900
996adfc5217SJeff Kirsher #define MCP_REG_MCPR_IMC_DATAREG0				 0x85920
997adfc5217SJeff Kirsher #define MCP_REG_MCPR_IMC_SLAVE_CONTROL				 0x85904
998adfc5217SJeff Kirsher #define MCP_REG_MCPR_CPU_PROGRAM_COUNTER			 0x8501c
999adfc5217SJeff Kirsher #define MCP_REG_MCPR_NVM_ACCESS_ENABLE				 0x86424
1000adfc5217SJeff Kirsher #define MCP_REG_MCPR_NVM_ADDR					 0x8640c
1001adfc5217SJeff Kirsher #define MCP_REG_MCPR_NVM_CFG4					 0x8642c
1002adfc5217SJeff Kirsher #define MCP_REG_MCPR_NVM_COMMAND				 0x86400
1003adfc5217SJeff Kirsher #define MCP_REG_MCPR_NVM_READ					 0x86410
1004adfc5217SJeff Kirsher #define MCP_REG_MCPR_NVM_SW_ARB 				 0x86420
1005adfc5217SJeff Kirsher #define MCP_REG_MCPR_NVM_WRITE					 0x86408
1006adfc5217SJeff Kirsher #define MCP_REG_MCPR_SCRATCH					 0xa0000
1007adfc5217SJeff Kirsher #define MISC_AEU_GENERAL_MASK_REG_AEU_NIG_CLOSE_MASK		 (0x1<<1)
1008adfc5217SJeff Kirsher #define MISC_AEU_GENERAL_MASK_REG_AEU_PXP_CLOSE_MASK		 (0x1<<0)
1009adfc5217SJeff Kirsher /* [R 32] read first 32 bit after inversion of function 0. mapped as
1010adfc5217SJeff Kirsher    follows: [0] NIG attention for function0; [1] NIG attention for
1011adfc5217SJeff Kirsher    function1; [2] GPIO1 mcp; [3] GPIO2 mcp; [4] GPIO3 mcp; [5] GPIO4 mcp;
1012adfc5217SJeff Kirsher    [6] GPIO1 function 1; [7] GPIO2 function 1; [8] GPIO3 function 1; [9]
1013adfc5217SJeff Kirsher    GPIO4 function 1; [10] PCIE glue/PXP VPD event function0; [11] PCIE
1014adfc5217SJeff Kirsher    glue/PXP VPD event function1; [12] PCIE glue/PXP Expansion ROM event0;
1015adfc5217SJeff Kirsher    [13] PCIE glue/PXP Expansion ROM event1; [14] SPIO4; [15] SPIO5; [16]
1016adfc5217SJeff Kirsher    MSI/X indication for mcp; [17] MSI/X indication for function 1; [18] BRB
1017adfc5217SJeff Kirsher    Parity error; [19] BRB Hw interrupt; [20] PRS Parity error; [21] PRS Hw
1018adfc5217SJeff Kirsher    interrupt; [22] SRC Parity error; [23] SRC Hw interrupt; [24] TSDM Parity
1019adfc5217SJeff Kirsher    error; [25] TSDM Hw interrupt; [26] TCM Parity error; [27] TCM Hw
1020adfc5217SJeff Kirsher    interrupt; [28] TSEMI Parity error; [29] TSEMI Hw interrupt; [30] PBF
1021adfc5217SJeff Kirsher    Parity error; [31] PBF Hw interrupt; */
1022adfc5217SJeff Kirsher #define MISC_REG_AEU_AFTER_INVERT_1_FUNC_0			 0xa42c
1023adfc5217SJeff Kirsher #define MISC_REG_AEU_AFTER_INVERT_1_FUNC_1			 0xa430
1024adfc5217SJeff Kirsher /* [R 32] read first 32 bit after inversion of mcp. mapped as follows: [0]
1025adfc5217SJeff Kirsher    NIG attention for function0; [1] NIG attention for function1; [2] GPIO1
1026adfc5217SJeff Kirsher    mcp; [3] GPIO2 mcp; [4] GPIO3 mcp; [5] GPIO4 mcp; [6] GPIO1 function 1;
1027adfc5217SJeff Kirsher    [7] GPIO2 function 1; [8] GPIO3 function 1; [9] GPIO4 function 1; [10]
1028adfc5217SJeff Kirsher    PCIE glue/PXP VPD event function0; [11] PCIE glue/PXP VPD event
1029adfc5217SJeff Kirsher    function1; [12] PCIE glue/PXP Expansion ROM event0; [13] PCIE glue/PXP
1030adfc5217SJeff Kirsher    Expansion ROM event1; [14] SPIO4; [15] SPIO5; [16] MSI/X indication for
1031adfc5217SJeff Kirsher    mcp; [17] MSI/X indication for function 1; [18] BRB Parity error; [19]
1032adfc5217SJeff Kirsher    BRB Hw interrupt; [20] PRS Parity error; [21] PRS Hw interrupt; [22] SRC
1033adfc5217SJeff Kirsher    Parity error; [23] SRC Hw interrupt; [24] TSDM Parity error; [25] TSDM Hw
1034adfc5217SJeff Kirsher    interrupt; [26] TCM Parity error; [27] TCM Hw interrupt; [28] TSEMI
1035adfc5217SJeff Kirsher    Parity error; [29] TSEMI Hw interrupt; [30] PBF Parity error; [31] PBF Hw
1036adfc5217SJeff Kirsher    interrupt; */
1037adfc5217SJeff Kirsher #define MISC_REG_AEU_AFTER_INVERT_1_MCP 			 0xa434
1038adfc5217SJeff Kirsher /* [R 32] read second 32 bit after inversion of function 0. mapped as
1039adfc5217SJeff Kirsher    follows: [0] PBClient Parity error; [1] PBClient Hw interrupt; [2] QM
1040adfc5217SJeff Kirsher    Parity error; [3] QM Hw interrupt; [4] Timers Parity error; [5] Timers Hw
1041adfc5217SJeff Kirsher    interrupt; [6] XSDM Parity error; [7] XSDM Hw interrupt; [8] XCM Parity
1042adfc5217SJeff Kirsher    error; [9] XCM Hw interrupt; [10] XSEMI Parity error; [11] XSEMI Hw
1043adfc5217SJeff Kirsher    interrupt; [12] DoorbellQ Parity error; [13] DoorbellQ Hw interrupt; [14]
1044adfc5217SJeff Kirsher    NIG Parity error; [15] NIG Hw interrupt; [16] Vaux PCI core Parity error;
1045adfc5217SJeff Kirsher    [17] Vaux PCI core Hw interrupt; [18] Debug Parity error; [19] Debug Hw
1046adfc5217SJeff Kirsher    interrupt; [20] USDM Parity error; [21] USDM Hw interrupt; [22] UCM
1047adfc5217SJeff Kirsher    Parity error; [23] UCM Hw interrupt; [24] USEMI Parity error; [25] USEMI
1048adfc5217SJeff Kirsher    Hw interrupt; [26] UPB Parity error; [27] UPB Hw interrupt; [28] CSDM
1049adfc5217SJeff Kirsher    Parity error; [29] CSDM Hw interrupt; [30] CCM Parity error; [31] CCM Hw
1050adfc5217SJeff Kirsher    interrupt; */
1051adfc5217SJeff Kirsher #define MISC_REG_AEU_AFTER_INVERT_2_FUNC_0			 0xa438
1052adfc5217SJeff Kirsher #define MISC_REG_AEU_AFTER_INVERT_2_FUNC_1			 0xa43c
1053adfc5217SJeff Kirsher /* [R 32] read second 32 bit after inversion of mcp. mapped as follows: [0]
1054adfc5217SJeff Kirsher    PBClient Parity error; [1] PBClient Hw interrupt; [2] QM Parity error;
1055adfc5217SJeff Kirsher    [3] QM Hw interrupt; [4] Timers Parity error; [5] Timers Hw interrupt;
1056adfc5217SJeff Kirsher    [6] XSDM Parity error; [7] XSDM Hw interrupt; [8] XCM Parity error; [9]
1057adfc5217SJeff Kirsher    XCM Hw interrupt; [10] XSEMI Parity error; [11] XSEMI Hw interrupt; [12]
1058adfc5217SJeff Kirsher    DoorbellQ Parity error; [13] DoorbellQ Hw interrupt; [14] NIG Parity
1059adfc5217SJeff Kirsher    error; [15] NIG Hw interrupt; [16] Vaux PCI core Parity error; [17] Vaux
1060adfc5217SJeff Kirsher    PCI core Hw interrupt; [18] Debug Parity error; [19] Debug Hw interrupt;
1061adfc5217SJeff Kirsher    [20] USDM Parity error; [21] USDM Hw interrupt; [22] UCM Parity error;
1062adfc5217SJeff Kirsher    [23] UCM Hw interrupt; [24] USEMI Parity error; [25] USEMI Hw interrupt;
1063adfc5217SJeff Kirsher    [26] UPB Parity error; [27] UPB Hw interrupt; [28] CSDM Parity error;
1064adfc5217SJeff Kirsher    [29] CSDM Hw interrupt; [30] CCM Parity error; [31] CCM Hw interrupt; */
1065adfc5217SJeff Kirsher #define MISC_REG_AEU_AFTER_INVERT_2_MCP 			 0xa440
1066adfc5217SJeff Kirsher /* [R 32] read third 32 bit after inversion of function 0. mapped as
1067adfc5217SJeff Kirsher    follows: [0] CSEMI Parity error; [1] CSEMI Hw interrupt; [2] PXP Parity
1068adfc5217SJeff Kirsher    error; [3] PXP Hw interrupt; [4] PXPpciClockClient Parity error; [5]
1069adfc5217SJeff Kirsher    PXPpciClockClient Hw interrupt; [6] CFC Parity error; [7] CFC Hw
1070adfc5217SJeff Kirsher    interrupt; [8] CDU Parity error; [9] CDU Hw interrupt; [10] DMAE Parity
1071adfc5217SJeff Kirsher    error; [11] DMAE Hw interrupt; [12] IGU (HC) Parity error; [13] IGU (HC)
1072adfc5217SJeff Kirsher    Hw interrupt; [14] MISC Parity error; [15] MISC Hw interrupt; [16]
1073adfc5217SJeff Kirsher    pxp_misc_mps_attn; [17] Flash event; [18] SMB event; [19] MCP attn0; [20]
1074adfc5217SJeff Kirsher    MCP attn1; [21] SW timers attn_1 func0; [22] SW timers attn_2 func0; [23]
1075adfc5217SJeff Kirsher    SW timers attn_3 func0; [24] SW timers attn_4 func0; [25] PERST; [26] SW
1076adfc5217SJeff Kirsher    timers attn_1 func1; [27] SW timers attn_2 func1; [28] SW timers attn_3
1077adfc5217SJeff Kirsher    func1; [29] SW timers attn_4 func1; [30] General attn0; [31] General
1078adfc5217SJeff Kirsher    attn1; */
1079adfc5217SJeff Kirsher #define MISC_REG_AEU_AFTER_INVERT_3_FUNC_0			 0xa444
1080adfc5217SJeff Kirsher #define MISC_REG_AEU_AFTER_INVERT_3_FUNC_1			 0xa448
1081adfc5217SJeff Kirsher /* [R 32] read third 32 bit after inversion of mcp. mapped as follows: [0]
1082adfc5217SJeff Kirsher    CSEMI Parity error; [1] CSEMI Hw interrupt; [2] PXP Parity error; [3] PXP
1083adfc5217SJeff Kirsher    Hw interrupt; [4] PXPpciClockClient Parity error; [5] PXPpciClockClient
1084adfc5217SJeff Kirsher    Hw interrupt; [6] CFC Parity error; [7] CFC Hw interrupt; [8] CDU Parity
1085adfc5217SJeff Kirsher    error; [9] CDU Hw interrupt; [10] DMAE Parity error; [11] DMAE Hw
1086adfc5217SJeff Kirsher    interrupt; [12] IGU (HC) Parity error; [13] IGU (HC) Hw interrupt; [14]
1087adfc5217SJeff Kirsher    MISC Parity error; [15] MISC Hw interrupt; [16] pxp_misc_mps_attn; [17]
1088adfc5217SJeff Kirsher    Flash event; [18] SMB event; [19] MCP attn0; [20] MCP attn1; [21] SW
1089adfc5217SJeff Kirsher    timers attn_1 func0; [22] SW timers attn_2 func0; [23] SW timers attn_3
1090adfc5217SJeff Kirsher    func0; [24] SW timers attn_4 func0; [25] PERST; [26] SW timers attn_1
1091adfc5217SJeff Kirsher    func1; [27] SW timers attn_2 func1; [28] SW timers attn_3 func1; [29] SW
1092adfc5217SJeff Kirsher    timers attn_4 func1; [30] General attn0; [31] General attn1; */
1093adfc5217SJeff Kirsher #define MISC_REG_AEU_AFTER_INVERT_3_MCP 			 0xa44c
1094adfc5217SJeff Kirsher /* [R 32] read fourth 32 bit after inversion of function 0. mapped as
1095adfc5217SJeff Kirsher    follows: [0] General attn2; [1] General attn3; [2] General attn4; [3]
1096adfc5217SJeff Kirsher    General attn5; [4] General attn6; [5] General attn7; [6] General attn8;
1097adfc5217SJeff Kirsher    [7] General attn9; [8] General attn10; [9] General attn11; [10] General
1098adfc5217SJeff Kirsher    attn12; [11] General attn13; [12] General attn14; [13] General attn15;
1099adfc5217SJeff Kirsher    [14] General attn16; [15] General attn17; [16] General attn18; [17]
1100adfc5217SJeff Kirsher    General attn19; [18] General attn20; [19] General attn21; [20] Main power
1101adfc5217SJeff Kirsher    interrupt; [21] RBCR Latched attn; [22] RBCT Latched attn; [23] RBCN
1102adfc5217SJeff Kirsher    Latched attn; [24] RBCU Latched attn; [25] RBCP Latched attn; [26] GRC
1103adfc5217SJeff Kirsher    Latched timeout attention; [27] GRC Latched reserved access attention;
1104adfc5217SJeff Kirsher    [28] MCP Latched rom_parity; [29] MCP Latched ump_rx_parity; [30] MCP
1105adfc5217SJeff Kirsher    Latched ump_tx_parity; [31] MCP Latched scpad_parity; */
1106adfc5217SJeff Kirsher #define MISC_REG_AEU_AFTER_INVERT_4_FUNC_0			 0xa450
1107adfc5217SJeff Kirsher #define MISC_REG_AEU_AFTER_INVERT_4_FUNC_1			 0xa454
1108adfc5217SJeff Kirsher /* [R 32] read fourth 32 bit after inversion of mcp. mapped as follows: [0]
1109adfc5217SJeff Kirsher    General attn2; [1] General attn3; [2] General attn4; [3] General attn5;
1110adfc5217SJeff Kirsher    [4] General attn6; [5] General attn7; [6] General attn8; [7] General
1111adfc5217SJeff Kirsher    attn9; [8] General attn10; [9] General attn11; [10] General attn12; [11]
1112adfc5217SJeff Kirsher    General attn13; [12] General attn14; [13] General attn15; [14] General
1113adfc5217SJeff Kirsher    attn16; [15] General attn17; [16] General attn18; [17] General attn19;
1114adfc5217SJeff Kirsher    [18] General attn20; [19] General attn21; [20] Main power interrupt; [21]
1115adfc5217SJeff Kirsher    RBCR Latched attn; [22] RBCT Latched attn; [23] RBCN Latched attn; [24]
1116adfc5217SJeff Kirsher    RBCU Latched attn; [25] RBCP Latched attn; [26] GRC Latched timeout
1117adfc5217SJeff Kirsher    attention; [27] GRC Latched reserved access attention; [28] MCP Latched
1118adfc5217SJeff Kirsher    rom_parity; [29] MCP Latched ump_rx_parity; [30] MCP Latched
1119adfc5217SJeff Kirsher    ump_tx_parity; [31] MCP Latched scpad_parity; */
1120adfc5217SJeff Kirsher #define MISC_REG_AEU_AFTER_INVERT_4_MCP 			 0xa458
1121adfc5217SJeff Kirsher /* [R 32] Read fifth 32 bit after inversion of function 0. Mapped as
1122adfc5217SJeff Kirsher  * follows: [0] PGLUE config_space; [1] PGLUE misc_flr; [2] PGLUE B RBC
1123adfc5217SJeff Kirsher  * attention [3] PGLUE B RBC parity; [4] ATC attention; [5] ATC parity; [6]
1124adfc5217SJeff Kirsher  * CNIG attention (reserved); [7] CNIG parity (reserved); [31-8] Reserved; */
1125adfc5217SJeff Kirsher #define MISC_REG_AEU_AFTER_INVERT_5_FUNC_0			 0xa700
1126adfc5217SJeff Kirsher /* [W 14] write to this register results with the clear of the latched
1127adfc5217SJeff Kirsher    signals; one in d0 clears RBCR latch; one in d1 clears RBCT latch; one in
1128adfc5217SJeff Kirsher    d2 clears RBCN latch; one in d3 clears RBCU latch; one in d4 clears RBCP
1129adfc5217SJeff Kirsher    latch; one in d5 clears GRC Latched timeout attention; one in d6 clears
1130adfc5217SJeff Kirsher    GRC Latched reserved access attention; one in d7 clears Latched
1131adfc5217SJeff Kirsher    rom_parity; one in d8 clears Latched ump_rx_parity; one in d9 clears
1132adfc5217SJeff Kirsher    Latched ump_tx_parity; one in d10 clears Latched scpad_parity (both
1133adfc5217SJeff Kirsher    ports); one in d11 clears pxpv_misc_mps_attn; one in d12 clears
1134adfc5217SJeff Kirsher    pxp_misc_exp_rom_attn0; one in d13 clears pxp_misc_exp_rom_attn1; read
1135adfc5217SJeff Kirsher    from this register return zero */
1136adfc5217SJeff Kirsher #define MISC_REG_AEU_CLR_LATCH_SIGNAL				 0xa45c
1137adfc5217SJeff Kirsher /* [RW 32] first 32b for enabling the output for function 0 output0. mapped
1138adfc5217SJeff Kirsher    as follows: [0] NIG attention for function0; [1] NIG attention for
1139adfc5217SJeff Kirsher    function1; [2] GPIO1 function 0; [3] GPIO2 function 0; [4] GPIO3 function
1140adfc5217SJeff Kirsher    0; [5] GPIO4 function 0; [6] GPIO1 function 1; [7] GPIO2 function 1; [8]
1141adfc5217SJeff Kirsher    GPIO3 function 1; [9] GPIO4 function 1; [10] PCIE glue/PXP VPD event
1142adfc5217SJeff Kirsher    function0; [11] PCIE glue/PXP VPD event function1; [12] PCIE glue/PXP
1143adfc5217SJeff Kirsher    Expansion ROM event0; [13] PCIE glue/PXP Expansion ROM event1; [14]
1144adfc5217SJeff Kirsher    SPIO4; [15] SPIO5; [16] MSI/X indication for function 0; [17] MSI/X
1145adfc5217SJeff Kirsher    indication for function 1; [18] BRB Parity error; [19] BRB Hw interrupt;
1146adfc5217SJeff Kirsher    [20] PRS Parity error; [21] PRS Hw interrupt; [22] SRC Parity error; [23]
1147adfc5217SJeff Kirsher    SRC Hw interrupt; [24] TSDM Parity error; [25] TSDM Hw interrupt; [26]
1148adfc5217SJeff Kirsher    TCM Parity error; [27] TCM Hw interrupt; [28] TSEMI Parity error; [29]
1149adfc5217SJeff Kirsher    TSEMI Hw interrupt; [30] PBF Parity error; [31] PBF Hw interrupt; */
1150adfc5217SJeff Kirsher #define MISC_REG_AEU_ENABLE1_FUNC_0_OUT_0			 0xa06c
1151adfc5217SJeff Kirsher #define MISC_REG_AEU_ENABLE1_FUNC_0_OUT_1			 0xa07c
1152adfc5217SJeff Kirsher #define MISC_REG_AEU_ENABLE1_FUNC_0_OUT_2			 0xa08c
1153adfc5217SJeff Kirsher #define MISC_REG_AEU_ENABLE1_FUNC_0_OUT_3			 0xa09c
1154adfc5217SJeff Kirsher #define MISC_REG_AEU_ENABLE1_FUNC_0_OUT_5			 0xa0bc
1155adfc5217SJeff Kirsher #define MISC_REG_AEU_ENABLE1_FUNC_0_OUT_6			 0xa0cc
1156adfc5217SJeff Kirsher #define MISC_REG_AEU_ENABLE1_FUNC_0_OUT_7			 0xa0dc
1157adfc5217SJeff Kirsher /* [RW 32] first 32b for enabling the output for function 1 output0. mapped
1158adfc5217SJeff Kirsher    as follows: [0] NIG attention for function0; [1] NIG attention for
1159adfc5217SJeff Kirsher    function1; [2] GPIO1 function 1; [3] GPIO2 function 1; [4] GPIO3 function
1160adfc5217SJeff Kirsher    1; [5] GPIO4 function 1; [6] GPIO1 function 1; [7] GPIO2 function 1; [8]
1161adfc5217SJeff Kirsher    GPIO3 function 1; [9] GPIO4 function 1; [10] PCIE glue/PXP VPD event
1162adfc5217SJeff Kirsher    function0; [11] PCIE glue/PXP VPD event function1; [12] PCIE glue/PXP
1163adfc5217SJeff Kirsher    Expansion ROM event0; [13] PCIE glue/PXP Expansion ROM event1; [14]
1164adfc5217SJeff Kirsher    SPIO4; [15] SPIO5; [16] MSI/X indication for function 1; [17] MSI/X
1165adfc5217SJeff Kirsher    indication for function 1; [18] BRB Parity error; [19] BRB Hw interrupt;
1166adfc5217SJeff Kirsher    [20] PRS Parity error; [21] PRS Hw interrupt; [22] SRC Parity error; [23]
1167adfc5217SJeff Kirsher    SRC Hw interrupt; [24] TSDM Parity error; [25] TSDM Hw interrupt; [26]
1168adfc5217SJeff Kirsher    TCM Parity error; [27] TCM Hw interrupt; [28] TSEMI Parity error; [29]
1169adfc5217SJeff Kirsher    TSEMI Hw interrupt; [30] PBF Parity error; [31] PBF Hw interrupt; */
1170adfc5217SJeff Kirsher #define MISC_REG_AEU_ENABLE1_FUNC_1_OUT_0			 0xa10c
1171adfc5217SJeff Kirsher #define MISC_REG_AEU_ENABLE1_FUNC_1_OUT_1			 0xa11c
1172adfc5217SJeff Kirsher #define MISC_REG_AEU_ENABLE1_FUNC_1_OUT_2			 0xa12c
1173adfc5217SJeff Kirsher #define MISC_REG_AEU_ENABLE1_FUNC_1_OUT_3			 0xa13c
1174adfc5217SJeff Kirsher #define MISC_REG_AEU_ENABLE1_FUNC_1_OUT_5			 0xa15c
1175adfc5217SJeff Kirsher #define MISC_REG_AEU_ENABLE1_FUNC_1_OUT_6			 0xa16c
1176adfc5217SJeff Kirsher #define MISC_REG_AEU_ENABLE1_FUNC_1_OUT_7			 0xa17c
1177adfc5217SJeff Kirsher /* [RW 32] first 32b for enabling the output for close the gate nig. mapped
1178adfc5217SJeff Kirsher    as follows: [0] NIG attention for function0; [1] NIG attention for
1179adfc5217SJeff Kirsher    function1; [2] GPIO1 function 0; [3] GPIO2 function 0; [4] GPIO3 function
1180adfc5217SJeff Kirsher    0; [5] GPIO4 function 0; [6] GPIO1 function 1; [7] GPIO2 function 1; [8]
1181adfc5217SJeff Kirsher    GPIO3 function 1; [9] GPIO4 function 1; [10] PCIE glue/PXP VPD event
1182adfc5217SJeff Kirsher    function0; [11] PCIE glue/PXP VPD event function1; [12] PCIE glue/PXP
1183adfc5217SJeff Kirsher    Expansion ROM event0; [13] PCIE glue/PXP Expansion ROM event1; [14]
1184adfc5217SJeff Kirsher    SPIO4; [15] SPIO5; [16] MSI/X indication for function 0; [17] MSI/X
1185adfc5217SJeff Kirsher    indication for function 1; [18] BRB Parity error; [19] BRB Hw interrupt;
1186adfc5217SJeff Kirsher    [20] PRS Parity error; [21] PRS Hw interrupt; [22] SRC Parity error; [23]
1187adfc5217SJeff Kirsher    SRC Hw interrupt; [24] TSDM Parity error; [25] TSDM Hw interrupt; [26]
1188adfc5217SJeff Kirsher    TCM Parity error; [27] TCM Hw interrupt; [28] TSEMI Parity error; [29]
1189adfc5217SJeff Kirsher    TSEMI Hw interrupt; [30] PBF Parity error; [31] PBF Hw interrupt; */
1190adfc5217SJeff Kirsher #define MISC_REG_AEU_ENABLE1_NIG_0				 0xa0ec
1191adfc5217SJeff Kirsher #define MISC_REG_AEU_ENABLE1_NIG_1				 0xa18c
1192adfc5217SJeff Kirsher /* [RW 32] first 32b for enabling the output for close the gate pxp. mapped
1193adfc5217SJeff Kirsher    as follows: [0] NIG attention for function0; [1] NIG attention for
1194adfc5217SJeff Kirsher    function1; [2] GPIO1 function 0; [3] GPIO2 function 0; [4] GPIO3 function
1195adfc5217SJeff Kirsher    0; [5] GPIO4 function 0; [6] GPIO1 function 1; [7] GPIO2 function 1; [8]
1196adfc5217SJeff Kirsher    GPIO3 function 1; [9] GPIO4 function 1; [10] PCIE glue/PXP VPD event
1197adfc5217SJeff Kirsher    function0; [11] PCIE glue/PXP VPD event function1; [12] PCIE glue/PXP
1198adfc5217SJeff Kirsher    Expansion ROM event0; [13] PCIE glue/PXP Expansion ROM event1; [14]
1199adfc5217SJeff Kirsher    SPIO4; [15] SPIO5; [16] MSI/X indication for function 0; [17] MSI/X
1200adfc5217SJeff Kirsher    indication for function 1; [18] BRB Parity error; [19] BRB Hw interrupt;
1201adfc5217SJeff Kirsher    [20] PRS Parity error; [21] PRS Hw interrupt; [22] SRC Parity error; [23]
1202adfc5217SJeff Kirsher    SRC Hw interrupt; [24] TSDM Parity error; [25] TSDM Hw interrupt; [26]
1203adfc5217SJeff Kirsher    TCM Parity error; [27] TCM Hw interrupt; [28] TSEMI Parity error; [29]
1204adfc5217SJeff Kirsher    TSEMI Hw interrupt; [30] PBF Parity error; [31] PBF Hw interrupt; */
1205adfc5217SJeff Kirsher #define MISC_REG_AEU_ENABLE1_PXP_0				 0xa0fc
1206adfc5217SJeff Kirsher #define MISC_REG_AEU_ENABLE1_PXP_1				 0xa19c
1207adfc5217SJeff Kirsher /* [RW 32] second 32b for enabling the output for function 0 output0. mapped
1208adfc5217SJeff Kirsher    as follows: [0] PBClient Parity error; [1] PBClient Hw interrupt; [2] QM
1209adfc5217SJeff Kirsher    Parity error; [3] QM Hw interrupt; [4] Timers Parity error; [5] Timers Hw
1210adfc5217SJeff Kirsher    interrupt; [6] XSDM Parity error; [7] XSDM Hw interrupt; [8] XCM Parity
1211adfc5217SJeff Kirsher    error; [9] XCM Hw interrupt; [10] XSEMI Parity error; [11] XSEMI Hw
1212adfc5217SJeff Kirsher    interrupt; [12] DoorbellQ Parity error; [13] DoorbellQ Hw interrupt; [14]
1213adfc5217SJeff Kirsher    NIG Parity error; [15] NIG Hw interrupt; [16] Vaux PCI core Parity error;
1214adfc5217SJeff Kirsher    [17] Vaux PCI core Hw interrupt; [18] Debug Parity error; [19] Debug Hw
1215adfc5217SJeff Kirsher    interrupt; [20] USDM Parity error; [21] USDM Hw interrupt; [22] UCM
1216adfc5217SJeff Kirsher    Parity error; [23] UCM Hw interrupt; [24] USEMI Parity error; [25] USEMI
1217adfc5217SJeff Kirsher    Hw interrupt; [26] UPB Parity error; [27] UPB Hw interrupt; [28] CSDM
1218adfc5217SJeff Kirsher    Parity error; [29] CSDM Hw interrupt; [30] CCM Parity error; [31] CCM Hw
1219adfc5217SJeff Kirsher    interrupt; */
1220adfc5217SJeff Kirsher #define MISC_REG_AEU_ENABLE2_FUNC_0_OUT_0			 0xa070
1221adfc5217SJeff Kirsher #define MISC_REG_AEU_ENABLE2_FUNC_0_OUT_1			 0xa080
1222adfc5217SJeff Kirsher /* [RW 32] second 32b for enabling the output for function 1 output0. mapped
1223adfc5217SJeff Kirsher    as follows: [0] PBClient Parity error; [1] PBClient Hw interrupt; [2] QM
1224adfc5217SJeff Kirsher    Parity error; [3] QM Hw interrupt; [4] Timers Parity error; [5] Timers Hw
1225adfc5217SJeff Kirsher    interrupt; [6] XSDM Parity error; [7] XSDM Hw interrupt; [8] XCM Parity
1226adfc5217SJeff Kirsher    error; [9] XCM Hw interrupt; [10] XSEMI Parity error; [11] XSEMI Hw
1227adfc5217SJeff Kirsher    interrupt; [12] DoorbellQ Parity error; [13] DoorbellQ Hw interrupt; [14]
1228adfc5217SJeff Kirsher    NIG Parity error; [15] NIG Hw interrupt; [16] Vaux PCI core Parity error;
1229adfc5217SJeff Kirsher    [17] Vaux PCI core Hw interrupt; [18] Debug Parity error; [19] Debug Hw
1230adfc5217SJeff Kirsher    interrupt; [20] USDM Parity error; [21] USDM Hw interrupt; [22] UCM
1231adfc5217SJeff Kirsher    Parity error; [23] UCM Hw interrupt; [24] USEMI Parity error; [25] USEMI
1232adfc5217SJeff Kirsher    Hw interrupt; [26] UPB Parity error; [27] UPB Hw interrupt; [28] CSDM
1233adfc5217SJeff Kirsher    Parity error; [29] CSDM Hw interrupt; [30] CCM Parity error; [31] CCM Hw
1234adfc5217SJeff Kirsher    interrupt; */
1235adfc5217SJeff Kirsher #define MISC_REG_AEU_ENABLE2_FUNC_1_OUT_0			 0xa110
1236adfc5217SJeff Kirsher #define MISC_REG_AEU_ENABLE2_FUNC_1_OUT_1			 0xa120
1237adfc5217SJeff Kirsher /* [RW 32] second 32b for enabling the output for close the gate nig. mapped
1238adfc5217SJeff Kirsher    as follows: [0] PBClient Parity error; [1] PBClient Hw interrupt; [2] QM
1239adfc5217SJeff Kirsher    Parity error; [3] QM Hw interrupt; [4] Timers Parity error; [5] Timers Hw
1240adfc5217SJeff Kirsher    interrupt; [6] XSDM Parity error; [7] XSDM Hw interrupt; [8] XCM Parity
1241adfc5217SJeff Kirsher    error; [9] XCM Hw interrupt; [10] XSEMI Parity error; [11] XSEMI Hw
1242adfc5217SJeff Kirsher    interrupt; [12] DoorbellQ Parity error; [13] DoorbellQ Hw interrupt; [14]
1243adfc5217SJeff Kirsher    NIG Parity error; [15] NIG Hw interrupt; [16] Vaux PCI core Parity error;
1244adfc5217SJeff Kirsher    [17] Vaux PCI core Hw interrupt; [18] Debug Parity error; [19] Debug Hw
1245adfc5217SJeff Kirsher    interrupt; [20] USDM Parity error; [21] USDM Hw interrupt; [22] UCM
1246adfc5217SJeff Kirsher    Parity error; [23] UCM Hw interrupt; [24] USEMI Parity error; [25] USEMI
1247adfc5217SJeff Kirsher    Hw interrupt; [26] UPB Parity error; [27] UPB Hw interrupt; [28] CSDM
1248adfc5217SJeff Kirsher    Parity error; [29] CSDM Hw interrupt; [30] CCM Parity error; [31] CCM Hw
1249adfc5217SJeff Kirsher    interrupt; */
1250adfc5217SJeff Kirsher #define MISC_REG_AEU_ENABLE2_NIG_0				 0xa0f0
1251adfc5217SJeff Kirsher #define MISC_REG_AEU_ENABLE2_NIG_1				 0xa190
1252adfc5217SJeff Kirsher /* [RW 32] second 32b for enabling the output for close the gate pxp. mapped
1253adfc5217SJeff Kirsher    as follows: [0] PBClient Parity error; [1] PBClient Hw interrupt; [2] QM
1254adfc5217SJeff Kirsher    Parity error; [3] QM Hw interrupt; [4] Timers Parity error; [5] Timers Hw
1255adfc5217SJeff Kirsher    interrupt; [6] XSDM Parity error; [7] XSDM Hw interrupt; [8] XCM Parity
1256adfc5217SJeff Kirsher    error; [9] XCM Hw interrupt; [10] XSEMI Parity error; [11] XSEMI Hw
1257adfc5217SJeff Kirsher    interrupt; [12] DoorbellQ Parity error; [13] DoorbellQ Hw interrupt; [14]
1258adfc5217SJeff Kirsher    NIG Parity error; [15] NIG Hw interrupt; [16] Vaux PCI core Parity error;
1259adfc5217SJeff Kirsher    [17] Vaux PCI core Hw interrupt; [18] Debug Parity error; [19] Debug Hw
1260adfc5217SJeff Kirsher    interrupt; [20] USDM Parity error; [21] USDM Hw interrupt; [22] UCM
1261adfc5217SJeff Kirsher    Parity error; [23] UCM Hw interrupt; [24] USEMI Parity error; [25] USEMI
1262adfc5217SJeff Kirsher    Hw interrupt; [26] UPB Parity error; [27] UPB Hw interrupt; [28] CSDM
1263adfc5217SJeff Kirsher    Parity error; [29] CSDM Hw interrupt; [30] CCM Parity error; [31] CCM Hw
1264adfc5217SJeff Kirsher    interrupt; */
1265adfc5217SJeff Kirsher #define MISC_REG_AEU_ENABLE2_PXP_0				 0xa100
1266adfc5217SJeff Kirsher #define MISC_REG_AEU_ENABLE2_PXP_1				 0xa1a0
1267adfc5217SJeff Kirsher /* [RW 32] third 32b for enabling the output for function 0 output0. mapped
1268adfc5217SJeff Kirsher    as follows: [0] CSEMI Parity error; [1] CSEMI Hw interrupt; [2] PXP
1269adfc5217SJeff Kirsher    Parity error; [3] PXP Hw interrupt; [4] PXPpciClockClient Parity error;
1270adfc5217SJeff Kirsher    [5] PXPpciClockClient Hw interrupt; [6] CFC Parity error; [7] CFC Hw
1271adfc5217SJeff Kirsher    interrupt; [8] CDU Parity error; [9] CDU Hw interrupt; [10] DMAE Parity
1272adfc5217SJeff Kirsher    error; [11] DMAE Hw interrupt; [12] IGU (HC) Parity error; [13] IGU (HC)
1273adfc5217SJeff Kirsher    Hw interrupt; [14] MISC Parity error; [15] MISC Hw interrupt; [16]
1274adfc5217SJeff Kirsher    pxp_misc_mps_attn; [17] Flash event; [18] SMB event; [19] MCP attn0; [20]
1275adfc5217SJeff Kirsher    MCP attn1; [21] SW timers attn_1 func0; [22] SW timers attn_2 func0; [23]
1276adfc5217SJeff Kirsher    SW timers attn_3 func0; [24] SW timers attn_4 func0; [25] PERST; [26] SW
1277adfc5217SJeff Kirsher    timers attn_1 func1; [27] SW timers attn_2 func1; [28] SW timers attn_3
1278adfc5217SJeff Kirsher    func1; [29] SW timers attn_4 func1; [30] General attn0; [31] General
1279adfc5217SJeff Kirsher    attn1; */
1280adfc5217SJeff Kirsher #define MISC_REG_AEU_ENABLE3_FUNC_0_OUT_0			 0xa074
1281adfc5217SJeff Kirsher #define MISC_REG_AEU_ENABLE3_FUNC_0_OUT_1			 0xa084
1282adfc5217SJeff Kirsher /* [RW 32] third 32b for enabling the output for function 1 output0. mapped
1283adfc5217SJeff Kirsher    as follows: [0] CSEMI Parity error; [1] CSEMI Hw interrupt; [2] PXP
1284adfc5217SJeff Kirsher    Parity error; [3] PXP Hw interrupt; [4] PXPpciClockClient Parity error;
1285adfc5217SJeff Kirsher    [5] PXPpciClockClient Hw interrupt; [6] CFC Parity error; [7] CFC Hw
1286adfc5217SJeff Kirsher    interrupt; [8] CDU Parity error; [9] CDU Hw interrupt; [10] DMAE Parity
1287adfc5217SJeff Kirsher    error; [11] DMAE Hw interrupt; [12] IGU (HC) Parity error; [13] IGU (HC)
1288adfc5217SJeff Kirsher    Hw interrupt; [14] MISC Parity error; [15] MISC Hw interrupt; [16]
1289adfc5217SJeff Kirsher    pxp_misc_mps_attn; [17] Flash event; [18] SMB event; [19] MCP attn0; [20]
1290adfc5217SJeff Kirsher    MCP attn1; [21] SW timers attn_1 func0; [22] SW timers attn_2 func0; [23]
1291adfc5217SJeff Kirsher    SW timers attn_3 func0; [24] SW timers attn_4 func0; [25] PERST; [26] SW
1292adfc5217SJeff Kirsher    timers attn_1 func1; [27] SW timers attn_2 func1; [28] SW timers attn_3
1293adfc5217SJeff Kirsher    func1; [29] SW timers attn_4 func1; [30] General attn0; [31] General
1294adfc5217SJeff Kirsher    attn1; */
1295adfc5217SJeff Kirsher #define MISC_REG_AEU_ENABLE3_FUNC_1_OUT_0			 0xa114
1296adfc5217SJeff Kirsher #define MISC_REG_AEU_ENABLE3_FUNC_1_OUT_1			 0xa124
1297adfc5217SJeff Kirsher /* [RW 32] third 32b for enabling the output for close the gate nig. mapped
1298adfc5217SJeff Kirsher    as follows: [0] CSEMI Parity error; [1] CSEMI Hw interrupt; [2] PXP
1299adfc5217SJeff Kirsher    Parity error; [3] PXP Hw interrupt; [4] PXPpciClockClient Parity error;
1300adfc5217SJeff Kirsher    [5] PXPpciClockClient Hw interrupt; [6] CFC Parity error; [7] CFC Hw
1301adfc5217SJeff Kirsher    interrupt; [8] CDU Parity error; [9] CDU Hw interrupt; [10] DMAE Parity
1302adfc5217SJeff Kirsher    error; [11] DMAE Hw interrupt; [12] IGU (HC) Parity error; [13] IGU (HC)
1303adfc5217SJeff Kirsher    Hw interrupt; [14] MISC Parity error; [15] MISC Hw interrupt; [16]
1304adfc5217SJeff Kirsher    pxp_misc_mps_attn; [17] Flash event; [18] SMB event; [19] MCP attn0; [20]
1305adfc5217SJeff Kirsher    MCP attn1; [21] SW timers attn_1 func0; [22] SW timers attn_2 func0; [23]
1306adfc5217SJeff Kirsher    SW timers attn_3 func0; [24] SW timers attn_4 func0; [25] PERST; [26] SW
1307adfc5217SJeff Kirsher    timers attn_1 func1; [27] SW timers attn_2 func1; [28] SW timers attn_3
1308adfc5217SJeff Kirsher    func1; [29] SW timers attn_4 func1; [30] General attn0; [31] General
1309adfc5217SJeff Kirsher    attn1; */
1310adfc5217SJeff Kirsher #define MISC_REG_AEU_ENABLE3_NIG_0				 0xa0f4
1311adfc5217SJeff Kirsher #define MISC_REG_AEU_ENABLE3_NIG_1				 0xa194
1312adfc5217SJeff Kirsher /* [RW 32] third 32b for enabling the output for close the gate pxp. mapped
1313adfc5217SJeff Kirsher    as follows: [0] CSEMI Parity error; [1] CSEMI Hw interrupt; [2] PXP
1314adfc5217SJeff Kirsher    Parity error; [3] PXP Hw interrupt; [4] PXPpciClockClient Parity error;
1315adfc5217SJeff Kirsher    [5] PXPpciClockClient Hw interrupt; [6] CFC Parity error; [7] CFC Hw
1316adfc5217SJeff Kirsher    interrupt; [8] CDU Parity error; [9] CDU Hw interrupt; [10] DMAE Parity
1317adfc5217SJeff Kirsher    error; [11] DMAE Hw interrupt; [12] IGU (HC) Parity error; [13] IGU (HC)
1318adfc5217SJeff Kirsher    Hw interrupt; [14] MISC Parity error; [15] MISC Hw interrupt; [16]
1319adfc5217SJeff Kirsher    pxp_misc_mps_attn; [17] Flash event; [18] SMB event; [19] MCP attn0; [20]
1320adfc5217SJeff Kirsher    MCP attn1; [21] SW timers attn_1 func0; [22] SW timers attn_2 func0; [23]
1321adfc5217SJeff Kirsher    SW timers attn_3 func0; [24] SW timers attn_4 func0; [25] PERST; [26] SW
1322adfc5217SJeff Kirsher    timers attn_1 func1; [27] SW timers attn_2 func1; [28] SW timers attn_3
1323adfc5217SJeff Kirsher    func1; [29] SW timers attn_4 func1; [30] General attn0; [31] General
1324adfc5217SJeff Kirsher    attn1; */
1325adfc5217SJeff Kirsher #define MISC_REG_AEU_ENABLE3_PXP_0				 0xa104
1326adfc5217SJeff Kirsher #define MISC_REG_AEU_ENABLE3_PXP_1				 0xa1a4
1327adfc5217SJeff Kirsher /* [RW 32] fourth 32b for enabling the output for function 0 output0.mapped
1328adfc5217SJeff Kirsher    as follows: [0] General attn2; [1] General attn3; [2] General attn4; [3]
1329adfc5217SJeff Kirsher    General attn5; [4] General attn6; [5] General attn7; [6] General attn8;
1330adfc5217SJeff Kirsher    [7] General attn9; [8] General attn10; [9] General attn11; [10] General
1331adfc5217SJeff Kirsher    attn12; [11] General attn13; [12] General attn14; [13] General attn15;
1332adfc5217SJeff Kirsher    [14] General attn16; [15] General attn17; [16] General attn18; [17]
1333adfc5217SJeff Kirsher    General attn19; [18] General attn20; [19] General attn21; [20] Main power
1334adfc5217SJeff Kirsher    interrupt; [21] RBCR Latched attn; [22] RBCT Latched attn; [23] RBCN
1335adfc5217SJeff Kirsher    Latched attn; [24] RBCU Latched attn; [25] RBCP Latched attn; [26] GRC
1336adfc5217SJeff Kirsher    Latched timeout attention; [27] GRC Latched reserved access attention;
1337adfc5217SJeff Kirsher    [28] MCP Latched rom_parity; [29] MCP Latched ump_rx_parity; [30] MCP
1338adfc5217SJeff Kirsher    Latched ump_tx_parity; [31] MCP Latched scpad_parity; */
1339adfc5217SJeff Kirsher #define MISC_REG_AEU_ENABLE4_FUNC_0_OUT_0			 0xa078
1340adfc5217SJeff Kirsher #define MISC_REG_AEU_ENABLE4_FUNC_0_OUT_2			 0xa098
1341adfc5217SJeff Kirsher #define MISC_REG_AEU_ENABLE4_FUNC_0_OUT_4			 0xa0b8
1342adfc5217SJeff Kirsher #define MISC_REG_AEU_ENABLE4_FUNC_0_OUT_5			 0xa0c8
1343adfc5217SJeff Kirsher #define MISC_REG_AEU_ENABLE4_FUNC_0_OUT_6			 0xa0d8
1344adfc5217SJeff Kirsher #define MISC_REG_AEU_ENABLE4_FUNC_0_OUT_7			 0xa0e8
1345adfc5217SJeff Kirsher /* [RW 32] fourth 32b for enabling the output for function 1 output0.mapped
1346adfc5217SJeff Kirsher    as follows: [0] General attn2; [1] General attn3; [2] General attn4; [3]
1347adfc5217SJeff Kirsher    General attn5; [4] General attn6; [5] General attn7; [6] General attn8;
1348adfc5217SJeff Kirsher    [7] General attn9; [8] General attn10; [9] General attn11; [10] General
1349adfc5217SJeff Kirsher    attn12; [11] General attn13; [12] General attn14; [13] General attn15;
1350adfc5217SJeff Kirsher    [14] General attn16; [15] General attn17; [16] General attn18; [17]
1351adfc5217SJeff Kirsher    General attn19; [18] General attn20; [19] General attn21; [20] Main power
1352adfc5217SJeff Kirsher    interrupt; [21] RBCR Latched attn; [22] RBCT Latched attn; [23] RBCN
1353adfc5217SJeff Kirsher    Latched attn; [24] RBCU Latched attn; [25] RBCP Latched attn; [26] GRC
1354adfc5217SJeff Kirsher    Latched timeout attention; [27] GRC Latched reserved access attention;
1355adfc5217SJeff Kirsher    [28] MCP Latched rom_parity; [29] MCP Latched ump_rx_parity; [30] MCP
1356adfc5217SJeff Kirsher    Latched ump_tx_parity; [31] MCP Latched scpad_parity; */
1357adfc5217SJeff Kirsher #define MISC_REG_AEU_ENABLE4_FUNC_1_OUT_0			 0xa118
1358adfc5217SJeff Kirsher #define MISC_REG_AEU_ENABLE4_FUNC_1_OUT_2			 0xa138
1359adfc5217SJeff Kirsher #define MISC_REG_AEU_ENABLE4_FUNC_1_OUT_4			 0xa158
1360adfc5217SJeff Kirsher #define MISC_REG_AEU_ENABLE4_FUNC_1_OUT_5			 0xa168
1361adfc5217SJeff Kirsher #define MISC_REG_AEU_ENABLE4_FUNC_1_OUT_6			 0xa178
1362adfc5217SJeff Kirsher #define MISC_REG_AEU_ENABLE4_FUNC_1_OUT_7			 0xa188
1363adfc5217SJeff Kirsher /* [RW 32] fourth 32b for enabling the output for close the gate nig.mapped
1364adfc5217SJeff Kirsher    as follows: [0] General attn2; [1] General attn3; [2] General attn4; [3]
1365adfc5217SJeff Kirsher    General attn5; [4] General attn6; [5] General attn7; [6] General attn8;
1366adfc5217SJeff Kirsher    [7] General attn9; [8] General attn10; [9] General attn11; [10] General
1367adfc5217SJeff Kirsher    attn12; [11] General attn13; [12] General attn14; [13] General attn15;
1368adfc5217SJeff Kirsher    [14] General attn16; [15] General attn17; [16] General attn18; [17]
1369adfc5217SJeff Kirsher    General attn19; [18] General attn20; [19] General attn21; [20] Main power
1370adfc5217SJeff Kirsher    interrupt; [21] RBCR Latched attn; [22] RBCT Latched attn; [23] RBCN
1371adfc5217SJeff Kirsher    Latched attn; [24] RBCU Latched attn; [25] RBCP Latched attn; [26] GRC
1372adfc5217SJeff Kirsher    Latched timeout attention; [27] GRC Latched reserved access attention;
1373adfc5217SJeff Kirsher    [28] MCP Latched rom_parity; [29] MCP Latched ump_rx_parity; [30] MCP
1374adfc5217SJeff Kirsher    Latched ump_tx_parity; [31] MCP Latched scpad_parity; */
1375adfc5217SJeff Kirsher #define MISC_REG_AEU_ENABLE4_NIG_0				 0xa0f8
1376adfc5217SJeff Kirsher #define MISC_REG_AEU_ENABLE4_NIG_1				 0xa198
1377adfc5217SJeff Kirsher /* [RW 32] fourth 32b for enabling the output for close the gate pxp.mapped
1378adfc5217SJeff Kirsher    as follows: [0] General attn2; [1] General attn3; [2] General attn4; [3]
1379adfc5217SJeff Kirsher    General attn5; [4] General attn6; [5] General attn7; [6] General attn8;
1380adfc5217SJeff Kirsher    [7] General attn9; [8] General attn10; [9] General attn11; [10] General
1381adfc5217SJeff Kirsher    attn12; [11] General attn13; [12] General attn14; [13] General attn15;
1382adfc5217SJeff Kirsher    [14] General attn16; [15] General attn17; [16] General attn18; [17]
1383adfc5217SJeff Kirsher    General attn19; [18] General attn20; [19] General attn21; [20] Main power
1384adfc5217SJeff Kirsher    interrupt; [21] RBCR Latched attn; [22] RBCT Latched attn; [23] RBCN
1385adfc5217SJeff Kirsher    Latched attn; [24] RBCU Latched attn; [25] RBCP Latched attn; [26] GRC
1386adfc5217SJeff Kirsher    Latched timeout attention; [27] GRC Latched reserved access attention;
1387adfc5217SJeff Kirsher    [28] MCP Latched rom_parity; [29] MCP Latched ump_rx_parity; [30] MCP
1388adfc5217SJeff Kirsher    Latched ump_tx_parity; [31] MCP Latched scpad_parity; */
1389adfc5217SJeff Kirsher #define MISC_REG_AEU_ENABLE4_PXP_0				 0xa108
1390adfc5217SJeff Kirsher #define MISC_REG_AEU_ENABLE4_PXP_1				 0xa1a8
139188c5100cSDavid S. Miller /* [RW 32] fifth 32b for enabling the output for function 0 output0. Mapped
139288c5100cSDavid S. Miller  * as follows: [0] PGLUE config_space; [1] PGLUE misc_flr; [2] PGLUE B RBC
139388c5100cSDavid S. Miller  * attention [3] PGLUE B RBC parity; [4] ATC attention; [5] ATC parity; [6]
139488c5100cSDavid S. Miller  * mstat0 attention; [7] mstat0 parity; [8] mstat1 attention; [9] mstat1
139588c5100cSDavid S. Miller  * parity; [31-10] Reserved; */
139688c5100cSDavid S. Miller #define MISC_REG_AEU_ENABLE5_FUNC_0_OUT_0			 0xa688
139788c5100cSDavid S. Miller /* [RW 32] Fifth 32b for enabling the output for function 1 output0. Mapped
139888c5100cSDavid S. Miller  * as follows: [0] PGLUE config_space; [1] PGLUE misc_flr; [2] PGLUE B RBC
139988c5100cSDavid S. Miller  * attention [3] PGLUE B RBC parity; [4] ATC attention; [5] ATC parity; [6]
140088c5100cSDavid S. Miller  * mstat0 attention; [7] mstat0 parity; [8] mstat1 attention; [9] mstat1
140188c5100cSDavid S. Miller  * parity; [31-10] Reserved; */
140288c5100cSDavid S. Miller #define MISC_REG_AEU_ENABLE5_FUNC_1_OUT_0			 0xa6b0
1403adfc5217SJeff Kirsher /* [RW 1] set/clr general attention 0; this will set/clr bit 94 in the aeu
1404adfc5217SJeff Kirsher    128 bit vector */
1405adfc5217SJeff Kirsher #define MISC_REG_AEU_GENERAL_ATTN_0				 0xa000
1406adfc5217SJeff Kirsher #define MISC_REG_AEU_GENERAL_ATTN_1				 0xa004
1407adfc5217SJeff Kirsher #define MISC_REG_AEU_GENERAL_ATTN_10				 0xa028
1408adfc5217SJeff Kirsher #define MISC_REG_AEU_GENERAL_ATTN_11				 0xa02c
1409adfc5217SJeff Kirsher #define MISC_REG_AEU_GENERAL_ATTN_12				 0xa030
1410adfc5217SJeff Kirsher #define MISC_REG_AEU_GENERAL_ATTN_2				 0xa008
1411adfc5217SJeff Kirsher #define MISC_REG_AEU_GENERAL_ATTN_3				 0xa00c
1412adfc5217SJeff Kirsher #define MISC_REG_AEU_GENERAL_ATTN_4				 0xa010
1413adfc5217SJeff Kirsher #define MISC_REG_AEU_GENERAL_ATTN_5				 0xa014
1414adfc5217SJeff Kirsher #define MISC_REG_AEU_GENERAL_ATTN_6				 0xa018
1415adfc5217SJeff Kirsher #define MISC_REG_AEU_GENERAL_ATTN_7				 0xa01c
1416adfc5217SJeff Kirsher #define MISC_REG_AEU_GENERAL_ATTN_8				 0xa020
1417adfc5217SJeff Kirsher #define MISC_REG_AEU_GENERAL_ATTN_9				 0xa024
1418adfc5217SJeff Kirsher #define MISC_REG_AEU_GENERAL_MASK				 0xa61c
1419adfc5217SJeff Kirsher /* [RW 32] first 32b for inverting the input for function 0; for each bit:
1420adfc5217SJeff Kirsher    0= do not invert; 1= invert; mapped as follows: [0] NIG attention for
1421adfc5217SJeff Kirsher    function0; [1] NIG attention for function1; [2] GPIO1 mcp; [3] GPIO2 mcp;
1422adfc5217SJeff Kirsher    [4] GPIO3 mcp; [5] GPIO4 mcp; [6] GPIO1 function 1; [7] GPIO2 function 1;
1423adfc5217SJeff Kirsher    [8] GPIO3 function 1; [9] GPIO4 function 1; [10] PCIE glue/PXP VPD event
1424adfc5217SJeff Kirsher    function0; [11] PCIE glue/PXP VPD event function1; [12] PCIE glue/PXP
1425adfc5217SJeff Kirsher    Expansion ROM event0; [13] PCIE glue/PXP Expansion ROM event1; [14]
1426adfc5217SJeff Kirsher    SPIO4; [15] SPIO5; [16] MSI/X indication for mcp; [17] MSI/X indication
1427adfc5217SJeff Kirsher    for function 1; [18] BRB Parity error; [19] BRB Hw interrupt; [20] PRS
1428adfc5217SJeff Kirsher    Parity error; [21] PRS Hw interrupt; [22] SRC Parity error; [23] SRC Hw
1429adfc5217SJeff Kirsher    interrupt; [24] TSDM Parity error; [25] TSDM Hw interrupt; [26] TCM
1430adfc5217SJeff Kirsher    Parity error; [27] TCM Hw interrupt; [28] TSEMI Parity error; [29] TSEMI
1431adfc5217SJeff Kirsher    Hw interrupt; [30] PBF Parity error; [31] PBF Hw interrupt; */
1432adfc5217SJeff Kirsher #define MISC_REG_AEU_INVERTER_1_FUNC_0				 0xa22c
1433adfc5217SJeff Kirsher #define MISC_REG_AEU_INVERTER_1_FUNC_1				 0xa23c
1434adfc5217SJeff Kirsher /* [RW 32] second 32b for inverting the input for function 0; for each bit:
1435adfc5217SJeff Kirsher    0= do not invert; 1= invert. mapped as follows: [0] PBClient Parity
1436adfc5217SJeff Kirsher    error; [1] PBClient Hw interrupt; [2] QM Parity error; [3] QM Hw
1437adfc5217SJeff Kirsher    interrupt; [4] Timers Parity error; [5] Timers Hw interrupt; [6] XSDM
1438adfc5217SJeff Kirsher    Parity error; [7] XSDM Hw interrupt; [8] XCM Parity error; [9] XCM Hw
1439adfc5217SJeff Kirsher    interrupt; [10] XSEMI Parity error; [11] XSEMI Hw interrupt; [12]
1440adfc5217SJeff Kirsher    DoorbellQ Parity error; [13] DoorbellQ Hw interrupt; [14] NIG Parity
1441adfc5217SJeff Kirsher    error; [15] NIG Hw interrupt; [16] Vaux PCI core Parity error; [17] Vaux
1442adfc5217SJeff Kirsher    PCI core Hw interrupt; [18] Debug Parity error; [19] Debug Hw interrupt;
1443adfc5217SJeff Kirsher    [20] USDM Parity error; [21] USDM Hw interrupt; [22] UCM Parity error;
1444adfc5217SJeff Kirsher    [23] UCM Hw interrupt; [24] USEMI Parity error; [25] USEMI Hw interrupt;
1445adfc5217SJeff Kirsher    [26] UPB Parity error; [27] UPB Hw interrupt; [28] CSDM Parity error;
1446adfc5217SJeff Kirsher    [29] CSDM Hw interrupt; [30] CCM Parity error; [31] CCM Hw interrupt; */
1447adfc5217SJeff Kirsher #define MISC_REG_AEU_INVERTER_2_FUNC_0				 0xa230
1448adfc5217SJeff Kirsher #define MISC_REG_AEU_INVERTER_2_FUNC_1				 0xa240
1449adfc5217SJeff Kirsher /* [RW 10] [7:0] = mask 8 attention output signals toward IGU function0;
1450adfc5217SJeff Kirsher    [9:8] = raserved. Zero = mask; one = unmask */
1451adfc5217SJeff Kirsher #define MISC_REG_AEU_MASK_ATTN_FUNC_0				 0xa060
1452adfc5217SJeff Kirsher #define MISC_REG_AEU_MASK_ATTN_FUNC_1				 0xa064
1453adfc5217SJeff Kirsher /* [RW 1] If set a system kill occurred */
1454adfc5217SJeff Kirsher #define MISC_REG_AEU_SYS_KILL_OCCURRED				 0xa610
1455adfc5217SJeff Kirsher /* [RW 32] Represent the status of the input vector to the AEU when a system
1456adfc5217SJeff Kirsher    kill occurred. The register is reset in por reset. Mapped as follows: [0]
1457adfc5217SJeff Kirsher    NIG attention for function0; [1] NIG attention for function1; [2] GPIO1
1458adfc5217SJeff Kirsher    mcp; [3] GPIO2 mcp; [4] GPIO3 mcp; [5] GPIO4 mcp; [6] GPIO1 function 1;
1459adfc5217SJeff Kirsher    [7] GPIO2 function 1; [8] GPIO3 function 1; [9] GPIO4 function 1; [10]
1460adfc5217SJeff Kirsher    PCIE glue/PXP VPD event function0; [11] PCIE glue/PXP VPD event
1461adfc5217SJeff Kirsher    function1; [12] PCIE glue/PXP Expansion ROM event0; [13] PCIE glue/PXP
1462adfc5217SJeff Kirsher    Expansion ROM event1; [14] SPIO4; [15] SPIO5; [16] MSI/X indication for
1463adfc5217SJeff Kirsher    mcp; [17] MSI/X indication for function 1; [18] BRB Parity error; [19]
1464adfc5217SJeff Kirsher    BRB Hw interrupt; [20] PRS Parity error; [21] PRS Hw interrupt; [22] SRC
1465adfc5217SJeff Kirsher    Parity error; [23] SRC Hw interrupt; [24] TSDM Parity error; [25] TSDM Hw
1466adfc5217SJeff Kirsher    interrupt; [26] TCM Parity error; [27] TCM Hw interrupt; [28] TSEMI
1467adfc5217SJeff Kirsher    Parity error; [29] TSEMI Hw interrupt; [30] PBF Parity error; [31] PBF Hw
1468adfc5217SJeff Kirsher    interrupt; */
1469adfc5217SJeff Kirsher #define MISC_REG_AEU_SYS_KILL_STATUS_0				 0xa600
1470adfc5217SJeff Kirsher #define MISC_REG_AEU_SYS_KILL_STATUS_1				 0xa604
1471adfc5217SJeff Kirsher #define MISC_REG_AEU_SYS_KILL_STATUS_2				 0xa608
1472adfc5217SJeff Kirsher #define MISC_REG_AEU_SYS_KILL_STATUS_3				 0xa60c
1473adfc5217SJeff Kirsher /* [R 4] This field indicates the type of the device. '0' - 2 Ports; '1' - 1
1474adfc5217SJeff Kirsher    Port. */
1475adfc5217SJeff Kirsher #define MISC_REG_BOND_ID					 0xa400
1476adfc5217SJeff Kirsher /* [R 8] These bits indicate the metal revision of the chip. This value
1477adfc5217SJeff Kirsher    starts at 0x00 for each all-layer tape-out and increments by one for each
1478adfc5217SJeff Kirsher    tape-out. */
1479adfc5217SJeff Kirsher #define MISC_REG_CHIP_METAL					 0xa404
1480adfc5217SJeff Kirsher /* [R 16] These bits indicate the part number for the chip. */
1481adfc5217SJeff Kirsher #define MISC_REG_CHIP_NUM					 0xa408
1482adfc5217SJeff Kirsher /* [R 4] These bits indicate the base revision of the chip. This value
1483adfc5217SJeff Kirsher    starts at 0x0 for the A0 tape-out and increments by one for each
1484adfc5217SJeff Kirsher    all-layer tape-out. */
1485adfc5217SJeff Kirsher #define MISC_REG_CHIP_REV					 0xa40c
14867e8e02dfSBarak Witkowski /* [R 14] otp_misc_do[100:0] spare bits collection: 13:11-
14877e8e02dfSBarak Witkowski  * otp_misc_do[100:98]; 10:7 - otp_misc_do[87:84]; 6:3 - otp_misc_do[75:72];
14887e8e02dfSBarak Witkowski  * 2:1 - otp_misc_do[51:50]; 0 - otp_misc_do[1]. */
14897e8e02dfSBarak Witkowski #define MISC_REG_CHIP_TYPE					 0xac60
14907e8e02dfSBarak Witkowski #define MISC_REG_CHIP_TYPE_57811_MASK				 (1<<1)
1491c8c60d88SYuval Mintz #define MISC_REG_CPMU_LP_DR_ENABLE				 0xa858
1492c8c60d88SYuval Mintz /* [RW 1] FW EEE LPI Enable. When 1 indicates that EEE LPI mode is enabled
1493c8c60d88SYuval Mintz  * by FW. When 0 indicates that the EEE LPI mode is disabled by FW. Clk
1494c8c60d88SYuval Mintz  * 25MHz. Reset on hard reset. */
1495c8c60d88SYuval Mintz #define MISC_REG_CPMU_LP_FW_ENABLE_P0				 0xa84c
1496c8c60d88SYuval Mintz /* [RW 32] EEE LPI Idle Threshold. The threshold value for the idle EEE LPI
1497c8c60d88SYuval Mintz  * counter. Timer tick is 1 us. Clock 25MHz. Reset on hard reset. */
1498c8c60d88SYuval Mintz #define MISC_REG_CPMU_LP_IDLE_THR_P0				 0xa8a0
1499c8c60d88SYuval Mintz /* [RW 18] LPI entry events mask. [0] - Vmain SM Mask. When 1 indicates that
1500c8c60d88SYuval Mintz  * the Vmain SM end state is disabled. When 0 indicates that the Vmain SM
1501c8c60d88SYuval Mintz  * end state is enabled. [1] - FW Queues Empty Mask. When 1 indicates that
1502c8c60d88SYuval Mintz  * the FW command that all Queues are empty is disabled. When 0 indicates
1503c8c60d88SYuval Mintz  * that the FW command that all Queues are empty is enabled. [2] - FW Early
1504c8c60d88SYuval Mintz  * Exit Mask / Reserved (Entry mask). When 1 indicates that the FW Early
1505c8c60d88SYuval Mintz  * Exit command is disabled. When 0 indicates that the FW Early Exit command
1506c8c60d88SYuval Mintz  * is enabled. This bit applicable only in the EXIT Events Mask registers.
1507c8c60d88SYuval Mintz  * [3] - PBF Request Mask. When 1 indicates that the PBF Request indication
1508c8c60d88SYuval Mintz  * is disabled. When 0 indicates that the PBF Request indication is enabled.
1509c8c60d88SYuval Mintz  * [4] - Tx Request Mask. When =1 indicates that the Tx other Than PBF
1510c8c60d88SYuval Mintz  * Request indication is disabled. When 0 indicates that the Tx Other Than
1511c8c60d88SYuval Mintz  * PBF Request indication is enabled. [5] - Rx EEE LPI Status Mask. When 1
1512c8c60d88SYuval Mintz  * indicates that the RX EEE LPI Status indication is disabled. When 0
1513c8c60d88SYuval Mintz  * indicates that the RX EEE LPI Status indication is enabled. In the EXIT
1514c8c60d88SYuval Mintz  * Events Masks registers; this bit masks the falling edge detect of the LPI
1515c8c60d88SYuval Mintz  * Status (Rx LPI is on - off). [6] - Tx Pause Mask. When 1 indicates that
1516c8c60d88SYuval Mintz  * the Tx Pause indication is disabled. When 0 indicates that the Tx Pause
1517c8c60d88SYuval Mintz  * indication is enabled. [7] - BRB1 Empty Mask. When 1 indicates that the
1518c8c60d88SYuval Mintz  * BRB1 EMPTY indication is disabled. When 0 indicates that the BRB1 EMPTY
1519c8c60d88SYuval Mintz  * indication is enabled. [8] - QM Idle Mask. When 1 indicates that the QM
1520c8c60d88SYuval Mintz  * IDLE indication is disabled. When 0 indicates that the QM IDLE indication
1521c8c60d88SYuval Mintz  * is enabled. (One bit for both VOQ0 and VOQ1). [9] - QM LB Idle Mask. When
1522c8c60d88SYuval Mintz  * 1 indicates that the QM IDLE indication for LOOPBACK is disabled. When 0
1523c8c60d88SYuval Mintz  * indicates that the QM IDLE indication for LOOPBACK is enabled. [10] - L1
1524c8c60d88SYuval Mintz  * Status Mask. When 1 indicates that the L1 Status indication from the PCIE
1525c8c60d88SYuval Mintz  * CORE is disabled. When 0 indicates that the RX EEE LPI Status indication
1526c8c60d88SYuval Mintz  * from the PCIE CORE is enabled. In the EXIT Events Masks registers; this
1527c8c60d88SYuval Mintz  * bit masks the falling edge detect of the L1 status (L1 is on - off). [11]
1528c8c60d88SYuval Mintz  * - P0 E0 EEE EEE LPI REQ Mask. When =1 indicates that the P0 E0 EEE EEE
1529c8c60d88SYuval Mintz  * LPI REQ indication is disabled. When =0 indicates that the P0 E0 EEE LPI
1530c8c60d88SYuval Mintz  * REQ indication is enabled. [12] - P1 E0 EEE LPI REQ Mask. When =1
1531c8c60d88SYuval Mintz  * indicates that the P0 EEE LPI REQ indication is disabled. When =0
1532c8c60d88SYuval Mintz  * indicates that the P0 EEE LPI REQ indication is enabled. [13] - P0 E1 EEE
1533c8c60d88SYuval Mintz  * LPI REQ Mask. When =1 indicates that the P0 EEE LPI REQ indication is
1534c8c60d88SYuval Mintz  * disabled. When =0 indicates that the P0 EEE LPI REQ indication is
1535c8c60d88SYuval Mintz  * enabled. [14] - P1 E1 EEE LPI REQ Mask. When =1 indicates that the P0 EEE
1536c8c60d88SYuval Mintz  * LPI REQ indication is disabled. When =0 indicates that the P0 EEE LPI REQ
1537c8c60d88SYuval Mintz  * indication is enabled. [15] - L1 REQ Mask. When =1 indicates that the L1
1538c8c60d88SYuval Mintz  * REQ indication is disabled. When =0 indicates that the L1 indication is
1539c8c60d88SYuval Mintz  * enabled. [16] - Rx EEE LPI Status Edge Detect Mask. When =1 indicates
1540c8c60d88SYuval Mintz  * that the RX EEE LPI Status Falling Edge Detect indication is disabled (Rx
1541c8c60d88SYuval Mintz  * EEE LPI is on - off). When =0 indicates that the RX EEE LPI Status
1542c8c60d88SYuval Mintz  * Falling Edge Detec indication is enabled (Rx EEE LPI is on - off). This
1543c8c60d88SYuval Mintz  * bit is applicable only in the EXIT Events Masks registers. [17] - L1
1544c8c60d88SYuval Mintz  * Status Edge Detect Mask. When =1 indicates that the L1 Status Falling
1545c8c60d88SYuval Mintz  * Edge Detect indication from the PCIE CORE is disabled (L1 is on - off).
1546c8c60d88SYuval Mintz  * When =0 indicates that the L1 Status Falling Edge Detect indication from
1547c8c60d88SYuval Mintz  * the PCIE CORE is enabled (L1 is on - off). This bit is applicable only in
1548c8c60d88SYuval Mintz  * the EXIT Events Masks registers. Clock 25MHz. Reset on hard reset. */
1549c8c60d88SYuval Mintz #define MISC_REG_CPMU_LP_MASK_ENT_P0				 0xa880
1550c8c60d88SYuval Mintz /* [RW 18] EEE LPI exit events mask. [0] - Vmain SM Mask. When 1 indicates
1551c8c60d88SYuval Mintz  * that the Vmain SM end state is disabled. When 0 indicates that the Vmain
1552c8c60d88SYuval Mintz  * SM end state is enabled. [1] - FW Queues Empty Mask. When 1 indicates
1553c8c60d88SYuval Mintz  * that the FW command that all Queues are empty is disabled. When 0
1554c8c60d88SYuval Mintz  * indicates that the FW command that all Queues are empty is enabled. [2] -
1555c8c60d88SYuval Mintz  * FW Early Exit Mask / Reserved (Entry mask). When 1 indicates that the FW
1556c8c60d88SYuval Mintz  * Early Exit command is disabled. When 0 indicates that the FW Early Exit
1557c8c60d88SYuval Mintz  * command is enabled. This bit applicable only in the EXIT Events Mask
1558c8c60d88SYuval Mintz  * registers. [3] - PBF Request Mask. When 1 indicates that the PBF Request
1559c8c60d88SYuval Mintz  * indication is disabled. When 0 indicates that the PBF Request indication
1560c8c60d88SYuval Mintz  * is enabled. [4] - Tx Request Mask. When =1 indicates that the Tx other
1561c8c60d88SYuval Mintz  * Than PBF Request indication is disabled. When 0 indicates that the Tx
1562c8c60d88SYuval Mintz  * Other Than PBF Request indication is enabled. [5] - Rx EEE LPI Status
1563c8c60d88SYuval Mintz  * Mask. When 1 indicates that the RX EEE LPI Status indication is disabled.
1564c8c60d88SYuval Mintz  * When 0 indicates that the RX LPI Status indication is enabled. In the
1565c8c60d88SYuval Mintz  * EXIT Events Masks registers; this bit masks the falling edge detect of
1566c8c60d88SYuval Mintz  * the EEE LPI Status (Rx EEE LPI is on - off). [6] - Tx Pause Mask. When 1
1567c8c60d88SYuval Mintz  * indicates that the Tx Pause indication is disabled. When 0 indicates that
1568c8c60d88SYuval Mintz  * the Tx Pause indication is enabled. [7] - BRB1 Empty Mask. When 1
1569c8c60d88SYuval Mintz  * indicates that the BRB1 EMPTY indication is disabled. When 0 indicates
1570c8c60d88SYuval Mintz  * that the BRB1 EMPTY indication is enabled. [8] - QM Idle Mask. When 1
1571c8c60d88SYuval Mintz  * indicates that the QM IDLE indication is disabled. When 0 indicates that
1572c8c60d88SYuval Mintz  * the QM IDLE indication is enabled. (One bit for both VOQ0 and VOQ1). [9]
1573c8c60d88SYuval Mintz  * - QM LB Idle Mask. When 1 indicates that the QM IDLE indication for
1574c8c60d88SYuval Mintz  * LOOPBACK is disabled. When 0 indicates that the QM IDLE indication for
1575c8c60d88SYuval Mintz  * LOOPBACK is enabled. [10] - L1 Status Mask. When 1 indicates that the L1
1576c8c60d88SYuval Mintz  * Status indication from the PCIE CORE is disabled. When 0 indicates that
1577c8c60d88SYuval Mintz  * the RX EEE LPI Status indication from the PCIE CORE is enabled. In the
1578c8c60d88SYuval Mintz  * EXIT Events Masks registers; this bit masks the falling edge detect of
1579c8c60d88SYuval Mintz  * the L1 status (L1 is on - off). [11] - P0 E0 EEE EEE LPI REQ Mask. When
1580c8c60d88SYuval Mintz  * =1 indicates that the P0 E0 EEE EEE LPI REQ indication is disabled. When
1581c8c60d88SYuval Mintz  * =0 indicates that the P0 E0 EEE LPI REQ indication is enabled. [12] - P1
1582c8c60d88SYuval Mintz  * E0 EEE LPI REQ Mask. When =1 indicates that the P0 EEE LPI REQ indication
1583c8c60d88SYuval Mintz  * is disabled. When =0 indicates that the P0 EEE LPI REQ indication is
1584c8c60d88SYuval Mintz  * enabled. [13] - P0 E1 EEE LPI REQ Mask. When =1 indicates that the P0 EEE
1585c8c60d88SYuval Mintz  * LPI REQ indication is disabled. When =0 indicates that the P0 EEE LPI REQ
1586c8c60d88SYuval Mintz  * indication is enabled. [14] - P1 E1 EEE LPI REQ Mask. When =1 indicates
1587c8c60d88SYuval Mintz  * that the P0 EEE LPI REQ indication is disabled. When =0 indicates that
1588c8c60d88SYuval Mintz  * the P0 EEE LPI REQ indication is enabled. [15] - L1 REQ Mask. When =1
1589c8c60d88SYuval Mintz  * indicates that the L1 REQ indication is disabled. When =0 indicates that
1590c8c60d88SYuval Mintz  * the L1 indication is enabled. [16] - Rx EEE LPI Status Edge Detect Mask.
1591c8c60d88SYuval Mintz  * When =1 indicates that the RX EEE LPI Status Falling Edge Detect
1592c8c60d88SYuval Mintz  * indication is disabled (Rx EEE LPI is on - off). When =0 indicates that
1593c8c60d88SYuval Mintz  * the RX EEE LPI Status Falling Edge Detec indication is enabled (Rx EEE
1594c8c60d88SYuval Mintz  * LPI is on - off). This bit is applicable only in the EXIT Events Masks
1595c8c60d88SYuval Mintz  * registers. [17] - L1 Status Edge Detect Mask. When =1 indicates that the
1596c8c60d88SYuval Mintz  * L1 Status Falling Edge Detect indication from the PCIE CORE is disabled
1597c8c60d88SYuval Mintz  * (L1 is on - off). When =0 indicates that the L1 Status Falling Edge
1598c8c60d88SYuval Mintz  * Detect indication from the PCIE CORE is enabled (L1 is on - off). This
1599c8c60d88SYuval Mintz  * bit is applicable only in the EXIT Events Masks registers.Clock 25MHz.
1600c8c60d88SYuval Mintz  * Reset on hard reset. */
1601c8c60d88SYuval Mintz #define MISC_REG_CPMU_LP_MASK_EXT_P0				 0xa888
1602c8c60d88SYuval Mintz /* [RW 16] EEE LPI Entry Events Counter. A statistic counter with the number
1603c8c60d88SYuval Mintz  * of counts that the SM entered the EEE LPI state. Clock 25MHz. Read only
1604c8c60d88SYuval Mintz  * register. Reset on hard reset. */
1605c8c60d88SYuval Mintz #define MISC_REG_CPMU_LP_SM_ENT_CNT_P0				 0xa8b8
1606c20cd5d7SYuval Mintz /* [RW 16] EEE LPI Entry Events Counter. A statistic counter with the number
1607c20cd5d7SYuval Mintz  * of counts that the SM entered the EEE LPI state. Clock 25MHz. Read only
1608c20cd5d7SYuval Mintz  * register. Reset on hard reset. */
1609c20cd5d7SYuval Mintz #define MISC_REG_CPMU_LP_SM_ENT_CNT_P1				 0xa8bc
1610adfc5217SJeff Kirsher /* [RW 32] The following driver registers(1...16) represent 16 drivers and
1611adfc5217SJeff Kirsher    32 clients. Each client can be controlled by one driver only. One in each
1612adfc5217SJeff Kirsher    bit represent that this driver control the appropriate client (Ex: bit 5
1613adfc5217SJeff Kirsher    is set means this driver control client number 5). addr1 = set; addr0 =
1614adfc5217SJeff Kirsher    clear; read from both addresses will give the same result = status. write
1615adfc5217SJeff Kirsher    to address 1 will set a request to control all the clients that their
1616adfc5217SJeff Kirsher    appropriate bit (in the write command) is set. if the client is free (the
1617adfc5217SJeff Kirsher    appropriate bit in all the other drivers is clear) one will be written to
1618adfc5217SJeff Kirsher    that driver register; if the client isn't free the bit will remain zero.
1619adfc5217SJeff Kirsher    if the appropriate bit is set (the driver request to gain control on a
1620adfc5217SJeff Kirsher    client it already controls the ~MISC_REGISTERS_INT_STS.GENERIC_SW
1621adfc5217SJeff Kirsher    interrupt will be asserted). write to address 0 will set a request to
1622adfc5217SJeff Kirsher    free all the clients that their appropriate bit (in the write command) is
1623adfc5217SJeff Kirsher    set. if the appropriate bit is clear (the driver request to free a client
1624adfc5217SJeff Kirsher    it doesn't controls the ~MISC_REGISTERS_INT_STS.GENERIC_SW interrupt will
1625adfc5217SJeff Kirsher    be asserted). */
1626adfc5217SJeff Kirsher #define MISC_REG_DRIVER_CONTROL_1				 0xa510
1627adfc5217SJeff Kirsher #define MISC_REG_DRIVER_CONTROL_7				 0xa3c8
1628adfc5217SJeff Kirsher /* [RW 1] e1hmf for WOL. If clr WOL signal o the PXP will be send on bit 0
1629adfc5217SJeff Kirsher    only. */
1630adfc5217SJeff Kirsher #define MISC_REG_E1HMF_MODE					 0xa5f8
1631adfc5217SJeff Kirsher /* [R 1] Status of four port mode path swap input pin. */
1632adfc5217SJeff Kirsher #define MISC_REG_FOUR_PORT_PATH_SWAP				 0xa75c
1633adfc5217SJeff Kirsher /* [RW 2] 4 port path swap overwrite.[0] - Overwrite control; if it is 0 -
1634adfc5217SJeff Kirsher    the path_swap output is equal to 4 port mode path swap input pin; if it
1635adfc5217SJeff Kirsher    is 1 - the path_swap output is equal to bit[1] of this register; [1] -
1636adfc5217SJeff Kirsher    Overwrite value. If bit[0] of this register is 1 this is the value that
1637adfc5217SJeff Kirsher    receives the path_swap output. Reset on Hard reset. */
1638adfc5217SJeff Kirsher #define MISC_REG_FOUR_PORT_PATH_SWAP_OVWR			 0xa738
1639adfc5217SJeff Kirsher /* [R 1] Status of 4 port mode port swap input pin. */
1640adfc5217SJeff Kirsher #define MISC_REG_FOUR_PORT_PORT_SWAP				 0xa754
1641adfc5217SJeff Kirsher /* [RW 2] 4 port port swap overwrite.[0] - Overwrite control; if it is 0 -
1642adfc5217SJeff Kirsher    the port_swap output is equal to 4 port mode port swap input pin; if it
1643adfc5217SJeff Kirsher    is 1 - the port_swap output is equal to bit[1] of this register; [1] -
1644adfc5217SJeff Kirsher    Overwrite value. If bit[0] of this register is 1 this is the value that
1645adfc5217SJeff Kirsher    receives the port_swap output. Reset on Hard reset. */
1646adfc5217SJeff Kirsher #define MISC_REG_FOUR_PORT_PORT_SWAP_OVWR			 0xa734
1647adfc5217SJeff Kirsher /* [RW 32] Debug only: spare RW register reset by core reset */
1648adfc5217SJeff Kirsher #define MISC_REG_GENERIC_CR_0					 0xa460
1649adfc5217SJeff Kirsher #define MISC_REG_GENERIC_CR_1					 0xa464
1650adfc5217SJeff Kirsher /* [RW 32] Debug only: spare RW register reset by por reset */
1651adfc5217SJeff Kirsher #define MISC_REG_GENERIC_POR_1					 0xa474
1652adfc5217SJeff Kirsher /* [RW 32] Bit[0]: EPIO MODE SEL: Setting this bit to 1 will allow SW/FW to
1653adfc5217SJeff Kirsher    use all of the 32 Extended GPIO pins. Without setting this bit; an EPIO
1654adfc5217SJeff Kirsher    can not be configured as an output. Each output has its output enable in
1655adfc5217SJeff Kirsher    the MCP register space; but this bit needs to be set to make use of that.
1656adfc5217SJeff Kirsher    Bit[3:1] spare. Bit[4]: WCVTMON_PWRDN: Powerdown for Warpcore VTMON. When
1657adfc5217SJeff Kirsher    set to 1 - Powerdown. Bit[5]: WCVTMON_RESETB: Reset for Warpcore VTMON.
1658adfc5217SJeff Kirsher    When set to 0 - vTMON is in reset. Bit[6]: setting this bit will change
1659adfc5217SJeff Kirsher    the i/o to an output and will drive the TimeSync output. Bit[31:7]:
1660adfc5217SJeff Kirsher    spare. Global register. Reset by hard reset. */
1661adfc5217SJeff Kirsher #define MISC_REG_GEN_PURP_HWG					 0xa9a0
1662adfc5217SJeff Kirsher /* [RW 32] GPIO. [31-28] FLOAT port 0; [27-24] FLOAT port 0; When any of
1663adfc5217SJeff Kirsher    these bits is written as a '1'; the corresponding SPIO bit will turn off
1664adfc5217SJeff Kirsher    it's drivers and become an input. This is the reset state of all GPIO
1665adfc5217SJeff Kirsher    pins. The read value of these bits will be a '1' if that last command
1666adfc5217SJeff Kirsher    (#SET; #CLR; or #FLOAT) for this bit was a #FLOAT. (reset value 0xff).
1667adfc5217SJeff Kirsher    [23-20] CLR port 1; 19-16] CLR port 0; When any of these bits is written
1668adfc5217SJeff Kirsher    as a '1'; the corresponding GPIO bit will drive low. The read value of
1669adfc5217SJeff Kirsher    these bits will be a '1' if that last command (#SET; #CLR; or #FLOAT) for
1670adfc5217SJeff Kirsher    this bit was a #CLR. (reset value 0). [15-12] SET port 1; 11-8] port 0;
1671adfc5217SJeff Kirsher    SET When any of these bits is written as a '1'; the corresponding GPIO
1672adfc5217SJeff Kirsher    bit will drive high (if it has that capability). The read value of these
1673adfc5217SJeff Kirsher    bits will be a '1' if that last command (#SET; #CLR; or #FLOAT) for this
1674adfc5217SJeff Kirsher    bit was a #SET. (reset value 0). [7-4] VALUE port 1; [3-0] VALUE port 0;
1675adfc5217SJeff Kirsher    RO; These bits indicate the read value of each of the eight GPIO pins.
1676adfc5217SJeff Kirsher    This is the result value of the pin; not the drive value. Writing these
1677adfc5217SJeff Kirsher    bits will have not effect. */
1678adfc5217SJeff Kirsher #define MISC_REG_GPIO						 0xa490
1679adfc5217SJeff Kirsher /* [RW 8] These bits enable the GPIO_INTs to signals event to the
1680adfc5217SJeff Kirsher    IGU/MCP.according to the following map: [0] p0_gpio_0; [1] p0_gpio_1; [2]
1681adfc5217SJeff Kirsher    p0_gpio_2; [3] p0_gpio_3; [4] p1_gpio_0; [5] p1_gpio_1; [6] p1_gpio_2;
1682adfc5217SJeff Kirsher    [7] p1_gpio_3; */
1683adfc5217SJeff Kirsher #define MISC_REG_GPIO_EVENT_EN					 0xa2bc
1684adfc5217SJeff Kirsher /* [RW 32] GPIO INT. [31-28] OLD_CLR port1; [27-24] OLD_CLR port0; Writing a
1685adfc5217SJeff Kirsher    '1' to these bit clears the corresponding bit in the #OLD_VALUE register.
1686adfc5217SJeff Kirsher    This will acknowledge an interrupt on the falling edge of corresponding
1687adfc5217SJeff Kirsher    GPIO input (reset value 0). [23-16] OLD_SET [23-16] port1; OLD_SET port0;
1688adfc5217SJeff Kirsher    Writing a '1' to these bit sets the corresponding bit in the #OLD_VALUE
1689adfc5217SJeff Kirsher    register. This will acknowledge an interrupt on the rising edge of
1690adfc5217SJeff Kirsher    corresponding SPIO input (reset value 0). [15-12] OLD_VALUE [11-8] port1;
1691adfc5217SJeff Kirsher    OLD_VALUE port0; RO; These bits indicate the old value of the GPIO input
1692adfc5217SJeff Kirsher    value. When the ~INT_STATE bit is set; this bit indicates the OLD value
1693adfc5217SJeff Kirsher    of the pin such that if ~INT_STATE is set and this bit is '0'; then the
1694adfc5217SJeff Kirsher    interrupt is due to a low to high edge. If ~INT_STATE is set and this bit
1695adfc5217SJeff Kirsher    is '1'; then the interrupt is due to a high to low edge (reset value 0).
1696adfc5217SJeff Kirsher    [7-4] INT_STATE port1; [3-0] INT_STATE RO port0; These bits indicate the
1697adfc5217SJeff Kirsher    current GPIO interrupt state for each GPIO pin. This bit is cleared when
1698adfc5217SJeff Kirsher    the appropriate #OLD_SET or #OLD_CLR command bit is written. This bit is
1699adfc5217SJeff Kirsher    set when the GPIO input does not match the current value in #OLD_VALUE
1700adfc5217SJeff Kirsher    (reset value 0). */
1701adfc5217SJeff Kirsher #define MISC_REG_GPIO_INT					 0xa494
1702adfc5217SJeff Kirsher /* [R 28] this field hold the last information that caused reserved
1703adfc5217SJeff Kirsher    attention. bits [19:0] - address; [22:20] function; [23] reserved;
1704adfc5217SJeff Kirsher    [27:24] the master that caused the attention - according to the following
1705adfc5217SJeff Kirsher    encodeing:1 = pxp; 2 = mcp; 3 = usdm; 4 = tsdm; 5 = xsdm; 6 = csdm; 7 =
1706adfc5217SJeff Kirsher    dbu; 8 = dmae */
1707adfc5217SJeff Kirsher #define MISC_REG_GRC_RSV_ATTN					 0xa3c0
1708adfc5217SJeff Kirsher /* [R 28] this field hold the last information that caused timeout
1709adfc5217SJeff Kirsher    attention. bits [19:0] - address; [22:20] function; [23] reserved;
1710adfc5217SJeff Kirsher    [27:24] the master that caused the attention - according to the following
1711adfc5217SJeff Kirsher    encodeing:1 = pxp; 2 = mcp; 3 = usdm; 4 = tsdm; 5 = xsdm; 6 = csdm; 7 =
1712adfc5217SJeff Kirsher    dbu; 8 = dmae */
1713adfc5217SJeff Kirsher #define MISC_REG_GRC_TIMEOUT_ATTN				 0xa3c4
1714adfc5217SJeff Kirsher /* [RW 1] Setting this bit enables a timer in the GRC block to timeout any
1715adfc5217SJeff Kirsher    access that does not finish within
1716adfc5217SJeff Kirsher    ~misc_registers_grc_timout_val.grc_timeout_val cycles. When this bit is
1717adfc5217SJeff Kirsher    cleared; this timeout is disabled. If this timeout occurs; the GRC shall
1718adfc5217SJeff Kirsher    assert it attention output. */
1719adfc5217SJeff Kirsher #define MISC_REG_GRC_TIMEOUT_EN 				 0xa280
1720adfc5217SJeff Kirsher /* [RW 28] 28 LSB of LCPLL first register; reset val = 521. inside order of
1721adfc5217SJeff Kirsher    the bits is: [2:0] OAC reset value 001) CML output buffer bias control;
1722adfc5217SJeff Kirsher    111 for +40%; 011 for +20%; 001 for 0%; 000 for -20%. [5:3] Icp_ctrl
1723adfc5217SJeff Kirsher    (reset value 001) Charge pump current control; 111 for 720u; 011 for
1724adfc5217SJeff Kirsher    600u; 001 for 480u and 000 for 360u. [7:6] Bias_ctrl (reset value 00)
1725adfc5217SJeff Kirsher    Global bias control; When bit 7 is high bias current will be 10 0gh; When
1726adfc5217SJeff Kirsher    bit 6 is high bias will be 100w; Valid values are 00; 10; 01. [10:8]
1727adfc5217SJeff Kirsher    Pll_observe (reset value 010) Bits to control observability. bit 10 is
1728adfc5217SJeff Kirsher    for test bias; bit 9 is for test CK; bit 8 is test Vc. [12:11] Vth_ctrl
1729adfc5217SJeff Kirsher    (reset value 00) Comparator threshold control. 00 for 0.6V; 01 for 0.54V
1730adfc5217SJeff Kirsher    and 10 for 0.66V. [13] pllSeqStart (reset value 0) Enables VCO tuning
1731adfc5217SJeff Kirsher    sequencer: 1= sequencer disabled; 0= sequencer enabled (inverted
1732adfc5217SJeff Kirsher    internally). [14] reserved (reset value 0) Reset for VCO sequencer is
1733adfc5217SJeff Kirsher    connected to RESET input directly. [15] capRetry_en (reset value 0)
1734adfc5217SJeff Kirsher    enable retry on cap search failure (inverted). [16] freqMonitor_e (reset
1735adfc5217SJeff Kirsher    value 0) bit to continuously monitor vco freq (inverted). [17]
1736adfc5217SJeff Kirsher    freqDetRestart_en (reset value 0) bit to enable restart when not freq
1737adfc5217SJeff Kirsher    locked (inverted). [18] freqDetRetry_en (reset value 0) bit to enable
1738adfc5217SJeff Kirsher    retry on freq det failure(inverted). [19] pllForceFdone_en (reset value
1739adfc5217SJeff Kirsher    0) bit to enable pllForceFdone & pllForceFpass into pllSeq. [20]
1740adfc5217SJeff Kirsher    pllForceFdone (reset value 0) bit to force freqDone. [21] pllForceFpass
1741adfc5217SJeff Kirsher    (reset value 0) bit to force freqPass. [22] pllForceDone_en (reset value
1742adfc5217SJeff Kirsher    0) bit to enable pllForceCapDone. [23] pllForceCapDone (reset value 0)
1743adfc5217SJeff Kirsher    bit to force capDone. [24] pllForceCapPass_en (reset value 0) bit to
1744adfc5217SJeff Kirsher    enable pllForceCapPass. [25] pllForceCapPass (reset value 0) bit to force
1745adfc5217SJeff Kirsher    capPass. [26] capRestart (reset value 0) bit to force cap sequencer to
1746adfc5217SJeff Kirsher    restart. [27] capSelectM_en (reset value 0) bit to enable cap select
1747adfc5217SJeff Kirsher    register bits. */
1748adfc5217SJeff Kirsher #define MISC_REG_LCPLL_CTRL_1					 0xa2a4
1749adfc5217SJeff Kirsher #define MISC_REG_LCPLL_CTRL_REG_2				 0xa2a8
1750b76070b4SYaniv Rosner /* [RW 1] LCPLL power down. Global register. Active High. Reset on POR
1751b76070b4SYaniv Rosner  * reset. */
1752b76070b4SYaniv Rosner #define MISC_REG_LCPLL_E40_PWRDWN				 0xaa74
1753b76070b4SYaniv Rosner /* [RW 1] LCPLL VCO reset. Global register. Active Low Reset on POR reset. */
1754b76070b4SYaniv Rosner #define MISC_REG_LCPLL_E40_RESETB_ANA				 0xaa78
1755b76070b4SYaniv Rosner /* [RW 1] LCPLL post-divider reset. Global register. Active Low Reset on POR
1756b76070b4SYaniv Rosner  * reset. */
1757b76070b4SYaniv Rosner #define MISC_REG_LCPLL_E40_RESETB_DIG				 0xaa7c
1758adfc5217SJeff Kirsher /* [RW 4] Interrupt mask register #0 read/write */
1759adfc5217SJeff Kirsher #define MISC_REG_MISC_INT_MASK					 0xa388
1760adfc5217SJeff Kirsher /* [RW 1] Parity mask register #0 read/write */
1761adfc5217SJeff Kirsher #define MISC_REG_MISC_PRTY_MASK 				 0xa398
1762adfc5217SJeff Kirsher /* [R 1] Parity register #0 read */
1763adfc5217SJeff Kirsher #define MISC_REG_MISC_PRTY_STS					 0xa38c
1764adfc5217SJeff Kirsher /* [RC 1] Parity register #0 read clear */
1765adfc5217SJeff Kirsher #define MISC_REG_MISC_PRTY_STS_CLR				 0xa390
1766adfc5217SJeff Kirsher #define MISC_REG_NIG_WOL_P0					 0xa270
1767adfc5217SJeff Kirsher #define MISC_REG_NIG_WOL_P1					 0xa274
1768adfc5217SJeff Kirsher /* [R 1] If set indicate that the pcie_rst_b was asserted without perst
1769adfc5217SJeff Kirsher    assertion */
1770adfc5217SJeff Kirsher #define MISC_REG_PCIE_HOT_RESET 				 0xa618
1771adfc5217SJeff Kirsher /* [RW 32] 32 LSB of storm PLL first register; reset val = 0x 071d2911.
1772adfc5217SJeff Kirsher    inside order of the bits is: [0] P1 divider[0] (reset value 1); [1] P1
1773adfc5217SJeff Kirsher    divider[1] (reset value 0); [2] P1 divider[2] (reset value 0); [3] P1
1774adfc5217SJeff Kirsher    divider[3] (reset value 0); [4] P2 divider[0] (reset value 1); [5] P2
1775adfc5217SJeff Kirsher    divider[1] (reset value 0); [6] P2 divider[2] (reset value 0); [7] P2
1776adfc5217SJeff Kirsher    divider[3] (reset value 0); [8] ph_det_dis (reset value 1); [9]
1777adfc5217SJeff Kirsher    freq_det_dis (reset value 0); [10] Icpx[0] (reset value 0); [11] Icpx[1]
1778adfc5217SJeff Kirsher    (reset value 1); [12] Icpx[2] (reset value 0); [13] Icpx[3] (reset value
1779adfc5217SJeff Kirsher    1); [14] Icpx[4] (reset value 0); [15] Icpx[5] (reset value 0); [16]
1780adfc5217SJeff Kirsher    Rx[0] (reset value 1); [17] Rx[1] (reset value 0); [18] vc_en (reset
1781adfc5217SJeff Kirsher    value 1); [19] vco_rng[0] (reset value 1); [20] vco_rng[1] (reset value
1782adfc5217SJeff Kirsher    1); [21] Kvco_xf[0] (reset value 0); [22] Kvco_xf[1] (reset value 0);
1783adfc5217SJeff Kirsher    [23] Kvco_xf[2] (reset value 0); [24] Kvco_xs[0] (reset value 1); [25]
1784adfc5217SJeff Kirsher    Kvco_xs[1] (reset value 1); [26] Kvco_xs[2] (reset value 1); [27]
1785adfc5217SJeff Kirsher    testd_en (reset value 0); [28] testd_sel[0] (reset value 0); [29]
1786adfc5217SJeff Kirsher    testd_sel[1] (reset value 0); [30] testd_sel[2] (reset value 0); [31]
1787adfc5217SJeff Kirsher    testa_en (reset value 0); */
1788adfc5217SJeff Kirsher #define MISC_REG_PLL_STORM_CTRL_1				 0xa294
1789adfc5217SJeff Kirsher #define MISC_REG_PLL_STORM_CTRL_2				 0xa298
1790adfc5217SJeff Kirsher #define MISC_REG_PLL_STORM_CTRL_3				 0xa29c
1791adfc5217SJeff Kirsher #define MISC_REG_PLL_STORM_CTRL_4				 0xa2a0
1792adfc5217SJeff Kirsher /* [R 1] Status of 4 port mode enable input pin. */
1793adfc5217SJeff Kirsher #define MISC_REG_PORT4MODE_EN					 0xa750
1794adfc5217SJeff Kirsher /* [RW 2] 4 port mode enable overwrite.[0] - Overwrite control; if it is 0 -
1795adfc5217SJeff Kirsher  * the port4mode_en output is equal to 4 port mode input pin; if it is 1 -
1796adfc5217SJeff Kirsher  * the port4mode_en output is equal to bit[1] of this register; [1] -
1797adfc5217SJeff Kirsher  * Overwrite value. If bit[0] of this register is 1 this is the value that
1798adfc5217SJeff Kirsher  * receives the port4mode_en output . */
1799adfc5217SJeff Kirsher #define MISC_REG_PORT4MODE_EN_OVWR				 0xa720
1800adfc5217SJeff Kirsher /* [RW 32] reset reg#2; rite/read one = the specific block is out of reset;
1801adfc5217SJeff Kirsher    write/read zero = the specific block is in reset; addr 0-wr- the write
1802adfc5217SJeff Kirsher    value will be written to the register; addr 1-set - one will be written
1803adfc5217SJeff Kirsher    to all the bits that have the value of one in the data written (bits that
1804adfc5217SJeff Kirsher    have the value of zero will not be change) ; addr 2-clear - zero will be
1805adfc5217SJeff Kirsher    written to all the bits that have the value of one in the data written
1806adfc5217SJeff Kirsher    (bits that have the value of zero will not be change); addr 3-ignore;
1807adfc5217SJeff Kirsher    read ignore from all addr except addr 00; inside order of the bits is:
1808adfc5217SJeff Kirsher    [0] rst_bmac0; [1] rst_bmac1; [2] rst_emac0; [3] rst_emac1; [4] rst_grc;
1809adfc5217SJeff Kirsher    [5] rst_mcp_n_reset_reg_hard_core; [6] rst_ mcp_n_hard_core_rst_b; [7]
1810adfc5217SJeff Kirsher    rst_ mcp_n_reset_cmn_cpu; [8] rst_ mcp_n_reset_cmn_core; [9] rst_rbcn;
1811adfc5217SJeff Kirsher    [10] rst_dbg; [11] rst_misc_core; [12] rst_dbue (UART); [13]
1812adfc5217SJeff Kirsher    Pci_resetmdio_n; [14] rst_emac0_hard_core; [15] rst_emac1_hard_core; 16]
1813adfc5217SJeff Kirsher    rst_pxp_rq_rd_wr; 31:17] reserved */
1814452427b0SYuval Mintz #define MISC_REG_RESET_REG_1					 0xa580
1815adfc5217SJeff Kirsher #define MISC_REG_RESET_REG_2					 0xa590
1816adfc5217SJeff Kirsher /* [RW 20] 20 bit GRC address where the scratch-pad of the MCP that is
1817adfc5217SJeff Kirsher    shared with the driver resides */
1818adfc5217SJeff Kirsher #define MISC_REG_SHARED_MEM_ADDR				 0xa2b4
1819adfc5217SJeff Kirsher /* [RW 32] SPIO. [31-24] FLOAT When any of these bits is written as a '1';
1820adfc5217SJeff Kirsher    the corresponding SPIO bit will turn off it's drivers and become an
1821adfc5217SJeff Kirsher    input. This is the reset state of all SPIO pins. The read value of these
1822adfc5217SJeff Kirsher    bits will be a '1' if that last command (#SET; #CL; or #FLOAT) for this
1823adfc5217SJeff Kirsher    bit was a #FLOAT. (reset value 0xff). [23-16] CLR When any of these bits
1824adfc5217SJeff Kirsher    is written as a '1'; the corresponding SPIO bit will drive low. The read
1825adfc5217SJeff Kirsher    value of these bits will be a '1' if that last command (#SET; #CLR; or
1826adfc5217SJeff Kirsher #FLOAT) for this bit was a #CLR. (reset value 0). [15-8] SET When any of
1827adfc5217SJeff Kirsher    these bits is written as a '1'; the corresponding SPIO bit will drive
1828adfc5217SJeff Kirsher    high (if it has that capability). The read value of these bits will be a
1829adfc5217SJeff Kirsher    '1' if that last command (#SET; #CLR; or #FLOAT) for this bit was a #SET.
1830adfc5217SJeff Kirsher    (reset value 0). [7-0] VALUE RO; These bits indicate the read value of
1831adfc5217SJeff Kirsher    each of the eight SPIO pins. This is the result value of the pin; not the
1832adfc5217SJeff Kirsher    drive value. Writing these bits will have not effect. Each 8 bits field
1833adfc5217SJeff Kirsher    is divided as follows: [0] VAUX Enable; when pulsed low; enables supply
1834adfc5217SJeff Kirsher    from VAUX. (This is an output pin only; the FLOAT field is not applicable
1835adfc5217SJeff Kirsher    for this pin); [1] VAUX Disable; when pulsed low; disables supply form
1836adfc5217SJeff Kirsher    VAUX. (This is an output pin only; FLOAT field is not applicable for this
1837adfc5217SJeff Kirsher    pin); [2] SEL_VAUX_B - Control to power switching logic. Drive low to
1838adfc5217SJeff Kirsher    select VAUX supply. (This is an output pin only; it is not controlled by
1839adfc5217SJeff Kirsher    the SET and CLR fields; it is controlled by the Main Power SM; the FLOAT
1840adfc5217SJeff Kirsher    field is not applicable for this pin; only the VALUE fields is relevant -
1841adfc5217SJeff Kirsher    it reflects the output value); [3] port swap [4] spio_4; [5] spio_5; [6]
1842adfc5217SJeff Kirsher    Bit 0 of UMP device ID select; read by UMP firmware; [7] Bit 1 of UMP
1843adfc5217SJeff Kirsher    device ID select; read by UMP firmware. */
1844adfc5217SJeff Kirsher #define MISC_REG_SPIO						 0xa4fc
1845adfc5217SJeff Kirsher /* [RW 8] These bits enable the SPIO_INTs to signals event to the IGU/MC.
1846adfc5217SJeff Kirsher    according to the following map: [3:0] reserved; [4] spio_4 [5] spio_5;
1847adfc5217SJeff Kirsher    [7:0] reserved */
1848adfc5217SJeff Kirsher #define MISC_REG_SPIO_EVENT_EN					 0xa2b8
1849adfc5217SJeff Kirsher /* [RW 32] SPIO INT. [31-24] OLD_CLR Writing a '1' to these bit clears the
1850adfc5217SJeff Kirsher    corresponding bit in the #OLD_VALUE register. This will acknowledge an
1851adfc5217SJeff Kirsher    interrupt on the falling edge of corresponding SPIO input (reset value
1852adfc5217SJeff Kirsher    0). [23-16] OLD_SET Writing a '1' to these bit sets the corresponding bit
1853adfc5217SJeff Kirsher    in the #OLD_VALUE register. This will acknowledge an interrupt on the
1854adfc5217SJeff Kirsher    rising edge of corresponding SPIO input (reset value 0). [15-8] OLD_VALUE
1855adfc5217SJeff Kirsher    RO; These bits indicate the old value of the SPIO input value. When the
1856adfc5217SJeff Kirsher    ~INT_STATE bit is set; this bit indicates the OLD value of the pin such
1857adfc5217SJeff Kirsher    that if ~INT_STATE is set and this bit is '0'; then the interrupt is due
1858adfc5217SJeff Kirsher    to a low to high edge. If ~INT_STATE is set and this bit is '1'; then the
1859adfc5217SJeff Kirsher    interrupt is due to a high to low edge (reset value 0). [7-0] INT_STATE
1860adfc5217SJeff Kirsher    RO; These bits indicate the current SPIO interrupt state for each SPIO
1861adfc5217SJeff Kirsher    pin. This bit is cleared when the appropriate #OLD_SET or #OLD_CLR
1862adfc5217SJeff Kirsher    command bit is written. This bit is set when the SPIO input does not
1863adfc5217SJeff Kirsher    match the current value in #OLD_VALUE (reset value 0). */
1864adfc5217SJeff Kirsher #define MISC_REG_SPIO_INT					 0xa500
1865adfc5217SJeff Kirsher /* [RW 32] reload value for counter 4 if reload; the value will be reload if
1866adfc5217SJeff Kirsher    the counter reached zero and the reload bit
1867adfc5217SJeff Kirsher    (~misc_registers_sw_timer_cfg_4.sw_timer_cfg_4[1] ) is set */
1868adfc5217SJeff Kirsher #define MISC_REG_SW_TIMER_RELOAD_VAL_4				 0xa2fc
1869adfc5217SJeff Kirsher /* [RW 32] the value of the counter for sw timers1-8. there are 8 addresses
1870adfc5217SJeff Kirsher    in this register. address 0 - timer 1; address 1 - timer 2, ...  address 7 -
1871adfc5217SJeff Kirsher    timer 8 */
1872adfc5217SJeff Kirsher #define MISC_REG_SW_TIMER_VAL					 0xa5c0
1873adfc5217SJeff Kirsher /* [R 1] Status of two port mode path swap input pin. */
1874adfc5217SJeff Kirsher #define MISC_REG_TWO_PORT_PATH_SWAP				 0xa758
1875adfc5217SJeff Kirsher /* [RW 2] 2 port swap overwrite.[0] - Overwrite control; if it is 0 - the
1876adfc5217SJeff Kirsher    path_swap output is equal to 2 port mode path swap input pin; if it is 1
1877adfc5217SJeff Kirsher    - the path_swap output is equal to bit[1] of this register; [1] -
1878adfc5217SJeff Kirsher    Overwrite value. If bit[0] of this register is 1 this is the value that
1879adfc5217SJeff Kirsher    receives the path_swap output. Reset on Hard reset. */
1880adfc5217SJeff Kirsher #define MISC_REG_TWO_PORT_PATH_SWAP_OVWR			 0xa72c
1881adfc5217SJeff Kirsher /* [RW 1] Set by the MCP to remember if one or more of the drivers is/are
1882adfc5217SJeff Kirsher    loaded; 0-prepare; -unprepare */
1883adfc5217SJeff Kirsher #define MISC_REG_UNPREPARED					 0xa424
1884adfc5217SJeff Kirsher #define NIG_LLH0_BRB1_DRV_MASK_REG_LLH0_BRB1_DRV_MASK_BRCST	 (0x1<<0)
1885adfc5217SJeff Kirsher #define NIG_LLH0_BRB1_DRV_MASK_REG_LLH0_BRB1_DRV_MASK_MLCST	 (0x1<<1)
1886adfc5217SJeff Kirsher #define NIG_LLH0_BRB1_DRV_MASK_REG_LLH0_BRB1_DRV_MASK_NO_VLAN	 (0x1<<4)
1887adfc5217SJeff Kirsher #define NIG_LLH0_BRB1_DRV_MASK_REG_LLH0_BRB1_DRV_MASK_UNCST	 (0x1<<2)
1888adfc5217SJeff Kirsher #define NIG_LLH0_BRB1_DRV_MASK_REG_LLH0_BRB1_DRV_MASK_VLAN	 (0x1<<3)
1889adfc5217SJeff Kirsher /* [RW 5] MDIO PHY Address. The WC uses this address to determine whether or
1890adfc5217SJeff Kirsher  * not it is the recipient of the message on the MDIO interface. The value
1891adfc5217SJeff Kirsher  * is compared to the value on ctrl_md_devad. Drives output
1892adfc5217SJeff Kirsher  * misc_xgxs0_phy_addr. Global register. */
1893adfc5217SJeff Kirsher #define MISC_REG_WC0_CTRL_PHY_ADDR				 0xa9cc
1894b76070b4SYaniv Rosner #define MISC_REG_WC0_RESET					 0xac30
1895adfc5217SJeff Kirsher /* [RW 2] XMAC Core port mode. Indicates the number of ports on the system
1896adfc5217SJeff Kirsher    side. This should be less than or equal to phy_port_mode; if some of the
1897adfc5217SJeff Kirsher    ports are not used. This enables reduction of frequency on the core side.
1898adfc5217SJeff Kirsher    This is a strap input for the XMAC_MP core. 00 - Single Port Mode; 01 -
1899adfc5217SJeff Kirsher    Dual Port Mode; 10 - Tri Port Mode; 11 - Quad Port Mode. This is a strap
1900adfc5217SJeff Kirsher    input for the XMAC_MP core; and should be changed only while reset is
1901adfc5217SJeff Kirsher    held low. Reset on Hard reset. */
1902adfc5217SJeff Kirsher #define MISC_REG_XMAC_CORE_PORT_MODE				 0xa964
1903adfc5217SJeff Kirsher /* [RW 2] XMAC PHY port mode. Indicates the number of ports on the Warp
1904adfc5217SJeff Kirsher    Core. This is a strap input for the XMAC_MP core. 00 - Single Port Mode;
1905adfc5217SJeff Kirsher    01 - Dual Port Mode; 1x - Quad Port Mode; This is a strap input for the
1906adfc5217SJeff Kirsher    XMAC_MP core; and should be changed only while reset is held low. Reset
1907adfc5217SJeff Kirsher    on Hard reset. */
1908adfc5217SJeff Kirsher #define MISC_REG_XMAC_PHY_PORT_MODE				 0xa960
1909adfc5217SJeff Kirsher /* [RW 32] 1 [47] Packet Size = 64 Write to this register write bits 31:0.
1910adfc5217SJeff Kirsher  * Reads from this register will clear bits 31:0. */
1911adfc5217SJeff Kirsher #define MSTAT_REG_RX_STAT_GR64_LO				 0x200
1912adfc5217SJeff Kirsher /* [RW 32] 1 [00] Tx Good Packet Count Write to this register write bits
1913adfc5217SJeff Kirsher  * 31:0. Reads from this register will clear bits 31:0. */
1914adfc5217SJeff Kirsher #define MSTAT_REG_TX_STAT_GTXPOK_LO				 0
1915adfc5217SJeff Kirsher #define NIG_LLH0_BRB1_DRV_MASK_REG_LLH0_BRB1_DRV_MASK_BRCST	 (0x1<<0)
1916adfc5217SJeff Kirsher #define NIG_LLH0_BRB1_DRV_MASK_REG_LLH0_BRB1_DRV_MASK_MLCST	 (0x1<<1)
1917adfc5217SJeff Kirsher #define NIG_LLH0_BRB1_DRV_MASK_REG_LLH0_BRB1_DRV_MASK_NO_VLAN	 (0x1<<4)
1918adfc5217SJeff Kirsher #define NIG_LLH0_BRB1_DRV_MASK_REG_LLH0_BRB1_DRV_MASK_UNCST	 (0x1<<2)
1919adfc5217SJeff Kirsher #define NIG_LLH0_BRB1_DRV_MASK_REG_LLH0_BRB1_DRV_MASK_VLAN	 (0x1<<3)
1920adfc5217SJeff Kirsher #define NIG_LLH0_XCM_MASK_REG_LLH0_XCM_MASK_BCN			 (0x1<<0)
1921adfc5217SJeff Kirsher #define NIG_LLH1_XCM_MASK_REG_LLH1_XCM_MASK_BCN			 (0x1<<0)
1922adfc5217SJeff Kirsher #define NIG_MASK_INTERRUPT_PORT0_REG_MASK_EMAC0_MISC_MI_INT	 (0x1<<0)
1923adfc5217SJeff Kirsher #define NIG_MASK_INTERRUPT_PORT0_REG_MASK_SERDES0_LINK_STATUS	 (0x1<<9)
1924adfc5217SJeff Kirsher #define NIG_MASK_INTERRUPT_PORT0_REG_MASK_XGXS0_LINK10G 	 (0x1<<15)
1925adfc5217SJeff Kirsher #define NIG_MASK_INTERRUPT_PORT0_REG_MASK_XGXS0_LINK_STATUS	 (0xf<<18)
1926adfc5217SJeff Kirsher /* [RW 1] Input enable for RX_BMAC0 IF */
1927adfc5217SJeff Kirsher #define NIG_REG_BMAC0_IN_EN					 0x100ac
1928adfc5217SJeff Kirsher /* [RW 1] output enable for TX_BMAC0 IF */
1929adfc5217SJeff Kirsher #define NIG_REG_BMAC0_OUT_EN					 0x100e0
1930adfc5217SJeff Kirsher /* [RW 1] output enable for TX BMAC pause port 0 IF */
1931adfc5217SJeff Kirsher #define NIG_REG_BMAC0_PAUSE_OUT_EN				 0x10110
1932adfc5217SJeff Kirsher /* [RW 1] output enable for RX_BMAC0_REGS IF */
1933adfc5217SJeff Kirsher #define NIG_REG_BMAC0_REGS_OUT_EN				 0x100e8
1934adfc5217SJeff Kirsher /* [RW 1] output enable for RX BRB1 port0 IF */
1935adfc5217SJeff Kirsher #define NIG_REG_BRB0_OUT_EN					 0x100f8
1936adfc5217SJeff Kirsher /* [RW 1] Input enable for TX BRB1 pause port 0 IF */
1937adfc5217SJeff Kirsher #define NIG_REG_BRB0_PAUSE_IN_EN				 0x100c4
1938adfc5217SJeff Kirsher /* [RW 1] output enable for RX BRB1 port1 IF */
1939adfc5217SJeff Kirsher #define NIG_REG_BRB1_OUT_EN					 0x100fc
1940adfc5217SJeff Kirsher /* [RW 1] Input enable for TX BRB1 pause port 1 IF */
1941adfc5217SJeff Kirsher #define NIG_REG_BRB1_PAUSE_IN_EN				 0x100c8
1942adfc5217SJeff Kirsher /* [RW 1] output enable for RX BRB1 LP IF */
1943adfc5217SJeff Kirsher #define NIG_REG_BRB_LB_OUT_EN					 0x10100
1944adfc5217SJeff Kirsher /* [WB_W 82] Debug packet to LP from RBC; Data spelling:[63:0] data; 64]
1945adfc5217SJeff Kirsher    error; [67:65]eop_bvalid; [68]eop; [69]sop; [70]port_id; 71]flush;
1946adfc5217SJeff Kirsher    72:73]-vnic_num; 81:74]-sideband_info */
1947adfc5217SJeff Kirsher #define NIG_REG_DEBUG_PACKET_LB 				 0x10800
1948adfc5217SJeff Kirsher /* [RW 1] Input enable for TX Debug packet */
1949adfc5217SJeff Kirsher #define NIG_REG_EGRESS_DEBUG_IN_EN				 0x100dc
1950adfc5217SJeff Kirsher /* [RW 1] If 1 - egress drain mode for port0 is active. In this mode all
1951adfc5217SJeff Kirsher    packets from PBFare not forwarded to the MAC and just deleted from FIFO.
1952adfc5217SJeff Kirsher    First packet may be deleted from the middle. And last packet will be
1953adfc5217SJeff Kirsher    always deleted till the end. */
1954adfc5217SJeff Kirsher #define NIG_REG_EGRESS_DRAIN0_MODE				 0x10060
1955adfc5217SJeff Kirsher /* [RW 1] Output enable to EMAC0 */
1956adfc5217SJeff Kirsher #define NIG_REG_EGRESS_EMAC0_OUT_EN				 0x10120
1957adfc5217SJeff Kirsher /* [RW 1] MAC configuration for packets of port0. If 1 - all packet outputs
1958adfc5217SJeff Kirsher    to emac for port0; other way to bmac for port0 */
1959adfc5217SJeff Kirsher #define NIG_REG_EGRESS_EMAC0_PORT				 0x10058
1960adfc5217SJeff Kirsher /* [RW 1] Input enable for TX PBF user packet port0 IF */
1961adfc5217SJeff Kirsher #define NIG_REG_EGRESS_PBF0_IN_EN				 0x100cc
1962adfc5217SJeff Kirsher /* [RW 1] Input enable for TX PBF user packet port1 IF */
1963adfc5217SJeff Kirsher #define NIG_REG_EGRESS_PBF1_IN_EN				 0x100d0
1964adfc5217SJeff Kirsher /* [RW 1] Input enable for TX UMP management packet port0 IF */
1965adfc5217SJeff Kirsher #define NIG_REG_EGRESS_UMP0_IN_EN				 0x100d4
1966adfc5217SJeff Kirsher /* [RW 1] Input enable for RX_EMAC0 IF */
1967adfc5217SJeff Kirsher #define NIG_REG_EMAC0_IN_EN					 0x100a4
1968adfc5217SJeff Kirsher /* [RW 1] output enable for TX EMAC pause port 0 IF */
1969adfc5217SJeff Kirsher #define NIG_REG_EMAC0_PAUSE_OUT_EN				 0x10118
1970adfc5217SJeff Kirsher /* [R 1] status from emac0. This bit is set when MDINT from either the
1971adfc5217SJeff Kirsher    EXT_MDINT pin or from the Copper PHY is driven low. This condition must
1972adfc5217SJeff Kirsher    be cleared in the attached PHY device that is driving the MINT pin. */
1973adfc5217SJeff Kirsher #define NIG_REG_EMAC0_STATUS_MISC_MI_INT			 0x10494
1974adfc5217SJeff Kirsher /* [WB 48] This address space contains BMAC0 registers. The BMAC registers
1975adfc5217SJeff Kirsher    are described in appendix A. In order to access the BMAC0 registers; the
1976adfc5217SJeff Kirsher    base address; NIG_REGISTERS_INGRESS_BMAC0_MEM; Offset: 0x10c00; should be
1977adfc5217SJeff Kirsher    added to each BMAC register offset */
1978adfc5217SJeff Kirsher #define NIG_REG_INGRESS_BMAC0_MEM				 0x10c00
1979adfc5217SJeff Kirsher /* [WB 48] This address space contains BMAC1 registers. The BMAC registers
1980adfc5217SJeff Kirsher    are described in appendix A. In order to access the BMAC0 registers; the
1981adfc5217SJeff Kirsher    base address; NIG_REGISTERS_INGRESS_BMAC1_MEM; Offset: 0x11000; should be
1982adfc5217SJeff Kirsher    added to each BMAC register offset */
1983adfc5217SJeff Kirsher #define NIG_REG_INGRESS_BMAC1_MEM				 0x11000
1984adfc5217SJeff Kirsher /* [R 1] FIFO empty in EOP descriptor FIFO of LP in NIG_RX_EOP */
1985adfc5217SJeff Kirsher #define NIG_REG_INGRESS_EOP_LB_EMPTY				 0x104e0
1986adfc5217SJeff Kirsher /* [RW 17] Debug only. RX_EOP_DSCR_lb_FIFO in NIG_RX_EOP. Data
1987adfc5217SJeff Kirsher    packet_length[13:0]; mac_error[14]; trunc_error[15]; parity[16] */
1988adfc5217SJeff Kirsher #define NIG_REG_INGRESS_EOP_LB_FIFO				 0x104e4
1989adfc5217SJeff Kirsher /* [RW 27] 0 - must be active for Everest A0; 1- for Everest B0 when latch
1990adfc5217SJeff Kirsher    logic for interrupts must be used. Enable per bit of interrupt of
1991adfc5217SJeff Kirsher    ~latch_status.latch_status */
1992adfc5217SJeff Kirsher #define NIG_REG_LATCH_BC_0					 0x16210
1993adfc5217SJeff Kirsher /* [RW 27] Latch for each interrupt from Unicore.b[0]
1994adfc5217SJeff Kirsher    status_emac0_misc_mi_int; b[1] status_emac0_misc_mi_complete;
1995adfc5217SJeff Kirsher    b[2]status_emac0_misc_cfg_change; b[3]status_emac0_misc_link_status;
1996adfc5217SJeff Kirsher    b[4]status_emac0_misc_link_change; b[5]status_emac0_misc_attn;
1997adfc5217SJeff Kirsher    b[6]status_serdes0_mac_crs; b[7]status_serdes0_autoneg_complete;
1998adfc5217SJeff Kirsher    b[8]status_serdes0_fiber_rxact; b[9]status_serdes0_link_status;
1999adfc5217SJeff Kirsher    b[10]status_serdes0_mr_page_rx; b[11]status_serdes0_cl73_an_complete;
2000adfc5217SJeff Kirsher    b[12]status_serdes0_cl73_mr_page_rx; b[13]status_serdes0_rx_sigdet;
2001adfc5217SJeff Kirsher    b[14]status_xgxs0_remotemdioreq; b[15]status_xgxs0_link10g;
2002adfc5217SJeff Kirsher    b[16]status_xgxs0_autoneg_complete; b[17]status_xgxs0_fiber_rxact;
2003adfc5217SJeff Kirsher    b[21:18]status_xgxs0_link_status; b[22]status_xgxs0_mr_page_rx;
2004adfc5217SJeff Kirsher    b[23]status_xgxs0_cl73_an_complete; b[24]status_xgxs0_cl73_mr_page_rx;
2005adfc5217SJeff Kirsher    b[25]status_xgxs0_rx_sigdet; b[26]status_xgxs0_mac_crs */
2006adfc5217SJeff Kirsher #define NIG_REG_LATCH_STATUS_0					 0x18000
2007adfc5217SJeff Kirsher /* [RW 1] led 10g for port 0 */
2008adfc5217SJeff Kirsher #define NIG_REG_LED_10G_P0					 0x10320
2009adfc5217SJeff Kirsher /* [RW 1] led 10g for port 1 */
2010adfc5217SJeff Kirsher #define NIG_REG_LED_10G_P1					 0x10324
2011adfc5217SJeff Kirsher /* [RW 1] Port0: This bit is set to enable the use of the
2012adfc5217SJeff Kirsher    ~nig_registers_led_control_blink_rate_p0.led_control_blink_rate_p0 field
2013adfc5217SJeff Kirsher    defined below. If this bit is cleared; then the blink rate will be about
2014adfc5217SJeff Kirsher    8Hz. */
2015adfc5217SJeff Kirsher #define NIG_REG_LED_CONTROL_BLINK_RATE_ENA_P0			 0x10318
2016adfc5217SJeff Kirsher /* [RW 12] Port0: Specifies the period of each blink cycle (on + off) for
2017adfc5217SJeff Kirsher    Traffic LED in milliseconds. Must be a non-zero value. This 12-bit field
2018adfc5217SJeff Kirsher    is reset to 0x080; giving a default blink period of approximately 8Hz. */
2019adfc5217SJeff Kirsher #define NIG_REG_LED_CONTROL_BLINK_RATE_P0			 0x10310
2020adfc5217SJeff Kirsher /* [RW 1] Port0: If set along with the
2021adfc5217SJeff Kirsher  ~nig_registers_led_control_override_traffic_p0.led_control_override_traffic_p0
2022adfc5217SJeff Kirsher    bit and ~nig_registers_led_control_traffic_p0.led_control_traffic_p0 LED
2023adfc5217SJeff Kirsher    bit; the Traffic LED will blink with the blink rate specified in
2024adfc5217SJeff Kirsher    ~nig_registers_led_control_blink_rate_p0.led_control_blink_rate_p0 and
2025adfc5217SJeff Kirsher    ~nig_registers_led_control_blink_rate_ena_p0.led_control_blink_rate_ena_p0
2026adfc5217SJeff Kirsher    fields. */
2027adfc5217SJeff Kirsher #define NIG_REG_LED_CONTROL_BLINK_TRAFFIC_P0			 0x10308
2028adfc5217SJeff Kirsher /* [RW 1] Port0: If set overrides hardware control of the Traffic LED. The
2029adfc5217SJeff Kirsher    Traffic LED will then be controlled via bit ~nig_registers_
2030adfc5217SJeff Kirsher    led_control_traffic_p0.led_control_traffic_p0 and bit
2031adfc5217SJeff Kirsher    ~nig_registers_led_control_blink_traffic_p0.led_control_blink_traffic_p0 */
2032adfc5217SJeff Kirsher #define NIG_REG_LED_CONTROL_OVERRIDE_TRAFFIC_P0 		 0x102f8
2033adfc5217SJeff Kirsher /* [RW 1] Port0: If set along with the led_control_override_trafic_p0 bit;
2034adfc5217SJeff Kirsher    turns on the Traffic LED. If the led_control_blink_traffic_p0 bit is also
2035adfc5217SJeff Kirsher    set; the LED will blink with blink rate specified in
2036adfc5217SJeff Kirsher    ~nig_registers_led_control_blink_rate_p0.led_control_blink_rate_p0 and
2037adfc5217SJeff Kirsher    ~nig_regsters_led_control_blink_rate_ena_p0.led_control_blink_rate_ena_p0
2038adfc5217SJeff Kirsher    fields. */
2039adfc5217SJeff Kirsher #define NIG_REG_LED_CONTROL_TRAFFIC_P0				 0x10300
2040adfc5217SJeff Kirsher /* [RW 4] led mode for port0: 0 MAC; 1-3 PHY1; 4 MAC2; 5-7 PHY4; 8-MAC3;
2041adfc5217SJeff Kirsher    9-11PHY7; 12 MAC4; 13-15 PHY10; */
2042adfc5217SJeff Kirsher #define NIG_REG_LED_MODE_P0					 0x102f0
2043adfc5217SJeff Kirsher /* [RW 3] for port0 enable for llfc ppp and pause. b0 - brb1 enable; b1-
2044adfc5217SJeff Kirsher    tsdm enable; b2- usdm enable */
2045adfc5217SJeff Kirsher #define NIG_REG_LLFC_EGRESS_SRC_ENABLE_0			 0x16070
2046adfc5217SJeff Kirsher #define NIG_REG_LLFC_EGRESS_SRC_ENABLE_1			 0x16074
2047adfc5217SJeff Kirsher /* [RW 1] SAFC enable for port0. This register may get 1 only when
2048adfc5217SJeff Kirsher    ~ppp_enable.ppp_enable = 0 and pause_enable.pause_enable =0 for the same
2049adfc5217SJeff Kirsher    port */
2050adfc5217SJeff Kirsher #define NIG_REG_LLFC_ENABLE_0					 0x16208
2051adfc5217SJeff Kirsher #define NIG_REG_LLFC_ENABLE_1					 0x1620c
2052adfc5217SJeff Kirsher /* [RW 16] classes are high-priority for port0 */
2053adfc5217SJeff Kirsher #define NIG_REG_LLFC_HIGH_PRIORITY_CLASSES_0			 0x16058
2054adfc5217SJeff Kirsher #define NIG_REG_LLFC_HIGH_PRIORITY_CLASSES_1			 0x1605c
2055adfc5217SJeff Kirsher /* [RW 16] classes are low-priority for port0 */
2056adfc5217SJeff Kirsher #define NIG_REG_LLFC_LOW_PRIORITY_CLASSES_0			 0x16060
2057adfc5217SJeff Kirsher #define NIG_REG_LLFC_LOW_PRIORITY_CLASSES_1			 0x16064
2058adfc5217SJeff Kirsher /* [RW 1] Output enable of message to LLFC BMAC IF for port0 */
2059adfc5217SJeff Kirsher #define NIG_REG_LLFC_OUT_EN_0					 0x160c8
2060adfc5217SJeff Kirsher #define NIG_REG_LLFC_OUT_EN_1					 0x160cc
2061adfc5217SJeff Kirsher #define NIG_REG_LLH0_ACPI_PAT_0_CRC				 0x1015c
2062adfc5217SJeff Kirsher #define NIG_REG_LLH0_ACPI_PAT_6_LEN				 0x10154
2063adfc5217SJeff Kirsher #define NIG_REG_LLH0_BRB1_DRV_MASK				 0x10244
2064adfc5217SJeff Kirsher #define NIG_REG_LLH0_BRB1_DRV_MASK_MF				 0x16048
2065adfc5217SJeff Kirsher /* [RW 1] send to BRB1 if no match on any of RMP rules. */
2066adfc5217SJeff Kirsher #define NIG_REG_LLH0_BRB1_NOT_MCP				 0x1025c
2067adfc5217SJeff Kirsher /* [RW 2] Determine the classification participants. 0: no classification.1:
2068adfc5217SJeff Kirsher    classification upon VLAN id. 2: classification upon MAC address. 3:
2069adfc5217SJeff Kirsher    classification upon both VLAN id & MAC addr. */
2070adfc5217SJeff Kirsher #define NIG_REG_LLH0_CLS_TYPE					 0x16080
2071adfc5217SJeff Kirsher /* [RW 32] cm header for llh0 */
2072adfc5217SJeff Kirsher #define NIG_REG_LLH0_CM_HEADER					 0x1007c
2073adfc5217SJeff Kirsher #define NIG_REG_LLH0_DEST_IP_0_1				 0x101dc
2074adfc5217SJeff Kirsher #define NIG_REG_LLH0_DEST_MAC_0_0				 0x101c0
2075adfc5217SJeff Kirsher /* [RW 16] destination TCP address 1. The LLH will look for this address in
2076adfc5217SJeff Kirsher    all incoming packets. */
2077adfc5217SJeff Kirsher #define NIG_REG_LLH0_DEST_TCP_0 				 0x10220
2078adfc5217SJeff Kirsher /* [RW 16] destination UDP address 1 The LLH will look for this address in
2079adfc5217SJeff Kirsher    all incoming packets. */
2080adfc5217SJeff Kirsher #define NIG_REG_LLH0_DEST_UDP_0 				 0x10214
2081adfc5217SJeff Kirsher #define NIG_REG_LLH0_ERROR_MASK 				 0x1008c
2082adfc5217SJeff Kirsher /* [RW 8] event id for llh0 */
2083adfc5217SJeff Kirsher #define NIG_REG_LLH0_EVENT_ID					 0x10084
2084adfc5217SJeff Kirsher #define NIG_REG_LLH0_FUNC_EN					 0x160fc
2085adfc5217SJeff Kirsher #define NIG_REG_LLH0_FUNC_MEM					 0x16180
2086adfc5217SJeff Kirsher #define NIG_REG_LLH0_FUNC_MEM_ENABLE				 0x16140
2087adfc5217SJeff Kirsher #define NIG_REG_LLH0_FUNC_VLAN_ID				 0x16100
2088adfc5217SJeff Kirsher /* [RW 1] Determine the IP version to look for in
2089adfc5217SJeff Kirsher    ~nig_registers_llh0_dest_ip_0.llh0_dest_ip_0. 0 - IPv6; 1-IPv4 */
2090adfc5217SJeff Kirsher #define NIG_REG_LLH0_IPV4_IPV6_0				 0x10208
2091adfc5217SJeff Kirsher /* [RW 1] t bit for llh0 */
2092adfc5217SJeff Kirsher #define NIG_REG_LLH0_T_BIT					 0x10074
2093adfc5217SJeff Kirsher /* [RW 12] VLAN ID 1. In case of VLAN packet the LLH will look for this ID. */
2094adfc5217SJeff Kirsher #define NIG_REG_LLH0_VLAN_ID_0					 0x1022c
2095adfc5217SJeff Kirsher /* [RW 8] init credit counter for port0 in LLH */
2096adfc5217SJeff Kirsher #define NIG_REG_LLH0_XCM_INIT_CREDIT				 0x10554
2097adfc5217SJeff Kirsher #define NIG_REG_LLH0_XCM_MASK					 0x10130
2098adfc5217SJeff Kirsher #define NIG_REG_LLH1_BRB1_DRV_MASK				 0x10248
2099adfc5217SJeff Kirsher /* [RW 1] send to BRB1 if no match on any of RMP rules. */
2100adfc5217SJeff Kirsher #define NIG_REG_LLH1_BRB1_NOT_MCP				 0x102dc
2101adfc5217SJeff Kirsher /* [RW 2] Determine the classification participants. 0: no classification.1:
2102adfc5217SJeff Kirsher    classification upon VLAN id. 2: classification upon MAC address. 3:
2103adfc5217SJeff Kirsher    classification upon both VLAN id & MAC addr. */
2104adfc5217SJeff Kirsher #define NIG_REG_LLH1_CLS_TYPE					 0x16084
2105adfc5217SJeff Kirsher /* [RW 32] cm header for llh1 */
2106adfc5217SJeff Kirsher #define NIG_REG_LLH1_CM_HEADER					 0x10080
2107adfc5217SJeff Kirsher #define NIG_REG_LLH1_ERROR_MASK 				 0x10090
2108adfc5217SJeff Kirsher /* [RW 8] event id for llh1 */
2109adfc5217SJeff Kirsher #define NIG_REG_LLH1_EVENT_ID					 0x10088
2110adfc5217SJeff Kirsher #define NIG_REG_LLH1_FUNC_MEM					 0x161c0
2111adfc5217SJeff Kirsher #define NIG_REG_LLH1_FUNC_MEM_ENABLE				 0x16160
2112adfc5217SJeff Kirsher #define NIG_REG_LLH1_FUNC_MEM_SIZE				 16
2113adfc5217SJeff Kirsher /* [RW 1] When this bit is set; the LLH will classify the packet before
2114adfc5217SJeff Kirsher  * sending it to the BRB or calculating WoL on it. This bit controls port 1
2115adfc5217SJeff Kirsher  * only. The legacy llh_multi_function_mode bit controls port 0. */
2116adfc5217SJeff Kirsher #define NIG_REG_LLH1_MF_MODE					 0x18614
2117adfc5217SJeff Kirsher /* [RW 8] init credit counter for port1 in LLH */
2118adfc5217SJeff Kirsher #define NIG_REG_LLH1_XCM_INIT_CREDIT				 0x10564
2119adfc5217SJeff Kirsher #define NIG_REG_LLH1_XCM_MASK					 0x10134
2120adfc5217SJeff Kirsher /* [RW 1] When this bit is set; the LLH will expect all packets to be with
2121adfc5217SJeff Kirsher    e1hov */
2122adfc5217SJeff Kirsher #define NIG_REG_LLH_E1HOV_MODE					 0x160d8
2123adfc5217SJeff Kirsher /* [RW 1] When this bit is set; the LLH will classify the packet before
2124adfc5217SJeff Kirsher    sending it to the BRB or calculating WoL on it. */
2125adfc5217SJeff Kirsher #define NIG_REG_LLH_MF_MODE					 0x16024
2126adfc5217SJeff Kirsher #define NIG_REG_MASK_INTERRUPT_PORT0				 0x10330
2127adfc5217SJeff Kirsher #define NIG_REG_MASK_INTERRUPT_PORT1				 0x10334
2128adfc5217SJeff Kirsher /* [RW 1] Output signal from NIG to EMAC0. When set enables the EMAC0 block. */
2129adfc5217SJeff Kirsher #define NIG_REG_NIG_EMAC0_EN					 0x1003c
2130adfc5217SJeff Kirsher /* [RW 1] Output signal from NIG to EMAC1. When set enables the EMAC1 block. */
2131adfc5217SJeff Kirsher #define NIG_REG_NIG_EMAC1_EN					 0x10040
2132adfc5217SJeff Kirsher /* [RW 1] Output signal from NIG to TX_EMAC0. When set indicates to the
2133adfc5217SJeff Kirsher    EMAC0 to strip the CRC from the ingress packets. */
2134adfc5217SJeff Kirsher #define NIG_REG_NIG_INGRESS_EMAC0_NO_CRC			 0x10044
2135adfc5217SJeff Kirsher /* [R 32] Interrupt register #0 read */
2136adfc5217SJeff Kirsher #define NIG_REG_NIG_INT_STS_0					 0x103b0
2137adfc5217SJeff Kirsher #define NIG_REG_NIG_INT_STS_1					 0x103c0
2138adfc5217SJeff Kirsher /* [R 32] Legacy E1 and E1H location for parity error mask register. */
2139adfc5217SJeff Kirsher #define NIG_REG_NIG_PRTY_MASK					 0x103dc
2140adfc5217SJeff Kirsher /* [RW 32] Parity mask register #0 read/write */
2141adfc5217SJeff Kirsher #define NIG_REG_NIG_PRTY_MASK_0					 0x183c8
2142adfc5217SJeff Kirsher #define NIG_REG_NIG_PRTY_MASK_1					 0x183d8
2143adfc5217SJeff Kirsher /* [R 32] Legacy E1 and E1H location for parity error status register. */
2144adfc5217SJeff Kirsher #define NIG_REG_NIG_PRTY_STS					 0x103d0
2145adfc5217SJeff Kirsher /* [R 32] Parity register #0 read */
2146adfc5217SJeff Kirsher #define NIG_REG_NIG_PRTY_STS_0					 0x183bc
2147adfc5217SJeff Kirsher #define NIG_REG_NIG_PRTY_STS_1					 0x183cc
2148adfc5217SJeff Kirsher /* [R 32] Legacy E1 and E1H location for parity error status clear register. */
2149adfc5217SJeff Kirsher #define NIG_REG_NIG_PRTY_STS_CLR				 0x103d4
2150adfc5217SJeff Kirsher /* [RC 32] Parity register #0 read clear */
2151adfc5217SJeff Kirsher #define NIG_REG_NIG_PRTY_STS_CLR_0				 0x183c0
2152adfc5217SJeff Kirsher #define NIG_REG_NIG_PRTY_STS_CLR_1				 0x183d0
2153adfc5217SJeff Kirsher #define MCPR_IMC_COMMAND_ENABLE					 (1L<<31)
2154adfc5217SJeff Kirsher #define MCPR_IMC_COMMAND_IMC_STATUS_BITSHIFT			 16
2155adfc5217SJeff Kirsher #define MCPR_IMC_COMMAND_OPERATION_BITSHIFT			 28
2156adfc5217SJeff Kirsher #define MCPR_IMC_COMMAND_TRANSFER_ADDRESS_BITSHIFT		 8
2157adfc5217SJeff Kirsher /* [RW 6] Bit-map indicating which L2 hdrs may appear after the basic
2158adfc5217SJeff Kirsher  * Ethernet header. */
2159adfc5217SJeff Kirsher #define NIG_REG_P0_HDRS_AFTER_BASIC				 0x18038
2160adfc5217SJeff Kirsher /* [RW 1] HW PFC enable bit. Set this bit to enable the PFC functionality in
2161adfc5217SJeff Kirsher  * the NIG. Other flow control modes such as PAUSE and SAFC/LLFC should be
2162adfc5217SJeff Kirsher  * disabled when this bit is set. */
2163adfc5217SJeff Kirsher #define NIG_REG_P0_HWPFC_ENABLE				 0x18078
2164adfc5217SJeff Kirsher #define NIG_REG_P0_LLH_FUNC_MEM2				 0x18480
2165adfc5217SJeff Kirsher #define NIG_REG_P0_LLH_FUNC_MEM2_ENABLE			 0x18440
2166adfc5217SJeff Kirsher /* [RW 1] Input enable for RX MAC interface. */
2167adfc5217SJeff Kirsher #define NIG_REG_P0_MAC_IN_EN					 0x185ac
2168adfc5217SJeff Kirsher /* [RW 1] Output enable for TX MAC interface */
2169adfc5217SJeff Kirsher #define NIG_REG_P0_MAC_OUT_EN					 0x185b0
2170adfc5217SJeff Kirsher /* [RW 1] Output enable for TX PAUSE signal to the MAC. */
2171adfc5217SJeff Kirsher #define NIG_REG_P0_MAC_PAUSE_OUT_EN				 0x185b4
2172adfc5217SJeff Kirsher /* [RW 32] Eight 4-bit configurations for specifying which COS (0-15 for
2173adfc5217SJeff Kirsher  * future expansion) each priorty is to be mapped to. Bits 3:0 specify the
2174adfc5217SJeff Kirsher  * COS for priority 0. Bits 31:28 specify the COS for priority 7. The 3-bit
2175adfc5217SJeff Kirsher  * priority field is extracted from the outer-most VLAN in receive packet.
2176adfc5217SJeff Kirsher  * Only COS 0 and COS 1 are supported in E2. */
2177adfc5217SJeff Kirsher #define NIG_REG_P0_PKT_PRIORITY_TO_COS				 0x18054
2178adfc5217SJeff Kirsher /* [RW 16] Bit-map indicating which SAFC/PFC priorities to map to COS 0. A
2179adfc5217SJeff Kirsher  * priority is mapped to COS 0 when the corresponding mask bit is 1. More
2180adfc5217SJeff Kirsher  * than one bit may be set; allowing multiple priorities to be mapped to one
2181adfc5217SJeff Kirsher  * COS. */
2182adfc5217SJeff Kirsher #define NIG_REG_P0_RX_COS0_PRIORITY_MASK			 0x18058
2183adfc5217SJeff Kirsher /* [RW 16] Bit-map indicating which SAFC/PFC priorities to map to COS 1. A
2184adfc5217SJeff Kirsher  * priority is mapped to COS 1 when the corresponding mask bit is 1. More
2185adfc5217SJeff Kirsher  * than one bit may be set; allowing multiple priorities to be mapped to one
2186adfc5217SJeff Kirsher  * COS. */
2187adfc5217SJeff Kirsher #define NIG_REG_P0_RX_COS1_PRIORITY_MASK			 0x1805c
2188adfc5217SJeff Kirsher /* [RW 16] Bit-map indicating which SAFC/PFC priorities to map to COS 2. A
2189adfc5217SJeff Kirsher  * priority is mapped to COS 2 when the corresponding mask bit is 1. More
2190adfc5217SJeff Kirsher  * than one bit may be set; allowing multiple priorities to be mapped to one
2191adfc5217SJeff Kirsher  * COS. */
2192adfc5217SJeff Kirsher #define NIG_REG_P0_RX_COS2_PRIORITY_MASK			 0x186b0
2193adfc5217SJeff Kirsher /* [RW 16] Bit-map indicating which SAFC/PFC priorities to map to COS 3. A
2194adfc5217SJeff Kirsher  * priority is mapped to COS 3 when the corresponding mask bit is 1. More
2195adfc5217SJeff Kirsher  * than one bit may be set; allowing multiple priorities to be mapped to one
2196adfc5217SJeff Kirsher  * COS. */
2197adfc5217SJeff Kirsher #define NIG_REG_P0_RX_COS3_PRIORITY_MASK			 0x186b4
2198adfc5217SJeff Kirsher /* [RW 16] Bit-map indicating which SAFC/PFC priorities to map to COS 4. A
2199adfc5217SJeff Kirsher  * priority is mapped to COS 4 when the corresponding mask bit is 1. More
2200adfc5217SJeff Kirsher  * than one bit may be set; allowing multiple priorities to be mapped to one
2201adfc5217SJeff Kirsher  * COS. */
2202adfc5217SJeff Kirsher #define NIG_REG_P0_RX_COS4_PRIORITY_MASK			 0x186b8
2203adfc5217SJeff Kirsher /* [RW 16] Bit-map indicating which SAFC/PFC priorities to map to COS 5. A
2204adfc5217SJeff Kirsher  * priority is mapped to COS 5 when the corresponding mask bit is 1. More
2205adfc5217SJeff Kirsher  * than one bit may be set; allowing multiple priorities to be mapped to one
2206adfc5217SJeff Kirsher  * COS. */
2207adfc5217SJeff Kirsher #define NIG_REG_P0_RX_COS5_PRIORITY_MASK			 0x186bc
2208adfc5217SJeff Kirsher /* [R 1] RX FIFO for receiving data from MAC is empty. */
2209adfc5217SJeff Kirsher /* [RW 15] Specify which of the credit registers the client is to be mapped
2210adfc5217SJeff Kirsher  * to. Bits[2:0] are for client 0; bits [14:12] are for client 4. For
2211adfc5217SJeff Kirsher  * clients that are not subject to WFQ credit blocking - their
2212adfc5217SJeff Kirsher  * specifications here are not used. */
2213adfc5217SJeff Kirsher #define NIG_REG_P0_TX_ARB_CLIENT_CREDIT_MAP			 0x180f0
2214adfc5217SJeff Kirsher /* [RW 32] Specify which of the credit registers the client is to be mapped
2215adfc5217SJeff Kirsher  * to. This register specifies bits 31:0 of the 36-bit value. Bits[3:0] are
2216adfc5217SJeff Kirsher  * for client 0; bits [35:32] are for client 8. For clients that are not
2217adfc5217SJeff Kirsher  * subject to WFQ credit blocking - their specifications here are not used.
2218adfc5217SJeff Kirsher  * This is a new register (with 2_) added in E3 B0 to accommodate the 9
2219adfc5217SJeff Kirsher  * input clients to ETS arbiter. The reset default is set for management and
2220adfc5217SJeff Kirsher  * debug to use credit registers 6, 7, and 8, respectively, and COSes 0-5 to
2221adfc5217SJeff Kirsher  * use credit registers 0-5 respectively (0x543210876). Note that credit
2222adfc5217SJeff Kirsher  * registers can not be shared between clients. */
2223adfc5217SJeff Kirsher #define NIG_REG_P0_TX_ARB_CLIENT_CREDIT_MAP2_LSB		 0x18688
2224adfc5217SJeff Kirsher /* [RW 4] Specify which of the credit registers the client is to be mapped
2225adfc5217SJeff Kirsher  * to. This register specifies bits 35:32 of the 36-bit value. Bits[3:0] are
2226adfc5217SJeff Kirsher  * for client 0; bits [35:32] are for client 8. For clients that are not
2227adfc5217SJeff Kirsher  * subject to WFQ credit blocking - their specifications here are not used.
2228adfc5217SJeff Kirsher  * This is a new register (with 2_) added in E3 B0 to accommodate the 9
2229adfc5217SJeff Kirsher  * input clients to ETS arbiter. The reset default is set for management and
2230adfc5217SJeff Kirsher  * debug to use credit registers 6, 7, and 8, respectively, and COSes 0-5 to
2231adfc5217SJeff Kirsher  * use credit registers 0-5 respectively (0x543210876). Note that credit
2232adfc5217SJeff Kirsher  * registers can not be shared between clients. */
2233adfc5217SJeff Kirsher #define NIG_REG_P0_TX_ARB_CLIENT_CREDIT_MAP2_MSB		 0x1868c
2234adfc5217SJeff Kirsher /* [RW 5] Specify whether the client competes directly in the strict
2235adfc5217SJeff Kirsher  * priority arbiter. The bits are mapped according to client ID (client IDs
2236adfc5217SJeff Kirsher  * are defined in tx_arb_priority_client). Default value is set to enable
2237adfc5217SJeff Kirsher  * strict priorities for clients 0-2 -- management and debug traffic. */
2238adfc5217SJeff Kirsher #define NIG_REG_P0_TX_ARB_CLIENT_IS_STRICT			 0x180e8
2239adfc5217SJeff Kirsher /* [RW 5] Specify whether the client is subject to WFQ credit blocking. The
2240adfc5217SJeff Kirsher  * bits are mapped according to client ID (client IDs are defined in
2241adfc5217SJeff Kirsher  * tx_arb_priority_client). Default value is 0 for not using WFQ credit
2242adfc5217SJeff Kirsher  * blocking. */
2243adfc5217SJeff Kirsher #define NIG_REG_P0_TX_ARB_CLIENT_IS_SUBJECT2WFQ		 0x180ec
2244adfc5217SJeff Kirsher /* [RW 32] Specify the upper bound that credit register 0 is allowed to
2245adfc5217SJeff Kirsher  * reach. */
2246adfc5217SJeff Kirsher #define NIG_REG_P0_TX_ARB_CREDIT_UPPER_BOUND_0			 0x1810c
2247adfc5217SJeff Kirsher #define NIG_REG_P0_TX_ARB_CREDIT_UPPER_BOUND_1			 0x18110
2248adfc5217SJeff Kirsher #define NIG_REG_P0_TX_ARB_CREDIT_UPPER_BOUND_2			 0x18114
2249adfc5217SJeff Kirsher #define NIG_REG_P0_TX_ARB_CREDIT_UPPER_BOUND_3			 0x18118
2250adfc5217SJeff Kirsher #define NIG_REG_P0_TX_ARB_CREDIT_UPPER_BOUND_4			 0x1811c
2251adfc5217SJeff Kirsher #define NIG_REG_P0_TX_ARB_CREDIT_UPPER_BOUND_5			 0x186a0
2252adfc5217SJeff Kirsher #define NIG_REG_P0_TX_ARB_CREDIT_UPPER_BOUND_6			 0x186a4
2253adfc5217SJeff Kirsher #define NIG_REG_P0_TX_ARB_CREDIT_UPPER_BOUND_7			 0x186a8
2254adfc5217SJeff Kirsher #define NIG_REG_P0_TX_ARB_CREDIT_UPPER_BOUND_8			 0x186ac
2255adfc5217SJeff Kirsher /* [RW 32] Specify the weight (in bytes) to be added to credit register 0
2256adfc5217SJeff Kirsher  * when it is time to increment. */
2257adfc5217SJeff Kirsher #define NIG_REG_P0_TX_ARB_CREDIT_WEIGHT_0			 0x180f8
2258adfc5217SJeff Kirsher #define NIG_REG_P0_TX_ARB_CREDIT_WEIGHT_1			 0x180fc
2259adfc5217SJeff Kirsher #define NIG_REG_P0_TX_ARB_CREDIT_WEIGHT_2			 0x18100
2260adfc5217SJeff Kirsher #define NIG_REG_P0_TX_ARB_CREDIT_WEIGHT_3			 0x18104
2261adfc5217SJeff Kirsher #define NIG_REG_P0_TX_ARB_CREDIT_WEIGHT_4			 0x18108
2262adfc5217SJeff Kirsher #define NIG_REG_P0_TX_ARB_CREDIT_WEIGHT_5			 0x18690
2263adfc5217SJeff Kirsher #define NIG_REG_P0_TX_ARB_CREDIT_WEIGHT_6			 0x18694
2264adfc5217SJeff Kirsher #define NIG_REG_P0_TX_ARB_CREDIT_WEIGHT_7			 0x18698
2265adfc5217SJeff Kirsher #define NIG_REG_P0_TX_ARB_CREDIT_WEIGHT_8			 0x1869c
2266adfc5217SJeff Kirsher /* [RW 12] Specify the number of strict priority arbitration slots between
2267adfc5217SJeff Kirsher  * two round-robin arbitration slots to avoid starvation. A value of 0 means
2268adfc5217SJeff Kirsher  * no strict priority cycles - the strict priority with anti-starvation
2269adfc5217SJeff Kirsher  * arbiter becomes a round-robin arbiter. */
2270adfc5217SJeff Kirsher #define NIG_REG_P0_TX_ARB_NUM_STRICT_ARB_SLOTS			 0x180f4
2271adfc5217SJeff Kirsher /* [RW 15] Specify the client number to be assigned to each priority of the
2272adfc5217SJeff Kirsher  * strict priority arbiter. Priority 0 is the highest priority. Bits [2:0]
2273adfc5217SJeff Kirsher  * are for priority 0 client; bits [14:12] are for priority 4 client. The
2274adfc5217SJeff Kirsher  * clients are assigned the following IDs: 0-management; 1-debug traffic
2275adfc5217SJeff Kirsher  * from this port; 2-debug traffic from other port; 3-COS0 traffic; 4-COS1
2276adfc5217SJeff Kirsher  * traffic. The reset value[14:0] is set to 0x4688 (15'b100_011_010_001_000)
2277adfc5217SJeff Kirsher  * for management at priority 0; debug traffic at priorities 1 and 2; COS0
2278adfc5217SJeff Kirsher  * traffic at priority 3; and COS1 traffic at priority 4. */
2279adfc5217SJeff Kirsher #define NIG_REG_P0_TX_ARB_PRIORITY_CLIENT			 0x180e4
2280adfc5217SJeff Kirsher /* [RW 6] Bit-map indicating which L2 hdrs may appear after the basic
2281adfc5217SJeff Kirsher  * Ethernet header. */
2282adfc5217SJeff Kirsher #define NIG_REG_P1_HDRS_AFTER_BASIC				 0x1818c
2283adfc5217SJeff Kirsher #define NIG_REG_P1_LLH_FUNC_MEM2				 0x184c0
2284adfc5217SJeff Kirsher #define NIG_REG_P1_LLH_FUNC_MEM2_ENABLE			 0x18460
2285adfc5217SJeff Kirsher /* [RW 32] Specify the client number to be assigned to each priority of the
2286adfc5217SJeff Kirsher  * strict priority arbiter. This register specifies bits 31:0 of the 36-bit
2287adfc5217SJeff Kirsher  * value. Priority 0 is the highest priority. Bits [3:0] are for priority 0
2288adfc5217SJeff Kirsher  * client; bits [35-32] are for priority 8 client. The clients are assigned
2289adfc5217SJeff Kirsher  * the following IDs: 0-management; 1-debug traffic from this port; 2-debug
2290adfc5217SJeff Kirsher  * traffic from other port; 3-COS0 traffic; 4-COS1 traffic; 5-COS2 traffic;
2291adfc5217SJeff Kirsher  * 6-COS3 traffic; 7-COS4 traffic; 8-COS5 traffic. The reset value[35:0] is
2292adfc5217SJeff Kirsher  * set to 0x345678021. This is a new register (with 2_) added in E3 B0 to
2293adfc5217SJeff Kirsher  * accommodate the 9 input clients to ETS arbiter. */
2294adfc5217SJeff Kirsher #define NIG_REG_P0_TX_ARB_PRIORITY_CLIENT2_LSB			 0x18680
2295adfc5217SJeff Kirsher /* [RW 4] Specify the client number to be assigned to each priority of the
2296adfc5217SJeff Kirsher  * strict priority arbiter. This register specifies bits 35:32 of the 36-bit
2297adfc5217SJeff Kirsher  * value. Priority 0 is the highest priority. Bits [3:0] are for priority 0
2298adfc5217SJeff Kirsher  * client; bits [35-32] are for priority 8 client. The clients are assigned
2299adfc5217SJeff Kirsher  * the following IDs: 0-management; 1-debug traffic from this port; 2-debug
2300adfc5217SJeff Kirsher  * traffic from other port; 3-COS0 traffic; 4-COS1 traffic; 5-COS2 traffic;
2301adfc5217SJeff Kirsher  * 6-COS3 traffic; 7-COS4 traffic; 8-COS5 traffic. The reset value[35:0] is
2302adfc5217SJeff Kirsher  * set to 0x345678021. This is a new register (with 2_) added in E3 B0 to
2303adfc5217SJeff Kirsher  * accommodate the 9 input clients to ETS arbiter. */
2304adfc5217SJeff Kirsher #define NIG_REG_P0_TX_ARB_PRIORITY_CLIENT2_MSB			 0x18684
2305127302bbSYaniv Rosner #define NIG_REG_P1_HWPFC_ENABLE					 0x181d0
2306adfc5217SJeff Kirsher #define NIG_REG_P1_MAC_IN_EN					 0x185c0
2307adfc5217SJeff Kirsher /* [RW 1] Output enable for TX MAC interface */
2308adfc5217SJeff Kirsher #define NIG_REG_P1_MAC_OUT_EN					 0x185c4
2309adfc5217SJeff Kirsher /* [RW 1] Output enable for TX PAUSE signal to the MAC. */
2310adfc5217SJeff Kirsher #define NIG_REG_P1_MAC_PAUSE_OUT_EN				 0x185c8
2311adfc5217SJeff Kirsher /* [RW 32] Eight 4-bit configurations for specifying which COS (0-15 for
2312adfc5217SJeff Kirsher  * future expansion) each priorty is to be mapped to. Bits 3:0 specify the
2313adfc5217SJeff Kirsher  * COS for priority 0. Bits 31:28 specify the COS for priority 7. The 3-bit
2314adfc5217SJeff Kirsher  * priority field is extracted from the outer-most VLAN in receive packet.
2315adfc5217SJeff Kirsher  * Only COS 0 and COS 1 are supported in E2. */
2316adfc5217SJeff Kirsher #define NIG_REG_P1_PKT_PRIORITY_TO_COS				 0x181a8
2317adfc5217SJeff Kirsher /* [RW 16] Bit-map indicating which SAFC/PFC priorities to map to COS 0. A
2318adfc5217SJeff Kirsher  * priority is mapped to COS 0 when the corresponding mask bit is 1. More
2319adfc5217SJeff Kirsher  * than one bit may be set; allowing multiple priorities to be mapped to one
2320adfc5217SJeff Kirsher  * COS. */
2321adfc5217SJeff Kirsher #define NIG_REG_P1_RX_COS0_PRIORITY_MASK			 0x181ac
2322adfc5217SJeff Kirsher /* [RW 16] Bit-map indicating which SAFC/PFC priorities to map to COS 1. A
2323adfc5217SJeff Kirsher  * priority is mapped to COS 1 when the corresponding mask bit is 1. More
2324adfc5217SJeff Kirsher  * than one bit may be set; allowing multiple priorities to be mapped to one
2325adfc5217SJeff Kirsher  * COS. */
2326adfc5217SJeff Kirsher #define NIG_REG_P1_RX_COS1_PRIORITY_MASK			 0x181b0
2327adfc5217SJeff Kirsher /* [RW 16] Bit-map indicating which SAFC/PFC priorities to map to COS 2. A
2328adfc5217SJeff Kirsher  * priority is mapped to COS 2 when the corresponding mask bit is 1. More
2329adfc5217SJeff Kirsher  * than one bit may be set; allowing multiple priorities to be mapped to one
2330adfc5217SJeff Kirsher  * COS. */
2331adfc5217SJeff Kirsher #define NIG_REG_P1_RX_COS2_PRIORITY_MASK			 0x186f8
2332adfc5217SJeff Kirsher /* [R 1] RX FIFO for receiving data from MAC is empty. */
2333adfc5217SJeff Kirsher #define NIG_REG_P1_RX_MACFIFO_EMPTY				 0x1858c
2334adfc5217SJeff Kirsher /* [R 1] TLLH FIFO is empty. */
2335adfc5217SJeff Kirsher #define NIG_REG_P1_TLLH_FIFO_EMPTY				 0x18338
2336adfc5217SJeff Kirsher /* [RW 32] Specify which of the credit registers the client is to be mapped
2337adfc5217SJeff Kirsher  * to. This register specifies bits 31:0 of the 36-bit value. Bits[3:0] are
2338adfc5217SJeff Kirsher  * for client 0; bits [35:32] are for client 8. For clients that are not
2339adfc5217SJeff Kirsher  * subject to WFQ credit blocking - their specifications here are not used.
2340adfc5217SJeff Kirsher  * This is a new register (with 2_) added in E3 B0 to accommodate the 9
2341adfc5217SJeff Kirsher  * input clients to ETS arbiter. The reset default is set for management and
2342adfc5217SJeff Kirsher  * debug to use credit registers 6, 7, and 8, respectively, and COSes 0-5 to
2343adfc5217SJeff Kirsher  * use credit registers 0-5 respectively (0x543210876). Note that credit
2344adfc5217SJeff Kirsher  * registers can not be shared between clients. Note also that there are
2345adfc5217SJeff Kirsher  * only COS0-2 in port 1- there is a total of 6 clients in port 1. Only
2346adfc5217SJeff Kirsher  * credit registers 0-5 are valid. This register should be configured
2347adfc5217SJeff Kirsher  * appropriately before enabling WFQ. */
2348adfc5217SJeff Kirsher #define NIG_REG_P1_TX_ARB_CLIENT_CREDIT_MAP2_LSB		 0x186e8
2349adfc5217SJeff Kirsher /* [RW 4] Specify which of the credit registers the client is to be mapped
2350adfc5217SJeff Kirsher  * to. This register specifies bits 35:32 of the 36-bit value. Bits[3:0] are
2351adfc5217SJeff Kirsher  * for client 0; bits [35:32] are for client 8. For clients that are not
2352adfc5217SJeff Kirsher  * subject to WFQ credit blocking - their specifications here are not used.
2353adfc5217SJeff Kirsher  * This is a new register (with 2_) added in E3 B0 to accommodate the 9
2354adfc5217SJeff Kirsher  * input clients to ETS arbiter. The reset default is set for management and
2355adfc5217SJeff Kirsher  * debug to use credit registers 6, 7, and 8, respectively, and COSes 0-5 to
2356adfc5217SJeff Kirsher  * use credit registers 0-5 respectively (0x543210876). Note that credit
2357adfc5217SJeff Kirsher  * registers can not be shared between clients. Note also that there are
2358adfc5217SJeff Kirsher  * only COS0-2 in port 1- there is a total of 6 clients in port 1. Only
2359adfc5217SJeff Kirsher  * credit registers 0-5 are valid. This register should be configured
2360adfc5217SJeff Kirsher  * appropriately before enabling WFQ. */
2361adfc5217SJeff Kirsher #define NIG_REG_P1_TX_ARB_CLIENT_CREDIT_MAP2_MSB		 0x186ec
2362adfc5217SJeff Kirsher /* [RW 9] Specify whether the client competes directly in the strict
2363adfc5217SJeff Kirsher  * priority arbiter. The bits are mapped according to client ID (client IDs
2364adfc5217SJeff Kirsher  * are defined in tx_arb_priority_client2): 0-management; 1-debug traffic
2365adfc5217SJeff Kirsher  * from this port; 2-debug traffic from other port; 3-COS0 traffic; 4-COS1
2366adfc5217SJeff Kirsher  * traffic; 5-COS2 traffic; 6-COS3 traffic; 7-COS4 traffic; 8-COS5 traffic.
2367adfc5217SJeff Kirsher  * Default value is set to enable strict priorities for all clients. */
2368adfc5217SJeff Kirsher #define NIG_REG_P1_TX_ARB_CLIENT_IS_STRICT			 0x18234
2369adfc5217SJeff Kirsher /* [RW 9] Specify whether the client is subject to WFQ credit blocking. The
2370adfc5217SJeff Kirsher  * bits are mapped according to client ID (client IDs are defined in
2371adfc5217SJeff Kirsher  * tx_arb_priority_client2): 0-management; 1-debug traffic from this port;
2372adfc5217SJeff Kirsher  * 2-debug traffic from other port; 3-COS0 traffic; 4-COS1 traffic; 5-COS2
2373adfc5217SJeff Kirsher  * traffic; 6-COS3 traffic; 7-COS4 traffic; 8-COS5 traffic. Default value is
2374adfc5217SJeff Kirsher  * 0 for not using WFQ credit blocking. */
2375adfc5217SJeff Kirsher #define NIG_REG_P1_TX_ARB_CLIENT_IS_SUBJECT2WFQ			 0x18238
2376adfc5217SJeff Kirsher #define NIG_REG_P1_TX_ARB_CREDIT_UPPER_BOUND_0			 0x18258
2377adfc5217SJeff Kirsher #define NIG_REG_P1_TX_ARB_CREDIT_UPPER_BOUND_1			 0x1825c
2378adfc5217SJeff Kirsher #define NIG_REG_P1_TX_ARB_CREDIT_UPPER_BOUND_2			 0x18260
2379adfc5217SJeff Kirsher #define NIG_REG_P1_TX_ARB_CREDIT_UPPER_BOUND_3			 0x18264
2380adfc5217SJeff Kirsher #define NIG_REG_P1_TX_ARB_CREDIT_UPPER_BOUND_4			 0x18268
2381adfc5217SJeff Kirsher #define NIG_REG_P1_TX_ARB_CREDIT_UPPER_BOUND_5			 0x186f4
2382adfc5217SJeff Kirsher /* [RW 32] Specify the weight (in bytes) to be added to credit register 0
2383adfc5217SJeff Kirsher  * when it is time to increment. */
2384adfc5217SJeff Kirsher #define NIG_REG_P1_TX_ARB_CREDIT_WEIGHT_0			 0x18244
2385adfc5217SJeff Kirsher #define NIG_REG_P1_TX_ARB_CREDIT_WEIGHT_1			 0x18248
2386adfc5217SJeff Kirsher #define NIG_REG_P1_TX_ARB_CREDIT_WEIGHT_2			 0x1824c
2387adfc5217SJeff Kirsher #define NIG_REG_P1_TX_ARB_CREDIT_WEIGHT_3			 0x18250
2388adfc5217SJeff Kirsher #define NIG_REG_P1_TX_ARB_CREDIT_WEIGHT_4			 0x18254
2389adfc5217SJeff Kirsher #define NIG_REG_P1_TX_ARB_CREDIT_WEIGHT_5			 0x186f0
2390adfc5217SJeff Kirsher /* [RW 12] Specify the number of strict priority arbitration slots between
2391adfc5217SJeff Kirsher    two round-robin arbitration slots to avoid starvation. A value of 0 means
2392adfc5217SJeff Kirsher    no strict priority cycles - the strict priority with anti-starvation
2393adfc5217SJeff Kirsher    arbiter becomes a round-robin arbiter. */
2394adfc5217SJeff Kirsher #define NIG_REG_P1_TX_ARB_NUM_STRICT_ARB_SLOTS			 0x18240
2395adfc5217SJeff Kirsher /* [RW 32] Specify the client number to be assigned to each priority of the
2396adfc5217SJeff Kirsher    strict priority arbiter. This register specifies bits 31:0 of the 36-bit
2397adfc5217SJeff Kirsher    value. Priority 0 is the highest priority. Bits [3:0] are for priority 0
2398adfc5217SJeff Kirsher    client; bits [35-32] are for priority 8 client. The clients are assigned
2399adfc5217SJeff Kirsher    the following IDs: 0-management; 1-debug traffic from this port; 2-debug
2400adfc5217SJeff Kirsher    traffic from other port; 3-COS0 traffic; 4-COS1 traffic; 5-COS2 traffic;
2401adfc5217SJeff Kirsher    6-COS3 traffic; 7-COS4 traffic; 8-COS5 traffic. The reset value[35:0] is
2402adfc5217SJeff Kirsher    set to 0x345678021. This is a new register (with 2_) added in E3 B0 to
2403adfc5217SJeff Kirsher    accommodate the 9 input clients to ETS arbiter. Note that this register
2404adfc5217SJeff Kirsher    is the same as the one for port 0, except that port 1 only has COS 0-2
2405adfc5217SJeff Kirsher    traffic. There is no traffic for COS 3-5 of port 1. */
2406adfc5217SJeff Kirsher #define NIG_REG_P1_TX_ARB_PRIORITY_CLIENT2_LSB			 0x186e0
2407adfc5217SJeff Kirsher /* [RW 4] Specify the client number to be assigned to each priority of the
2408adfc5217SJeff Kirsher    strict priority arbiter. This register specifies bits 35:32 of the 36-bit
2409adfc5217SJeff Kirsher    value. Priority 0 is the highest priority. Bits [3:0] are for priority 0
2410adfc5217SJeff Kirsher    client; bits [35-32] are for priority 8 client. The clients are assigned
2411adfc5217SJeff Kirsher    the following IDs: 0-management; 1-debug traffic from this port; 2-debug
2412adfc5217SJeff Kirsher    traffic from other port; 3-COS0 traffic; 4-COS1 traffic; 5-COS2 traffic;
2413adfc5217SJeff Kirsher    6-COS3 traffic; 7-COS4 traffic; 8-COS5 traffic. The reset value[35:0] is
2414adfc5217SJeff Kirsher    set to 0x345678021. This is a new register (with 2_) added in E3 B0 to
2415adfc5217SJeff Kirsher    accommodate the 9 input clients to ETS arbiter. Note that this register
2416adfc5217SJeff Kirsher    is the same as the one for port 0, except that port 1 only has COS 0-2
2417adfc5217SJeff Kirsher    traffic. There is no traffic for COS 3-5 of port 1. */
2418adfc5217SJeff Kirsher #define NIG_REG_P1_TX_ARB_PRIORITY_CLIENT2_MSB			 0x186e4
2419adfc5217SJeff Kirsher /* [R 1] TX FIFO for transmitting data to MAC is empty. */
2420adfc5217SJeff Kirsher #define NIG_REG_P1_TX_MACFIFO_EMPTY				 0x18594
2421adfc5217SJeff Kirsher /* [R 1] FIFO empty status of the MCP TX FIFO used for storing MCP packets
2422adfc5217SJeff Kirsher    forwarded to the host. */
2423adfc5217SJeff Kirsher #define NIG_REG_P1_TX_MNG_HOST_FIFO_EMPTY			 0x182b8
2424adfc5217SJeff Kirsher /* [RW 32] Specify the upper bound that credit register 0 is allowed to
2425adfc5217SJeff Kirsher  * reach. */
2426adfc5217SJeff Kirsher /* [RW 1] Pause enable for port0. This register may get 1 only when
2427adfc5217SJeff Kirsher    ~safc_enable.safc_enable = 0 and ppp_enable.ppp_enable =0 for the same
2428adfc5217SJeff Kirsher    port */
2429adfc5217SJeff Kirsher #define NIG_REG_PAUSE_ENABLE_0					 0x160c0
2430adfc5217SJeff Kirsher #define NIG_REG_PAUSE_ENABLE_1					 0x160c4
2431adfc5217SJeff Kirsher /* [RW 1] Input enable for RX PBF LP IF */
2432adfc5217SJeff Kirsher #define NIG_REG_PBF_LB_IN_EN					 0x100b4
2433adfc5217SJeff Kirsher /* [RW 1] Value of this register will be transmitted to port swap when
2434adfc5217SJeff Kirsher    ~nig_registers_strap_override.strap_override =1 */
2435adfc5217SJeff Kirsher #define NIG_REG_PORT_SWAP					 0x10394
2436adfc5217SJeff Kirsher /* [RW 1] PPP enable for port0. This register may get 1 only when
2437adfc5217SJeff Kirsher  * ~safc_enable.safc_enable = 0 and pause_enable.pause_enable =0 for the
2438adfc5217SJeff Kirsher  * same port */
2439adfc5217SJeff Kirsher #define NIG_REG_PPP_ENABLE_0					 0x160b0
2440adfc5217SJeff Kirsher #define NIG_REG_PPP_ENABLE_1					 0x160b4
2441adfc5217SJeff Kirsher /* [RW 1] output enable for RX parser descriptor IF */
2442adfc5217SJeff Kirsher #define NIG_REG_PRS_EOP_OUT_EN					 0x10104
2443adfc5217SJeff Kirsher /* [RW 1] Input enable for RX parser request IF */
2444adfc5217SJeff Kirsher #define NIG_REG_PRS_REQ_IN_EN					 0x100b8
2445adfc5217SJeff Kirsher /* [RW 5] control to serdes - CL45 DEVAD */
2446adfc5217SJeff Kirsher #define NIG_REG_SERDES0_CTRL_MD_DEVAD				 0x10370
2447adfc5217SJeff Kirsher /* [RW 1] control to serdes; 0 - clause 45; 1 - clause 22 */
2448adfc5217SJeff Kirsher #define NIG_REG_SERDES0_CTRL_MD_ST				 0x1036c
2449adfc5217SJeff Kirsher /* [RW 5] control to serdes - CL22 PHY_ADD and CL45 PRTAD */
2450adfc5217SJeff Kirsher #define NIG_REG_SERDES0_CTRL_PHY_ADDR				 0x10374
2451adfc5217SJeff Kirsher /* [R 1] status from serdes0 that inputs to interrupt logic of link status */
2452adfc5217SJeff Kirsher #define NIG_REG_SERDES0_STATUS_LINK_STATUS			 0x10578
2453adfc5217SJeff Kirsher /* [R 32] Rx statistics : In user packets discarded due to BRB backpressure
2454adfc5217SJeff Kirsher    for port0 */
2455adfc5217SJeff Kirsher #define NIG_REG_STAT0_BRB_DISCARD				 0x105f0
2456adfc5217SJeff Kirsher /* [R 32] Rx statistics : In user packets truncated due to BRB backpressure
2457adfc5217SJeff Kirsher    for port0 */
2458adfc5217SJeff Kirsher #define NIG_REG_STAT0_BRB_TRUNCATE				 0x105f8
2459adfc5217SJeff Kirsher /* [WB_R 36] Tx statistics : Number of packets from emac0 or bmac0 that
2460adfc5217SJeff Kirsher    between 1024 and 1522 bytes for port0 */
2461adfc5217SJeff Kirsher #define NIG_REG_STAT0_EGRESS_MAC_PKT0				 0x10750
2462adfc5217SJeff Kirsher /* [WB_R 36] Tx statistics : Number of packets from emac0 or bmac0 that
2463adfc5217SJeff Kirsher    between 1523 bytes and above for port0 */
2464adfc5217SJeff Kirsher #define NIG_REG_STAT0_EGRESS_MAC_PKT1				 0x10760
2465adfc5217SJeff Kirsher /* [R 32] Rx statistics : In user packets discarded due to BRB backpressure
2466adfc5217SJeff Kirsher    for port1 */
2467adfc5217SJeff Kirsher #define NIG_REG_STAT1_BRB_DISCARD				 0x10628
2468adfc5217SJeff Kirsher /* [WB_R 36] Tx statistics : Number of packets from emac1 or bmac1 that
2469adfc5217SJeff Kirsher    between 1024 and 1522 bytes for port1 */
2470adfc5217SJeff Kirsher #define NIG_REG_STAT1_EGRESS_MAC_PKT0				 0x107a0
2471adfc5217SJeff Kirsher /* [WB_R 36] Tx statistics : Number of packets from emac1 or bmac1 that
2472adfc5217SJeff Kirsher    between 1523 bytes and above for port1 */
2473adfc5217SJeff Kirsher #define NIG_REG_STAT1_EGRESS_MAC_PKT1				 0x107b0
2474adfc5217SJeff Kirsher /* [WB_R 64] Rx statistics : User octets received for LP */
2475adfc5217SJeff Kirsher #define NIG_REG_STAT2_BRB_OCTET 				 0x107e0
2476adfc5217SJeff Kirsher #define NIG_REG_STATUS_INTERRUPT_PORT0				 0x10328
2477adfc5217SJeff Kirsher #define NIG_REG_STATUS_INTERRUPT_PORT1				 0x1032c
2478adfc5217SJeff Kirsher /* [RW 1] port swap mux selection. If this register equal to 0 then port
2479adfc5217SJeff Kirsher    swap is equal to SPIO pin that inputs from ifmux_serdes_swap. If 1 then
2480adfc5217SJeff Kirsher    ort swap is equal to ~nig_registers_port_swap.port_swap */
2481adfc5217SJeff Kirsher #define NIG_REG_STRAP_OVERRIDE					 0x10398
2482adfc5217SJeff Kirsher /* [RW 1] output enable for RX_XCM0 IF */
2483adfc5217SJeff Kirsher #define NIG_REG_XCM0_OUT_EN					 0x100f0
2484adfc5217SJeff Kirsher /* [RW 1] output enable for RX_XCM1 IF */
2485adfc5217SJeff Kirsher #define NIG_REG_XCM1_OUT_EN					 0x100f4
2486adfc5217SJeff Kirsher /* [RW 1] control to xgxs - remote PHY in-band MDIO */
2487adfc5217SJeff Kirsher #define NIG_REG_XGXS0_CTRL_EXTREMOTEMDIOST			 0x10348
2488adfc5217SJeff Kirsher /* [RW 5] control to xgxs - CL45 DEVAD */
2489adfc5217SJeff Kirsher #define NIG_REG_XGXS0_CTRL_MD_DEVAD				 0x1033c
2490adfc5217SJeff Kirsher /* [RW 1] control to xgxs; 0 - clause 45; 1 - clause 22 */
2491adfc5217SJeff Kirsher #define NIG_REG_XGXS0_CTRL_MD_ST				 0x10338
2492adfc5217SJeff Kirsher /* [RW 5] control to xgxs - CL22 PHY_ADD and CL45 PRTAD */
2493adfc5217SJeff Kirsher #define NIG_REG_XGXS0_CTRL_PHY_ADDR				 0x10340
2494adfc5217SJeff Kirsher /* [R 1] status from xgxs0 that inputs to interrupt logic of link10g. */
2495adfc5217SJeff Kirsher #define NIG_REG_XGXS0_STATUS_LINK10G				 0x10680
2496adfc5217SJeff Kirsher /* [R 4] status from xgxs0 that inputs to interrupt logic of link status */
2497adfc5217SJeff Kirsher #define NIG_REG_XGXS0_STATUS_LINK_STATUS			 0x10684
2498adfc5217SJeff Kirsher /* [RW 2] selection for XGXS lane of port 0 in NIG_MUX block */
2499adfc5217SJeff Kirsher #define NIG_REG_XGXS_LANE_SEL_P0				 0x102e8
2500adfc5217SJeff Kirsher /* [RW 1] selection for port0 for NIG_MUX block : 0 = SerDes; 1 = XGXS */
2501adfc5217SJeff Kirsher #define NIG_REG_XGXS_SERDES0_MODE_SEL				 0x102e0
2502adfc5217SJeff Kirsher #define NIG_STATUS_INTERRUPT_PORT0_REG_STATUS_EMAC0_MISC_MI_INT  (0x1<<0)
2503adfc5217SJeff Kirsher #define NIG_STATUS_INTERRUPT_PORT0_REG_STATUS_SERDES0_LINK_STATUS (0x1<<9)
2504adfc5217SJeff Kirsher #define NIG_STATUS_INTERRUPT_PORT0_REG_STATUS_XGXS0_LINK10G	 (0x1<<15)
2505adfc5217SJeff Kirsher #define NIG_STATUS_INTERRUPT_PORT0_REG_STATUS_XGXS0_LINK_STATUS  (0xf<<18)
2506adfc5217SJeff Kirsher #define NIG_STATUS_INTERRUPT_PORT0_REG_STATUS_XGXS0_LINK_STATUS_SIZE 18
2507adfc5217SJeff Kirsher /* [RW 31] The upper bound of the weight of COS0 in the ETS command arbiter. */
2508adfc5217SJeff Kirsher #define PBF_REG_COS0_UPPER_BOUND				 0x15c05c
2509adfc5217SJeff Kirsher /* [RW 31] The upper bound of the weight of COS0 in the ETS command arbiter
2510adfc5217SJeff Kirsher  * of port 0. */
2511adfc5217SJeff Kirsher #define PBF_REG_COS0_UPPER_BOUND_P0				 0x15c2cc
2512adfc5217SJeff Kirsher /* [RW 31] The upper bound of the weight of COS0 in the ETS command arbiter
2513adfc5217SJeff Kirsher  * of port 1. */
2514adfc5217SJeff Kirsher #define PBF_REG_COS0_UPPER_BOUND_P1				 0x15c2e4
2515adfc5217SJeff Kirsher /* [RW 31] The weight of COS0 in the ETS command arbiter. */
2516adfc5217SJeff Kirsher #define PBF_REG_COS0_WEIGHT					 0x15c054
2517adfc5217SJeff Kirsher /* [RW 31] The weight of COS0 in port 0 ETS command arbiter. */
2518adfc5217SJeff Kirsher #define PBF_REG_COS0_WEIGHT_P0					 0x15c2a8
2519adfc5217SJeff Kirsher /* [RW 31] The weight of COS0 in port 1 ETS command arbiter. */
2520adfc5217SJeff Kirsher #define PBF_REG_COS0_WEIGHT_P1					 0x15c2c0
2521adfc5217SJeff Kirsher /* [RW 31] The upper bound of the weight of COS1 in the ETS command arbiter. */
2522adfc5217SJeff Kirsher #define PBF_REG_COS1_UPPER_BOUND				 0x15c060
2523adfc5217SJeff Kirsher /* [RW 31] The weight of COS1 in the ETS command arbiter. */
2524adfc5217SJeff Kirsher #define PBF_REG_COS1_WEIGHT					 0x15c058
2525adfc5217SJeff Kirsher /* [RW 31] The weight of COS1 in port 0 ETS command arbiter. */
2526adfc5217SJeff Kirsher #define PBF_REG_COS1_WEIGHT_P0					 0x15c2ac
2527adfc5217SJeff Kirsher /* [RW 31] The weight of COS1 in port 1 ETS command arbiter. */
2528adfc5217SJeff Kirsher #define PBF_REG_COS1_WEIGHT_P1					 0x15c2c4
2529adfc5217SJeff Kirsher /* [RW 31] The weight of COS2 in port 0 ETS command arbiter. */
2530adfc5217SJeff Kirsher #define PBF_REG_COS2_WEIGHT_P0					 0x15c2b0
2531adfc5217SJeff Kirsher /* [RW 31] The weight of COS2 in port 1 ETS command arbiter. */
2532adfc5217SJeff Kirsher #define PBF_REG_COS2_WEIGHT_P1					 0x15c2c8
2533adfc5217SJeff Kirsher /* [RW 31] The weight of COS3 in port 0 ETS command arbiter. */
2534adfc5217SJeff Kirsher #define PBF_REG_COS3_WEIGHT_P0					 0x15c2b4
2535adfc5217SJeff Kirsher /* [RW 31] The weight of COS4 in port 0 ETS command arbiter. */
2536adfc5217SJeff Kirsher #define PBF_REG_COS4_WEIGHT_P0					 0x15c2b8
2537adfc5217SJeff Kirsher /* [RW 31] The weight of COS5 in port 0 ETS command arbiter. */
2538adfc5217SJeff Kirsher #define PBF_REG_COS5_WEIGHT_P0					 0x15c2bc
2539adfc5217SJeff Kirsher /* [R 11] Current credit for the LB queue in the tx port buffers in 16 byte
2540adfc5217SJeff Kirsher  * lines. */
2541adfc5217SJeff Kirsher #define PBF_REG_CREDIT_LB_Q					 0x140338
2542adfc5217SJeff Kirsher /* [R 11] Current credit for queue 0 in the tx port buffers in 16 byte
2543adfc5217SJeff Kirsher  * lines. */
2544adfc5217SJeff Kirsher #define PBF_REG_CREDIT_Q0					 0x14033c
2545adfc5217SJeff Kirsher /* [R 11] Current credit for queue 1 in the tx port buffers in 16 byte
2546adfc5217SJeff Kirsher  * lines. */
2547adfc5217SJeff Kirsher #define PBF_REG_CREDIT_Q1					 0x140340
2548adfc5217SJeff Kirsher /* [RW 1] Disable processing further tasks from port 0 (after ending the
2549adfc5217SJeff Kirsher    current task in process). */
2550adfc5217SJeff Kirsher #define PBF_REG_DISABLE_NEW_TASK_PROC_P0			 0x14005c
2551adfc5217SJeff Kirsher /* [RW 1] Disable processing further tasks from port 1 (after ending the
2552adfc5217SJeff Kirsher    current task in process). */
2553adfc5217SJeff Kirsher #define PBF_REG_DISABLE_NEW_TASK_PROC_P1			 0x140060
2554adfc5217SJeff Kirsher /* [RW 1] Disable processing further tasks from port 4 (after ending the
2555adfc5217SJeff Kirsher    current task in process). */
2556adfc5217SJeff Kirsher #define PBF_REG_DISABLE_NEW_TASK_PROC_P4			 0x14006c
2557adfc5217SJeff Kirsher #define PBF_REG_DISABLE_PF					 0x1402e8
2558adfc5217SJeff Kirsher /* [RW 18] For port 0: For each client that is subject to WFQ (the
2559adfc5217SJeff Kirsher  * corresponding bit is 1); indicates to which of the credit registers this
2560adfc5217SJeff Kirsher  * client is mapped. For clients which are not credit blocked; their mapping
2561adfc5217SJeff Kirsher  * is dont care. */
2562adfc5217SJeff Kirsher #define PBF_REG_ETS_ARB_CLIENT_CREDIT_MAP_P0			 0x15c288
2563adfc5217SJeff Kirsher /* [RW 9] For port 1: For each client that is subject to WFQ (the
2564adfc5217SJeff Kirsher  * corresponding bit is 1); indicates to which of the credit registers this
2565adfc5217SJeff Kirsher  * client is mapped. For clients which are not credit blocked; their mapping
2566adfc5217SJeff Kirsher  * is dont care. */
2567adfc5217SJeff Kirsher #define PBF_REG_ETS_ARB_CLIENT_CREDIT_MAP_P1			 0x15c28c
2568adfc5217SJeff Kirsher /* [RW 6] For port 0: Bit per client to indicate if the client competes in
2569adfc5217SJeff Kirsher  * the strict priority arbiter directly (corresponding bit = 1); or first
2570adfc5217SJeff Kirsher  * goes to the RR arbiter (corresponding bit = 0); and then competes in the
2571adfc5217SJeff Kirsher  * lowest priority in the strict-priority arbiter. */
2572adfc5217SJeff Kirsher #define PBF_REG_ETS_ARB_CLIENT_IS_STRICT_P0			 0x15c278
2573adfc5217SJeff Kirsher /* [RW 3] For port 1: Bit per client to indicate if the client competes in
2574adfc5217SJeff Kirsher  * the strict priority arbiter directly (corresponding bit = 1); or first
2575adfc5217SJeff Kirsher  * goes to the RR arbiter (corresponding bit = 0); and then competes in the
2576adfc5217SJeff Kirsher  * lowest priority in the strict-priority arbiter. */
2577adfc5217SJeff Kirsher #define PBF_REG_ETS_ARB_CLIENT_IS_STRICT_P1			 0x15c27c
2578adfc5217SJeff Kirsher /* [RW 6] For port 0: Bit per client to indicate if the client is subject to
2579adfc5217SJeff Kirsher  * WFQ credit blocking (corresponding bit = 1). */
2580adfc5217SJeff Kirsher #define PBF_REG_ETS_ARB_CLIENT_IS_SUBJECT2WFQ_P0		 0x15c280
2581adfc5217SJeff Kirsher /* [RW 3] For port 0: Bit per client to indicate if the client is subject to
2582adfc5217SJeff Kirsher  * WFQ credit blocking (corresponding bit = 1). */
2583adfc5217SJeff Kirsher #define PBF_REG_ETS_ARB_CLIENT_IS_SUBJECT2WFQ_P1		 0x15c284
2584adfc5217SJeff Kirsher /* [RW 16] For port 0: The number of strict priority arbitration slots
2585adfc5217SJeff Kirsher  * between 2 RR arbitration slots. A value of 0 means no strict priority
2586adfc5217SJeff Kirsher  * cycles; i.e. the strict-priority w/ anti-starvation arbiter is a RR
2587adfc5217SJeff Kirsher  * arbiter. */
2588adfc5217SJeff Kirsher #define PBF_REG_ETS_ARB_NUM_STRICT_ARB_SLOTS_P0			 0x15c2a0
2589adfc5217SJeff Kirsher /* [RW 16] For port 1: The number of strict priority arbitration slots
2590adfc5217SJeff Kirsher  * between 2 RR arbitration slots. A value of 0 means no strict priority
2591adfc5217SJeff Kirsher  * cycles; i.e. the strict-priority w/ anti-starvation arbiter is a RR
2592adfc5217SJeff Kirsher  * arbiter. */
2593adfc5217SJeff Kirsher #define PBF_REG_ETS_ARB_NUM_STRICT_ARB_SLOTS_P1			 0x15c2a4
2594adfc5217SJeff Kirsher /* [RW 18] For port 0: Indicates which client is connected to each priority
2595adfc5217SJeff Kirsher  * in the strict-priority arbiter. Priority 0 is the highest priority, and
2596adfc5217SJeff Kirsher  * priority 5 is the lowest; to which the RR output is connected to (this is
2597adfc5217SJeff Kirsher  * not configurable). */
2598adfc5217SJeff Kirsher #define PBF_REG_ETS_ARB_PRIORITY_CLIENT_P0			 0x15c270
2599adfc5217SJeff Kirsher /* [RW 9] For port 1: Indicates which client is connected to each priority
2600adfc5217SJeff Kirsher  * in the strict-priority arbiter. Priority 0 is the highest priority, and
2601adfc5217SJeff Kirsher  * priority 5 is the lowest; to which the RR output is connected to (this is
2602adfc5217SJeff Kirsher  * not configurable). */
2603adfc5217SJeff Kirsher #define PBF_REG_ETS_ARB_PRIORITY_CLIENT_P1			 0x15c274
2604adfc5217SJeff Kirsher /* [RW 1] Indicates that ETS is performed between the COSes in the command
2605adfc5217SJeff Kirsher  * arbiter. If reset strict priority w/ anti-starvation will be performed
2606adfc5217SJeff Kirsher  * w/o WFQ. */
2607adfc5217SJeff Kirsher #define PBF_REG_ETS_ENABLED					 0x15c050
2608adfc5217SJeff Kirsher /* [RW 6] Bit-map indicating which L2 hdrs may appear after the basic
2609adfc5217SJeff Kirsher  * Ethernet header. */
2610adfc5217SJeff Kirsher #define PBF_REG_HDRS_AFTER_BASIC				 0x15c0a8
2611adfc5217SJeff Kirsher /* [RW 6] Bit-map indicating which L2 hdrs may appear after L2 tag 0 */
2612adfc5217SJeff Kirsher #define PBF_REG_HDRS_AFTER_TAG_0				 0x15c0b8
2613adfc5217SJeff Kirsher /* [R 1] Removed for E3 B0 - Indicates which COS is conncted to the highest
2614adfc5217SJeff Kirsher  * priority in the command arbiter. */
2615adfc5217SJeff Kirsher #define PBF_REG_HIGH_PRIORITY_COS_NUM				 0x15c04c
2616adfc5217SJeff Kirsher #define PBF_REG_IF_ENABLE_REG					 0x140044
2617adfc5217SJeff Kirsher /* [RW 1] Init bit. When set the initial credits are copied to the credit
2618adfc5217SJeff Kirsher    registers (except the port credits). Should be set and then reset after
2619adfc5217SJeff Kirsher    the configuration of the block has ended. */
2620adfc5217SJeff Kirsher #define PBF_REG_INIT						 0x140000
2621adfc5217SJeff Kirsher /* [RW 11] Initial credit for the LB queue in the tx port buffers in 16 byte
2622adfc5217SJeff Kirsher  * lines. */
2623adfc5217SJeff Kirsher #define PBF_REG_INIT_CRD_LB_Q					 0x15c248
2624adfc5217SJeff Kirsher /* [RW 11] Initial credit for queue 0 in the tx port buffers in 16 byte
2625adfc5217SJeff Kirsher  * lines. */
2626adfc5217SJeff Kirsher #define PBF_REG_INIT_CRD_Q0					 0x15c230
2627adfc5217SJeff Kirsher /* [RW 11] Initial credit for queue 1 in the tx port buffers in 16 byte
2628adfc5217SJeff Kirsher  * lines. */
2629adfc5217SJeff Kirsher #define PBF_REG_INIT_CRD_Q1					 0x15c234
2630adfc5217SJeff Kirsher /* [RW 1] Init bit for port 0. When set the initial credit of port 0 is
2631adfc5217SJeff Kirsher    copied to the credit register. Should be set and then reset after the
2632adfc5217SJeff Kirsher    configuration of the port has ended. */
2633adfc5217SJeff Kirsher #define PBF_REG_INIT_P0 					 0x140004
2634adfc5217SJeff Kirsher /* [RW 1] Init bit for port 1. When set the initial credit of port 1 is
2635adfc5217SJeff Kirsher    copied to the credit register. Should be set and then reset after the
2636adfc5217SJeff Kirsher    configuration of the port has ended. */
2637adfc5217SJeff Kirsher #define PBF_REG_INIT_P1 					 0x140008
2638adfc5217SJeff Kirsher /* [RW 1] Init bit for port 4. When set the initial credit of port 4 is
2639adfc5217SJeff Kirsher    copied to the credit register. Should be set and then reset after the
2640adfc5217SJeff Kirsher    configuration of the port has ended. */
2641adfc5217SJeff Kirsher #define PBF_REG_INIT_P4 					 0x14000c
2642adfc5217SJeff Kirsher /* [R 32] Cyclic counter for the amount credits in 16 bytes lines added for
2643adfc5217SJeff Kirsher  * the LB queue. Reset upon init. */
2644adfc5217SJeff Kirsher #define PBF_REG_INTERNAL_CRD_FREED_CNT_LB_Q			 0x140354
2645adfc5217SJeff Kirsher /* [R 32] Cyclic counter for the amount credits in 16 bytes lines added for
2646adfc5217SJeff Kirsher  * queue 0. Reset upon init. */
2647adfc5217SJeff Kirsher #define PBF_REG_INTERNAL_CRD_FREED_CNT_Q0			 0x140358
2648adfc5217SJeff Kirsher /* [R 32] Cyclic counter for the amount credits in 16 bytes lines added for
2649adfc5217SJeff Kirsher  * queue 1. Reset upon init. */
2650adfc5217SJeff Kirsher #define PBF_REG_INTERNAL_CRD_FREED_CNT_Q1			 0x14035c
2651adfc5217SJeff Kirsher /* [RW 1] Enable for mac interface 0. */
2652adfc5217SJeff Kirsher #define PBF_REG_MAC_IF0_ENABLE					 0x140030
2653adfc5217SJeff Kirsher /* [RW 1] Enable for mac interface 1. */
2654adfc5217SJeff Kirsher #define PBF_REG_MAC_IF1_ENABLE					 0x140034
2655adfc5217SJeff Kirsher /* [RW 1] Enable for the loopback interface. */
2656adfc5217SJeff Kirsher #define PBF_REG_MAC_LB_ENABLE					 0x140040
2657adfc5217SJeff Kirsher /* [RW 6] Bit-map indicating which headers must appear in the packet */
2658adfc5217SJeff Kirsher #define PBF_REG_MUST_HAVE_HDRS					 0x15c0c4
2659adfc5217SJeff Kirsher /* [RW 16] The number of strict priority arbitration slots between 2 RR
2660adfc5217SJeff Kirsher  * arbitration slots. A value of 0 means no strict priority cycles; i.e. the
2661adfc5217SJeff Kirsher  * strict-priority w/ anti-starvation arbiter is a RR arbiter. */
2662adfc5217SJeff Kirsher #define PBF_REG_NUM_STRICT_ARB_SLOTS				 0x15c064
2663adfc5217SJeff Kirsher /* [RW 10] Port 0 threshold used by arbiter in 16 byte lines used when pause
2664adfc5217SJeff Kirsher    not suppoterd. */
2665adfc5217SJeff Kirsher #define PBF_REG_P0_ARB_THRSH					 0x1400e4
2666adfc5217SJeff Kirsher /* [R 11] Current credit for port 0 in the tx port buffers in 16 byte lines. */
2667adfc5217SJeff Kirsher #define PBF_REG_P0_CREDIT					 0x140200
2668adfc5217SJeff Kirsher /* [RW 11] Initial credit for port 0 in the tx port buffers in 16 byte
2669adfc5217SJeff Kirsher    lines. */
2670adfc5217SJeff Kirsher #define PBF_REG_P0_INIT_CRD					 0x1400d0
2671adfc5217SJeff Kirsher /* [R 32] Cyclic counter for the amount credits in 16 bytes lines added for
2672adfc5217SJeff Kirsher  * port 0. Reset upon init. */
2673adfc5217SJeff Kirsher #define PBF_REG_P0_INTERNAL_CRD_FREED_CNT			 0x140308
2674adfc5217SJeff Kirsher /* [R 1] Removed for E3 B0 - Indication that pause is enabled for port 0. */
2675adfc5217SJeff Kirsher #define PBF_REG_P0_PAUSE_ENABLE					 0x140014
2676adfc5217SJeff Kirsher /* [R 8] Removed for E3 B0 - Number of tasks in port 0 task queue. */
2677adfc5217SJeff Kirsher #define PBF_REG_P0_TASK_CNT					 0x140204
2678adfc5217SJeff Kirsher /* [R 32] Removed for E3 B0 - Cyclic counter for number of 8 byte lines
2679adfc5217SJeff Kirsher  * freed from the task queue of port 0. Reset upon init. */
2680adfc5217SJeff Kirsher #define PBF_REG_P0_TQ_LINES_FREED_CNT				 0x1402f0
2681adfc5217SJeff Kirsher /* [R 12] Number of 8 bytes lines occupied in the task queue of port 0. */
2682adfc5217SJeff Kirsher #define PBF_REG_P0_TQ_OCCUPANCY					 0x1402fc
2683adfc5217SJeff Kirsher /* [R 11] Removed for E3 B0 - Current credit for port 1 in the tx port
2684adfc5217SJeff Kirsher  * buffers in 16 byte lines. */
2685adfc5217SJeff Kirsher #define PBF_REG_P1_CREDIT					 0x140208
2686adfc5217SJeff Kirsher /* [R 11] Removed for E3 B0 - Initial credit for port 0 in the tx port
2687adfc5217SJeff Kirsher  * buffers in 16 byte lines. */
2688adfc5217SJeff Kirsher #define PBF_REG_P1_INIT_CRD					 0x1400d4
2689adfc5217SJeff Kirsher /* [R 32] Cyclic counter for the amount credits in 16 bytes lines added for
2690adfc5217SJeff Kirsher  * port 1. Reset upon init. */
2691adfc5217SJeff Kirsher #define PBF_REG_P1_INTERNAL_CRD_FREED_CNT			 0x14030c
2692adfc5217SJeff Kirsher /* [R 8] Removed for E3 B0 - Number of tasks in port 1 task queue. */
2693adfc5217SJeff Kirsher #define PBF_REG_P1_TASK_CNT					 0x14020c
2694adfc5217SJeff Kirsher /* [R 32] Removed for E3 B0 - Cyclic counter for number of 8 byte lines
2695adfc5217SJeff Kirsher  * freed from the task queue of port 1. Reset upon init. */
2696adfc5217SJeff Kirsher #define PBF_REG_P1_TQ_LINES_FREED_CNT				 0x1402f4
2697adfc5217SJeff Kirsher /* [R 12] Number of 8 bytes lines occupied in the task queue of port 1. */
2698adfc5217SJeff Kirsher #define PBF_REG_P1_TQ_OCCUPANCY					 0x140300
2699adfc5217SJeff Kirsher /* [R 11] Current credit for port 4 in the tx port buffers in 16 byte lines. */
2700adfc5217SJeff Kirsher #define PBF_REG_P4_CREDIT					 0x140210
2701adfc5217SJeff Kirsher /* [RW 11] Initial credit for port 4 in the tx port buffers in 16 byte
2702adfc5217SJeff Kirsher    lines. */
2703adfc5217SJeff Kirsher #define PBF_REG_P4_INIT_CRD					 0x1400e0
2704adfc5217SJeff Kirsher /* [R 32] Cyclic counter for the amount credits in 16 bytes lines added for
2705adfc5217SJeff Kirsher  * port 4. Reset upon init. */
2706adfc5217SJeff Kirsher #define PBF_REG_P4_INTERNAL_CRD_FREED_CNT			 0x140310
2707adfc5217SJeff Kirsher /* [R 8] Removed for E3 B0 - Number of tasks in port 4 task queue. */
2708adfc5217SJeff Kirsher #define PBF_REG_P4_TASK_CNT					 0x140214
2709adfc5217SJeff Kirsher /* [R 32] Removed for E3 B0 - Cyclic counter for number of 8 byte lines
2710adfc5217SJeff Kirsher  * freed from the task queue of port 4. Reset upon init. */
2711adfc5217SJeff Kirsher #define PBF_REG_P4_TQ_LINES_FREED_CNT				 0x1402f8
2712adfc5217SJeff Kirsher /* [R 12] Number of 8 bytes lines occupied in the task queue of port 4. */
2713adfc5217SJeff Kirsher #define PBF_REG_P4_TQ_OCCUPANCY					 0x140304
2714adfc5217SJeff Kirsher /* [RW 5] Interrupt mask register #0 read/write */
2715adfc5217SJeff Kirsher #define PBF_REG_PBF_INT_MASK					 0x1401d4
2716adfc5217SJeff Kirsher /* [R 5] Interrupt register #0 read */
2717adfc5217SJeff Kirsher #define PBF_REG_PBF_INT_STS					 0x1401c8
2718adfc5217SJeff Kirsher /* [RW 20] Parity mask register #0 read/write */
2719adfc5217SJeff Kirsher #define PBF_REG_PBF_PRTY_MASK					 0x1401e4
2720adfc5217SJeff Kirsher /* [RC 20] Parity register #0 read clear */
2721adfc5217SJeff Kirsher #define PBF_REG_PBF_PRTY_STS_CLR				 0x1401dc
2722adfc5217SJeff Kirsher /* [RW 16] The Ethernet type value for L2 tag 0 */
2723adfc5217SJeff Kirsher #define PBF_REG_TAG_ETHERTYPE_0					 0x15c090
2724adfc5217SJeff Kirsher /* [RW 4] The length of the info field for L2 tag 0. The length is between
2725adfc5217SJeff Kirsher  * 2B and 14B; in 2B granularity */
2726adfc5217SJeff Kirsher #define PBF_REG_TAG_LEN_0					 0x15c09c
2727adfc5217SJeff Kirsher /* [R 32] Cyclic counter for number of 8 byte lines freed from the LB task
2728adfc5217SJeff Kirsher  * queue. Reset upon init. */
2729adfc5217SJeff Kirsher #define PBF_REG_TQ_LINES_FREED_CNT_LB_Q				 0x14038c
2730adfc5217SJeff Kirsher /* [R 32] Cyclic counter for number of 8 byte lines freed from the task
2731adfc5217SJeff Kirsher  * queue 0. Reset upon init. */
2732adfc5217SJeff Kirsher #define PBF_REG_TQ_LINES_FREED_CNT_Q0				 0x140390
2733adfc5217SJeff Kirsher /* [R 32] Cyclic counter for number of 8 byte lines freed from task queue 1.
2734adfc5217SJeff Kirsher  * Reset upon init. */
2735adfc5217SJeff Kirsher #define PBF_REG_TQ_LINES_FREED_CNT_Q1				 0x140394
2736adfc5217SJeff Kirsher /* [R 13] Number of 8 bytes lines occupied in the task queue of the LB
2737adfc5217SJeff Kirsher  * queue. */
2738adfc5217SJeff Kirsher #define PBF_REG_TQ_OCCUPANCY_LB_Q				 0x1403a8
2739adfc5217SJeff Kirsher /* [R 13] Number of 8 bytes lines occupied in the task queue of queue 0. */
2740adfc5217SJeff Kirsher #define PBF_REG_TQ_OCCUPANCY_Q0					 0x1403ac
2741adfc5217SJeff Kirsher /* [R 13] Number of 8 bytes lines occupied in the task queue of queue 1. */
2742adfc5217SJeff Kirsher #define PBF_REG_TQ_OCCUPANCY_Q1					 0x1403b0
2743adfc5217SJeff Kirsher #define PB_REG_CONTROL						 0
2744adfc5217SJeff Kirsher /* [RW 2] Interrupt mask register #0 read/write */
2745adfc5217SJeff Kirsher #define PB_REG_PB_INT_MASK					 0x28
2746adfc5217SJeff Kirsher /* [R 2] Interrupt register #0 read */
2747adfc5217SJeff Kirsher #define PB_REG_PB_INT_STS					 0x1c
2748adfc5217SJeff Kirsher /* [RW 4] Parity mask register #0 read/write */
2749adfc5217SJeff Kirsher #define PB_REG_PB_PRTY_MASK					 0x38
2750adfc5217SJeff Kirsher /* [R 4] Parity register #0 read */
2751adfc5217SJeff Kirsher #define PB_REG_PB_PRTY_STS					 0x2c
2752adfc5217SJeff Kirsher /* [RC 4] Parity register #0 read clear */
2753adfc5217SJeff Kirsher #define PB_REG_PB_PRTY_STS_CLR					 0x30
2754adfc5217SJeff Kirsher #define PGLUE_B_PGLUE_B_INT_STS_REG_ADDRESS_ERROR		 (0x1<<0)
2755adfc5217SJeff Kirsher #define PGLUE_B_PGLUE_B_INT_STS_REG_CSSNOOP_FIFO_OVERFLOW	 (0x1<<8)
2756adfc5217SJeff Kirsher #define PGLUE_B_PGLUE_B_INT_STS_REG_INCORRECT_RCV_BEHAVIOR	 (0x1<<1)
2757adfc5217SJeff Kirsher #define PGLUE_B_PGLUE_B_INT_STS_REG_TCPL_ERROR_ATTN		 (0x1<<6)
2758adfc5217SJeff Kirsher #define PGLUE_B_PGLUE_B_INT_STS_REG_TCPL_IN_TWO_RCBS_ATTN	 (0x1<<7)
2759adfc5217SJeff Kirsher #define PGLUE_B_PGLUE_B_INT_STS_REG_VF_GRC_SPACE_VIOLATION_ATTN  (0x1<<4)
2760adfc5217SJeff Kirsher #define PGLUE_B_PGLUE_B_INT_STS_REG_VF_LENGTH_VIOLATION_ATTN	 (0x1<<3)
2761adfc5217SJeff Kirsher #define PGLUE_B_PGLUE_B_INT_STS_REG_VF_MSIX_BAR_VIOLATION_ATTN	 (0x1<<5)
2762adfc5217SJeff Kirsher #define PGLUE_B_PGLUE_B_INT_STS_REG_WAS_ERROR_ATTN		 (0x1<<2)
2763adfc5217SJeff Kirsher /* [R 8] Config space A attention dirty bits. Each bit indicates that the
2764adfc5217SJeff Kirsher  * corresponding PF generates config space A attention. Set by PXP. Reset by
2765adfc5217SJeff Kirsher  * MCP writing 1 to icfg_space_a_request_clr. Note: register contains bits
2766adfc5217SJeff Kirsher  * from both paths. */
2767adfc5217SJeff Kirsher #define PGLUE_B_REG_CFG_SPACE_A_REQUEST			 0x9010
2768adfc5217SJeff Kirsher /* [R 8] Config space B attention dirty bits. Each bit indicates that the
2769adfc5217SJeff Kirsher  * corresponding PF generates config space B attention. Set by PXP. Reset by
2770adfc5217SJeff Kirsher  * MCP writing 1 to icfg_space_b_request_clr. Note: register contains bits
2771adfc5217SJeff Kirsher  * from both paths. */
2772adfc5217SJeff Kirsher #define PGLUE_B_REG_CFG_SPACE_B_REQUEST			 0x9014
2773adfc5217SJeff Kirsher /* [RW 1] Type A PF enable inbound interrupt table for CSDM. 0 - disable; 1
2774adfc5217SJeff Kirsher  * - enable. */
2775adfc5217SJeff Kirsher #define PGLUE_B_REG_CSDM_INB_INT_A_PF_ENABLE			 0x9194
2776adfc5217SJeff Kirsher /* [RW 18] Type B VF inbound interrupt table for CSDM: bits[17:9]-mask;
2777adfc5217SJeff Kirsher  * its[8:0]-address. Bits [1:0] must be zero (DW resolution address). */
2778adfc5217SJeff Kirsher #define PGLUE_B_REG_CSDM_INB_INT_B_VF				 0x916c
2779adfc5217SJeff Kirsher /* [RW 1] Type B VF enable inbound interrupt table for CSDM. 0 - disable; 1
2780adfc5217SJeff Kirsher  * - enable. */
2781adfc5217SJeff Kirsher #define PGLUE_B_REG_CSDM_INB_INT_B_VF_ENABLE			 0x919c
2782adfc5217SJeff Kirsher /* [RW 16] Start offset of CSDM zone A (queue zone) in the internal RAM */
2783adfc5217SJeff Kirsher #define PGLUE_B_REG_CSDM_START_OFFSET_A			 0x9100
2784adfc5217SJeff Kirsher /* [RW 16] Start offset of CSDM zone B (legacy zone) in the internal RAM */
2785adfc5217SJeff Kirsher #define PGLUE_B_REG_CSDM_START_OFFSET_B			 0x9108
2786adfc5217SJeff Kirsher /* [RW 5] VF Shift of CSDM zone B (legacy zone) in the internal RAM */
2787adfc5217SJeff Kirsher #define PGLUE_B_REG_CSDM_VF_SHIFT_B				 0x9110
2788adfc5217SJeff Kirsher /* [RW 1] 0 - Zone A size is 136x32B; 1 - Zone A size is 152x32B. */
2789adfc5217SJeff Kirsher #define PGLUE_B_REG_CSDM_ZONE_A_SIZE_PF			 0x91ac
2790adfc5217SJeff Kirsher /* [R 8] FLR request attention dirty bits for PFs 0 to 7. Each bit indicates
2791adfc5217SJeff Kirsher  * that the FLR register of the corresponding PF was set. Set by PXP. Reset
2792adfc5217SJeff Kirsher  * by MCP writing 1 to flr_request_pf_7_0_clr. Note: register contains bits
2793adfc5217SJeff Kirsher  * from both paths. */
2794adfc5217SJeff Kirsher #define PGLUE_B_REG_FLR_REQUEST_PF_7_0				 0x9028
2795adfc5217SJeff Kirsher /* [W 8] FLR request attention dirty bits clear for PFs 0 to 7. MCP writes 1
2796adfc5217SJeff Kirsher  * to a bit in this register in order to clear the corresponding bit in
2797adfc5217SJeff Kirsher  * flr_request_pf_7_0 register. Note: register contains bits from both
2798adfc5217SJeff Kirsher  * paths. */
2799adfc5217SJeff Kirsher #define PGLUE_B_REG_FLR_REQUEST_PF_7_0_CLR			 0x9418
2800adfc5217SJeff Kirsher /* [R 32] FLR request attention dirty bits for VFs 96 to 127. Each bit
2801adfc5217SJeff Kirsher  * indicates that the FLR register of the corresponding VF was set. Set by
2802adfc5217SJeff Kirsher  * PXP. Reset by MCP writing 1 to flr_request_vf_127_96_clr. */
2803adfc5217SJeff Kirsher #define PGLUE_B_REG_FLR_REQUEST_VF_127_96			 0x9024
2804adfc5217SJeff Kirsher /* [R 32] FLR request attention dirty bits for VFs 0 to 31. Each bit
2805adfc5217SJeff Kirsher  * indicates that the FLR register of the corresponding VF was set. Set by
2806adfc5217SJeff Kirsher  * PXP. Reset by MCP writing 1 to flr_request_vf_31_0_clr. */
2807adfc5217SJeff Kirsher #define PGLUE_B_REG_FLR_REQUEST_VF_31_0			 0x9018
2808adfc5217SJeff Kirsher /* [R 32] FLR request attention dirty bits for VFs 32 to 63. Each bit
2809adfc5217SJeff Kirsher  * indicates that the FLR register of the corresponding VF was set. Set by
2810adfc5217SJeff Kirsher  * PXP. Reset by MCP writing 1 to flr_request_vf_63_32_clr. */
2811adfc5217SJeff Kirsher #define PGLUE_B_REG_FLR_REQUEST_VF_63_32			 0x901c
2812adfc5217SJeff Kirsher /* [R 32] FLR request attention dirty bits for VFs 64 to 95. Each bit
2813adfc5217SJeff Kirsher  * indicates that the FLR register of the corresponding VF was set. Set by
2814adfc5217SJeff Kirsher  * PXP. Reset by MCP writing 1 to flr_request_vf_95_64_clr. */
2815adfc5217SJeff Kirsher #define PGLUE_B_REG_FLR_REQUEST_VF_95_64			 0x9020
2816adfc5217SJeff Kirsher /* [R 8] Each bit indicates an incorrect behavior in user RX interface. Bit
2817adfc5217SJeff Kirsher  * 0 - Target memory read arrived with a correctable error. Bit 1 - Target
2818adfc5217SJeff Kirsher  * memory read arrived with an uncorrectable error. Bit 2 - Configuration RW
2819adfc5217SJeff Kirsher  * arrived with a correctable error. Bit 3 - Configuration RW arrived with
2820adfc5217SJeff Kirsher  * an uncorrectable error. Bit 4 - Completion with Configuration Request
2821adfc5217SJeff Kirsher  * Retry Status. Bit 5 - Expansion ROM access received with a write request.
2822adfc5217SJeff Kirsher  * Bit 6 - Completion with pcie_rx_err of 0000; CMPL_STATUS of non-zero; and
2823adfc5217SJeff Kirsher  * pcie_rx_last not asserted. Bit 7 - Completion with pcie_rx_err of 1010;
2824adfc5217SJeff Kirsher  * and pcie_rx_last not asserted. */
2825adfc5217SJeff Kirsher #define PGLUE_B_REG_INCORRECT_RCV_DETAILS			 0x9068
2826adfc5217SJeff Kirsher #define PGLUE_B_REG_INTERNAL_PFID_ENABLE_MASTER		 0x942c
2827adfc5217SJeff Kirsher #define PGLUE_B_REG_INTERNAL_PFID_ENABLE_TARGET_READ		 0x9430
2828adfc5217SJeff Kirsher #define PGLUE_B_REG_INTERNAL_PFID_ENABLE_TARGET_WRITE		 0x9434
2829adfc5217SJeff Kirsher #define PGLUE_B_REG_INTERNAL_VFID_ENABLE			 0x9438
2830adfc5217SJeff Kirsher /* [R 9] Interrupt register #0 read */
2831adfc5217SJeff Kirsher #define PGLUE_B_REG_PGLUE_B_INT_STS				 0x9298
2832adfc5217SJeff Kirsher /* [RC 9] Interrupt register #0 read clear */
2833adfc5217SJeff Kirsher #define PGLUE_B_REG_PGLUE_B_INT_STS_CLR			 0x929c
2834adfc5217SJeff Kirsher /* [RW 2] Parity mask register #0 read/write */
2835adfc5217SJeff Kirsher #define PGLUE_B_REG_PGLUE_B_PRTY_MASK				 0x92b4
2836adfc5217SJeff Kirsher /* [R 2] Parity register #0 read */
2837adfc5217SJeff Kirsher #define PGLUE_B_REG_PGLUE_B_PRTY_STS				 0x92a8
2838adfc5217SJeff Kirsher /* [RC 2] Parity register #0 read clear */
2839adfc5217SJeff Kirsher #define PGLUE_B_REG_PGLUE_B_PRTY_STS_CLR			 0x92ac
2840adfc5217SJeff Kirsher /* [R 13] Details of first request received with error. [2:0] - PFID. [3] -
2841adfc5217SJeff Kirsher  * VF_VALID. [9:4] - VFID. [11:10] - Error Code - 0 - Indicates Completion
2842adfc5217SJeff Kirsher  * Timeout of a User Tx non-posted request. 1 - unsupported request. 2 -
2843adfc5217SJeff Kirsher  * completer abort. 3 - Illegal value for this field. [12] valid - indicates
2844adfc5217SJeff Kirsher  * if there was a completion error since the last time this register was
2845adfc5217SJeff Kirsher  * cleared. */
2846adfc5217SJeff Kirsher #define PGLUE_B_REG_RX_ERR_DETAILS				 0x9080
2847adfc5217SJeff Kirsher /* [R 18] Details of first ATS Translation Completion request received with
2848adfc5217SJeff Kirsher  * error. [2:0] - PFID. [3] - VF_VALID. [9:4] - VFID. [11:10] - Error Code -
2849adfc5217SJeff Kirsher  * 0 - Indicates Completion Timeout of a User Tx non-posted request. 1 -
2850adfc5217SJeff Kirsher  * unsupported request. 2 - completer abort. 3 - Illegal value for this
2851adfc5217SJeff Kirsher  * field. [16:12] - ATC OTB EntryID. [17] valid - indicates if there was a
2852adfc5217SJeff Kirsher  * completion error since the last time this register was cleared. */
2853adfc5217SJeff Kirsher #define PGLUE_B_REG_RX_TCPL_ERR_DETAILS			 0x9084
2854adfc5217SJeff Kirsher /* [W 8] Debug only - Shadow BME bits clear for PFs 0 to 7. MCP writes 1 to
2855adfc5217SJeff Kirsher  * a bit in this register in order to clear the corresponding bit in
2856adfc5217SJeff Kirsher  * shadow_bme_pf_7_0 register. MCP should never use this unless a
2857adfc5217SJeff Kirsher  * work-around is needed. Note: register contains bits from both paths. */
2858adfc5217SJeff Kirsher #define PGLUE_B_REG_SHADOW_BME_PF_7_0_CLR			 0x9458
2859adfc5217SJeff Kirsher /* [R 8] SR IOV disabled attention dirty bits. Each bit indicates that the
2860adfc5217SJeff Kirsher  * VF enable register of the corresponding PF is written to 0 and was
2861adfc5217SJeff Kirsher  * previously 1. Set by PXP. Reset by MCP writing 1 to
2862adfc5217SJeff Kirsher  * sr_iov_disabled_request_clr. Note: register contains bits from both
2863adfc5217SJeff Kirsher  * paths. */
2864adfc5217SJeff Kirsher #define PGLUE_B_REG_SR_IOV_DISABLED_REQUEST			 0x9030
2865adfc5217SJeff Kirsher /* [R 32] Indicates the status of tags 32-63. 0 - tags is used - read
2866adfc5217SJeff Kirsher  * completion did not return yet. 1 - tag is unused. Same functionality as
2867adfc5217SJeff Kirsher  * pxp2_registers_pgl_exp_rom_data2 for tags 0-31. */
2868adfc5217SJeff Kirsher #define PGLUE_B_REG_TAGS_63_32					 0x9244
2869adfc5217SJeff Kirsher /* [RW 1] Type A PF enable inbound interrupt table for TSDM. 0 - disable; 1
2870adfc5217SJeff Kirsher  * - enable. */
2871adfc5217SJeff Kirsher #define PGLUE_B_REG_TSDM_INB_INT_A_PF_ENABLE			 0x9170
2872adfc5217SJeff Kirsher /* [RW 16] Start offset of TSDM zone A (queue zone) in the internal RAM */
2873adfc5217SJeff Kirsher #define PGLUE_B_REG_TSDM_START_OFFSET_A			 0x90c4
2874adfc5217SJeff Kirsher /* [RW 16] Start offset of TSDM zone B (legacy zone) in the internal RAM */
2875adfc5217SJeff Kirsher #define PGLUE_B_REG_TSDM_START_OFFSET_B			 0x90cc
2876adfc5217SJeff Kirsher /* [RW 5] VF Shift of TSDM zone B (legacy zone) in the internal RAM */
2877adfc5217SJeff Kirsher #define PGLUE_B_REG_TSDM_VF_SHIFT_B				 0x90d4
2878adfc5217SJeff Kirsher /* [RW 1] 0 - Zone A size is 136x32B; 1 - Zone A size is 152x32B. */
2879adfc5217SJeff Kirsher #define PGLUE_B_REG_TSDM_ZONE_A_SIZE_PF			 0x91a0
2880adfc5217SJeff Kirsher /* [R 32] Address [31:0] of first read request not submitted due to error */
2881adfc5217SJeff Kirsher #define PGLUE_B_REG_TX_ERR_RD_ADD_31_0				 0x9098
2882adfc5217SJeff Kirsher /* [R 32] Address [63:32] of first read request not submitted due to error */
2883adfc5217SJeff Kirsher #define PGLUE_B_REG_TX_ERR_RD_ADD_63_32			 0x909c
2884adfc5217SJeff Kirsher /* [R 31] Details of first read request not submitted due to error. [4:0]
2885adfc5217SJeff Kirsher  * VQID. [5] TREQ. 1 - Indicates the request is a Translation Request.
2886adfc5217SJeff Kirsher  * [20:8] - Length in bytes. [23:21] - PFID. [24] - VF_VALID. [30:25] -
2887adfc5217SJeff Kirsher  * VFID. */
2888adfc5217SJeff Kirsher #define PGLUE_B_REG_TX_ERR_RD_DETAILS				 0x90a0
2889adfc5217SJeff Kirsher /* [R 26] Details of first read request not submitted due to error. [15:0]
2890adfc5217SJeff Kirsher  * Request ID. [19:16] client ID. [20] - last SR. [24:21] - Error type -
2891adfc5217SJeff Kirsher  * [21] - Indicates was_error was set; [22] - Indicates BME was cleared;
2892adfc5217SJeff Kirsher  * [23] - Indicates FID_enable was cleared; [24] - Indicates VF with parent
2893adfc5217SJeff Kirsher  * PF FLR_request or IOV_disable_request dirty bit is set. [25] valid -
2894adfc5217SJeff Kirsher  * indicates if there was a request not submitted due to error since the
2895adfc5217SJeff Kirsher  * last time this register was cleared. */
2896adfc5217SJeff Kirsher #define PGLUE_B_REG_TX_ERR_RD_DETAILS2				 0x90a4
2897adfc5217SJeff Kirsher /* [R 32] Address [31:0] of first write request not submitted due to error */
2898adfc5217SJeff Kirsher #define PGLUE_B_REG_TX_ERR_WR_ADD_31_0				 0x9088
2899adfc5217SJeff Kirsher /* [R 32] Address [63:32] of first write request not submitted due to error */
2900adfc5217SJeff Kirsher #define PGLUE_B_REG_TX_ERR_WR_ADD_63_32			 0x908c
2901adfc5217SJeff Kirsher /* [R 31] Details of first write request not submitted due to error. [4:0]
2902adfc5217SJeff Kirsher  * VQID. [20:8] - Length in bytes. [23:21] - PFID. [24] - VF_VALID. [30:25]
2903adfc5217SJeff Kirsher  * - VFID. */
2904adfc5217SJeff Kirsher #define PGLUE_B_REG_TX_ERR_WR_DETAILS				 0x9090
2905adfc5217SJeff Kirsher /* [R 26] Details of first write request not submitted due to error. [15:0]
2906adfc5217SJeff Kirsher  * Request ID. [19:16] client ID. [20] - last SR. [24:21] - Error type -
2907adfc5217SJeff Kirsher  * [21] - Indicates was_error was set; [22] - Indicates BME was cleared;
2908adfc5217SJeff Kirsher  * [23] - Indicates FID_enable was cleared; [24] - Indicates VF with parent
2909adfc5217SJeff Kirsher  * PF FLR_request or IOV_disable_request dirty bit is set. [25] valid -
2910adfc5217SJeff Kirsher  * indicates if there was a request not submitted due to error since the
2911adfc5217SJeff Kirsher  * last time this register was cleared. */
2912adfc5217SJeff Kirsher #define PGLUE_B_REG_TX_ERR_WR_DETAILS2				 0x9094
2913adfc5217SJeff Kirsher /* [RW 10] Type A PF/VF inbound interrupt table for USDM: bits[9:5]-mask;
2914adfc5217SJeff Kirsher  * its[4:0]-address relative to start_offset_a. Bits [1:0] can have any
2915adfc5217SJeff Kirsher  * value (Byte resolution address). */
2916adfc5217SJeff Kirsher #define PGLUE_B_REG_USDM_INB_INT_A_0				 0x9128
2917adfc5217SJeff Kirsher #define PGLUE_B_REG_USDM_INB_INT_A_1				 0x912c
2918adfc5217SJeff Kirsher #define PGLUE_B_REG_USDM_INB_INT_A_2				 0x9130
2919adfc5217SJeff Kirsher #define PGLUE_B_REG_USDM_INB_INT_A_3				 0x9134
2920adfc5217SJeff Kirsher #define PGLUE_B_REG_USDM_INB_INT_A_4				 0x9138
2921adfc5217SJeff Kirsher #define PGLUE_B_REG_USDM_INB_INT_A_5				 0x913c
2922adfc5217SJeff Kirsher #define PGLUE_B_REG_USDM_INB_INT_A_6				 0x9140
2923adfc5217SJeff Kirsher /* [RW 1] Type A PF enable inbound interrupt table for USDM. 0 - disable; 1
2924adfc5217SJeff Kirsher  * - enable. */
2925adfc5217SJeff Kirsher #define PGLUE_B_REG_USDM_INB_INT_A_PF_ENABLE			 0x917c
2926adfc5217SJeff Kirsher /* [RW 1] Type A VF enable inbound interrupt table for USDM. 0 - disable; 1
2927adfc5217SJeff Kirsher  * - enable. */
2928adfc5217SJeff Kirsher #define PGLUE_B_REG_USDM_INB_INT_A_VF_ENABLE			 0x9180
2929adfc5217SJeff Kirsher /* [RW 1] Type B VF enable inbound interrupt table for USDM. 0 - disable; 1
2930adfc5217SJeff Kirsher  * - enable. */
2931adfc5217SJeff Kirsher #define PGLUE_B_REG_USDM_INB_INT_B_VF_ENABLE			 0x9184
2932adfc5217SJeff Kirsher /* [RW 16] Start offset of USDM zone A (queue zone) in the internal RAM */
2933adfc5217SJeff Kirsher #define PGLUE_B_REG_USDM_START_OFFSET_A			 0x90d8
2934adfc5217SJeff Kirsher /* [RW 16] Start offset of USDM zone B (legacy zone) in the internal RAM */
2935adfc5217SJeff Kirsher #define PGLUE_B_REG_USDM_START_OFFSET_B			 0x90e0
2936adfc5217SJeff Kirsher /* [RW 5] VF Shift of USDM zone B (legacy zone) in the internal RAM */
2937adfc5217SJeff Kirsher #define PGLUE_B_REG_USDM_VF_SHIFT_B				 0x90e8
2938adfc5217SJeff Kirsher /* [RW 1] 0 - Zone A size is 136x32B; 1 - Zone A size is 152x32B. */
2939adfc5217SJeff Kirsher #define PGLUE_B_REG_USDM_ZONE_A_SIZE_PF			 0x91a4
2940adfc5217SJeff Kirsher /* [R 26] Details of first target VF request accessing VF GRC space that
2941adfc5217SJeff Kirsher  * failed permission check. [14:0] Address. [15] w_nr: 0 - Read; 1 - Write.
2942adfc5217SJeff Kirsher  * [21:16] VFID. [24:22] - PFID. [25] valid - indicates if there was a
2943adfc5217SJeff Kirsher  * request accessing VF GRC space that failed permission check since the
2944adfc5217SJeff Kirsher  * last time this register was cleared. Permission checks are: function
2945adfc5217SJeff Kirsher  * permission; R/W permission; address range permission. */
2946adfc5217SJeff Kirsher #define PGLUE_B_REG_VF_GRC_SPACE_VIOLATION_DETAILS		 0x9234
2947adfc5217SJeff Kirsher /* [R 31] Details of first target VF request with length violation (too many
2948adfc5217SJeff Kirsher  * DWs) accessing BAR0. [12:0] Address in DWs (bits [14:2] of byte address).
2949adfc5217SJeff Kirsher  * [14:13] BAR. [20:15] VFID. [23:21] - PFID. [29:24] - Length in DWs. [30]
2950adfc5217SJeff Kirsher  * valid - indicates if there was a request with length violation since the
2951adfc5217SJeff Kirsher  * last time this register was cleared. Length violations: length of more
2952adfc5217SJeff Kirsher  * than 2DWs; length of 2DWs and address not QW aligned; window is GRC and
2953adfc5217SJeff Kirsher  * length is more than 1 DW. */
2954adfc5217SJeff Kirsher #define PGLUE_B_REG_VF_LENGTH_VIOLATION_DETAILS		 0x9230
2955adfc5217SJeff Kirsher /* [R 8] Was_error indication dirty bits for PFs 0 to 7. Each bit indicates
2956adfc5217SJeff Kirsher  * that there was a completion with uncorrectable error for the
2957adfc5217SJeff Kirsher  * corresponding PF. Set by PXP. Reset by MCP writing 1 to
2958adfc5217SJeff Kirsher  * was_error_pf_7_0_clr. */
2959adfc5217SJeff Kirsher #define PGLUE_B_REG_WAS_ERROR_PF_7_0				 0x907c
2960adfc5217SJeff Kirsher /* [W 8] Was_error indication dirty bits clear for PFs 0 to 7. MCP writes 1
2961adfc5217SJeff Kirsher  * to a bit in this register in order to clear the corresponding bit in
2962adfc5217SJeff Kirsher  * flr_request_pf_7_0 register. */
2963adfc5217SJeff Kirsher #define PGLUE_B_REG_WAS_ERROR_PF_7_0_CLR			 0x9470
2964adfc5217SJeff Kirsher /* [R 32] Was_error indication dirty bits for VFs 96 to 127. Each bit
2965adfc5217SJeff Kirsher  * indicates that there was a completion with uncorrectable error for the
2966adfc5217SJeff Kirsher  * corresponding VF. Set by PXP. Reset by MCP writing 1 to
2967adfc5217SJeff Kirsher  * was_error_vf_127_96_clr. */
2968adfc5217SJeff Kirsher #define PGLUE_B_REG_WAS_ERROR_VF_127_96			 0x9078
2969adfc5217SJeff Kirsher /* [W 32] Was_error indication dirty bits clear for VFs 96 to 127. MCP
2970adfc5217SJeff Kirsher  * writes 1 to a bit in this register in order to clear the corresponding
2971adfc5217SJeff Kirsher  * bit in was_error_vf_127_96 register. */
2972adfc5217SJeff Kirsher #define PGLUE_B_REG_WAS_ERROR_VF_127_96_CLR			 0x9474
2973adfc5217SJeff Kirsher /* [R 32] Was_error indication dirty bits for VFs 0 to 31. Each bit
2974adfc5217SJeff Kirsher  * indicates that there was a completion with uncorrectable error for the
2975adfc5217SJeff Kirsher  * corresponding VF. Set by PXP. Reset by MCP writing 1 to
2976adfc5217SJeff Kirsher  * was_error_vf_31_0_clr. */
2977adfc5217SJeff Kirsher #define PGLUE_B_REG_WAS_ERROR_VF_31_0				 0x906c
2978adfc5217SJeff Kirsher /* [W 32] Was_error indication dirty bits clear for VFs 0 to 31. MCP writes
2979adfc5217SJeff Kirsher  * 1 to a bit in this register in order to clear the corresponding bit in
2980adfc5217SJeff Kirsher  * was_error_vf_31_0 register. */
2981adfc5217SJeff Kirsher #define PGLUE_B_REG_WAS_ERROR_VF_31_0_CLR			 0x9478
2982adfc5217SJeff Kirsher /* [R 32] Was_error indication dirty bits for VFs 32 to 63. Each bit
2983adfc5217SJeff Kirsher  * indicates that there was a completion with uncorrectable error for the
2984adfc5217SJeff Kirsher  * corresponding VF. Set by PXP. Reset by MCP writing 1 to
2985adfc5217SJeff Kirsher  * was_error_vf_63_32_clr. */
2986adfc5217SJeff Kirsher #define PGLUE_B_REG_WAS_ERROR_VF_63_32				 0x9070
2987adfc5217SJeff Kirsher /* [W 32] Was_error indication dirty bits clear for VFs 32 to 63. MCP writes
2988adfc5217SJeff Kirsher  * 1 to a bit in this register in order to clear the corresponding bit in
2989adfc5217SJeff Kirsher  * was_error_vf_63_32 register. */
2990adfc5217SJeff Kirsher #define PGLUE_B_REG_WAS_ERROR_VF_63_32_CLR			 0x947c
2991adfc5217SJeff Kirsher /* [R 32] Was_error indication dirty bits for VFs 64 to 95. Each bit
2992adfc5217SJeff Kirsher  * indicates that there was a completion with uncorrectable error for the
2993adfc5217SJeff Kirsher  * corresponding VF. Set by PXP. Reset by MCP writing 1 to
2994adfc5217SJeff Kirsher  * was_error_vf_95_64_clr. */
2995adfc5217SJeff Kirsher #define PGLUE_B_REG_WAS_ERROR_VF_95_64				 0x9074
2996adfc5217SJeff Kirsher /* [W 32] Was_error indication dirty bits clear for VFs 64 to 95. MCP writes
2997adfc5217SJeff Kirsher  * 1 to a bit in this register in order to clear the corresponding bit in
2998adfc5217SJeff Kirsher  * was_error_vf_95_64 register. */
2999adfc5217SJeff Kirsher #define PGLUE_B_REG_WAS_ERROR_VF_95_64_CLR			 0x9480
3000adfc5217SJeff Kirsher /* [RW 1] Type A PF enable inbound interrupt table for XSDM. 0 - disable; 1
3001adfc5217SJeff Kirsher  * - enable. */
3002adfc5217SJeff Kirsher #define PGLUE_B_REG_XSDM_INB_INT_A_PF_ENABLE			 0x9188
3003adfc5217SJeff Kirsher /* [RW 16] Start offset of XSDM zone A (queue zone) in the internal RAM */
3004adfc5217SJeff Kirsher #define PGLUE_B_REG_XSDM_START_OFFSET_A			 0x90ec
3005adfc5217SJeff Kirsher /* [RW 16] Start offset of XSDM zone B (legacy zone) in the internal RAM */
3006adfc5217SJeff Kirsher #define PGLUE_B_REG_XSDM_START_OFFSET_B			 0x90f4
3007adfc5217SJeff Kirsher /* [RW 5] VF Shift of XSDM zone B (legacy zone) in the internal RAM */
3008adfc5217SJeff Kirsher #define PGLUE_B_REG_XSDM_VF_SHIFT_B				 0x90fc
3009adfc5217SJeff Kirsher /* [RW 1] 0 - Zone A size is 136x32B; 1 - Zone A size is 152x32B. */
3010adfc5217SJeff Kirsher #define PGLUE_B_REG_XSDM_ZONE_A_SIZE_PF			 0x91a8
3011adfc5217SJeff Kirsher #define PRS_REG_A_PRSU_20					 0x40134
3012adfc5217SJeff Kirsher /* [R 8] debug only: CFC load request current credit. Transaction based. */
3013adfc5217SJeff Kirsher #define PRS_REG_CFC_LD_CURRENT_CREDIT				 0x40164
3014adfc5217SJeff Kirsher /* [R 8] debug only: CFC search request current credit. Transaction based. */
3015adfc5217SJeff Kirsher #define PRS_REG_CFC_SEARCH_CURRENT_CREDIT			 0x40168
3016adfc5217SJeff Kirsher /* [RW 6] The initial credit for the search message to the CFC interface.
3017adfc5217SJeff Kirsher    Credit is transaction based. */
3018adfc5217SJeff Kirsher #define PRS_REG_CFC_SEARCH_INITIAL_CREDIT			 0x4011c
3019adfc5217SJeff Kirsher /* [RW 24] CID for port 0 if no match */
3020adfc5217SJeff Kirsher #define PRS_REG_CID_PORT_0					 0x400fc
3021adfc5217SJeff Kirsher /* [RW 32] The CM header for flush message where 'load existed' bit in CFC
3022adfc5217SJeff Kirsher    load response is reset and packet type is 0. Used in packet start message
3023adfc5217SJeff Kirsher    to TCM. */
3024adfc5217SJeff Kirsher #define PRS_REG_CM_HDR_FLUSH_LOAD_TYPE_0			 0x400dc
3025adfc5217SJeff Kirsher #define PRS_REG_CM_HDR_FLUSH_LOAD_TYPE_1			 0x400e0
3026adfc5217SJeff Kirsher #define PRS_REG_CM_HDR_FLUSH_LOAD_TYPE_2			 0x400e4
3027adfc5217SJeff Kirsher #define PRS_REG_CM_HDR_FLUSH_LOAD_TYPE_3			 0x400e8
3028adfc5217SJeff Kirsher #define PRS_REG_CM_HDR_FLUSH_LOAD_TYPE_4			 0x400ec
3029adfc5217SJeff Kirsher #define PRS_REG_CM_HDR_FLUSH_LOAD_TYPE_5			 0x400f0
3030adfc5217SJeff Kirsher /* [RW 32] The CM header for flush message where 'load existed' bit in CFC
3031adfc5217SJeff Kirsher    load response is set and packet type is 0. Used in packet start message
3032adfc5217SJeff Kirsher    to TCM. */
3033adfc5217SJeff Kirsher #define PRS_REG_CM_HDR_FLUSH_NO_LOAD_TYPE_0			 0x400bc
3034adfc5217SJeff Kirsher #define PRS_REG_CM_HDR_FLUSH_NO_LOAD_TYPE_1			 0x400c0
3035adfc5217SJeff Kirsher #define PRS_REG_CM_HDR_FLUSH_NO_LOAD_TYPE_2			 0x400c4
3036adfc5217SJeff Kirsher #define PRS_REG_CM_HDR_FLUSH_NO_LOAD_TYPE_3			 0x400c8
3037adfc5217SJeff Kirsher #define PRS_REG_CM_HDR_FLUSH_NO_LOAD_TYPE_4			 0x400cc
3038adfc5217SJeff Kirsher #define PRS_REG_CM_HDR_FLUSH_NO_LOAD_TYPE_5			 0x400d0
3039adfc5217SJeff Kirsher /* [RW 32] The CM header for a match and packet type 1 for loopback port.
3040adfc5217SJeff Kirsher    Used in packet start message to TCM. */
3041adfc5217SJeff Kirsher #define PRS_REG_CM_HDR_LOOPBACK_TYPE_1				 0x4009c
3042adfc5217SJeff Kirsher #define PRS_REG_CM_HDR_LOOPBACK_TYPE_2				 0x400a0
3043adfc5217SJeff Kirsher #define PRS_REG_CM_HDR_LOOPBACK_TYPE_3				 0x400a4
3044adfc5217SJeff Kirsher #define PRS_REG_CM_HDR_LOOPBACK_TYPE_4				 0x400a8
3045adfc5217SJeff Kirsher /* [RW 32] The CM header for a match and packet type 0. Used in packet start
3046adfc5217SJeff Kirsher    message to TCM. */
3047adfc5217SJeff Kirsher #define PRS_REG_CM_HDR_TYPE_0					 0x40078
3048adfc5217SJeff Kirsher #define PRS_REG_CM_HDR_TYPE_1					 0x4007c
3049adfc5217SJeff Kirsher #define PRS_REG_CM_HDR_TYPE_2					 0x40080
3050adfc5217SJeff Kirsher #define PRS_REG_CM_HDR_TYPE_3					 0x40084
3051adfc5217SJeff Kirsher #define PRS_REG_CM_HDR_TYPE_4					 0x40088
3052adfc5217SJeff Kirsher /* [RW 32] The CM header in case there was not a match on the connection */
3053adfc5217SJeff Kirsher #define PRS_REG_CM_NO_MATCH_HDR 				 0x400b8
3054adfc5217SJeff Kirsher /* [RW 1] Indicates if in e1hov mode. 0=non-e1hov mode; 1=e1hov mode. */
3055adfc5217SJeff Kirsher #define PRS_REG_E1HOV_MODE					 0x401c8
3056adfc5217SJeff Kirsher /* [RW 8] The 8-bit event ID for a match and packet type 1. Used in packet
3057adfc5217SJeff Kirsher    start message to TCM. */
3058adfc5217SJeff Kirsher #define PRS_REG_EVENT_ID_1					 0x40054
3059adfc5217SJeff Kirsher #define PRS_REG_EVENT_ID_2					 0x40058
3060adfc5217SJeff Kirsher #define PRS_REG_EVENT_ID_3					 0x4005c
3061adfc5217SJeff Kirsher /* [RW 16] The Ethernet type value for FCoE */
3062adfc5217SJeff Kirsher #define PRS_REG_FCOE_TYPE					 0x401d0
3063adfc5217SJeff Kirsher /* [RW 8] Context region for flush packet with packet type 0. Used in CFC
3064adfc5217SJeff Kirsher    load request message. */
3065adfc5217SJeff Kirsher #define PRS_REG_FLUSH_REGIONS_TYPE_0				 0x40004
3066adfc5217SJeff Kirsher #define PRS_REG_FLUSH_REGIONS_TYPE_1				 0x40008
3067adfc5217SJeff Kirsher #define PRS_REG_FLUSH_REGIONS_TYPE_2				 0x4000c
3068adfc5217SJeff Kirsher #define PRS_REG_FLUSH_REGIONS_TYPE_3				 0x40010
3069adfc5217SJeff Kirsher #define PRS_REG_FLUSH_REGIONS_TYPE_4				 0x40014
3070adfc5217SJeff Kirsher #define PRS_REG_FLUSH_REGIONS_TYPE_5				 0x40018
3071adfc5217SJeff Kirsher #define PRS_REG_FLUSH_REGIONS_TYPE_6				 0x4001c
3072adfc5217SJeff Kirsher #define PRS_REG_FLUSH_REGIONS_TYPE_7				 0x40020
3073adfc5217SJeff Kirsher /* [RW 6] Bit-map indicating which L2 hdrs may appear after the basic
3074adfc5217SJeff Kirsher  * Ethernet header. */
3075adfc5217SJeff Kirsher #define PRS_REG_HDRS_AFTER_BASIC				 0x40238
3076adfc5217SJeff Kirsher /* [RW 6] Bit-map indicating which L2 hdrs may appear after the basic
3077adfc5217SJeff Kirsher  * Ethernet header for port 0 packets. */
3078adfc5217SJeff Kirsher #define PRS_REG_HDRS_AFTER_BASIC_PORT_0				 0x40270
3079adfc5217SJeff Kirsher #define PRS_REG_HDRS_AFTER_BASIC_PORT_1				 0x40290
3080adfc5217SJeff Kirsher /* [R 6] Bit-map indicating which L2 hdrs may appear after L2 tag 0 */
3081adfc5217SJeff Kirsher #define PRS_REG_HDRS_AFTER_TAG_0				 0x40248
3082adfc5217SJeff Kirsher /* [RW 6] Bit-map indicating which L2 hdrs may appear after L2 tag 0 for
3083adfc5217SJeff Kirsher  * port 0 packets */
3084adfc5217SJeff Kirsher #define PRS_REG_HDRS_AFTER_TAG_0_PORT_0				 0x40280
3085adfc5217SJeff Kirsher #define PRS_REG_HDRS_AFTER_TAG_0_PORT_1				 0x402a0
3086adfc5217SJeff Kirsher /* [RW 4] The increment value to send in the CFC load request message */
3087adfc5217SJeff Kirsher #define PRS_REG_INC_VALUE					 0x40048
3088adfc5217SJeff Kirsher /* [RW 6] Bit-map indicating which headers must appear in the packet */
3089adfc5217SJeff Kirsher #define PRS_REG_MUST_HAVE_HDRS					 0x40254
3090adfc5217SJeff Kirsher /* [RW 6] Bit-map indicating which headers must appear in the packet for
3091adfc5217SJeff Kirsher  * port 0 packets */
3092adfc5217SJeff Kirsher #define PRS_REG_MUST_HAVE_HDRS_PORT_0				 0x4028c
3093adfc5217SJeff Kirsher #define PRS_REG_MUST_HAVE_HDRS_PORT_1				 0x402ac
3094adfc5217SJeff Kirsher #define PRS_REG_NIC_MODE					 0x40138
3095adfc5217SJeff Kirsher /* [RW 8] The 8-bit event ID for cases where there is no match on the
3096adfc5217SJeff Kirsher    connection. Used in packet start message to TCM. */
3097adfc5217SJeff Kirsher #define PRS_REG_NO_MATCH_EVENT_ID				 0x40070
3098adfc5217SJeff Kirsher /* [ST 24] The number of input CFC flush packets */
3099adfc5217SJeff Kirsher #define PRS_REG_NUM_OF_CFC_FLUSH_MESSAGES			 0x40128
3100adfc5217SJeff Kirsher /* [ST 32] The number of cycles the Parser halted its operation since it
3101adfc5217SJeff Kirsher    could not allocate the next serial number */
3102adfc5217SJeff Kirsher #define PRS_REG_NUM_OF_DEAD_CYCLES				 0x40130
3103adfc5217SJeff Kirsher /* [ST 24] The number of input packets */
3104adfc5217SJeff Kirsher #define PRS_REG_NUM_OF_PACKETS					 0x40124
3105adfc5217SJeff Kirsher /* [ST 24] The number of input transparent flush packets */
3106adfc5217SJeff Kirsher #define PRS_REG_NUM_OF_TRANSPARENT_FLUSH_MESSAGES		 0x4012c
3107adfc5217SJeff Kirsher /* [RW 8] Context region for received Ethernet packet with a match and
3108adfc5217SJeff Kirsher    packet type 0. Used in CFC load request message */
3109adfc5217SJeff Kirsher #define PRS_REG_PACKET_REGIONS_TYPE_0				 0x40028
3110adfc5217SJeff Kirsher #define PRS_REG_PACKET_REGIONS_TYPE_1				 0x4002c
3111adfc5217SJeff Kirsher #define PRS_REG_PACKET_REGIONS_TYPE_2				 0x40030
3112adfc5217SJeff Kirsher #define PRS_REG_PACKET_REGIONS_TYPE_3				 0x40034
3113adfc5217SJeff Kirsher #define PRS_REG_PACKET_REGIONS_TYPE_4				 0x40038
3114adfc5217SJeff Kirsher #define PRS_REG_PACKET_REGIONS_TYPE_5				 0x4003c
3115adfc5217SJeff Kirsher #define PRS_REG_PACKET_REGIONS_TYPE_6				 0x40040
3116adfc5217SJeff Kirsher #define PRS_REG_PACKET_REGIONS_TYPE_7				 0x40044
3117adfc5217SJeff Kirsher /* [R 2] debug only: Number of pending requests for CAC on port 0. */
3118adfc5217SJeff Kirsher #define PRS_REG_PENDING_BRB_CAC0_RQ				 0x40174
3119adfc5217SJeff Kirsher /* [R 2] debug only: Number of pending requests for header parsing. */
3120adfc5217SJeff Kirsher #define PRS_REG_PENDING_BRB_PRS_RQ				 0x40170
3121adfc5217SJeff Kirsher /* [R 1] Interrupt register #0 read */
3122adfc5217SJeff Kirsher #define PRS_REG_PRS_INT_STS					 0x40188
3123adfc5217SJeff Kirsher /* [RW 8] Parity mask register #0 read/write */
3124adfc5217SJeff Kirsher #define PRS_REG_PRS_PRTY_MASK					 0x401a4
3125adfc5217SJeff Kirsher /* [R 8] Parity register #0 read */
3126adfc5217SJeff Kirsher #define PRS_REG_PRS_PRTY_STS					 0x40198
3127adfc5217SJeff Kirsher /* [RC 8] Parity register #0 read clear */
3128adfc5217SJeff Kirsher #define PRS_REG_PRS_PRTY_STS_CLR				 0x4019c
3129adfc5217SJeff Kirsher /* [RW 8] Context region for pure acknowledge packets. Used in CFC load
3130adfc5217SJeff Kirsher    request message */
3131adfc5217SJeff Kirsher #define PRS_REG_PURE_REGIONS					 0x40024
3132adfc5217SJeff Kirsher /* [R 32] debug only: Serial number status lsb 32 bits. '1' indicates this
3133adfc5217SJeff Kirsher    serail number was released by SDM but cannot be used because a previous
3134adfc5217SJeff Kirsher    serial number was not released. */
3135adfc5217SJeff Kirsher #define PRS_REG_SERIAL_NUM_STATUS_LSB				 0x40154
3136adfc5217SJeff Kirsher /* [R 32] debug only: Serial number status msb 32 bits. '1' indicates this
3137adfc5217SJeff Kirsher    serail number was released by SDM but cannot be used because a previous
3138adfc5217SJeff Kirsher    serial number was not released. */
3139adfc5217SJeff Kirsher #define PRS_REG_SERIAL_NUM_STATUS_MSB				 0x40158
3140adfc5217SJeff Kirsher /* [R 4] debug only: SRC current credit. Transaction based. */
3141adfc5217SJeff Kirsher #define PRS_REG_SRC_CURRENT_CREDIT				 0x4016c
3142adfc5217SJeff Kirsher /* [RW 16] The Ethernet type value for L2 tag 0 */
3143adfc5217SJeff Kirsher #define PRS_REG_TAG_ETHERTYPE_0					 0x401d4
3144adfc5217SJeff Kirsher /* [RW 4] The length of the info field for L2 tag 0. The length is between
3145adfc5217SJeff Kirsher  * 2B and 14B; in 2B granularity */
3146adfc5217SJeff Kirsher #define PRS_REG_TAG_LEN_0					 0x4022c
3147adfc5217SJeff Kirsher /* [R 8] debug only: TCM current credit. Cycle based. */
3148adfc5217SJeff Kirsher #define PRS_REG_TCM_CURRENT_CREDIT				 0x40160
3149adfc5217SJeff Kirsher /* [R 8] debug only: TSDM current credit. Transaction based. */
3150adfc5217SJeff Kirsher #define PRS_REG_TSDM_CURRENT_CREDIT				 0x4015c
3151adfc5217SJeff Kirsher #define PXP2_PXP2_INT_MASK_0_REG_PGL_CPL_AFT			 (0x1<<19)
3152adfc5217SJeff Kirsher #define PXP2_PXP2_INT_MASK_0_REG_PGL_CPL_OF			 (0x1<<20)
3153adfc5217SJeff Kirsher #define PXP2_PXP2_INT_MASK_0_REG_PGL_PCIE_ATTN			 (0x1<<22)
3154adfc5217SJeff Kirsher #define PXP2_PXP2_INT_MASK_0_REG_PGL_READ_BLOCKED		 (0x1<<23)
3155adfc5217SJeff Kirsher #define PXP2_PXP2_INT_MASK_0_REG_PGL_WRITE_BLOCKED		 (0x1<<24)
3156adfc5217SJeff Kirsher #define PXP2_PXP2_INT_STS_0_REG_WR_PGLUE_EOP_ERROR		 (0x1<<7)
3157adfc5217SJeff Kirsher #define PXP2_PXP2_INT_STS_CLR_0_REG_WR_PGLUE_EOP_ERROR		 (0x1<<7)
3158adfc5217SJeff Kirsher /* [R 6] Debug only: Number of used entries in the data FIFO */
3159adfc5217SJeff Kirsher #define PXP2_REG_HST_DATA_FIFO_STATUS				 0x12047c
3160adfc5217SJeff Kirsher /* [R 7] Debug only: Number of used entries in the header FIFO */
3161adfc5217SJeff Kirsher #define PXP2_REG_HST_HEADER_FIFO_STATUS				 0x120478
3162adfc5217SJeff Kirsher #define PXP2_REG_PGL_ADDR_88_F0					 0x120534
3163823dcd25SDavid S. Miller /* [R 32] GRC address for configuration access to PCIE config address 0x88.
3164823dcd25SDavid S. Miller  * any write to this PCIE address will cause a GRC write access to the
3165823dcd25SDavid S. Miller  * address that's in t this register */
3166823dcd25SDavid S. Miller #define PXP2_REG_PGL_ADDR_88_F1					 0x120544
3167adfc5217SJeff Kirsher #define PXP2_REG_PGL_ADDR_8C_F0					 0x120538
3168823dcd25SDavid S. Miller /* [R 32] GRC address for configuration access to PCIE config address 0x8c.
3169823dcd25SDavid S. Miller  * any write to this PCIE address will cause a GRC write access to the
3170823dcd25SDavid S. Miller  * address that's in t this register */
3171823dcd25SDavid S. Miller #define PXP2_REG_PGL_ADDR_8C_F1					 0x120548
3172adfc5217SJeff Kirsher #define PXP2_REG_PGL_ADDR_90_F0					 0x12053c
3173823dcd25SDavid S. Miller /* [R 32] GRC address for configuration access to PCIE config address 0x90.
3174823dcd25SDavid S. Miller  * any write to this PCIE address will cause a GRC write access to the
3175823dcd25SDavid S. Miller  * address that's in t this register */
3176823dcd25SDavid S. Miller #define PXP2_REG_PGL_ADDR_90_F1					 0x12054c
3177adfc5217SJeff Kirsher #define PXP2_REG_PGL_ADDR_94_F0					 0x120540
3178823dcd25SDavid S. Miller /* [R 32] GRC address for configuration access to PCIE config address 0x94.
3179823dcd25SDavid S. Miller  * any write to this PCIE address will cause a GRC write access to the
3180823dcd25SDavid S. Miller  * address that's in t this register */
3181823dcd25SDavid S. Miller #define PXP2_REG_PGL_ADDR_94_F1					 0x120550
3182adfc5217SJeff Kirsher #define PXP2_REG_PGL_CONTROL0					 0x120490
3183adfc5217SJeff Kirsher #define PXP2_REG_PGL_CONTROL1					 0x120514
3184adfc5217SJeff Kirsher #define PXP2_REG_PGL_DEBUG					 0x120520
3185adfc5217SJeff Kirsher /* [RW 32] third dword data of expansion rom request. this register is
3186adfc5217SJeff Kirsher    special. reading from it provides a vector outstanding read requests. if
3187adfc5217SJeff Kirsher    a bit is zero it means that a read request on the corresponding tag did
3188adfc5217SJeff Kirsher    not finish yet (not all completions have arrived for it) */
3189adfc5217SJeff Kirsher #define PXP2_REG_PGL_EXP_ROM2					 0x120808
3190adfc5217SJeff Kirsher /* [RW 32] Inbound interrupt table for CSDM: bits[31:16]-mask;
3191adfc5217SJeff Kirsher    its[15:0]-address */
3192adfc5217SJeff Kirsher #define PXP2_REG_PGL_INT_CSDM_0 				 0x1204f4
3193adfc5217SJeff Kirsher #define PXP2_REG_PGL_INT_CSDM_1 				 0x1204f8
3194adfc5217SJeff Kirsher #define PXP2_REG_PGL_INT_CSDM_2 				 0x1204fc
3195adfc5217SJeff Kirsher #define PXP2_REG_PGL_INT_CSDM_3 				 0x120500
3196adfc5217SJeff Kirsher #define PXP2_REG_PGL_INT_CSDM_4 				 0x120504
3197adfc5217SJeff Kirsher #define PXP2_REG_PGL_INT_CSDM_5 				 0x120508
3198adfc5217SJeff Kirsher #define PXP2_REG_PGL_INT_CSDM_6 				 0x12050c
3199adfc5217SJeff Kirsher #define PXP2_REG_PGL_INT_CSDM_7 				 0x120510
3200adfc5217SJeff Kirsher /* [RW 32] Inbound interrupt table for TSDM: bits[31:16]-mask;
3201adfc5217SJeff Kirsher    its[15:0]-address */
3202adfc5217SJeff Kirsher #define PXP2_REG_PGL_INT_TSDM_0 				 0x120494
3203adfc5217SJeff Kirsher #define PXP2_REG_PGL_INT_TSDM_1 				 0x120498
3204adfc5217SJeff Kirsher #define PXP2_REG_PGL_INT_TSDM_2 				 0x12049c
3205adfc5217SJeff Kirsher #define PXP2_REG_PGL_INT_TSDM_3 				 0x1204a0
3206adfc5217SJeff Kirsher #define PXP2_REG_PGL_INT_TSDM_4 				 0x1204a4
3207adfc5217SJeff Kirsher #define PXP2_REG_PGL_INT_TSDM_5 				 0x1204a8
3208adfc5217SJeff Kirsher #define PXP2_REG_PGL_INT_TSDM_6 				 0x1204ac
3209adfc5217SJeff Kirsher #define PXP2_REG_PGL_INT_TSDM_7 				 0x1204b0
3210adfc5217SJeff Kirsher /* [RW 32] Inbound interrupt table for USDM: bits[31:16]-mask;
3211adfc5217SJeff Kirsher    its[15:0]-address */
3212adfc5217SJeff Kirsher #define PXP2_REG_PGL_INT_USDM_0 				 0x1204b4
3213adfc5217SJeff Kirsher #define PXP2_REG_PGL_INT_USDM_1 				 0x1204b8
3214adfc5217SJeff Kirsher #define PXP2_REG_PGL_INT_USDM_2 				 0x1204bc
3215adfc5217SJeff Kirsher #define PXP2_REG_PGL_INT_USDM_3 				 0x1204c0
3216adfc5217SJeff Kirsher #define PXP2_REG_PGL_INT_USDM_4 				 0x1204c4
3217adfc5217SJeff Kirsher #define PXP2_REG_PGL_INT_USDM_5 				 0x1204c8
3218adfc5217SJeff Kirsher #define PXP2_REG_PGL_INT_USDM_6 				 0x1204cc
3219adfc5217SJeff Kirsher #define PXP2_REG_PGL_INT_USDM_7 				 0x1204d0
3220adfc5217SJeff Kirsher /* [RW 32] Inbound interrupt table for XSDM: bits[31:16]-mask;
3221adfc5217SJeff Kirsher    its[15:0]-address */
3222adfc5217SJeff Kirsher #define PXP2_REG_PGL_INT_XSDM_0 				 0x1204d4
3223adfc5217SJeff Kirsher #define PXP2_REG_PGL_INT_XSDM_1 				 0x1204d8
3224adfc5217SJeff Kirsher #define PXP2_REG_PGL_INT_XSDM_2 				 0x1204dc
3225adfc5217SJeff Kirsher #define PXP2_REG_PGL_INT_XSDM_3 				 0x1204e0
3226adfc5217SJeff Kirsher #define PXP2_REG_PGL_INT_XSDM_4 				 0x1204e4
3227adfc5217SJeff Kirsher #define PXP2_REG_PGL_INT_XSDM_5 				 0x1204e8
3228adfc5217SJeff Kirsher #define PXP2_REG_PGL_INT_XSDM_6 				 0x1204ec
3229adfc5217SJeff Kirsher #define PXP2_REG_PGL_INT_XSDM_7 				 0x1204f0
3230adfc5217SJeff Kirsher /* [RW 3] this field allows one function to pretend being another function
3231adfc5217SJeff Kirsher    when accessing any BAR mapped resource within the device. the value of
3232adfc5217SJeff Kirsher    the field is the number of the function that will be accessed
3233adfc5217SJeff Kirsher    effectively. after software write to this bit it must read it in order to
3234adfc5217SJeff Kirsher    know that the new value is updated */
3235adfc5217SJeff Kirsher #define PXP2_REG_PGL_PRETEND_FUNC_F0				 0x120674
3236adfc5217SJeff Kirsher #define PXP2_REG_PGL_PRETEND_FUNC_F1				 0x120678
3237adfc5217SJeff Kirsher #define PXP2_REG_PGL_PRETEND_FUNC_F2				 0x12067c
3238adfc5217SJeff Kirsher #define PXP2_REG_PGL_PRETEND_FUNC_F3				 0x120680
3239adfc5217SJeff Kirsher #define PXP2_REG_PGL_PRETEND_FUNC_F4				 0x120684
3240adfc5217SJeff Kirsher #define PXP2_REG_PGL_PRETEND_FUNC_F5				 0x120688
3241adfc5217SJeff Kirsher #define PXP2_REG_PGL_PRETEND_FUNC_F6				 0x12068c
3242adfc5217SJeff Kirsher #define PXP2_REG_PGL_PRETEND_FUNC_F7				 0x120690
3243adfc5217SJeff Kirsher /* [R 1] this bit indicates that a read request was blocked because of
3244adfc5217SJeff Kirsher    bus_master_en was deasserted */
3245adfc5217SJeff Kirsher #define PXP2_REG_PGL_READ_BLOCKED				 0x120568
3246adfc5217SJeff Kirsher #define PXP2_REG_PGL_TAGS_LIMIT 				 0x1205a8
3247adfc5217SJeff Kirsher /* [R 18] debug only */
3248adfc5217SJeff Kirsher #define PXP2_REG_PGL_TXW_CDTS					 0x12052c
3249adfc5217SJeff Kirsher /* [R 1] this bit indicates that a write request was blocked because of
3250adfc5217SJeff Kirsher    bus_master_en was deasserted */
3251adfc5217SJeff Kirsher #define PXP2_REG_PGL_WRITE_BLOCKED				 0x120564
3252adfc5217SJeff Kirsher #define PXP2_REG_PSWRQ_BW_ADD1					 0x1201c0
3253adfc5217SJeff Kirsher #define PXP2_REG_PSWRQ_BW_ADD10 				 0x1201e4
3254adfc5217SJeff Kirsher #define PXP2_REG_PSWRQ_BW_ADD11 				 0x1201e8
3255adfc5217SJeff Kirsher #define PXP2_REG_PSWRQ_BW_ADD2					 0x1201c4
3256adfc5217SJeff Kirsher #define PXP2_REG_PSWRQ_BW_ADD28 				 0x120228
3257adfc5217SJeff Kirsher #define PXP2_REG_PSWRQ_BW_ADD3					 0x1201c8
3258adfc5217SJeff Kirsher #define PXP2_REG_PSWRQ_BW_ADD6					 0x1201d4
3259adfc5217SJeff Kirsher #define PXP2_REG_PSWRQ_BW_ADD7					 0x1201d8
3260adfc5217SJeff Kirsher #define PXP2_REG_PSWRQ_BW_ADD8					 0x1201dc
3261adfc5217SJeff Kirsher #define PXP2_REG_PSWRQ_BW_ADD9					 0x1201e0
3262adfc5217SJeff Kirsher #define PXP2_REG_PSWRQ_BW_CREDIT				 0x12032c
3263adfc5217SJeff Kirsher #define PXP2_REG_PSWRQ_BW_L1					 0x1202b0
3264adfc5217SJeff Kirsher #define PXP2_REG_PSWRQ_BW_L10					 0x1202d4
3265adfc5217SJeff Kirsher #define PXP2_REG_PSWRQ_BW_L11					 0x1202d8
3266adfc5217SJeff Kirsher #define PXP2_REG_PSWRQ_BW_L2					 0x1202b4
3267adfc5217SJeff Kirsher #define PXP2_REG_PSWRQ_BW_L28					 0x120318
3268adfc5217SJeff Kirsher #define PXP2_REG_PSWRQ_BW_L3					 0x1202b8
3269adfc5217SJeff Kirsher #define PXP2_REG_PSWRQ_BW_L6					 0x1202c4
3270adfc5217SJeff Kirsher #define PXP2_REG_PSWRQ_BW_L7					 0x1202c8
3271adfc5217SJeff Kirsher #define PXP2_REG_PSWRQ_BW_L8					 0x1202cc
3272adfc5217SJeff Kirsher #define PXP2_REG_PSWRQ_BW_L9					 0x1202d0
3273adfc5217SJeff Kirsher #define PXP2_REG_PSWRQ_BW_RD					 0x120324
3274adfc5217SJeff Kirsher #define PXP2_REG_PSWRQ_BW_UB1					 0x120238
3275adfc5217SJeff Kirsher #define PXP2_REG_PSWRQ_BW_UB10					 0x12025c
3276adfc5217SJeff Kirsher #define PXP2_REG_PSWRQ_BW_UB11					 0x120260
3277adfc5217SJeff Kirsher #define PXP2_REG_PSWRQ_BW_UB2					 0x12023c
3278adfc5217SJeff Kirsher #define PXP2_REG_PSWRQ_BW_UB28					 0x1202a0
3279adfc5217SJeff Kirsher #define PXP2_REG_PSWRQ_BW_UB3					 0x120240
3280adfc5217SJeff Kirsher #define PXP2_REG_PSWRQ_BW_UB6					 0x12024c
3281adfc5217SJeff Kirsher #define PXP2_REG_PSWRQ_BW_UB7					 0x120250
3282adfc5217SJeff Kirsher #define PXP2_REG_PSWRQ_BW_UB8					 0x120254
3283adfc5217SJeff Kirsher #define PXP2_REG_PSWRQ_BW_UB9					 0x120258
3284adfc5217SJeff Kirsher #define PXP2_REG_PSWRQ_BW_WR					 0x120328
3285adfc5217SJeff Kirsher #define PXP2_REG_PSWRQ_CDU0_L2P 				 0x120000
3286adfc5217SJeff Kirsher #define PXP2_REG_PSWRQ_QM0_L2P					 0x120038
3287adfc5217SJeff Kirsher #define PXP2_REG_PSWRQ_SRC0_L2P 				 0x120054
3288adfc5217SJeff Kirsher #define PXP2_REG_PSWRQ_TM0_L2P					 0x12001c
3289adfc5217SJeff Kirsher #define PXP2_REG_PSWRQ_TSDM0_L2P				 0x1200e0
3290adfc5217SJeff Kirsher /* [RW 32] Interrupt mask register #0 read/write */
3291adfc5217SJeff Kirsher #define PXP2_REG_PXP2_INT_MASK_0				 0x120578
3292adfc5217SJeff Kirsher /* [R 32] Interrupt register #0 read */
3293adfc5217SJeff Kirsher #define PXP2_REG_PXP2_INT_STS_0 				 0x12056c
3294adfc5217SJeff Kirsher #define PXP2_REG_PXP2_INT_STS_1 				 0x120608
3295adfc5217SJeff Kirsher /* [RC 32] Interrupt register #0 read clear */
3296adfc5217SJeff Kirsher #define PXP2_REG_PXP2_INT_STS_CLR_0				 0x120570
3297adfc5217SJeff Kirsher /* [RW 32] Parity mask register #0 read/write */
3298adfc5217SJeff Kirsher #define PXP2_REG_PXP2_PRTY_MASK_0				 0x120588
3299adfc5217SJeff Kirsher #define PXP2_REG_PXP2_PRTY_MASK_1				 0x120598
3300adfc5217SJeff Kirsher /* [R 32] Parity register #0 read */
3301adfc5217SJeff Kirsher #define PXP2_REG_PXP2_PRTY_STS_0				 0x12057c
3302adfc5217SJeff Kirsher #define PXP2_REG_PXP2_PRTY_STS_1				 0x12058c
3303adfc5217SJeff Kirsher /* [RC 32] Parity register #0 read clear */
3304adfc5217SJeff Kirsher #define PXP2_REG_PXP2_PRTY_STS_CLR_0				 0x120580
3305adfc5217SJeff Kirsher #define PXP2_REG_PXP2_PRTY_STS_CLR_1				 0x120590
3306adfc5217SJeff Kirsher /* [R 1] Debug only: The 'almost full' indication from each fifo (gives
3307adfc5217SJeff Kirsher    indication about backpressure) */
3308adfc5217SJeff Kirsher #define PXP2_REG_RD_ALMOST_FULL_0				 0x120424
3309adfc5217SJeff Kirsher /* [R 8] Debug only: The blocks counter - number of unused block ids */
3310adfc5217SJeff Kirsher #define PXP2_REG_RD_BLK_CNT					 0x120418
3311adfc5217SJeff Kirsher /* [RW 8] Debug only: Total number of available blocks in Tetris Buffer.
3312adfc5217SJeff Kirsher    Must be bigger than 6. Normally should not be changed. */
3313adfc5217SJeff Kirsher #define PXP2_REG_RD_BLK_NUM_CFG 				 0x12040c
3314adfc5217SJeff Kirsher /* [RW 2] CDU byte swapping mode configuration for master read requests */
3315adfc5217SJeff Kirsher #define PXP2_REG_RD_CDURD_SWAP_MODE				 0x120404
3316adfc5217SJeff Kirsher /* [RW 1] When '1'; inputs to the PSWRD block are ignored */
3317adfc5217SJeff Kirsher #define PXP2_REG_RD_DISABLE_INPUTS				 0x120374
3318adfc5217SJeff Kirsher /* [R 1] PSWRD internal memories initialization is done */
3319adfc5217SJeff Kirsher #define PXP2_REG_RD_INIT_DONE					 0x120370
3320adfc5217SJeff Kirsher /* [RW 8] The maximum number of blocks in Tetris Buffer that can be
3321adfc5217SJeff Kirsher    allocated for vq10 */
3322adfc5217SJeff Kirsher #define PXP2_REG_RD_MAX_BLKS_VQ10				 0x1203a0
3323adfc5217SJeff Kirsher /* [RW 8] The maximum number of blocks in Tetris Buffer that can be
3324adfc5217SJeff Kirsher    allocated for vq11 */
3325adfc5217SJeff Kirsher #define PXP2_REG_RD_MAX_BLKS_VQ11				 0x1203a4
3326adfc5217SJeff Kirsher /* [RW 8] The maximum number of blocks in Tetris Buffer that can be
3327adfc5217SJeff Kirsher    allocated for vq17 */
3328adfc5217SJeff Kirsher #define PXP2_REG_RD_MAX_BLKS_VQ17				 0x1203bc
3329adfc5217SJeff Kirsher /* [RW 8] The maximum number of blocks in Tetris Buffer that can be
3330adfc5217SJeff Kirsher    allocated for vq18 */
3331adfc5217SJeff Kirsher #define PXP2_REG_RD_MAX_BLKS_VQ18				 0x1203c0
3332adfc5217SJeff Kirsher /* [RW 8] The maximum number of blocks in Tetris Buffer that can be
3333adfc5217SJeff Kirsher    allocated for vq19 */
3334adfc5217SJeff Kirsher #define PXP2_REG_RD_MAX_BLKS_VQ19				 0x1203c4
3335adfc5217SJeff Kirsher /* [RW 8] The maximum number of blocks in Tetris Buffer that can be
3336adfc5217SJeff Kirsher    allocated for vq22 */
3337adfc5217SJeff Kirsher #define PXP2_REG_RD_MAX_BLKS_VQ22				 0x1203d0
3338adfc5217SJeff Kirsher /* [RW 8] The maximum number of blocks in Tetris Buffer that can be
3339adfc5217SJeff Kirsher    allocated for vq25 */
3340adfc5217SJeff Kirsher #define PXP2_REG_RD_MAX_BLKS_VQ25				 0x1203dc
3341adfc5217SJeff Kirsher /* [RW 8] The maximum number of blocks in Tetris Buffer that can be
3342adfc5217SJeff Kirsher    allocated for vq6 */
3343adfc5217SJeff Kirsher #define PXP2_REG_RD_MAX_BLKS_VQ6				 0x120390
3344adfc5217SJeff Kirsher /* [RW 8] The maximum number of blocks in Tetris Buffer that can be
3345adfc5217SJeff Kirsher    allocated for vq9 */
3346adfc5217SJeff Kirsher #define PXP2_REG_RD_MAX_BLKS_VQ9				 0x12039c
3347adfc5217SJeff Kirsher /* [RW 2] PBF byte swapping mode configuration for master read requests */
3348adfc5217SJeff Kirsher #define PXP2_REG_RD_PBF_SWAP_MODE				 0x1203f4
3349adfc5217SJeff Kirsher /* [R 1] Debug only: Indication if delivery ports are idle */
3350adfc5217SJeff Kirsher #define PXP2_REG_RD_PORT_IS_IDLE_0				 0x12041c
3351adfc5217SJeff Kirsher #define PXP2_REG_RD_PORT_IS_IDLE_1				 0x120420
3352adfc5217SJeff Kirsher /* [RW 2] QM byte swapping mode configuration for master read requests */
3353adfc5217SJeff Kirsher #define PXP2_REG_RD_QM_SWAP_MODE				 0x1203f8
3354adfc5217SJeff Kirsher /* [R 7] Debug only: The SR counter - number of unused sub request ids */
3355adfc5217SJeff Kirsher #define PXP2_REG_RD_SR_CNT					 0x120414
3356adfc5217SJeff Kirsher /* [RW 2] SRC byte swapping mode configuration for master read requests */
3357adfc5217SJeff Kirsher #define PXP2_REG_RD_SRC_SWAP_MODE				 0x120400
3358adfc5217SJeff Kirsher /* [RW 7] Debug only: Total number of available PCI read sub-requests. Must
3359adfc5217SJeff Kirsher    be bigger than 1. Normally should not be changed. */
3360adfc5217SJeff Kirsher #define PXP2_REG_RD_SR_NUM_CFG					 0x120408
3361adfc5217SJeff Kirsher /* [RW 1] Signals the PSWRD block to start initializing internal memories */
3362adfc5217SJeff Kirsher #define PXP2_REG_RD_START_INIT					 0x12036c
3363adfc5217SJeff Kirsher /* [RW 2] TM byte swapping mode configuration for master read requests */
3364adfc5217SJeff Kirsher #define PXP2_REG_RD_TM_SWAP_MODE				 0x1203fc
3365adfc5217SJeff Kirsher /* [RW 10] Bandwidth addition to VQ0 write requests */
3366adfc5217SJeff Kirsher #define PXP2_REG_RQ_BW_RD_ADD0					 0x1201bc
3367adfc5217SJeff Kirsher /* [RW 10] Bandwidth addition to VQ12 read requests */
3368adfc5217SJeff Kirsher #define PXP2_REG_RQ_BW_RD_ADD12 				 0x1201ec
3369adfc5217SJeff Kirsher /* [RW 10] Bandwidth addition to VQ13 read requests */
3370adfc5217SJeff Kirsher #define PXP2_REG_RQ_BW_RD_ADD13 				 0x1201f0
3371adfc5217SJeff Kirsher /* [RW 10] Bandwidth addition to VQ14 read requests */
3372adfc5217SJeff Kirsher #define PXP2_REG_RQ_BW_RD_ADD14 				 0x1201f4
3373adfc5217SJeff Kirsher /* [RW 10] Bandwidth addition to VQ15 read requests */
3374adfc5217SJeff Kirsher #define PXP2_REG_RQ_BW_RD_ADD15 				 0x1201f8
3375adfc5217SJeff Kirsher /* [RW 10] Bandwidth addition to VQ16 read requests */
3376adfc5217SJeff Kirsher #define PXP2_REG_RQ_BW_RD_ADD16 				 0x1201fc
3377adfc5217SJeff Kirsher /* [RW 10] Bandwidth addition to VQ17 read requests */
3378adfc5217SJeff Kirsher #define PXP2_REG_RQ_BW_RD_ADD17 				 0x120200
3379adfc5217SJeff Kirsher /* [RW 10] Bandwidth addition to VQ18 read requests */
3380adfc5217SJeff Kirsher #define PXP2_REG_RQ_BW_RD_ADD18 				 0x120204
3381adfc5217SJeff Kirsher /* [RW 10] Bandwidth addition to VQ19 read requests */
3382adfc5217SJeff Kirsher #define PXP2_REG_RQ_BW_RD_ADD19 				 0x120208
3383adfc5217SJeff Kirsher /* [RW 10] Bandwidth addition to VQ20 read requests */
3384adfc5217SJeff Kirsher #define PXP2_REG_RQ_BW_RD_ADD20 				 0x12020c
3385adfc5217SJeff Kirsher /* [RW 10] Bandwidth addition to VQ22 read requests */
3386adfc5217SJeff Kirsher #define PXP2_REG_RQ_BW_RD_ADD22 				 0x120210
3387adfc5217SJeff Kirsher /* [RW 10] Bandwidth addition to VQ23 read requests */
3388adfc5217SJeff Kirsher #define PXP2_REG_RQ_BW_RD_ADD23 				 0x120214
3389adfc5217SJeff Kirsher /* [RW 10] Bandwidth addition to VQ24 read requests */
3390adfc5217SJeff Kirsher #define PXP2_REG_RQ_BW_RD_ADD24 				 0x120218
3391adfc5217SJeff Kirsher /* [RW 10] Bandwidth addition to VQ25 read requests */
3392adfc5217SJeff Kirsher #define PXP2_REG_RQ_BW_RD_ADD25 				 0x12021c
3393adfc5217SJeff Kirsher /* [RW 10] Bandwidth addition to VQ26 read requests */
3394adfc5217SJeff Kirsher #define PXP2_REG_RQ_BW_RD_ADD26 				 0x120220
3395adfc5217SJeff Kirsher /* [RW 10] Bandwidth addition to VQ27 read requests */
3396adfc5217SJeff Kirsher #define PXP2_REG_RQ_BW_RD_ADD27 				 0x120224
3397adfc5217SJeff Kirsher /* [RW 10] Bandwidth addition to VQ4 read requests */
3398adfc5217SJeff Kirsher #define PXP2_REG_RQ_BW_RD_ADD4					 0x1201cc
3399adfc5217SJeff Kirsher /* [RW 10] Bandwidth addition to VQ5 read requests */
3400adfc5217SJeff Kirsher #define PXP2_REG_RQ_BW_RD_ADD5					 0x1201d0
3401adfc5217SJeff Kirsher /* [RW 10] Bandwidth Typical L for VQ0 Read requests */
3402adfc5217SJeff Kirsher #define PXP2_REG_RQ_BW_RD_L0					 0x1202ac
3403adfc5217SJeff Kirsher /* [RW 10] Bandwidth Typical L for VQ12 Read requests */
3404adfc5217SJeff Kirsher #define PXP2_REG_RQ_BW_RD_L12					 0x1202dc
3405adfc5217SJeff Kirsher /* [RW 10] Bandwidth Typical L for VQ13 Read requests */
3406adfc5217SJeff Kirsher #define PXP2_REG_RQ_BW_RD_L13					 0x1202e0
3407adfc5217SJeff Kirsher /* [RW 10] Bandwidth Typical L for VQ14 Read requests */
3408adfc5217SJeff Kirsher #define PXP2_REG_RQ_BW_RD_L14					 0x1202e4
3409adfc5217SJeff Kirsher /* [RW 10] Bandwidth Typical L for VQ15 Read requests */
3410adfc5217SJeff Kirsher #define PXP2_REG_RQ_BW_RD_L15					 0x1202e8
3411adfc5217SJeff Kirsher /* [RW 10] Bandwidth Typical L for VQ16 Read requests */
3412adfc5217SJeff Kirsher #define PXP2_REG_RQ_BW_RD_L16					 0x1202ec
3413adfc5217SJeff Kirsher /* [RW 10] Bandwidth Typical L for VQ17 Read requests */
3414adfc5217SJeff Kirsher #define PXP2_REG_RQ_BW_RD_L17					 0x1202f0
3415adfc5217SJeff Kirsher /* [RW 10] Bandwidth Typical L for VQ18 Read requests */
3416adfc5217SJeff Kirsher #define PXP2_REG_RQ_BW_RD_L18					 0x1202f4
3417adfc5217SJeff Kirsher /* [RW 10] Bandwidth Typical L for VQ19 Read requests */
3418adfc5217SJeff Kirsher #define PXP2_REG_RQ_BW_RD_L19					 0x1202f8
3419adfc5217SJeff Kirsher /* [RW 10] Bandwidth Typical L for VQ20 Read requests */
3420adfc5217SJeff Kirsher #define PXP2_REG_RQ_BW_RD_L20					 0x1202fc
3421adfc5217SJeff Kirsher /* [RW 10] Bandwidth Typical L for VQ22 Read requests */
3422adfc5217SJeff Kirsher #define PXP2_REG_RQ_BW_RD_L22					 0x120300
3423adfc5217SJeff Kirsher /* [RW 10] Bandwidth Typical L for VQ23 Read requests */
3424adfc5217SJeff Kirsher #define PXP2_REG_RQ_BW_RD_L23					 0x120304
3425adfc5217SJeff Kirsher /* [RW 10] Bandwidth Typical L for VQ24 Read requests */
3426adfc5217SJeff Kirsher #define PXP2_REG_RQ_BW_RD_L24					 0x120308
3427adfc5217SJeff Kirsher /* [RW 10] Bandwidth Typical L for VQ25 Read requests */
3428adfc5217SJeff Kirsher #define PXP2_REG_RQ_BW_RD_L25					 0x12030c
3429adfc5217SJeff Kirsher /* [RW 10] Bandwidth Typical L for VQ26 Read requests */
3430adfc5217SJeff Kirsher #define PXP2_REG_RQ_BW_RD_L26					 0x120310
3431adfc5217SJeff Kirsher /* [RW 10] Bandwidth Typical L for VQ27 Read requests */
3432adfc5217SJeff Kirsher #define PXP2_REG_RQ_BW_RD_L27					 0x120314
3433adfc5217SJeff Kirsher /* [RW 10] Bandwidth Typical L for VQ4 Read requests */
3434adfc5217SJeff Kirsher #define PXP2_REG_RQ_BW_RD_L4					 0x1202bc
3435adfc5217SJeff Kirsher /* [RW 10] Bandwidth Typical L for VQ5 Read- currently not used */
3436adfc5217SJeff Kirsher #define PXP2_REG_RQ_BW_RD_L5					 0x1202c0
3437adfc5217SJeff Kirsher /* [RW 7] Bandwidth upper bound for VQ0 read requests */
3438adfc5217SJeff Kirsher #define PXP2_REG_RQ_BW_RD_UBOUND0				 0x120234
3439adfc5217SJeff Kirsher /* [RW 7] Bandwidth upper bound for VQ12 read requests */
3440adfc5217SJeff Kirsher #define PXP2_REG_RQ_BW_RD_UBOUND12				 0x120264
3441adfc5217SJeff Kirsher /* [RW 7] Bandwidth upper bound for VQ13 read requests */
3442adfc5217SJeff Kirsher #define PXP2_REG_RQ_BW_RD_UBOUND13				 0x120268
3443adfc5217SJeff Kirsher /* [RW 7] Bandwidth upper bound for VQ14 read requests */
3444adfc5217SJeff Kirsher #define PXP2_REG_RQ_BW_RD_UBOUND14				 0x12026c
3445adfc5217SJeff Kirsher /* [RW 7] Bandwidth upper bound for VQ15 read requests */
3446adfc5217SJeff Kirsher #define PXP2_REG_RQ_BW_RD_UBOUND15				 0x120270
3447adfc5217SJeff Kirsher /* [RW 7] Bandwidth upper bound for VQ16 read requests */
3448adfc5217SJeff Kirsher #define PXP2_REG_RQ_BW_RD_UBOUND16				 0x120274
3449adfc5217SJeff Kirsher /* [RW 7] Bandwidth upper bound for VQ17 read requests */
3450adfc5217SJeff Kirsher #define PXP2_REG_RQ_BW_RD_UBOUND17				 0x120278
3451adfc5217SJeff Kirsher /* [RW 7] Bandwidth upper bound for VQ18 read requests */
3452adfc5217SJeff Kirsher #define PXP2_REG_RQ_BW_RD_UBOUND18				 0x12027c
3453adfc5217SJeff Kirsher /* [RW 7] Bandwidth upper bound for VQ19 read requests */
3454adfc5217SJeff Kirsher #define PXP2_REG_RQ_BW_RD_UBOUND19				 0x120280
3455adfc5217SJeff Kirsher /* [RW 7] Bandwidth upper bound for VQ20 read requests */
3456adfc5217SJeff Kirsher #define PXP2_REG_RQ_BW_RD_UBOUND20				 0x120284
3457adfc5217SJeff Kirsher /* [RW 7] Bandwidth upper bound for VQ22 read requests */
3458adfc5217SJeff Kirsher #define PXP2_REG_RQ_BW_RD_UBOUND22				 0x120288
3459adfc5217SJeff Kirsher /* [RW 7] Bandwidth upper bound for VQ23 read requests */
3460adfc5217SJeff Kirsher #define PXP2_REG_RQ_BW_RD_UBOUND23				 0x12028c
3461adfc5217SJeff Kirsher /* [RW 7] Bandwidth upper bound for VQ24 read requests */
3462adfc5217SJeff Kirsher #define PXP2_REG_RQ_BW_RD_UBOUND24				 0x120290
3463adfc5217SJeff Kirsher /* [RW 7] Bandwidth upper bound for VQ25 read requests */
3464adfc5217SJeff Kirsher #define PXP2_REG_RQ_BW_RD_UBOUND25				 0x120294
3465adfc5217SJeff Kirsher /* [RW 7] Bandwidth upper bound for VQ26 read requests */
3466adfc5217SJeff Kirsher #define PXP2_REG_RQ_BW_RD_UBOUND26				 0x120298
3467adfc5217SJeff Kirsher /* [RW 7] Bandwidth upper bound for VQ27 read requests */
3468adfc5217SJeff Kirsher #define PXP2_REG_RQ_BW_RD_UBOUND27				 0x12029c
3469adfc5217SJeff Kirsher /* [RW 7] Bandwidth upper bound for VQ4 read requests */
3470adfc5217SJeff Kirsher #define PXP2_REG_RQ_BW_RD_UBOUND4				 0x120244
3471adfc5217SJeff Kirsher /* [RW 7] Bandwidth upper bound for VQ5 read requests */
3472adfc5217SJeff Kirsher #define PXP2_REG_RQ_BW_RD_UBOUND5				 0x120248
3473adfc5217SJeff Kirsher /* [RW 10] Bandwidth addition to VQ29 write requests */
3474adfc5217SJeff Kirsher #define PXP2_REG_RQ_BW_WR_ADD29 				 0x12022c
3475adfc5217SJeff Kirsher /* [RW 10] Bandwidth addition to VQ30 write requests */
3476adfc5217SJeff Kirsher #define PXP2_REG_RQ_BW_WR_ADD30 				 0x120230
3477adfc5217SJeff Kirsher /* [RW 10] Bandwidth Typical L for VQ29 Write requests */
3478adfc5217SJeff Kirsher #define PXP2_REG_RQ_BW_WR_L29					 0x12031c
3479adfc5217SJeff Kirsher /* [RW 10] Bandwidth Typical L for VQ30 Write requests */
3480adfc5217SJeff Kirsher #define PXP2_REG_RQ_BW_WR_L30					 0x120320
3481adfc5217SJeff Kirsher /* [RW 7] Bandwidth upper bound for VQ29 */
3482adfc5217SJeff Kirsher #define PXP2_REG_RQ_BW_WR_UBOUND29				 0x1202a4
3483adfc5217SJeff Kirsher /* [RW 7] Bandwidth upper bound for VQ30 */
3484adfc5217SJeff Kirsher #define PXP2_REG_RQ_BW_WR_UBOUND30				 0x1202a8
3485adfc5217SJeff Kirsher /* [RW 18] external first_mem_addr field in L2P table for CDU module port 0 */
3486adfc5217SJeff Kirsher #define PXP2_REG_RQ_CDU0_EFIRST_MEM_ADDR			 0x120008
3487adfc5217SJeff Kirsher /* [RW 2] Endian mode for cdu */
3488adfc5217SJeff Kirsher #define PXP2_REG_RQ_CDU_ENDIAN_M				 0x1201a0
3489adfc5217SJeff Kirsher #define PXP2_REG_RQ_CDU_FIRST_ILT				 0x12061c
3490adfc5217SJeff Kirsher #define PXP2_REG_RQ_CDU_LAST_ILT				 0x120620
3491adfc5217SJeff Kirsher /* [RW 3] page size in L2P table for CDU module; -4k; -8k; -16k; -32k; -64k;
3492adfc5217SJeff Kirsher    -128k */
3493adfc5217SJeff Kirsher #define PXP2_REG_RQ_CDU_P_SIZE					 0x120018
3494adfc5217SJeff Kirsher /* [R 1] 1' indicates that the requester has finished its internal
3495adfc5217SJeff Kirsher    configuration */
3496adfc5217SJeff Kirsher #define PXP2_REG_RQ_CFG_DONE					 0x1201b4
3497adfc5217SJeff Kirsher /* [RW 2] Endian mode for debug */
3498adfc5217SJeff Kirsher #define PXP2_REG_RQ_DBG_ENDIAN_M				 0x1201a4
3499adfc5217SJeff Kirsher /* [RW 1] When '1'; requests will enter input buffers but wont get out
3500adfc5217SJeff Kirsher    towards the glue */
3501adfc5217SJeff Kirsher #define PXP2_REG_RQ_DISABLE_INPUTS				 0x120330
3502adfc5217SJeff Kirsher /* [RW 4] Determines alignment of write SRs when a request is split into
3503adfc5217SJeff Kirsher  * several SRs. 0 - 8B aligned. 1 - 64B aligned. 2 - 128B aligned. 3 - 256B
3504adfc5217SJeff Kirsher  * aligned. 4 - 512B aligned. */
3505adfc5217SJeff Kirsher #define PXP2_REG_RQ_DRAM_ALIGN					 0x1205b0
3506adfc5217SJeff Kirsher /* [RW 4] Determines alignment of read SRs when a request is split into
3507adfc5217SJeff Kirsher  * several SRs. 0 - 8B aligned. 1 - 64B aligned. 2 - 128B aligned. 3 - 256B
3508adfc5217SJeff Kirsher  * aligned. 4 - 512B aligned. */
3509adfc5217SJeff Kirsher #define PXP2_REG_RQ_DRAM_ALIGN_RD				 0x12092c
3510adfc5217SJeff Kirsher /* [RW 1] when set the new alignment method (E2) will be applied; when reset
3511adfc5217SJeff Kirsher  * the original alignment method (E1 E1H) will be applied */
3512adfc5217SJeff Kirsher #define PXP2_REG_RQ_DRAM_ALIGN_SEL				 0x120930
3513adfc5217SJeff Kirsher /* [RW 1] If 1 ILT failiue will not result in ELT access; An interrupt will
3514adfc5217SJeff Kirsher    be asserted */
3515adfc5217SJeff Kirsher #define PXP2_REG_RQ_ELT_DISABLE 				 0x12066c
3516adfc5217SJeff Kirsher /* [RW 2] Endian mode for hc */
3517adfc5217SJeff Kirsher #define PXP2_REG_RQ_HC_ENDIAN_M 				 0x1201a8
3518adfc5217SJeff Kirsher /* [RW 1] when '0' ILT logic will work as in A0; otherwise B0; for back
3519adfc5217SJeff Kirsher    compatibility needs; Note that different registers are used per mode */
3520adfc5217SJeff Kirsher #define PXP2_REG_RQ_ILT_MODE					 0x1205b4
3521adfc5217SJeff Kirsher /* [WB 53] Onchip address table */
3522adfc5217SJeff Kirsher #define PXP2_REG_RQ_ONCHIP_AT					 0x122000
3523adfc5217SJeff Kirsher /* [WB 53] Onchip address table - B0 */
3524adfc5217SJeff Kirsher #define PXP2_REG_RQ_ONCHIP_AT_B0				 0x128000
3525adfc5217SJeff Kirsher /* [RW 13] Pending read limiter threshold; in Dwords */
3526adfc5217SJeff Kirsher #define PXP2_REG_RQ_PDR_LIMIT					 0x12033c
3527adfc5217SJeff Kirsher /* [RW 2] Endian mode for qm */
3528adfc5217SJeff Kirsher #define PXP2_REG_RQ_QM_ENDIAN_M 				 0x120194
3529adfc5217SJeff Kirsher #define PXP2_REG_RQ_QM_FIRST_ILT				 0x120634
3530adfc5217SJeff Kirsher #define PXP2_REG_RQ_QM_LAST_ILT 				 0x120638
3531adfc5217SJeff Kirsher /* [RW 3] page size in L2P table for QM module; -4k; -8k; -16k; -32k; -64k;
3532adfc5217SJeff Kirsher    -128k */
3533adfc5217SJeff Kirsher #define PXP2_REG_RQ_QM_P_SIZE					 0x120050
3534adfc5217SJeff Kirsher /* [RW 1] 1' indicates that the RBC has finished configuring the PSWRQ */
3535adfc5217SJeff Kirsher #define PXP2_REG_RQ_RBC_DONE					 0x1201b0
3536adfc5217SJeff Kirsher /* [RW 3] Max burst size filed for read requests port 0; 000 - 128B;
3537adfc5217SJeff Kirsher    001:256B; 010: 512B; 11:1K:100:2K; 01:4K */
3538adfc5217SJeff Kirsher #define PXP2_REG_RQ_RD_MBS0					 0x120160
3539adfc5217SJeff Kirsher /* [RW 3] Max burst size filed for read requests port 1; 000 - 128B;
3540adfc5217SJeff Kirsher    001:256B; 010: 512B; 11:1K:100:2K; 01:4K */
3541adfc5217SJeff Kirsher #define PXP2_REG_RQ_RD_MBS1					 0x120168
3542adfc5217SJeff Kirsher /* [RW 2] Endian mode for src */
3543adfc5217SJeff Kirsher #define PXP2_REG_RQ_SRC_ENDIAN_M				 0x12019c
3544adfc5217SJeff Kirsher #define PXP2_REG_RQ_SRC_FIRST_ILT				 0x12063c
3545adfc5217SJeff Kirsher #define PXP2_REG_RQ_SRC_LAST_ILT				 0x120640
3546adfc5217SJeff Kirsher /* [RW 3] page size in L2P table for SRC module; -4k; -8k; -16k; -32k; -64k;
3547adfc5217SJeff Kirsher    -128k */
3548adfc5217SJeff Kirsher #define PXP2_REG_RQ_SRC_P_SIZE					 0x12006c
3549adfc5217SJeff Kirsher /* [RW 2] Endian mode for tm */
3550adfc5217SJeff Kirsher #define PXP2_REG_RQ_TM_ENDIAN_M 				 0x120198
3551adfc5217SJeff Kirsher #define PXP2_REG_RQ_TM_FIRST_ILT				 0x120644
3552adfc5217SJeff Kirsher #define PXP2_REG_RQ_TM_LAST_ILT 				 0x120648
3553adfc5217SJeff Kirsher /* [RW 3] page size in L2P table for TM module; -4k; -8k; -16k; -32k; -64k;
3554adfc5217SJeff Kirsher    -128k */
3555adfc5217SJeff Kirsher #define PXP2_REG_RQ_TM_P_SIZE					 0x120034
3556adfc5217SJeff Kirsher /* [R 5] Number of entries in the ufifo; his fifo has l2p completions */
3557adfc5217SJeff Kirsher #define PXP2_REG_RQ_UFIFO_NUM_OF_ENTRY				 0x12080c
3558adfc5217SJeff Kirsher /* [RW 18] external first_mem_addr field in L2P table for USDM module port 0 */
3559adfc5217SJeff Kirsher #define PXP2_REG_RQ_USDM0_EFIRST_MEM_ADDR			 0x120094
3560adfc5217SJeff Kirsher /* [R 8] Number of entries occupied by vq 0 in pswrq memory */
3561adfc5217SJeff Kirsher #define PXP2_REG_RQ_VQ0_ENTRY_CNT				 0x120810
3562adfc5217SJeff Kirsher /* [R 8] Number of entries occupied by vq 10 in pswrq memory */
3563adfc5217SJeff Kirsher #define PXP2_REG_RQ_VQ10_ENTRY_CNT				 0x120818
3564adfc5217SJeff Kirsher /* [R 8] Number of entries occupied by vq 11 in pswrq memory */
3565adfc5217SJeff Kirsher #define PXP2_REG_RQ_VQ11_ENTRY_CNT				 0x120820
3566adfc5217SJeff Kirsher /* [R 8] Number of entries occupied by vq 12 in pswrq memory */
3567adfc5217SJeff Kirsher #define PXP2_REG_RQ_VQ12_ENTRY_CNT				 0x120828
3568adfc5217SJeff Kirsher /* [R 8] Number of entries occupied by vq 13 in pswrq memory */
3569adfc5217SJeff Kirsher #define PXP2_REG_RQ_VQ13_ENTRY_CNT				 0x120830
3570adfc5217SJeff Kirsher /* [R 8] Number of entries occupied by vq 14 in pswrq memory */
3571adfc5217SJeff Kirsher #define PXP2_REG_RQ_VQ14_ENTRY_CNT				 0x120838
3572adfc5217SJeff Kirsher /* [R 8] Number of entries occupied by vq 15 in pswrq memory */
3573adfc5217SJeff Kirsher #define PXP2_REG_RQ_VQ15_ENTRY_CNT				 0x120840
3574adfc5217SJeff Kirsher /* [R 8] Number of entries occupied by vq 16 in pswrq memory */
3575adfc5217SJeff Kirsher #define PXP2_REG_RQ_VQ16_ENTRY_CNT				 0x120848
3576adfc5217SJeff Kirsher /* [R 8] Number of entries occupied by vq 17 in pswrq memory */
3577adfc5217SJeff Kirsher #define PXP2_REG_RQ_VQ17_ENTRY_CNT				 0x120850
3578adfc5217SJeff Kirsher /* [R 8] Number of entries occupied by vq 18 in pswrq memory */
3579adfc5217SJeff Kirsher #define PXP2_REG_RQ_VQ18_ENTRY_CNT				 0x120858
3580adfc5217SJeff Kirsher /* [R 8] Number of entries occupied by vq 19 in pswrq memory */
3581adfc5217SJeff Kirsher #define PXP2_REG_RQ_VQ19_ENTRY_CNT				 0x120860
3582adfc5217SJeff Kirsher /* [R 8] Number of entries occupied by vq 1 in pswrq memory */
3583adfc5217SJeff Kirsher #define PXP2_REG_RQ_VQ1_ENTRY_CNT				 0x120868
3584adfc5217SJeff Kirsher /* [R 8] Number of entries occupied by vq 20 in pswrq memory */
3585adfc5217SJeff Kirsher #define PXP2_REG_RQ_VQ20_ENTRY_CNT				 0x120870
3586adfc5217SJeff Kirsher /* [R 8] Number of entries occupied by vq 21 in pswrq memory */
3587adfc5217SJeff Kirsher #define PXP2_REG_RQ_VQ21_ENTRY_CNT				 0x120878
3588adfc5217SJeff Kirsher /* [R 8] Number of entries occupied by vq 22 in pswrq memory */
3589adfc5217SJeff Kirsher #define PXP2_REG_RQ_VQ22_ENTRY_CNT				 0x120880
3590adfc5217SJeff Kirsher /* [R 8] Number of entries occupied by vq 23 in pswrq memory */
3591adfc5217SJeff Kirsher #define PXP2_REG_RQ_VQ23_ENTRY_CNT				 0x120888
3592adfc5217SJeff Kirsher /* [R 8] Number of entries occupied by vq 24 in pswrq memory */
3593adfc5217SJeff Kirsher #define PXP2_REG_RQ_VQ24_ENTRY_CNT				 0x120890
3594adfc5217SJeff Kirsher /* [R 8] Number of entries occupied by vq 25 in pswrq memory */
3595adfc5217SJeff Kirsher #define PXP2_REG_RQ_VQ25_ENTRY_CNT				 0x120898
3596adfc5217SJeff Kirsher /* [R 8] Number of entries occupied by vq 26 in pswrq memory */
3597adfc5217SJeff Kirsher #define PXP2_REG_RQ_VQ26_ENTRY_CNT				 0x1208a0
3598adfc5217SJeff Kirsher /* [R 8] Number of entries occupied by vq 27 in pswrq memory */
3599adfc5217SJeff Kirsher #define PXP2_REG_RQ_VQ27_ENTRY_CNT				 0x1208a8
3600adfc5217SJeff Kirsher /* [R 8] Number of entries occupied by vq 28 in pswrq memory */
3601adfc5217SJeff Kirsher #define PXP2_REG_RQ_VQ28_ENTRY_CNT				 0x1208b0
3602adfc5217SJeff Kirsher /* [R 8] Number of entries occupied by vq 29 in pswrq memory */
3603adfc5217SJeff Kirsher #define PXP2_REG_RQ_VQ29_ENTRY_CNT				 0x1208b8
3604adfc5217SJeff Kirsher /* [R 8] Number of entries occupied by vq 2 in pswrq memory */
3605adfc5217SJeff Kirsher #define PXP2_REG_RQ_VQ2_ENTRY_CNT				 0x1208c0
3606adfc5217SJeff Kirsher /* [R 8] Number of entries occupied by vq 30 in pswrq memory */
3607adfc5217SJeff Kirsher #define PXP2_REG_RQ_VQ30_ENTRY_CNT				 0x1208c8
3608adfc5217SJeff Kirsher /* [R 8] Number of entries occupied by vq 31 in pswrq memory */
3609adfc5217SJeff Kirsher #define PXP2_REG_RQ_VQ31_ENTRY_CNT				 0x1208d0
3610adfc5217SJeff Kirsher /* [R 8] Number of entries occupied by vq 3 in pswrq memory */
3611adfc5217SJeff Kirsher #define PXP2_REG_RQ_VQ3_ENTRY_CNT				 0x1208d8
3612adfc5217SJeff Kirsher /* [R 8] Number of entries occupied by vq 4 in pswrq memory */
3613adfc5217SJeff Kirsher #define PXP2_REG_RQ_VQ4_ENTRY_CNT				 0x1208e0
3614adfc5217SJeff Kirsher /* [R 8] Number of entries occupied by vq 5 in pswrq memory */
3615adfc5217SJeff Kirsher #define PXP2_REG_RQ_VQ5_ENTRY_CNT				 0x1208e8
3616adfc5217SJeff Kirsher /* [R 8] Number of entries occupied by vq 6 in pswrq memory */
3617adfc5217SJeff Kirsher #define PXP2_REG_RQ_VQ6_ENTRY_CNT				 0x1208f0
3618adfc5217SJeff Kirsher /* [R 8] Number of entries occupied by vq 7 in pswrq memory */
3619adfc5217SJeff Kirsher #define PXP2_REG_RQ_VQ7_ENTRY_CNT				 0x1208f8
3620adfc5217SJeff Kirsher /* [R 8] Number of entries occupied by vq 8 in pswrq memory */
3621adfc5217SJeff Kirsher #define PXP2_REG_RQ_VQ8_ENTRY_CNT				 0x120900
3622adfc5217SJeff Kirsher /* [R 8] Number of entries occupied by vq 9 in pswrq memory */
3623adfc5217SJeff Kirsher #define PXP2_REG_RQ_VQ9_ENTRY_CNT				 0x120908
3624adfc5217SJeff Kirsher /* [RW 3] Max burst size filed for write requests port 0; 000 - 128B;
3625adfc5217SJeff Kirsher    001:256B; 010: 512B; */
3626adfc5217SJeff Kirsher #define PXP2_REG_RQ_WR_MBS0					 0x12015c
3627adfc5217SJeff Kirsher /* [RW 3] Max burst size filed for write requests port 1; 000 - 128B;
3628adfc5217SJeff Kirsher    001:256B; 010: 512B; */
3629adfc5217SJeff Kirsher #define PXP2_REG_RQ_WR_MBS1					 0x120164
3630adfc5217SJeff Kirsher /* [RW 2] 0 - 128B;  - 256B;  - 512B;  - 1024B; when the payload in the
3631adfc5217SJeff Kirsher    buffer reaches this number has_payload will be asserted */
3632adfc5217SJeff Kirsher #define PXP2_REG_WR_CDU_MPS					 0x1205f0
3633adfc5217SJeff Kirsher /* [RW 2] 0 - 128B;  - 256B;  - 512B;  - 1024B; when the payload in the
3634adfc5217SJeff Kirsher    buffer reaches this number has_payload will be asserted */
3635adfc5217SJeff Kirsher #define PXP2_REG_WR_CSDM_MPS					 0x1205d0
3636adfc5217SJeff Kirsher /* [RW 2] 0 - 128B;  - 256B;  - 512B;  - 1024B; when the payload in the
3637adfc5217SJeff Kirsher    buffer reaches this number has_payload will be asserted */
3638adfc5217SJeff Kirsher #define PXP2_REG_WR_DBG_MPS					 0x1205e8
3639adfc5217SJeff Kirsher /* [RW 2] 0 - 128B;  - 256B;  - 512B;  - 1024B; when the payload in the
3640adfc5217SJeff Kirsher    buffer reaches this number has_payload will be asserted */
3641adfc5217SJeff Kirsher #define PXP2_REG_WR_DMAE_MPS					 0x1205ec
3642adfc5217SJeff Kirsher /* [RW 10] if Number of entries in dmae fifo will be higher than this
3643adfc5217SJeff Kirsher    threshold then has_payload indication will be asserted; the default value
3644adfc5217SJeff Kirsher    should be equal to &gt;  write MBS size! */
3645adfc5217SJeff Kirsher #define PXP2_REG_WR_DMAE_TH					 0x120368
3646adfc5217SJeff Kirsher /* [RW 2] 0 - 128B;  - 256B;  - 512B;  - 1024B; when the payload in the
3647adfc5217SJeff Kirsher    buffer reaches this number has_payload will be asserted */
3648adfc5217SJeff Kirsher #define PXP2_REG_WR_HC_MPS					 0x1205c8
3649adfc5217SJeff Kirsher /* [RW 2] 0 - 128B;  - 256B;  - 512B;  - 1024B; when the payload in the
3650adfc5217SJeff Kirsher    buffer reaches this number has_payload will be asserted */
3651adfc5217SJeff Kirsher #define PXP2_REG_WR_QM_MPS					 0x1205dc
3652adfc5217SJeff Kirsher /* [RW 1] 0 - working in A0 mode;  - working in B0 mode */
3653adfc5217SJeff Kirsher #define PXP2_REG_WR_REV_MODE					 0x120670
3654adfc5217SJeff Kirsher /* [RW 2] 0 - 128B;  - 256B;  - 512B;  - 1024B; when the payload in the
3655adfc5217SJeff Kirsher    buffer reaches this number has_payload will be asserted */
3656adfc5217SJeff Kirsher #define PXP2_REG_WR_SRC_MPS					 0x1205e4
3657adfc5217SJeff Kirsher /* [RW 2] 0 - 128B;  - 256B;  - 512B;  - 1024B; when the payload in the
3658adfc5217SJeff Kirsher    buffer reaches this number has_payload will be asserted */
3659adfc5217SJeff Kirsher #define PXP2_REG_WR_TM_MPS					 0x1205e0
3660adfc5217SJeff Kirsher /* [RW 2] 0 - 128B;  - 256B;  - 512B;  - 1024B; when the payload in the
3661adfc5217SJeff Kirsher    buffer reaches this number has_payload will be asserted */
3662adfc5217SJeff Kirsher #define PXP2_REG_WR_TSDM_MPS					 0x1205d4
3663adfc5217SJeff Kirsher /* [RW 10] if Number of entries in usdmdp fifo will be higher than this
3664adfc5217SJeff Kirsher    threshold then has_payload indication will be asserted; the default value
3665adfc5217SJeff Kirsher    should be equal to &gt;  write MBS size! */
3666adfc5217SJeff Kirsher #define PXP2_REG_WR_USDMDP_TH					 0x120348
3667adfc5217SJeff Kirsher /* [RW 2] 0 - 128B;  - 256B;  - 512B;  - 1024B; when the payload in the
3668adfc5217SJeff Kirsher    buffer reaches this number has_payload will be asserted */
3669adfc5217SJeff Kirsher #define PXP2_REG_WR_USDM_MPS					 0x1205cc
3670adfc5217SJeff Kirsher /* [RW 2] 0 - 128B;  - 256B;  - 512B;  - 1024B; when the payload in the
3671adfc5217SJeff Kirsher    buffer reaches this number has_payload will be asserted */
3672adfc5217SJeff Kirsher #define PXP2_REG_WR_XSDM_MPS					 0x1205d8
3673adfc5217SJeff Kirsher /* [R 1] debug only: Indication if PSWHST arbiter is idle */
3674adfc5217SJeff Kirsher #define PXP_REG_HST_ARB_IS_IDLE 				 0x103004
3675adfc5217SJeff Kirsher /* [R 8] debug only: A bit mask for all PSWHST arbiter clients. '1' means
3676adfc5217SJeff Kirsher    this client is waiting for the arbiter. */
3677adfc5217SJeff Kirsher #define PXP_REG_HST_CLIENTS_WAITING_TO_ARB			 0x103008
3678adfc5217SJeff Kirsher /* [RW 1] When 1; doorbells are discarded and not passed to doorbell queue
3679adfc5217SJeff Kirsher    block. Should be used for close the gates. */
3680adfc5217SJeff Kirsher #define PXP_REG_HST_DISCARD_DOORBELLS				 0x1030a4
3681adfc5217SJeff Kirsher /* [R 1] debug only: '1' means this PSWHST is discarding doorbells. This bit
3682adfc5217SJeff Kirsher    should update according to 'hst_discard_doorbells' register when the state
3683adfc5217SJeff Kirsher    machine is idle */
3684adfc5217SJeff Kirsher #define PXP_REG_HST_DISCARD_DOORBELLS_STATUS			 0x1030a0
3685adfc5217SJeff Kirsher /* [RW 1] When 1; new internal writes arriving to the block are discarded.
3686adfc5217SJeff Kirsher    Should be used for close the gates. */
3687adfc5217SJeff Kirsher #define PXP_REG_HST_DISCARD_INTERNAL_WRITES			 0x1030a8
3688adfc5217SJeff Kirsher /* [R 6] debug only: A bit mask for all PSWHST internal write clients. '1'
3689adfc5217SJeff Kirsher    means this PSWHST is discarding inputs from this client. Each bit should
3690adfc5217SJeff Kirsher    update according to 'hst_discard_internal_writes' register when the state
3691adfc5217SJeff Kirsher    machine is idle. */
3692adfc5217SJeff Kirsher #define PXP_REG_HST_DISCARD_INTERNAL_WRITES_STATUS		 0x10309c
3693adfc5217SJeff Kirsher /* [WB 160] Used for initialization of the inbound interrupts memory */
3694adfc5217SJeff Kirsher #define PXP_REG_HST_INBOUND_INT 				 0x103800
3695adfc5217SJeff Kirsher /* [RW 32] Interrupt mask register #0 read/write */
3696adfc5217SJeff Kirsher #define PXP_REG_PXP_INT_MASK_0					 0x103074
3697adfc5217SJeff Kirsher #define PXP_REG_PXP_INT_MASK_1					 0x103084
3698adfc5217SJeff Kirsher /* [R 32] Interrupt register #0 read */
3699adfc5217SJeff Kirsher #define PXP_REG_PXP_INT_STS_0					 0x103068
3700adfc5217SJeff Kirsher #define PXP_REG_PXP_INT_STS_1					 0x103078
3701adfc5217SJeff Kirsher /* [RC 32] Interrupt register #0 read clear */
3702adfc5217SJeff Kirsher #define PXP_REG_PXP_INT_STS_CLR_0				 0x10306c
3703adfc5217SJeff Kirsher #define PXP_REG_PXP_INT_STS_CLR_1				 0x10307c
3704adfc5217SJeff Kirsher /* [RW 27] Parity mask register #0 read/write */
3705adfc5217SJeff Kirsher #define PXP_REG_PXP_PRTY_MASK					 0x103094
3706adfc5217SJeff Kirsher /* [R 26] Parity register #0 read */
3707adfc5217SJeff Kirsher #define PXP_REG_PXP_PRTY_STS					 0x103088
3708adfc5217SJeff Kirsher /* [RC 27] Parity register #0 read clear */
3709adfc5217SJeff Kirsher #define PXP_REG_PXP_PRTY_STS_CLR				 0x10308c
3710adfc5217SJeff Kirsher /* [RW 4] The activity counter initial increment value sent in the load
3711adfc5217SJeff Kirsher    request */
3712adfc5217SJeff Kirsher #define QM_REG_ACTCTRINITVAL_0					 0x168040
3713adfc5217SJeff Kirsher #define QM_REG_ACTCTRINITVAL_1					 0x168044
3714adfc5217SJeff Kirsher #define QM_REG_ACTCTRINITVAL_2					 0x168048
3715adfc5217SJeff Kirsher #define QM_REG_ACTCTRINITVAL_3					 0x16804c
3716adfc5217SJeff Kirsher /* [RW 32] The base logical address (in bytes) of each physical queue. The
3717adfc5217SJeff Kirsher    index I represents the physical queue number. The 12 lsbs are ignore and
3718adfc5217SJeff Kirsher    considered zero so practically there are only 20 bits in this register;
3719adfc5217SJeff Kirsher    queues 63-0 */
3720adfc5217SJeff Kirsher #define QM_REG_BASEADDR 					 0x168900
3721adfc5217SJeff Kirsher /* [RW 32] The base logical address (in bytes) of each physical queue. The
3722adfc5217SJeff Kirsher    index I represents the physical queue number. The 12 lsbs are ignore and
3723adfc5217SJeff Kirsher    considered zero so practically there are only 20 bits in this register;
3724adfc5217SJeff Kirsher    queues 127-64 */
3725adfc5217SJeff Kirsher #define QM_REG_BASEADDR_EXT_A					 0x16e100
3726adfc5217SJeff Kirsher /* [RW 16] The byte credit cost for each task. This value is for both ports */
3727adfc5217SJeff Kirsher #define QM_REG_BYTECRDCOST					 0x168234
3728adfc5217SJeff Kirsher /* [RW 16] The initial byte credit value for both ports. */
3729adfc5217SJeff Kirsher #define QM_REG_BYTECRDINITVAL					 0x168238
3730adfc5217SJeff Kirsher /* [RW 32] A bit per physical queue. If the bit is cleared then the physical
3731adfc5217SJeff Kirsher    queue uses port 0 else it uses port 1; queues 31-0 */
3732adfc5217SJeff Kirsher #define QM_REG_BYTECRDPORT_LSB					 0x168228
3733adfc5217SJeff Kirsher /* [RW 32] A bit per physical queue. If the bit is cleared then the physical
3734adfc5217SJeff Kirsher    queue uses port 0 else it uses port 1; queues 95-64 */
3735adfc5217SJeff Kirsher #define QM_REG_BYTECRDPORT_LSB_EXT_A				 0x16e520
3736adfc5217SJeff Kirsher /* [RW 32] A bit per physical queue. If the bit is cleared then the physical
3737adfc5217SJeff Kirsher    queue uses port 0 else it uses port 1; queues 63-32 */
3738adfc5217SJeff Kirsher #define QM_REG_BYTECRDPORT_MSB					 0x168224
3739adfc5217SJeff Kirsher /* [RW 32] A bit per physical queue. If the bit is cleared then the physical
3740adfc5217SJeff Kirsher    queue uses port 0 else it uses port 1; queues 127-96 */
3741adfc5217SJeff Kirsher #define QM_REG_BYTECRDPORT_MSB_EXT_A				 0x16e51c
3742adfc5217SJeff Kirsher /* [RW 16] The byte credit value that if above the QM is considered almost
3743adfc5217SJeff Kirsher    full */
3744adfc5217SJeff Kirsher #define QM_REG_BYTECREDITAFULLTHR				 0x168094
3745adfc5217SJeff Kirsher /* [RW 4] The initial credit for interface */
3746adfc5217SJeff Kirsher #define QM_REG_CMINITCRD_0					 0x1680cc
3747adfc5217SJeff Kirsher #define QM_REG_BYTECRDCMDQ_0					 0x16e6e8
3748adfc5217SJeff Kirsher #define QM_REG_CMINITCRD_1					 0x1680d0
3749adfc5217SJeff Kirsher #define QM_REG_CMINITCRD_2					 0x1680d4
3750adfc5217SJeff Kirsher #define QM_REG_CMINITCRD_3					 0x1680d8
3751adfc5217SJeff Kirsher #define QM_REG_CMINITCRD_4					 0x1680dc
3752adfc5217SJeff Kirsher #define QM_REG_CMINITCRD_5					 0x1680e0
3753adfc5217SJeff Kirsher #define QM_REG_CMINITCRD_6					 0x1680e4
3754adfc5217SJeff Kirsher #define QM_REG_CMINITCRD_7					 0x1680e8
3755adfc5217SJeff Kirsher /* [RW 8] A mask bit per CM interface. If this bit is 0 then this interface
3756adfc5217SJeff Kirsher    is masked */
3757adfc5217SJeff Kirsher #define QM_REG_CMINTEN						 0x1680ec
3758adfc5217SJeff Kirsher /* [RW 12] A bit vector which indicates which one of the queues are tied to
3759adfc5217SJeff Kirsher    interface 0 */
3760adfc5217SJeff Kirsher #define QM_REG_CMINTVOQMASK_0					 0x1681f4
3761adfc5217SJeff Kirsher #define QM_REG_CMINTVOQMASK_1					 0x1681f8
3762adfc5217SJeff Kirsher #define QM_REG_CMINTVOQMASK_2					 0x1681fc
3763adfc5217SJeff Kirsher #define QM_REG_CMINTVOQMASK_3					 0x168200
3764adfc5217SJeff Kirsher #define QM_REG_CMINTVOQMASK_4					 0x168204
3765adfc5217SJeff Kirsher #define QM_REG_CMINTVOQMASK_5					 0x168208
3766adfc5217SJeff Kirsher #define QM_REG_CMINTVOQMASK_6					 0x16820c
3767adfc5217SJeff Kirsher #define QM_REG_CMINTVOQMASK_7					 0x168210
3768adfc5217SJeff Kirsher /* [RW 20] The number of connections divided by 16 which dictates the size
3769adfc5217SJeff Kirsher    of each queue which belongs to even function number. */
3770adfc5217SJeff Kirsher #define QM_REG_CONNNUM_0					 0x168020
3771adfc5217SJeff Kirsher /* [R 6] Keep the fill level of the fifo from write client 4 */
3772adfc5217SJeff Kirsher #define QM_REG_CQM_WRC_FIFOLVL					 0x168018
3773adfc5217SJeff Kirsher /* [RW 8] The context regions sent in the CFC load request */
3774adfc5217SJeff Kirsher #define QM_REG_CTXREG_0 					 0x168030
3775adfc5217SJeff Kirsher #define QM_REG_CTXREG_1 					 0x168034
3776adfc5217SJeff Kirsher #define QM_REG_CTXREG_2 					 0x168038
3777adfc5217SJeff Kirsher #define QM_REG_CTXREG_3 					 0x16803c
3778adfc5217SJeff Kirsher /* [RW 12] The VOQ mask used to select the VOQs which needs to be full for
3779adfc5217SJeff Kirsher    bypass enable */
3780adfc5217SJeff Kirsher #define QM_REG_ENBYPVOQMASK					 0x16823c
3781adfc5217SJeff Kirsher /* [RW 32] A bit mask per each physical queue. If a bit is set then the
3782adfc5217SJeff Kirsher    physical queue uses the byte credit; queues 31-0 */
3783adfc5217SJeff Kirsher #define QM_REG_ENBYTECRD_LSB					 0x168220
3784adfc5217SJeff Kirsher /* [RW 32] A bit mask per each physical queue. If a bit is set then the
3785adfc5217SJeff Kirsher    physical queue uses the byte credit; queues 95-64 */
3786adfc5217SJeff Kirsher #define QM_REG_ENBYTECRD_LSB_EXT_A				 0x16e518
3787adfc5217SJeff Kirsher /* [RW 32] A bit mask per each physical queue. If a bit is set then the
3788adfc5217SJeff Kirsher    physical queue uses the byte credit; queues 63-32 */
3789adfc5217SJeff Kirsher #define QM_REG_ENBYTECRD_MSB					 0x16821c
3790adfc5217SJeff Kirsher /* [RW 32] A bit mask per each physical queue. If a bit is set then the
3791adfc5217SJeff Kirsher    physical queue uses the byte credit; queues 127-96 */
3792adfc5217SJeff Kirsher #define QM_REG_ENBYTECRD_MSB_EXT_A				 0x16e514
3793adfc5217SJeff Kirsher /* [RW 4] If cleared then the secondary interface will not be served by the
3794adfc5217SJeff Kirsher    RR arbiter */
3795adfc5217SJeff Kirsher #define QM_REG_ENSEC						 0x1680f0
3796adfc5217SJeff Kirsher /* [RW 32] NA */
3797adfc5217SJeff Kirsher #define QM_REG_FUNCNUMSEL_LSB					 0x168230
3798adfc5217SJeff Kirsher /* [RW 32] NA */
3799adfc5217SJeff Kirsher #define QM_REG_FUNCNUMSEL_MSB					 0x16822c
3800adfc5217SJeff Kirsher /* [RW 32] A mask register to mask the Almost empty signals which will not
3801adfc5217SJeff Kirsher    be use for the almost empty indication to the HW block; queues 31:0 */
3802adfc5217SJeff Kirsher #define QM_REG_HWAEMPTYMASK_LSB 				 0x168218
3803adfc5217SJeff Kirsher /* [RW 32] A mask register to mask the Almost empty signals which will not
3804adfc5217SJeff Kirsher    be use for the almost empty indication to the HW block; queues 95-64 */
3805adfc5217SJeff Kirsher #define QM_REG_HWAEMPTYMASK_LSB_EXT_A				 0x16e510
3806adfc5217SJeff Kirsher /* [RW 32] A mask register to mask the Almost empty signals which will not
3807adfc5217SJeff Kirsher    be use for the almost empty indication to the HW block; queues 63:32 */
3808adfc5217SJeff Kirsher #define QM_REG_HWAEMPTYMASK_MSB 				 0x168214
3809adfc5217SJeff Kirsher /* [RW 32] A mask register to mask the Almost empty signals which will not
3810adfc5217SJeff Kirsher    be use for the almost empty indication to the HW block; queues 127-96 */
3811adfc5217SJeff Kirsher #define QM_REG_HWAEMPTYMASK_MSB_EXT_A				 0x16e50c
3812adfc5217SJeff Kirsher /* [RW 4] The number of outstanding request to CFC */
3813adfc5217SJeff Kirsher #define QM_REG_OUTLDREQ 					 0x168804
3814adfc5217SJeff Kirsher /* [RC 1] A flag to indicate that overflow error occurred in one of the
3815adfc5217SJeff Kirsher    queues. */
3816adfc5217SJeff Kirsher #define QM_REG_OVFERROR 					 0x16805c
3817adfc5217SJeff Kirsher /* [RC 7] the Q where the overflow occurs */
3818adfc5217SJeff Kirsher #define QM_REG_OVFQNUM						 0x168058
3819adfc5217SJeff Kirsher /* [R 16] Pause state for physical queues 15-0 */
3820adfc5217SJeff Kirsher #define QM_REG_PAUSESTATE0					 0x168410
3821adfc5217SJeff Kirsher /* [R 16] Pause state for physical queues 31-16 */
3822adfc5217SJeff Kirsher #define QM_REG_PAUSESTATE1					 0x168414
3823adfc5217SJeff Kirsher /* [R 16] Pause state for physical queues 47-32 */
3824adfc5217SJeff Kirsher #define QM_REG_PAUSESTATE2					 0x16e684
3825adfc5217SJeff Kirsher /* [R 16] Pause state for physical queues 63-48 */
3826adfc5217SJeff Kirsher #define QM_REG_PAUSESTATE3					 0x16e688
3827adfc5217SJeff Kirsher /* [R 16] Pause state for physical queues 79-64 */
3828adfc5217SJeff Kirsher #define QM_REG_PAUSESTATE4					 0x16e68c
3829adfc5217SJeff Kirsher /* [R 16] Pause state for physical queues 95-80 */
3830adfc5217SJeff Kirsher #define QM_REG_PAUSESTATE5					 0x16e690
3831adfc5217SJeff Kirsher /* [R 16] Pause state for physical queues 111-96 */
3832adfc5217SJeff Kirsher #define QM_REG_PAUSESTATE6					 0x16e694
3833adfc5217SJeff Kirsher /* [R 16] Pause state for physical queues 127-112 */
3834adfc5217SJeff Kirsher #define QM_REG_PAUSESTATE7					 0x16e698
3835adfc5217SJeff Kirsher /* [RW 2] The PCI attributes field used in the PCI request. */
3836adfc5217SJeff Kirsher #define QM_REG_PCIREQAT 					 0x168054
3837adfc5217SJeff Kirsher #define QM_REG_PF_EN						 0x16e70c
3838adfc5217SJeff Kirsher /* [R 24] The number of tasks stored in the QM for the PF. only even
3839adfc5217SJeff Kirsher  * functions are valid in E2 (odd I registers will be hard wired to 0) */
3840adfc5217SJeff Kirsher #define QM_REG_PF_USG_CNT_0					 0x16e040
3841adfc5217SJeff Kirsher /* [R 16] NOT USED */
3842adfc5217SJeff Kirsher #define QM_REG_PORT0BYTECRD					 0x168300
3843adfc5217SJeff Kirsher /* [R 16] The byte credit of port 1 */
3844adfc5217SJeff Kirsher #define QM_REG_PORT1BYTECRD					 0x168304
3845adfc5217SJeff Kirsher /* [RW 3] pci function number of queues 15-0 */
3846adfc5217SJeff Kirsher #define QM_REG_PQ2PCIFUNC_0					 0x16e6bc
3847adfc5217SJeff Kirsher #define QM_REG_PQ2PCIFUNC_1					 0x16e6c0
3848adfc5217SJeff Kirsher #define QM_REG_PQ2PCIFUNC_2					 0x16e6c4
3849adfc5217SJeff Kirsher #define QM_REG_PQ2PCIFUNC_3					 0x16e6c8
3850adfc5217SJeff Kirsher #define QM_REG_PQ2PCIFUNC_4					 0x16e6cc
3851adfc5217SJeff Kirsher #define QM_REG_PQ2PCIFUNC_5					 0x16e6d0
3852adfc5217SJeff Kirsher #define QM_REG_PQ2PCIFUNC_6					 0x16e6d4
3853adfc5217SJeff Kirsher #define QM_REG_PQ2PCIFUNC_7					 0x16e6d8
3854adfc5217SJeff Kirsher /* [WB 54] Pointer Table Memory for queues 63-0; The mapping is as follow:
3855adfc5217SJeff Kirsher    ptrtbl[53:30] read pointer; ptrtbl[29:6] write pointer; ptrtbl[5:4] read
3856adfc5217SJeff Kirsher    bank0; ptrtbl[3:2] read bank 1; ptrtbl[1:0] write bank; */
3857adfc5217SJeff Kirsher #define QM_REG_PTRTBL						 0x168a00
3858adfc5217SJeff Kirsher /* [WB 54] Pointer Table Memory for queues 127-64; The mapping is as follow:
3859adfc5217SJeff Kirsher    ptrtbl[53:30] read pointer; ptrtbl[29:6] write pointer; ptrtbl[5:4] read
3860adfc5217SJeff Kirsher    bank0; ptrtbl[3:2] read bank 1; ptrtbl[1:0] write bank; */
3861adfc5217SJeff Kirsher #define QM_REG_PTRTBL_EXT_A					 0x16e200
3862adfc5217SJeff Kirsher /* [RW 2] Interrupt mask register #0 read/write */
3863adfc5217SJeff Kirsher #define QM_REG_QM_INT_MASK					 0x168444
3864adfc5217SJeff Kirsher /* [R 2] Interrupt register #0 read */
3865adfc5217SJeff Kirsher #define QM_REG_QM_INT_STS					 0x168438
3866adfc5217SJeff Kirsher /* [RW 12] Parity mask register #0 read/write */
3867adfc5217SJeff Kirsher #define QM_REG_QM_PRTY_MASK					 0x168454
3868adfc5217SJeff Kirsher /* [R 12] Parity register #0 read */
3869adfc5217SJeff Kirsher #define QM_REG_QM_PRTY_STS					 0x168448
3870adfc5217SJeff Kirsher /* [RC 12] Parity register #0 read clear */
3871adfc5217SJeff Kirsher #define QM_REG_QM_PRTY_STS_CLR					 0x16844c
3872adfc5217SJeff Kirsher /* [R 32] Current queues in pipeline: Queues from 32 to 63 */
3873adfc5217SJeff Kirsher #define QM_REG_QSTATUS_HIGH					 0x16802c
3874adfc5217SJeff Kirsher /* [R 32] Current queues in pipeline: Queues from 96 to 127 */
3875adfc5217SJeff Kirsher #define QM_REG_QSTATUS_HIGH_EXT_A				 0x16e408
3876adfc5217SJeff Kirsher /* [R 32] Current queues in pipeline: Queues from 0 to 31 */
3877adfc5217SJeff Kirsher #define QM_REG_QSTATUS_LOW					 0x168028
3878adfc5217SJeff Kirsher /* [R 32] Current queues in pipeline: Queues from 64 to 95 */
3879adfc5217SJeff Kirsher #define QM_REG_QSTATUS_LOW_EXT_A				 0x16e404
3880adfc5217SJeff Kirsher /* [R 24] The number of tasks queued for each queue; queues 63-0 */
3881adfc5217SJeff Kirsher #define QM_REG_QTASKCTR_0					 0x168308
3882adfc5217SJeff Kirsher /* [R 24] The number of tasks queued for each queue; queues 127-64 */
3883adfc5217SJeff Kirsher #define QM_REG_QTASKCTR_EXT_A_0 				 0x16e584
3884adfc5217SJeff Kirsher /* [RW 4] Queue tied to VOQ */
3885adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_0					 0x1680f4
3886adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_10					 0x16811c
3887adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_100					 0x16e49c
3888adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_101					 0x16e4a0
3889adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_102					 0x16e4a4
3890adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_103					 0x16e4a8
3891adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_104					 0x16e4ac
3892adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_105					 0x16e4b0
3893adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_106					 0x16e4b4
3894adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_107					 0x16e4b8
3895adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_108					 0x16e4bc
3896adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_109					 0x16e4c0
3897adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_11					 0x168120
3898adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_110					 0x16e4c4
3899adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_111					 0x16e4c8
3900adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_112					 0x16e4cc
3901adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_113					 0x16e4d0
3902adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_114					 0x16e4d4
3903adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_115					 0x16e4d8
3904adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_116					 0x16e4dc
3905adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_117					 0x16e4e0
3906adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_118					 0x16e4e4
3907adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_119					 0x16e4e8
3908adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_12					 0x168124
3909adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_120					 0x16e4ec
3910adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_121					 0x16e4f0
3911adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_122					 0x16e4f4
3912adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_123					 0x16e4f8
3913adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_124					 0x16e4fc
3914adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_125					 0x16e500
3915adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_126					 0x16e504
3916adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_127					 0x16e508
3917adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_13					 0x168128
3918adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_14					 0x16812c
3919adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_15					 0x168130
3920adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_16					 0x168134
3921adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_17					 0x168138
3922adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_21					 0x168148
3923adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_22					 0x16814c
3924adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_23					 0x168150
3925adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_24					 0x168154
3926adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_25					 0x168158
3927adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_26					 0x16815c
3928adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_27					 0x168160
3929adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_28					 0x168164
3930adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_29					 0x168168
3931adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_30					 0x16816c
3932adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_31					 0x168170
3933adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_32					 0x168174
3934adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_33					 0x168178
3935adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_34					 0x16817c
3936adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_35					 0x168180
3937adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_36					 0x168184
3938adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_37					 0x168188
3939adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_38					 0x16818c
3940adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_39					 0x168190
3941adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_40					 0x168194
3942adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_41					 0x168198
3943adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_42					 0x16819c
3944adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_43					 0x1681a0
3945adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_44					 0x1681a4
3946adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_45					 0x1681a8
3947adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_46					 0x1681ac
3948adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_47					 0x1681b0
3949adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_48					 0x1681b4
3950adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_49					 0x1681b8
3951adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_5					 0x168108
3952adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_50					 0x1681bc
3953adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_51					 0x1681c0
3954adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_52					 0x1681c4
3955adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_53					 0x1681c8
3956adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_54					 0x1681cc
3957adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_55					 0x1681d0
3958adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_56					 0x1681d4
3959adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_57					 0x1681d8
3960adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_58					 0x1681dc
3961adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_59					 0x1681e0
3962adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_6					 0x16810c
3963adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_60					 0x1681e4
3964adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_61					 0x1681e8
3965adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_62					 0x1681ec
3966adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_63					 0x1681f0
3967adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_64					 0x16e40c
3968adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_65					 0x16e410
3969adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_69					 0x16e420
3970adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_7					 0x168110
3971adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_70					 0x16e424
3972adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_71					 0x16e428
3973adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_72					 0x16e42c
3974adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_73					 0x16e430
3975adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_74					 0x16e434
3976adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_75					 0x16e438
3977adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_76					 0x16e43c
3978adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_77					 0x16e440
3979adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_78					 0x16e444
3980adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_79					 0x16e448
3981adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_8					 0x168114
3982adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_80					 0x16e44c
3983adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_81					 0x16e450
3984adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_85					 0x16e460
3985adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_86					 0x16e464
3986adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_87					 0x16e468
3987adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_88					 0x16e46c
3988adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_89					 0x16e470
3989adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_9					 0x168118
3990adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_90					 0x16e474
3991adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_91					 0x16e478
3992adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_92					 0x16e47c
3993adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_93					 0x16e480
3994adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_94					 0x16e484
3995adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_95					 0x16e488
3996adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_96					 0x16e48c
3997adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_97					 0x16e490
3998adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_98					 0x16e494
3999adfc5217SJeff Kirsher #define QM_REG_QVOQIDX_99					 0x16e498
4000adfc5217SJeff Kirsher /* [RW 1] Initialization bit command */
4001adfc5217SJeff Kirsher #define QM_REG_SOFT_RESET					 0x168428
4002adfc5217SJeff Kirsher /* [RW 8] The credit cost per every task in the QM. A value per each VOQ */
4003adfc5217SJeff Kirsher #define QM_REG_TASKCRDCOST_0					 0x16809c
4004adfc5217SJeff Kirsher #define QM_REG_TASKCRDCOST_1					 0x1680a0
4005adfc5217SJeff Kirsher #define QM_REG_TASKCRDCOST_2					 0x1680a4
4006adfc5217SJeff Kirsher #define QM_REG_TASKCRDCOST_4					 0x1680ac
4007adfc5217SJeff Kirsher #define QM_REG_TASKCRDCOST_5					 0x1680b0
4008adfc5217SJeff Kirsher /* [R 6] Keep the fill level of the fifo from write client 3 */
4009adfc5217SJeff Kirsher #define QM_REG_TQM_WRC_FIFOLVL					 0x168010
4010adfc5217SJeff Kirsher /* [R 6] Keep the fill level of the fifo from write client 2 */
4011adfc5217SJeff Kirsher #define QM_REG_UQM_WRC_FIFOLVL					 0x168008
4012adfc5217SJeff Kirsher /* [RC 32] Credit update error register */
4013adfc5217SJeff Kirsher #define QM_REG_VOQCRDERRREG					 0x168408
4014adfc5217SJeff Kirsher /* [R 16] The credit value for each VOQ */
4015adfc5217SJeff Kirsher #define QM_REG_VOQCREDIT_0					 0x1682d0
4016adfc5217SJeff Kirsher #define QM_REG_VOQCREDIT_1					 0x1682d4
4017adfc5217SJeff Kirsher #define QM_REG_VOQCREDIT_4					 0x1682e0
4018adfc5217SJeff Kirsher /* [RW 16] The credit value that if above the QM is considered almost full */
4019adfc5217SJeff Kirsher #define QM_REG_VOQCREDITAFULLTHR				 0x168090
4020adfc5217SJeff Kirsher /* [RW 16] The init and maximum credit for each VoQ */
4021adfc5217SJeff Kirsher #define QM_REG_VOQINITCREDIT_0					 0x168060
4022adfc5217SJeff Kirsher #define QM_REG_VOQINITCREDIT_1					 0x168064
4023adfc5217SJeff Kirsher #define QM_REG_VOQINITCREDIT_2					 0x168068
4024adfc5217SJeff Kirsher #define QM_REG_VOQINITCREDIT_4					 0x168070
4025adfc5217SJeff Kirsher #define QM_REG_VOQINITCREDIT_5					 0x168074
4026adfc5217SJeff Kirsher /* [RW 1] The port of which VOQ belongs */
4027adfc5217SJeff Kirsher #define QM_REG_VOQPORT_0					 0x1682a0
4028adfc5217SJeff Kirsher #define QM_REG_VOQPORT_1					 0x1682a4
4029adfc5217SJeff Kirsher #define QM_REG_VOQPORT_2					 0x1682a8
4030adfc5217SJeff Kirsher /* [RW 32] The physical queue number associated with each VOQ; queues 31-0 */
4031adfc5217SJeff Kirsher #define QM_REG_VOQQMASK_0_LSB					 0x168240
4032adfc5217SJeff Kirsher /* [RW 32] The physical queue number associated with each VOQ; queues 95-64 */
4033adfc5217SJeff Kirsher #define QM_REG_VOQQMASK_0_LSB_EXT_A				 0x16e524
4034adfc5217SJeff Kirsher /* [RW 32] The physical queue number associated with each VOQ; queues 63-32 */
4035adfc5217SJeff Kirsher #define QM_REG_VOQQMASK_0_MSB					 0x168244
4036adfc5217SJeff Kirsher /* [RW 32] The physical queue number associated with each VOQ; queues 127-96 */
4037adfc5217SJeff Kirsher #define QM_REG_VOQQMASK_0_MSB_EXT_A				 0x16e528
4038adfc5217SJeff Kirsher /* [RW 32] The physical queue number associated with each VOQ; queues 31-0 */
4039adfc5217SJeff Kirsher #define QM_REG_VOQQMASK_10_LSB					 0x168290
4040adfc5217SJeff Kirsher /* [RW 32] The physical queue number associated with each VOQ; queues 95-64 */
4041adfc5217SJeff Kirsher #define QM_REG_VOQQMASK_10_LSB_EXT_A				 0x16e574
4042adfc5217SJeff Kirsher /* [RW 32] The physical queue number associated with each VOQ; queues 63-32 */
4043adfc5217SJeff Kirsher #define QM_REG_VOQQMASK_10_MSB					 0x168294
4044adfc5217SJeff Kirsher /* [RW 32] The physical queue number associated with each VOQ; queues 127-96 */
4045adfc5217SJeff Kirsher #define QM_REG_VOQQMASK_10_MSB_EXT_A				 0x16e578
4046adfc5217SJeff Kirsher /* [RW 32] The physical queue number associated with each VOQ; queues 31-0 */
4047adfc5217SJeff Kirsher #define QM_REG_VOQQMASK_11_LSB					 0x168298
4048adfc5217SJeff Kirsher /* [RW 32] The physical queue number associated with each VOQ; queues 95-64 */
4049adfc5217SJeff Kirsher #define QM_REG_VOQQMASK_11_LSB_EXT_A				 0x16e57c
4050adfc5217SJeff Kirsher /* [RW 32] The physical queue number associated with each VOQ; queues 63-32 */
4051adfc5217SJeff Kirsher #define QM_REG_VOQQMASK_11_MSB					 0x16829c
4052adfc5217SJeff Kirsher /* [RW 32] The physical queue number associated with each VOQ; queues 127-96 */
4053adfc5217SJeff Kirsher #define QM_REG_VOQQMASK_11_MSB_EXT_A				 0x16e580
4054adfc5217SJeff Kirsher /* [RW 32] The physical queue number associated with each VOQ; queues 31-0 */
4055adfc5217SJeff Kirsher #define QM_REG_VOQQMASK_1_LSB					 0x168248
4056adfc5217SJeff Kirsher /* [RW 32] The physical queue number associated with each VOQ; queues 95-64 */
4057adfc5217SJeff Kirsher #define QM_REG_VOQQMASK_1_LSB_EXT_A				 0x16e52c
4058adfc5217SJeff Kirsher /* [RW 32] The physical queue number associated with each VOQ; queues 63-32 */
4059adfc5217SJeff Kirsher #define QM_REG_VOQQMASK_1_MSB					 0x16824c
4060adfc5217SJeff Kirsher /* [RW 32] The physical queue number associated with each VOQ; queues 127-96 */
4061adfc5217SJeff Kirsher #define QM_REG_VOQQMASK_1_MSB_EXT_A				 0x16e530
4062adfc5217SJeff Kirsher /* [RW 32] The physical queue number associated with each VOQ; queues 31-0 */
4063adfc5217SJeff Kirsher #define QM_REG_VOQQMASK_2_LSB					 0x168250
4064adfc5217SJeff Kirsher /* [RW 32] The physical queue number associated with each VOQ; queues 95-64 */
4065adfc5217SJeff Kirsher #define QM_REG_VOQQMASK_2_LSB_EXT_A				 0x16e534
4066adfc5217SJeff Kirsher /* [RW 32] The physical queue number associated with each VOQ; queues 63-32 */
4067adfc5217SJeff Kirsher #define QM_REG_VOQQMASK_2_MSB					 0x168254
4068adfc5217SJeff Kirsher /* [RW 32] The physical queue number associated with each VOQ; queues 127-96 */
4069adfc5217SJeff Kirsher #define QM_REG_VOQQMASK_2_MSB_EXT_A				 0x16e538
4070adfc5217SJeff Kirsher /* [RW 32] The physical queue number associated with each VOQ; queues 31-0 */
4071adfc5217SJeff Kirsher #define QM_REG_VOQQMASK_3_LSB					 0x168258
4072adfc5217SJeff Kirsher /* [RW 32] The physical queue number associated with each VOQ; queues 95-64 */
4073adfc5217SJeff Kirsher #define QM_REG_VOQQMASK_3_LSB_EXT_A				 0x16e53c
4074adfc5217SJeff Kirsher /* [RW 32] The physical queue number associated with each VOQ; queues 127-96 */
4075adfc5217SJeff Kirsher #define QM_REG_VOQQMASK_3_MSB_EXT_A				 0x16e540
4076adfc5217SJeff Kirsher /* [RW 32] The physical queue number associated with each VOQ; queues 31-0 */
4077adfc5217SJeff Kirsher #define QM_REG_VOQQMASK_4_LSB					 0x168260
4078adfc5217SJeff Kirsher /* [RW 32] The physical queue number associated with each VOQ; queues 95-64 */
4079adfc5217SJeff Kirsher #define QM_REG_VOQQMASK_4_LSB_EXT_A				 0x16e544
4080adfc5217SJeff Kirsher /* [RW 32] The physical queue number associated with each VOQ; queues 63-32 */
4081adfc5217SJeff Kirsher #define QM_REG_VOQQMASK_4_MSB					 0x168264
4082adfc5217SJeff Kirsher /* [RW 32] The physical queue number associated with each VOQ; queues 127-96 */
4083adfc5217SJeff Kirsher #define QM_REG_VOQQMASK_4_MSB_EXT_A				 0x16e548
4084adfc5217SJeff Kirsher /* [RW 32] The physical queue number associated with each VOQ; queues 31-0 */
4085adfc5217SJeff Kirsher #define QM_REG_VOQQMASK_5_LSB					 0x168268
4086adfc5217SJeff Kirsher /* [RW 32] The physical queue number associated with each VOQ; queues 95-64 */
4087adfc5217SJeff Kirsher #define QM_REG_VOQQMASK_5_LSB_EXT_A				 0x16e54c
4088adfc5217SJeff Kirsher /* [RW 32] The physical queue number associated with each VOQ; queues 63-32 */
4089adfc5217SJeff Kirsher #define QM_REG_VOQQMASK_5_MSB					 0x16826c
4090adfc5217SJeff Kirsher /* [RW 32] The physical queue number associated with each VOQ; queues 127-96 */
4091adfc5217SJeff Kirsher #define QM_REG_VOQQMASK_5_MSB_EXT_A				 0x16e550
4092adfc5217SJeff Kirsher /* [RW 32] The physical queue number associated with each VOQ; queues 31-0 */
4093adfc5217SJeff Kirsher #define QM_REG_VOQQMASK_6_LSB					 0x168270
4094adfc5217SJeff Kirsher /* [RW 32] The physical queue number associated with each VOQ; queues 95-64 */
4095adfc5217SJeff Kirsher #define QM_REG_VOQQMASK_6_LSB_EXT_A				 0x16e554
4096adfc5217SJeff Kirsher /* [RW 32] The physical queue number associated with each VOQ; queues 63-32 */
4097adfc5217SJeff Kirsher #define QM_REG_VOQQMASK_6_MSB					 0x168274
4098adfc5217SJeff Kirsher /* [RW 32] The physical queue number associated with each VOQ; queues 127-96 */
4099adfc5217SJeff Kirsher #define QM_REG_VOQQMASK_6_MSB_EXT_A				 0x16e558
4100adfc5217SJeff Kirsher /* [RW 32] The physical queue number associated with each VOQ; queues 31-0 */
4101adfc5217SJeff Kirsher #define QM_REG_VOQQMASK_7_LSB					 0x168278
4102adfc5217SJeff Kirsher /* [RW 32] The physical queue number associated with each VOQ; queues 95-64 */
4103adfc5217SJeff Kirsher #define QM_REG_VOQQMASK_7_LSB_EXT_A				 0x16e55c
4104adfc5217SJeff Kirsher /* [RW 32] The physical queue number associated with each VOQ; queues 63-32 */
4105adfc5217SJeff Kirsher #define QM_REG_VOQQMASK_7_MSB					 0x16827c
4106adfc5217SJeff Kirsher /* [RW 32] The physical queue number associated with each VOQ; queues 127-96 */
4107adfc5217SJeff Kirsher #define QM_REG_VOQQMASK_7_MSB_EXT_A				 0x16e560
4108adfc5217SJeff Kirsher /* [RW 32] The physical queue number associated with each VOQ; queues 31-0 */
4109adfc5217SJeff Kirsher #define QM_REG_VOQQMASK_8_LSB					 0x168280
4110adfc5217SJeff Kirsher /* [RW 32] The physical queue number associated with each VOQ; queues 95-64 */
4111adfc5217SJeff Kirsher #define QM_REG_VOQQMASK_8_LSB_EXT_A				 0x16e564
4112adfc5217SJeff Kirsher /* [RW 32] The physical queue number associated with each VOQ; queues 63-32 */
4113adfc5217SJeff Kirsher #define QM_REG_VOQQMASK_8_MSB					 0x168284
4114adfc5217SJeff Kirsher /* [RW 32] The physical queue number associated with each VOQ; queues 127-96 */
4115adfc5217SJeff Kirsher #define QM_REG_VOQQMASK_8_MSB_EXT_A				 0x16e568
4116adfc5217SJeff Kirsher /* [RW 32] The physical queue number associated with each VOQ; queues 31-0 */
4117adfc5217SJeff Kirsher #define QM_REG_VOQQMASK_9_LSB					 0x168288
4118adfc5217SJeff Kirsher /* [RW 32] The physical queue number associated with each VOQ; queues 95-64 */
4119adfc5217SJeff Kirsher #define QM_REG_VOQQMASK_9_LSB_EXT_A				 0x16e56c
4120adfc5217SJeff Kirsher /* [RW 32] The physical queue number associated with each VOQ; queues 127-96 */
4121adfc5217SJeff Kirsher #define QM_REG_VOQQMASK_9_MSB_EXT_A				 0x16e570
4122adfc5217SJeff Kirsher /* [RW 32] Wrr weights */
4123adfc5217SJeff Kirsher #define QM_REG_WRRWEIGHTS_0					 0x16880c
4124adfc5217SJeff Kirsher #define QM_REG_WRRWEIGHTS_1					 0x168810
4125adfc5217SJeff Kirsher #define QM_REG_WRRWEIGHTS_10					 0x168814
4126adfc5217SJeff Kirsher #define QM_REG_WRRWEIGHTS_11					 0x168818
4127adfc5217SJeff Kirsher #define QM_REG_WRRWEIGHTS_12					 0x16881c
4128adfc5217SJeff Kirsher #define QM_REG_WRRWEIGHTS_13					 0x168820
4129adfc5217SJeff Kirsher #define QM_REG_WRRWEIGHTS_14					 0x168824
4130adfc5217SJeff Kirsher #define QM_REG_WRRWEIGHTS_15					 0x168828
4131adfc5217SJeff Kirsher #define QM_REG_WRRWEIGHTS_16					 0x16e000
4132adfc5217SJeff Kirsher #define QM_REG_WRRWEIGHTS_17					 0x16e004
4133adfc5217SJeff Kirsher #define QM_REG_WRRWEIGHTS_18					 0x16e008
4134adfc5217SJeff Kirsher #define QM_REG_WRRWEIGHTS_19					 0x16e00c
4135adfc5217SJeff Kirsher #define QM_REG_WRRWEIGHTS_2					 0x16882c
4136adfc5217SJeff Kirsher #define QM_REG_WRRWEIGHTS_20					 0x16e010
4137adfc5217SJeff Kirsher #define QM_REG_WRRWEIGHTS_21					 0x16e014
4138adfc5217SJeff Kirsher #define QM_REG_WRRWEIGHTS_22					 0x16e018
4139adfc5217SJeff Kirsher #define QM_REG_WRRWEIGHTS_23					 0x16e01c
4140adfc5217SJeff Kirsher #define QM_REG_WRRWEIGHTS_24					 0x16e020
4141adfc5217SJeff Kirsher #define QM_REG_WRRWEIGHTS_25					 0x16e024
4142adfc5217SJeff Kirsher #define QM_REG_WRRWEIGHTS_26					 0x16e028
4143adfc5217SJeff Kirsher #define QM_REG_WRRWEIGHTS_27					 0x16e02c
4144adfc5217SJeff Kirsher #define QM_REG_WRRWEIGHTS_28					 0x16e030
4145adfc5217SJeff Kirsher #define QM_REG_WRRWEIGHTS_29					 0x16e034
4146adfc5217SJeff Kirsher #define QM_REG_WRRWEIGHTS_3					 0x168830
4147adfc5217SJeff Kirsher #define QM_REG_WRRWEIGHTS_30					 0x16e038
4148adfc5217SJeff Kirsher #define QM_REG_WRRWEIGHTS_31					 0x16e03c
4149adfc5217SJeff Kirsher #define QM_REG_WRRWEIGHTS_4					 0x168834
4150adfc5217SJeff Kirsher #define QM_REG_WRRWEIGHTS_5					 0x168838
4151adfc5217SJeff Kirsher #define QM_REG_WRRWEIGHTS_6					 0x16883c
4152adfc5217SJeff Kirsher #define QM_REG_WRRWEIGHTS_7					 0x168840
4153adfc5217SJeff Kirsher #define QM_REG_WRRWEIGHTS_8					 0x168844
4154adfc5217SJeff Kirsher #define QM_REG_WRRWEIGHTS_9					 0x168848
4155adfc5217SJeff Kirsher /* [R 6] Keep the fill level of the fifo from write client 1 */
4156adfc5217SJeff Kirsher #define QM_REG_XQM_WRC_FIFOLVL					 0x168000
4157adfc5217SJeff Kirsher /* [W 1] reset to parity interrupt */
4158adfc5217SJeff Kirsher #define SEM_FAST_REG_PARITY_RST					 0x18840
4159adfc5217SJeff Kirsher #define SRC_REG_COUNTFREE0					 0x40500
4160adfc5217SJeff Kirsher /* [RW 1] If clr the searcher is compatible to E1 A0 - support only two
4161adfc5217SJeff Kirsher    ports. If set the searcher support 8 functions. */
4162adfc5217SJeff Kirsher #define SRC_REG_E1HMF_ENABLE					 0x404cc
4163adfc5217SJeff Kirsher #define SRC_REG_FIRSTFREE0					 0x40510
4164adfc5217SJeff Kirsher #define SRC_REG_KEYRSS0_0					 0x40408
4165adfc5217SJeff Kirsher #define SRC_REG_KEYRSS0_7					 0x40424
4166adfc5217SJeff Kirsher #define SRC_REG_KEYRSS1_9					 0x40454
4167adfc5217SJeff Kirsher #define SRC_REG_KEYSEARCH_0					 0x40458
4168adfc5217SJeff Kirsher #define SRC_REG_KEYSEARCH_1					 0x4045c
4169adfc5217SJeff Kirsher #define SRC_REG_KEYSEARCH_2					 0x40460
4170adfc5217SJeff Kirsher #define SRC_REG_KEYSEARCH_3					 0x40464
4171adfc5217SJeff Kirsher #define SRC_REG_KEYSEARCH_4					 0x40468
4172adfc5217SJeff Kirsher #define SRC_REG_KEYSEARCH_5					 0x4046c
4173adfc5217SJeff Kirsher #define SRC_REG_KEYSEARCH_6					 0x40470
4174adfc5217SJeff Kirsher #define SRC_REG_KEYSEARCH_7					 0x40474
4175adfc5217SJeff Kirsher #define SRC_REG_KEYSEARCH_8					 0x40478
4176adfc5217SJeff Kirsher #define SRC_REG_KEYSEARCH_9					 0x4047c
4177adfc5217SJeff Kirsher #define SRC_REG_LASTFREE0					 0x40530
4178adfc5217SJeff Kirsher #define SRC_REG_NUMBER_HASH_BITS0				 0x40400
4179adfc5217SJeff Kirsher /* [RW 1] Reset internal state machines. */
4180adfc5217SJeff Kirsher #define SRC_REG_SOFT_RST					 0x4049c
4181adfc5217SJeff Kirsher /* [R 3] Interrupt register #0 read */
4182adfc5217SJeff Kirsher #define SRC_REG_SRC_INT_STS					 0x404ac
4183adfc5217SJeff Kirsher /* [RW 3] Parity mask register #0 read/write */
4184adfc5217SJeff Kirsher #define SRC_REG_SRC_PRTY_MASK					 0x404c8
4185adfc5217SJeff Kirsher /* [R 3] Parity register #0 read */
4186adfc5217SJeff Kirsher #define SRC_REG_SRC_PRTY_STS					 0x404bc
4187adfc5217SJeff Kirsher /* [RC 3] Parity register #0 read clear */
4188adfc5217SJeff Kirsher #define SRC_REG_SRC_PRTY_STS_CLR				 0x404c0
4189adfc5217SJeff Kirsher /* [R 4] Used to read the value of the XX protection CAM occupancy counter. */
4190adfc5217SJeff Kirsher #define TCM_REG_CAM_OCCUP					 0x5017c
4191adfc5217SJeff Kirsher /* [RW 1] CDU AG read Interface enable. If 0 - the request input is
4192adfc5217SJeff Kirsher    disregarded; valid output is deasserted; all other signals are treated as
4193adfc5217SJeff Kirsher    usual; if 1 - normal activity. */
4194adfc5217SJeff Kirsher #define TCM_REG_CDU_AG_RD_IFEN					 0x50034
4195adfc5217SJeff Kirsher /* [RW 1] CDU AG write Interface enable. If 0 - the request and valid input
4196adfc5217SJeff Kirsher    are disregarded; all other signals are treated as usual; if 1 - normal
4197adfc5217SJeff Kirsher    activity. */
4198adfc5217SJeff Kirsher #define TCM_REG_CDU_AG_WR_IFEN					 0x50030
4199adfc5217SJeff Kirsher /* [RW 1] CDU STORM read Interface enable. If 0 - the request input is
4200adfc5217SJeff Kirsher    disregarded; valid output is deasserted; all other signals are treated as
4201adfc5217SJeff Kirsher    usual; if 1 - normal activity. */
4202adfc5217SJeff Kirsher #define TCM_REG_CDU_SM_RD_IFEN					 0x5003c
4203adfc5217SJeff Kirsher /* [RW 1] CDU STORM write Interface enable. If 0 - the request and valid
4204adfc5217SJeff Kirsher    input is disregarded; all other signals are treated as usual; if 1 -
4205adfc5217SJeff Kirsher    normal activity. */
4206adfc5217SJeff Kirsher #define TCM_REG_CDU_SM_WR_IFEN					 0x50038
4207adfc5217SJeff Kirsher /* [RW 4] CFC output initial credit. Max credit available - 15.Write writes
4208adfc5217SJeff Kirsher    the initial credit value; read returns the current value of the credit
4209adfc5217SJeff Kirsher    counter. Must be initialized to 1 at start-up. */
4210adfc5217SJeff Kirsher #define TCM_REG_CFC_INIT_CRD					 0x50204
4211adfc5217SJeff Kirsher /* [RW 3] The weight of the CP input in the WRR mechanism. 0 stands for
4212adfc5217SJeff Kirsher    weight 8 (the most prioritised); 1 stands for weight 1(least
4213adfc5217SJeff Kirsher    prioritised); 2 stands for weight 2; tc. */
4214adfc5217SJeff Kirsher #define TCM_REG_CP_WEIGHT					 0x500c0
4215adfc5217SJeff Kirsher /* [RW 1] Input csem Interface enable. If 0 - the valid input is
4216adfc5217SJeff Kirsher    disregarded; acknowledge output is deasserted; all other signals are
4217adfc5217SJeff Kirsher    treated as usual; if 1 - normal activity. */
4218adfc5217SJeff Kirsher #define TCM_REG_CSEM_IFEN					 0x5002c
4219adfc5217SJeff Kirsher /* [RC 1] Message length mismatch (relative to last indication) at the In#9
4220adfc5217SJeff Kirsher    interface. */
4221adfc5217SJeff Kirsher #define TCM_REG_CSEM_LENGTH_MIS 				 0x50174
4222adfc5217SJeff Kirsher /* [RW 3] The weight of the input csem in the WRR mechanism. 0 stands for
4223adfc5217SJeff Kirsher    weight 8 (the most prioritised); 1 stands for weight 1(least
4224adfc5217SJeff Kirsher    prioritised); 2 stands for weight 2; tc. */
4225adfc5217SJeff Kirsher #define TCM_REG_CSEM_WEIGHT					 0x500bc
4226adfc5217SJeff Kirsher /* [RW 8] The Event ID in case of ErrorFlg is set in the input message. */
4227adfc5217SJeff Kirsher #define TCM_REG_ERR_EVNT_ID					 0x500a0
4228adfc5217SJeff Kirsher /* [RW 28] The CM erroneous header for QM and Timers formatting. */
4229adfc5217SJeff Kirsher #define TCM_REG_ERR_TCM_HDR					 0x5009c
4230adfc5217SJeff Kirsher /* [RW 8] The Event ID for Timers expiration. */
4231adfc5217SJeff Kirsher #define TCM_REG_EXPR_EVNT_ID					 0x500a4
4232adfc5217SJeff Kirsher /* [RW 8] FIC0 output initial credit. Max credit available - 255.Write
4233adfc5217SJeff Kirsher    writes the initial credit value; read returns the current value of the
4234adfc5217SJeff Kirsher    credit counter. Must be initialized to 64 at start-up. */
4235adfc5217SJeff Kirsher #define TCM_REG_FIC0_INIT_CRD					 0x5020c
4236adfc5217SJeff Kirsher /* [RW 8] FIC1 output initial credit. Max credit available - 255.Write
4237adfc5217SJeff Kirsher    writes the initial credit value; read returns the current value of the
4238adfc5217SJeff Kirsher    credit counter. Must be initialized to 64 at start-up. */
4239adfc5217SJeff Kirsher #define TCM_REG_FIC1_INIT_CRD					 0x50210
4240adfc5217SJeff Kirsher /* [RW 1] Arbitration between Input Arbiter groups: 0 - fair Round-Robin; 1
4241adfc5217SJeff Kirsher    - strict priority defined by ~tcm_registers_gr_ag_pr.gr_ag_pr;
4242adfc5217SJeff Kirsher    ~tcm_registers_gr_ld0_pr.gr_ld0_pr and
4243adfc5217SJeff Kirsher    ~tcm_registers_gr_ld1_pr.gr_ld1_pr. */
4244adfc5217SJeff Kirsher #define TCM_REG_GR_ARB_TYPE					 0x50114
4245adfc5217SJeff Kirsher /* [RW 2] Load (FIC0) channel group priority. The lowest priority is 0; the
4246adfc5217SJeff Kirsher    highest priority is 3. It is supposed that the Store channel is the
4247adfc5217SJeff Kirsher    compliment of the other 3 groups. */
4248adfc5217SJeff Kirsher #define TCM_REG_GR_LD0_PR					 0x5011c
4249adfc5217SJeff Kirsher /* [RW 2] Load (FIC1) channel group priority. The lowest priority is 0; the
4250adfc5217SJeff Kirsher    highest priority is 3. It is supposed that the Store channel is the
4251adfc5217SJeff Kirsher    compliment of the other 3 groups. */
4252adfc5217SJeff Kirsher #define TCM_REG_GR_LD1_PR					 0x50120
4253adfc5217SJeff Kirsher /* [RW 4] The number of double REG-pairs; loaded from the STORM context and
4254adfc5217SJeff Kirsher    sent to STORM; for a specific connection type. The double REG-pairs are
4255adfc5217SJeff Kirsher    used to align to STORM context row size of 128 bits. The offset of these
4256adfc5217SJeff Kirsher    data in the STORM context is always 0. Index _i stands for the connection
4257adfc5217SJeff Kirsher    type (one of 16). */
4258adfc5217SJeff Kirsher #define TCM_REG_N_SM_CTX_LD_0					 0x50050
4259adfc5217SJeff Kirsher #define TCM_REG_N_SM_CTX_LD_1					 0x50054
4260adfc5217SJeff Kirsher #define TCM_REG_N_SM_CTX_LD_2					 0x50058
4261adfc5217SJeff Kirsher #define TCM_REG_N_SM_CTX_LD_3					 0x5005c
4262adfc5217SJeff Kirsher #define TCM_REG_N_SM_CTX_LD_4					 0x50060
4263adfc5217SJeff Kirsher #define TCM_REG_N_SM_CTX_LD_5					 0x50064
4264adfc5217SJeff Kirsher /* [RW 1] Input pbf Interface enable. If 0 - the valid input is disregarded;
4265adfc5217SJeff Kirsher    acknowledge output is deasserted; all other signals are treated as usual;
4266adfc5217SJeff Kirsher    if 1 - normal activity. */
4267adfc5217SJeff Kirsher #define TCM_REG_PBF_IFEN					 0x50024
4268adfc5217SJeff Kirsher /* [RC 1] Message length mismatch (relative to last indication) at the In#7
4269adfc5217SJeff Kirsher    interface. */
4270adfc5217SJeff Kirsher #define TCM_REG_PBF_LENGTH_MIS					 0x5016c
4271adfc5217SJeff Kirsher /* [RW 3] The weight of the input pbf in the WRR mechanism. 0 stands for
4272adfc5217SJeff Kirsher    weight 8 (the most prioritised); 1 stands for weight 1(least
4273adfc5217SJeff Kirsher    prioritised); 2 stands for weight 2; tc. */
4274adfc5217SJeff Kirsher #define TCM_REG_PBF_WEIGHT					 0x500b4
4275adfc5217SJeff Kirsher #define TCM_REG_PHYS_QNUM0_0					 0x500e0
4276adfc5217SJeff Kirsher #define TCM_REG_PHYS_QNUM0_1					 0x500e4
4277adfc5217SJeff Kirsher #define TCM_REG_PHYS_QNUM1_0					 0x500e8
4278adfc5217SJeff Kirsher #define TCM_REG_PHYS_QNUM1_1					 0x500ec
4279adfc5217SJeff Kirsher #define TCM_REG_PHYS_QNUM2_0					 0x500f0
4280adfc5217SJeff Kirsher #define TCM_REG_PHYS_QNUM2_1					 0x500f4
4281adfc5217SJeff Kirsher #define TCM_REG_PHYS_QNUM3_0					 0x500f8
4282adfc5217SJeff Kirsher #define TCM_REG_PHYS_QNUM3_1					 0x500fc
4283adfc5217SJeff Kirsher /* [RW 1] Input prs Interface enable. If 0 - the valid input is disregarded;
4284adfc5217SJeff Kirsher    acknowledge output is deasserted; all other signals are treated as usual;
4285adfc5217SJeff Kirsher    if 1 - normal activity. */
4286adfc5217SJeff Kirsher #define TCM_REG_PRS_IFEN					 0x50020
4287adfc5217SJeff Kirsher /* [RC 1] Message length mismatch (relative to last indication) at the In#6
4288adfc5217SJeff Kirsher    interface. */
4289adfc5217SJeff Kirsher #define TCM_REG_PRS_LENGTH_MIS					 0x50168
4290adfc5217SJeff Kirsher /* [RW 3] The weight of the input prs in the WRR mechanism. 0 stands for
4291adfc5217SJeff Kirsher    weight 8 (the most prioritised); 1 stands for weight 1(least
4292adfc5217SJeff Kirsher    prioritised); 2 stands for weight 2; tc. */
4293adfc5217SJeff Kirsher #define TCM_REG_PRS_WEIGHT					 0x500b0
4294adfc5217SJeff Kirsher /* [RW 8] The Event ID for Timers formatting in case of stop done. */
4295adfc5217SJeff Kirsher #define TCM_REG_STOP_EVNT_ID					 0x500a8
4296adfc5217SJeff Kirsher /* [RC 1] Message length mismatch (relative to last indication) at the STORM
4297adfc5217SJeff Kirsher    interface. */
4298adfc5217SJeff Kirsher #define TCM_REG_STORM_LENGTH_MIS				 0x50160
4299adfc5217SJeff Kirsher /* [RW 1] STORM - CM Interface enable. If 0 - the valid input is
4300adfc5217SJeff Kirsher    disregarded; acknowledge output is deasserted; all other signals are
4301adfc5217SJeff Kirsher    treated as usual; if 1 - normal activity. */
4302adfc5217SJeff Kirsher #define TCM_REG_STORM_TCM_IFEN					 0x50010
4303adfc5217SJeff Kirsher /* [RW 3] The weight of the STORM input in the WRR mechanism. 0 stands for
4304adfc5217SJeff Kirsher    weight 8 (the most prioritised); 1 stands for weight 1(least
4305adfc5217SJeff Kirsher    prioritised); 2 stands for weight 2; tc. */
4306adfc5217SJeff Kirsher #define TCM_REG_STORM_WEIGHT					 0x500ac
4307adfc5217SJeff Kirsher /* [RW 1] CM - CFC Interface enable. If 0 - the valid input is disregarded;
4308adfc5217SJeff Kirsher    acknowledge output is deasserted; all other signals are treated as usual;
4309adfc5217SJeff Kirsher    if 1 - normal activity. */
4310adfc5217SJeff Kirsher #define TCM_REG_TCM_CFC_IFEN					 0x50040
4311adfc5217SJeff Kirsher /* [RW 11] Interrupt mask register #0 read/write */
4312adfc5217SJeff Kirsher #define TCM_REG_TCM_INT_MASK					 0x501dc
4313adfc5217SJeff Kirsher /* [R 11] Interrupt register #0 read */
4314adfc5217SJeff Kirsher #define TCM_REG_TCM_INT_STS					 0x501d0
4315adfc5217SJeff Kirsher /* [RW 27] Parity mask register #0 read/write */
4316adfc5217SJeff Kirsher #define TCM_REG_TCM_PRTY_MASK					 0x501ec
4317adfc5217SJeff Kirsher /* [R 27] Parity register #0 read */
4318adfc5217SJeff Kirsher #define TCM_REG_TCM_PRTY_STS					 0x501e0
4319adfc5217SJeff Kirsher /* [RC 27] Parity register #0 read clear */
4320adfc5217SJeff Kirsher #define TCM_REG_TCM_PRTY_STS_CLR				 0x501e4
4321adfc5217SJeff Kirsher /* [RW 3] The size of AG context region 0 in REG-pairs. Designates the MS
4322adfc5217SJeff Kirsher    REG-pair number (e.g. if region 0 is 6 REG-pairs; the value should be 5).
4323adfc5217SJeff Kirsher    Is used to determine the number of the AG context REG-pairs written back;
4324adfc5217SJeff Kirsher    when the input message Reg1WbFlg isn't set. */
4325adfc5217SJeff Kirsher #define TCM_REG_TCM_REG0_SZ					 0x500d8
4326adfc5217SJeff Kirsher /* [RW 1] CM - STORM 0 Interface enable. If 0 - the acknowledge input is
4327adfc5217SJeff Kirsher    disregarded; valid is deasserted; all other signals are treated as usual;
4328adfc5217SJeff Kirsher    if 1 - normal activity. */
4329adfc5217SJeff Kirsher #define TCM_REG_TCM_STORM0_IFEN 				 0x50004
4330adfc5217SJeff Kirsher /* [RW 1] CM - STORM 1 Interface enable. If 0 - the acknowledge input is
4331adfc5217SJeff Kirsher    disregarded; valid is deasserted; all other signals are treated as usual;
4332adfc5217SJeff Kirsher    if 1 - normal activity. */
4333adfc5217SJeff Kirsher #define TCM_REG_TCM_STORM1_IFEN 				 0x50008
4334adfc5217SJeff Kirsher /* [RW 1] CM - QM Interface enable. If 0 - the acknowledge input is
4335adfc5217SJeff Kirsher    disregarded; valid is deasserted; all other signals are treated as usual;
4336adfc5217SJeff Kirsher    if 1 - normal activity. */
4337adfc5217SJeff Kirsher #define TCM_REG_TCM_TQM_IFEN					 0x5000c
4338adfc5217SJeff Kirsher /* [RW 1] If set the Q index; received from the QM is inserted to event ID. */
4339adfc5217SJeff Kirsher #define TCM_REG_TCM_TQM_USE_Q					 0x500d4
4340adfc5217SJeff Kirsher /* [RW 28] The CM header for Timers expiration command. */
4341adfc5217SJeff Kirsher #define TCM_REG_TM_TCM_HDR					 0x50098
4342adfc5217SJeff Kirsher /* [RW 1] Timers - CM Interface enable. If 0 - the valid input is
4343adfc5217SJeff Kirsher    disregarded; acknowledge output is deasserted; all other signals are
4344adfc5217SJeff Kirsher    treated as usual; if 1 - normal activity. */
4345adfc5217SJeff Kirsher #define TCM_REG_TM_TCM_IFEN					 0x5001c
4346adfc5217SJeff Kirsher /* [RW 3] The weight of the Timers input in the WRR mechanism. 0 stands for
4347adfc5217SJeff Kirsher    weight 8 (the most prioritised); 1 stands for weight 1(least
4348adfc5217SJeff Kirsher    prioritised); 2 stands for weight 2; tc. */
4349adfc5217SJeff Kirsher #define TCM_REG_TM_WEIGHT					 0x500d0
4350adfc5217SJeff Kirsher /* [RW 6] QM output initial credit. Max credit available - 32.Write writes
4351adfc5217SJeff Kirsher    the initial credit value; read returns the current value of the credit
4352adfc5217SJeff Kirsher    counter. Must be initialized to 32 at start-up. */
4353adfc5217SJeff Kirsher #define TCM_REG_TQM_INIT_CRD					 0x5021c
4354adfc5217SJeff Kirsher /* [RW 3] The weight of the QM (primary) input in the WRR mechanism. 0
4355adfc5217SJeff Kirsher    stands for weight 8 (the most prioritised); 1 stands for weight 1(least
4356adfc5217SJeff Kirsher    prioritised); 2 stands for weight 2; tc. */
4357adfc5217SJeff Kirsher #define TCM_REG_TQM_P_WEIGHT					 0x500c8
4358adfc5217SJeff Kirsher /* [RW 3] The weight of the QM (secondary) input in the WRR mechanism. 0
4359adfc5217SJeff Kirsher    stands for weight 8 (the most prioritised); 1 stands for weight 1(least
4360adfc5217SJeff Kirsher    prioritised); 2 stands for weight 2; tc. */
4361adfc5217SJeff Kirsher #define TCM_REG_TQM_S_WEIGHT					 0x500cc
4362adfc5217SJeff Kirsher /* [RW 28] The CM header value for QM request (primary). */
4363adfc5217SJeff Kirsher #define TCM_REG_TQM_TCM_HDR_P					 0x50090
4364adfc5217SJeff Kirsher /* [RW 28] The CM header value for QM request (secondary). */
4365adfc5217SJeff Kirsher #define TCM_REG_TQM_TCM_HDR_S					 0x50094
4366adfc5217SJeff Kirsher /* [RW 1] QM - CM Interface enable. If 0 - the valid input is disregarded;
4367adfc5217SJeff Kirsher    acknowledge output is deasserted; all other signals are treated as usual;
4368adfc5217SJeff Kirsher    if 1 - normal activity. */
4369adfc5217SJeff Kirsher #define TCM_REG_TQM_TCM_IFEN					 0x50014
4370adfc5217SJeff Kirsher /* [RW 1] Input SDM Interface enable. If 0 - the valid input is disregarded;
4371adfc5217SJeff Kirsher    acknowledge output is deasserted; all other signals are treated as usual;
4372adfc5217SJeff Kirsher    if 1 - normal activity. */
4373adfc5217SJeff Kirsher #define TCM_REG_TSDM_IFEN					 0x50018
4374adfc5217SJeff Kirsher /* [RC 1] Message length mismatch (relative to last indication) at the SDM
4375adfc5217SJeff Kirsher    interface. */
4376adfc5217SJeff Kirsher #define TCM_REG_TSDM_LENGTH_MIS 				 0x50164
4377adfc5217SJeff Kirsher /* [RW 3] The weight of the SDM input in the WRR mechanism. 0 stands for
4378adfc5217SJeff Kirsher    weight 8 (the most prioritised); 1 stands for weight 1(least
4379adfc5217SJeff Kirsher    prioritised); 2 stands for weight 2; tc. */
4380adfc5217SJeff Kirsher #define TCM_REG_TSDM_WEIGHT					 0x500c4
4381adfc5217SJeff Kirsher /* [RW 1] Input usem Interface enable. If 0 - the valid input is
4382adfc5217SJeff Kirsher    disregarded; acknowledge output is deasserted; all other signals are
4383adfc5217SJeff Kirsher    treated as usual; if 1 - normal activity. */
4384adfc5217SJeff Kirsher #define TCM_REG_USEM_IFEN					 0x50028
4385adfc5217SJeff Kirsher /* [RC 1] Message length mismatch (relative to last indication) at the In#8
4386adfc5217SJeff Kirsher    interface. */
4387adfc5217SJeff Kirsher #define TCM_REG_USEM_LENGTH_MIS 				 0x50170
4388adfc5217SJeff Kirsher /* [RW 3] The weight of the input usem in the WRR mechanism. 0 stands for
4389adfc5217SJeff Kirsher    weight 8 (the most prioritised); 1 stands for weight 1(least
4390adfc5217SJeff Kirsher    prioritised); 2 stands for weight 2; tc. */
4391adfc5217SJeff Kirsher #define TCM_REG_USEM_WEIGHT					 0x500b8
4392adfc5217SJeff Kirsher /* [RW 21] Indirect access to the descriptor table of the XX protection
4393adfc5217SJeff Kirsher    mechanism. The fields are: [5:0] - length of the message; 15:6] - message
4394adfc5217SJeff Kirsher    pointer; 20:16] - next pointer. */
4395adfc5217SJeff Kirsher #define TCM_REG_XX_DESCR_TABLE					 0x50280
4396adfc5217SJeff Kirsher #define TCM_REG_XX_DESCR_TABLE_SIZE				 29
4397adfc5217SJeff Kirsher /* [R 6] Use to read the value of XX protection Free counter. */
4398adfc5217SJeff Kirsher #define TCM_REG_XX_FREE 					 0x50178
4399adfc5217SJeff Kirsher /* [RW 6] Initial value for the credit counter; responsible for fulfilling
4400adfc5217SJeff Kirsher    of the Input Stage XX protection buffer by the XX protection pending
4401adfc5217SJeff Kirsher    messages. Max credit available - 127.Write writes the initial credit
4402adfc5217SJeff Kirsher    value; read returns the current value of the credit counter. Must be
4403adfc5217SJeff Kirsher    initialized to 19 at start-up. */
4404adfc5217SJeff Kirsher #define TCM_REG_XX_INIT_CRD					 0x50220
4405adfc5217SJeff Kirsher /* [RW 6] Maximum link list size (messages locked) per connection in the XX
4406adfc5217SJeff Kirsher    protection. */
4407adfc5217SJeff Kirsher #define TCM_REG_XX_MAX_LL_SZ					 0x50044
4408adfc5217SJeff Kirsher /* [RW 6] The maximum number of pending messages; which may be stored in XX
4409adfc5217SJeff Kirsher    protection. ~tcm_registers_xx_free.xx_free is read on read. */
4410adfc5217SJeff Kirsher #define TCM_REG_XX_MSG_NUM					 0x50224
4411adfc5217SJeff Kirsher /* [RW 8] The Event ID; sent to the STORM in case of XX overflow. */
4412adfc5217SJeff Kirsher #define TCM_REG_XX_OVFL_EVNT_ID 				 0x50048
4413adfc5217SJeff Kirsher /* [RW 16] Indirect access to the XX table of the XX protection mechanism.
4414adfc5217SJeff Kirsher    The fields are:[4:0] - tail pointer; [10:5] - Link List size; 15:11] -
4415adfc5217SJeff Kirsher    header pointer. */
4416adfc5217SJeff Kirsher #define TCM_REG_XX_TABLE					 0x50240
4417adfc5217SJeff Kirsher /* [RW 4] Load value for cfc ac credit cnt. */
4418adfc5217SJeff Kirsher #define TM_REG_CFC_AC_CRDCNT_VAL				 0x164208
4419adfc5217SJeff Kirsher /* [RW 4] Load value for cfc cld credit cnt. */
4420adfc5217SJeff Kirsher #define TM_REG_CFC_CLD_CRDCNT_VAL				 0x164210
4421adfc5217SJeff Kirsher /* [RW 8] Client0 context region. */
4422adfc5217SJeff Kirsher #define TM_REG_CL0_CONT_REGION					 0x164030
4423adfc5217SJeff Kirsher /* [RW 8] Client1 context region. */
4424adfc5217SJeff Kirsher #define TM_REG_CL1_CONT_REGION					 0x164034
4425adfc5217SJeff Kirsher /* [RW 8] Client2 context region. */
4426adfc5217SJeff Kirsher #define TM_REG_CL2_CONT_REGION					 0x164038
4427adfc5217SJeff Kirsher /* [RW 2] Client in High priority client number. */
4428adfc5217SJeff Kirsher #define TM_REG_CLIN_PRIOR0_CLIENT				 0x164024
4429adfc5217SJeff Kirsher /* [RW 4] Load value for clout0 cred cnt. */
4430adfc5217SJeff Kirsher #define TM_REG_CLOUT_CRDCNT0_VAL				 0x164220
4431adfc5217SJeff Kirsher /* [RW 4] Load value for clout1 cred cnt. */
4432adfc5217SJeff Kirsher #define TM_REG_CLOUT_CRDCNT1_VAL				 0x164228
4433adfc5217SJeff Kirsher /* [RW 4] Load value for clout2 cred cnt. */
4434adfc5217SJeff Kirsher #define TM_REG_CLOUT_CRDCNT2_VAL				 0x164230
4435adfc5217SJeff Kirsher /* [RW 1] Enable client0 input. */
4436adfc5217SJeff Kirsher #define TM_REG_EN_CL0_INPUT					 0x164008
4437adfc5217SJeff Kirsher /* [RW 1] Enable client1 input. */
4438adfc5217SJeff Kirsher #define TM_REG_EN_CL1_INPUT					 0x16400c
4439adfc5217SJeff Kirsher /* [RW 1] Enable client2 input. */
4440adfc5217SJeff Kirsher #define TM_REG_EN_CL2_INPUT					 0x164010
4441adfc5217SJeff Kirsher #define TM_REG_EN_LINEAR0_TIMER 				 0x164014
4442adfc5217SJeff Kirsher /* [RW 1] Enable real time counter. */
4443adfc5217SJeff Kirsher #define TM_REG_EN_REAL_TIME_CNT 				 0x1640d8
4444adfc5217SJeff Kirsher /* [RW 1] Enable for Timers state machines. */
4445adfc5217SJeff Kirsher #define TM_REG_EN_TIMERS					 0x164000
4446adfc5217SJeff Kirsher /* [RW 4] Load value for expiration credit cnt. CFC max number of
4447adfc5217SJeff Kirsher    outstanding load requests for timers (expiration) context loading. */
4448adfc5217SJeff Kirsher #define TM_REG_EXP_CRDCNT_VAL					 0x164238
4449adfc5217SJeff Kirsher /* [RW 32] Linear0 logic address. */
4450adfc5217SJeff Kirsher #define TM_REG_LIN0_LOGIC_ADDR					 0x164240
4451adfc5217SJeff Kirsher /* [RW 18] Linear0 Max active cid (in banks of 32 entries). */
4452adfc5217SJeff Kirsher #define TM_REG_LIN0_MAX_ACTIVE_CID				 0x164048
4453adfc5217SJeff Kirsher /* [ST 16] Linear0 Number of scans counter. */
4454adfc5217SJeff Kirsher #define TM_REG_LIN0_NUM_SCANS					 0x1640a0
4455adfc5217SJeff Kirsher /* [WB 64] Linear0 phy address. */
4456adfc5217SJeff Kirsher #define TM_REG_LIN0_PHY_ADDR					 0x164270
4457adfc5217SJeff Kirsher /* [RW 1] Linear0 physical address valid. */
4458adfc5217SJeff Kirsher #define TM_REG_LIN0_PHY_ADDR_VALID				 0x164248
4459adfc5217SJeff Kirsher #define TM_REG_LIN0_SCAN_ON					 0x1640d0
4460adfc5217SJeff Kirsher /* [RW 24] Linear0 array scan timeout. */
4461adfc5217SJeff Kirsher #define TM_REG_LIN0_SCAN_TIME					 0x16403c
4462adfc5217SJeff Kirsher #define TM_REG_LIN0_VNIC_UC					 0x164128
4463adfc5217SJeff Kirsher /* [RW 32] Linear1 logic address. */
4464adfc5217SJeff Kirsher #define TM_REG_LIN1_LOGIC_ADDR					 0x164250
4465adfc5217SJeff Kirsher /* [WB 64] Linear1 phy address. */
4466adfc5217SJeff Kirsher #define TM_REG_LIN1_PHY_ADDR					 0x164280
4467adfc5217SJeff Kirsher /* [RW 1] Linear1 physical address valid. */
4468adfc5217SJeff Kirsher #define TM_REG_LIN1_PHY_ADDR_VALID				 0x164258
4469adfc5217SJeff Kirsher /* [RW 6] Linear timer set_clear fifo threshold. */
4470adfc5217SJeff Kirsher #define TM_REG_LIN_SETCLR_FIFO_ALFULL_THR			 0x164070
4471adfc5217SJeff Kirsher /* [RW 2] Load value for pci arbiter credit cnt. */
4472adfc5217SJeff Kirsher #define TM_REG_PCIARB_CRDCNT_VAL				 0x164260
4473adfc5217SJeff Kirsher /* [RW 20] The amount of hardware cycles for each timer tick. */
4474adfc5217SJeff Kirsher #define TM_REG_TIMER_TICK_SIZE					 0x16401c
4475adfc5217SJeff Kirsher /* [RW 8] Timers Context region. */
4476adfc5217SJeff Kirsher #define TM_REG_TM_CONTEXT_REGION				 0x164044
4477adfc5217SJeff Kirsher /* [RW 1] Interrupt mask register #0 read/write */
4478adfc5217SJeff Kirsher #define TM_REG_TM_INT_MASK					 0x1640fc
4479adfc5217SJeff Kirsher /* [R 1] Interrupt register #0 read */
4480adfc5217SJeff Kirsher #define TM_REG_TM_INT_STS					 0x1640f0
4481adfc5217SJeff Kirsher /* [RW 7] Parity mask register #0 read/write */
4482adfc5217SJeff Kirsher #define TM_REG_TM_PRTY_MASK					 0x16410c
4483adfc5217SJeff Kirsher /* [RC 7] Parity register #0 read clear */
4484adfc5217SJeff Kirsher #define TM_REG_TM_PRTY_STS_CLR					 0x164104
4485adfc5217SJeff Kirsher /* [RW 8] The event id for aggregated interrupt 0 */
4486adfc5217SJeff Kirsher #define TSDM_REG_AGG_INT_EVENT_0				 0x42038
4487adfc5217SJeff Kirsher #define TSDM_REG_AGG_INT_EVENT_1				 0x4203c
4488adfc5217SJeff Kirsher #define TSDM_REG_AGG_INT_EVENT_2				 0x42040
4489adfc5217SJeff Kirsher #define TSDM_REG_AGG_INT_EVENT_3				 0x42044
4490adfc5217SJeff Kirsher #define TSDM_REG_AGG_INT_EVENT_4				 0x42048
4491adfc5217SJeff Kirsher /* [RW 1] The T bit for aggregated interrupt 0 */
4492adfc5217SJeff Kirsher #define TSDM_REG_AGG_INT_T_0					 0x420b8
4493adfc5217SJeff Kirsher #define TSDM_REG_AGG_INT_T_1					 0x420bc
4494adfc5217SJeff Kirsher /* [RW 13] The start address in the internal RAM for the cfc_rsp lcid */
4495adfc5217SJeff Kirsher #define TSDM_REG_CFC_RSP_START_ADDR				 0x42008
4496adfc5217SJeff Kirsher /* [RW 16] The maximum value of the completion counter #0 */
4497adfc5217SJeff Kirsher #define TSDM_REG_CMP_COUNTER_MAX0				 0x4201c
4498adfc5217SJeff Kirsher /* [RW 16] The maximum value of the completion counter #1 */
4499adfc5217SJeff Kirsher #define TSDM_REG_CMP_COUNTER_MAX1				 0x42020
4500adfc5217SJeff Kirsher /* [RW 16] The maximum value of the completion counter #2 */
4501adfc5217SJeff Kirsher #define TSDM_REG_CMP_COUNTER_MAX2				 0x42024
4502adfc5217SJeff Kirsher /* [RW 16] The maximum value of the completion counter #3 */
4503adfc5217SJeff Kirsher #define TSDM_REG_CMP_COUNTER_MAX3				 0x42028
4504adfc5217SJeff Kirsher /* [RW 13] The start address in the internal RAM for the completion
4505adfc5217SJeff Kirsher    counters. */
4506adfc5217SJeff Kirsher #define TSDM_REG_CMP_COUNTER_START_ADDR 			 0x4200c
4507adfc5217SJeff Kirsher #define TSDM_REG_ENABLE_IN1					 0x42238
4508adfc5217SJeff Kirsher #define TSDM_REG_ENABLE_IN2					 0x4223c
4509adfc5217SJeff Kirsher #define TSDM_REG_ENABLE_OUT1					 0x42240
4510adfc5217SJeff Kirsher #define TSDM_REG_ENABLE_OUT2					 0x42244
4511adfc5217SJeff Kirsher /* [RW 4] The initial number of messages that can be sent to the pxp control
4512adfc5217SJeff Kirsher    interface without receiving any ACK. */
4513adfc5217SJeff Kirsher #define TSDM_REG_INIT_CREDIT_PXP_CTRL				 0x424bc
4514adfc5217SJeff Kirsher /* [ST 32] The number of ACK after placement messages received */
4515adfc5217SJeff Kirsher #define TSDM_REG_NUM_OF_ACK_AFTER_PLACE 			 0x4227c
4516adfc5217SJeff Kirsher /* [ST 32] The number of packet end messages received from the parser */
4517adfc5217SJeff Kirsher #define TSDM_REG_NUM_OF_PKT_END_MSG				 0x42274
4518adfc5217SJeff Kirsher /* [ST 32] The number of requests received from the pxp async if */
4519adfc5217SJeff Kirsher #define TSDM_REG_NUM_OF_PXP_ASYNC_REQ				 0x42278
4520adfc5217SJeff Kirsher /* [ST 32] The number of commands received in queue 0 */
4521adfc5217SJeff Kirsher #define TSDM_REG_NUM_OF_Q0_CMD					 0x42248
4522adfc5217SJeff Kirsher /* [ST 32] The number of commands received in queue 10 */
4523adfc5217SJeff Kirsher #define TSDM_REG_NUM_OF_Q10_CMD 				 0x4226c
4524adfc5217SJeff Kirsher /* [ST 32] The number of commands received in queue 11 */
4525adfc5217SJeff Kirsher #define TSDM_REG_NUM_OF_Q11_CMD 				 0x42270
4526adfc5217SJeff Kirsher /* [ST 32] The number of commands received in queue 1 */
4527adfc5217SJeff Kirsher #define TSDM_REG_NUM_OF_Q1_CMD					 0x4224c
4528adfc5217SJeff Kirsher /* [ST 32] The number of commands received in queue 3 */
4529adfc5217SJeff Kirsher #define TSDM_REG_NUM_OF_Q3_CMD					 0x42250
4530adfc5217SJeff Kirsher /* [ST 32] The number of commands received in queue 4 */
4531adfc5217SJeff Kirsher #define TSDM_REG_NUM_OF_Q4_CMD					 0x42254
4532adfc5217SJeff Kirsher /* [ST 32] The number of commands received in queue 5 */
4533adfc5217SJeff Kirsher #define TSDM_REG_NUM_OF_Q5_CMD					 0x42258
4534adfc5217SJeff Kirsher /* [ST 32] The number of commands received in queue 6 */
4535adfc5217SJeff Kirsher #define TSDM_REG_NUM_OF_Q6_CMD					 0x4225c
4536adfc5217SJeff Kirsher /* [ST 32] The number of commands received in queue 7 */
4537adfc5217SJeff Kirsher #define TSDM_REG_NUM_OF_Q7_CMD					 0x42260
4538adfc5217SJeff Kirsher /* [ST 32] The number of commands received in queue 8 */
4539adfc5217SJeff Kirsher #define TSDM_REG_NUM_OF_Q8_CMD					 0x42264
4540adfc5217SJeff Kirsher /* [ST 32] The number of commands received in queue 9 */
4541adfc5217SJeff Kirsher #define TSDM_REG_NUM_OF_Q9_CMD					 0x42268
4542adfc5217SJeff Kirsher /* [RW 13] The start address in the internal RAM for the packet end message */
4543adfc5217SJeff Kirsher #define TSDM_REG_PCK_END_MSG_START_ADDR 			 0x42014
4544adfc5217SJeff Kirsher /* [RW 13] The start address in the internal RAM for queue counters */
4545adfc5217SJeff Kirsher #define TSDM_REG_Q_COUNTER_START_ADDR				 0x42010
4546adfc5217SJeff Kirsher /* [R 1] pxp_ctrl rd_data fifo empty in sdm_dma_rsp block */
4547adfc5217SJeff Kirsher #define TSDM_REG_RSP_PXP_CTRL_RDATA_EMPTY			 0x42548
4548adfc5217SJeff Kirsher /* [R 1] parser fifo empty in sdm_sync block */
4549adfc5217SJeff Kirsher #define TSDM_REG_SYNC_PARSER_EMPTY				 0x42550
4550adfc5217SJeff Kirsher /* [R 1] parser serial fifo empty in sdm_sync block */
4551adfc5217SJeff Kirsher #define TSDM_REG_SYNC_SYNC_EMPTY				 0x42558
4552adfc5217SJeff Kirsher /* [RW 32] Tick for timer counter. Applicable only when
4553adfc5217SJeff Kirsher    ~tsdm_registers_timer_tick_enable.timer_tick_enable =1 */
4554adfc5217SJeff Kirsher #define TSDM_REG_TIMER_TICK					 0x42000
4555adfc5217SJeff Kirsher /* [RW 32] Interrupt mask register #0 read/write */
4556adfc5217SJeff Kirsher #define TSDM_REG_TSDM_INT_MASK_0				 0x4229c
4557adfc5217SJeff Kirsher #define TSDM_REG_TSDM_INT_MASK_1				 0x422ac
4558adfc5217SJeff Kirsher /* [R 32] Interrupt register #0 read */
4559adfc5217SJeff Kirsher #define TSDM_REG_TSDM_INT_STS_0 				 0x42290
4560adfc5217SJeff Kirsher #define TSDM_REG_TSDM_INT_STS_1 				 0x422a0
4561adfc5217SJeff Kirsher /* [RW 11] Parity mask register #0 read/write */
4562adfc5217SJeff Kirsher #define TSDM_REG_TSDM_PRTY_MASK 				 0x422bc
4563adfc5217SJeff Kirsher /* [R 11] Parity register #0 read */
4564adfc5217SJeff Kirsher #define TSDM_REG_TSDM_PRTY_STS					 0x422b0
4565adfc5217SJeff Kirsher /* [RC 11] Parity register #0 read clear */
4566adfc5217SJeff Kirsher #define TSDM_REG_TSDM_PRTY_STS_CLR				 0x422b4
4567adfc5217SJeff Kirsher /* [RW 5] The number of time_slots in the arbitration cycle */
4568adfc5217SJeff Kirsher #define TSEM_REG_ARB_CYCLE_SIZE 				 0x180034
4569adfc5217SJeff Kirsher /* [RW 3] The source that is associated with arbitration element 0. Source
4570adfc5217SJeff Kirsher    decoding is: 0- foc0; 1-fic1; 2-sleeping thread with priority 0; 3-
4571adfc5217SJeff Kirsher    sleeping thread with priority 1; 4- sleeping thread with priority 2 */
4572adfc5217SJeff Kirsher #define TSEM_REG_ARB_ELEMENT0					 0x180020
4573adfc5217SJeff Kirsher /* [RW 3] The source that is associated with arbitration element 1. Source
4574adfc5217SJeff Kirsher    decoding is: 0- foc0; 1-fic1; 2-sleeping thread with priority 0; 3-
4575adfc5217SJeff Kirsher    sleeping thread with priority 1; 4- sleeping thread with priority 2.
4576adfc5217SJeff Kirsher    Could not be equal to register ~tsem_registers_arb_element0.arb_element0 */
4577adfc5217SJeff Kirsher #define TSEM_REG_ARB_ELEMENT1					 0x180024
4578adfc5217SJeff Kirsher /* [RW 3] The source that is associated with arbitration element 2. Source
4579adfc5217SJeff Kirsher    decoding is: 0- foc0; 1-fic1; 2-sleeping thread with priority 0; 3-
4580adfc5217SJeff Kirsher    sleeping thread with priority 1; 4- sleeping thread with priority 2.
4581adfc5217SJeff Kirsher    Could not be equal to register ~tsem_registers_arb_element0.arb_element0
4582adfc5217SJeff Kirsher    and ~tsem_registers_arb_element1.arb_element1 */
4583adfc5217SJeff Kirsher #define TSEM_REG_ARB_ELEMENT2					 0x180028
4584adfc5217SJeff Kirsher /* [RW 3] The source that is associated with arbitration element 3. Source
4585adfc5217SJeff Kirsher    decoding is: 0- foc0; 1-fic1; 2-sleeping thread with priority 0; 3-
4586adfc5217SJeff Kirsher    sleeping thread with priority 1; 4- sleeping thread with priority 2.Could
4587adfc5217SJeff Kirsher    not be equal to register ~tsem_registers_arb_element0.arb_element0 and
4588adfc5217SJeff Kirsher    ~tsem_registers_arb_element1.arb_element1 and
4589adfc5217SJeff Kirsher    ~tsem_registers_arb_element2.arb_element2 */
4590adfc5217SJeff Kirsher #define TSEM_REG_ARB_ELEMENT3					 0x18002c
4591adfc5217SJeff Kirsher /* [RW 3] The source that is associated with arbitration element 4. Source
4592adfc5217SJeff Kirsher    decoding is: 0- foc0; 1-fic1; 2-sleeping thread with priority 0; 3-
4593adfc5217SJeff Kirsher    sleeping thread with priority 1; 4- sleeping thread with priority 2.
4594adfc5217SJeff Kirsher    Could not be equal to register ~tsem_registers_arb_element0.arb_element0
4595adfc5217SJeff Kirsher    and ~tsem_registers_arb_element1.arb_element1 and
4596adfc5217SJeff Kirsher    ~tsem_registers_arb_element2.arb_element2 and
4597adfc5217SJeff Kirsher    ~tsem_registers_arb_element3.arb_element3 */
4598adfc5217SJeff Kirsher #define TSEM_REG_ARB_ELEMENT4					 0x180030
4599adfc5217SJeff Kirsher #define TSEM_REG_ENABLE_IN					 0x1800a4
4600adfc5217SJeff Kirsher #define TSEM_REG_ENABLE_OUT					 0x1800a8
4601adfc5217SJeff Kirsher /* [RW 32] This address space contains all registers and memories that are
4602adfc5217SJeff Kirsher    placed in SEM_FAST block. The SEM_FAST registers are described in
4603adfc5217SJeff Kirsher    appendix B. In order to access the sem_fast registers the base address
4604adfc5217SJeff Kirsher    ~fast_memory.fast_memory should be added to eachsem_fast register offset. */
4605adfc5217SJeff Kirsher #define TSEM_REG_FAST_MEMORY					 0x1a0000
4606adfc5217SJeff Kirsher /* [RW 1] Disables input messages from FIC0 May be updated during run_time
4607adfc5217SJeff Kirsher    by the microcode */
4608adfc5217SJeff Kirsher #define TSEM_REG_FIC0_DISABLE					 0x180224
4609adfc5217SJeff Kirsher /* [RW 1] Disables input messages from FIC1 May be updated during run_time
4610adfc5217SJeff Kirsher    by the microcode */
4611adfc5217SJeff Kirsher #define TSEM_REG_FIC1_DISABLE					 0x180234
4612adfc5217SJeff Kirsher /* [RW 15] Interrupt table Read and write access to it is not possible in
4613adfc5217SJeff Kirsher    the middle of the work */
4614adfc5217SJeff Kirsher #define TSEM_REG_INT_TABLE					 0x180400
4615adfc5217SJeff Kirsher /* [ST 24] Statistics register. The number of messages that entered through
4616adfc5217SJeff Kirsher    FIC0 */
4617adfc5217SJeff Kirsher #define TSEM_REG_MSG_NUM_FIC0					 0x180000
4618adfc5217SJeff Kirsher /* [ST 24] Statistics register. The number of messages that entered through
4619adfc5217SJeff Kirsher    FIC1 */
4620adfc5217SJeff Kirsher #define TSEM_REG_MSG_NUM_FIC1					 0x180004
4621adfc5217SJeff Kirsher /* [ST 24] Statistics register. The number of messages that were sent to
4622adfc5217SJeff Kirsher    FOC0 */
4623adfc5217SJeff Kirsher #define TSEM_REG_MSG_NUM_FOC0					 0x180008
4624adfc5217SJeff Kirsher /* [ST 24] Statistics register. The number of messages that were sent to
4625adfc5217SJeff Kirsher    FOC1 */
4626adfc5217SJeff Kirsher #define TSEM_REG_MSG_NUM_FOC1					 0x18000c
4627adfc5217SJeff Kirsher /* [ST 24] Statistics register. The number of messages that were sent to
4628adfc5217SJeff Kirsher    FOC2 */
4629adfc5217SJeff Kirsher #define TSEM_REG_MSG_NUM_FOC2					 0x180010
4630adfc5217SJeff Kirsher /* [ST 24] Statistics register. The number of messages that were sent to
4631adfc5217SJeff Kirsher    FOC3 */
4632adfc5217SJeff Kirsher #define TSEM_REG_MSG_NUM_FOC3					 0x180014
4633adfc5217SJeff Kirsher /* [RW 1] Disables input messages from the passive buffer May be updated
4634adfc5217SJeff Kirsher    during run_time by the microcode */
4635adfc5217SJeff Kirsher #define TSEM_REG_PAS_DISABLE					 0x18024c
4636adfc5217SJeff Kirsher /* [WB 128] Debug only. Passive buffer memory */
4637adfc5217SJeff Kirsher #define TSEM_REG_PASSIVE_BUFFER 				 0x181000
4638adfc5217SJeff Kirsher /* [WB 46] pram memory. B45 is parity; b[44:0] - data. */
4639adfc5217SJeff Kirsher #define TSEM_REG_PRAM						 0x1c0000
4640adfc5217SJeff Kirsher /* [R 8] Valid sleeping threads indication have bit per thread */
4641adfc5217SJeff Kirsher #define TSEM_REG_SLEEP_THREADS_VALID				 0x18026c
4642adfc5217SJeff Kirsher /* [R 1] EXT_STORE FIFO is empty in sem_slow_ls_ext */
4643adfc5217SJeff Kirsher #define TSEM_REG_SLOW_EXT_STORE_EMPTY				 0x1802a0
4644adfc5217SJeff Kirsher /* [RW 8] List of free threads . There is a bit per thread. */
4645adfc5217SJeff Kirsher #define TSEM_REG_THREADS_LIST					 0x1802e4
4646adfc5217SJeff Kirsher /* [RC 32] Parity register #0 read clear */
4647adfc5217SJeff Kirsher #define TSEM_REG_TSEM_PRTY_STS_CLR_0				 0x180118
4648adfc5217SJeff Kirsher #define TSEM_REG_TSEM_PRTY_STS_CLR_1				 0x180128
4649adfc5217SJeff Kirsher /* [RW 3] The arbitration scheme of time_slot 0 */
4650adfc5217SJeff Kirsher #define TSEM_REG_TS_0_AS					 0x180038
4651adfc5217SJeff Kirsher /* [RW 3] The arbitration scheme of time_slot 10 */
4652adfc5217SJeff Kirsher #define TSEM_REG_TS_10_AS					 0x180060
4653adfc5217SJeff Kirsher /* [RW 3] The arbitration scheme of time_slot 11 */
4654adfc5217SJeff Kirsher #define TSEM_REG_TS_11_AS					 0x180064
4655adfc5217SJeff Kirsher /* [RW 3] The arbitration scheme of time_slot 12 */
4656adfc5217SJeff Kirsher #define TSEM_REG_TS_12_AS					 0x180068
4657adfc5217SJeff Kirsher /* [RW 3] The arbitration scheme of time_slot 13 */
4658adfc5217SJeff Kirsher #define TSEM_REG_TS_13_AS					 0x18006c
4659adfc5217SJeff Kirsher /* [RW 3] The arbitration scheme of time_slot 14 */
4660adfc5217SJeff Kirsher #define TSEM_REG_TS_14_AS					 0x180070
4661adfc5217SJeff Kirsher /* [RW 3] The arbitration scheme of time_slot 15 */
4662adfc5217SJeff Kirsher #define TSEM_REG_TS_15_AS					 0x180074
4663adfc5217SJeff Kirsher /* [RW 3] The arbitration scheme of time_slot 16 */
4664adfc5217SJeff Kirsher #define TSEM_REG_TS_16_AS					 0x180078
4665adfc5217SJeff Kirsher /* [RW 3] The arbitration scheme of time_slot 17 */
4666adfc5217SJeff Kirsher #define TSEM_REG_TS_17_AS					 0x18007c
4667adfc5217SJeff Kirsher /* [RW 3] The arbitration scheme of time_slot 18 */
4668adfc5217SJeff Kirsher #define TSEM_REG_TS_18_AS					 0x180080
4669adfc5217SJeff Kirsher /* [RW 3] The arbitration scheme of time_slot 1 */
4670adfc5217SJeff Kirsher #define TSEM_REG_TS_1_AS					 0x18003c
4671adfc5217SJeff Kirsher /* [RW 3] The arbitration scheme of time_slot 2 */
4672adfc5217SJeff Kirsher #define TSEM_REG_TS_2_AS					 0x180040
4673adfc5217SJeff Kirsher /* [RW 3] The arbitration scheme of time_slot 3 */
4674adfc5217SJeff Kirsher #define TSEM_REG_TS_3_AS					 0x180044
4675adfc5217SJeff Kirsher /* [RW 3] The arbitration scheme of time_slot 4 */
4676adfc5217SJeff Kirsher #define TSEM_REG_TS_4_AS					 0x180048
4677adfc5217SJeff Kirsher /* [RW 3] The arbitration scheme of time_slot 5 */
4678adfc5217SJeff Kirsher #define TSEM_REG_TS_5_AS					 0x18004c
4679adfc5217SJeff Kirsher /* [RW 3] The arbitration scheme of time_slot 6 */
4680adfc5217SJeff Kirsher #define TSEM_REG_TS_6_AS					 0x180050
4681adfc5217SJeff Kirsher /* [RW 3] The arbitration scheme of time_slot 7 */
4682adfc5217SJeff Kirsher #define TSEM_REG_TS_7_AS					 0x180054
4683adfc5217SJeff Kirsher /* [RW 3] The arbitration scheme of time_slot 8 */
4684adfc5217SJeff Kirsher #define TSEM_REG_TS_8_AS					 0x180058
4685adfc5217SJeff Kirsher /* [RW 3] The arbitration scheme of time_slot 9 */
4686adfc5217SJeff Kirsher #define TSEM_REG_TS_9_AS					 0x18005c
4687adfc5217SJeff Kirsher /* [RW 32] Interrupt mask register #0 read/write */
4688adfc5217SJeff Kirsher #define TSEM_REG_TSEM_INT_MASK_0				 0x180100
4689adfc5217SJeff Kirsher #define TSEM_REG_TSEM_INT_MASK_1				 0x180110
4690adfc5217SJeff Kirsher /* [R 32] Interrupt register #0 read */
4691adfc5217SJeff Kirsher #define TSEM_REG_TSEM_INT_STS_0 				 0x1800f4
4692adfc5217SJeff Kirsher #define TSEM_REG_TSEM_INT_STS_1 				 0x180104
4693adfc5217SJeff Kirsher /* [RW 32] Parity mask register #0 read/write */
4694adfc5217SJeff Kirsher #define TSEM_REG_TSEM_PRTY_MASK_0				 0x180120
4695adfc5217SJeff Kirsher #define TSEM_REG_TSEM_PRTY_MASK_1				 0x180130
4696adfc5217SJeff Kirsher /* [R 32] Parity register #0 read */
4697adfc5217SJeff Kirsher #define TSEM_REG_TSEM_PRTY_STS_0				 0x180114
4698adfc5217SJeff Kirsher #define TSEM_REG_TSEM_PRTY_STS_1				 0x180124
4699adfc5217SJeff Kirsher /* [W 7] VF or PF ID for reset error bit. Values 0-63 reset error bit for 64
4700adfc5217SJeff Kirsher  * VF; values 64-67 reset error for 4 PF; values 68-127 are not valid. */
4701adfc5217SJeff Kirsher #define TSEM_REG_VFPF_ERR_NUM					 0x180380
4702adfc5217SJeff Kirsher /* [RW 32] Indirect access to AG context with 32-bits granularity. The bits
4703adfc5217SJeff Kirsher  * [10:8] of the address should be the offset within the accessed LCID
4704adfc5217SJeff Kirsher  * context; the bits [7:0] are the accessed LCID.Example: to write to REG10
4705adfc5217SJeff Kirsher  * LCID100. The RBC address should be 12'ha64. */
4706adfc5217SJeff Kirsher #define UCM_REG_AG_CTX						 0xe2000
4707adfc5217SJeff Kirsher /* [R 5] Used to read the XX protection CAM occupancy counter. */
4708adfc5217SJeff Kirsher #define UCM_REG_CAM_OCCUP					 0xe0170
4709adfc5217SJeff Kirsher /* [RW 1] CDU AG read Interface enable. If 0 - the request input is
4710adfc5217SJeff Kirsher    disregarded; valid output is deasserted; all other signals are treated as
4711adfc5217SJeff Kirsher    usual; if 1 - normal activity. */
4712adfc5217SJeff Kirsher #define UCM_REG_CDU_AG_RD_IFEN					 0xe0038
4713adfc5217SJeff Kirsher /* [RW 1] CDU AG write Interface enable. If 0 - the request and valid input
4714adfc5217SJeff Kirsher    are disregarded; all other signals are treated as usual; if 1 - normal
4715adfc5217SJeff Kirsher    activity. */
4716adfc5217SJeff Kirsher #define UCM_REG_CDU_AG_WR_IFEN					 0xe0034
4717adfc5217SJeff Kirsher /* [RW 1] CDU STORM read Interface enable. If 0 - the request input is
4718adfc5217SJeff Kirsher    disregarded; valid output is deasserted; all other signals are treated as
4719adfc5217SJeff Kirsher    usual; if 1 - normal activity. */
4720adfc5217SJeff Kirsher #define UCM_REG_CDU_SM_RD_IFEN					 0xe0040
4721adfc5217SJeff Kirsher /* [RW 1] CDU STORM write Interface enable. If 0 - the request and valid
4722adfc5217SJeff Kirsher    input is disregarded; all other signals are treated as usual; if 1 -
4723adfc5217SJeff Kirsher    normal activity. */
4724adfc5217SJeff Kirsher #define UCM_REG_CDU_SM_WR_IFEN					 0xe003c
4725adfc5217SJeff Kirsher /* [RW 4] CFC output initial credit. Max credit available - 15.Write writes
4726adfc5217SJeff Kirsher    the initial credit value; read returns the current value of the credit
4727adfc5217SJeff Kirsher    counter. Must be initialized to 1 at start-up. */
4728adfc5217SJeff Kirsher #define UCM_REG_CFC_INIT_CRD					 0xe0204
4729adfc5217SJeff Kirsher /* [RW 3] The weight of the CP input in the WRR mechanism. 0 stands for
4730adfc5217SJeff Kirsher    weight 8 (the most prioritised); 1 stands for weight 1(least
4731adfc5217SJeff Kirsher    prioritised); 2 stands for weight 2; tc. */
4732adfc5217SJeff Kirsher #define UCM_REG_CP_WEIGHT					 0xe00c4
4733adfc5217SJeff Kirsher /* [RW 1] Input csem Interface enable. If 0 - the valid input is
4734adfc5217SJeff Kirsher    disregarded; acknowledge output is deasserted; all other signals are
4735adfc5217SJeff Kirsher    treated as usual; if 1 - normal activity. */
4736adfc5217SJeff Kirsher #define UCM_REG_CSEM_IFEN					 0xe0028
4737adfc5217SJeff Kirsher /* [RC 1] Set when the message length mismatch (relative to last indication)
4738adfc5217SJeff Kirsher    at the csem interface is detected. */
4739adfc5217SJeff Kirsher #define UCM_REG_CSEM_LENGTH_MIS 				 0xe0160
4740adfc5217SJeff Kirsher /* [RW 3] The weight of the input csem in the WRR mechanism. 0 stands for
4741adfc5217SJeff Kirsher    weight 8 (the most prioritised); 1 stands for weight 1(least
4742adfc5217SJeff Kirsher    prioritised); 2 stands for weight 2; tc. */
4743adfc5217SJeff Kirsher #define UCM_REG_CSEM_WEIGHT					 0xe00b8
4744adfc5217SJeff Kirsher /* [RW 1] Input dorq Interface enable. If 0 - the valid input is
4745adfc5217SJeff Kirsher    disregarded; acknowledge output is deasserted; all other signals are
4746adfc5217SJeff Kirsher    treated as usual; if 1 - normal activity. */
4747adfc5217SJeff Kirsher #define UCM_REG_DORQ_IFEN					 0xe0030
4748adfc5217SJeff Kirsher /* [RC 1] Set when the message length mismatch (relative to last indication)
4749adfc5217SJeff Kirsher    at the dorq interface is detected. */
4750adfc5217SJeff Kirsher #define UCM_REG_DORQ_LENGTH_MIS 				 0xe0168
4751adfc5217SJeff Kirsher /* [RW 3] The weight of the input dorq in the WRR mechanism. 0 stands for
4752adfc5217SJeff Kirsher    weight 8 (the most prioritised); 1 stands for weight 1(least
4753adfc5217SJeff Kirsher    prioritised); 2 stands for weight 2; tc. */
4754adfc5217SJeff Kirsher #define UCM_REG_DORQ_WEIGHT					 0xe00c0
4755adfc5217SJeff Kirsher /* [RW 8] The Event ID in case ErrorFlg input message bit is set. */
4756adfc5217SJeff Kirsher #define UCM_REG_ERR_EVNT_ID					 0xe00a4
4757adfc5217SJeff Kirsher /* [RW 28] The CM erroneous header for QM and Timers formatting. */
4758adfc5217SJeff Kirsher #define UCM_REG_ERR_UCM_HDR					 0xe00a0
4759adfc5217SJeff Kirsher /* [RW 8] The Event ID for Timers expiration. */
4760adfc5217SJeff Kirsher #define UCM_REG_EXPR_EVNT_ID					 0xe00a8
4761adfc5217SJeff Kirsher /* [RW 8] FIC0 output initial credit. Max credit available - 255.Write
4762adfc5217SJeff Kirsher    writes the initial credit value; read returns the current value of the
4763adfc5217SJeff Kirsher    credit counter. Must be initialized to 64 at start-up. */
4764adfc5217SJeff Kirsher #define UCM_REG_FIC0_INIT_CRD					 0xe020c
4765adfc5217SJeff Kirsher /* [RW 8] FIC1 output initial credit. Max credit available - 255.Write
4766adfc5217SJeff Kirsher    writes the initial credit value; read returns the current value of the
4767adfc5217SJeff Kirsher    credit counter. Must be initialized to 64 at start-up. */
4768adfc5217SJeff Kirsher #define UCM_REG_FIC1_INIT_CRD					 0xe0210
4769adfc5217SJeff Kirsher /* [RW 1] Arbitration between Input Arbiter groups: 0 - fair Round-Robin; 1
4770adfc5217SJeff Kirsher    - strict priority defined by ~ucm_registers_gr_ag_pr.gr_ag_pr;
4771adfc5217SJeff Kirsher    ~ucm_registers_gr_ld0_pr.gr_ld0_pr and
4772adfc5217SJeff Kirsher    ~ucm_registers_gr_ld1_pr.gr_ld1_pr. */
4773adfc5217SJeff Kirsher #define UCM_REG_GR_ARB_TYPE					 0xe0144
4774adfc5217SJeff Kirsher /* [RW 2] Load (FIC0) channel group priority. The lowest priority is 0; the
4775adfc5217SJeff Kirsher    highest priority is 3. It is supposed that the Store channel group is
4776adfc5217SJeff Kirsher    compliment to the others. */
4777adfc5217SJeff Kirsher #define UCM_REG_GR_LD0_PR					 0xe014c
4778adfc5217SJeff Kirsher /* [RW 2] Load (FIC1) channel group priority. The lowest priority is 0; the
4779adfc5217SJeff Kirsher    highest priority is 3. It is supposed that the Store channel group is
4780adfc5217SJeff Kirsher    compliment to the others. */
4781adfc5217SJeff Kirsher #define UCM_REG_GR_LD1_PR					 0xe0150
4782adfc5217SJeff Kirsher /* [RW 2] The queue index for invalidate counter flag decision. */
4783adfc5217SJeff Kirsher #define UCM_REG_INV_CFLG_Q					 0xe00e4
4784adfc5217SJeff Kirsher /* [RW 5] The number of double REG-pairs; loaded from the STORM context and
4785adfc5217SJeff Kirsher    sent to STORM; for a specific connection type. the double REG-pairs are
4786adfc5217SJeff Kirsher    used in order to align to STORM context row size of 128 bits. The offset
4787adfc5217SJeff Kirsher    of these data in the STORM context is always 0. Index _i stands for the
4788adfc5217SJeff Kirsher    connection type (one of 16). */
4789adfc5217SJeff Kirsher #define UCM_REG_N_SM_CTX_LD_0					 0xe0054
4790adfc5217SJeff Kirsher #define UCM_REG_N_SM_CTX_LD_1					 0xe0058
4791adfc5217SJeff Kirsher #define UCM_REG_N_SM_CTX_LD_2					 0xe005c
4792adfc5217SJeff Kirsher #define UCM_REG_N_SM_CTX_LD_3					 0xe0060
4793adfc5217SJeff Kirsher #define UCM_REG_N_SM_CTX_LD_4					 0xe0064
4794adfc5217SJeff Kirsher #define UCM_REG_N_SM_CTX_LD_5					 0xe0068
4795adfc5217SJeff Kirsher #define UCM_REG_PHYS_QNUM0_0					 0xe0110
4796adfc5217SJeff Kirsher #define UCM_REG_PHYS_QNUM0_1					 0xe0114
4797adfc5217SJeff Kirsher #define UCM_REG_PHYS_QNUM1_0					 0xe0118
4798adfc5217SJeff Kirsher #define UCM_REG_PHYS_QNUM1_1					 0xe011c
4799adfc5217SJeff Kirsher #define UCM_REG_PHYS_QNUM2_0					 0xe0120
4800adfc5217SJeff Kirsher #define UCM_REG_PHYS_QNUM2_1					 0xe0124
4801adfc5217SJeff Kirsher #define UCM_REG_PHYS_QNUM3_0					 0xe0128
4802adfc5217SJeff Kirsher #define UCM_REG_PHYS_QNUM3_1					 0xe012c
4803adfc5217SJeff Kirsher /* [RW 8] The Event ID for Timers formatting in case of stop done. */
4804adfc5217SJeff Kirsher #define UCM_REG_STOP_EVNT_ID					 0xe00ac
4805adfc5217SJeff Kirsher /* [RC 1] Set when the message length mismatch (relative to last indication)
4806adfc5217SJeff Kirsher    at the STORM interface is detected. */
4807adfc5217SJeff Kirsher #define UCM_REG_STORM_LENGTH_MIS				 0xe0154
4808adfc5217SJeff Kirsher /* [RW 1] STORM - CM Interface enable. If 0 - the valid input is
4809adfc5217SJeff Kirsher    disregarded; acknowledge output is deasserted; all other signals are
4810adfc5217SJeff Kirsher    treated as usual; if 1 - normal activity. */
4811adfc5217SJeff Kirsher #define UCM_REG_STORM_UCM_IFEN					 0xe0010
4812adfc5217SJeff Kirsher /* [RW 3] The weight of the STORM input in the WRR mechanism. 0 stands for
4813adfc5217SJeff Kirsher    weight 8 (the most prioritised); 1 stands for weight 1(least
4814adfc5217SJeff Kirsher    prioritised); 2 stands for weight 2; tc. */
4815adfc5217SJeff Kirsher #define UCM_REG_STORM_WEIGHT					 0xe00b0
4816adfc5217SJeff Kirsher /* [RW 4] Timers output initial credit. Max credit available - 15.Write
4817adfc5217SJeff Kirsher    writes the initial credit value; read returns the current value of the
4818adfc5217SJeff Kirsher    credit counter. Must be initialized to 4 at start-up. */
4819adfc5217SJeff Kirsher #define UCM_REG_TM_INIT_CRD					 0xe021c
4820adfc5217SJeff Kirsher /* [RW 28] The CM header for Timers expiration command. */
4821adfc5217SJeff Kirsher #define UCM_REG_TM_UCM_HDR					 0xe009c
4822adfc5217SJeff Kirsher /* [RW 1] Timers - CM Interface enable. If 0 - the valid input is
4823adfc5217SJeff Kirsher    disregarded; acknowledge output is deasserted; all other signals are
4824adfc5217SJeff Kirsher    treated as usual; if 1 - normal activity. */
4825adfc5217SJeff Kirsher #define UCM_REG_TM_UCM_IFEN					 0xe001c
4826adfc5217SJeff Kirsher /* [RW 3] The weight of the Timers input in the WRR mechanism. 0 stands for
4827adfc5217SJeff Kirsher    weight 8 (the most prioritised); 1 stands for weight 1(least
4828adfc5217SJeff Kirsher    prioritised); 2 stands for weight 2; tc. */
4829adfc5217SJeff Kirsher #define UCM_REG_TM_WEIGHT					 0xe00d4
4830adfc5217SJeff Kirsher /* [RW 1] Input tsem Interface enable. If 0 - the valid input is
4831adfc5217SJeff Kirsher    disregarded; acknowledge output is deasserted; all other signals are
4832adfc5217SJeff Kirsher    treated as usual; if 1 - normal activity. */
4833adfc5217SJeff Kirsher #define UCM_REG_TSEM_IFEN					 0xe0024
4834adfc5217SJeff Kirsher /* [RC 1] Set when the message length mismatch (relative to last indication)
4835adfc5217SJeff Kirsher    at the tsem interface is detected. */
4836adfc5217SJeff Kirsher #define UCM_REG_TSEM_LENGTH_MIS 				 0xe015c
4837adfc5217SJeff Kirsher /* [RW 3] The weight of the input tsem in the WRR mechanism. 0 stands for
4838adfc5217SJeff Kirsher    weight 8 (the most prioritised); 1 stands for weight 1(least
4839adfc5217SJeff Kirsher    prioritised); 2 stands for weight 2; tc. */
4840adfc5217SJeff Kirsher #define UCM_REG_TSEM_WEIGHT					 0xe00b4
4841adfc5217SJeff Kirsher /* [RW 1] CM - CFC Interface enable. If 0 - the valid input is disregarded;
4842adfc5217SJeff Kirsher    acknowledge output is deasserted; all other signals are treated as usual;
4843adfc5217SJeff Kirsher    if 1 - normal activity. */
4844adfc5217SJeff Kirsher #define UCM_REG_UCM_CFC_IFEN					 0xe0044
4845adfc5217SJeff Kirsher /* [RW 11] Interrupt mask register #0 read/write */
4846adfc5217SJeff Kirsher #define UCM_REG_UCM_INT_MASK					 0xe01d4
4847adfc5217SJeff Kirsher /* [R 11] Interrupt register #0 read */
4848adfc5217SJeff Kirsher #define UCM_REG_UCM_INT_STS					 0xe01c8
4849adfc5217SJeff Kirsher /* [RW 27] Parity mask register #0 read/write */
4850adfc5217SJeff Kirsher #define UCM_REG_UCM_PRTY_MASK					 0xe01e4
4851adfc5217SJeff Kirsher /* [R 27] Parity register #0 read */
4852adfc5217SJeff Kirsher #define UCM_REG_UCM_PRTY_STS					 0xe01d8
4853adfc5217SJeff Kirsher /* [RC 27] Parity register #0 read clear */
4854adfc5217SJeff Kirsher #define UCM_REG_UCM_PRTY_STS_CLR				 0xe01dc
4855adfc5217SJeff Kirsher /* [RW 2] The size of AG context region 0 in REG-pairs. Designates the MS
4856adfc5217SJeff Kirsher    REG-pair number (e.g. if region 0 is 6 REG-pairs; the value should be 5).
4857adfc5217SJeff Kirsher    Is used to determine the number of the AG context REG-pairs written back;
4858adfc5217SJeff Kirsher    when the Reg1WbFlg isn't set. */
4859adfc5217SJeff Kirsher #define UCM_REG_UCM_REG0_SZ					 0xe00dc
4860adfc5217SJeff Kirsher /* [RW 1] CM - STORM 0 Interface enable. If 0 - the acknowledge input is
4861adfc5217SJeff Kirsher    disregarded; valid is deasserted; all other signals are treated as usual;
4862adfc5217SJeff Kirsher    if 1 - normal activity. */
4863adfc5217SJeff Kirsher #define UCM_REG_UCM_STORM0_IFEN 				 0xe0004
4864adfc5217SJeff Kirsher /* [RW 1] CM - STORM 1 Interface enable. If 0 - the acknowledge input is
4865adfc5217SJeff Kirsher    disregarded; valid is deasserted; all other signals are treated as usual;
4866adfc5217SJeff Kirsher    if 1 - normal activity. */
4867adfc5217SJeff Kirsher #define UCM_REG_UCM_STORM1_IFEN 				 0xe0008
4868adfc5217SJeff Kirsher /* [RW 1] CM - Timers Interface enable. If 0 - the valid input is
4869adfc5217SJeff Kirsher    disregarded; acknowledge output is deasserted; all other signals are
4870adfc5217SJeff Kirsher    treated as usual; if 1 - normal activity. */
4871adfc5217SJeff Kirsher #define UCM_REG_UCM_TM_IFEN					 0xe0020
4872adfc5217SJeff Kirsher /* [RW 1] CM - QM Interface enable. If 0 - the acknowledge input is
4873adfc5217SJeff Kirsher    disregarded; valid is deasserted; all other signals are treated as usual;
4874adfc5217SJeff Kirsher    if 1 - normal activity. */
4875adfc5217SJeff Kirsher #define UCM_REG_UCM_UQM_IFEN					 0xe000c
4876adfc5217SJeff Kirsher /* [RW 1] If set the Q index; received from the QM is inserted to event ID. */
4877adfc5217SJeff Kirsher #define UCM_REG_UCM_UQM_USE_Q					 0xe00d8
4878adfc5217SJeff Kirsher /* [RW 6] QM output initial credit. Max credit available - 32.Write writes
4879adfc5217SJeff Kirsher    the initial credit value; read returns the current value of the credit
4880adfc5217SJeff Kirsher    counter. Must be initialized to 32 at start-up. */
4881adfc5217SJeff Kirsher #define UCM_REG_UQM_INIT_CRD					 0xe0220
4882adfc5217SJeff Kirsher /* [RW 3] The weight of the QM (primary) input in the WRR mechanism. 0
4883adfc5217SJeff Kirsher    stands for weight 8 (the most prioritised); 1 stands for weight 1(least
4884adfc5217SJeff Kirsher    prioritised); 2 stands for weight 2; tc. */
4885adfc5217SJeff Kirsher #define UCM_REG_UQM_P_WEIGHT					 0xe00cc
4886adfc5217SJeff Kirsher /* [RW 3] The weight of the QM (secondary) input in the WRR mechanism. 0
4887adfc5217SJeff Kirsher    stands for weight 8 (the most prioritised); 1 stands for weight 1(least
4888adfc5217SJeff Kirsher    prioritised); 2 stands for weight 2; tc. */
4889adfc5217SJeff Kirsher #define UCM_REG_UQM_S_WEIGHT					 0xe00d0
4890adfc5217SJeff Kirsher /* [RW 28] The CM header value for QM request (primary). */
4891adfc5217SJeff Kirsher #define UCM_REG_UQM_UCM_HDR_P					 0xe0094
4892adfc5217SJeff Kirsher /* [RW 28] The CM header value for QM request (secondary). */
4893adfc5217SJeff Kirsher #define UCM_REG_UQM_UCM_HDR_S					 0xe0098
4894adfc5217SJeff Kirsher /* [RW 1] QM - CM Interface enable. If 0 - the valid input is disregarded;
4895adfc5217SJeff Kirsher    acknowledge output is deasserted; all other signals are treated as usual;
4896adfc5217SJeff Kirsher    if 1 - normal activity. */
4897adfc5217SJeff Kirsher #define UCM_REG_UQM_UCM_IFEN					 0xe0014
4898adfc5217SJeff Kirsher /* [RW 1] Input SDM Interface enable. If 0 - the valid input is disregarded;
4899adfc5217SJeff Kirsher    acknowledge output is deasserted; all other signals are treated as usual;
4900adfc5217SJeff Kirsher    if 1 - normal activity. */
4901adfc5217SJeff Kirsher #define UCM_REG_USDM_IFEN					 0xe0018
4902adfc5217SJeff Kirsher /* [RC 1] Set when the message length mismatch (relative to last indication)
4903adfc5217SJeff Kirsher    at the SDM interface is detected. */
4904adfc5217SJeff Kirsher #define UCM_REG_USDM_LENGTH_MIS 				 0xe0158
4905adfc5217SJeff Kirsher /* [RW 3] The weight of the SDM input in the WRR mechanism. 0 stands for
4906adfc5217SJeff Kirsher    weight 8 (the most prioritised); 1 stands for weight 1(least
4907adfc5217SJeff Kirsher    prioritised); 2 stands for weight 2; tc. */
4908adfc5217SJeff Kirsher #define UCM_REG_USDM_WEIGHT					 0xe00c8
4909adfc5217SJeff Kirsher /* [RW 1] Input xsem Interface enable. If 0 - the valid input is
4910adfc5217SJeff Kirsher    disregarded; acknowledge output is deasserted; all other signals are
4911adfc5217SJeff Kirsher    treated as usual; if 1 - normal activity. */
4912adfc5217SJeff Kirsher #define UCM_REG_XSEM_IFEN					 0xe002c
4913adfc5217SJeff Kirsher /* [RC 1] Set when the message length mismatch (relative to last indication)
4914adfc5217SJeff Kirsher    at the xsem interface isdetected. */
4915adfc5217SJeff Kirsher #define UCM_REG_XSEM_LENGTH_MIS 				 0xe0164
4916adfc5217SJeff Kirsher /* [RW 3] The weight of the input xsem in the WRR mechanism. 0 stands for
4917adfc5217SJeff Kirsher    weight 8 (the most prioritised); 1 stands for weight 1(least
4918adfc5217SJeff Kirsher    prioritised); 2 stands for weight 2; tc. */
4919adfc5217SJeff Kirsher #define UCM_REG_XSEM_WEIGHT					 0xe00bc
4920adfc5217SJeff Kirsher /* [RW 20] Indirect access to the descriptor table of the XX protection
4921adfc5217SJeff Kirsher    mechanism. The fields are:[5:0] - message length; 14:6] - message
4922adfc5217SJeff Kirsher    pointer; 19:15] - next pointer. */
4923adfc5217SJeff Kirsher #define UCM_REG_XX_DESCR_TABLE					 0xe0280
4924adfc5217SJeff Kirsher #define UCM_REG_XX_DESCR_TABLE_SIZE				 27
4925adfc5217SJeff Kirsher /* [R 6] Use to read the XX protection Free counter. */
4926adfc5217SJeff Kirsher #define UCM_REG_XX_FREE 					 0xe016c
4927adfc5217SJeff Kirsher /* [RW 6] Initial value for the credit counter; responsible for fulfilling
4928adfc5217SJeff Kirsher    of the Input Stage XX protection buffer by the XX protection pending
4929adfc5217SJeff Kirsher    messages. Write writes the initial credit value; read returns the current
4930adfc5217SJeff Kirsher    value of the credit counter. Must be initialized to 12 at start-up. */
4931adfc5217SJeff Kirsher #define UCM_REG_XX_INIT_CRD					 0xe0224
4932adfc5217SJeff Kirsher /* [RW 6] The maximum number of pending messages; which may be stored in XX
4933adfc5217SJeff Kirsher    protection. ~ucm_registers_xx_free.xx_free read on read. */
4934adfc5217SJeff Kirsher #define UCM_REG_XX_MSG_NUM					 0xe0228
4935adfc5217SJeff Kirsher /* [RW 8] The Event ID; sent to the STORM in case of XX overflow. */
4936adfc5217SJeff Kirsher #define UCM_REG_XX_OVFL_EVNT_ID 				 0xe004c
4937adfc5217SJeff Kirsher /* [RW 16] Indirect access to the XX table of the XX protection mechanism.
4938adfc5217SJeff Kirsher    The fields are: [4:0] - tail pointer; 10:5] - Link List size; 15:11] -
4939adfc5217SJeff Kirsher    header pointer. */
4940adfc5217SJeff Kirsher #define UCM_REG_XX_TABLE					 0xe0300
4941e18c56b2SMintz Yuval #define UMAC_COMMAND_CONFIG_REG_HD_ENA				 (0x1<<10)
4942adfc5217SJeff Kirsher #define UMAC_COMMAND_CONFIG_REG_IGNORE_TX_PAUSE			 (0x1<<28)
4943adfc5217SJeff Kirsher #define UMAC_COMMAND_CONFIG_REG_LOOP_ENA			 (0x1<<15)
4944adfc5217SJeff Kirsher #define UMAC_COMMAND_CONFIG_REG_NO_LGTH_CHECK			 (0x1<<24)
4945adfc5217SJeff Kirsher #define UMAC_COMMAND_CONFIG_REG_PAD_EN				 (0x1<<5)
4946adfc5217SJeff Kirsher #define UMAC_COMMAND_CONFIG_REG_PAUSE_IGNORE			 (0x1<<8)
4947adfc5217SJeff Kirsher #define UMAC_COMMAND_CONFIG_REG_PROMIS_EN			 (0x1<<4)
4948adfc5217SJeff Kirsher #define UMAC_COMMAND_CONFIG_REG_RX_ENA				 (0x1<<1)
4949adfc5217SJeff Kirsher #define UMAC_COMMAND_CONFIG_REG_SW_RESET			 (0x1<<13)
4950adfc5217SJeff Kirsher #define UMAC_COMMAND_CONFIG_REG_TX_ENA				 (0x1<<0)
4951adfc5217SJeff Kirsher #define UMAC_REG_COMMAND_CONFIG					 0x8
4952adfc5217SJeff Kirsher /* [RW 32] Register Bit 0 refers to Bit 16 of the MAC address; Bit 1 refers
4953adfc5217SJeff Kirsher  * to bit 17 of the MAC address etc. */
4954adfc5217SJeff Kirsher #define UMAC_REG_MAC_ADDR0					 0xc
4955adfc5217SJeff Kirsher /* [RW 16] Register Bit 0 refers to Bit 0 of the MAC address; Register Bit 1
4956adfc5217SJeff Kirsher  * refers to Bit 1 of the MAC address etc. Bits 16 to 31 are reserved. */
4957adfc5217SJeff Kirsher #define UMAC_REG_MAC_ADDR1					 0x10
4958adfc5217SJeff Kirsher /* [RW 14] Defines a 14-Bit maximum frame length used by the MAC receive
4959adfc5217SJeff Kirsher  * logic to check frames. */
4960adfc5217SJeff Kirsher #define UMAC_REG_MAXFR						 0x14
4961adfc5217SJeff Kirsher /* [RW 8] The event id for aggregated interrupt 0 */
4962adfc5217SJeff Kirsher #define USDM_REG_AGG_INT_EVENT_0				 0xc4038
4963adfc5217SJeff Kirsher #define USDM_REG_AGG_INT_EVENT_1				 0xc403c
4964adfc5217SJeff Kirsher #define USDM_REG_AGG_INT_EVENT_2				 0xc4040
4965adfc5217SJeff Kirsher #define USDM_REG_AGG_INT_EVENT_4				 0xc4048
4966adfc5217SJeff Kirsher #define USDM_REG_AGG_INT_EVENT_5				 0xc404c
4967adfc5217SJeff Kirsher #define USDM_REG_AGG_INT_EVENT_6				 0xc4050
4968adfc5217SJeff Kirsher /* [RW 1] For each aggregated interrupt index whether the mode is normal (0)
4969adfc5217SJeff Kirsher    or auto-mask-mode (1) */
4970adfc5217SJeff Kirsher #define USDM_REG_AGG_INT_MODE_0 				 0xc41b8
4971adfc5217SJeff Kirsher #define USDM_REG_AGG_INT_MODE_1 				 0xc41bc
4972adfc5217SJeff Kirsher #define USDM_REG_AGG_INT_MODE_4 				 0xc41c8
4973adfc5217SJeff Kirsher #define USDM_REG_AGG_INT_MODE_5 				 0xc41cc
4974adfc5217SJeff Kirsher #define USDM_REG_AGG_INT_MODE_6 				 0xc41d0
4975adfc5217SJeff Kirsher /* [RW 1] The T bit for aggregated interrupt 5 */
4976adfc5217SJeff Kirsher #define USDM_REG_AGG_INT_T_5					 0xc40cc
4977adfc5217SJeff Kirsher #define USDM_REG_AGG_INT_T_6					 0xc40d0
4978adfc5217SJeff Kirsher /* [RW 13] The start address in the internal RAM for the cfc_rsp lcid */
4979adfc5217SJeff Kirsher #define USDM_REG_CFC_RSP_START_ADDR				 0xc4008
4980adfc5217SJeff Kirsher /* [RW 16] The maximum value of the completion counter #0 */
4981adfc5217SJeff Kirsher #define USDM_REG_CMP_COUNTER_MAX0				 0xc401c
4982adfc5217SJeff Kirsher /* [RW 16] The maximum value of the completion counter #1 */
4983adfc5217SJeff Kirsher #define USDM_REG_CMP_COUNTER_MAX1				 0xc4020
4984adfc5217SJeff Kirsher /* [RW 16] The maximum value of the completion counter #2 */
4985adfc5217SJeff Kirsher #define USDM_REG_CMP_COUNTER_MAX2				 0xc4024
4986adfc5217SJeff Kirsher /* [RW 16] The maximum value of the completion counter #3 */
4987adfc5217SJeff Kirsher #define USDM_REG_CMP_COUNTER_MAX3				 0xc4028
4988adfc5217SJeff Kirsher /* [RW 13] The start address in the internal RAM for the completion
4989adfc5217SJeff Kirsher    counters. */
4990adfc5217SJeff Kirsher #define USDM_REG_CMP_COUNTER_START_ADDR 			 0xc400c
4991adfc5217SJeff Kirsher #define USDM_REG_ENABLE_IN1					 0xc4238
4992adfc5217SJeff Kirsher #define USDM_REG_ENABLE_IN2					 0xc423c
4993adfc5217SJeff Kirsher #define USDM_REG_ENABLE_OUT1					 0xc4240
4994adfc5217SJeff Kirsher #define USDM_REG_ENABLE_OUT2					 0xc4244
4995adfc5217SJeff Kirsher /* [RW 4] The initial number of messages that can be sent to the pxp control
4996adfc5217SJeff Kirsher    interface without receiving any ACK. */
4997adfc5217SJeff Kirsher #define USDM_REG_INIT_CREDIT_PXP_CTRL				 0xc44c0
4998adfc5217SJeff Kirsher /* [ST 32] The number of ACK after placement messages received */
4999adfc5217SJeff Kirsher #define USDM_REG_NUM_OF_ACK_AFTER_PLACE 			 0xc4280
5000adfc5217SJeff Kirsher /* [ST 32] The number of packet end messages received from the parser */
5001adfc5217SJeff Kirsher #define USDM_REG_NUM_OF_PKT_END_MSG				 0xc4278
5002adfc5217SJeff Kirsher /* [ST 32] The number of requests received from the pxp async if */
5003adfc5217SJeff Kirsher #define USDM_REG_NUM_OF_PXP_ASYNC_REQ				 0xc427c
5004adfc5217SJeff Kirsher /* [ST 32] The number of commands received in queue 0 */
5005adfc5217SJeff Kirsher #define USDM_REG_NUM_OF_Q0_CMD					 0xc4248
5006adfc5217SJeff Kirsher /* [ST 32] The number of commands received in queue 10 */
5007adfc5217SJeff Kirsher #define USDM_REG_NUM_OF_Q10_CMD 				 0xc4270
5008adfc5217SJeff Kirsher /* [ST 32] The number of commands received in queue 11 */
5009adfc5217SJeff Kirsher #define USDM_REG_NUM_OF_Q11_CMD 				 0xc4274
5010adfc5217SJeff Kirsher /* [ST 32] The number of commands received in queue 1 */
5011adfc5217SJeff Kirsher #define USDM_REG_NUM_OF_Q1_CMD					 0xc424c
5012adfc5217SJeff Kirsher /* [ST 32] The number of commands received in queue 2 */
5013adfc5217SJeff Kirsher #define USDM_REG_NUM_OF_Q2_CMD					 0xc4250
5014adfc5217SJeff Kirsher /* [ST 32] The number of commands received in queue 3 */
5015adfc5217SJeff Kirsher #define USDM_REG_NUM_OF_Q3_CMD					 0xc4254
5016adfc5217SJeff Kirsher /* [ST 32] The number of commands received in queue 4 */
5017adfc5217SJeff Kirsher #define USDM_REG_NUM_OF_Q4_CMD					 0xc4258
5018adfc5217SJeff Kirsher /* [ST 32] The number of commands received in queue 5 */
5019adfc5217SJeff Kirsher #define USDM_REG_NUM_OF_Q5_CMD					 0xc425c
5020adfc5217SJeff Kirsher /* [ST 32] The number of commands received in queue 6 */
5021adfc5217SJeff Kirsher #define USDM_REG_NUM_OF_Q6_CMD					 0xc4260
5022adfc5217SJeff Kirsher /* [ST 32] The number of commands received in queue 7 */
5023adfc5217SJeff Kirsher #define USDM_REG_NUM_OF_Q7_CMD					 0xc4264
5024adfc5217SJeff Kirsher /* [ST 32] The number of commands received in queue 8 */
5025adfc5217SJeff Kirsher #define USDM_REG_NUM_OF_Q8_CMD					 0xc4268
5026adfc5217SJeff Kirsher /* [ST 32] The number of commands received in queue 9 */
5027adfc5217SJeff Kirsher #define USDM_REG_NUM_OF_Q9_CMD					 0xc426c
5028adfc5217SJeff Kirsher /* [RW 13] The start address in the internal RAM for the packet end message */
5029adfc5217SJeff Kirsher #define USDM_REG_PCK_END_MSG_START_ADDR 			 0xc4014
5030adfc5217SJeff Kirsher /* [RW 13] The start address in the internal RAM for queue counters */
5031adfc5217SJeff Kirsher #define USDM_REG_Q_COUNTER_START_ADDR				 0xc4010
5032adfc5217SJeff Kirsher /* [R 1] pxp_ctrl rd_data fifo empty in sdm_dma_rsp block */
5033adfc5217SJeff Kirsher #define USDM_REG_RSP_PXP_CTRL_RDATA_EMPTY			 0xc4550
5034adfc5217SJeff Kirsher /* [R 1] parser fifo empty in sdm_sync block */
5035adfc5217SJeff Kirsher #define USDM_REG_SYNC_PARSER_EMPTY				 0xc4558
5036adfc5217SJeff Kirsher /* [R 1] parser serial fifo empty in sdm_sync block */
5037adfc5217SJeff Kirsher #define USDM_REG_SYNC_SYNC_EMPTY				 0xc4560
5038adfc5217SJeff Kirsher /* [RW 32] Tick for timer counter. Applicable only when
5039adfc5217SJeff Kirsher    ~usdm_registers_timer_tick_enable.timer_tick_enable =1 */
5040adfc5217SJeff Kirsher #define USDM_REG_TIMER_TICK					 0xc4000
5041adfc5217SJeff Kirsher /* [RW 32] Interrupt mask register #0 read/write */
5042adfc5217SJeff Kirsher #define USDM_REG_USDM_INT_MASK_0				 0xc42a0
5043adfc5217SJeff Kirsher #define USDM_REG_USDM_INT_MASK_1				 0xc42b0
5044adfc5217SJeff Kirsher /* [R 32] Interrupt register #0 read */
5045adfc5217SJeff Kirsher #define USDM_REG_USDM_INT_STS_0 				 0xc4294
5046adfc5217SJeff Kirsher #define USDM_REG_USDM_INT_STS_1 				 0xc42a4
5047adfc5217SJeff Kirsher /* [RW 11] Parity mask register #0 read/write */
5048adfc5217SJeff Kirsher #define USDM_REG_USDM_PRTY_MASK 				 0xc42c0
5049adfc5217SJeff Kirsher /* [R 11] Parity register #0 read */
5050adfc5217SJeff Kirsher #define USDM_REG_USDM_PRTY_STS					 0xc42b4
5051adfc5217SJeff Kirsher /* [RC 11] Parity register #0 read clear */
5052adfc5217SJeff Kirsher #define USDM_REG_USDM_PRTY_STS_CLR				 0xc42b8
5053adfc5217SJeff Kirsher /* [RW 5] The number of time_slots in the arbitration cycle */
5054adfc5217SJeff Kirsher #define USEM_REG_ARB_CYCLE_SIZE 				 0x300034
5055adfc5217SJeff Kirsher /* [RW 3] The source that is associated with arbitration element 0. Source
5056adfc5217SJeff Kirsher    decoding is: 0- foc0; 1-fic1; 2-sleeping thread with priority 0; 3-
5057adfc5217SJeff Kirsher    sleeping thread with priority 1; 4- sleeping thread with priority 2 */
5058adfc5217SJeff Kirsher #define USEM_REG_ARB_ELEMENT0					 0x300020
5059adfc5217SJeff Kirsher /* [RW 3] The source that is associated with arbitration element 1. Source
5060adfc5217SJeff Kirsher    decoding is: 0- foc0; 1-fic1; 2-sleeping thread with priority 0; 3-
5061adfc5217SJeff Kirsher    sleeping thread with priority 1; 4- sleeping thread with priority 2.
5062adfc5217SJeff Kirsher    Could not be equal to register ~usem_registers_arb_element0.arb_element0 */
5063adfc5217SJeff Kirsher #define USEM_REG_ARB_ELEMENT1					 0x300024
5064adfc5217SJeff Kirsher /* [RW 3] The source that is associated with arbitration element 2. Source
5065adfc5217SJeff Kirsher    decoding is: 0- foc0; 1-fic1; 2-sleeping thread with priority 0; 3-
5066adfc5217SJeff Kirsher    sleeping thread with priority 1; 4- sleeping thread with priority 2.
5067adfc5217SJeff Kirsher    Could not be equal to register ~usem_registers_arb_element0.arb_element0
5068adfc5217SJeff Kirsher    and ~usem_registers_arb_element1.arb_element1 */
5069adfc5217SJeff Kirsher #define USEM_REG_ARB_ELEMENT2					 0x300028
5070adfc5217SJeff Kirsher /* [RW 3] The source that is associated with arbitration element 3. Source
5071adfc5217SJeff Kirsher    decoding is: 0- foc0; 1-fic1; 2-sleeping thread with priority 0; 3-
5072adfc5217SJeff Kirsher    sleeping thread with priority 1; 4- sleeping thread with priority 2.Could
5073adfc5217SJeff Kirsher    not be equal to register ~usem_registers_arb_element0.arb_element0 and
5074adfc5217SJeff Kirsher    ~usem_registers_arb_element1.arb_element1 and
5075adfc5217SJeff Kirsher    ~usem_registers_arb_element2.arb_element2 */
5076adfc5217SJeff Kirsher #define USEM_REG_ARB_ELEMENT3					 0x30002c
5077adfc5217SJeff Kirsher /* [RW 3] The source that is associated with arbitration element 4. Source
5078adfc5217SJeff Kirsher    decoding is: 0- foc0; 1-fic1; 2-sleeping thread with priority 0; 3-
5079adfc5217SJeff Kirsher    sleeping thread with priority 1; 4- sleeping thread with priority 2.
5080adfc5217SJeff Kirsher    Could not be equal to register ~usem_registers_arb_element0.arb_element0
5081adfc5217SJeff Kirsher    and ~usem_registers_arb_element1.arb_element1 and
5082adfc5217SJeff Kirsher    ~usem_registers_arb_element2.arb_element2 and
5083adfc5217SJeff Kirsher    ~usem_registers_arb_element3.arb_element3 */
5084adfc5217SJeff Kirsher #define USEM_REG_ARB_ELEMENT4					 0x300030
5085adfc5217SJeff Kirsher #define USEM_REG_ENABLE_IN					 0x3000a4
5086adfc5217SJeff Kirsher #define USEM_REG_ENABLE_OUT					 0x3000a8
5087adfc5217SJeff Kirsher /* [RW 32] This address space contains all registers and memories that are
5088adfc5217SJeff Kirsher    placed in SEM_FAST block. The SEM_FAST registers are described in
5089adfc5217SJeff Kirsher    appendix B. In order to access the sem_fast registers the base address
5090adfc5217SJeff Kirsher    ~fast_memory.fast_memory should be added to eachsem_fast register offset. */
5091adfc5217SJeff Kirsher #define USEM_REG_FAST_MEMORY					 0x320000
5092adfc5217SJeff Kirsher /* [RW 1] Disables input messages from FIC0 May be updated during run_time
5093adfc5217SJeff Kirsher    by the microcode */
5094adfc5217SJeff Kirsher #define USEM_REG_FIC0_DISABLE					 0x300224
5095adfc5217SJeff Kirsher /* [RW 1] Disables input messages from FIC1 May be updated during run_time
5096adfc5217SJeff Kirsher    by the microcode */
5097adfc5217SJeff Kirsher #define USEM_REG_FIC1_DISABLE					 0x300234
5098adfc5217SJeff Kirsher /* [RW 15] Interrupt table Read and write access to it is not possible in
5099adfc5217SJeff Kirsher    the middle of the work */
5100adfc5217SJeff Kirsher #define USEM_REG_INT_TABLE					 0x300400
5101adfc5217SJeff Kirsher /* [ST 24] Statistics register. The number of messages that entered through
5102adfc5217SJeff Kirsher    FIC0 */
5103adfc5217SJeff Kirsher #define USEM_REG_MSG_NUM_FIC0					 0x300000
5104adfc5217SJeff Kirsher /* [ST 24] Statistics register. The number of messages that entered through
5105adfc5217SJeff Kirsher    FIC1 */
5106adfc5217SJeff Kirsher #define USEM_REG_MSG_NUM_FIC1					 0x300004
5107adfc5217SJeff Kirsher /* [ST 24] Statistics register. The number of messages that were sent to
5108adfc5217SJeff Kirsher    FOC0 */
5109adfc5217SJeff Kirsher #define USEM_REG_MSG_NUM_FOC0					 0x300008
5110adfc5217SJeff Kirsher /* [ST 24] Statistics register. The number of messages that were sent to
5111adfc5217SJeff Kirsher    FOC1 */
5112adfc5217SJeff Kirsher #define USEM_REG_MSG_NUM_FOC1					 0x30000c
5113adfc5217SJeff Kirsher /* [ST 24] Statistics register. The number of messages that were sent to
5114adfc5217SJeff Kirsher    FOC2 */
5115adfc5217SJeff Kirsher #define USEM_REG_MSG_NUM_FOC2					 0x300010
5116adfc5217SJeff Kirsher /* [ST 24] Statistics register. The number of messages that were sent to
5117adfc5217SJeff Kirsher    FOC3 */
5118adfc5217SJeff Kirsher #define USEM_REG_MSG_NUM_FOC3					 0x300014
5119adfc5217SJeff Kirsher /* [RW 1] Disables input messages from the passive buffer May be updated
5120adfc5217SJeff Kirsher    during run_time by the microcode */
5121adfc5217SJeff Kirsher #define USEM_REG_PAS_DISABLE					 0x30024c
5122adfc5217SJeff Kirsher /* [WB 128] Debug only. Passive buffer memory */
5123adfc5217SJeff Kirsher #define USEM_REG_PASSIVE_BUFFER 				 0x302000
5124adfc5217SJeff Kirsher /* [WB 46] pram memory. B45 is parity; b[44:0] - data. */
5125adfc5217SJeff Kirsher #define USEM_REG_PRAM						 0x340000
5126adfc5217SJeff Kirsher /* [R 16] Valid sleeping threads indication have bit per thread */
5127adfc5217SJeff Kirsher #define USEM_REG_SLEEP_THREADS_VALID				 0x30026c
5128adfc5217SJeff Kirsher /* [R 1] EXT_STORE FIFO is empty in sem_slow_ls_ext */
5129adfc5217SJeff Kirsher #define USEM_REG_SLOW_EXT_STORE_EMPTY				 0x3002a0
5130adfc5217SJeff Kirsher /* [RW 16] List of free threads . There is a bit per thread. */
5131adfc5217SJeff Kirsher #define USEM_REG_THREADS_LIST					 0x3002e4
5132adfc5217SJeff Kirsher /* [RW 3] The arbitration scheme of time_slot 0 */
5133adfc5217SJeff Kirsher #define USEM_REG_TS_0_AS					 0x300038
5134adfc5217SJeff Kirsher /* [RW 3] The arbitration scheme of time_slot 10 */
5135adfc5217SJeff Kirsher #define USEM_REG_TS_10_AS					 0x300060
5136adfc5217SJeff Kirsher /* [RW 3] The arbitration scheme of time_slot 11 */
5137adfc5217SJeff Kirsher #define USEM_REG_TS_11_AS					 0x300064
5138adfc5217SJeff Kirsher /* [RW 3] The arbitration scheme of time_slot 12 */
5139adfc5217SJeff Kirsher #define USEM_REG_TS_12_AS					 0x300068
5140adfc5217SJeff Kirsher /* [RW 3] The arbitration scheme of time_slot 13 */
5141adfc5217SJeff Kirsher #define USEM_REG_TS_13_AS					 0x30006c
5142adfc5217SJeff Kirsher /* [RW 3] The arbitration scheme of time_slot 14 */
5143adfc5217SJeff Kirsher #define USEM_REG_TS_14_AS					 0x300070
5144adfc5217SJeff Kirsher /* [RW 3] The arbitration scheme of time_slot 15 */
5145adfc5217SJeff Kirsher #define USEM_REG_TS_15_AS					 0x300074
5146adfc5217SJeff Kirsher /* [RW 3] The arbitration scheme of time_slot 16 */
5147adfc5217SJeff Kirsher #define USEM_REG_TS_16_AS					 0x300078
5148adfc5217SJeff Kirsher /* [RW 3] The arbitration scheme of time_slot 17 */
5149adfc5217SJeff Kirsher #define USEM_REG_TS_17_AS					 0x30007c
5150adfc5217SJeff Kirsher /* [RW 3] The arbitration scheme of time_slot 18 */
5151adfc5217SJeff Kirsher #define USEM_REG_TS_18_AS					 0x300080
5152adfc5217SJeff Kirsher /* [RW 3] The arbitration scheme of time_slot 1 */
5153adfc5217SJeff Kirsher #define USEM_REG_TS_1_AS					 0x30003c
5154adfc5217SJeff Kirsher /* [RW 3] The arbitration scheme of time_slot 2 */
5155adfc5217SJeff Kirsher #define USEM_REG_TS_2_AS					 0x300040
5156adfc5217SJeff Kirsher /* [RW 3] The arbitration scheme of time_slot 3 */
5157adfc5217SJeff Kirsher #define USEM_REG_TS_3_AS					 0x300044
5158adfc5217SJeff Kirsher /* [RW 3] The arbitration scheme of time_slot 4 */
5159adfc5217SJeff Kirsher #define USEM_REG_TS_4_AS					 0x300048
5160adfc5217SJeff Kirsher /* [RW 3] The arbitration scheme of time_slot 5 */
5161adfc5217SJeff Kirsher #define USEM_REG_TS_5_AS					 0x30004c
5162adfc5217SJeff Kirsher /* [RW 3] The arbitration scheme of time_slot 6 */
5163adfc5217SJeff Kirsher #define USEM_REG_TS_6_AS					 0x300050
5164adfc5217SJeff Kirsher /* [RW 3] The arbitration scheme of time_slot 7 */
5165adfc5217SJeff Kirsher #define USEM_REG_TS_7_AS					 0x300054
5166adfc5217SJeff Kirsher /* [RW 3] The arbitration scheme of time_slot 8 */
5167adfc5217SJeff Kirsher #define USEM_REG_TS_8_AS					 0x300058
5168adfc5217SJeff Kirsher /* [RW 3] The arbitration scheme of time_slot 9 */
5169adfc5217SJeff Kirsher #define USEM_REG_TS_9_AS					 0x30005c
5170adfc5217SJeff Kirsher /* [RW 32] Interrupt mask register #0 read/write */
5171adfc5217SJeff Kirsher #define USEM_REG_USEM_INT_MASK_0				 0x300110
5172adfc5217SJeff Kirsher #define USEM_REG_USEM_INT_MASK_1				 0x300120
5173adfc5217SJeff Kirsher /* [R 32] Interrupt register #0 read */
5174adfc5217SJeff Kirsher #define USEM_REG_USEM_INT_STS_0 				 0x300104
5175adfc5217SJeff Kirsher #define USEM_REG_USEM_INT_STS_1 				 0x300114
5176adfc5217SJeff Kirsher /* [RW 32] Parity mask register #0 read/write */
5177adfc5217SJeff Kirsher #define USEM_REG_USEM_PRTY_MASK_0				 0x300130
5178adfc5217SJeff Kirsher #define USEM_REG_USEM_PRTY_MASK_1				 0x300140
5179adfc5217SJeff Kirsher /* [R 32] Parity register #0 read */
5180adfc5217SJeff Kirsher #define USEM_REG_USEM_PRTY_STS_0				 0x300124
5181adfc5217SJeff Kirsher #define USEM_REG_USEM_PRTY_STS_1				 0x300134
5182adfc5217SJeff Kirsher /* [RC 32] Parity register #0 read clear */
5183adfc5217SJeff Kirsher #define USEM_REG_USEM_PRTY_STS_CLR_0				 0x300128
5184adfc5217SJeff Kirsher #define USEM_REG_USEM_PRTY_STS_CLR_1				 0x300138
5185adfc5217SJeff Kirsher /* [W 7] VF or PF ID for reset error bit. Values 0-63 reset error bit for 64
5186adfc5217SJeff Kirsher  * VF; values 64-67 reset error for 4 PF; values 68-127 are not valid. */
5187adfc5217SJeff Kirsher #define USEM_REG_VFPF_ERR_NUM					 0x300380
5188adfc5217SJeff Kirsher #define VFC_MEMORIES_RST_REG_CAM_RST				 (0x1<<0)
5189adfc5217SJeff Kirsher #define VFC_MEMORIES_RST_REG_RAM_RST				 (0x1<<1)
5190adfc5217SJeff Kirsher #define VFC_REG_MEMORIES_RST					 0x1943c
5191adfc5217SJeff Kirsher /* [RW 32] Indirect access to AG context with 32-bits granularity. The bits
5192adfc5217SJeff Kirsher  * [12:8] of the address should be the offset within the accessed LCID
5193adfc5217SJeff Kirsher  * context; the bits [7:0] are the accessed LCID.Example: to write to REG10
5194adfc5217SJeff Kirsher  * LCID100. The RBC address should be 13'ha64. */
5195adfc5217SJeff Kirsher #define XCM_REG_AG_CTX						 0x28000
5196adfc5217SJeff Kirsher /* [RW 2] The queue index for registration on Aux1 counter flag. */
5197adfc5217SJeff Kirsher #define XCM_REG_AUX1_Q						 0x20134
5198adfc5217SJeff Kirsher /* [RW 2] Per each decision rule the queue index to register to. */
5199adfc5217SJeff Kirsher #define XCM_REG_AUX_CNT_FLG_Q_19				 0x201b0
5200adfc5217SJeff Kirsher /* [R 5] Used to read the XX protection CAM occupancy counter. */
5201adfc5217SJeff Kirsher #define XCM_REG_CAM_OCCUP					 0x20244
5202adfc5217SJeff Kirsher /* [RW 1] CDU AG read Interface enable. If 0 - the request input is
5203adfc5217SJeff Kirsher    disregarded; valid output is deasserted; all other signals are treated as
5204adfc5217SJeff Kirsher    usual; if 1 - normal activity. */
5205adfc5217SJeff Kirsher #define XCM_REG_CDU_AG_RD_IFEN					 0x20044
5206adfc5217SJeff Kirsher /* [RW 1] CDU AG write Interface enable. If 0 - the request and valid input
5207adfc5217SJeff Kirsher    are disregarded; all other signals are treated as usual; if 1 - normal
5208adfc5217SJeff Kirsher    activity. */
5209adfc5217SJeff Kirsher #define XCM_REG_CDU_AG_WR_IFEN					 0x20040
5210adfc5217SJeff Kirsher /* [RW 1] CDU STORM read Interface enable. If 0 - the request input is
5211adfc5217SJeff Kirsher    disregarded; valid output is deasserted; all other signals are treated as
5212adfc5217SJeff Kirsher    usual; if 1 - normal activity. */
5213adfc5217SJeff Kirsher #define XCM_REG_CDU_SM_RD_IFEN					 0x2004c
5214adfc5217SJeff Kirsher /* [RW 1] CDU STORM write Interface enable. If 0 - the request and valid
5215adfc5217SJeff Kirsher    input is disregarded; all other signals are treated as usual; if 1 -
5216adfc5217SJeff Kirsher    normal activity. */
5217adfc5217SJeff Kirsher #define XCM_REG_CDU_SM_WR_IFEN					 0x20048
5218adfc5217SJeff Kirsher /* [RW 4] CFC output initial credit. Max credit available - 15.Write writes
5219adfc5217SJeff Kirsher    the initial credit value; read returns the current value of the credit
5220adfc5217SJeff Kirsher    counter. Must be initialized to 1 at start-up. */
5221adfc5217SJeff Kirsher #define XCM_REG_CFC_INIT_CRD					 0x20404
5222adfc5217SJeff Kirsher /* [RW 3] The weight of the CP input in the WRR mechanism. 0 stands for
5223adfc5217SJeff Kirsher    weight 8 (the most prioritised); 1 stands for weight 1(least
5224adfc5217SJeff Kirsher    prioritised); 2 stands for weight 2; tc. */
5225adfc5217SJeff Kirsher #define XCM_REG_CP_WEIGHT					 0x200dc
5226adfc5217SJeff Kirsher /* [RW 1] Input csem Interface enable. If 0 - the valid input is
5227adfc5217SJeff Kirsher    disregarded; acknowledge output is deasserted; all other signals are
5228adfc5217SJeff Kirsher    treated as usual; if 1 - normal activity. */
5229adfc5217SJeff Kirsher #define XCM_REG_CSEM_IFEN					 0x20028
5230adfc5217SJeff Kirsher /* [RC 1] Set at message length mismatch (relative to last indication) at
5231adfc5217SJeff Kirsher    the csem interface. */
5232adfc5217SJeff Kirsher #define XCM_REG_CSEM_LENGTH_MIS 				 0x20228
5233adfc5217SJeff Kirsher /* [RW 3] The weight of the input csem in the WRR mechanism. 0 stands for
5234adfc5217SJeff Kirsher    weight 8 (the most prioritised); 1 stands for weight 1(least
5235adfc5217SJeff Kirsher    prioritised); 2 stands for weight 2; tc. */
5236adfc5217SJeff Kirsher #define XCM_REG_CSEM_WEIGHT					 0x200c4
5237adfc5217SJeff Kirsher /* [RW 1] Input dorq Interface enable. If 0 - the valid input is
5238adfc5217SJeff Kirsher    disregarded; acknowledge output is deasserted; all other signals are
5239adfc5217SJeff Kirsher    treated as usual; if 1 - normal activity. */
5240adfc5217SJeff Kirsher #define XCM_REG_DORQ_IFEN					 0x20030
5241adfc5217SJeff Kirsher /* [RC 1] Set at message length mismatch (relative to last indication) at
5242adfc5217SJeff Kirsher    the dorq interface. */
5243adfc5217SJeff Kirsher #define XCM_REG_DORQ_LENGTH_MIS 				 0x20230
5244adfc5217SJeff Kirsher /* [RW 3] The weight of the input dorq in the WRR mechanism. 0 stands for
5245adfc5217SJeff Kirsher    weight 8 (the most prioritised); 1 stands for weight 1(least
5246adfc5217SJeff Kirsher    prioritised); 2 stands for weight 2; tc. */
5247adfc5217SJeff Kirsher #define XCM_REG_DORQ_WEIGHT					 0x200cc
5248adfc5217SJeff Kirsher /* [RW 8] The Event ID in case the ErrorFlg input message bit is set. */
5249adfc5217SJeff Kirsher #define XCM_REG_ERR_EVNT_ID					 0x200b0
5250adfc5217SJeff Kirsher /* [RW 28] The CM erroneous header for QM and Timers formatting. */
5251adfc5217SJeff Kirsher #define XCM_REG_ERR_XCM_HDR					 0x200ac
5252adfc5217SJeff Kirsher /* [RW 8] The Event ID for Timers expiration. */
5253adfc5217SJeff Kirsher #define XCM_REG_EXPR_EVNT_ID					 0x200b4
5254adfc5217SJeff Kirsher /* [RW 8] FIC0 output initial credit. Max credit available - 255.Write
5255adfc5217SJeff Kirsher    writes the initial credit value; read returns the current value of the
5256adfc5217SJeff Kirsher    credit counter. Must be initialized to 64 at start-up. */
5257adfc5217SJeff Kirsher #define XCM_REG_FIC0_INIT_CRD					 0x2040c
5258adfc5217SJeff Kirsher /* [RW 8] FIC1 output initial credit. Max credit available - 255.Write
5259adfc5217SJeff Kirsher    writes the initial credit value; read returns the current value of the
5260adfc5217SJeff Kirsher    credit counter. Must be initialized to 64 at start-up. */
5261adfc5217SJeff Kirsher #define XCM_REG_FIC1_INIT_CRD					 0x20410
5262adfc5217SJeff Kirsher #define XCM_REG_GLB_DEL_ACK_MAX_CNT_0				 0x20118
5263adfc5217SJeff Kirsher #define XCM_REG_GLB_DEL_ACK_MAX_CNT_1				 0x2011c
5264adfc5217SJeff Kirsher #define XCM_REG_GLB_DEL_ACK_TMR_VAL_0				 0x20108
5265adfc5217SJeff Kirsher #define XCM_REG_GLB_DEL_ACK_TMR_VAL_1				 0x2010c
5266adfc5217SJeff Kirsher /* [RW 1] Arbitratiojn between Input Arbiter groups: 0 - fair Round-Robin; 1
5267adfc5217SJeff Kirsher    - strict priority defined by ~xcm_registers_gr_ag_pr.gr_ag_pr;
5268adfc5217SJeff Kirsher    ~xcm_registers_gr_ld0_pr.gr_ld0_pr and
5269adfc5217SJeff Kirsher    ~xcm_registers_gr_ld1_pr.gr_ld1_pr. */
5270adfc5217SJeff Kirsher #define XCM_REG_GR_ARB_TYPE					 0x2020c
5271adfc5217SJeff Kirsher /* [RW 2] Load (FIC0) channel group priority. The lowest priority is 0; the
5272adfc5217SJeff Kirsher    highest priority is 3. It is supposed that the Channel group is the
5273adfc5217SJeff Kirsher    compliment of the other 3 groups. */
5274adfc5217SJeff Kirsher #define XCM_REG_GR_LD0_PR					 0x20214
5275adfc5217SJeff Kirsher /* [RW 2] Load (FIC1) channel group priority. The lowest priority is 0; the
5276adfc5217SJeff Kirsher    highest priority is 3. It is supposed that the Channel group is the
5277adfc5217SJeff Kirsher    compliment of the other 3 groups. */
5278adfc5217SJeff Kirsher #define XCM_REG_GR_LD1_PR					 0x20218
5279adfc5217SJeff Kirsher /* [RW 1] Input nig0 Interface enable. If 0 - the valid input is
5280adfc5217SJeff Kirsher    disregarded; acknowledge output is deasserted; all other signals are
5281adfc5217SJeff Kirsher    treated as usual; if 1 - normal activity. */
5282adfc5217SJeff Kirsher #define XCM_REG_NIG0_IFEN					 0x20038
5283adfc5217SJeff Kirsher /* [RC 1] Set at message length mismatch (relative to last indication) at
5284adfc5217SJeff Kirsher    the nig0 interface. */
5285adfc5217SJeff Kirsher #define XCM_REG_NIG0_LENGTH_MIS 				 0x20238
5286adfc5217SJeff Kirsher /* [RW 3] The weight of the input nig0 in the WRR mechanism. 0 stands for
5287adfc5217SJeff Kirsher    weight 8 (the most prioritised); 1 stands for weight 1(least
5288adfc5217SJeff Kirsher    prioritised); 2 stands for weight 2; tc. */
5289adfc5217SJeff Kirsher #define XCM_REG_NIG0_WEIGHT					 0x200d4
5290adfc5217SJeff Kirsher /* [RW 1] Input nig1 Interface enable. If 0 - the valid input is
5291adfc5217SJeff Kirsher    disregarded; acknowledge output is deasserted; all other signals are
5292adfc5217SJeff Kirsher    treated as usual; if 1 - normal activity. */
5293adfc5217SJeff Kirsher #define XCM_REG_NIG1_IFEN					 0x2003c
5294adfc5217SJeff Kirsher /* [RC 1] Set at message length mismatch (relative to last indication) at
5295adfc5217SJeff Kirsher    the nig1 interface. */
5296adfc5217SJeff Kirsher #define XCM_REG_NIG1_LENGTH_MIS 				 0x2023c
5297adfc5217SJeff Kirsher /* [RW 5] The number of double REG-pairs; loaded from the STORM context and
5298adfc5217SJeff Kirsher    sent to STORM; for a specific connection type. The double REG-pairs are
5299adfc5217SJeff Kirsher    used in order to align to STORM context row size of 128 bits. The offset
5300adfc5217SJeff Kirsher    of these data in the STORM context is always 0. Index _i stands for the
5301adfc5217SJeff Kirsher    connection type (one of 16). */
5302adfc5217SJeff Kirsher #define XCM_REG_N_SM_CTX_LD_0					 0x20060
5303adfc5217SJeff Kirsher #define XCM_REG_N_SM_CTX_LD_1					 0x20064
5304adfc5217SJeff Kirsher #define XCM_REG_N_SM_CTX_LD_2					 0x20068
5305adfc5217SJeff Kirsher #define XCM_REG_N_SM_CTX_LD_3					 0x2006c
5306adfc5217SJeff Kirsher #define XCM_REG_N_SM_CTX_LD_4					 0x20070
5307adfc5217SJeff Kirsher #define XCM_REG_N_SM_CTX_LD_5					 0x20074
5308adfc5217SJeff Kirsher /* [RW 1] Input pbf Interface enable. If 0 - the valid input is disregarded;
5309adfc5217SJeff Kirsher    acknowledge output is deasserted; all other signals are treated as usual;
5310adfc5217SJeff Kirsher    if 1 - normal activity. */
5311adfc5217SJeff Kirsher #define XCM_REG_PBF_IFEN					 0x20034
5312adfc5217SJeff Kirsher /* [RC 1] Set at message length mismatch (relative to last indication) at
5313adfc5217SJeff Kirsher    the pbf interface. */
5314adfc5217SJeff Kirsher #define XCM_REG_PBF_LENGTH_MIS					 0x20234
5315adfc5217SJeff Kirsher /* [RW 3] The weight of the input pbf in the WRR mechanism. 0 stands for
5316adfc5217SJeff Kirsher    weight 8 (the most prioritised); 1 stands for weight 1(least
5317adfc5217SJeff Kirsher    prioritised); 2 stands for weight 2; tc. */
5318adfc5217SJeff Kirsher #define XCM_REG_PBF_WEIGHT					 0x200d0
5319adfc5217SJeff Kirsher #define XCM_REG_PHYS_QNUM3_0					 0x20100
5320adfc5217SJeff Kirsher #define XCM_REG_PHYS_QNUM3_1					 0x20104
5321adfc5217SJeff Kirsher /* [RW 8] The Event ID for Timers formatting in case of stop done. */
5322adfc5217SJeff Kirsher #define XCM_REG_STOP_EVNT_ID					 0x200b8
5323adfc5217SJeff Kirsher /* [RC 1] Set at message length mismatch (relative to last indication) at
5324adfc5217SJeff Kirsher    the STORM interface. */
5325adfc5217SJeff Kirsher #define XCM_REG_STORM_LENGTH_MIS				 0x2021c
5326adfc5217SJeff Kirsher /* [RW 3] The weight of the STORM input in the WRR mechanism. 0 stands for
5327adfc5217SJeff Kirsher    weight 8 (the most prioritised); 1 stands for weight 1(least
5328adfc5217SJeff Kirsher    prioritised); 2 stands for weight 2; tc. */
5329adfc5217SJeff Kirsher #define XCM_REG_STORM_WEIGHT					 0x200bc
5330adfc5217SJeff Kirsher /* [RW 1] STORM - CM Interface enable. If 0 - the valid input is
5331adfc5217SJeff Kirsher    disregarded; acknowledge output is deasserted; all other signals are
5332adfc5217SJeff Kirsher    treated as usual; if 1 - normal activity. */
5333adfc5217SJeff Kirsher #define XCM_REG_STORM_XCM_IFEN					 0x20010
5334adfc5217SJeff Kirsher /* [RW 4] Timers output initial credit. Max credit available - 15.Write
5335adfc5217SJeff Kirsher    writes the initial credit value; read returns the current value of the
5336adfc5217SJeff Kirsher    credit counter. Must be initialized to 4 at start-up. */
5337adfc5217SJeff Kirsher #define XCM_REG_TM_INIT_CRD					 0x2041c
5338adfc5217SJeff Kirsher /* [RW 3] The weight of the Timers input in the WRR mechanism. 0 stands for
5339adfc5217SJeff Kirsher    weight 8 (the most prioritised); 1 stands for weight 1(least
5340adfc5217SJeff Kirsher    prioritised); 2 stands for weight 2; tc. */
5341adfc5217SJeff Kirsher #define XCM_REG_TM_WEIGHT					 0x200ec
5342adfc5217SJeff Kirsher /* [RW 28] The CM header for Timers expiration command. */
5343adfc5217SJeff Kirsher #define XCM_REG_TM_XCM_HDR					 0x200a8
5344adfc5217SJeff Kirsher /* [RW 1] Timers - CM Interface enable. If 0 - the valid input is
5345adfc5217SJeff Kirsher    disregarded; acknowledge output is deasserted; all other signals are
5346adfc5217SJeff Kirsher    treated as usual; if 1 - normal activity. */
5347adfc5217SJeff Kirsher #define XCM_REG_TM_XCM_IFEN					 0x2001c
5348adfc5217SJeff Kirsher /* [RW 1] Input tsem Interface enable. If 0 - the valid input is
5349adfc5217SJeff Kirsher    disregarded; acknowledge output is deasserted; all other signals are
5350adfc5217SJeff Kirsher    treated as usual; if 1 - normal activity. */
5351adfc5217SJeff Kirsher #define XCM_REG_TSEM_IFEN					 0x20024
5352adfc5217SJeff Kirsher /* [RC 1] Set at message length mismatch (relative to last indication) at
5353adfc5217SJeff Kirsher    the tsem interface. */
5354adfc5217SJeff Kirsher #define XCM_REG_TSEM_LENGTH_MIS 				 0x20224
5355adfc5217SJeff Kirsher /* [RW 3] The weight of the input tsem in the WRR mechanism. 0 stands for
5356adfc5217SJeff Kirsher    weight 8 (the most prioritised); 1 stands for weight 1(least
5357adfc5217SJeff Kirsher    prioritised); 2 stands for weight 2; tc. */
5358adfc5217SJeff Kirsher #define XCM_REG_TSEM_WEIGHT					 0x200c0
5359adfc5217SJeff Kirsher /* [RW 2] The queue index for registration on UNA greater NXT decision rule. */
5360adfc5217SJeff Kirsher #define XCM_REG_UNA_GT_NXT_Q					 0x20120
5361adfc5217SJeff Kirsher /* [RW 1] Input usem Interface enable. If 0 - the valid input is
5362adfc5217SJeff Kirsher    disregarded; acknowledge output is deasserted; all other signals are
5363adfc5217SJeff Kirsher    treated as usual; if 1 - normal activity. */
5364adfc5217SJeff Kirsher #define XCM_REG_USEM_IFEN					 0x2002c
5365adfc5217SJeff Kirsher /* [RC 1] Message length mismatch (relative to last indication) at the usem
5366adfc5217SJeff Kirsher    interface. */
5367adfc5217SJeff Kirsher #define XCM_REG_USEM_LENGTH_MIS 				 0x2022c
5368adfc5217SJeff Kirsher /* [RW 3] The weight of the input usem in the WRR mechanism. 0 stands for
5369adfc5217SJeff Kirsher    weight 8 (the most prioritised); 1 stands for weight 1(least
5370adfc5217SJeff Kirsher    prioritised); 2 stands for weight 2; tc. */
5371adfc5217SJeff Kirsher #define XCM_REG_USEM_WEIGHT					 0x200c8
5372adfc5217SJeff Kirsher #define XCM_REG_WU_DA_CNT_CMD00 				 0x201d4
5373adfc5217SJeff Kirsher #define XCM_REG_WU_DA_CNT_CMD01 				 0x201d8
5374adfc5217SJeff Kirsher #define XCM_REG_WU_DA_CNT_CMD10 				 0x201dc
5375adfc5217SJeff Kirsher #define XCM_REG_WU_DA_CNT_CMD11 				 0x201e0
5376adfc5217SJeff Kirsher #define XCM_REG_WU_DA_CNT_UPD_VAL00				 0x201e4
5377adfc5217SJeff Kirsher #define XCM_REG_WU_DA_CNT_UPD_VAL01				 0x201e8
5378adfc5217SJeff Kirsher #define XCM_REG_WU_DA_CNT_UPD_VAL10				 0x201ec
5379adfc5217SJeff Kirsher #define XCM_REG_WU_DA_CNT_UPD_VAL11				 0x201f0
5380adfc5217SJeff Kirsher #define XCM_REG_WU_DA_SET_TMR_CNT_FLG_CMD00			 0x201c4
5381adfc5217SJeff Kirsher #define XCM_REG_WU_DA_SET_TMR_CNT_FLG_CMD01			 0x201c8
5382adfc5217SJeff Kirsher #define XCM_REG_WU_DA_SET_TMR_CNT_FLG_CMD10			 0x201cc
5383adfc5217SJeff Kirsher #define XCM_REG_WU_DA_SET_TMR_CNT_FLG_CMD11			 0x201d0
5384adfc5217SJeff Kirsher /* [RW 1] CM - CFC Interface enable. If 0 - the valid input is disregarded;
5385adfc5217SJeff Kirsher    acknowledge output is deasserted; all other signals are treated as usual;
5386adfc5217SJeff Kirsher    if 1 - normal activity. */
5387adfc5217SJeff Kirsher #define XCM_REG_XCM_CFC_IFEN					 0x20050
5388adfc5217SJeff Kirsher /* [RW 14] Interrupt mask register #0 read/write */
5389adfc5217SJeff Kirsher #define XCM_REG_XCM_INT_MASK					 0x202b4
5390adfc5217SJeff Kirsher /* [R 14] Interrupt register #0 read */
5391adfc5217SJeff Kirsher #define XCM_REG_XCM_INT_STS					 0x202a8
5392adfc5217SJeff Kirsher /* [RW 30] Parity mask register #0 read/write */
5393adfc5217SJeff Kirsher #define XCM_REG_XCM_PRTY_MASK					 0x202c4
5394adfc5217SJeff Kirsher /* [R 30] Parity register #0 read */
5395adfc5217SJeff Kirsher #define XCM_REG_XCM_PRTY_STS					 0x202b8
5396adfc5217SJeff Kirsher /* [RC 30] Parity register #0 read clear */
5397adfc5217SJeff Kirsher #define XCM_REG_XCM_PRTY_STS_CLR				 0x202bc
5398adfc5217SJeff Kirsher 
5399adfc5217SJeff Kirsher /* [RW 4] The size of AG context region 0 in REG-pairs. Designates the MS
5400adfc5217SJeff Kirsher    REG-pair number (e.g. if region 0 is 6 REG-pairs; the value should be 5).
5401adfc5217SJeff Kirsher    Is used to determine the number of the AG context REG-pairs written back;
5402adfc5217SJeff Kirsher    when the Reg1WbFlg isn't set. */
5403adfc5217SJeff Kirsher #define XCM_REG_XCM_REG0_SZ					 0x200f4
5404adfc5217SJeff Kirsher /* [RW 1] CM - STORM 0 Interface enable. If 0 - the acknowledge input is
5405adfc5217SJeff Kirsher    disregarded; valid is deasserted; all other signals are treated as usual;
5406adfc5217SJeff Kirsher    if 1 - normal activity. */
5407adfc5217SJeff Kirsher #define XCM_REG_XCM_STORM0_IFEN 				 0x20004
5408adfc5217SJeff Kirsher /* [RW 1] CM - STORM 1 Interface enable. If 0 - the acknowledge input is
5409adfc5217SJeff Kirsher    disregarded; valid is deasserted; all other signals are treated as usual;
5410adfc5217SJeff Kirsher    if 1 - normal activity. */
5411adfc5217SJeff Kirsher #define XCM_REG_XCM_STORM1_IFEN 				 0x20008
5412adfc5217SJeff Kirsher /* [RW 1] CM - Timers Interface enable. If 0 - the valid input is
5413adfc5217SJeff Kirsher    disregarded; acknowledge output is deasserted; all other signals are
5414adfc5217SJeff Kirsher    treated as usual; if 1 - normal activity. */
5415adfc5217SJeff Kirsher #define XCM_REG_XCM_TM_IFEN					 0x20020
5416adfc5217SJeff Kirsher /* [RW 1] CM - QM Interface enable. If 0 - the acknowledge input is
5417adfc5217SJeff Kirsher    disregarded; valid is deasserted; all other signals are treated as usual;
5418adfc5217SJeff Kirsher    if 1 - normal activity. */
5419adfc5217SJeff Kirsher #define XCM_REG_XCM_XQM_IFEN					 0x2000c
5420adfc5217SJeff Kirsher /* [RW 1] If set the Q index; received from the QM is inserted to event ID. */
5421adfc5217SJeff Kirsher #define XCM_REG_XCM_XQM_USE_Q					 0x200f0
5422adfc5217SJeff Kirsher /* [RW 4] The value by which CFC updates the activity counter at QM bypass. */
5423adfc5217SJeff Kirsher #define XCM_REG_XQM_BYP_ACT_UPD 				 0x200fc
5424adfc5217SJeff Kirsher /* [RW 6] QM output initial credit. Max credit available - 32.Write writes
5425adfc5217SJeff Kirsher    the initial credit value; read returns the current value of the credit
5426adfc5217SJeff Kirsher    counter. Must be initialized to 32 at start-up. */
5427adfc5217SJeff Kirsher #define XCM_REG_XQM_INIT_CRD					 0x20420
5428adfc5217SJeff Kirsher /* [RW 3] The weight of the QM (primary) input in the WRR mechanism. 0
5429adfc5217SJeff Kirsher    stands for weight 8 (the most prioritised); 1 stands for weight 1(least
5430adfc5217SJeff Kirsher    prioritised); 2 stands for weight 2; tc. */
5431adfc5217SJeff Kirsher #define XCM_REG_XQM_P_WEIGHT					 0x200e4
5432adfc5217SJeff Kirsher /* [RW 3] The weight of the QM (secondary) input in the WRR mechanism. 0
5433adfc5217SJeff Kirsher    stands for weight 8 (the most prioritised); 1 stands for weight 1(least
5434adfc5217SJeff Kirsher    prioritised); 2 stands for weight 2; tc. */
5435adfc5217SJeff Kirsher #define XCM_REG_XQM_S_WEIGHT					 0x200e8
5436adfc5217SJeff Kirsher /* [RW 28] The CM header value for QM request (primary). */
5437adfc5217SJeff Kirsher #define XCM_REG_XQM_XCM_HDR_P					 0x200a0
5438adfc5217SJeff Kirsher /* [RW 28] The CM header value for QM request (secondary). */
5439adfc5217SJeff Kirsher #define XCM_REG_XQM_XCM_HDR_S					 0x200a4
5440adfc5217SJeff Kirsher /* [RW 1] QM - CM Interface enable. If 0 - the valid input is disregarded;
5441adfc5217SJeff Kirsher    acknowledge output is deasserted; all other signals are treated as usual;
5442adfc5217SJeff Kirsher    if 1 - normal activity. */
5443adfc5217SJeff Kirsher #define XCM_REG_XQM_XCM_IFEN					 0x20014
5444adfc5217SJeff Kirsher /* [RW 1] Input SDM Interface enable. If 0 - the valid input is disregarded;
5445adfc5217SJeff Kirsher    acknowledge output is deasserted; all other signals are treated as usual;
5446adfc5217SJeff Kirsher    if 1 - normal activity. */
5447adfc5217SJeff Kirsher #define XCM_REG_XSDM_IFEN					 0x20018
5448adfc5217SJeff Kirsher /* [RC 1] Set at message length mismatch (relative to last indication) at
5449adfc5217SJeff Kirsher    the SDM interface. */
5450adfc5217SJeff Kirsher #define XCM_REG_XSDM_LENGTH_MIS 				 0x20220
5451adfc5217SJeff Kirsher /* [RW 3] The weight of the SDM input in the WRR mechanism. 0 stands for
5452adfc5217SJeff Kirsher    weight 8 (the most prioritised); 1 stands for weight 1(least
5453adfc5217SJeff Kirsher    prioritised); 2 stands for weight 2; tc. */
5454adfc5217SJeff Kirsher #define XCM_REG_XSDM_WEIGHT					 0x200e0
5455adfc5217SJeff Kirsher /* [RW 17] Indirect access to the descriptor table of the XX protection
5456adfc5217SJeff Kirsher    mechanism. The fields are: [5:0] - message length; 11:6] - message
5457adfc5217SJeff Kirsher    pointer; 16:12] - next pointer. */
5458adfc5217SJeff Kirsher #define XCM_REG_XX_DESCR_TABLE					 0x20480
5459adfc5217SJeff Kirsher #define XCM_REG_XX_DESCR_TABLE_SIZE				 32
5460adfc5217SJeff Kirsher /* [R 6] Used to read the XX protection Free counter. */
5461adfc5217SJeff Kirsher #define XCM_REG_XX_FREE 					 0x20240
5462adfc5217SJeff Kirsher /* [RW 6] Initial value for the credit counter; responsible for fulfilling
5463adfc5217SJeff Kirsher    of the Input Stage XX protection buffer by the XX protection pending
5464adfc5217SJeff Kirsher    messages. Max credit available - 3.Write writes the initial credit value;
5465adfc5217SJeff Kirsher    read returns the current value of the credit counter. Must be initialized
5466adfc5217SJeff Kirsher    to 2 at start-up. */
5467adfc5217SJeff Kirsher #define XCM_REG_XX_INIT_CRD					 0x20424
5468adfc5217SJeff Kirsher /* [RW 6] The maximum number of pending messages; which may be stored in XX
5469adfc5217SJeff Kirsher    protection. ~xcm_registers_xx_free.xx_free read on read. */
5470adfc5217SJeff Kirsher #define XCM_REG_XX_MSG_NUM					 0x20428
5471adfc5217SJeff Kirsher /* [RW 8] The Event ID; sent to the STORM in case of XX overflow. */
5472adfc5217SJeff Kirsher #define XCM_REG_XX_OVFL_EVNT_ID 				 0x20058
5473adfc5217SJeff Kirsher #define XMAC_CLEAR_RX_LSS_STATUS_REG_CLEAR_LOCAL_FAULT_STATUS	 (0x1<<0)
5474adfc5217SJeff Kirsher #define XMAC_CLEAR_RX_LSS_STATUS_REG_CLEAR_REMOTE_FAULT_STATUS	 (0x1<<1)
54758decf868SDavid S. Miller #define XMAC_CTRL_REG_LINE_LOCAL_LPBK				 (0x1<<2)
5476adfc5217SJeff Kirsher #define XMAC_CTRL_REG_RX_EN					 (0x1<<1)
5477adfc5217SJeff Kirsher #define XMAC_CTRL_REG_SOFT_RESET				 (0x1<<6)
5478adfc5217SJeff Kirsher #define XMAC_CTRL_REG_TX_EN					 (0x1<<0)
5479adfc5217SJeff Kirsher #define XMAC_PAUSE_CTRL_REG_RX_PAUSE_EN				 (0x1<<18)
5480adfc5217SJeff Kirsher #define XMAC_PAUSE_CTRL_REG_TX_PAUSE_EN				 (0x1<<17)
548127d9129fSYaniv Rosner #define XMAC_PFC_CTRL_HI_REG_FORCE_PFC_XON			 (0x1<<1)
5482adfc5217SJeff Kirsher #define XMAC_PFC_CTRL_HI_REG_PFC_REFRESH_EN			 (0x1<<0)
5483adfc5217SJeff Kirsher #define XMAC_PFC_CTRL_HI_REG_PFC_STATS_EN			 (0x1<<3)
5484adfc5217SJeff Kirsher #define XMAC_PFC_CTRL_HI_REG_RX_PFC_EN				 (0x1<<4)
5485adfc5217SJeff Kirsher #define XMAC_PFC_CTRL_HI_REG_TX_PFC_EN				 (0x1<<5)
5486adfc5217SJeff Kirsher #define XMAC_REG_CLEAR_RX_LSS_STATUS				 0x60
5487adfc5217SJeff Kirsher #define XMAC_REG_CTRL						 0
5488adfc5217SJeff Kirsher /* [RW 16] Upper 48 bits of ctrl_sa register. Used as the SA in PAUSE/PFC
5489adfc5217SJeff Kirsher  * packets transmitted by the MAC */
5490adfc5217SJeff Kirsher #define XMAC_REG_CTRL_SA_HI					 0x2c
5491adfc5217SJeff Kirsher /* [RW 32] Lower 48 bits of ctrl_sa register. Used as the SA in PAUSE/PFC
5492adfc5217SJeff Kirsher  * packets transmitted by the MAC */
5493adfc5217SJeff Kirsher #define XMAC_REG_CTRL_SA_LO					 0x28
5494c8c60d88SYuval Mintz #define XMAC_REG_EEE_CTRL					 0xd8
5495c8c60d88SYuval Mintz #define XMAC_REG_EEE_TIMERS_HI					 0xe4
5496adfc5217SJeff Kirsher #define XMAC_REG_PAUSE_CTRL					 0x68
5497adfc5217SJeff Kirsher #define XMAC_REG_PFC_CTRL					 0x70
5498adfc5217SJeff Kirsher #define XMAC_REG_PFC_CTRL_HI					 0x74
5499adfc5217SJeff Kirsher #define XMAC_REG_RX_LSS_STATUS					 0x58
5500adfc5217SJeff Kirsher /* [RW 14] Maximum packet size in receive direction; exclusive of preamble &
5501adfc5217SJeff Kirsher  * CRC in strip mode */
5502adfc5217SJeff Kirsher #define XMAC_REG_RX_MAX_SIZE					 0x40
5503adfc5217SJeff Kirsher #define XMAC_REG_TX_CTRL					 0x20
5504adfc5217SJeff Kirsher /* [RW 16] Indirect access to the XX table of the XX protection mechanism.
5505adfc5217SJeff Kirsher    The fields are:[4:0] - tail pointer; 9:5] - Link List size; 14:10] -
5506adfc5217SJeff Kirsher    header pointer. */
5507adfc5217SJeff Kirsher #define XCM_REG_XX_TABLE					 0x20500
5508adfc5217SJeff Kirsher /* [RW 8] The event id for aggregated interrupt 0 */
5509adfc5217SJeff Kirsher #define XSDM_REG_AGG_INT_EVENT_0				 0x166038
5510adfc5217SJeff Kirsher #define XSDM_REG_AGG_INT_EVENT_1				 0x16603c
5511adfc5217SJeff Kirsher #define XSDM_REG_AGG_INT_EVENT_10				 0x166060
5512adfc5217SJeff Kirsher #define XSDM_REG_AGG_INT_EVENT_11				 0x166064
5513adfc5217SJeff Kirsher #define XSDM_REG_AGG_INT_EVENT_12				 0x166068
5514adfc5217SJeff Kirsher #define XSDM_REG_AGG_INT_EVENT_13				 0x16606c
5515adfc5217SJeff Kirsher #define XSDM_REG_AGG_INT_EVENT_14				 0x166070
5516adfc5217SJeff Kirsher #define XSDM_REG_AGG_INT_EVENT_2				 0x166040
5517adfc5217SJeff Kirsher #define XSDM_REG_AGG_INT_EVENT_3				 0x166044
5518adfc5217SJeff Kirsher #define XSDM_REG_AGG_INT_EVENT_4				 0x166048
5519adfc5217SJeff Kirsher #define XSDM_REG_AGG_INT_EVENT_5				 0x16604c
5520adfc5217SJeff Kirsher #define XSDM_REG_AGG_INT_EVENT_6				 0x166050
5521adfc5217SJeff Kirsher #define XSDM_REG_AGG_INT_EVENT_7				 0x166054
5522adfc5217SJeff Kirsher #define XSDM_REG_AGG_INT_EVENT_8				 0x166058
5523adfc5217SJeff Kirsher #define XSDM_REG_AGG_INT_EVENT_9				 0x16605c
5524adfc5217SJeff Kirsher /* [RW 1] For each aggregated interrupt index whether the mode is normal (0)
5525adfc5217SJeff Kirsher    or auto-mask-mode (1) */
5526adfc5217SJeff Kirsher #define XSDM_REG_AGG_INT_MODE_0 				 0x1661b8
5527adfc5217SJeff Kirsher #define XSDM_REG_AGG_INT_MODE_1 				 0x1661bc
5528adfc5217SJeff Kirsher /* [RW 13] The start address in the internal RAM for the cfc_rsp lcid */
5529adfc5217SJeff Kirsher #define XSDM_REG_CFC_RSP_START_ADDR				 0x166008
5530adfc5217SJeff Kirsher /* [RW 16] The maximum value of the completion counter #0 */
5531adfc5217SJeff Kirsher #define XSDM_REG_CMP_COUNTER_MAX0				 0x16601c
5532adfc5217SJeff Kirsher /* [RW 16] The maximum value of the completion counter #1 */
5533adfc5217SJeff Kirsher #define XSDM_REG_CMP_COUNTER_MAX1				 0x166020
5534adfc5217SJeff Kirsher /* [RW 16] The maximum value of the completion counter #2 */
5535adfc5217SJeff Kirsher #define XSDM_REG_CMP_COUNTER_MAX2				 0x166024
5536adfc5217SJeff Kirsher /* [RW 16] The maximum value of the completion counter #3 */
5537adfc5217SJeff Kirsher #define XSDM_REG_CMP_COUNTER_MAX3				 0x166028
5538adfc5217SJeff Kirsher /* [RW 13] The start address in the internal RAM for the completion
5539adfc5217SJeff Kirsher    counters. */
5540adfc5217SJeff Kirsher #define XSDM_REG_CMP_COUNTER_START_ADDR 			 0x16600c
5541adfc5217SJeff Kirsher #define XSDM_REG_ENABLE_IN1					 0x166238
5542adfc5217SJeff Kirsher #define XSDM_REG_ENABLE_IN2					 0x16623c
5543adfc5217SJeff Kirsher #define XSDM_REG_ENABLE_OUT1					 0x166240
5544adfc5217SJeff Kirsher #define XSDM_REG_ENABLE_OUT2					 0x166244
5545adfc5217SJeff Kirsher /* [RW 4] The initial number of messages that can be sent to the pxp control
5546adfc5217SJeff Kirsher    interface without receiving any ACK. */
5547adfc5217SJeff Kirsher #define XSDM_REG_INIT_CREDIT_PXP_CTRL				 0x1664bc
5548adfc5217SJeff Kirsher /* [ST 32] The number of ACK after placement messages received */
5549adfc5217SJeff Kirsher #define XSDM_REG_NUM_OF_ACK_AFTER_PLACE 			 0x16627c
5550adfc5217SJeff Kirsher /* [ST 32] The number of packet end messages received from the parser */
5551adfc5217SJeff Kirsher #define XSDM_REG_NUM_OF_PKT_END_MSG				 0x166274
5552adfc5217SJeff Kirsher /* [ST 32] The number of requests received from the pxp async if */
5553adfc5217SJeff Kirsher #define XSDM_REG_NUM_OF_PXP_ASYNC_REQ				 0x166278
5554adfc5217SJeff Kirsher /* [ST 32] The number of commands received in queue 0 */
5555adfc5217SJeff Kirsher #define XSDM_REG_NUM_OF_Q0_CMD					 0x166248
5556adfc5217SJeff Kirsher /* [ST 32] The number of commands received in queue 10 */
5557adfc5217SJeff Kirsher #define XSDM_REG_NUM_OF_Q10_CMD 				 0x16626c
5558adfc5217SJeff Kirsher /* [ST 32] The number of commands received in queue 11 */
5559adfc5217SJeff Kirsher #define XSDM_REG_NUM_OF_Q11_CMD 				 0x166270
5560adfc5217SJeff Kirsher /* [ST 32] The number of commands received in queue 1 */
5561adfc5217SJeff Kirsher #define XSDM_REG_NUM_OF_Q1_CMD					 0x16624c
5562adfc5217SJeff Kirsher /* [ST 32] The number of commands received in queue 3 */
5563adfc5217SJeff Kirsher #define XSDM_REG_NUM_OF_Q3_CMD					 0x166250
5564adfc5217SJeff Kirsher /* [ST 32] The number of commands received in queue 4 */
5565adfc5217SJeff Kirsher #define XSDM_REG_NUM_OF_Q4_CMD					 0x166254
5566adfc5217SJeff Kirsher /* [ST 32] The number of commands received in queue 5 */
5567adfc5217SJeff Kirsher #define XSDM_REG_NUM_OF_Q5_CMD					 0x166258
5568adfc5217SJeff Kirsher /* [ST 32] The number of commands received in queue 6 */
5569adfc5217SJeff Kirsher #define XSDM_REG_NUM_OF_Q6_CMD					 0x16625c
5570adfc5217SJeff Kirsher /* [ST 32] The number of commands received in queue 7 */
5571adfc5217SJeff Kirsher #define XSDM_REG_NUM_OF_Q7_CMD					 0x166260
5572adfc5217SJeff Kirsher /* [ST 32] The number of commands received in queue 8 */
5573adfc5217SJeff Kirsher #define XSDM_REG_NUM_OF_Q8_CMD					 0x166264
5574adfc5217SJeff Kirsher /* [ST 32] The number of commands received in queue 9 */
5575adfc5217SJeff Kirsher #define XSDM_REG_NUM_OF_Q9_CMD					 0x166268
5576adfc5217SJeff Kirsher /* [RW 13] The start address in the internal RAM for queue counters */
5577adfc5217SJeff Kirsher #define XSDM_REG_Q_COUNTER_START_ADDR				 0x166010
5578adfc5217SJeff Kirsher /* [W 17] Generate an operation after completion; bit-16 is
5579adfc5217SJeff Kirsher  * AggVectIdx_valid; bits 15:8 are AggVectIdx; bits 7:5 are the TRIG and
5580adfc5217SJeff Kirsher  * bits 4:0 are the T124Param[4:0] */
5581adfc5217SJeff Kirsher #define XSDM_REG_OPERATION_GEN					 0x1664c4
5582adfc5217SJeff Kirsher /* [R 1] pxp_ctrl rd_data fifo empty in sdm_dma_rsp block */
5583adfc5217SJeff Kirsher #define XSDM_REG_RSP_PXP_CTRL_RDATA_EMPTY			 0x166548
5584adfc5217SJeff Kirsher /* [R 1] parser fifo empty in sdm_sync block */
5585adfc5217SJeff Kirsher #define XSDM_REG_SYNC_PARSER_EMPTY				 0x166550
5586adfc5217SJeff Kirsher /* [R 1] parser serial fifo empty in sdm_sync block */
5587adfc5217SJeff Kirsher #define XSDM_REG_SYNC_SYNC_EMPTY				 0x166558
5588adfc5217SJeff Kirsher /* [RW 32] Tick for timer counter. Applicable only when
5589adfc5217SJeff Kirsher    ~xsdm_registers_timer_tick_enable.timer_tick_enable =1 */
5590adfc5217SJeff Kirsher #define XSDM_REG_TIMER_TICK					 0x166000
5591adfc5217SJeff Kirsher /* [RW 32] Interrupt mask register #0 read/write */
5592adfc5217SJeff Kirsher #define XSDM_REG_XSDM_INT_MASK_0				 0x16629c
5593adfc5217SJeff Kirsher #define XSDM_REG_XSDM_INT_MASK_1				 0x1662ac
5594adfc5217SJeff Kirsher /* [R 32] Interrupt register #0 read */
5595adfc5217SJeff Kirsher #define XSDM_REG_XSDM_INT_STS_0 				 0x166290
5596adfc5217SJeff Kirsher #define XSDM_REG_XSDM_INT_STS_1 				 0x1662a0
5597adfc5217SJeff Kirsher /* [RW 11] Parity mask register #0 read/write */
5598adfc5217SJeff Kirsher #define XSDM_REG_XSDM_PRTY_MASK 				 0x1662bc
5599adfc5217SJeff Kirsher /* [R 11] Parity register #0 read */
5600adfc5217SJeff Kirsher #define XSDM_REG_XSDM_PRTY_STS					 0x1662b0
5601adfc5217SJeff Kirsher /* [RC 11] Parity register #0 read clear */
5602adfc5217SJeff Kirsher #define XSDM_REG_XSDM_PRTY_STS_CLR				 0x1662b4
5603adfc5217SJeff Kirsher /* [RW 5] The number of time_slots in the arbitration cycle */
5604adfc5217SJeff Kirsher #define XSEM_REG_ARB_CYCLE_SIZE 				 0x280034
5605adfc5217SJeff Kirsher /* [RW 3] The source that is associated with arbitration element 0. Source
5606adfc5217SJeff Kirsher    decoding is: 0- foc0; 1-fic1; 2-sleeping thread with priority 0; 3-
5607adfc5217SJeff Kirsher    sleeping thread with priority 1; 4- sleeping thread with priority 2 */
5608adfc5217SJeff Kirsher #define XSEM_REG_ARB_ELEMENT0					 0x280020
5609adfc5217SJeff Kirsher /* [RW 3] The source that is associated with arbitration element 1. Source
5610adfc5217SJeff Kirsher    decoding is: 0- foc0; 1-fic1; 2-sleeping thread with priority 0; 3-
5611adfc5217SJeff Kirsher    sleeping thread with priority 1; 4- sleeping thread with priority 2.
5612adfc5217SJeff Kirsher    Could not be equal to register ~xsem_registers_arb_element0.arb_element0 */
5613adfc5217SJeff Kirsher #define XSEM_REG_ARB_ELEMENT1					 0x280024
5614adfc5217SJeff Kirsher /* [RW 3] The source that is associated with arbitration element 2. Source
5615adfc5217SJeff Kirsher    decoding is: 0- foc0; 1-fic1; 2-sleeping thread with priority 0; 3-
5616adfc5217SJeff Kirsher    sleeping thread with priority 1; 4- sleeping thread with priority 2.
5617adfc5217SJeff Kirsher    Could not be equal to register ~xsem_registers_arb_element0.arb_element0
5618adfc5217SJeff Kirsher    and ~xsem_registers_arb_element1.arb_element1 */
5619adfc5217SJeff Kirsher #define XSEM_REG_ARB_ELEMENT2					 0x280028
5620adfc5217SJeff Kirsher /* [RW 3] The source that is associated with arbitration element 3. Source
5621adfc5217SJeff Kirsher    decoding is: 0- foc0; 1-fic1; 2-sleeping thread with priority 0; 3-
5622adfc5217SJeff Kirsher    sleeping thread with priority 1; 4- sleeping thread with priority 2.Could
5623adfc5217SJeff Kirsher    not be equal to register ~xsem_registers_arb_element0.arb_element0 and
5624adfc5217SJeff Kirsher    ~xsem_registers_arb_element1.arb_element1 and
5625adfc5217SJeff Kirsher    ~xsem_registers_arb_element2.arb_element2 */
5626adfc5217SJeff Kirsher #define XSEM_REG_ARB_ELEMENT3					 0x28002c
5627adfc5217SJeff Kirsher /* [RW 3] The source that is associated with arbitration element 4. Source
5628adfc5217SJeff Kirsher    decoding is: 0- foc0; 1-fic1; 2-sleeping thread with priority 0; 3-
5629adfc5217SJeff Kirsher    sleeping thread with priority 1; 4- sleeping thread with priority 2.
5630adfc5217SJeff Kirsher    Could not be equal to register ~xsem_registers_arb_element0.arb_element0
5631adfc5217SJeff Kirsher    and ~xsem_registers_arb_element1.arb_element1 and
5632adfc5217SJeff Kirsher    ~xsem_registers_arb_element2.arb_element2 and
5633adfc5217SJeff Kirsher    ~xsem_registers_arb_element3.arb_element3 */
5634adfc5217SJeff Kirsher #define XSEM_REG_ARB_ELEMENT4					 0x280030
5635adfc5217SJeff Kirsher #define XSEM_REG_ENABLE_IN					 0x2800a4
5636adfc5217SJeff Kirsher #define XSEM_REG_ENABLE_OUT					 0x2800a8
5637adfc5217SJeff Kirsher /* [RW 32] This address space contains all registers and memories that are
5638adfc5217SJeff Kirsher    placed in SEM_FAST block. The SEM_FAST registers are described in
5639adfc5217SJeff Kirsher    appendix B. In order to access the sem_fast registers the base address
5640adfc5217SJeff Kirsher    ~fast_memory.fast_memory should be added to eachsem_fast register offset. */
5641adfc5217SJeff Kirsher #define XSEM_REG_FAST_MEMORY					 0x2a0000
5642adfc5217SJeff Kirsher /* [RW 1] Disables input messages from FIC0 May be updated during run_time
5643adfc5217SJeff Kirsher    by the microcode */
5644adfc5217SJeff Kirsher #define XSEM_REG_FIC0_DISABLE					 0x280224
5645adfc5217SJeff Kirsher /* [RW 1] Disables input messages from FIC1 May be updated during run_time
5646adfc5217SJeff Kirsher    by the microcode */
5647adfc5217SJeff Kirsher #define XSEM_REG_FIC1_DISABLE					 0x280234
5648adfc5217SJeff Kirsher /* [RW 15] Interrupt table Read and write access to it is not possible in
5649adfc5217SJeff Kirsher    the middle of the work */
5650adfc5217SJeff Kirsher #define XSEM_REG_INT_TABLE					 0x280400
5651adfc5217SJeff Kirsher /* [ST 24] Statistics register. The number of messages that entered through
5652adfc5217SJeff Kirsher    FIC0 */
5653adfc5217SJeff Kirsher #define XSEM_REG_MSG_NUM_FIC0					 0x280000
5654adfc5217SJeff Kirsher /* [ST 24] Statistics register. The number of messages that entered through
5655adfc5217SJeff Kirsher    FIC1 */
5656adfc5217SJeff Kirsher #define XSEM_REG_MSG_NUM_FIC1					 0x280004
5657adfc5217SJeff Kirsher /* [ST 24] Statistics register. The number of messages that were sent to
5658adfc5217SJeff Kirsher    FOC0 */
5659adfc5217SJeff Kirsher #define XSEM_REG_MSG_NUM_FOC0					 0x280008
5660adfc5217SJeff Kirsher /* [ST 24] Statistics register. The number of messages that were sent to
5661adfc5217SJeff Kirsher    FOC1 */
5662adfc5217SJeff Kirsher #define XSEM_REG_MSG_NUM_FOC1					 0x28000c
5663adfc5217SJeff Kirsher /* [ST 24] Statistics register. The number of messages that were sent to
5664adfc5217SJeff Kirsher    FOC2 */
5665adfc5217SJeff Kirsher #define XSEM_REG_MSG_NUM_FOC2					 0x280010
5666adfc5217SJeff Kirsher /* [ST 24] Statistics register. The number of messages that were sent to
5667adfc5217SJeff Kirsher    FOC3 */
5668adfc5217SJeff Kirsher #define XSEM_REG_MSG_NUM_FOC3					 0x280014
5669adfc5217SJeff Kirsher /* [RW 1] Disables input messages from the passive buffer May be updated
5670adfc5217SJeff Kirsher    during run_time by the microcode */
5671adfc5217SJeff Kirsher #define XSEM_REG_PAS_DISABLE					 0x28024c
5672adfc5217SJeff Kirsher /* [WB 128] Debug only. Passive buffer memory */
5673adfc5217SJeff Kirsher #define XSEM_REG_PASSIVE_BUFFER 				 0x282000
5674adfc5217SJeff Kirsher /* [WB 46] pram memory. B45 is parity; b[44:0] - data. */
5675adfc5217SJeff Kirsher #define XSEM_REG_PRAM						 0x2c0000
5676adfc5217SJeff Kirsher /* [R 16] Valid sleeping threads indication have bit per thread */
5677adfc5217SJeff Kirsher #define XSEM_REG_SLEEP_THREADS_VALID				 0x28026c
5678adfc5217SJeff Kirsher /* [R 1] EXT_STORE FIFO is empty in sem_slow_ls_ext */
5679adfc5217SJeff Kirsher #define XSEM_REG_SLOW_EXT_STORE_EMPTY				 0x2802a0
5680adfc5217SJeff Kirsher /* [RW 16] List of free threads . There is a bit per thread. */
5681adfc5217SJeff Kirsher #define XSEM_REG_THREADS_LIST					 0x2802e4
5682adfc5217SJeff Kirsher /* [RW 3] The arbitration scheme of time_slot 0 */
5683adfc5217SJeff Kirsher #define XSEM_REG_TS_0_AS					 0x280038
5684adfc5217SJeff Kirsher /* [RW 3] The arbitration scheme of time_slot 10 */
5685adfc5217SJeff Kirsher #define XSEM_REG_TS_10_AS					 0x280060
5686adfc5217SJeff Kirsher /* [RW 3] The arbitration scheme of time_slot 11 */
5687adfc5217SJeff Kirsher #define XSEM_REG_TS_11_AS					 0x280064
5688adfc5217SJeff Kirsher /* [RW 3] The arbitration scheme of time_slot 12 */
5689adfc5217SJeff Kirsher #define XSEM_REG_TS_12_AS					 0x280068
5690adfc5217SJeff Kirsher /* [RW 3] The arbitration scheme of time_slot 13 */
5691adfc5217SJeff Kirsher #define XSEM_REG_TS_13_AS					 0x28006c
5692adfc5217SJeff Kirsher /* [RW 3] The arbitration scheme of time_slot 14 */
5693adfc5217SJeff Kirsher #define XSEM_REG_TS_14_AS					 0x280070
5694adfc5217SJeff Kirsher /* [RW 3] The arbitration scheme of time_slot 15 */
5695adfc5217SJeff Kirsher #define XSEM_REG_TS_15_AS					 0x280074
5696adfc5217SJeff Kirsher /* [RW 3] The arbitration scheme of time_slot 16 */
5697adfc5217SJeff Kirsher #define XSEM_REG_TS_16_AS					 0x280078
5698adfc5217SJeff Kirsher /* [RW 3] The arbitration scheme of time_slot 17 */
5699adfc5217SJeff Kirsher #define XSEM_REG_TS_17_AS					 0x28007c
5700adfc5217SJeff Kirsher /* [RW 3] The arbitration scheme of time_slot 18 */
5701adfc5217SJeff Kirsher #define XSEM_REG_TS_18_AS					 0x280080
5702adfc5217SJeff Kirsher /* [RW 3] The arbitration scheme of time_slot 1 */
5703adfc5217SJeff Kirsher #define XSEM_REG_TS_1_AS					 0x28003c
5704adfc5217SJeff Kirsher /* [RW 3] The arbitration scheme of time_slot 2 */
5705adfc5217SJeff Kirsher #define XSEM_REG_TS_2_AS					 0x280040
5706adfc5217SJeff Kirsher /* [RW 3] The arbitration scheme of time_slot 3 */
5707adfc5217SJeff Kirsher #define XSEM_REG_TS_3_AS					 0x280044
5708adfc5217SJeff Kirsher /* [RW 3] The arbitration scheme of time_slot 4 */
5709adfc5217SJeff Kirsher #define XSEM_REG_TS_4_AS					 0x280048
5710adfc5217SJeff Kirsher /* [RW 3] The arbitration scheme of time_slot 5 */
5711adfc5217SJeff Kirsher #define XSEM_REG_TS_5_AS					 0x28004c
5712adfc5217SJeff Kirsher /* [RW 3] The arbitration scheme of time_slot 6 */
5713adfc5217SJeff Kirsher #define XSEM_REG_TS_6_AS					 0x280050
5714adfc5217SJeff Kirsher /* [RW 3] The arbitration scheme of time_slot 7 */
5715adfc5217SJeff Kirsher #define XSEM_REG_TS_7_AS					 0x280054
5716adfc5217SJeff Kirsher /* [RW 3] The arbitration scheme of time_slot 8 */
5717adfc5217SJeff Kirsher #define XSEM_REG_TS_8_AS					 0x280058
5718adfc5217SJeff Kirsher /* [RW 3] The arbitration scheme of time_slot 9 */
5719adfc5217SJeff Kirsher #define XSEM_REG_TS_9_AS					 0x28005c
5720adfc5217SJeff Kirsher /* [W 7] VF or PF ID for reset error bit. Values 0-63 reset error bit for 64
5721adfc5217SJeff Kirsher  * VF; values 64-67 reset error for 4 PF; values 68-127 are not valid. */
5722adfc5217SJeff Kirsher #define XSEM_REG_VFPF_ERR_NUM					 0x280380
5723adfc5217SJeff Kirsher /* [RW 32] Interrupt mask register #0 read/write */
5724adfc5217SJeff Kirsher #define XSEM_REG_XSEM_INT_MASK_0				 0x280110
5725adfc5217SJeff Kirsher #define XSEM_REG_XSEM_INT_MASK_1				 0x280120
5726adfc5217SJeff Kirsher /* [R 32] Interrupt register #0 read */
5727adfc5217SJeff Kirsher #define XSEM_REG_XSEM_INT_STS_0 				 0x280104
5728adfc5217SJeff Kirsher #define XSEM_REG_XSEM_INT_STS_1 				 0x280114
5729adfc5217SJeff Kirsher /* [RW 32] Parity mask register #0 read/write */
5730adfc5217SJeff Kirsher #define XSEM_REG_XSEM_PRTY_MASK_0				 0x280130
5731adfc5217SJeff Kirsher #define XSEM_REG_XSEM_PRTY_MASK_1				 0x280140
5732adfc5217SJeff Kirsher /* [R 32] Parity register #0 read */
5733adfc5217SJeff Kirsher #define XSEM_REG_XSEM_PRTY_STS_0				 0x280124
5734adfc5217SJeff Kirsher #define XSEM_REG_XSEM_PRTY_STS_1				 0x280134
5735adfc5217SJeff Kirsher /* [RC 32] Parity register #0 read clear */
5736adfc5217SJeff Kirsher #define XSEM_REG_XSEM_PRTY_STS_CLR_0				 0x280128
5737adfc5217SJeff Kirsher #define XSEM_REG_XSEM_PRTY_STS_CLR_1				 0x280138
5738452427b0SYuval Mintz #define MCPR_ACCESS_LOCK_LOCK					 (1L<<31)
5739adfc5217SJeff Kirsher #define MCPR_NVM_ACCESS_ENABLE_EN				 (1L<<0)
5740adfc5217SJeff Kirsher #define MCPR_NVM_ACCESS_ENABLE_WR_EN				 (1L<<1)
5741adfc5217SJeff Kirsher #define MCPR_NVM_ADDR_NVM_ADDR_VALUE				 (0xffffffL<<0)
5742adfc5217SJeff Kirsher #define MCPR_NVM_CFG4_FLASH_SIZE				 (0x7L<<0)
5743adfc5217SJeff Kirsher #define MCPR_NVM_COMMAND_DOIT					 (1L<<4)
5744adfc5217SJeff Kirsher #define MCPR_NVM_COMMAND_DONE					 (1L<<3)
5745adfc5217SJeff Kirsher #define MCPR_NVM_COMMAND_FIRST					 (1L<<7)
5746adfc5217SJeff Kirsher #define MCPR_NVM_COMMAND_LAST					 (1L<<8)
5747adfc5217SJeff Kirsher #define MCPR_NVM_COMMAND_WR					 (1L<<5)
5748adfc5217SJeff Kirsher #define MCPR_NVM_SW_ARB_ARB_ARB1				 (1L<<9)
5749adfc5217SJeff Kirsher #define MCPR_NVM_SW_ARB_ARB_REQ_CLR1				 (1L<<5)
5750adfc5217SJeff Kirsher #define MCPR_NVM_SW_ARB_ARB_REQ_SET1				 (1L<<1)
5751adfc5217SJeff Kirsher #define BIGMAC_REGISTER_BMAC_CONTROL				 (0x00<<3)
5752adfc5217SJeff Kirsher #define BIGMAC_REGISTER_BMAC_XGXS_CONTROL			 (0x01<<3)
5753adfc5217SJeff Kirsher #define BIGMAC_REGISTER_CNT_MAX_SIZE				 (0x05<<3)
5754adfc5217SJeff Kirsher #define BIGMAC_REGISTER_RX_CONTROL				 (0x21<<3)
5755adfc5217SJeff Kirsher #define BIGMAC_REGISTER_RX_LLFC_MSG_FLDS			 (0x46<<3)
5756adfc5217SJeff Kirsher #define BIGMAC_REGISTER_RX_LSS_STATUS				 (0x43<<3)
5757adfc5217SJeff Kirsher #define BIGMAC_REGISTER_RX_MAX_SIZE				 (0x23<<3)
5758adfc5217SJeff Kirsher #define BIGMAC_REGISTER_RX_STAT_GR64				 (0x26<<3)
5759adfc5217SJeff Kirsher #define BIGMAC_REGISTER_RX_STAT_GRIPJ				 (0x42<<3)
5760adfc5217SJeff Kirsher #define BIGMAC_REGISTER_TX_CONTROL				 (0x07<<3)
5761adfc5217SJeff Kirsher #define BIGMAC_REGISTER_TX_MAX_SIZE				 (0x09<<3)
5762adfc5217SJeff Kirsher #define BIGMAC_REGISTER_TX_PAUSE_THRESHOLD			 (0x0A<<3)
5763adfc5217SJeff Kirsher #define BIGMAC_REGISTER_TX_SOURCE_ADDR				 (0x08<<3)
5764adfc5217SJeff Kirsher #define BIGMAC_REGISTER_TX_STAT_GTBYT				 (0x20<<3)
5765adfc5217SJeff Kirsher #define BIGMAC_REGISTER_TX_STAT_GTPKT				 (0x0C<<3)
5766adfc5217SJeff Kirsher #define BIGMAC2_REGISTER_BMAC_CONTROL				 (0x00<<3)
5767adfc5217SJeff Kirsher #define BIGMAC2_REGISTER_BMAC_XGXS_CONTROL			 (0x01<<3)
5768adfc5217SJeff Kirsher #define BIGMAC2_REGISTER_CNT_MAX_SIZE				 (0x05<<3)
5769adfc5217SJeff Kirsher #define BIGMAC2_REGISTER_PFC_CONTROL				 (0x06<<3)
5770adfc5217SJeff Kirsher #define BIGMAC2_REGISTER_RX_CONTROL				 (0x3A<<3)
5771adfc5217SJeff Kirsher #define BIGMAC2_REGISTER_RX_LLFC_MSG_FLDS			 (0x62<<3)
5772adfc5217SJeff Kirsher #define BIGMAC2_REGISTER_RX_LSS_STAT				 (0x3E<<3)
5773adfc5217SJeff Kirsher #define BIGMAC2_REGISTER_RX_MAX_SIZE				 (0x3C<<3)
5774adfc5217SJeff Kirsher #define BIGMAC2_REGISTER_RX_STAT_GR64				 (0x40<<3)
5775adfc5217SJeff Kirsher #define BIGMAC2_REGISTER_RX_STAT_GRIPJ				 (0x5f<<3)
5776adfc5217SJeff Kirsher #define BIGMAC2_REGISTER_RX_STAT_GRPP				 (0x51<<3)
5777adfc5217SJeff Kirsher #define BIGMAC2_REGISTER_TX_CONTROL				 (0x1C<<3)
5778adfc5217SJeff Kirsher #define BIGMAC2_REGISTER_TX_MAX_SIZE				 (0x1E<<3)
5779adfc5217SJeff Kirsher #define BIGMAC2_REGISTER_TX_PAUSE_CONTROL			 (0x20<<3)
5780adfc5217SJeff Kirsher #define BIGMAC2_REGISTER_TX_SOURCE_ADDR			 (0x1D<<3)
5781adfc5217SJeff Kirsher #define BIGMAC2_REGISTER_TX_STAT_GTBYT				 (0x39<<3)
5782adfc5217SJeff Kirsher #define BIGMAC2_REGISTER_TX_STAT_GTPOK				 (0x22<<3)
5783adfc5217SJeff Kirsher #define BIGMAC2_REGISTER_TX_STAT_GTPP				 (0x24<<3)
5784adfc5217SJeff Kirsher #define EMAC_LED_1000MB_OVERRIDE				 (1L<<1)
5785adfc5217SJeff Kirsher #define EMAC_LED_100MB_OVERRIDE 				 (1L<<2)
5786adfc5217SJeff Kirsher #define EMAC_LED_10MB_OVERRIDE					 (1L<<3)
5787adfc5217SJeff Kirsher #define EMAC_LED_2500MB_OVERRIDE				 (1L<<12)
5788adfc5217SJeff Kirsher #define EMAC_LED_OVERRIDE					 (1L<<0)
5789adfc5217SJeff Kirsher #define EMAC_LED_TRAFFIC					 (1L<<6)
5790adfc5217SJeff Kirsher #define EMAC_MDIO_COMM_COMMAND_ADDRESS				 (0L<<26)
5791adfc5217SJeff Kirsher #define EMAC_MDIO_COMM_COMMAND_READ_22				 (2L<<26)
5792adfc5217SJeff Kirsher #define EMAC_MDIO_COMM_COMMAND_READ_45				 (3L<<26)
5793adfc5217SJeff Kirsher #define EMAC_MDIO_COMM_COMMAND_WRITE_22				 (1L<<26)
5794adfc5217SJeff Kirsher #define EMAC_MDIO_COMM_COMMAND_WRITE_45 			 (1L<<26)
5795adfc5217SJeff Kirsher #define EMAC_MDIO_COMM_DATA					 (0xffffL<<0)
5796adfc5217SJeff Kirsher #define EMAC_MDIO_COMM_START_BUSY				 (1L<<29)
5797adfc5217SJeff Kirsher #define EMAC_MDIO_MODE_AUTO_POLL				 (1L<<4)
5798adfc5217SJeff Kirsher #define EMAC_MDIO_MODE_CLAUSE_45				 (1L<<31)
5799adfc5217SJeff Kirsher #define EMAC_MDIO_MODE_CLOCK_CNT				 (0x3ffL<<16)
5800adfc5217SJeff Kirsher #define EMAC_MDIO_MODE_CLOCK_CNT_BITSHIFT			 16
5801adfc5217SJeff Kirsher #define EMAC_MDIO_STATUS_10MB					 (1L<<1)
5802adfc5217SJeff Kirsher #define EMAC_MODE_25G_MODE					 (1L<<5)
5803adfc5217SJeff Kirsher #define EMAC_MODE_HALF_DUPLEX					 (1L<<1)
5804adfc5217SJeff Kirsher #define EMAC_MODE_PORT_GMII					 (2L<<2)
5805adfc5217SJeff Kirsher #define EMAC_MODE_PORT_MII					 (1L<<2)
5806adfc5217SJeff Kirsher #define EMAC_MODE_PORT_MII_10M					 (3L<<2)
5807adfc5217SJeff Kirsher #define EMAC_MODE_RESET 					 (1L<<0)
5808adfc5217SJeff Kirsher #define EMAC_REG_EMAC_LED					 0xc
5809adfc5217SJeff Kirsher #define EMAC_REG_EMAC_MAC_MATCH 				 0x10
5810adfc5217SJeff Kirsher #define EMAC_REG_EMAC_MDIO_COMM 				 0xac
5811adfc5217SJeff Kirsher #define EMAC_REG_EMAC_MDIO_MODE 				 0xb4
5812adfc5217SJeff Kirsher #define EMAC_REG_EMAC_MDIO_STATUS				 0xb0
5813adfc5217SJeff Kirsher #define EMAC_REG_EMAC_MODE					 0x0
5814adfc5217SJeff Kirsher #define EMAC_REG_EMAC_RX_MODE					 0xc8
5815adfc5217SJeff Kirsher #define EMAC_REG_EMAC_RX_MTU_SIZE				 0x9c
5816adfc5217SJeff Kirsher #define EMAC_REG_EMAC_RX_STAT_AC				 0x180
5817adfc5217SJeff Kirsher #define EMAC_REG_EMAC_RX_STAT_AC_28				 0x1f4
5818adfc5217SJeff Kirsher #define EMAC_REG_EMAC_RX_STAT_AC_COUNT				 23
5819adfc5217SJeff Kirsher #define EMAC_REG_EMAC_TX_MODE					 0xbc
5820adfc5217SJeff Kirsher #define EMAC_REG_EMAC_TX_STAT_AC				 0x280
5821adfc5217SJeff Kirsher #define EMAC_REG_EMAC_TX_STAT_AC_COUNT				 22
5822adfc5217SJeff Kirsher #define EMAC_REG_RX_PFC_MODE					 0x320
5823adfc5217SJeff Kirsher #define EMAC_REG_RX_PFC_MODE_PRIORITIES				 (1L<<2)
5824adfc5217SJeff Kirsher #define EMAC_REG_RX_PFC_MODE_RX_EN				 (1L<<1)
5825adfc5217SJeff Kirsher #define EMAC_REG_RX_PFC_MODE_TX_EN				 (1L<<0)
5826adfc5217SJeff Kirsher #define EMAC_REG_RX_PFC_PARAM					 0x324
5827adfc5217SJeff Kirsher #define EMAC_REG_RX_PFC_PARAM_OPCODE_BITSHIFT			 0
5828adfc5217SJeff Kirsher #define EMAC_REG_RX_PFC_PARAM_PRIORITY_EN_BITSHIFT		 16
5829adfc5217SJeff Kirsher #define EMAC_REG_RX_PFC_STATS_XOFF_RCVD				 0x328
5830adfc5217SJeff Kirsher #define EMAC_REG_RX_PFC_STATS_XOFF_RCVD_COUNT			 (0xffff<<0)
5831adfc5217SJeff Kirsher #define EMAC_REG_RX_PFC_STATS_XOFF_SENT				 0x330
5832adfc5217SJeff Kirsher #define EMAC_REG_RX_PFC_STATS_XOFF_SENT_COUNT			 (0xffff<<0)
5833adfc5217SJeff Kirsher #define EMAC_REG_RX_PFC_STATS_XON_RCVD				 0x32c
5834adfc5217SJeff Kirsher #define EMAC_REG_RX_PFC_STATS_XON_RCVD_COUNT			 (0xffff<<0)
5835adfc5217SJeff Kirsher #define EMAC_REG_RX_PFC_STATS_XON_SENT				 0x334
5836adfc5217SJeff Kirsher #define EMAC_REG_RX_PFC_STATS_XON_SENT_COUNT			 (0xffff<<0)
5837adfc5217SJeff Kirsher #define EMAC_RX_MODE_FLOW_EN					 (1L<<2)
5838adfc5217SJeff Kirsher #define EMAC_RX_MODE_KEEP_MAC_CONTROL				 (1L<<3)
5839adfc5217SJeff Kirsher #define EMAC_RX_MODE_KEEP_VLAN_TAG				 (1L<<10)
5840adfc5217SJeff Kirsher #define EMAC_RX_MODE_PROMISCUOUS				 (1L<<8)
5841adfc5217SJeff Kirsher #define EMAC_RX_MODE_RESET					 (1L<<0)
5842adfc5217SJeff Kirsher #define EMAC_RX_MTU_SIZE_JUMBO_ENA				 (1L<<31)
5843adfc5217SJeff Kirsher #define EMAC_TX_MODE_EXT_PAUSE_EN				 (1L<<3)
5844adfc5217SJeff Kirsher #define EMAC_TX_MODE_FLOW_EN					 (1L<<4)
5845adfc5217SJeff Kirsher #define EMAC_TX_MODE_RESET					 (1L<<0)
5846adfc5217SJeff Kirsher #define MISC_REGISTERS_GPIO_0					 0
5847adfc5217SJeff Kirsher #define MISC_REGISTERS_GPIO_1					 1
5848adfc5217SJeff Kirsher #define MISC_REGISTERS_GPIO_2					 2
5849adfc5217SJeff Kirsher #define MISC_REGISTERS_GPIO_3					 3
5850adfc5217SJeff Kirsher #define MISC_REGISTERS_GPIO_CLR_POS				 16
5851adfc5217SJeff Kirsher #define MISC_REGISTERS_GPIO_FLOAT				 (0xffL<<24)
5852adfc5217SJeff Kirsher #define MISC_REGISTERS_GPIO_FLOAT_POS				 24
5853adfc5217SJeff Kirsher #define MISC_REGISTERS_GPIO_HIGH				 1
5854adfc5217SJeff Kirsher #define MISC_REGISTERS_GPIO_INPUT_HI_Z				 2
5855adfc5217SJeff Kirsher #define MISC_REGISTERS_GPIO_INT_CLR_POS 			 24
5856adfc5217SJeff Kirsher #define MISC_REGISTERS_GPIO_INT_OUTPUT_CLR			 0
5857adfc5217SJeff Kirsher #define MISC_REGISTERS_GPIO_INT_OUTPUT_SET			 1
5858adfc5217SJeff Kirsher #define MISC_REGISTERS_GPIO_INT_SET_POS 			 16
5859adfc5217SJeff Kirsher #define MISC_REGISTERS_GPIO_LOW 				 0
5860adfc5217SJeff Kirsher #define MISC_REGISTERS_GPIO_OUTPUT_HIGH 			 1
5861adfc5217SJeff Kirsher #define MISC_REGISTERS_GPIO_OUTPUT_LOW				 0
5862adfc5217SJeff Kirsher #define MISC_REGISTERS_GPIO_PORT_SHIFT				 4
5863adfc5217SJeff Kirsher #define MISC_REGISTERS_GPIO_SET_POS				 8
5864adfc5217SJeff Kirsher #define MISC_REGISTERS_RESET_REG_1_CLEAR			 0x588
5865452427b0SYuval Mintz #define MISC_REGISTERS_RESET_REG_1_RST_BRB1			 (0x1<<0)
5866f16da43bSAriel Elior #define MISC_REGISTERS_RESET_REG_1_RST_DORQ			 (0x1<<19)
5867adfc5217SJeff Kirsher #define MISC_REGISTERS_RESET_REG_1_RST_HC			 (0x1<<29)
5868adfc5217SJeff Kirsher #define MISC_REGISTERS_RESET_REG_1_RST_NIG			 (0x1<<7)
5869adfc5217SJeff Kirsher #define MISC_REGISTERS_RESET_REG_1_RST_PXP			 (0x1<<26)
5870adfc5217SJeff Kirsher #define MISC_REGISTERS_RESET_REG_1_RST_PXPV			 (0x1<<27)
5871adfc5217SJeff Kirsher #define MISC_REGISTERS_RESET_REG_1_SET				 0x584
5872adfc5217SJeff Kirsher #define MISC_REGISTERS_RESET_REG_2_CLEAR			 0x598
5873adfc5217SJeff Kirsher #define MISC_REGISTERS_RESET_REG_2_MSTAT0			 (0x1<<24)
5874adfc5217SJeff Kirsher #define MISC_REGISTERS_RESET_REG_2_MSTAT1			 (0x1<<25)
5875adfc5217SJeff Kirsher #define MISC_REGISTERS_RESET_REG_2_PGLC				 (0x1<<19)
5876adfc5217SJeff Kirsher #define MISC_REGISTERS_RESET_REG_2_RST_ATC			 (0x1<<17)
5877adfc5217SJeff Kirsher #define MISC_REGISTERS_RESET_REG_2_RST_BMAC0			 (0x1<<0)
5878adfc5217SJeff Kirsher #define MISC_REGISTERS_RESET_REG_2_RST_BMAC1			 (0x1<<1)
5879adfc5217SJeff Kirsher #define MISC_REGISTERS_RESET_REG_2_RST_EMAC0			 (0x1<<2)
5880adfc5217SJeff Kirsher #define MISC_REGISTERS_RESET_REG_2_RST_EMAC0_HARD_CORE		 (0x1<<14)
5881adfc5217SJeff Kirsher #define MISC_REGISTERS_RESET_REG_2_RST_EMAC1			 (0x1<<3)
5882adfc5217SJeff Kirsher #define MISC_REGISTERS_RESET_REG_2_RST_EMAC1_HARD_CORE		 (0x1<<15)
5883adfc5217SJeff Kirsher #define MISC_REGISTERS_RESET_REG_2_RST_GRC			 (0x1<<4)
5884adfc5217SJeff Kirsher #define MISC_REGISTERS_RESET_REG_2_RST_MCP_N_HARD_CORE_RST_B	 (0x1<<6)
5885adfc5217SJeff Kirsher #define MISC_REGISTERS_RESET_REG_2_RST_MCP_N_RESET_CMN_CORE	 (0x1<<8)
5886adfc5217SJeff Kirsher #define MISC_REGISTERS_RESET_REG_2_RST_MCP_N_RESET_CMN_CPU	 (0x1<<7)
5887adfc5217SJeff Kirsher #define MISC_REGISTERS_RESET_REG_2_RST_MCP_N_RESET_REG_HARD_CORE (0x1<<5)
5888adfc5217SJeff Kirsher #define MISC_REGISTERS_RESET_REG_2_RST_MDIO			 (0x1<<13)
5889adfc5217SJeff Kirsher #define MISC_REGISTERS_RESET_REG_2_RST_MISC_CORE		 (0x1<<11)
5890adfc5217SJeff Kirsher #define MISC_REGISTERS_RESET_REG_2_RST_PCI_MDIO			 (0x1<<13)
5891adfc5217SJeff Kirsher #define MISC_REGISTERS_RESET_REG_2_RST_RBCN			 (0x1<<9)
5892adfc5217SJeff Kirsher #define MISC_REGISTERS_RESET_REG_2_SET				 0x594
5893adfc5217SJeff Kirsher #define MISC_REGISTERS_RESET_REG_2_UMAC0			 (0x1<<20)
5894adfc5217SJeff Kirsher #define MISC_REGISTERS_RESET_REG_2_UMAC1			 (0x1<<21)
5895adfc5217SJeff Kirsher #define MISC_REGISTERS_RESET_REG_2_XMAC				 (0x1<<22)
5896adfc5217SJeff Kirsher #define MISC_REGISTERS_RESET_REG_2_XMAC_SOFT			 (0x1<<23)
5897adfc5217SJeff Kirsher #define MISC_REGISTERS_RESET_REG_3_CLEAR			 0x5a8
5898adfc5217SJeff Kirsher #define MISC_REGISTERS_RESET_REG_3_MISC_NIG_MUX_SERDES0_IDDQ	 (0x1<<1)
5899adfc5217SJeff Kirsher #define MISC_REGISTERS_RESET_REG_3_MISC_NIG_MUX_SERDES0_PWRDWN	 (0x1<<2)
5900adfc5217SJeff Kirsher #define MISC_REGISTERS_RESET_REG_3_MISC_NIG_MUX_SERDES0_PWRDWN_SD (0x1<<3)
5901adfc5217SJeff Kirsher #define MISC_REGISTERS_RESET_REG_3_MISC_NIG_MUX_SERDES0_RSTB_HW  (0x1<<0)
5902adfc5217SJeff Kirsher #define MISC_REGISTERS_RESET_REG_3_MISC_NIG_MUX_XGXS0_IDDQ	 (0x1<<5)
5903adfc5217SJeff Kirsher #define MISC_REGISTERS_RESET_REG_3_MISC_NIG_MUX_XGXS0_PWRDWN	 (0x1<<6)
5904adfc5217SJeff Kirsher #define MISC_REGISTERS_RESET_REG_3_MISC_NIG_MUX_XGXS0_PWRDWN_SD  (0x1<<7)
5905adfc5217SJeff Kirsher #define MISC_REGISTERS_RESET_REG_3_MISC_NIG_MUX_XGXS0_RSTB_HW	 (0x1<<4)
5906adfc5217SJeff Kirsher #define MISC_REGISTERS_RESET_REG_3_MISC_NIG_MUX_XGXS0_TXD_FIFO_RSTB (0x1<<8)
5907adfc5217SJeff Kirsher #define MISC_REGISTERS_RESET_REG_3_SET				 0x5a4
5908adfc5217SJeff Kirsher #define MISC_REGISTERS_SPIO_4					 4
5909adfc5217SJeff Kirsher #define MISC_REGISTERS_SPIO_5					 5
5910adfc5217SJeff Kirsher #define MISC_REGISTERS_SPIO_7					 7
5911adfc5217SJeff Kirsher #define MISC_REGISTERS_SPIO_CLR_POS				 16
5912adfc5217SJeff Kirsher #define MISC_REGISTERS_SPIO_FLOAT				 (0xffL<<24)
5913adfc5217SJeff Kirsher #define MISC_REGISTERS_SPIO_FLOAT_POS				 24
5914adfc5217SJeff Kirsher #define MISC_REGISTERS_SPIO_INPUT_HI_Z				 2
5915adfc5217SJeff Kirsher #define MISC_REGISTERS_SPIO_INT_OLD_SET_POS			 16
5916adfc5217SJeff Kirsher #define MISC_REGISTERS_SPIO_OUTPUT_HIGH 			 1
5917adfc5217SJeff Kirsher #define MISC_REGISTERS_SPIO_OUTPUT_LOW				 0
5918adfc5217SJeff Kirsher #define MISC_REGISTERS_SPIO_SET_POS				 8
5919adfc5217SJeff Kirsher #define HW_LOCK_MAX_RESOURCE_VALUE				 31
59209876879fSBarak Witkowski #define HW_LOCK_RESOURCE_DCBX_ADMIN_MIB				 13
5921f16da43bSAriel Elior #define HW_LOCK_RESOURCE_DRV_FLAGS				 10
5922adfc5217SJeff Kirsher #define HW_LOCK_RESOURCE_GPIO					 1
5923adfc5217SJeff Kirsher #define HW_LOCK_RESOURCE_MDIO					 0
5924f16da43bSAriel Elior #define HW_LOCK_RESOURCE_NVRAM					 12
5925adfc5217SJeff Kirsher #define HW_LOCK_RESOURCE_PORT0_ATT_MASK				 3
5926adfc5217SJeff Kirsher #define HW_LOCK_RESOURCE_RECOVERY_LEADER_0			 8
5927adfc5217SJeff Kirsher #define HW_LOCK_RESOURCE_RECOVERY_LEADER_1			 9
5928f16da43bSAriel Elior #define HW_LOCK_RESOURCE_RECOVERY_REG				 11
59298decf868SDavid S. Miller #define HW_LOCK_RESOURCE_RESET					 5
5930f16da43bSAriel Elior #define HW_LOCK_RESOURCE_SPIO					 2
5931adfc5217SJeff Kirsher #define AEU_INPUTS_ATTN_BITS_ATC_HW_INTERRUPT			 (0x1<<4)
5932adfc5217SJeff Kirsher #define AEU_INPUTS_ATTN_BITS_ATC_PARITY_ERROR			 (0x1<<5)
5933adfc5217SJeff Kirsher #define AEU_INPUTS_ATTN_BITS_BRB_PARITY_ERROR			 (0x1<<18)
5934adfc5217SJeff Kirsher #define AEU_INPUTS_ATTN_BITS_CCM_HW_INTERRUPT			 (0x1<<31)
5935adfc5217SJeff Kirsher #define AEU_INPUTS_ATTN_BITS_CCM_PARITY_ERROR			 (0x1<<30)
5936adfc5217SJeff Kirsher #define AEU_INPUTS_ATTN_BITS_CDU_HW_INTERRUPT			 (0x1<<9)
5937adfc5217SJeff Kirsher #define AEU_INPUTS_ATTN_BITS_CDU_PARITY_ERROR			 (0x1<<8)
5938adfc5217SJeff Kirsher #define AEU_INPUTS_ATTN_BITS_CFC_HW_INTERRUPT			 (0x1<<7)
5939adfc5217SJeff Kirsher #define AEU_INPUTS_ATTN_BITS_CFC_PARITY_ERROR			 (0x1<<6)
5940adfc5217SJeff Kirsher #define AEU_INPUTS_ATTN_BITS_CSDM_HW_INTERRUPT			 (0x1<<29)
5941adfc5217SJeff Kirsher #define AEU_INPUTS_ATTN_BITS_CSDM_PARITY_ERROR			 (0x1<<28)
5942adfc5217SJeff Kirsher #define AEU_INPUTS_ATTN_BITS_CSEMI_HW_INTERRUPT			 (0x1<<1)
5943adfc5217SJeff Kirsher #define AEU_INPUTS_ATTN_BITS_CSEMI_PARITY_ERROR			 (0x1<<0)
5944adfc5217SJeff Kirsher #define AEU_INPUTS_ATTN_BITS_DEBUG_PARITY_ERROR			 (0x1<<18)
5945adfc5217SJeff Kirsher #define AEU_INPUTS_ATTN_BITS_DMAE_HW_INTERRUPT			 (0x1<<11)
5946adfc5217SJeff Kirsher #define AEU_INPUTS_ATTN_BITS_DMAE_PARITY_ERROR			 (0x1<<10)
5947adfc5217SJeff Kirsher #define AEU_INPUTS_ATTN_BITS_DOORBELLQ_HW_INTERRUPT		 (0x1<<13)
5948adfc5217SJeff Kirsher #define AEU_INPUTS_ATTN_BITS_DOORBELLQ_PARITY_ERROR		 (0x1<<12)
5949adfc5217SJeff Kirsher #define AEU_INPUTS_ATTN_BITS_GPIO0_FUNCTION_0			 (0x1<<2)
5950adfc5217SJeff Kirsher #define AEU_INPUTS_ATTN_BITS_IGU_PARITY_ERROR			 (0x1<<12)
5951adfc5217SJeff Kirsher #define AEU_INPUTS_ATTN_BITS_MCP_LATCHED_ROM_PARITY		 (0x1<<28)
5952adfc5217SJeff Kirsher #define AEU_INPUTS_ATTN_BITS_MCP_LATCHED_SCPAD_PARITY		 (0x1<<31)
5953adfc5217SJeff Kirsher #define AEU_INPUTS_ATTN_BITS_MCP_LATCHED_UMP_RX_PARITY		 (0x1<<29)
5954adfc5217SJeff Kirsher #define AEU_INPUTS_ATTN_BITS_MCP_LATCHED_UMP_TX_PARITY		 (0x1<<30)
5955adfc5217SJeff Kirsher #define AEU_INPUTS_ATTN_BITS_MISC_HW_INTERRUPT			 (0x1<<15)
5956adfc5217SJeff Kirsher #define AEU_INPUTS_ATTN_BITS_MISC_PARITY_ERROR			 (0x1<<14)
5957adfc5217SJeff Kirsher #define AEU_INPUTS_ATTN_BITS_NIG_PARITY_ERROR			 (0x1<<14)
5958adfc5217SJeff Kirsher #define AEU_INPUTS_ATTN_BITS_PARSER_PARITY_ERROR		 (0x1<<20)
5959adfc5217SJeff Kirsher #define AEU_INPUTS_ATTN_BITS_PBCLIENT_HW_INTERRUPT		 (0x1<<31)
5960adfc5217SJeff Kirsher #define AEU_INPUTS_ATTN_BITS_PBCLIENT_PARITY_ERROR		 (0x1<<30)
5961adfc5217SJeff Kirsher #define AEU_INPUTS_ATTN_BITS_PBF_PARITY_ERROR			 (0x1<<0)
5962adfc5217SJeff Kirsher #define AEU_INPUTS_ATTN_BITS_PGLUE_HW_INTERRUPT			 (0x1<<2)
5963adfc5217SJeff Kirsher #define AEU_INPUTS_ATTN_BITS_PGLUE_PARITY_ERROR			 (0x1<<3)
5964adfc5217SJeff Kirsher #define AEU_INPUTS_ATTN_BITS_PXPPCICLOCKCLIENT_HW_INTERRUPT	 (0x1<<5)
5965adfc5217SJeff Kirsher #define AEU_INPUTS_ATTN_BITS_PXPPCICLOCKCLIENT_PARITY_ERROR	 (0x1<<4)
5966adfc5217SJeff Kirsher #define AEU_INPUTS_ATTN_BITS_PXP_HW_INTERRUPT			 (0x1<<3)
5967adfc5217SJeff Kirsher #define AEU_INPUTS_ATTN_BITS_PXP_PARITY_ERROR			 (0x1<<2)
5968adfc5217SJeff Kirsher #define AEU_INPUTS_ATTN_BITS_QM_HW_INTERRUPT			 (0x1<<3)
5969adfc5217SJeff Kirsher #define AEU_INPUTS_ATTN_BITS_QM_PARITY_ERROR			 (0x1<<2)
5970adfc5217SJeff Kirsher #define AEU_INPUTS_ATTN_BITS_SEARCHER_PARITY_ERROR		 (0x1<<22)
5971adfc5217SJeff Kirsher #define AEU_INPUTS_ATTN_BITS_SPIO5				 (0x1<<15)
5972adfc5217SJeff Kirsher #define AEU_INPUTS_ATTN_BITS_TCM_HW_INTERRUPT			 (0x1<<27)
5973adfc5217SJeff Kirsher #define AEU_INPUTS_ATTN_BITS_TCM_PARITY_ERROR			 (0x1<<26)
5974adfc5217SJeff Kirsher #define AEU_INPUTS_ATTN_BITS_TIMERS_HW_INTERRUPT		 (0x1<<5)
5975adfc5217SJeff Kirsher #define AEU_INPUTS_ATTN_BITS_TIMERS_PARITY_ERROR		 (0x1<<4)
5976adfc5217SJeff Kirsher #define AEU_INPUTS_ATTN_BITS_TSDM_HW_INTERRUPT			 (0x1<<25)
5977adfc5217SJeff Kirsher #define AEU_INPUTS_ATTN_BITS_TSDM_PARITY_ERROR			 (0x1<<24)
5978adfc5217SJeff Kirsher #define AEU_INPUTS_ATTN_BITS_TSEMI_HW_INTERRUPT			 (0x1<<29)
5979adfc5217SJeff Kirsher #define AEU_INPUTS_ATTN_BITS_TSEMI_PARITY_ERROR			 (0x1<<28)
5980adfc5217SJeff Kirsher #define AEU_INPUTS_ATTN_BITS_UCM_HW_INTERRUPT			 (0x1<<23)
5981adfc5217SJeff Kirsher #define AEU_INPUTS_ATTN_BITS_UCM_PARITY_ERROR			 (0x1<<22)
5982adfc5217SJeff Kirsher #define AEU_INPUTS_ATTN_BITS_UPB_HW_INTERRUPT			 (0x1<<27)
5983adfc5217SJeff Kirsher #define AEU_INPUTS_ATTN_BITS_UPB_PARITY_ERROR			 (0x1<<26)
5984adfc5217SJeff Kirsher #define AEU_INPUTS_ATTN_BITS_USDM_HW_INTERRUPT			 (0x1<<21)
5985adfc5217SJeff Kirsher #define AEU_INPUTS_ATTN_BITS_USDM_PARITY_ERROR			 (0x1<<20)
5986adfc5217SJeff Kirsher #define AEU_INPUTS_ATTN_BITS_USEMI_HW_INTERRUPT			 (0x1<<25)
5987adfc5217SJeff Kirsher #define AEU_INPUTS_ATTN_BITS_USEMI_PARITY_ERROR			 (0x1<<24)
5988adfc5217SJeff Kirsher #define AEU_INPUTS_ATTN_BITS_VAUX_PCI_CORE_PARITY_ERROR		 (0x1<<16)
5989adfc5217SJeff Kirsher #define AEU_INPUTS_ATTN_BITS_XCM_HW_INTERRUPT			 (0x1<<9)
5990adfc5217SJeff Kirsher #define AEU_INPUTS_ATTN_BITS_XCM_PARITY_ERROR			 (0x1<<8)
5991adfc5217SJeff Kirsher #define AEU_INPUTS_ATTN_BITS_XSDM_HW_INTERRUPT			 (0x1<<7)
5992adfc5217SJeff Kirsher #define AEU_INPUTS_ATTN_BITS_XSDM_PARITY_ERROR			 (0x1<<6)
5993adfc5217SJeff Kirsher #define AEU_INPUTS_ATTN_BITS_XSEMI_HW_INTERRUPT			 (0x1<<11)
5994adfc5217SJeff Kirsher #define AEU_INPUTS_ATTN_BITS_XSEMI_PARITY_ERROR			 (0x1<<10)
5995adfc5217SJeff Kirsher 
5996adfc5217SJeff Kirsher #define AEU_INPUTS_ATTN_BITS_GPIO3_FUNCTION_0			(0x1<<5)
5997adfc5217SJeff Kirsher #define AEU_INPUTS_ATTN_BITS_GPIO3_FUNCTION_1			(0x1<<9)
5998adfc5217SJeff Kirsher 
5999adfc5217SJeff Kirsher #define RESERVED_GENERAL_ATTENTION_BIT_0	0
6000adfc5217SJeff Kirsher 
6001adfc5217SJeff Kirsher #define EVEREST_GEN_ATTN_IN_USE_MASK		0x7ffe0
6002adfc5217SJeff Kirsher #define EVEREST_LATCHED_ATTN_IN_USE_MASK	0xffe00000
6003adfc5217SJeff Kirsher 
6004adfc5217SJeff Kirsher #define RESERVED_GENERAL_ATTENTION_BIT_6	6
6005adfc5217SJeff Kirsher #define RESERVED_GENERAL_ATTENTION_BIT_7	7
6006adfc5217SJeff Kirsher #define RESERVED_GENERAL_ATTENTION_BIT_8	8
6007adfc5217SJeff Kirsher #define RESERVED_GENERAL_ATTENTION_BIT_9	9
6008adfc5217SJeff Kirsher #define RESERVED_GENERAL_ATTENTION_BIT_10	10
6009adfc5217SJeff Kirsher #define RESERVED_GENERAL_ATTENTION_BIT_11	11
6010adfc5217SJeff Kirsher #define RESERVED_GENERAL_ATTENTION_BIT_12	12
6011adfc5217SJeff Kirsher #define RESERVED_GENERAL_ATTENTION_BIT_13	13
6012adfc5217SJeff Kirsher #define RESERVED_GENERAL_ATTENTION_BIT_14	14
6013adfc5217SJeff Kirsher #define RESERVED_GENERAL_ATTENTION_BIT_15	15
6014adfc5217SJeff Kirsher #define RESERVED_GENERAL_ATTENTION_BIT_16	16
6015adfc5217SJeff Kirsher #define RESERVED_GENERAL_ATTENTION_BIT_17	17
6016adfc5217SJeff Kirsher #define RESERVED_GENERAL_ATTENTION_BIT_18	18
6017adfc5217SJeff Kirsher #define RESERVED_GENERAL_ATTENTION_BIT_19	19
6018adfc5217SJeff Kirsher #define RESERVED_GENERAL_ATTENTION_BIT_20	20
6019adfc5217SJeff Kirsher #define RESERVED_GENERAL_ATTENTION_BIT_21	21
6020adfc5217SJeff Kirsher 
6021adfc5217SJeff Kirsher /* storm asserts attention bits */
6022adfc5217SJeff Kirsher #define TSTORM_FATAL_ASSERT_ATTENTION_BIT     RESERVED_GENERAL_ATTENTION_BIT_7
6023adfc5217SJeff Kirsher #define USTORM_FATAL_ASSERT_ATTENTION_BIT     RESERVED_GENERAL_ATTENTION_BIT_8
6024adfc5217SJeff Kirsher #define CSTORM_FATAL_ASSERT_ATTENTION_BIT     RESERVED_GENERAL_ATTENTION_BIT_9
6025adfc5217SJeff Kirsher #define XSTORM_FATAL_ASSERT_ATTENTION_BIT     RESERVED_GENERAL_ATTENTION_BIT_10
6026adfc5217SJeff Kirsher 
6027adfc5217SJeff Kirsher /* mcp error attention bit */
6028adfc5217SJeff Kirsher #define MCP_FATAL_ASSERT_ATTENTION_BIT	      RESERVED_GENERAL_ATTENTION_BIT_11
6029adfc5217SJeff Kirsher 
6030adfc5217SJeff Kirsher /*E1H NIG status sync attention mapped to group 4-7*/
6031adfc5217SJeff Kirsher #define LINK_SYNC_ATTENTION_BIT_FUNC_0	    RESERVED_GENERAL_ATTENTION_BIT_12
6032adfc5217SJeff Kirsher #define LINK_SYNC_ATTENTION_BIT_FUNC_1	    RESERVED_GENERAL_ATTENTION_BIT_13
6033adfc5217SJeff Kirsher #define LINK_SYNC_ATTENTION_BIT_FUNC_2	    RESERVED_GENERAL_ATTENTION_BIT_14
6034adfc5217SJeff Kirsher #define LINK_SYNC_ATTENTION_BIT_FUNC_3	    RESERVED_GENERAL_ATTENTION_BIT_15
6035adfc5217SJeff Kirsher #define LINK_SYNC_ATTENTION_BIT_FUNC_4	    RESERVED_GENERAL_ATTENTION_BIT_16
6036adfc5217SJeff Kirsher #define LINK_SYNC_ATTENTION_BIT_FUNC_5	    RESERVED_GENERAL_ATTENTION_BIT_17
6037adfc5217SJeff Kirsher #define LINK_SYNC_ATTENTION_BIT_FUNC_6	    RESERVED_GENERAL_ATTENTION_BIT_18
6038adfc5217SJeff Kirsher #define LINK_SYNC_ATTENTION_BIT_FUNC_7	    RESERVED_GENERAL_ATTENTION_BIT_19
6039adfc5217SJeff Kirsher 
6040adfc5217SJeff Kirsher 
6041adfc5217SJeff Kirsher #define LATCHED_ATTN_RBCR			23
6042adfc5217SJeff Kirsher #define LATCHED_ATTN_RBCT			24
6043adfc5217SJeff Kirsher #define LATCHED_ATTN_RBCN			25
6044adfc5217SJeff Kirsher #define LATCHED_ATTN_RBCU			26
6045adfc5217SJeff Kirsher #define LATCHED_ATTN_RBCP			27
6046adfc5217SJeff Kirsher #define LATCHED_ATTN_TIMEOUT_GRC		28
6047adfc5217SJeff Kirsher #define LATCHED_ATTN_RSVD_GRC			29
6048adfc5217SJeff Kirsher #define LATCHED_ATTN_ROM_PARITY_MCP		30
6049adfc5217SJeff Kirsher #define LATCHED_ATTN_UM_RX_PARITY_MCP		31
6050adfc5217SJeff Kirsher #define LATCHED_ATTN_UM_TX_PARITY_MCP		32
6051adfc5217SJeff Kirsher #define LATCHED_ATTN_SCPAD_PARITY_MCP		33
6052adfc5217SJeff Kirsher 
6053adfc5217SJeff Kirsher #define GENERAL_ATTEN_WORD(atten_name)	       ((94 + atten_name) / 32)
6054adfc5217SJeff Kirsher #define GENERAL_ATTEN_OFFSET(atten_name)\
6055adfc5217SJeff Kirsher 	(1UL << ((94 + atten_name) % 32))
6056adfc5217SJeff Kirsher /*
6057adfc5217SJeff Kirsher  * This file defines GRC base address for every block.
6058adfc5217SJeff Kirsher  * This file is included by chipsim, asm microcode and cpp microcode.
6059adfc5217SJeff Kirsher  * These values are used in Design.xml on regBase attribute
6060adfc5217SJeff Kirsher  * Use the base with the generated offsets of specific registers.
6061adfc5217SJeff Kirsher  */
6062adfc5217SJeff Kirsher 
6063adfc5217SJeff Kirsher #define GRCBASE_PXPCS		0x000000
6064adfc5217SJeff Kirsher #define GRCBASE_PCICONFIG	0x002000
6065adfc5217SJeff Kirsher #define GRCBASE_PCIREG		0x002400
6066adfc5217SJeff Kirsher #define GRCBASE_EMAC0		0x008000
6067adfc5217SJeff Kirsher #define GRCBASE_EMAC1		0x008400
6068adfc5217SJeff Kirsher #define GRCBASE_DBU		0x008800
6069adfc5217SJeff Kirsher #define GRCBASE_MISC		0x00A000
6070adfc5217SJeff Kirsher #define GRCBASE_DBG		0x00C000
6071adfc5217SJeff Kirsher #define GRCBASE_NIG		0x010000
6072adfc5217SJeff Kirsher #define GRCBASE_XCM		0x020000
6073adfc5217SJeff Kirsher #define GRCBASE_PRS		0x040000
6074adfc5217SJeff Kirsher #define GRCBASE_SRCH		0x040400
6075adfc5217SJeff Kirsher #define GRCBASE_TSDM		0x042000
6076adfc5217SJeff Kirsher #define GRCBASE_TCM		0x050000
6077adfc5217SJeff Kirsher #define GRCBASE_BRB1		0x060000
6078adfc5217SJeff Kirsher #define GRCBASE_MCP		0x080000
6079adfc5217SJeff Kirsher #define GRCBASE_UPB		0x0C1000
6080adfc5217SJeff Kirsher #define GRCBASE_CSDM		0x0C2000
6081adfc5217SJeff Kirsher #define GRCBASE_USDM		0x0C4000
6082adfc5217SJeff Kirsher #define GRCBASE_CCM		0x0D0000
6083adfc5217SJeff Kirsher #define GRCBASE_UCM		0x0E0000
6084adfc5217SJeff Kirsher #define GRCBASE_CDU		0x101000
6085adfc5217SJeff Kirsher #define GRCBASE_DMAE		0x102000
6086adfc5217SJeff Kirsher #define GRCBASE_PXP		0x103000
6087adfc5217SJeff Kirsher #define GRCBASE_CFC		0x104000
6088adfc5217SJeff Kirsher #define GRCBASE_HC		0x108000
6089adfc5217SJeff Kirsher #define GRCBASE_PXP2		0x120000
6090adfc5217SJeff Kirsher #define GRCBASE_PBF		0x140000
6091adfc5217SJeff Kirsher #define GRCBASE_UMAC0		0x160000
6092adfc5217SJeff Kirsher #define GRCBASE_UMAC1		0x160400
6093adfc5217SJeff Kirsher #define GRCBASE_XPB		0x161000
6094adfc5217SJeff Kirsher #define GRCBASE_MSTAT0	    0x162000
6095adfc5217SJeff Kirsher #define GRCBASE_MSTAT1	    0x162800
6096adfc5217SJeff Kirsher #define GRCBASE_XMAC0		0x163000
6097adfc5217SJeff Kirsher #define GRCBASE_XMAC1		0x163800
6098adfc5217SJeff Kirsher #define GRCBASE_TIMERS		0x164000
6099adfc5217SJeff Kirsher #define GRCBASE_XSDM		0x166000
6100adfc5217SJeff Kirsher #define GRCBASE_QM		0x168000
6101adfc5217SJeff Kirsher #define GRCBASE_DQ		0x170000
6102adfc5217SJeff Kirsher #define GRCBASE_TSEM		0x180000
6103adfc5217SJeff Kirsher #define GRCBASE_CSEM		0x200000
6104adfc5217SJeff Kirsher #define GRCBASE_XSEM		0x280000
6105adfc5217SJeff Kirsher #define GRCBASE_USEM		0x300000
6106adfc5217SJeff Kirsher #define GRCBASE_MISC_AEU	GRCBASE_MISC
6107adfc5217SJeff Kirsher 
6108adfc5217SJeff Kirsher 
6109adfc5217SJeff Kirsher /* offset of configuration space in the pci core register */
6110adfc5217SJeff Kirsher #define PCICFG_OFFSET					0x2000
6111adfc5217SJeff Kirsher #define PCICFG_VENDOR_ID_OFFSET 			0x00
6112adfc5217SJeff Kirsher #define PCICFG_DEVICE_ID_OFFSET 			0x02
6113adfc5217SJeff Kirsher #define PCICFG_COMMAND_OFFSET				0x04
6114adfc5217SJeff Kirsher #define PCICFG_COMMAND_IO_SPACE 		(1<<0)
6115adfc5217SJeff Kirsher #define PCICFG_COMMAND_MEM_SPACE		(1<<1)
6116adfc5217SJeff Kirsher #define PCICFG_COMMAND_BUS_MASTER		(1<<2)
6117adfc5217SJeff Kirsher #define PCICFG_COMMAND_SPECIAL_CYCLES		(1<<3)
6118adfc5217SJeff Kirsher #define PCICFG_COMMAND_MWI_CYCLES		(1<<4)
6119adfc5217SJeff Kirsher #define PCICFG_COMMAND_VGA_SNOOP		(1<<5)
6120adfc5217SJeff Kirsher #define PCICFG_COMMAND_PERR_ENA 		(1<<6)
6121adfc5217SJeff Kirsher #define PCICFG_COMMAND_STEPPING 		(1<<7)
6122adfc5217SJeff Kirsher #define PCICFG_COMMAND_SERR_ENA 		(1<<8)
6123adfc5217SJeff Kirsher #define PCICFG_COMMAND_FAST_B2B 		(1<<9)
6124adfc5217SJeff Kirsher #define PCICFG_COMMAND_INT_DISABLE		(1<<10)
6125adfc5217SJeff Kirsher #define PCICFG_COMMAND_RESERVED 		(0x1f<<11)
6126adfc5217SJeff Kirsher #define PCICFG_STATUS_OFFSET				0x06
6127adfc5217SJeff Kirsher #define PCICFG_REVESION_ID_OFFSET			0x08
6128adfc5217SJeff Kirsher #define PCICFG_CACHE_LINE_SIZE				0x0c
6129adfc5217SJeff Kirsher #define PCICFG_LATENCY_TIMER				0x0d
6130adfc5217SJeff Kirsher #define PCICFG_BAR_1_LOW				0x10
6131adfc5217SJeff Kirsher #define PCICFG_BAR_1_HIGH				0x14
6132adfc5217SJeff Kirsher #define PCICFG_BAR_2_LOW				0x18
6133adfc5217SJeff Kirsher #define PCICFG_BAR_2_HIGH				0x1c
6134adfc5217SJeff Kirsher #define PCICFG_SUBSYSTEM_VENDOR_ID_OFFSET		0x2c
6135adfc5217SJeff Kirsher #define PCICFG_SUBSYSTEM_ID_OFFSET			0x2e
6136adfc5217SJeff Kirsher #define PCICFG_INT_LINE 				0x3c
6137adfc5217SJeff Kirsher #define PCICFG_INT_PIN					0x3d
6138adfc5217SJeff Kirsher #define PCICFG_PM_CAPABILITY				0x48
6139adfc5217SJeff Kirsher #define PCICFG_PM_CAPABILITY_VERSION		(0x3<<16)
6140adfc5217SJeff Kirsher #define PCICFG_PM_CAPABILITY_CLOCK		(1<<19)
6141adfc5217SJeff Kirsher #define PCICFG_PM_CAPABILITY_RESERVED		(1<<20)
6142adfc5217SJeff Kirsher #define PCICFG_PM_CAPABILITY_DSI		(1<<21)
6143adfc5217SJeff Kirsher #define PCICFG_PM_CAPABILITY_AUX_CURRENT	(0x7<<22)
6144adfc5217SJeff Kirsher #define PCICFG_PM_CAPABILITY_D1_SUPPORT 	(1<<25)
6145adfc5217SJeff Kirsher #define PCICFG_PM_CAPABILITY_D2_SUPPORT 	(1<<26)
6146adfc5217SJeff Kirsher #define PCICFG_PM_CAPABILITY_PME_IN_D0		(1<<27)
6147adfc5217SJeff Kirsher #define PCICFG_PM_CAPABILITY_PME_IN_D1		(1<<28)
6148adfc5217SJeff Kirsher #define PCICFG_PM_CAPABILITY_PME_IN_D2		(1<<29)
6149adfc5217SJeff Kirsher #define PCICFG_PM_CAPABILITY_PME_IN_D3_HOT	(1<<30)
6150adfc5217SJeff Kirsher #define PCICFG_PM_CAPABILITY_PME_IN_D3_COLD	(1<<31)
6151adfc5217SJeff Kirsher #define PCICFG_PM_CSR_OFFSET				0x4c
6152adfc5217SJeff Kirsher #define PCICFG_PM_CSR_STATE			(0x3<<0)
6153adfc5217SJeff Kirsher #define PCICFG_PM_CSR_PME_ENABLE		(1<<8)
6154adfc5217SJeff Kirsher #define PCICFG_PM_CSR_PME_STATUS		(1<<15)
6155adfc5217SJeff Kirsher #define PCICFG_MSI_CAP_ID_OFFSET			0x58
6156adfc5217SJeff Kirsher #define PCICFG_MSI_CONTROL_ENABLE		(0x1<<16)
6157adfc5217SJeff Kirsher #define PCICFG_MSI_CONTROL_MCAP 		(0x7<<17)
6158adfc5217SJeff Kirsher #define PCICFG_MSI_CONTROL_MENA 		(0x7<<20)
6159adfc5217SJeff Kirsher #define PCICFG_MSI_CONTROL_64_BIT_ADDR_CAP	(0x1<<23)
6160adfc5217SJeff Kirsher #define PCICFG_MSI_CONTROL_MSI_PVMASK_CAPABLE	(0x1<<24)
6161adfc5217SJeff Kirsher #define PCICFG_GRC_ADDRESS				0x78
6162adfc5217SJeff Kirsher #define PCICFG_GRC_DATA				0x80
6163c22610d0SAriel Elior #define PCICFG_ME_REGISTER				0x98
6164adfc5217SJeff Kirsher #define PCICFG_MSIX_CAP_ID_OFFSET			0xa0
6165adfc5217SJeff Kirsher #define PCICFG_MSIX_CONTROL_TABLE_SIZE		(0x7ff<<16)
6166adfc5217SJeff Kirsher #define PCICFG_MSIX_CONTROL_RESERVED		(0x7<<27)
6167adfc5217SJeff Kirsher #define PCICFG_MSIX_CONTROL_FUNC_MASK		(0x1<<30)
6168adfc5217SJeff Kirsher #define PCICFG_MSIX_CONTROL_MSIX_ENABLE 	(0x1<<31)
6169adfc5217SJeff Kirsher 
6170adfc5217SJeff Kirsher #define PCICFG_DEVICE_CONTROL				0xb4
6171adfc5217SJeff Kirsher #define PCICFG_DEVICE_STATUS				0xb6
6172adfc5217SJeff Kirsher #define PCICFG_DEVICE_STATUS_CORR_ERR_DET	(1<<0)
6173adfc5217SJeff Kirsher #define PCICFG_DEVICE_STATUS_NON_FATAL_ERR_DET	(1<<1)
6174adfc5217SJeff Kirsher #define PCICFG_DEVICE_STATUS_FATAL_ERR_DET	(1<<2)
6175adfc5217SJeff Kirsher #define PCICFG_DEVICE_STATUS_UNSUP_REQ_DET	(1<<3)
6176adfc5217SJeff Kirsher #define PCICFG_DEVICE_STATUS_AUX_PWR_DET	(1<<4)
6177adfc5217SJeff Kirsher #define PCICFG_DEVICE_STATUS_NO_PEND		(1<<5)
6178adfc5217SJeff Kirsher #define PCICFG_LINK_CONTROL				0xbc
6179adfc5217SJeff Kirsher 
6180adfc5217SJeff Kirsher 
6181adfc5217SJeff Kirsher #define BAR_USTRORM_INTMEM				0x400000
6182adfc5217SJeff Kirsher #define BAR_CSTRORM_INTMEM				0x410000
6183adfc5217SJeff Kirsher #define BAR_XSTRORM_INTMEM				0x420000
6184adfc5217SJeff Kirsher #define BAR_TSTRORM_INTMEM				0x430000
6185adfc5217SJeff Kirsher 
6186adfc5217SJeff Kirsher /* for accessing the IGU in case of status block ACK */
6187adfc5217SJeff Kirsher #define BAR_IGU_INTMEM					0x440000
6188adfc5217SJeff Kirsher 
6189adfc5217SJeff Kirsher #define BAR_DOORBELL_OFFSET				0x800000
6190adfc5217SJeff Kirsher 
6191adfc5217SJeff Kirsher #define BAR_ME_REGISTER 				0x450000
6192adfc5217SJeff Kirsher 
6193adfc5217SJeff Kirsher /* config_2 offset */
6194adfc5217SJeff Kirsher #define GRC_CONFIG_2_SIZE_REG				0x408
6195adfc5217SJeff Kirsher #define PCI_CONFIG_2_BAR1_SIZE			(0xfL<<0)
6196adfc5217SJeff Kirsher #define PCI_CONFIG_2_BAR1_SIZE_DISABLED 	(0L<<0)
6197adfc5217SJeff Kirsher #define PCI_CONFIG_2_BAR1_SIZE_64K		(1L<<0)
6198adfc5217SJeff Kirsher #define PCI_CONFIG_2_BAR1_SIZE_128K		(2L<<0)
6199adfc5217SJeff Kirsher #define PCI_CONFIG_2_BAR1_SIZE_256K		(3L<<0)
6200adfc5217SJeff Kirsher #define PCI_CONFIG_2_BAR1_SIZE_512K		(4L<<0)
6201adfc5217SJeff Kirsher #define PCI_CONFIG_2_BAR1_SIZE_1M		(5L<<0)
6202adfc5217SJeff Kirsher #define PCI_CONFIG_2_BAR1_SIZE_2M		(6L<<0)
6203adfc5217SJeff Kirsher #define PCI_CONFIG_2_BAR1_SIZE_4M		(7L<<0)
6204adfc5217SJeff Kirsher #define PCI_CONFIG_2_BAR1_SIZE_8M		(8L<<0)
6205adfc5217SJeff Kirsher #define PCI_CONFIG_2_BAR1_SIZE_16M		(9L<<0)
6206adfc5217SJeff Kirsher #define PCI_CONFIG_2_BAR1_SIZE_32M		(10L<<0)
6207adfc5217SJeff Kirsher #define PCI_CONFIG_2_BAR1_SIZE_64M		(11L<<0)
6208adfc5217SJeff Kirsher #define PCI_CONFIG_2_BAR1_SIZE_128M		(12L<<0)
6209adfc5217SJeff Kirsher #define PCI_CONFIG_2_BAR1_SIZE_256M		(13L<<0)
6210adfc5217SJeff Kirsher #define PCI_CONFIG_2_BAR1_SIZE_512M		(14L<<0)
6211adfc5217SJeff Kirsher #define PCI_CONFIG_2_BAR1_SIZE_1G		(15L<<0)
6212adfc5217SJeff Kirsher #define PCI_CONFIG_2_BAR1_64ENA 		(1L<<4)
6213adfc5217SJeff Kirsher #define PCI_CONFIG_2_EXP_ROM_RETRY		(1L<<5)
6214adfc5217SJeff Kirsher #define PCI_CONFIG_2_CFG_CYCLE_RETRY		(1L<<6)
6215adfc5217SJeff Kirsher #define PCI_CONFIG_2_FIRST_CFG_DONE		(1L<<7)
6216adfc5217SJeff Kirsher #define PCI_CONFIG_2_EXP_ROM_SIZE		(0xffL<<8)
6217adfc5217SJeff Kirsher #define PCI_CONFIG_2_EXP_ROM_SIZE_DISABLED	(0L<<8)
6218adfc5217SJeff Kirsher #define PCI_CONFIG_2_EXP_ROM_SIZE_2K		(1L<<8)
6219adfc5217SJeff Kirsher #define PCI_CONFIG_2_EXP_ROM_SIZE_4K		(2L<<8)
6220adfc5217SJeff Kirsher #define PCI_CONFIG_2_EXP_ROM_SIZE_8K		(3L<<8)
6221adfc5217SJeff Kirsher #define PCI_CONFIG_2_EXP_ROM_SIZE_16K		(4L<<8)
6222adfc5217SJeff Kirsher #define PCI_CONFIG_2_EXP_ROM_SIZE_32K		(5L<<8)
6223adfc5217SJeff Kirsher #define PCI_CONFIG_2_EXP_ROM_SIZE_64K		(6L<<8)
6224adfc5217SJeff Kirsher #define PCI_CONFIG_2_EXP_ROM_SIZE_128K		(7L<<8)
6225adfc5217SJeff Kirsher #define PCI_CONFIG_2_EXP_ROM_SIZE_256K		(8L<<8)
6226adfc5217SJeff Kirsher #define PCI_CONFIG_2_EXP_ROM_SIZE_512K		(9L<<8)
6227adfc5217SJeff Kirsher #define PCI_CONFIG_2_EXP_ROM_SIZE_1M		(10L<<8)
6228adfc5217SJeff Kirsher #define PCI_CONFIG_2_EXP_ROM_SIZE_2M		(11L<<8)
6229adfc5217SJeff Kirsher #define PCI_CONFIG_2_EXP_ROM_SIZE_4M		(12L<<8)
6230adfc5217SJeff Kirsher #define PCI_CONFIG_2_EXP_ROM_SIZE_8M		(13L<<8)
6231adfc5217SJeff Kirsher #define PCI_CONFIG_2_EXP_ROM_SIZE_16M		(14L<<8)
6232adfc5217SJeff Kirsher #define PCI_CONFIG_2_EXP_ROM_SIZE_32M		(15L<<8)
6233adfc5217SJeff Kirsher #define PCI_CONFIG_2_BAR_PREFETCH		(1L<<16)
6234adfc5217SJeff Kirsher #define PCI_CONFIG_2_RESERVED0			(0x7fffL<<17)
6235adfc5217SJeff Kirsher 
6236adfc5217SJeff Kirsher /* config_3 offset */
6237adfc5217SJeff Kirsher #define GRC_CONFIG_3_SIZE_REG				0x40c
6238adfc5217SJeff Kirsher #define PCI_CONFIG_3_STICKY_BYTE		(0xffL<<0)
6239adfc5217SJeff Kirsher #define PCI_CONFIG_3_FORCE_PME			(1L<<24)
6240adfc5217SJeff Kirsher #define PCI_CONFIG_3_PME_STATUS 		(1L<<25)
6241adfc5217SJeff Kirsher #define PCI_CONFIG_3_PME_ENABLE 		(1L<<26)
6242adfc5217SJeff Kirsher #define PCI_CONFIG_3_PM_STATE			(0x3L<<27)
6243adfc5217SJeff Kirsher #define PCI_CONFIG_3_VAUX_PRESET		(1L<<30)
6244adfc5217SJeff Kirsher #define PCI_CONFIG_3_PCI_POWER			(1L<<31)
6245adfc5217SJeff Kirsher 
6246adfc5217SJeff Kirsher #define GRC_BAR2_CONFIG 				0x4e0
6247adfc5217SJeff Kirsher #define PCI_CONFIG_2_BAR2_SIZE			(0xfL<<0)
6248adfc5217SJeff Kirsher #define PCI_CONFIG_2_BAR2_SIZE_DISABLED 	(0L<<0)
6249adfc5217SJeff Kirsher #define PCI_CONFIG_2_BAR2_SIZE_64K		(1L<<0)
6250adfc5217SJeff Kirsher #define PCI_CONFIG_2_BAR2_SIZE_128K		(2L<<0)
6251adfc5217SJeff Kirsher #define PCI_CONFIG_2_BAR2_SIZE_256K		(3L<<0)
6252adfc5217SJeff Kirsher #define PCI_CONFIG_2_BAR2_SIZE_512K		(4L<<0)
6253adfc5217SJeff Kirsher #define PCI_CONFIG_2_BAR2_SIZE_1M		(5L<<0)
6254adfc5217SJeff Kirsher #define PCI_CONFIG_2_BAR2_SIZE_2M		(6L<<0)
6255adfc5217SJeff Kirsher #define PCI_CONFIG_2_BAR2_SIZE_4M		(7L<<0)
6256adfc5217SJeff Kirsher #define PCI_CONFIG_2_BAR2_SIZE_8M		(8L<<0)
6257adfc5217SJeff Kirsher #define PCI_CONFIG_2_BAR2_SIZE_16M		(9L<<0)
6258adfc5217SJeff Kirsher #define PCI_CONFIG_2_BAR2_SIZE_32M		(10L<<0)
6259adfc5217SJeff Kirsher #define PCI_CONFIG_2_BAR2_SIZE_64M		(11L<<0)
6260adfc5217SJeff Kirsher #define PCI_CONFIG_2_BAR2_SIZE_128M		(12L<<0)
6261adfc5217SJeff Kirsher #define PCI_CONFIG_2_BAR2_SIZE_256M		(13L<<0)
6262adfc5217SJeff Kirsher #define PCI_CONFIG_2_BAR2_SIZE_512M		(14L<<0)
6263adfc5217SJeff Kirsher #define PCI_CONFIG_2_BAR2_SIZE_1G		(15L<<0)
6264adfc5217SJeff Kirsher #define PCI_CONFIG_2_BAR2_64ENA 		(1L<<4)
6265adfc5217SJeff Kirsher 
6266adfc5217SJeff Kirsher #define PCI_PM_DATA_A					0x410
6267adfc5217SJeff Kirsher #define PCI_PM_DATA_B					0x414
6268adfc5217SJeff Kirsher #define PCI_ID_VAL1					0x434
6269adfc5217SJeff Kirsher #define PCI_ID_VAL2					0x438
6270adfc5217SJeff Kirsher 
6271adfc5217SJeff Kirsher #define PXPCS_TL_CONTROL_5		    0x814
6272adfc5217SJeff Kirsher #define PXPCS_TL_CONTROL_5_UNKNOWNTYPE_ERR_ATTN    (1 << 29) /*WC*/
6273adfc5217SJeff Kirsher #define PXPCS_TL_CONTROL_5_BOUNDARY4K_ERR_ATTN	   (1 << 28)   /*WC*/
6274adfc5217SJeff Kirsher #define PXPCS_TL_CONTROL_5_MRRS_ERR_ATTN   (1 << 27)   /*WC*/
6275adfc5217SJeff Kirsher #define PXPCS_TL_CONTROL_5_MPS_ERR_ATTN    (1 << 26)   /*WC*/
6276adfc5217SJeff Kirsher #define PXPCS_TL_CONTROL_5_TTX_BRIDGE_FORWARD_ERR  (1 << 25)   /*WC*/
6277adfc5217SJeff Kirsher #define PXPCS_TL_CONTROL_5_TTX_TXINTF_OVERFLOW	   (1 << 24)   /*WC*/
6278adfc5217SJeff Kirsher #define PXPCS_TL_CONTROL_5_PHY_ERR_ATTN    (1 << 23)   /*RO*/
6279adfc5217SJeff Kirsher #define PXPCS_TL_CONTROL_5_DL_ERR_ATTN	   (1 << 22)   /*RO*/
6280adfc5217SJeff Kirsher #define PXPCS_TL_CONTROL_5_TTX_ERR_NP_TAG_IN_USE   (1 << 21)   /*WC*/
6281adfc5217SJeff Kirsher #define PXPCS_TL_CONTROL_5_TRX_ERR_UNEXP_RTAG  (1 << 20)   /*WC*/
6282adfc5217SJeff Kirsher #define PXPCS_TL_CONTROL_5_PRI_SIG_TARGET_ABORT1   (1 << 19)   /*WC*/
6283adfc5217SJeff Kirsher #define PXPCS_TL_CONTROL_5_ERR_UNSPPORT1   (1 << 18)   /*WC*/
6284adfc5217SJeff Kirsher #define PXPCS_TL_CONTROL_5_ERR_ECRC1   (1 << 17)   /*WC*/
6285adfc5217SJeff Kirsher #define PXPCS_TL_CONTROL_5_ERR_MALF_TLP1   (1 << 16)   /*WC*/
6286adfc5217SJeff Kirsher #define PXPCS_TL_CONTROL_5_ERR_RX_OFLOW1   (1 << 15)   /*WC*/
6287adfc5217SJeff Kirsher #define PXPCS_TL_CONTROL_5_ERR_UNEXP_CPL1  (1 << 14)   /*WC*/
6288adfc5217SJeff Kirsher #define PXPCS_TL_CONTROL_5_ERR_MASTER_ABRT1    (1 << 13)   /*WC*/
6289adfc5217SJeff Kirsher #define PXPCS_TL_CONTROL_5_ERR_CPL_TIMEOUT1    (1 << 12)   /*WC*/
6290adfc5217SJeff Kirsher #define PXPCS_TL_CONTROL_5_ERR_FC_PRTL1    (1 << 11)   /*WC*/
6291adfc5217SJeff Kirsher #define PXPCS_TL_CONTROL_5_ERR_PSND_TLP1   (1 << 10)   /*WC*/
6292adfc5217SJeff Kirsher #define PXPCS_TL_CONTROL_5_PRI_SIG_TARGET_ABORT    (1 << 9)    /*WC*/
6293adfc5217SJeff Kirsher #define PXPCS_TL_CONTROL_5_ERR_UNSPPORT    (1 << 8)    /*WC*/
6294adfc5217SJeff Kirsher #define PXPCS_TL_CONTROL_5_ERR_ECRC    (1 << 7)    /*WC*/
6295adfc5217SJeff Kirsher #define PXPCS_TL_CONTROL_5_ERR_MALF_TLP    (1 << 6)    /*WC*/
6296adfc5217SJeff Kirsher #define PXPCS_TL_CONTROL_5_ERR_RX_OFLOW    (1 << 5)    /*WC*/
6297adfc5217SJeff Kirsher #define PXPCS_TL_CONTROL_5_ERR_UNEXP_CPL   (1 << 4)    /*WC*/
6298adfc5217SJeff Kirsher #define PXPCS_TL_CONTROL_5_ERR_MASTER_ABRT     (1 << 3)    /*WC*/
6299adfc5217SJeff Kirsher #define PXPCS_TL_CONTROL_5_ERR_CPL_TIMEOUT     (1 << 2)    /*WC*/
6300adfc5217SJeff Kirsher #define PXPCS_TL_CONTROL_5_ERR_FC_PRTL	   (1 << 1)    /*WC*/
6301adfc5217SJeff Kirsher #define PXPCS_TL_CONTROL_5_ERR_PSND_TLP    (1 << 0)    /*WC*/
6302adfc5217SJeff Kirsher 
6303adfc5217SJeff Kirsher 
6304adfc5217SJeff Kirsher #define PXPCS_TL_FUNC345_STAT	   0x854
6305adfc5217SJeff Kirsher #define PXPCS_TL_FUNC345_STAT_PRI_SIG_TARGET_ABORT4    (1 << 29)   /* WC */
6306adfc5217SJeff Kirsher #define PXPCS_TL_FUNC345_STAT_ERR_UNSPPORT4\
6307adfc5217SJeff Kirsher 	(1 << 28) /* Unsupported Request Error Status in function4, if \
6308adfc5217SJeff Kirsher 	set, generate pcie_err_attn output when this error is seen. WC */
6309adfc5217SJeff Kirsher #define PXPCS_TL_FUNC345_STAT_ERR_ECRC4\
6310adfc5217SJeff Kirsher 	(1 << 27) /* ECRC Error TLP Status Status in function 4, if set, \
6311adfc5217SJeff Kirsher 	generate pcie_err_attn output when this error is seen.. WC */
6312adfc5217SJeff Kirsher #define PXPCS_TL_FUNC345_STAT_ERR_MALF_TLP4\
6313adfc5217SJeff Kirsher 	(1 << 26) /* Malformed TLP Status Status in function 4, if set, \
6314adfc5217SJeff Kirsher 	generate pcie_err_attn output when this error is seen.. WC */
6315adfc5217SJeff Kirsher #define PXPCS_TL_FUNC345_STAT_ERR_RX_OFLOW4\
6316adfc5217SJeff Kirsher 	(1 << 25) /* Receiver Overflow Status Status in function 4, if \
6317adfc5217SJeff Kirsher 	set, generate pcie_err_attn output when this error is seen.. WC \
6318adfc5217SJeff Kirsher 	*/
6319adfc5217SJeff Kirsher #define PXPCS_TL_FUNC345_STAT_ERR_UNEXP_CPL4\
6320adfc5217SJeff Kirsher 	(1 << 24) /* Unexpected Completion Status Status in function 4, \
6321adfc5217SJeff Kirsher 	if set, generate pcie_err_attn output when this error is seen. WC \
6322adfc5217SJeff Kirsher 	*/
6323adfc5217SJeff Kirsher #define PXPCS_TL_FUNC345_STAT_ERR_MASTER_ABRT4\
6324adfc5217SJeff Kirsher 	(1 << 23) /* Receive UR Statusin function 4. If set, generate \
6325adfc5217SJeff Kirsher 	pcie_err_attn output when this error is seen. WC */
6326adfc5217SJeff Kirsher #define PXPCS_TL_FUNC345_STAT_ERR_CPL_TIMEOUT4\
6327adfc5217SJeff Kirsher 	(1 << 22) /* Completer Timeout Status Status in function 4, if \
6328adfc5217SJeff Kirsher 	set, generate pcie_err_attn output when this error is seen. WC */
6329adfc5217SJeff Kirsher #define PXPCS_TL_FUNC345_STAT_ERR_FC_PRTL4\
6330adfc5217SJeff Kirsher 	(1 << 21) /* Flow Control Protocol Error Status Status in \
6331adfc5217SJeff Kirsher 	function 4, if set, generate pcie_err_attn output when this error \
6332adfc5217SJeff Kirsher 	is seen. WC */
6333adfc5217SJeff Kirsher #define PXPCS_TL_FUNC345_STAT_ERR_PSND_TLP4\
6334adfc5217SJeff Kirsher 	(1 << 20) /* Poisoned Error Status Status in function 4, if set, \
6335adfc5217SJeff Kirsher 	generate pcie_err_attn output when this error is seen.. WC */
6336adfc5217SJeff Kirsher #define PXPCS_TL_FUNC345_STAT_PRI_SIG_TARGET_ABORT3    (1 << 19)   /* WC */
6337adfc5217SJeff Kirsher #define PXPCS_TL_FUNC345_STAT_ERR_UNSPPORT3\
6338adfc5217SJeff Kirsher 	(1 << 18) /* Unsupported Request Error Status in function3, if \
6339adfc5217SJeff Kirsher 	set, generate pcie_err_attn output when this error is seen. WC */
6340adfc5217SJeff Kirsher #define PXPCS_TL_FUNC345_STAT_ERR_ECRC3\
6341adfc5217SJeff Kirsher 	(1 << 17) /* ECRC Error TLP Status Status in function 3, if set, \
6342adfc5217SJeff Kirsher 	generate pcie_err_attn output when this error is seen.. WC */
6343adfc5217SJeff Kirsher #define PXPCS_TL_FUNC345_STAT_ERR_MALF_TLP3\
6344adfc5217SJeff Kirsher 	(1 << 16) /* Malformed TLP Status Status in function 3, if set, \
6345adfc5217SJeff Kirsher 	generate pcie_err_attn output when this error is seen.. WC */
6346adfc5217SJeff Kirsher #define PXPCS_TL_FUNC345_STAT_ERR_RX_OFLOW3\
6347adfc5217SJeff Kirsher 	(1 << 15) /* Receiver Overflow Status Status in function 3, if \
6348adfc5217SJeff Kirsher 	set, generate pcie_err_attn output when this error is seen.. WC \
6349adfc5217SJeff Kirsher 	*/
6350adfc5217SJeff Kirsher #define PXPCS_TL_FUNC345_STAT_ERR_UNEXP_CPL3\
6351adfc5217SJeff Kirsher 	(1 << 14) /* Unexpected Completion Status Status in function 3, \
6352adfc5217SJeff Kirsher 	if set, generate pcie_err_attn output when this error is seen. WC \
6353adfc5217SJeff Kirsher 	*/
6354adfc5217SJeff Kirsher #define PXPCS_TL_FUNC345_STAT_ERR_MASTER_ABRT3\
6355adfc5217SJeff Kirsher 	(1 << 13) /* Receive UR Statusin function 3. If set, generate \
6356adfc5217SJeff Kirsher 	pcie_err_attn output when this error is seen. WC */
6357adfc5217SJeff Kirsher #define PXPCS_TL_FUNC345_STAT_ERR_CPL_TIMEOUT3\
6358adfc5217SJeff Kirsher 	(1 << 12) /* Completer Timeout Status Status in function 3, if \
6359adfc5217SJeff Kirsher 	set, generate pcie_err_attn output when this error is seen. WC */
6360adfc5217SJeff Kirsher #define PXPCS_TL_FUNC345_STAT_ERR_FC_PRTL3\
6361adfc5217SJeff Kirsher 	(1 << 11) /* Flow Control Protocol Error Status Status in \
6362adfc5217SJeff Kirsher 	function 3, if set, generate pcie_err_attn output when this error \
6363adfc5217SJeff Kirsher 	is seen. WC */
6364adfc5217SJeff Kirsher #define PXPCS_TL_FUNC345_STAT_ERR_PSND_TLP3\
6365adfc5217SJeff Kirsher 	(1 << 10) /* Poisoned Error Status Status in function 3, if set, \
6366adfc5217SJeff Kirsher 	generate pcie_err_attn output when this error is seen.. WC */
6367adfc5217SJeff Kirsher #define PXPCS_TL_FUNC345_STAT_PRI_SIG_TARGET_ABORT2    (1 << 9)    /* WC */
6368adfc5217SJeff Kirsher #define PXPCS_TL_FUNC345_STAT_ERR_UNSPPORT2\
6369adfc5217SJeff Kirsher 	(1 << 8) /* Unsupported Request Error Status for Function 2, if \
6370adfc5217SJeff Kirsher 	set, generate pcie_err_attn output when this error is seen. WC */
6371adfc5217SJeff Kirsher #define PXPCS_TL_FUNC345_STAT_ERR_ECRC2\
6372adfc5217SJeff Kirsher 	(1 << 7) /* ECRC Error TLP Status Status for Function 2, if set, \
6373adfc5217SJeff Kirsher 	generate pcie_err_attn output when this error is seen.. WC */
6374adfc5217SJeff Kirsher #define PXPCS_TL_FUNC345_STAT_ERR_MALF_TLP2\
6375adfc5217SJeff Kirsher 	(1 << 6) /* Malformed TLP Status Status for Function 2, if set, \
6376adfc5217SJeff Kirsher 	generate pcie_err_attn output when this error is seen.. WC */
6377adfc5217SJeff Kirsher #define PXPCS_TL_FUNC345_STAT_ERR_RX_OFLOW2\
6378adfc5217SJeff Kirsher 	(1 << 5) /* Receiver Overflow Status Status for Function 2, if \
6379adfc5217SJeff Kirsher 	set, generate pcie_err_attn output when this error is seen.. WC \
6380adfc5217SJeff Kirsher 	*/
6381adfc5217SJeff Kirsher #define PXPCS_TL_FUNC345_STAT_ERR_UNEXP_CPL2\
6382adfc5217SJeff Kirsher 	(1 << 4) /* Unexpected Completion Status Status for Function 2, \
6383adfc5217SJeff Kirsher 	if set, generate pcie_err_attn output when this error is seen. WC \
6384adfc5217SJeff Kirsher 	*/
6385adfc5217SJeff Kirsher #define PXPCS_TL_FUNC345_STAT_ERR_MASTER_ABRT2\
6386adfc5217SJeff Kirsher 	(1 << 3) /* Receive UR Statusfor Function 2. If set, generate \
6387adfc5217SJeff Kirsher 	pcie_err_attn output when this error is seen. WC */
6388adfc5217SJeff Kirsher #define PXPCS_TL_FUNC345_STAT_ERR_CPL_TIMEOUT2\
6389adfc5217SJeff Kirsher 	(1 << 2) /* Completer Timeout Status Status for Function 2, if \
6390adfc5217SJeff Kirsher 	set, generate pcie_err_attn output when this error is seen. WC */
6391adfc5217SJeff Kirsher #define PXPCS_TL_FUNC345_STAT_ERR_FC_PRTL2\
6392adfc5217SJeff Kirsher 	(1 << 1) /* Flow Control Protocol Error Status Status for \
6393adfc5217SJeff Kirsher 	Function 2, if set, generate pcie_err_attn output when this error \
6394adfc5217SJeff Kirsher 	is seen. WC */
6395adfc5217SJeff Kirsher #define PXPCS_TL_FUNC345_STAT_ERR_PSND_TLP2\
6396adfc5217SJeff Kirsher 	(1 << 0) /* Poisoned Error Status Status for Function 2, if set, \
6397adfc5217SJeff Kirsher 	generate pcie_err_attn output when this error is seen.. WC */
6398adfc5217SJeff Kirsher 
6399adfc5217SJeff Kirsher 
6400adfc5217SJeff Kirsher #define PXPCS_TL_FUNC678_STAT  0x85C
6401adfc5217SJeff Kirsher #define PXPCS_TL_FUNC678_STAT_PRI_SIG_TARGET_ABORT7    (1 << 29)   /*	 WC */
6402adfc5217SJeff Kirsher #define PXPCS_TL_FUNC678_STAT_ERR_UNSPPORT7\
6403adfc5217SJeff Kirsher 	(1 << 28) /* Unsupported Request Error Status in function7, if \
6404adfc5217SJeff Kirsher 	set, generate pcie_err_attn output when this error is seen. WC */
6405adfc5217SJeff Kirsher #define PXPCS_TL_FUNC678_STAT_ERR_ECRC7\
6406adfc5217SJeff Kirsher 	(1 << 27) /* ECRC Error TLP Status Status in function 7, if set, \
6407adfc5217SJeff Kirsher 	generate pcie_err_attn output when this error is seen.. WC */
6408adfc5217SJeff Kirsher #define PXPCS_TL_FUNC678_STAT_ERR_MALF_TLP7\
6409adfc5217SJeff Kirsher 	(1 << 26) /* Malformed TLP Status Status in function 7, if set, \
6410adfc5217SJeff Kirsher 	generate pcie_err_attn output when this error is seen.. WC */
6411adfc5217SJeff Kirsher #define PXPCS_TL_FUNC678_STAT_ERR_RX_OFLOW7\
6412adfc5217SJeff Kirsher 	(1 << 25) /* Receiver Overflow Status Status in function 7, if \
6413adfc5217SJeff Kirsher 	set, generate pcie_err_attn output when this error is seen.. WC \
6414adfc5217SJeff Kirsher 	*/
6415adfc5217SJeff Kirsher #define PXPCS_TL_FUNC678_STAT_ERR_UNEXP_CPL7\
6416adfc5217SJeff Kirsher 	(1 << 24) /* Unexpected Completion Status Status in function 7, \
6417adfc5217SJeff Kirsher 	if set, generate pcie_err_attn output when this error is seen. WC \
6418adfc5217SJeff Kirsher 	*/
6419adfc5217SJeff Kirsher #define PXPCS_TL_FUNC678_STAT_ERR_MASTER_ABRT7\
6420adfc5217SJeff Kirsher 	(1 << 23) /* Receive UR Statusin function 7. If set, generate \
6421adfc5217SJeff Kirsher 	pcie_err_attn output when this error is seen. WC */
6422adfc5217SJeff Kirsher #define PXPCS_TL_FUNC678_STAT_ERR_CPL_TIMEOUT7\
6423adfc5217SJeff Kirsher 	(1 << 22) /* Completer Timeout Status Status in function 7, if \
6424adfc5217SJeff Kirsher 	set, generate pcie_err_attn output when this error is seen. WC */
6425adfc5217SJeff Kirsher #define PXPCS_TL_FUNC678_STAT_ERR_FC_PRTL7\
6426adfc5217SJeff Kirsher 	(1 << 21) /* Flow Control Protocol Error Status Status in \
6427adfc5217SJeff Kirsher 	function 7, if set, generate pcie_err_attn output when this error \
6428adfc5217SJeff Kirsher 	is seen. WC */
6429adfc5217SJeff Kirsher #define PXPCS_TL_FUNC678_STAT_ERR_PSND_TLP7\
6430adfc5217SJeff Kirsher 	(1 << 20) /* Poisoned Error Status Status in function 7, if set, \
6431adfc5217SJeff Kirsher 	generate pcie_err_attn output when this error is seen.. WC */
6432adfc5217SJeff Kirsher #define PXPCS_TL_FUNC678_STAT_PRI_SIG_TARGET_ABORT6    (1 << 19)    /*	  WC */
6433adfc5217SJeff Kirsher #define PXPCS_TL_FUNC678_STAT_ERR_UNSPPORT6\
6434adfc5217SJeff Kirsher 	(1 << 18) /* Unsupported Request Error Status in function6, if \
6435adfc5217SJeff Kirsher 	set, generate pcie_err_attn output when this error is seen. WC */
6436adfc5217SJeff Kirsher #define PXPCS_TL_FUNC678_STAT_ERR_ECRC6\
6437adfc5217SJeff Kirsher 	(1 << 17) /* ECRC Error TLP Status Status in function 6, if set, \
6438adfc5217SJeff Kirsher 	generate pcie_err_attn output when this error is seen.. WC */
6439adfc5217SJeff Kirsher #define PXPCS_TL_FUNC678_STAT_ERR_MALF_TLP6\
6440adfc5217SJeff Kirsher 	(1 << 16) /* Malformed TLP Status Status in function 6, if set, \
6441adfc5217SJeff Kirsher 	generate pcie_err_attn output when this error is seen.. WC */
6442adfc5217SJeff Kirsher #define PXPCS_TL_FUNC678_STAT_ERR_RX_OFLOW6\
6443adfc5217SJeff Kirsher 	(1 << 15) /* Receiver Overflow Status Status in function 6, if \
6444adfc5217SJeff Kirsher 	set, generate pcie_err_attn output when this error is seen.. WC \
6445adfc5217SJeff Kirsher 	*/
6446adfc5217SJeff Kirsher #define PXPCS_TL_FUNC678_STAT_ERR_UNEXP_CPL6\
6447adfc5217SJeff Kirsher 	(1 << 14) /* Unexpected Completion Status Status in function 6, \
6448adfc5217SJeff Kirsher 	if set, generate pcie_err_attn output when this error is seen. WC \
6449adfc5217SJeff Kirsher 	*/
6450adfc5217SJeff Kirsher #define PXPCS_TL_FUNC678_STAT_ERR_MASTER_ABRT6\
6451adfc5217SJeff Kirsher 	(1 << 13) /* Receive UR Statusin function 6. If set, generate \
6452adfc5217SJeff Kirsher 	pcie_err_attn output when this error is seen. WC */
6453adfc5217SJeff Kirsher #define PXPCS_TL_FUNC678_STAT_ERR_CPL_TIMEOUT6\
6454adfc5217SJeff Kirsher 	(1 << 12) /* Completer Timeout Status Status in function 6, if \
6455adfc5217SJeff Kirsher 	set, generate pcie_err_attn output when this error is seen. WC */
6456adfc5217SJeff Kirsher #define PXPCS_TL_FUNC678_STAT_ERR_FC_PRTL6\
6457adfc5217SJeff Kirsher 	(1 << 11) /* Flow Control Protocol Error Status Status in \
6458adfc5217SJeff Kirsher 	function 6, if set, generate pcie_err_attn output when this error \
6459adfc5217SJeff Kirsher 	is seen. WC */
6460adfc5217SJeff Kirsher #define PXPCS_TL_FUNC678_STAT_ERR_PSND_TLP6\
6461adfc5217SJeff Kirsher 	(1 << 10) /* Poisoned Error Status Status in function 6, if set, \
6462adfc5217SJeff Kirsher 	generate pcie_err_attn output when this error is seen.. WC */
6463adfc5217SJeff Kirsher #define PXPCS_TL_FUNC678_STAT_PRI_SIG_TARGET_ABORT5    (1 << 9) /*    WC */
6464adfc5217SJeff Kirsher #define PXPCS_TL_FUNC678_STAT_ERR_UNSPPORT5\
6465adfc5217SJeff Kirsher 	(1 << 8) /* Unsupported Request Error Status for Function 5, if \
6466adfc5217SJeff Kirsher 	set, generate pcie_err_attn output when this error is seen. WC */
6467adfc5217SJeff Kirsher #define PXPCS_TL_FUNC678_STAT_ERR_ECRC5\
6468adfc5217SJeff Kirsher 	(1 << 7) /* ECRC Error TLP Status Status for Function 5, if set, \
6469adfc5217SJeff Kirsher 	generate pcie_err_attn output when this error is seen.. WC */
6470adfc5217SJeff Kirsher #define PXPCS_TL_FUNC678_STAT_ERR_MALF_TLP5\
6471adfc5217SJeff Kirsher 	(1 << 6) /* Malformed TLP Status Status for Function 5, if set, \
6472adfc5217SJeff Kirsher 	generate pcie_err_attn output when this error is seen.. WC */
6473adfc5217SJeff Kirsher #define PXPCS_TL_FUNC678_STAT_ERR_RX_OFLOW5\
6474adfc5217SJeff Kirsher 	(1 << 5) /* Receiver Overflow Status Status for Function 5, if \
6475adfc5217SJeff Kirsher 	set, generate pcie_err_attn output when this error is seen.. WC \
6476adfc5217SJeff Kirsher 	*/
6477adfc5217SJeff Kirsher #define PXPCS_TL_FUNC678_STAT_ERR_UNEXP_CPL5\
6478adfc5217SJeff Kirsher 	(1 << 4) /* Unexpected Completion Status Status for Function 5, \
6479adfc5217SJeff Kirsher 	if set, generate pcie_err_attn output when this error is seen. WC \
6480adfc5217SJeff Kirsher 	*/
6481adfc5217SJeff Kirsher #define PXPCS_TL_FUNC678_STAT_ERR_MASTER_ABRT5\
6482adfc5217SJeff Kirsher 	(1 << 3) /* Receive UR Statusfor Function 5. If set, generate \
6483adfc5217SJeff Kirsher 	pcie_err_attn output when this error is seen. WC */
6484adfc5217SJeff Kirsher #define PXPCS_TL_FUNC678_STAT_ERR_CPL_TIMEOUT5\
6485adfc5217SJeff Kirsher 	(1 << 2) /* Completer Timeout Status Status for Function 5, if \
6486adfc5217SJeff Kirsher 	set, generate pcie_err_attn output when this error is seen. WC */
6487adfc5217SJeff Kirsher #define PXPCS_TL_FUNC678_STAT_ERR_FC_PRTL5\
6488adfc5217SJeff Kirsher 	(1 << 1) /* Flow Control Protocol Error Status Status for \
6489adfc5217SJeff Kirsher 	Function 5, if set, generate pcie_err_attn output when this error \
6490adfc5217SJeff Kirsher 	is seen. WC */
6491adfc5217SJeff Kirsher #define PXPCS_TL_FUNC678_STAT_ERR_PSND_TLP5\
6492adfc5217SJeff Kirsher 	(1 << 0) /* Poisoned Error Status Status for Function 5, if set, \
6493adfc5217SJeff Kirsher 	generate pcie_err_attn output when this error is seen.. WC */
6494adfc5217SJeff Kirsher 
6495adfc5217SJeff Kirsher 
6496adfc5217SJeff Kirsher #define BAR_USTRORM_INTMEM				0x400000
6497adfc5217SJeff Kirsher #define BAR_CSTRORM_INTMEM				0x410000
6498adfc5217SJeff Kirsher #define BAR_XSTRORM_INTMEM				0x420000
6499adfc5217SJeff Kirsher #define BAR_TSTRORM_INTMEM				0x430000
6500adfc5217SJeff Kirsher 
6501adfc5217SJeff Kirsher /* for accessing the IGU in case of status block ACK */
6502adfc5217SJeff Kirsher #define BAR_IGU_INTMEM					0x440000
6503adfc5217SJeff Kirsher 
6504adfc5217SJeff Kirsher #define BAR_DOORBELL_OFFSET				0x800000
6505adfc5217SJeff Kirsher 
6506adfc5217SJeff Kirsher #define BAR_ME_REGISTER				0x450000
6507adfc5217SJeff Kirsher #define ME_REG_PF_NUM_SHIFT		0
6508adfc5217SJeff Kirsher #define ME_REG_PF_NUM\
6509adfc5217SJeff Kirsher 	(7L<<ME_REG_PF_NUM_SHIFT) /* Relative PF Num */
6510adfc5217SJeff Kirsher #define ME_REG_VF_VALID		(1<<8)
6511adfc5217SJeff Kirsher #define ME_REG_VF_NUM_SHIFT		9
6512adfc5217SJeff Kirsher #define ME_REG_VF_NUM_MASK		(0x3f<<ME_REG_VF_NUM_SHIFT)
6513adfc5217SJeff Kirsher #define ME_REG_VF_ERR			(0x1<<3)
6514adfc5217SJeff Kirsher #define ME_REG_ABS_PF_NUM_SHIFT	16
6515adfc5217SJeff Kirsher #define ME_REG_ABS_PF_NUM\
6516adfc5217SJeff Kirsher 	(7L<<ME_REG_ABS_PF_NUM_SHIFT) /* Absolute PF Num */
6517adfc5217SJeff Kirsher 
6518adfc5217SJeff Kirsher 
6519adfc5217SJeff Kirsher #define MDIO_REG_BANK_CL73_IEEEB0	0x0
6520adfc5217SJeff Kirsher #define MDIO_CL73_IEEEB0_CL73_AN_CONTROL	0x0
6521adfc5217SJeff Kirsher #define MDIO_CL73_IEEEB0_CL73_AN_CONTROL_RESTART_AN	0x0200
6522adfc5217SJeff Kirsher #define MDIO_CL73_IEEEB0_CL73_AN_CONTROL_AN_EN		0x1000
6523adfc5217SJeff Kirsher #define MDIO_CL73_IEEEB0_CL73_AN_CONTROL_MAIN_RST	0x8000
6524adfc5217SJeff Kirsher 
6525adfc5217SJeff Kirsher #define MDIO_REG_BANK_CL73_IEEEB1	0x10
6526adfc5217SJeff Kirsher #define MDIO_CL73_IEEEB1_AN_ADV1		0x00
6527adfc5217SJeff Kirsher #define MDIO_CL73_IEEEB1_AN_ADV1_PAUSE			0x0400
6528adfc5217SJeff Kirsher #define MDIO_CL73_IEEEB1_AN_ADV1_ASYMMETRIC		0x0800
6529adfc5217SJeff Kirsher #define MDIO_CL73_IEEEB1_AN_ADV1_PAUSE_BOTH		0x0C00
6530adfc5217SJeff Kirsher #define MDIO_CL73_IEEEB1_AN_ADV1_PAUSE_MASK		0x0C00
6531adfc5217SJeff Kirsher #define MDIO_CL73_IEEEB1_AN_ADV2		0x01
6532adfc5217SJeff Kirsher #define MDIO_CL73_IEEEB1_AN_ADV2_ADVR_1000M		0x0000
6533adfc5217SJeff Kirsher #define MDIO_CL73_IEEEB1_AN_ADV2_ADVR_1000M_KX		0x0020
6534adfc5217SJeff Kirsher #define MDIO_CL73_IEEEB1_AN_ADV2_ADVR_10G_KX4		0x0040
6535adfc5217SJeff Kirsher #define MDIO_CL73_IEEEB1_AN_ADV2_ADVR_10G_KR		0x0080
6536adfc5217SJeff Kirsher #define MDIO_CL73_IEEEB1_AN_LP_ADV1		0x03
6537adfc5217SJeff Kirsher #define MDIO_CL73_IEEEB1_AN_LP_ADV1_PAUSE		0x0400
6538adfc5217SJeff Kirsher #define MDIO_CL73_IEEEB1_AN_LP_ADV1_ASYMMETRIC		0x0800
6539adfc5217SJeff Kirsher #define MDIO_CL73_IEEEB1_AN_LP_ADV1_PAUSE_BOTH		0x0C00
6540adfc5217SJeff Kirsher #define MDIO_CL73_IEEEB1_AN_LP_ADV1_PAUSE_MASK		0x0C00
65419e7e8399SMintz Yuval #define MDIO_CL73_IEEEB1_AN_LP_ADV2			0x04
6542adfc5217SJeff Kirsher 
6543adfc5217SJeff Kirsher #define MDIO_REG_BANK_RX0				0x80b0
6544adfc5217SJeff Kirsher #define MDIO_RX0_RX_STATUS				0x10
6545adfc5217SJeff Kirsher #define MDIO_RX0_RX_STATUS_SIGDET			0x8000
6546adfc5217SJeff Kirsher #define MDIO_RX0_RX_STATUS_RX_SEQ_DONE			0x1000
6547adfc5217SJeff Kirsher #define MDIO_RX0_RX_EQ_BOOST				0x1c
6548adfc5217SJeff Kirsher #define MDIO_RX0_RX_EQ_BOOST_EQUALIZER_CTRL_MASK	0x7
6549adfc5217SJeff Kirsher #define MDIO_RX0_RX_EQ_BOOST_OFFSET_CTRL		0x10
6550adfc5217SJeff Kirsher 
6551adfc5217SJeff Kirsher #define MDIO_REG_BANK_RX1				0x80c0
6552adfc5217SJeff Kirsher #define MDIO_RX1_RX_EQ_BOOST				0x1c
6553adfc5217SJeff Kirsher #define MDIO_RX1_RX_EQ_BOOST_EQUALIZER_CTRL_MASK	0x7
6554adfc5217SJeff Kirsher #define MDIO_RX1_RX_EQ_BOOST_OFFSET_CTRL		0x10
6555adfc5217SJeff Kirsher 
6556adfc5217SJeff Kirsher #define MDIO_REG_BANK_RX2				0x80d0
6557adfc5217SJeff Kirsher #define MDIO_RX2_RX_EQ_BOOST				0x1c
6558adfc5217SJeff Kirsher #define MDIO_RX2_RX_EQ_BOOST_EQUALIZER_CTRL_MASK	0x7
6559adfc5217SJeff Kirsher #define MDIO_RX2_RX_EQ_BOOST_OFFSET_CTRL		0x10
6560adfc5217SJeff Kirsher 
6561adfc5217SJeff Kirsher #define MDIO_REG_BANK_RX3				0x80e0
6562adfc5217SJeff Kirsher #define MDIO_RX3_RX_EQ_BOOST				0x1c
6563adfc5217SJeff Kirsher #define MDIO_RX3_RX_EQ_BOOST_EQUALIZER_CTRL_MASK	0x7
6564adfc5217SJeff Kirsher #define MDIO_RX3_RX_EQ_BOOST_OFFSET_CTRL		0x10
6565adfc5217SJeff Kirsher 
6566adfc5217SJeff Kirsher #define MDIO_REG_BANK_RX_ALL				0x80f0
6567adfc5217SJeff Kirsher #define MDIO_RX_ALL_RX_EQ_BOOST 			0x1c
6568adfc5217SJeff Kirsher #define MDIO_RX_ALL_RX_EQ_BOOST_EQUALIZER_CTRL_MASK	0x7
6569adfc5217SJeff Kirsher #define MDIO_RX_ALL_RX_EQ_BOOST_OFFSET_CTRL	0x10
6570adfc5217SJeff Kirsher 
6571adfc5217SJeff Kirsher #define MDIO_REG_BANK_TX0				0x8060
6572adfc5217SJeff Kirsher #define MDIO_TX0_TX_DRIVER				0x17
6573adfc5217SJeff Kirsher #define MDIO_TX0_TX_DRIVER_PREEMPHASIS_MASK		0xf000
6574adfc5217SJeff Kirsher #define MDIO_TX0_TX_DRIVER_PREEMPHASIS_SHIFT		12
6575adfc5217SJeff Kirsher #define MDIO_TX0_TX_DRIVER_IDRIVER_MASK 		0x0f00
6576adfc5217SJeff Kirsher #define MDIO_TX0_TX_DRIVER_IDRIVER_SHIFT		8
6577adfc5217SJeff Kirsher #define MDIO_TX0_TX_DRIVER_IPREDRIVER_MASK		0x00f0
6578adfc5217SJeff Kirsher #define MDIO_TX0_TX_DRIVER_IPREDRIVER_SHIFT		4
6579adfc5217SJeff Kirsher #define MDIO_TX0_TX_DRIVER_IFULLSPD_MASK		0x000e
6580adfc5217SJeff Kirsher #define MDIO_TX0_TX_DRIVER_IFULLSPD_SHIFT		1
6581adfc5217SJeff Kirsher #define MDIO_TX0_TX_DRIVER_ICBUF1T			1
6582adfc5217SJeff Kirsher 
6583adfc5217SJeff Kirsher #define MDIO_REG_BANK_TX1				0x8070
6584adfc5217SJeff Kirsher #define MDIO_TX1_TX_DRIVER				0x17
6585adfc5217SJeff Kirsher #define MDIO_TX0_TX_DRIVER_PREEMPHASIS_MASK		0xf000
6586adfc5217SJeff Kirsher #define MDIO_TX0_TX_DRIVER_PREEMPHASIS_SHIFT		12
6587adfc5217SJeff Kirsher #define MDIO_TX0_TX_DRIVER_IDRIVER_MASK 		0x0f00
6588adfc5217SJeff Kirsher #define MDIO_TX0_TX_DRIVER_IDRIVER_SHIFT		8
6589adfc5217SJeff Kirsher #define MDIO_TX0_TX_DRIVER_IPREDRIVER_MASK		0x00f0
6590adfc5217SJeff Kirsher #define MDIO_TX0_TX_DRIVER_IPREDRIVER_SHIFT		4
6591adfc5217SJeff Kirsher #define MDIO_TX0_TX_DRIVER_IFULLSPD_MASK		0x000e
6592adfc5217SJeff Kirsher #define MDIO_TX0_TX_DRIVER_IFULLSPD_SHIFT		1
6593adfc5217SJeff Kirsher #define MDIO_TX0_TX_DRIVER_ICBUF1T			1
6594adfc5217SJeff Kirsher 
6595adfc5217SJeff Kirsher #define MDIO_REG_BANK_TX2				0x8080
6596adfc5217SJeff Kirsher #define MDIO_TX2_TX_DRIVER				0x17
6597adfc5217SJeff Kirsher #define MDIO_TX0_TX_DRIVER_PREEMPHASIS_MASK		0xf000
6598adfc5217SJeff Kirsher #define MDIO_TX0_TX_DRIVER_PREEMPHASIS_SHIFT		12
6599adfc5217SJeff Kirsher #define MDIO_TX0_TX_DRIVER_IDRIVER_MASK 		0x0f00
6600adfc5217SJeff Kirsher #define MDIO_TX0_TX_DRIVER_IDRIVER_SHIFT		8
6601adfc5217SJeff Kirsher #define MDIO_TX0_TX_DRIVER_IPREDRIVER_MASK		0x00f0
6602adfc5217SJeff Kirsher #define MDIO_TX0_TX_DRIVER_IPREDRIVER_SHIFT		4
6603adfc5217SJeff Kirsher #define MDIO_TX0_TX_DRIVER_IFULLSPD_MASK		0x000e
6604adfc5217SJeff Kirsher #define MDIO_TX0_TX_DRIVER_IFULLSPD_SHIFT		1
6605adfc5217SJeff Kirsher #define MDIO_TX0_TX_DRIVER_ICBUF1T			1
6606adfc5217SJeff Kirsher 
6607adfc5217SJeff Kirsher #define MDIO_REG_BANK_TX3				0x8090
6608adfc5217SJeff Kirsher #define MDIO_TX3_TX_DRIVER				0x17
6609adfc5217SJeff Kirsher #define MDIO_TX0_TX_DRIVER_PREEMPHASIS_MASK		0xf000
6610adfc5217SJeff Kirsher #define MDIO_TX0_TX_DRIVER_PREEMPHASIS_SHIFT		12
6611adfc5217SJeff Kirsher #define MDIO_TX0_TX_DRIVER_IDRIVER_MASK 		0x0f00
6612adfc5217SJeff Kirsher #define MDIO_TX0_TX_DRIVER_IDRIVER_SHIFT		8
6613adfc5217SJeff Kirsher #define MDIO_TX0_TX_DRIVER_IPREDRIVER_MASK		0x00f0
6614adfc5217SJeff Kirsher #define MDIO_TX0_TX_DRIVER_IPREDRIVER_SHIFT		4
6615adfc5217SJeff Kirsher #define MDIO_TX0_TX_DRIVER_IFULLSPD_MASK		0x000e
6616adfc5217SJeff Kirsher #define MDIO_TX0_TX_DRIVER_IFULLSPD_SHIFT		1
6617adfc5217SJeff Kirsher #define MDIO_TX0_TX_DRIVER_ICBUF1T			1
6618adfc5217SJeff Kirsher 
6619adfc5217SJeff Kirsher #define MDIO_REG_BANK_XGXS_BLOCK0			0x8000
6620adfc5217SJeff Kirsher #define MDIO_BLOCK0_XGXS_CONTROL			0x10
6621adfc5217SJeff Kirsher 
6622adfc5217SJeff Kirsher #define MDIO_REG_BANK_XGXS_BLOCK1			0x8010
6623adfc5217SJeff Kirsher #define MDIO_BLOCK1_LANE_CTRL0				0x15
6624adfc5217SJeff Kirsher #define MDIO_BLOCK1_LANE_CTRL1				0x16
6625adfc5217SJeff Kirsher #define MDIO_BLOCK1_LANE_CTRL2				0x17
6626adfc5217SJeff Kirsher #define MDIO_BLOCK1_LANE_PRBS				0x19
6627adfc5217SJeff Kirsher 
6628adfc5217SJeff Kirsher #define MDIO_REG_BANK_XGXS_BLOCK2			0x8100
6629adfc5217SJeff Kirsher #define MDIO_XGXS_BLOCK2_RX_LN_SWAP			0x10
6630adfc5217SJeff Kirsher #define MDIO_XGXS_BLOCK2_RX_LN_SWAP_ENABLE		0x8000
6631adfc5217SJeff Kirsher #define MDIO_XGXS_BLOCK2_RX_LN_SWAP_FORCE_ENABLE	0x4000
6632adfc5217SJeff Kirsher #define MDIO_XGXS_BLOCK2_TX_LN_SWAP		0x11
6633adfc5217SJeff Kirsher #define MDIO_XGXS_BLOCK2_TX_LN_SWAP_ENABLE		0x8000
6634adfc5217SJeff Kirsher #define MDIO_XGXS_BLOCK2_UNICORE_MODE_10G	0x14
6635adfc5217SJeff Kirsher #define MDIO_XGXS_BLOCK2_UNICORE_MODE_10G_CX4_XGXS	0x0001
6636adfc5217SJeff Kirsher #define MDIO_XGXS_BLOCK2_UNICORE_MODE_10G_HIGIG_XGXS	0x0010
6637adfc5217SJeff Kirsher #define MDIO_XGXS_BLOCK2_TEST_MODE_LANE 	0x15
6638adfc5217SJeff Kirsher 
6639adfc5217SJeff Kirsher #define MDIO_REG_BANK_GP_STATUS 			0x8120
6640adfc5217SJeff Kirsher #define MDIO_GP_STATUS_TOP_AN_STATUS1				0x1B
6641adfc5217SJeff Kirsher #define MDIO_GP_STATUS_TOP_AN_STATUS1_CL73_AUTONEG_COMPLETE	0x0001
6642adfc5217SJeff Kirsher #define MDIO_GP_STATUS_TOP_AN_STATUS1_CL37_AUTONEG_COMPLETE	0x0002
6643adfc5217SJeff Kirsher #define MDIO_GP_STATUS_TOP_AN_STATUS1_LINK_STATUS		0x0004
6644adfc5217SJeff Kirsher #define MDIO_GP_STATUS_TOP_AN_STATUS1_DUPLEX_STATUS		0x0008
6645adfc5217SJeff Kirsher #define MDIO_GP_STATUS_TOP_AN_STATUS1_CL73_MR_LP_NP_AN_ABLE	0x0010
6646adfc5217SJeff Kirsher #define MDIO_GP_STATUS_TOP_AN_STATUS1_CL73_LP_NP_BAM_ABLE	0x0020
6647adfc5217SJeff Kirsher #define MDIO_GP_STATUS_TOP_AN_STATUS1_PAUSE_RSOLUTION_TXSIDE	0x0040
6648adfc5217SJeff Kirsher #define MDIO_GP_STATUS_TOP_AN_STATUS1_PAUSE_RSOLUTION_RXSIDE	0x0080
6649adfc5217SJeff Kirsher #define MDIO_GP_STATUS_TOP_AN_STATUS1_ACTUAL_SPEED_MASK 	0x3f00
6650adfc5217SJeff Kirsher #define MDIO_GP_STATUS_TOP_AN_STATUS1_ACTUAL_SPEED_10M		0x0000
6651adfc5217SJeff Kirsher #define MDIO_GP_STATUS_TOP_AN_STATUS1_ACTUAL_SPEED_100M 	0x0100
6652adfc5217SJeff Kirsher #define MDIO_GP_STATUS_TOP_AN_STATUS1_ACTUAL_SPEED_1G		0x0200
6653adfc5217SJeff Kirsher #define MDIO_GP_STATUS_TOP_AN_STATUS1_ACTUAL_SPEED_2_5G 	0x0300
6654adfc5217SJeff Kirsher #define MDIO_GP_STATUS_TOP_AN_STATUS1_ACTUAL_SPEED_5G		0x0400
6655adfc5217SJeff Kirsher #define MDIO_GP_STATUS_TOP_AN_STATUS1_ACTUAL_SPEED_6G		0x0500
6656adfc5217SJeff Kirsher #define MDIO_GP_STATUS_TOP_AN_STATUS1_ACTUAL_SPEED_10G_HIG	0x0600
6657adfc5217SJeff Kirsher #define MDIO_GP_STATUS_TOP_AN_STATUS1_ACTUAL_SPEED_10G_CX4	0x0700
6658adfc5217SJeff Kirsher #define MDIO_GP_STATUS_TOP_AN_STATUS1_ACTUAL_SPEED_12G_HIG	0x0800
6659adfc5217SJeff Kirsher #define MDIO_GP_STATUS_TOP_AN_STATUS1_ACTUAL_SPEED_12_5G	0x0900
6660adfc5217SJeff Kirsher #define MDIO_GP_STATUS_TOP_AN_STATUS1_ACTUAL_SPEED_13G		0x0A00
6661adfc5217SJeff Kirsher #define MDIO_GP_STATUS_TOP_AN_STATUS1_ACTUAL_SPEED_15G		0x0B00
6662adfc5217SJeff Kirsher #define MDIO_GP_STATUS_TOP_AN_STATUS1_ACTUAL_SPEED_16G		0x0C00
6663adfc5217SJeff Kirsher #define MDIO_GP_STATUS_TOP_AN_STATUS1_ACTUAL_SPEED_1G_KX	0x0D00
6664adfc5217SJeff Kirsher #define MDIO_GP_STATUS_TOP_AN_STATUS1_ACTUAL_SPEED_10G_KX4	0x0E00
6665adfc5217SJeff Kirsher #define MDIO_GP_STATUS_TOP_AN_STATUS1_ACTUAL_SPEED_10G_KR	0x0F00
6666adfc5217SJeff Kirsher #define MDIO_GP_STATUS_TOP_AN_STATUS1_ACTUAL_SPEED_10G_XFI	0x1B00
6667adfc5217SJeff Kirsher #define MDIO_GP_STATUS_TOP_AN_STATUS1_ACTUAL_SPEED_20G_DXGXS	0x1E00
6668adfc5217SJeff Kirsher #define MDIO_GP_STATUS_TOP_AN_STATUS1_ACTUAL_SPEED_10G_SFI	0x1F00
6669adfc5217SJeff Kirsher 
6670adfc5217SJeff Kirsher 
6671adfc5217SJeff Kirsher #define MDIO_REG_BANK_10G_PARALLEL_DETECT		0x8130
6672adfc5217SJeff Kirsher #define MDIO_10G_PARALLEL_DETECT_PAR_DET_10G_STATUS		0x10
6673adfc5217SJeff Kirsher #define MDIO_10G_PARALLEL_DETECT_PAR_DET_10G_STATUS_PD_LINK		0x8000
6674adfc5217SJeff Kirsher #define MDIO_10G_PARALLEL_DETECT_PAR_DET_10G_CONTROL		0x11
6675adfc5217SJeff Kirsher #define MDIO_10G_PARALLEL_DETECT_PAR_DET_10G_CONTROL_PARDET10G_EN	0x1
6676adfc5217SJeff Kirsher #define MDIO_10G_PARALLEL_DETECT_PAR_DET_10G_LINK		0x13
6677adfc5217SJeff Kirsher #define MDIO_10G_PARALLEL_DETECT_PAR_DET_10G_LINK_CNT		(0xb71<<1)
6678adfc5217SJeff Kirsher 
6679adfc5217SJeff Kirsher #define MDIO_REG_BANK_SERDES_DIGITAL			0x8300
6680adfc5217SJeff Kirsher #define MDIO_SERDES_DIGITAL_A_1000X_CONTROL1			0x10
6681adfc5217SJeff Kirsher #define MDIO_SERDES_DIGITAL_A_1000X_CONTROL1_FIBER_MODE 		0x0001
6682adfc5217SJeff Kirsher #define MDIO_SERDES_DIGITAL_A_1000X_CONTROL1_TBI_IF			0x0002
6683adfc5217SJeff Kirsher #define MDIO_SERDES_DIGITAL_A_1000X_CONTROL1_SIGNAL_DETECT_EN		0x0004
6684adfc5217SJeff Kirsher #define MDIO_SERDES_DIGITAL_A_1000X_CONTROL1_INVERT_SIGNAL_DETECT	0x0008
6685adfc5217SJeff Kirsher #define MDIO_SERDES_DIGITAL_A_1000X_CONTROL1_AUTODET			0x0010
6686adfc5217SJeff Kirsher #define MDIO_SERDES_DIGITAL_A_1000X_CONTROL1_MSTR_MODE			0x0020
6687adfc5217SJeff Kirsher #define MDIO_SERDES_DIGITAL_A_1000X_CONTROL2			0x11
6688adfc5217SJeff Kirsher #define MDIO_SERDES_DIGITAL_A_1000X_CONTROL2_PRL_DT_EN			0x0001
6689adfc5217SJeff Kirsher #define MDIO_SERDES_DIGITAL_A_1000X_CONTROL2_AN_FST_TMR 		0x0040
6690adfc5217SJeff Kirsher #define MDIO_SERDES_DIGITAL_A_1000X_STATUS1			0x14
6691adfc5217SJeff Kirsher #define MDIO_SERDES_DIGITAL_A_1000X_STATUS1_SGMII			0x0001
6692adfc5217SJeff Kirsher #define MDIO_SERDES_DIGITAL_A_1000X_STATUS1_LINK			0x0002
6693adfc5217SJeff Kirsher #define MDIO_SERDES_DIGITAL_A_1000X_STATUS1_DUPLEX			0x0004
6694adfc5217SJeff Kirsher #define MDIO_SERDES_DIGITAL_A_1000X_STATUS1_SPEED_MASK			0x0018
6695adfc5217SJeff Kirsher #define MDIO_SERDES_DIGITAL_A_1000X_STATUS1_SPEED_SHIFT 		3
6696adfc5217SJeff Kirsher #define MDIO_SERDES_DIGITAL_A_1000X_STATUS1_SPEED_2_5G			0x0018
6697adfc5217SJeff Kirsher #define MDIO_SERDES_DIGITAL_A_1000X_STATUS1_SPEED_1G			0x0010
6698adfc5217SJeff Kirsher #define MDIO_SERDES_DIGITAL_A_1000X_STATUS1_SPEED_100M			0x0008
6699adfc5217SJeff Kirsher #define MDIO_SERDES_DIGITAL_A_1000X_STATUS1_SPEED_10M			0x0000
6700adfc5217SJeff Kirsher #define MDIO_SERDES_DIGITAL_A_1000X_STATUS2			0x15
6701adfc5217SJeff Kirsher #define MDIO_SERDES_DIGITAL_A_1000X_STATUS2_AN_DISABLED 		0x0002
6702adfc5217SJeff Kirsher #define MDIO_SERDES_DIGITAL_MISC1				0x18
6703adfc5217SJeff Kirsher #define MDIO_SERDES_DIGITAL_MISC1_REFCLK_SEL_MASK			0xE000
6704adfc5217SJeff Kirsher #define MDIO_SERDES_DIGITAL_MISC1_REFCLK_SEL_25M			0x0000
6705adfc5217SJeff Kirsher #define MDIO_SERDES_DIGITAL_MISC1_REFCLK_SEL_100M			0x2000
6706adfc5217SJeff Kirsher #define MDIO_SERDES_DIGITAL_MISC1_REFCLK_SEL_125M			0x4000
6707adfc5217SJeff Kirsher #define MDIO_SERDES_DIGITAL_MISC1_REFCLK_SEL_156_25M			0x6000
6708adfc5217SJeff Kirsher #define MDIO_SERDES_DIGITAL_MISC1_REFCLK_SEL_187_5M			0x8000
6709adfc5217SJeff Kirsher #define MDIO_SERDES_DIGITAL_MISC1_FORCE_SPEED_SEL			0x0010
6710adfc5217SJeff Kirsher #define MDIO_SERDES_DIGITAL_MISC1_FORCE_SPEED_MASK			0x000f
6711adfc5217SJeff Kirsher #define MDIO_SERDES_DIGITAL_MISC1_FORCE_SPEED_2_5G			0x0000
6712adfc5217SJeff Kirsher #define MDIO_SERDES_DIGITAL_MISC1_FORCE_SPEED_5G			0x0001
6713adfc5217SJeff Kirsher #define MDIO_SERDES_DIGITAL_MISC1_FORCE_SPEED_6G			0x0002
6714adfc5217SJeff Kirsher #define MDIO_SERDES_DIGITAL_MISC1_FORCE_SPEED_10G_HIG			0x0003
6715adfc5217SJeff Kirsher #define MDIO_SERDES_DIGITAL_MISC1_FORCE_SPEED_10G_CX4			0x0004
6716adfc5217SJeff Kirsher #define MDIO_SERDES_DIGITAL_MISC1_FORCE_SPEED_12G			0x0005
6717adfc5217SJeff Kirsher #define MDIO_SERDES_DIGITAL_MISC1_FORCE_SPEED_12_5G			0x0006
6718adfc5217SJeff Kirsher #define MDIO_SERDES_DIGITAL_MISC1_FORCE_SPEED_13G			0x0007
6719adfc5217SJeff Kirsher #define MDIO_SERDES_DIGITAL_MISC1_FORCE_SPEED_15G			0x0008
6720adfc5217SJeff Kirsher #define MDIO_SERDES_DIGITAL_MISC1_FORCE_SPEED_16G			0x0009
6721adfc5217SJeff Kirsher 
6722adfc5217SJeff Kirsher #define MDIO_REG_BANK_OVER_1G				0x8320
6723adfc5217SJeff Kirsher #define MDIO_OVER_1G_DIGCTL_3_4 				0x14
6724adfc5217SJeff Kirsher #define MDIO_OVER_1G_DIGCTL_3_4_MP_ID_MASK				0xffe0
6725adfc5217SJeff Kirsher #define MDIO_OVER_1G_DIGCTL_3_4_MP_ID_SHIFT				5
6726adfc5217SJeff Kirsher #define MDIO_OVER_1G_UP1					0x19
6727adfc5217SJeff Kirsher #define MDIO_OVER_1G_UP1_2_5G						0x0001
6728adfc5217SJeff Kirsher #define MDIO_OVER_1G_UP1_5G						0x0002
6729adfc5217SJeff Kirsher #define MDIO_OVER_1G_UP1_6G						0x0004
6730adfc5217SJeff Kirsher #define MDIO_OVER_1G_UP1_10G						0x0010
6731adfc5217SJeff Kirsher #define MDIO_OVER_1G_UP1_10GH						0x0008
6732adfc5217SJeff Kirsher #define MDIO_OVER_1G_UP1_12G						0x0020
6733adfc5217SJeff Kirsher #define MDIO_OVER_1G_UP1_12_5G						0x0040
6734adfc5217SJeff Kirsher #define MDIO_OVER_1G_UP1_13G						0x0080
6735adfc5217SJeff Kirsher #define MDIO_OVER_1G_UP1_15G						0x0100
6736adfc5217SJeff Kirsher #define MDIO_OVER_1G_UP1_16G						0x0200
6737adfc5217SJeff Kirsher #define MDIO_OVER_1G_UP2					0x1A
6738adfc5217SJeff Kirsher #define MDIO_OVER_1G_UP2_IPREDRIVER_MASK				0x0007
6739adfc5217SJeff Kirsher #define MDIO_OVER_1G_UP2_IDRIVER_MASK					0x0038
6740adfc5217SJeff Kirsher #define MDIO_OVER_1G_UP2_PREEMPHASIS_MASK				0x03C0
6741adfc5217SJeff Kirsher #define MDIO_OVER_1G_UP3					0x1B
6742adfc5217SJeff Kirsher #define MDIO_OVER_1G_UP3_HIGIG2 					0x0001
6743adfc5217SJeff Kirsher #define MDIO_OVER_1G_LP_UP1					0x1C
6744adfc5217SJeff Kirsher #define MDIO_OVER_1G_LP_UP2					0x1D
6745adfc5217SJeff Kirsher #define MDIO_OVER_1G_LP_UP2_MR_ADV_OVER_1G_MASK 			0x03ff
6746adfc5217SJeff Kirsher #define MDIO_OVER_1G_LP_UP2_PREEMPHASIS_MASK				0x0780
6747adfc5217SJeff Kirsher #define MDIO_OVER_1G_LP_UP2_PREEMPHASIS_SHIFT				7
6748adfc5217SJeff Kirsher #define MDIO_OVER_1G_LP_UP3						0x1E
6749adfc5217SJeff Kirsher 
6750adfc5217SJeff Kirsher #define MDIO_REG_BANK_REMOTE_PHY			0x8330
6751adfc5217SJeff Kirsher #define MDIO_REMOTE_PHY_MISC_RX_STATUS				0x10
6752adfc5217SJeff Kirsher #define MDIO_REMOTE_PHY_MISC_RX_STATUS_CL37_FSM_RECEIVED_OVER1G_MSG	0x0010
6753adfc5217SJeff Kirsher #define MDIO_REMOTE_PHY_MISC_RX_STATUS_CL37_FSM_RECEIVED_BRCM_OUI_MSG	0x0600
6754adfc5217SJeff Kirsher 
6755adfc5217SJeff Kirsher #define MDIO_REG_BANK_BAM_NEXT_PAGE			0x8350
6756adfc5217SJeff Kirsher #define MDIO_BAM_NEXT_PAGE_MP5_NEXT_PAGE_CTRL			0x10
6757adfc5217SJeff Kirsher #define MDIO_BAM_NEXT_PAGE_MP5_NEXT_PAGE_CTRL_BAM_MODE			0x0001
6758adfc5217SJeff Kirsher #define MDIO_BAM_NEXT_PAGE_MP5_NEXT_PAGE_CTRL_TETON_AN			0x0002
6759adfc5217SJeff Kirsher 
6760adfc5217SJeff Kirsher #define MDIO_REG_BANK_CL73_USERB0		0x8370
6761adfc5217SJeff Kirsher #define MDIO_CL73_USERB0_CL73_UCTRL				0x10
6762adfc5217SJeff Kirsher #define MDIO_CL73_USERB0_CL73_UCTRL_USTAT1_MUXSEL			0x0002
6763adfc5217SJeff Kirsher #define MDIO_CL73_USERB0_CL73_USTAT1				0x11
6764adfc5217SJeff Kirsher #define MDIO_CL73_USERB0_CL73_USTAT1_LINK_STATUS_CHECK			0x0100
6765adfc5217SJeff Kirsher #define MDIO_CL73_USERB0_CL73_USTAT1_AN_GOOD_CHECK_BAM37		0x0400
6766adfc5217SJeff Kirsher #define MDIO_CL73_USERB0_CL73_BAM_CTRL1 			0x12
6767adfc5217SJeff Kirsher #define MDIO_CL73_USERB0_CL73_BAM_CTRL1_BAM_EN				0x8000
6768adfc5217SJeff Kirsher #define MDIO_CL73_USERB0_CL73_BAM_CTRL1_BAM_STATION_MNGR_EN		0x4000
6769adfc5217SJeff Kirsher #define MDIO_CL73_USERB0_CL73_BAM_CTRL1_BAM_NP_AFTER_BP_EN		0x2000
6770adfc5217SJeff Kirsher #define MDIO_CL73_USERB0_CL73_BAM_CTRL3 			0x14
6771adfc5217SJeff Kirsher #define MDIO_CL73_USERB0_CL73_BAM_CTRL3_USE_CL73_HCD_MR 		0x0001
6772adfc5217SJeff Kirsher 
6773adfc5217SJeff Kirsher #define MDIO_REG_BANK_AER_BLOCK 		0xFFD0
6774adfc5217SJeff Kirsher #define MDIO_AER_BLOCK_AER_REG					0x1E
6775adfc5217SJeff Kirsher 
6776adfc5217SJeff Kirsher #define MDIO_REG_BANK_COMBO_IEEE0		0xFFE0
6777adfc5217SJeff Kirsher #define MDIO_COMBO_IEEE0_MII_CONTROL				0x10
6778adfc5217SJeff Kirsher #define MDIO_COMBO_IEEO_MII_CONTROL_MAN_SGMII_SP_MASK			0x2040
6779adfc5217SJeff Kirsher #define MDIO_COMBO_IEEO_MII_CONTROL_MAN_SGMII_SP_10			0x0000
6780adfc5217SJeff Kirsher #define MDIO_COMBO_IEEO_MII_CONTROL_MAN_SGMII_SP_100			0x2000
6781adfc5217SJeff Kirsher #define MDIO_COMBO_IEEO_MII_CONTROL_MAN_SGMII_SP_1000			0x0040
6782adfc5217SJeff Kirsher #define MDIO_COMBO_IEEO_MII_CONTROL_FULL_DUPLEX 			0x0100
6783adfc5217SJeff Kirsher #define MDIO_COMBO_IEEO_MII_CONTROL_RESTART_AN				0x0200
6784adfc5217SJeff Kirsher #define MDIO_COMBO_IEEO_MII_CONTROL_AN_EN				0x1000
6785adfc5217SJeff Kirsher #define MDIO_COMBO_IEEO_MII_CONTROL_LOOPBACK				0x4000
6786adfc5217SJeff Kirsher #define MDIO_COMBO_IEEO_MII_CONTROL_RESET				0x8000
6787adfc5217SJeff Kirsher #define MDIO_COMBO_IEEE0_MII_STATUS				0x11
6788adfc5217SJeff Kirsher #define MDIO_COMBO_IEEE0_MII_STATUS_LINK_PASS				0x0004
6789adfc5217SJeff Kirsher #define MDIO_COMBO_IEEE0_MII_STATUS_AUTONEG_COMPLETE			0x0020
6790adfc5217SJeff Kirsher #define MDIO_COMBO_IEEE0_AUTO_NEG_ADV				0x14
6791adfc5217SJeff Kirsher #define MDIO_COMBO_IEEE0_AUTO_NEG_ADV_FULL_DUPLEX			0x0020
6792adfc5217SJeff Kirsher #define MDIO_COMBO_IEEE0_AUTO_NEG_ADV_HALF_DUPLEX			0x0040
6793adfc5217SJeff Kirsher #define MDIO_COMBO_IEEE0_AUTO_NEG_ADV_PAUSE_MASK			0x0180
6794adfc5217SJeff Kirsher #define MDIO_COMBO_IEEE0_AUTO_NEG_ADV_PAUSE_NONE			0x0000
6795adfc5217SJeff Kirsher #define MDIO_COMBO_IEEE0_AUTO_NEG_ADV_PAUSE_SYMMETRIC			0x0080
6796adfc5217SJeff Kirsher #define MDIO_COMBO_IEEE0_AUTO_NEG_ADV_PAUSE_ASYMMETRIC			0x0100
6797adfc5217SJeff Kirsher #define MDIO_COMBO_IEEE0_AUTO_NEG_ADV_PAUSE_BOTH			0x0180
6798adfc5217SJeff Kirsher #define MDIO_COMBO_IEEE0_AUTO_NEG_ADV_NEXT_PAGE 			0x8000
6799adfc5217SJeff Kirsher #define MDIO_COMBO_IEEE0_AUTO_NEG_LINK_PARTNER_ABILITY1 	0x15
6800adfc5217SJeff Kirsher #define MDIO_COMBO_IEEE0_AUTO_NEG_LINK_PARTNER_ABILITY1_NEXT_PAGE	0x8000
6801adfc5217SJeff Kirsher #define MDIO_COMBO_IEEE0_AUTO_NEG_LINK_PARTNER_ABILITY1_ACK		0x4000
6802adfc5217SJeff Kirsher #define MDIO_COMBO_IEEE0_AUTO_NEG_LINK_PARTNER_ABILITY1_PAUSE_MASK	0x0180
6803adfc5217SJeff Kirsher #define MDIO_COMBO_IEEE0_AUTO_NEG_LINK_PARTNER_ABILITY1_PAUSE_NONE	0x0000
6804adfc5217SJeff Kirsher #define MDIO_COMBO_IEEE0_AUTO_NEG_LINK_PARTNER_ABILITY1_PAUSE_BOTH	0x0180
6805adfc5217SJeff Kirsher #define MDIO_COMBO_IEEE0_AUTO_NEG_LINK_PARTNER_ABILITY1_HALF_DUP_CAP	0x0040
6806adfc5217SJeff Kirsher #define MDIO_COMBO_IEEE0_AUTO_NEG_LINK_PARTNER_ABILITY1_FULL_DUP_CAP	0x0020
6807adfc5217SJeff Kirsher /*WhenthelinkpartnerisinSGMIImode(bit0=1),then
6808adfc5217SJeff Kirsher bit15=link,bit12=duplex,bits11:10=speed,bit14=acknowledge.
6809adfc5217SJeff Kirsher Theotherbitsarereservedandshouldbezero*/
6810adfc5217SJeff Kirsher #define MDIO_COMBO_IEEE0_AUTO_NEG_LINK_PARTNER_ABILITY1_SGMII_MODE	0x0001
6811adfc5217SJeff Kirsher 
6812adfc5217SJeff Kirsher 
6813adfc5217SJeff Kirsher #define MDIO_PMA_DEVAD			0x1
6814adfc5217SJeff Kirsher /*ieee*/
6815adfc5217SJeff Kirsher #define MDIO_PMA_REG_CTRL		0x0
6816adfc5217SJeff Kirsher #define MDIO_PMA_REG_STATUS		0x1
6817adfc5217SJeff Kirsher #define MDIO_PMA_REG_10G_CTRL2		0x7
6818adfc5217SJeff Kirsher #define MDIO_PMA_REG_TX_DISABLE		0x0009
6819adfc5217SJeff Kirsher #define MDIO_PMA_REG_RX_SD		0xa
6820adfc5217SJeff Kirsher /*bcm*/
6821adfc5217SJeff Kirsher #define MDIO_PMA_REG_BCM_CTRL		0x0096
6822adfc5217SJeff Kirsher #define MDIO_PMA_REG_FEC_CTRL		0x00ab
6823adfc5217SJeff Kirsher #define MDIO_PMA_REG_PHY_IDENTIFIER	0xc800
6824adfc5217SJeff Kirsher #define MDIO_PMA_REG_DIGITAL_CTRL	0xc808
6825adfc5217SJeff Kirsher #define MDIO_PMA_REG_DIGITAL_STATUS	0xc809
6826adfc5217SJeff Kirsher #define MDIO_PMA_REG_TX_POWER_DOWN	0xca02
6827adfc5217SJeff Kirsher #define MDIO_PMA_REG_CMU_PLL_BYPASS	0xca09
6828adfc5217SJeff Kirsher #define MDIO_PMA_REG_MISC_CTRL		0xca0a
6829adfc5217SJeff Kirsher #define MDIO_PMA_REG_GEN_CTRL		0xca10
6830adfc5217SJeff Kirsher #define MDIO_PMA_REG_GEN_CTRL_ROM_RESET_INTERNAL_MP	0x0188
6831adfc5217SJeff Kirsher #define MDIO_PMA_REG_GEN_CTRL_ROM_MICRO_RESET		0x018a
6832adfc5217SJeff Kirsher #define MDIO_PMA_REG_M8051_MSGIN_REG	0xca12
6833adfc5217SJeff Kirsher #define MDIO_PMA_REG_M8051_MSGOUT_REG	0xca13
6834adfc5217SJeff Kirsher #define MDIO_PMA_REG_ROM_VER1		0xca19
6835adfc5217SJeff Kirsher #define MDIO_PMA_REG_ROM_VER2		0xca1a
6836adfc5217SJeff Kirsher #define MDIO_PMA_REG_EDC_FFE_MAIN	0xca1b
6837adfc5217SJeff Kirsher #define MDIO_PMA_REG_PLL_BANDWIDTH	0xca1d
6838adfc5217SJeff Kirsher #define MDIO_PMA_REG_PLL_CTRL		0xca1e
6839adfc5217SJeff Kirsher #define MDIO_PMA_REG_MISC_CTRL0 	0xca23
6840adfc5217SJeff Kirsher #define MDIO_PMA_REG_LRM_MODE		0xca3f
6841adfc5217SJeff Kirsher #define MDIO_PMA_REG_CDR_BANDWIDTH	0xca46
6842adfc5217SJeff Kirsher #define MDIO_PMA_REG_MISC_CTRL1 	0xca85
6843adfc5217SJeff Kirsher 
6844adfc5217SJeff Kirsher #define MDIO_PMA_REG_SFP_TWO_WIRE_CTRL		0x8000
6845adfc5217SJeff Kirsher #define MDIO_PMA_REG_SFP_TWO_WIRE_CTRL_STATUS_MASK	0x000c
6846adfc5217SJeff Kirsher #define MDIO_PMA_REG_SFP_TWO_WIRE_STATUS_IDLE		0x0000
6847adfc5217SJeff Kirsher #define MDIO_PMA_REG_SFP_TWO_WIRE_STATUS_COMPLETE	0x0004
6848adfc5217SJeff Kirsher #define MDIO_PMA_REG_SFP_TWO_WIRE_STATUS_IN_PROGRESS	0x0008
6849adfc5217SJeff Kirsher #define MDIO_PMA_REG_SFP_TWO_WIRE_STATUS_FAILED 	0x000c
6850adfc5217SJeff Kirsher #define MDIO_PMA_REG_SFP_TWO_WIRE_BYTE_CNT	0x8002
6851adfc5217SJeff Kirsher #define MDIO_PMA_REG_SFP_TWO_WIRE_MEM_ADDR	0x8003
6852adfc5217SJeff Kirsher #define MDIO_PMA_REG_8726_TWO_WIRE_DATA_BUF	0xc820
6853adfc5217SJeff Kirsher #define MDIO_PMA_REG_8726_TWO_WIRE_DATA_MASK 0xff
6854adfc5217SJeff Kirsher #define MDIO_PMA_REG_8726_TX_CTRL1		0xca01
6855adfc5217SJeff Kirsher #define MDIO_PMA_REG_8726_TX_CTRL2		0xca05
6856adfc5217SJeff Kirsher 
6857adfc5217SJeff Kirsher #define MDIO_PMA_REG_8727_TWO_WIRE_SLAVE_ADDR	0x8005
6858adfc5217SJeff Kirsher #define MDIO_PMA_REG_8727_TWO_WIRE_DATA_BUF	0x8007
6859adfc5217SJeff Kirsher #define MDIO_PMA_REG_8727_TWO_WIRE_DATA_MASK 0xff
6860adfc5217SJeff Kirsher #define MDIO_PMA_REG_8727_TX_CTRL1		0xca02
6861adfc5217SJeff Kirsher #define MDIO_PMA_REG_8727_TX_CTRL2		0xca05
6862adfc5217SJeff Kirsher #define MDIO_PMA_REG_8727_PCS_OPT_CTRL		0xc808
6863adfc5217SJeff Kirsher #define MDIO_PMA_REG_8727_GPIO_CTRL		0xc80e
6864adfc5217SJeff Kirsher #define MDIO_PMA_REG_8727_PCS_GP		0xc842
6865adfc5217SJeff Kirsher #define MDIO_PMA_REG_8727_OPT_CFG_REG		0xc8e4
6866adfc5217SJeff Kirsher 
6867adfc5217SJeff Kirsher #define MDIO_AN_REG_8727_MISC_CTRL		0x8309
6868adfc5217SJeff Kirsher 
6869adfc5217SJeff Kirsher #define MDIO_PMA_REG_8073_CHIP_REV			0xc801
6870adfc5217SJeff Kirsher #define MDIO_PMA_REG_8073_SPEED_LINK_STATUS		0xc820
6871adfc5217SJeff Kirsher #define MDIO_PMA_REG_8073_XAUI_WA			0xc841
6872adfc5217SJeff Kirsher #define MDIO_PMA_REG_8073_OPT_DIGITAL_CTRL		0xcd08
6873adfc5217SJeff Kirsher 
6874adfc5217SJeff Kirsher #define MDIO_PMA_REG_7101_RESET 	0xc000
6875adfc5217SJeff Kirsher #define MDIO_PMA_REG_7107_LED_CNTL	0xc007
6876adfc5217SJeff Kirsher #define MDIO_PMA_REG_7107_LINK_LED_CNTL 0xc009
6877adfc5217SJeff Kirsher #define MDIO_PMA_REG_7101_VER1		0xc026
6878adfc5217SJeff Kirsher #define MDIO_PMA_REG_7101_VER2		0xc027
6879adfc5217SJeff Kirsher 
6880adfc5217SJeff Kirsher #define MDIO_PMA_REG_8481_PMD_SIGNAL			0xa811
6881adfc5217SJeff Kirsher #define MDIO_PMA_REG_8481_LED1_MASK			0xa82c
6882adfc5217SJeff Kirsher #define MDIO_PMA_REG_8481_LED2_MASK			0xa82f
6883adfc5217SJeff Kirsher #define MDIO_PMA_REG_8481_LED3_MASK			0xa832
6884adfc5217SJeff Kirsher #define MDIO_PMA_REG_8481_LED3_BLINK			0xa834
6885adfc5217SJeff Kirsher #define MDIO_PMA_REG_8481_LED5_MASK			0xa838
6886adfc5217SJeff Kirsher #define MDIO_PMA_REG_8481_SIGNAL_MASK			0xa835
6887adfc5217SJeff Kirsher #define MDIO_PMA_REG_8481_LINK_SIGNAL			0xa83b
6888adfc5217SJeff Kirsher #define MDIO_PMA_REG_8481_LINK_SIGNAL_LED4_ENABLE_MASK	0x800
6889adfc5217SJeff Kirsher #define MDIO_PMA_REG_8481_LINK_SIGNAL_LED4_ENABLE_SHIFT 11
6890adfc5217SJeff Kirsher 
6891adfc5217SJeff Kirsher 
6892adfc5217SJeff Kirsher #define MDIO_WIS_DEVAD			0x2
6893adfc5217SJeff Kirsher /*bcm*/
6894adfc5217SJeff Kirsher #define MDIO_WIS_REG_LASI_CNTL		0x9002
6895adfc5217SJeff Kirsher #define MDIO_WIS_REG_LASI_STATUS	0x9005
6896adfc5217SJeff Kirsher 
6897adfc5217SJeff Kirsher #define MDIO_PCS_DEVAD			0x3
6898adfc5217SJeff Kirsher #define MDIO_PCS_REG_STATUS		0x0020
6899adfc5217SJeff Kirsher #define MDIO_PCS_REG_LASI_STATUS	0x9005
6900adfc5217SJeff Kirsher #define MDIO_PCS_REG_7101_DSP_ACCESS	0xD000
6901adfc5217SJeff Kirsher #define MDIO_PCS_REG_7101_SPI_MUX	0xD008
6902adfc5217SJeff Kirsher #define MDIO_PCS_REG_7101_SPI_CTRL_ADDR 0xE12A
6903adfc5217SJeff Kirsher #define MDIO_PCS_REG_7101_SPI_RESET_BIT (5)
6904adfc5217SJeff Kirsher #define MDIO_PCS_REG_7101_SPI_FIFO_ADDR 0xE02A
6905adfc5217SJeff Kirsher #define MDIO_PCS_REG_7101_SPI_FIFO_ADDR_WRITE_ENABLE_CMD (6)
6906adfc5217SJeff Kirsher #define MDIO_PCS_REG_7101_SPI_FIFO_ADDR_BULK_ERASE_CMD	 (0xC7)
6907adfc5217SJeff Kirsher #define MDIO_PCS_REG_7101_SPI_FIFO_ADDR_PAGE_PROGRAM_CMD (2)
6908adfc5217SJeff Kirsher #define MDIO_PCS_REG_7101_SPI_BYTES_TO_TRANSFER_ADDR 0xE028
6909adfc5217SJeff Kirsher 
6910adfc5217SJeff Kirsher 
6911adfc5217SJeff Kirsher #define MDIO_XS_DEVAD			0x4
6912adfc5217SJeff Kirsher #define MDIO_XS_PLL_SEQUENCER		0x8000
6913adfc5217SJeff Kirsher #define MDIO_XS_SFX7101_XGXS_TEST1	0xc00a
6914adfc5217SJeff Kirsher 
6915adfc5217SJeff Kirsher #define MDIO_XS_8706_REG_BANK_RX0	0x80bc
6916adfc5217SJeff Kirsher #define MDIO_XS_8706_REG_BANK_RX1	0x80cc
6917adfc5217SJeff Kirsher #define MDIO_XS_8706_REG_BANK_RX2	0x80dc
6918adfc5217SJeff Kirsher #define MDIO_XS_8706_REG_BANK_RX3	0x80ec
6919adfc5217SJeff Kirsher #define MDIO_XS_8706_REG_BANK_RXA	0x80fc
6920adfc5217SJeff Kirsher 
6921adfc5217SJeff Kirsher #define MDIO_XS_REG_8073_RX_CTRL_PCIE	0x80FA
6922adfc5217SJeff Kirsher 
6923adfc5217SJeff Kirsher #define MDIO_AN_DEVAD			0x7
6924adfc5217SJeff Kirsher /*ieee*/
6925adfc5217SJeff Kirsher #define MDIO_AN_REG_CTRL		0x0000
6926adfc5217SJeff Kirsher #define MDIO_AN_REG_STATUS		0x0001
6927adfc5217SJeff Kirsher #define MDIO_AN_REG_STATUS_AN_COMPLETE		0x0020
6928adfc5217SJeff Kirsher #define MDIO_AN_REG_ADV_PAUSE		0x0010
6929adfc5217SJeff Kirsher #define MDIO_AN_REG_ADV_PAUSE_PAUSE		0x0400
6930adfc5217SJeff Kirsher #define MDIO_AN_REG_ADV_PAUSE_ASYMMETRIC	0x0800
6931adfc5217SJeff Kirsher #define MDIO_AN_REG_ADV_PAUSE_BOTH		0x0C00
6932adfc5217SJeff Kirsher #define MDIO_AN_REG_ADV_PAUSE_MASK		0x0C00
6933adfc5217SJeff Kirsher #define MDIO_AN_REG_ADV 		0x0011
6934adfc5217SJeff Kirsher #define MDIO_AN_REG_ADV2		0x0012
6935adfc5217SJeff Kirsher #define MDIO_AN_REG_LP_AUTO_NEG		0x0013
69369e7e8399SMintz Yuval #define MDIO_AN_REG_LP_AUTO_NEG2	0x0014
6937adfc5217SJeff Kirsher #define MDIO_AN_REG_MASTER_STATUS	0x0021
6938c8c60d88SYuval Mintz #define MDIO_AN_REG_EEE_ADV		0x003c
6939c8c60d88SYuval Mintz #define MDIO_AN_REG_LP_EEE_ADV		0x003d
6940adfc5217SJeff Kirsher /*bcm*/
6941adfc5217SJeff Kirsher #define MDIO_AN_REG_LINK_STATUS 	0x8304
6942adfc5217SJeff Kirsher #define MDIO_AN_REG_CL37_CL73		0x8370
6943adfc5217SJeff Kirsher #define MDIO_AN_REG_CL37_AN		0xffe0
6944adfc5217SJeff Kirsher #define MDIO_AN_REG_CL37_FC_LD		0xffe4
6945adfc5217SJeff Kirsher #define		MDIO_AN_REG_CL37_FC_LP		0xffe5
69469e7e8399SMintz Yuval #define		MDIO_AN_REG_1000T_STATUS	0xffea
6947adfc5217SJeff Kirsher 
6948adfc5217SJeff Kirsher #define MDIO_AN_REG_8073_2_5G		0x8329
6949adfc5217SJeff Kirsher #define MDIO_AN_REG_8073_BAM		0x8350
6950adfc5217SJeff Kirsher 
6951adfc5217SJeff Kirsher #define MDIO_AN_REG_8481_10GBASE_T_AN_CTRL	0x0020
6952adfc5217SJeff Kirsher #define MDIO_AN_REG_8481_LEGACY_MII_CTRL	0xffe0
695399bf7f34SYaniv Rosner #define MDIO_AN_REG_8481_MII_CTRL_FORCE_1G	0x40
6954adfc5217SJeff Kirsher #define MDIO_AN_REG_8481_LEGACY_MII_STATUS	0xffe1
6955adfc5217SJeff Kirsher #define MDIO_AN_REG_8481_LEGACY_AN_ADV		0xffe4
6956adfc5217SJeff Kirsher #define MDIO_AN_REG_8481_LEGACY_AN_EXPANSION	0xffe6
6957adfc5217SJeff Kirsher #define MDIO_AN_REG_8481_1000T_CTRL		0xffe9
695899bf7f34SYaniv Rosner #define MDIO_AN_REG_8481_1G_100T_EXT_CTRL	0xfff0
695999bf7f34SYaniv Rosner #define MIDO_AN_REG_8481_EXT_CTRL_FORCE_LEDS_OFF	0x0008
6960adfc5217SJeff Kirsher #define MDIO_AN_REG_8481_EXPANSION_REG_RD_RW	0xfff5
6961adfc5217SJeff Kirsher #define MDIO_AN_REG_8481_EXPANSION_REG_ACCESS	0xfff7
6962adfc5217SJeff Kirsher #define MDIO_AN_REG_8481_AUX_CTRL		0xfff8
6963adfc5217SJeff Kirsher #define MDIO_AN_REG_8481_LEGACY_SHADOW		0xfffc
6964adfc5217SJeff Kirsher 
6965adfc5217SJeff Kirsher /* BCM84823 only */
6966adfc5217SJeff Kirsher #define MDIO_CTL_DEVAD			0x1e
6967adfc5217SJeff Kirsher #define MDIO_CTL_REG_84823_MEDIA		0x401a
6968adfc5217SJeff Kirsher #define MDIO_CTL_REG_84823_MEDIA_MAC_MASK		0x0018
6969adfc5217SJeff Kirsher 	/* These pins configure the BCM84823 interface to MAC after reset. */
6970adfc5217SJeff Kirsher #define MDIO_CTL_REG_84823_CTRL_MAC_XFI			0x0008
6971adfc5217SJeff Kirsher #define MDIO_CTL_REG_84823_MEDIA_MAC_XAUI_M		0x0010
6972adfc5217SJeff Kirsher 	/* These pins configure the BCM84823 interface to Line after reset. */
6973adfc5217SJeff Kirsher #define MDIO_CTL_REG_84823_MEDIA_LINE_MASK		0x0060
6974adfc5217SJeff Kirsher #define MDIO_CTL_REG_84823_MEDIA_LINE_XAUI_L		0x0020
6975adfc5217SJeff Kirsher #define MDIO_CTL_REG_84823_MEDIA_LINE_XFI		0x0040
6976adfc5217SJeff Kirsher 	/* When this pin is active high during reset, 10GBASE-T core is power
6977adfc5217SJeff Kirsher 	 * down, When it is active low the 10GBASE-T is power up
6978adfc5217SJeff Kirsher 	 */
6979adfc5217SJeff Kirsher #define MDIO_CTL_REG_84823_MEDIA_COPPER_CORE_DOWN	0x0080
6980adfc5217SJeff Kirsher #define MDIO_CTL_REG_84823_MEDIA_PRIORITY_MASK		0x0100
6981adfc5217SJeff Kirsher #define MDIO_CTL_REG_84823_MEDIA_PRIORITY_COPPER	0x0000
6982adfc5217SJeff Kirsher #define MDIO_CTL_REG_84823_MEDIA_PRIORITY_FIBER		0x0100
6983adfc5217SJeff Kirsher #define MDIO_CTL_REG_84823_MEDIA_FIBER_1G			0x1000
6984adfc5217SJeff Kirsher #define MDIO_CTL_REG_84823_USER_CTRL_REG			0x4005
6985adfc5217SJeff Kirsher #define MDIO_CTL_REG_84823_USER_CTRL_CMS			0x0080
6986521683daSYaniv Rosner #define MDIO_PMA_REG_84823_CTL_SLOW_CLK_CNT_HIGH		0xa82b
6987521683daSYaniv Rosner #define MDIO_PMA_REG_84823_BLINK_RATE_VAL_15P9HZ	0x2f
6988adfc5217SJeff Kirsher #define MDIO_PMA_REG_84823_CTL_LED_CTL_1			0xa8e3
6989521683daSYaniv Rosner #define MDIO_PMA_REG_84833_CTL_LED_CTL_1			0xa8ec
6990adfc5217SJeff Kirsher #define MDIO_PMA_REG_84823_LED3_STRETCH_EN			0x0080
6991adfc5217SJeff Kirsher 
6992adfc5217SJeff Kirsher /* BCM84833 only */
6993c8c60d88SYuval Mintz #define MDIO_84833_TOP_CFG_FW_REV			0x400f
6994c8c60d88SYuval Mintz #define MDIO_84833_TOP_CFG_FW_EEE		0x10b1
6995*f6b6eb69SYuval Mintz #define MDIO_84833_TOP_CFG_FW_NO_EEE		0x1f81
6996adfc5217SJeff Kirsher #define MDIO_84833_TOP_CFG_XGPHY_STRAP1			0x401a
6997adfc5217SJeff Kirsher #define MDIO_84833_SUPER_ISOLATE		0x8000
6998adfc5217SJeff Kirsher /* These are mailbox register set used by 84833. */
6999adfc5217SJeff Kirsher #define MDIO_84833_TOP_CFG_SCRATCH_REG0			0x4005
7000adfc5217SJeff Kirsher #define MDIO_84833_TOP_CFG_SCRATCH_REG1			0x4006
7001adfc5217SJeff Kirsher #define MDIO_84833_TOP_CFG_SCRATCH_REG2			0x4007
7002adfc5217SJeff Kirsher #define MDIO_84833_TOP_CFG_SCRATCH_REG3			0x4008
7003adfc5217SJeff Kirsher #define MDIO_84833_TOP_CFG_SCRATCH_REG4			0x4009
7004521683daSYaniv Rosner #define MDIO_84833_TOP_CFG_SCRATCH_REG26		0x4037
7005521683daSYaniv Rosner #define MDIO_84833_TOP_CFG_SCRATCH_REG27		0x4038
7006521683daSYaniv Rosner #define MDIO_84833_TOP_CFG_SCRATCH_REG28		0x4039
7007521683daSYaniv Rosner #define MDIO_84833_TOP_CFG_SCRATCH_REG29		0x403a
7008521683daSYaniv Rosner #define MDIO_84833_TOP_CFG_SCRATCH_REG30		0x403b
7009521683daSYaniv Rosner #define MDIO_84833_TOP_CFG_SCRATCH_REG31		0x403c
7010521683daSYaniv Rosner #define MDIO_84833_CMD_HDLR_COMMAND	MDIO_84833_TOP_CFG_SCRATCH_REG0
7011521683daSYaniv Rosner #define MDIO_84833_CMD_HDLR_STATUS	MDIO_84833_TOP_CFG_SCRATCH_REG26
7012521683daSYaniv Rosner #define MDIO_84833_CMD_HDLR_DATA1	MDIO_84833_TOP_CFG_SCRATCH_REG27
7013521683daSYaniv Rosner #define MDIO_84833_CMD_HDLR_DATA2	MDIO_84833_TOP_CFG_SCRATCH_REG28
7014521683daSYaniv Rosner #define MDIO_84833_CMD_HDLR_DATA3	MDIO_84833_TOP_CFG_SCRATCH_REG29
7015521683daSYaniv Rosner #define MDIO_84833_CMD_HDLR_DATA4	MDIO_84833_TOP_CFG_SCRATCH_REG30
7016521683daSYaniv Rosner #define MDIO_84833_CMD_HDLR_DATA5	MDIO_84833_TOP_CFG_SCRATCH_REG31
7017adfc5217SJeff Kirsher 
7018adfc5217SJeff Kirsher /* Mailbox command set used by 84833. */
7019521683daSYaniv Rosner #define PHY84833_CMD_SET_PAIR_SWAP			0x8001
7020521683daSYaniv Rosner #define PHY84833_CMD_GET_EEE_MODE			0x8008
7021521683daSYaniv Rosner #define PHY84833_CMD_SET_EEE_MODE			0x8009
7022adfc5217SJeff Kirsher /* Mailbox status set used by 84833. */
7023521683daSYaniv Rosner #define PHY84833_STATUS_CMD_RECEIVED			0x0001
7024521683daSYaniv Rosner #define PHY84833_STATUS_CMD_IN_PROGRESS			0x0002
7025521683daSYaniv Rosner #define PHY84833_STATUS_CMD_COMPLETE_PASS		0x0004
7026521683daSYaniv Rosner #define PHY84833_STATUS_CMD_COMPLETE_ERROR		0x0008
7027521683daSYaniv Rosner #define PHY84833_STATUS_CMD_OPEN_FOR_CMDS		0x0010
7028521683daSYaniv Rosner #define PHY84833_STATUS_CMD_SYSTEM_BOOT			0x0020
7029521683daSYaniv Rosner #define PHY84833_STATUS_CMD_NOT_OPEN_FOR_CMDS		0x0040
7030521683daSYaniv Rosner #define PHY84833_STATUS_CMD_CLEAR_COMPLETE		0x0080
7031521683daSYaniv Rosner #define PHY84833_STATUS_CMD_OPEN_OVERRIDE		0xa5a5
7032adfc5217SJeff Kirsher 
7033adfc5217SJeff Kirsher 
7034adfc5217SJeff Kirsher /* Warpcore clause 45 addressing */
7035adfc5217SJeff Kirsher #define MDIO_WC_DEVAD					0x3
7036adfc5217SJeff Kirsher #define MDIO_WC_REG_IEEE0BLK_MIICNTL			0x0
7037adfc5217SJeff Kirsher #define MDIO_WC_REG_IEEE0BLK_AUTONEGNP			0x7
7038adfc5217SJeff Kirsher #define MDIO_WC_REG_AN_IEEE1BLK_AN_ADVERTISEMENT0	0x10
7039adfc5217SJeff Kirsher #define MDIO_WC_REG_AN_IEEE1BLK_AN_ADVERTISEMENT1	0x11
70408decf868SDavid S. Miller #define MDIO_WC_REG_AN_IEEE1BLK_AN_ADVERTISEMENT2	0x12
70418decf868SDavid S. Miller #define MDIO_WC_REG_AN_IEEE1BLK_AN_ADV2_FEC_ABILITY	0x4000
70428decf868SDavid S. Miller #define MDIO_WC_REG_AN_IEEE1BLK_AN_ADV2_FEC_REQ		0x8000
7043adfc5217SJeff Kirsher #define MDIO_WC_REG_PMD_IEEE9BLK_TENGBASE_KR_PMD_CONTROL_REGISTER_150  0x96
7044adfc5217SJeff Kirsher #define MDIO_WC_REG_XGXSBLK0_XGXSCONTROL		0x8000
7045adfc5217SJeff Kirsher #define MDIO_WC_REG_XGXSBLK0_MISCCONTROL1		0x800e
7046adfc5217SJeff Kirsher #define MDIO_WC_REG_XGXSBLK1_DESKEW			0x8010
7047adfc5217SJeff Kirsher #define MDIO_WC_REG_XGXSBLK1_LANECTRL0			0x8015
7048adfc5217SJeff Kirsher #define MDIO_WC_REG_XGXSBLK1_LANECTRL1			0x8016
7049adfc5217SJeff Kirsher #define MDIO_WC_REG_XGXSBLK1_LANECTRL2			0x8017
7050adfc5217SJeff Kirsher #define MDIO_WC_REG_TX0_ANA_CTRL0			0x8061
7051adfc5217SJeff Kirsher #define MDIO_WC_REG_TX1_ANA_CTRL0			0x8071
7052adfc5217SJeff Kirsher #define MDIO_WC_REG_TX2_ANA_CTRL0			0x8081
7053adfc5217SJeff Kirsher #define MDIO_WC_REG_TX3_ANA_CTRL0			0x8091
7054adfc5217SJeff Kirsher #define MDIO_WC_REG_TX0_TX_DRIVER			0x8067
7055adfc5217SJeff Kirsher #define MDIO_WC_REG_TX0_TX_DRIVER_IPRE_DRIVER_OFFSET		0x04
7056adfc5217SJeff Kirsher #define MDIO_WC_REG_TX0_TX_DRIVER_IPRE_DRIVER_MASK			0x00f0
7057adfc5217SJeff Kirsher #define MDIO_WC_REG_TX0_TX_DRIVER_IDRIVER_OFFSET		0x08
7058adfc5217SJeff Kirsher #define MDIO_WC_REG_TX0_TX_DRIVER_IDRIVER_MASK				0x0f00
7059adfc5217SJeff Kirsher #define MDIO_WC_REG_TX0_TX_DRIVER_POST2_COEFF_OFFSET		0x0c
7060adfc5217SJeff Kirsher #define MDIO_WC_REG_TX0_TX_DRIVER_POST2_COEFF_MASK			0x7000
7061adfc5217SJeff Kirsher #define MDIO_WC_REG_TX1_TX_DRIVER			0x8077
7062adfc5217SJeff Kirsher #define MDIO_WC_REG_TX2_TX_DRIVER			0x8087
7063adfc5217SJeff Kirsher #define MDIO_WC_REG_TX3_TX_DRIVER			0x8097
7064adfc5217SJeff Kirsher #define MDIO_WC_REG_RX0_ANARXCONTROL1G			0x80b9
7065adfc5217SJeff Kirsher #define MDIO_WC_REG_RX2_ANARXCONTROL1G			0x80d9
7066adfc5217SJeff Kirsher #define MDIO_WC_REG_RX0_PCI_CTRL			0x80ba
7067adfc5217SJeff Kirsher #define MDIO_WC_REG_RX1_PCI_CTRL			0x80ca
7068adfc5217SJeff Kirsher #define MDIO_WC_REG_RX2_PCI_CTRL			0x80da
7069adfc5217SJeff Kirsher #define MDIO_WC_REG_RX3_PCI_CTRL			0x80ea
7070adfc5217SJeff Kirsher #define MDIO_WC_REG_XGXSBLK2_UNICORE_MODE_10G		0x8104
7071adfc5217SJeff Kirsher #define MDIO_WC_REG_XGXS_STATUS3			0x8129
7072adfc5217SJeff Kirsher #define MDIO_WC_REG_PAR_DET_10G_STATUS			0x8130
7073adfc5217SJeff Kirsher #define MDIO_WC_REG_PAR_DET_10G_CTRL			0x8131
7074adfc5217SJeff Kirsher #define MDIO_WC_REG_XGXS_X2_CONTROL2			0x8141
7075adfc5217SJeff Kirsher #define MDIO_WC_REG_XGXS_RX_LN_SWAP1			0x816B
7076adfc5217SJeff Kirsher #define MDIO_WC_REG_XGXS_TX_LN_SWAP1			0x8169
7077adfc5217SJeff Kirsher #define MDIO_WC_REG_GP2_STATUS_GP_2_0			0x81d0
7078adfc5217SJeff Kirsher #define MDIO_WC_REG_GP2_STATUS_GP_2_1			0x81d1
7079adfc5217SJeff Kirsher #define MDIO_WC_REG_GP2_STATUS_GP_2_2			0x81d2
7080adfc5217SJeff Kirsher #define MDIO_WC_REG_GP2_STATUS_GP_2_3			0x81d3
7081adfc5217SJeff Kirsher #define MDIO_WC_REG_GP2_STATUS_GP_2_4			0x81d4
7082ca05f29cSYaniv Rosner #define MDIO_WC_REG_GP2_STATUS_GP_2_4_CL73_AN_CMPL 0x1000
7083ca05f29cSYaniv Rosner #define MDIO_WC_REG_GP2_STATUS_GP_2_4_CL37_AN_CMPL 0x0100
7084ca05f29cSYaniv Rosner #define MDIO_WC_REG_GP2_STATUS_GP_2_4_CL37_LP_AN_CAP 0x0010
7085ca05f29cSYaniv Rosner #define MDIO_WC_REG_GP2_STATUS_GP_2_4_CL37_AN_CAP 0x1
7086adfc5217SJeff Kirsher #define MDIO_WC_REG_UC_INFO_B0_DEAD_TRAP		0x81EE
7087adfc5217SJeff Kirsher #define MDIO_WC_REG_UC_INFO_B1_VERSION			0x81F0
7088adfc5217SJeff Kirsher #define MDIO_WC_REG_UC_INFO_B1_FIRMWARE_MODE		0x81F2
7089adfc5217SJeff Kirsher #define MDIO_WC_REG_UC_INFO_B1_FIRMWARE_LANE0_OFFSET	0x0
7090adfc5217SJeff Kirsher #define MDIO_WC_REG_UC_INFO_B1_FIRMWARE_MODE_DEFAULT	    0x0
7091adfc5217SJeff Kirsher #define MDIO_WC_REG_UC_INFO_B1_FIRMWARE_MODE_SFP_OPT_LR	    0x1
7092adfc5217SJeff Kirsher #define MDIO_WC_REG_UC_INFO_B1_FIRMWARE_MODE_SFP_DAC	    0x2
7093adfc5217SJeff Kirsher #define MDIO_WC_REG_UC_INFO_B1_FIRMWARE_MODE_SFP_XLAUI	    0x3
7094adfc5217SJeff Kirsher #define MDIO_WC_REG_UC_INFO_B1_FIRMWARE_MODE_LONG_CH_6G	    0x4
7095adfc5217SJeff Kirsher #define MDIO_WC_REG_UC_INFO_B1_FIRMWARE_LANE1_OFFSET	0x4
7096adfc5217SJeff Kirsher #define MDIO_WC_REG_UC_INFO_B1_FIRMWARE_LANE2_OFFSET	0x8
7097adfc5217SJeff Kirsher #define MDIO_WC_REG_UC_INFO_B1_FIRMWARE_LANE3_OFFSET	0xc
7098adfc5217SJeff Kirsher #define MDIO_WC_REG_UC_INFO_B1_CRC			0x81FE
7099adfc5217SJeff Kirsher #define MDIO_WC_REG_DSC_SMC				0x8213
7100adfc5217SJeff Kirsher #define MDIO_WC_REG_DSC2B0_DSC_MISC_CTRL0		0x821e
7101adfc5217SJeff Kirsher #define MDIO_WC_REG_TX_FIR_TAP				0x82e2
7102adfc5217SJeff Kirsher #define MDIO_WC_REG_TX_FIR_TAP_PRE_TAP_OFFSET		0x00
7103adfc5217SJeff Kirsher #define MDIO_WC_REG_TX_FIR_TAP_PRE_TAP_MASK			0x000f
7104adfc5217SJeff Kirsher #define MDIO_WC_REG_TX_FIR_TAP_MAIN_TAP_OFFSET		0x04
7105adfc5217SJeff Kirsher #define MDIO_WC_REG_TX_FIR_TAP_MAIN_TAP_MASK		0x03f0
7106adfc5217SJeff Kirsher #define MDIO_WC_REG_TX_FIR_TAP_POST_TAP_OFFSET		0x0a
7107adfc5217SJeff Kirsher #define MDIO_WC_REG_TX_FIR_TAP_POST_TAP_MASK		0x7c00
7108adfc5217SJeff Kirsher #define MDIO_WC_REG_TX_FIR_TAP_ENABLE		0x8000
7109adfc5217SJeff Kirsher #define MDIO_WC_REG_CL72_USERB0_CL72_MISC1_CONTROL	0x82e3
7110adfc5217SJeff Kirsher #define MDIO_WC_REG_CL72_USERB0_CL72_OS_DEF_CTRL	0x82e6
7111adfc5217SJeff Kirsher #define MDIO_WC_REG_CL72_USERB0_CL72_BR_DEF_CTRL	0x82e7
7112adfc5217SJeff Kirsher #define MDIO_WC_REG_CL72_USERB0_CL72_2P5_DEF_CTRL	0x82e8
7113adfc5217SJeff Kirsher #define MDIO_WC_REG_CL72_USERB0_CL72_MISC4_CONTROL	0x82ec
7114adfc5217SJeff Kirsher #define MDIO_WC_REG_SERDESDIGITAL_CONTROL1000X1		0x8300
7115adfc5217SJeff Kirsher #define MDIO_WC_REG_SERDESDIGITAL_CONTROL1000X2		0x8301
7116adfc5217SJeff Kirsher #define MDIO_WC_REG_SERDESDIGITAL_CONTROL1000X3		0x8302
7117adfc5217SJeff Kirsher #define MDIO_WC_REG_SERDESDIGITAL_STATUS1000X1		0x8304
7118adfc5217SJeff Kirsher #define MDIO_WC_REG_SERDESDIGITAL_MISC1			0x8308
7119adfc5217SJeff Kirsher #define MDIO_WC_REG_SERDESDIGITAL_MISC2			0x8309
7120adfc5217SJeff Kirsher #define MDIO_WC_REG_DIGITAL3_UP1			0x8329
71219e7e8399SMintz Yuval #define MDIO_WC_REG_DIGITAL3_LP_UP1			 0x832c
7122adfc5217SJeff Kirsher #define MDIO_WC_REG_DIGITAL4_MISC3			0x833c
7123c8c60d88SYuval Mintz #define MDIO_WC_REG_DIGITAL4_MISC5			0x833e
7124adfc5217SJeff Kirsher #define MDIO_WC_REG_DIGITAL5_MISC6			0x8345
7125adfc5217SJeff Kirsher #define MDIO_WC_REG_DIGITAL5_MISC7			0x8349
7126adfc5217SJeff Kirsher #define MDIO_WC_REG_DIGITAL5_ACTUAL_SPEED		0x834e
7127adfc5217SJeff Kirsher #define MDIO_WC_REG_DIGITAL6_MP5_NEXTPAGECTRL		0x8350
7128adfc5217SJeff Kirsher #define MDIO_WC_REG_CL49_USERB0_CTRL			0x8368
7129c8c60d88SYuval Mintz #define MDIO_WC_REG_EEE_COMBO_CONTROL0			0x8390
7130adfc5217SJeff Kirsher #define MDIO_WC_REG_TX66_CONTROL			0x83b0
7131adfc5217SJeff Kirsher #define MDIO_WC_REG_RX66_CONTROL			0x83c0
7132adfc5217SJeff Kirsher #define MDIO_WC_REG_RX66_SCW0				0x83c2
7133adfc5217SJeff Kirsher #define MDIO_WC_REG_RX66_SCW1				0x83c3
7134adfc5217SJeff Kirsher #define MDIO_WC_REG_RX66_SCW2				0x83c4
7135adfc5217SJeff Kirsher #define MDIO_WC_REG_RX66_SCW3				0x83c5
7136adfc5217SJeff Kirsher #define MDIO_WC_REG_RX66_SCW0_MASK			0x83c6
7137adfc5217SJeff Kirsher #define MDIO_WC_REG_RX66_SCW1_MASK			0x83c7
7138adfc5217SJeff Kirsher #define MDIO_WC_REG_RX66_SCW2_MASK			0x83c8
7139adfc5217SJeff Kirsher #define MDIO_WC_REG_RX66_SCW3_MASK			0x83c9
7140adfc5217SJeff Kirsher #define MDIO_WC_REG_FX100_CTRL1				0x8400
7141adfc5217SJeff Kirsher #define MDIO_WC_REG_FX100_CTRL3				0x8402
7142adfc5217SJeff Kirsher 
7143adfc5217SJeff Kirsher #define MDIO_WC_REG_MICROBLK_CMD			0xffc2
7144adfc5217SJeff Kirsher #define MDIO_WC_REG_MICROBLK_DL_STATUS			0xffc5
7145adfc5217SJeff Kirsher #define MDIO_WC_REG_MICROBLK_CMD3			0xffcc
7146adfc5217SJeff Kirsher 
7147adfc5217SJeff Kirsher #define MDIO_WC_REG_AERBLK_AER				0xffde
7148adfc5217SJeff Kirsher #define MDIO_WC_REG_COMBO_IEEE0_MIICTRL			0xffe0
7149adfc5217SJeff Kirsher #define MDIO_WC_REG_COMBO_IEEE0_MIIISTAT		0xffe1
7150adfc5217SJeff Kirsher 
7151adfc5217SJeff Kirsher #define MDIO_WC0_XGXS_BLK2_LANE_RESET			0x810A
7152adfc5217SJeff Kirsher #define MDIO_WC0_XGXS_BLK2_LANE_RESET_RX_BITSHIFT	0
7153adfc5217SJeff Kirsher #define MDIO_WC0_XGXS_BLK2_LANE_RESET_TX_BITSHIFT	4
7154adfc5217SJeff Kirsher 
7155adfc5217SJeff Kirsher #define MDIO_WC0_XGXS_BLK6_XGXS_X2_CONTROL2		0x8141
7156adfc5217SJeff Kirsher 
7157adfc5217SJeff Kirsher #define DIGITAL5_ACTUAL_SPEED_TX_MASK			0x003f
7158adfc5217SJeff Kirsher 
7159adfc5217SJeff Kirsher /* 54618se */
7160adfc5217SJeff Kirsher #define MDIO_REG_GPHY_PHYID_LSB				0x3
7161adfc5217SJeff Kirsher #define MDIO_REG_GPHY_ID_54618SE		0x5cd5
7162adfc5217SJeff Kirsher #define MDIO_REG_GPHY_CL45_ADDR_REG			0xd
7163adfc5217SJeff Kirsher #define MDIO_REG_GPHY_CL45_DATA_REG			0xe
7164adfc5217SJeff Kirsher #define MDIO_REG_GPHY_EEE_ADV			0x3c
7165adfc5217SJeff Kirsher #define MDIO_REG_GPHY_EEE_1G		(0x1 << 2)
7166adfc5217SJeff Kirsher #define MDIO_REG_GPHY_EEE_100		(0x1 << 1)
7167adfc5217SJeff Kirsher #define MDIO_REG_GPHY_EEE_RESOLVED		0x803e
7168a351d497SYuval Mintz #define MDIO_REG_GPHY_AUX_STATUS			0x19
7169adfc5217SJeff Kirsher #define MDIO_REG_INTR_STATUS				0x1a
7170adfc5217SJeff Kirsher #define MDIO_REG_INTR_MASK				0x1b
7171adfc5217SJeff Kirsher #define MDIO_REG_INTR_MASK_LINK_STATUS			(0x1 << 1)
7172adfc5217SJeff Kirsher #define MDIO_REG_GPHY_SHADOW				0x1c
71731d125bd5SYaniv Rosner #define MDIO_REG_GPHY_SHADOW_LED_SEL1			(0x0d << 10)
7174adfc5217SJeff Kirsher #define MDIO_REG_GPHY_SHADOW_LED_SEL2			(0x0e << 10)
7175adfc5217SJeff Kirsher #define MDIO_REG_GPHY_SHADOW_WR_ENA			(0x1 << 15)
7176adfc5217SJeff Kirsher #define MDIO_REG_GPHY_SHADOW_AUTO_DET_MED		(0x1e << 10)
7177adfc5217SJeff Kirsher #define MDIO_REG_GPHY_SHADOW_INVERT_FIB_SD		(0x1 << 8)
7178adfc5217SJeff Kirsher 
7179adfc5217SJeff Kirsher #define IGU_FUNC_BASE			0x0400
7180adfc5217SJeff Kirsher 
7181adfc5217SJeff Kirsher #define IGU_ADDR_MSIX			0x0000
7182adfc5217SJeff Kirsher #define IGU_ADDR_INT_ACK		0x0200
7183adfc5217SJeff Kirsher #define IGU_ADDR_PROD_UPD		0x0201
7184adfc5217SJeff Kirsher #define IGU_ADDR_ATTN_BITS_UPD	0x0202
7185adfc5217SJeff Kirsher #define IGU_ADDR_ATTN_BITS_SET	0x0203
7186adfc5217SJeff Kirsher #define IGU_ADDR_ATTN_BITS_CLR	0x0204
7187adfc5217SJeff Kirsher #define IGU_ADDR_COALESCE_NOW	0x0205
7188adfc5217SJeff Kirsher #define IGU_ADDR_SIMD_MASK		0x0206
7189adfc5217SJeff Kirsher #define IGU_ADDR_SIMD_NOMASK	0x0207
7190adfc5217SJeff Kirsher #define IGU_ADDR_MSI_CTL		0x0210
7191adfc5217SJeff Kirsher #define IGU_ADDR_MSI_ADDR_LO	0x0211
7192adfc5217SJeff Kirsher #define IGU_ADDR_MSI_ADDR_HI	0x0212
7193adfc5217SJeff Kirsher #define IGU_ADDR_MSI_DATA		0x0213
7194adfc5217SJeff Kirsher 
7195adfc5217SJeff Kirsher #define IGU_USE_REGISTER_ustorm_type_0_sb_cleanup  0
7196adfc5217SJeff Kirsher #define IGU_USE_REGISTER_ustorm_type_1_sb_cleanup  1
7197adfc5217SJeff Kirsher #define IGU_USE_REGISTER_cstorm_type_0_sb_cleanup  2
7198adfc5217SJeff Kirsher #define IGU_USE_REGISTER_cstorm_type_1_sb_cleanup  3
7199adfc5217SJeff Kirsher 
7200adfc5217SJeff Kirsher #define COMMAND_REG_INT_ACK	    0x0
7201adfc5217SJeff Kirsher #define COMMAND_REG_PROD_UPD	    0x4
7202adfc5217SJeff Kirsher #define COMMAND_REG_ATTN_BITS_UPD   0x8
7203adfc5217SJeff Kirsher #define COMMAND_REG_ATTN_BITS_SET   0xc
7204adfc5217SJeff Kirsher #define COMMAND_REG_ATTN_BITS_CLR   0x10
7205adfc5217SJeff Kirsher #define COMMAND_REG_COALESCE_NOW    0x14
7206adfc5217SJeff Kirsher #define COMMAND_REG_SIMD_MASK	    0x18
7207adfc5217SJeff Kirsher #define COMMAND_REG_SIMD_NOMASK     0x1c
7208adfc5217SJeff Kirsher 
7209adfc5217SJeff Kirsher 
7210adfc5217SJeff Kirsher #define IGU_MEM_BASE						0x0000
7211adfc5217SJeff Kirsher 
7212adfc5217SJeff Kirsher #define IGU_MEM_MSIX_BASE					0x0000
7213adfc5217SJeff Kirsher #define IGU_MEM_MSIX_UPPER					0x007f
7214adfc5217SJeff Kirsher #define IGU_MEM_MSIX_RESERVED_UPPER			0x01ff
7215adfc5217SJeff Kirsher 
7216adfc5217SJeff Kirsher #define IGU_MEM_PBA_MSIX_BASE				0x0200
7217adfc5217SJeff Kirsher #define IGU_MEM_PBA_MSIX_UPPER				0x0200
7218adfc5217SJeff Kirsher 
7219adfc5217SJeff Kirsher #define IGU_CMD_BACKWARD_COMP_PROD_UPD		0x0201
7220adfc5217SJeff Kirsher #define IGU_MEM_PBA_MSIX_RESERVED_UPPER 	0x03ff
7221adfc5217SJeff Kirsher 
7222adfc5217SJeff Kirsher #define IGU_CMD_INT_ACK_BASE				0x0400
7223adfc5217SJeff Kirsher #define IGU_CMD_INT_ACK_UPPER\
7224adfc5217SJeff Kirsher 	(IGU_CMD_INT_ACK_BASE + MAX_SB_PER_PORT * NUM_OF_PORTS_PER_PATH - 1)
7225adfc5217SJeff Kirsher #define IGU_CMD_INT_ACK_RESERVED_UPPER		0x04ff
7226adfc5217SJeff Kirsher 
7227adfc5217SJeff Kirsher #define IGU_CMD_E2_PROD_UPD_BASE			0x0500
7228adfc5217SJeff Kirsher #define IGU_CMD_E2_PROD_UPD_UPPER\
7229adfc5217SJeff Kirsher 	(IGU_CMD_E2_PROD_UPD_BASE + MAX_SB_PER_PORT * NUM_OF_PORTS_PER_PATH - 1)
7230adfc5217SJeff Kirsher #define IGU_CMD_E2_PROD_UPD_RESERVED_UPPER	0x059f
7231adfc5217SJeff Kirsher 
7232adfc5217SJeff Kirsher #define IGU_CMD_ATTN_BIT_UPD_UPPER			0x05a0
7233adfc5217SJeff Kirsher #define IGU_CMD_ATTN_BIT_SET_UPPER			0x05a1
7234adfc5217SJeff Kirsher #define IGU_CMD_ATTN_BIT_CLR_UPPER			0x05a2
7235adfc5217SJeff Kirsher 
7236adfc5217SJeff Kirsher #define IGU_REG_SISR_MDPC_WMASK_UPPER		0x05a3
7237adfc5217SJeff Kirsher #define IGU_REG_SISR_MDPC_WMASK_LSB_UPPER	0x05a4
7238adfc5217SJeff Kirsher #define IGU_REG_SISR_MDPC_WMASK_MSB_UPPER	0x05a5
7239adfc5217SJeff Kirsher #define IGU_REG_SISR_MDPC_WOMASK_UPPER		0x05a6
7240adfc5217SJeff Kirsher 
7241adfc5217SJeff Kirsher #define IGU_REG_RESERVED_UPPER				0x05ff
7242adfc5217SJeff Kirsher /* Fields of IGU PF CONFIGRATION REGISTER */
7243adfc5217SJeff Kirsher #define IGU_PF_CONF_FUNC_EN	  (0x1<<0)  /* function enable	      */
7244adfc5217SJeff Kirsher #define IGU_PF_CONF_MSI_MSIX_EN   (0x1<<1)  /* MSI/MSIX enable	      */
7245adfc5217SJeff Kirsher #define IGU_PF_CONF_INT_LINE_EN   (0x1<<2)  /* INT enable	      */
7246adfc5217SJeff Kirsher #define IGU_PF_CONF_ATTN_BIT_EN   (0x1<<3)  /* attention enable       */
7247adfc5217SJeff Kirsher #define IGU_PF_CONF_SINGLE_ISR_EN (0x1<<4)  /* single ISR mode enable */
7248adfc5217SJeff Kirsher #define IGU_PF_CONF_SIMD_MODE	  (0x1<<5)  /* simd all ones mode     */
7249adfc5217SJeff Kirsher 
7250adfc5217SJeff Kirsher /* Fields of IGU VF CONFIGRATION REGISTER */
7251adfc5217SJeff Kirsher #define IGU_VF_CONF_FUNC_EN	   (0x1<<0)  /* function enable        */
7252adfc5217SJeff Kirsher #define IGU_VF_CONF_MSI_MSIX_EN    (0x1<<1)  /* MSI/MSIX enable        */
7253adfc5217SJeff Kirsher #define IGU_VF_CONF_PARENT_MASK    (0x3<<2)  /* Parent PF	       */
7254adfc5217SJeff Kirsher #define IGU_VF_CONF_PARENT_SHIFT   2	     /* Parent PF	       */
7255adfc5217SJeff Kirsher #define IGU_VF_CONF_SINGLE_ISR_EN  (0x1<<4)  /* single ISR mode enable */
7256adfc5217SJeff Kirsher 
7257adfc5217SJeff Kirsher 
7258adfc5217SJeff Kirsher #define IGU_BC_DSB_NUM_SEGS    5
7259adfc5217SJeff Kirsher #define IGU_BC_NDSB_NUM_SEGS   2
7260adfc5217SJeff Kirsher #define IGU_NORM_DSB_NUM_SEGS  2
7261adfc5217SJeff Kirsher #define IGU_NORM_NDSB_NUM_SEGS 1
7262adfc5217SJeff Kirsher #define IGU_BC_BASE_DSB_PROD   128
7263adfc5217SJeff Kirsher #define IGU_NORM_BASE_DSB_PROD 136
7264adfc5217SJeff Kirsher 
7265adfc5217SJeff Kirsher 	/* FID (if VF - [6] = 0; [5:0] = VF number; if PF - [6] = 1; \
7266adfc5217SJeff Kirsher 	[5:2] = 0; [1:0] = PF number) */
7267adfc5217SJeff Kirsher #define IGU_FID_ENCODE_IS_PF	    (0x1<<6)
7268adfc5217SJeff Kirsher #define IGU_FID_ENCODE_IS_PF_SHIFT  6
7269adfc5217SJeff Kirsher #define IGU_FID_VF_NUM_MASK	    (0x3f)
7270adfc5217SJeff Kirsher #define IGU_FID_PF_NUM_MASK	    (0x7)
7271adfc5217SJeff Kirsher 
7272adfc5217SJeff Kirsher #define IGU_REG_MAPPING_MEMORY_VALID		(1<<0)
7273adfc5217SJeff Kirsher #define IGU_REG_MAPPING_MEMORY_VECTOR_MASK	(0x3F<<1)
7274adfc5217SJeff Kirsher #define IGU_REG_MAPPING_MEMORY_VECTOR_SHIFT	1
7275adfc5217SJeff Kirsher #define IGU_REG_MAPPING_MEMORY_FID_MASK	(0x7F<<7)
7276adfc5217SJeff Kirsher #define IGU_REG_MAPPING_MEMORY_FID_SHIFT	7
7277adfc5217SJeff Kirsher 
7278adfc5217SJeff Kirsher 
7279adfc5217SJeff Kirsher #define CDU_REGION_NUMBER_XCM_AG 2
7280adfc5217SJeff Kirsher #define CDU_REGION_NUMBER_UCM_AG 4
7281adfc5217SJeff Kirsher 
7282adfc5217SJeff Kirsher 
72831aa8b471SBen Hutchings /* String-to-compress [31:8] = CID (all 24 bits)
7284adfc5217SJeff Kirsher  * String-to-compress [7:4] = Region
7285adfc5217SJeff Kirsher  * String-to-compress [3:0] = Type
7286adfc5217SJeff Kirsher  */
7287adfc5217SJeff Kirsher #define CDU_VALID_DATA(_cid, _region, _type)\
7288adfc5217SJeff Kirsher 	(((_cid) << 8) | (((_region)&0xf)<<4) | (((_type)&0xf)))
7289adfc5217SJeff Kirsher #define CDU_CRC8(_cid, _region, _type)\
7290adfc5217SJeff Kirsher 	(calc_crc8(CDU_VALID_DATA(_cid, _region, _type), 0xff))
7291adfc5217SJeff Kirsher #define CDU_RSRVD_VALUE_TYPE_A(_cid, _region, _type)\
7292adfc5217SJeff Kirsher 	(0x80 | ((CDU_CRC8(_cid, _region, _type)) & 0x7f))
7293adfc5217SJeff Kirsher #define CDU_RSRVD_VALUE_TYPE_B(_crc, _type)\
7294adfc5217SJeff Kirsher 	(0x80 | ((_type)&0xf << 3) | ((CDU_CRC8(_cid, _region, _type)) & 0x7))
7295adfc5217SJeff Kirsher #define CDU_RSRVD_INVALIDATE_CONTEXT_VALUE(_val) ((_val) & ~0x80)
7296adfc5217SJeff Kirsher 
7297adfc5217SJeff Kirsher /******************************************************************************
7298adfc5217SJeff Kirsher  * Description:
7299adfc5217SJeff Kirsher  *	   Calculates crc 8 on a word value: polynomial 0-1-2-8
7300adfc5217SJeff Kirsher  *	   Code was translated from Verilog.
7301adfc5217SJeff Kirsher  * Return:
7302adfc5217SJeff Kirsher  *****************************************************************************/
7303adfc5217SJeff Kirsher static inline u8 calc_crc8(u32 data, u8 crc)
7304adfc5217SJeff Kirsher {
7305adfc5217SJeff Kirsher 	u8 D[32];
7306adfc5217SJeff Kirsher 	u8 NewCRC[8];
7307adfc5217SJeff Kirsher 	u8 C[8];
7308adfc5217SJeff Kirsher 	u8 crc_res;
7309adfc5217SJeff Kirsher 	u8 i;
7310adfc5217SJeff Kirsher 
7311adfc5217SJeff Kirsher 	/* split the data into 31 bits */
7312adfc5217SJeff Kirsher 	for (i = 0; i < 32; i++) {
7313adfc5217SJeff Kirsher 		D[i] = (u8)(data & 1);
7314adfc5217SJeff Kirsher 		data = data >> 1;
7315adfc5217SJeff Kirsher 	}
7316adfc5217SJeff Kirsher 
7317adfc5217SJeff Kirsher 	/* split the crc into 8 bits */
7318adfc5217SJeff Kirsher 	for (i = 0; i < 8; i++) {
7319adfc5217SJeff Kirsher 		C[i] = crc & 1;
7320adfc5217SJeff Kirsher 		crc = crc >> 1;
7321adfc5217SJeff Kirsher 	}
7322adfc5217SJeff Kirsher 
7323adfc5217SJeff Kirsher 	NewCRC[0] = D[31] ^ D[30] ^ D[28] ^ D[23] ^ D[21] ^ D[19] ^ D[18] ^
7324adfc5217SJeff Kirsher 		    D[16] ^ D[14] ^ D[12] ^ D[8] ^ D[7] ^ D[6] ^ D[0] ^ C[4] ^
7325adfc5217SJeff Kirsher 		    C[6] ^ C[7];
7326adfc5217SJeff Kirsher 	NewCRC[1] = D[30] ^ D[29] ^ D[28] ^ D[24] ^ D[23] ^ D[22] ^ D[21] ^
7327adfc5217SJeff Kirsher 		    D[20] ^ D[18] ^ D[17] ^ D[16] ^ D[15] ^ D[14] ^ D[13] ^
7328adfc5217SJeff Kirsher 		    D[12] ^ D[9] ^ D[6] ^ D[1] ^ D[0] ^ C[0] ^ C[4] ^ C[5] ^
7329adfc5217SJeff Kirsher 		    C[6];
7330adfc5217SJeff Kirsher 	NewCRC[2] = D[29] ^ D[28] ^ D[25] ^ D[24] ^ D[22] ^ D[17] ^ D[15] ^
7331adfc5217SJeff Kirsher 		    D[13] ^ D[12] ^ D[10] ^ D[8] ^ D[6] ^ D[2] ^ D[1] ^ D[0] ^
7332adfc5217SJeff Kirsher 		    C[0] ^ C[1] ^ C[4] ^ C[5];
7333adfc5217SJeff Kirsher 	NewCRC[3] = D[30] ^ D[29] ^ D[26] ^ D[25] ^ D[23] ^ D[18] ^ D[16] ^
7334adfc5217SJeff Kirsher 		    D[14] ^ D[13] ^ D[11] ^ D[9] ^ D[7] ^ D[3] ^ D[2] ^ D[1] ^
7335adfc5217SJeff Kirsher 		    C[1] ^ C[2] ^ C[5] ^ C[6];
7336adfc5217SJeff Kirsher 	NewCRC[4] = D[31] ^ D[30] ^ D[27] ^ D[26] ^ D[24] ^ D[19] ^ D[17] ^
7337adfc5217SJeff Kirsher 		    D[15] ^ D[14] ^ D[12] ^ D[10] ^ D[8] ^ D[4] ^ D[3] ^ D[2] ^
7338adfc5217SJeff Kirsher 		    C[0] ^ C[2] ^ C[3] ^ C[6] ^ C[7];
7339adfc5217SJeff Kirsher 	NewCRC[5] = D[31] ^ D[28] ^ D[27] ^ D[25] ^ D[20] ^ D[18] ^ D[16] ^
7340adfc5217SJeff Kirsher 		    D[15] ^ D[13] ^ D[11] ^ D[9] ^ D[5] ^ D[4] ^ D[3] ^ C[1] ^
7341adfc5217SJeff Kirsher 		    C[3] ^ C[4] ^ C[7];
7342adfc5217SJeff Kirsher 	NewCRC[6] = D[29] ^ D[28] ^ D[26] ^ D[21] ^ D[19] ^ D[17] ^ D[16] ^
7343adfc5217SJeff Kirsher 		    D[14] ^ D[12] ^ D[10] ^ D[6] ^ D[5] ^ D[4] ^ C[2] ^ C[4] ^
7344adfc5217SJeff Kirsher 		    C[5];
7345adfc5217SJeff Kirsher 	NewCRC[7] = D[30] ^ D[29] ^ D[27] ^ D[22] ^ D[20] ^ D[18] ^ D[17] ^
7346adfc5217SJeff Kirsher 		    D[15] ^ D[13] ^ D[11] ^ D[7] ^ D[6] ^ D[5] ^ C[3] ^ C[5] ^
7347adfc5217SJeff Kirsher 		    C[6];
7348adfc5217SJeff Kirsher 
7349adfc5217SJeff Kirsher 	crc_res = 0;
7350adfc5217SJeff Kirsher 	for (i = 0; i < 8; i++)
7351adfc5217SJeff Kirsher 		crc_res |= (NewCRC[i] << i);
7352adfc5217SJeff Kirsher 
7353adfc5217SJeff Kirsher 	return crc_res;
7354adfc5217SJeff Kirsher }
7355adfc5217SJeff Kirsher 
7356adfc5217SJeff Kirsher 
7357adfc5217SJeff Kirsher #endif /* BNX2X_REG_H */
7358