summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/powerpc/gen83xx/startup/bspstart.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2009-08-26 13:31:40 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2009-08-26 13:31:40 +0000
commitfc472c9796852e8ab3b097b13ef5bf4f2aa82a6e (patch)
treef468cb989d58e7ace9e444d3e0236730ac0ea66c /c/src/lib/libbsp/powerpc/gen83xx/startup/bspstart.c
parent2009-08-26 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-fc472c9796852e8ab3b097b13ef5bf4f2aa82a6e.tar.bz2
2009-08-26 Joel Sherrill <joel.sherrill@oarcorp.com>
* Makefile.am, startup/bspstart.c: Rename BSP specific idle thread to bsp_idle_thread and split into its own file. * startup/bspidle.c: New file.
Diffstat (limited to 'c/src/lib/libbsp/powerpc/gen83xx/startup/bspstart.c')
-rw-r--r--c/src/lib/libbsp/powerpc/gen83xx/startup/bspstart.c25
1 files changed, 0 insertions, 25 deletions
diff --git a/c/src/lib/libbsp/powerpc/gen83xx/startup/bspstart.c b/c/src/lib/libbsp/powerpc/gen83xx/startup/bspstart.c
index 2764b3543f..6cfa7e2853 100644
--- a/c/src/lib/libbsp/powerpc/gen83xx/startup/bspstart.c
+++ b/c/src/lib/libbsp/powerpc/gen83xx/startup/bspstart.c
@@ -152,28 +152,3 @@ void bsp_start( void)
printk("Exit from bspstart\n");
#endif
}
-
-/**
- * @brief Idle thread body.
- *
- * Replaces the one in c/src/exec/score/src/threadidlebody.c
- * The MSR[POW] bit is set to put the CPU into the low power mode
- * defined in HID0. HID0 is set during starup in start.S.
- */
-void *_Thread_Idle_body( uintptr_t ignored )
-{
-
- while (1) {
- asm volatile (
- "mfmsr 3;"
- "oris 3, 3, 4;"
- "sync;"
- "mtmsr 3;"
- "isync;"
- "ori 3, 3, 0;"
- "ori 3, 3, 0"
- );
- }
-
- return NULL;
-}