blob: 2feb885ca96fcc501b289cc84bc081e946bd7176 [file] [log] [blame]
Jack Steiner4c921d42008-07-29 22:33:54 -07001/*
2 * Copyright (c) 2008 Silicon Graphics, Inc. All Rights Reserved.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU Lesser General Public License as published by
6 * the Free Software Foundation; either version 2.1 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU Lesser General Public License for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 */
18
19#ifndef __GRU_INSTRUCTIONS_H__
20#define __GRU_INSTRUCTIONS_H__
21
Jack Steinerfe5bb6b2009-04-02 16:59:04 -070022extern int gru_check_status_proc(void *cb);
23extern int gru_wait_proc(void *cb);
24extern void gru_wait_abort_proc(void *cb);
25
26
Jack Steiner4c921d42008-07-29 22:33:54 -070027
28/*
29 * Architecture dependent functions
30 */
31
Jack Steiner923f7f62008-10-15 22:05:13 -070032#if defined(CONFIG_IA64)
Jack Steiner4c921d42008-07-29 22:33:54 -070033#include <linux/compiler.h>
34#include <asm/intrinsics.h>
Jack Steinerfe5bb6b2009-04-02 16:59:04 -070035#define __flush_cache(p) ia64_fc((unsigned long)p)
Jack Steiner4c921d42008-07-29 22:33:54 -070036/* Use volatile on IA64 to ensure ordering via st4.rel */
Jack Steinerfe5bb6b2009-04-02 16:59:04 -070037#define gru_ordered_store_int(p, v) \
Jack Steiner4c921d42008-07-29 22:33:54 -070038 do { \
39 barrier(); \
40 *((volatile int *)(p)) = v; /* force st.rel */ \
41 } while (0)
Jack Steiner923f7f62008-10-15 22:05:13 -070042#elif defined(CONFIG_X86_64)
Jack Steiner4c921d42008-07-29 22:33:54 -070043#define __flush_cache(p) clflush(p)
Jack Steinerfe5bb6b2009-04-02 16:59:04 -070044#define gru_ordered_store_int(p, v) \
Jack Steiner4c921d42008-07-29 22:33:54 -070045 do { \
46 barrier(); \
47 *(int *)p = v; \
48 } while (0)
49#else
50#error "Unsupported architecture"
51#endif
52
53/*
54 * Control block status and exception codes
55 */
56#define CBS_IDLE 0
57#define CBS_EXCEPTION 1
58#define CBS_ACTIVE 2
59#define CBS_CALL_OS 3
60
61/* CB substatus bitmasks */
62#define CBSS_MSG_QUEUE_MASK 7
63#define CBSS_IMPLICIT_ABORT_ACTIVE_MASK 8
64
65/* CB substatus message queue values (low 3 bits of substatus) */
66#define CBSS_NO_ERROR 0
67#define CBSS_LB_OVERFLOWED 1
68#define CBSS_QLIMIT_REACHED 2
69#define CBSS_PAGE_OVERFLOW 3
70#define CBSS_AMO_NACKED 4
71#define CBSS_PUT_NACKED 5
72
73/*
74 * Structure used to fetch exception detail for CBs that terminate with
75 * CBS_EXCEPTION
76 */
77struct control_block_extended_exc_detail {
78 unsigned long cb;
79 int opc;
80 int ecause;
81 int exopc;
82 long exceptdet0;
83 int exceptdet1;
Jack Steinercd1334f2009-06-17 16:28:19 -070084 int cbrstate;
85 int cbrexecstatus;
Jack Steiner4c921d42008-07-29 22:33:54 -070086};
87
88/*
89 * Instruction formats
90 */
91
92/*
93 * Generic instruction format.
94 * This definition has precise bit field definitions.
95 */
96struct gru_instruction_bits {
97 /* DW 0 - low */
98 unsigned int icmd: 1;
99 unsigned char ima: 3; /* CB_DelRep, unmapped mode */
100 unsigned char reserved0: 4;
101 unsigned int xtype: 3;
102 unsigned int iaa0: 2;
103 unsigned int iaa1: 2;
104 unsigned char reserved1: 1;
105 unsigned char opc: 8; /* opcode */
106 unsigned char exopc: 8; /* extended opcode */
107 /* DW 0 - high */
108 unsigned int idef2: 22; /* TRi0 */
109 unsigned char reserved2: 2;
110 unsigned char istatus: 2;
111 unsigned char isubstatus:4;
Jack Steinercd1334f2009-06-17 16:28:19 -0700112 unsigned char reserved3: 1;
113 unsigned char tlb_fault_color: 1;
Jack Steiner4c921d42008-07-29 22:33:54 -0700114 /* DW 1 */
115 unsigned long idef4; /* 42 bits: TRi1, BufSize */
116 /* DW 2-6 */
117 unsigned long idef1; /* BAddr0 */
118 unsigned long idef5; /* Nelem */
119 unsigned long idef6; /* Stride, Operand1 */
120 unsigned long idef3; /* BAddr1, Value, Operand2 */
121 unsigned long reserved4;
122 /* DW 7 */
123 unsigned long avalue; /* AValue */
124};
125
126/*
127 * Generic instruction with friendlier names. This format is used
128 * for inline instructions.
129 */
130struct gru_instruction {
131 /* DW 0 */
132 unsigned int op32; /* icmd,xtype,iaa0,ima,opc */
133 unsigned int tri0;
134 unsigned long tri1_bufsize; /* DW 1 */
135 unsigned long baddr0; /* DW 2 */
136 unsigned long nelem; /* DW 3 */
137 unsigned long op1_stride; /* DW 4 */
138 unsigned long op2_value_baddr1; /* DW 5 */
139 unsigned long reserved0; /* DW 6 */
140 unsigned long avalue; /* DW 7 */
141};
142
143/* Some shifts and masks for the low 32 bits of a GRU command */
144#define GRU_CB_ICMD_SHFT 0
145#define GRU_CB_ICMD_MASK 0x1
146#define GRU_CB_XTYPE_SHFT 8
147#define GRU_CB_XTYPE_MASK 0x7
148#define GRU_CB_IAA0_SHFT 11
149#define GRU_CB_IAA0_MASK 0x3
150#define GRU_CB_IAA1_SHFT 13
151#define GRU_CB_IAA1_MASK 0x3
152#define GRU_CB_IMA_SHFT 1
153#define GRU_CB_IMA_MASK 0x3
154#define GRU_CB_OPC_SHFT 16
155#define GRU_CB_OPC_MASK 0xff
156#define GRU_CB_EXOPC_SHFT 24
157#define GRU_CB_EXOPC_MASK 0xff
158
159/* GRU instruction opcodes (opc field) */
160#define OP_NOP 0x00
161#define OP_BCOPY 0x01
162#define OP_VLOAD 0x02
163#define OP_IVLOAD 0x03
164#define OP_VSTORE 0x04
165#define OP_IVSTORE 0x05
166#define OP_VSET 0x06
167#define OP_IVSET 0x07
168#define OP_MESQ 0x08
169#define OP_GAMXR 0x09
170#define OP_GAMIR 0x0a
171#define OP_GAMIRR 0x0b
172#define OP_GAMER 0x0c
173#define OP_GAMERR 0x0d
174#define OP_BSTORE 0x0e
175#define OP_VFLUSH 0x0f
176
177
178/* Extended opcodes values (exopc field) */
179
180/* GAMIR - AMOs with implicit operands */
181#define EOP_IR_FETCH 0x01 /* Plain fetch of memory */
182#define EOP_IR_CLR 0x02 /* Fetch and clear */
183#define EOP_IR_INC 0x05 /* Fetch and increment */
184#define EOP_IR_DEC 0x07 /* Fetch and decrement */
185#define EOP_IR_QCHK1 0x0d /* Queue check, 64 byte msg */
186#define EOP_IR_QCHK2 0x0e /* Queue check, 128 byte msg */
187
188/* GAMIRR - Registered AMOs with implicit operands */
189#define EOP_IRR_FETCH 0x01 /* Registered fetch of memory */
190#define EOP_IRR_CLR 0x02 /* Registered fetch and clear */
191#define EOP_IRR_INC 0x05 /* Registered fetch and increment */
192#define EOP_IRR_DEC 0x07 /* Registered fetch and decrement */
193#define EOP_IRR_DECZ 0x0f /* Registered fetch and decrement, update on zero*/
194
195/* GAMER - AMOs with explicit operands */
196#define EOP_ER_SWAP 0x00 /* Exchange argument and memory */
197#define EOP_ER_OR 0x01 /* Logical OR with memory */
198#define EOP_ER_AND 0x02 /* Logical AND with memory */
199#define EOP_ER_XOR 0x03 /* Logical XOR with memory */
200#define EOP_ER_ADD 0x04 /* Add value to memory */
201#define EOP_ER_CSWAP 0x08 /* Compare with operand2, write operand1 if match*/
202#define EOP_ER_CADD 0x0c /* Queue check, operand1*64 byte msg */
203
204/* GAMERR - Registered AMOs with explicit operands */
205#define EOP_ERR_SWAP 0x00 /* Exchange argument and memory */
206#define EOP_ERR_OR 0x01 /* Logical OR with memory */
207#define EOP_ERR_AND 0x02 /* Logical AND with memory */
208#define EOP_ERR_XOR 0x03 /* Logical XOR with memory */
209#define EOP_ERR_ADD 0x04 /* Add value to memory */
210#define EOP_ERR_CSWAP 0x08 /* Compare with operand2, write operand1 if match*/
211#define EOP_ERR_EPOLL 0x09 /* Poll for equality */
212#define EOP_ERR_NPOLL 0x0a /* Poll for inequality */
213
214/* GAMXR - SGI Arithmetic unit */
215#define EOP_XR_CSWAP 0x0b /* Masked compare exchange */
216
217
218/* Transfer types (xtype field) */
219#define XTYPE_B 0x0 /* byte */
220#define XTYPE_S 0x1 /* short (2-byte) */
221#define XTYPE_W 0x2 /* word (4-byte) */
222#define XTYPE_DW 0x3 /* doubleword (8-byte) */
223#define XTYPE_CL 0x6 /* cacheline (64-byte) */
224
225
226/* Instruction access attributes (iaa0, iaa1 fields) */
227#define IAA_RAM 0x0 /* normal cached RAM access */
228#define IAA_NCRAM 0x2 /* noncoherent RAM access */
229#define IAA_MMIO 0x1 /* noncoherent memory-mapped I/O space */
230#define IAA_REGISTER 0x3 /* memory-mapped registers, etc. */
231
232
233/* Instruction mode attributes (ima field) */
234#define IMA_MAPPED 0x0 /* Virtual mode */
235#define IMA_CB_DELAY 0x1 /* hold read responses until status changes */
236#define IMA_UNMAPPED 0x2 /* bypass the TLBs (OS only) */
237#define IMA_INTERRUPT 0x4 /* Interrupt when instruction completes */
238
239/* CBE ecause bits */
240#define CBE_CAUSE_RI (1 << 0)
241#define CBE_CAUSE_INVALID_INSTRUCTION (1 << 1)
242#define CBE_CAUSE_UNMAPPED_MODE_FORBIDDEN (1 << 2)
243#define CBE_CAUSE_PE_CHECK_DATA_ERROR (1 << 3)
244#define CBE_CAUSE_IAA_GAA_MISMATCH (1 << 4)
245#define CBE_CAUSE_DATA_SEGMENT_LIMIT_EXCEPTION (1 << 5)
246#define CBE_CAUSE_OS_FATAL_TLB_FAULT (1 << 6)
247#define CBE_CAUSE_EXECUTION_HW_ERROR (1 << 7)
248#define CBE_CAUSE_TLBHW_ERROR (1 << 8)
249#define CBE_CAUSE_RA_REQUEST_TIMEOUT (1 << 9)
250#define CBE_CAUSE_HA_REQUEST_TIMEOUT (1 << 10)
251#define CBE_CAUSE_RA_RESPONSE_FATAL (1 << 11)
252#define CBE_CAUSE_RA_RESPONSE_NON_FATAL (1 << 12)
253#define CBE_CAUSE_HA_RESPONSE_FATAL (1 << 13)
254#define CBE_CAUSE_HA_RESPONSE_NON_FATAL (1 << 14)
255#define CBE_CAUSE_ADDRESS_SPACE_DECODE_ERROR (1 << 15)
256#define CBE_CAUSE_RESPONSE_DATA_ERROR (1 << 16)
257#define CBE_CAUSE_PROTOCOL_STATE_DATA_ERROR (1 << 17)
258
Jack Steinercd1334f2009-06-17 16:28:19 -0700259/* CBE cbrexecstatus bits */
260#define CBR_EXS_ABORT_OCC_BIT 0
261#define CBR_EXS_INT_OCC_BIT 1
262#define CBR_EXS_PENDING_BIT 2
263#define CBR_EXS_QUEUED_BIT 3
264#define CBR_EXS_TLBHW_BIT 4
265#define CBR_EXS_EXCEPTION_BIT 5
266
267#define CBR_EXS_ABORT_OCC (1 << CBR_EXS_ABORT_OCC_BIT)
268#define CBR_EXS_INT_OCC (1 << CBR_EXS_INT_OCC_BIT)
269#define CBR_EXS_PENDING (1 << CBR_EXS_PENDING_BIT)
270#define CBR_EXS_QUEUED (1 << CBR_EXS_QUEUED_BIT)
271#define CBR_EXS_TLBHW (1 << CBR_EXS_TLBHW_BIT)
272#define CBR_EXS_EXCEPTION (1 << CBR_EXS_EXCEPTION_BIT)
273
Jack Steiner4c921d42008-07-29 22:33:54 -0700274/*
275 * Exceptions are retried for the following cases. If any OTHER bits are set
276 * in ecause, the exception is not retryable.
277 */
278#define EXCEPTION_RETRY_BITS (CBE_CAUSE_RESPONSE_DATA_ERROR | \
279 CBE_CAUSE_RA_REQUEST_TIMEOUT | \
280 CBE_CAUSE_TLBHW_ERROR | \
281 CBE_CAUSE_HA_REQUEST_TIMEOUT)
282
283/* Message queue head structure */
284union gru_mesqhead {
285 unsigned long val;
286 struct {
287 unsigned int head;
288 unsigned int limit;
289 };
290};
291
292
293/* Generate the low word of a GRU instruction */
294static inline unsigned int
295__opword(unsigned char opcode, unsigned char exopc, unsigned char xtype,
296 unsigned char iaa0, unsigned char iaa1,
297 unsigned char ima)
298{
299 return (1 << GRU_CB_ICMD_SHFT) |
300 (iaa0 << GRU_CB_IAA0_SHFT) |
301 (iaa1 << GRU_CB_IAA1_SHFT) |
302 (ima << GRU_CB_IMA_SHFT) |
303 (xtype << GRU_CB_XTYPE_SHFT) |
304 (opcode << GRU_CB_OPC_SHFT) |
305 (exopc << GRU_CB_EXOPC_SHFT);
306}
307
308/*
Jack Steiner4c921d42008-07-29 22:33:54 -0700309 * Architecture specific intrinsics
310 */
311static inline void gru_flush_cache(void *p)
312{
313 __flush_cache(p);
314}
315
316/*
317 * Store the lower 32 bits of the command including the "start" bit. Then
318 * start the instruction executing.
319 */
320static inline void gru_start_instruction(struct gru_instruction *ins, int op32)
321{
322 gru_ordered_store_int(ins, op32);
Jack Steiner923f7f62008-10-15 22:05:13 -0700323 gru_flush_cache(ins);
Jack Steiner4c921d42008-07-29 22:33:54 -0700324}
325
326
327/* Convert "hints" to IMA */
328#define CB_IMA(h) ((h) | IMA_UNMAPPED)
329
330/* Convert data segment cache line index into TRI0 / TRI1 value */
331#define GRU_DINDEX(i) ((i) * GRU_CACHE_LINE_BYTES)
332
333/* Inline functions for GRU instructions.
334 * Note:
335 * - nelem and stride are in elements
336 * - tri0/tri1 is in bytes for the beginning of the data segment.
337 */
338static inline void gru_vload(void *cb, unsigned long mem_addr,
339 unsigned int tri0, unsigned char xtype, unsigned long nelem,
340 unsigned long stride, unsigned long hints)
341{
342 struct gru_instruction *ins = (struct gru_instruction *)cb;
343
344 ins->baddr0 = (long)mem_addr;
345 ins->nelem = nelem;
346 ins->tri0 = tri0;
347 ins->op1_stride = stride;
348 gru_start_instruction(ins, __opword(OP_VLOAD, 0, xtype, IAA_RAM, 0,
349 CB_IMA(hints)));
350}
351
352static inline void gru_vstore(void *cb, unsigned long mem_addr,
353 unsigned int tri0, unsigned char xtype, unsigned long nelem,
354 unsigned long stride, unsigned long hints)
355{
356 struct gru_instruction *ins = (void *)cb;
357
358 ins->baddr0 = (long)mem_addr;
359 ins->nelem = nelem;
360 ins->tri0 = tri0;
361 ins->op1_stride = stride;
362 gru_start_instruction(ins, __opword(OP_VSTORE, 0, xtype, IAA_RAM, 0,
363 CB_IMA(hints)));
364}
365
366static inline void gru_ivload(void *cb, unsigned long mem_addr,
367 unsigned int tri0, unsigned int tri1, unsigned char xtype,
368 unsigned long nelem, unsigned long hints)
369{
370 struct gru_instruction *ins = (void *)cb;
371
372 ins->baddr0 = (long)mem_addr;
373 ins->nelem = nelem;
374 ins->tri0 = tri0;
375 ins->tri1_bufsize = tri1;
376 gru_start_instruction(ins, __opword(OP_IVLOAD, 0, xtype, IAA_RAM, 0,
377 CB_IMA(hints)));
378}
379
380static inline void gru_ivstore(void *cb, unsigned long mem_addr,
381 unsigned int tri0, unsigned int tri1,
382 unsigned char xtype, unsigned long nelem, unsigned long hints)
383{
384 struct gru_instruction *ins = (void *)cb;
385
386 ins->baddr0 = (long)mem_addr;
387 ins->nelem = nelem;
388 ins->tri0 = tri0;
389 ins->tri1_bufsize = tri1;
390 gru_start_instruction(ins, __opword(OP_IVSTORE, 0, xtype, IAA_RAM, 0,
391 CB_IMA(hints)));
392}
393
394static inline void gru_vset(void *cb, unsigned long mem_addr,
395 unsigned long value, unsigned char xtype, unsigned long nelem,
396 unsigned long stride, unsigned long hints)
397{
398 struct gru_instruction *ins = (void *)cb;
399
400 ins->baddr0 = (long)mem_addr;
401 ins->op2_value_baddr1 = value;
402 ins->nelem = nelem;
403 ins->op1_stride = stride;
404 gru_start_instruction(ins, __opword(OP_VSET, 0, xtype, IAA_RAM, 0,
405 CB_IMA(hints)));
406}
407
408static inline void gru_ivset(void *cb, unsigned long mem_addr,
409 unsigned int tri1, unsigned long value, unsigned char xtype,
410 unsigned long nelem, unsigned long hints)
411{
412 struct gru_instruction *ins = (void *)cb;
413
414 ins->baddr0 = (long)mem_addr;
415 ins->op2_value_baddr1 = value;
416 ins->nelem = nelem;
417 ins->tri1_bufsize = tri1;
418 gru_start_instruction(ins, __opword(OP_IVSET, 0, xtype, IAA_RAM, 0,
419 CB_IMA(hints)));
420}
421
422static inline void gru_vflush(void *cb, unsigned long mem_addr,
423 unsigned long nelem, unsigned char xtype, unsigned long stride,
424 unsigned long hints)
425{
426 struct gru_instruction *ins = (void *)cb;
427
428 ins->baddr0 = (long)mem_addr;
429 ins->op1_stride = stride;
430 ins->nelem = nelem;
431 gru_start_instruction(ins, __opword(OP_VFLUSH, 0, xtype, IAA_RAM, 0,
432 CB_IMA(hints)));
433}
434
435static inline void gru_nop(void *cb, int hints)
436{
437 struct gru_instruction *ins = (void *)cb;
438
439 gru_start_instruction(ins, __opword(OP_NOP, 0, 0, 0, 0, CB_IMA(hints)));
440}
441
442
443static inline void gru_bcopy(void *cb, const unsigned long src,
444 unsigned long dest,
445 unsigned int tri0, unsigned int xtype, unsigned long nelem,
446 unsigned int bufsize, unsigned long hints)
447{
448 struct gru_instruction *ins = (void *)cb;
449
450 ins->baddr0 = (long)src;
451 ins->op2_value_baddr1 = (long)dest;
452 ins->nelem = nelem;
453 ins->tri0 = tri0;
454 ins->tri1_bufsize = bufsize;
455 gru_start_instruction(ins, __opword(OP_BCOPY, 0, xtype, IAA_RAM,
456 IAA_RAM, CB_IMA(hints)));
457}
458
459static inline void gru_bstore(void *cb, const unsigned long src,
460 unsigned long dest, unsigned int tri0, unsigned int xtype,
461 unsigned long nelem, unsigned long hints)
462{
463 struct gru_instruction *ins = (void *)cb;
464
465 ins->baddr0 = (long)src;
466 ins->op2_value_baddr1 = (long)dest;
467 ins->nelem = nelem;
468 ins->tri0 = tri0;
469 gru_start_instruction(ins, __opword(OP_BSTORE, 0, xtype, 0, IAA_RAM,
470 CB_IMA(hints)));
471}
472
473static inline void gru_gamir(void *cb, int exopc, unsigned long src,
474 unsigned int xtype, unsigned long hints)
475{
476 struct gru_instruction *ins = (void *)cb;
477
478 ins->baddr0 = (long)src;
479 gru_start_instruction(ins, __opword(OP_GAMIR, exopc, xtype, IAA_RAM, 0,
480 CB_IMA(hints)));
481}
482
483static inline void gru_gamirr(void *cb, int exopc, unsigned long src,
484 unsigned int xtype, unsigned long hints)
485{
486 struct gru_instruction *ins = (void *)cb;
487
488 ins->baddr0 = (long)src;
489 gru_start_instruction(ins, __opword(OP_GAMIRR, exopc, xtype, IAA_RAM, 0,
490 CB_IMA(hints)));
491}
492
493static inline void gru_gamer(void *cb, int exopc, unsigned long src,
494 unsigned int xtype,
495 unsigned long operand1, unsigned long operand2,
496 unsigned long hints)
497{
498 struct gru_instruction *ins = (void *)cb;
499
500 ins->baddr0 = (long)src;
501 ins->op1_stride = operand1;
502 ins->op2_value_baddr1 = operand2;
503 gru_start_instruction(ins, __opword(OP_GAMER, exopc, xtype, IAA_RAM, 0,
504 CB_IMA(hints)));
505}
506
507static inline void gru_gamerr(void *cb, int exopc, unsigned long src,
508 unsigned int xtype, unsigned long operand1,
509 unsigned long operand2, unsigned long hints)
510{
511 struct gru_instruction *ins = (void *)cb;
512
513 ins->baddr0 = (long)src;
514 ins->op1_stride = operand1;
515 ins->op2_value_baddr1 = operand2;
516 gru_start_instruction(ins, __opword(OP_GAMERR, exopc, xtype, IAA_RAM, 0,
517 CB_IMA(hints)));
518}
519
520static inline void gru_gamxr(void *cb, unsigned long src,
521 unsigned int tri0, unsigned long hints)
522{
523 struct gru_instruction *ins = (void *)cb;
524
525 ins->baddr0 = (long)src;
526 ins->nelem = 4;
527 gru_start_instruction(ins, __opword(OP_GAMXR, EOP_XR_CSWAP, XTYPE_DW,
528 IAA_RAM, 0, CB_IMA(hints)));
529}
530
531static inline void gru_mesq(void *cb, unsigned long queue,
532 unsigned long tri0, unsigned long nelem,
533 unsigned long hints)
534{
535 struct gru_instruction *ins = (void *)cb;
536
537 ins->baddr0 = (long)queue;
538 ins->nelem = nelem;
539 ins->tri0 = tri0;
540 gru_start_instruction(ins, __opword(OP_MESQ, 0, XTYPE_CL, IAA_RAM, 0,
541 CB_IMA(hints)));
542}
543
544static inline unsigned long gru_get_amo_value(void *cb)
545{
546 struct gru_instruction *ins = (void *)cb;
547
548 return ins->avalue;
549}
550
551static inline int gru_get_amo_value_head(void *cb)
552{
553 struct gru_instruction *ins = (void *)cb;
554
555 return ins->avalue & 0xffffffff;
556}
557
558static inline int gru_get_amo_value_limit(void *cb)
559{
560 struct gru_instruction *ins = (void *)cb;
561
562 return ins->avalue >> 32;
563}
564
565static inline union gru_mesqhead gru_mesq_head(int head, int limit)
566{
567 union gru_mesqhead mqh;
568
569 mqh.head = head;
570 mqh.limit = limit;
571 return mqh;
572}
573
574/*
575 * Get struct control_block_extended_exc_detail for CB.
576 */
577extern int gru_get_cb_exception_detail(void *cb,
578 struct control_block_extended_exc_detail *excdet);
579
580#define GRU_EXC_STR_SIZE 256
581
Jack Steiner4c921d42008-07-29 22:33:54 -0700582
583/*
584 * Control block definition for checking status
585 */
586struct gru_control_block_status {
587 unsigned int icmd :1;
Jack Steinerfe5bb6b2009-04-02 16:59:04 -0700588 unsigned int ima :3;
589 unsigned int reserved0 :4;
590 unsigned int unused1 :24;
Jack Steiner4c921d42008-07-29 22:33:54 -0700591 unsigned int unused2 :24;
592 unsigned int istatus :2;
593 unsigned int isubstatus :4;
Jack Steinerfe5bb6b2009-04-02 16:59:04 -0700594 unsigned int unused3 :2;
Jack Steiner4c921d42008-07-29 22:33:54 -0700595};
596
597/* Get CB status */
598static inline int gru_get_cb_status(void *cb)
599{
600 struct gru_control_block_status *cbs = (void *)cb;
601
602 return cbs->istatus;
603}
604
605/* Get CB message queue substatus */
606static inline int gru_get_cb_message_queue_substatus(void *cb)
607{
608 struct gru_control_block_status *cbs = (void *)cb;
609
610 return cbs->isubstatus & CBSS_MSG_QUEUE_MASK;
611}
612
613/* Get CB substatus */
614static inline int gru_get_cb_substatus(void *cb)
615{
616 struct gru_control_block_status *cbs = (void *)cb;
617
618 return cbs->isubstatus;
619}
620
621/* Check the status of a CB. If the CB is in UPM mode, call the
622 * OS to handle the UPM status.
623 * Returns the CB status field value (0 for normal completion)
624 */
625static inline int gru_check_status(void *cb)
626{
627 struct gru_control_block_status *cbs = (void *)cb;
Jack Steiner923f7f62008-10-15 22:05:13 -0700628 int ret;
Jack Steiner4c921d42008-07-29 22:33:54 -0700629
Jack Steiner923f7f62008-10-15 22:05:13 -0700630 ret = cbs->istatus;
Jack Steiner4c921d42008-07-29 22:33:54 -0700631 if (ret == CBS_CALL_OS)
632 ret = gru_check_status_proc(cb);
633 return ret;
634}
635
636/* Wait for CB to complete.
637 * Returns the CB status field value (0 for normal completion)
638 */
639static inline int gru_wait(void *cb)
640{
641 struct gru_control_block_status *cbs = (void *)cb;
Jack Steiner923f7f62008-10-15 22:05:13 -0700642 int ret = cbs->istatus;
Jack Steiner4c921d42008-07-29 22:33:54 -0700643
644 if (ret != CBS_IDLE)
645 ret = gru_wait_proc(cb);
646 return ret;
647}
648
649/* Wait for CB to complete. Aborts program if error. (Note: error does NOT
650 * mean TLB mis - only fatal errors such as memory parity error or user
651 * bugs will cause termination.
652 */
653static inline void gru_wait_abort(void *cb)
654{
655 struct gru_control_block_status *cbs = (void *)cb;
656
657 if (cbs->istatus != CBS_IDLE)
658 gru_wait_abort_proc(cb);
659}
660
661
662/*
663 * Get a pointer to a control block
664 * gseg - GSeg address returned from gru_get_thread_gru_segment()
665 * index - index of desired CB
666 */
667static inline void *gru_get_cb_pointer(void *gseg,
668 int index)
669{
670 return gseg + GRU_CB_BASE + index * GRU_HANDLE_STRIDE;
671}
672
673/*
674 * Get a pointer to a cacheline in the data segment portion of a GSeg
675 * gseg - GSeg address returned from gru_get_thread_gru_segment()
676 * index - index of desired cache line
677 */
678static inline void *gru_get_data_pointer(void *gseg, int index)
679{
680 return gseg + GRU_DS_BASE + index * GRU_CACHE_LINE_BYTES;
681}
682
683/*
684 * Convert a vaddr into the tri index within the GSEG
685 * vaddr - virtual address of within gseg
686 */
687static inline int gru_get_tri(void *vaddr)
688{
689 return ((unsigned long)vaddr & (GRU_GSEG_PAGESIZE - 1)) - GRU_DS_BASE;
690}
691#endif /* __GRU_INSTRUCTIONS_H__ */