From: asterix Date: Wed, 16 Jan 2008 15:49:04 +0000 (+0000) Subject: Add define for cpu idle. X-Git-Tag: 1.0.0~195 X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;h=0d5973b823b256204c2588b46891bb5231352e6f;p=bertos.git Add define for cpu idle. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@1047 38d2e660-2303-0410-9eaa-f027e97ec537 --- diff --git a/cpu/attr.h b/cpu/attr.h index 678eac68..497f8997 100644 --- a/cpu/attr.h +++ b/cpu/attr.h @@ -256,6 +256,30 @@ CPU_PUSH_WORD((sp), funcaddr>>8); \ } while (0) + /* + * If the kernel is in idle-spinning, the processor execute: + * + * IRQ_ENABLE; + * CPU_IDLE; + * IRQ_DISABLE; + * + * IRQ_ENABLE is translated in asm as "sei" and IRQ_DISABLE as "cli". + * We could define CPU_IDLE to expand to none, so the resulting + * asm code would be: + * + * sei; + * cli; + * + * But Atmel datasheet states: + * "When using the SEI instruction to enable interrupts, + * the instruction following SEI will be executed *before* + * any pending interrupts", so "cli" is executed before any + * pending interrupt with the result that IRQs will *NOT* + * be enabled! + * To ensure that IRQ will run a NOP is required. + */ + #define CPU_IDLE NOP + #else #define CPU_PUSH_CALL_CONTEXT(sp, func) \ CPU_PUSH_WORD((sp), (cpustack_t)(func))