xref: /titanic_50/usr/src/uts/sun4/ml/xc.s (revision 7c478bd95313f5f23a4c958a745db2134aa03244)
1*7c478bd9Sstevel@tonic-gate/*
2*7c478bd9Sstevel@tonic-gate * CDDL HEADER START
3*7c478bd9Sstevel@tonic-gate *
4*7c478bd9Sstevel@tonic-gate * The contents of this file are subject to the terms of the
5*7c478bd9Sstevel@tonic-gate * Common Development and Distribution License, Version 1.0 only
6*7c478bd9Sstevel@tonic-gate * (the "License").  You may not use this file except in compliance
7*7c478bd9Sstevel@tonic-gate * with the License.
8*7c478bd9Sstevel@tonic-gate *
9*7c478bd9Sstevel@tonic-gate * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10*7c478bd9Sstevel@tonic-gate * or http://www.opensolaris.org/os/licensing.
11*7c478bd9Sstevel@tonic-gate * See the License for the specific language governing permissions
12*7c478bd9Sstevel@tonic-gate * and limitations under the License.
13*7c478bd9Sstevel@tonic-gate *
14*7c478bd9Sstevel@tonic-gate * When distributing Covered Code, include this CDDL HEADER in each
15*7c478bd9Sstevel@tonic-gate * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16*7c478bd9Sstevel@tonic-gate * If applicable, add the following below this CDDL HEADER, with the
17*7c478bd9Sstevel@tonic-gate * fields enclosed by brackets "[]" replaced with your own identifying
18*7c478bd9Sstevel@tonic-gate * information: Portions Copyright [yyyy] [name of copyright owner]
19*7c478bd9Sstevel@tonic-gate *
20*7c478bd9Sstevel@tonic-gate * CDDL HEADER END
21*7c478bd9Sstevel@tonic-gate */
22*7c478bd9Sstevel@tonic-gate/*
23*7c478bd9Sstevel@tonic-gate * Copyright 2005 Sun Microsystems, Inc.  All rights reserved.
24*7c478bd9Sstevel@tonic-gate * Use is subject to license terms.
25*7c478bd9Sstevel@tonic-gate */
26*7c478bd9Sstevel@tonic-gate
27*7c478bd9Sstevel@tonic-gate#pragma ident	"%Z%%M%	%I%	%E% SMI"
28*7c478bd9Sstevel@tonic-gate
29*7c478bd9Sstevel@tonic-gate#if defined(lint)
30*7c478bd9Sstevel@tonic-gate#include <sys/types.h>
31*7c478bd9Sstevel@tonic-gate#include <sys/cpuvar.h>
32*7c478bd9Sstevel@tonic-gate#else	/*lint */
33*7c478bd9Sstevel@tonic-gate#include "assym.h"
34*7c478bd9Sstevel@tonic-gate#endif	/* lint */
35*7c478bd9Sstevel@tonic-gate
36*7c478bd9Sstevel@tonic-gate#include <sys/param.h>
37*7c478bd9Sstevel@tonic-gate#include <sys/asm_linkage.h>
38*7c478bd9Sstevel@tonic-gate#include <sys/errno.h>
39*7c478bd9Sstevel@tonic-gate#include <sys/intreg.h>
40*7c478bd9Sstevel@tonic-gate#include <sys/intr.h>
41*7c478bd9Sstevel@tonic-gate#include <sys/x_call.h>
42*7c478bd9Sstevel@tonic-gate#include <sys/privregs.h>
43*7c478bd9Sstevel@tonic-gate#include <sys/machthread.h>
44*7c478bd9Sstevel@tonic-gate#include <sys/machtrap.h>
45*7c478bd9Sstevel@tonic-gate#include <sys/xc_impl.h>
46*7c478bd9Sstevel@tonic-gate#include <sys/bitmap.h>
47*7c478bd9Sstevel@tonic-gate
48*7c478bd9Sstevel@tonic-gate#ifdef TRAPTRACE
49*7c478bd9Sstevel@tonic-gate#include <sys/traptrace.h>
50*7c478bd9Sstevel@tonic-gate#endif /* TRAPTRACE */
51*7c478bd9Sstevel@tonic-gate
52*7c478bd9Sstevel@tonic-gate
53*7c478bd9Sstevel@tonic-gate#if defined(lint)
54*7c478bd9Sstevel@tonic-gate
55*7c478bd9Sstevel@tonic-gate/* ARGSUSED */
56*7c478bd9Sstevel@tonic-gatevoid
57*7c478bd9Sstevel@tonic-gatesend_self_xcall(struct cpu *cpu, uint64_t arg1, uint64_t arg2, xcfunc_t *func)
58*7c478bd9Sstevel@tonic-gate{}
59*7c478bd9Sstevel@tonic-gate
60*7c478bd9Sstevel@tonic-gate#else
61*7c478bd9Sstevel@tonic-gate/*
62*7c478bd9Sstevel@tonic-gate * For a x-trap request to the same processor, just send a fast trap.
63*7c478bd9Sstevel@tonic-gate * Does not accept inums.
64*7c478bd9Sstevel@tonic-gate */
65*7c478bd9Sstevel@tonic-gate	ENTRY_NP(send_self_xcall)
66*7c478bd9Sstevel@tonic-gate	ta	 ST_SELFXCALL
67*7c478bd9Sstevel@tonic-gate	retl
68*7c478bd9Sstevel@tonic-gate	nop
69*7c478bd9Sstevel@tonic-gate	SET_SIZE(send_self_xcall)
70*7c478bd9Sstevel@tonic-gate#endif	/* lint */
71*7c478bd9Sstevel@tonic-gate
72*7c478bd9Sstevel@tonic-gate#if defined(lint)
73*7c478bd9Sstevel@tonic-gatevoid
74*7c478bd9Sstevel@tonic-gateidle_stop_xcall(void)
75*7c478bd9Sstevel@tonic-gate{}
76*7c478bd9Sstevel@tonic-gate#else
77*7c478bd9Sstevel@tonic-gate/*
78*7c478bd9Sstevel@tonic-gate * idle or stop xcall handler.
79*7c478bd9Sstevel@tonic-gate *
80*7c478bd9Sstevel@tonic-gate * Called in response to an xt_some initiated by idle_other_cpus
81*7c478bd9Sstevel@tonic-gate * and stop_other_cpus.
82*7c478bd9Sstevel@tonic-gate *
83*7c478bd9Sstevel@tonic-gate *	Entry:
84*7c478bd9Sstevel@tonic-gate *		%g1 - handler at TL==0
85*7c478bd9Sstevel@tonic-gate *
86*7c478bd9Sstevel@tonic-gate * 	Register Usage:
87*7c478bd9Sstevel@tonic-gate *		%g1 - preserved
88*7c478bd9Sstevel@tonic-gate *		%g4 - pil
89*7c478bd9Sstevel@tonic-gate *
90*7c478bd9Sstevel@tonic-gate * %g1 will either be cpu_idle_self or cpu_stop_self and is
91*7c478bd9Sstevel@tonic-gate * passed to sys_trap, to run at TL=0. No need to worry about
92*7c478bd9Sstevel@tonic-gate * the regp passed to cpu_idle_self/cpu_stop_self, since
93*7c478bd9Sstevel@tonic-gate * neither require arguments.
94*7c478bd9Sstevel@tonic-gate */
95*7c478bd9Sstevel@tonic-gate	ENTRY_NP(idle_stop_xcall)
96*7c478bd9Sstevel@tonic-gate	rdpr	%pil, %g4
97*7c478bd9Sstevel@tonic-gate	cmp	%g4, XCALL_PIL
98*7c478bd9Sstevel@tonic-gate	ba,pt	%xcc, sys_trap
99*7c478bd9Sstevel@tonic-gate	  movl	%xcc, XCALL_PIL, %g4
100*7c478bd9Sstevel@tonic-gate	SET_SIZE(idle_stop_xcall)
101*7c478bd9Sstevel@tonic-gate
102*7c478bd9Sstevel@tonic-gate#endif	/* lint */
103*7c478bd9Sstevel@tonic-gate
104