source: rtems/c/src/lib/libbsp/arm/imx/include/bsp.h @ ca9490c

5
Last change on this file since ca9490c was 694c31f9, checked in by Sebastian Huber <sebastian.huber@…>, on 08/03/17 at 06:53:13

bsp/imx: New BSP

Update #3090.

  • Property mode set to 100644
File size: 950 bytes
Line 
1/*
2 * Copyright (c) 2017 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.org/license/LICENSE.
13 */
14
15#ifndef LIBBSP_ARM_IMX_BSP_H
16#define LIBBSP_ARM_IMX_BSP_H
17
18#include <bspopts.h>
19
20#define BSP_FEATURE_IRQ_EXTENSION
21
22#define BSP_FDT_IS_SUPPORTED
23
24#ifndef ASM
25
26#include <rtems.h>
27
28#include <bsp/default-initial-extension.h>
29
30#ifdef __cplusplus
31extern "C" {
32#endif /* __cplusplus */
33
34#define BSP_ARM_GIC_DIST_BASE 0x31001000
35
36#define BSP_ARM_GIC_CPUIF_BASE 0x31002000
37
38#define BSP_ARM_A9MPCORE_GT_BASE 0
39
40#define BSP_ARM_A9MPCORE_SCU_BASE 0
41
42void arm_generic_timer_get_config(uint32_t *frequency, uint32_t *irq);
43
44#ifdef __cplusplus
45}
46#endif /* __cplusplus */
47
48#endif /* ASM */
49
50#endif /* LIBBSP_ARM_IMX_BSP_H */
Note: See TracBrowser for help on using the repository browser.