]> git.proxmox.com Git - mirror_edk2.git/blob - ArmPlatformPkg/ArmVExpressPkg/Library/ArmVExpressLibRTSM/RTSMMem.c
ArmPlatformPkg: remove EFI_MEMORY_UC attribute from normal memory
[mirror_edk2.git] / ArmPlatformPkg / ArmVExpressPkg / Library / ArmVExpressLibRTSM / RTSMMem.c
1 /** @file
2 *
3 * Copyright (c) 2011-2014, ARM Limited. All rights reserved.
4 *
5 * This program and the accompanying materials
6 * are licensed and made available under the terms and conditions of the BSD License
7 * which accompanies this distribution. The full text of the license may be found at
8 * http://opensource.org/licenses/bsd-license.php
9 *
10 * THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12 *
13 **/
14
15 #include <Library/ArmPlatformLib.h>
16 #include <Library/DebugLib.h>
17 #include <Library/HobLib.h>
18 #include <Library/PcdLib.h>
19 #include <Library/IoLib.h>
20 #include <Library/MemoryAllocationLib.h>
21 #include <ArmPlatform.h>
22
23 // Number of Virtual Memory Map Descriptors
24 #define MAX_VIRTUAL_MEMORY_MAP_DESCRIPTORS 6
25
26 // DDR attributes
27 #define DDR_ATTRIBUTES_CACHED ARM_MEMORY_REGION_ATTRIBUTE_WRITE_BACK
28 #define DDR_ATTRIBUTES_UNCACHED ARM_MEMORY_REGION_ATTRIBUTE_UNCACHED_UNBUFFERED
29
30 /**
31 Return the Virtual Memory Map of your platform
32
33 This Virtual Memory Map is used by MemoryInitPei Module to initialize the MMU on your platform.
34
35 @param[out] VirtualMemoryMap Array of ARM_MEMORY_REGION_DESCRIPTOR describing a Physical-to-
36 Virtual Memory mapping. This array must be ended by a zero-filled
37 entry
38
39 **/
40 VOID
41 ArmPlatformGetVirtualMemoryMap (
42 IN ARM_MEMORY_REGION_DESCRIPTOR** VirtualMemoryMap
43 )
44 {
45 ARM_MEMORY_REGION_ATTRIBUTES CacheAttributes;
46 EFI_RESOURCE_ATTRIBUTE_TYPE ResourceAttributes;
47 UINTN Index = 0;
48 ARM_MEMORY_REGION_DESCRIPTOR *VirtualMemoryTable;
49 UINT32 SysId;
50 BOOLEAN HasSparseMemory;
51 EFI_VIRTUAL_ADDRESS SparseMemoryBase;
52 UINT64 SparseMemorySize;
53
54 ASSERT (VirtualMemoryMap != NULL);
55
56 // The FVP model has Sparse memory
57 SysId = MmioRead32 (ARM_VE_SYS_ID_REG);
58 if (SysId != ARM_RTSM_SYS_ID) {
59 HasSparseMemory = TRUE;
60
61 ResourceAttributes =
62 EFI_RESOURCE_ATTRIBUTE_PRESENT |
63 EFI_RESOURCE_ATTRIBUTE_INITIALIZED |
64 EFI_RESOURCE_ATTRIBUTE_WRITE_COMBINEABLE |
65 EFI_RESOURCE_ATTRIBUTE_WRITE_THROUGH_CACHEABLE |
66 EFI_RESOURCE_ATTRIBUTE_WRITE_BACK_CACHEABLE |
67 EFI_RESOURCE_ATTRIBUTE_TESTED;
68
69 // Declared the additional DRAM from 2GB to 4GB
70 SparseMemoryBase = 0x0880000000;
71 SparseMemorySize = SIZE_2GB;
72
73 BuildResourceDescriptorHob (
74 EFI_RESOURCE_SYSTEM_MEMORY,
75 ResourceAttributes,
76 SparseMemoryBase,
77 SparseMemorySize);
78 } else {
79 HasSparseMemory = FALSE;
80 SparseMemoryBase = 0x0;
81 SparseMemorySize = 0x0;
82 }
83
84 VirtualMemoryTable = (ARM_MEMORY_REGION_DESCRIPTOR*)AllocatePages(EFI_SIZE_TO_PAGES (sizeof(ARM_MEMORY_REGION_DESCRIPTOR) * MAX_VIRTUAL_MEMORY_MAP_DESCRIPTORS));
85 if (VirtualMemoryTable == NULL) {
86 return;
87 }
88
89 if (FeaturePcdGet(PcdCacheEnable) == TRUE) {
90 CacheAttributes = DDR_ATTRIBUTES_CACHED;
91 } else {
92 CacheAttributes = DDR_ATTRIBUTES_UNCACHED;
93 }
94
95 // ReMap (Either NOR Flash or DRAM)
96 VirtualMemoryTable[Index].PhysicalBase = ARM_VE_REMAP_BASE;
97 VirtualMemoryTable[Index].VirtualBase = ARM_VE_REMAP_BASE;
98 VirtualMemoryTable[Index].Length = ARM_VE_REMAP_SZ;
99
100 if (FeaturePcdGet(PcdNorFlashRemapping) == FALSE) {
101 // Map the NOR Flash as Secure Memory
102 if (FeaturePcdGet(PcdCacheEnable) == TRUE) {
103 VirtualMemoryTable[Index].Attributes = DDR_ATTRIBUTES_CACHED;
104 } else {
105 VirtualMemoryTable[Index].Attributes = DDR_ATTRIBUTES_UNCACHED;
106 }
107 } else {
108 // DRAM mapping
109 VirtualMemoryTable[Index].Attributes = CacheAttributes;
110 }
111
112 // DDR
113 VirtualMemoryTable[++Index].PhysicalBase = ARM_VE_DRAM_BASE;
114 VirtualMemoryTable[Index].VirtualBase = ARM_VE_DRAM_BASE;
115 VirtualMemoryTable[Index].Length = ARM_VE_DRAM_SZ;
116 VirtualMemoryTable[Index].Attributes = CacheAttributes;
117
118 // CPU peripherals. TRM. Manual says not all of them are implemented.
119 VirtualMemoryTable[++Index].PhysicalBase = ARM_VE_ON_CHIP_PERIPH_BASE;
120 VirtualMemoryTable[Index].VirtualBase = ARM_VE_ON_CHIP_PERIPH_BASE;
121 VirtualMemoryTable[Index].Length = ARM_VE_ON_CHIP_PERIPH_SZ;
122 VirtualMemoryTable[Index].Attributes = ARM_MEMORY_REGION_ATTRIBUTE_DEVICE;
123
124 // SMB CS0-CS1 - NOR Flash 1 & 2
125 VirtualMemoryTable[++Index].PhysicalBase = ARM_VE_SMB_NOR0_BASE;
126 VirtualMemoryTable[Index].VirtualBase = ARM_VE_SMB_NOR0_BASE;
127 VirtualMemoryTable[Index].Length = ARM_VE_SMB_NOR0_SZ + ARM_VE_SMB_NOR1_SZ;
128 VirtualMemoryTable[Index].Attributes = CacheAttributes;
129
130 // SMB CS2 - SRAM
131 VirtualMemoryTable[++Index].PhysicalBase = ARM_VE_SMB_SRAM_BASE;
132 VirtualMemoryTable[Index].VirtualBase = ARM_VE_SMB_SRAM_BASE;
133 VirtualMemoryTable[Index].Length = ARM_VE_SMB_SRAM_SZ;
134 VirtualMemoryTable[Index].Attributes = CacheAttributes;
135
136 // Peripheral CS2 and CS3
137 VirtualMemoryTable[++Index].PhysicalBase = ARM_VE_SMB_PERIPH_BASE;
138 VirtualMemoryTable[Index].VirtualBase = ARM_VE_SMB_PERIPH_BASE;
139 VirtualMemoryTable[Index].Length = 2 * ARM_VE_SMB_PERIPH_SZ;
140 VirtualMemoryTable[Index].Attributes = ARM_MEMORY_REGION_ATTRIBUTE_DEVICE;
141
142 // Map sparse memory region if present
143 if (HasSparseMemory) {
144 VirtualMemoryTable[++Index].PhysicalBase = SparseMemoryBase;
145 VirtualMemoryTable[Index].VirtualBase = SparseMemoryBase;
146 VirtualMemoryTable[Index].Length = SparseMemorySize;
147 VirtualMemoryTable[Index].Attributes = CacheAttributes;
148 }
149
150 // End of Table
151 VirtualMemoryTable[++Index].PhysicalBase = 0;
152 VirtualMemoryTable[Index].VirtualBase = 0;
153 VirtualMemoryTable[Index].Length = 0;
154 VirtualMemoryTable[Index].Attributes = (ARM_MEMORY_REGION_ATTRIBUTES)0;
155
156 *VirtualMemoryMap = VirtualMemoryTable;
157 }