summaryrefslogtreecommitdiffstats
path: root/src/lib
diff options
context:
space:
mode:
authorRaul E Rangel <rrangel@chromium.org>2021-07-12 13:49:59 -0600
committerRaul Rangel <rrangel@chromium.org>2021-07-18 15:14:10 +0000
commitb29f9d471bade1cf6d5e0994af7ccf722ac65ef0 (patch)
treedf879543eaefe97ac9baa040f178879f7381ca4c /src/lib
parenta98d302fe9dcce13a1c60b4bdfaf2e713fd11b51 (diff)
downloadcoreboot-b29f9d471bade1cf6d5e0994af7ccf722ac65ef0.tar.gz
coreboot-b29f9d471bade1cf6d5e0994af7ccf722ac65ef0.tar.bz2
coreboot-b29f9d471bade1cf6d5e0994af7ccf722ac65ef0.zip
lib/thread: Add mutex
We need a way to protect shared resources. Since we are using cooperative multitasking the mutex implementation is pretty trivial. BUG=b:179699789 TEST=Verify thread lock and unlock. Signed-off-by: Raul E Rangel <rrangel@chromium.org> Change-Id: Ife1ac95ec064ebcdd00fcaacec37a06ac52885ff Reviewed-on: https://review.coreboot.org/c/coreboot/+/56230 Reviewed-by: Karthik Ramasubramanian <kramasub@google.com> Reviewed-by: Furquan Shaikh <furquan@google.com> Reviewed-by: Julius Werner <jwerner@chromium.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/thread.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/lib/thread.c b/src/lib/thread.c
index 47a23acd96a6..e62c5d723972 100644
--- a/src/lib/thread.c
+++ b/src/lib/thread.c
@@ -1,5 +1,6 @@
/* SPDX-License-Identifier: GPL-2.0-only */
+#include <assert.h>
#include <stddef.h>
#include <stdint.h>
#include <stdlib.h>
@@ -377,3 +378,22 @@ void thread_coop_disable(void)
current->can_yield--;
}
+
+void thread_mutex_lock(struct thread_mutex *mutex)
+{
+ struct stopwatch sw;
+
+ stopwatch_init(&sw);
+
+ while (mutex->locked)
+ assert(thread_yield() == 0);
+ mutex->locked = true;
+
+ printk(BIOS_SPEW, "took %lu us to acquire mutex\n", stopwatch_duration_usecs(&sw));
+}
+
+void thread_mutex_unlock(struct thread_mutex *mutex)
+{
+ assert(mutex->locked);
+ mutex->locked = 0;
+}