source: asp3_tinet_ecnl_arm/trunk/asp3_dcre/mbed/targets/TARGET_RENESAS/TARGET_RZA1XX/TARGET_RZ_A1H/device/mmu_RZ_A1H.c@ 374

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

mbed関連を更新
シリアルドライバをmbedのHALを使うよう変更
ファイルディスクリプタの処理を更新

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/x-csrc;charset=UTF-8
File size: 13.8 KB
Line 
1/**************************************************************************//**
2 * @file mmu_RZ_A1H.c
3 * @brief MMU Configuration for RZ_A1H Device Series
4 * @version V1.00
5 * @date 10 Mar 2017
6 *
7 * @note
8 *
9 ******************************************************************************/
10/*
11 * Copyright (c) 2009-2017 ARM Limited. All rights reserved.
12 *
13 * SPDX-License-Identifier: Apache-2.0
14 *
15 * Licensed under the Apache License, Version 2.0 (the License); you may
16 * not use this file except in compliance with the License.
17 * You may obtain a copy of the License at
18 *
19 * www.apache.org/licenses/LICENSE-2.0
20 *
21 * Unless required by applicable law or agreed to in writing, software
22 * distributed under the License is distributed on an AS IS BASIS, WITHOUT
23 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
24 * See the License for the specific language governing permissions and
25 * limitations under the License.
26 */
27
28/* Memory map description from: Renesas RZ_A1H_05E_121130.pdf
29
30 Memory Type
310xffffffff |--------------------------| ------------
32 | Peripherals | Device
330xfcf00000 |--------------------------| ------------
34 | Page Fault | Fault
350xe8300000 |--------------------------| ------------
36 | Peripherals | Device
370xe8000000 |--------------------------| ------------
38 | Page Fault | Fault
390x60A00000 |--------------------------| ------------
40 | On Chip RAM (10M) Mirror | Fault
410x60000000 |--------------------------| ------------
42 | SPI multi I/O 64MB | Fault
430x5c000000 |--------------------------| ------------
44 | SPI multi I/O 64MB | Fault
450x58000000 |--------------------------| ------------
46 | CS5 Mirror | Fault
470x54000000 |--------------------------| ------------
48 | CS4 Mirror | Fault
490x50000000 |--------------------------| ------------
50 | CS3 Mirror | Fault
510x4c000000 |--------------------------| ------------
52 | CS2 Mirror | Fault
530x48000000 |--------------------------| ------------
54 | CS1 Mirror | Fault
550x44000000 |--------------------------| ------------
56 | CS0 Mirror | Fault
570x40000000 |--------------------------| ------------
58 | BSC | RW
590x3ff00000 |--------------------------| ------------
60 | SPI_MIO_BASE | RW
610x3fe00000 |--------------------------| ------------
62 | Page Fault | Fault
630x20A00000 |--------------------------| ------------
64 | On Chip RAM (10M) | RW
650x20000000 |--------------------------| ------------
66 | SPI multi I/O 64MB | RO
670x1c000000 |--------------------------| ------------
68 | SPI multi I/O 64MB | RO
690x18000000 |--------------------------| ------------
70 | CS5 User Area 64MB | RW
710x14000000 |--------------------------| ------------
72 | CS4 User Area 64MB | RW
730x10000000 |--------------------------| ------------
74 | CS3 SDRAM 64MB | RW
750x0c000000 |--------------------------| ------------
76 | CS2 SDRAM 64MB | RW
770x08000000 |--------------------------| ------------
78 | CS1 NOR Flash 64MB | RO
790x04000000 |--------------------------| ------------
80 | CS0 NOR Flash 64MB | RO
810x00000000 |--------------------------| ------------
82*/
83
84// L1 Cache info and restrictions about architecture of the caches (CCSIR register):
85// Write-Through support *not* available
86// Write-Back support available.
87// Read allocation support available.
88// Write allocation support available.
89
90//Note: You should use the Shareable attribute carefully.
91//For cores without coherency logic (such as SCU) marking a region as shareable forces the processor to not cache that region regardless of the inner cache settings.
92//Cortex-A versions of RTX use 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.
93//Some Cortex-A implementations do not include Global Monitors, so wrongly setting the attribute Shareable may cause STREX to fail.
94
95//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.
96//When SMP bit = 0, Inner WB/WA Cacheable Shareable attributes are treated as Non-cacheable.
97//When SMP bit = 1, Inner WB/WA Cacheable Shareable attributes are treated as Cacheable.
98
99
100//Following MMU configuration is expected
101//SCTLR.AFE == 1 (Simplified access permissions model - AP[2:1] define access permissions, AP[0] is an access flag)
102//SCTLR.TRE == 0 (TEX remap disabled, so memory type and attributes are described directly by bits in the descriptor)
103//Domain 0 is always the Client domain
104//Descriptors should place all memory in domain 0
105//There are no restrictions by privilege level (PL0 can access all memory)
106
107
108#include "RZ_A1H.h"
109
110//Import symbols from linker
111extern uint32_t Image$$VECTORS$$Base;
112extern uint32_t Image$$RO_DATA$$Base;
113extern uint32_t Image$$RW_DATA$$Base;
114extern uint32_t Image$$RW_IRAM1$$Base;
115#if !defined ( __ICCARM__ )
116extern uint32_t Image$$TTB$$ZI$$Base;
117#endif
118
119#if defined( __CC_ARM )
120#elif defined( __ICCARM__ )
121#else
122extern uint32_t Image$$RW_DATA_NC$$Base;
123extern uint32_t Image$$ZI_DATA_NC$$Base;
124#endif
125
126extern uint32_t Image$$VECTORS$$Limit;
127extern uint32_t Image$$RO_DATA$$Limit;
128extern uint32_t Image$$RW_DATA$$Limit;
129extern uint32_t Image$$RW_IRAM1$$Limit;
130#if defined( __CC_ARM )
131#else
132extern uint32_t Image$$RW_DATA_NC$$Limit;
133extern uint32_t Image$$ZI_DATA_NC$$Limit;
134#endif
135
136#if defined( __ICCARM__ )
137#define VECTORS_SIZE (((uint32_t)Image$$VECTORS$$Limit >> 20) - ((uint32_t)Image$$VECTORS$$Base >> 20) + 1)
138#define RO_DATA_SIZE (((uint32_t)Image$$RO_DATA$$Limit >> 20) - ((uint32_t)Image$$RO_DATA$$Base >> 20) + 1)
139#define RW_DATA_SIZE (((uint32_t)Image$$RW_DATA$$Limit >> 20) - ((uint32_t)Image$$RW_DATA$$Base >> 20) + 1)
140#define RW_IRAM1_SIZE (((uint32_t)Image$$RW_IRAM1$$Limit >> 20) - ((uint32_t)Image$$RW_IRAM1$$Base >> 20) + 1)
141#else
142#define VECTORS_SIZE (((uint32_t)&Image$$VECTORS$$Limit >> 20) - ((uint32_t)&Image$$VECTORS$$Base >> 20) + 1)
143#define RO_DATA_SIZE (((uint32_t)&Image$$RO_DATA$$Limit >> 20) - ((uint32_t)&Image$$RO_DATA$$Base >> 20) + 1)
144#define RW_DATA_SIZE (((uint32_t)&Image$$RW_DATA$$Limit >> 20) - ((uint32_t)&Image$$RW_DATA$$Base >> 20) + 1)
145#define RW_IRAM1_SIZE (((uint32_t)&Image$$RW_IRAM1$$Limit >> 20) - ((uint32_t)&Image$$RW_IRAM1$$Base >> 20) + 1)
146#endif
147
148#if defined( __CC_ARM )
149#else
150#define RW_DATA_NC_SIZE (((uint32_t)&Image$$RW_DATA_NC$$Limit >> 20) - ((uint32_t)&Image$$RW_DATA_NC$$Base >> 20) + 1)
151#define ZI_DATA_NC_SIZE (((uint32_t)&Image$$ZI_DATA_NC$$Limit >> 20) - ((uint32_t)&Image$$ZI_DATA_NC$$Base >> 20) + 1)
152#endif
153
154static uint32_t Sect_Normal; //outer & inner wb/wa, non-shareable, executable, rw, domain 0, base addr 0
155static uint32_t Sect_Normal_NC; //non-shareable, non-executable, rw, domain 0, base addr 0
156static uint32_t Sect_Normal_Cod; //outer & inner wb/wa, non-shareable, executable, ro, domain 0, base addr 0
157static uint32_t Sect_Normal_RO; //as Sect_Normal_Cod, but not executable
158static uint32_t Sect_Normal_RW; //as Sect_Normal_Cod, but writeable and not executable
159static uint32_t Sect_Device_RO; //device, non-shareable, non-executable, ro, domain 0, base addr 0
160static uint32_t Sect_Device_RW; //as Sect_Device_RO, but writeable
161
162/* Define global descriptors */
163static uint32_t Page_L1_4k = 0x0; //generic
164static uint32_t Page_L1_64k = 0x0; //generic
165static uint32_t Page_4k_Device_RW; //Shared device, not executable, rw, domain 0
166static uint32_t Page_64k_Device_RW; //Shared device, not executable, rw, domain 0
167
168#if defined ( __ICCARM__ )
169__no_init uint32_t Image$$TTB$$ZI$$Base @ ".retram";
170uint32_t Image$$VECTORS$$Base;
171uint32_t Image$$RO_DATA$$Base;
172uint32_t Image$$RW_DATA$$Base;
173uint32_t Image$$RW_IRAM1$$Base;
174
175uint32_t Image$$VECTORS$$Limit;
176uint32_t Image$$RO_DATA$$Limit;
177uint32_t Image$$RW_DATA$$Limit;
178uint32_t Image$$RW_IRAM1$$Limit;
179#endif
180
181void MMU_CreateTranslationTable(void)
182{
183 mmu_region_attributes_Type region;
184#if defined ( __ICCARM__ )
185#pragma section=".intvec"
186#pragma section=".rodata"
187#pragma section=".rwdata"
188#pragma section=".bss"
189
190 Image$$VECTORS$$Base = (uint32_t) __section_begin(".intvec");
191 Image$$VECTORS$$Limit= ((uint32_t)__section_begin(".intvec")+(uint32_t)__section_size(".intvec"));
192 Image$$RO_DATA$$Base = (uint32_t) __section_begin(".rodata");
193 Image$$RO_DATA$$Limit= ((uint32_t)__section_begin(".rodata")+(uint32_t)__section_size(".rodata"));
194 Image$$RW_DATA$$Base = (uint32_t) __section_begin(".rwdata");
195 Image$$RW_DATA$$Limit= ((uint32_t)__section_begin(".rwdata")+(uint32_t)__section_size(".rwdata"));
196 Image$$RW_IRAM1$$Base = (uint32_t) __section_begin(".bss");
197 Image$$RW_IRAM1$$Limit= ((uint32_t)__section_begin(".bss")+(uint32_t)__section_size(".bss"));
198#endif
199 /*
200 * Generate descriptors. Refer to core_ca.h to get information about attributes
201 *
202 */
203 //Create descriptors for Vectors, RO, RW, ZI sections
204 section_normal(Sect_Normal, region);
205 section_normal_cod(Sect_Normal_Cod, region);
206 section_normal_ro(Sect_Normal_RO, region);
207 section_normal(Sect_Normal_RW, region);
208 //Create descriptors for peripherals
209 section_device_ro(Sect_Device_RO, region);
210 section_device_rw(Sect_Device_RW, region);
211 section_normal_nc(Sect_Normal_NC, region);
212 //Create descriptors for 64k pages
213 page64k_device_rw(Page_L1_64k, Page_64k_Device_RW, region);
214 //Create descriptors for 4k pages
215 page4k_device_rw(Page_L1_4k, Page_4k_Device_RW, region);
216
217 /*
218 * Define MMU flat-map regions and attributes
219 *
220 */
221
222 //Create 4GB of faulting entries
223 MMU_TTSection (&Image$$TTB$$ZI$$Base, 0, 4096, DESCRIPTOR_FAULT);
224
225 // R7S72100 memory map.
226 MMU_TTSection (&Image$$TTB$$ZI$$Base, RZ_A1_NORFLASH_BASE0 , 64, Sect_Normal_RO);
227 MMU_TTSection (&Image$$TTB$$ZI$$Base, RZ_A1_NORFLASH_BASE1 , 64, Sect_Normal_RO);
228 MMU_TTSection (&Image$$TTB$$ZI$$Base, RZ_A1_SDRAM_BASE0 , 64, Sect_Normal_RW);
229 MMU_TTSection (&Image$$TTB$$ZI$$Base, RZ_A1_SDRAM_BASE1 , 64, Sect_Normal_RW);
230 MMU_TTSection (&Image$$TTB$$ZI$$Base, RZ_A1_USER_AREA0 , 64, Sect_Normal_RW);
231 MMU_TTSection (&Image$$TTB$$ZI$$Base, RZ_A1_USER_AREA1 , 64, Sect_Normal_RW);
232 MMU_TTSection (&Image$$TTB$$ZI$$Base, RZ_A1_SPI_IO0 , 64, Sect_Normal_RO);
233 MMU_TTSection (&Image$$TTB$$ZI$$Base, RZ_A1_SPI_IO1 , 64, Sect_Normal_RO);
234 MMU_TTSection (&Image$$TTB$$ZI$$Base, RZ_A1_ONCHIP_SRAM_BASE , 10, Sect_Normal_RW);
235 MMU_TTSection (&Image$$TTB$$ZI$$Base, RZ_A1_SPI_MIO_BASE , 1, Sect_Device_RW);
236 MMU_TTSection (&Image$$TTB$$ZI$$Base, RZ_A1_BSC_BASE , 1, Sect_Device_RW);
237 MMU_TTSection (&Image$$TTB$$ZI$$Base, RZ_A1_PERIPH_BASE0 , 3, Sect_Device_RW);
238 MMU_TTSection (&Image$$TTB$$ZI$$Base, RZ_A1_PERIPH_BASE1 , 49, Sect_Device_RW);
239
240#if defined( __ICCARM__ )
241 //Define Image
242 MMU_TTSection (&Image$$TTB$$ZI$$Base, (uint32_t)Image$$RO_DATA$$Base , RO_DATA_SIZE , Sect_Normal_Cod);
243 MMU_TTSection (&Image$$TTB$$ZI$$Base, (uint32_t)Image$$VECTORS$$Base , VECTORS_SIZE , Sect_Normal_Cod);
244 MMU_TTSection (&Image$$TTB$$ZI$$Base, (uint32_t)Image$$RW_DATA$$Base , RW_DATA_SIZE , Sect_Normal_RW);
245 MMU_TTSection (&Image$$TTB$$ZI$$Base, (uint32_t)Image$$RW_IRAM1$$Base, RW_IRAM1_SIZE, Sect_Normal_RW);
246#else
247 //Define Image
248 MMU_TTSection (&Image$$TTB$$ZI$$Base, (uint32_t)&Image$$RO_DATA$$Base , RO_DATA_SIZE , Sect_Normal_Cod);
249 MMU_TTSection (&Image$$TTB$$ZI$$Base, (uint32_t)&Image$$VECTORS$$Base , VECTORS_SIZE , Sect_Normal_Cod);
250 MMU_TTSection (&Image$$TTB$$ZI$$Base, (uint32_t)&Image$$RW_DATA$$Base , RW_DATA_SIZE , Sect_Normal_RW);
251 MMU_TTSection (&Image$$TTB$$ZI$$Base, (uint32_t)&Image$$RW_IRAM1$$Base, RW_IRAM1_SIZE, Sect_Normal_RW);
252#endif
253
254#if defined( __CC_ARM )
255 MMU_TTSection (&Image$$TTB$$ZI$$Base, RZ_A1_ONCHIP_SRAM_NC_BASE , 10, Sect_Normal_NC);
256#elif defined ( __ICCARM__ )
257 MMU_TTSection (&Image$$TTB$$ZI$$Base, RZ_A1_ONCHIP_SRAM_NC_BASE , 10, Sect_Normal_NC);
258
259#else
260 MMU_TTSection (&Image$$TTB$$ZI$$Base, (uint32_t)&Image$$RW_DATA_NC$$Base, RW_DATA_NC_SIZE, Sect_Normal_NC);
261 MMU_TTSection (&Image$$TTB$$ZI$$Base, (uint32_t)&Image$$ZI_DATA_NC$$Base, ZI_DATA_NC_SIZE, Sect_Normal_NC);
262#endif
263
264 /* Set location of level 1 page table
265 ; 31:14 - Translation table base addr (31:14-TTBCR.N, TTBCR.N is 0 out of reset)
266 ; 13:7 - 0x0
267 ; 6 - IRGN[0] 0x0 (Inner WB WA)
268 ; 5 - NOS 0x0 (Non-shared)
269 ; 4:3 - RGN 0x1 (Outer WB WA)
270 ; 2 - IMP 0x0 (Implementation Defined)
271 ; 1 - S 0x0 (Non-shared)
272 ; 0 - IRGN[1] 0x1 (Inner WB WA) */
273 __set_TTBR0(((uint32_t)&Image$$TTB$$ZI$$Base) | 9);
274 __ISB();
275
276 /* Set up domain access control register
277 ; We set domain 0 to Client and all other domains to No Access.
278 ; All translation table entries specify domain 0 */
279 __set_DACR(1);
280 __ISB();
281}
Note: See TracBrowser for help on using the repository browser.