2 * Copyright (c) 2000-2009 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@
31 * cpu specific routines
34 #include <kern/kalloc.h>
35 #include <kern/misc_protos.h>
36 #include <kern/machine.h>
37 #include <mach/processor_info.h>
38 #include <i386/pmap.h>
39 #include <i386/machine_cpu.h>
40 #include <i386/machine_routines.h>
41 #include <i386/misc_protos.h>
42 #include <i386/cpu_threads.h>
43 #include <i386/rtclock_protos.h>
44 #include <i386/cpuid.h>
46 #include <i386/vmx/vmx_cpu.h>
48 #include <vm/vm_kern.h>
49 #include <kern/etimer.h>
50 #include <kern/timer_call.h>
52 struct processor processor_master
;
58 processor_info_t info
,
61 printf("cpu_control(%d,%p,%d) not implemented\n",
62 slot_num
, info
, count
);
63 return (KERN_FAILURE
);
69 __unused processor_flavor_t flavor
,
73 return (KERN_FAILURE
);
79 processor_flavor_t flavor
,
81 processor_info_t info
,
84 printf("cpu_info(%d,%d,%p,%p) not implemented\n",
85 flavor
, slot_num
, info
, count
);
86 return (KERN_FAILURE
);
92 cpu_data_t
*cdp
= current_cpu_datap();
94 i386_deactivate_cpu();
96 PE_cpu_machine_quiesce(cdp
->cpu_id
);
104 cpu_data_t
*cdp
= current_cpu_datap();
106 timer_call_initialize_queue(&cdp
->rtclock_timer
.queue
);
107 cdp
->rtclock_timer
.deadline
= EndOfAllTime
;
109 cdp
->cpu_type
= cpuid_cputype();
110 cdp
->cpu_subtype
= cpuid_cpusubtype();
121 if (cpu
== cpu_number()) {
127 * Try to bring the CPU back online without a reset.
128 * If the fast restart doesn't succeed, fall back to
131 ret
= intel_startCPU_fast(cpu
);
132 if (ret
!= KERN_SUCCESS
) {
134 * Should call out through PE.
135 * But take the shortcut here.
137 ret
= intel_startCPU(cpu
);
140 if (ret
!= KERN_SUCCESS
)
141 kprintf("cpu: cpu_start(%d) returning failure!\n", cpu
);
150 cpu_data_t
*cdp
= cpu_datap(cpu
);
153 * Wait until the CPU indicates that it has stopped.
155 simple_lock(&x86_topo_lock
);
156 while ((cdp
->lcpu
.state
!= LCPU_HALT
)
157 && (cdp
->lcpu
.state
!= LCPU_OFF
)
158 && !cdp
->lcpu
.stopped
) {
159 simple_unlock(&x86_topo_lock
);
161 simple_lock(&x86_topo_lock
);
163 simple_unlock(&x86_topo_lock
);
170 cpu_data_t
*cdp
= current_cpu_datap();
172 PE_cpu_machine_init(cdp
->cpu_id
, !cdp
->cpu_boot_complete
);
173 cdp
->cpu_boot_complete
= TRUE
;
174 cdp
->cpu_running
= TRUE
;
178 /* for every CPU, get the VT specs */
184 cpu_processor_alloc(boolean_t is_boot_cpu
)
190 return &processor_master
;
192 ret
= kmem_alloc(kernel_map
, (vm_offset_t
*) &proc
, sizeof(*proc
));
193 if (ret
!= KERN_SUCCESS
)
196 bzero((void *) proc
, sizeof(*proc
));
201 cpu_processor_free(processor_t proc
)
203 if (proc
!= NULL
&& proc
!= &processor_master
)
204 kfree((void *) proc
, sizeof(*proc
));
208 current_processor(void)
210 return current_cpu_datap()->cpu_processor
;
217 return cpu_datap(cpu
)->cpu_processor
;
223 return (¤t_cpu_datap()->cpu_pending_ast
);
230 return (cpu_datap(slot_num
)->cpu_type
);
237 return (cpu_datap(slot_num
)->cpu_subtype
);
244 return (cpu_datap(slot_num
)->cpu_threadtype
);
250 return (current_cpu_datap()->cpu_type
);
256 return (current_cpu_datap()->cpu_subtype
);
262 return (current_cpu_datap()->cpu_threadtype
);