diff options
author | Arthur Heymans <arthur@aheymans.xyz> | 2022-05-31 17:47:56 +0200 |
---|---|---|
committer | Paul Fagerburg <pfagerburg@chromium.org> | 2022-06-02 16:00:06 +0000 |
commit | 3f6ff24e57e1a4d16f4f43bf08d69492754498ea (patch) | |
tree | 40f45dfb57a49f9f54fec7c7f205aa84b33480ca /src/include | |
parent | fd7a6946d76829bbf46a1fc96bbdbc4079e2b249 (diff) |
cpu/x86/mp_init.c: Prolong delay on synchronous API
When each AP needs to do a lot of printing 1 sec is not enough.
Change-Id: I00f0a49bf60f3915547924c34a62dd0044b0c918
Signed-off-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/64828
Reviewed-by: Subrata Banik <subratabanik@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Kane Chen <kane.chen@intel.corp-partner.google.com>
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/cpu/x86/mp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/cpu/x86/mp.h b/src/include/cpu/x86/mp.h index aea3ca1e3d..8ee7d02431 100644 --- a/src/include/cpu/x86/mp.h +++ b/src/include/cpu/x86/mp.h @@ -122,7 +122,7 @@ enum cb_err mp_run_on_all_aps(void (*func)(void *), void *arg, long expire_us, enum cb_err mp_run_on_all_cpus(void (*func)(void *), void *arg); /* Like mp_run_on_all_cpus but make sure all APs finish executing the - function call. The time limit on a function call is 1 second. */ + function call. The time limit on a function call is 1 second per AP. */ enum cb_err mp_run_on_all_cpus_synchronously(void (*func)(void *), void *arg); /* |