2010-09-15 16:09:52 +02:00
|
|
|
#include "smp.h"
|
2010-09-15 16:10:57 +02:00
|
|
|
#include "interrupt.h"
|
2010-09-15 16:09:52 +02:00
|
|
|
|
|
|
|
unsigned ncpus;
|
|
|
|
unsigned ht_per_core;
|
|
|
|
unsigned bsp_cpu_id;
|
|
|
|
|
|
|
|
struct cpu cpus[CONFIG_MAX_CPUS];
|
2010-09-15 16:10:03 +02:00
|
|
|
|
2010-09-15 16:10:12 +02:00
|
|
|
static volatile unsigned ap_cpus_booted;
|
|
|
|
|
2010-09-15 16:10:03 +02:00
|
|
|
SPINLOCK_DEFINE(big_kernel_lock)
|
2010-09-15 16:10:12 +02:00
|
|
|
SPINLOCK_DEFINE(boot_lock)
|
|
|
|
|
2010-09-15 16:10:54 +02:00
|
|
|
PUBLIC void wait_for_APs_to_finish_booting(void)
|
2010-09-15 16:10:12 +02:00
|
|
|
{
|
|
|
|
/* we must let the other CPUs to run in kernel mode first */
|
|
|
|
BKL_UNLOCK();
|
|
|
|
while (ap_cpus_booted != (ncpus - 1))
|
|
|
|
arch_pause();
|
|
|
|
/* now we have to take the lock again as we continu execution */
|
|
|
|
BKL_LOCK();
|
|
|
|
}
|
|
|
|
|
2010-09-15 16:10:54 +02:00
|
|
|
PUBLIC void ap_boot_finished(unsigned cpu)
|
2010-09-15 16:10:12 +02:00
|
|
|
{
|
|
|
|
ap_cpus_booted++;
|
|
|
|
}
|
2010-09-15 16:10:54 +02:00
|
|
|
|
|
|
|
PUBLIC void smp_ipi_halt_handler(void)
|
|
|
|
{
|
2010-09-15 16:10:57 +02:00
|
|
|
ipi_ack();
|
2010-09-15 16:10:54 +02:00
|
|
|
arch_stop_local_timer();
|
|
|
|
arch_smp_halt_cpu();
|
|
|
|
}
|
|
|
|
|
2010-09-15 16:10:57 +02:00
|
|
|
PUBLIC void smp_schedule(unsigned cpu)
|
|
|
|
{
|
|
|
|
arch_send_smp_schedule_ipi(cpu);
|
|
|
|
}
|
|
|
|
|
|
|
|
PUBLIC void smp_ipi_sched_handler(void)
|
|
|
|
{
|
|
|
|
struct proc * p;
|
|
|
|
|
|
|
|
ipi_ack();
|
|
|
|
|
|
|
|
p = get_cpulocal_var(proc_ptr);
|
|
|
|
|
|
|
|
if (p->p_endpoint != IDLE)
|
|
|
|
RTS_SET(p, RTS_PREEMPTED); /* calls dequeue() */
|
|
|
|
}
|
|
|
|
|