summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/arm/shared/include/start.h
blob: 5326365ff01383dc70ff5b4bcabac2d8016735c4 (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/**
 * @file
 *
 * @brief Start entry functions.
 */

/*
 * Copyright (c) 2008
 * Embedded Brains GmbH
 * Obere Lagerstr. 30
 * D-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.com/license/LICENSE.
 */

#ifndef LIBBSP_ARM_SHARED_START_H
#define LIBBSP_ARM_SHARED_START_H

#ifndef ASM

  /**
   * @brief System start entry.
   */
  void start( void);

  /**
   * @brief Start entry hook 0.
   *
   * This hook will be called from the start entry code after all modes and
   * stack pointers are initialized but before the copying of the exception
   * vectors.
   */
  void bsp_start_hook_0( void);

  /**
   * @brief Start entry hook 1.
   *
   * This hook will be called from the start entry code after copying of the
   * exception vectors but before the call to boot card.
   */
  void bsp_start_hook_1( void);

#else

  .extern bsp_start_hook_0

  .extern bsp_start_hook_1

#endif

#endif /* LIBBSP_ARM_SHARED_START_H */