2 * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * Copyright (c) 1999-2003 Apple Computer, Inc. All Rights Reserved.
8 * This file contains Original Code and/or Modifications of Original Code
9 * as defined in and that are subject to the Apple Public Source License
10 * Version 2.0 (the 'License'). You may not use this file except in
11 * compliance with the License. Please obtain a copy of the License at
12 * http://www.opensource.apple.com/apsl/ and read it before using this
15 * The Original Code and all software distributed under the License are
16 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
17 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
18 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
20 * Please see the License for the specific language governing rights and
21 * limitations under the License.
23 * @APPLE_LICENSE_HEADER_END@
29 #ifndef _PPC_MACHINE_ROUTINES_H_
30 #define _PPC_MACHINE_ROUTINES_H_
32 #include <mach/mach_types.h>
33 #include <mach/boolean.h>
34 #include <kern/kern_types.h>
35 #include <pexpert/pexpert.h>
37 #include <sys/appleapiopts.h>
39 /* Get Interrupts Enabled */
40 boolean_t
ml_get_interrupts_enabled(void);
42 /* Set Interrupts Enabled */
43 boolean_t
ml_set_interrupts_enabled(boolean_t enable
);
45 /* Check if running at interrupt context */
46 boolean_t
ml_at_interrupt_context(void);
48 /* Generate a fake interrupt */
49 void ml_cause_interrupt(void);
51 /* Type for the IPI Hander */
52 typedef void (*ipi_handler_t
)(void);
54 /* Type for the Time Base Enable function */
55 typedef void (*time_base_enable_t
)(cpu_id_t cpu_id
, boolean_t enable
);
57 /* enables (or disables) the processor nap mode the function returns the previous value*/
58 boolean_t
ml_enable_nap(
60 boolean_t nap_enabled
);
62 /* Put the processor to sleep */
63 void ml_ppc_sleep(void);
64 void ml_get_timebase(unsigned long long *timstamp
);
65 void ml_sense__nmi(void);
67 int ml_enable_cache_level(int cache_level
, int enable
);
74 void ml_install_interrupt_handler(
78 IOInterruptHandler handler
,
81 #ifdef __APPLE_API_UNSTABLE
87 /* virtual to physical on wired pages */
88 vm_offset_t
ml_vtophys(
91 /* PCI config cycle probing */
92 boolean_t
ml_probe_read(
96 /* Read physical address byte */
97 unsigned int ml_phys_read_byte(
100 /* Read physical address */
101 unsigned int ml_phys_read(
104 /* Write physical address byte */
105 void ml_phys_write_byte(
106 vm_offset_t paddr
, unsigned int data
);
108 /* Write physical address */
110 vm_offset_t paddr
, unsigned int data
);
112 /* Struct for ml_processor_register */
113 struct ml_processor_info_t
{
116 vm_offset_t start_paddr
;
117 boolean_t supports_nap
;
118 unsigned long l2cr_value
;
119 time_base_enable_t time_base_enable
;
122 typedef struct ml_processor_info_t ml_processor_info_t
;
124 /* Register a processor */
125 kern_return_t
ml_processor_register(
126 ml_processor_info_t
*processor_info
,
127 processor_t
*processor
,
128 ipi_handler_t
*ipi_handler
);
130 #endif /* __APPLE_API_UNSTABLE */
132 #ifdef __APPLE_API_PRIVATE
133 #if defined(PEXPERT_KERNEL_PRIVATE) || defined(MACH_KERNEL_PRIVATE)
134 /* IO memory map services */
136 /* Map memory map IO space */
137 vm_offset_t
ml_io_map(
138 vm_offset_t phys_addr
,
141 /* boot memory allocation */
142 vm_offset_t
ml_static_malloc(
145 #endif /* PEXPERT_KERNEL_PRIVATE || MACH_KERNEL_PRIVATE */
147 #ifdef MACH_KERNEL_PRIVATE
148 void ml_init_interrupt(void);
150 boolean_t
fake_get_interrupts_enabled(void);
152 boolean_t
fake_set_interrupts_enabled(
155 /* check pending timers */
156 void machine_clock_assist(void);
158 void machine_idle(void);
160 void machine_signal_idle(
161 processor_t processor
);
163 void cacheInit(void);
165 void cacheDisable(void);
167 void ml_thrm_init(void);
168 unsigned int ml_read_temp(void);
174 unsigned int ml_throttle(
177 #endif /* MACH_KERNEL_PRIVATE */
179 void ml_thread_policy(
182 unsigned policy_info
);
184 #define MACHINE_GROUP 0x00000001
185 #define MACHINE_NETWORK_GROUP 0x10000000
186 #define MACHINE_NETWORK_WORKLOOP 0x00000001
187 #define MACHINE_NETWORK_NETISR 0x00000002
189 /* Initialize the maximum number of CPUs */
190 void ml_init_max_cpus(
191 unsigned long max_cpus
);
193 /* Return the maximum number of CPUs set by ml_init_max_cpus() */
197 /* Return the current number of CPUs */
198 int ml_get_current_cpus(
201 /* Struct for ml_cpu_get_info */
203 unsigned long vector_unit
;
204 unsigned long cache_line_size
;
205 unsigned long l1_icache_size
;
206 unsigned long l1_dcache_size
;
207 unsigned long l2_settings
;
208 unsigned long l2_cache_size
;
209 unsigned long l3_settings
;
210 unsigned long l3_cache_size
;
213 typedef struct ml_cpu_info ml_cpu_info_t
;
215 /* Get processor info */
216 void ml_cpu_get_info(ml_cpu_info_t
*cpu_info
);
218 void ml_set_processor_speed(unsigned long speed
);
219 void ml_set_processor_voltage(unsigned long voltage
);
221 #endif /* __APPLE_API_PRIVATE */
223 #endif /* _PPC_MACHINE_ROUTINES_H_ */