Implement CPU locks. Untested.

This commit is contained in:
gmcgarry 2002-09-16 21:01:31 +00:00
parent a9fed43086
commit 24faaecc3a
1 changed files with 53 additions and 3 deletions

View File

@ -1,11 +1,11 @@
/* $NetBSD: lock.h,v 1.2 2000/05/02 04:41:08 thorpej Exp $ */
/* $NetBSD: lock.h,v 1.3 2002/09/16 21:01:31 gmcgarry Exp $ */
/*-
* Copyright (c) 2000 The NetBSD Foundation, Inc.
* Copyright (c) 2002 The NetBSD Foundation, Inc.
* All rights reserved.
*
* This code is derived from software contributed to The NetBSD Foundation
* by Jason R. Thorpe.
* by Gregory McGarry.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@ -48,4 +48,54 @@ typedef __volatile int __cpu_simple_lock_t;
#define __SIMPLELOCK_LOCKED 1
#define __SIMPLELOCK_UNLOCKED 0
static __inline void __cpu_simple_lock_init __P((__cpu_simple_lock_t *))
__attribute__((__unused__));
static __inline void __cpu_simple_lock __P((__cpu_simple_lock_t *))
__attribute__((__unused__));
static __inline int __cpu_simple_lock_try __P((__cpu_simple_lock_t *))
__attribute__((__unused__));
static __inline void __cpu_simple_unlock __P((__cpu_simple_lock_t *))
__attribute__((__unused__));
static __inline void
__cpu_simple_lock_init(__cpu_simple_lock_t *alp)
{
*alp = __SIMPLELOCK_UNLOCKED;
}
static __inline void
__cpu_simple_lock(__cpu_simple_lock_t *alp)
{
__asm __volatile(
"1: sbitid %1, %0 \n"
" bfs 1b \n"
: "=m" (*alp)
: "i" (__SIMPLELOCK_LOCKED));
}
static __inline int
__cpu_simple_lock_try(__cpu_simple_lock_t *alp)
{
int __rv = 1;
__asm __volatile(
" sbitid %2, %0 \n"
" bfc 1f \n"
" movqd 0, %1 \n"
"1: \n"
: "=m" (*alp), "=m" (__rv)
: "i" (__SIMPLELOCK_LOCKED));
return (__rv);
}
static __inline void
__cpu_simple_unlock(__cpu_simple_lock_t *alp)
{
*alp = __SIMPLELOCK_UNLOCKED;
}
#endif /* _PC532_LOCK_H_ */