2018-12-11 21:54:06 +08:00
|
|
|
/*
|
2019-01-24 14:11:10 +08:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*
|
|
|
|
* Copyright (c) 2019 Western Digital Corporation or its affiliates.
|
2018-12-11 21:54:06 +08:00
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Anup Patel <anup.patel@wdc.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __RISCV_LOCKS_H__
|
|
|
|
#define __RISCV_LOCKS_H__
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
volatile long lock;
|
|
|
|
} spinlock_t;
|
|
|
|
|
2019-04-11 08:41:52 +08:00
|
|
|
#define __RISCV_SPIN_UNLOCKED 0
|
2018-12-11 21:54:06 +08:00
|
|
|
|
2019-04-11 08:41:52 +08:00
|
|
|
#define SPIN_LOCK_INIT(_lptr) (_lptr)->lock = __RISCV_SPIN_UNLOCKED
|
2018-12-11 21:54:06 +08:00
|
|
|
|
2019-04-11 08:41:52 +08:00
|
|
|
#define SPIN_LOCK_INITIALIZER \
|
|
|
|
{ \
|
|
|
|
.lock = __RISCV_SPIN_UNLOCKED, \
|
|
|
|
}
|
2018-12-11 21:54:06 +08:00
|
|
|
|
|
|
|
int spin_lock_check(spinlock_t *lock);
|
|
|
|
|
|
|
|
int spin_trylock(spinlock_t *lock);
|
|
|
|
|
|
|
|
void spin_lock(spinlock_t *lock);
|
|
|
|
|
|
|
|
void spin_unlock(spinlock_t *lock);
|
|
|
|
|
|
|
|
#endif
|