forked from Imagelibrary/rtems
bsp/atsam: Add bsp_restart.
This commit is contained in:
committed by
Sebastian Huber
parent
16db540a59
commit
2ae0acbb71
@@ -400,6 +400,7 @@ libbsp_a_SOURCES += startup/pin-config.c
|
||||
libbsp_a_SOURCES += startup/power.c
|
||||
libbsp_a_SOURCES += startup/power-rtc.c
|
||||
libbsp_a_SOURCES += startup/power-clock.c
|
||||
libbsp_a_SOURCES += startup/restart.c
|
||||
libbsp_a_SOURCES += startup/sdram-config.c
|
||||
|
||||
# IRQ
|
||||
|
||||
@@ -91,6 +91,8 @@ void atsam_rtc_get_time(rtems_time_of_day *tod);
|
||||
|
||||
|
||||
|
||||
void bsp_restart( const void *const addr );
|
||||
|
||||
/** @} */
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
||||
39
c/src/lib/libbsp/arm/atsam/startup/restart.c
Normal file
39
c/src/lib/libbsp/arm/atsam/startup/restart.c
Normal file
@@ -0,0 +1,39 @@
|
||||
/*
|
||||
* Copyright (c) 2017 embedded brains GmbH. All rights reserved.
|
||||
*
|
||||
* embedded brains GmbH
|
||||
* Dornierstr. 4
|
||||
* 82178 Puchheim
|
||||
* Germany
|
||||
* <rtems@embedded-brains.de>
|
||||
*
|
||||
* The license and distribution terms for this file may be
|
||||
* found in the file LICENSE in this distribution or at
|
||||
* http://www.rtems.org/license/LICENSE.
|
||||
*/
|
||||
|
||||
#include <rtems.h>
|
||||
#include <rtems/score/armv7m.h>
|
||||
#include <bsp.h>
|
||||
|
||||
static void ARMV7M_Systick_cleanup(void)
|
||||
{
|
||||
volatile ARMV7M_Systick *systick = _ARMV7M_Systick;
|
||||
systick->csr = 0;
|
||||
}
|
||||
|
||||
void bsp_restart( const void *const addr )
|
||||
{
|
||||
rtems_interrupt_level level;
|
||||
void(*start)(void) = (void(*)(void))(addr);
|
||||
|
||||
rtems_interrupt_disable(level);
|
||||
(void)level;
|
||||
rtems_cache_disable_instruction();
|
||||
rtems_cache_disable_data();
|
||||
rtems_cache_invalidate_entire_instruction();
|
||||
rtems_cache_invalidate_entire_data();
|
||||
ARMV7M_Systick_cleanup();
|
||||
|
||||
start();
|
||||
}
|
||||
Reference in New Issue
Block a user