2018-08-16 19:50:44 +00:00
|
|
|
From 6f89eae9f2abe20e35058848e7cc10a69a6b05ec Mon Sep 17 00:00:00 2001
|
|
|
|
Message-Id: <6f89eae9f2abe20e35058848e7cc10a69a6b05ec.1534970217.git.crobinso@redhat.com>
|
|
|
|
In-Reply-To: <37942481c89eca732239c23fe606680e6e3faf77.1534970217.git.crobinso@redhat.com>
|
|
|
|
References: <37942481c89eca732239c23fe606680e6e3faf77.1534970217.git.crobinso@redhat.com>
|
2017-11-14 15:05:26 +00:00
|
|
|
From: Laszlo Ersek <lersek@redhat.com>
|
|
|
|
Date: Wed, 14 Oct 2015 13:49:43 +0200
|
2018-08-16 19:50:44 +00:00
|
|
|
Subject: [PATCH 14/17] ArmPlatformPkg: introduce fixed PCD for early hello
|
2018-05-29 21:06:35 +00:00
|
|
|
message (RH only)
|
2017-11-14 15:05:26 +00:00
|
|
|
|
|
|
|
Drew has proposed that ARM|AARCH64 platform firmware (especially virtual
|
|
|
|
machine firmware) print a reasonably early, simple hello message to the
|
|
|
|
serial port, regardless of debug mask settings. This should inform
|
|
|
|
interactive users, and provide some rough help in localizing boot
|
|
|
|
problems, even with restrictive debug masks.
|
|
|
|
|
|
|
|
If a platform doesn't want this feature, it should stick with the default
|
|
|
|
empty string.
|
|
|
|
|
|
|
|
RHBZ: https://bugzilla.redhat.com/show_bug.cgi?id=1270279
|
|
|
|
Downstream only:
|
|
|
|
<http://thread.gmane.org/gmane.comp.bios.edk2.devel/2996/focus=3433>.
|
|
|
|
|
|
|
|
Notes about the 20160608b-988715a -> 20170228-c325e41585e3 rebase:
|
|
|
|
|
|
|
|
- no changes
|
|
|
|
|
|
|
|
Notes about the 20170228-c325e41585e3 -> 20171011-92d07e48907f rebase:
|
|
|
|
|
|
|
|
- no changes
|
|
|
|
|
|
|
|
Suggested-by: Drew Jones <drjones@redhat.com>
|
|
|
|
Contributed-under: TianoCore Contribution Agreement 1.0
|
|
|
|
Signed-off-by: Laszlo Ersek <lersek@redhat.com>
|
|
|
|
(cherry picked from commit 7ce97b06421434c82095f01a1753a8c9c546cc30)
|
|
|
|
(cherry picked from commit 20b1f1cbd0590aa71c6d99d35e23cf08e0707750)
|
2018-05-29 21:06:35 +00:00
|
|
|
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
|
2018-08-16 19:50:44 +00:00
|
|
|
Signed-off-by: Cole Robinson <crobinso@redhat.com>
|
2017-11-14 15:05:26 +00:00
|
|
|
---
|
|
|
|
ArmPlatformPkg/ArmPlatformPkg.dec | 7 +++++++
|
|
|
|
1 file changed, 7 insertions(+)
|
|
|
|
|
|
|
|
diff --git a/ArmPlatformPkg/ArmPlatformPkg.dec b/ArmPlatformPkg/ArmPlatformPkg.dec
|
2018-08-16 19:50:44 +00:00
|
|
|
index 5f67e74154..2956d3e2d8 100644
|
2017-11-14 15:05:26 +00:00
|
|
|
--- a/ArmPlatformPkg/ArmPlatformPkg.dec
|
|
|
|
+++ b/ArmPlatformPkg/ArmPlatformPkg.dec
|
2018-08-16 19:50:44 +00:00
|
|
|
@@ -113,6 +113,13 @@
|
2018-05-29 21:06:35 +00:00
|
|
|
## If set, this will swap settings for HDLCD RED_SELECT and BLUE_SELECT registers
|
|
|
|
gArmPlatformTokenSpaceGuid.PcdArmHdLcdSwapBlueRedSelect|FALSE|BOOLEAN|0x00000045
|
2017-11-14 15:05:26 +00:00
|
|
|
|
|
|
|
+ #
|
|
|
|
+ # Early hello message (ASCII string), printed to the serial port.
|
|
|
|
+ # If set to the empty string, nothing is printed.
|
|
|
|
+ # Otherwise, a trailing CRLF should be specified explicitly.
|
|
|
|
+ #
|
|
|
|
+ gArmPlatformTokenSpaceGuid.PcdEarlyHelloMessage|""|VOID*|0x00000100
|
|
|
|
+
|
|
|
|
[PcdsFixedAtBuild.common,PcdsDynamic.common]
|
|
|
|
## PL031 RealTimeClock
|
|
|
|
gArmPlatformTokenSpaceGuid.PcdPL031RtcBase|0x0|UINT32|0x00000024
|
|
|
|
--
|
2018-08-16 19:50:44 +00:00
|
|
|
2.17.1
|
2017-11-14 15:05:26 +00:00
|
|
|
|