source: rtems/bsps/bfin/eZKit533/include/bsp.h @ 2afb22b

5
Last change on this file since 2afb22b was 2afb22b, checked in by Chris Johns <chrisj@…>, on 12/23/17 at 07:18:56

Remove make preinstall

A speciality of the RTEMS build system was the make preinstall step. It
copied header files from arbitrary locations into the build tree. The
header files were included via the -Bsome/build/tree/path GCC command
line option.

This has at least seven problems:

  • The make preinstall step itself needs time and disk space.
  • Errors in header files show up in the build tree copy. This makes it hard for editors to open the right file to fix the error.
  • There is no clear relationship between source and build tree header files. This makes an audit of the build process difficult.
  • The visibility of all header files in the build tree makes it difficult to enforce API barriers. For example it is discouraged to use BSP-specifics in the cpukit.
  • An introduction of a new build system is difficult.
  • Include paths specified by the -B option are system headers. This may suppress warnings.
  • The parallel build had sporadic failures on some hosts.

This patch removes the make preinstall step. All installed header
files are moved to dedicated include directories in the source tree.
Let @RTEMS_CPU@ be the target architecture, e.g. arm, powerpc, sparc,
etc. Let @RTEMS_BSP_FAMILIY@ be a BSP family base directory, e.g.
erc32, imx, qoriq, etc.

The new cpukit include directories are:

  • cpukit/include
  • cpukit/score/cpu/@RTEMS_CPU@/include
  • cpukit/libnetworking

The new BSP include directories are:

  • bsps/include
  • bsps/@RTEMS_CPU@/include
  • bsps/@RTEMS_CPU@/@RTEMS_BSP_FAMILIY@/include

There are build tree include directories for generated files.

The include directory order favours the most general header file, e.g.
it is not possible to override general header files via the include path
order.

The "bootstrap -p" option was removed. The new "bootstrap -H" option
should be used to regenerate the "headers.am" files.

Update #3254.

  • Property mode set to 100644
File size: 3.3 KB
Line 
1/**
2 * @file
3 * @ingroup bfin_ezkit533
4 * @brief Global BSP definitions.
5 */
6
7/*  bsp.h
8 *
9 *  This include file contains all board IO definitions for eZKit533.
10 *
11 *  Copyright (c) 2006 by Atos Automacao Industrial Ltda.
12 *             written by Alain Schaefer <alain.schaefer@easc.ch>
13 *                    and Antonio Giovanini <antonio@atos.com.br>
14 *
15 *  The license and distribution terms for this file may be
16 *  found in the file LICENSE in this distribution or at
17 *  http://www.rtems.org/license/LICENSE.
18 */
19
20
21#ifndef LIBBSP_BFIN_EZKIT533_BSP_H
22#define LIBBSP_BFIN_EZKIT533_BSP_H
23
24#ifndef ASM
25
26#include <libcpu/bf533.h>
27
28#include <bspopts.h>
29#include <bsp/default-initial-extension.h>
30
31#include <rtems.h>
32#include <rtems/score/bfin.h>
33#include <rtems/bfin/bf533.h>
34
35#ifdef __cplusplus
36extern "C" {
37#endif
38
39/**
40 * @defgroup bfin_ezkit533 eZKit533 Support
41 * @ingroup bsp_bfin
42 * @brief eZKit533 Board Support Package
43 * @{
44 */
45
46/**
47 * @name PLL and clock setup values:
48 * @brief  PLL configuration for ezkit533
49 *
50 *  XTL   =  27 MHz
51 *  CLKIN =  13 MHz
52 *  VCO   = 391 MHz
53 *  CCLK  = 391 MHz
54 *  SCLK  = 130 MHz
55 *
56 * @{
57 *
58 */
59
60#define PLL_CSEL    0x0000      ///< @brief CCLK = VCO      */
61#define PLL_SSEL    0x0003      ///< @brief SCLK = CCLK/3   */
62#define PLL_MSEL    0x3A00      ///< @brief VCO = 29xCLKIN  */
63#define PLL_DF      0x0001      ///< @brief CLKIN = XTL/2   */
64
65#define CCLK        391000000   ///< @brief CORE CLOCK     */
66#define SCLK        130000000   ///< @brief SYSTEM CLOCK   */
67
68/** @} */
69
70/**
71 * @name UART setup values
72 * @{
73 */
74
75#define BAUDRATE    57600       ///< @brief Console Baudrate   */
76#define WORD_5BITS  0x00        ///< @brief 5 bits word        */
77#define WORD_6BITS  0x01        ///< @brief 6 bits word        */
78#define WORD_7BITS  0x02        ///< @brief 7 bits word        */
79#define WORD_8BITS  0x03        ///< @brief 8 bits word        */
80#define EVEN_PARITY 0x18        ///< @brief Enable EVEN parity */
81#define ODD_PARITY  0x08        ///< @brief Enable ODD parity  */
82#define TWO_STP_BIT 0x04        ///< @brief 2 stop bits        */
83
84/** @} */
85
86/**
87 * @name Ezkit flash ports
88 * @{
89 */
90
91#define FlashA_PortB_Dir  0x20270007L
92#define FlashA_PortB_Data 0x20270005L
93
94/** @} */
95
96/**
97 * @brief Blackfin environment memory map
98 */
99#define L1_DATA_SRAM_A 0xff800000L
100
101#define FIFOLENGTH 0x100
102
103/**
104 * @name Constants
105 * @{
106 */
107
108#define RAM_START 0
109#define RAM_END   0x100000
110
111/** @} */
112
113/**
114 * @name functions
115 * @{
116 */
117
118/**
119 * @brief Helper Function to use the EzKits LEDS.
120 * Can be used by the Application.
121 */
122void setLED (uint8_t value);
123
124/**
125 * @brief Helper Function to use the EzKits LEDS
126 */
127uint8_t getLED (void);
128
129/**
130 * @brief Install an interrupt handler
131 *
132 * This method installs an interrupt handle.
133 *
134 * @param[in] handler is the isr routine
135 * @param[in] vector is the vector number
136 * @param[in] type indicates whether RTEMS or RAW intr
137 *
138 * @return returns old vector
139 */
140rtems_isr_entry set_vector(
141  rtems_isr_entry     handler,
142  rtems_vector_number vector,
143  int                 type
144);
145
146/*
147 *  Internal BSP methods that are used across file boundaries
148 */
149void Init_RTC(void);
150
151/*
152 * Prototype for methods in .S files that are referenced from C.
153 */
154void bfin_null_isr(void);
155
156/** @} */
157
158/** @} */
159
160#ifdef __cplusplus
161}
162#endif
163
164#endif /* !ASM */
165
166#endif
Note: See TracBrowser for help on using the repository browser.