2 * SN Platform GRU Driver
4 * KERNEL SERVICES THAT USE THE GRU
6 * Copyright (c) 2008 Silicon Graphics, Inc. All Rights Reserved.
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 #include <linux/kernel.h>
24 #include <linux/errno.h>
25 #include <linux/slab.h>
27 #include <linux/spinlock.h>
28 #include <linux/device.h>
29 #include <linux/miscdevice.h>
30 #include <linux/proc_fs.h>
31 #include <linux/interrupt.h>
32 #include <linux/uaccess.h>
33 #include <linux/delay.h>
34 #include <asm/io_apic.h>
37 #include "grutables.h"
38 #include "grukservices.h"
39 #include "gru_instructions.h"
40 #include <asm/uv/uv_hub.h>
45 * The following is an interim algorithm for management of kernel GRU
46 * resources. This will likely be replaced when we better understand the
47 * kernel/user requirements.
49 * Blade percpu resources reserved for kernel use. These resources are
50 * reserved whenever the the kernel context for the blade is loaded. Note
51 * that the kernel context is not guaranteed to be always available. It is
52 * loaded on demand & can be stolen by a user if the user demand exceeds the
53 * kernel demand. The kernel can always reload the kernel context but
54 * a SLEEP may be required!!!.
58 * Each blade has one "kernel context" that owns GRU kernel resources
59 * located on the blade. Kernel drivers use GRU resources in this context
60 * for sending messages, zeroing memory, etc.
62 * The kernel context is dynamically loaded on demand. If it is not in
63 * use by the kernel, the kernel context can be unloaded & given to a user.
64 * The kernel context will be reloaded when needed. This may require that
65 * a context be stolen from a user.
66 * NOTE: frequent unloading/reloading of the kernel context is
67 * expensive. We are depending on batch schedulers, cpusets, sane
68 * drivers or some other mechanism to prevent the need for frequent
71 * The kernel context consists of two parts:
72 * - 1 CB & a few DSRs that are reserved for each cpu on the blade.
73 * Each cpu has it's own private resources & does not share them
74 * with other cpus. These resources are used serially, ie,
75 * locked, used & unlocked on each call to a function in
77 * (Now that we have dynamic loading of kernel contexts, I
78 * may rethink this & allow sharing between cpus....)
80 * - Additional resources can be reserved long term & used directly
81 * by UV drivers located in the kernel. Drivers using these GRU
82 * resources can use asynchronous GRU instructions that send
83 * interrupts on completion.
84 * - these resources must be explicitly locked/unlocked
85 * - locked resources prevent (obviously) the kernel
86 * context from being unloaded.
87 * - drivers using these resource directly issue their own
88 * GRU instruction and must wait/check completion.
90 * When these resources are reserved, the caller can optionally
91 * associate a wait_queue with the resources and use asynchronous
92 * GRU instructions. When an async GRU instruction completes, the
93 * driver will do a wakeup on the event.
98 #define ASYNC_HAN_TO_BID(h) ((h) - 1)
99 #define ASYNC_BID_TO_HAN(b) ((b) + 1)
100 #define ASYNC_HAN_TO_BS(h) gru_base[ASYNC_HAN_TO_BID(h)]
102 #define GRU_NUM_KERNEL_CBR 1
103 #define GRU_NUM_KERNEL_DSR_BYTES 256
104 #define GRU_NUM_KERNEL_DSR_CL (GRU_NUM_KERNEL_DSR_BYTES / \
105 GRU_CACHE_LINE_BYTES)
107 /* GRU instruction attributes for all instructions */
108 #define IMA IMA_CB_DELAY
110 /* GRU cacheline size is always 64 bytes - even on arches with 128 byte lines */
111 #define __gru_cacheline_aligned__ \
112 __attribute__((__aligned__(GRU_CACHE_LINE_BYTES)))
114 #define MAGIC 0x1234567887654321UL
116 /* Default retry count for GRU errors on kernel instructions */
117 #define EXCEPTION_RETRY_LIMIT 3
119 /* Status of message queue sections */
124 /*----------------- RESOURCE MANAGEMENT -------------------------------------*/
125 /* optimized for x86_64 */
126 struct message_queue
{
127 union gru_mesqhead head __gru_cacheline_aligned__
; /* CL 0 */
128 int qlines
; /* DW 1 */
130 void *next __gru_cacheline_aligned__
;/* CL 1 */
134 char data ____cacheline_aligned
; /* CL 2 */
137 /* First word in every message - used by mesq interface */
138 struct message_header
{
145 #define HSTATUS(mq, h) ((mq) + offsetof(struct message_queue, hstatus[h]))
148 * Reload the blade's kernel context into a GRU chiplet. Called holding
149 * the bs_kgts_sema for READ. Will steal user contexts if necessary.
151 static void gru_load_kernel_context(struct gru_blade_state
*bs
, int blade_id
)
153 struct gru_state
*gru
;
154 struct gru_thread_state
*kgts
;
158 up_read(&bs
->bs_kgts_sema
);
159 down_write(&bs
->bs_kgts_sema
);
162 bs
->bs_kgts
= gru_alloc_gts(NULL
, 0, 0, 0, 0, 0);
163 bs
->bs_kgts
->ts_user_blade_id
= blade_id
;
168 STAT(load_kernel_context
);
169 ncpus
= uv_blade_nr_possible_cpus(blade_id
);
170 kgts
->ts_cbr_au_count
= GRU_CB_COUNT_TO_AU(
171 GRU_NUM_KERNEL_CBR
* ncpus
+ bs
->bs_async_cbrs
);
172 kgts
->ts_dsr_au_count
= GRU_DS_BYTES_TO_AU(
173 GRU_NUM_KERNEL_DSR_BYTES
* ncpus
+
174 bs
->bs_async_dsr_bytes
);
175 while (!gru_assign_gru_context(kgts
)) {
177 gru_steal_context(kgts
);
179 gru_load_context(kgts
);
180 gru
= bs
->bs_kgts
->ts_gru
;
181 vaddr
= gru
->gs_gru_base_vaddr
;
182 ctxnum
= kgts
->ts_ctxnum
;
183 bs
->kernel_cb
= get_gseg_base_address_cb(vaddr
, ctxnum
, 0);
184 bs
->kernel_dsr
= get_gseg_base_address_ds(vaddr
, ctxnum
, 0);
186 downgrade_write(&bs
->bs_kgts_sema
);
190 * Free all kernel contexts that are not currently in use.
191 * Returns 0 if all freed, else number of inuse context.
193 static int gru_free_kernel_contexts(void)
195 struct gru_blade_state
*bs
;
196 struct gru_thread_state
*kgts
;
199 for (bid
= 0; bid
< GRU_MAX_BLADES
; bid
++) {
204 /* Ignore busy contexts. Don't want to block here. */
205 if (down_write_trylock(&bs
->bs_kgts_sema
)) {
207 if (kgts
&& kgts
->ts_gru
)
208 gru_unload_context(kgts
, 0);
210 up_write(&bs
->bs_kgts_sema
);
220 * Lock & load the kernel context for the specified blade.
222 static struct gru_blade_state
*gru_lock_kernel_context(int blade_id
)
224 struct gru_blade_state
*bs
;
227 STAT(lock_kernel_context
);
229 bid
= blade_id
< 0 ? uv_numa_blade_id() : blade_id
;
232 /* Handle the case where migration occured while waiting for the sema */
233 down_read(&bs
->bs_kgts_sema
);
234 if (blade_id
< 0 && bid
!= uv_numa_blade_id()) {
235 up_read(&bs
->bs_kgts_sema
);
238 if (!bs
->bs_kgts
|| !bs
->bs_kgts
->ts_gru
)
239 gru_load_kernel_context(bs
, bid
);
245 * Unlock the kernel context for the specified blade. Context is not
246 * unloaded but may be stolen before next use.
248 static void gru_unlock_kernel_context(int blade_id
)
250 struct gru_blade_state
*bs
;
252 bs
= gru_base
[blade_id
];
253 up_read(&bs
->bs_kgts_sema
);
254 STAT(unlock_kernel_context
);
258 * Reserve & get pointers to the DSR/CBRs reserved for the current cpu.
259 * - returns with preemption disabled
261 static int gru_get_cpu_resources(int dsr_bytes
, void **cb
, void **dsr
)
263 struct gru_blade_state
*bs
;
266 BUG_ON(dsr_bytes
> GRU_NUM_KERNEL_DSR_BYTES
);
268 bs
= gru_lock_kernel_context(-1);
269 lcpu
= uv_blade_processor_id();
270 *cb
= bs
->kernel_cb
+ lcpu
* GRU_HANDLE_STRIDE
;
271 *dsr
= bs
->kernel_dsr
+ lcpu
* GRU_NUM_KERNEL_DSR_BYTES
;
276 * Free the current cpus reserved DSR/CBR resources.
278 static void gru_free_cpu_resources(void *cb
, void *dsr
)
280 gru_unlock_kernel_context(uv_numa_blade_id());
285 * Reserve GRU resources to be used asynchronously.
286 * Note: currently supports only 1 reservation per blade.
289 * blade_id - blade on which resources should be reserved
290 * cbrs - number of CBRs
291 * dsr_bytes - number of DSR bytes needed
293 * handle to identify resource
294 * (0 = async resources already reserved)
296 unsigned long gru_reserve_async_resources(int blade_id
, int cbrs
, int dsr_bytes
,
297 struct completion
*cmp
)
299 struct gru_blade_state
*bs
;
300 struct gru_thread_state
*kgts
;
303 bs
= gru_base
[blade_id
];
305 down_write(&bs
->bs_kgts_sema
);
307 /* Verify no resources already reserved */
308 if (bs
->bs_async_dsr_bytes
+ bs
->bs_async_cbrs
)
310 bs
->bs_async_dsr_bytes
= dsr_bytes
;
311 bs
->bs_async_cbrs
= cbrs
;
312 bs
->bs_async_wq
= cmp
;
315 /* Resources changed. Unload context if already loaded */
316 if (kgts
&& kgts
->ts_gru
)
317 gru_unload_context(kgts
, 0);
318 ret
= ASYNC_BID_TO_HAN(blade_id
);
321 up_write(&bs
->bs_kgts_sema
);
326 * Release async resources previously reserved.
329 * han - handle to identify resources
331 void gru_release_async_resources(unsigned long han
)
333 struct gru_blade_state
*bs
= ASYNC_HAN_TO_BS(han
);
335 down_write(&bs
->bs_kgts_sema
);
336 bs
->bs_async_dsr_bytes
= 0;
337 bs
->bs_async_cbrs
= 0;
338 bs
->bs_async_wq
= NULL
;
339 up_write(&bs
->bs_kgts_sema
);
343 * Wait for async GRU instructions to complete.
346 * han - handle to identify resources
348 void gru_wait_async_cbr(unsigned long han
)
350 struct gru_blade_state
*bs
= ASYNC_HAN_TO_BS(han
);
352 wait_for_completion(bs
->bs_async_wq
);
357 * Lock previous reserved async GRU resources
360 * han - handle to identify resources
362 * cb - pointer to first CBR
363 * dsr - pointer to first DSR
365 void gru_lock_async_resource(unsigned long han
, void **cb
, void **dsr
)
367 struct gru_blade_state
*bs
= ASYNC_HAN_TO_BS(han
);
368 int blade_id
= ASYNC_HAN_TO_BID(han
);
371 gru_lock_kernel_context(blade_id
);
372 ncpus
= uv_blade_nr_possible_cpus(blade_id
);
374 *cb
= bs
->kernel_cb
+ ncpus
* GRU_HANDLE_STRIDE
;
376 *dsr
= bs
->kernel_dsr
+ ncpus
* GRU_NUM_KERNEL_DSR_BYTES
;
380 * Unlock previous reserved async GRU resources
383 * han - handle to identify resources
385 void gru_unlock_async_resource(unsigned long han
)
387 int blade_id
= ASYNC_HAN_TO_BID(han
);
389 gru_unlock_kernel_context(blade_id
);
392 /*----------------------------------------------------------------------*/
393 int gru_get_cb_exception_detail(void *cb
,
394 struct control_block_extended_exc_detail
*excdet
)
396 struct gru_control_block_extended
*cbe
;
397 struct gru_thread_state
*kgts
= NULL
;
402 * Locate kgts for cb. This algorithm is SLOW but
403 * this function is rarely called (ie., almost never).
404 * Performance does not matter.
406 for_each_possible_blade(bid
) {
409 kgts
= gru_base
[bid
]->bs_kgts
;
410 if (!kgts
|| !kgts
->ts_gru
)
412 off
= cb
- kgts
->ts_gru
->gs_gru_base_vaddr
;
418 cbrnum
= thread_cbr_number(kgts
, get_cb_number(cb
));
419 cbe
= get_cbe(GRUBASE(cb
), cbrnum
);
420 gru_flush_cache(cbe
); /* CBE not coherent */
422 excdet
->opc
= cbe
->opccpy
;
423 excdet
->exopc
= cbe
->exopccpy
;
424 excdet
->ecause
= cbe
->ecause
;
425 excdet
->exceptdet0
= cbe
->idef1upd
;
426 excdet
->exceptdet1
= cbe
->idef3upd
;
427 gru_flush_cache(cbe
);
431 char *gru_get_cb_exception_detail_str(int ret
, void *cb
,
434 struct gru_control_block_status
*gen
= (void *)cb
;
435 struct control_block_extended_exc_detail excdet
;
437 if (ret
> 0 && gen
->istatus
== CBS_EXCEPTION
) {
438 gru_get_cb_exception_detail(cb
, &excdet
);
440 "GRU:%d exception: cb %p, opc %d, exopc %d, ecause 0x%x,"
441 "excdet0 0x%lx, excdet1 0x%x", smp_processor_id(),
442 gen
, excdet
.opc
, excdet
.exopc
, excdet
.ecause
,
443 excdet
.exceptdet0
, excdet
.exceptdet1
);
445 snprintf(buf
, size
, "No exception");
450 static int gru_wait_idle_or_exception(struct gru_control_block_status
*gen
)
452 while (gen
->istatus
>= CBS_ACTIVE
) {
459 static int gru_retry_exception(void *cb
)
461 struct gru_control_block_status
*gen
= (void *)cb
;
462 struct control_block_extended_exc_detail excdet
;
463 int retry
= EXCEPTION_RETRY_LIMIT
;
466 if (gru_wait_idle_or_exception(gen
) == CBS_IDLE
)
468 if (gru_get_cb_message_queue_substatus(cb
))
469 return CBS_EXCEPTION
;
470 gru_get_cb_exception_detail(cb
, &excdet
);
471 if ((excdet
.ecause
& ~EXCEPTION_RETRY_BITS
) ||
472 (excdet
.cbrexecstatus
& CBR_EXS_ABORT_OCC
))
477 gru_flush_cache(gen
);
479 return CBS_EXCEPTION
;
482 int gru_check_status_proc(void *cb
)
484 struct gru_control_block_status
*gen
= (void *)cb
;
488 if (ret
== CBS_EXCEPTION
)
489 ret
= gru_retry_exception(cb
);
495 int gru_wait_proc(void *cb
)
497 struct gru_control_block_status
*gen
= (void *)cb
;
500 ret
= gru_wait_idle_or_exception(gen
);
501 if (ret
== CBS_EXCEPTION
)
502 ret
= gru_retry_exception(cb
);
507 void gru_abort(int ret
, void *cb
, char *str
)
509 char buf
[GRU_EXC_STR_SIZE
];
511 panic("GRU FATAL ERROR: %s - %s\n", str
,
512 gru_get_cb_exception_detail_str(ret
, cb
, buf
, sizeof(buf
)));
515 void gru_wait_abort_proc(void *cb
)
519 ret
= gru_wait_proc(cb
);
521 gru_abort(ret
, cb
, "gru_wait_abort");
525 /*------------------------------ MESSAGE QUEUES -----------------------------*/
527 /* Internal status . These are NOT returned to the user. */
528 #define MQIE_AGAIN -1 /* try again */
532 * Save/restore the "present" flag that is in the second line of 2-line
535 static inline int get_present2(void *p
)
537 struct message_header
*mhdr
= p
+ GRU_CACHE_LINE_BYTES
;
538 return mhdr
->present
;
541 static inline void restore_present2(void *p
, int val
)
543 struct message_header
*mhdr
= p
+ GRU_CACHE_LINE_BYTES
;
548 * Create a message queue.
549 * qlines - message queue size in cache lines. Includes 2-line header.
551 int gru_create_message_queue(struct gru_message_queue_desc
*mqd
,
552 void *p
, unsigned int bytes
, int nasid
, int vector
, int apicid
)
554 struct message_queue
*mq
= p
;
557 qlines
= bytes
/ GRU_CACHE_LINE_BYTES
- 2;
558 memset(mq
, 0, bytes
);
559 mq
->start
= &mq
->data
;
560 mq
->start2
= &mq
->data
+ (qlines
/ 2 - 1) * GRU_CACHE_LINE_BYTES
;
561 mq
->next
= &mq
->data
;
562 mq
->limit
= &mq
->data
+ (qlines
- 2) * GRU_CACHE_LINE_BYTES
;
566 mq
->head
= gru_mesq_head(2, qlines
/ 2 + 1);
568 mqd
->mq_gpa
= uv_gpa(mq
);
569 mqd
->qlines
= qlines
;
570 mqd
->interrupt_pnode
= nasid
>> 1;
571 mqd
->interrupt_vector
= vector
;
572 mqd
->interrupt_apicid
= apicid
;
575 EXPORT_SYMBOL_GPL(gru_create_message_queue
);
578 * Send a NOOP message to a message queue
580 * 0 - if queue is full after the send. This is the normal case
581 * but various races can change this.
582 * -1 - if mesq sent successfully but queue not full
583 * >0 - unexpected error. MQE_xxx returned
585 static int send_noop_message(void *cb
, struct gru_message_queue_desc
*mqd
,
588 const struct message_header noop_header
= {
589 .present
= MQS_NOOP
, .lines
= 1};
592 struct message_header save_mhdr
, *mhdr
= mesg
;
597 gru_mesq(cb
, mqd
->mq_gpa
, gru_get_tri(mhdr
), 1, IMA
);
601 substatus
= gru_get_cb_message_queue_substatus(cb
);
604 STAT(mesq_noop_unexpected_error
);
605 ret
= MQE_UNEXPECTED_CB_ERR
;
607 case CBSS_LB_OVERFLOWED
:
608 STAT(mesq_noop_lb_overflow
);
609 ret
= MQE_CONGESTION
;
611 case CBSS_QLIMIT_REACHED
:
612 STAT(mesq_noop_qlimit_reached
);
615 case CBSS_AMO_NACKED
:
616 STAT(mesq_noop_amo_nacked
);
617 ret
= MQE_CONGESTION
;
619 case CBSS_PUT_NACKED
:
620 STAT(mesq_noop_put_nacked
);
621 m
= mqd
->mq_gpa
+ (gru_get_amo_value_head(cb
) << 6);
622 gru_vstore(cb
, m
, gru_get_tri(mesg
), XTYPE_CL
, 1, 1,
624 if (gru_wait(cb
) == CBS_IDLE
)
627 ret
= MQE_UNEXPECTED_CB_ERR
;
629 case CBSS_PAGE_OVERFLOW
:
630 STAT(mesq_noop_page_overflow
);
641 * Handle a gru_mesq full.
643 static int send_message_queue_full(void *cb
, struct gru_message_queue_desc
*mqd
,
644 void *mesg
, int lines
)
646 union gru_mesqhead mqh
;
647 unsigned int limit
, head
;
648 unsigned long avalue
;
651 /* Determine if switching to first/second half of q */
652 avalue
= gru_get_amo_value(cb
);
653 head
= gru_get_amo_value_head(cb
);
654 limit
= gru_get_amo_value_limit(cb
);
656 qlines
= mqd
->qlines
;
657 half
= (limit
!= qlines
);
660 mqh
= gru_mesq_head(qlines
/ 2 + 1, qlines
);
662 mqh
= gru_mesq_head(2, qlines
/ 2 + 1);
664 /* Try to get lock for switching head pointer */
665 gru_gamir(cb
, EOP_IR_CLR
, HSTATUS(mqd
->mq_gpa
, half
), XTYPE_DW
, IMA
);
666 if (gru_wait(cb
) != CBS_IDLE
)
668 if (!gru_get_amo_value(cb
)) {
669 STAT(mesq_qf_locked
);
670 return MQE_QUEUE_FULL
;
673 /* Got the lock. Send optional NOP if queue not full, */
675 if (send_noop_message(cb
, mqd
, mesg
)) {
676 gru_gamir(cb
, EOP_IR_INC
, HSTATUS(mqd
->mq_gpa
, half
),
678 if (gru_wait(cb
) != CBS_IDLE
)
680 STAT(mesq_qf_noop_not_full
);
686 /* Then flip queuehead to other half of queue. */
687 gru_gamer(cb
, EOP_ERR_CSWAP
, mqd
->mq_gpa
, XTYPE_DW
, mqh
.val
, avalue
,
689 if (gru_wait(cb
) != CBS_IDLE
)
692 /* If not successfully in swapping queue head, clear the hstatus lock */
693 if (gru_get_amo_value(cb
) != avalue
) {
694 STAT(mesq_qf_switch_head_failed
);
695 gru_gamir(cb
, EOP_IR_INC
, HSTATUS(mqd
->mq_gpa
, half
), XTYPE_DW
,
697 if (gru_wait(cb
) != CBS_IDLE
)
702 STAT(mesq_qf_unexpected_error
);
703 return MQE_UNEXPECTED_CB_ERR
;
707 * Handle a PUT failure. Note: if message was a 2-line message, one of the
708 * lines might have successfully have been written. Before sending the
709 * message, "present" must be cleared in BOTH lines to prevent the receiver
710 * from prematurely seeing the full message.
712 static int send_message_put_nacked(void *cb
, struct gru_message_queue_desc
*mqd
,
713 void *mesg
, int lines
)
715 unsigned long m
, *val
= mesg
, gpa
, save
;
718 m
= mqd
->mq_gpa
+ (gru_get_amo_value_head(cb
) << 6);
720 gru_vset(cb
, m
, 0, XTYPE_CL
, lines
, 1, IMA
);
721 if (gru_wait(cb
) != CBS_IDLE
)
722 return MQE_UNEXPECTED_CB_ERR
;
724 gru_vstore(cb
, m
, gru_get_tri(mesg
), XTYPE_CL
, lines
, 1, IMA
);
725 if (gru_wait(cb
) != CBS_IDLE
)
726 return MQE_UNEXPECTED_CB_ERR
;
728 if (!mqd
->interrupt_vector
)
732 * Send a cross-partition interrupt to the SSI that contains the target
733 * message queue. Normally, the interrupt is automatically delivered by
734 * hardware but some error conditions require explicit delivery.
735 * Use the GRU to deliver the interrupt. Otherwise partition failures
736 * could cause unrecovered errors.
738 gpa
= uv_global_gru_mmr_address(mqd
->interrupt_pnode
, UVH_IPI_INT
);
740 *val
= uv_hub_ipi_value(mqd
->interrupt_apicid
, mqd
->interrupt_vector
,
742 gru_vstore_phys(cb
, gpa
, gru_get_tri(mesg
), IAA_REGISTER
, IMA
);
746 return MQE_UNEXPECTED_CB_ERR
;
751 * Handle a gru_mesq failure. Some of these failures are software recoverable
754 static int send_message_failure(void *cb
, struct gru_message_queue_desc
*mqd
,
755 void *mesg
, int lines
)
757 int substatus
, ret
= 0;
759 substatus
= gru_get_cb_message_queue_substatus(cb
);
762 STAT(mesq_send_unexpected_error
);
763 ret
= MQE_UNEXPECTED_CB_ERR
;
765 case CBSS_LB_OVERFLOWED
:
766 STAT(mesq_send_lb_overflow
);
767 ret
= MQE_CONGESTION
;
769 case CBSS_QLIMIT_REACHED
:
770 STAT(mesq_send_qlimit_reached
);
771 ret
= send_message_queue_full(cb
, mqd
, mesg
, lines
);
773 case CBSS_AMO_NACKED
:
774 STAT(mesq_send_amo_nacked
);
775 ret
= MQE_CONGESTION
;
777 case CBSS_PUT_NACKED
:
778 STAT(mesq_send_put_nacked
);
779 ret
= send_message_put_nacked(cb
, mqd
, mesg
, lines
);
781 case CBSS_PAGE_OVERFLOW
:
782 STAT(mesq_page_overflow
);
791 * Send a message to a message queue
792 * mqd message queue descriptor
793 * mesg message. ust be vaddr within a GSEG
794 * bytes message size (<= 2 CL)
796 int gru_send_message_gpa(struct gru_message_queue_desc
*mqd
, void *mesg
,
799 struct message_header
*mhdr
;
802 int istatus
, clines
, ret
;
805 BUG_ON(bytes
< sizeof(int) || bytes
> 2 * GRU_CACHE_LINE_BYTES
);
807 clines
= DIV_ROUND_UP(bytes
, GRU_CACHE_LINE_BYTES
);
808 if (gru_get_cpu_resources(bytes
, &cb
, &dsr
))
809 return MQE_BUG_NO_RESOURCES
;
810 memcpy(dsr
, mesg
, bytes
);
812 mhdr
->present
= MQS_FULL
;
813 mhdr
->lines
= clines
;
815 mhdr
->present2
= get_present2(mhdr
);
816 restore_present2(mhdr
, MQS_FULL
);
821 gru_mesq(cb
, mqd
->mq_gpa
, gru_get_tri(mhdr
), clines
, IMA
);
822 istatus
= gru_wait(cb
);
823 if (istatus
!= CBS_IDLE
)
824 ret
= send_message_failure(cb
, mqd
, dsr
, clines
);
825 } while (ret
== MQIE_AGAIN
);
826 gru_free_cpu_resources(cb
, dsr
);
829 STAT(mesq_send_failed
);
832 EXPORT_SYMBOL_GPL(gru_send_message_gpa
);
835 * Advance the receive pointer for the queue to the next message.
837 void gru_free_message(struct gru_message_queue_desc
*mqd
, void *mesg
)
839 struct message_queue
*mq
= mqd
->mq
;
840 struct message_header
*mhdr
= mq
->next
;
843 int lines
= mhdr
->lines
;
846 restore_present2(mhdr
, MQS_EMPTY
);
847 mhdr
->present
= MQS_EMPTY
;
850 next
= pnext
+ GRU_CACHE_LINE_BYTES
* lines
;
851 if (next
== mq
->limit
) {
854 } else if (pnext
< mq
->start2
&& next
>= mq
->start2
) {
859 mq
->hstatus
[half
] = 1;
862 EXPORT_SYMBOL_GPL(gru_free_message
);
865 * Get next message from message queue. Return NULL if no message
866 * present. User must call next_message() to move to next message.
869 void *gru_get_next_message(struct gru_message_queue_desc
*mqd
)
871 struct message_queue
*mq
= mqd
->mq
;
872 struct message_header
*mhdr
= mq
->next
;
873 int present
= mhdr
->present
;
875 /* skip NOOP messages */
876 while (present
== MQS_NOOP
) {
877 gru_free_message(mqd
, mhdr
);
879 present
= mhdr
->present
;
882 /* Wait for both halves of 2 line messages */
883 if (present
== MQS_FULL
&& mhdr
->lines
== 2 &&
884 get_present2(mhdr
) == MQS_EMPTY
)
888 STAT(mesq_receive_none
);
892 if (mhdr
->lines
== 2)
893 restore_present2(mhdr
, mhdr
->present2
);
898 EXPORT_SYMBOL_GPL(gru_get_next_message
);
900 /* ---------------------- GRU DATA COPY FUNCTIONS ---------------------------*/
903 * Load a DW from a global GPA. The GPA can be a memory or MMR address.
905 int gru_read_gpa(unsigned long *value
, unsigned long gpa
)
912 if (gru_get_cpu_resources(GRU_NUM_KERNEL_DSR_BYTES
, &cb
, &dsr
))
913 return MQE_BUG_NO_RESOURCES
;
915 gru_vload_phys(cb
, gpa
, gru_get_tri(dsr
), iaa
, IMA
);
918 *value
= *(unsigned long *)dsr
;
919 gru_free_cpu_resources(cb
, dsr
);
922 EXPORT_SYMBOL_GPL(gru_read_gpa
);
926 * Copy a block of data using the GRU resources
928 int gru_copy_gpa(unsigned long dest_gpa
, unsigned long src_gpa
,
936 if (gru_get_cpu_resources(GRU_NUM_KERNEL_DSR_BYTES
, &cb
, &dsr
))
937 return MQE_BUG_NO_RESOURCES
;
938 gru_bcopy(cb
, src_gpa
, dest_gpa
, gru_get_tri(dsr
),
939 XTYPE_B
, bytes
, GRU_NUM_KERNEL_DSR_CL
, IMA
);
941 gru_free_cpu_resources(cb
, dsr
);
944 EXPORT_SYMBOL_GPL(gru_copy_gpa
);
946 /* ------------------- KERNEL QUICKTESTS RUN AT STARTUP ----------------*/
947 /* Temp - will delete after we gain confidence in the GRU */
949 static int quicktest0(unsigned long arg
)
958 if (gru_get_cpu_resources(GRU_CACHE_LINE_BYTES
, &cb
, &dsr
))
959 return MQE_BUG_NO_RESOURCES
;
964 gru_vload(cb
, uv_gpa(&word0
), gru_get_tri(dsr
), XTYPE_DW
, 1, 1, IMA
);
965 if (gru_wait(cb
) != CBS_IDLE
) {
966 printk(KERN_DEBUG
"GRU:%d quicktest0: CBR failure 1\n", smp_processor_id());
971 printk(KERN_DEBUG
"GRU:%d quicktest0 bad magic 0x%lx\n", smp_processor_id(), *p
);
974 gru_vstore(cb
, uv_gpa(&word1
), gru_get_tri(dsr
), XTYPE_DW
, 1, 1, IMA
);
975 if (gru_wait(cb
) != CBS_IDLE
) {
976 printk(KERN_DEBUG
"GRU:%d quicktest0: CBR failure 2\n", smp_processor_id());
980 if (word0
!= word1
|| word1
!= MAGIC
) {
982 "GRU:%d quicktest0 err: found 0x%lx, expected 0x%lx\n",
983 smp_processor_id(), word1
, MAGIC
);
989 gru_free_cpu_resources(cb
, dsr
);
993 #define ALIGNUP(p, q) ((void *)(((unsigned long)(p) + (q) - 1) & ~(q - 1)))
995 static int quicktest1(unsigned long arg
)
997 struct gru_message_queue_desc mqd
;
1001 char mes
[GRU_CACHE_LINE_BYTES
], *m
;
1003 /* Need 1K cacheline aligned that does not cross page boundary */
1004 p
= kmalloc(4096, 0);
1007 mq
= ALIGNUP(p
, 1024);
1008 memset(mes
, 0xee, sizeof(mes
));
1011 gru_create_message_queue(&mqd
, mq
, 8 * GRU_CACHE_LINE_BYTES
, 0, 0, 0);
1012 for (i
= 0; i
< 6; i
++) {
1015 ret
= gru_send_message_gpa(&mqd
, mes
, sizeof(mes
));
1016 } while (ret
== MQE_CONGESTION
);
1020 if (ret
!= MQE_QUEUE_FULL
|| i
!= 4) {
1021 printk(KERN_DEBUG
"GRU:%d quicktest1: unexpect status %d, i %d\n",
1022 smp_processor_id(), ret
, i
);
1026 for (i
= 0; i
< 6; i
++) {
1027 m
= gru_get_next_message(&mqd
);
1028 if (!m
|| m
[8] != i
)
1030 gru_free_message(&mqd
, m
);
1033 printk(KERN_DEBUG
"GRU:%d quicktest2: bad message, i %d, m %p, m8 %d\n",
1034 smp_processor_id(), i
, m
, m
? m
[8] : -1);
1044 static int quicktest2(unsigned long arg
)
1046 static DECLARE_COMPLETION(cmp
);
1053 struct gru_control_block_status
*gen
;
1054 int i
, k
, istatus
, bytes
;
1056 bytes
= numcb
* 4 * 8;
1057 buf
= kmalloc(bytes
, GFP_KERNEL
);
1062 han
= gru_reserve_async_resources(blade_id
, numcb
, 0, &cmp
);
1066 gru_lock_async_resource(han
, &cb0
, NULL
);
1067 memset(buf
, 0xee, bytes
);
1068 for (i
= 0; i
< numcb
; i
++)
1069 gru_vset(cb0
+ i
* GRU_HANDLE_STRIDE
, uv_gpa(&buf
[i
* 4]), 0,
1070 XTYPE_DW
, 4, 1, IMA_INTERRUPT
);
1075 gru_wait_async_cbr(han
);
1076 for (i
= 0; i
< numcb
; i
++) {
1077 cb
= cb0
+ i
* GRU_HANDLE_STRIDE
;
1078 istatus
= gru_check_status(cb
);
1079 if (istatus
!= CBS_ACTIVE
&& istatus
!= CBS_CALL_OS
)
1084 if (istatus
!= CBS_IDLE
) {
1085 printk(KERN_DEBUG
"GRU:%d quicktest2: cb %d, exception\n", smp_processor_id(), i
);
1087 } else if (buf
[4 * i
] || buf
[4 * i
+ 1] || buf
[4 * i
+ 2] ||
1089 printk(KERN_DEBUG
"GRU:%d quicktest2:cb %d, buf 0x%lx, 0x%lx, 0x%lx, 0x%lx\n",
1090 smp_processor_id(), i
, buf
[4 * i
], buf
[4 * i
+ 1], buf
[4 * i
+ 2], buf
[4 * i
+ 3]);
1095 gen
->istatus
= CBS_CALL_OS
; /* don't handle this CBR again */
1099 gru_unlock_async_resource(han
);
1100 gru_release_async_resources(han
);
1107 static int quicktest3(unsigned long arg
)
1109 char buf1
[BUFSIZE
], buf2
[BUFSIZE
];
1112 memset(buf2
, 0, sizeof(buf2
));
1113 memset(buf1
, get_cycles() & 255, sizeof(buf1
));
1114 gru_copy_gpa(uv_gpa(buf2
), uv_gpa(buf1
), BUFSIZE
);
1115 if (memcmp(buf1
, buf2
, BUFSIZE
)) {
1116 printk(KERN_DEBUG
"GRU:%d quicktest3 error\n", smp_processor_id());
1123 * Debugging only. User hook for various kernel tests
1126 int gru_ktest(unsigned long arg
)
1130 switch (arg
& 0xff) {
1132 ret
= quicktest0(arg
);
1135 ret
= quicktest1(arg
);
1138 ret
= quicktest2(arg
);
1141 ret
= quicktest3(arg
);
1144 ret
= gru_free_kernel_contexts();
1151 int gru_kservices_init(void)
1156 void gru_kservices_exit(void)
1158 if (gru_free_kernel_contexts())