1 | /* $Id: mp-freebsd.cpp 20449 2009-06-09 22:23:42Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * IPRT - Multiprocessor, FreeBSD.
|
---|
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 | #define LOG_GROUP RTLOGGROUP_DEFAULT
|
---|
35 | #include <unistd.h>
|
---|
36 | #include <stdio.h>
|
---|
37 | #include <errno.h>
|
---|
38 | #include <sys/sysctl.h>
|
---|
39 |
|
---|
40 | #include <iprt/mp.h>
|
---|
41 | #include <iprt/cpuset.h>
|
---|
42 | #include <iprt/assert.h>
|
---|
43 | #include <iprt/string.h>
|
---|
44 | #include <iprt/alloc.h>
|
---|
45 | #include <iprt/log.h>
|
---|
46 | #include <iprt/once.h>
|
---|
47 | #include <iprt/critsect.h>
|
---|
48 |
|
---|
49 |
|
---|
50 | RTDECL(uint32_t) RTMpGetCurFrequency(RTCPUID idCpu)
|
---|
51 | {
|
---|
52 | int uFreqCurr = 0;
|
---|
53 | size_t cbParameter = sizeof(uFreqCurr);
|
---|
54 |
|
---|
55 | /* CPU's have a common frequency. */
|
---|
56 | int rc = sysctlbyname("dev.cpu.0.freq", &uFreqCurr, &cbParameter, NULL, NULL);
|
---|
57 | if (rc)
|
---|
58 | return 0;
|
---|
59 |
|
---|
60 | return (uint32_t)uFreqCurr;
|
---|
61 | }
|
---|
62 |
|
---|
63 |
|
---|
64 | RTDECL(uint32_t) RTMpGetMaxFrequency(RTCPUID idCpu)
|
---|
65 | {
|
---|
66 | char szFreqLevels[20]; /* Should be enough to get the highest level which is always the first. */
|
---|
67 | size_t cbFreqLevels = sizeof(szFreqLevels);
|
---|
68 |
|
---|
69 | memset(szFreqLevels, 0, sizeof(szFreqLevels));
|
---|
70 |
|
---|
71 | /*
|
---|
72 | * CPU 0 has the freq levels entry. ENOMEM is ok as we don't need all supported
|
---|
73 | * levels but only the first one.
|
---|
74 | */
|
---|
75 | int rc = sysctlbyname("dev.cpu.0.freq_levels", szFreqLevels, &cbFreqLevels, NULL, NULL);
|
---|
76 | if ( (rc && (errno != ENOMEM))
|
---|
77 | || (cbFreqLevels == 0))
|
---|
78 | return 0;
|
---|
79 |
|
---|
80 | /* Clear everything starting from the '/' */
|
---|
81 | unsigned i = 0;
|
---|
82 |
|
---|
83 | do
|
---|
84 | {
|
---|
85 | if (szFreqLevels[i] == '/')
|
---|
86 | {
|
---|
87 | memset(&szFreqLevels[i], 0, sizeof(szFreqLevels) - i);
|
---|
88 | break;
|
---|
89 | }
|
---|
90 | i++;
|
---|
91 | } while (i < sizeof(szFreqLevels));
|
---|
92 |
|
---|
93 | /* Returns 0 on failure. */
|
---|
94 | return RTStrToUInt32(szFreqLevels);
|
---|
95 | }
|
---|
96 |
|
---|
97 | RTDECL(RTCPUID) RTMpGetOnlineCount(void)
|
---|
98 | {
|
---|
99 | /*
|
---|
100 | * FreeBSD has sysconf.
|
---|
101 | */
|
---|
102 | return sysconf(_SC_NPROCESSORS_ONLN);
|
---|
103 | }
|
---|
104 |
|
---|
105 |
|
---|