1 | /* $Id: mpnotification-r0drv-solaris.c 22366 2009-08-20 10:58:25Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * IPRT - Multiprocessor Event Notifications, Ring-0 Driver, Solaris.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2008 Sun Microsystems, Inc.
|
---|
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 | * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
|
---|
27 | * Clara, CA 95054 USA or visit http://www.sun.com if you need
|
---|
28 | * additional information or have any questions.
|
---|
29 | */
|
---|
30 |
|
---|
31 | /*******************************************************************************
|
---|
32 | * Header Files *
|
---|
33 | *******************************************************************************/
|
---|
34 | #include "the-solaris-kernel.h"
|
---|
35 | #include "internal/iprt.h"
|
---|
36 |
|
---|
37 | #include <iprt/err.h>
|
---|
38 | #include <iprt/mp.h>
|
---|
39 | #include "r0drv/mp-r0drv.h"
|
---|
40 | #include "internal-r0drv-solaris.h"
|
---|
41 |
|
---|
42 |
|
---|
43 | /*******************************************************************************
|
---|
44 | * Global Variables *
|
---|
45 | *******************************************************************************/
|
---|
46 | static vbi_cpu_watch_t *g_hVbiCpuWatch = NULL;
|
---|
47 |
|
---|
48 | RTCPUSET g_rtMpSolarisCpuSet;
|
---|
49 |
|
---|
50 | static void rtMpNotificationSolarisCallback(void *pvUser, int iCpu, int online)
|
---|
51 | {
|
---|
52 | NOREF(pvUser);
|
---|
53 |
|
---|
54 | /* ASSUMES iCpu == RTCPUID */
|
---|
55 | if (online)
|
---|
56 | {
|
---|
57 | RTCpuSetAdd(&g_rtMpSolarisCpuSet, iCpu);
|
---|
58 | rtMpNotificationDoCallbacks(RTMPEVENT_ONLINE, iCpu);
|
---|
59 | }
|
---|
60 | else
|
---|
61 | {
|
---|
62 | RTCpuSetDel(&g_rtMpSolarisCpuSet, iCpu);
|
---|
63 | rtMpNotificationDoCallbacks(RTMPEVENT_OFFLINE, iCpu);
|
---|
64 | }
|
---|
65 | }
|
---|
66 |
|
---|
67 |
|
---|
68 | int rtR0MpNotificationNativeInit(void)
|
---|
69 | {
|
---|
70 | if (vbi_revision_level < 2)
|
---|
71 | return VERR_NOT_SUPPORTED;
|
---|
72 | if (g_hVbiCpuWatch != NULL)
|
---|
73 | return VERR_WRONG_ORDER;
|
---|
74 |
|
---|
75 | /*
|
---|
76 | * Cache the list of online CPUs.
|
---|
77 | */
|
---|
78 | RTCpuSetEmpty(&g_rtMpSolarisCpuSet);
|
---|
79 |
|
---|
80 | g_hVbiCpuWatch = vbi_watch_cpus(rtMpNotificationSolarisCallback, NULL, 1 /* watch current CPU too */);
|
---|
81 |
|
---|
82 | RTCPUID idCpu = RTMpGetMaxCpuId();
|
---|
83 | do
|
---|
84 | {
|
---|
85 | /** @todo vbi_cpu_online() should boundary check "idCpu" rather than hang the system. */
|
---|
86 | if ( RTMpIsCpuPossible(idCpu)
|
---|
87 | && vbi_cpu_online(idCpu))
|
---|
88 | {
|
---|
89 | RTCpuSetAdd(&g_rtMpSolarisCpuSet, idCpu);
|
---|
90 | }
|
---|
91 | } while (idCpu-- > 0);
|
---|
92 |
|
---|
93 | return VINF_SUCCESS;
|
---|
94 | }
|
---|
95 |
|
---|
96 |
|
---|
97 | void rtR0MpNotificationNativeTerm(void)
|
---|
98 | {
|
---|
99 | if (vbi_revision_level >= 2 && g_hVbiCpuWatch != NULL)
|
---|
100 | vbi_ignore_cpus(g_hVbiCpuWatch);
|
---|
101 | g_hVbiCpuWatch = NULL;
|
---|
102 | }
|
---|
103 |
|
---|