summaryrefslogtreecommitdiffstats
path: root/src/arch/arm
diff options
context:
space:
mode:
authorKyösti Mälkki <kyosti.malkki@gmail.com>2021-11-10 03:10:58 +0200
committerRaul Rangel <rrangel@chromium.org>2021-11-13 22:26:53 +0000
commit04c3228a5d66d7c83ae88ea3f3fdf273060aa614 (patch)
tree14f7caabd9b41fab44abb8013079a3ab65409922 /src/arch/arm
parentf6e421ffc9ede7ebeb56c0941f07f2f7b8b496a0 (diff)
downloadcoreboot-04c3228a5d66d7c83ae88ea3f3fdf273060aa614.tar.gz
coreboot-04c3228a5d66d7c83ae88ea3f3fdf273060aa614.tar.bz2
coreboot-04c3228a5d66d7c83ae88ea3f3fdf273060aa614.zip
Add ENV_STAGE_SUPPORTS_SMP to clean up spinlock stubs
CONFIG(SMP) was an invalid condition to use in cases where one stage requires spinlocks and another one does not. The stage not requiring spinlock still required <smp/spinlock.h> to be implemented with no-op stubs. This reverts commit 037ee4b556 soc/amd/picasso: Add dummy spinlock for psp_verstage Change-Id: Iba52febdeee78294f916775ee9ce8a82d6203570 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/59094 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Raul Rangel <rrangel@chromium.org> Reviewed-by: Julius Werner <jwerner@chromium.org>
Diffstat (limited to 'src/arch/arm')
-rw-r--r--src/arch/arm/include/armv4/arch/smp/spinlock.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/arch/arm/include/armv4/arch/smp/spinlock.h b/src/arch/arm/include/armv4/arch/smp/spinlock.h
deleted file mode 100644
index 0a3a4d46762b..000000000000
--- a/src/arch/arm/include/armv4/arch/smp/spinlock.h
+++ /dev/null
@@ -1,15 +0,0 @@
-/* SPDX-License-Identifier: GPL-2.0-only */
-
-#ifndef _ARCH_SMP_SPINLOCK_H
-#define _ARCH_SMP_SPINLOCK_H
-
-#define DECLARE_SPIN_LOCK(x)
-#define spin_is_locked(lock) 0
-#define spin_unlock_wait(lock) do {} while (0)
-#define spin_lock(lock) do {} while (0)
-#define spin_unlock(lock) do {} while (0)
-
-#include <smp/node.h>
-#define boot_cpu() 1
-
-#endif