2 * Copyright (c) 2000-2004 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@
26 #ifndef _KERN_MACHINE_H_
27 #define _KERN_MACHINE_H_
29 #include <mach/kern_return.h>
30 #include <mach/processor_info.h>
31 #include <kern/kern_types.h>
34 * Machine support declarations.
37 extern void processor_up(
38 processor_t processor
);
40 extern void processor_offline(
41 processor_t processor
);
43 extern void processor_start_thread(void);
46 * Must be implemented in machine dependent code.
49 /* Initialize machine dependent ast code */
50 extern void init_ast_check(
51 processor_t processor
);
53 /* Cause check for ast */
54 extern void cause_ast_check(
55 processor_t processor
);
57 extern kern_return_t
cpu_control(
59 processor_info_t info
,
62 extern void cpu_sleep(void);
64 extern kern_return_t
cpu_start(
67 extern void cpu_exit_wait(
70 extern kern_return_t
cpu_info(
71 processor_flavor_t flavor
,
73 processor_info_t info
,
76 extern kern_return_t
cpu_info_count(
77 processor_flavor_t flavor
,
80 extern thread_t
machine_processor_shutdown(
82 void (*doshutdown
)(processor_t
),
83 processor_t processor
);
85 extern void machine_idle(void);
87 extern void machine_signal_idle(
88 processor_t processor
);
90 extern void halt_cpu(void);
92 extern void halt_all_cpus(
95 extern char *machine_boot_info(
100 * Machine-dependent routine to fill in an array with up to callstack_max
101 * levels of return pc information.
103 extern void machine_callstack(
105 vm_size_t callstack_max
);
107 extern void consider_machine_collect(void);
109 #endif /* _KERN_MACHINE_H_ */