source: rtems/c/src/lib/libbsp/arm/nds/dswifi/common/source/spinlock.h @ c1e5bed

4.115
Last change on this file since c1e5bed was c1e5bed, checked in by Ralf Corsepius <ralf.corsepius@…>, on 02/11/11 at 13:07:39

2011-02-11 Ralf Corsépius <ralf.corsepius@…>

  • dswifi/common/source/spinlock.h: Use "asm" instead of "asm" for improved c99-compliance.
  • Property mode set to 100644
File size: 2.3 KB
Line 
1// DS Wifi interface code
2// Copyright (C) 2005-2006 Stephen Stair - sgstair@akkit.org - http://www.akkit.org
3// spinlock.h - code for spinlocking for basic wifi structure memory protection
4/******************************************************************************
5DSWifi Lib and test materials are licenced under the MIT open source licence:
6Copyright (c) 2005-2006 Stephen Stair
7
8Permission is hereby granted, free of charge, to any person obtaining a copy of
9this software and associated documentation files (the "Software"), to deal in
10the Software without restriction, including without limitation the rights to
11use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
12of the Software, and to permit persons to whom the Software is furnished to do
13so, subject to the following conditions:
14
15The above copyright notice and this permission notice shall be included in all
16copies or substantial portions of the Software.
17
18THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
24SOFTWARE.
25******************************************************************************/
26
27
28
29/*
30
31__asm__ (
32".GLOBL SLasm_Acquire, SLasm_Release   \n"
33".ARM \n"
34"SLasm_Acquire:                                 \n"
35"   ldr r2,[r0]                                 \n"
36"   cmp r2,#0                                   \n"
37"   movne r0,#1                 \n"
38"   bxne lr                             \n"
39"   mov r2,r1                                   \n"
40"   swp r2,r2,[r0]                              \n"
41"   cmp r2,#0                                   \n"
42"   cmpne r2,r1                 \n"
43"   moveq r0,#0                 \n"
44"   bxeq lr                             \n"
45"   swp r2,r2,[r0]                              \n"
46"   mov r0,#1                   \n"
47"   bx lr                               \n"
48"\n\n"
49"SLasm_Release:                                 \n"
50"   ldr r2,[r0]                                 \n"
51"   cmp r2,r1                   \n"
52"   movne r0,#2                 \n"
53"   bxne lr                             \n"
54"   mov r2,#0                                   \n"
55"   swp r2,r2,[r0]                              \n"
56"   cmp r2,r1                                   \n"
57"   moveq r0,#0                 \n"
58"   movne r0,#2                 \n"
59"   bx lr                               \n"
60);
61
62*/
63
Note: See TracBrowser for help on using the repository browser.