summaryrefslogtreecommitdiffstats
path: root/bsps/arm/atsam/start/restart.c
blob: 8799df32e480d9f6d1e9b6ff6fd1498bb0339f96 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/*
 * Copyright (c) 2017 embedded brains GmbH.  All rights reserved.
 *
 * 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();
}