summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/avr/avr/sfr_defs.h
blob: 2b8392689a2790d38634a0df1dbc715c274787dc (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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
/**
 * @file
 *
 * @brief Macros for Accessing AVR Special Function Registers
 */

/* Copyright (c) 2002, Marek Michalkiewicz <marekm@amelek.gda.pl>
   All rights reserved.

   Redistribution and use in source and binary forms, with or without
   modification, are permitted provided that the following conditions are met:

   * Redistributions of source code must retain the above copyright
     notice, this list of conditions and the following disclaimer.

   * Redistributions in binary form must reproduce the above copyright
     notice, this list of conditions and the following disclaimer in
     the documentation and/or other materials provided with the
     distribution.

   * Neither the name of the copyright holders nor the names of
     contributors may be used to endorse or promote products derived
     from this software without specific prior written permission.

   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   POSSIBILITY OF SUCH DAMAGE.  */

/* avr/sfr_defs.h - macros for accessing AVR special function registers */


#ifndef _AVR_SFR_DEFS_H_
#define _AVR_SFR_DEFS_H_ 1

/**
 * @defgroup avr_sfr_notes Additional notes from <avr/sfr_defs.h>
 *
 * @ingroup avr_sfr
 *
 * The @c <avr/sfr_defs.h> file is included by all of the @c <avr/ioXXXX.h>
 * files, which use macros defined here to make the special function register
 * definitions look like C variables or simple constants, depending on the
 * <tt>_SFR_ASM_COMPAT</tt> define.  Some examples from @c <avr/iocanxx.h> to
 * show how to define such macros:
 *
 * @code
 * #define PORTA   _SFR_IO8(0x02)
 * #define EEAR    _SFR_IO16(0x21)
 * #define UDR0    _SFR_MEM8(0xC6)
 * #define TCNT3   _SFR_MEM16(0x94)
 * #define CANIDT  _SFR_MEM32(0xF0)
 * @endcode
 *
 * If @c _SFR_ASM_COMPAT is not defined, C programs can use names like
 * <tt>PORTA</tt> directly in C expressions (also on the left side of
 * assignment operators) and GCC will do the right thing (use short I/O
 * instructions if possible).  The @c __SFR_OFFSET definition is not used in
 * any way in this case.
 *
 * Define @c _SFR_ASM_COMPAT as 1 to make these names work as simple constants
 * (addresses of the I/O registers).  This is necessary when included in
 * preprocessed assembler (*.S) source files, so it is done automatically if
 * @c __ASSEMBLER__ is defined.  By default, all addresses are defined as if
 * they were memory addresses (used in @c lds/sts instructions).  To use these
 * addresses in @c in/out instructions, you must subtract 0x20 from them.
 *
 * For more backwards compatibility, insert the following at the start of your
 * old assembler source file:
 *
 * @code
 * #define __SFR_OFFSET 0
 * @endcode
 *
 * This automatically subtracts 0x20 from I/O space addresses, but it's a
 * hack, so it is recommended to change your source: wrap such addresses in
 * macros defined here, as shown below.  After this is done, the
 * <tt>__SFR_OFFSET</tt> definition is no longer necessary and can be removed.

 * Real example - this code could be used in a boot loader that is portable
 * between devices with @c SPMCR at different addresses.
 *
 * @verbatim
 * <avr/iom163.h>: #define SPMCR _SFR_IO8(0x37)
 * <avr/iom128.h>: #define SPMCR _SFR_MEM8(0x68)
 * @endverbatim
 *
 * @code
 * #if _SFR_IO_REG_P(SPMCR)
 * 	out	_SFR_IO_ADDR(SPMCR), r24
 * #else
 *	sts	_SFR_MEM_ADDR(SPMCR), r24
 * #endif
 * @endcode
 *
 * You can use the @c in/out/cbi/sbi/sbic/sbis instructions, without the
 * <tt>_SFR_IO_REG_P</tt> test, if you know that the register is in the I/O
 * space (as with @c SREG, for example).  If it isn't, the assembler will
 * complain (I/O address out of range 0...0x3f), so this should be fairly
 * safe.
 *
 * If you do not define @c __SFR_OFFSET (so it will be 0x20 by default), all
 * special register addresses are defined as memory addresses (so @c SREG is
 * 0x5f), and (if code size and speed are not important, and you don't like
 * the ugly \#if above) you can always use lds/sts to access them.  But, this
 * will not work if <tt>__SFR_OFFSET</tt> != 0x20, so use a different macro
 * (defined only if <tt>__SFR_OFFSET</tt> == 0x20) for safety:
 *
 * @code
 *	sts	_SFR_ADDR(SPMCR), r24
 * @endcode
 *
 * In C programs, all 3 combinations of @c _SFR_ASM_COMPAT and
 * <tt>__SFR_OFFSET</tt> are supported - the @c _SFR_ADDR(SPMCR) macro can be
 * used to get the address of the @c SPMCR register (0x57 or 0x68 depending on
 * device).
 */
/**@{**/

#ifdef __ASSEMBLER__
#define _SFR_ASM_COMPAT 1
#elif !defined(_SFR_ASM_COMPAT)
#define _SFR_ASM_COMPAT 0
#endif

#ifndef __ASSEMBLER__
/* These only work in C programs.  */
#include <inttypes.h>

#define _MMIO_BYTE(mem_addr) (*(volatile uint8_t *)(mem_addr))
#define _MMIO_WORD(mem_addr) (*(volatile uint16_t *)(mem_addr))
#define _MMIO_DWORD(mem_addr) (*(volatile uint32_t *)(mem_addr))
#endif

#if _SFR_ASM_COMPAT

#ifndef __SFR_OFFSET
/* Define as 0 before including this file for compatibility with old asm
   sources that don't subtract __SFR_OFFSET from symbolic I/O addresses.  */
#  if __AVR_ARCH__ >= 100
#    define __SFR_OFFSET 0x00
#  else
#    define __SFR_OFFSET 0x20
#  endif
#endif

#if (__SFR_OFFSET != 0) && (__SFR_OFFSET != 0x20)
#error "__SFR_OFFSET must be 0 or 0x20"
#endif

#define _SFR_MEM8(mem_addr) (mem_addr)
#define _SFR_MEM16(mem_addr) (mem_addr)
#define _SFR_MEM32(mem_addr) (mem_addr)
#define _SFR_IO8(io_addr) ((io_addr) + __SFR_OFFSET)
#define _SFR_IO16(io_addr) ((io_addr) + __SFR_OFFSET)

#define _SFR_IO_ADDR(sfr) ((sfr) - __SFR_OFFSET)
#define _SFR_MEM_ADDR(sfr) (sfr)
#define _SFR_IO_REG_P(sfr) ((sfr) < 0x40 + __SFR_OFFSET)

#if (__SFR_OFFSET == 0x20)
/* No need to use ?: operator, so works in assembler too.  */
#define _SFR_ADDR(sfr) _SFR_MEM_ADDR(sfr)
#elif !defined(__ASSEMBLER__)
#define _SFR_ADDR(sfr) (_SFR_IO_REG_P(sfr) ? (_SFR_IO_ADDR(sfr) + 0x20) : _SFR_MEM_ADDR(sfr))
#endif

#else  /* !_SFR_ASM_COMPAT */

#ifndef __SFR_OFFSET
#  if __AVR_ARCH__ >= 100
#    define __SFR_OFFSET 0x00
#  else
#    define __SFR_OFFSET 0x20
#  endif
#endif

#define _SFR_MEM8(mem_addr) _MMIO_BYTE(mem_addr)
#define _SFR_MEM16(mem_addr) _MMIO_WORD(mem_addr)
#define _SFR_MEM32(mem_addr) _MMIO_DWORD(mem_addr)
#define _SFR_IO8(io_addr) _MMIO_BYTE((io_addr) + __SFR_OFFSET)
#define _SFR_IO16(io_addr) _MMIO_WORD((io_addr) + __SFR_OFFSET)

#define _SFR_MEM_ADDR(sfr) ((uint16_t) &(sfr))
#define _SFR_IO_ADDR(sfr) (_SFR_MEM_ADDR(sfr) - __SFR_OFFSET)
#define _SFR_IO_REG_P(sfr) (_SFR_MEM_ADDR(sfr) < 0x40 + __SFR_OFFSET)

#define _SFR_ADDR(sfr) _SFR_MEM_ADDR(sfr)

#endif /* !_SFR_ASM_COMPAT */

#define _SFR_BYTE(sfr) _MMIO_BYTE(_SFR_ADDR(sfr))
#define _SFR_WORD(sfr) _MMIO_WORD(_SFR_ADDR(sfr))
#define _SFR_DWORD(sfr) _MMIO_DWORD(_SFR_ADDR(sfr))

/**
 * @name Bit Manipulation
 */
/**@{**/

/**
 * @code #include <avr/io.h> @endcode
 *
 * Converts a bit number into a byte value.
 *
 * @note The bit shift is performed by the compiler which then inserts the
 *       result into the code. Thus, there is no run-time overhead when using
 *       _BV().
 */   
#define _BV(bit) (1 << (bit))

/** @} */

#ifndef _VECTOR
#define _VECTOR(N) __vector_ ## N
#endif

#ifndef __ASSEMBLER__


/**
 * @name IO Register Bit Manipulation
 */
/**@{**/

/**
 * @code #include <avr/io.h> @endcode
 *
 * Test whether bit @c bit in IO register @c sfr is set.
 * This will return a 0 if the bit is clear, and non-zero
 * if the bit is set.
 */
#define bit_is_set(sfr, bit) (_SFR_BYTE(sfr) & _BV(bit))

/**
 * @code #include <avr/io.h> @endcode
 *
 * Test whether bit @c bit in IO register @c sfr is clear.
 * This will return non-zero if the bit is clear, and a 0
 * if the bit is set.
 */

#define bit_is_clear(sfr, bit) (!(_SFR_BYTE(sfr) & _BV(bit)))

/**
 * @code #include <avr/io.h> @endcode
 *
 * Wait until bit @c bit in IO register @c sfr is set.
 */
#define loop_until_bit_is_set(sfr, bit) do { } while (bit_is_clear(sfr, bit))

/**
 * @code #include <avr/io.h> @endcode
 *
 * Wait until bit @c bit in IO register @c sfr is clear.
 */
#define loop_until_bit_is_clear(sfr, bit) do { } while (bit_is_set(sfr, bit))

/** @} */

/** @} */

#endif /* !__ASSEMBLER__ */

#endif  /* _SFR_DEFS_H_ */