2 * Copyright (c) 2000-2007 Apple Inc. All rights reserved.
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
29 * Copyright (c) 1982, 1986, 1989, 1993
30 * The Regents of the University of California. All rights reserved.
32 * This code is derived from software contributed to Berkeley by
33 * Mike Karels at Berkeley Software Design, Inc.
35 * Quite extensively rewritten by Poul-Henning Kamp of the FreeBSD
36 * project, to make these variables more userfriendly.
38 * Redistribution and use in source and binary forms, with or without
39 * modification, are permitted provided that the following conditions
41 * 1. Redistributions of source code must retain the above copyright
42 * notice, this list of conditions and the following disclaimer.
43 * 2. Redistributions in binary form must reproduce the above copyright
44 * notice, this list of conditions and the following disclaimer in the
45 * documentation and/or other materials provided with the distribution.
46 * 3. All advertising materials mentioning features or use of this software
47 * must display the following acknowledgement:
48 * This product includes software developed by the University of
49 * California, Berkeley and its contributors.
50 * 4. Neither the name of the University nor the names of its contributors
51 * may be used to endorse or promote products derived from this software
52 * without specific prior written permission.
54 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
55 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
56 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
57 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
58 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
59 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
60 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
61 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
62 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
63 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
66 * @(#)kern_sysctl.c 8.4 (Berkeley) 4/14/94
69 #include <sys/param.h>
70 #include <sys/kernel.h>
71 #include <sys/systm.h>
72 #include <sys/sysctl.h>
73 #include <sys/proc_internal.h>
74 #include <sys/unistd.h>
77 #include <machine/smp.h>
80 #include <sys/param.h> /* XXX prune includes */
81 #include <sys/systm.h>
82 #include <sys/kernel.h>
83 #include <sys/malloc.h>
85 #include <sys/file_internal.h>
86 #include <sys/vnode.h>
87 #include <sys/unistd.h>
88 #include <sys/ioctl.h>
89 #include <sys/namei.h>
91 #include <sys/disklabel.h>
93 #include <sys/sysctl.h>
95 #include <mach/machine.h>
96 #include <mach/mach_types.h>
97 #include <mach/vm_param.h>
98 #include <kern/task.h>
99 #include <vm/vm_kern.h>
100 #include <mach/host_info.h>
101 #include <kern/pms.h>
103 extern vm_map_t bsd_pageable_map
;
105 #include <sys/mount_internal.h>
106 #include <sys/kdebug.h>
108 #include <IOKit/IOPlatformExpert.h>
109 #include <pexpert/pexpert.h>
111 #include <machine/machine_routines.h>
112 #include <machine/cpu_capabilities.h>
114 #include <mach/mach_host.h> /* for host_info() */
117 #include <i386/cpuid.h> /* for cpuid_info() */
123 #define MAX(a,b) (a >= b ? a : b)
126 /* XXX This should be in a BSD accessible Mach header, but isn't. */
127 extern unsigned int vm_page_wire_count
;
129 static int cputype
, cpusubtype
, cputhreadtype
, cpufamily
, cpu64bit
;
130 static uint64_t cacheconfig
[10], cachesize
[10];
133 SYSCTL_NODE(, 0, sysctl
, CTLFLAG_RW
|CTLFLAG_LOCKED
, 0,
134 "Sysctl internal magic");
135 SYSCTL_NODE(, CTL_KERN
, kern
, CTLFLAG_RW
|CTLFLAG_LOCKED
, 0,
136 "High kernel, proc, limits &c");
137 SYSCTL_NODE(, CTL_VM
, vm
, CTLFLAG_RW
|CTLFLAG_LOCKED
, 0,
139 SYSCTL_NODE(, CTL_VFS
, vfs
, CTLFLAG_RW
|CTLFLAG_LOCKED
, 0,
141 SYSCTL_NODE(, CTL_NET
, net
, CTLFLAG_RW
|CTLFLAG_LOCKED
, 0,
142 "Network, (see socket.h)");
143 SYSCTL_NODE(, CTL_DEBUG
, debug
, CTLFLAG_RW
|CTLFLAG_LOCKED
, 0,
145 SYSCTL_NODE(, CTL_HW
, hw
, CTLFLAG_RW
|CTLFLAG_LOCKED
, 0,
147 SYSCTL_NODE(, CTL_MACHDEP
, machdep
, CTLFLAG_RW
|CTLFLAG_LOCKED
, 0,
148 "machine dependent");
149 SYSCTL_NODE(, CTL_USER
, user
, CTLFLAG_RW
|CTLFLAG_LOCKED
, 0,
152 #define SYSCTL_RETURN(r, x) SYSCTL_OUT(r, &x, sizeof(x))
154 /******************************************************************************
158 #define CTLHW_RETQUAD (1 << 31)
159 #define CTLHW_LOCAL (1 << 30)
161 #define HW_LOCAL_CPUTHREADTYPE (1 | CTLHW_LOCAL)
162 #define HW_LOCAL_PHYSICALCPU (2 | CTLHW_LOCAL)
163 #define HW_LOCAL_PHYSICALCPUMAX (3 | CTLHW_LOCAL)
164 #define HW_LOCAL_LOGICALCPU (4 | CTLHW_LOCAL)
165 #define HW_LOCAL_LOGICALCPUMAX (5 | CTLHW_LOCAL)
169 * Supporting some variables requires us to do "real" work. We
170 * gather some of that here.
173 sysctl_hw_generic(__unused
struct sysctl_oid
*oidp
, __unused
void *arg1
,
174 int arg2
, struct sysctl_req
*req
)
178 ml_cpu_info_t cpu_info
;
181 host_basic_info_data_t hinfo
;
183 mach_msg_type_number_t count
= HOST_BASIC_INFO_COUNT
;
186 * Test and mask off the 'return quad' flag.
187 * Note that only some things here support it.
189 doquad
= arg2
& CTLHW_RETQUAD
;
190 arg2
&= ~CTLHW_RETQUAD
;
192 ml_cpu_get_info(&cpu_info
);
195 kret
= host_info((host_t
)BSD_HOST
, HOST_BASIC_INFO
, (host_info_t
)&hinfo
, &count
);
198 * Handle various OIDs.
200 * OIDs that can return int or quad set val and qval and then break.
201 * Errors and int-only values return inline.
205 if (kret
== KERN_SUCCESS
) {
206 return(SYSCTL_RETURN(req
, hinfo
.max_cpus
));
211 if (kret
== KERN_SUCCESS
) {
212 return(SYSCTL_RETURN(req
, hinfo
.avail_cpus
));
216 case HW_LOCAL_PHYSICALCPU
:
217 if (kret
== KERN_SUCCESS
) {
218 return(SYSCTL_RETURN(req
, hinfo
.physical_cpu
));
222 case HW_LOCAL_PHYSICALCPUMAX
:
223 if (kret
== KERN_SUCCESS
) {
224 return(SYSCTL_RETURN(req
, hinfo
.physical_cpu_max
));
228 case HW_LOCAL_LOGICALCPU
:
229 if (kret
== KERN_SUCCESS
) {
230 return(SYSCTL_RETURN(req
, hinfo
.logical_cpu
));
234 case HW_LOCAL_LOGICALCPUMAX
:
235 if (kret
== KERN_SUCCESS
) {
236 return(SYSCTL_RETURN(req
, hinfo
.logical_cpu_max
));
241 val
= cpu_info
.cache_line_size
;
242 qval
= (long long)val
;
244 case HW_L1ICACHESIZE
:
245 val
= cpu_info
.l1_icache_size
;
246 qval
= (long long)val
;
248 case HW_L1DCACHESIZE
:
249 val
= cpu_info
.l1_dcache_size
;
250 qval
= (long long)val
;
253 if (cpu_info
.l2_cache_size
== 0xFFFFFFFF)
255 val
= cpu_info
.l2_cache_size
;
256 qval
= (long long)val
;
259 if (cpu_info
.l3_cache_size
== 0xFFFFFFFF)
261 val
= cpu_info
.l3_cache_size
;
262 qval
= (long long)val
;
266 * Deprecated variables. We still support these for
267 * backwards compatibility purposes only.
270 bzero(dummy
, sizeof(dummy
));
271 if(!PEGetMachineName(dummy
,64))
274 return(SYSCTL_OUT(req
, dummy
, strlen(dummy
) + 1));
276 bzero(dummy
, sizeof(dummy
));
277 if(!PEGetModelName(dummy
,64))
280 return(SYSCTL_OUT(req
, dummy
, strlen(dummy
) + 1));
283 int usermem
= mem_size
- vm_page_wire_count
* page_size
;
285 return(SYSCTL_RETURN(req
, usermem
));
288 epochTemp
= PEGetPlatformEpoch();
291 return(SYSCTL_RETURN(req
, epochTemp
));
292 case HW_VECTORUNIT
: {
293 int vector
= cpu_info
.vector_unit
== 0? 0 : 1;
294 return(SYSCTL_RETURN(req
, vector
));
297 if (cpu_info
.l2_cache_size
== 0xFFFFFFFF)
299 return(SYSCTL_RETURN(req
, cpu_info
.l2_settings
));
301 if (cpu_info
.l3_cache_size
== 0xFFFFFFFF)
303 return(SYSCTL_RETURN(req
, cpu_info
.l3_settings
));
308 * Callers may come to us with either int or quad buffers.
311 return(SYSCTL_RETURN(req
, qval
));
313 return(SYSCTL_RETURN(req
, val
));
316 /* hw.pagesize and hw.tbfrequency are expected as 64 bit values */
319 (__unused
struct sysctl_oid
*oidp
, __unused
void *arg1
, __unused
int arg2
, struct sysctl_req
*req
)
321 long long l
= page_size
;
322 return sysctl_io_number(req
, l
, sizeof(l
), NULL
, NULL
);
327 (__unused
struct sysctl_oid
*oidp
, __unused
void *arg1
, __unused
int arg2
, struct sysctl_req
*req
)
329 long long l
= gPEClockFrequencyInfo
.timebase_frequency_hz
;
330 return sysctl_io_number(req
, l
, sizeof(l
), NULL
, NULL
);
334 * hw.* MIB variables.
336 SYSCTL_PROC (_hw
, HW_NCPU
, ncpu
, CTLTYPE_INT
| CTLFLAG_RD
| CTLFLAG_KERN
, 0, HW_NCPU
, sysctl_hw_generic
, "I", "");
337 SYSCTL_PROC (_hw
, HW_AVAILCPU
, activecpu
, CTLTYPE_INT
| CTLFLAG_RD
| CTLFLAG_KERN
, 0, HW_AVAILCPU
, sysctl_hw_generic
, "I", "");
338 SYSCTL_PROC (_hw
, OID_AUTO
, physicalcpu
, CTLTYPE_INT
| CTLFLAG_RD
| CTLFLAG_KERN
, 0, HW_LOCAL_PHYSICALCPU
, sysctl_hw_generic
, "I", "");
339 SYSCTL_PROC (_hw
, OID_AUTO
, physicalcpu_max
, CTLTYPE_INT
| CTLFLAG_RD
| CTLFLAG_KERN
, 0, HW_LOCAL_PHYSICALCPUMAX
, sysctl_hw_generic
, "I", "");
340 SYSCTL_PROC (_hw
, OID_AUTO
, logicalcpu
, CTLTYPE_INT
| CTLFLAG_RD
| CTLFLAG_KERN
, 0, HW_LOCAL_LOGICALCPU
, sysctl_hw_generic
, "I", "");
341 SYSCTL_PROC (_hw
, OID_AUTO
, logicalcpu_max
, CTLTYPE_INT
| CTLFLAG_RD
| CTLFLAG_KERN
, 0, HW_LOCAL_LOGICALCPUMAX
, sysctl_hw_generic
, "I", "");
342 SYSCTL_INT (_hw
, HW_BYTEORDER
, byteorder
, CTLFLAG_RD
| CTLFLAG_KERN
, NULL
, BYTE_ORDER
, "");
343 SYSCTL_INT (_hw
, OID_AUTO
, cputype
, CTLFLAG_RD
| CTLFLAG_KERN
, &cputype
, 0, "");
344 SYSCTL_INT (_hw
, OID_AUTO
, cpusubtype
, CTLFLAG_RD
| CTLFLAG_KERN
, &cpusubtype
, 0, "");
345 SYSCTL_INT (_hw
, OID_AUTO
, cpu64bit_capable
, CTLFLAG_RD
| CTLFLAG_KERN
, &cpu64bit
, 0, "");
346 SYSCTL_INT (_hw
, OID_AUTO
, cpufamily
, CTLFLAG_RD
| CTLFLAG_KERN
, &cpufamily
, 0, "");
347 SYSCTL_OPAQUE (_hw
, OID_AUTO
, cacheconfig
, CTLFLAG_RD
, &cacheconfig
, sizeof(cacheconfig
), "Q", "");
348 SYSCTL_OPAQUE (_hw
, OID_AUTO
, cachesize
, CTLFLAG_RD
, &cachesize
, sizeof(cachesize
), "Q", "");
349 SYSCTL_PROC (_hw
, OID_AUTO
, pagesize
, CTLTYPE_QUAD
| CTLFLAG_RD
| CTLFLAG_KERN
, 0, 0, sysctl_pagesize
, "Q", "");
350 SYSCTL_QUAD (_hw
, OID_AUTO
, busfrequency
, CTLFLAG_RD
| CTLFLAG_KERN
, &gPEClockFrequencyInfo
.bus_frequency_hz
, "");
351 SYSCTL_QUAD (_hw
, OID_AUTO
, busfrequency_min
, CTLFLAG_RD
| CTLFLAG_KERN
, &gPEClockFrequencyInfo
.bus_frequency_min_hz
, "");
352 SYSCTL_QUAD (_hw
, OID_AUTO
, busfrequency_max
, CTLFLAG_RD
| CTLFLAG_KERN
, &gPEClockFrequencyInfo
.bus_frequency_max_hz
, "");
353 SYSCTL_QUAD (_hw
, OID_AUTO
, cpufrequency
, CTLFLAG_RD
| CTLFLAG_KERN
, &gPEClockFrequencyInfo
.cpu_frequency_hz
, "");
354 SYSCTL_QUAD (_hw
, OID_AUTO
, cpufrequency_min
, CTLFLAG_RD
| CTLFLAG_KERN
, &gPEClockFrequencyInfo
.cpu_frequency_min_hz
, "");
355 SYSCTL_QUAD (_hw
, OID_AUTO
, cpufrequency_max
, CTLFLAG_RD
| CTLFLAG_KERN
, &gPEClockFrequencyInfo
.cpu_frequency_max_hz
, "");
356 SYSCTL_PROC (_hw
, OID_AUTO
, cachelinesize
, CTLTYPE_QUAD
| CTLFLAG_RD
| CTLFLAG_KERN
, 0, HW_CACHELINE
| CTLHW_RETQUAD
, sysctl_hw_generic
, "Q", "");
357 SYSCTL_PROC (_hw
, OID_AUTO
, l1icachesize
, CTLTYPE_QUAD
| CTLFLAG_RD
| CTLFLAG_KERN
, 0, HW_L1ICACHESIZE
| CTLHW_RETQUAD
, sysctl_hw_generic
, "Q", "");
358 SYSCTL_PROC (_hw
, OID_AUTO
, l1dcachesize
, CTLTYPE_QUAD
| CTLFLAG_RD
| CTLFLAG_KERN
, 0, HW_L1DCACHESIZE
| CTLHW_RETQUAD
, sysctl_hw_generic
, "Q", "");
359 SYSCTL_PROC (_hw
, OID_AUTO
, l2cachesize
, CTLTYPE_QUAD
| CTLFLAG_RD
| CTLFLAG_KERN
, 0, HW_L2CACHESIZE
| CTLHW_RETQUAD
, sysctl_hw_generic
, "Q", "");
360 SYSCTL_PROC (_hw
, OID_AUTO
, l3cachesize
, CTLTYPE_QUAD
| CTLFLAG_RD
| CTLFLAG_KERN
, 0, HW_L3CACHESIZE
| CTLHW_RETQUAD
, sysctl_hw_generic
, "Q", "");
361 SYSCTL_PROC(_hw
, OID_AUTO
, tbfrequency
, CTLTYPE_QUAD
| CTLFLAG_RD
| CTLFLAG_KERN
, 0, 0, sysctl_tbfrequency
, "Q", "");
362 SYSCTL_QUAD (_hw
, HW_MEMSIZE
, memsize
, CTLFLAG_RD
| CTLFLAG_KERN
, &max_mem
, "");
363 SYSCTL_INT (_hw
, OID_AUTO
, packages
, CTLFLAG_RD
| CTLFLAG_KERN
, &packages
, 0, "");
366 * Optional features can register nodes below hw.optional.
368 * If the feature is not present, the node should either not be registered,
369 * or it should return -1. If the feature is present, the node should return
370 * 0. If the feature is present and its use is advised, the node should
373 SYSCTL_NODE(_hw
, OID_AUTO
, optional
, CTLFLAG_RW
|CTLFLAG_LOCKED
, NULL
, "optional features");
375 SYSCTL_INT(_hw_optional
, OID_AUTO
, floatingpoint
, CTLFLAG_RD
| CTLFLAG_KERN
, 0, 1, ""); /* always set */
378 * Deprecated variables. These are supported for backwards compatibility
379 * purposes only. The MASKED flag requests that the variables not be
380 * printed by sysctl(8) and similar utilities.
382 * The variables named *_compat here are int-sized versions of variables
383 * that are now exported as quads. The int-sized versions are normally
384 * looked up only by number, wheras the quad-sized versions should be
387 * The *_compat nodes are *NOT* visible within the kernel.
389 SYSCTL_INT (_hw
, HW_PAGESIZE
, pagesize_compat
, CTLFLAG_RD
| CTLFLAG_MASKED
, &page_size
, 0, "");
390 SYSCTL_INT (_hw
, HW_BUS_FREQ
, busfrequency_compat
, CTLFLAG_RD
| CTLFLAG_MASKED
, &gPEClockFrequencyInfo
.bus_clock_rate_hz
, 0, "");
391 SYSCTL_INT (_hw
, HW_CPU_FREQ
, cpufrequency_compat
, CTLFLAG_RD
| CTLFLAG_MASKED
, &gPEClockFrequencyInfo
.cpu_clock_rate_hz
, 0, "");
392 SYSCTL_PROC(_hw
, HW_CACHELINE
, cachelinesize_compat
, CTLTYPE_INT
| CTLFLAG_RD
| CTLFLAG_MASKED
, 0, HW_CACHELINE
, sysctl_hw_generic
, "I", "");
393 SYSCTL_PROC(_hw
, HW_L1ICACHESIZE
, l1icachesize_compat
, CTLTYPE_INT
| CTLFLAG_RD
| CTLFLAG_MASKED
, 0, HW_L1ICACHESIZE
, sysctl_hw_generic
, "I", "");
394 SYSCTL_PROC(_hw
, HW_L1DCACHESIZE
, l1dcachesize_compat
, CTLTYPE_INT
| CTLFLAG_RD
| CTLFLAG_MASKED
, 0, HW_L1DCACHESIZE
, sysctl_hw_generic
, "I", "");
395 SYSCTL_PROC(_hw
, HW_L2CACHESIZE
, l2cachesize_compat
, CTLTYPE_INT
| CTLFLAG_RD
| CTLFLAG_MASKED
, 0, HW_L2CACHESIZE
, sysctl_hw_generic
, "I", "");
396 SYSCTL_PROC(_hw
, HW_L3CACHESIZE
, l3cachesize_compat
, CTLTYPE_INT
| CTLFLAG_RD
| CTLFLAG_MASKED
, 0, HW_L3CACHESIZE
, sysctl_hw_generic
, "I", "");
397 SYSCTL_INT (_hw
, HW_TB_FREQ
, tbfrequency_compat
, CTLFLAG_RD
| CTLFLAG_MASKED
, &gPEClockFrequencyInfo
.timebase_frequency_hz
, 0, "");
398 SYSCTL_PROC(_hw
, HW_MACHINE
, machine
, CTLTYPE_STRING
| CTLFLAG_RD
| CTLFLAG_MASKED
, 0, HW_MACHINE
, sysctl_hw_generic
, "A", "");
399 SYSCTL_PROC(_hw
, HW_MODEL
, model
, CTLTYPE_STRING
| CTLFLAG_RD
| CTLFLAG_MASKED
, 0, HW_MODEL
, sysctl_hw_generic
, "A", "");
400 SYSCTL_UINT(_hw
, HW_PHYSMEM
, physmem
, CTLFLAG_RD
| CTLFLAG_MASKED
, &mem_size
, 0, "");
401 SYSCTL_PROC(_hw
, HW_USERMEM
, usermem
, CTLTYPE_INT
| CTLFLAG_RD
| CTLFLAG_MASKED
, 0, HW_USERMEM
, sysctl_hw_generic
, "I", "");
402 SYSCTL_PROC(_hw
, HW_EPOCH
, epoch
, CTLTYPE_INT
| CTLFLAG_RD
| CTLFLAG_MASKED
, 0, HW_EPOCH
, sysctl_hw_generic
, "I", "");
403 SYSCTL_PROC(_hw
, HW_VECTORUNIT
, vectorunit
, CTLTYPE_INT
| CTLFLAG_RD
| CTLFLAG_MASKED
, 0, HW_VECTORUNIT
, sysctl_hw_generic
, "I", "");
404 SYSCTL_PROC(_hw
, HW_L2SETTINGS
, l2settings
, CTLTYPE_INT
| CTLFLAG_RD
| CTLFLAG_MASKED
, 0, HW_L2SETTINGS
, sysctl_hw_generic
, "I", "");
405 SYSCTL_PROC(_hw
, HW_L3SETTINGS
, l3settings
, CTLTYPE_INT
| CTLFLAG_RD
| CTLFLAG_MASKED
, 0, HW_L3SETTINGS
, sysctl_hw_generic
, "I", "");
406 SYSCTL_INT (_hw
, OID_AUTO
, cputhreadtype
, CTLFLAG_RD
| CTLFLAG_NOAUTO
| CTLFLAG_KERN
, &cputhreadtype
, 0, "");
409 int altivec_flag
= -1;
410 int graphicsops_flag
= -1;
411 int x64bitops_flag
= -1;
413 int stfiwx_flag
= -1;
415 int datastreams_flag
= -1;
416 int dcbtstreams_flag
= -1;
418 SYSCTL_INT(_hw_optional
, OID_AUTO
, altivec
, CTLFLAG_RD
| CTLFLAG_NOAUTO
| CTLFLAG_KERN
, &altivec_flag
, 0, "");
419 SYSCTL_INT(_hw_optional
, OID_AUTO
, graphicsops
, CTLFLAG_RD
| CTLFLAG_NOAUTO
| CTLFLAG_KERN
, &graphicsops_flag
, 0, "");
420 SYSCTL_INT(_hw_optional
, OID_AUTO
, 64bitops
, CTLFLAG_RD
| CTLFLAG_NOAUTO
| CTLFLAG_KERN
, &x64bitops_flag
, 0, "");
421 SYSCTL_INT(_hw_optional
, OID_AUTO
, fsqrt
, CTLFLAG_RD
| CTLFLAG_NOAUTO
| CTLFLAG_KERN
, &fsqrt_flag
, 0, "");
422 SYSCTL_INT(_hw_optional
, OID_AUTO
, stfiwx
, CTLFLAG_RD
| CTLFLAG_NOAUTO
| CTLFLAG_KERN
, &stfiwx_flag
, 0, "");
423 SYSCTL_INT(_hw_optional
, OID_AUTO
, dcba
, CTLFLAG_RD
| CTLFLAG_NOAUTO
| CTLFLAG_KERN
, &dcba_flag
, 0, "");
424 SYSCTL_INT(_hw_optional
, OID_AUTO
, datastreams
, CTLFLAG_RD
| CTLFLAG_NOAUTO
| CTLFLAG_KERN
, &datastreams_flag
, 0, "");
425 SYSCTL_INT(_hw_optional
, OID_AUTO
, dcbtstreams
, CTLFLAG_RD
| CTLFLAG_NOAUTO
| CTLFLAG_KERN
, &dcbtstreams_flag
, 0, "");
426 #elif defined (__i386__)
431 int sse4_1_flag
= -1;
432 int sse4_2_flag
= -1;
433 int x86_64_flag
= -1;
434 int supplementalsse3_flag
= -1;
436 SYSCTL_INT(_hw_optional
, OID_AUTO
, mmx
, CTLFLAG_RD
| CTLFLAG_KERN
, &mmx_flag
, 0, "");
437 SYSCTL_INT(_hw_optional
, OID_AUTO
, sse
, CTLFLAG_RD
| CTLFLAG_KERN
, &sse_flag
, 0, "");
438 SYSCTL_INT(_hw_optional
, OID_AUTO
, sse2
, CTLFLAG_RD
| CTLFLAG_KERN
, &sse2_flag
, 0, "");
439 SYSCTL_INT(_hw_optional
, OID_AUTO
, sse3
, CTLFLAG_RD
| CTLFLAG_KERN
, &sse3_flag
, 0, "");
440 SYSCTL_INT(_hw_optional
, OID_AUTO
, supplementalsse3
, CTLFLAG_RD
| CTLFLAG_KERN
, &supplementalsse3_flag
, 0, "");
441 SYSCTL_INT(_hw_optional
, OID_AUTO
, sse4_1
, CTLFLAG_RD
| CTLFLAG_KERN
, &sse4_1_flag
, 0, "");
442 SYSCTL_INT(_hw_optional
, OID_AUTO
, sse4_2
, CTLFLAG_RD
| CTLFLAG_KERN
, &sse4_2_flag
, 0, "");
443 SYSCTL_INT(_hw_optional
, OID_AUTO
, x86_64
, CTLFLAG_RD
| CTLFLAG_KERN
, &x86_64_flag
, 0, "");
447 * Debugging interface to the CPU power management code.
450 pmsSysctl(__unused
struct sysctl_oid
*oidp
, __unused
void *arg1
,
451 __unused
int arg2
, struct sysctl_req
*req
)
457 if ((error
= SYSCTL_IN(req
, &ctl
, sizeof(ctl
))))
460 intr
= ml_set_interrupts_enabled(FALSE
); /* No interruptions in here */
461 error
= pmsControl(ctl
.request
, (user_addr_t
)(unsigned long)ctl
.reqaddr
, ctl
.reqsize
);
462 (void)ml_set_interrupts_enabled(intr
); /* Restore interruptions */
467 SYSCTL_PROC(_hw
, OID_AUTO
, pms
, CTLTYPE_STRUCT
| CTLFLAG_WR
, 0, 0, pmsSysctl
, "S", "Processor Power Management");
471 /******************************************************************************
472 * Generic MIB initialisation.
474 * This is a hack, and should be replaced with SYSINITs
478 sysctl_mib_init(void)
480 cputype
= cpu_type();
481 cpusubtype
= cpu_subtype();
482 cputhreadtype
= cpu_threadtype();
484 cpu64bit
= (_cpu_capabilities
& k64Bit
) == k64Bit
;
485 #elif defined(__i386__)
486 cpu64bit
= (_get_cpu_capabilities() & k64Bit
) == k64Bit
;
490 * Populate the optional portion of the hw.* MIB.
492 * XXX This could be broken out into parts of the code
493 * that actually directly relate to the functions in
497 if (cputhreadtype
!= CPU_THREADTYPE_NONE
) {
498 sysctl_register_oid(&sysctl__hw_cputhreadtype
);
503 * The convention for these is as follows:
504 * If the sysctl does not exist, the functionality is not present in the CPU.
505 * If the sysctl exists, it will not crash, and should otherwise function
507 * If the sysctl exists and returns 0, we advise against using this feature.
508 * If the sysctl exists and returns 1, we advise it's use.
511 if (_cpu_capabilities
& kHasAltivec
) {
513 sysctl_register_oid(&sysctl__hw_optional_altivec
);
515 if (_cpu_capabilities
& kHasGraphicsOps
) {
516 graphicsops_flag
= 1;
517 sysctl_register_oid(&sysctl__hw_optional_graphicsops
);
519 if (_cpu_capabilities
& k64Bit
) {
521 sysctl_register_oid(&sysctl__hw_optional_64bitops
);
523 if (_cpu_capabilities
& kHasFsqrt
) {
525 sysctl_register_oid(&sysctl__hw_optional_fsqrt
);
527 if (_cpu_capabilities
& kHasStfiwx
) {
529 sysctl_register_oid(&sysctl__hw_optional_stfiwx
);
531 if (_cpu_capabilities
& kDcbaAvailable
)
533 if (_cpu_capabilities
& kDcbaRecommended
)
536 sysctl_register_oid(&sysctl__hw_optional_dcba
);
537 if (_cpu_capabilities
& kDataStreamsAvailable
)
538 datastreams_flag
= 0;
539 if (_cpu_capabilities
& kDataStreamsRecommended
)
540 datastreams_flag
= 1;
541 if (datastreams_flag
>= 0)
542 sysctl_register_oid(&sysctl__hw_optional_datastreams
);
543 if (_cpu_capabilities
& kDcbtStreamsAvailable
)
544 dcbtstreams_flag
= 0;
545 if (_cpu_capabilities
& kDcbtStreamsRecommended
)
546 dcbtstreams_flag
= 1;
547 if (dcbtstreams_flag
>= 0)
548 sysctl_register_oid(&sysctl__hw_optional_dcbtstreams
);
551 switch (cpusubtype
) {
552 case CPU_SUBTYPE_POWERPC_750
:
553 cpufamily
= CPUFAMILY_POWERPC_G3
;
555 case CPU_SUBTYPE_POWERPC_7400
:
556 case CPU_SUBTYPE_POWERPC_7450
:
557 cpufamily
= CPUFAMILY_POWERPC_G4
;
559 case CPU_SUBTYPE_POWERPC_970
:
560 cpufamily
= CPUFAMILY_POWERPC_G5
;
563 cpufamily
= CPUFAMILY_UNKNOWN
;
566 ml_cpu_info_t cpu_info
;
567 ml_cpu_get_info(&cpu_info
);
569 host_basic_info_data_t hinfo
;
570 mach_msg_type_number_t count
= HOST_BASIC_INFO_COUNT
;
571 kern_return_t kret
= host_info((host_t
)BSD_HOST
, HOST_BASIC_INFO
, (host_info_t
)&hinfo
, &count
);
572 if(kret
!= KERN_SUCCESS
)
578 cachesize
[0] = max_mem
;
579 cachesize
[1] = cpu_info
.l1_dcache_size
;
580 cachesize
[2] = cpu_info
.l2_settings
? cpu_info
.l2_cache_size
: 0;
581 cachesize
[3] = cpu_info
.l3_settings
? cpu_info
.l3_cache_size
: 0;
585 cacheconfig
[0] = hinfo
.max_cpus
;
587 cacheconfig
[2] = cachesize
[2] ? 1 : 0;
588 cacheconfig
[3] = cachesize
[3] ? 1 : 0;
592 if (cpusubtype
== CPU_SUBTYPE_POWERPC_970
&&
593 cpu_info
.l2_cache_size
== 1 * 1024 * 1024)
594 /* The signature of the dual-core G5 */
595 packages
= hinfo
.max_cpus
/ 2;
597 packages
= hinfo
.max_cpus
;
599 #elif defined (__i386__)
600 mmx_flag
= ((_get_cpu_capabilities() & kHasMMX
) == kHasMMX
)? 1 : 0;
601 sse_flag
= ((_get_cpu_capabilities() & kHasSSE
) == kHasSSE
)? 1 : 0;
602 sse2_flag
= ((_get_cpu_capabilities() & kHasSSE2
) == kHasSSE2
)? 1 : 0;
603 sse3_flag
= ((_get_cpu_capabilities() & kHasSSE3
) == kHasSSE3
)? 1 : 0;
604 supplementalsse3_flag
= ((_get_cpu_capabilities() & kHasSupplementalSSE3
) == kHasSupplementalSSE3
)? 1 : 0;
605 sse4_1_flag
= ((_get_cpu_capabilities() & kHasSSE4_1
) == kHasSSE4_1
)? 1 : 0;
606 sse4_2_flag
= ((_get_cpu_capabilities() & kHasSSE4_2
) == kHasSSE4_2
)? 1 : 0;
607 x86_64_flag
= ((_get_cpu_capabilities() & k64Bit
) == k64Bit
)? 1 : 0;
610 switch (cpuid_info()->cpuid_family
) {
612 switch (cpuid_info()->cpuid_model
) {
614 cpufamily
= CPUFAMILY_INTEL_6_13
;
617 cpufamily
= CPUFAMILY_INTEL_6_14
; /* Core Solo/Duo */
620 cpufamily
= CPUFAMILY_INTEL_6_15
; /* Core 2 */
623 cpufamily
= CPUFAMILY_INTEL_6_23
;
626 cpufamily
= CPUFAMILY_INTEL_6_26
;
629 cpufamily
= CPUFAMILY_UNKNOWN
;
633 cpufamily
= CPUFAMILY_UNKNOWN
;
636 cacheconfig
[0] = ml_cpu_cache_sharing(0);
637 cacheconfig
[1] = ml_cpu_cache_sharing(1);
638 cacheconfig
[2] = ml_cpu_cache_sharing(2);
639 cacheconfig
[3] = ml_cpu_cache_sharing(3);
643 cachesize
[0] = ml_cpu_cache_size(0);
644 cachesize
[1] = ml_cpu_cache_size(1);
645 cachesize
[2] = ml_cpu_cache_size(2);
646 cachesize
[3] = ml_cpu_cache_size(3);
650 packages
= ml_cpu_cache_sharing(0) /
651 cpuid_info()->cpuid_cores_per_package
;
653 #else /* end __arm__ */
654 # warning we do not support this platform yet