aboutsummaryrefslogtreecommitdiffstats
path: root/Lessons/Lesson_25/README.md
diff options
context:
space:
mode:
authorKonstantin Aladyshev <aladyshev22@gmail.com>2022-08-08 14:53:25 +0300
committerKonstantin Aladyshev <aladyshev22@gmail.com>2022-08-08 14:53:25 +0300
commit0cda4601cf92ba1679ef8fbe00e3e4a77e185d2e (patch)
treef830b1275ee8e2bd75a5515069334ab895a369dc /Lessons/Lesson_25/README.md
parentb3e465c18f383f5415862ad7680ab2290b24f773 (diff)
downloadUEFI-Lessons-0cda4601cf92ba1679ef8fbe00e3e4a77e185d2e.tar.gz
UEFI-Lessons-0cda4601cf92ba1679ef8fbe00e3e4a77e185d2e.tar.bz2
UEFI-Lessons-0cda4601cf92ba1679ef8fbe00e3e4a77e185d2e.zip
Add PcdToken guard for Dynamic PCD
Signed-off-by: Konstantin Aladyshev <aladyshev22@gmail.com>
Diffstat (limited to 'Lessons/Lesson_25/README.md')
-rw-r--r--Lessons/Lesson_25/README.md19
1 files changed, 19 insertions, 0 deletions
diff --git a/Lessons/Lesson_25/README.md b/Lessons/Lesson_25/README.md
index 15b0b85..ccbcc90 100644
--- a/Lessons/Lesson_25/README.md
+++ b/Lessons/Lesson_25/README.md
@@ -144,6 +144,25 @@ PcdDynamicInt32=0xCAFECAFE
PcdDynamicInt32=0xBEEFBEEF
```
+As we don't always use our application as a part of Ovmf package it would be better to guard the `PcdDynamicInt32` access for cases when local tokan is unassigned.
+
+We can do it with a help of a `PcdToken` macro:
+```
+#define PcdToken(TokenName) _PCD_TOKEN_##TokenName
+```
+
+Code usage as simple as this:
+```
+if (PcdToken(PcdDynamicInt32)) {
+ Print(L"PcdDynamicInt32=0x%x\n", PcdGet32(PcdDynamicInt32));
+ PcdSet32S(PcdDynamicInt32, 0xBEEFBEEF);
+ Print(L"PcdDynamicInt32=0x%x\n", PcdGet32(PcdDynamicInt32));
+} else {
+ Print(L"PcdDynamicInt32 token is unassigned\n");
+}
+```
+At least now if you accidently copy `Build/UefiLessonsPkg/RELEASE_GCC5/X64/PCDLesson.efi` instead of `Build/OvmfX64/RELEASE_GCC5/X64/PCDLesson.efi` the application won't break the OVMF.
+
# Dynamic Ex PCD
Suppose we already have the necessary PCD in the PCD Database. And we want to access it via application from the UEFI Shell.