├── .gitignore ├── GalaxyA72 ├── AcpiTables │ ├── AcpiSsdtRootPci.asl │ ├── AcpiTables.inf │ ├── Dbg2.aslc │ ├── Dsdt.asl │ ├── Fadt.aslc │ ├── Gtdt.aslc │ ├── Madt.aslc │ ├── Spcr.aslc │ └── test │ │ ├── DBG2.aml │ │ ├── DSDT.aml │ │ ├── FACP.aml │ │ ├── GTDT.aml │ │ ├── IORT.aml │ │ ├── MADT.aml │ │ └── PPTT.aml ├── Binary │ ├── ChipInfo │ │ ├── ChipInfo.depex │ │ └── ChipInfo.efi │ ├── ClockDxe │ │ ├── ClockDxe.depex │ │ └── ClockDxe.efi │ ├── CmdDbDxe │ │ ├── CmdDbDxe.depex │ │ └── CmdDbDxe.efi │ ├── DALSys │ │ ├── DALSys.depex │ │ └── DALSys.efi │ ├── DALTLMM │ │ ├── DALTLMM.depex │ │ └── DALTLMM.efi │ ├── DDRInfoDxe │ │ ├── DDRInfoDxe.depex │ │ └── DDRInfoDxe.efi │ ├── HALIOMMU │ │ ├── HALIOMMU.depex │ │ └── HALIOMMU.efi │ ├── HWIODxeDriver │ │ ├── HWIODxeDriver.depex │ │ └── HWIODxeDriver.efi │ ├── NpaDxe │ │ ├── NpaDxe.depex │ │ └── NpaDxe.efi │ ├── PdcDxe │ │ ├── PdcDxe.depex │ │ └── PdcDxe.efi │ ├── PlatformInfoDxeDriver │ │ ├── PlatformInfoDxeDriver.depex │ │ └── PlatformInfoDxeDriver.efi │ ├── PmicDxe │ │ ├── PmicDxe.depex │ │ └── PmicDxe.efi │ ├── RpmhDxe │ │ ├── RpmhDxe.depex │ │ └── RpmhDxe.efi │ ├── SPMI │ │ ├── SPMI.depex │ │ └── SPMI.efi │ ├── ShmBridgeDxe │ │ ├── ShmBridgeDxe.depex │ │ └── ShmBridgeDxe.efi │ ├── SmemDxe │ │ ├── SmemDxe.depex │ │ └── SmemDxe.efi │ ├── UFSDxe │ │ ├── UFSDxe.depex │ │ └── UFSDxe.efi │ └── ULogDxe │ │ ├── ULogDxe.depex │ │ └── ULogDxe.efi ├── CommonDsc.dsc.inc ├── CommonFdf.fdf.inc ├── Drivers │ ├── GenericKeypadDeviceDxe │ │ ├── GenericKeypadDevice.c │ │ └── GenericKeypadDeviceDxe.inf │ ├── KeypadDxe │ │ ├── ComponentName.c │ │ ├── Keypad.c │ │ ├── Keypad.h │ │ ├── KeypadController.c │ │ ├── KeypadDxe.inf │ │ ├── KeypadTextIn.c │ │ └── Source.txt │ ├── LogoDxe │ │ ├── Logo.bmp │ │ ├── Logo.c │ │ ├── Logo.idf │ │ ├── Logo.inf │ │ ├── Logo.uni │ │ ├── LogoDxe.inf │ │ ├── LogoDxe.uni │ │ ├── LogoDxeExtra.uni │ │ └── LogoExtra.uni │ └── SmbiosPlatformDxe │ │ ├── SmbiosPlatformDxe.c │ │ └── SmbiosPlatformDxe.inf ├── GalaxyA72.dec ├── GalaxyA72.dsc ├── GalaxyA72.fdf ├── GalaxyA72Dxe │ ├── GalaxyA72Dxe.c │ ├── GalaxyA72Dxe.h │ └── GalaxyA72Dxe.inf ├── GalaxyA72_6G.dsc ├── GalaxyA72_8G.dsc ├── Include │ ├── ArmPlatform.h │ ├── Configuration │ │ ├── BootDevices.h │ │ └── DeviceMemoryMap.h │ ├── Library │ │ ├── AcpiPlatformUpdateLib.h │ │ ├── AslUpdateLib.h │ │ └── FrameBufferSerialPortLib.h │ ├── Protocol │ │ ├── EFIChipInfo.h │ │ ├── EFIChipInfoTypes.h │ │ ├── EFIPlatformInfo.h │ │ ├── EFIPlatformInfoTypes.h │ │ └── EFISmem.h │ └── Resources │ │ ├── FbColor.h │ │ └── font5x12.h ├── Library │ ├── AcpiPlatformUpdateLib │ │ ├── AcpiPlatformUpdateLib.c │ │ └── AcpiPlatformUpdateLib.inf │ ├── ArmMmuLib │ │ ├── AArch64 │ │ │ ├── ArmMmuLibCore.c │ │ │ ├── ArmMmuLibReplaceEntry.S │ │ │ └── ArmMmuPeiLibConstructor.c │ │ ├── Arm │ │ │ ├── ArmMmuLibCore.c │ │ │ ├── ArmMmuLibV7Support.S │ │ │ └── ArmMmuLibV7Support.asm │ │ ├── ArmMmuBaseLib.inf │ │ └── ArmMmuPeiLib.inf │ ├── DxeAslUpdateLib │ │ ├── DxeAslUpdateLib.c │ │ └── DxeAslUpdateLib.inf │ ├── FrameBufferSerialPortLib │ │ ├── FrameBufferSerialPortLib.c │ │ ├── FrameBufferSerialPortLib.h │ │ └── FrameBufferSerialPortLib.inf │ ├── GalaxyA72Lib │ │ ├── GalaxyA72.c │ │ ├── GalaxyA72Helper.S │ │ ├── GalaxyA72Lib.inf │ │ └── GalaxyA72Mem.c │ ├── InMemorySerialPortLib │ │ ├── InMemorySerialPortLib.c │ │ ├── InMemorySerialPortLib.inf │ │ └── InMemorySerialPortLib.uni │ ├── MemoryInitPeiLib │ │ ├── MemoryInitPeiLib.c │ │ └── PeiMemoryAllocationLib.inf │ ├── PlatformBootManagerLib │ │ ├── PlatformBm.c │ │ ├── PlatformBm.h │ │ └── PlatformBootManagerLib.inf │ └── PlatformPeiLib │ │ ├── PlatformPeiLib.c │ │ └── PlatformPeiLib.inf └── SimpleFbDxe │ ├── SimpleFbDxe.c │ └── SimpleFbDxe.inf ├── README.md ├── a72q.dtb └── firstrun.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/.gitignore -------------------------------------------------------------------------------- /GalaxyA72/AcpiTables/AcpiSsdtRootPci.asl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/AcpiTables/AcpiSsdtRootPci.asl -------------------------------------------------------------------------------- /GalaxyA72/AcpiTables/AcpiTables.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/AcpiTables/AcpiTables.inf -------------------------------------------------------------------------------- /GalaxyA72/AcpiTables/Dbg2.aslc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/AcpiTables/Dbg2.aslc -------------------------------------------------------------------------------- /GalaxyA72/AcpiTables/Dsdt.asl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/AcpiTables/Dsdt.asl -------------------------------------------------------------------------------- /GalaxyA72/AcpiTables/Fadt.aslc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/AcpiTables/Fadt.aslc -------------------------------------------------------------------------------- /GalaxyA72/AcpiTables/Gtdt.aslc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/AcpiTables/Gtdt.aslc -------------------------------------------------------------------------------- /GalaxyA72/AcpiTables/Madt.aslc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/AcpiTables/Madt.aslc -------------------------------------------------------------------------------- /GalaxyA72/AcpiTables/Spcr.aslc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/AcpiTables/Spcr.aslc -------------------------------------------------------------------------------- /GalaxyA72/AcpiTables/test/DBG2.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/AcpiTables/test/DBG2.aml -------------------------------------------------------------------------------- /GalaxyA72/AcpiTables/test/DSDT.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/AcpiTables/test/DSDT.aml -------------------------------------------------------------------------------- /GalaxyA72/AcpiTables/test/FACP.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/AcpiTables/test/FACP.aml -------------------------------------------------------------------------------- /GalaxyA72/AcpiTables/test/GTDT.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/AcpiTables/test/GTDT.aml -------------------------------------------------------------------------------- /GalaxyA72/AcpiTables/test/IORT.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/AcpiTables/test/IORT.aml -------------------------------------------------------------------------------- /GalaxyA72/AcpiTables/test/MADT.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/AcpiTables/test/MADT.aml -------------------------------------------------------------------------------- /GalaxyA72/AcpiTables/test/PPTT.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/AcpiTables/test/PPTT.aml -------------------------------------------------------------------------------- /GalaxyA72/Binary/ChipInfo/ChipInfo.depex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Binary/ChipInfo/ChipInfo.depex -------------------------------------------------------------------------------- /GalaxyA72/Binary/ChipInfo/ChipInfo.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Binary/ChipInfo/ChipInfo.efi -------------------------------------------------------------------------------- /GalaxyA72/Binary/ClockDxe/ClockDxe.depex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Binary/ClockDxe/ClockDxe.depex -------------------------------------------------------------------------------- /GalaxyA72/Binary/ClockDxe/ClockDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Binary/ClockDxe/ClockDxe.efi -------------------------------------------------------------------------------- /GalaxyA72/Binary/CmdDbDxe/CmdDbDxe.depex: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /GalaxyA72/Binary/CmdDbDxe/CmdDbDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Binary/CmdDbDxe/CmdDbDxe.efi -------------------------------------------------------------------------------- /GalaxyA72/Binary/DALSys/DALSys.depex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Binary/DALSys/DALSys.depex -------------------------------------------------------------------------------- /GalaxyA72/Binary/DALSys/DALSys.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Binary/DALSys/DALSys.efi -------------------------------------------------------------------------------- /GalaxyA72/Binary/DALTLMM/DALTLMM.depex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Binary/DALTLMM/DALTLMM.depex -------------------------------------------------------------------------------- /GalaxyA72/Binary/DALTLMM/DALTLMM.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Binary/DALTLMM/DALTLMM.efi -------------------------------------------------------------------------------- /GalaxyA72/Binary/DDRInfoDxe/DDRInfoDxe.depex: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /GalaxyA72/Binary/DDRInfoDxe/DDRInfoDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Binary/DDRInfoDxe/DDRInfoDxe.efi -------------------------------------------------------------------------------- /GalaxyA72/Binary/HALIOMMU/HALIOMMU.depex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Binary/HALIOMMU/HALIOMMU.depex -------------------------------------------------------------------------------- /GalaxyA72/Binary/HALIOMMU/HALIOMMU.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Binary/HALIOMMU/HALIOMMU.efi -------------------------------------------------------------------------------- /GalaxyA72/Binary/HWIODxeDriver/HWIODxeDriver.depex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Binary/HWIODxeDriver/HWIODxeDriver.depex -------------------------------------------------------------------------------- /GalaxyA72/Binary/HWIODxeDriver/HWIODxeDriver.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Binary/HWIODxeDriver/HWIODxeDriver.efi -------------------------------------------------------------------------------- /GalaxyA72/Binary/NpaDxe/NpaDxe.depex: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /GalaxyA72/Binary/NpaDxe/NpaDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Binary/NpaDxe/NpaDxe.efi -------------------------------------------------------------------------------- /GalaxyA72/Binary/PdcDxe/PdcDxe.depex: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /GalaxyA72/Binary/PdcDxe/PdcDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Binary/PdcDxe/PdcDxe.efi -------------------------------------------------------------------------------- /GalaxyA72/Binary/PlatformInfoDxeDriver/PlatformInfoDxeDriver.depex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Binary/PlatformInfoDxeDriver/PlatformInfoDxeDriver.depex -------------------------------------------------------------------------------- /GalaxyA72/Binary/PlatformInfoDxeDriver/PlatformInfoDxeDriver.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Binary/PlatformInfoDxeDriver/PlatformInfoDxeDriver.efi -------------------------------------------------------------------------------- /GalaxyA72/Binary/PmicDxe/PmicDxe.depex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Binary/PmicDxe/PmicDxe.depex -------------------------------------------------------------------------------- /GalaxyA72/Binary/PmicDxe/PmicDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Binary/PmicDxe/PmicDxe.efi -------------------------------------------------------------------------------- /GalaxyA72/Binary/RpmhDxe/RpmhDxe.depex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Binary/RpmhDxe/RpmhDxe.depex -------------------------------------------------------------------------------- /GalaxyA72/Binary/RpmhDxe/RpmhDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Binary/RpmhDxe/RpmhDxe.efi -------------------------------------------------------------------------------- /GalaxyA72/Binary/SPMI/SPMI.depex: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /GalaxyA72/Binary/SPMI/SPMI.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Binary/SPMI/SPMI.efi -------------------------------------------------------------------------------- /GalaxyA72/Binary/ShmBridgeDxe/ShmBridgeDxe.depex: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /GalaxyA72/Binary/ShmBridgeDxe/ShmBridgeDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Binary/ShmBridgeDxe/ShmBridgeDxe.efi -------------------------------------------------------------------------------- /GalaxyA72/Binary/SmemDxe/SmemDxe.depex: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /GalaxyA72/Binary/SmemDxe/SmemDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Binary/SmemDxe/SmemDxe.efi -------------------------------------------------------------------------------- /GalaxyA72/Binary/UFSDxe/UFSDxe.depex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Binary/UFSDxe/UFSDxe.depex -------------------------------------------------------------------------------- /GalaxyA72/Binary/UFSDxe/UFSDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Binary/UFSDxe/UFSDxe.efi -------------------------------------------------------------------------------- /GalaxyA72/Binary/ULogDxe/ULogDxe.depex: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /GalaxyA72/Binary/ULogDxe/ULogDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Binary/ULogDxe/ULogDxe.efi -------------------------------------------------------------------------------- /GalaxyA72/CommonDsc.dsc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/CommonDsc.dsc.inc -------------------------------------------------------------------------------- /GalaxyA72/CommonFdf.fdf.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/CommonFdf.fdf.inc -------------------------------------------------------------------------------- /GalaxyA72/Drivers/GenericKeypadDeviceDxe/GenericKeypadDevice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Drivers/GenericKeypadDeviceDxe/GenericKeypadDevice.c -------------------------------------------------------------------------------- /GalaxyA72/Drivers/GenericKeypadDeviceDxe/GenericKeypadDeviceDxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Drivers/GenericKeypadDeviceDxe/GenericKeypadDeviceDxe.inf -------------------------------------------------------------------------------- /GalaxyA72/Drivers/KeypadDxe/ComponentName.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Drivers/KeypadDxe/ComponentName.c -------------------------------------------------------------------------------- /GalaxyA72/Drivers/KeypadDxe/Keypad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Drivers/KeypadDxe/Keypad.c -------------------------------------------------------------------------------- /GalaxyA72/Drivers/KeypadDxe/Keypad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Drivers/KeypadDxe/Keypad.h -------------------------------------------------------------------------------- /GalaxyA72/Drivers/KeypadDxe/KeypadController.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Drivers/KeypadDxe/KeypadController.c -------------------------------------------------------------------------------- /GalaxyA72/Drivers/KeypadDxe/KeypadDxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Drivers/KeypadDxe/KeypadDxe.inf -------------------------------------------------------------------------------- /GalaxyA72/Drivers/KeypadDxe/KeypadTextIn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Drivers/KeypadDxe/KeypadTextIn.c -------------------------------------------------------------------------------- /GalaxyA72/Drivers/KeypadDxe/Source.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Drivers/KeypadDxe/Source.txt -------------------------------------------------------------------------------- /GalaxyA72/Drivers/LogoDxe/Logo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Drivers/LogoDxe/Logo.bmp -------------------------------------------------------------------------------- /GalaxyA72/Drivers/LogoDxe/Logo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Drivers/LogoDxe/Logo.c -------------------------------------------------------------------------------- /GalaxyA72/Drivers/LogoDxe/Logo.idf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Drivers/LogoDxe/Logo.idf -------------------------------------------------------------------------------- /GalaxyA72/Drivers/LogoDxe/Logo.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Drivers/LogoDxe/Logo.inf -------------------------------------------------------------------------------- /GalaxyA72/Drivers/LogoDxe/Logo.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Drivers/LogoDxe/Logo.uni -------------------------------------------------------------------------------- /GalaxyA72/Drivers/LogoDxe/LogoDxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Drivers/LogoDxe/LogoDxe.inf -------------------------------------------------------------------------------- /GalaxyA72/Drivers/LogoDxe/LogoDxe.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Drivers/LogoDxe/LogoDxe.uni -------------------------------------------------------------------------------- /GalaxyA72/Drivers/LogoDxe/LogoDxeExtra.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Drivers/LogoDxe/LogoDxeExtra.uni -------------------------------------------------------------------------------- /GalaxyA72/Drivers/LogoDxe/LogoExtra.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Drivers/LogoDxe/LogoExtra.uni -------------------------------------------------------------------------------- /GalaxyA72/Drivers/SmbiosPlatformDxe/SmbiosPlatformDxe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Drivers/SmbiosPlatformDxe/SmbiosPlatformDxe.c -------------------------------------------------------------------------------- /GalaxyA72/Drivers/SmbiosPlatformDxe/SmbiosPlatformDxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Drivers/SmbiosPlatformDxe/SmbiosPlatformDxe.inf -------------------------------------------------------------------------------- /GalaxyA72/GalaxyA72.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/GalaxyA72.dec -------------------------------------------------------------------------------- /GalaxyA72/GalaxyA72.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/GalaxyA72.dsc -------------------------------------------------------------------------------- /GalaxyA72/GalaxyA72.fdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/GalaxyA72.fdf -------------------------------------------------------------------------------- /GalaxyA72/GalaxyA72Dxe/GalaxyA72Dxe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/GalaxyA72Dxe/GalaxyA72Dxe.c -------------------------------------------------------------------------------- /GalaxyA72/GalaxyA72Dxe/GalaxyA72Dxe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/GalaxyA72Dxe/GalaxyA72Dxe.h -------------------------------------------------------------------------------- /GalaxyA72/GalaxyA72Dxe/GalaxyA72Dxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/GalaxyA72Dxe/GalaxyA72Dxe.inf -------------------------------------------------------------------------------- /GalaxyA72/GalaxyA72_6G.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/GalaxyA72_6G.dsc -------------------------------------------------------------------------------- /GalaxyA72/GalaxyA72_8G.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/GalaxyA72_8G.dsc -------------------------------------------------------------------------------- /GalaxyA72/Include/ArmPlatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Include/ArmPlatform.h -------------------------------------------------------------------------------- /GalaxyA72/Include/Configuration/BootDevices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Include/Configuration/BootDevices.h -------------------------------------------------------------------------------- /GalaxyA72/Include/Configuration/DeviceMemoryMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Include/Configuration/DeviceMemoryMap.h -------------------------------------------------------------------------------- /GalaxyA72/Include/Library/AcpiPlatformUpdateLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Include/Library/AcpiPlatformUpdateLib.h -------------------------------------------------------------------------------- /GalaxyA72/Include/Library/AslUpdateLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Include/Library/AslUpdateLib.h -------------------------------------------------------------------------------- /GalaxyA72/Include/Library/FrameBufferSerialPortLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Include/Library/FrameBufferSerialPortLib.h -------------------------------------------------------------------------------- /GalaxyA72/Include/Protocol/EFIChipInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Include/Protocol/EFIChipInfo.h -------------------------------------------------------------------------------- /GalaxyA72/Include/Protocol/EFIChipInfoTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Include/Protocol/EFIChipInfoTypes.h -------------------------------------------------------------------------------- /GalaxyA72/Include/Protocol/EFIPlatformInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Include/Protocol/EFIPlatformInfo.h -------------------------------------------------------------------------------- /GalaxyA72/Include/Protocol/EFIPlatformInfoTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Include/Protocol/EFIPlatformInfoTypes.h -------------------------------------------------------------------------------- /GalaxyA72/Include/Protocol/EFISmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Include/Protocol/EFISmem.h -------------------------------------------------------------------------------- /GalaxyA72/Include/Resources/FbColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Include/Resources/FbColor.h -------------------------------------------------------------------------------- /GalaxyA72/Include/Resources/font5x12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Include/Resources/font5x12.h -------------------------------------------------------------------------------- /GalaxyA72/Library/AcpiPlatformUpdateLib/AcpiPlatformUpdateLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Library/AcpiPlatformUpdateLib/AcpiPlatformUpdateLib.c -------------------------------------------------------------------------------- /GalaxyA72/Library/AcpiPlatformUpdateLib/AcpiPlatformUpdateLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Library/AcpiPlatformUpdateLib/AcpiPlatformUpdateLib.inf -------------------------------------------------------------------------------- /GalaxyA72/Library/ArmMmuLib/AArch64/ArmMmuLibCore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Library/ArmMmuLib/AArch64/ArmMmuLibCore.c -------------------------------------------------------------------------------- /GalaxyA72/Library/ArmMmuLib/AArch64/ArmMmuLibReplaceEntry.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Library/ArmMmuLib/AArch64/ArmMmuLibReplaceEntry.S -------------------------------------------------------------------------------- /GalaxyA72/Library/ArmMmuLib/AArch64/ArmMmuPeiLibConstructor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Library/ArmMmuLib/AArch64/ArmMmuPeiLibConstructor.c -------------------------------------------------------------------------------- /GalaxyA72/Library/ArmMmuLib/Arm/ArmMmuLibCore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Library/ArmMmuLib/Arm/ArmMmuLibCore.c -------------------------------------------------------------------------------- /GalaxyA72/Library/ArmMmuLib/Arm/ArmMmuLibV7Support.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Library/ArmMmuLib/Arm/ArmMmuLibV7Support.S -------------------------------------------------------------------------------- /GalaxyA72/Library/ArmMmuLib/Arm/ArmMmuLibV7Support.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Library/ArmMmuLib/Arm/ArmMmuLibV7Support.asm -------------------------------------------------------------------------------- /GalaxyA72/Library/ArmMmuLib/ArmMmuBaseLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Library/ArmMmuLib/ArmMmuBaseLib.inf -------------------------------------------------------------------------------- /GalaxyA72/Library/ArmMmuLib/ArmMmuPeiLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Library/ArmMmuLib/ArmMmuPeiLib.inf -------------------------------------------------------------------------------- /GalaxyA72/Library/DxeAslUpdateLib/DxeAslUpdateLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Library/DxeAslUpdateLib/DxeAslUpdateLib.c -------------------------------------------------------------------------------- /GalaxyA72/Library/DxeAslUpdateLib/DxeAslUpdateLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Library/DxeAslUpdateLib/DxeAslUpdateLib.inf -------------------------------------------------------------------------------- /GalaxyA72/Library/FrameBufferSerialPortLib/FrameBufferSerialPortLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Library/FrameBufferSerialPortLib/FrameBufferSerialPortLib.c -------------------------------------------------------------------------------- /GalaxyA72/Library/FrameBufferSerialPortLib/FrameBufferSerialPortLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Library/FrameBufferSerialPortLib/FrameBufferSerialPortLib.h -------------------------------------------------------------------------------- /GalaxyA72/Library/FrameBufferSerialPortLib/FrameBufferSerialPortLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Library/FrameBufferSerialPortLib/FrameBufferSerialPortLib.inf -------------------------------------------------------------------------------- /GalaxyA72/Library/GalaxyA72Lib/GalaxyA72.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Library/GalaxyA72Lib/GalaxyA72.c -------------------------------------------------------------------------------- /GalaxyA72/Library/GalaxyA72Lib/GalaxyA72Helper.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Library/GalaxyA72Lib/GalaxyA72Helper.S -------------------------------------------------------------------------------- /GalaxyA72/Library/GalaxyA72Lib/GalaxyA72Lib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Library/GalaxyA72Lib/GalaxyA72Lib.inf -------------------------------------------------------------------------------- /GalaxyA72/Library/GalaxyA72Lib/GalaxyA72Mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Library/GalaxyA72Lib/GalaxyA72Mem.c -------------------------------------------------------------------------------- /GalaxyA72/Library/InMemorySerialPortLib/InMemorySerialPortLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Library/InMemorySerialPortLib/InMemorySerialPortLib.c -------------------------------------------------------------------------------- /GalaxyA72/Library/InMemorySerialPortLib/InMemorySerialPortLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Library/InMemorySerialPortLib/InMemorySerialPortLib.inf -------------------------------------------------------------------------------- /GalaxyA72/Library/InMemorySerialPortLib/InMemorySerialPortLib.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Library/InMemorySerialPortLib/InMemorySerialPortLib.uni -------------------------------------------------------------------------------- /GalaxyA72/Library/MemoryInitPeiLib/MemoryInitPeiLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Library/MemoryInitPeiLib/MemoryInitPeiLib.c -------------------------------------------------------------------------------- /GalaxyA72/Library/MemoryInitPeiLib/PeiMemoryAllocationLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Library/MemoryInitPeiLib/PeiMemoryAllocationLib.inf -------------------------------------------------------------------------------- /GalaxyA72/Library/PlatformBootManagerLib/PlatformBm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Library/PlatformBootManagerLib/PlatformBm.c -------------------------------------------------------------------------------- /GalaxyA72/Library/PlatformBootManagerLib/PlatformBm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Library/PlatformBootManagerLib/PlatformBm.h -------------------------------------------------------------------------------- /GalaxyA72/Library/PlatformBootManagerLib/PlatformBootManagerLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Library/PlatformBootManagerLib/PlatformBootManagerLib.inf -------------------------------------------------------------------------------- /GalaxyA72/Library/PlatformPeiLib/PlatformPeiLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Library/PlatformPeiLib/PlatformPeiLib.c -------------------------------------------------------------------------------- /GalaxyA72/Library/PlatformPeiLib/PlatformPeiLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/Library/PlatformPeiLib/PlatformPeiLib.inf -------------------------------------------------------------------------------- /GalaxyA72/SimpleFbDxe/SimpleFbDxe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/SimpleFbDxe/SimpleFbDxe.c -------------------------------------------------------------------------------- /GalaxyA72/SimpleFbDxe/SimpleFbDxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/GalaxyA72/SimpleFbDxe/SimpleFbDxe.inf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/README.md -------------------------------------------------------------------------------- /a72q.dtb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/a72q.dtb -------------------------------------------------------------------------------- /firstrun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/map220v/edk2-a72q/HEAD/firstrun.sh --------------------------------------------------------------------------------