]> git.gir.st - tmk_keyboard.git/blob - protocol/lufa/LUFA-120730/LUFA/Common/Common.h
Squashed 'tmk_core/' content from commit 05caacc
[tmk_keyboard.git] / protocol / lufa / LUFA-120730 / LUFA / Common / Common.h
1 /*
2 LUFA Library
3 Copyright (C) Dean Camera, 2012.
4
5 dean [at] fourwalledcubicle [dot] com
6 www.lufa-lib.org
7 */
8
9 /*
10 Copyright 2012 Dean Camera (dean [at] fourwalledcubicle [dot] com)
11
12 Permission to use, copy, modify, distribute, and sell this
13 software and its documentation for any purpose is hereby granted
14 without fee, provided that the above copyright notice appear in
15 all copies and that both that the copyright notice and this
16 permission notice and warranty disclaimer appear in supporting
17 documentation, and that the name of the author not be used in
18 advertising or publicity pertaining to distribution of the
19 software without specific, written prior permission.
20
21 The author disclaim all warranties with regard to this
22 software, including all implied warranties of merchantability
23 and fitness. In no event shall the author be liable for any
24 special, indirect or consequential damages or any damages
25 whatsoever resulting from loss of use, data or profits, whether
26 in an action of contract, negligence or other tortious action,
27 arising out of or in connection with the use or performance of
28 this software.
29 */
30
31 /** \dir
32 * \brief Common library header files.
33 *
34 * This folder contains header files which are common to all parts of the LUFA library. They may be used freely in
35 * user applications.
36 */
37
38 /** \file
39 * \brief Common library convenience headers, macros and functions.
40 *
41 * \copydetails Group_Common
42 */
43
44 /** \defgroup Group_Common Common Utility Headers - LUFA/Drivers/Common/Common.h
45 * \brief Common library convenience headers, macros and functions.
46 *
47 * Common utility headers containing macros, functions, enums and types which are common to all
48 * aspects of the library.
49 *
50 * @{
51 */
52
53 /** \defgroup Group_GlobalInt Global Interrupt Macros
54 * \brief Convenience macros for the management of interrupts globally within the device.
55 *
56 * Macros and functions to create and control global interrupts within the device.
57 */
58
59 #ifndef __LUFA_COMMON_H__
60 #define __LUFA_COMMON_H__
61
62 /* Macros: */
63 #define __INCLUDE_FROM_COMMON_H
64
65 /* Includes: */
66 #include <stdint.h>
67 #include <stdbool.h>
68 #include <string.h>
69 #include <stddef.h>
70
71 #include "Architectures.h"
72 #include "BoardTypes.h"
73 #include "ArchitectureSpecific.h"
74 #include "CompilerSpecific.h"
75 #include "Attributes.h"
76
77 #if defined(USE_LUFA_CONFIG_HEADER)
78 #include "LUFAConfig.h"
79 #endif
80
81 /* Enable C linkage for C++ Compilers: */
82 #if defined(__cplusplus)
83 extern "C" {
84 #endif
85
86 /* Architecture specific utility includes: */
87 #if defined(__DOXYGEN__)
88 /** Type define for an unsigned integer the same width as the selected architecture's machine register.
89 * This is distinct from the non-specific standard int data type, whose width is machine dependant but
90 * which may not reflect the actual machine register width on some targets (e.g. AVR8).
91 */
92 typedef MACHINE_REG_t uint_reg_t;
93 #elif (ARCH == ARCH_AVR8)
94 #include <avr/io.h>
95 #include <avr/interrupt.h>
96 #include <avr/pgmspace.h>
97 #include <avr/eeprom.h>
98 #include <avr/boot.h>
99 #include <math.h>
100 #include <util/delay.h>
101
102 typedef uint8_t uint_reg_t;
103
104 #define ARCH_HAS_EEPROM_ADDRESS_SPACE
105 #define ARCH_HAS_FLASH_ADDRESS_SPACE
106 #define ARCH_HAS_MULTI_ADDRESS_SPACE
107 #define ARCH_LITTLE_ENDIAN
108
109 #include "Endianness.h"
110 #elif (ARCH == ARCH_UC3)
111 #include <avr32/io.h>
112 #include <math.h>
113
114 // === TODO: Find abstracted way to handle these ===
115 #define PROGMEM
116 #define pgm_read_byte(x) *x
117 #define memcmp_P(...) memcmp(__VA_ARGS__)
118 #define memcpy_P(...) memcpy(__VA_ARGS__)
119 // =================================================
120
121 typedef uint32_t uint_reg_t;
122
123 #define ARCH_BIG_ENDIAN
124
125 #include "Endianness.h"
126 #elif (ARCH == ARCH_XMEGA)
127 #include <avr/io.h>
128 #include <avr/interrupt.h>
129 #include <avr/pgmspace.h>
130 #include <avr/eeprom.h>
131 #include <math.h>
132 #include <util/delay.h>
133
134 typedef uint8_t uint_reg_t;
135
136 #define ARCH_HAS_EEPROM_ADDRESS_SPACE
137 #define ARCH_HAS_FLASH_ADDRESS_SPACE
138 #define ARCH_HAS_MULTI_ADDRESS_SPACE
139 #define ARCH_LITTLE_ENDIAN
140
141 #include "Endianness.h"
142 #else
143 #error Unknown device architecture specified.
144 #endif
145
146 /* Public Interface - May be used in end-application: */
147 /* Macros: */
148 /** Macro for encasing other multi-statement macros. This should be used along with an opening brace
149 * before the start of any multi-statement macro, so that the macros contents as a whole are treated
150 * as a discrete block and not as a list of separate statements which may cause problems when used as
151 * a block (such as inline \c if statements).
152 */
153 #define MACROS do
154
155 /** Macro for encasing other multi-statement macros. This should be used along with a preceding closing
156 * brace at the end of any multi-statement macro, so that the macros contents as a whole are treated
157 * as a discrete block and not as a list of separate statements which may cause problems when used as
158 * a block (such as inline \c if statements).
159 */
160 #define MACROE while (0)
161
162 /** Convenience macro to determine the larger of two values.
163 *
164 * \attention This macro should only be used with operands that do not have side effects from being evaluated
165 * multiple times.
166 *
167 * \param[in] x First value to compare
168 * \param[in] y First value to compare
169 *
170 * \return The larger of the two input parameters
171 */
172 #if !defined(MAX) || defined(__DOXYGEN__)
173 #define MAX(x, y) (((x) > (y)) ? (x) : (y))
174 #endif
175
176 /** Convenience macro to determine the smaller of two values.
177 *
178 * \attention This macro should only be used with operands that do not have side effects from being evaluated
179 * multiple times.
180 *
181 * \param[in] x First value to compare
182 * \param[in] y First value to compare
183 *
184 * \return The smaller of the two input parameters
185 */
186 #if !defined(MIN) || defined(__DOXYGEN__)
187 #define MIN(x, y) (((x) < (y)) ? (x) : (y))
188 #endif
189
190 #if !defined(STRINGIFY) || defined(__DOXYGEN__)
191 /** Converts the given input into a string, via the C Preprocessor. This macro puts literal quotation
192 * marks around the input, converting the source into a string literal.
193 *
194 * \param[in] x Input to convert into a string literal.
195 *
196 * \return String version of the input.
197 */
198 #define STRINGIFY(x) #x
199
200 /** Converts the given input into a string after macro expansion, via the C Preprocessor. This macro puts
201 * literal quotation marks around the expanded input, converting the source into a string literal.
202 *
203 * \param[in] x Input to expand and convert into a string literal.
204 *
205 * \return String version of the expanded input.
206 */
207 #define STRINGIFY_EXPANDED(x) STRINGIFY(x)
208 #endif
209
210 #if !defined(ISR) || defined(__DOXYGEN__)
211 /** Macro for the definition of interrupt service routines, so that the compiler can insert the required
212 * prologue and epilogue code to properly manage the interrupt routine without affecting the main thread's
213 * state with unintentional side-effects.
214 *
215 * Interrupt handlers written using this macro may still need to be registered with the microcontroller's
216 * Interrupt Controller (if present) before they will properly handle incoming interrupt events.
217 *
218 * \note This macro is only supplied on some architectures, where the standard library does not include a valid
219 * definition. If an existing definition exists, the alternative definition here will be ignored.
220 *
221 * \ingroup Group_GlobalInt
222 *
223 * \param[in] Name Unique name of the interrupt service routine.
224 */
225 #define ISR(Name, ...) void Name (void) __attribute__((__interrupt__)) __VA_ARGS__; void Name (void)
226 #endif
227
228 /* Inline Functions: */
229 /** Function to reverse the individual bits in a byte - i.e. bit 7 is moved to bit 0, bit 6 to bit 1,
230 * etc.
231 *
232 * \param[in] Byte Byte of data whose bits are to be reversed.
233 *
234 * \return Input data with the individual bits reversed (mirrored).
235 */
236 static inline uint8_t BitReverse(uint8_t Byte) ATTR_WARN_UNUSED_RESULT ATTR_CONST;
237 static inline uint8_t BitReverse(uint8_t Byte)
238 {
239 Byte = (((Byte & 0xF0) >> 4) | ((Byte & 0x0F) << 4));
240 Byte = (((Byte & 0xCC) >> 2) | ((Byte & 0x33) << 2));
241 Byte = (((Byte & 0xAA) >> 1) | ((Byte & 0x55) << 1));
242
243 return Byte;
244 }
245
246 /** Function to perform a blocking delay for a specified number of milliseconds. The actual delay will be
247 * at a minimum the specified number of milliseconds, however due to loop overhead and internal calculations
248 * may be slightly higher.
249 *
250 * \param[in] Milliseconds Number of milliseconds to delay
251 */
252 static inline void Delay_MS(uint16_t Milliseconds) ATTR_ALWAYS_INLINE;
253 static inline void Delay_MS(uint16_t Milliseconds)
254 {
255 #if (ARCH == ARCH_AVR8)
256 if (GCC_IS_COMPILE_CONST(Milliseconds))
257 {
258 _delay_ms(Milliseconds);
259 }
260 else
261 {
262 while (Milliseconds--)
263 _delay_ms(1);
264 }
265 #elif (ARCH == ARCH_UC3)
266 while (Milliseconds--)
267 {
268 __builtin_mtsr(AVR32_COUNT, 0);
269 while ((uint32_t)__builtin_mfsr(AVR32_COUNT) < (F_CPU / 1000));
270 }
271 #elif (ARCH == ARCH_XMEGA)
272 if (GCC_IS_COMPILE_CONST(Milliseconds))
273 {
274 _delay_ms(Milliseconds);
275 }
276 else
277 {
278 while (Milliseconds--)
279 _delay_ms(1);
280 }
281 #endif
282 }
283
284 /** Retrieves a mask which contains the current state of the global interrupts for the device. This
285 * value can be stored before altering the global interrupt enable state, before restoring the
286 * flag(s) back to their previous values after a critical section using \ref SetGlobalInterruptMask().
287 *
288 * \ingroup Group_GlobalInt
289 *
290 * \return Mask containing the current Global Interrupt Enable Mask bit(s).
291 */
292 static inline uint_reg_t GetGlobalInterruptMask(void) ATTR_ALWAYS_INLINE ATTR_WARN_UNUSED_RESULT;
293 static inline uint_reg_t GetGlobalInterruptMask(void)
294 {
295 GCC_MEMORY_BARRIER();
296
297 #if (ARCH == ARCH_AVR8)
298 return SREG;
299 #elif (ARCH == ARCH_UC3)
300 return __builtin_mfsr(AVR32_SR);
301 #elif (ARCH == ARCH_XMEGA)
302 return SREG;
303 #endif
304 }
305
306 /** Sets the global interrupt enable state of the microcontroller to the mask passed into the function.
307 * This can be combined with \ref GetGlobalInterruptMask() to save and restore the Global Interrupt Enable
308 * Mask bit(s) of the device after a critical section has completed.
309 *
310 * \ingroup Group_GlobalInt
311 *
312 * \param[in] GlobalIntState Global Interrupt Enable Mask value to use
313 */
314 static inline void SetGlobalInterruptMask(const uint_reg_t GlobalIntState) ATTR_ALWAYS_INLINE;
315 static inline void SetGlobalInterruptMask(const uint_reg_t GlobalIntState)
316 {
317 GCC_MEMORY_BARRIER();
318
319 #if (ARCH == ARCH_AVR8)
320 SREG = GlobalIntState;
321 #elif (ARCH == ARCH_UC3)
322 if (GlobalIntState & AVR32_SR_GM)
323 __builtin_ssrf(AVR32_SR_GM_OFFSET);
324 else
325 __builtin_csrf(AVR32_SR_GM_OFFSET);
326 #elif (ARCH == ARCH_XMEGA)
327 SREG = GlobalIntState;
328 #endif
329
330 GCC_MEMORY_BARRIER();
331 }
332
333 /** Enables global interrupt handling for the device, allowing interrupts to be handled.
334 *
335 * \ingroup Group_GlobalInt
336 */
337 static inline void GlobalInterruptEnable(void) ATTR_ALWAYS_INLINE;
338 static inline void GlobalInterruptEnable(void)
339 {
340 GCC_MEMORY_BARRIER();
341
342 #if (ARCH == ARCH_AVR8)
343 sei();
344 #elif (ARCH == ARCH_UC3)
345 __builtin_csrf(AVR32_SR_GM_OFFSET);
346 #elif (ARCH == ARCH_XMEGA)
347 sei();
348 #endif
349
350 GCC_MEMORY_BARRIER();
351 }
352
353 /** Disabled global interrupt handling for the device, preventing interrupts from being handled.
354 *
355 * \ingroup Group_GlobalInt
356 */
357 static inline void GlobalInterruptDisable(void) ATTR_ALWAYS_INLINE;
358 static inline void GlobalInterruptDisable(void)
359 {
360 GCC_MEMORY_BARRIER();
361
362 #if (ARCH == ARCH_AVR8)
363 cli();
364 #elif (ARCH == ARCH_UC3)
365 __builtin_ssrf(AVR32_SR_GM_OFFSET);
366 #elif (ARCH == ARCH_XMEGA)
367 cli();
368 #endif
369
370 GCC_MEMORY_BARRIER();
371 }
372
373 /* Disable C linkage for C++ Compilers: */
374 #if defined(__cplusplus)
375 }
376 #endif
377
378 #endif
379
380 /** @} */
381
Imprint / Impressum