public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "Abdul Lateef Attar via groups.io" <AbdulLateef.Attar=amd.com@groups.io>
To: <devel@edk2.groups.io>
Cc: Abdul Lateef Attar <AbdulLateef.Attar@amd.com>,
	Abner Chang <abner.chang@amd.com>,
	Paul Grimes <paul.grimes@amd.com>
Subject: [edk2-devel] [PATCH 0/6] AmdPlatformPkg: Adds board independent modules
Date: Tue, 14 May 2024 13:45:42 +0530	[thread overview]
Message-ID: <cover.1715674395.git.AbdulLateef.Attar@amd.com> (raw)

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]
-=-=-=-=-=-=-=-=-=-=-=-



             reply	other threads:[~2024-05-14  8:16 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-05-14  8:15 Abdul Lateef Attar via groups.io [this message]
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

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=cover.1715674395.git.AbdulLateef.Attar@amd.com \
    --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