xref: /qemu/hw/intc/pnv_xive2_regs.h (revision de6cd759)
1 /*
2  * QEMU PowerPC XIVE2 interrupt controller model  (POWER10)
3  *
4  * Copyright (c) 2019-2022, IBM Corporation.
5  *
6  * This code is licensed under the GPL version 2 or later. See the
7  * COPYING file in the top-level directory.
8  */
9 
10 #ifndef PPC_PNV_XIVE2_REGS_H
11 #define PPC_PNV_XIVE2_REGS_H
12 
13 /*
14  * CQ Common Queue (PowerBus bridge) Registers
15  */
16 
17 /* XIVE2 Capabilities */
18 #define X_CQ_XIVE_CAP                           0x02
19 #define CQ_XIVE_CAP                             0x010
20 #define    CQ_XIVE_CAP_VERSION                  PPC_BITMASK(0, 3)
21 /* 4:6 reserved */
22 #define    CQ_XIVE_CAP_USER_INT_PRIO            PPC_BITMASK(8, 9)
23 #define       CQ_XIVE_CAP_USER_INT_PRIO_1       0
24 #define       CQ_XIVE_CAP_USER_INT_PRIO_1_2     1
25 #define       CQ_XIVE_CAP_USER_INT_PRIO_1_4     2
26 #define       CQ_XIVE_CAP_USER_INT_PRIO_1_8     3
27 #define    CQ_XIVE_CAP_VP_INT_PRIO              PPC_BITMASK(10, 11)
28 #define       CQ_XIVE_CAP_VP_INT_PRIO_1_8       0
29 #define       CQ_XIVE_CAP_VP_INT_PRIO_2_8       1
30 #define       CQ_XIVE_CAP_VP_INT_PRIO_4_8       2
31 #define       CQ_XIVE_CAP_VP_INT_PRIO_8         3
32 #define    CQ_XIVE_CAP_BLOCK_ID_WIDTH           PPC_BITMASK(12, 13)
33 #define    CQ_XIVE_CAP_VP_SAVE_RESTORE          PPC_BIT(38)
34 
35 #define    CQ_XIVE_CAP_PHB_PQ_DISABLE           PPC_BIT(56)
36 #define    CQ_XIVE_CAP_PHB_ABT                  PPC_BIT(57)
37 #define    CQ_XIVE_CAP_EXPLOITATION_MODE        PPC_BIT(58)
38 #define    CQ_XIVE_CAP_STORE_EOI                PPC_BIT(59)
39 
40 /* XIVE2 Configuration */
41 #define X_CQ_XIVE_CFG                           0x03
42 #define CQ_XIVE_CFG                             0x018
43 
44 /* 0:7 reserved */
45 #define    CQ_XIVE_CFG_USER_INT_PRIO            PPC_BITMASK(8, 9)
46 #define    CQ_XIVE_CFG_VP_INT_PRIO              PPC_BITMASK(10, 11)
47 #define       CQ_XIVE_CFG_INT_PRIO_1            0
48 #define       CQ_XIVE_CFG_INT_PRIO_2            1
49 #define       CQ_XIVE_CFG_INT_PRIO_4            2
50 #define       CQ_XIVE_CFG_INT_PRIO_8            3
51 #define    CQ_XIVE_CFG_BLOCK_ID_WIDTH           PPC_BITMASK(12, 13)
52 #define       CQ_XIVE_CFG_BLOCK_ID_4BITS        0
53 #define       CQ_XIVE_CFG_BLOCK_ID_5BITS        1
54 #define       CQ_XIVE_CFG_BLOCK_ID_6BITS        2
55 #define       CQ_XIVE_CFG_BLOCK_ID_7BITS        3
56 #define    CQ_XIVE_CFG_HYP_HARD_RANGE           PPC_BITMASK(14, 15)
57 #define       CQ_XIVE_CFG_THREADID_7BITS        0
58 #define       CQ_XIVE_CFG_THREADID_8BITS        1
59 #define       CQ_XIVE_CFG_THREADID_9BITS        2
60 #define       CQ_XIVE_CFG_THREADID_10BITs       3
61 #define    CQ_XIVE_CFG_HYP_HARD_BLKID_OVERRIDE  PPC_BIT(16)
62 #define    CQ_XIVE_CFG_HYP_HARD_BLOCK_ID        PPC_BITMASK(17, 23)
63 
64 #define    CQ_XIVE_CFG_GEN1_TIMA_OS             PPC_BIT(24)
65 #define    CQ_XIVE_CFG_GEN1_TIMA_HYP            PPC_BIT(25)
66 #define    CQ_XIVE_CFG_GEN1_TIMA_HYP_BLK0       PPC_BIT(26) /* 0 if bit[25]=0 */
67 #define    CQ_XIVE_CFG_GEN1_TIMA_CROWD_DIS      PPC_BIT(27) /* 0 if bit[25]=0 */
68 #define    CQ_XIVE_CFG_GEN1_END_ESX             PPC_BIT(28)
69 #define    CQ_XIVE_CFG_EN_VP_SAVE_RESTORE       PPC_BIT(38) /* 0 if bit[25]=1 */
70 #define    CQ_XIVE_CFG_EN_VP_SAVE_REST_STRICT   PPC_BIT(39) /* 0 if bit[25]=1 */
71 
72 /* Interrupt Controller Base Address Register - 512 pages (32M) */
73 #define X_CQ_IC_BAR                             0x08
74 #define CQ_IC_BAR                               0x040
75 #define    CQ_IC_BAR_VALID                      PPC_BIT(0)
76 #define    CQ_IC_BAR_64K                        PPC_BIT(1)
77 /* 2:7 reserved */
78 #define    CQ_IC_BAR_ADDR                       PPC_BITMASK(8, 42)
79 /* 43:63 reserved */
80 
81 /* Thread Management Base Address Register - 4 pages */
82 #define X_CQ_TM_BAR                             0x09
83 #define CQ_TM_BAR                               0x048
84 #define    CQ_TM_BAR_VALID                      PPC_BIT(0)
85 #define    CQ_TM_BAR_64K                        PPC_BIT(1)
86 #define    CQ_TM_BAR_ADDR                       PPC_BITMASK(8, 49)
87 
88 /* ESB Base Address Register */
89 #define X_CQ_ESB_BAR                            0x0A
90 #define CQ_ESB_BAR                              0x050
91 #define    CQ_BAR_VALID                         PPC_BIT(0)
92 #define    CQ_BAR_64K                           PPC_BIT(1)
93 /* 2:7 reserved */
94 #define    CQ_BAR_ADDR                          PPC_BITMASK(8, 39)
95 #define    CQ_BAR_SET_DIV                       PPC_BITMASK(56, 58)
96 #define    CQ_BAR_RANGE                         PPC_BITMASK(59, 63)
97                                                 /* 0 (16M) - 16 (16T) */
98 
99 /* END Base Address Register */
100 #define X_CQ_END_BAR                            0x0B
101 #define CQ_END_BAR                              0x058
102 
103 /* NVPG Base Address Register */
104 #define X_CQ_NVPG_BAR                           0x0C
105 #define CQ_NVPG_BAR                             0x060
106 
107 /* NVC Base Address Register */
108 #define X_CQ_NVC_BAR                            0x0D
109 #define CQ_NVC_BAR                              0x068
110 
111 /* Table Address Register */
112 #define X_CQ_TAR                                0x0E
113 #define CQ_TAR                                  0x070
114 #define     CQ_TAR_AUTOINC                      PPC_BIT(0)
115 #define     CQ_TAR_SELECT                       PPC_BITMASK(12, 15)
116 #define     CQ_TAR_ESB                          0       /* 0 - 15 */
117 #define     CQ_TAR_END                          2       /* 0 - 15 */
118 #define     CQ_TAR_NVPG                         3       /* 0 - 15 */
119 #define     CQ_TAR_NVC                          5       /* 0 - 15 */
120 #define     CQ_TAR_ENTRY_SELECT                 PPC_BITMASK(28, 31)
121 
122 /* Table Data Register */
123 #define X_CQ_TDR                                0x0F
124 #define CQ_TDR                                  0x078
125 /* for the NVPG, NVC, ESB, END Set Translation Tables */
126 #define     CQ_TDR_VALID                        PPC_BIT(0)
127 #define     CQ_TDR_BLOCK_ID                     PPC_BITMASK(60, 63)
128 
129 /*
130  * Processor Cores Enabled for MsgSnd
131  * Identifies which of the 32 possible core chiplets are enabled and
132  * available to receive the MsgSnd command
133  */
134 #define X_CQ_MSGSND                             0x10
135 #define CQ_MSGSND                               0x080
136 
137 /* Interrupt Unit Reset Control */
138 #define X_CQ_RST_CTL                            0x12
139 #define CQ_RST_CTL                              0x090
140 #define     CQ_RST_SYNC_RESET                   PPC_BIT(0)      /* Write Only */
141 #define     CQ_RST_QUIESCE_PB                   PPC_BIT(1)      /* RW */
142 #define     CQ_RST_MASTER_IDLE                  PPC_BIT(2)      /* Read Only */
143 #define     CQ_RST_SAVE_IDLE                    PPC_BIT(3)      /* Read Only */
144 #define     CQ_RST_PB_BAR_RESET                 PPC_BIT(4)      /* Write Only */
145 
146 /* PowerBus General Configuration */
147 #define X_CQ_CFG_PB_GEN                         0x14
148 #define CQ_CFG_PB_GEN                           0x0A0
149 #define    CQ_CFG_PB_GEN_PB_INIT                PPC_BIT(45)
150 
151 /*
152  * FIR
153  *     (And-Mask)
154  *     (Or-Mask)
155  */
156 #define X_CQ_FIR                                0x30
157 #define X_CQ_FIR_AND                            0x31
158 #define X_CQ_FIR_OR                             0x32
159 #define CQ_FIR                                  0x180
160 #define CQ_FIR_AND                              0x188
161 #define CQ_FIR_OR                               0x190
162 #define  CQ_FIR_PB_RCMDX_CI_ERR1                PPC_BIT(19)
163 #define  CQ_FIR_VC_INFO_ERROR_0_2               PPC_BITMASK(61, 63)
164 
165 /*
166  * FIR Mask
167  *     (And-Mask)
168  *     (Or-Mask)
169  */
170 #define X_CQ_FIRMASK                            0x33
171 #define X_CQ_FIRMASK_AND                        0x34
172 #define X_CQ_FIRMASK_OR                         0x35
173 #define CQ_FIRMASK                              0x198
174 #define CQ_FIRMASK_AND                          0x1A0
175 #define CQ_FIRMASK_OR                           0x1A8
176 
177 /*
178  * VC0
179  */
180 
181 /* VSD table address */
182 #define X_VC_VSD_TABLE_ADDR                     0x100
183 #define VC_VSD_TABLE_ADDR                       0x000
184 #define   VC_VSD_TABLE_AUTOINC                  PPC_BIT(0)
185 #define   VC_VSD_TABLE_SELECT                   PPC_BITMASK(12, 15)
186 #define   VC_VSD_TABLE_ADDRESS                  PPC_BITMASK(28, 31)
187 
188 /* VSD table data */
189 #define X_VC_VSD_TABLE_DATA                     0x101
190 #define VC_VSD_TABLE_DATA                       0x008
191 
192 /* AIB AT macro indirect kill */
193 #define X_VC_AT_MACRO_KILL                      0x102
194 #define VC_AT_MACRO_KILL                        0x010
195 #define  VC_AT_MACRO_KILL_VALID                 PPC_BIT(0)
196 #define  VC_AT_MACRO_KILL_VSD                   PPC_BITMASK(12, 15)
197 #define  VC_AT_MACRO_KILL_BLOCK_ID              PPC_BITMASK(28, 31)
198 #define  VC_AT_MACRO_KILL_OFFSET                PPC_BITMASK(48, 60)
199 
200 /* AIB AT macro indirect kill mask (same bit definitions) */
201 #define X_VC_AT_MACRO_KILL_MASK                 0x103
202 #define VC_AT_MACRO_KILL_MASK                   0x018
203 
204 /* Remote IRQs and ERQs configuration [n] (n = 0:6) */
205 #define X_VC_QUEUES_CFG_REM0                    0x117
206 
207 #define VC_QUEUES_CFG_REM0                      0x0B8
208 #define VC_QUEUES_CFG_REM1                      0x0C0
209 #define VC_QUEUES_CFG_REM2                      0x0C8
210 #define VC_QUEUES_CFG_REM3                      0x0D0
211 #define VC_QUEUES_CFG_REM4                      0x0D8
212 #define VC_QUEUES_CFG_REM5                      0x0E0
213 #define VC_QUEUES_CFG_REM6                      0x0E8
214 #define  VC_QUEUES_CFG_MEMB_EN                  PPC_BIT(38)
215 #define  VC_QUEUES_CFG_MEMB_SZ                  PPC_BITMASK(42, 47)
216 
217 /*
218  * VC1
219  */
220 
221 /* ESBC cache flush control trigger */
222 #define X_VC_ESBC_FLUSH_CTRL                    0x140
223 #define VC_ESBC_FLUSH_CTRL                      0x200
224 #define  VC_ESBC_FLUSH_CTRL_POLL_VALID          PPC_BIT(0)
225 #define  VC_ESBC_FLUSH_CTRL_WANT_CACHE_DISABLE  PPC_BIT(2)
226 
227 /* ESBC cache flush poll trigger */
228 #define X_VC_ESBC_FLUSH_POLL                    0x141
229 #define VC_ESBC_FLUSH_POLL                      0x208
230 #define  VC_ESBC_FLUSH_POLL_BLOCK_ID            PPC_BITMASK(0, 3)
231 #define  VC_ESBC_FLUSH_POLL_OFFSET              PPC_BITMASK(4, 31)  /* 28-bit */
232 #define  VC_ESBC_FLUSH_POLL_BLOCK_ID_MASK       PPC_BITMASK(32, 35)
233 #define  VC_ESBC_FLUSH_POLL_OFFSET_MASK         PPC_BITMASK(36, 63) /* 28-bit */
234 
235 /* ESBC configuration */
236 #define X_VC_ESBC_CFG                           0x148
237 #define VC_ESBC_CFG                             0x240
238 
239 /* EASC flush control register */
240 #define X_VC_EASC_FLUSH_CTRL                    0x160
241 #define VC_EASC_FLUSH_CTRL                      0x300
242 #define  VC_EASC_FLUSH_CTRL_POLL_VALID          PPC_BIT(0)
243 #define  VC_EASC_FLUSH_CTRL_WANT_CACHE_DISABLE  PPC_BIT(2)
244 
245 /* EASC flush poll register */
246 #define X_VC_EASC_FLUSH_POLL                    0x161
247 #define VC_EASC_FLUSH_POLL                      0x308
248 #define  VC_EASC_FLUSH_POLL_BLOCK_ID            PPC_BITMASK(0, 3)
249 #define  VC_EASC_FLUSH_POLL_OFFSET              PPC_BITMASK(4, 31)  /* 28-bit */
250 #define  VC_EASC_FLUSH_POLL_BLOCK_ID_MASK       PPC_BITMASK(32, 35)
251 #define  VC_EASC_FLUSH_POLL_OFFSET_MASK         PPC_BITMASK(36, 63) /* 28-bit */
252 
253 /*
254  * VC2
255  */
256 
257 /* ENDC flush control register */
258 #define X_VC_ENDC_FLUSH_CTRL                    0x180
259 #define VC_ENDC_FLUSH_CTRL                      0x400
260 #define  VC_ENDC_FLUSH_CTRL_POLL_VALID          PPC_BIT(0)
261 #define  VC_ENDC_FLUSH_CTRL_WANT_CACHE_DISABLE  PPC_BIT(2)
262 #define  VC_ENDC_FLUSH_CTRL_WANT_INVALIDATE     PPC_BIT(3)
263 #define  VC_ENDC_FLUSH_CTRL_INJECT_INVALIDATE   PPC_BIT(7)
264 
265 /* ENDC flush poll register */
266 #define X_VC_ENDC_FLUSH_POLL                    0x181
267 #define VC_ENDC_FLUSH_POLL                      0x408
268 #define  VC_ENDC_FLUSH_POLL_BLOCK_ID            PPC_BITMASK(4, 7)
269 #define  VC_ENDC_FLUSH_POLL_OFFSET              PPC_BITMASK(8, 31)  /* 24-bit */
270 #define  VC_ENDC_FLUSH_POLL_BLOCK_ID_MASK       PPC_BITMASK(36, 39)
271 #define  VC_ENDC_FLUSH_POLL_OFFSET_MASK         PPC_BITMASK(40, 63) /* 24-bit */
272 
273 /* ENDC Sync done */
274 #define X_VC_ENDC_SYNC_DONE                     0x184
275 #define VC_ENDC_SYNC_DONE                       0x420
276 #define   VC_ENDC_SYNC_POLL_DONE                PPC_BITMASK(0, 6)
277 #define   VC_ENDC_SYNC_QUEUE_IPI                PPC_BIT(0)
278 #define   VC_ENDC_SYNC_QUEUE_HWD                PPC_BIT(1)
279 #define   VC_ENDC_SYNC_QUEUE_NXC                PPC_BIT(2)
280 #define   VC_ENDC_SYNC_QUEUE_INT                PPC_BIT(3)
281 #define   VC_ENDC_SYNC_QUEUE_OS                 PPC_BIT(4)
282 #define   VC_ENDC_SYNC_QUEUE_POOL               PPC_BIT(5)
283 #define   VC_ENDC_SYNC_QUEUE_HARD               PPC_BIT(6)
284 #define   VC_QUEUE_COUNT                        7
285 
286 /* ENDC cache watch specification 0  */
287 #define X_VC_ENDC_WATCH0_SPEC                   0x1A0
288 #define VC_ENDC_WATCH0_SPEC                     0x500
289 #define   VC_ENDC_WATCH_CONFLICT                PPC_BIT(0)
290 #define   VC_ENDC_WATCH_FULL                    PPC_BIT(8)
291 #define   VC_ENDC_WATCH_BLOCK_ID                PPC_BITMASK(28, 31)
292 #define   VC_ENDC_WATCH_INDEX                   PPC_BITMASK(40, 63)
293 
294 /* ENDC cache watch data 0 */
295 #define X_VC_ENDC_WATCH0_DATA0                  0x1A4
296 #define X_VC_ENDC_WATCH0_DATA1                  0x1A5
297 #define X_VC_ENDC_WATCH0_DATA2                  0x1A6
298 #define X_VC_ENDC_WATCH0_DATA3                  0x1A7
299 
300 #define VC_ENDC_WATCH0_DATA0                    0x520
301 #define VC_ENDC_WATCH0_DATA1                    0x528
302 #define VC_ENDC_WATCH0_DATA2                    0x530
303 #define VC_ENDC_WATCH0_DATA3                    0x538
304 
305 /*
306  * PC LSB1
307  */
308 
309 /* VSD table address register */
310 #define X_PC_VSD_TABLE_ADDR                     0x200
311 #define PC_VSD_TABLE_ADDR                       0x000
312 #define   PC_VSD_TABLE_AUTOINC                  PPC_BIT(0)
313 #define   PC_VSD_TABLE_SELECT                   PPC_BITMASK(12, 15)
314 #define   PC_VSD_TABLE_ADDRESS                  PPC_BITMASK(28, 31)
315 
316 /* VSD table data register */
317 #define X_PC_VSD_TABLE_DATA                     0x201
318 #define PC_VSD_TABLE_DATA                       0x008
319 
320 /* AT indirect kill register */
321 #define X_PC_AT_KILL                            0x202
322 #define PC_AT_KILL                              0x010
323 #define     PC_AT_KILL_VALID                    PPC_BIT(0)
324 #define     PC_AT_KILL_VSD_TYPE                 PPC_BITMASK(24, 27)
325 /* Only NVP, NVG, NVC */
326 #define     PC_AT_KILL_BLOCK_ID                 PPC_BITMASK(28, 31)
327 #define     PC_AT_KILL_OFFSET                   PPC_BITMASK(48, 60)
328 
329 /* AT indirect kill mask register */
330 #define X_PC_AT_KILL_MASK                       0x203
331 #define PC_AT_KILL_MASK                         0x018
332 #define     PC_AT_KILL_MASK_VSD_TYPE            PPC_BITMASK(24, 27)
333 #define     PC_AT_KILL_MASK_BLOCK_ID            PPC_BITMASK(28, 31)
334 #define     PC_AT_KILL_MASK_OFFSET              PPC_BITMASK(48, 60)
335 
336 /*
337  * PC LSB2
338  */
339 
340 /* NxC Cache flush control */
341 #define X_PC_NXC_FLUSH_CTRL                     0x280
342 #define PC_NXC_FLUSH_CTRL                       0x400
343 #define  PC_NXC_FLUSH_CTRL_POLL_VALID           PPC_BIT(0)
344 #define  PC_NXC_FLUSH_CTRL_WANT_CACHE_DISABLE   PPC_BIT(2)
345 #define  PC_NXC_FLUSH_CTRL_WANT_INVALIDATE      PPC_BIT(3)
346 #define  PC_NXC_FLUSH_CTRL_INJECT_INVALIDATE    PPC_BIT(7)
347 
348 /* NxC Cache flush poll */
349 #define X_PC_NXC_FLUSH_POLL                     0x281
350 #define PC_NXC_FLUSH_POLL                       0x408
351 #define  PC_NXC_FLUSH_POLL_NXC_TYPE             PPC_BITMASK(2, 3)
352 #define    PC_NXC_FLUSH_POLL_NXC_TYPE_NVP       0
353 #define    PC_NXC_FLUSH_POLL_NXC_TYPE_NVG       2
354 #define    PC_NXC_FLUSH_POLL_NXC_TYPE_NVC       3
355 #define  PC_NXC_FLUSH_POLL_BLOCK_ID             PPC_BITMASK(4, 7)
356 #define  PC_NXC_FLUSH_POLL_OFFSET               PPC_BITMASK(8, 31)  /* 24-bit */
357 #define  PC_NXC_FLUSH_POLL_NXC_TYPE_MASK        PPC_BITMASK(34, 35) /* 0: Ign */
358 #define  PC_NXC_FLUSH_POLL_BLOCK_ID_MASK        PPC_BITMASK(36, 39)
359 #define  PC_NXC_FLUSH_POLL_OFFSET_MASK          PPC_BITMASK(40, 63) /* 24-bit */
360 
361 /* NxC Cache Watch 0 Specification */
362 #define X_PC_NXC_WATCH0_SPEC                    0x2A0
363 #define PC_NXC_WATCH0_SPEC                      0x500
364 #define   PC_NXC_WATCH_CONFLICT                 PPC_BIT(0)
365 #define   PC_NXC_WATCH_FULL                     PPC_BIT(8)
366 #define   PC_NXC_WATCH_NXC_TYPE                 PPC_BITMASK(26, 27)
367 #define     PC_NXC_WATCH_NXC_NVP                0
368 #define     PC_NXC_WATCH_NXC_NVG                2
369 #define     PC_NXC_WATCH_NXC_NVC                3
370 #define   PC_NXC_WATCH_BLOCK_ID                 PPC_BITMASK(28, 31)
371 #define   PC_NXC_WATCH_INDEX                    PPC_BITMASK(40, 63)
372 
373 /* NxC Cache Watch 0 Data */
374 #define X_PC_NXC_WATCH0_DATA0                   0x2A4
375 #define X_PC_NXC_WATCH0_DATA1                   0x2A5
376 #define X_PC_NXC_WATCH0_DATA2                   0x2A6
377 #define X_PC_NXC_WATCH0_DATA3                   0x2A7
378 
379 #define PC_NXC_WATCH0_DATA0                     0x520
380 #define PC_NXC_WATCH0_DATA1                     0x528
381 #define PC_NXC_WATCH0_DATA2                     0x530
382 #define PC_NXC_WATCH0_DATA3                     0x538
383 
384 /*
385  * TCTXT Registers
386  */
387 
388 /* Physical Thread Enable0 register */
389 #define X_TCTXT_EN0                             0x300
390 #define TCTXT_EN0                               0x000
391 
392 /* Physical Thread Enable0 Set register */
393 #define X_TCTXT_EN0_SET                         0x302
394 #define TCTXT_EN0_SET                           0x010
395 
396 /* Physical Thread Enable0 Reset register */
397 #define X_TCTXT_EN0_RESET                       0x303
398 #define TCTXT_EN0_RESET                         0x018
399 
400 /* Physical Thread Enable1 register */
401 #define X_TCTXT_EN1                             0x304
402 #define TCTXT_EN1                               0x020
403 
404 /* Physical Thread Enable1 Set register */
405 #define X_TCTXT_EN1_SET                         0x306
406 #define TCTXT_EN1_SET                           0x030
407 
408 /* Physical Thread Enable1 Reset register */
409 #define X_TCTXT_EN1_RESET                       0x307
410 #define TCTXT_EN1_RESET                         0x038
411 
412 /* TCTXT Config register */
413 #define X_TCTXT_CFG                             0x328
414 #define TCTXT_CFG                               0x140
415 
416 /*
417  * VSD Tables
418  */
419 #define VST_ESB                  0
420 #define VST_EAS                  1 /* No used by PC */
421 #define VST_END                  2
422 #define VST_NVP                  3
423 #define VST_NVG                  4
424 #define VST_NVC                  5
425 #define VST_IC                   6 /* No used by PC */
426 #define VST_SYNC                 7
427 #define VST_ERQ                  8 /* No used by PC */
428 
429 /*
430  * Bits in a VSD entry.
431  *
432  * Note: the address is naturally aligned, we don't use a PPC_BITMASK,
433  *       but just a mask to apply to the address before OR'ing it in.
434  *
435  * Note: VSD_FIRMWARE is a SW bit ! It hijacks an unused bit in the
436  *       VSD and is only meant to be used in indirect mode !
437  */
438 #define VSD_MODE                PPC_BITMASK(0, 1)
439 #define  VSD_MODE_SHARED        1
440 #define  VSD_MODE_EXCLUSIVE     2
441 #define  VSD_MODE_FORWARD       3
442 #define VSD_FIRMWARE            PPC_BIT(2) /* Read warning */
443 #define VSD_FIRMWARE2           PPC_BIT(3) /* unused */
444 #define VSD_RESERVED            PPC_BITMASK(4, 7) /* P10 reserved */
445 #define VSD_ADDRESS_MASK        0x00fffffffffff000ull
446 #define VSD_MIGRATION_REG       PPC_BITMASK(52, 55)
447 #define VSD_INDIRECT            PPC_BIT(56)
448 #define VSD_TSIZE               PPC_BITMASK(59, 63)
449 
450 #endif /* PPC_PNV_XIVE2_REGS_H */
451