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@
32 #ifndef _I386_MACHINE_ROUTINES_H_
33 #define _I386_MACHINE_ROUTINES_H_
35 #include <mach/mach_types.h>
36 #include <mach/boolean.h>
37 #include <kern/kern_types.h>
38 #include <pexpert/pexpert.h>
40 #include <sys/cdefs.h>
41 #include <sys/appleapiopts.h>
45 #ifdef XNU_KERNEL_PRIVATE
47 /* are we a 64 bit platform ? */
49 boolean_t
ml_is64bit(void);
51 /* is this a 64bit thread? */
53 boolean_t
ml_thread_is64bit(thread_t
);
55 /* is this a 64bit thread? */
57 boolean_t
ml_state_is64bit(void *);
59 /* set state of fpu save area for signal handling */
61 void ml_fp_setvalid(boolean_t
);
63 void ml_cpu_set_ldt(int);
65 /* Interrupt handling */
67 /* Initialize Interrupts */
68 void ml_init_interrupt(void);
70 /* Generate a fake interrupt */
71 void ml_cause_interrupt(void);
73 /* Initialize Interrupts */
74 void ml_install_interrupt_handler(
78 IOInterruptHandler handler
,
81 void ml_get_timebase(unsigned long long *timestamp
);
82 void ml_init_lock_timeout(void);
92 /* boot memory allocation */
93 vm_offset_t
ml_static_malloc(
96 /* virtual to physical on wired pages */
97 vm_offset_t
ml_vtophys(
100 vm_size_t
ml_nofault_copy(
101 vm_offset_t virtsrc
, vm_offset_t virtdst
, vm_size_t size
);
103 /* Machine topology info */
104 uint64_t ml_cpu_cache_size(unsigned int level
);
105 uint64_t ml_cpu_cache_sharing(unsigned int level
);
107 /* Initialize the maximum number of CPUs */
108 void ml_init_max_cpus(
109 unsigned long max_cpus
);
111 extern void ml_cpu_up(void);
112 extern void ml_cpu_down(void);
115 addr64_t phys_address
,
118 #if defined(PEXPERT_KERNEL_PRIVATE) || defined(MACH_KERNEL_PRIVATE)
119 /* IO memory map services */
121 /* Map memory map IO space */
122 vm_offset_t
ml_io_map(
123 vm_offset_t phys_addr
,
127 void ml_get_bouncepool_info(
128 vm_offset_t
*phys_addr
,
130 /* Indicates if spinlock, IPI and other timeouts should be suspended */
131 boolean_t
machine_timeout_suspended(void);
132 #endif /* PEXPERT_KERNEL_PRIVATE || MACH_KERNEL_PRIVATE */
134 /* Warm up a CPU to receive an interrupt */
135 kern_return_t
ml_interrupt_prewarm(uint64_t deadline
);
137 #endif /* XNU_KERNEL_PRIVATE */
139 #ifdef KERNEL_PRIVATE
141 /* Type for the Time Base Enable function */
142 typedef void (*time_base_enable_t
)(cpu_id_t cpu_id
, boolean_t enable
);
144 /* Type for the IPI Hander */
145 typedef void (*ipi_handler_t
)(void);
147 /* Struct for ml_processor_register */
148 struct ml_processor_info
{
151 vm_offset_t start_paddr
;
152 boolean_t supports_nap
;
153 unsigned long l2cr_value
;
154 time_base_enable_t time_base_enable
;
157 typedef struct ml_processor_info ml_processor_info_t
;
160 /* Register a processor */
162 ml_processor_register(
165 processor_t
*processor_out
,
169 /* PCI config cycle probing */
170 boolean_t
ml_probe_read(
173 boolean_t
ml_probe_read_64(
177 /* Read physical address byte */
178 unsigned int ml_phys_read_byte(
180 unsigned int ml_phys_read_byte_64(
183 /* Read physical address half word */
184 unsigned int ml_phys_read_half(
186 unsigned int ml_phys_read_half_64(
189 /* Read physical address word*/
190 unsigned int ml_phys_read(
192 unsigned int ml_phys_read_64(
194 unsigned int ml_phys_read_word(
196 unsigned int ml_phys_read_word_64(
199 /* Read physical address double word */
200 unsigned long long ml_phys_read_double(
202 unsigned long long ml_phys_read_double_64(
205 /* Write physical address byte */
206 void ml_phys_write_byte(
207 vm_offset_t paddr
, unsigned int data
);
208 void ml_phys_write_byte_64(
209 addr64_t paddr
, unsigned int data
);
211 /* Write physical address half word */
212 void ml_phys_write_half(
213 vm_offset_t paddr
, unsigned int data
);
214 void ml_phys_write_half_64(
215 addr64_t paddr
, unsigned int data
);
217 /* Write physical address word */
219 vm_offset_t paddr
, unsigned int data
);
220 void ml_phys_write_64(
221 addr64_t paddr
, unsigned int data
);
222 void ml_phys_write_word(
223 vm_offset_t paddr
, unsigned int data
);
224 void ml_phys_write_word_64(
225 addr64_t paddr
, unsigned int data
);
227 /* Write physical address double word */
228 void ml_phys_write_double(
229 vm_offset_t paddr
, unsigned long long data
);
230 void ml_phys_write_double_64(
231 addr64_t paddr
, unsigned long long data
);
233 /* Struct for ml_cpu_get_info */
235 uint32_t vector_unit
;
236 uint32_t cache_line_size
;
237 uint32_t l1_icache_size
;
238 uint32_t l1_dcache_size
;
239 uint32_t l2_settings
;
240 uint32_t l2_cache_size
;
241 uint32_t l3_settings
;
242 uint32_t l3_cache_size
;
245 typedef struct ml_cpu_info ml_cpu_info_t
;
247 /* Get processor info */
248 void ml_cpu_get_info(ml_cpu_info_t
*ml_cpu_info
);
250 void ml_thread_policy(
253 unsigned policy_info
);
255 #define MACHINE_GROUP 0x00000001
256 #define MACHINE_NETWORK_GROUP 0x10000000
257 #define MACHINE_NETWORK_WORKLOOP 0x00000001
258 #define MACHINE_NETWORK_NETISR 0x00000002
260 /* Return the maximum number of CPUs set by ml_init_max_cpus() */
265 * The following are in pmCPU.c not machine_routines.c.
267 extern void ml_set_maxsnoop(uint32_t maxdelay
);
268 extern unsigned ml_get_maxsnoop(void);
269 extern void ml_set_maxbusdelay(uint32_t mdelay
);
270 extern uint32_t ml_get_maxbusdelay(void);
271 extern void ml_set_maxintdelay(uint64_t mdelay
);
272 extern uint64_t ml_get_maxintdelay(void);
273 extern boolean_t
ml_get_interrupt_prewake_applicable(void);
276 extern uint64_t tmrCvt(uint64_t time
, uint64_t conversion
);
278 extern uint64_t ml_cpu_int_event_time(void);
280 #endif /* KERNEL_PRIVATE */
282 /* Get Interrupts Enabled */
283 boolean_t
ml_get_interrupts_enabled(void);
285 /* Set Interrupts Enabled */
286 boolean_t
ml_set_interrupts_enabled(boolean_t enable
);
288 /* Check if running at interrupt context */
289 boolean_t
ml_at_interrupt_context(void);
291 /* Zero bytes starting at a physical address */
293 addr64_t phys_address
,
296 /* Bytes available on current stack */
297 vm_offset_t
ml_stack_remaining(void);
300 void ml_get_csw_threads(thread_t
* /*old*/, thread_t
* /*new*/);
301 #endif /* CONFIG_COUNTERS */
305 #ifdef XNU_KERNEL_PRIVATE
306 boolean_t
ml_fpu_avx_enabled(void);
307 void interrupt_latency_tracker_setup(void);
308 void interrupt_reset_latency_stats(void);
309 void interrupt_populate_latency_stats(char *, unsigned);
311 #endif /* XNU_KERNEL_PRIVATE */
312 #endif /* _I386_MACHINE_ROUTINES_H_ */