2 * Copyright (c) 2000-2005 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * The contents of this file constitute Original Code as defined in and
7 * are subject to the Apple Public Source License Version 1.1 (the
8 * "License"). You may not use this file except in compliance with the
9 * License. Please obtain a copy of the License at
10 * http://www.apple.com/publicsource and read it before using this file.
12 * This Original Code and all software distributed under the License are
13 * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
14 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
15 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
17 * License for the specific language governing rights and limitations
20 * @APPLE_LICENSE_HEADER_END@
23 * Mach Operating System
24 * Copyright (c) 1991,1990,1989,1988,1987 Carnegie Mellon University
25 * All Rights Reserved.
27 * Permission to use, copy, modify and distribute this software and its
28 * documentation is hereby granted, provided that both the copyright
29 * notice and this permission notice appear in all copies of the
30 * software, derivative works or modified versions, and any portions
31 * thereof, and that both notices appear in supporting documentation.
33 * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
34 * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
35 * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
37 * Carnegie Mellon requests users of this software to return to
39 * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
40 * School of Computer Science
41 * Carnegie Mellon University
42 * Pittsburgh PA 15213-3890
44 * any improvements or extensions that they make and grant Carnegie Mellon
45 * the rights to redistribute these changes.
48 * Author: Avadis Tevanian, Jr.
51 * Machine independent machine abstraction.
54 #ifndef _MACH_MACHINE_H_
55 #define _MACH_MACHINE_H_
58 #include <mach/machine/vm_types.h>
59 #include <mach/boolean.h>
61 typedef integer_t cpu_type_t
;
62 typedef integer_t cpu_subtype_t
;
63 typedef integer_t cpu_threadtype_t
;
65 #define CPU_STATE_MAX 4
67 #define CPU_STATE_USER 0
68 #define CPU_STATE_SYSTEM 1
69 #define CPU_STATE_IDLE 2
70 #define CPU_STATE_NICE 3
74 #include <sys/cdefs.h>
77 cpu_type_t
cpu_type(void);
79 cpu_subtype_t
cpu_subtype(void);
81 cpu_threadtype_t
cpu_threadtype(void);
84 #ifdef MACH_KERNEL_PRIVATE
87 integer_t major_version
; /* kernel major version id */
88 integer_t minor_version
; /* kernel minor version id */
89 integer_t max_cpus
; /* max number of CPUs possible */
90 integer_t avail_cpus
; /* number of CPUs now available */
91 uint32_t memory_size
; /* size of memory in bytes, capped at 2 GB */
92 uint64_t max_mem
; /* actual size of physical memory */
93 integer_t physical_cpu
; /* number of physical CPUs now available */
94 integer_t physical_cpu_max
; /* max number of physical CPUs possible */
95 integer_t logical_cpu
; /* number of logical cpu now available */
96 integer_t logical_cpu_max
; /* max number of physical CPUs possible */
99 typedef struct machine_info
*machine_info_t
;
100 typedef struct machine_info machine_info_data_t
;
102 extern struct machine_info machine_info
;
105 cpu_type_t
slot_type(
108 cpu_subtype_t
slot_subtype(
111 cpu_threadtype_t
slot_threadtype(
115 #endif /* MACH_KERNEL_PRIVATE */
116 #endif /* KERNEL_PRIVATE */
120 * Capability bits used in the definition of cpu_type.
122 #define CPU_ARCH_MASK 0xff000000 /* mask for architecture bits */
123 #define CPU_ARCH_ABI64 0x01000000 /* 64 bit ABI */
126 * Machine types known by all.
129 #define CPU_TYPE_ANY ((cpu_type_t) -1)
131 #define CPU_TYPE_VAX ((cpu_type_t) 1)
132 /* skip ((cpu_type_t) 2) */
133 /* skip ((cpu_type_t) 3) */
134 /* skip ((cpu_type_t) 4) */
135 /* skip ((cpu_type_t) 5) */
136 #define CPU_TYPE_MC680x0 ((cpu_type_t) 6)
137 #define CPU_TYPE_X86 ((cpu_type_t) 7)
138 #define CPU_TYPE_I386 CPU_TYPE_X86 /* compatibility */
139 #define CPU_TYPE_X86_64 (CPU_TYPE_X86 | CPU_ARCH_ABI64)
141 /* skip CPU_TYPE_MIPS ((cpu_type_t) 8) */
142 /* skip ((cpu_type_t) 9) */
143 #define CPU_TYPE_MC98000 ((cpu_type_t) 10)
144 #define CPU_TYPE_HPPA ((cpu_type_t) 11)
145 /* skip CPU_TYPE_ARM ((cpu_type_t) 12) */
146 #define CPU_TYPE_MC88000 ((cpu_type_t) 13)
147 #define CPU_TYPE_SPARC ((cpu_type_t) 14)
148 #define CPU_TYPE_I860 ((cpu_type_t) 15)
149 /* skip CPU_TYPE_ALPHA ((cpu_type_t) 16) */
150 /* skip ((cpu_type_t) 17) */
151 #define CPU_TYPE_POWERPC ((cpu_type_t) 18)
152 #define CPU_TYPE_POWERPC64 (CPU_TYPE_POWERPC | CPU_ARCH_ABI64)
155 * Machine subtypes (these are defined here, instead of in a machine
156 * dependent directory, so that any program can get all definitions
157 * regardless of where is it compiled).
161 * Object files that are hand-crafted to run on any
162 * implementation of an architecture are tagged with
163 * CPU_SUBTYPE_MULTIPLE. This functions essentially the same as
164 * the "ALL" subtype of an architecture except that it allows us
165 * to easily find object files that may need to be modified
166 * whenever a new implementation of an architecture comes out.
168 * It is the responsibility of the implementor to make sure the
169 * software handles unsupported implementations elegantly.
171 #define CPU_SUBTYPE_MULTIPLE ((cpu_subtype_t) -1)
172 #define CPU_SUBTYPE_LITTLE_ENDIAN ((cpu_subtype_t) 0)
173 #define CPU_SUBTYPE_BIG_ENDIAN ((cpu_subtype_t) 1)
176 * Machine threadtypes.
177 * This is none - not defined - for most machine types/subtypes.
179 #define CPU_THREADTYPE_NONE ((cpu_threadtype_t) 0)
182 * VAX subtypes (these do *not* necessary conform to the actual cpu
183 * ID assigned by DEC available via the SID register).
186 #define CPU_SUBTYPE_VAX_ALL ((cpu_subtype_t) 0)
187 #define CPU_SUBTYPE_VAX780 ((cpu_subtype_t) 1)
188 #define CPU_SUBTYPE_VAX785 ((cpu_subtype_t) 2)
189 #define CPU_SUBTYPE_VAX750 ((cpu_subtype_t) 3)
190 #define CPU_SUBTYPE_VAX730 ((cpu_subtype_t) 4)
191 #define CPU_SUBTYPE_UVAXI ((cpu_subtype_t) 5)
192 #define CPU_SUBTYPE_UVAXII ((cpu_subtype_t) 6)
193 #define CPU_SUBTYPE_VAX8200 ((cpu_subtype_t) 7)
194 #define CPU_SUBTYPE_VAX8500 ((cpu_subtype_t) 8)
195 #define CPU_SUBTYPE_VAX8600 ((cpu_subtype_t) 9)
196 #define CPU_SUBTYPE_VAX8650 ((cpu_subtype_t) 10)
197 #define CPU_SUBTYPE_VAX8800 ((cpu_subtype_t) 11)
198 #define CPU_SUBTYPE_UVAXIII ((cpu_subtype_t) 12)
203 * The subtype definitions here are unusual for historical reasons.
204 * NeXT used to consider 68030 code as generic 68000 code. For
205 * backwards compatability:
207 * CPU_SUBTYPE_MC68030 symbol has been preserved for source code
210 * CPU_SUBTYPE_MC680x0_ALL has been defined to be the same
211 * subtype as CPU_SUBTYPE_MC68030 for binary comatability.
213 * CPU_SUBTYPE_MC68030_ONLY has been added to allow new object
214 * files to be tagged as containing 68030-specific instructions.
217 #define CPU_SUBTYPE_MC680x0_ALL ((cpu_subtype_t) 1)
218 #define CPU_SUBTYPE_MC68030 ((cpu_subtype_t) 1) /* compat */
219 #define CPU_SUBTYPE_MC68040 ((cpu_subtype_t) 2)
220 #define CPU_SUBTYPE_MC68030_ONLY ((cpu_subtype_t) 3)
226 #define CPU_SUBTYPE_INTEL(f, m) ((cpu_subtype_t) (f) + ((m) << 4))
228 #define CPU_SUBTYPE_I386_ALL CPU_SUBTYPE_INTEL(3, 0)
229 #define CPU_SUBTYPE_386 CPU_SUBTYPE_INTEL(3, 0)
230 #define CPU_SUBTYPE_486 CPU_SUBTYPE_INTEL(4, 0)
231 #define CPU_SUBTYPE_486SX CPU_SUBTYPE_INTEL(4, 8) // 8 << 4 = 128
232 #define CPU_SUBTYPE_586 CPU_SUBTYPE_INTEL(5, 0)
233 #define CPU_SUBTYPE_PENT CPU_SUBTYPE_INTEL(5, 0)
234 #define CPU_SUBTYPE_PENTPRO CPU_SUBTYPE_INTEL(6, 1)
235 #define CPU_SUBTYPE_PENTII_M3 CPU_SUBTYPE_INTEL(6, 3)
236 #define CPU_SUBTYPE_PENTII_M5 CPU_SUBTYPE_INTEL(6, 5)
237 #define CPU_SUBTYPE_CELERON CPU_SUBTYPE_INTEL(7, 6)
238 #define CPU_SUBTYPE_CELERON_MOBILE CPU_SUBTYPE_INTEL(7, 7)
239 #define CPU_SUBTYPE_PENTIUM_3 CPU_SUBTYPE_INTEL(8, 0)
240 #define CPU_SUBTYPE_PENTIUM_3_M CPU_SUBTYPE_INTEL(8, 1)
241 #define CPU_SUBTYPE_PENTIUM_3_XEON CPU_SUBTYPE_INTEL(8, 2)
242 #define CPU_SUBTYPE_PENTIUM_M CPU_SUBTYPE_INTEL(9, 0)
243 #define CPU_SUBTYPE_PENTIUM_4 CPU_SUBTYPE_INTEL(10, 0)
244 #define CPU_SUBTYPE_PENTIUM_4_M CPU_SUBTYPE_INTEL(10, 1)
245 #define CPU_SUBTYPE_ITANIUM CPU_SUBTYPE_INTEL(11, 0)
246 #define CPU_SUBTYPE_ITANIUM_2 CPU_SUBTYPE_INTEL(11, 1)
247 #define CPU_SUBTYPE_XEON CPU_SUBTYPE_INTEL(12, 0)
248 #define CPU_SUBTYPE_XEON_MP CPU_SUBTYPE_INTEL(12, 1)
250 #define CPU_SUBTYPE_INTEL_FAMILY(x) ((x) & 15)
251 #define CPU_SUBTYPE_INTEL_FAMILY_MAX 15
253 #define CPU_SUBTYPE_INTEL_MODEL(x) ((x) >> 4)
254 #define CPU_SUBTYPE_INTEL_MODEL_ALL 0
260 #define CPU_SUBTYPE_X86_ALL ((cpu_subtype_t)3)
261 #define CPU_SUBTYPE_X86_64_ALL ((cpu_subtype_t)3)
262 #define CPU_SUBTYPE_X86_ARCH1 ((cpu_subtype_t)4)
265 #define CPU_THREADTYPE_INTEL_HTT ((cpu_threadtype_t) 1)
271 #define CPU_SUBTYPE_MIPS_ALL ((cpu_subtype_t) 0)
272 #define CPU_SUBTYPE_MIPS_R2300 ((cpu_subtype_t) 1)
273 #define CPU_SUBTYPE_MIPS_R2600 ((cpu_subtype_t) 2)
274 #define CPU_SUBTYPE_MIPS_R2800 ((cpu_subtype_t) 3)
275 #define CPU_SUBTYPE_MIPS_R2000a ((cpu_subtype_t) 4) /* pmax */
276 #define CPU_SUBTYPE_MIPS_R2000 ((cpu_subtype_t) 5)
277 #define CPU_SUBTYPE_MIPS_R3000a ((cpu_subtype_t) 6) /* 3max */
278 #define CPU_SUBTYPE_MIPS_R3000 ((cpu_subtype_t) 7)
281 * MC98000 (PowerPC) subtypes
283 #define CPU_SUBTYPE_MC98000_ALL ((cpu_subtype_t) 0)
284 #define CPU_SUBTYPE_MC98601 ((cpu_subtype_t) 1)
287 * HPPA subtypes for Hewlett-Packard HP-PA family of
288 * risc processors. Port by NeXT to 700 series.
291 #define CPU_SUBTYPE_HPPA_ALL ((cpu_subtype_t) 0)
292 #define CPU_SUBTYPE_HPPA_7100 ((cpu_subtype_t) 0) /* compat */
293 #define CPU_SUBTYPE_HPPA_7100LC ((cpu_subtype_t) 1)
298 #define CPU_SUBTYPE_MC88000_ALL ((cpu_subtype_t) 0)
299 #define CPU_SUBTYPE_MC88100 ((cpu_subtype_t) 1)
300 #define CPU_SUBTYPE_MC88110 ((cpu_subtype_t) 2)
305 #define CPU_SUBTYPE_SPARC_ALL ((cpu_subtype_t) 0)
310 #define CPU_SUBTYPE_I860_ALL ((cpu_subtype_t) 0)
311 #define CPU_SUBTYPE_I860_860 ((cpu_subtype_t) 1)
316 #define CPU_SUBTYPE_POWERPC_ALL ((cpu_subtype_t) 0)
317 #define CPU_SUBTYPE_POWERPC_601 ((cpu_subtype_t) 1)
318 #define CPU_SUBTYPE_POWERPC_602 ((cpu_subtype_t) 2)
319 #define CPU_SUBTYPE_POWERPC_603 ((cpu_subtype_t) 3)
320 #define CPU_SUBTYPE_POWERPC_603e ((cpu_subtype_t) 4)
321 #define CPU_SUBTYPE_POWERPC_603ev ((cpu_subtype_t) 5)
322 #define CPU_SUBTYPE_POWERPC_604 ((cpu_subtype_t) 6)
323 #define CPU_SUBTYPE_POWERPC_604e ((cpu_subtype_t) 7)
324 #define CPU_SUBTYPE_POWERPC_620 ((cpu_subtype_t) 8)
325 #define CPU_SUBTYPE_POWERPC_750 ((cpu_subtype_t) 9)
326 #define CPU_SUBTYPE_POWERPC_7400 ((cpu_subtype_t) 10)
327 #define CPU_SUBTYPE_POWERPC_7450 ((cpu_subtype_t) 11)
328 #define CPU_SUBTYPE_POWERPC_970 ((cpu_subtype_t) 100)
331 * CPU families (sysctl hw.cpufamily)
333 * NB: the encodings of the CPU families are intentionally arbitrary.
334 * There is no ordering, and you should never try to deduce whether
335 * or not some feature is available based on the family.
336 * Use feature flags (eg, hw.optional.altivec) to test for optional
339 #define CPUFAMILY_UNKNOWN 0
340 #define CPUFAMILY_POWERPC_G3 0xcee41549
341 #define CPUFAMILY_POWERPC_G4 0x77c184ae
342 #define CPUFAMILY_POWERPC_G5 0xed76d8aa
343 #define CPUFAMILY_INTEL_6_14 0x73d67300 /* Intel Core Solo and Intel Core Duo (32-bit Pentium-M with SSE3) */
344 #define CPUFAMILY_INTEL_6_15 0x426f69ef /* Intel Core 2 */
346 #endif /* _MACH_MACHINE_H_ */