-
Notifications
You must be signed in to change notification settings - Fork 88
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
napali: add support for sdm845 oneplus 6 (enchilada).
* Add NapaliPkg and OnePlus6 support * fix strange issue where napalipkg didnt push * fix yml * Remove ASL files * Replace DTB with the one from bootimg * Fix mistakes
- Loading branch information
1 parent
3560212
commit b4e90aa
Showing
245 changed files
with
5,982 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
# This is a basic workflow to help you get started with Actions | ||
|
||
name: Build uefi for all SDM845 devices. | ||
|
||
# Controls when the workflow will run | ||
on: | ||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
|
||
# Indicate that we are running in CI | ||
env: | ||
WM_CI_BUILD: true | ||
|
||
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | ||
jobs: | ||
# This workflow contains two jobs called "build" and "package" | ||
build: | ||
uses: Project-Aloha/mu_aloha_platforms/.github/workflows/build_platform.yml@main | ||
with: | ||
platform: NapaliPkg | ||
secrets: inherit | ||
|
||
package: | ||
strategy: | ||
matrix: | ||
target: | ||
[ | ||
{ | ||
platform: "NapaliPkg", | ||
codename: "napali", | ||
chipname: "sdm845", | ||
}, | ||
] | ||
|
||
# The type of runner that the job will run on | ||
runs-on: ubuntu-22.04 | ||
|
||
needs: build | ||
|
||
# Steps represent a sequence of tasks that will be executed as part of the job | ||
steps: | ||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Download Build Artifacts | ||
uses: actions/download-artifact@v4 | ||
with: | ||
path: Build | ||
merge-multiple: true | ||
|
||
- name: Upload ${{ matrix.target.codename }}'s Artifact | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: uefi-images-${{ matrix.target.codename }}-${{ matrix.target.chipname }} | ||
path: Build/${{ matrix.target.platform }}/ci_artifacts | ||
compression-level: 9 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# This is a basic workflow to help you get started with Actions | ||
|
||
name: SDM845 OnePlus 6 | ||
|
||
# Controls when the workflow will run | ||
on: | ||
# # Triggers the workflow on push or pull request events but only for the "main" branch | ||
push: | ||
branches: [ "main" ] | ||
paths: | ||
- 'Platforms/NapaliPkg/Device/oneplus-enchilada/**' | ||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
|
||
# Indicate that we are running in CI | ||
env: | ||
WM_CI_BUILD: true | ||
|
||
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | ||
jobs: | ||
# This workflow contains a single job called "build" | ||
build: | ||
# The type of runner that the job will run on | ||
runs-on: ubuntu-22.04 | ||
|
||
# Steps represent a sequence of tasks that will be executed as part of the job | ||
steps: | ||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | ||
- uses: actions/checkout@v4 | ||
- name: Build SB/NOSB uefi for OnePlus 6. | ||
run: bash scripts/ci_setup.sh && ./build_uefi.py -d oneplus-enchilada | ||
|
||
- name: Upload Artifact | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: uefi-images-enchilada | ||
path: Build/*/ci_artifacts | ||
compression-level: 9 |
Binary file not shown.
152 changes: 152 additions & 0 deletions
152
Platforms/NapaliPkg/Device/oneplus-enchilada/APRIORI.inc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,152 @@ | ||
APRIORI DXE { | ||
# First, install the PCD driver and call DxeInit | ||
INF MdeModulePkg/Core/Dxe/DxeMain.inf | ||
INF MdeModulePkg/Universal/PCD/Dxe/Pcd.inf | ||
|
||
INF MdeModulePkg/Universal/ReportStatusCodeRouter/RuntimeDxe/ReportStatusCodeRouterRuntimeDxe.inf | ||
INF MdeModulePkg/Universal/StatusCodeHandler/RuntimeDxe/StatusCodeHandlerRuntimeDxe.inf | ||
INF MdeModulePkg/Core/RuntimeDxe/RuntimeDxe.inf | ||
|
||
# Next, install cpu protocol and enable the interrupt controller | ||
INF ArmPkg/Drivers/CpuDxe/CpuDxe.inf | ||
INF ArmPkg/Drivers/ArmGic/ArmGicDxe.inf | ||
|
||
# Core Drivers | ||
INF EmbeddedPkg/MetronomeDxe/MetronomeDxe.inf | ||
INF ArmPkg/Drivers/TimerDxe/TimerDxe.inf | ||
INF NapaliPkg/Device/$(TARGET_DEVICE)/Binaries/QcomPkg/Drivers/EnvDxe/EnvDxe.inf | ||
INF NapaliPkg/Device/$(TARGET_DEVICE)/Binaries/QcomPkg/Drivers/SmemDxe/SmemDxe.inf | ||
|
||
INF NapaliPkg/Device/$(TARGET_DEVICE)/Binaries/QcomPkg/Drivers/DALSYSDxe/DALSYSDxe.inf | ||
INF NapaliPkg/Device/$(TARGET_DEVICE)/Binaries/QcomPkg/Drivers/HWIODxe/HWIODxe.inf | ||
INF NapaliPkg/Device/$(TARGET_DEVICE)/Binaries/QcomPkg/Drivers/ChipInfoDxe/ChipInfoDxe.inf | ||
INF NapaliPkg/Device/$(TARGET_DEVICE)/Binaries/QcomPkg/Drivers/PlatformInfoDxe/PlatformInfoDxe.inf | ||
INF QcomPkg/PatchedBinaries/HALIOMMUDxe.inf | ||
# INF NapaliPkg/Device/$(TARGET_DEVICE)/Binaries/QcomPkg/Drivers/HALIOMMUDxe/HALIOMMUDxe.inf | ||
INF NapaliPkg/Device/$(TARGET_DEVICE)/Binaries/QcomPkg/Drivers/ULogDxe/ULogDxe.inf | ||
INF NapaliPkg/Device/$(TARGET_DEVICE)/Binaries/QcomPkg/Drivers/CmdDbDxe/CmdDbDxe.inf | ||
INF NapaliPkg/Device/$(TARGET_DEVICE)/Binaries/QcomPkg/Drivers/NpaDxe/NpaDxe.inf | ||
INF NapaliPkg/Device/$(TARGET_DEVICE)/Binaries/QcomPkg/Drivers/RpmhDxe/RpmhDxe.inf | ||
INF NapaliPkg/Device/$(TARGET_DEVICE)/Binaries/QcomPkg/Drivers/PdcDxe/PdcDxe.inf | ||
INF NapaliPkg/Device/$(TARGET_DEVICE)/Binaries/QcomPkg/Drivers/ClockDxe/ClockDxe.inf | ||
INF Hoya/BOOT.XF.2.2-00101-SDM845WZB-1/QcomPkg/Drivers/ShmBridgeDxe/ShmBridgeDxe.inf | ||
# INF NapaliPkg/Device/$(TARGET_DEVICE)/Binaries/QcomPkg/Drivers/TzDxe/ScmDxeLA.inf | ||
|
||
FILE DRIVER = 6b38f7b4-ad98-40e9-9093-aca2b5a253c4 { | ||
SECTION PE32 = Hoya/BOOT.XF.2.2-00101-SDM845WZB-1/QcomPkg/Drivers/DiskIoDxe/DiskIoDxe.efi | ||
SECTION UI = "DiskIoDxe" | ||
} | ||
|
||
FILE DRIVER = 1fa1f39e-feff-4aae-bd7b-38a070a3b609 { | ||
SECTION PE32 = Hoya/BOOT.XF.2.2-00101-SDM845WZB-1/QcomPkg/Drivers/PartitionDxe/PartitionDxe.efi | ||
SECTION UI = "PartitionDxe" | ||
} | ||
|
||
INF MdeModulePkg/Universal/Disk/UnicodeCollation/EnglishDxe/EnglishDxe.inf | ||
INF MdeModulePkg/Universal/FvSimpleFileSystemDxe/FvSimpleFileSystemDxe.inf | ||
INF NapaliPkg/Device/$(TARGET_DEVICE)/Binaries/QcomPkg/Drivers/SdccDxe/SdccDxe.inf | ||
INF Hoya/BOOT.XF.2.2-00101-SDM845WZB-1/QcomPkg/Drivers/UFSDxe/UFSDxe.inf | ||
INF FatPkg/EnhancedFatDxe/Fat.inf | ||
INF MdeModulePkg/Bus/Pci/PciBusDxe/PciBusDxe.inf | ||
|
||
INF NapaliPkg/Device/$(TARGET_DEVICE)/Binaries/QcomPkg/Drivers/TzDxe/TzDxeLA.inf | ||
INF NapaliPkg/Device/$(TARGET_DEVICE)/Binaries/QcomPkg/Drivers/TLMMDxe/TLMMDxe.inf | ||
INF NapaliPkg/Device/$(TARGET_DEVICE)/Binaries/QcomPkg/Drivers/SPMIDxe/SPMIDxe.inf | ||
INF NapaliPkg/Device/$(TARGET_DEVICE)/Binaries/QcomPkg/Drivers/DDRInfoDxe/DDRInfoDxe.inf | ||
INF NapaliPkg/Device/$(TARGET_DEVICE)/Binaries/QcomPkg/Drivers/ResetRuntimeDxe/ResetRuntimeDxe.inf | ||
INF Hoya/BOOT.XF.2.2-00101-SDM845WZB-1/QcomPkg/Drivers/I2CDxe/I2CDxe.inf | ||
INF NapaliPkg/Device/$(TARGET_DEVICE)/Binaries/QcomPkg/Drivers/PmicDxe/PmicDxeLa.inf | ||
INF MdeModulePkg/Universal/Variable/RuntimeDxe/VariableRuntimeDxe.inf | ||
# INF NapaliPkg/Device/$(TARGET_DEVICE)/Binaries/QcomPkg/Drivers/DisplayDxe/DisplayDxe.inf | ||
|
||
INF Hoya/BOOT.XF.2.2-00101-SDM845WZB-1/QcomPkg/Drivers/CPRDxe/CPRDxe.inf | ||
INF MdeModulePkg/Universal/WatchdogTimerDxe/WatchdogTimer.inf | ||
INF NapaliPkg/Device/$(TARGET_DEVICE)/Binaries/QcomPkg/Drivers/EmbeddedMonotonicCounter/EmbeddedMonotonicCounter.inf | ||
INF NapaliPkg/Device/$(TARGET_DEVICE)/Binaries/EmbeddedPkg/RealTimeClockRuntimeDxe/RealTimeClockRuntimeDxe.inf | ||
INF MdeModulePkg/Universal/PrintDxe/PrintDxe.inf | ||
INF MdeModulePkg/Universal/DevicePathDxe/DevicePathDxe.inf | ||
INF MdeModulePkg/Universal/CapsuleRuntimeDxe/CapsuleRuntimeDxe.inf | ||
INF MdeModulePkg/Universal/HiiDatabaseDxe/HiiDatabaseDxe.inf | ||
INF NapaliPkg/Device/$(TARGET_DEVICE)/Binaries/QcomPkg/Drivers/FontDxe/FontDxe.inf | ||
INF MdeModulePkg/Universal/BdsDxe/BdsDxe.inf | ||
|
||
FILE DRIVER = 32C71E68-83A8-46ED-AED1-094E71B12057 { | ||
SECTION PE32 = NapaliPkg/Device/$(TARGET_DEVICE)/Binaries/QcomPkg/Drivers/SecRSADxe/SecRSADxe.efi | ||
SECTION UI = "SecRSADxe" | ||
} | ||
|
||
FILE DRIVER = C2F9A4F5-F7B4-43E7-BA99-5EA804CC103A { | ||
SECTION PE32 = NapaliPkg/Device/$(TARGET_DEVICE)/Binaries/QcomPkg/Drivers/ASN1X509Dxe/ASN1X509Dxe.inf | ||
SECTION UI = "ASN1X509Dxe" | ||
} | ||
|
||
INF NapaliPkg/Device/$(TARGET_DEVICE)/Binaries/QcomPkg/Drivers/AdcDxe/AdcDxe.inf | ||
INF Hoya/BOOT.XF.2.2-00101-SDM845WZB-1/QcomPkg/Drivers/UsbPwrCtrlDxe/UsbPwrCtrlDxe.inf | ||
INF NapaliPkg/Device/$(TARGET_DEVICE)/Binaries/QcomPkg/Drivers/QcomChargerDxe/QcomChargerDxeLA.inf | ||
INF NapaliPkg/Device/$(TARGET_DEVICE)/Binaries/QcomPkg/Drivers/ChargerExDxe/ChargerExDxe.inf | ||
INF Hoya/BOOT.XF.2.2-00101-SDM845WZB-1/QcomPkg/Drivers/UsbfnDwc3Dxe/UsbfnDwc3Dxe.inf | ||
INF Hoya/BOOT.XF.2.2-00101-SDM845WZB-1/QcomPkg/Drivers/XhciPciEmulationDxe/XhciPciEmulationDxe.inf | ||
|
||
# INF Hoya/BOOT.XF.2.2-00101-SDM845WZB-1/QcomPkg/Drivers/XhciDxe/XhciDxe.inf | ||
FILE DRIVER = B7F50E91-A759-412C-ADE4-DCD03E7F7C28 { | ||
SECTION PE32 = Hoya/BOOT.XF.2.2-00101-SDM845WZB-1/QcomPkg/Drivers/XhciDxe/XhciDxe.efi | ||
SECTION UI = "XhciDxe" | ||
} | ||
|
||
# INF Hoya/BOOT.XF.2.2-00101-SDM845WZB-1/QcomPkg/Drivers/UsbBusDxe/UsbBusDxe.inf | ||
FILE DRIVER = 240612B7-A063-11D4-9A3A-0090273FC14D { | ||
SECTION PE32 = Hoya/BOOT.XF.2.2-00101-SDM845WZB-1/QcomPkg/Drivers/UsbBusDxe/UsbBusDxe.efi | ||
SECTION UI = "UsbBusDxe" | ||
} | ||
|
||
# INF Hoya/BOOT.XF.2.2-00101-SDM845WZB-1/QcomPkg/Drivers/UsbKbDxe/UsbKbDxe.inf | ||
FILE DRIVER = 2D2E62CF-9ECF-43B7-8219-94E7FC713DFE { | ||
SECTION PE32 = Hoya/BOOT.XF.2.2-00101-SDM845WZB-1/QcomPkg/Drivers/UsbKbDxe/UsbKbDxe.efi | ||
SECTION UI = "UsbKbDxe" | ||
} | ||
|
||
# INF Hoya/BOOT.XF.2.2-00101-SDM845WZB-1/QcomPkg/Drivers/UsbMassStorageDxe/UsbMassStorageDxe.inf | ||
FILE DRIVER = 9FB4B4A7-42C0-4BCD-8540-9BCC6711F83E { | ||
SECTION PE32 = Hoya/BOOT.XF.2.2-00101-SDM845WZB-1/QcomPkg/Drivers/UsbMassStorageDxe/UsbMassStorageDxe.efi | ||
SECTION UI = "UsbMassStorageDxe" | ||
} | ||
|
||
# INF NapaliPkg/Device/$(TARGET_DEVICE)/Binaries/QcomPkg/Drivers/UsbConfigDxe/UsbConfigDxe.inf | ||
INF Hoya/BOOT.XF.2.2-00101-SDM845WZB-1/QcomPkg/Drivers/UsbConfigDxe/UsbConfigDxe.inf | ||
INF Hoya/BOOT.XF.2.2-00101-SDM845WZB-1/QcomPkg/Drivers/UsbInitDxe/UsbInitDxe.inf | ||
INF NapaliPkg/Device/$(TARGET_DEVICE)/Binaries/QcomPkg/Drivers/UsbDeviceDxe/UsbDeviceDxe.inf | ||
INF NapaliPkg/Device/$(TARGET_DEVICE)/PatchedBinaries/ButtonsDxe.inf | ||
INF NapaliPkg/Device/$(TARGET_DEVICE)/Binaries/QcomPkg/Drivers/TsensDxe/TsensDxe.inf | ||
|
||
# INF NapaliPkg/Device/$(TARGET_DEVICE)/Binaries/QcomPkg/Drivers/LimitsDxe/LimitsDxe.inf | ||
FILE DRIVER = f09ad92e-4e91-490f-ab99-e69939b840b2 { | ||
SECTION UI = "LimitsDxe" | ||
SECTION PE32 = Hoya/BOOT.XF.2.2-00101-SDM845WZB-1/QcomPkg/Drivers/LimitsDxe/LimitsDxe.efi | ||
} | ||
INF NapaliPkg/Device/$(TARGET_DEVICE)/Binaries/QcomPkg/Drivers/GpiDxe/GpiDxe.inf | ||
|
||
# INF NapaliPkg/Device/$(TARGET_DEVICE)/Binaries/QcomPkg/Drivers/HashDxe/HashDxe.inf | ||
FILE DRIVER = 3adf8dda-1850-44c5-8c63-bb991849bc6f { | ||
SECTION UI = "HashDxe" | ||
SECTION PE32 = Hoya/BOOT.XF.2.2-00101-SDM845WZB-1/QcomPkg/Drivers/HashDxe/HashDxe.efi | ||
} | ||
|
||
# INF NapaliPkg/Device/$(TARGET_DEVICE)/Binaries/QcomPkg/Drivers/RNGDxe/RngDxe.inf | ||
FILE DRIVER = b0d3689e-11f8-43c6-8ece-023a29cec35b { | ||
SECTION UI = "RngDxe" | ||
SECTION PE32 = Hoya/BOOT.XF.2.2-00101-SDM845WZB-1/QcomPkg/Drivers/RNGDxe/RngDxe.efi | ||
} | ||
|
||
INF Hoya/BOOT.XF.2.2-00101-SDM845WZB-1/QcomPkg/Drivers/AdapterInformationDxe/AdapterInformationDxe.inf | ||
|
||
INF MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatformDxe.inf | ||
INF MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf | ||
|
||
# INF MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsoleDxe.inf | ||
FILE DRIVER = cccb0c28-4b24-11d5-9a5a-0090273fc14d { | ||
SECTION PE32 = NapaliPkg/Device/$(TARGET_DEVICE)/Binaries/MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsoleDxe.efi | ||
SECTION UI = "GraphicsConsoleDxe" | ||
} | ||
|
||
INF SurfaceDuoFamilyPkg/Driver/SimpleFbDxe/SimpleFbDxe.inf | ||
} |
68 changes: 68 additions & 0 deletions
68
Platforms/NapaliPkg/Device/oneplus-enchilada/Binaries/APRIORI.inc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
APRIORI DXE { | ||
INF MdeModulePkg/Core/Dxe/DxeMain.inf | ||
INF ArmPkg/Drivers/CpuDxe/CpuDxe.inf | ||
INF MdeModulePkg/Core/RuntimeDxe/RuntimeDxe.inf | ||
INF QcomPkg/Drivers/SecurityDxe/SecurityDxe.inf | ||
INF QcomPkg/Drivers/SecRSADxe/SecRSADxe.inf | ||
INF QcomPkg/Drivers/ASN1X509Dxe/ASN1X509Dxe.inf | ||
INF QcomPkg/Drivers/VerifiedBootDxe/VerifiedBootDxe.inf | ||
INF QcomPkg/Drivers/TzDxe/TzDxeLA.inf | ||
INF MdeModulePkg/Universal/WatchdogTimerDxe/WatchdogTimer.inf | ||
INF MdeModulePkg/Universal/CapsuleRuntimeDxe/CapsuleRuntimeDxe.inf | ||
INF MdeModulePkg/Universal/ReportStatusCodeRouter/RuntimeDxe/ReportStatusCodeRouterRuntimeDxe.inf | ||
INF MdeModulePkg/Universal/StatusCodeHandler/RuntimeDxe/StatusCodeHandlerRuntimeDxe.inf | ||
INF MdeModulePkg/Universal/Variable/EmuRuntimeDxe/EmuVariableRuntimeDxe.inf | ||
INF QcomPkg/Drivers/EmbeddedMonotonicCounter/EmbeddedMonotonicCounter.inf | ||
INF QcomPkg/Drivers/ResetRuntimeDxe/ResetRuntimeDxe.inf | ||
INF EmbeddedPkg/RealTimeClockRuntimeDxe/RealTimeClockRuntimeDxe.inf | ||
INF EmbeddedPkg/MetronomeDxe/MetronomeDxe.inf | ||
INF MdeModulePkg/Universal/PrintDxe/PrintDxe.inf | ||
INF MdeModulePkg/Universal/DevicePathDxe/DevicePathDxe.inf | ||
INF MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatformDxe.inf | ||
INF MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf | ||
INF MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsoleDxe.inf | ||
INF MdeModulePkg/Universal/HiiDatabaseDxe/HiiDatabaseDxe.inf | ||
INF QcomPkg/Drivers/FontDxe/FontDxe.inf | ||
INF QcomPkg/Drivers/EnvDxe/EnvDxe.inf | ||
INF ArmPkg/Drivers/ArmGic/ArmGicDxe.inf | ||
INF ArmPkg/Drivers/TimerDxe/TimerDxe.inf | ||
INF QcomPkg/Drivers/ChipInfoDxe/ChipInfoDxe.inf | ||
INF QcomPkg/Drivers/SmemDxe/SmemDxe.inf | ||
INF QcomPkg/Drivers/ULogDxe/ULogDxe.inf | ||
INF QcomPkg/Drivers/NpaDxe/NpaDxe.inf | ||
INF QcomPkg/Drivers/CmdDbDxe/CmdDbDxe.inf | ||
INF QcomPkg/Drivers/RpmhDxe/RpmhDxe.inf | ||
INF QcomPkg/Drivers/CPRDxe/CPRDxe.inf | ||
INF QcomPkg/Drivers/PdcDxe/PdcDxe.inf | ||
INF QcomPkg/Drivers/DiskIoDxe/DiskIoDxe.inf | ||
INF QcomPkg/Drivers/PartitionDxe/PartitionDxe.inf | ||
INF FatPkg/EnhancedFatDxe/Fat.inf | ||
INF MdeModulePkg/Universal/Disk/UnicodeCollation/EnglishDxe/EnglishDxe.inf | ||
INF MdeModulePkg/Universal/FvSimpleFileSystemDxe/FvSimpleFileSystemDxe.inf | ||
INF QcomPkg/Drivers/DALSYSDxe/DALSYSDxe.inf | ||
INF QcomPkg/Drivers/ClockDxe/ClockDxe.inf | ||
INF QcomPkg/Drivers/HALIOMMUDxe/HALIOMMUDxe.inf | ||
INF QcomPkg/Drivers/HWIODxe/HWIODxe.inf | ||
INF QcomPkg/Drivers/GpiDxe/GpiDxe.inf | ||
INF QcomPkg/Drivers/I2CDxe/I2CDxe.inf | ||
INF QcomPkg/Drivers/SPMIDxe/SPMIDxe.inf | ||
INF QcomPkg/Drivers/SdccDxe/SdccDxe.inf | ||
INF QcomPkg/Drivers/UFSDxe/UFSDxe.inf | ||
INF QcomPkg/Drivers/TLMMDxe/TLMMDxe.inf | ||
INF QcomPkg/Drivers/DisplayDxe/DisplayDxe.inf | ||
INF QcomPkg/Drivers/PlatformInfoDxe/PlatformInfoDxe.inf | ||
INF QcomPkg/Drivers/ButtonsDxe/ButtonsDxe.inf | ||
INF QcomPkg/Drivers/PmicDxe/PmicDxeLa.inf | ||
INF QcomPkg/Drivers/ChargerExDxe/ChargerExDxe.inf | ||
INF QcomPkg/Drivers/QcomChargerDxe/QcomChargerDxeLA.inf | ||
INF QcomPkg/Drivers/UsbPwrCtrlDxe/UsbPwrCtrlDxe.inf | ||
INF QcomPkg/Drivers/AdcDxe/AdcDxe.inf | ||
INF QcomPkg/Drivers/TsensDxe/TsensDxe.inf | ||
INF QcomPkg/Drivers/LimitsDxe/LimitsDxe.inf | ||
INF QcomPkg/Drivers/DDRInfoDxe/DDRInfoDxe.inf | ||
INF QcomPkg/Drivers/UsbfnDwc3Dxe/UsbfnDwc3Dxe.inf | ||
INF QcomPkg/Drivers/UsbConfigDxe/UsbConfigDxe.inf | ||
INF QcomPkg/Drivers/HashDxe/HashDxe.inf | ||
INF QcomPkg/Drivers/RNGDxe/RngDxe.inf | ||
INF QcomPkg/Drivers/QcomBds/QcomBds.inf | ||
} |
Binary file added
BIN
+18 Bytes
Platforms/NapaliPkg/Device/oneplus-enchilada/Binaries/ArmPkg/Drivers/ArmGic/ArmGicDxe.depex
Binary file not shown.
Binary file added
BIN
+32 KB
Platforms/NapaliPkg/Device/oneplus-enchilada/Binaries/ArmPkg/Drivers/ArmGic/ArmGicDxe.efi
Binary file not shown.
22 changes: 22 additions & 0 deletions
22
Platforms/NapaliPkg/Device/oneplus-enchilada/Binaries/ArmPkg/Drivers/ArmGic/ArmGicDxe.inf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# **************************************************************************** | ||
# AUTOGENERATED BY UEFIReader | ||
# AUTOGENED AS ArmGicDxe.inf | ||
# DO NOT MODIFY | ||
# GENERATED ON: 2024-11-02 20:31:15Z | ||
|
||
[Defines] | ||
INF_VERSION = 0x0001001B | ||
BASE_NAME = ArmGicDxe | ||
FILE_GUID = DE371F7C-DEC4-4D21-ADF1-593ABCC15882 | ||
MODULE_TYPE = DXE_DRIVER | ||
VERSION_STRING = 1.0 | ||
ENTRY_POINT = EfiEntry | ||
|
||
[Binaries.AARCH64] | ||
DXE_DEPEX|ArmGicDxe.depex|* | ||
PE32|ArmGicDxe.efi|* | ||
|
||
[Depex] | ||
TRUE | ||
# AUTOGEN ENDS | ||
# **************************************************************************** |
1 change: 1 addition & 0 deletions
1
Platforms/NapaliPkg/Device/oneplus-enchilada/Binaries/ArmPkg/Drivers/CpuDxe/CpuDxe.depex
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Binary file added
BIN
+44 KB
Platforms/NapaliPkg/Device/oneplus-enchilada/Binaries/ArmPkg/Drivers/CpuDxe/CpuDxe.efi
Binary file not shown.
22 changes: 22 additions & 0 deletions
22
Platforms/NapaliPkg/Device/oneplus-enchilada/Binaries/ArmPkg/Drivers/CpuDxe/CpuDxe.inf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# **************************************************************************** | ||
# AUTOGENERATED BY UEFIReader | ||
# AUTOGENED AS CpuDxe.inf | ||
# DO NOT MODIFY | ||
# GENERATED ON: 2024-11-02 20:31:15Z | ||
|
||
[Defines] | ||
INF_VERSION = 0x0001001B | ||
BASE_NAME = ArmCpuDxe | ||
FILE_GUID = B8D9777E-D72A-451F-9BDB-BAFB52A68415 | ||
MODULE_TYPE = DXE_DRIVER | ||
VERSION_STRING = 1.0 | ||
ENTRY_POINT = EfiEntry | ||
|
||
[Binaries.AARCH64] | ||
DXE_DEPEX|CpuDxe.depex|* | ||
PE32|CpuDxe.efi|* | ||
|
||
[Depex] | ||
TRUE | ||
# AUTOGEN ENDS | ||
# **************************************************************************** |
1 change: 1 addition & 0 deletions
1
Platforms/NapaliPkg/Device/oneplus-enchilada/Binaries/ArmPkg/Drivers/TimerDxe/TimerDxe.depex
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
곐(=C��H�?� |
Binary file added
BIN
+28 KB
Platforms/NapaliPkg/Device/oneplus-enchilada/Binaries/ArmPkg/Drivers/TimerDxe/TimerDxe.efi
Binary file not shown.
Oops, something went wrong.