diff options
author | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2012-07-07 13:42:03 +0300 |
---|---|---|
committer | Alexandru Gagniuc <mr.nuke.me@gmail.com> | 2012-08-07 06:40:41 +0200 |
commit | 7bdf85bfdb4e2c5efe47d8474f42f42c152c8882 (patch) | |
tree | 0583ed4f4151ab4586b9435bcd3cbd7c58079019 /src/cpu | |
parent | 9ca1c0af64eeec013e3b4997fb86d334101c7f47 (diff) | |
download | coreboot-7bdf85bfdb4e2c5efe47d8474f42f42c152c8882.tar.xz |
Move cpus_ready_for_init() to AMD K8
The function is a noop for all but amd/serengeti_cheetah.
Change-Id: I09e2e710aa964c2f31e35fcea4f14856cc1e1dca
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: http://review.coreboot.org/1184
Tested-by: build bot (Jenkins)
Reviewed-by: Alexandru Gagniuc <mr.nuke.me@gmail.com>
Diffstat (limited to 'src/cpu')
-rw-r--r-- | src/cpu/x86/Kconfig | 4 | ||||
-rw-r--r-- | src/cpu/x86/lapic/lapic_cpu_init.c | 2 |
2 files changed, 0 insertions, 6 deletions
diff --git a/src/cpu/x86/Kconfig b/src/cpu/x86/Kconfig index 0eaee2ed40..07e9d9ecbf 100644 --- a/src/cpu/x86/Kconfig +++ b/src/cpu/x86/Kconfig @@ -2,10 +2,6 @@ config SERIAL_CPU_INIT bool default y -config WAIT_BEFORE_CPUS_INIT - bool - default n - config UDELAY_IO bool default y if !UDELAY_LAPIC && !UDELAY_TSC diff --git a/src/cpu/x86/lapic/lapic_cpu_init.c b/src/cpu/x86/lapic/lapic_cpu_init.c index d61547dad0..fc5a7861e1 100644 --- a/src/cpu/x86/lapic/lapic_cpu_init.c +++ b/src/cpu/x86/lapic/lapic_cpu_init.c @@ -502,8 +502,6 @@ void initialize_cpus(struct bus *cpu_bus) smm_init(); #endif - cpus_ready_for_init(); - #if CONFIG_SMP #if !CONFIG_SERIAL_CPU_INIT /* start all aps at first, so we can init ECC all together */ |