summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/powerpc/shared/include/start.h
blob: ab718a87ee7f6d6350af14a89116b0206bf91a71 (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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/**
 * @file
 *
 * @ingroup powerpc_start
 *
 * @brief System low level start.
 */

/*
 * Copyright (c) 2010 embedded brains GmbH.  All rights reserved.
 *
 *  embedded brains GmbH
 *  Obere Lagerstr. 30
 *  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.
 */

#ifndef LIBBSP_POWERPC_SHARED_START_H
#define LIBBSP_POWERPC_SHARED_START_H

#include <stddef.h>

#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */

/**
 * @defgroup powerpc_start PowerPC System Start
 *
 * @ingroup powerpc_shared
 *
 * @brief PowerPC low level start.
 *
 * @{
 */

#define BSP_START_TEXT_SECTION __attribute__((section(".bsp_start_text")))

#define BSP_START_DATA_SECTION __attribute__((section(".bsp_start_data")))

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

/**
 * Zeros @a byte_count bytes starting at @a begin.
 *
 * It wraps around in case of an address overflow.  The stack will not be used.
 * The code is position independent.  It uses the data cache block zero
 * instruction in case the data cache is enabled.  There are no alignment
 * constains for @a begin and @a byte_count.
 *
 * @see bsp_start_zero_begin, bsp_start_zero_end, and bsp_start_zero_size.
 */
void BSP_START_TEXT_SECTION bsp_start_zero(void *begin, size_t byte_count);

/**
 * @brief Symbol which equals the bsp_start_zero() code begin.
 */
extern char bsp_start_zero_begin [];

/**
 * @brief Symbol which equals the bsp_start_zero() code end.
 */
extern char bsp_start_zero_end [];

/**
 * @brief Symbol which equals the bsp_start_zero() code size.
 */
extern char bsp_start_zero_size [];

/** @} */

#ifdef __cplusplus
}
#endif /* __cplusplus */

#endif /* LIBBSP_POWERPC_SHARED_START_H */