source: rtems/c/src/lib/libbsp/arm/altera-cyclone-v/startup/mmu-config.c @ e56090ef

5
Last change on this file since e56090ef was cbc433c7, checked in by Sebastian Huber <sebastian.huber@…>, on 11/25/14 at 07:40:20

bsps/arm: Add .nocache section

This section can be use to provide a cache coherent memory area via
rtems_cache_coherent_add_area().

  • Property mode set to 100644
File size: 709 bytes
Line 
1/*
2 * Copyright (c) 2013-2014 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#include <bsp/arm-cp15-start.h>
16
17const arm_cp15_start_section_config arm_cp15_start_mmu_config_table[] = {
18  ARMV7_CP15_START_DEFAULT_SECTIONS,
19  { /* Periphery area */
20    .begin = 0xFC000000U,
21    .end   = 0x00000000U,
22    .flags = ARMV7_MMU_DEVICE
23  }
24};
25
26const size_t arm_cp15_start_mmu_config_table_size =
27  RTEMS_ARRAY_SIZE(arm_cp15_start_mmu_config_table);
Note: See TracBrowser for help on using the repository browser.