xref: /illumos-gate/usr/src/uts/sun4u/os/cpc_subr.c (revision 7b209c2c)
1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License (the "License").
6  * You may not use this file except in compliance with the License.
7  *
8  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9  * or http://www.opensolaris.org/os/licensing.
10  * See the License for the specific language governing permissions
11  * and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL HEADER in each
14  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15  * If applicable, add the following below this CDDL HEADER, with the
16  * fields enclosed by brackets "[]" replaced with your own identifying
17  * information: Portions Copyright [yyyy] [name of copyright owner]
18  *
19  * CDDL HEADER END
20  */
21 /*
22  * Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
23  * Use is subject to license terms.
24  */
25 
26 #pragma ident	"%Z%%M%	%I%	%E% SMI"
27 
28 /*
29  * sun4u common CPC subroutines.
30  */
31 
32 #include <sys/types.h>
33 #include <sys/time.h>
34 #include <sys/atomic.h>
35 #include <sys/thread.h>
36 #include <sys/regset.h>
37 #include <sys/archsystm.h>
38 #include <sys/machsystm.h>
39 #include <sys/cpc_impl.h>
40 #include <sys/cpc_ultra.h>
41 #include <sys/sunddi.h>
42 #include <sys/intr.h>
43 #include <sys/ivintr.h>
44 #include <sys/x_call.h>
45 #include <sys/cpuvar.h>
46 #include <sys/machcpuvar.h>
47 #include <sys/cpc_pcbe.h>
48 #include <sys/modctl.h>
49 #include <sys/sdt.h>
50 
51 uint64_t		cpc_level15_inum;	/* used in interrupt.s */
52 int			cpc_has_overflow_intr;	/* set in cheetah.c */
53 
54 extern kcpc_ctx_t *kcpc_overflow_intr(caddr_t arg, uint64_t bitmap);
55 extern int kcpc_counts_include_idle;
56 
57 /*
58  * Called on the boot CPU during startup.
59  */
60 void
61 kcpc_hw_init(void)
62 {
63 	if (cpc_has_overflow_intr) {
64 		cpc_level15_inum = add_softintr(PIL_15,
65 		    kcpc_hw_overflow_intr, NULL, SOFTINT_MT);
66 	}
67 
68 	/*
69 	 * Make sure the boot CPU gets set up.
70 	 */
71 	kcpc_hw_startup_cpu(CPU->cpu_flags);
72 }
73 
74 /*
75  * Prepare for CPC interrupts and install an idle thread CPC context.
76  */
77 void
78 kcpc_hw_startup_cpu(ushort_t cpflags)
79 {
80 	cpu_t		*cp = CPU;
81 	kthread_t	*t = cp->cpu_idle_thread;
82 
83 	ASSERT(t->t_bound_cpu == cp);
84 
85 	if (cpc_has_overflow_intr && (cpflags & CPU_FROZEN) == 0) {
86 		int pstate_save = disable_vec_intr();
87 
88 		ASSERT(cpc_level15_inum != 0);
89 
90 		intr_enqueue_req(PIL_15, cpc_level15_inum);
91 		enable_vec_intr(pstate_save);
92 	}
93 
94 	mutex_init(&cp->cpu_cpc_ctxlock, "cpu_cpc_ctxlock", MUTEX_DEFAULT, 0);
95 
96 	if (kcpc_counts_include_idle)
97 		return;
98 
99 	installctx(t, cp, kcpc_idle_save, kcpc_idle_restore, NULL, NULL,
100 	    NULL, NULL);
101 }
102 
103 /*
104  * Examine the processor and load an appropriate PCBE.
105  */
106 int
107 kcpc_hw_load_pcbe(void)
108 {
109 	uint64_t	ver = ultra_getver();
110 
111 	return (kcpc_pcbe_tryload(NULL, ULTRA_VER_MANUF(ver),
112 	    ULTRA_VER_IMPL(ver), ULTRA_VER_MASK(ver)));
113 }
114 
115 /*ARGSUSED*/
116 static void
117 kcpc_remotestop_func(uint64_t arg1, uint64_t arg2)
118 {
119 	ASSERT(CPU->cpu_cpc_ctx != NULL);
120 	pcbe_ops->pcbe_allstop();
121 	atomic_or_uint(&CPU->cpu_cpc_ctx->kc_flags, KCPC_CTX_INVALID_STOPPED);
122 }
123 
124 /*
125  * Ensure the counters are stopped on the given processor.
126  *
127  * Callers must ensure kernel preemption is disabled.
128  */
129 void
130 kcpc_remote_stop(cpu_t *cp)
131 {
132 	xc_one(cp->cpu_id, kcpc_remotestop_func, 0, 0);
133 }
134 
135 /*ARGSUSED*/
136 int
137 kcpc_hw_cpu_hook(processorid_t cpuid, ulong_t *kcpc_cpumap)
138 {
139 	return (0);
140 }
141 
142 int
143 kcpc_hw_lwp_hook(void)
144 {
145 	return (0);
146 }
147