56ef5bd09eaf0130a6870b32f746118c96a54fe4
[aversive.git] / include / aversive / irq_lock.h
1 /*  
2  *  Copyright Droids Corporation, Microb Technology, Eirbot (2005)
3  * 
4  *  This program is free software; you can redistribute it and/or modify
5  *  it under the terms of the GNU General Public License as published by
6  *  the Free Software Foundation; either version 2 of the License, or
7  *  (at your option) any later version.
8  *
9  *  This program is distributed in the hope that it will be useful,
10  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  *  GNU General Public License for more details.
13  *
14  *  You should have received a copy of the GNU General Public License
15  *  along with this program; if not, write to the Free Software
16  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17  *
18  *  Revision : $Id: irq_lock.h,v 1.1.2.1 2007-05-23 17:18:09 zer0 Exp $
19  *
20  */
21
22 /** \file modules/base/utils/irq_lock_macros.h
23  *  \brief Interface of the utils module
24  *   
25  *   here are defined the three macros : 
26  *
27  *  IRQ_LOCK(flags);              this saves interrupt state
28  *  IRQ_UNLOCK(flags);            this restores interrupt state
29  *  
30  *  code example follows: 
31  *
32  *    uint8_t flags;
33  *    IRQ_LOCK(flags);
34  *      // code to be protected against interrupts ...
35  *    IRQ_UNLOCK(flags); // needs to be associated with an unlock
36  *  
37  */
38
39
40 #ifndef _AVERSIVE_IRQ_LOCK_H_
41 #define _AVERSIVE_IRQ_LOCK_H_
42
43 #ifdef HOST_VERSION
44
45 #ifdef CONFIG_MODULE_HOSTSIM
46 #include <hostsim.h>
47
48 /* we must use 'flags' to avoid a warning */
49 #define cli() do { hostsim_cli(); } while(0)
50 #define sei() do { hostsim_sei(); } while(0)
51 #define IRQ_LOCK(flags) do { flags = hostsim_irq_save(); } while(0)
52 #define IRQ_UNLOCK(flags) do { hostsim_irq_restore(flags); } while(0)
53 #define GLOBAL_IRQ_ARE_MASKED() hostsim_islocked()
54 #else
55 #define cli() do {} while(0)
56 #define sei() do {} while(0)
57 #define IRQ_LOCK(flags) do { (void)flags; } while(0)
58 #define IRQ_UNLOCK(flags) do { (void)flags; } while(0)
59 #define GLOBAL_IRQ_ARE_MASKED() (0)
60 #endif /* CONFIG_MODULE_HOSTSIM */
61
62 #else
63
64 #define GLOBAL_IRQ_ARE_MASKED() (!(bit_is_set(SREG,7)))
65
66 #define IRQ_LOCK(flags) do {         \
67   flags = SREG;                      \
68   cli();                             \
69   } while(0)
70
71 #define IRQ_UNLOCK(flags) do {       \
72   SREG = flags;                      \
73   } while ( 0 )
74
75 #endif /* ! HOST_VERSION */
76
77 #endif /* _AVERSIVE_IRQ_LOCK_H_ */