├── .gitignore ├── README.md ├── device_specific ├── It's actually rk3399.dtb └── polaris.dtb └── sdm845Pkg ├── AcpiTables └── 3399 │ ├── DBG2.aml │ ├── DBG2.asl │ ├── DSDT.aml │ ├── DSDT.asl │ ├── FACS.aml │ ├── FACS.asl │ ├── FADT.aml │ ├── FADT.asl │ ├── GTDT.aml │ ├── GTDT.asl │ ├── MADT.aml │ └── MADT.asl ├── CommonDsc.dsc.inc ├── CommonDsc.dsc.inc_debug ├── CommonFdf.fdf.inc ├── Drivers ├── DwEmmcDxe │ ├── DwEmmc.h │ ├── DwEmmcDxe.c │ ├── DwEmmcDxe.dec │ └── DwEmmcDxe.inf ├── 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 ├── MmcDxe │ ├── ComponentName.c │ ├── Diagnostics.c │ ├── Mmc.c │ ├── Mmc.h │ ├── MmcBlockIo.c │ ├── MmcDebug.c │ ├── MmcDxe.inf │ └── MmcIdentification.c ├── OemBoardMiscDxe │ ├── OemBoardMiscDxe.c │ └── OemBoardMiscDxe.inf └── SmbiosPlatformDxe │ ├── SmbiosPlatformDxe.c │ └── SmbiosPlatformDxe.inf ├── FdtBlob └── rk3399.dtb ├── Include ├── ArmPlatform.h ├── Configuration │ ├── BootDevices.h │ ├── DeviceMemoryMap.h │ └── Hob.h ├── Library │ ├── ArmPlatformSysConfigLib.h │ ├── CRULib.h │ ├── FrameBufferSerialPortLib.h │ ├── I2CLib.h │ └── UartLib.h ├── Resources │ ├── FbColor.h │ └── font5x12.h ├── Rk3399 │ ├── Rk3399.h │ ├── Rk3399Cru.h │ ├── Rk3399Grf.h │ └── Rk3399PmuGrf.h └── Rk808.h ├── Library ├── ArmMmuLib │ ├── AArch64 │ │ ├── ArmMmuLibCore.c │ │ ├── ArmMmuLibReplaceEntry.S │ │ └── ArmMmuPeiLibConstructor.c │ ├── Arm │ │ ├── ArmMmuLibCore.c │ │ ├── ArmMmuLibV7Support.S │ │ └── ArmMmuLibV7Support.asm │ ├── ArmMmuBaseLib.inf │ └── ArmMmuPeiLib.inf ├── ArmPlatformSysConfigLibNull │ ├── ArmPlatformSysConfigLibNull.c │ └── ArmPlatformSysConfigLibNull.inf ├── CRULib │ ├── CRULib.c │ └── CRULib.inf ├── FrameBufferSerialPortLib │ ├── FrameBufferSerialPortLib.c │ ├── FrameBufferSerialPortLib.h │ └── FrameBufferSerialPortLib.inf ├── InMemorySerialPortLib │ ├── InMemorySerialPortLib.c │ ├── InMemorySerialPortLib.inf │ └── InMemorySerialPortLib.uni ├── MemoryInitPeiLib │ ├── MemoryInitPeiLib.c │ └── PeiMemoryAllocationLib.inf ├── PlatformBootManagerLib │ ├── PlatformBm.c │ ├── PlatformBm.h │ └── PlatformBootManagerLib.inf ├── PlatformPeiLib │ ├── PlatformPeiLib.c │ └── PlatformPeiLib.inf ├── Rk3399Lib │ ├── Rk3399.c │ ├── Rk3399Helper.S │ ├── Rk3399Lib.inf │ ├── Rk3399Mem.c │ └── Rk3399Mem.h ├── SerialPortLib │ ├── SerialPortLib.c │ ├── SerialPortLib.inf │ ├── UartLib.c │ └── UartLib.inf ├── VirtualRealTimeClockLib │ ├── VirtualRealTimeClockLib.c │ └── VirtualRealTimeClockLib.inf └── sdm845Lib │ ├── sdm845.c │ ├── sdm845Helper.S │ ├── sdm845Lib.inf │ └── sdm845Mem.c ├── SimpleFbDxe ├── SimpleFbDxe.c └── SimpleFbDxe.inf ├── polaris.dsc ├── polaris.fdf ├── sdm845Dxe ├── sdm845Dxe.c ├── sdm845Dxe.h └── sdm845Dxe.inf ├── sdm845Pkg.dec └── sdm845Pkg.dsc /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/README.md -------------------------------------------------------------------------------- /device_specific/It's actually rk3399.dtb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /device_specific/polaris.dtb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/device_specific/polaris.dtb -------------------------------------------------------------------------------- /sdm845Pkg/AcpiTables/3399/DBG2.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/AcpiTables/3399/DBG2.aml -------------------------------------------------------------------------------- /sdm845Pkg/AcpiTables/3399/DBG2.asl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/AcpiTables/3399/DBG2.asl -------------------------------------------------------------------------------- /sdm845Pkg/AcpiTables/3399/DSDT.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/AcpiTables/3399/DSDT.aml -------------------------------------------------------------------------------- /sdm845Pkg/AcpiTables/3399/DSDT.asl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/AcpiTables/3399/DSDT.asl -------------------------------------------------------------------------------- /sdm845Pkg/AcpiTables/3399/FACS.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/AcpiTables/3399/FACS.aml -------------------------------------------------------------------------------- /sdm845Pkg/AcpiTables/3399/FACS.asl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/AcpiTables/3399/FACS.asl -------------------------------------------------------------------------------- /sdm845Pkg/AcpiTables/3399/FADT.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/AcpiTables/3399/FADT.aml -------------------------------------------------------------------------------- /sdm845Pkg/AcpiTables/3399/FADT.asl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/AcpiTables/3399/FADT.asl -------------------------------------------------------------------------------- /sdm845Pkg/AcpiTables/3399/GTDT.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/AcpiTables/3399/GTDT.aml -------------------------------------------------------------------------------- /sdm845Pkg/AcpiTables/3399/GTDT.asl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/AcpiTables/3399/GTDT.asl -------------------------------------------------------------------------------- /sdm845Pkg/AcpiTables/3399/MADT.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/AcpiTables/3399/MADT.aml -------------------------------------------------------------------------------- /sdm845Pkg/AcpiTables/3399/MADT.asl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/AcpiTables/3399/MADT.asl -------------------------------------------------------------------------------- /sdm845Pkg/CommonDsc.dsc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/CommonDsc.dsc.inc -------------------------------------------------------------------------------- /sdm845Pkg/CommonDsc.dsc.inc_debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/CommonDsc.dsc.inc_debug -------------------------------------------------------------------------------- /sdm845Pkg/CommonFdf.fdf.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/CommonFdf.fdf.inc -------------------------------------------------------------------------------- /sdm845Pkg/Drivers/DwEmmcDxe/DwEmmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Drivers/DwEmmcDxe/DwEmmc.h -------------------------------------------------------------------------------- /sdm845Pkg/Drivers/DwEmmcDxe/DwEmmcDxe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Drivers/DwEmmcDxe/DwEmmcDxe.c -------------------------------------------------------------------------------- /sdm845Pkg/Drivers/DwEmmcDxe/DwEmmcDxe.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Drivers/DwEmmcDxe/DwEmmcDxe.dec -------------------------------------------------------------------------------- /sdm845Pkg/Drivers/DwEmmcDxe/DwEmmcDxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Drivers/DwEmmcDxe/DwEmmcDxe.inf -------------------------------------------------------------------------------- /sdm845Pkg/Drivers/GenericKeypadDeviceDxe/GenericKeypadDevice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Drivers/GenericKeypadDeviceDxe/GenericKeypadDevice.c -------------------------------------------------------------------------------- /sdm845Pkg/Drivers/GenericKeypadDeviceDxe/GenericKeypadDeviceDxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Drivers/GenericKeypadDeviceDxe/GenericKeypadDeviceDxe.inf -------------------------------------------------------------------------------- /sdm845Pkg/Drivers/KeypadDxe/ComponentName.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Drivers/KeypadDxe/ComponentName.c -------------------------------------------------------------------------------- /sdm845Pkg/Drivers/KeypadDxe/Keypad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Drivers/KeypadDxe/Keypad.c -------------------------------------------------------------------------------- /sdm845Pkg/Drivers/KeypadDxe/Keypad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Drivers/KeypadDxe/Keypad.h -------------------------------------------------------------------------------- /sdm845Pkg/Drivers/KeypadDxe/KeypadController.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Drivers/KeypadDxe/KeypadController.c -------------------------------------------------------------------------------- /sdm845Pkg/Drivers/KeypadDxe/KeypadDxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Drivers/KeypadDxe/KeypadDxe.inf -------------------------------------------------------------------------------- /sdm845Pkg/Drivers/KeypadDxe/KeypadTextIn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Drivers/KeypadDxe/KeypadTextIn.c -------------------------------------------------------------------------------- /sdm845Pkg/Drivers/KeypadDxe/Source.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Drivers/KeypadDxe/Source.txt -------------------------------------------------------------------------------- /sdm845Pkg/Drivers/LogoDxe/Logo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Drivers/LogoDxe/Logo.bmp -------------------------------------------------------------------------------- /sdm845Pkg/Drivers/LogoDxe/Logo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Drivers/LogoDxe/Logo.c -------------------------------------------------------------------------------- /sdm845Pkg/Drivers/LogoDxe/Logo.idf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Drivers/LogoDxe/Logo.idf -------------------------------------------------------------------------------- /sdm845Pkg/Drivers/LogoDxe/Logo.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Drivers/LogoDxe/Logo.inf -------------------------------------------------------------------------------- /sdm845Pkg/Drivers/LogoDxe/Logo.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Drivers/LogoDxe/Logo.uni -------------------------------------------------------------------------------- /sdm845Pkg/Drivers/LogoDxe/LogoDxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Drivers/LogoDxe/LogoDxe.inf -------------------------------------------------------------------------------- /sdm845Pkg/Drivers/LogoDxe/LogoDxe.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Drivers/LogoDxe/LogoDxe.uni -------------------------------------------------------------------------------- /sdm845Pkg/Drivers/LogoDxe/LogoDxeExtra.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Drivers/LogoDxe/LogoDxeExtra.uni -------------------------------------------------------------------------------- /sdm845Pkg/Drivers/LogoDxe/LogoExtra.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Drivers/LogoDxe/LogoExtra.uni -------------------------------------------------------------------------------- /sdm845Pkg/Drivers/MmcDxe/ComponentName.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Drivers/MmcDxe/ComponentName.c -------------------------------------------------------------------------------- /sdm845Pkg/Drivers/MmcDxe/Diagnostics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Drivers/MmcDxe/Diagnostics.c -------------------------------------------------------------------------------- /sdm845Pkg/Drivers/MmcDxe/Mmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Drivers/MmcDxe/Mmc.c -------------------------------------------------------------------------------- /sdm845Pkg/Drivers/MmcDxe/Mmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Drivers/MmcDxe/Mmc.h -------------------------------------------------------------------------------- /sdm845Pkg/Drivers/MmcDxe/MmcBlockIo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Drivers/MmcDxe/MmcBlockIo.c -------------------------------------------------------------------------------- /sdm845Pkg/Drivers/MmcDxe/MmcDebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Drivers/MmcDxe/MmcDebug.c -------------------------------------------------------------------------------- /sdm845Pkg/Drivers/MmcDxe/MmcDxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Drivers/MmcDxe/MmcDxe.inf -------------------------------------------------------------------------------- /sdm845Pkg/Drivers/MmcDxe/MmcIdentification.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Drivers/MmcDxe/MmcIdentification.c -------------------------------------------------------------------------------- /sdm845Pkg/Drivers/OemBoardMiscDxe/OemBoardMiscDxe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Drivers/OemBoardMiscDxe/OemBoardMiscDxe.c -------------------------------------------------------------------------------- /sdm845Pkg/Drivers/OemBoardMiscDxe/OemBoardMiscDxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Drivers/OemBoardMiscDxe/OemBoardMiscDxe.inf -------------------------------------------------------------------------------- /sdm845Pkg/Drivers/SmbiosPlatformDxe/SmbiosPlatformDxe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Drivers/SmbiosPlatformDxe/SmbiosPlatformDxe.c -------------------------------------------------------------------------------- /sdm845Pkg/Drivers/SmbiosPlatformDxe/SmbiosPlatformDxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Drivers/SmbiosPlatformDxe/SmbiosPlatformDxe.inf -------------------------------------------------------------------------------- /sdm845Pkg/FdtBlob/rk3399.dtb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/FdtBlob/rk3399.dtb -------------------------------------------------------------------------------- /sdm845Pkg/Include/ArmPlatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Include/ArmPlatform.h -------------------------------------------------------------------------------- /sdm845Pkg/Include/Configuration/BootDevices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Include/Configuration/BootDevices.h -------------------------------------------------------------------------------- /sdm845Pkg/Include/Configuration/DeviceMemoryMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Include/Configuration/DeviceMemoryMap.h -------------------------------------------------------------------------------- /sdm845Pkg/Include/Configuration/Hob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Include/Configuration/Hob.h -------------------------------------------------------------------------------- /sdm845Pkg/Include/Library/ArmPlatformSysConfigLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Include/Library/ArmPlatformSysConfigLib.h -------------------------------------------------------------------------------- /sdm845Pkg/Include/Library/CRULib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Include/Library/CRULib.h -------------------------------------------------------------------------------- /sdm845Pkg/Include/Library/FrameBufferSerialPortLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Include/Library/FrameBufferSerialPortLib.h -------------------------------------------------------------------------------- /sdm845Pkg/Include/Library/I2CLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Include/Library/I2CLib.h -------------------------------------------------------------------------------- /sdm845Pkg/Include/Library/UartLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Include/Library/UartLib.h -------------------------------------------------------------------------------- /sdm845Pkg/Include/Resources/FbColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Include/Resources/FbColor.h -------------------------------------------------------------------------------- /sdm845Pkg/Include/Resources/font5x12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Include/Resources/font5x12.h -------------------------------------------------------------------------------- /sdm845Pkg/Include/Rk3399/Rk3399.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Include/Rk3399/Rk3399.h -------------------------------------------------------------------------------- /sdm845Pkg/Include/Rk3399/Rk3399Cru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Include/Rk3399/Rk3399Cru.h -------------------------------------------------------------------------------- /sdm845Pkg/Include/Rk3399/Rk3399Grf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Include/Rk3399/Rk3399Grf.h -------------------------------------------------------------------------------- /sdm845Pkg/Include/Rk3399/Rk3399PmuGrf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Include/Rk3399/Rk3399PmuGrf.h -------------------------------------------------------------------------------- /sdm845Pkg/Include/Rk808.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Include/Rk808.h -------------------------------------------------------------------------------- /sdm845Pkg/Library/ArmMmuLib/AArch64/ArmMmuLibCore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Library/ArmMmuLib/AArch64/ArmMmuLibCore.c -------------------------------------------------------------------------------- /sdm845Pkg/Library/ArmMmuLib/AArch64/ArmMmuLibReplaceEntry.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Library/ArmMmuLib/AArch64/ArmMmuLibReplaceEntry.S -------------------------------------------------------------------------------- /sdm845Pkg/Library/ArmMmuLib/AArch64/ArmMmuPeiLibConstructor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Library/ArmMmuLib/AArch64/ArmMmuPeiLibConstructor.c -------------------------------------------------------------------------------- /sdm845Pkg/Library/ArmMmuLib/Arm/ArmMmuLibCore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Library/ArmMmuLib/Arm/ArmMmuLibCore.c -------------------------------------------------------------------------------- /sdm845Pkg/Library/ArmMmuLib/Arm/ArmMmuLibV7Support.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Library/ArmMmuLib/Arm/ArmMmuLibV7Support.S -------------------------------------------------------------------------------- /sdm845Pkg/Library/ArmMmuLib/Arm/ArmMmuLibV7Support.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Library/ArmMmuLib/Arm/ArmMmuLibV7Support.asm -------------------------------------------------------------------------------- /sdm845Pkg/Library/ArmMmuLib/ArmMmuBaseLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Library/ArmMmuLib/ArmMmuBaseLib.inf -------------------------------------------------------------------------------- /sdm845Pkg/Library/ArmMmuLib/ArmMmuPeiLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Library/ArmMmuLib/ArmMmuPeiLib.inf -------------------------------------------------------------------------------- /sdm845Pkg/Library/ArmPlatformSysConfigLibNull/ArmPlatformSysConfigLibNull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Library/ArmPlatformSysConfigLibNull/ArmPlatformSysConfigLibNull.c -------------------------------------------------------------------------------- /sdm845Pkg/Library/ArmPlatformSysConfigLibNull/ArmPlatformSysConfigLibNull.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Library/ArmPlatformSysConfigLibNull/ArmPlatformSysConfigLibNull.inf -------------------------------------------------------------------------------- /sdm845Pkg/Library/CRULib/CRULib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Library/CRULib/CRULib.c -------------------------------------------------------------------------------- /sdm845Pkg/Library/CRULib/CRULib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Library/CRULib/CRULib.inf -------------------------------------------------------------------------------- /sdm845Pkg/Library/FrameBufferSerialPortLib/FrameBufferSerialPortLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Library/FrameBufferSerialPortLib/FrameBufferSerialPortLib.c -------------------------------------------------------------------------------- /sdm845Pkg/Library/FrameBufferSerialPortLib/FrameBufferSerialPortLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Library/FrameBufferSerialPortLib/FrameBufferSerialPortLib.h -------------------------------------------------------------------------------- /sdm845Pkg/Library/FrameBufferSerialPortLib/FrameBufferSerialPortLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Library/FrameBufferSerialPortLib/FrameBufferSerialPortLib.inf -------------------------------------------------------------------------------- /sdm845Pkg/Library/InMemorySerialPortLib/InMemorySerialPortLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Library/InMemorySerialPortLib/InMemorySerialPortLib.c -------------------------------------------------------------------------------- /sdm845Pkg/Library/InMemorySerialPortLib/InMemorySerialPortLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Library/InMemorySerialPortLib/InMemorySerialPortLib.inf -------------------------------------------------------------------------------- /sdm845Pkg/Library/InMemorySerialPortLib/InMemorySerialPortLib.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Library/InMemorySerialPortLib/InMemorySerialPortLib.uni -------------------------------------------------------------------------------- /sdm845Pkg/Library/MemoryInitPeiLib/MemoryInitPeiLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Library/MemoryInitPeiLib/MemoryInitPeiLib.c -------------------------------------------------------------------------------- /sdm845Pkg/Library/MemoryInitPeiLib/PeiMemoryAllocationLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Library/MemoryInitPeiLib/PeiMemoryAllocationLib.inf -------------------------------------------------------------------------------- /sdm845Pkg/Library/PlatformBootManagerLib/PlatformBm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Library/PlatformBootManagerLib/PlatformBm.c -------------------------------------------------------------------------------- /sdm845Pkg/Library/PlatformBootManagerLib/PlatformBm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Library/PlatformBootManagerLib/PlatformBm.h -------------------------------------------------------------------------------- /sdm845Pkg/Library/PlatformBootManagerLib/PlatformBootManagerLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Library/PlatformBootManagerLib/PlatformBootManagerLib.inf -------------------------------------------------------------------------------- /sdm845Pkg/Library/PlatformPeiLib/PlatformPeiLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Library/PlatformPeiLib/PlatformPeiLib.c -------------------------------------------------------------------------------- /sdm845Pkg/Library/PlatformPeiLib/PlatformPeiLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Library/PlatformPeiLib/PlatformPeiLib.inf -------------------------------------------------------------------------------- /sdm845Pkg/Library/Rk3399Lib/Rk3399.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Library/Rk3399Lib/Rk3399.c -------------------------------------------------------------------------------- /sdm845Pkg/Library/Rk3399Lib/Rk3399Helper.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Library/Rk3399Lib/Rk3399Helper.S -------------------------------------------------------------------------------- /sdm845Pkg/Library/Rk3399Lib/Rk3399Lib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Library/Rk3399Lib/Rk3399Lib.inf -------------------------------------------------------------------------------- /sdm845Pkg/Library/Rk3399Lib/Rk3399Mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Library/Rk3399Lib/Rk3399Mem.c -------------------------------------------------------------------------------- /sdm845Pkg/Library/Rk3399Lib/Rk3399Mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Library/Rk3399Lib/Rk3399Mem.h -------------------------------------------------------------------------------- /sdm845Pkg/Library/SerialPortLib/SerialPortLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Library/SerialPortLib/SerialPortLib.c -------------------------------------------------------------------------------- /sdm845Pkg/Library/SerialPortLib/SerialPortLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Library/SerialPortLib/SerialPortLib.inf -------------------------------------------------------------------------------- /sdm845Pkg/Library/SerialPortLib/UartLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Library/SerialPortLib/UartLib.c -------------------------------------------------------------------------------- /sdm845Pkg/Library/SerialPortLib/UartLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Library/SerialPortLib/UartLib.inf -------------------------------------------------------------------------------- /sdm845Pkg/Library/VirtualRealTimeClockLib/VirtualRealTimeClockLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Library/VirtualRealTimeClockLib/VirtualRealTimeClockLib.c -------------------------------------------------------------------------------- /sdm845Pkg/Library/VirtualRealTimeClockLib/VirtualRealTimeClockLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Library/VirtualRealTimeClockLib/VirtualRealTimeClockLib.inf -------------------------------------------------------------------------------- /sdm845Pkg/Library/sdm845Lib/sdm845.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Library/sdm845Lib/sdm845.c -------------------------------------------------------------------------------- /sdm845Pkg/Library/sdm845Lib/sdm845Helper.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Library/sdm845Lib/sdm845Helper.S -------------------------------------------------------------------------------- /sdm845Pkg/Library/sdm845Lib/sdm845Lib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Library/sdm845Lib/sdm845Lib.inf -------------------------------------------------------------------------------- /sdm845Pkg/Library/sdm845Lib/sdm845Mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/Library/sdm845Lib/sdm845Mem.c -------------------------------------------------------------------------------- /sdm845Pkg/SimpleFbDxe/SimpleFbDxe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/SimpleFbDxe/SimpleFbDxe.c -------------------------------------------------------------------------------- /sdm845Pkg/SimpleFbDxe/SimpleFbDxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/SimpleFbDxe/SimpleFbDxe.inf -------------------------------------------------------------------------------- /sdm845Pkg/polaris.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/polaris.dsc -------------------------------------------------------------------------------- /sdm845Pkg/polaris.fdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/polaris.fdf -------------------------------------------------------------------------------- /sdm845Pkg/sdm845Dxe/sdm845Dxe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/sdm845Dxe/sdm845Dxe.c -------------------------------------------------------------------------------- /sdm845Pkg/sdm845Dxe/sdm845Dxe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/sdm845Dxe/sdm845Dxe.h -------------------------------------------------------------------------------- /sdm845Pkg/sdm845Dxe/sdm845Dxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/sdm845Dxe/sdm845Dxe.inf -------------------------------------------------------------------------------- /sdm845Pkg/sdm845Pkg.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/sdm845Pkg.dec -------------------------------------------------------------------------------- /sdm845Pkg/sdm845Pkg.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongtz/edk2-rk3399/HEAD/sdm845Pkg/sdm845Pkg.dsc --------------------------------------------------------------------------------