public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [edk2-devel] [PATCH 0/6] AmdPlatformPkg: Adds board independent modules
@ 2024-05-14  8:15 Abdul Lateef Attar via groups.io
  2024-05-14  8:15 ` [edk2-devel] [PATCH 1/6] AmdPlatformPkg: Adds LogoDxe driver Abdul Lateef Attar via groups.io
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: Abdul Lateef Attar via groups.io @ 2024-05-14  8:15 UTC (permalink / raw)
  To: devel; +Cc: Abdul Lateef Attar, Abner Chang, Paul Grimes

PR: https://github.com/tianocore/edk2-platforms/pull/141
Adds various libraries and drivers for AMD Platform.

Cc: Abner Chang <abner.chang@amd.com>
Cc: Paul Grimes <paul.grimes@amd.com>

Abdul Lateef Attar (6):
  AmdPlatformPkg: Adds LogoDxe driver
  AmdPlatformPkg: Adds BaseAlwaysFalseDepexLib Library
  AmdPlatformPkg: Implements SerialPortLib for simulator
  AmdPlatformPkg: Adds PlatformSocLib library class
  AmdPlatformPkg: Adds AmdConfigRouting driver
  AmdPlatformPkg: Adds SecureBootDefaultKeysInit driver

 .../AMD/AmdPlatformPkg/AmdPlatformPkg.dec     |   17 +-
 .../AMD/AmdPlatformPkg/AmdPlatformPkg.dsc     |   49 +-
 .../Include/Library/AmdPlatformSocLib.h       |  134 ++
 .../BaseAlwaysFalseDepexLib.c                 |   20 +
 .../BaseAlwaysFalseDepexLib.inf               |   35 +
 .../BaseAlwaysFalseDepexLib.uni               |   12 +
 .../DxePlatformSocLib/DxePlatformSocLibNull.c |   75 ++
 .../DxePlatformSocLibNull.inf                 |   26 +
 .../DxePlatformSocLibNull.uni                 |   13 +
 .../SimulatorSerialPortLibPort80.c            |  208 ++++
 .../SimulatorSerialPortLibPort80.inf          |   31 +
 .../HiiConfigRouting/AmdConfigRouting.inf     |   45 +
 .../HiiConfigRouting/AmdConfigRoutingEntry.c  |   57 +
 .../HiiConfigRouting/AmdHiiConfigRouting.c    | 1101 +++++++++++++++++
 .../HiiConfigRouting/AmdHiiConfigRouting.h    |  189 +++
 .../Universal/LogoDxe/LogoDxe/JpegLogo.idf    |   10 +
 .../Universal/LogoDxe/LogoDxe/JpegLogoDxe.inf |   57 +
 .../Universal/LogoDxe/LogoDxe/Logo.bmp        |  Bin 0 -> 522054 bytes
 .../Universal/LogoDxe/LogoDxe/Logo.c          |  194 +++
 .../Universal/LogoDxe/LogoDxe/Logo.h          |   23 +
 .../Universal/LogoDxe/LogoDxe/Logo.idf        |   10 +
 .../Universal/LogoDxe/LogoDxe/Logo.jpg        |  Bin 0 -> 75403 bytes
 .../Universal/LogoDxe/LogoDxe/LogoDxe.inf     |   58 +
 .../Universal/LogoDxe/LogoDxe/S3Logo.bmp      |  Bin 0 -> 964114 bytes
 .../Universal/LogoDxe/LogoDxe/S3Logo.idf      |   10 +
 .../Universal/LogoDxe/LogoDxe/S3LogoDxe.inf   |   57 +
 .../SecureBootDefaultKeysInit.c               |  645 ++++++++++
 .../SecureBootDefaultKeysInit.inf             |   49 +
 28 files changed, 3123 insertions(+), 2 deletions(-)
 create mode 100644 Platform/AMD/AmdPlatformPkg/Include/Library/AmdPlatformSocLib.h
 create mode 100644 Platform/AMD/AmdPlatformPkg/Library/BaseAlwaysFalseDepexLib/BaseAlwaysFalseDepexLib.c
 create mode 100644 Platform/AMD/AmdPlatformPkg/Library/BaseAlwaysFalseDepexLib/BaseAlwaysFalseDepexLib.inf
 create mode 100644 Platform/AMD/AmdPlatformPkg/Library/BaseAlwaysFalseDepexLib/BaseAlwaysFalseDepexLib.uni
 create mode 100644 Platform/AMD/AmdPlatformPkg/Library/DxePlatformSocLib/DxePlatformSocLibNull.c
 create mode 100644 Platform/AMD/AmdPlatformPkg/Library/DxePlatformSocLib/DxePlatformSocLibNull.inf
 create mode 100644 Platform/AMD/AmdPlatformPkg/Library/DxePlatformSocLib/DxePlatformSocLibNull.uni
 create mode 100644 Platform/AMD/AmdPlatformPkg/Library/SimulatorSerialPortLibPort80/SimulatorSerialPortLibPort80.c
 create mode 100644 Platform/AMD/AmdPlatformPkg/Library/SimulatorSerialPortLibPort80/SimulatorSerialPortLibPort80.inf
 create mode 100644 Platform/AMD/AmdPlatformPkg/Universal/HiiConfigRouting/AmdConfigRouting.inf
 create mode 100644 Platform/AMD/AmdPlatformPkg/Universal/HiiConfigRouting/AmdConfigRoutingEntry.c
 create mode 100644 Platform/AMD/AmdPlatformPkg/Universal/HiiConfigRouting/AmdHiiConfigRouting.c
 create mode 100644 Platform/AMD/AmdPlatformPkg/Universal/HiiConfigRouting/AmdHiiConfigRouting.h
 create mode 100644 Platform/AMD/AmdPlatformPkg/Universal/LogoDxe/LogoDxe/JpegLogo.idf
 create mode 100644 Platform/AMD/AmdPlatformPkg/Universal/LogoDxe/LogoDxe/JpegLogoDxe.inf
 create mode 100755 Platform/AMD/AmdPlatformPkg/Universal/LogoDxe/LogoDxe/Logo.bmp
 create mode 100644 Platform/AMD/AmdPlatformPkg/Universal/LogoDxe/LogoDxe/Logo.c
 create mode 100644 Platform/AMD/AmdPlatformPkg/Universal/LogoDxe/LogoDxe/Logo.h
 create mode 100644 Platform/AMD/AmdPlatformPkg/Universal/LogoDxe/LogoDxe/Logo.idf
 create mode 100644 Platform/AMD/AmdPlatformPkg/Universal/LogoDxe/LogoDxe/Logo.jpg
 create mode 100644 Platform/AMD/AmdPlatformPkg/Universal/LogoDxe/LogoDxe/LogoDxe.inf
 create mode 100644 Platform/AMD/AmdPlatformPkg/Universal/LogoDxe/LogoDxe/S3Logo.bmp
 create mode 100644 Platform/AMD/AmdPlatformPkg/Universal/LogoDxe/LogoDxe/S3Logo.idf
 create mode 100644 Platform/AMD/AmdPlatformPkg/Universal/LogoDxe/LogoDxe/S3LogoDxe.inf
 create mode 100644 Platform/AMD/AmdPlatformPkg/Universal/SecureBoot/SecureBootDefaultKeysInit/SecureBootDefaultKeysInit.c
 create mode 100644 Platform/AMD/AmdPlatformPkg/Universal/SecureBoot/SecureBootDefaultKeysInit/SecureBootDefaultKeysInit.inf

-- 
2.34.1



-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#118882): https://edk2.groups.io/g/devel/message/118882
Mute This Topic: https://groups.io/mt/106090920/7686176
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io]
-=-=-=-=-=-=-=-=-=-=-=-



^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2024-05-14  8:16 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-05-14  8:15 [edk2-devel] [PATCH 0/6] AmdPlatformPkg: Adds board independent modules Abdul Lateef Attar via groups.io
2024-05-14  8:15 ` [edk2-devel] [PATCH 1/6] AmdPlatformPkg: Adds LogoDxe driver Abdul Lateef Attar via groups.io
2024-05-14  8:15 ` [edk2-devel] [PATCH 2/6] AmdPlatformPkg: Adds BaseAlwaysFalseDepexLib Library Abdul Lateef Attar via groups.io
2024-05-14  8:15 ` [edk2-devel] [PATCH 3/6] AmdPlatformPkg: Implements SerialPortLib for simulator Abdul Lateef Attar via groups.io
2024-05-14  8:15 ` [edk2-devel] [PATCH 4/6] AmdPlatformPkg: Adds PlatformSocLib library class Abdul Lateef Attar via groups.io
2024-05-14  8:15 ` [edk2-devel] [PATCH 5/6] AmdPlatformPkg: Adds AmdConfigRouting driver Abdul Lateef Attar via groups.io
2024-05-14  8:15 ` [edk2-devel] [PATCH 6/6] AmdPlatformPkg: Adds SecureBootDefaultKeysInit driver Abdul Lateef Attar via groups.io

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox