2015-12-04 17:17:17 +01:00
|
|
|
/** @file
|
|
|
|
* High memory node enumeration DXE driver for ARM Virtual Machines
|
|
|
|
*
|
2016-09-15 15:23:11 +02:00
|
|
|
* Copyright (c) 2015-2016, Linaro Ltd. All rights reserved.
|
2015-12-04 17:17:17 +01:00
|
|
|
*
|
|
|
|
* This program and the accompanying materials are licensed and made available
|
|
|
|
* under the terms and conditions of the BSD License which accompanies this
|
|
|
|
* distribution. The full text of the license may be found at
|
|
|
|
* http://opensource.org/licenses/bsd-license.php
|
|
|
|
*
|
|
|
|
* THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR
|
|
|
|
* IMPLIED.
|
|
|
|
*
|
|
|
|
**/
|
|
|
|
|
|
|
|
#include <Library/BaseLib.h>
|
|
|
|
#include <Library/DebugLib.h>
|
|
|
|
#include <Library/DxeServicesTableLib.h>
|
2016-09-15 15:23:11 +02:00
|
|
|
#include <Library/PcdLib.h>
|
|
|
|
#include <Library/UefiBootServicesTableLib.h>
|
|
|
|
|
2017-03-21 09:47:23 +01:00
|
|
|
#include <Protocol/Cpu.h>
|
2016-09-15 15:23:11 +02:00
|
|
|
#include <Protocol/FdtClient.h>
|
2015-12-04 17:17:17 +01:00
|
|
|
|
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
InitializeHighMemDxe (
|
|
|
|
IN EFI_HANDLE ImageHandle,
|
|
|
|
IN EFI_SYSTEM_TABLE *SystemTable
|
|
|
|
)
|
|
|
|
{
|
2017-03-21 10:12:56 +01:00
|
|
|
FDT_CLIENT_PROTOCOL *FdtClient;
|
|
|
|
EFI_CPU_ARCH_PROTOCOL *Cpu;
|
|
|
|
EFI_STATUS Status, FindNodeStatus;
|
|
|
|
INT32 Node;
|
|
|
|
CONST UINT32 *Reg;
|
|
|
|
UINT32 RegSize;
|
|
|
|
UINTN AddressCells, SizeCells;
|
|
|
|
UINT64 CurBase;
|
|
|
|
UINT64 CurSize;
|
|
|
|
UINT64 Attributes;
|
|
|
|
EFI_GCD_MEMORY_SPACE_DESCRIPTOR GcdDescriptor;
|
2015-12-04 17:17:17 +01:00
|
|
|
|
2016-09-15 15:23:11 +02:00
|
|
|
Status = gBS->LocateProtocol (&gFdtClientProtocolGuid, NULL,
|
|
|
|
(VOID **)&FdtClient);
|
|
|
|
ASSERT_EFI_ERROR (Status);
|
2015-12-04 17:17:17 +01:00
|
|
|
|
2017-03-21 09:47:23 +01:00
|
|
|
Status = gBS->LocateProtocol (&gEfiCpuArchProtocolGuid, NULL,
|
|
|
|
(VOID **)&Cpu);
|
|
|
|
ASSERT_EFI_ERROR (Status);
|
|
|
|
|
2015-12-04 17:17:17 +01:00
|
|
|
//
|
2016-09-15 15:23:11 +02:00
|
|
|
// Check for memory node and add the memory spaces except the lowest one
|
2015-12-04 17:17:17 +01:00
|
|
|
//
|
2016-09-15 15:23:11 +02:00
|
|
|
for (FindNodeStatus = FdtClient->FindMemoryNodeReg (FdtClient, &Node,
|
|
|
|
(CONST VOID **) &Reg, &AddressCells,
|
|
|
|
&SizeCells, &RegSize);
|
|
|
|
!EFI_ERROR (FindNodeStatus);
|
|
|
|
FindNodeStatus = FdtClient->FindNextMemoryNodeReg (FdtClient, Node,
|
|
|
|
&Node, (CONST VOID **) &Reg, &AddressCells,
|
|
|
|
&SizeCells, &RegSize)) {
|
|
|
|
ASSERT (AddressCells <= 2);
|
|
|
|
ASSERT (SizeCells <= 2);
|
2015-12-04 17:17:17 +01:00
|
|
|
|
2016-09-15 15:23:11 +02:00
|
|
|
while (RegSize > 0) {
|
|
|
|
CurBase = SwapBytes32 (*Reg++);
|
|
|
|
if (AddressCells > 1) {
|
|
|
|
CurBase = (CurBase << 32) | SwapBytes32 (*Reg++);
|
|
|
|
}
|
|
|
|
CurSize = SwapBytes32 (*Reg++);
|
|
|
|
if (SizeCells > 1) {
|
|
|
|
CurSize = (CurSize << 32) | SwapBytes32 (*Reg++);
|
|
|
|
}
|
|
|
|
RegSize -= (AddressCells + SizeCells) * sizeof (UINT32);
|
2015-12-04 17:17:17 +01:00
|
|
|
|
2017-03-21 10:12:56 +01:00
|
|
|
Status = gDS->GetMemorySpaceDescriptor (CurBase, &GcdDescriptor);
|
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
DEBUG ((DEBUG_WARN,
|
|
|
|
"%a: Region 0x%lx - 0x%lx not found in the GCD memory space map\n",
|
|
|
|
__FUNCTION__, CurBase, CurBase + CurSize - 1));
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (GcdDescriptor.GcdMemoryType == EfiGcdMemoryTypeNonExistent) {
|
2016-09-15 15:23:11 +02:00
|
|
|
Status = gDS->AddMemorySpace (EfiGcdMemoryTypeSystemMemory, CurBase,
|
|
|
|
CurSize, EFI_MEMORY_WB);
|
2015-12-04 17:17:17 +01:00
|
|
|
|
2016-09-15 15:23:11 +02:00
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
DEBUG ((EFI_D_ERROR,
|
|
|
|
"%a: Failed to add System RAM @ 0x%lx - 0x%lx (%r)\n",
|
|
|
|
__FUNCTION__, CurBase, CurBase + CurSize - 1, Status));
|
|
|
|
continue;
|
|
|
|
}
|
2015-12-04 17:17:17 +01:00
|
|
|
|
2017-03-21 09:47:23 +01:00
|
|
|
Status = gDS->SetMemorySpaceAttributes (CurBase, CurSize,
|
|
|
|
EFI_MEMORY_WB);
|
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
DEBUG ((DEBUG_WARN,
|
|
|
|
"%a: gDS->SetMemorySpaceAttributes() failed on region 0x%lx - 0x%lx (%r)\n",
|
|
|
|
__FUNCTION__, CurBase, CurBase + CurSize - 1, Status));
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Due to the ambiguous nature of the RO/XP GCD memory space attributes,
|
|
|
|
// it is impossible to add a memory space with the XP attribute in a way
|
|
|
|
// that does not result in the XP attribute being set on *all* UEFI
|
|
|
|
// memory map entries that are carved from it, including code regions
|
|
|
|
// that require executable permissions.
|
2017-02-28 14:45:47 +01:00
|
|
|
//
|
2017-03-21 09:47:23 +01:00
|
|
|
// So instead, we never set the RO/XP attributes in the GCD memory space
|
|
|
|
// capabilities or attribute fields, and apply any protections directly
|
|
|
|
// on the page table mappings by going through the cpu arch protocol.
|
2017-02-28 14:45:47 +01:00
|
|
|
//
|
|
|
|
Attributes = EFI_MEMORY_WB;
|
|
|
|
if ((PcdGet64 (PcdDxeNxMemoryProtectionPolicy) &
|
|
|
|
(1U << (UINT32)EfiConventionalMemory)) != 0) {
|
|
|
|
Attributes |= EFI_MEMORY_XP;
|
|
|
|
}
|
|
|
|
|
2017-03-21 09:47:23 +01:00
|
|
|
Status = Cpu->SetMemoryAttributes (Cpu, CurBase, CurSize, Attributes);
|
2015-12-04 17:17:17 +01:00
|
|
|
|
2016-09-15 15:23:11 +02:00
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
DEBUG ((EFI_D_ERROR,
|
|
|
|
"%a: Failed to set System RAM @ 0x%lx - 0x%lx attribute (%r)\n",
|
|
|
|
__FUNCTION__, CurBase, CurBase + CurSize - 1, Status));
|
|
|
|
} else {
|
|
|
|
DEBUG ((EFI_D_INFO, "%a: Add System RAM @ 0x%lx - 0x%lx\n",
|
|
|
|
__FUNCTION__, CurBase, CurBase + CurSize - 1));
|
2015-12-04 17:17:17 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|