-
Notifications
You must be signed in to change notification settings - Fork 350
Expand file tree
/
Copy pathspinlock.c
More file actions
46 lines (38 loc) · 967 Bytes
/
spinlock.c
File metadata and controls
46 lines (38 loc) · 967 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// SPDX-License-Identifier: BSD-3-Clause
//
// Copyright(c) 2020 Intel Corporation. All rights reserved.
//
// Author: Tomasz Lauda <tomasz.lauda@linux.intel.com>
#include <rtos/interrupt.h>
#if CONFIG_DEBUG_LOCKS
#include <sof/lib/uuid.h>
#endif
#include <rtos/spinlock.h>
#include <stdint.h>
#if CONFIG_DEBUG_LOCKS
SOF_DEFINE_REG_UUID(spinlock);
DECLARE_TR_CTX(sl_tr, SOF_UUID(spinlock_uuid), LOG_LEVEL_INFO);
#endif
#ifndef __ZEPHYR__
k_spinlock_key_t _k_spin_lock_irq(struct k_spinlock *lock)
{
k_spinlock_key_t key = interrupt_global_disable();
#if CONFIG_DEBUG_LOCKS
lock_dbg_atomic++;
#endif
arch_spin_lock(lock);
#if CONFIG_DEBUG_LOCKS
if (lock_dbg_atomic < DBG_LOCK_USERS)
lock_dbg_user[lock_dbg_atomic - 1] = (lock)->user;
#endif
return key;
}
void _k_spin_unlock_irq(struct k_spinlock *lock, k_spinlock_key_t key, int line)
{
arch_spin_unlock(lock);
#if CONFIG_DEBUG_LOCKS
lock_dbg_atomic--;
#endif
interrupt_global_enable(key);
}
#endif