summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/smplock.c
blob: 1dd691835b9fee8fd3dd2202b19cc3217c0fce1e (plain) (blame)
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
47
48
49
/*
 *  COPYRIGHT (c) 1989-2011.
 *  On-Line Applications Research Corporation (OAR).
 *
 *  The license and distribution terms for this file may be
 *  found in the file LICENSE in this distribution or at
 *  http://www.rtems.com/license/LICENSE.
 *
 *  $Id$
 */

#if HAVE_CONFIG_H
#include "config.h"
#endif

#include <rtems/system.h>
#include <rtems/score/smplock.h>

void _SMP_lock_Spinlock_Initialize(
  SMP_lock_Control *lock
)
{
  *lock = 0;
}

ISR_Level _SMP_lock_Spinlock_Obtain(
  SMP_lock_Control *lock
)
{
  ISR_Level  level;
  uint32_t   value = 1;
  uint32_t   previous;

  /* Note: Disable provides an implicit memory barrier. */
  _ISR_Disable( level );
    do {
      SMP_CPU_SWAP( lock, value, previous );
    } while (previous == 1);
  return level;
}

void _SMP_lock_Spinlock_Release(
  SMP_lock_Control *lock,
  ISR_Level        level
)
{
  *lock = 0;
  _ISR_Enable( level );
}