public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: Pete Batard <pete@akeo.ie>
To: edk2-devel@lists.01.org
Subject: [PATCH v4 edk2-platforms 00/23] Platform/Raspberry: Add Raspberry Pi 3 support
Date: Tue, 29 Jan 2019 16:26:32 +0000	[thread overview]
Message-ID: <20190129162655.3800-1-pete@akeo.ie> (raw)

Changes applied to v4:

* Silicon/Broadcom/Include has been moved to Silicon/Broadcom/Bcm283x/Include.
  The [Packages] and [Includes] directives were also updated accordingly.
* Move the GpioLib function declarations into their own separate header.
* Add NOOPT to BUILD_TARGETS.
* Remove the no longer needed '-mcmodel=small' workaround from AcpiTables.

Changes not applied to v4:

* Ensure that all the ACPI tables _CID names, and the rest of the tables, are
  ACPI specs compliant, since we are constrained with regards to their usage
  for Microsoft Windows.


Preamble:

Because of its price point, ease of use and availability, the Raspberry Pi is
undeniably one of the most successful ARM platform in existence today. Its
widespread adoption therefore makes it a perfect fit as an EDK2 platform.

However, up until now, the Raspberry Pi hasn't been supported as a bona fide
platform in our repository. This series of patches remedies that by introducing
the Raspberry Pi 3 Model B and Model B+ as a viable EDK2 platform.

Notes regarding non-OSI content:

* Even though the ARM Trusted Firmware binary blobs are subject to a
  BSD-3-Clause licence, which may be compatible with the EDK2 one, we chose
  to follow the lead of other platforms that provide ATF binaries in non OSI.
  Ultimately, once there is a new dot release of ATF, we plan to remove these
  binaries and point to a dot release build configuartion.
* The Device Tree binaries (and source descriptors) are subject to a GPLv2
  license, as per the ones published by the Raspberry Pi Foundation.
* The Logo source code is under an EDK2 license, but the logo itself, which
  we obtained authorisation to use from the Raspberry Pi Foundation itself
  after detailing our planned usage, is subject to the trademark licensing
  terms put forward by the Foundation.

Additional Notes:

* Detailed instructions on how to build and test the platform firmware are
  included in the Readme.md found at the root of the platform.
* As detailed in the Readme, the resulting platform firmware has been
  successfully used to install and run Linux OSes, such as Ubuntu 18.10, as
  well as Windows 10 1809 (*full* UI version, not IoT).

Regards,

/Pete

Pete Batard (23):
  Silicon/Broadcom/Bcm282x: Add interrupt driver
  Silicon/Broadcom/Bcm283x: Add GpioLib
  Platform/Raspberry/Pi3: Add ACPI tables
  Platform/Raspberry/Pi3: Add reset and memory init libraries
  Platform/Raspberry/Pi3: Add platform library
  Platform/Raspberry/Pi3: Add RTC library
  Platform/Raspberry/Pi3: Add firmware driver
  Platform/Raspberry/Pi3: Add platform config driver
  Platform/Raspberry/Pi3: Add SMBIOS driver
  Platform/Raspberry/Pi3: Add display driver
  Platform/Raspberry/Pi3: Add console driver
  Platform/Raspberry/Pi3: Add NV storage driver
  Platform/Raspberry/Pi3: Add Device Tree driver
  Platform/Raspberry/Pi3: Add base MMC driver
  Platform/Raspberry/Pi3: Add Arasan MMC driver
  Platform/Raspberry/Pi3: Platform/Raspberry/Pi3: Add SD Host driver
  Platform/Raspberry/Pi3: Add platform boot manager and helper libraries
  Platform/Raspberry/Pi3: Add USB host driver
  Platform/Raspberry/Pi3: Add platform
  Platform/Raspberry/Pi3: Add platform readme
  Platform/Raspberry/Pi3 *NON-OSI*: Add ATF binaries
  Platform/Raspberry/Pi3 *NON-OSI*: Add Device Tree binaries
  Platform/Raspberry/Pi3 *NON-OSI*: Add logo driver

 .../Raspberry/Pi3/AcpiTables/AcpiTables.h     |   82 +
 .../Raspberry/Pi3/AcpiTables/AcpiTables.inf   |   46 +
 Platform/Raspberry/Pi3/AcpiTables/Csrt.aslc   |  332 +++
 Platform/Raspberry/Pi3/AcpiTables/Dbg2.aslc   |   34 +
 Platform/Raspberry/Pi3/AcpiTables/Dsdt.asl    |  511 +++++
 Platform/Raspberry/Pi3/AcpiTables/Fadt.aslc   |   52 +
 Platform/Raspberry/Pi3/AcpiTables/Gtdt.aslc   |   33 +
 Platform/Raspberry/Pi3/AcpiTables/Madt.aslc   |   62 +
 Platform/Raspberry/Pi3/AcpiTables/Pep.asl     |   95 +
 Platform/Raspberry/Pi3/AcpiTables/Pep.c       |   84 +
 Platform/Raspberry/Pi3/AcpiTables/Pep.h       |  126 ++
 Platform/Raspberry/Pi3/AcpiTables/Rhpx.asl    |  201 ++
 Platform/Raspberry/Pi3/AcpiTables/Sdhc.asl    |  105 +
 Platform/Raspberry/Pi3/AcpiTables/Spcr.asl    |   53 +
 Platform/Raspberry/Pi3/AcpiTables/Uart.asl    |  158 ++
 Platform/Raspberry/Pi3/DeviceTree/License.txt |  340 +++
 .../Pi3/DeviceTree/bcm2710-rpi-3-b-plus.dtb   |  Bin 0 -> 25617 bytes
 .../Pi3/DeviceTree/bcm2710-rpi-3-b-plus.dts   | 1263 ++++++++++++
 .../Pi3/DeviceTree/bcm2710-rpi-3-b.dtb        |  Bin 0 -> 25354 bytes
 .../Pi3/DeviceTree/bcm2710-rpi-3-b.dts        | 1259 +++++++++++
 .../ArasanMmcHostDxe/ArasanMmcHostDxe.c       |  723 +++++++
 .../ArasanMmcHostDxe/ArasanMmcHostDxe.h       |   50 +
 .../ArasanMmcHostDxe/ArasanMmcHostDxe.inf     |   52 +
 .../Pi3/Drivers/ConfigDxe/ConfigDxe.c         |  351 ++++
 .../Pi3/Drivers/ConfigDxe/ConfigDxe.inf       |   78 +
 .../Drivers/ConfigDxe/ConfigDxeFormSetGuid.h  |   23 +
 .../Pi3/Drivers/ConfigDxe/ConfigDxeHii.uni    |  100 +
 .../Pi3/Drivers/ConfigDxe/ConfigDxeHii.vfr    |  306 +++
 .../Pi3/Drivers/DisplayDxe/ComponentName.c    |  222 ++
 .../Pi3/Drivers/DisplayDxe/DisplayDxe.c       |  606 ++++++
 .../Pi3/Drivers/DisplayDxe/DisplayDxe.h       |   42 +
 .../Pi3/Drivers/DisplayDxe/DisplayDxe.inf     |   71 +
 .../Pi3/Drivers/DisplayDxe/Screenshot.c       |  375 ++++
 .../Pi3/Drivers/DwUsbHostDxe/ComponentName.c  |  226 ++
 .../Pi3/Drivers/DwUsbHostDxe/DriverBinding.c  |  275 +++
 .../Pi3/Drivers/DwUsbHostDxe/DwUsbHostDxe.c   | 1637 +++++++++++++++
 .../Pi3/Drivers/DwUsbHostDxe/DwUsbHostDxe.h   |  165 ++
 .../Pi3/Drivers/DwUsbHostDxe/DwUsbHostDxe.inf |   53 +
 .../Pi3/Drivers/DwUsbHostDxe/DwcHw.h          |  791 +++++++
 .../Raspberry/Pi3/Drivers/FdtDxe/FdtDxe.c     |  364 ++++
 .../Raspberry/Pi3/Drivers/FdtDxe/FdtDxe.inf   |   53 +
 .../GraphicsConsoleDxe/ComponentName.c        |  183 ++
 .../GraphicsConsoleDxe/GraphicsConsole.c      | 1837 +++++++++++++++++
 .../GraphicsConsoleDxe/GraphicsConsole.h      |  591 ++++++
 .../GraphicsConsoleDxe/GraphicsConsoleDxe.inf |   75 +
 .../GraphicsConsoleDxe/GraphicsConsoleDxe.uni |   18 +
 .../GraphicsConsoleDxeExtra.uni               |   18 +
 .../Pi3/Drivers/GraphicsConsoleDxe/NewFont.c  |  287 +++
 .../Raspberry/Pi3/Drivers/LogoDxe/License.txt |   10 +
 .../Raspberry/Pi3/Drivers/LogoDxe/Logo.bmp    |  Bin 0 -> 185398 bytes
 Platform/Raspberry/Pi3/Drivers/LogoDxe/Logo.c |  159 ++
 .../Raspberry/Pi3/Drivers/LogoDxe/Logo.eps    |  Bin 0 -> 250982 bytes
 .../Raspberry/Pi3/Drivers/LogoDxe/Logo.idf    |   18 +
 .../Raspberry/Pi3/Drivers/LogoDxe/Logo.inf    |   34 +
 .../Raspberry/Pi3/Drivers/LogoDxe/Logo.uni    |   20 +
 .../Raspberry/Pi3/Drivers/LogoDxe/LogoDxe.inf |   63 +
 .../Raspberry/Pi3/Drivers/LogoDxe/LogoDxe.uni |   19 +
 .../Pi3/Drivers/LogoDxe/LogoDxeExtra.uni      |   19 +
 .../Pi3/Drivers/LogoDxe/LogoExtra.uni         |   19 +
 .../Pi3/Drivers/MmcDxe/ComponentName.c        |  163 ++
 .../Pi3/Drivers/MmcDxe/Diagnostics.c          |  263 +++
 Platform/Raspberry/Pi3/Drivers/MmcDxe/Mmc.c   |  460 +++++
 Platform/Raspberry/Pi3/Drivers/MmcDxe/Mmc.h   |  533 +++++
 .../Raspberry/Pi3/Drivers/MmcDxe/MmcBlockIo.c |  469 +++++
 .../Raspberry/Pi3/Drivers/MmcDxe/MmcDebug.c   |  170 ++
 .../Raspberry/Pi3/Drivers/MmcDxe/MmcDxe.inf   |   58 +
 .../Pi3/Drivers/MmcDxe/MmcIdentification.c    |  980 +++++++++
 .../PlatformSmbiosDxe/PlatformSmbiosDxe.c     |  903 ++++++++
 .../PlatformSmbiosDxe/PlatformSmbiosDxe.inf   |   56 +
 .../Drivers/RpiFirmwareDxe/RpiFirmwareDxe.c   | 1084 ++++++++++
 .../Drivers/RpiFirmwareDxe/RpiFirmwareDxe.inf |   50 +
 .../Pi3/Drivers/SdHostDxe/SdHostDxe.c         |  787 +++++++
 .../Pi3/Drivers/SdHostDxe/SdHostDxe.inf       |   55 +
 .../Pi3/Drivers/VarBlockServiceDxe/FileIo.c   |  196 ++
 .../Pi3/Drivers/VarBlockServiceDxe/FvbInfo.c  |  115 ++
 .../VarBlockServiceDxe/VarBlockService.c      |  971 +++++++++
 .../VarBlockServiceDxe/VarBlockService.h      |  217 ++
 .../VarBlockServiceDxe/VarBlockServiceDxe.c   |  331 +++
 .../VarBlockServiceDxe/VarBlockServiceDxe.inf |   93 +
 .../Pi3/Include/IndustryStandard/RpiMbox.h    |  108 +
 .../Raspberry/Pi3/Include/Protocol/DwUsb.h    |   53 +
 .../Pi3/Include/Protocol/ExtendedTextOut.h    |   36 +
 .../Pi3/Include/Protocol/RpiFirmware.h        |  131 ++
 .../Pi3/Include/Protocol/RpiMmcHost.h         |  206 ++
 .../MemoryInitPeiLib/MemoryInitPeiLib.c       |  162 ++
 .../MemoryInitPeiLib/MemoryInitPeiLib.inf     |   51 +
 .../PlatformBootManagerLib/PlatformBm.c       |  793 +++++++
 .../PlatformBootManagerLib/PlatformBm.h       |   60 +
 .../PlatformBootManagerLib.inf                |   90 +
 .../PlatformLib/AArch64/RaspberryPiHelper.S   |  107 +
 .../Pi3/Library/PlatformLib/PlatformLib.inf   |   65 +
 .../Pi3/Library/PlatformLib/RaspberryPi.c     |   99 +
 .../Pi3/Library/PlatformLib/RaspberryPiMem.c  |  160 ++
 .../PlatformUiAppLib/PlatformUiAppLib.c       |  120 ++
 .../PlatformUiAppLib/PlatformUiAppLib.inf     |   34 +
 .../Raspberry/Pi3/Library/ResetLib/ResetLib.c |  104 +
 .../Pi3/Library/ResetLib/ResetLib.inf         |   46 +
 .../VirtualRealTimeClockLib.c                 |  221 ++
 .../VirtualRealTimeClockLib.inf               |   43 +
 Platform/Raspberry/Pi3/RPi3.dec               |   59 +
 Platform/Raspberry/Pi3/RPi3.dsc               |  637 ++++++
 Platform/Raspberry/Pi3/RPi3.fdf               |  449 ++++
 Platform/Raspberry/Pi3/Readme.md              |  259 +++
 .../Raspberry/Pi3/TrustedFirmware/License.txt |   26 +
 .../Raspberry/Pi3/TrustedFirmware/README.md   |   42 +
 .../Raspberry/Pi3/TrustedFirmware/bl1.bin     |  Bin 0 -> 18801 bytes
 .../Raspberry/Pi3/TrustedFirmware/fip.bin     |  Bin 0 -> 41714 bytes
 Readme.md                                     |    3 +
 Silicon/Broadcom/Bcm283x/Bcm283x.dec          |   23 +
 .../Drivers/InterruptDxe/InterruptDxe.c       |  367 ++++
 .../Drivers/InterruptDxe/InterruptDxe.inf     |   48 +
 .../Include/IndustryStandard/Bcm2836.h        |   72 +
 .../Include/IndustryStandard/Bcm2836Gpio.h    |   49 +
 .../Include/IndustryStandard/Bcm2836SdHost.h  |   92 +
 .../Include/IndustryStandard/Bcm2836Sdio.h    |  199 ++
 .../Bcm283x/Include/Library/GpioLib.h         |   33 +
 .../Bcm283x/Library/GpioLib/GpioLib.c         |   89 +
 .../Bcm283x/Library/GpioLib/GpioLib.inf       |   39 +
 118 files changed, 27898 insertions(+)
 create mode 100644 Platform/Raspberry/Pi3/AcpiTables/AcpiTables.h
 create mode 100644 Platform/Raspberry/Pi3/AcpiTables/AcpiTables.inf
 create mode 100644 Platform/Raspberry/Pi3/AcpiTables/Csrt.aslc
 create mode 100644 Platform/Raspberry/Pi3/AcpiTables/Dbg2.aslc
 create mode 100644 Platform/Raspberry/Pi3/AcpiTables/Dsdt.asl
 create mode 100644 Platform/Raspberry/Pi3/AcpiTables/Fadt.aslc
 create mode 100644 Platform/Raspberry/Pi3/AcpiTables/Gtdt.aslc
 create mode 100644 Platform/Raspberry/Pi3/AcpiTables/Madt.aslc
 create mode 100644 Platform/Raspberry/Pi3/AcpiTables/Pep.asl
 create mode 100644 Platform/Raspberry/Pi3/AcpiTables/Pep.c
 create mode 100644 Platform/Raspberry/Pi3/AcpiTables/Pep.h
 create mode 100644 Platform/Raspberry/Pi3/AcpiTables/Rhpx.asl
 create mode 100644 Platform/Raspberry/Pi3/AcpiTables/Sdhc.asl
 create mode 100644 Platform/Raspberry/Pi3/AcpiTables/Spcr.asl
 create mode 100644 Platform/Raspberry/Pi3/AcpiTables/Uart.asl
 create mode 100644 Platform/Raspberry/Pi3/DeviceTree/License.txt
 create mode 100644 Platform/Raspberry/Pi3/DeviceTree/bcm2710-rpi-3-b-plus.dtb
 create mode 100644 Platform/Raspberry/Pi3/DeviceTree/bcm2710-rpi-3-b-plus.dts
 create mode 100644 Platform/Raspberry/Pi3/DeviceTree/bcm2710-rpi-3-b.dtb
 create mode 100644 Platform/Raspberry/Pi3/DeviceTree/bcm2710-rpi-3-b.dts
 create mode 100644 Platform/Raspberry/Pi3/Drivers/ArasanMmcHostDxe/ArasanMmcHostDxe.c
 create mode 100644 Platform/Raspberry/Pi3/Drivers/ArasanMmcHostDxe/ArasanMmcHostDxe.h
 create mode 100644 Platform/Raspberry/Pi3/Drivers/ArasanMmcHostDxe/ArasanMmcHostDxe.inf
 create mode 100644 Platform/Raspberry/Pi3/Drivers/ConfigDxe/ConfigDxe.c
 create mode 100644 Platform/Raspberry/Pi3/Drivers/ConfigDxe/ConfigDxe.inf
 create mode 100644 Platform/Raspberry/Pi3/Drivers/ConfigDxe/ConfigDxeFormSetGuid.h
 create mode 100644 Platform/Raspberry/Pi3/Drivers/ConfigDxe/ConfigDxeHii.uni
 create mode 100644 Platform/Raspberry/Pi3/Drivers/ConfigDxe/ConfigDxeHii.vfr
 create mode 100644 Platform/Raspberry/Pi3/Drivers/DisplayDxe/ComponentName.c
 create mode 100644 Platform/Raspberry/Pi3/Drivers/DisplayDxe/DisplayDxe.c
 create mode 100644 Platform/Raspberry/Pi3/Drivers/DisplayDxe/DisplayDxe.h
 create mode 100644 Platform/Raspberry/Pi3/Drivers/DisplayDxe/DisplayDxe.inf
 create mode 100644 Platform/Raspberry/Pi3/Drivers/DisplayDxe/Screenshot.c
 create mode 100644 Platform/Raspberry/Pi3/Drivers/DwUsbHostDxe/ComponentName.c
 create mode 100644 Platform/Raspberry/Pi3/Drivers/DwUsbHostDxe/DriverBinding.c
 create mode 100644 Platform/Raspberry/Pi3/Drivers/DwUsbHostDxe/DwUsbHostDxe.c
 create mode 100644 Platform/Raspberry/Pi3/Drivers/DwUsbHostDxe/DwUsbHostDxe.h
 create mode 100644 Platform/Raspberry/Pi3/Drivers/DwUsbHostDxe/DwUsbHostDxe.inf
 create mode 100644 Platform/Raspberry/Pi3/Drivers/DwUsbHostDxe/DwcHw.h
 create mode 100644 Platform/Raspberry/Pi3/Drivers/FdtDxe/FdtDxe.c
 create mode 100644 Platform/Raspberry/Pi3/Drivers/FdtDxe/FdtDxe.inf
 create mode 100644 Platform/Raspberry/Pi3/Drivers/GraphicsConsoleDxe/ComponentName.c
 create mode 100644 Platform/Raspberry/Pi3/Drivers/GraphicsConsoleDxe/GraphicsConsole.c
 create mode 100644 Platform/Raspberry/Pi3/Drivers/GraphicsConsoleDxe/GraphicsConsole.h
 create mode 100644 Platform/Raspberry/Pi3/Drivers/GraphicsConsoleDxe/GraphicsConsoleDxe.inf
 create mode 100644 Platform/Raspberry/Pi3/Drivers/GraphicsConsoleDxe/GraphicsConsoleDxe.uni
 create mode 100644 Platform/Raspberry/Pi3/Drivers/GraphicsConsoleDxe/GraphicsConsoleDxeExtra.uni
 create mode 100644 Platform/Raspberry/Pi3/Drivers/GraphicsConsoleDxe/NewFont.c
 create mode 100644 Platform/Raspberry/Pi3/Drivers/LogoDxe/License.txt
 create mode 100644 Platform/Raspberry/Pi3/Drivers/LogoDxe/Logo.bmp
 create mode 100644 Platform/Raspberry/Pi3/Drivers/LogoDxe/Logo.c
 create mode 100644 Platform/Raspberry/Pi3/Drivers/LogoDxe/Logo.eps
 create mode 100644 Platform/Raspberry/Pi3/Drivers/LogoDxe/Logo.idf
 create mode 100644 Platform/Raspberry/Pi3/Drivers/LogoDxe/Logo.inf
 create mode 100644 Platform/Raspberry/Pi3/Drivers/LogoDxe/Logo.uni
 create mode 100644 Platform/Raspberry/Pi3/Drivers/LogoDxe/LogoDxe.inf
 create mode 100644 Platform/Raspberry/Pi3/Drivers/LogoDxe/LogoDxe.uni
 create mode 100644 Platform/Raspberry/Pi3/Drivers/LogoDxe/LogoDxeExtra.uni
 create mode 100644 Platform/Raspberry/Pi3/Drivers/LogoDxe/LogoExtra.uni
 create mode 100644 Platform/Raspberry/Pi3/Drivers/MmcDxe/ComponentName.c
 create mode 100644 Platform/Raspberry/Pi3/Drivers/MmcDxe/Diagnostics.c
 create mode 100644 Platform/Raspberry/Pi3/Drivers/MmcDxe/Mmc.c
 create mode 100644 Platform/Raspberry/Pi3/Drivers/MmcDxe/Mmc.h
 create mode 100644 Platform/Raspberry/Pi3/Drivers/MmcDxe/MmcBlockIo.c
 create mode 100644 Platform/Raspberry/Pi3/Drivers/MmcDxe/MmcDebug.c
 create mode 100644 Platform/Raspberry/Pi3/Drivers/MmcDxe/MmcDxe.inf
 create mode 100644 Platform/Raspberry/Pi3/Drivers/MmcDxe/MmcIdentification.c
 create mode 100644 Platform/Raspberry/Pi3/Drivers/PlatformSmbiosDxe/PlatformSmbiosDxe.c
 create mode 100644 Platform/Raspberry/Pi3/Drivers/PlatformSmbiosDxe/PlatformSmbiosDxe.inf
 create mode 100644 Platform/Raspberry/Pi3/Drivers/RpiFirmwareDxe/RpiFirmwareDxe.c
 create mode 100644 Platform/Raspberry/Pi3/Drivers/RpiFirmwareDxe/RpiFirmwareDxe.inf
 create mode 100644 Platform/Raspberry/Pi3/Drivers/SdHostDxe/SdHostDxe.c
 create mode 100644 Platform/Raspberry/Pi3/Drivers/SdHostDxe/SdHostDxe.inf
 create mode 100644 Platform/Raspberry/Pi3/Drivers/VarBlockServiceDxe/FileIo.c
 create mode 100644 Platform/Raspberry/Pi3/Drivers/VarBlockServiceDxe/FvbInfo.c
 create mode 100644 Platform/Raspberry/Pi3/Drivers/VarBlockServiceDxe/VarBlockService.c
 create mode 100644 Platform/Raspberry/Pi3/Drivers/VarBlockServiceDxe/VarBlockService.h
 create mode 100644 Platform/Raspberry/Pi3/Drivers/VarBlockServiceDxe/VarBlockServiceDxe.c
 create mode 100644 Platform/Raspberry/Pi3/Drivers/VarBlockServiceDxe/VarBlockServiceDxe.inf
 create mode 100644 Platform/Raspberry/Pi3/Include/IndustryStandard/RpiMbox.h
 create mode 100644 Platform/Raspberry/Pi3/Include/Protocol/DwUsb.h
 create mode 100644 Platform/Raspberry/Pi3/Include/Protocol/ExtendedTextOut.h
 create mode 100644 Platform/Raspberry/Pi3/Include/Protocol/RpiFirmware.h
 create mode 100644 Platform/Raspberry/Pi3/Include/Protocol/RpiMmcHost.h
 create mode 100644 Platform/Raspberry/Pi3/Library/MemoryInitPeiLib/MemoryInitPeiLib.c
 create mode 100644 Platform/Raspberry/Pi3/Library/MemoryInitPeiLib/MemoryInitPeiLib.inf
 create mode 100644 Platform/Raspberry/Pi3/Library/PlatformBootManagerLib/PlatformBm.c
 create mode 100644 Platform/Raspberry/Pi3/Library/PlatformBootManagerLib/PlatformBm.h
 create mode 100644 Platform/Raspberry/Pi3/Library/PlatformBootManagerLib/PlatformBootManagerLib.inf
 create mode 100644 Platform/Raspberry/Pi3/Library/PlatformLib/AArch64/RaspberryPiHelper.S
 create mode 100644 Platform/Raspberry/Pi3/Library/PlatformLib/PlatformLib.inf
 create mode 100644 Platform/Raspberry/Pi3/Library/PlatformLib/RaspberryPi.c
 create mode 100644 Platform/Raspberry/Pi3/Library/PlatformLib/RaspberryPiMem.c
 create mode 100644 Platform/Raspberry/Pi3/Library/PlatformUiAppLib/PlatformUiAppLib.c
 create mode 100644 Platform/Raspberry/Pi3/Library/PlatformUiAppLib/PlatformUiAppLib.inf
 create mode 100644 Platform/Raspberry/Pi3/Library/ResetLib/ResetLib.c
 create mode 100644 Platform/Raspberry/Pi3/Library/ResetLib/ResetLib.inf
 create mode 100644 Platform/Raspberry/Pi3/Library/VirtualRealTimeClockLib/VirtualRealTimeClockLib.c
 create mode 100644 Platform/Raspberry/Pi3/Library/VirtualRealTimeClockLib/VirtualRealTimeClockLib.inf
 create mode 100644 Platform/Raspberry/Pi3/RPi3.dec
 create mode 100644 Platform/Raspberry/Pi3/RPi3.dsc
 create mode 100644 Platform/Raspberry/Pi3/RPi3.fdf
 create mode 100644 Platform/Raspberry/Pi3/Readme.md
 create mode 100644 Platform/Raspberry/Pi3/TrustedFirmware/License.txt
 create mode 100644 Platform/Raspberry/Pi3/TrustedFirmware/README.md
 create mode 100644 Platform/Raspberry/Pi3/TrustedFirmware/bl1.bin
 create mode 100644 Platform/Raspberry/Pi3/TrustedFirmware/fip.bin
 create mode 100644 Silicon/Broadcom/Bcm283x/Bcm283x.dec
 create mode 100644 Silicon/Broadcom/Bcm283x/Drivers/InterruptDxe/InterruptDxe.c
 create mode 100644 Silicon/Broadcom/Bcm283x/Drivers/InterruptDxe/InterruptDxe.inf
 create mode 100644 Silicon/Broadcom/Bcm283x/Include/IndustryStandard/Bcm2836.h
 create mode 100644 Silicon/Broadcom/Bcm283x/Include/IndustryStandard/Bcm2836Gpio.h
 create mode 100644 Silicon/Broadcom/Bcm283x/Include/IndustryStandard/Bcm2836SdHost.h
 create mode 100644 Silicon/Broadcom/Bcm283x/Include/IndustryStandard/Bcm2836Sdio.h
 create mode 100644 Silicon/Broadcom/Bcm283x/Include/Library/GpioLib.h
 create mode 100644 Silicon/Broadcom/Bcm283x/Library/GpioLib/GpioLib.c
 create mode 100644 Silicon/Broadcom/Bcm283x/Library/GpioLib/GpioLib.inf

-- 
2.17.0.windows.1



             reply	other threads:[~2019-01-29 16:27 UTC|newest]

Thread overview: 47+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-01-29 16:26 Pete Batard [this message]
2019-01-29 16:26 ` [PATCH v4 edk2-platforms 01/23] Silicon/Broadcom/Bcm282x: Add interrupt driver Pete Batard
2019-01-31 15:24   ` Leif Lindholm
2019-01-31 17:19     ` Ard Biesheuvel
2019-01-31 19:57       ` Leif Lindholm
2019-01-31 21:01         ` Andrew Fish
2019-02-01  8:43           ` Laszlo Ersek
2019-02-01 10:28             ` Pete Batard
2019-02-01 15:18               ` Leif Lindholm
2019-01-29 16:26 ` [PATCH v4 edk2-platforms 02/23] Silicon/Broadcom/Bcm283x: Add GpioLib Pete Batard
2019-01-29 16:26 ` [PATCH v4 edk2-platforms 03/23] Platform/Raspberry/Pi3: Add ACPI tables Pete Batard
2019-01-29 16:26 ` [PATCH v4 edk2-platforms 04/23] Platform/Raspberry/Pi3: Add reset and memory init libraries Pete Batard
2019-01-29 16:26 ` [PATCH v4 edk2-platforms 05/23] Platform/Raspberry/Pi3: Add platform library Pete Batard
2019-01-29 16:26 ` [PATCH v4 edk2-platforms 06/23] Platform/Raspberry/Pi3: Add RTC library Pete Batard
2019-01-30 22:22   ` Leif Lindholm
2019-01-31 12:31     ` Pete Batard
2019-01-29 16:26 ` [PATCH v4 edk2-platforms 07/23] Platform/Raspberry/Pi3: Add firmware driver Pete Batard
2019-01-29 16:26 ` [PATCH v4 edk2-platforms 08/23] Platform/Raspberry/Pi3: Add platform config driver Pete Batard
2019-01-29 16:26 ` [PATCH v4 edk2-platforms 09/23] Platform/Raspberry/Pi3: Add SMBIOS driver Pete Batard
2019-01-29 16:26 ` [PATCH v4 edk2-platforms 10/23] Platform/Raspberry/Pi3: Add display driver Pete Batard
2019-01-29 16:26 ` [PATCH v4 edk2-platforms 11/23] Platform/Raspberry/Pi3: Add console driver Pete Batard
2019-01-29 16:26 ` [PATCH v4 edk2-platforms 12/23] Platform/Raspberry/Pi3: Add NV storage driver Pete Batard
2019-01-29 16:26 ` [PATCH v4 edk2-platforms 13/23] Platform/Raspberry/Pi3: Add Device Tree driver Pete Batard
2019-01-29 16:26 ` [PATCH v4 edk2-platforms 14/23] Platform/Raspberry/Pi3: Add base MMC driver Pete Batard
2019-01-29 16:26 ` [PATCH v4 edk2-platforms 15/23] Platform/Raspberry/Pi3: Add Arasan " Pete Batard
2019-01-29 16:26 ` [PATCH v4 edk2-platforms 16/23] Platform/Raspberry/Pi3: Platform/Raspberry/Pi3: Add SD Host driver Pete Batard
2019-01-29 16:26 ` [PATCH v4 edk2-platforms 17/23] Platform/Raspberry/Pi3: Add platform boot manager and helper libraries Pete Batard
2019-01-29 16:26 ` [PATCH v4 edk2-platforms 18/23] Platform/Raspberry/Pi3: Add USB host driver Pete Batard
2019-01-29 16:26 ` [PATCH v4 edk2-platforms 19/23] Platform/Raspberry/Pi3: Add platform Pete Batard
2019-01-29 16:26 ` [PATCH v4 edk2-platforms 20/23] Platform/Raspberry/Pi3: Add platform readme Pete Batard
2019-01-30 21:50   ` Leif Lindholm
2019-01-31 12:30     ` Pete Batard
2019-01-31 14:13       ` Leif Lindholm
2019-01-31 14:36         ` Ard Biesheuvel
2019-01-31 14:44           ` Ard Biesheuvel
2019-01-31 17:19             ` Pete Batard
2019-01-29 16:26 ` [PATCH v4 edk2-platforms 21/23] Platform/Raspberry/Pi3 *NON-OSI*: Add ATF binaries Pete Batard
2019-01-29 16:26 ` [PATCH v4 edk2-platforms 22/23] Platform/Raspberry/Pi3 *NON-OSI*: Add Device Tree binaries Pete Batard
2019-01-29 16:26 ` [PATCH v4 edk2-platforms 23/23] Platform/Raspberry/Pi3 *NON-OSI*: Add logo driver Pete Batard
2019-01-29 17:40 ` [PATCH v4 edk2-platforms 00/23] Platform/Raspberry: Add Raspberry Pi 3 support Ard Biesheuvel
2019-01-29 21:09   ` Pete Batard
2019-01-30 19:38     ` Ard Biesheuvel
2019-01-30 19:42       ` Leif Lindholm
2019-01-30 19:45         ` Ard Biesheuvel
2019-01-30 21:59 ` Leif Lindholm
2019-01-30 22:28   ` Leif Lindholm
2019-01-31 12:31   ` Pete Batard

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-list from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20190129162655.3800-1-pete@akeo.ie \
    --to=devel@edk2.groups.io \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox