@@ -53,6 +53,53 @@ mode .req r6
beq 1b
.endm
+/*
+ * Put the processor to enter the WFI state
+ */
+ .macro _do_wfi
+
+#if defined(CONFIG_CPU_V7)
+ /*
+ * Execute an ISB instruction to flush the pipeline to ensure
+ * that all of operations have beem completed.
+ */
+ isb
+
+ dsb
+ dmb
+
+ /* Disable the processor's clock */
+ mov tmp1, #AT91_PMC_PCK
+ str tmp1, [pmc, #AT91_PMC_SCDR]
+
+ wfi
+
+ /*
+ * CPU can speculatively prefetch the instructions
+ * so add NOPs after WFI. Sixteen NOPs as Cortex-A5 pipeline.
+ */
+ nop
+ nop
+ nop
+ nop
+ nop
+ nop
+ nop
+ nop
+ nop
+ nop
+ nop
+ nop
+ nop
+ nop
+ nop
+ nop
+#else
+ mcr p15, 0, tmp1, c7, c0, 4
+#endif
+
+ .endm
+
.text
/*
@@ -181,7 +228,7 @@ sdr_sr_done:
skip_disable_main_clock:
/* Wait for interrupt */
- mcr p15, 0, tmp1, c7, c0, 4
+ _do_wfi
tst mode, #AT91_PM_SLOW_CLOCK
beq skip_enable_main_clock
Add the WFI support to put the cpu to the sleep state. In the meanwhile, disable the processor's clock. Signed-off-by: Wenyou Yang <wenyou.yang@atmel.com> --- arch/arm/mach-at91/pm_suspend.S | 49 ++++++++++++++++++++++++++++++++++++++- 1 file changed, 48 insertions(+), 1 deletion(-)