source: rtems/bsps/arm/altera-cyclone-v/start/mmu-config.c @ 9d41fca

5
Last change on this file since 9d41fca was 9d41fca, checked in by Sebastian Huber <sebastian.huber@…>, on 02/27/19 at 10:39:29

bsp/altera-cyclone-v: Adjust Doxygen file groups

Update #3707.

  • Property mode set to 100644
File size: 759 bytes
Line 
1/**
2 * @file
3 *
4 * @ingroup RTEMSBSPsARMCycV
5 */
6
7/*
8 * Copyright (c) 2013-2014 embedded brains GmbH.  All rights reserved.
9 *
10 *  embedded brains GmbH
11 *  Dornierstr. 4
12 *  82178 Puchheim
13 *  Germany
14 *  <info@embedded-brains.de>
15 *
16 * The license and distribution terms for this file may be
17 * found in the file LICENSE in this distribution or at
18 * http://www.rtems.org/license/LICENSE.
19 */
20
21#include <bsp/arm-cp15-start.h>
22
23const arm_cp15_start_section_config arm_cp15_start_mmu_config_table[] = {
24  ARMV7_CP15_START_DEFAULT_SECTIONS,
25  { /* Periphery area */
26    .begin = 0xFC000000U,
27    .end   = 0x00000000U,
28    .flags = ARMV7_MMU_DEVICE
29  }
30};
31
32const size_t arm_cp15_start_mmu_config_table_size =
33  RTEMS_ARRAY_SIZE(arm_cp15_start_mmu_config_table);
Note: See TracBrowser for help on using the repository browser.