]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Universal/PCD/Pei/Pcd.c
Fix some typo.
[mirror_edk2.git] / MdeModulePkg / Universal / PCD / Pei / Pcd.c
1 /** @file
2 All Pcd Ppi services are implemented here.
3
4 Copyright (c) 2006 - 2008, Intel Corporation
5 All rights reserved. This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
9
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12
13 **/
14
15 #include "Service.h"
16
17 PCD_PPI mPcdPpiInstance = {
18 PeiPcdSetSku,
19
20 PeiPcdGet8,
21 PeiPcdGet16,
22 PeiPcdGet32,
23 PeiPcdGet64,
24 PeiPcdGetPtr,
25 PeiPcdGetBool,
26 PeiPcdGetSize,
27
28 PeiPcdGet8Ex,
29 PeiPcdGet16Ex,
30 PeiPcdGet32Ex,
31 PeiPcdGet64Ex,
32 PeiPcdGetPtrEx,
33 PeiPcdGetBoolEx,
34 PeiPcdGetSizeEx,
35
36 PeiPcdSet8,
37 PeiPcdSet16,
38 PeiPcdSet32,
39 PeiPcdSet64,
40 PeiPcdSetPtr,
41 PeiPcdSetBool,
42
43 PeiPcdSet8Ex,
44 PeiPcdSet16Ex,
45 PeiPcdSet32Ex,
46 PeiPcdSet64Ex,
47 PeiPcdSetPtrEx,
48 PeiPcdSetBoolEx,
49
50 PeiRegisterCallBackOnSet,
51 PcdUnRegisterCallBackOnSet,
52 PeiPcdGetNextToken,
53 PeiPcdGetNextTokenSpace
54 };
55
56 EFI_PEI_PPI_DESCRIPTOR mPpiPCD = {
57 (EFI_PEI_PPI_DESCRIPTOR_PPI | EFI_PEI_PPI_DESCRIPTOR_TERMINATE_LIST),
58 &gPcdPpiGuid,
59 &mPcdPpiInstance
60 };
61
62 /**
63 Main entry for PCD PEIM driver.
64
65 This routine initialize the PCD database for PEI phase and install PCD_PPI.
66
67 @param FileHandle Handle of the file being invoked.
68 @param PeiServices Describes the list of possible PEI Services.
69
70 @return Status of install PCD_PPI
71
72 **/
73 EFI_STATUS
74 EFIAPI
75 PcdPeimInit (
76 IN EFI_PEI_FILE_HANDLE FileHandle,
77 IN CONST EFI_PEI_SERVICES **PeiServices
78 )
79 {
80 BuildPcdDatabase ();
81
82 return PeiServicesInstallPpi (&mPpiPCD);
83 }
84
85 /**
86 Sets the SKU value for subsequent calls to set or get PCD token values.
87
88 SetSku() sets the SKU Id to be used for subsequent calls to set or get PCD values.
89 SetSku() is normally called only once by the system.
90
91 For each item (token), the database can hold a single value that applies to all SKUs,
92 or multiple values, where each value is associated with a specific SKU Id. Items with multiple,
93 SKU-specific values are called SKU enabled.
94
95 The SKU Id of zero is reserved as a default. The valid SkuId range is 1 to 255.
96 For tokens that are not SKU enabled, the system ignores any set SKU Id and works with the
97 single value for that token. For SKU-enabled tokens, the system will use the SKU Id set by the
98 last call to SetSku(). If no SKU Id is set or the currently set SKU Id isn't valid for the specified token,
99 the system uses the default SKU Id. If the system attempts to use the default SKU Id and no value has been
100 set for that Id, the results are unpredictable.
101
102 @param[in] SkuId The SKU value that will be used when the PCD service will retrieve and
103 set values associated with a PCD token.
104
105 **/
106 VOID
107 EFIAPI
108 PeiPcdSetSku (
109 IN UINTN SkuId
110 )
111 {
112
113 GetPcdDatabase()->Init.SystemSkuId = (SKU_ID) SkuId;
114
115 return;
116 }
117
118 /**
119 Retrieves an 8-bit value for a given PCD token.
120
121 Retrieves the current byte-sized value for a PCD token number.
122 If the TokenNumber is invalid, the results are unpredictable.
123
124 @param[in] TokenNumber The PCD token number.
125
126 @return The UINT8 value.
127
128 **/
129 UINT8
130 EFIAPI
131 PeiPcdGet8 (
132 IN UINTN TokenNumber
133 )
134 {
135 return *((UINT8 *) GetWorker (TokenNumber, sizeof (UINT8)));
136 }
137
138 /**
139 Retrieves an 16-bit value for a given PCD token.
140
141 Retrieves the current 16-bits value for a PCD token number.
142 If the TokenNumber is invalid, the results are unpredictable.
143
144 @param[in] TokenNumber The PCD token number.
145
146 @return The UINT16 value.
147
148 **/
149 UINT16
150 EFIAPI
151 PeiPcdGet16 (
152 IN UINTN TokenNumber
153 )
154 {
155 return ReadUnaligned16 (GetWorker (TokenNumber, sizeof (UINT16)));
156 }
157
158 /**
159 Retrieves an 32-bit value for a given PCD token.
160
161 Retrieves the current 32-bits value for a PCD token number.
162 If the TokenNumber is invalid, the results are unpredictable.
163
164 @param[in] TokenNumber The PCD token number.
165
166 @return The UINT32 value.
167
168 **/
169 UINT32
170 EFIAPI
171 PeiPcdGet32 (
172 IN UINTN TokenNumber
173 )
174 {
175 return ReadUnaligned32 (GetWorker (TokenNumber, sizeof (UINT32)));
176 }
177
178 /**
179 Retrieves an 64-bit value for a given PCD token.
180
181 Retrieves the current 64-bits value for a PCD token number.
182 If the TokenNumber is invalid, the results are unpredictable.
183
184 @param[in] TokenNumber The PCD token number.
185
186 @return The UINT64 value.
187
188 **/
189 UINT64
190 EFIAPI
191 PeiPcdGet64 (
192 IN UINTN TokenNumber
193 )
194 {
195 return ReadUnaligned64 (GetWorker (TokenNumber, sizeof (UINT64)));
196 }
197
198 /**
199 Retrieves a pointer to a value for a given PCD token.
200
201 Retrieves the current pointer to the buffer for a PCD token number.
202 Do not make any assumptions about the alignment of the pointer that
203 is returned by this function call. If the TokenNumber is invalid,
204 the results are unpredictable.
205
206 @param[in] TokenNumber The PCD token number.
207
208 @return The pointer to the buffer to be retrieved.
209
210 **/
211 VOID *
212 EFIAPI
213 PeiPcdGetPtr (
214 IN UINTN TokenNumber
215 )
216 {
217 return GetWorker (TokenNumber, 0);
218 }
219
220 /**
221 Retrieves a Boolean value for a given PCD token.
222
223 Retrieves the current boolean value for a PCD token number.
224 Do not make any assumptions about the alignment of the pointer that
225 is returned by this function call. If the TokenNumber is invalid,
226 the results are unpredictable.
227
228 @param[in] TokenNumber The PCD token number.
229
230 @return The Boolean value.
231
232 **/
233 BOOLEAN
234 EFIAPI
235 PeiPcdGetBool (
236 IN UINTN TokenNumber
237 )
238 {
239 return *((BOOLEAN *) GetWorker (TokenNumber, sizeof (BOOLEAN)));
240 }
241
242 /**
243 Retrieves the size of the value for a given PCD token.
244
245 Retrieves the current size of a particular PCD token.
246 If the TokenNumber is invalid, the results are unpredictable.
247
248 @param[in] TokenNumber The PCD token number.
249
250 @return The size of the value for the PCD token.
251
252 **/
253 UINTN
254 EFIAPI
255 PeiPcdGetSize (
256 IN UINTN TokenNumber
257 )
258 {
259 PEI_PCD_DATABASE *PeiPcdDb;
260 UINTN Size;
261 UINTN MaxSize;
262
263 //
264 // If DebugAssertEnabled is TRUE, we still need to provide the GET size
265 // function as GetWorker and SetWoker need this function to do ASSERT.
266 //
267 if ((!FeaturePcdGet(PcdPeiPcdDatabaseGetSizeEnabled)) &&
268 (!DebugAssertEnabled ())) {
269 return 0;
270 }
271
272 PeiPcdDb = GetPcdDatabase ();
273 //
274 // TokenNumber Zero is reserved as PCD_INVALID_TOKEN_NUMBER.
275 // We have to decrement TokenNumber by 1 to make it usable
276 // as the array index.
277 //
278 TokenNumber--;
279
280 // EBC compiler is very choosy. It may report warning about comparison
281 // between UINTN and 0 . So we add 1 in each size of the
282 // comparison.
283 ASSERT (TokenNumber + 1 < PEI_LOCAL_TOKEN_NUMBER + 1);
284
285 Size = (PeiPcdDb->Init.LocalTokenNumberTable[TokenNumber] & PCD_DATUM_TYPE_ALL_SET) >> PCD_DATUM_TYPE_SHIFT;
286
287 if (Size == 0) {
288 //
289 // For pointer type, we need to scan the SIZE_TABLE to get the current size.
290 //
291 return GetPtrTypeSize (TokenNumber, &MaxSize, PeiPcdDb);
292 } else {
293 return Size;
294 }
295
296 }
297
298 /**
299 Retrieves an 8-bit value for a given PCD token.
300
301 Retrieves the 8-bit value of a particular PCD token.
302 If the TokenNumber is invalid or the token space
303 specified by Guid does not exist, the results are
304 unpredictable.
305
306 @param[in] Guid The token space for the token number.
307 @param[in] ExTokenNumber The PCD token number.
308
309 @return The size 8-bit value for the PCD token.
310
311 **/
312 UINT8
313 EFIAPI
314 PeiPcdGet8Ex (
315 IN CONST EFI_GUID *Guid,
316 IN UINTN ExTokenNumber
317 )
318 {
319 return *((UINT8 *) ExGetWorker (Guid, ExTokenNumber, sizeof (UINT8)));
320 }
321
322 /**
323 Retrieves an 16-bit value for a given PCD token.
324
325 Retrieves the 16-bit value of a particular PCD token.
326 If the TokenNumber is invalid or the token space
327 specified by Guid does not exist, the results are
328 unpredictable.
329
330 @param[in] Guid The token space for the token number.
331 @param[in] ExTokenNumber The PCD token number.
332
333 @return The size 16-bit value for the PCD token.
334
335 **/
336 UINT16
337 EFIAPI
338 PeiPcdGet16Ex (
339 IN CONST EFI_GUID *Guid,
340 IN UINTN ExTokenNumber
341 )
342 {
343 return ReadUnaligned16 (ExGetWorker (Guid, ExTokenNumber, sizeof (UINT16)));
344 }
345
346 /**
347 Retrieves an 32-bit value for a given PCD token.
348
349 Retrieves the 32-bit value of a particular PCD token.
350 If the TokenNumber is invalid or the token space
351 specified by Guid does not exist, the results are
352 unpredictable.
353
354 @param[in] Guid The token space for the token number.
355 @param[in] ExTokenNumber The PCD token number.
356
357 @return The size 32-bit value for the PCD token.
358
359 **/
360 UINT32
361 EFIAPI
362 PeiPcdGet32Ex (
363 IN CONST EFI_GUID *Guid,
364 IN UINTN ExTokenNumber
365 )
366 {
367 return ReadUnaligned32 (ExGetWorker (Guid, ExTokenNumber, sizeof (UINT32)));
368 }
369
370 /**
371 Retrieves an 64-bit value for a given PCD token.
372
373 Retrieves the 64-bit value of a particular PCD token.
374 If the TokenNumber is invalid or the token space
375 specified by Guid does not exist, the results are
376 unpredictable.
377
378 @param[in] Guid The token space for the token number.
379 @param[in] ExTokenNumber The PCD token number.
380
381 @return The size 64-bit value for the PCD token.
382
383 **/
384 UINT64
385 EFIAPI
386 PeiPcdGet64Ex (
387 IN CONST EFI_GUID *Guid,
388 IN UINTN ExTokenNumber
389 )
390 {
391 return ReadUnaligned64 (ExGetWorker (Guid, ExTokenNumber, sizeof (UINT64)));
392 }
393
394 /**
395 Retrieves a pointer to a value for a given PCD token.
396
397 Retrieves the current pointer to the buffer for a PCD token number.
398 Do not make any assumptions about the alignment of the pointer that
399 is returned by this function call. If the TokenNumber is invalid,
400 the results are unpredictable.
401
402 @param[in] Guid The token space for the token number.
403 @param[in] ExTokenNumber The PCD token number.
404
405 @return The pointer to the buffer to be retrieved.
406
407 **/
408 VOID *
409 EFIAPI
410 PeiPcdGetPtrEx (
411 IN CONST EFI_GUID *Guid,
412 IN UINTN ExTokenNumber
413 )
414 {
415 return ExGetWorker (Guid, ExTokenNumber, 0);
416 }
417
418 /**
419 Retrieves an Boolean value for a given PCD token.
420
421 Retrieves the Boolean value of a particular PCD token.
422 If the TokenNumber is invalid or the token space
423 specified by Guid does not exist, the results are
424 unpredictable.
425
426 @param[in] Guid The token space for the token number.
427 @param[in] ExTokenNumber The PCD token number.
428
429 @return The size Boolean value for the PCD token.
430
431 **/
432 BOOLEAN
433 EFIAPI
434 PeiPcdGetBoolEx (
435 IN CONST EFI_GUID *Guid,
436 IN UINTN ExTokenNumber
437 )
438 {
439 return *((BOOLEAN *) ExGetWorker (Guid, ExTokenNumber, sizeof (BOOLEAN)));
440 }
441
442 /**
443 Retrieves the size of the value for a given PCD token.
444
445 Retrieves the current size of a particular PCD token.
446 If the TokenNumber is invalid, the results are unpredictable.
447
448 @param[in] Guid The token space for the token number.
449 @param[in] ExTokenNumber The PCD token number.
450
451 @return The size of the value for the PCD token.
452
453 **/
454 UINTN
455 EFIAPI
456 PeiPcdGetSizeEx (
457 IN CONST EFI_GUID *Guid,
458 IN UINTN ExTokenNumber
459 )
460 {
461 if ((!FeaturePcdGet (PcdPeiPcdDatabaseGetSizeEnabled)) || !FeaturePcdGet (PcdPeiPcdDatabaseExEnabled)) {
462 return 0;
463 }
464
465 return PeiPcdGetSize (GetExPcdTokenNumber (Guid, ExTokenNumber));
466 }
467
468 /**
469 Sets an 8-bit value for a given PCD token.
470
471 When the PCD service sets a value, it will check to ensure that the
472 size of the value being set is compatible with the Token's existing definition.
473 If it is not, an error will be returned.
474
475 @param[in] TokenNumber The PCD token number.
476 @param[in] Value The value to set for the PCD token.
477
478 @retval EFI_SUCCESS Procedure returned successfully.
479 @retval EFI_INVALID_PARAMETER The PCD service determined that the size of the data
480 being set was incompatible with a call to this function.
481 Use GetSize() to retrieve the size of the target data.
482 @retval EFI_NOT_FOUND The PCD service could not find the requested token number.
483
484 **/
485 EFI_STATUS
486 EFIAPI
487 PeiPcdSet8 (
488 IN UINTN TokenNumber,
489 IN UINT8 Value
490 )
491 {
492 return SetValueWorker (TokenNumber, &Value, sizeof (Value));
493 }
494
495 /**
496 Sets an 16-bit value for a given PCD token.
497
498 When the PCD service sets a value, it will check to ensure that the
499 size of the value being set is compatible with the Token's existing definition.
500 If it is not, an error will be returned.
501
502 @param[in] TokenNumber The PCD token number.
503 @param[in] Value The value to set for the PCD token.
504
505 @retval EFI_SUCCESS Procedure returned successfully.
506 @retval EFI_INVALID_PARAMETER The PCD service determined that the size of the data
507 being set was incompatible with a call to this function.
508 Use GetSize() to retrieve the size of the target data.
509 @retval EFI_NOT_FOUND The PCD service could not find the requested token number.
510
511 **/
512 EFI_STATUS
513 EFIAPI
514 PeiPcdSet16 (
515 IN UINTN TokenNumber,
516 IN UINT16 Value
517 )
518 {
519 return SetValueWorker (TokenNumber, &Value, sizeof (Value));
520 }
521
522 /**
523 Sets an 32-bit value for a given PCD token.
524
525 When the PCD service sets a value, it will check to ensure that the
526 size of the value being set is compatible with the Token's existing definition.
527 If it is not, an error will be returned.
528
529 @param[in] TokenNumber The PCD token number.
530 @param[in] Value The value to set for the PCD token.
531
532 @retval EFI_SUCCESS Procedure returned successfully.
533 @retval EFI_INVALID_PARAMETER The PCD service determined that the size of the data
534 being set was incompatible with a call to this function.
535 Use GetSize() to retrieve the size of the target data.
536 @retval EFI_NOT_FOUND The PCD service could not find the requested token number.
537
538 **/
539 EFI_STATUS
540 EFIAPI
541 PeiPcdSet32 (
542 IN UINTN TokenNumber,
543 IN UINT32 Value
544 )
545 {
546 return SetValueWorker (TokenNumber, &Value, sizeof (Value));
547 }
548
549 /**
550 Sets an 64-bit value for a given PCD token.
551
552 When the PCD service sets a value, it will check to ensure that the
553 size of the value being set is compatible with the Token's existing definition.
554 If it is not, an error will be returned.
555
556 @param[in] TokenNumber The PCD token number.
557 @param[in] Value The value to set for the PCD token.
558
559 @retval EFI_SUCCESS Procedure returned successfully.
560 @retval EFI_INVALID_PARAMETER The PCD service determined that the size of the data
561 being set was incompatible with a call to this function.
562 Use GetSize() to retrieve the size of the target data.
563 @retval EFI_NOT_FOUND The PCD service could not find the requested token number.
564
565 **/
566 EFI_STATUS
567 EFIAPI
568 PeiPcdSet64 (
569 IN UINTN TokenNumber,
570 IN UINT64 Value
571 )
572 {
573 return SetValueWorker (TokenNumber, &Value, sizeof (Value));
574 }
575
576 /**
577 Sets a value of a specified size for a given PCD token.
578
579 When the PCD service sets a value, it will check to ensure that the
580 size of the value being set is compatible with the Token's existing definition.
581 If it is not, an error will be returned.
582
583 @param[in] TokenNumber The PCD token number.
584 @param[in, out] SizeOfBuffer A pointer to the length of the value being set for the PCD token.
585 On input, if the SizeOfValue is greater than the maximum size supported
586 for this TokenNumber then the output value of SizeOfValue will reflect
587 the maximum size supported for this TokenNumber.
588 @param[in] Buffer The buffer to set for the PCD token.
589
590 @retval EFI_SUCCESS Procedure returned successfully.
591 @retval EFI_INVALID_PARAMETER The PCD service determined that the size of the data
592 being set was incompatible with a call to this function.
593 Use GetSize() to retrieve the size of the target data.
594 @retval EFI_NOT_FOUND The PCD service could not find the requested token number.
595
596 **/
597 EFI_STATUS
598 EFIAPI
599 PeiPcdSetPtr (
600 IN UINTN TokenNumber,
601 IN OUT UINTN *SizeOfBuffer,
602 IN VOID *Buffer
603 )
604 {
605 return SetWorker (TokenNumber, Buffer, SizeOfBuffer, TRUE);
606 }
607
608 /**
609 Sets an Boolean value for a given PCD token.
610
611 When the PCD service sets a value, it will check to ensure that the
612 size of the value being set is compatible with the Token's existing definition.
613 If it is not, an error will be returned.
614
615 @param[in] TokenNumber The PCD token number.
616 @param[in] Value The value to set for the PCD token.
617
618 @retval EFI_SUCCESS Procedure returned successfully.
619 @retval EFI_INVALID_PARAMETER The PCD service determined that the size of the data
620 being set was incompatible with a call to this function.
621 Use GetSize() to retrieve the size of the target data.
622 @retval EFI_NOT_FOUND The PCD service could not find the requested token number.
623
624 **/
625 EFI_STATUS
626 EFIAPI
627 PeiPcdSetBool (
628 IN UINTN TokenNumber,
629 IN BOOLEAN Value
630 )
631 {
632 return SetValueWorker (TokenNumber, &Value, sizeof (Value));
633 }
634
635 /**
636 Sets an 8-bit value for a given PCD token.
637
638 When the PCD service sets a value, it will check to ensure that the
639 size of the value being set is compatible with the Token's existing definition.
640 If it is not, an error will be returned.
641
642 @param[in] Guid The 128-bit unique value that designates the namespace from which to extract the value.
643 @param[in] ExTokenNumber The PCD token number.
644 @param[in] Value The value to set for the PCD token.
645
646 @retval EFI_SUCCESS Procedure returned successfully.
647 @retval EFI_INVALID_PARAMETER The PCD service determined that the size of the data
648 being set was incompatible with a call to this function.
649 Use GetSize() to retrieve the size of the target data.
650 @retval EFI_NOT_FOUND The PCD service could not find the requested token number.
651
652 **/
653 EFI_STATUS
654 EFIAPI
655 PeiPcdSet8Ex (
656 IN CONST EFI_GUID *Guid,
657 IN UINTN ExTokenNumber,
658 IN UINT8 Value
659 )
660 {
661 return ExSetValueWorker (ExTokenNumber, Guid, &Value, sizeof (Value));
662 }
663
664 /**
665 Sets an 16-bit value for a given PCD token.
666
667 When the PCD service sets a value, it will check to ensure that the
668 size of the value being set is compatible with the Token's existing definition.
669 If it is not, an error will be returned.
670
671 @param[in] Guid The 128-bit unique value that designates the namespace from which to extract the value.
672 @param[in] ExTokenNumber The PCD token number.
673 @param[in] Value The value to set for the PCD token.
674
675 @retval EFI_SUCCESS Procedure returned successfully.
676 @retval EFI_INVALID_PARAMETER The PCD service determined that the size of the data
677 being set was incompatible with a call to this function.
678 Use GetSize() to retrieve the size of the target data.
679 @retval EFI_NOT_FOUND The PCD service could not find the requested token number.
680
681 **/
682 EFI_STATUS
683 EFIAPI
684 PeiPcdSet16Ex (
685 IN CONST EFI_GUID *Guid,
686 IN UINTN ExTokenNumber,
687 IN UINT16 Value
688 )
689 {
690 return ExSetValueWorker (ExTokenNumber, Guid, &Value, sizeof (Value));
691 }
692
693 /**
694 Sets an 32-bit value for a given PCD token.
695
696 When the PCD service sets a value, it will check to ensure that the
697 size of the value being set is compatible with the Token's existing definition.
698 If it is not, an error will be returned.
699
700 @param[in] Guid The 128-bit unique value that designates the namespace from which to extract the value.
701 @param[in] ExTokenNumber The PCD token number.
702 @param[in] Value The value to set for the PCD token.
703
704 @retval EFI_SUCCESS Procedure returned successfully.
705 @retval EFI_INVALID_PARAMETER The PCD service determined that the size of the data
706 being set was incompatible with a call to this function.
707 Use GetSize() to retrieve the size of the target data.
708 @retval EFI_NOT_FOUND The PCD service could not find the requested token number.
709
710 **/
711 EFI_STATUS
712 EFIAPI
713 PeiPcdSet32Ex (
714 IN CONST EFI_GUID *Guid,
715 IN UINTN ExTokenNumber,
716 IN UINT32 Value
717 )
718 {
719 return ExSetValueWorker (ExTokenNumber, Guid, &Value, sizeof (Value));
720 }
721
722 /**
723 Sets an 64-bit value for a given PCD token.
724
725 When the PCD service sets a value, it will check to ensure that the
726 size of the value being set is compatible with the Token's existing definition.
727 If it is not, an error will be returned.
728
729 @param[in] Guid The 128-bit unique value that designates the namespace from which to extract the value.
730 @param[in] ExTokenNumber The PCD token number.
731 @param[in] Value The value to set for the PCD token.
732
733 @retval EFI_SUCCESS Procedure returned successfully.
734 @retval EFI_INVALID_PARAMETER The PCD service determined that the size of the data
735 being set was incompatible with a call to this function.
736 Use GetSize() to retrieve the size of the target data.
737 @retval EFI_NOT_FOUND The PCD service could not find the requested token number.
738
739 **/
740 EFI_STATUS
741 EFIAPI
742 PeiPcdSet64Ex (
743 IN CONST EFI_GUID *Guid,
744 IN UINTN ExTokenNumber,
745 IN UINT64 Value
746 )
747 {
748 return ExSetValueWorker (ExTokenNumber, Guid, &Value, sizeof (Value));
749 }
750
751 /**
752 Sets a value of a specified size for a given PCD token.
753
754 When the PCD service sets a value, it will check to ensure that the
755 size of the value being set is compatible with the Token's existing definition.
756 If it is not, an error will be returned.
757
758 @param[in] Guid The 128-bit unique value that designates the namespace from which to extract the value.
759 @param[in] ExTokenNumber The PCD token number.
760 @param[in, out] SizeOfBuffer A pointer to the length of the value being set for the PCD token.
761 On input, if the SizeOfValue is greater than the maximum size supported
762 for this TokenNumber then the output value of SizeOfValue will reflect
763 the maximum size supported for this TokenNumber.
764 @param[in] Value The buffer to set for the PCD token.
765
766 @retval EFI_SUCCESS Procedure returned successfully.
767 @retval EFI_INVALID_PARAMETER The PCD service determined that the size of the data
768 being set was incompatible with a call to this function.
769 Use GetSize() to retrieve the size of the target data.
770 @retval EFI_NOT_FOUND The PCD service could not find the requested token number.
771
772 **/
773 EFI_STATUS
774 EFIAPI
775 PeiPcdSetPtrEx (
776 IN CONST EFI_GUID *Guid,
777 IN UINTN ExTokenNumber,
778 IN OUT UINTN *SizeOfBuffer,
779 IN VOID *Value
780 )
781 {
782 return ExSetWorker (ExTokenNumber, Guid, Value, SizeOfBuffer, TRUE);
783 }
784
785 /**
786 Sets an Boolean value for a given PCD token.
787
788 When the PCD service sets a value, it will check to ensure that the
789 size of the value being set is compatible with the Token's existing definition.
790 If it is not, an error will be returned.
791
792 @param [in] Guid The 128-bit unique value that designates the namespace from which to extract the value.
793 @param [in] ExTokenNumber The PCD token number.
794 @param [in] Value The value to set for the PCD token.
795
796 @retval EFI_SUCCESS Procedure returned successfully.
797 @retval EFI_INVALID_PARAMETER The PCD service determined that the size of the data
798 being set was incompatible with a call to this function.
799 Use GetSize() to retrieve the size of the target data.
800 @retval EFI_NOT_FOUND The PCD service could not find the requested token number.
801
802 **/
803 EFI_STATUS
804 EFIAPI
805 PeiPcdSetBoolEx (
806 IN CONST EFI_GUID *Guid,
807 IN UINTN ExTokenNumber,
808 IN BOOLEAN Value
809 )
810 {
811 return ExSetValueWorker (ExTokenNumber, Guid, &Value, sizeof (Value));
812 }
813
814 /**
815 Specifies a function to be called anytime the value of a designated token is changed.
816
817 @param[in] Guid The 128-bit unique value that designates the namespace from which to extract the value.
818 @param[in] ExTokenNumber The PCD token number.
819 @param[in] CallBackFunction The function prototype called when the value associated with the CallBackToken is set.
820
821 @retval EFI_SUCCESS The PCD service has successfully established a call event
822 for the CallBackToken requested.
823 @retval EFI_NOT_FOUND The PCD service could not find the referenced token number.
824
825 **/
826 EFI_STATUS
827 EFIAPI
828 PeiRegisterCallBackOnSet (
829 IN CONST EFI_GUID *Guid, OPTIONAL
830 IN UINTN ExTokenNumber,
831 IN PCD_PPI_CALLBACK CallBackFunction
832 )
833 {
834 if (!FeaturePcdGet(PcdPeiPcdDatabaseCallbackOnSetEnabled)) {
835 return EFI_UNSUPPORTED;
836 }
837
838 ASSERT (CallBackFunction != NULL);
839
840 return PeiRegisterCallBackWorker (ExTokenNumber, Guid, CallBackFunction, TRUE);
841 }
842
843 /**
844 Cancels a previously set callback function for a particular PCD token number.
845
846 @param[in] Guid The 128-bit unique value that designates the namespace from which to extract the value.
847 @param[in] ExTokenNumber The PCD token number.
848 @param[in] CallBackFunction The function prototype called when the value associated with the CallBackToken is set.
849
850 @retval EFI_SUCCESS The PCD service has successfully established a call event
851 for the CallBackToken requested.
852 @retval EFI_NOT_FOUND The PCD service could not find the referenced token number.
853
854 **/
855 EFI_STATUS
856 EFIAPI
857 PcdUnRegisterCallBackOnSet (
858 IN CONST EFI_GUID *Guid, OPTIONAL
859 IN UINTN ExTokenNumber,
860 IN PCD_PPI_CALLBACK CallBackFunction
861 )
862 {
863 if (!FeaturePcdGet(PcdPeiPcdDatabaseCallbackOnSetEnabled)) {
864 return EFI_UNSUPPORTED;
865 }
866
867 ASSERT (CallBackFunction != NULL);
868
869 return PeiRegisterCallBackWorker (ExTokenNumber, Guid, CallBackFunction, FALSE);
870 }
871
872 /**
873 Retrieves the next valid PCD token for a given namespace.
874
875 @param[in] Guid The 128-bit unique value that designates the namespace from which to extract the value.
876 @param[in, out] TokenNumber A pointer to the PCD token number to use to find the subsequent token number.
877 If the input token namespace or token number does not exist on the platform,
878 an error is returned and the value of *TokenNumber is undefined. To retrieve the "first" token,
879 have the pointer reference a TokenNumber value of 0. If the input token number is 0 and
880 there is no valid token number for this token namespace, *TokenNumber will be assigned to
881 0 and the function return EFI_SUCCESS. If the token number is the last valid token number,
882 *TokenNumber will be assigned to 0 and the function return EFI_SUCCESS.
883
884 @retval EFI_SUCCESS The PCD service retrieved the next valid token number. Or the input token number
885 is already the last valid token number in the PCD database.
886 In the later case, *TokenNumber is updated with the value of 0.
887 @retval EFI_NOT_FOUND If this input token number and token namespace does not exist on the platform.
888
889 **/
890 EFI_STATUS
891 EFIAPI
892 PeiPcdGetNextToken (
893 IN CONST EFI_GUID *Guid, OPTIONAL
894 IN OUT UINTN *TokenNumber
895 )
896 {
897 UINTN GuidTableIdx;
898 PEI_PCD_DATABASE *PeiPcdDb;
899 EFI_GUID *MatchGuid;
900 DYNAMICEX_MAPPING *ExMapTable;
901 UINTN Index;
902 BOOLEAN Found;
903 BOOLEAN PeiExMapTableEmpty;
904
905 if (!FeaturePcdGet (PcdPeiPcdDatabaseTraverseEnabled)) {
906 return EFI_UNSUPPORTED;
907 }
908
909 PeiExMapTableEmpty = PEI_EXMAP_TABLE_EMPTY;
910
911 if (Guid == NULL) {
912 if (*TokenNumber > PEI_NEX_TOKEN_NUMBER) {
913 return EFI_NOT_FOUND;
914 }
915 (*TokenNumber)++;
916 if (*TokenNumber > PEI_NEX_TOKEN_NUMBER) {
917 *TokenNumber = PCD_INVALID_TOKEN_NUMBER;
918 }
919 return EFI_SUCCESS;
920 } else {
921 if (PeiExMapTableEmpty) {
922 *TokenNumber = PCD_INVALID_TOKEN_NUMBER;
923 return EFI_SUCCESS;
924 }
925
926 //
927 // Assume PCD Database AutoGen tool is sorting the ExMap based on the following order
928 // 1) ExGuid
929 // 2) ExTokenNumber
930 //
931 PeiPcdDb = GetPcdDatabase ();
932
933 MatchGuid = ScanGuid (PeiPcdDb->Init.GuidTable, sizeof(PeiPcdDb->Init.GuidTable), Guid);
934
935 if (MatchGuid == NULL) {
936 *TokenNumber = PCD_INVALID_TOKEN_NUMBER;
937 return EFI_NOT_FOUND;
938 }
939
940 GuidTableIdx = MatchGuid - PeiPcdDb->Init.GuidTable;
941
942 ExMapTable = PeiPcdDb->Init.ExMapTable;
943
944 Found = FALSE;
945 //
946 // Locate the GUID in ExMapTable first.
947 //
948 for (Index = 0; Index < PEI_EXMAPPING_TABLE_SIZE; Index++) {
949 if (ExMapTable[Index].ExGuidIndex == GuidTableIdx) {
950 Found = TRUE;
951 break;
952 }
953 }
954
955 if (Found) {
956 if (*TokenNumber == PCD_INVALID_TOKEN_NUMBER) {
957 *TokenNumber = ExMapTable[Index].ExTokenNumber;
958 return EFI_SUCCESS;
959 }
960
961 for ( ; Index < PEI_EXMAPPING_TABLE_SIZE; Index++) {
962 if (ExMapTable[Index].ExTokenNumber == *TokenNumber) {
963 Index++;
964 if (Index == PEI_EXMAPPING_TABLE_SIZE) {
965 //
966 // Exceed the length of ExMap Table
967 //
968 *TokenNumber = PCD_INVALID_TOKEN_NUMBER;
969 return EFI_SUCCESS;
970 }
971 if (ExMapTable[Index].ExGuidIndex == GuidTableIdx) {
972 *TokenNumber = ExMapTable[Index].ExTokenNumber;
973 return EFI_SUCCESS;
974 } else {
975 *TokenNumber = PCD_INVALID_TOKEN_NUMBER;
976 return EFI_SUCCESS;
977 }
978 }
979 }
980 return EFI_NOT_FOUND;
981 }
982 }
983
984 return EFI_NOT_FOUND;
985 }
986
987 /**
988 Retrieves the next valid PCD token namespace for a given namespace.
989
990 @param[in, out] Guid An indirect pointer to EFI_GUID. On input it designates
991 a known token namespace from which the search will start. On output,
992 it designates the next valid token namespace on the platform. If the input
993 token namespace does not exist on the platform, an error is returned and
994 the value of *Guid is undefined. If *Guid is NULL, then the GUID of the
995 first token space of the current platform is assigned to *Guid the function
996 return EFI_SUCCESS. If *Guid is NULL and there is no namespace exist in
997 the platform other than the default (NULL) tokennamespace, *Guid is unchanged
998 and the function return EFI_SUCCESS. If this input token namespace is the last
999 namespace on the platform, *Guid will be assigned to NULL and the function return
1000 EFI_SUCCESS.
1001
1002 @retval EFI_SUCCESS The PCD service retrieved the next valid token space Guid.
1003 Or the input token space Guid is already the last valid token space Guid
1004 in the PCD database. In the later case, *Guid is updated with the value of NULL.
1005 @retval EFI_NOT_FOUND If the input token namespace does not exist on the platform.
1006
1007 **/
1008 EFI_STATUS
1009 EFIAPI
1010 PeiPcdGetNextTokenSpace (
1011 IN OUT CONST EFI_GUID **Guid
1012 )
1013 {
1014 UINTN GuidTableIdx;
1015 EFI_GUID *MatchGuid;
1016 PEI_PCD_DATABASE *PeiPcdDb;
1017 DYNAMICEX_MAPPING *ExMapTable;
1018 UINTN Index;
1019 BOOLEAN Found;
1020 BOOLEAN PeiExMapTableEmpty;
1021
1022 if (!FeaturePcdGet (PcdPeiPcdDatabaseTraverseEnabled)) {
1023 return EFI_UNSUPPORTED;
1024 }
1025
1026 ASSERT (Guid != NULL);
1027
1028 PeiExMapTableEmpty = PEI_EXMAP_TABLE_EMPTY;
1029
1030 if (PeiExMapTableEmpty) {
1031 if (*Guid != NULL) {
1032 return EFI_NOT_FOUND;
1033 } else {
1034 return EFI_SUCCESS;
1035 }
1036 }
1037
1038 //
1039 // Assume PCD Database AutoGen tool is sorting the ExMap based on the following order
1040 // 1) ExGuid
1041 // 2) ExTokenNumber
1042 //
1043 PeiPcdDb = GetPcdDatabase ();
1044
1045 ExMapTable = PeiPcdDb->Init.ExMapTable;
1046
1047 if (*Guid == NULL) {
1048 //
1049 // return the first Token Space Guid.
1050 //
1051 *Guid = &PeiPcdDb->Init.GuidTable[ExMapTable[0].ExGuidIndex];
1052 return EFI_SUCCESS;
1053 }
1054
1055 MatchGuid = ScanGuid (PeiPcdDb->Init.GuidTable, sizeof(PeiPcdDb->Init.GuidTable), *Guid);
1056
1057 if (MatchGuid == NULL) {
1058 return EFI_NOT_FOUND;
1059 }
1060
1061 GuidTableIdx = MatchGuid - PeiPcdDb->Init.GuidTable;
1062
1063 Found = FALSE;
1064 for (Index = 0; Index < PEI_EXMAPPING_TABLE_SIZE; Index++) {
1065 if (ExMapTable[Index].ExGuidIndex == GuidTableIdx) {
1066 Found = TRUE;
1067 break;
1068 }
1069 }
1070
1071 if (Found) {
1072 Index++;
1073 for ( ; Index < PEI_EXMAPPING_TABLE_SIZE; Index++ ) {
1074 if (ExMapTable[Index].ExGuidIndex != GuidTableIdx ) {
1075 *Guid = &PeiPcdDb->Init.GuidTable[ExMapTable[Index].ExGuidIndex];
1076 return EFI_SUCCESS;
1077 }
1078 }
1079 *Guid = NULL;
1080 return EFI_SUCCESS;
1081 }
1082
1083 return EFI_NOT_FOUND;
1084
1085 }
1086
1087 /**
1088 Get PCD value's size for POINTER type PCD.
1089
1090 The POINTER type PCD's value will be stored into a buffer in specificed size.
1091 The max size of this PCD's value is described in PCD's definition in DEC file.
1092
1093 @param LocalTokenNumberTableIdx Index of PCD token number in PCD token table
1094 @param MaxSize Maximum size of PCD's value
1095 @param Database Pcd database in PEI phase.
1096
1097 @return PCD value's size for POINTER type PCD.
1098
1099 **/
1100 UINTN
1101 GetPtrTypeSize (
1102 IN UINTN LocalTokenNumberTableIdx,
1103 OUT UINTN *MaxSize,
1104 IN PEI_PCD_DATABASE *Database
1105 )
1106 {
1107 INTN SizeTableIdx;
1108 UINTN LocalTokenNumber;
1109 SKU_ID *SkuIdTable;
1110 SIZE_INFO *SizeTable;
1111 UINTN Index;
1112
1113 SizeTableIdx = GetSizeTableIndex (LocalTokenNumberTableIdx, Database);
1114
1115 LocalTokenNumber = Database->Init.LocalTokenNumberTable[LocalTokenNumberTableIdx];
1116
1117 ASSERT ((LocalTokenNumber & PCD_DATUM_TYPE_ALL_SET) == PCD_DATUM_TYPE_POINTER);
1118
1119 SizeTable = Database->Init.SizeTable;
1120
1121 *MaxSize = SizeTable[SizeTableIdx];
1122 //
1123 // SizeTable only contain record for PCD_DATUM_TYPE_POINTER type
1124 // PCD entry.
1125 //
1126 if ((LocalTokenNumber & PCD_TYPE_VPD) != 0) {
1127 //
1128 // We have only one entry for VPD enabled PCD entry:
1129 // 1) MAX Size.
1130 // We consider current size is equal to MAX size.
1131 //
1132 return *MaxSize;
1133 } else {
1134 if ((LocalTokenNumber & PCD_TYPE_SKU_ENABLED) == 0) {
1135 //
1136 // We have only two entry for Non-Sku enabled PCD entry:
1137 // 1) MAX SIZE
1138 // 2) Current Size
1139 //
1140 return SizeTable[SizeTableIdx + 1];
1141 } else {
1142 //
1143 // We have these entry for SKU enabled PCD entry
1144 // 1) MAX SIZE
1145 // 2) Current Size for each SKU_ID (It is equal to MaxSku).
1146 //
1147 SkuIdTable = GetSkuIdArray (LocalTokenNumberTableIdx, Database);
1148 for (Index = 0; Index < SkuIdTable[0]; Index++) {
1149 if (SkuIdTable[1 + Index] == Database->Init.SystemSkuId) {
1150 return SizeTable[SizeTableIdx + 1 + Index];
1151 }
1152 }
1153 return SizeTable[SizeTableIdx + 1];
1154 }
1155 }
1156 }
1157
1158 /**
1159 Set PCD value's size for POINTER type PCD.
1160
1161 The POINTER type PCD's value will be stored into a buffer in specificed size.
1162 The max size of this PCD's value is described in PCD's definition in DEC file.
1163
1164 @param LocalTokenNumberTableIdx Index of PCD token number in PCD token table
1165 @param CurrentSize Maximum size of PCD's value
1166 @param Database Pcd database in PEI phase.
1167
1168 @retval TRUE Success to set PCD's value size, which is not exceed maximum size
1169 @retval FALSE Fail to set PCD's value size, which maybe exceed maximum size
1170
1171 **/
1172 BOOLEAN
1173 SetPtrTypeSize (
1174 IN UINTN LocalTokenNumberTableIdx,
1175 IN OUT UINTN *CurrentSize,
1176 IN PEI_PCD_DATABASE *Database
1177 )
1178 {
1179 INTN SizeTableIdx;
1180 UINTN LocalTokenNumber;
1181 SKU_ID *SkuIdTable;
1182 SIZE_INFO *SizeTable;
1183 UINTN Index;
1184 UINTN MaxSize;
1185
1186 SizeTableIdx = GetSizeTableIndex (LocalTokenNumberTableIdx, Database);
1187
1188 LocalTokenNumber = Database->Init.LocalTokenNumberTable[LocalTokenNumberTableIdx];
1189
1190 ASSERT ((LocalTokenNumber & PCD_DATUM_TYPE_ALL_SET) == PCD_DATUM_TYPE_POINTER);
1191
1192 SizeTable = Database->Init.SizeTable;
1193
1194 MaxSize = SizeTable[SizeTableIdx];
1195 //
1196 // SizeTable only contain record for PCD_DATUM_TYPE_POINTER type
1197 // PCD entry.
1198 //
1199 if ((LocalTokenNumber & PCD_TYPE_VPD) != 0) {
1200 //
1201 // We shouldn't come here as we don't support SET for VPD
1202 //
1203 ASSERT (FALSE);
1204 return FALSE;
1205 } else {
1206 if ((*CurrentSize > MaxSize) ||
1207 (*CurrentSize == MAX_ADDRESS)) {
1208 *CurrentSize = MaxSize;
1209 return FALSE;
1210 }
1211
1212 if ((LocalTokenNumber & PCD_TYPE_SKU_ENABLED) == 0) {
1213 //
1214 // We have only two entry for Non-Sku enabled PCD entry:
1215 // 1) MAX SIZE
1216 // 2) Current Size
1217 //
1218 SizeTable[SizeTableIdx + 1] = (SIZE_INFO) *CurrentSize;
1219 return TRUE;
1220 } else {
1221 //
1222 // We have these entry for SKU enabled PCD entry
1223 // 1) MAX SIZE
1224 // 2) Current Size for each SKU_ID (It is equal to MaxSku).
1225 //
1226 SkuIdTable = GetSkuIdArray (LocalTokenNumberTableIdx, Database);
1227 for (Index = 0; Index < SkuIdTable[0]; Index++) {
1228 if (SkuIdTable[1 + Index] == Database->Init.SystemSkuId) {
1229 SizeTable[SizeTableIdx + 1 + Index] = (SIZE_INFO) *CurrentSize;
1230 return TRUE;
1231 }
1232 }
1233 SizeTable[SizeTableIdx + 1] = (SIZE_INFO) *CurrentSize;
1234 return TRUE;
1235 }
1236 }
1237
1238 }