]> git.proxmox.com Git - mirror_edk2.git/blobdiff - ArmPkg/ArmPkg.dec
NetworkPkg: Fix IPv6 boot failure in diff net segment issue
[mirror_edk2.git] / ArmPkg / ArmPkg.dec
index 87dbd11b867fa9097255175758a33e29d15dbbc9..75c238aa1e3d580318b941dc4d2eb7cbcb537cc2 100644 (file)
@@ -38,6 +38,7 @@
   UncachedMemoryAllocationLib|Include/Library/UncachedMemoryAllocationLib.h\r
   DefaultExceptionHandlerLib|Include/Library/DefaultExceptionHandlerLib.h\r
   ArmDisassemblerLib|Include/Library/ArmDisassemblerLib.h\r
+  ArmGicArchLib|Include/Library/ArmGicArchLib.h\r
 \r
 [Guids.common]\r
   gArmTokenSpaceGuid       = { 0xBB11ECFE, 0x820F, 0x4968, { 0xBB, 0xA6, 0xF7, 0x6A, 0xFE, 0x30, 0x25, 0x96 } }\r
@@ -59,7 +60,7 @@
   # On ARM Architecture with the Security Extension, the address for the\r
   # Vector Table can be mapped anywhere in the memory map. It means we can\r
   # point the Exception Vector Table to its location in CpuDxe.\r
-  # By default we copy the Vector Table at  PcdGet32(PcdCpuVectorBaseAddress)\r
+  # By default we copy the Vector Table at  PcdGet64(PcdCpuVectorBaseAddress)\r
   gArmTokenSpaceGuid.PcdRelocateVectorTable|TRUE|BOOLEAN|0x00000022\r
   # Set this PCD to TRUE if the Exception Vector is changed to add debugger support before\r
   # it has been configured by the CPU DXE\r
   # Define if the GICv3 controller should use the GICv2 legacy\r
   gArmTokenSpaceGuid.PcdArmGicV3WithV2Legacy|FALSE|BOOLEAN|0x00000042\r
 \r
+[PcdsFeatureFlag.ARM]\r
+  # Whether to map normal memory as non-shareable. FALSE is the safe choice, but\r
+  # TRUE may be appropriate to fix performance problems if you don't care about\r
+  # hardware coherency (i.e., no virtualization or cache coherent DMA)\r
+  gArmTokenSpaceGuid.PcdNormalMemoryNonshareableOverride|FALSE|BOOLEAN|0x00000043\r
+\r
 [PcdsFixedAtBuild.common]\r
   gArmTokenSpaceGuid.PcdTrustzoneSupport|FALSE|BOOLEAN|0x00000006\r
 \r
@@ -82,9 +89,8 @@
   gArmTokenSpaceGuid.PcdArmUncachedMemoryMask|0x0000000080000000|UINT64|0x00000002\r
   # This PCD will free the unallocated buffers if their size reach this threshold.\r
   # We set the default value to 512MB.\r
-  gArmTokenSpaceGuid.PcdArmFreeUncachedMemorySizeThreshold|0x20000000|UINT64|0x00000043\r
-  gArmTokenSpaceGuid.PcdArmCacheOperationThreshold|1024|UINT32|0x00000003\r
-  gArmTokenSpaceGuid.PcdCpuVectorBaseAddress|0xffff0000|UINT32|0x00000004\r
+  gArmTokenSpaceGuid.PcdArmFreeUncachedMemorySizeThreshold|0x20000000|UINT64|0x00000003\r
+  gArmTokenSpaceGuid.PcdCpuVectorBaseAddress|0xffff0000|UINT64|0x00000004\r
   gArmTokenSpaceGuid.PcdCpuResetAddress|0x00000000|UINT32|0x00000005\r
 \r
   #\r
   #\r
   # BdsLib\r
   #\r
-  gArmTokenSpaceGuid.PcdArmMachineType|0|UINT32|0x0000001E\r
   # The compressed Linux kernel is expected to be under 128MB from the beginning of the System Memory\r
   gArmTokenSpaceGuid.PcdArmLinuxKernelMaxOffset|0x08000000|UINT32|0x0000001F\r
   # Maximum file size for TFTP servers that do not support 'tsize' extension\r
   gArmTokenSpaceGuid.PcdGicRedistributorsBase|0|UINT32|0x0000000E\r
   gArmTokenSpaceGuid.PcdGicInterruptInterfaceBase|0|UINT32|0x0000000D\r
   gArmTokenSpaceGuid.PcdGicSgiIntId|0|UINT32|0x00000025\r
+\r
+  #\r
+  # Bases, sizes and translation offsets of IO and MMIO spaces, respectively.\r
+  # Note that "IO" is just another MMIO range that simulates IO space; there\r
+  # are no special instructions to access it.\r
+  #\r
+  # The base addresses PcdPciIoBase, PcdPciMmio32Base and PcdPciMmio64Base are\r
+  # specific to their containing address spaces. In order to get the physical\r
+  # address for the CPU, for a given access, the respective translation value\r
+  # has to be added.\r
+  #\r
+  # The translations always have to be initialized like this, using UINT64:\r
+  #\r
+  #   UINT64 IoCpuBase;     // mapping target in 64-bit cpu-physical space\r
+  #   UINT64 Mmio32CpuBase; // mapping target in 64-bit cpu-physical space\r
+  #   UINT64 Mmio64CpuBase; // mapping target in 64-bit cpu-physical space\r
+  #\r
+  #   PcdPciIoTranslation     = IoCpuBase     - PcdPciIoBase;\r
+  #   PcdPciMmio32Translation = Mmio32CpuBase - (UINT64)PcdPciMmio32Base;\r
+  #   PcdPciMmio64Translation = Mmio64CpuBase - PcdPciMmio64Base;\r
+  #\r
+  # because (a) the target address space (ie. the cpu-physical space) is\r
+  # 64-bit, and (b) the translation values are meant as offsets for *modular*\r
+  # arithmetic.\r
+  #\r
+  # Accordingly, the translation itself needs to be implemented as:\r
+  #\r
+  #   UINT64 UntranslatedIoAddress;     // input parameter\r
+  #   UINT32 UntranslatedMmio32Address; // input parameter\r
+  #   UINT64 UntranslatedMmio64Address; // input parameter\r
+  #\r
+  #   UINT64 TranslatedIoAddress;       // output parameter\r
+  #   UINT64 TranslatedMmio32Address;   // output parameter\r
+  #   UINT64 TranslatedMmio64Address;   // output parameter\r
+  #\r
+  #   TranslatedIoAddress     = UntranslatedIoAddress +\r
+  #                             PcdPciIoTranslation;\r
+  #   TranslatedMmio32Address = (UINT64)UntranslatedMmio32Address +\r
+  #                             PcdPciMmio32Translation;\r
+  #   TranslatedMmio64Address = UntranslatedMmio64Address +\r
+  #                             PcdPciMmio64Translation;\r
+  #\r
+  #  The modular arithmetic performed in UINT64 ensures that the translation\r
+  #  works correctly regardless of the relation between IoCpuBase and\r
+  #  PcdPciIoBase, Mmio32CpuBase and PcdPciMmio32Base, and Mmio64CpuBase and\r
+  #  PcdPciMmio64Base.\r
+  #\r
+  gArmTokenSpaceGuid.PcdPciIoBase|0x0|UINT64|0x00000050\r
+  gArmTokenSpaceGuid.PcdPciIoSize|0x0|UINT64|0x00000051\r
+  gArmTokenSpaceGuid.PcdPciIoTranslation|0x0|UINT64|0x00000052\r
+  gArmTokenSpaceGuid.PcdPciMmio32Base|0x0|UINT32|0x00000053\r
+  gArmTokenSpaceGuid.PcdPciMmio32Size|0x0|UINT32|0x00000054\r
+  gArmTokenSpaceGuid.PcdPciMmio32Translation|0x0|UINT64|0x00000055\r
+  gArmTokenSpaceGuid.PcdPciMmio64Base|0x0|UINT64|0x00000056\r
+  gArmTokenSpaceGuid.PcdPciMmio64Size|0x0|UINT64|0x00000057\r
+  gArmTokenSpaceGuid.PcdPciMmio64Translation|0x0|UINT64|0x00000058\r
+\r
+  #\r
+  # Inclusive range of allowed PCI buses.\r
+  #\r
+  gArmTokenSpaceGuid.PcdPciBusMin|0x0|UINT32|0x00000059\r
+  gArmTokenSpaceGuid.PcdPciBusMax|0x0|UINT32|0x0000005A\r