summaryrefslogtreecommitdiffstats
path: root/src/cpu
diff options
context:
space:
mode:
authorFelix Held <felix.held@amd.corp-partner.google.com>2021-09-24 19:08:52 +0200
committerFelix Held <felix-coreboot@felixheld.de>2021-09-27 13:20:16 +0000
commitfafeb190ae2dabf76adb0cca771520938a88c817 (patch)
treee65abcc3abab4afc4a81a082a66012e1cf33f2d8 /src/cpu
parent91feb06ecec4ce9697354848f6500a5eb73397b3 (diff)
downloadcoreboot-fafeb190ae2dabf76adb0cca771520938a88c817.tar.gz
coreboot-fafeb190ae2dabf76adb0cca771520938a88c817.tar.bz2
coreboot-fafeb190ae2dabf76adb0cca771520938a88c817.zip
cpu/x86/mp_init: add expansion for SIPI acronym
Signed-off-by: Felix Held <felix-coreboot@felixheld.de> Change-Id: Ic182d7c551932ab6917a81568490ed18acdcd597 Reviewed-on: https://review.coreboot.org/c/coreboot/+/57927 Reviewed-by: Raul Rangel <rrangel@chromium.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/cpu')
-rw-r--r--src/cpu/x86/mp_init.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpu/x86/mp_init.c b/src/cpu/x86/mp_init.c
index f54a7b714d65..93c143ec85c2 100644
--- a/src/cpu/x86/mp_init.c
+++ b/src/cpu/x86/mp_init.c
@@ -455,7 +455,7 @@ static int start_aps(struct bus *cpu_bus, int ap_count, atomic_t *num_aps)
mdelay(10);
}
- /* Send 1st SIPI */
+ /* Send 1st Startup IPI (SIPI) */
if (lapic_busy()) {
printk(BIOS_DEBUG, "Waiting for ICR not to be busy...");
if (apic_wait_timeout(1000 /* 1 ms */, 50)) {