source: rtems/c/src/lib/libbsp/arm/altera-cyclone-v/startup/bspstarthooks.c @ 7ab6046

4.115
Last change on this file since 7ab6046 was 7ab6046, checked in by Sebastian Huber <sebastian.huber@…>, on 07/01/14 at 13:30:07

bsp/altera-cyclone-v: Move MMU configuration table

This makes it possible to use application specific version.

  • Property mode set to 100644
File size: 2.9 KB
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#define ARM_CP15_TEXT_SECTION BSP_START_TEXT_SECTION
16
17#include <bsp.h>
18#include <bsp/start.h>
19#include <bsp/arm-cp15-start.h>
20#include <bsp/arm-a9mpcore-start.h>
21#include <bsp/linker-symbols.h>
22#include <alt_address_space.h>
23#include <socal/socal.h>
24#include <socal/alt_sdr.h>
25#include <socal/hps.h>
26
27/* 1 MB reset default value for address filtering start */
28#define BSPSTART_L2_CACHE_ADDR_FILTERING_START_RESET 0x100000
29
30BSP_START_TEXT_SECTION void bsp_start_hook_0( void )
31{
32  arm_cp15_instruction_cache_invalidate();
33  arm_cp15_data_cache_invalidate_all_levels();
34  arm_a9mpcore_start_hook_0();
35}
36
37BSP_START_TEXT_SECTION static void setup_mmu_and_cache(void)
38{
39  uint32_t ctrl = arm_cp15_start_setup_mmu_and_cache(
40    ARM_CP15_CTRL_A | ARM_CP15_CTRL_M,
41    ARM_CP15_CTRL_AFE | ARM_CP15_CTRL_Z
42  );
43
44  arm_cp15_start_setup_translation_table_and_enable_mmu_and_cache(
45    ctrl,
46    (uint32_t *) bsp_translation_table_base,
47    ARM_MMU_DEFAULT_CLIENT_DOMAIN,
48    &arm_cp15_start_mmu_config_table[0],
49    arm_cp15_start_mmu_config_table_size
50  );
51}
52
53BSP_START_TEXT_SECTION void bsp_start_hook_1( void )
54{
55  uint32_t addr_filt_start;
56  uint32_t addr_filt_end;
57
58  /* Disable ECC. Preloader respectively UBoot enable ECC.
59     But they do run without interrupts. Our BSP will enable interrupts
60     and get spurious ECC error interrupts. Thus we disasable ECC
61     until we either know about a better handling or Altera has modified
62     it's SDRAM settings to not create possibly false ECC errors */
63  uint32_t ctlcfg = alt_read_word( ALT_SDR_CTL_CTLCFG_ADDR );
64  ctlcfg &= ALT_SDR_CTL_CTLCFG_ECCEN_CLR_MSK;
65  alt_write_word( ALT_SDR_CTL_CTLCFG_ADDR, ctlcfg );
66
67  /* Perform L3 remap register programming first by setting the desired new MPU
68     address space 0 mapping. Assume BOOTROM in order to be able to boot the
69     second core. */
70  alt_addr_space_remap(
71    ALT_ADDR_SPACE_MPU_ZERO_AT_BOOTROM,
72    ALT_ADDR_SPACE_NONMPU_ZERO_AT_SDRAM,
73    ALT_ADDR_SPACE_H2F_ACCESSIBLE,
74    ALT_ADDR_SPACE_LWH2F_ACCESSIBLE );
75
76  /* Next, adjust the L2 cache address filtering range. Set the start address
77   * to the default reset value and retain the existing end address
78   * configuration. */
79  alt_l2_addr_filter_cfg_get( &addr_filt_start, &addr_filt_end );
80
81  if ( addr_filt_start != BSPSTART_L2_CACHE_ADDR_FILTERING_START_RESET ) {
82    alt_l2_addr_filter_cfg_set( BSPSTART_L2_CACHE_ADDR_FILTERING_START_RESET,
83                                addr_filt_end );
84  }
85
86  arm_a9mpcore_start_hook_1();
87  bsp_start_copy_sections();
88  setup_mmu_and_cache();
89#ifndef RTEMS_SMP
90  /* Enable unified L2 cache */
91  rtems_cache_enable_data();
92#endif
93  bsp_start_clear_bss();
94}
Note: See TracBrowser for help on using the repository browser.