diff options
author | jhb <jhb@FreeBSD.org> | 2001-04-10 21:04:32 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2001-04-10 21:04:32 +0000 |
commit | 7df3e254964ecc5ad934c334cc5366d9e4e20a4b (patch) | |
tree | 488b4b7b74279bae0ca46281ad0d3702f7796434 /sys/amd64/include | |
parent | b9b34874a4f7511e4cd4c41e1273f8c1c2fa4300 (diff) | |
download | FreeBSD-src-7df3e254964ecc5ad934c334cc5366d9e4e20a4b.zip FreeBSD-src-7df3e254964ecc5ad934c334cc5366d9e4e20a4b.tar.gz |
Add an MI API for sending IPI's. I used the same API present on the alpha
because:
- it used a better namespace (smp_ipi_* rather than *_ipi),
- it used better constant names for the IPI's (IPI_* rather than
X*_OFFSET), and
- this API also somewhat exists for both alpha and ia64 already.
Diffstat (limited to 'sys/amd64/include')
-rw-r--r-- | sys/amd64/include/mptable.h | 67 |
1 files changed, 55 insertions, 12 deletions
diff --git a/sys/amd64/include/mptable.h b/sys/amd64/include/mptable.h index 47903d0..ceef075 100644 --- a/sys/amd64/include/mptable.h +++ b/sys/amd64/include/mptable.h @@ -65,6 +65,7 @@ #include <machine/apic.h> #include <machine/atomic.h> #include <machine/cpufunc.h> +#include <machine/ipl.h> #include <machine/mpapic.h> #include <machine/psl.h> #include <machine/segments.h> @@ -2221,7 +2222,7 @@ smp_invltlb(void) { #if defined(APIC_IO) if (smp_started && invltlb_ok) - all_but_self_ipi(XINVLTLB_OFFSET); + smp_ipi_all_but_self(IPI_INVLTLB); #endif /* APIC_IO */ } @@ -2497,8 +2498,7 @@ forward_statclock(int pscnt) map = PCPU_GET(other_cpus) & ~stopped_cpus ; checkstate_probed_cpus = 0; if (map != 0) - selected_apic_ipi(map, - XCPUCHECKSTATE_OFFSET, APIC_DELMODE_FIXED); + smp_ipi_selected(map, IPI_CHECKSTATE); i = 0; while (checkstate_probed_cpus != map) { @@ -2528,7 +2528,7 @@ forward_statclock(int pscnt) } if (map != 0) { checkstate_need_ast |= map; - selected_apic_ipi(map, XCPUAST_OFFSET, APIC_DELMODE_FIXED); + smp_ipi_selected(map, IPI_AST); i = 0; while ((checkstate_need_ast & map) != 0) { /* spin */ @@ -2574,8 +2574,7 @@ forward_hardclock(int pscnt) map = PCPU_GET(other_cpus) & ~stopped_cpus ; checkstate_probed_cpus = 0; if (map != 0) - selected_apic_ipi(map, - XCPUCHECKSTATE_OFFSET, APIC_DELMODE_FIXED); + smp_ipi_selected(map, IPI_CHECKSTATE); i = 0; while (checkstate_probed_cpus != map) { @@ -2623,7 +2622,7 @@ forward_hardclock(int pscnt) } if (map != 0) { checkstate_need_ast |= map; - selected_apic_ipi(map, XCPUAST_OFFSET, APIC_DELMODE_FIXED); + smp_ipi_selected(map, IPI_AST); i = 0; while ((checkstate_need_ast & map) != 0) { /* spin */ @@ -2677,7 +2676,7 @@ forward_signal(struct proc *p) return; map = (1<<id); checkstate_need_ast |= map; - selected_apic_ipi(map, XCPUAST_OFFSET, APIC_DELMODE_FIXED); + smp_ipi_selected(map, IPI_AST); i = 0; while ((checkstate_need_ast & map) != 0) { /* spin */ @@ -2713,9 +2712,9 @@ forward_roundrobin(void) resched_cpus |= PCPU_GET(other_cpus); map = PCPU_GET(other_cpus) & ~stopped_cpus ; #if 1 - selected_apic_ipi(map, XCPUAST_OFFSET, APIC_DELMODE_FIXED); + smp_ipi_selected(map, IPI_AST); #else - (void) all_but_self_ipi(XCPUAST_OFFSET); + smp_ipi_all_but_self(IPI_AST); #endif i = 0; while ((checkstate_need_ast & map) != 0) { @@ -2757,7 +2756,7 @@ stop_cpus(u_int map) return 0; /* send the Xcpustop IPI to all CPUs in map */ - selected_apic_ipi(map, XCPUSTOP_OFFSET, APIC_DELMODE_FIXED); + smp_ipi_selected(map, IPI_STOP); while (count++ < 100000 && (stopped_cpus & map) != map) /* spin */ ; @@ -2883,7 +2882,7 @@ smp_rendezvous(void (* setup_func)(void *), /* * signal other processors, which will enter the IPI with interrupts off */ - all_but_self_ipi(XRENDEZVOUS_OFFSET); + smp_ipi_all_but_self(IPI_RENDEZVOUS); /* call executor function */ smp_rendezvous_action(); @@ -2892,6 +2891,50 @@ smp_rendezvous(void (* setup_func)(void *), mtx_unlock_spin(&smp_rv_mtx); } +/* + * send an IPI to a set of cpus. + */ +void +smp_ipi_selected(u_int32_t cpus, u_int ipi) +{ + + CTR2(KTR_SMP, __func__ ": cpus: %x ipi: %x", cpus, ipi); + selected_apic_ipi(cpus, ipi, APIC_DELMODE_FIXED); +} + +/* + * send an IPI INTerrupt containing 'vector' to all CPUs, including myself + */ +void +smp_ipi_all(u_int ipi) +{ + + CTR1(KTR_SMP, __func__ ": ipi: %x", ipi); + apic_ipi(APIC_DEST_ALLISELF, ipi, APIC_DELMODE_FIXED); +} + +/* + * send an IPI to all CPUs EXCEPT myself + */ +void +smp_ipi_all_but_self(u_int ipi) +{ + + CTR1(KTR_SMP, __func__ ": ipi: %x", ipi); + apic_ipi(APIC_DEST_ALLESELF, ipi, APIC_DELMODE_FIXED); +} + +/* + * send an IPI to myself + */ +void +smp_ipi_self(u_int ipi) +{ + + CTR1(KTR_SMP, __func__ ": ipi: %x", ipi); + apic_ipi(APIC_DEST_SELF, ipi, APIC_DELMODE_FIXED); +} + void release_aps(void *dummy __unused) { |