#include <sys/param.h>
#include <sys/mutex.h>
#include <sys/systm.h>
#include <sys/atomic.h>
#include <machine/intr.h>
#include <ddb/db_output.h>
#ifdef MULTIPROCESSOR
#define __mtx_lock(mtx) ((int *)(((vaddr_t)mtx->mtx_lock + 0xf) & ~0xf))
#endif
void
__mtx_init(struct mutex *mtx, int wantipl)
{
#ifdef MULTIPROCESSOR
mtx->mtx_lock[0] = 1;
mtx->mtx_lock[1] = 1;
mtx->mtx_lock[2] = 1;
mtx->mtx_lock[3] = 1;
#endif
mtx->mtx_wantipl = wantipl;
mtx->mtx_oldipl = IPL_NONE;
mtx->mtx_owner = NULL;
}
#ifdef MULTIPROCESSOR
void
mtx_enter(struct mutex *mtx)
{
while (mtx_enter_try(mtx) == 0)
;
}
int
mtx_enter_try(struct mutex *mtx)
{
struct cpu_info *ci = curcpu();
volatile int *lock = __mtx_lock(mtx);
int ret;
int s;
if (mtx->mtx_wantipl != IPL_NONE)
s = splraise(mtx->mtx_wantipl);
#ifdef DIAGNOSTIC
if (__predict_false(mtx->mtx_owner == ci))
panic("mtx %p: locking against myself", mtx);
#endif
asm volatile (
"ldcws 0(%2), %0"
: "=&r" (ret), "+m" (lock)
: "r" (lock)
);
if (ret) {
membar_enter();
mtx->mtx_owner = ci;
if (mtx->mtx_wantipl != IPL_NONE)
mtx->mtx_oldipl = s;
#ifdef DIAGNOSTIC
ci->ci_mutex_level++;
#endif
return (1);
}
if (mtx->mtx_wantipl != IPL_NONE)
splx(s);
return (0);
}
#else
void
mtx_enter(struct mutex *mtx)
{
struct cpu_info *ci = curcpu();
#ifdef DIAGNOSTIC
if (__predict_false(mtx->mtx_owner == ci))
panic("mtx %p: locking against myself", mtx);
#endif
if (mtx->mtx_wantipl != IPL_NONE)
mtx->mtx_oldipl = splraise(mtx->mtx_wantipl);
mtx->mtx_owner = ci;
#ifdef DIAGNOSTIC
ci->ci_mutex_level++;
#endif
}
int
mtx_enter_try(struct mutex *mtx)
{
mtx_enter(mtx);
return (1);
}
#endif
void
mtx_leave(struct mutex *mtx)
{
#ifdef MULTIPROCESSOR
volatile int *lock = __mtx_lock(mtx);
#endif
int s;
MUTEX_ASSERT_LOCKED(mtx);
#ifdef DIAGNOSTIC
curcpu()->ci_mutex_level--;
#endif
s = mtx->mtx_oldipl;
mtx->mtx_owner = NULL;
#ifdef MULTIPROCESSOR
membar_exit();
*lock = 1;
#endif
if (mtx->mtx_wantipl != IPL_NONE)
splx(s);
}