X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=cfg%2Fcpu.h;h=8a9457290f9492740a0435dcb96ff681a85dbd36;hb=7f390830190a03757e07e4ee8654021cc0adeee6;hp=e7bcc7ab1caa45a366e5cf958cfbd6e9e6078b8e;hpb=af9c555446161016fdd76c1cdff96ce76bb6cba2;p=bertos.git diff --git a/cfg/cpu.h b/cfg/cpu.h old mode 100755 new mode 100644 index e7bcc7ab..8a945729 --- a/cfg/cpu.h +++ b/cfg/cpu.h @@ -1,63 +1,63 @@ -/*! +/** * \file * * * \brief CPU-specific definitions * - * \version $Id$ - * * \author Giovanni Bajo * \author Bernardo Innocenti * \author Stefano Fedrigo */ - -/*#* - *#* $Log$ - *#* Revision 1.2 2005/04/11 19:10:27 bernie - *#* Include top-level headers from cfg/ subdir. - *#* - *#* Revision 1.1 2005/04/11 19:04:13 bernie - *#* Move top-level headers to cfg/ subdir. - *#* - *#* Revision 1.30 2005/03/15 00:20:09 bernie - *#* BREAKPOINT, IRQ_RUNNING(), IRQ_GETSTATE(): New DSP56K macros. - *#* - *#* Revision 1.29 2005/02/16 20:33:24 bernie - *#* Preliminary PPC support. - *#* - *#* Revision 1.28 2004/12/31 17:39:41 bernie - *#* Fix documentation. - *#* - *#* Revision 1.27 2004/12/31 17:02:47 bernie - *#* IRQ_SAVE_DISABLE(), IRQ_RESTORE(): Add null stubs for x86. - *#* - *#* Revision 1.26 2004/12/13 12:08:12 bernie - *#* DISABLE_IRQSAVE, ENABLE_IRQRESTORE, DISABLE_INTS, ENABLE_INTS: Remove obsolete macros. - *#* - *#* Revision 1.25 2004/12/08 08:31:02 bernie - *#* CPU_HARVARD: Define to 1 for AVR and DSP56K. - *#*/ #ifndef DEVLIB_CPU_H #define DEVLIB_CPU_H #include /* for uintXX_t */ +#include /* ARCH_EMUL */ -/*! +/** * \name Macros for determining CPU endianness. * \{ */ #define CPU_BIG_ENDIAN 0x1234 -#define CPU_LITTLE_ENDIAN 0x3412 +#define CPU_LITTLE_ENDIAN 0x3412 /* Look twice, pal. This is not a bug. */ /*\}*/ -/*! Macro to include cpu-specific versions of the headers. */ +/** Macro to include cpu-specific versions of the headers. */ #define CPU_HEADER(module) PP_STRINGIZE(PP_CAT3(module, _, CPU_ID).h) +/** Macro to include cpu-specific versions of implementation files. */ +#define CPU_CSOURCE(module) PP_STRINGIZE(PP_CAT3(module, _, CPU_ID).c) + #if CPU_I196 @@ -78,23 +78,149 @@ #elif CPU_X86 #define NOP asm volatile ("nop") - #define IRQ_DISABLE /* nothing */ - #define IRQ_ENABLE /* nothing */ - #define IRQ_SAVE_DISABLE(x) /* nothing */ - #define IRQ_RESTORE(x) /* nothing */ - typedef uint32_t cpuflags_t; // FIXME - typedef uint32_t cpustack_t; + /* Get IRQ_* definitions from the hosting environment. */ + #include + #if OS_EMBEDDED + #define IRQ_DISABLE FIXME + #define IRQ_ENABLE FIXME + #define IRQ_SAVE_DISABLE(x) FIXME + #define IRQ_RESTORE(x) FIXME + typedef uint32_t cpuflags_t; // FIXME + #endif /* OS_EMBEDDED */ + - #define CPU_REG_BITS 32 #define CPU_REGS_CNT 7 + #define CPU_SAVED_REGS_CNT 7 #define CPU_STACK_GROWS_UPWARD 0 #define CPU_SP_ON_EMPTY_SLOT 0 #define CPU_BYTE_ORDER CPU_LITTLE_ENDIAN #define CPU_HARVARD 0 + #if CPU_X86_64 + typedef uint64_t cpustack_t; + #define CPU_REG_BITS 64 + + #ifdef __WIN64__ + /* WIN64 is an IL32-P64 weirdo. */ + #define SIZEOF_LONG 4 + #endif + #else + typedef uint32_t cpustack_t; + #define CPU_REG_BITS 32 + #endif + +#elif CPU_ARM + + typedef uint32_t cpuflags_t; + typedef uint32_t cpustack_t; + + /* Register counts include SREG too */ + #define CPU_REG_BITS 32 + #define CPU_REGS_CNT 16 + #define CPU_SAVED_REGS_CNT FIXME + #define CPU_STACK_GROWS_UPWARD 0 + #define CPU_SP_ON_EMPTY_SLOT 0 + #define CPU_BYTE_ORDER (__BIG_ENDIAN__ ? CPU_BIG_ENDIAN : CPU_LITTLE_ENDIAN) + #define CPU_HARVARD 0 + + #ifdef __IAR_SYSTEMS_ICC__ + + #include + + #if __CPU_MODE__ == 1 /* Thumb */ + /* Use stubs */ + extern cpuflags_t get_CPSR(void); + extern void set_CPSR(cpuflags_t flags); + #else + #define get_CPSR __get_CPSR + #define set_CPSR __set_CPSR + #endif + + #define NOP __no_operation() + #define IRQ_DISABLE __disable_interrupt() + #define IRQ_ENABLE __enable_interrupt() + + #define IRQ_SAVE_DISABLE(x) \ + do { \ + (x) = get_CPSR(); \ + __disable_interrupt(); \ + } while (0) + + #define IRQ_RESTORE(x) \ + do { \ + set_CPSR(x); \ + } while (0) + + #define IRQ_GETSTATE() \ + ((bool)(get_CPSR() & 0xb0)) + + #define BREAKPOINT /* asm("bkpt 0") DOES NOT WORK */ + + #else /* !__IAR_SYSTEMS_ICC__ */ + + #warning "IRQ_ macros need testing!" + #warning "Test now or die :-)" + + #define NOP asm volatile ("mov r0,r0" ::) + + #define IRQ_DISABLE \ + do { \ + asm volatile ( \ + "mrs r0, cpsr\n\t" \ + "orr r0, r0, #0xc0\n\t" \ + "msr cpsr_c, r0" \ + ::: "r0" \ + ); \ + } while (0) + + #define IRQ_ENABLE \ + do { \ + asm volatile ( \ + "mrs r0, cpsr\n\t" \ + "bic r0, r0, #0xc0\n\t" \ + "msr cpsr_c, r0" \ + ::: "r0" \ + ); \ + } while (0) + + #define IRQ_SAVE_DISABLE(x) \ + do { \ + asm volatile ( \ + "mrs %0, cpsr\n\t" \ + "orr r0, %0, #0xc0\n\t" \ + "msr cpsr_c, r0" \ + : "=r" (x) \ + : /* no inputs */ \ + : "r0" \ + ); \ + } while (0) + + #define IRQ_RESTORE(x) \ + do { \ + asm volatile ( \ + "msr cpsr_c, %0" \ + : /* no outputs */ \ + : "r" (x) \ + ); \ + } while (0) + + #define IRQ_GETSTATE() \ + ({ \ + uint32_t sreg; \ + asm volatile ( \ + "mrs %0, cpsr\n\t" \ + : "=r" (sreg) \ + : /* no inputs */ \ + ); \ + !((sreg & 0xc0) == 0xc0); \ + }) + + #endif /* !__IAR_SYSTEMS_ICC_ */ + #elif CPU_PPC #define NOP asm volatile ("nop" ::) + #define IRQ_DISABLE FIXME #define IRQ_ENABLE FIXME #define IRQ_SAVE_DISABLE(x) FIXME @@ -140,8 +266,6 @@ } #define IRQ_GETSTATE() irq_getstate() - - typedef uint16_t cpuflags_t; typedef unsigned int cpustack_t; @@ -204,7 +328,7 @@ #define CPU_BYTE_ORDER CPU_LITTLE_ENDIAN #define CPU_HARVARD 1 - /*! + /** * Initialization value for registers in stack frame. * The register index is not directly corrispondent to CPU * register numbers. Index 0 is the SREG register: the initial @@ -212,9 +336,11 @@ */ #define CPU_REG_INIT_VALUE(reg) (reg == 0 ? 0x80 : 0) +#else + #error No CPU_... defined. #endif -/*! +/** * Execute \a CODE atomically with respect to interrupts. * * \see IRQ_SAVE_DISABLE IRQ_RESTORE @@ -228,7 +354,7 @@ } while (0) -//! Default for macro not defined in the right arch section +/// Default for macro not defined in the right arch section #ifndef CPU_REG_INIT_VALUE #define CPU_REG_INIT_VALUE(reg) 0 #endif @@ -304,11 +430,11 @@ #else #define CPU_PUSH_CALL_CONTEXT(sp, func) \ - CPU_PUSH_WORD((sp), (func)) + CPU_PUSH_WORD((sp), (cpustack_t)(func)) #endif -/*! +/** * \name Default type sizes. * * These defaults are reasonable for most 16/32bit machines. @@ -350,7 +476,13 @@ #endif #ifndef SIZEOF_PTR -#define SIZEOF_PTR SIZEOF_INT +#if CPU_REG_BITS < 32 + #define SIZEOF_PTR 2 +#elif CPU_REG_BITS == 32 + #define SIZEOF_PTR 4 +#else /* CPU_REG_BITS > 32 */ + #define SIZEOF_PTR 8 +#endif #endif #ifndef CPU_BITS_PER_CHAR @@ -384,9 +516,19 @@ STATIC_ASSERT(sizeof(char) == SIZEOF_CHAR); STATIC_ASSERT(sizeof(short) == SIZEOF_SHORT); STATIC_ASSERT(sizeof(long) == SIZEOF_LONG); STATIC_ASSERT(sizeof(int) == SIZEOF_INT); +STATIC_ASSERT(sizeof(void *) == SIZEOF_PTR); +STATIC_ASSERT(sizeof(int8_t) * CPU_BITS_PER_CHAR == 8); +STATIC_ASSERT(sizeof(uint8_t) * CPU_BITS_PER_CHAR == 8); +STATIC_ASSERT(sizeof(int16_t) * CPU_BITS_PER_CHAR == 16); +STATIC_ASSERT(sizeof(uint16_t) * CPU_BITS_PER_CHAR == 16); +STATIC_ASSERT(sizeof(int32_t) * CPU_BITS_PER_CHAR == 32); +STATIC_ASSERT(sizeof(uint32_t) * CPU_BITS_PER_CHAR == 32); +#ifdef __HAS_INT64_T__ +STATIC_ASSERT(sizeof(int64_t) * CPU_BITS_PER_CHAR == 64); +STATIC_ASSERT(sizeof(uint64_t) * CPU_BITS_PER_CHAR == 64); +#endif - -/*! +/** * \def CPU_IDLE * * \brief Invoked by the scheduler to stop the CPU when idle. @@ -399,15 +541,12 @@ STATIC_ASSERT(sizeof(int) == SIZEOF_INT); #if defined(ARCH_EMUL) && (ARCH & ARCH_EMUL) /* This emulator hook should yield the CPU to the host. */ EXTERN_C_BEGIN - void SchedulerIdle(void); + void emul_idle(void); EXTERN_C_END - #define CPU_IDLE SchedulerIdle() + #define CPU_IDLE emul_idle() #else /* !ARCH_EMUL */ #define CPU_IDLE do { /* nothing */ } while (0) #endif /* !ARCH_EMUL */ #endif /* !CPU_IDLE */ -/* OBSOLETE */ -#define SCHEDULER_IDLE CPU_IDLE - #endif /* DEVLIB_CPU_H */