source: rtems/c/src/lib/libbsp/arm/xilinx-zynq/include/bsp.h @ 1dcf5fe

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

bsps/arm: Merge ARMv7 MMU section definitions

  • Property mode set to 100644
File size: 1010 bytes
RevLine 
[a94d46c8]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_XILINX_ZYNQ_BSP_H
16#define LIBBSP_ARM_XILINX_ZYNQ_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_PT_BASE 0xf8f00600
35
36typedef enum {
37  BSP_ARM_A9MPCORE_FATAL_CLOCK_IRQ_INSTALL,
38  BSP_ARM_A9MPCORE_FATAL_CLOCK_IRQ_REMOVE
39} zynq_fatal_code;
40
41void zynq_fatal(zynq_fatal_code code) RTEMS_COMPILER_NO_RETURN_ATTRIBUTE;
42
43#ifdef __cplusplus
44}
45#endif /* __cplusplus */
46
47#endif /* ASM */
48
49#endif /* LIBBSP_ARM_XILINX_ZYNQ_BSP_H */
Note: See TracBrowser for help on using the repository browser.