Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 | /* * Copyright (c) 2000-2007 Apple Inc. All rights reserved. * * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ * * This file contains Original Code and/or Modifications of Original Code * as defined in and that are subject to the Apple Public Source License * Version 2.0 (the 'License'). You may not use this file except in * compliance with the License. The rights granted to you under the License * may not be used to create, or enable the creation or redistribution of, * unlawful or unlicensed copies of an Apple operating system, or to * circumvent, violate, or enable the circumvention or violation of, any * terms of an Apple operating system software license agreement. * * Please obtain a copy of the License at * http://www.opensource.apple.com/apsl/ and read it before using this file. * * The Original Code and all software distributed under the License are * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. * Please see the License for the specific language governing rights and * limitations under the License. * * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ */ /* * @OSF_COPYRIGHT@ */ /* * Mach Operating System * Copyright (c) 1991,1990 Carnegie Mellon University * All Rights Reserved. * * Permission to use, copy, modify and distribute this software and its * documentation is hereby granted, provided that both the copyright * notice and this permission notice appear in all copies of the * software, derivative works or modified versions, and any portions * thereof, and that both notices appear in supporting documentation. * * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE. * * Carnegie Mellon requests users of this software to return to * * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU * School of Computer Science * Carnegie Mellon University * Pittsburgh PA 15213-3890 * * any improvements or extensions that they make and grant Carnegie Mellon * the rights to redistribute these changes. */ /* */ #ifdef KERNEL_PRIVATE #ifndef _I386AT_MP_H_ #define _I386AT_MP_H_ #ifndef DEBUG #include <debug.h> #endif //#define MP_DEBUG 1 #include <i386/apic.h> #include <i386/mp_events.h> #define LAPIC_ID_MAX (LAPIC_ID_MASK) #define MAX_CPUS (LAPIC_ID_MAX + 1) #ifndef ASSEMBLER #include <sys/cdefs.h> #include <mach/boolean.h> #include <mach/kern_return.h> #include <mach/i386/thread_status.h> __BEGIN_DECLS extern kern_return_t intel_startCPU(int slot_num); extern void i386_init_slave(void); extern void smp_init(void); extern void cpu_interrupt(int cpu); extern void lapic_init(void); extern void lapic_shutdown(void); extern void lapic_smm_restore(void); extern boolean_t lapic_probe(void); extern void lapic_dump(void); extern int lapic_interrupt(int interrupt, x86_saved_state_t *state); extern void lapic_end_of_interrupt(void); extern int lapic_to_cpu[]; extern int cpu_to_lapic[]; extern int lapic_interrupt_base; extern void lapic_cpu_map(int lapic, int cpu_num); extern uint32_t ml_get_apicid(uint32_t cpu); extern void lapic_set_timer( boolean_t interrupt, lapic_timer_mode_t mode, lapic_timer_divide_t divisor, lapic_timer_count_t initial_count); extern void lapic_get_timer( lapic_timer_mode_t *mode, lapic_timer_divide_t *divisor, lapic_timer_count_t *initial_count, lapic_timer_count_t *current_count); typedef void (*i386_intr_func_t)(void *); extern void lapic_set_timer_func(i386_intr_func_t func); extern void lapic_set_pmi_func(i386_intr_func_t func); extern void lapic_set_thermal_func(i386_intr_func_t func); __END_DECLS /* * By default, use high vectors to leave vector space for systems * with multiple I/O APIC's. However some systems that boot with * local APIC disabled will hang in SMM when vectors greater than * 0x5F are used. Those systems are not expected to have I/O APIC * so 16 (0x50 - 0x40) vectors for legacy PIC support is perfect. */ #define LAPIC_DEFAULT_INTERRUPT_BASE 0xD0 #define LAPIC_REDUCED_INTERRUPT_BASE 0x50 /* * Specific lapic interrupts are relative to this base * in priority order from high to low: */ #define LAPIC_PERFCNT_INTERRUPT 0xF #define LAPIC_TIMER_INTERRUPT 0xE #define LAPIC_INTERPROCESSOR_INTERRUPT 0xD #define LAPIC_THERMAL_INTERRUPT 0xC #define LAPIC_ERROR_INTERRUPT 0xB #define LAPIC_SPURIOUS_INTERRUPT 0xA /* The vector field is ignored for NMI interrupts via the LAPIC * or otherwise, so this is not an offset from the interrupt * base. */ #define LAPIC_NMI_INTERRUPT 0x2 #define LAPIC_REG(reg) \ (*((volatile uint32_t *)(lapic_start + LAPIC_##reg))) #define LAPIC_REG_OFFSET(reg,off) \ (*((volatile uint32_t *)(lapic_start + LAPIC_##reg + (off)))) #define LAPIC_VECTOR(src) \ (lapic_interrupt_base + LAPIC_##src##_INTERRUPT) #define LAPIC_ISR_IS_SET(base,src) \ (LAPIC_REG_OFFSET(ISR_BASE,((base+LAPIC_##src##_INTERRUPT)/32)*0x10) & \ (1 <<((base + LAPIC_##src##_INTERRUPT)%32))) extern vm_offset_t lapic_start; #endif /* ASSEMBLER */ #define CPU_NUMBER(r) \ movl %gs:CPU_NUMBER_GS,r #define CPU_NUMBER_FROM_LAPIC(r) \ movl EXT(lapic_id),r; \ movl 0(r),r; \ shrl $(LAPIC_ID_SHIFT),r; \ andl $(LAPIC_ID_MASK),r; \ movl EXT(lapic_to_cpu)(,r,4),r /* word describing the reason for the interrupt, one per cpu */ #ifndef ASSEMBLER #include <kern/lock.h> extern unsigned int real_ncpus; /* real number of cpus */ extern unsigned int max_ncpus; /* max number of cpus */ decl_simple_lock_data(extern,kdb_lock) /* kdb lock */ __BEGIN_DECLS extern void console_init(void); extern void *console_cpu_alloc(boolean_t boot_cpu); extern void console_cpu_free(void *console_buf); extern int kdb_cpu; /* current cpu running kdb */ extern int kdb_debug; extern int kdb_active[]; extern volatile boolean_t mp_kdp_trap; extern boolean_t force_immediate_debugger_NMI; extern void mp_kdp_enter(void); extern void mp_kdp_exit(void); #if MACH_KDB extern void mp_kdb_exit(void); #endif /* * All cpu rendezvous: */ extern void mp_rendezvous( void (*setup_func)(void *), void (*action_func)(void *), void (*teardown_func)(void *), void *arg); extern void mp_rendezvous_no_intrs( void (*action_func)(void *), void *arg); extern void mp_rendezvous_break_lock(void); /* * All cpu broadcast. * Called from thread context, this blocks until all active cpus have * run action_func: */ extern void mp_broadcast( void (*action_func)(void *), void *arg); typedef uint32_t cpu_t; typedef uint32_t cpumask_t; static inline cpumask_t cpu_to_cpumask(cpu_t cpu) { return (cpu < 32) ? (1 << cpu) : 0; } #define CPUMASK_ALL 0xffffffff #define CPUMASK_SELF cpu_to_cpumask(cpu_number()) #define CPUMASK_OTHERS (CPUMASK_ALL & ~CPUMASK_SELF) /* * Invoke a function (possibly NULL) on a set of cpus specified by a mask. * The mask may include the local cpu. * If the mode is: * - ASYNC: other cpus make their calls in parallel. * - SYNC: the calls are performed serially in logical cpu order. * This call returns when the function has been run on all specified cpus. * The return value is the number of cpus on which the call was made. * The action function is called with interrupts disabled. */ extern cpu_t mp_cpus_call( cpumask_t cpus, mp_sync_t mode, void (*action_func)(void *), void *arg); __END_DECLS #if MP_DEBUG typedef struct { uint64_t time; int cpu; mp_event_t event; } cpu_signal_event_t; #define LOG_NENTRIES 100 typedef struct { uint64_t count[MP_LAST]; int next_entry; cpu_signal_event_t entry[LOG_NENTRIES]; } cpu_signal_event_log_t; extern cpu_signal_event_log_t *cpu_signal[]; extern cpu_signal_event_log_t *cpu_handle[]; #define DBGLOG(log,_cpu,_event) { \ boolean_t spl = ml_set_interrupts_enabled(FALSE); \ cpu_signal_event_log_t *logp = log[cpu_number()]; \ int next = logp->next_entry; \ cpu_signal_event_t *eventp = &logp->entry[next]; \ \ logp->count[_event]++; \ \ eventp->time = rdtsc64(); \ eventp->cpu = _cpu; \ eventp->event = _event; \ if (next == (LOG_NENTRIES - 1)) \ logp->next_entry = 0; \ else \ logp->next_entry++; \ \ (void) ml_set_interrupts_enabled(spl); \ } #define DBGLOG_CPU_INIT(cpu) { \ cpu_signal_event_log_t **sig_logpp = &cpu_signal[cpu]; \ cpu_signal_event_log_t **hdl_logpp = &cpu_handle[cpu]; \ \ if (*sig_logpp == NULL && \ kmem_alloc(kernel_map, \ (vm_offset_t *) sig_logpp, \ sizeof(cpu_signal_event_log_t)) != KERN_SUCCESS)\ panic("DBGLOG_CPU_INIT cpu_signal allocation failed\n");\ bzero(*sig_logpp, sizeof(cpu_signal_event_log_t)); \ if (*hdl_logpp == NULL && \ kmem_alloc(kernel_map, \ (vm_offset_t *) hdl_logpp, \ sizeof(cpu_signal_event_log_t)) != KERN_SUCCESS)\ panic("DBGLOG_CPU_INIT cpu_handle allocation failed\n");\ bzero(*sig_logpp, sizeof(cpu_signal_event_log_t)); \ } #else /* MP_DEBUG */ #define DBGLOG(log,_cpu,_event) #define DBGLOG_CPU_INIT(cpu) #endif /* MP_DEBUG */ #endif /* ASSEMBLER */ #define i_bit(bit, word) ((long)(*(word)) & ((long)1 << (bit))) /* * Device driver synchronization. * * at386_io_lock(op) and at386_io_unlock() are called * by device drivers when accessing H/W. The underlying * Processing is machine dependant. But the op argument * to the at386_io_lock is generic */ #define MP_DEV_OP_MAX 4 #define MP_DEV_WAIT MP_DEV_OP_MAX /* Wait for the lock */ /* * If the caller specifies an op value different than MP_DEV_WAIT, the * at386_io_lock function must return true if lock was successful else * false */ #define MP_DEV_OP_START 0 /* If lock busy, register a pending start op */ #define MP_DEV_OP_INTR 1 /* If lock busy, register a pending intr */ #define MP_DEV_OP_TIMEO 2 /* If lock busy, register a pending timeout */ #define MP_DEV_OP_CALLB 3 /* If lock busy, register a pending callback */ #if MACH_RT #define _DISABLE_PREEMPTION \ incl %gs:CPU_PREEMPTION_LEVEL #define _ENABLE_PREEMPTION \ decl %gs:CPU_PREEMPTION_LEVEL ; \ jne 9f ; \ pushl %eax ; \ pushl %ecx ; \ pushl %edx ; \ call EXT(kernel_preempt_check) ; \ popl %edx ; \ popl %ecx ; \ popl %eax ; \ 9: #define _ENABLE_PREEMPTION_NO_CHECK \ decl %gs:CPU_PREEMPTION_LEVEL #if MACH_ASSERT #define DISABLE_PREEMPTION \ pushl %eax; \ pushl %ecx; \ pushl %edx; \ call EXT(_disable_preemption); \ popl %edx; \ popl %ecx; \ popl %eax #define ENABLE_PREEMPTION \ pushl %eax; \ pushl %ecx; \ pushl %edx; \ call EXT(_enable_preemption); \ popl %edx; \ popl %ecx; \ popl %eax #define ENABLE_PREEMPTION_NO_CHECK \ pushl %eax; \ pushl %ecx; \ pushl %edx; \ call EXT(_enable_preemption_no_check); \ popl %edx; \ popl %ecx; \ popl %eax #define MP_DISABLE_PREEMPTION \ pushl %eax; \ pushl %ecx; \ pushl %edx; \ call EXT(_mp_disable_preemption); \ popl %edx; \ popl %ecx; \ popl %eax #define MP_ENABLE_PREEMPTION \ pushl %eax; \ pushl %ecx; \ pushl %edx; \ call EXT(_mp_enable_preemption); \ popl %edx; \ popl %ecx; \ popl %eax #define MP_ENABLE_PREEMPTION_NO_CHECK \ pushl %eax; \ pushl %ecx; \ pushl %edx; \ call EXT(_mp_enable_preemption_no_check); \ popl %edx; \ popl %ecx; \ popl %eax #else /* MACH_ASSERT */ #define DISABLE_PREEMPTION _DISABLE_PREEMPTION #define ENABLE_PREEMPTION _ENABLE_PREEMPTION #define ENABLE_PREEMPTION_NO_CHECK _ENABLE_PREEMPTION_NO_CHECK #define MP_DISABLE_PREEMPTION _DISABLE_PREEMPTION #define MP_ENABLE_PREEMPTION _ENABLE_PREEMPTION #define MP_ENABLE_PREEMPTION_NO_CHECK _ENABLE_PREEMPTION_NO_CHECK #endif /* MACH_ASSERT */ #else /* MACH_RT */ #define DISABLE_PREEMPTION #define ENABLE_PREEMPTION #define ENABLE_PREEMPTION_NO_CHECK #define MP_DISABLE_PREEMPTION #define MP_ENABLE_PREEMPTION #define MP_ENABLE_PREEMPTION_NO_CHECK #endif /* MACH_RT */ #endif /* _I386AT_MP_H_ */ #endif /* KERNEL_PRIVATE */ |