source: EcnlProtoTool/trunk/asp3_dcre/mbed/targets/cmsis/TARGET_RENESAS/TARGET_RZ_A1H/mmu_Renesas_RZ_A1.c@ 331

Last change on this file since 331 was 331, checked in by coas-nagasima, 6 years ago

prototoolに関連するプロジェクトをnewlibからmuslを使うよう変更・更新
ntshellをnewlibの下位の実装から、muslのsyscallの実装に変更・更新
以下のOSSをアップデート
・mruby-1.3.0
・musl-1.1.18
・onigmo-6.1.3
・tcc-0.9.27
以下のOSSを追加
・openssl-1.1.0e
・curl-7.57.0
・zlib-1.2.11
以下のmrbgemsを追加
・iij/mruby-digest
・iij/mruby-env
・iij/mruby-errno
・iij/mruby-iijson
・iij/mruby-ipaddr
・iij/mruby-mock
・iij/mruby-require
・iij/mruby-tls-openssl

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/x-csrc;charset=UTF-8
File size: 10.4 KB
Line 
1/**************************************************************************//**
2 * @file mmu_Renesas_RZ_A1.c
3 * @brief MMU Startup File for
4 * mmu_Renesas_RZ_A1 Device Series
5 * @version V1.01
6 * @date 2 Aug 2013
7 *
8 * @note
9 *
10 ******************************************************************************/
11/* Copyright (c) 2011 - 2013 ARM LIMITED
12
13 All rights reserved.
14 Redistribution and use in source and binary forms, with or without
15 modification, are permitted provided that the following conditions are met:
16 - Redistributions of source code must retain the above copyright
17 notice, this list of conditions and the following disclaimer.
18 - Redistributions in binary form must reproduce the above copyright
19 notice, this list of conditions and the following disclaimer in the
20 documentation and/or other materials provided with the distribution.
21 - Neither the name of ARM nor the names of its contributors may be used
22 to endorse or promote products derived from this software without
23 specific prior written permission.
24 *
25 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
26 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28 ARE DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDERS AND CONTRIBUTORS BE
29 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
35 POSSIBILITY OF SUCH DAMAGE.
36 ---------------------------------------------------------------------------*/
37
38
39#define Renesas_RZ_A1_SPI_MIO_BASE (0x3fe00000UL) /*!< (SPI_MIO ) Base Address */
40#define Renesas_RZ_A1_BSC_BASE (0x3ff00000UL) /*!< (BSC ) Base Address */
41#define Renesas_RZ_A1_PERIPH_BASE0 (0xe8000000UL) /*!< (PERIPH0 ) Base Address */
42#define Renesas_RZ_A1_PERIPH_BASE1 (0xfcf00000UL) /*!< (PERIPH1 ) Base Address */
43// L1 Cache info and restrictions about architecture of the caches (CCSIR register):
44// Write-Through support *not* available
45// Write-Back support available.
46// Read allocation support available.
47// Write allocation support available.
48
49//Note: You should use the Shareable attribute carefully.
50//For cores without coherency logic (such as SCU) marking a region as shareable forces the processor to not cache that region regardless the inner cache settings.
51//CA9-RTX uses LDREX/STREX instructions relying on Local monitors. Local monitors will be used only when the region gets cached, regions that are not cached will use the Global Monitor.
52//Some A9 implementations does not include Global Monitors, so wrongly setting the attribute Shareable may cause STREX to fail.
53
54//Recall: When the Shareable attribute is applied to a memory region that is not Write-Back, Normal memory, data held in this region is treated as Non-cacheable.
55//When SMP bit = 0, Inner WB/WA Cacheable Shareable attributes are treated as Non-cacheable.
56//When SMP bit = 1, Inner WB/WA Cacheable Shareable attributes are treated as Cacheable.
57
58
59//Following MMU configuration is expected
60//SCTLR.AFE == 1 (Simplified access permissions model - AP[2:1] define access permissions, AP[0] is an access flag)
61//SCTLR.TRE == 0 (TEX remap disabled, so memory type and attributes are described directly by bits in the descriptor)
62//Domain 0 is always the Client domain
63//Descriptors place all memory in domain 0
64//There are no restrictions by privilege level (PL0 can access all memory)
65
66#include <stdint.h>
67#include "MBRZA1H.h"
68
69//Import symbols from linker
70extern uint32_t Image$$VECTORS$$Base;
71extern uint32_t Image$$RO_DATA$$Base;
72extern uint32_t Image$$RW_DATA$$Base;
73extern uint32_t Image$$ZI_DATA$$Base;
74extern uint32_t Image$$CMD_AREA$$Base;
75extern uint32_t Image$$TTB$$ZI$$Base;
76#if defined( __CC_ARM )
77#else
78extern uint32_t Image$$RW_DATA_NC$$Base;
79extern uint32_t Image$$ZI_DATA_NC$$Base;
80#endif
81
82extern uint32_t Image$$VECTORS$$Limit;
83extern uint32_t Image$$RO_DATA$$Limit;
84extern uint32_t Image$$RW_DATA$$Limit;
85extern uint32_t Image$$ZI_DATA$$Limit;
86extern uint32_t Image$$CMD_AREA$$Limit;
87#if defined( __CC_ARM )
88#else
89extern uint32_t Image$$RW_DATA_NC$$Limit;
90extern uint32_t Image$$ZI_DATA_NC$$Limit;
91#endif
92
93#define VECTORS_SIZE (((uint32_t)&Image$$VECTORS$$Limit >> 20) - ((uint32_t)&Image$$VECTORS$$Base >> 20) + 1)
94#define RO_DATA_SIZE (((uint32_t)&Image$$RO_DATA$$Limit >> 20) - ((uint32_t)&Image$$RO_DATA$$Base >> 20) + 1)
95#define RW_DATA_SIZE (((uint32_t)&Image$$RW_DATA$$Limit >> 20) - ((uint32_t)&Image$$RW_DATA$$Base >> 20) + 1)
96#define ZI_DATA_SIZE (((uint32_t)&Image$$ZI_DATA$$Limit >> 20) - ((uint32_t)&Image$$ZI_DATA$$Base >> 20) + 1)
97#define CMD_AREA_SIZE (((uint32_t)&Image$$CMD_AREA$$Limit >> 20) - ((uint32_t)&Image$$CMD_AREA$$Base >> 20) + 1)
98#if defined( __CC_ARM )
99#else
100#define RW_DATA_NC_SIZE (((uint32_t)&Image$$RW_DATA_NC$$Limit >> 20) - ((uint32_t)&Image$$RW_DATA_NC$$Base >> 20) + 1)
101#define ZI_DATA_NC_SIZE (((uint32_t)&Image$$ZI_DATA_NC$$Limit >> 20) - ((uint32_t)&Image$$ZI_DATA_NC$$Base >> 20) + 1)
102#endif
103
104static uint32_t Sect_Normal; //outer & inner wb/wa, non-shareable, executable, rw, domain 0, base addr 0
105static uint32_t Sect_Normal_NC; //non-shareable, non-executable, rw, domain 0, base addr 0
106static uint32_t Sect_Normal_Cod; //outer & inner wb/wa, non-shareable, executable, ro, domain 0, base addr 0
107static uint32_t Sect_Normal_RO; //as Sect_Normal_Cod, but not executable
108static uint32_t Sect_Normal_RW; //as Sect_Normal_Cod, but writeable and not executable
109static uint32_t Sect_Device_RO; //device, non-shareable, non-executable, ro, domain 0, base addr 0
110static uint32_t Sect_Device_RW; //as Sect_Device_RO, but writeable
111
112/* Define global descriptors */
113static uint32_t Page_L1_4k = 0x0; //generic
114static uint32_t Page_L1_64k = 0x0; //generic
115static uint32_t Page_4k_Device_RW; //Shared device, not executable, rw, domain 0
116static uint32_t Page_64k_Device_RW; //Shared device, not executable, rw, domain 0
117
118void create_translation_table(void)
119{
120 mmu_region_attributes_Type region;
121
122 /*
123 * Generate descriptors. Refer to MBRZA1H.h to get information about attributes
124 *
125 */
126 //Create descriptors for Vectors, RO, RW, ZI sections
127 section_normal(Sect_Normal, region);
128 section_normal_cod(Sect_Normal_Cod, region);
129 section_normal_ro(Sect_Normal_RO, region);
130 section_normal_rw(Sect_Normal_RW, region);
131 //Create descriptors for peripherals
132 section_device_ro(Sect_Device_RO, region);
133 section_device_rw(Sect_Device_RW, region);
134 section_normal_nc(Sect_Normal_NC, region);
135 //Create descriptors for 64k pages
136 page64k_device_rw(Page_L1_64k, Page_64k_Device_RW, region);
137 //Create descriptors for 4k pages
138 page4k_device_rw(Page_L1_4k, Page_4k_Device_RW, region);
139
140 /*
141 * Define MMU flat-map regions and attributes
142 *
143 */
144
145 //Create 4GB of faulting entries
146 __TTSection (&Image$$TTB$$ZI$$Base, 0, 4096, DESCRIPTOR_FAULT);
147
148 // R7S72100 memory map.
149 __TTSection (&Image$$TTB$$ZI$$Base, Renesas_RZ_A1_NORFLASH_BASE0 , 64, Sect_Normal_RO);
150 __TTSection (&Image$$TTB$$ZI$$Base, Renesas_RZ_A1_NORFLASH_BASE1 , 64, Sect_Normal_RO);
151 __TTSection (&Image$$TTB$$ZI$$Base, Renesas_RZ_A1_SDRAM_BASE0 , 64, Sect_Normal_RW);
152 __TTSection (&Image$$TTB$$ZI$$Base, Renesas_RZ_A1_SDRAM_BASE1 , 64, Sect_Normal_RW);
153 __TTSection (&Image$$TTB$$ZI$$Base, Renesas_RZ_A1_USER_AREA0 , 64, Sect_Normal_RW);
154 __TTSection (&Image$$TTB$$ZI$$Base, Renesas_RZ_A1_USER_AREA1 , 64, Sect_Normal_RW);
155 __TTSection (&Image$$TTB$$ZI$$Base, Renesas_RZ_A1_SPI_IO0 , 64, Sect_Normal_RO);
156 __TTSection (&Image$$TTB$$ZI$$Base, Renesas_RZ_A1_SPI_IO1 , 64, Sect_Normal_RO);
157 __TTSection (&Image$$TTB$$ZI$$Base, Renesas_RZ_A1_ONCHIP_SRAM_BASE , 10, Sect_Normal_RW);
158 __TTSection (&Image$$TTB$$ZI$$Base, Renesas_RZ_A1_SPI_MIO_BASE , 1, Sect_Device_RW);
159 __TTSection (&Image$$TTB$$ZI$$Base, Renesas_RZ_A1_BSC_BASE , 1, Sect_Device_RW);
160 __TTSection (&Image$$TTB$$ZI$$Base, Renesas_RZ_A1_PERIPH_BASE0 , 3, Sect_Device_RW);
161 __TTSection (&Image$$TTB$$ZI$$Base, Renesas_RZ_A1_PERIPH_BASE1 , 49, Sect_Device_RW);
162
163 //Define Image
164 __TTSection (&Image$$TTB$$ZI$$Base, (uint32_t)&Image$$RO_DATA$$Base, RO_DATA_SIZE, Sect_Normal_RO);
165 __TTSection (&Image$$TTB$$ZI$$Base, 0x18200000, (0x18800000 >> 20) - (0x18200000 >> 20) + 1, Sect_Normal_Cod);
166 __TTSection (&Image$$TTB$$ZI$$Base, (uint32_t)&Image$$VECTORS$$Base, VECTORS_SIZE, Sect_Normal_Cod);
167 __TTSection (&Image$$TTB$$ZI$$Base, (uint32_t)&Image$$RW_DATA$$Base, RW_DATA_SIZE, Sect_Normal_RW);
168 __TTSection (&Image$$TTB$$ZI$$Base, (uint32_t)&Image$$ZI_DATA$$Base, ZI_DATA_SIZE, Sect_Normal_RW);
169 __TTSection (&Image$$TTB$$ZI$$Base, (uint32_t)&Image$$CMD_AREA$$Base, CMD_AREA_SIZE, Sect_Normal);
170#if defined( __CC_ARM )
171 __TTSection (&Image$$TTB$$ZI$$Base, Renesas_RZ_A1_ONCHIP_SRAM_NC_BASE, 10, Sect_Normal_NC);
172#else
173 __TTSection (&Image$$TTB$$ZI$$Base, (uint32_t)&Image$$RW_DATA_NC$$Base, RW_DATA_NC_SIZE, Sect_Normal_NC);
174 __TTSection (&Image$$TTB$$ZI$$Base, (uint32_t)&Image$$ZI_DATA_NC$$Base, ZI_DATA_NC_SIZE, Sect_Normal_NC);
175#endif
176
177 /* Set location of level 1 page table
178 ; 31:14 - Translation table base addr (31:14-TTBCR.N, TTBCR.N is 0 out of reset)
179 ; 13:7 - 0x0
180 ; 6 - IRGN[0] 0x0 (Inner WB WA)
181 ; 5 - NOS 0x0 (Non-shared)
182 ; 4:3 - RGN 0x1 (Outer WB WA)
183 ; 2 - IMP 0x0 (Implementation Defined)
184 ; 1 - S 0x0 (Non-shared)
185 ; 0 - IRGN[1] 0x1 (Inner WB WA) */
186 __set_TTBR0(((uint32_t)&Image$$TTB$$ZI$$Base) | 9);
187
188 /* Set up domain access control register
189 ; We set domain 0 to Client and all other domains to No Access.
190 ; All translation table entries specify domain 0 */
191 __set_DACR(1);
192}
193
194
195/*----------------------------------------------------------------------------
196 * end of file
197 *---------------------------------------------------------------------------*/
Note: See TracBrowser for help on using the repository browser.