3      Copyright (C) Dean Camera, 2012. 
   5   dean [at] fourwalledcubicle [dot] com 
  10   Copyright 2012  Dean Camera (dean [at] fourwalledcubicle [dot] com) 
  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. 
  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 
  32  *  \brief Common library convenience headers, macros and functions. 
  34  *  \copydetails Group_Common 
  37 /** \defgroup Group_Common Common Utility Headers - LUFA/Drivers/Common/Common.h 
  38  *  \brief Common library convenience headers, macros and functions. 
  40  *  Common utility headers containing macros, functions, enums and types which are common to all 
  41  *  aspects of the library. 
  46 /** \defgroup Group_GlobalInt Global Interrupt Macros 
  47  *  \brief Convenience macros for the management of interrupts globally within the device. 
  49  *  Macros and functions to create and control global interrupts within the device. 
  52 #ifndef __LUFA_COMMON_H__ 
  53 #define __LUFA_COMMON_H__ 
  56                 #define __INCLUDE_FROM_COMMON_H 
  64                 #if defined(USE_LUFA_CONFIG_HEADER) 
  65                         #include "LUFAConfig.h" 
  68                 #include "Architectures.h" 
  69                 #include "BoardTypes.h" 
  70                 #include "ArchitectureSpecific.h" 
  71                 #include "CompilerSpecific.h" 
  72                 #include "Attributes.h" 
  74         /* Enable C linkage for C++ Compilers: */ 
  75                 #if defined(__cplusplus) 
  79         /* Architecture specific utility includes: */ 
  80                 #if defined(__DOXYGEN__) 
  81                         /** Type define for an unsigned integer the same width as the selected architecture's machine register. 
  82                          *  This is distinct from the non-specific standard int data type, whose width is machine dependant but 
  83                          *  which may not reflect the actual machine register width on some targets (e.g. AVR8). 
  85                         typedef MACHINE_REG_t uint_reg_t
; 
  86                 #elif (ARCH == ARCH_AVR8) 
  88                         #include <avr/interrupt.h> 
  89                         #include <avr/pgmspace.h> 
  90                         #include <avr/eeprom.h> 
  93                         #include <util/delay.h> 
  95                         typedef uint8_t uint_reg_t
; 
  97                         #define ARCH_HAS_EEPROM_ADDRESS_SPACE 
  98                         #define ARCH_HAS_FLASH_ADDRESS_SPACE 
  99                         #define ARCH_HAS_MULTI_ADDRESS_SPACE 
 100                         #define ARCH_LITTLE_ENDIAN 
 102                         #include "Endianness.h" 
 103                 #elif (ARCH == ARCH_UC3) 
 104                         #include <avr32/io.h> 
 106                         // === TODO: Find abstracted way to handle these === 
 107                         #define PROGMEM                  const 
 108                         #define pgm_read_byte(x)         *x 
 109                         #define memcmp_P(...)            memcmp(__VA_ARGS__) 
 110                         #define memcpy_P(...)            memcpy(__VA_ARGS__) 
 111                         // ================================================= 
 113                         typedef uint32_t uint_reg_t
; 
 115                         #define ARCH_BIG_ENDIAN 
 117                         #include "Endianness.h" 
 118                 #elif (ARCH == ARCH_XMEGA) 
 120                         #include <avr/interrupt.h> 
 121                         #include <avr/pgmspace.h> 
 122                         #include <avr/eeprom.h> 
 124                         #include <util/delay.h> 
 126                         typedef uint8_t uint_reg_t
; 
 128                         #define ARCH_HAS_EEPROM_ADDRESS_SPACE 
 129                         #define ARCH_HAS_FLASH_ADDRESS_SPACE 
 130                         #define ARCH_HAS_MULTI_ADDRESS_SPACE 
 131                         #define ARCH_LITTLE_ENDIAN 
 133                         #include "Endianness.h" 
 135                         #error Unknown device architecture specified. 
 138         /* Public Interface - May be used in end-application: */ 
 140                         /** Macro for encasing other multi-statement macros. This should be used along with an opening brace 
 141                          *  before the start of any multi-statement macro, so that the macros contents as a whole are treated 
 142                          *  as a discrete block and not as a list of separate statements which may cause problems when used as 
 143                          *  a block (such as inline \c if statements). 
 147                         /** Macro for encasing other multi-statement macros. This should be used along with a preceding closing 
 148                          *  brace at the end of any multi-statement macro, so that the macros contents as a whole are treated 
 149                          *  as a discrete block and not as a list of separate statements which may cause problems when used as 
 150                          *  a block (such as inline \c if statements). 
 152                         #define MACROE                  while (0) 
 154                         /** Convenience macro to determine the larger of two values. 
 156                          *  \attention This macro should only be used with operands that do not have side effects from being evaluated 
 159                          *  \param[in] x  First value to compare 
 160                          *  \param[in] y  First value to compare 
 162                          *  \return The larger of the two input parameters 
 164                         #if !defined(MAX) || defined(__DOXYGEN__) 
 165                                 #define MAX(x, y)               (((x) > (y)) ? (x) : (y)) 
 168                         /** Convenience macro to determine the smaller of two values. 
 170                          *  \attention This macro should only be used with operands that do not have side effects from being evaluated 
 173                          *  \param[in] x  First value to compare 
 174                          *  \param[in] y  First value to compare 
 176                          *  \return The smaller of the two input parameters 
 178                         #if !defined(MIN) || defined(__DOXYGEN__) 
 179                                 #define MIN(x, y)               (((x) < (y)) ? (x) : (y)) 
 182                         #if !defined(STRINGIFY) || defined(__DOXYGEN__) 
 183                                 /** Converts the given input into a string, via the C Preprocessor. This macro puts literal quotation 
 184                                  *  marks around the input, converting the source into a string literal. 
 186                                  *  \param[in] x  Input to convert into a string literal. 
 188                                  *  \return String version of the input. 
 190                                 #define STRINGIFY(x)            #x 
 192                                 /** Converts the given input into a string after macro expansion, via the C Preprocessor. This macro puts 
 193                                  *  literal quotation marks around the expanded input, converting the source into a string literal. 
 195                                  *  \param[in] x  Input to expand and convert into a string literal. 
 197                                  *  \return String version of the expanded input. 
 199                                 #define STRINGIFY_EXPANDED(x)   STRINGIFY(x) 
 202                         #if !defined(ISR) || defined(__DOXYGEN__) 
 203                                 /** Macro for the definition of interrupt service routines, so that the compiler can insert the required 
 204                                  *  prologue and epilogue code to properly manage the interrupt routine without affecting the main thread's 
 205                                  *  state with unintentional side-effects. 
 207                                  *  Interrupt handlers written using this macro may still need to be registered with the microcontroller's 
 208                                  *  Interrupt Controller (if present) before they will properly handle incoming interrupt events. 
 210                                  *  \note This macro is only supplied on some architectures, where the standard library does not include a valid 
 211                                  *        definition. If an existing definition exists, the alternative definition here will be ignored. 
 213                                  *  \ingroup Group_GlobalInt 
 215                                  *  \param Name  Unique name of the interrupt service routine. 
 217                                 #define ISR(Name, ...)          void Name (void) __attribute__((__interrupt__)) __VA_ARGS__; void Name (void) 
 220                 /* Inline Functions: */ 
 221                         /** Function to reverse the individual bits in a byte - i.e. bit 7 is moved to bit 0, bit 6 to bit 1, 
 224                          *  \param[in] Byte  Byte of data whose bits are to be reversed. 
 226                          *  \return Input data with the individual bits reversed (mirrored). 
 228                         static inline uint8_t BitReverse(uint8_t Byte
) ATTR_WARN_UNUSED_RESULT ATTR_CONST
; 
 229                         static inline uint8_t BitReverse(uint8_t Byte
) 
 231                                 Byte 
= (((Byte 
& 0xF0) >> 4) | ((Byte 
& 0x0F) << 4)); 
 232                                 Byte 
= (((Byte 
& 0xCC) >> 2) | ((Byte 
& 0x33) << 2)); 
 233                                 Byte 
= (((Byte 
& 0xAA) >> 1) | ((Byte 
& 0x55) << 1)); 
 238                         /** Function to perform a blocking delay for a specified number of milliseconds. The actual delay will be 
 239                          *  at a minimum the specified number of milliseconds, however due to loop overhead and internal calculations 
 240                          *  may be slightly higher. 
 242                          *  \param[in] Milliseconds  Number of milliseconds to delay 
 244                         static inline void Delay_MS(uint16_t Milliseconds
) ATTR_ALWAYS_INLINE
; 
 245                         static inline void Delay_MS(uint16_t Milliseconds
) 
 247                                 #if (ARCH == ARCH_AVR8) 
 248                                 if (GCC_IS_COMPILE_CONST(Milliseconds
)) 
 250                                         _delay_ms(Milliseconds
); 
 254                                         while (Milliseconds
--) 
 257                                 #elif (ARCH == ARCH_UC3) 
 258                                 while (Milliseconds
--) 
 260                                         __builtin_mtsr(AVR32_COUNT
, 0); 
 261                                         while ((uint32_t)__builtin_mfsr(AVR32_COUNT
) < (F_CPU 
/ 1000)); 
 263                                 #elif (ARCH == ARCH_XMEGA) 
 264                                 if (GCC_IS_COMPILE_CONST(Milliseconds
)) 
 266                                         _delay_ms(Milliseconds
); 
 270                                         while (Milliseconds
--) 
 276                         /** Retrieves a mask which contains the current state of the global interrupts for the device. This 
 277                          *  value can be stored before altering the global interrupt enable state, before restoring the 
 278                          *  flag(s) back to their previous values after a critical section using \ref SetGlobalInterruptMask(). 
 280                          *  \ingroup Group_GlobalInt 
 282                          *  \return  Mask containing the current Global Interrupt Enable Mask bit(s). 
 284                         static inline uint_reg_t 
GetGlobalInterruptMask(void) ATTR_ALWAYS_INLINE ATTR_WARN_UNUSED_RESULT
; 
 285                         static inline uint_reg_t 
GetGlobalInterruptMask(void) 
 287                                 GCC_MEMORY_BARRIER(); 
 289                                 #if (ARCH == ARCH_AVR8) 
 291                                 #elif (ARCH == ARCH_UC3) 
 292                                 return __builtin_mfsr(AVR32_SR
); 
 293                                 #elif (ARCH == ARCH_XMEGA) 
 298                         /** Sets the global interrupt enable state of the microcontroller to the mask passed into the function. 
 299                          *  This can be combined with \ref GetGlobalInterruptMask() to save and restore the Global Interrupt Enable 
 300                          *  Mask bit(s) of the device after a critical section has completed. 
 302                          *  \ingroup Group_GlobalInt 
 304                          *  \param[in] GlobalIntState  Global Interrupt Enable Mask value to use 
 306                         static inline void SetGlobalInterruptMask(const uint_reg_t GlobalIntState
) ATTR_ALWAYS_INLINE
; 
 307                         static inline void SetGlobalInterruptMask(const uint_reg_t GlobalIntState
) 
 309                                 GCC_MEMORY_BARRIER(); 
 311                                 #if (ARCH == ARCH_AVR8) 
 312                                 SREG 
= GlobalIntState
; 
 313                                 #elif (ARCH == ARCH_UC3) 
 314                                 if (GlobalIntState 
& AVR32_SR_GM
) 
 315                                   __builtin_ssrf(AVR32_SR_GM_OFFSET
); 
 317                                   __builtin_csrf(AVR32_SR_GM_OFFSET
); 
 318                                 #elif (ARCH == ARCH_XMEGA) 
 319                                 SREG 
= GlobalIntState
; 
 322                                 GCC_MEMORY_BARRIER(); 
 325                         /** Enables global interrupt handling for the device, allowing interrupts to be handled. 
 327                          *  \ingroup Group_GlobalInt 
 329                         static inline void GlobalInterruptEnable(void) ATTR_ALWAYS_INLINE
; 
 330                         static inline void GlobalInterruptEnable(void) 
 332                                 GCC_MEMORY_BARRIER(); 
 334                                 #if (ARCH == ARCH_AVR8) 
 336                                 #elif (ARCH == ARCH_UC3) 
 337                                 __builtin_csrf(AVR32_SR_GM_OFFSET
); 
 338                                 #elif (ARCH == ARCH_XMEGA) 
 342                                 GCC_MEMORY_BARRIER(); 
 345                         /** Disabled global interrupt handling for the device, preventing interrupts from being handled. 
 347                          *  \ingroup Group_GlobalInt 
 349                         static inline void GlobalInterruptDisable(void) ATTR_ALWAYS_INLINE
; 
 350                         static inline void GlobalInterruptDisable(void) 
 352                                 GCC_MEMORY_BARRIER(); 
 354                                 #if (ARCH == ARCH_AVR8) 
 356                                 #elif (ARCH == ARCH_UC3) 
 357                                 __builtin_ssrf(AVR32_SR_GM_OFFSET
); 
 358                                 #elif (ARCH == ARCH_XMEGA) 
 362                                 GCC_MEMORY_BARRIER(); 
 365         /* Disable C linkage for C++ Compilers: */ 
 366                 #if defined(__cplusplus)