1 | /* $Id: mp-r0drv-solaris.c 29284 2010-05-10 00:22:16Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * IPRT - Multiprocessor, Ring-0 Driver, Solaris.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2008 Oracle Corporation
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License (GPL) as published by the Free Software
|
---|
13 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | *
|
---|
17 | * The contents of this file may alternatively be used under the terms
|
---|
18 | * of the Common Development and Distribution License Version 1.0
|
---|
19 | * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
20 | * VirtualBox OSE distribution, in which case the provisions of the
|
---|
21 | * CDDL are applicable instead of those of the GPL.
|
---|
22 | *
|
---|
23 | * You may elect to license modified versions of this file under the
|
---|
24 | * terms and conditions of either the GPL or the CDDL or both.
|
---|
25 | */
|
---|
26 |
|
---|
27 |
|
---|
28 | /*******************************************************************************
|
---|
29 | * Header Files *
|
---|
30 | *******************************************************************************/
|
---|
31 | #include "../the-solaris-kernel.h"
|
---|
32 | #include "internal/iprt.h"
|
---|
33 | #include <iprt/mp.h>
|
---|
34 | #include <iprt/cpuset.h>
|
---|
35 |
|
---|
36 | #include <iprt/asm.h>
|
---|
37 | #if defined(RT_ARCH_AMD64) || defined(RT_ARCH_X86)
|
---|
38 | # include <iprt/asm-amd64-x86.h>
|
---|
39 | #endif
|
---|
40 | #include <iprt/err.h>
|
---|
41 | #include "r0drv/mp-r0drv.h"
|
---|
42 |
|
---|
43 |
|
---|
44 |
|
---|
45 | RTDECL(bool) RTMpIsCpuWorkPending(void)
|
---|
46 | {
|
---|
47 | return false;
|
---|
48 | }
|
---|
49 |
|
---|
50 |
|
---|
51 | RTDECL(RTCPUID) RTMpCpuId(void)
|
---|
52 | {
|
---|
53 | return vbi_cpu_id();
|
---|
54 | }
|
---|
55 |
|
---|
56 |
|
---|
57 | RTDECL(int) RTMpCpuIdToSetIndex(RTCPUID idCpu)
|
---|
58 | {
|
---|
59 | return idCpu < vbi_cpu_maxcount() ? idCpu : -1;
|
---|
60 | }
|
---|
61 |
|
---|
62 |
|
---|
63 | RTDECL(RTCPUID) RTMpCpuIdFromSetIndex(int iCpu)
|
---|
64 | {
|
---|
65 | return (unsigned)iCpu < vbi_cpu_maxcount() ? iCpu : NIL_RTCPUID;
|
---|
66 | }
|
---|
67 |
|
---|
68 |
|
---|
69 | RTDECL(RTCPUID) RTMpGetMaxCpuId(void)
|
---|
70 | {
|
---|
71 | return vbi_max_cpu_id();
|
---|
72 | }
|
---|
73 |
|
---|
74 |
|
---|
75 | RTDECL(bool) RTMpIsCpuOnline(RTCPUID idCpu)
|
---|
76 | {
|
---|
77 | /*
|
---|
78 | * We cannot query CPU status recursively, check cpu member from cached set.
|
---|
79 | */
|
---|
80 | if (idCpu >= vbi_cpu_count())
|
---|
81 | return false;
|
---|
82 |
|
---|
83 | return RTCpuSetIsMember(&g_rtMpSolarisCpuSet, idCpu);
|
---|
84 |
|
---|
85 | #if 0
|
---|
86 | return idCpu < vbi_cpu_count() && vbi_cpu_online(idCpu);
|
---|
87 | #endif
|
---|
88 | }
|
---|
89 |
|
---|
90 |
|
---|
91 | RTDECL(bool) RTMpIsCpuPossible(RTCPUID idCpu)
|
---|
92 | {
|
---|
93 | return idCpu < vbi_cpu_count();
|
---|
94 | }
|
---|
95 |
|
---|
96 |
|
---|
97 | RTDECL(PRTCPUSET) RTMpGetSet(PRTCPUSET pSet)
|
---|
98 | {
|
---|
99 | RTCPUID idCpu;
|
---|
100 |
|
---|
101 | RTCpuSetEmpty(pSet);
|
---|
102 | idCpu = RTMpGetMaxCpuId(); /* it's inclusive */
|
---|
103 | do
|
---|
104 | {
|
---|
105 | if (RTMpIsCpuPossible(idCpu))
|
---|
106 | RTCpuSetAdd(pSet, idCpu);
|
---|
107 | } while (idCpu-- > 0);
|
---|
108 |
|
---|
109 | return pSet;
|
---|
110 | }
|
---|
111 |
|
---|
112 |
|
---|
113 | RTDECL(RTCPUID) RTMpGetCount(void)
|
---|
114 | {
|
---|
115 | return vbi_cpu_count();
|
---|
116 | }
|
---|
117 |
|
---|
118 |
|
---|
119 | RTDECL(PRTCPUSET) RTMpGetOnlineSet(PRTCPUSET pSet)
|
---|
120 | {
|
---|
121 | /*
|
---|
122 | * We cannot query CPU status recursively, return the cached set.
|
---|
123 | */
|
---|
124 | *pSet = g_rtMpSolarisCpuSet;
|
---|
125 | return pSet;
|
---|
126 |
|
---|
127 | #if 0
|
---|
128 | RTCPUID idCpu;
|
---|
129 |
|
---|
130 | RTCpuSetEmpty(pSet);
|
---|
131 | idCpu = RTMpGetMaxCpuId(); /* it's inclusive */
|
---|
132 | do
|
---|
133 | {
|
---|
134 | if (RTMpIsCpuOnline(idCpu))
|
---|
135 | RTCpuSetAdd(pSet, idCpu);
|
---|
136 | } while (idCpu-- > 0);
|
---|
137 |
|
---|
138 | return pSet;
|
---|
139 | #endif
|
---|
140 | }
|
---|
141 |
|
---|
142 |
|
---|
143 | RTDECL(RTCPUID) RTMpGetOnlineCount(void)
|
---|
144 | {
|
---|
145 | RTCPUSET Set;
|
---|
146 | RTMpGetOnlineSet(&Set);
|
---|
147 | return RTCpuSetCount(&Set);
|
---|
148 |
|
---|
149 | #if 0
|
---|
150 | int c;
|
---|
151 | int cnt = 0;
|
---|
152 |
|
---|
153 | for (c = 0; c < vbi_cpu_count(); ++c)
|
---|
154 | {
|
---|
155 | if (vbi_cpu_online(c))
|
---|
156 | ++cnt;
|
---|
157 | }
|
---|
158 | return cnt;
|
---|
159 | #endif
|
---|
160 | }
|
---|
161 |
|
---|
162 |
|
---|
163 |
|
---|
164 | /**
|
---|
165 | * Wrapper between the native solaris per-cpu callback and PFNRTWORKER
|
---|
166 | * for the RTMpOnAll API.
|
---|
167 | *
|
---|
168 | * @param uArgs Pointer to the RTMPARGS package.
|
---|
169 | * @param uIgnored1 Ignored.
|
---|
170 | * @param uIgnored2 Ignored.
|
---|
171 | */
|
---|
172 | static int rtmpOnAllSolarisWrapper(void *uArg, void *uIgnored1, void *uIgnored2)
|
---|
173 | {
|
---|
174 | PRTMPARGS pArgs = (PRTMPARGS)(uArg);
|
---|
175 |
|
---|
176 | pArgs->pfnWorker(RTMpCpuId(), pArgs->pvUser1, pArgs->pvUser2);
|
---|
177 |
|
---|
178 | NOREF(uIgnored1);
|
---|
179 | NOREF(uIgnored2);
|
---|
180 | return 0;
|
---|
181 | }
|
---|
182 |
|
---|
183 |
|
---|
184 | RTDECL(int) RTMpOnAll(PFNRTMPWORKER pfnWorker, void *pvUser1, void *pvUser2)
|
---|
185 | {
|
---|
186 | RTMPARGS Args;
|
---|
187 | RT_ASSERT_INTS_ON();
|
---|
188 |
|
---|
189 | Args.pfnWorker = pfnWorker;
|
---|
190 | Args.pvUser1 = pvUser1;
|
---|
191 | Args.pvUser2 = pvUser2;
|
---|
192 | Args.idCpu = NIL_RTCPUID;
|
---|
193 | Args.cHits = 0;
|
---|
194 |
|
---|
195 | vbi_preempt_disable();
|
---|
196 |
|
---|
197 | vbi_execute_on_all(rtmpOnAllSolarisWrapper, &Args);
|
---|
198 |
|
---|
199 | vbi_preempt_enable();
|
---|
200 |
|
---|
201 | return VINF_SUCCESS;
|
---|
202 | }
|
---|
203 |
|
---|
204 |
|
---|
205 | /**
|
---|
206 | * Wrapper between the native solaris per-cpu callback and PFNRTWORKER
|
---|
207 | * for the RTMpOnOthers API.
|
---|
208 | *
|
---|
209 | * @param uArgs Pointer to the RTMPARGS package.
|
---|
210 | * @param uIgnored1 Ignored.
|
---|
211 | * @param uIgnored2 Ignored.
|
---|
212 | */
|
---|
213 | static int rtmpOnOthersSolarisWrapper(void *uArg, void *uIgnored1, void *uIgnored2)
|
---|
214 | {
|
---|
215 | PRTMPARGS pArgs = (PRTMPARGS)(uArg);
|
---|
216 | RTCPUID idCpu = RTMpCpuId();
|
---|
217 |
|
---|
218 | Assert(idCpu != pArgs->idCpu);
|
---|
219 | pArgs->pfnWorker(idCpu, pArgs->pvUser1, pArgs->pvUser2);
|
---|
220 |
|
---|
221 | NOREF(uIgnored1);
|
---|
222 | NOREF(uIgnored2);
|
---|
223 | return 0;
|
---|
224 | }
|
---|
225 |
|
---|
226 |
|
---|
227 | RTDECL(int) RTMpOnOthers(PFNRTMPWORKER pfnWorker, void *pvUser1, void *pvUser2)
|
---|
228 | {
|
---|
229 | RTMPARGS Args;
|
---|
230 | RT_ASSERT_INTS_ON();
|
---|
231 |
|
---|
232 | /* The caller is supposed to have disabled preemption, but take no chances. */
|
---|
233 | vbi_preempt_disable();
|
---|
234 |
|
---|
235 | Args.pfnWorker = pfnWorker;
|
---|
236 | Args.pvUser1 = pvUser1;
|
---|
237 | Args.pvUser2 = pvUser2;
|
---|
238 | Args.idCpu = RTMpCpuId();
|
---|
239 | Args.cHits = 0;
|
---|
240 |
|
---|
241 | vbi_execute_on_others(rtmpOnOthersSolarisWrapper, &Args);
|
---|
242 |
|
---|
243 | vbi_preempt_enable();
|
---|
244 |
|
---|
245 | return VINF_SUCCESS;
|
---|
246 | }
|
---|
247 |
|
---|
248 |
|
---|
249 | /**
|
---|
250 | * Wrapper between the native solaris per-cpu callback and PFNRTWORKER
|
---|
251 | * for the RTMpOnSpecific API.
|
---|
252 | *
|
---|
253 | *
|
---|
254 | * @param uArgs Pointer to the RTMPARGS package.
|
---|
255 | * @param uIgnored1 Ignored.
|
---|
256 | * @param uIgnored2 Ignored.
|
---|
257 | */
|
---|
258 | static int rtmpOnSpecificSolarisWrapper(void *uArg, void *uIgnored1, void *uIgnored2)
|
---|
259 | {
|
---|
260 | PRTMPARGS pArgs = (PRTMPARGS)(uArg);
|
---|
261 | RTCPUID idCpu = RTMpCpuId();
|
---|
262 |
|
---|
263 | Assert(idCpu == pArgs->idCpu);
|
---|
264 | pArgs->pfnWorker(idCpu, pArgs->pvUser1, pArgs->pvUser2);
|
---|
265 | ASMAtomicIncU32(&pArgs->cHits);
|
---|
266 |
|
---|
267 | NOREF(uIgnored1);
|
---|
268 | NOREF(uIgnored2);
|
---|
269 | return 0;
|
---|
270 | }
|
---|
271 |
|
---|
272 |
|
---|
273 | RTDECL(int) RTMpOnSpecific(RTCPUID idCpu, PFNRTMPWORKER pfnWorker, void *pvUser1, void *pvUser2)
|
---|
274 | {
|
---|
275 | RTMPARGS Args;
|
---|
276 | RT_ASSERT_INTS_ON();
|
---|
277 |
|
---|
278 | if (idCpu >= vbi_cpu_count())
|
---|
279 | return VERR_CPU_NOT_FOUND;
|
---|
280 |
|
---|
281 | Args.pfnWorker = pfnWorker;
|
---|
282 | Args.pvUser1 = pvUser1;
|
---|
283 | Args.pvUser2 = pvUser2;
|
---|
284 | Args.idCpu = idCpu;
|
---|
285 | Args.cHits = 0;
|
---|
286 |
|
---|
287 | vbi_preempt_disable();
|
---|
288 |
|
---|
289 | vbi_execute_on_one(rtmpOnSpecificSolarisWrapper, &Args, idCpu);
|
---|
290 |
|
---|
291 | vbi_preempt_enable();
|
---|
292 |
|
---|
293 | Assert(ASMAtomicUoReadU32(&Args.cHits) <= 1);
|
---|
294 |
|
---|
295 | return ASMAtomicUoReadU32(&Args.cHits) == 1
|
---|
296 | ? VINF_SUCCESS
|
---|
297 | : VERR_CPU_NOT_FOUND;
|
---|
298 | }
|
---|
299 |
|
---|