2017-09-20 22:24:54 +00:00
|
|
|
diff --git a/MdeModulePkg/Core/Dxe/DxeMain/DxeMain.c b/MdeModulePkg/Core/Dxe/DxeMain/DxeMain.c
|
2017-10-19 20:04:14 +00:00
|
|
|
index 91e94a7..027f039 100644
|
2017-09-20 22:24:54 +00:00
|
|
|
--- a/MdeModulePkg/Core/Dxe/DxeMain/DxeMain.c
|
|
|
|
+++ b/MdeModulePkg/Core/Dxe/DxeMain/DxeMain.c
|
2017-09-22 23:13:23 +00:00
|
|
|
@@ -14,6 +14,39 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
|
|
|
|
|
|
#include "DxeMain.h"
|
|
|
|
|
|
|
|
+#include <sys/io.h>
|
|
|
|
+#define PORT 0x3f8
|
|
|
|
+
|
|
|
|
+static int is_transmit_empty() {
|
|
|
|
+ return inb(PORT + 5) & 0x20;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+void serial_char(char a) {
|
|
|
|
+ outb(a, PORT);
|
|
|
|
+ while (is_transmit_empty() == 0);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+void serial_string(const char * s)
|
|
|
|
+{
|
|
|
|
+ while(*s)
|
|
|
|
+ serial_char(*s++);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+void serial_hex(unsigned long x, unsigned digits)
|
|
|
|
+{
|
|
|
|
+ while(digits-- > 0)
|
|
|
|
+ {
|
|
|
|
+ unsigned d = (x >> (digits * 4)) & 0xF;
|
|
|
|
+ if (d >= 0xA)
|
|
|
|
+ serial_char(d + 'A' - 0xA);
|
|
|
|
+ else
|
|
|
|
+ serial_char(d + '0');
|
|
|
|
+ }
|
|
|
|
+ serial_char('\r');
|
|
|
|
+ serial_char('\n');
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+
|
|
|
|
//
|
|
|
|
// DXE Core Global Variables for Protocols from PEI
|
|
|
|
//
|
2017-10-19 20:04:14 +00:00
|
|
|
@@ -283,7 +316,12 @@ DxeMain (
|
2017-09-22 23:13:23 +00:00
|
|
|
gDxeCoreRT = AllocateRuntimeCopyPool (sizeof (EFI_RUNTIME_SERVICES), &mEfiRuntimeServicesTableTemplate);
|
|
|
|
ASSERT (gDxeCoreRT != NULL);
|
|
|
|
|
|
|
|
+
|
|
|
|
+ // Set our vendor string and make sure there is at least a few pages
|
|
|
|
+ // available in low memory for the SMP trampoline.
|
|
|
|
gDxeCoreST->RuntimeServices = gDxeCoreRT;
|
|
|
|
+ gDxeCoreST->FirmwareVendor = L"Heads/NERF";
|
|
|
|
+ gDxeCoreST->FirmwareRevision = 1337;
|
|
|
|
|
|
|
|
//
|
|
|
|
// Start the Image Services.
|
2017-10-19 20:04:14 +00:00
|
|
|
@@ -297,6 +335,19 @@ DxeMain (
|
2017-09-22 23:13:23 +00:00
|
|
|
Status = CoreInitializeGcdServices (&HobStart, MemoryBaseAddress, MemoryLength);
|
|
|
|
ASSERT_EFI_ERROR (Status);
|
|
|
|
|
2017-10-19 20:04:14 +00:00
|
|
|
+/*
|
2017-09-22 23:13:23 +00:00
|
|
|
+ // free up the low memory for Linux's SMP trampoline
|
|
|
|
+ // otherwise bad things happen...
|
2017-10-19 20:04:14 +00:00
|
|
|
+ // TODO: find out how to do this the right way, can't kexec until it works
|
2017-09-22 23:13:23 +00:00
|
|
|
+ CoreRemoveMemorySpace (0x10000, 0x10000);
|
|
|
|
+ CoreAddMemorySpace(
|
|
|
|
+ EfiGcdMemoryTypeSystemMemory,
|
|
|
|
+ 0x10000,
|
|
|
|
+ 0x10000,
|
|
|
|
+ 0
|
|
|
|
+ );
|
2017-10-19 20:04:14 +00:00
|
|
|
+*/
|
2017-09-22 23:13:23 +00:00
|
|
|
+
|
|
|
|
//
|
|
|
|
// Call constructor for all libraries
|
|
|
|
//
|
|
|
|
@@ -743,6 +794,7 @@ CoreExitBootServices (
|
2017-09-20 22:24:54 +00:00
|
|
|
//
|
|
|
|
// Disable Timer
|
|
|
|
//
|
|
|
|
+ if(gTimer)
|
|
|
|
gTimer->SetTimerPeriod (gTimer, 0);
|
|
|
|
|
|
|
|
//
|
2017-09-22 23:13:23 +00:00
|
|
|
@@ -780,6 +832,7 @@ CoreExitBootServices (
|
2017-09-20 22:24:54 +00:00
|
|
|
//
|
|
|
|
// Disable CPU Interrupts
|
|
|
|
//
|
|
|
|
+ if(gCpu)
|
|
|
|
gCpu->DisableInterrupt (gCpu);
|
|
|
|
|
|
|
|
MemoryProtectionExitBootServicesCallback();
|
|
|
|
diff --git a/MdeModulePkg/Core/Dxe/Misc/MemoryProtection.c b/MdeModulePkg/Core/Dxe/Misc/MemoryProtection.c
|
|
|
|
index a73c4cc..2c08b81 100644
|
|
|
|
--- a/MdeModulePkg/Core/Dxe/Misc/MemoryProtection.c
|
|
|
|
+++ b/MdeModulePkg/Core/Dxe/Misc/MemoryProtection.c
|
|
|
|
@@ -232,7 +232,7 @@ SetUefiImageMemoryAttributes (
|
|
|
|
|
|
|
|
DEBUG ((DEBUG_INFO, "SetUefiImageMemoryAttributes - 0x%016lx - 0x%016lx (0x%016lx)\n", BaseAddress, Length, FinalAttributes));
|
|
|
|
|
|
|
|
- ASSERT(gCpu != NULL);
|
|
|
|
+ if(gCpu)
|
|
|
|
gCpu->SetMemoryAttributes (gCpu, BaseAddress, Length, FinalAttributes);
|
|
|
|
}
|
|
|
|
|
2017-10-19 20:04:14 +00:00
|
|
|
diff --git a/MdeModulePkg/MdeModulePkg.dsc b/MdeModulePkg/MdeModulePkg.dsc
|
|
|
|
index ad85776..5b68318 100644
|
|
|
|
--- a/MdeModulePkg/MdeModulePkg.dsc
|
|
|
|
+++ b/MdeModulePkg/MdeModulePkg.dsc
|
|
|
|
@@ -76,7 +76,7 @@
|
|
|
|
DpcLib|MdeModulePkg/Library/DxeDpcLib/DxeDpcLib.inf
|
|
|
|
SecurityManagementLib|MdeModulePkg/Library/DxeSecurityManagementLib/DxeSecurityManagementLib.inf
|
|
|
|
TimerLib|MdePkg/Library/BaseTimerLibNullTemplate/BaseTimerLibNullTemplate.inf
|
|
|
|
- SerialPortLib|MdePkg/Library/BaseSerialPortLibNull/BaseSerialPortLibNull.inf
|
|
|
|
+ SerialPortLib|MdeModulePkg/Library/BaseSerialPortLib16550/BaseSerialPortLib16550.inf
|
|
|
|
CapsuleLib|MdeModulePkg/Library/DxeCapsuleLibNull/DxeCapsuleLibNull.inf
|
|
|
|
PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
|
|
|
|
PalLib|MdePkg/Library/BasePalLibNull/BasePalLibNull.inf
|
|
|
|
@@ -85,7 +85,7 @@
|
|
|
|
#
|
|
|
|
# Misc
|
|
|
|
#
|
|
|
|
- DebugLib|MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf
|
|
|
|
+ DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
|
|
|
|
DebugPrintErrorLevelLib|MdePkg/Library/BaseDebugPrintErrorLevelLib/BaseDebugPrintErrorLevelLib.inf
|
|
|
|
ReportStatusCodeLib|MdePkg/Library/BaseReportStatusCodeLibNull/BaseReportStatusCodeLibNull.inf
|
|
|
|
PeCoffExtraActionLib|MdePkg/Library/BasePeCoffExtraActionLibNull/BasePeCoffExtraActionLibNull.inf
|
|
|
|
@@ -135,7 +135,7 @@
|
|
|
|
[LibraryClasses.common.DXE_RUNTIME_DRIVER]
|
|
|
|
HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf
|
|
|
|
MemoryAllocationLib|MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf
|
|
|
|
- DebugLib|MdePkg/Library/UefiDebugLibConOut/UefiDebugLibConOut.inf
|
|
|
|
+ DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
|
|
|
|
LockBoxLib|MdeModulePkg/Library/SmmLockBoxLib/SmmLockBoxDxeLib.inf
|
|
|
|
CapsuleLib|MdeModulePkg/Library/DxeCapsuleLibFmp/DxeRuntimeCapsuleLib.inf
|
|
|
|
|
|
|
|
@@ -148,7 +148,7 @@
|
|
|
|
|
|
|
|
[LibraryClasses.common.DXE_SMM_DRIVER]
|
|
|
|
HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf
|
|
|
|
- DebugLib|MdePkg/Library/UefiDebugLibConOut/UefiDebugLibConOut.inf
|
|
|
|
+ DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
|
|
|
|
MemoryAllocationLib|MdePkg/Library/SmmMemoryAllocationLib/SmmMemoryAllocationLib.inf
|
|
|
|
SmmServicesTableLib|MdePkg/Library/SmmServicesTableLib/SmmServicesTableLib.inf
|
|
|
|
LockBoxLib|MdeModulePkg/Library/SmmLockBoxLib/SmmLockBoxSmmLib.inf
|
|
|
|
@@ -157,13 +157,13 @@
|
|
|
|
[LibraryClasses.common.UEFI_DRIVER]
|
|
|
|
HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf
|
|
|
|
MemoryAllocationLib|MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf
|
|
|
|
- DebugLib|MdePkg/Library/UefiDebugLibConOut/UefiDebugLibConOut.inf
|
|
|
|
+ DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
|
|
|
|
LockBoxLib|MdeModulePkg/Library/SmmLockBoxLib/SmmLockBoxDxeLib.inf
|
|
|
|
|
|
|
|
[LibraryClasses.common.UEFI_APPLICATION]
|
|
|
|
HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf
|
|
|
|
MemoryAllocationLib|MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf
|
|
|
|
- DebugLib|MdePkg/Library/UefiDebugLibStdErr/UefiDebugLibStdErr.inf
|
|
|
|
+ DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
|
|
|
|
|
|
|
|
[LibraryClasses.ARM, LibraryClasses.AARCH64]
|
|
|
|
ArmLib|ArmPkg/Library/ArmLib/ArmBaseLib.inf
|
|
|
|
@@ -193,7 +193,8 @@
|
|
|
|
gEfiMdeModulePkgTokenSpaceGuid.PcdDevicePathSupportDevicePathToText|FALSE
|
|
|
|
|
|
|
|
[PcdsFixedAtBuild]
|
|
|
|
- gEfiMdePkgTokenSpaceGuid.PcdDebugPropertyMask|0x0f
|
|
|
|
+ gEfiMdePkgTokenSpaceGuid.PcdDebugPropertyMask|0xff
|
|
|
|
+ gEfiMdePkgTokenSpaceGuid.PcdDebugPrintErrorLevel|0x800800cf
|
|
|
|
gEfiMdePkgTokenSpaceGuid.PcdReportStatusCodePropertyMask|0x06
|
|
|
|
gEfiMdeModulePkgTokenSpaceGuid.PcdMaxSizeNonPopulateCapsule|0x0
|
|
|
|
gEfiMdeModulePkgTokenSpaceGuid.PcdMaxSizePopulateCapsule|0x0
|
|
|
|
diff --git a/MdePkg/MdePkg.dsc b/MdePkg/MdePkg.dsc
|
|
|
|
index 8648dfa..9905200 100644
|
|
|
|
--- a/MdePkg/MdePkg.dsc
|
|
|
|
+++ b/MdePkg/MdePkg.dsc
|
|
|
|
@@ -29,7 +29,7 @@
|
|
|
|
|
|
|
|
[PcdsFixedAtBuild]
|
|
|
|
gEfiMdePkgTokenSpaceGuid.PcdDebugPropertyMask|0x0f
|
|
|
|
- gEfiMdePkgTokenSpaceGuid.PcdDebugPrintErrorLevel|0x80000000
|
|
|
|
+ gEfiMdePkgTokenSpaceGuid.PcdDebugPrintErrorLevel|0x800800cf
|
|
|
|
gEfiMdePkgTokenSpaceGuid.PcdPciExpressBaseAddress|0xE0000000
|
|
|
|
|
|
|
|
[PcdsFixedAtBuild.IPF]
|
2017-09-20 22:24:54 +00:00
|
|
|
--- /dev/null 2017-09-19 09:53:09.766660422 -0400
|
2017-10-19 20:04:14 +00:00
|
|
|
+++ ./Makefile 2017-10-11 18:19:17.776756265 -0400
|
2017-09-20 22:24:54 +00:00
|
|
|
@@ -0,0 +1,35 @@
|
|
|
|
+# Wrapper around the edk2 "build" script to generate
|
|
|
|
+# the few files that we actually want and avoid rebuilding
|
|
|
|
+# if we don't have to.
|
|
|
|
+
|
|
|
|
+PWD := $(shell pwd)
|
|
|
|
+EDK2_OUTPUT_DIR := $(PWD)/Build/MdeModule/DEBUG_GCC5/X64/MdeModulePkg/Core
|
|
|
|
+EDK2_BIN_DIR := $(PWD)/BaseTools/BinWrappers/PosixLike
|
|
|
|
+
|
|
|
|
+export PATH := $(EDK2_BIN_DIR):$(PATH)
|
|
|
|
+export CONFIG_PATH := $(PWD)/Conf
|
|
|
|
+export EDK_TOOLS_PATH := $(PWD)/BaseTools
|
|
|
|
+export WORKSPACE := $(PWD)
|
|
|
|
+
|
|
|
|
+EDK2_BINS += Dxe/DxeMain/DEBUG/DxeCore.efi
|
|
|
|
+EDK2_BINS += RuntimeDxe/RuntimeDxe/DEBUG/RuntimeDxe.efi
|
|
|
|
+
|
|
|
|
+EDK2_OUTPUTS = $(addprefix $(EDK2_OUTPUT_DIR)/,$(EDK2_BINS))
|
|
|
|
+
|
|
|
|
+# build takes too long, so we check to see if our executables exist
|
|
|
|
+# before we start a build. run the clean target if they must be rebuilt
|
|
|
|
+all: $(EDK2_OUTPUTS)
|
|
|
|
+ ls -Fla $(EDK2_OUTPUTS)
|
|
|
|
+ cp -a $(EDK2_OUTPUTS) .
|
|
|
|
+
|
|
|
|
+$(EDK2_OUTPUTS):
|
|
|
|
+ build
|
|
|
|
+
|
|
|
|
+build:
|
|
|
|
+ build
|
|
|
|
+
|
|
|
|
+clean:
|
|
|
|
+ $(RM) $(EDK2_OUTPUTS)
|
|
|
|
+
|
|
|
|
+real-clean: clean
|
|
|
|
+ build clean
|