source: rtems/c/src/lib/libbsp/arm/realview-pbx-a9/include/bsp.h @ db42c079

4.115
Last change on this file since db42c079 was db42c079, checked in by Sebastian Huber <sebastian.huber@…>, on 05/31/13 at 11:59:47

bsps/arm: Add SMP support

  • Property mode set to 100644
File size: 1.1 KB
Line 
1/*
2 * Copyright (c) 2013 embedded brains GmbH.  All rights reserved.
3 *
4 *  embedded brains GmbH
5 *  Dornierstr. 4
6 *  82178 Puchheim
7 *  Germany
8 *  <info@embedded-brains.de>
9 *
10 * The license and distribution terms for this file may be
11 * found in the file LICENSE in this distribution or at
12 * http://www.rtems.com/license/LICENSE.
13 */
14
15#ifndef LIBBSP_ARM_REALVIEW_PBX_A9_BSP_H
16#define LIBBSP_ARM_REALVIEW_PBX_A9_BSP_H
17
18#include <bspopts.h>
19
20#define BSP_FEATURE_IRQ_EXTENSION
21
22#ifndef ASM
23
24#include <rtems.h>
25#include <rtems/console.h>
26#include <rtems/clockdrv.h>
27
28#include <bsp/default-initial-extension.h>
29
30#ifdef __cplusplus
31extern "C" {
32#endif /* __cplusplus */
33
34#define BSP_ARM_A9MPCORE_SCU_BASE 0x1f000000
35
36#define BSP_ARM_GIC_CPUIF_BASE 0x1f000100
37
38#define BSP_ARM_A9MPCORE_PT_BASE 0x1f000600
39
40#define BSP_ARM_GIC_DIST_BASE 0x1f001000
41
42typedef enum {
43  BSP_ARM_A9MPCORE_FATAL_CLOCK_IRQ_INSTALL,
44  BSP_ARM_A9MPCORE_FATAL_CLOCK_IRQ_REMOVE
45} rvpbxa9_fatal_code;
46
47void rvpbxa9_fatal(rvpbxa9_fatal_code code) RTEMS_COMPILER_NO_RETURN_ATTRIBUTE;
48
49#ifdef __cplusplus
50}
51#endif /* __cplusplus */
52
53#endif /* ASM */
54
55#endif /* LIBBSP_ARM_REALVIEW_PBX_A9_BSP_H */
Note: See TracBrowser for help on using the repository browser.