blob: 0518b5fbf1ea344c6c4010727f9fe9b0c46b1bfe [file] [log] [blame]
// Copyright 2016 The Fuchsia Authors
// Copyright (c) 2015 Travis Geiselbrecht
//
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file or at
// https://opensource.org/licenses/MIT
#ifndef ZIRCON_KERNEL_ARCH_X86_INCLUDE_ARCH_SPINLOCK_H_
#define ZIRCON_KERNEL_ARCH_X86_INCLUDE_ARCH_SPINLOCK_H_
#include <lib/zircon-internal/thread_annotations.h>
#include <stdbool.h>
#include <zircon/compiler.h>
#include <arch/x86.h>
#include <arch/x86/mp.h>
#include <kernel/cpu.h>
#define ARCH_SPIN_LOCK_INITIAL_VALUE \
(arch_spin_lock_t) { 0 }
typedef struct TA_CAP("mutex") arch_spin_lock {
unsigned long value;
} arch_spin_lock_t;
// Note: trylock operations are not permitted to fail spuriously, even on
// architectures with weak memory ordering. If a trylock operation fails, it
// must be because the lock was actually observed to be held by another thread
// during the attempt.
void arch_spin_lock(arch_spin_lock_t *lock) TA_ACQ(lock);
bool arch_spin_trylock(arch_spin_lock_t *lock) TA_TRY_ACQ(false, lock);
void arch_spin_unlock(arch_spin_lock_t *lock) TA_REL(lock);
static inline cpu_num_t arch_spin_lock_holder_cpu(const arch_spin_lock_t *lock) {
return (cpu_num_t)__atomic_load_n(&lock->value, __ATOMIC_RELAXED) - 1;
}
static inline bool arch_spin_lock_held(const arch_spin_lock_t *lock) {
return arch_spin_lock_holder_cpu(lock) == arch_curr_cpu_num();
}
#endif // ZIRCON_KERNEL_ARCH_X86_INCLUDE_ARCH_SPINLOCK_H_