2 * Copyright (c) 2017 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@
28 #ifndef _ARM_MACHINE_CPUID_H_
29 #define _ARM_MACHINE_CPUID_H_
31 /* CPU feature identification */
34 uint32_t arm_32bit_isa
: 4,
42 arm_feature_bits_t field
;
46 // Register 0, subtype 21: Instruction Set Features #1
48 uint32_t endianness_support
: 4;
49 uint32_t exception_1_support
: 4;
50 uint32_t exception_2_support
: 4;
51 uint32_t sign_zero_ext_support
: 4;
52 uint32_t if_then_support
: 4;
53 uint32_t immediate_support
: 4;
54 uint32_t interworking_support
: 4;
55 uint32_t jazelle_support
: 4;
57 syscp_ID_instructions_feat_1_reg
;
61 syscp_ID_instructions_feat_1_reg field
;
64 arm_isa_feat1_reg
machine_read_isa_feat1(void);
66 /* Debug identification */
71 uint32_t coprocessor_core_debug
: 4,
72 coprocessor_secure_debug
: 4,
73 memory_mapped_core_debug
: 4,
74 coprocessor_trace_debug
: 4,
75 memory_mapped_trace_debug
: 4,
76 microcontroller_debug
: 4;
84 uint32_t revision
: 4,
100 boolean_t memory_mapped_core_debug
;
101 boolean_t coprocessor_core_debug
;
102 uint32_t num_watchpoint_pairs
;
103 uint32_t num_breakpoint_pairs
;
106 #endif /* _ARM_MACHINE_CPUID_H_ */