4 * Copyright 2004, 2005 Develer S.r.l. (http://www.develer.com/)
5 * Copyright 2004 Giovanni Bajo
6 * This file is part of DevLib - See README.devlib for information.
9 * \brief CPU detection through special preprocessor macros
15 *#* Revision 1.3 2006/02/10 12:37:37 bernie
16 *#* Add support for ARM on IAR.
18 *#* Revision 1.2 2005/06/14 06:15:10 bernie
19 *#* Add X86_64 support.
21 *#* Revision 1.1 2005/04/11 19:04:13 bernie
22 *#* Move top-level headers to cfg/ subdir.
24 *#* Revision 1.4 2005/02/16 20:33:24 bernie
25 *#* Preliminary PPC support.
27 *#* Revision 1.3 2004/12/31 17:39:26 bernie
28 *#* Use C89 comments only.
30 *#* Revision 1.2 2004/08/25 14:12:08 rasky
31 *#* Aggiornato il comment block dei log RCS
33 *#* Revision 1.1 2004/07/30 17:14:49 rasky
34 *#* File sfuggito al commit precedente (nuova gestione unificata del detect della CPU
36 *#* Revision 1.2 2004/07/30 10:31:07 rasky
37 *#* Aggiunto detect per ATmega128
43 #if defined(__arm__) /* GCC */ \
44 || defined(__ARM4TM__) /* IAR: defined for all cores >= 4tm */
51 #if (defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)) \
52 && !defined(__ARM4TM__) /* IAR: if not ARM assume I196 */
59 #if defined(__i386__) /* GCC */ \
60 || (defined(_M_IX86) && !defined(_WIN64)) /* MSVC */
65 #elif defined(__x86_64__) /* GCC */ \
66 || (defined(_M_IX86) && defined(_WIN64)) /* MSVC */
77 #if defined (_ARCH_PPC) || defined(_ARCH_PPC64)
80 #if defined(_ARCH_PPC)
85 #if defined(_ARCH_PPC64)
96 #if defined(__m56800E__) || defined(__m56800__)
103 #if defined (__AVR__)
107 #if defined(__AVR_ATmega64__)
108 #define CPU_AVR_ATMEGA64 1
110 #define CPU_AVR_ATMEGA64 0
113 #if defined(__AVR_ATmega103__)
114 #define CPU_AVR_ATMEGA103 1
116 #define CPU_AVR_ATMEGA103 0
119 #if defined(__AVR_ATmega128__)
120 #define CPU_AVR_ATMEGA128 1
122 #define CPU_AVR_ATMEGA128 0
125 #if defined(__AVR_ATmega8__)
126 #define CPU_AVR_ATMEGA8 1
128 #define CPU_AVR_ATMEGA8 0
132 #define CPU_AVR_ATMEGA8 0
133 #define CPU_AVR_ATMEGA64 0
134 #define CPU_AVR_ATMEGA103 0
135 #define CPU_AVR_ATMEGA128 0
139 /* Self-check for the detection: only one CPU must be detected */
140 #if CPU_ARM + CPU_I196 + CPU_X86 + CPU_PPC + CPU_DSP56K + CPU_AVR == 0
142 #elif !defined(CPU_ID)
143 #error CPU_ID not defined
144 #elif CPU_ARM + CPU_I196 + CPU_X86 + CPU_PPC + CPU_DSP56K + CPU_AVR != 1
145 #error Internal CPU configuration error
149 #endif /* CPU_DETECT_H */