summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2021-07-20 16:49:57 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2021-07-26 09:17:42 +0200
commit8f8811cc14a7285b1ba9d47b62f0642aabd43a9b (patch)
tree60e0ec7a4b41230de0274bb671f90feb8f65baea
parent0f3fd3ee4ff8282d23ab734a27a26606708bbdcc (diff)
bsp/leon3: Move leon3_power_down_loop()
-rw-r--r--bsps/sparc/leon3/include/bsp/leon3.h6
-rw-r--r--bsps/sparc/leon3/include/leon.h2
-rw-r--r--bsps/sparc/leon3/start/bsp_fatal_halt.c2
-rw-r--r--bsps/sparc/leon3/start/bspclean.c3
4 files changed, 8 insertions, 5 deletions
diff --git a/bsps/sparc/leon3/include/bsp/leon3.h b/bsps/sparc/leon3/include/bsp/leon3.h
index cc48226c47..d555485b9d 100644
--- a/bsps/sparc/leon3/include/bsp/leon3.h
+++ b/bsps/sparc/leon3/include/bsp/leon3.h
@@ -67,6 +67,12 @@ extern "C" {
extern uint32_t LEON3_Cpu_Index;
/**
+ * @brief Sets %asr19 to zero to enter the power-down mode of the processor in
+ * an infinite loop.
+ */
+RTEMS_NO_RETURN void leon3_power_down_loop( void );
+
+/**
* @brief This constant represents the flush instruction cache flag of the LEON
* cache control register.
*/
diff --git a/bsps/sparc/leon3/include/leon.h b/bsps/sparc/leon3/include/leon.h
index 49d1ff8676..5f26ac3ea8 100644
--- a/bsps/sparc/leon3/include/leon.h
+++ b/bsps/sparc/leon3/include/leon.h
@@ -336,8 +336,6 @@ extern int leon3_timer_core_index;
*/
extern unsigned int leon3_timer_prescaler;
-RTEMS_NO_RETURN void leon3_power_down_loop(void);
-
#endif /* !ASM */
#ifdef __cplusplus
diff --git a/bsps/sparc/leon3/start/bsp_fatal_halt.c b/bsps/sparc/leon3/start/bsp_fatal_halt.c
index fa907a3363..c6159227a2 100644
--- a/bsps/sparc/leon3/start/bsp_fatal_halt.c
+++ b/bsps/sparc/leon3/start/bsp_fatal_halt.c
@@ -12,7 +12,7 @@
*/
#include <bsp.h>
-#include <leon.h>
+#include <bsp/leon3.h>
#ifdef BSP_POWER_DOWN_AT_FATAL_HALT
diff --git a/bsps/sparc/leon3/start/bspclean.c b/bsps/sparc/leon3/start/bspclean.c
index 0e109140df..9f86b18d51 100644
--- a/bsps/sparc/leon3/start/bspclean.c
+++ b/bsps/sparc/leon3/start/bspclean.c
@@ -21,10 +21,9 @@
#include <bsp.h>
#include <bsp/bootcard.h>
+#include <bsp/leon3.h>
#include <rtems/score/smpimpl.h>
-#include <leon.h>
-
void bsp_fatal_extension(
rtems_fatal_source source,
bool always_set_to_false,