Changeset d9bd5cd6 in rtems
- Timestamp:
- May 22, 2013, 7:54:34 AM (8 years ago)
- Branches:
- 4.11, 5, master
- Children:
- cab410f
- Parents:
- 18e1e5b
- git-author:
- Sebastian Huber <sebastian.huber@…> (05/22/13 07:54:34)
- git-committer:
- Sebastian Huber <sebastian.huber@…> (05/27/13 10:49:13)
- Location:
- cpukit/score/cpu/arm
- Files:
-
- 3 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
cpukit/score/cpu/arm/Makefile.am
r18e1e5b rd9bd5cd6 26 26 libscorecpu_a_SOURCES += arm-exception-default.c 27 27 libscorecpu_a_SOURCES += armv4-exception-default.S 28 libscorecpu_a_SOURCES += armv7-thread-idle.c 28 29 libscorecpu_a_SOURCES += armv7m-context-initialize.c 29 30 libscorecpu_a_SOURCES += armv7m-context-restore.c … … 42 43 libscorecpu_a_SOURCES += armv7m-isr-vector-install.c 43 44 libscorecpu_a_SOURCES += armv7m-multitasking-start-stop.c 44 libscorecpu_a_SOURCES += armv7m-thread-idle.c45 45 46 46 include $(srcdir)/preinstall.am -
cpukit/score/cpu/arm/armv7-thread-idle.c
r18e1e5b rd9bd5cd6 25 25 #include <rtems/score/cpu.h> 26 26 27 #ifdef ARM_MULTILIB_ ARCH_V7M27 #ifdef ARM_MULTILIB_HAS_WFI 28 28 29 29 void *_CPU_Thread_Idle_body( uintptr_t ignored ) … … 34 34 } 35 35 36 #endif /* ARM_MULTILIB_ ARCH_V7M*/36 #endif /* ARM_MULTILIB_HAS_WFI */ -
cpukit/score/cpu/arm/rtems/score/arm.h
r18e1e5b rd9bd5cd6 38 38 #endif 39 39 40 #if defined(__ARM_ARCH_7A__) \ 41 || defined(__ARM_ARCH_7R__) \ 42 || defined(__ARM_ARCH_7M__) 43 #define ARM_MULTILIB_HAS_WFI 44 #endif 45 40 46 #if defined(__ARM_NEON__) 41 47 #define ARM_MULTILIB_VFP_D32 -
cpukit/score/cpu/arm/rtems/score/cpu.h
r18e1e5b rd9bd5cd6 139 139 #define CPU_USE_DEFERRED_FP_SWITCH FALSE 140 140 141 #if defined(ARM_MULTILIB_ ARCH_V7M)141 #if defined(ARM_MULTILIB_HAS_WFI) 142 142 #define CPU_PROVIDES_IDLE_THREAD_BODY TRUE 143 143 #else
Note: See TracChangeset
for help on using the changeset viewer.