/*
+ * Copyright (c) 2000-2012 Apple Inc. All rights reserved.
*
* @APPLE_OSREFERENCE_LICENSE_HEADER_START@
*
#include <kern/machine.h>
#include <kern/pms.h>
#include <kern/misc_protos.h>
-#include <kern/etimer.h>
+#include <kern/timer_call.h>
#include <kern/kalloc.h>
#include <kern/queue.h>
+#include <prng/random.h>
#include <vm/vm_map.h>
#include <vm/vm_kern.h>
#include <profiling/profile-mk.h>
+#include <i386/bit_routines.h>
#include <i386/proc_reg.h>
#include <i386/cpu_threads.h>
#include <i386/mp_desc.h>
#include <sys/kdebug.h>
+#include <console/serial_protos.h>
+
#if MP_DEBUG
#define PAUSE delay(1000000)
#define DBG(x...) kprintf(x)
#define TRACE_MP_CPUS_CALL_LOCAL MACHDBG_CODE(DBG_MACH_MP, 2)
#define TRACE_MP_CPUS_CALL_ACTION MACHDBG_CODE(DBG_MACH_MP, 3)
#define TRACE_MP_CPUS_CALL_NOBUF MACHDBG_CODE(DBG_MACH_MP, 4)
+#define TRACE_MP_CPU_FAST_START MACHDBG_CODE(DBG_MACH_MP, 5)
+#define TRACE_MP_CPU_START MACHDBG_CODE(DBG_MACH_MP, 6)
+#define TRACE_MP_CPU_DEACTIVATE MACHDBG_CODE(DBG_MACH_MP, 7)
#define ABS(v) (((v) > 0)?(v):-(v))
void slave_boot_init(void);
void i386_cpu_IPI(int cpu);
+#if MACH_KDP
static void mp_kdp_wait(boolean_t flush, boolean_t isNMI);
+#endif /* MACH_KDP */
static void mp_rendezvous_action(void);
static void mp_broadcast_action(void);
+#if MACH_KDP
static boolean_t cpu_signal_pending(int cpu, mp_event_t event);
+#endif /* MACH_KDP */
static int NMIInterruptHandler(x86_saved_state_t *regs);
boolean_t smp_initialized = FALSE;
decl_lck_mtx_data(static, mp_bc_lock);
lck_mtx_ext_t mp_bc_lock_ext;
static volatile int debugger_cpu = -1;
-volatile long NMIPI_acks = 0;
+volatile long NMIPI_acks = 0;
+volatile long NMI_count = 0;
+
+extern void NMI_cpus(void);
static void mp_cpus_call_init(void);
-static void mp_cpus_call_cpu_init(void);
static void mp_cpus_call_action(void);
static void mp_call_PM(void);
+static boolean_t mp_cpus_call_wait_timeout = FALSE;
+
char mp_slave_stack[PAGE_SIZE] __attribute__((aligned(PAGE_SIZE))); // Temp stack for slave init
/* PAL-related routines */
DBGLOG_CPU_INIT(master_cpu);
mp_cpus_call_init();
- mp_cpus_call_cpu_init();
+ mp_cpus_call_cpu_init(master_cpu);
if (PE_parse_boot_argn("TSC_sync_margin",
&TSC_sync_margin, sizeof(TSC_sync_margin))) {
*/
return(rc);
+ KERNEL_DEBUG_CONSTANT(
+ TRACE_MP_CPU_FAST_START | DBG_FUNC_START,
+ slot_num, 0, 0, 0, 0);
+
/*
* Wait until the CPU is back online.
*/
mp_wait_for_cpu_up(slot_num, 30000, 1);
mp_enable_preemption();
+ KERNEL_DEBUG_CONSTANT(
+ TRACE_MP_CPU_FAST_START | DBG_FUNC_END,
+ slot_num, cpu_datap(slot_num)->cpu_running, 0, 0, 0);
+
/*
* Check to make sure that the CPU is really running. If not,
* go through the slow path.
if (cpu_number() != psip->starter_cpu)
return;
+ DBG("start_cpu(%p) about to start cpu %d, lapic %d\n",
+ arg, psip->target_cpu, psip->target_lapic);
+
+ KERNEL_DEBUG_CONSTANT(
+ TRACE_MP_CPU_START | DBG_FUNC_START,
+ psip->target_cpu,
+ psip->target_lapic, 0, 0, 0);
+
i386_start_cpu(psip->target_lapic, psip->target_cpu);
#ifdef POSTCODE_DELAY
/* Wait much longer if postcodes are displayed for a delay period. */
i *= 10000;
#endif
+ DBG("start_cpu(%p) about to wait for cpu %d\n",
+ arg, psip->target_cpu);
+
mp_wait_for_cpu_up(psip->target_cpu, i*100, 100);
+
+ KERNEL_DEBUG_CONSTANT(
+ TRACE_MP_CPU_START | DBG_FUNC_END,
+ psip->target_cpu,
+ cpu_datap(psip->target_cpu)->cpu_running, 0, 0, 0);
+
if (TSC_sync_margin &&
cpu_datap(psip->target_cpu)->cpu_running) {
/*
* Initialize (or re-initialize) the descriptor tables for this cpu.
* Propagate processor mode to slave.
*/
- if (cpu_mode_is64bit())
- cpu_desc_init64(cpu_datap(slot_num));
- else
- cpu_desc_init(cpu_datap(slot_num));
+ cpu_desc_init64(cpu_datap(slot_num));
/* Serialize use of the slave boot stack, etc. */
lck_mtx_lock(&mp_cpu_boot_lock);
#endif /* MP_DEBUG */
+/*
+ * Note: called with NULL state when polling for TLB flush and cross-calls.
+ */
int
cpu_signal_handler(x86_saved_state_t *regs)
{
+#if !MACH_KDP
+#pragma unused (regs)
+#endif /* !MACH_KDP */
int my_cpu;
volatile int *my_word;
DBGLOG(cpu_handle,my_cpu,MP_TLB_FLUSH);
i_bit_clear(MP_TLB_FLUSH, my_word);
pmap_update_interrupt();
- } else if (i_bit(MP_AST, my_word)) {
- DBGLOG(cpu_handle,my_cpu,MP_AST);
- i_bit_clear(MP_AST, my_word);
- ast_check(cpu_to_processor(my_cpu));
} else if (i_bit(MP_RENDEZVOUS, my_word)) {
DBGLOG(cpu_handle,my_cpu,MP_RENDEZVOUS);
i_bit_clear(MP_RENDEZVOUS, my_word);
i_bit_clear(MP_CALL_PM, my_word);
mp_call_PM();
}
+ if (regs == NULL) {
+ /* Called to poll only for cross-calls and TLB flush */
+ break;
+ } else if (i_bit(MP_AST, my_word)) {
+ DBGLOG(cpu_handle,my_cpu,MP_AST);
+ i_bit_clear(MP_AST, my_word);
+ ast_check(cpu_to_processor(my_cpu));
+ }
} while (*my_word);
return 0;
}
+extern void kprintf_break_lock(void);
static int
NMIInterruptHandler(x86_saved_state_t *regs)
{
- void *stackptr;
+ void *stackptr;
if (panic_active() && !panicDebugging) {
if (pmsafe_debug)
}
atomic_incl(&NMIPI_acks, 1);
+ atomic_incl(&NMI_count, 1);
sync_iss_to_iks_unconditionally(regs);
-#if defined (__i386__)
- __asm__ volatile("movl %%ebp, %0" : "=m" (stackptr));
-#elif defined (__x86_64__)
__asm__ volatile("movq %%rbp, %0" : "=m" (stackptr));
-#endif
if (cpu_number() == debugger_cpu)
- goto NMExit;
+ goto NMExit;
if (spinlock_timed_out) {
char pstr[192];
snprintf(&pstr[0], sizeof(pstr), "Panic(CPU %d): NMIPI for spinlock acquisition timeout, spinlock: %p, spinlock owner: %p, current_thread: %p, spinlock_owner_cpu: 0x%x\n", cpu_number(), spinlock_timed_out, (void *) spinlock_timed_out->interlock.lock_data, current_thread(), spinlock_owner_cpu);
panic_i386_backtrace(stackptr, 64, &pstr[0], TRUE, regs);
+ } else if (mp_cpus_call_wait_timeout) {
+ char pstr[192];
+ snprintf(&pstr[0], sizeof(pstr), "Panic(CPU %d): Unresponsive processor, this CPU timed-out during cross-call\n", cpu_number());
+ panic_i386_backtrace(stackptr, 64, &pstr[0], TRUE, regs);
} else if (pmap_tlb_flush_timeout == TRUE) {
char pstr[128];
snprintf(&pstr[0], sizeof(pstr), "Panic(CPU %d): Unresponsive processor (this CPU did not acknowledge interrupts) TLB state:0x%x\n", cpu_number(), current_cpu_datap()->cpu_tlb_invalid);
panic_i386_backtrace(stackptr, 48, &pstr[0], TRUE, regs);
- }
+ }
#if MACH_KDP
if (pmsafe_debug && !kdp_snapshot)
pmSafeMode(¤t_cpu_datap()->lcpu, PM_SAFE_FL_SAFE);
current_cpu_datap()->cpu_NMI_acknowledged = TRUE;
- mp_kdp_wait(FALSE, pmap_tlb_flush_timeout || spinlock_timed_out || panic_active());
+ i_bit_clear(MP_KDP, ¤t_cpu_datap()->cpu_signals);
+ if (pmap_tlb_flush_timeout ||
+ spinlock_timed_out ||
+ mp_cpus_call_wait_timeout ||
+ panic_active()) {
+ mp_kdp_wait(FALSE, TRUE);
+ } else if (virtualized && (debug_boot_arg & DB_NMI)) {
+ /*
+ * Under a VMM with the debug boot-arg set, drop into kdp.
+ * Since an NMI is involved, there's a risk of contending with
+ * a panic. And side-effects of NMIs may result in entry into,
+ * and continuing from, the debugger being unreliable.
+ */
+ kprintf_break_lock();
+ kprintf("Debugger entry requested by NMI\n");
+ kdp_i386_trap(T_DEBUG, saved_state64(regs), 0, 0);
+ printf("Debugger entry requested by NMI\n");
+ } else {
+ mp_kdp_wait(FALSE, FALSE);
+ }
if (pmsafe_debug && !kdp_snapshot)
pmSafeMode(¤t_cpu_datap()->lcpu, PM_SAFE_FL_NORMAL);
#endif
}
}
+void
+NMI_cpus(void)
+{
+ unsigned int cpu;
+ boolean_t intrs_enabled;
+ uint64_t tsc_timeout;
+
+ intrs_enabled = ml_set_interrupts_enabled(FALSE);
+
+ for (cpu = 0; cpu < real_ncpus; cpu++) {
+ if (!cpu_datap(cpu)->cpu_running)
+ continue;
+ cpu_datap(cpu)->cpu_NMI_acknowledged = FALSE;
+ cpu_NMI_interrupt(cpu);
+ tsc_timeout = !machine_timeout_suspended() ?
+ rdtsc64() + (1000 * 1000 * 1000 * 10ULL) :
+ ~0ULL;
+ while (!cpu_datap(cpu)->cpu_NMI_acknowledged) {
+ handle_pending_TLB_flushes();
+ cpu_pause();
+ if (rdtsc64() > tsc_timeout)
+ panic("NMI_cpus() timeout cpu %d", cpu);
+ }
+ cpu_datap(cpu)->cpu_NMI_acknowledged = FALSE;
+ }
+
+ ml_set_interrupts_enabled(intrs_enabled);
+}
+
static void (* volatile mp_PM_func)(void) = NULL;
static void
i386_cpu_IPI(cpu);
if (mode == SYNC) {
again:
- tsc_timeout = rdtsc64() + (1000*1000*1000);
+ tsc_timeout = !machine_timeout_suspended() ?
+ rdtsc64() + (1000*1000*1000) :
+ ~0ULL;
while (i_bit(event, signals) && rdtsc64() < tsc_timeout) {
cpu_pause();
}
return(ncpus);
}
+/*
+ * Helper function called when busy-waiting: panic if too long
+ * a TSC-based time has elapsed since the start of the spin.
+ */
+static boolean_t
+mp_spin_timeout(uint64_t tsc_start)
+{
+ uint64_t tsc_timeout;
+
+ cpu_pause();
+ if (machine_timeout_suspended())
+ return FALSE;
+
+ /*
+ * The timeout is 4 * the spinlock timeout period
+ * unless we have serial console printing (kprintf) enabled
+ * in which case we allow an even greater margin.
+ */
+ tsc_timeout = disable_serial_output ? (uint64_t) LockTimeOutTSC << 2
+ : (uint64_t) LockTimeOutTSC << 4;
+ return (rdtsc64() > tsc_start + tsc_timeout);
+}
+
+/*
+ * Helper function to take a spinlock while ensuring that incoming IPIs
+ * are still serviced if interrupts are masked while we spin.
+ */
+static boolean_t
+mp_safe_spin_lock(usimple_lock_t lock)
+{
+ if (ml_get_interrupts_enabled()) {
+ simple_lock(lock);
+ return TRUE;
+ } else {
+ uint64_t tsc_spin_start = rdtsc64();
+ while (!simple_lock_try(lock)) {
+ cpu_signal_handler(NULL);
+ if (mp_spin_timeout(tsc_spin_start)) {
+ uint32_t lock_cpu;
+ uintptr_t lowner = (uintptr_t)
+ lock->interlock.lock_data;
+ spinlock_timed_out = lock;
+ lock_cpu = spinlock_timeout_NMI(lowner);
+ panic("mp_safe_spin_lock() timed out,"
+ " lock: %p, owner thread: 0x%lx,"
+ " current_thread: %p, owner on CPU 0x%x",
+ lock, lowner,
+ current_thread(), lock_cpu);
+ }
+ }
+ return FALSE;
+ }
+}
+
/*
* All-CPU rendezvous:
* - CPUs are signalled,
static void
mp_rendezvous_action(void)
{
- boolean_t intrs_enabled;
+ boolean_t intrs_enabled;
+ uint64_t tsc_spin_start;
/* setup function */
if (mp_rv_setup_func != NULL)
/* spin on entry rendezvous */
atomic_incl(&mp_rv_entry, 1);
+ tsc_spin_start = rdtsc64();
while (mp_rv_entry < mp_rv_ncpus) {
/* poll for pesky tlb flushes if interrupts disabled */
if (!intrs_enabled)
handle_pending_TLB_flushes();
- cpu_pause();
+ if (mp_spin_timeout(tsc_spin_start))
+ panic("mp_rendezvous_action() entry");
}
/* action function */
/* spin on exit rendezvous */
atomic_incl(&mp_rv_exit, 1);
+ tsc_spin_start = rdtsc64();
while (mp_rv_exit < mp_rv_ncpus) {
if (!intrs_enabled)
handle_pending_TLB_flushes();
- cpu_pause();
+ if (mp_spin_timeout(tsc_spin_start))
+ panic("mp_rendezvous_action() exit");
}
/* teardown function */
void (*teardown_func)(void *),
void *arg)
{
+ uint64_t tsc_spin_start;
if (!smp_initialized) {
if (setup_func != NULL)
}
/* obtain rendezvous lock */
- simple_lock(&mp_rv_lock);
+ (void) mp_safe_spin_lock(&mp_rv_lock);
/* set static function pointers */
mp_rv_setup_func = setup_func;
* signal other processors, which will call mp_rendezvous_action()
* with interrupts disabled
*/
- simple_lock(&x86_topo_lock);
+ (void) mp_safe_spin_lock(&x86_topo_lock);
mp_rv_ncpus = i386_active_cpus();
i386_signal_cpus(MP_RENDEZVOUS, ASYNC);
simple_unlock(&x86_topo_lock);
* This is necessary to ensure that all processors have proceeded
* from the exit barrier before we release the rendezvous structure.
*/
+ tsc_spin_start = rdtsc64();
while (mp_rv_complete < mp_rv_ncpus) {
- cpu_pause();
+ if (mp_spin_timeout(tsc_spin_start))
+ panic("mp_rendezvous() timeout");
}
/* Tidy up */
void (*func)(void *,void *); /* routine to call */
void *arg0; /* routine's 1st arg */
void *arg1; /* routine's 2nd arg */
- volatile long *countp; /* completion counter */
+ cpumask_t *maskp; /* completion response mask */
} mp_call_t;
return intrs_enabled;
}
+void
+mp_cpus_NMIPI(cpumask_t cpu_mask) {
+ unsigned int cpu, cpu_bit;
+ uint64_t deadline;
+
+ for (cpu = 0, cpu_bit = 1; cpu < real_ncpus; cpu++, cpu_bit <<= 1) {
+ if (cpu_mask & cpu_bit)
+ cpu_NMI_interrupt(cpu);
+ }
+ deadline = mach_absolute_time() + (LockTimeOut);
+ while (mach_absolute_time() < deadline)
+ cpu_pause();
+}
+
+#if MACH_ASSERT
static inline boolean_t
mp_call_head_is_locked(mp_call_queue_t *cqp)
{
return !ml_get_interrupts_enabled() &&
hw_lock_held((hw_lock_t)&cqp->lock);
}
+#endif
static inline void
mp_call_head_unlock(mp_call_queue_t *cqp, boolean_t intrs_enabled)
}
/*
- * Called by each processor to add call buffers to the free list
+ * Called at processor registration to add call buffers to the free list
* and to initialize the per-cpu call queue.
- * Also called but ignored on slave processors on re-start/wake.
*/
-static void
-mp_cpus_call_cpu_init(void)
+void
+mp_cpus_call_cpu_init(int cpu)
{
int i;
- mp_call_queue_t *cqp = &mp_cpus_call_head[cpu_number()];
+ mp_call_queue_t *cqp = &mp_cpus_call_head[cpu];
mp_call_t *callp;
- if (cqp->queue.next != NULL)
- return; /* restart/wake case: called already */
-
simple_lock_init(&cqp->lock, 0);
queue_init(&cqp->queue);
for (i = 0; i < MP_CPUS_CALL_BUFS_PER_CPU; i++) {
mp_call_free(callp);
}
- DBG("mp_cpus_call_init() done on cpu %d\n", cpu_number());
+ DBG("mp_cpus_call_init(%d) done\n", cpu);
}
/*
mp_call_head_unlock(cqp, intrs_enabled);
KERNEL_DEBUG_CONSTANT(
TRACE_MP_CPUS_CALL_ACTION,
- call.func, call.arg0, call.arg1, call.countp, 0);
+ call.func, call.arg0, call.arg1, call.maskp, 0);
call.func(call.arg0, call.arg1);
(void) mp_call_head_lock(cqp);
}
- if (call.countp != NULL)
- atomic_incl(call.countp, 1);
+ if (call.maskp != NULL)
+ i_bit_set(cpu_number(), call.maskp);
}
mp_call_head_unlock(cqp, intrs_enabled);
}
static void
mp_cpus_call_wait(boolean_t intrs_enabled,
- long mp_cpus_signals,
- volatile long *mp_cpus_calls)
+ cpumask_t cpus_called,
+ cpumask_t *cpus_responded)
{
mp_call_queue_t *cqp;
+ uint64_t tsc_spin_start;
cqp = &mp_cpus_call_head[cpu_number()];
- while (*mp_cpus_calls < mp_cpus_signals) {
+ tsc_spin_start = rdtsc64();
+ while (*cpus_responded != cpus_called) {
if (!intrs_enabled) {
/* Sniffing w/o locking */
if (!queue_empty(&cqp->queue))
mp_cpus_call_action();
- handle_pending_TLB_flushes();
+ cpu_signal_handler(NULL);
+ }
+ if (mp_spin_timeout(tsc_spin_start)) {
+ cpumask_t cpus_unresponsive;
+
+ mp_cpus_call_wait_timeout = TRUE;
+ cpus_unresponsive = cpus_called & ~(*cpus_responded);
+ mp_cpus_NMIPI(cpus_unresponsive);
+ panic("mp_cpus_call_wait() timeout, cpus: 0x%llx",
+ cpus_unresponsive);
}
- cpu_pause();
}
}
boolean_t call_self = FALSE;
cpumask_t cpus_called = 0;
cpumask_t cpus_notcalled = 0;
- long mp_cpus_signals = 0;
- volatile long mp_cpus_calls = 0;
+ cpumask_t cpus_responded = 0;
+ long cpus_call_count = 0;
+ uint64_t tsc_spin_start;
+ boolean_t topo_lock;
KERNEL_DEBUG_CONSTANT(
TRACE_MP_CPUS_CALL | DBG_FUNC_START,
/*
* Queue the call for each non-local requested cpu.
- * The topo lock is not taken. Instead we sniff the cpu_running state
- * and then re-check it after taking the call lock. A cpu being taken
- * offline runs the action function after clearing the cpu_running.
+ * This is performed under the topo lock to prevent changes to
+ * cpus online state and to prevent concurrent rendezvouses --
+ * although an exception is made if we're calling only the master
+ * processor since that always remains active. Note: this exception
+ * is expected for longterm timer nosync cross-calls to the master cpu.
*/
+ mp_disable_preemption();
+ intrs_enabled = ml_get_interrupts_enabled();
+ topo_lock = (cpus != cpu_to_cpumask(master_cpu));
+ if (topo_lock) {
+ ml_set_interrupts_enabled(FALSE);
+ (void) mp_safe_spin_lock(&x86_topo_lock);
+ }
for (cpu = 0; cpu < (cpu_t) real_ncpus; cpu++) {
if (((cpu_to_cpumask(cpu) & cpus) == 0) ||
!cpu_datap(cpu)->cpu_running)
continue;
+ tsc_spin_start = rdtsc64();
if (cpu == (cpu_t) cpu_number()) {
/*
* We don't IPI ourself and if calling asynchronously,
* we defer our call until we have signalled all others.
*/
call_self = TRUE;
- cpus_called |= cpu_to_cpumask(cpu);
if (mode == SYNC && action_func != NULL) {
KERNEL_DEBUG_CONSTANT(
TRACE_MP_CPUS_CALL_LOCAL,
*/
mp_call_t *callp = NULL;
mp_call_queue_t *cqp = &mp_cpus_call_head[cpu];
+ boolean_t intrs_inner;
queue_call:
if (callp == NULL)
callp = mp_call_alloc();
- intrs_enabled = mp_call_head_lock(cqp);
- if (!cpu_datap(cpu)->cpu_running) {
- mp_call_head_unlock(cqp, intrs_enabled);
- continue;
- }
+ intrs_inner = mp_call_head_lock(cqp);
if (mode == NOSYNC) {
if (callp == NULL) {
cpus_notcalled |= cpu_to_cpumask(cpu);
- mp_call_head_unlock(cqp, intrs_enabled);
+ mp_call_head_unlock(cqp, intrs_inner);
KERNEL_DEBUG_CONSTANT(
TRACE_MP_CPUS_CALL_NOBUF,
cpu, 0, 0, 0, 0);
continue;
}
- callp->countp = NULL;
+ callp->maskp = NULL;
} else {
if (callp == NULL) {
- mp_call_head_unlock(cqp, intrs_enabled);
+ mp_call_head_unlock(cqp, intrs_inner);
KERNEL_DEBUG_CONSTANT(
TRACE_MP_CPUS_CALL_NOBUF,
cpu, 0, 0, 0, 0);
- if (!intrs_enabled) {
+ if (!intrs_inner) {
/* Sniffing w/o locking */
if (!queue_empty(&cqp->queue))
mp_cpus_call_action();
handle_pending_TLB_flushes();
}
- cpu_pause();
+ if (mp_spin_timeout(tsc_spin_start))
+ panic("mp_cpus_call1() timeout");
goto queue_call;
}
- callp->countp = &mp_cpus_calls;
+ callp->maskp = &cpus_responded;
}
callp->func = action_func;
callp->arg0 = arg0;
callp->arg1 = arg1;
mp_call_enqueue_locked(cqp, callp);
- mp_cpus_signals++;
+ cpus_call_count++;
cpus_called |= cpu_to_cpumask(cpu);
i386_signal_cpu(cpu, MP_CALL, ASYNC);
- mp_call_head_unlock(cqp, intrs_enabled);
+ mp_call_head_unlock(cqp, intrs_inner);
if (mode == SYNC) {
- mp_cpus_call_wait(intrs_enabled, mp_cpus_signals, &mp_cpus_calls);
+ mp_cpus_call_wait(intrs_inner, cpus_called, &cpus_responded);
}
}
}
+ if (topo_lock) {
+ simple_unlock(&x86_topo_lock);
+ ml_set_interrupts_enabled(intrs_enabled);
+ }
/* Call locally if mode not SYNC */
if (mode != SYNC && call_self ) {
}
}
+ /* Safe to allow pre-emption now */
+ mp_enable_preemption();
+
/* For ASYNC, now wait for all signaled cpus to complete their calls */
- if (mode == ASYNC) {
- mp_cpus_call_wait(intrs_enabled, mp_cpus_signals, &mp_cpus_calls);
- }
+ if (mode == ASYNC)
+ mp_cpus_call_wait(intrs_enabled, cpus_called, &cpus_responded);
out:
- cpu = (cpu_t) mp_cpus_signals + (call_self ? 1 : 0);
+ if (call_self){
+ cpus_called |= cpu_to_cpumask(cpu);
+ cpus_call_count++;
+ }
if (cpus_calledp)
*cpus_calledp = cpus_called;
KERNEL_DEBUG_CONSTANT(
TRACE_MP_CPUS_CALL | DBG_FUNC_END,
- cpu, cpus_called, cpus_notcalled, 0, 0);
+ cpus_call_count, cpus_called, cpus_notcalled, 0, 0);
- return cpu;
+ return (cpu_t) cpus_call_count;
}
lck_mtx_unlock(&mp_bc_lock);
}
+void
+mp_cpus_kick(cpumask_t cpus)
+{
+ cpu_t cpu;
+ boolean_t intrs_enabled = FALSE;
+
+ intrs_enabled = ml_set_interrupts_enabled(FALSE);
+ mp_safe_spin_lock(&x86_topo_lock);
+
+ for (cpu = 0; cpu < (cpu_t) real_ncpus; cpu++) {
+ if ((cpu == (cpu_t) cpu_number())
+ || ((cpu_to_cpumask(cpu) & cpus) == 0)
+ || (!cpu_datap(cpu)->cpu_running))
+ {
+ continue;
+ }
+
+ lapic_send_ipi(cpu, LAPIC_VECTOR(KICK));
+ }
+
+ simple_unlock(&x86_topo_lock);
+ ml_set_interrupts_enabled(intrs_enabled);
+}
+
void
i386_activate_cpu(void)
{
flush_tlb_raw();
}
-extern void etimer_timer_expire(void *arg);
-
void
i386_deactivate_cpu(void)
{
cpu_data_t *cdp = current_cpu_datap();
assert(!ml_get_interrupts_enabled());
+
+ KERNEL_DEBUG_CONSTANT(
+ TRACE_MP_CPU_DEACTIVATE | DBG_FUNC_START,
+ 0, 0, 0, 0, 0);
simple_lock(&x86_topo_lock);
cdp->cpu_running = FALSE;
simple_unlock(&x86_topo_lock);
+ /*
+ * Move all of this cpu's timers to the master/boot cpu,
+ * and poke it in case there's a sooner deadline for it to schedule.
+ */
timer_queue_shutdown(&cdp->rtclock_timer.queue);
- cdp->rtclock_timer.deadline = EndOfAllTime;
- mp_cpus_call(cpu_to_cpumask(master_cpu), ASYNC, etimer_timer_expire, NULL);
+ mp_cpus_call(cpu_to_cpumask(master_cpu), ASYNC, timer_queue_expire_local, NULL);
/*
- * In case a rendezvous/braodcast/call was initiated to this cpu
- * before we cleared cpu_running, we must perform any actions due.
+ * Open an interrupt window
+ * and ensure any pending IPI or timer is serviced
+ */
+ mp_disable_preemption();
+ ml_set_interrupts_enabled(TRUE);
+
+ while (cdp->cpu_signals && x86_lcpu()->rtcDeadline != EndOfAllTime)
+ cpu_pause();
+ /*
+ * Ensure there's no remaining timer deadline set
+ * - AICPM may have left one active.
*/
- if (i_bit(MP_RENDEZVOUS, &cdp->cpu_signals))
- mp_rendezvous_action();
- if (i_bit(MP_BROADCAST, &cdp->cpu_signals))
- mp_broadcast_action();
- if (i_bit(MP_CALL, &cdp->cpu_signals))
- mp_cpus_call_action();
- cdp->cpu_signals = 0; /* all clear */
+ setPop(0);
+
+ ml_set_interrupts_enabled(FALSE);
+ mp_enable_preemption();
+
+ KERNEL_DEBUG_CONSTANT(
+ TRACE_MP_CPU_DEACTIVATE | DBG_FUNC_END,
+ 0, 0, 0, 0, 0);
}
int pmsafe_debug = 1;
DBG("mp_kdp_enter()\n");
+#if DEBUG
+ if (!smp_initialized)
+ simple_lock_init(&mp_kdp_lock, 0);
+#endif
+
/*
* Here to enter the debugger.
* In case of races, only one cpu is allowed to enter kdp after
cpu_NMI_interrupt(cpu);
}
- DBG("mp_kdp_enter() %u processors done %s\n",
+ DBG("mp_kdp_enter() %d processors done %s\n",
(int)mp_kdp_ncpus, (mp_kdp_ncpus == ncpus) ? "OK" : "timed out");
postcode(MP_KDP_ENTER);
DBG("mp_kdp_wait()\n");
/* If an I/O port has been specified as a debugging aid, issue a read */
panic_io_port_read();
-
+ current_cpu_datap()->debugger_ipi_time = mach_absolute_time();
#if CONFIG_MCA
/* If we've trapped due to a machine-check, save MCA registers */
mca_check_save();
debugger_exit_time = mach_absolute_time();
mp_kdp_trap = FALSE;
- __asm__ volatile("mfence");
+ mfence();
/* Wait other processors to stop spinning. XXX needs timeout */
DBG("mp_kdp_exit() waiting for processors to resume\n");
* Cold start
*/
clock_init();
- cpu_machine_init(); /* Interrupts enabled hereafter */
- mp_cpus_call_cpu_init();
}
+ cpu_machine_init(); /* Interrupts enabled hereafter */
}
#undef cpu_number
{
cpu_warm_data_t cwdp = (cpu_warm_data_t)arg;
- timer_call_enter(cwdp->cwd_call, cwdp->cwd_deadline, TIMER_CALL_CRITICAL | TIMER_CALL_LOCAL);
+ timer_call_enter(cwdp->cwd_call, cwdp->cwd_deadline, TIMER_CALL_SYS_CRITICAL | TIMER_CALL_LOCAL);
cwdp->cwd_result = 0;
return;