1 /* SPDX-License-Identifier: GPL-2.0-or-later */
3 * SN Platform GRU Driver
5 * GRU HANDLE DEFINITION
7 * Copyright (c) 2008 Silicon Graphics, Inc. All Rights Reserved.
10 #ifndef __GRUHANDLES_H__
11 #define __GRUHANDLES_H__
12 #include "gru_instructions.h"
15 * Manifest constants for GRU Memory Map
17 #define GRU_GSEG0_BASE 0
18 #define GRU_MCS_BASE (64 * 1024 * 1024)
19 #define GRU_SIZE (128UL * 1024 * 1024)
21 /* Handle & resource counts */
22 #define GRU_NUM_CB 128
23 #define GRU_NUM_DSR_BYTES (32 * 1024)
24 #define GRU_NUM_TFM 16
25 #define GRU_NUM_TGH 24
26 #define GRU_NUM_CBE 128
27 #define GRU_NUM_TFH 128
28 #define GRU_NUM_CCH 16
30 /* Maximum resource counts that can be reserved by user programs */
31 #define GRU_NUM_USER_CBR GRU_NUM_CBE
32 #define GRU_NUM_USER_DSR_BYTES GRU_NUM_DSR_BYTES
34 /* Bytes per handle & handle stride. Code assumes all cb, tfh, cbe handles
36 #define GRU_HANDLE_BYTES 64
37 #define GRU_HANDLE_STRIDE 256
39 /* Base addresses of handles */
40 #define GRU_TFM_BASE (GRU_MCS_BASE + 0x00000)
41 #define GRU_TGH_BASE (GRU_MCS_BASE + 0x08000)
42 #define GRU_CBE_BASE (GRU_MCS_BASE + 0x10000)
43 #define GRU_TFH_BASE (GRU_MCS_BASE + 0x18000)
44 #define GRU_CCH_BASE (GRU_MCS_BASE + 0x20000)
46 /* User gseg constants */
47 #define GRU_GSEG_STRIDE (4 * 1024 * 1024)
48 #define GSEG_BASE(a) ((a) & ~(GRU_GSEG_PAGESIZE - 1))
50 /* Data segment constants */
51 #define GRU_DSR_AU_BYTES 1024
52 #define GRU_DSR_CL (GRU_NUM_DSR_BYTES / GRU_CACHE_LINE_BYTES)
53 #define GRU_DSR_AU_CL (GRU_DSR_AU_BYTES / GRU_CACHE_LINE_BYTES)
54 #define GRU_DSR_AU (GRU_NUM_DSR_BYTES / GRU_DSR_AU_BYTES)
56 /* Control block constants */
57 #define GRU_CBR_AU_SIZE 2
58 #define GRU_CBR_AU (GRU_NUM_CBE / GRU_CBR_AU_SIZE)
60 /* Convert resource counts to the number of AU */
61 #define GRU_DS_BYTES_TO_AU(n) DIV_ROUND_UP(n, GRU_DSR_AU_BYTES)
62 #define GRU_CB_COUNT_TO_AU(n) DIV_ROUND_UP(n, GRU_CBR_AU_SIZE)
65 #define GRU_CHIPLETS_PER_HUB 2
66 #define GRU_HUBS_PER_BLADE 1
67 #define GRU_CHIPLETS_PER_BLADE (GRU_HUBS_PER_BLADE * GRU_CHIPLETS_PER_HUB)
69 /* User GRU Gseg offsets */
71 #define GRU_CB_LIMIT (GRU_CB_BASE + GRU_HANDLE_STRIDE * GRU_NUM_CBE)
72 #define GRU_DS_BASE 0x20000
73 #define GRU_DS_LIMIT (GRU_DS_BASE + GRU_NUM_DSR_BYTES)
75 /* Convert a GRU physical address to the chiplet offset */
76 #define GSEGPOFF(h) ((h) & (GRU_SIZE - 1))
78 /* Convert an arbitrary handle address to the beginning of the GRU segment */
79 #define GRUBASE(h) ((void *)((unsigned long)(h) & ~(GRU_SIZE - 1)))
81 /* Test a valid handle address to determine the type */
82 #define TYPE_IS(hn, h) ((h) >= GRU_##hn##_BASE && (h) < \
83 GRU_##hn##_BASE + GRU_NUM_##hn * GRU_HANDLE_STRIDE && \
84 (((h) & (GRU_HANDLE_STRIDE - 1)) == 0))
87 /* General addressing macros. */
88 static inline void *get_gseg_base_address(void *base
, int ctxnum
)
90 return (void *)(base
+ GRU_GSEG0_BASE
+ GRU_GSEG_STRIDE
* ctxnum
);
93 static inline void *get_gseg_base_address_cb(void *base
, int ctxnum
, int line
)
95 return (void *)(get_gseg_base_address(base
, ctxnum
) +
96 GRU_CB_BASE
+ GRU_HANDLE_STRIDE
* line
);
99 static inline void *get_gseg_base_address_ds(void *base
, int ctxnum
, int line
)
101 return (void *)(get_gseg_base_address(base
, ctxnum
) + GRU_DS_BASE
+
102 GRU_CACHE_LINE_BYTES
* line
);
105 static inline struct gru_tlb_fault_map
*get_tfm(void *base
, int ctxnum
)
107 return (struct gru_tlb_fault_map
*)(base
+ GRU_TFM_BASE
+
108 ctxnum
* GRU_HANDLE_STRIDE
);
111 static inline struct gru_tlb_global_handle
*get_tgh(void *base
, int ctxnum
)
113 return (struct gru_tlb_global_handle
*)(base
+ GRU_TGH_BASE
+
114 ctxnum
* GRU_HANDLE_STRIDE
);
117 static inline struct gru_control_block_extended
*get_cbe(void *base
, int ctxnum
)
119 return (struct gru_control_block_extended
*)(base
+ GRU_CBE_BASE
+
120 ctxnum
* GRU_HANDLE_STRIDE
);
123 static inline struct gru_tlb_fault_handle
*get_tfh(void *base
, int ctxnum
)
125 return (struct gru_tlb_fault_handle
*)(base
+ GRU_TFH_BASE
+
126 ctxnum
* GRU_HANDLE_STRIDE
);
129 static inline struct gru_context_configuration_handle
*get_cch(void *base
,
132 return (struct gru_context_configuration_handle
*)(base
+
133 GRU_CCH_BASE
+ ctxnum
* GRU_HANDLE_STRIDE
);
136 static inline unsigned long get_cb_number(void *cb
)
138 return (((unsigned long)cb
- GRU_CB_BASE
) % GRU_GSEG_PAGESIZE
) /
142 /* byte offset to a specific GRU chiplet. (p=pnode, c=chiplet (0 or 1)*/
143 static inline unsigned long gru_chiplet_paddr(unsigned long paddr
, int pnode
,
146 return paddr
+ GRU_SIZE
* (2 * pnode
+ chiplet
);
149 static inline void *gru_chiplet_vaddr(void *vaddr
, int pnode
, int chiplet
)
151 return vaddr
+ GRU_SIZE
* (2 * pnode
+ chiplet
);
154 static inline struct gru_control_block_extended
*gru_tfh_to_cbe(
155 struct gru_tlb_fault_handle
*tfh
)
159 cbe
= (unsigned long)tfh
- GRU_TFH_BASE
+ GRU_CBE_BASE
;
160 return (struct gru_control_block_extended
*)cbe
;
167 * Global TLB Fault Map
168 * Bitmap of outstanding TLB misses needing interrupt/polling service.
171 struct gru_tlb_fault_map
{
172 unsigned long fault_bits
[BITS_TO_LONGS(GRU_NUM_CBE
)];
173 unsigned long fill0
[2];
174 unsigned long done_bits
[BITS_TO_LONGS(GRU_NUM_CBE
)];
175 unsigned long fill1
[2];
179 * TGH - TLB Global Handle
180 * Used for TLB flushing.
183 struct gru_tlb_global_handle
{
184 unsigned int cmd
:1; /* DW 0 */
185 unsigned int delresp
:1;
187 unsigned int fill1
:5;
189 unsigned int fill2
:8;
191 unsigned int status
:2;
192 unsigned long fill3
:2;
193 unsigned int state
:3;
194 unsigned long fill4
:1;
196 unsigned int cause
:3;
197 unsigned long fill5
:37;
199 unsigned long vaddr
:64; /* DW 1 */
201 unsigned int asid
:24; /* DW 2 */
202 unsigned int fill6
:8;
204 unsigned int pagesize
:5;
205 unsigned int fill7
:11;
207 unsigned int global
:1;
208 unsigned int fill8
:15;
210 unsigned long vaddrmask
:39; /* DW 3 */
211 unsigned int fill9
:9;
213 unsigned int fill10
:6;
215 unsigned int ctxbitmap
:16; /* DW4 */
216 unsigned long fill11
[3];
228 enum gru_tgh_status
{
237 TGHSTATE_INTERRUPT_INVAL
,
239 TGHSTATE_RESTART_CTX
,
254 * TFH - TLB Global Handle
255 * Used for TLB dropins into the GRU TLB.
258 struct gru_tlb_fault_handle
{
259 unsigned int cmd
:1; /* DW 0 - low 32*/
260 unsigned int delresp
:1;
261 unsigned int fill0
:2;
263 unsigned int fill1
:9;
265 unsigned int status
:2;
266 unsigned int fill2
:2;
267 unsigned int state
:3;
268 unsigned int fill3
:1;
270 unsigned int cause
:6;
271 unsigned int cb_int
:1;
272 unsigned int fill4
:1;
274 unsigned int indexway
:12; /* DW 0 - high 32 */
275 unsigned int fill5
:4;
277 unsigned int ctxnum
:4;
278 unsigned int fill6
:12;
280 unsigned long missvaddr
:64; /* DW 1 */
282 unsigned int missasid
:24; /* DW 2 */
283 unsigned int fill7
:8;
284 unsigned int fillasid
:24;
285 unsigned int dirty
:1;
287 unsigned long fill8
:5;
289 unsigned long pfn
:41; /* DW 3 */
290 unsigned int fill9
:7;
291 unsigned int pagesize
:5;
292 unsigned int fill10
:11;
294 unsigned long fillvaddr
:64; /* DW 4 */
296 unsigned long fill11
[3];
305 TFHOP_USER_POLLING_MODE
= 7,
321 TFHSTATE_RESTART_CBR
,
329 TFHCAUSE_HW_ERROR_RR
,
330 TFHCAUSE_HW_ERROR_MAIN_ARRAY
,
331 TFHCAUSE_HW_ERROR_VALID
,
332 TFHCAUSE_HW_ERROR_PAGESIZE
,
333 TFHCAUSE_INSTRUCTION_EXCEPTION
,
334 TFHCAUSE_UNCORRECTIBLE_ERROR
,
339 #define GAA_NCRAM 0x2
341 #define GAA_REGISTER 0x3
343 /* GRU paddr shift for pfn. (NOTE: shift is NOT by actual pagesize) */
344 #define GRU_PADDR_SHIFT 12
347 * Context Configuration handle
348 * Used to allocate resources to a GSEG context.
351 struct gru_context_configuration_handle
{
352 unsigned int cmd
:1; /* DW0 */
353 unsigned int delresp
:1;
355 unsigned int unmap_enable
:1;
356 unsigned int req_slice_set_enable
:1;
357 unsigned int req_slice
:2;
358 unsigned int cb_int_enable
:1;
359 unsigned int tlb_int_enable
:1;
360 unsigned int tfm_fault_bit_enable
:1;
361 unsigned int tlb_int_select
:4;
363 unsigned int status
:2;
364 unsigned int state
:2;
365 unsigned int reserved2
:4;
367 unsigned int cause
:4;
368 unsigned int tfm_done_bit_enable
:1;
369 unsigned int unused
:3;
371 unsigned int dsr_allocation_map
;
373 unsigned long cbr_allocation_map
; /* DW1 */
375 unsigned int asid
[8]; /* DW 2 - 5 */
376 unsigned short sizeavail
[8]; /* DW 6 - 7 */
377 } __attribute__ ((packed
));
384 CCHOP_INTERRUPT_SYNC
,
387 enum gru_cch_status
{
397 CCHSTATE_INTERRUPTED
,
400 /* CCH Exception cause */
402 CCHCAUSE_REGION_REGISTER_WRITE_ERROR
= 1,
403 CCHCAUSE_ILLEGAL_OPCODE
= 2,
404 CCHCAUSE_INVALID_START_REQUEST
= 3,
405 CCHCAUSE_INVALID_ALLOCATION_REQUEST
= 4,
406 CCHCAUSE_INVALID_DEALLOCATION_REQUEST
= 5,
407 CCHCAUSE_INVALID_INTERRUPT_REQUEST
= 6,
408 CCHCAUSE_CCH_BUSY
= 7,
409 CCHCAUSE_NO_CBRS_TO_ALLOCATE
= 8,
410 CCHCAUSE_BAD_TFM_CONFIG
= 9,
411 CCHCAUSE_CBR_RESOURCES_OVERSUBSCRIPED
= 10,
412 CCHCAUSE_DSR_RESOURCES_OVERSUBSCRIPED
= 11,
413 CCHCAUSE_CBR_DEALLOCATION_ERROR
= 12,
416 * CBE - Control Block Extended
417 * Maintains internal GRU state for active CBs.
420 struct gru_control_block_extended
{
421 unsigned int reserved0
:1; /* DW 0 - low */
422 unsigned int imacpy
:3;
423 unsigned int reserved1
:4;
424 unsigned int xtypecpy
:3;
425 unsigned int iaa0cpy
:2;
426 unsigned int iaa1cpy
:2;
427 unsigned int reserved2
:1;
428 unsigned int opccpy
:8;
429 unsigned int exopccpy
:8;
431 unsigned int idef2cpy
:22; /* DW 0 - high */
432 unsigned int reserved3
:10;
434 unsigned int idef4cpy
:22; /* DW 1 */
435 unsigned int reserved4
:10;
436 unsigned int idef4upd
:22;
437 unsigned int reserved5
:10;
439 unsigned long idef1upd
:64; /* DW 2 */
441 unsigned long idef5cpy
:64; /* DW 3 */
443 unsigned long idef6cpy
:64; /* DW 4 */
445 unsigned long idef3upd
:64; /* DW 5 */
447 unsigned long idef5upd
:64; /* DW 6 */
449 unsigned int idef2upd
:22; /* DW 7 */
450 unsigned int reserved6
:10;
452 unsigned int ecause
:20;
453 unsigned int cbrstate
:4;
454 unsigned int cbrexecstatus
:8;
457 /* CBE fields for active BCOPY instructions */
458 #define cbe_baddr0 idef1upd
459 #define cbe_baddr1 idef3upd
460 #define cbe_src_cl idef6cpy
461 #define cbe_nelemcur idef5upd
468 CBRSTATE_WAIT_RESPONSE
,
469 CBRSTATE_INTERRUPTED
,
470 CBRSTATE_INTERRUPTED_MISS_FMM
,
471 CBRSTATE_BUSY_INTERRUPT_MISS_FMM
,
472 CBRSTATE_INTERRUPTED_MISS_UPM
,
473 CBRSTATE_BUSY_INTERRUPTED_MISS_UPM
,
474 CBRSTATE_REQUEST_ISSUE
,
475 CBRSTATE_BUSY_INTERRUPT
,
478 /* CBE cbrexecstatus bits - defined in gru_instructions.h*/
479 /* CBE ecause bits - defined in gru_instructions.h */
482 * Convert a processor pagesize into the strange encoded pagesize used by the
483 * GRU. Processor pagesize is encoded as log of bytes per page. (or PAGE_SHIFT)
484 * pagesize log pagesize grupagesize
496 #define GRU_PAGESIZE(sh) ((((sh) > 20 ? (sh) + 2 : (sh)) >> 1) - 6)
497 #define GRU_SIZEAVAIL(sh) (1UL << GRU_PAGESIZE(sh))
499 /* minimum TLB purge count to ensure a full purge */
500 #define GRUMAXINVAL 1024UL
502 int cch_allocate(struct gru_context_configuration_handle
*cch
);
503 int cch_start(struct gru_context_configuration_handle
*cch
);
504 int cch_interrupt(struct gru_context_configuration_handle
*cch
);
505 int cch_deallocate(struct gru_context_configuration_handle
*cch
);
506 int cch_interrupt_sync(struct gru_context_configuration_handle
*cch
);
507 int tgh_invalidate(struct gru_tlb_global_handle
*tgh
, unsigned long vaddr
,
508 unsigned long vaddrmask
, int asid
, int pagesize
, int global
, int n
,
509 unsigned short ctxbitmap
);
510 int tfh_write_only(struct gru_tlb_fault_handle
*tfh
, unsigned long paddr
,
511 int gaa
, unsigned long vaddr
, int asid
, int dirty
, int pagesize
);
512 void tfh_write_restart(struct gru_tlb_fault_handle
*tfh
, unsigned long paddr
,
513 int gaa
, unsigned long vaddr
, int asid
, int dirty
, int pagesize
);
514 void tfh_user_polling_mode(struct gru_tlb_fault_handle
*tfh
);
515 void tfh_exception(struct gru_tlb_fault_handle
*tfh
);
517 #endif /* __GRUHANDLES_H__ */