├── .gitignore ├── AcpiTables ├── AcpiTables.inf ├── Csrt.aslc ├── Dbg2.aslc ├── Dsdt │ ├── DSDT.asl │ ├── Dsdt-Common.h │ ├── Dsdt-Gpio.asl │ ├── Dsdt-I2c.asl │ ├── Dsdt-Platform.asl │ ├── Dsdt-Uart.asl │ └── Dsdt-Usb.asl ├── Facs.asl ├── Fadt.aslc ├── Gtdt.aslc ├── Madt.asl └── Platform.h ├── CommonFdf.fdf.inc ├── Drivers ├── ConSplitterDxe │ ├── ComponentName.c │ ├── ConSplitter.c │ ├── ConSplitter.h │ ├── ConSplitterDxe.inf │ ├── ConSplitterDxe.uni │ ├── ConSplitterDxeExtra.uni │ └── ConSplitterGraphics.c ├── GraphicsConsoleDxe │ ├── ComponentName.c │ ├── GraphicsConsole.c │ ├── GraphicsConsole.h │ ├── GraphicsConsoleDxe.inf │ ├── GraphicsConsoleDxe.uni │ ├── GraphicsConsoleDxeExtra.uni │ └── LaffStd.c ├── LcdFbDxe │ ├── LcdFbDxe.inf │ └── SimpleFbDxe.c ├── LedHeartbeatDxe │ ├── Heartbeat.c │ └── LedHeartbeatDxe.inf ├── LogoDxe │ ├── Logo.bmp │ ├── Logo.c │ ├── Logo.idf │ ├── Logo.inf │ ├── Logo.uni │ ├── LogoDxe.inf │ ├── LogoDxe.uni │ ├── LogoDxeExtra.uni │ └── LogoExtra.uni ├── PciEmulation │ ├── PciEmulation.c │ └── PciEmulation.inf ├── PlatformSmbiosDxe │ ├── PlatformSmbiosDxe.c │ ├── PlatformSmbiosDxe.h │ └── PlatformSmbiosDxe.inf └── TimerDxe │ ├── Timer.c │ └── TimerDxe.inf ├── Include ├── Device │ ├── MemoryMap.h │ ├── common_epit.h │ ├── common_gpt.h │ ├── iMX6ClkPwr.h │ ├── iMX6ClkPwr_ULL.h │ ├── iMX6IoMux.h │ ├── iMX6IoMux_ULL.h │ ├── iMX6UsbPhy.h │ ├── iMXGpio.h │ ├── iMXIoMux.h │ ├── iMXUart.h │ ├── imx6_ull.h │ ├── regs-common.h │ └── regs-lcdif.h ├── Library │ ├── FrameBufferSerialPortLib.h │ └── iMX6Timer.h ├── Resources │ ├── FbColor.h │ ├── ReleaseInfo.h │ ├── ReleaseStampStub.h │ └── font5x12.h └── UBoot │ └── ehci-ci.h ├── Library ├── FrameBufferSerialPortLib │ ├── FrameBufferSerialPortLib.c │ └── FrameBufferSerialPortLib.inf ├── MemoryInitPeiLib │ ├── MemoryInitPeiLib.c │ └── MemoryInitPeiLib.inf ├── PlatformBootManagerLib │ ├── PlatformBm.c │ ├── PlatformBm.h │ └── PlatformBootManagerLib.inf ├── PlatformLib │ ├── Arm │ │ ├── ArmPlatformHelper.S │ │ └── ArmPlatformHelper.asm │ ├── ArmPlatformLib.c │ ├── ArmPlatformLibMem.c │ └── PlatformLib.inf ├── TimerLib │ ├── TimerLib.c │ └── TimerLib.inf ├── UartSerialPortLib │ ├── UartSerialPortLib.c │ └── UartSerialPortLib.inf ├── VirtualRealTimeClockLib │ ├── VirtualRealTimeClockLib.c │ └── VirtualRealTimeClockLib.inf ├── iMX6ClkPwrLib │ ├── iMX6ClkPwr.c │ ├── iMX6ClkPwrLib.inf │ └── iMX6ClkPwr_private.h ├── iMX6IoMuxLib │ ├── iMX6IoMux.c │ └── iMX6IoMuxLib.inf ├── iMX6ULLResetSystemLib │ ├── iMX6ULLResetSystemLib.c │ └── iMX6ULLResetSystemLib.inf └── iMX6UsbPhyLib │ ├── iMX6UsbPhy.c │ └── iMX6UsbPhyLib.inf ├── PrePi ├── Arm │ ├── ArchPrePi.c │ ├── ModuleEntryPoint.S │ └── ModuleEntryPoint.asm ├── MainUniCore.c ├── PeiUniCore.inf ├── PrePi.c └── PrePi.h ├── PrimeG2.dsc ├── PrimeG2.fdf ├── PrimeG2Pkg.dec └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | InternalPayload -------------------------------------------------------------------------------- /AcpiTables/AcpiTables.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/AcpiTables/AcpiTables.inf -------------------------------------------------------------------------------- /AcpiTables/Csrt.aslc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/AcpiTables/Csrt.aslc -------------------------------------------------------------------------------- /AcpiTables/Dbg2.aslc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/AcpiTables/Dbg2.aslc -------------------------------------------------------------------------------- /AcpiTables/Dsdt/DSDT.asl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/AcpiTables/Dsdt/DSDT.asl -------------------------------------------------------------------------------- /AcpiTables/Dsdt/Dsdt-Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/AcpiTables/Dsdt/Dsdt-Common.h -------------------------------------------------------------------------------- /AcpiTables/Dsdt/Dsdt-Gpio.asl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/AcpiTables/Dsdt/Dsdt-Gpio.asl -------------------------------------------------------------------------------- /AcpiTables/Dsdt/Dsdt-I2c.asl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/AcpiTables/Dsdt/Dsdt-I2c.asl -------------------------------------------------------------------------------- /AcpiTables/Dsdt/Dsdt-Platform.asl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/AcpiTables/Dsdt/Dsdt-Platform.asl -------------------------------------------------------------------------------- /AcpiTables/Dsdt/Dsdt-Uart.asl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/AcpiTables/Dsdt/Dsdt-Uart.asl -------------------------------------------------------------------------------- /AcpiTables/Dsdt/Dsdt-Usb.asl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/AcpiTables/Dsdt/Dsdt-Usb.asl -------------------------------------------------------------------------------- /AcpiTables/Facs.asl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/AcpiTables/Facs.asl -------------------------------------------------------------------------------- /AcpiTables/Fadt.aslc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/AcpiTables/Fadt.aslc -------------------------------------------------------------------------------- /AcpiTables/Gtdt.aslc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/AcpiTables/Gtdt.aslc -------------------------------------------------------------------------------- /AcpiTables/Madt.asl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/AcpiTables/Madt.asl -------------------------------------------------------------------------------- /AcpiTables/Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/AcpiTables/Platform.h -------------------------------------------------------------------------------- /CommonFdf.fdf.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/CommonFdf.fdf.inc -------------------------------------------------------------------------------- /Drivers/ConSplitterDxe/ComponentName.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Drivers/ConSplitterDxe/ComponentName.c -------------------------------------------------------------------------------- /Drivers/ConSplitterDxe/ConSplitter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Drivers/ConSplitterDxe/ConSplitter.c -------------------------------------------------------------------------------- /Drivers/ConSplitterDxe/ConSplitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Drivers/ConSplitterDxe/ConSplitter.h -------------------------------------------------------------------------------- /Drivers/ConSplitterDxe/ConSplitterDxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Drivers/ConSplitterDxe/ConSplitterDxe.inf -------------------------------------------------------------------------------- /Drivers/ConSplitterDxe/ConSplitterDxe.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Drivers/ConSplitterDxe/ConSplitterDxe.uni -------------------------------------------------------------------------------- /Drivers/ConSplitterDxe/ConSplitterDxeExtra.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Drivers/ConSplitterDxe/ConSplitterDxeExtra.uni -------------------------------------------------------------------------------- /Drivers/ConSplitterDxe/ConSplitterGraphics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Drivers/ConSplitterDxe/ConSplitterGraphics.c -------------------------------------------------------------------------------- /Drivers/GraphicsConsoleDxe/ComponentName.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Drivers/GraphicsConsoleDxe/ComponentName.c -------------------------------------------------------------------------------- /Drivers/GraphicsConsoleDxe/GraphicsConsole.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Drivers/GraphicsConsoleDxe/GraphicsConsole.c -------------------------------------------------------------------------------- /Drivers/GraphicsConsoleDxe/GraphicsConsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Drivers/GraphicsConsoleDxe/GraphicsConsole.h -------------------------------------------------------------------------------- /Drivers/GraphicsConsoleDxe/GraphicsConsoleDxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Drivers/GraphicsConsoleDxe/GraphicsConsoleDxe.inf -------------------------------------------------------------------------------- /Drivers/GraphicsConsoleDxe/GraphicsConsoleDxe.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Drivers/GraphicsConsoleDxe/GraphicsConsoleDxe.uni -------------------------------------------------------------------------------- /Drivers/GraphicsConsoleDxe/GraphicsConsoleDxeExtra.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Drivers/GraphicsConsoleDxe/GraphicsConsoleDxeExtra.uni -------------------------------------------------------------------------------- /Drivers/GraphicsConsoleDxe/LaffStd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Drivers/GraphicsConsoleDxe/LaffStd.c -------------------------------------------------------------------------------- /Drivers/LcdFbDxe/LcdFbDxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Drivers/LcdFbDxe/LcdFbDxe.inf -------------------------------------------------------------------------------- /Drivers/LcdFbDxe/SimpleFbDxe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Drivers/LcdFbDxe/SimpleFbDxe.c -------------------------------------------------------------------------------- /Drivers/LedHeartbeatDxe/Heartbeat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Drivers/LedHeartbeatDxe/Heartbeat.c -------------------------------------------------------------------------------- /Drivers/LedHeartbeatDxe/LedHeartbeatDxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Drivers/LedHeartbeatDxe/LedHeartbeatDxe.inf -------------------------------------------------------------------------------- /Drivers/LogoDxe/Logo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Drivers/LogoDxe/Logo.bmp -------------------------------------------------------------------------------- /Drivers/LogoDxe/Logo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Drivers/LogoDxe/Logo.c -------------------------------------------------------------------------------- /Drivers/LogoDxe/Logo.idf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Drivers/LogoDxe/Logo.idf -------------------------------------------------------------------------------- /Drivers/LogoDxe/Logo.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Drivers/LogoDxe/Logo.inf -------------------------------------------------------------------------------- /Drivers/LogoDxe/Logo.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Drivers/LogoDxe/Logo.uni -------------------------------------------------------------------------------- /Drivers/LogoDxe/LogoDxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Drivers/LogoDxe/LogoDxe.inf -------------------------------------------------------------------------------- /Drivers/LogoDxe/LogoDxe.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Drivers/LogoDxe/LogoDxe.uni -------------------------------------------------------------------------------- /Drivers/LogoDxe/LogoDxeExtra.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Drivers/LogoDxe/LogoDxeExtra.uni -------------------------------------------------------------------------------- /Drivers/LogoDxe/LogoExtra.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Drivers/LogoDxe/LogoExtra.uni -------------------------------------------------------------------------------- /Drivers/PciEmulation/PciEmulation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Drivers/PciEmulation/PciEmulation.c -------------------------------------------------------------------------------- /Drivers/PciEmulation/PciEmulation.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Drivers/PciEmulation/PciEmulation.inf -------------------------------------------------------------------------------- /Drivers/PlatformSmbiosDxe/PlatformSmbiosDxe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Drivers/PlatformSmbiosDxe/PlatformSmbiosDxe.c -------------------------------------------------------------------------------- /Drivers/PlatformSmbiosDxe/PlatformSmbiosDxe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Drivers/PlatformSmbiosDxe/PlatformSmbiosDxe.h -------------------------------------------------------------------------------- /Drivers/PlatformSmbiosDxe/PlatformSmbiosDxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Drivers/PlatformSmbiosDxe/PlatformSmbiosDxe.inf -------------------------------------------------------------------------------- /Drivers/TimerDxe/Timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Drivers/TimerDxe/Timer.c -------------------------------------------------------------------------------- /Drivers/TimerDxe/TimerDxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Drivers/TimerDxe/TimerDxe.inf -------------------------------------------------------------------------------- /Include/Device/MemoryMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Include/Device/MemoryMap.h -------------------------------------------------------------------------------- /Include/Device/common_epit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Include/Device/common_epit.h -------------------------------------------------------------------------------- /Include/Device/common_gpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Include/Device/common_gpt.h -------------------------------------------------------------------------------- /Include/Device/iMX6ClkPwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Include/Device/iMX6ClkPwr.h -------------------------------------------------------------------------------- /Include/Device/iMX6ClkPwr_ULL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Include/Device/iMX6ClkPwr_ULL.h -------------------------------------------------------------------------------- /Include/Device/iMX6IoMux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Include/Device/iMX6IoMux.h -------------------------------------------------------------------------------- /Include/Device/iMX6IoMux_ULL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Include/Device/iMX6IoMux_ULL.h -------------------------------------------------------------------------------- /Include/Device/iMX6UsbPhy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Include/Device/iMX6UsbPhy.h -------------------------------------------------------------------------------- /Include/Device/iMXGpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Include/Device/iMXGpio.h -------------------------------------------------------------------------------- /Include/Device/iMXIoMux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Include/Device/iMXIoMux.h -------------------------------------------------------------------------------- /Include/Device/iMXUart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Include/Device/iMXUart.h -------------------------------------------------------------------------------- /Include/Device/imx6_ull.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Include/Device/imx6_ull.h -------------------------------------------------------------------------------- /Include/Device/regs-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Include/Device/regs-common.h -------------------------------------------------------------------------------- /Include/Device/regs-lcdif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Include/Device/regs-lcdif.h -------------------------------------------------------------------------------- /Include/Library/FrameBufferSerialPortLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Include/Library/FrameBufferSerialPortLib.h -------------------------------------------------------------------------------- /Include/Library/iMX6Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Include/Library/iMX6Timer.h -------------------------------------------------------------------------------- /Include/Resources/FbColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Include/Resources/FbColor.h -------------------------------------------------------------------------------- /Include/Resources/ReleaseInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Include/Resources/ReleaseInfo.h -------------------------------------------------------------------------------- /Include/Resources/ReleaseStampStub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Include/Resources/ReleaseStampStub.h -------------------------------------------------------------------------------- /Include/Resources/font5x12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Include/Resources/font5x12.h -------------------------------------------------------------------------------- /Include/UBoot/ehci-ci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Include/UBoot/ehci-ci.h -------------------------------------------------------------------------------- /Library/FrameBufferSerialPortLib/FrameBufferSerialPortLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Library/FrameBufferSerialPortLib/FrameBufferSerialPortLib.c -------------------------------------------------------------------------------- /Library/FrameBufferSerialPortLib/FrameBufferSerialPortLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Library/FrameBufferSerialPortLib/FrameBufferSerialPortLib.inf -------------------------------------------------------------------------------- /Library/MemoryInitPeiLib/MemoryInitPeiLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Library/MemoryInitPeiLib/MemoryInitPeiLib.c -------------------------------------------------------------------------------- /Library/MemoryInitPeiLib/MemoryInitPeiLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Library/MemoryInitPeiLib/MemoryInitPeiLib.inf -------------------------------------------------------------------------------- /Library/PlatformBootManagerLib/PlatformBm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Library/PlatformBootManagerLib/PlatformBm.c -------------------------------------------------------------------------------- /Library/PlatformBootManagerLib/PlatformBm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Library/PlatformBootManagerLib/PlatformBm.h -------------------------------------------------------------------------------- /Library/PlatformBootManagerLib/PlatformBootManagerLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Library/PlatformBootManagerLib/PlatformBootManagerLib.inf -------------------------------------------------------------------------------- /Library/PlatformLib/Arm/ArmPlatformHelper.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Library/PlatformLib/Arm/ArmPlatformHelper.S -------------------------------------------------------------------------------- /Library/PlatformLib/Arm/ArmPlatformHelper.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Library/PlatformLib/Arm/ArmPlatformHelper.asm -------------------------------------------------------------------------------- /Library/PlatformLib/ArmPlatformLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Library/PlatformLib/ArmPlatformLib.c -------------------------------------------------------------------------------- /Library/PlatformLib/ArmPlatformLibMem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Library/PlatformLib/ArmPlatformLibMem.c -------------------------------------------------------------------------------- /Library/PlatformLib/PlatformLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Library/PlatformLib/PlatformLib.inf -------------------------------------------------------------------------------- /Library/TimerLib/TimerLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Library/TimerLib/TimerLib.c -------------------------------------------------------------------------------- /Library/TimerLib/TimerLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Library/TimerLib/TimerLib.inf -------------------------------------------------------------------------------- /Library/UartSerialPortLib/UartSerialPortLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Library/UartSerialPortLib/UartSerialPortLib.c -------------------------------------------------------------------------------- /Library/UartSerialPortLib/UartSerialPortLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Library/UartSerialPortLib/UartSerialPortLib.inf -------------------------------------------------------------------------------- /Library/VirtualRealTimeClockLib/VirtualRealTimeClockLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Library/VirtualRealTimeClockLib/VirtualRealTimeClockLib.c -------------------------------------------------------------------------------- /Library/VirtualRealTimeClockLib/VirtualRealTimeClockLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Library/VirtualRealTimeClockLib/VirtualRealTimeClockLib.inf -------------------------------------------------------------------------------- /Library/iMX6ClkPwrLib/iMX6ClkPwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Library/iMX6ClkPwrLib/iMX6ClkPwr.c -------------------------------------------------------------------------------- /Library/iMX6ClkPwrLib/iMX6ClkPwrLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Library/iMX6ClkPwrLib/iMX6ClkPwrLib.inf -------------------------------------------------------------------------------- /Library/iMX6ClkPwrLib/iMX6ClkPwr_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Library/iMX6ClkPwrLib/iMX6ClkPwr_private.h -------------------------------------------------------------------------------- /Library/iMX6IoMuxLib/iMX6IoMux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Library/iMX6IoMuxLib/iMX6IoMux.c -------------------------------------------------------------------------------- /Library/iMX6IoMuxLib/iMX6IoMuxLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Library/iMX6IoMuxLib/iMX6IoMuxLib.inf -------------------------------------------------------------------------------- /Library/iMX6ULLResetSystemLib/iMX6ULLResetSystemLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Library/iMX6ULLResetSystemLib/iMX6ULLResetSystemLib.c -------------------------------------------------------------------------------- /Library/iMX6ULLResetSystemLib/iMX6ULLResetSystemLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Library/iMX6ULLResetSystemLib/iMX6ULLResetSystemLib.inf -------------------------------------------------------------------------------- /Library/iMX6UsbPhyLib/iMX6UsbPhy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Library/iMX6UsbPhyLib/iMX6UsbPhy.c -------------------------------------------------------------------------------- /Library/iMX6UsbPhyLib/iMX6UsbPhyLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/Library/iMX6UsbPhyLib/iMX6UsbPhyLib.inf -------------------------------------------------------------------------------- /PrePi/Arm/ArchPrePi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/PrePi/Arm/ArchPrePi.c -------------------------------------------------------------------------------- /PrePi/Arm/ModuleEntryPoint.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/PrePi/Arm/ModuleEntryPoint.S -------------------------------------------------------------------------------- /PrePi/Arm/ModuleEntryPoint.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/PrePi/Arm/ModuleEntryPoint.asm -------------------------------------------------------------------------------- /PrePi/MainUniCore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/PrePi/MainUniCore.c -------------------------------------------------------------------------------- /PrePi/PeiUniCore.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/PrePi/PeiUniCore.inf -------------------------------------------------------------------------------- /PrePi/PrePi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/PrePi/PrePi.c -------------------------------------------------------------------------------- /PrePi/PrePi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/PrePi/PrePi.h -------------------------------------------------------------------------------- /PrimeG2.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/PrimeG2.dsc -------------------------------------------------------------------------------- /PrimeG2.fdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/PrimeG2.fdf -------------------------------------------------------------------------------- /PrimeG2Pkg.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/PrimeG2Pkg.dec -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbushuo/PrimeG2Pkg/HEAD/README.md --------------------------------------------------------------------------------