Changeset 3896974 in mainline for kernel/arch/arm32/include/asm.h


Ignore:
Timestamp:
2012-09-19T21:23:30Z (12 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
5711f6e
Parents:
8316547f
Message:

arm32: Add power saving sleep for gta02

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/arm32/include/asm.h

    r8316547f r3896974  
    4646 *
    4747 * ARMv7 introduced wait for event and wait for interrupt (wfe/wfi).
     48 * ARM920T has custom coprocessor action to do the same. See ARM920T Technical
     49 * Reference Manual ch 4.9 p. 4-23 (103 in the PDF)
    4850 */
    4951NO_TRACE static inline void cpu_sleep(void)
     
    5153#ifdef PROCESSOR_armv7_a
    5254        asm volatile ( "wfe" :: );
     55#elif defined(MACHINE_gta02)
     56        asm volatile ( "mcr p15,0,R0,c7,c0,4" :: );
    5357#endif
    5458}
Note: See TracChangeset for help on using the changeset viewer.