Home
last modified time | relevance | path

Searched refs:MemoryTable (Results 1 – 7 of 7) sorted by relevance

/device/linaro/bootloader/edk2/BeagleBoardPkg/Sec/
DCache.c42 ARM_MEMORY_REGION_DESCRIPTOR MemoryTable[5]; in InitCache() local
53 MemoryTable[0].PhysicalBase = MemoryBase; in InitCache()
54 MemoryTable[0].VirtualBase = MemoryBase; in InitCache()
55 MemoryTable[0].Length = MemoryLength; in InitCache()
56 MemoryTable[0].Attributes = (ARM_MEMORY_REGION_ATTRIBUTES)CacheAttributes; in InitCache()
59 MemoryTable[1].PhysicalBase = SOC_REGISTERS_L3_PHYSICAL_BASE; in InitCache()
60 MemoryTable[1].VirtualBase = SOC_REGISTERS_L3_PHYSICAL_BASE; in InitCache()
61 MemoryTable[1].Length = SOC_REGISTERS_L3_PHYSICAL_LENGTH; in InitCache()
62 MemoryTable[1].Attributes = SOC_REGISTERS_L3_ATTRIBUTES; in InitCache()
65 MemoryTable[2].PhysicalBase = SOC_REGISTERS_L4_PHYSICAL_BASE; in InitCache()
[all …]
/device/linaro/bootloader/OpenPlatformPkg/Platforms/TexasInstruments/BeagleBoard/Sec/
DCache.c42 ARM_MEMORY_REGION_DESCRIPTOR MemoryTable[5]; in InitCache() local
53 MemoryTable[0].PhysicalBase = MemoryBase; in InitCache()
54 MemoryTable[0].VirtualBase = MemoryBase; in InitCache()
55 MemoryTable[0].Length = MemoryLength; in InitCache()
56 MemoryTable[0].Attributes = (ARM_MEMORY_REGION_ATTRIBUTES)CacheAttributes; in InitCache()
59 MemoryTable[1].PhysicalBase = SOC_REGISTERS_L3_PHYSICAL_BASE; in InitCache()
60 MemoryTable[1].VirtualBase = SOC_REGISTERS_L3_PHYSICAL_BASE; in InitCache()
61 MemoryTable[1].Length = SOC_REGISTERS_L3_PHYSICAL_LENGTH; in InitCache()
62 MemoryTable[1].Attributes = SOC_REGISTERS_L3_ATTRIBUTES; in InitCache()
65 MemoryTable[2].PhysicalBase = SOC_REGISTERS_L4_PHYSICAL_BASE; in InitCache()
[all …]
/device/linaro/bootloader/edk2/ArmPkg/Library/ArmLib/ArmV7/
DArmV7Mmu.c266 IN ARM_MEMORY_REGION_DESCRIPTOR *MemoryTable, in ArmConfigureMmu() argument
294 while (MemoryTable->Length != 0) { in ArmConfigureMmu()
296 …UINTN)TranslationTable >= MemoryTable->PhysicalBase) && ((UINTN)TranslationTable <= MemoryTable->P… in ArmConfigureMmu()
297 TranslationTableAttribute = MemoryTable->Attributes; in ArmConfigureMmu()
300 FillTranslationTable (TranslationTable, MemoryTable); in ArmConfigureMmu()
301 MemoryTable++; in ArmConfigureMmu()
/device/linaro/bootloader/edk2/ArmPlatformPkg/MemoryInitPei/
DMemoryInitPeiLib.c31 IN ARM_MEMORY_REGION_DESCRIPTOR *MemoryTable in InitMmu() argument
41 Status = ArmConfigureMmu (MemoryTable, &TranslationTableBase, &TranslationTableSize); in InitMmu()
70 ARM_MEMORY_REGION_DESCRIPTOR *MemoryTable; in MemoryPeim() local
80 ArmPlatformGetVirtualMemoryMap (&MemoryTable); in MemoryPeim()
190 InitMmu (MemoryTable); in MemoryPeim()
/device/linaro/bootloader/edk2/ArmPkg/Library/ArmLib/AArch64/
DAArch64Mmu.c568 IN ARM_MEMORY_REGION_DESCRIPTOR *MemoryTable, in ArmConfigureMmu() argument
584 if(MemoryTable == NULL) { in ArmConfigureMmu()
585 ASSERT (MemoryTable != NULL); in ArmConfigureMmu()
590 MaxAddress = MemoryTable->PhysicalBase + MemoryTable->Length - 1; in ArmConfigureMmu()
591 MemoryTableEntry = MemoryTable; in ArmConfigureMmu()
691 while (MemoryTable->Length != 0) { in ArmConfigureMmu()
693 if (((UINTN)TranslationTable >= MemoryTable->PhysicalBase) && in ArmConfigureMmu()
694 ((UINTN)TranslationTable <= MemoryTable->PhysicalBase - 1 + MemoryTable->Length)) { in ArmConfigureMmu()
695 TranslationTableAttribute = MemoryTable->Attributes; in ArmConfigureMmu()
698 Status = FillTranslationTable (TranslationTable, MemoryTable); in ArmConfigureMmu()
[all …]
/device/linaro/bootloader/edk2/ArmVirtPkg/Library/ArmVirtMemoryInitPeiLib/
DArmVirtMemoryInitPeiLib.c35 ARM_MEMORY_REGION_DESCRIPTOR *MemoryTable; in InitMmu() local
41 ArmPlatformGetVirtualMemoryMap (&MemoryTable); in InitMmu()
45 Status = ArmConfigureMmu (MemoryTable, &TranslationTableBase, &TranslationTableSize); in InitMmu()
/device/linaro/bootloader/edk2/ArmPkg/Include/Library/
DArmLib.h365 IN ARM_MEMORY_REGION_DESCRIPTOR *MemoryTable,