hc
2024-03-22 a0752693d998599af469473b8dc239ef973a012f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
/** @file
 
  @copyright
  Copyright 2012 - 2021 Intel Corporation. <BR>
 
  SPDX-License-Identifier: BSD-2-Clause-Patent
**/
 
#include <PiPei.h>
#include <Uefi/UefiSpec.h>
#include <Ppi/UbaCfgDb.h>
#include <Ppi/DynamicSiLibraryPpi.h>
#include <Base.h>
#include <Library/PeimEntryPoint.h>
#include <Library/PeiServicesLib.h>
#include <Library/PeiServicesTablePointerLib.h>
#include <Library/DebugLib.h>
#include <Library/IoLib.h>
 
//
// UBA and GPIO headers
//
#include <Library/UbaGpioPlatformConfig.h>
#include <Library/GpioLib.h>
 
 
/**
 
Function gets pointers to the UBA data installed by the right RP package
 
@param[out] GpioParams          The pointer to the platform GPIO parameters
 
 
@retval EFI_SUCCESS             The function completed successfully
 
**/
EFI_STATUS
PlatformGetGpioPlatformMappings (
  IN OUT   PLATFORM_GPIO_CONFIG_TABLE             *GpioParams
  )
{
  EFI_STATUS                            Status;
  UBA_CONFIG_DATABASE_PPI               *UbaConfigPpi = NULL;
  UINTN                                 TableSize;
 
  Status = PeiServicesLocatePpi (&gUbaConfigDatabasePpiGuid, 0, NULL, &UbaConfigPpi);
  if (EFI_ERROR (Status)) {
    return Status;
  }
 
  TableSize = sizeof(PLATFORM_GPIO_CONFIG_TABLE);
  Status = UbaConfigPpi->GetData (
                                UbaConfigPpi,
                                &gPlatformGpioPlatformConfigDataGuid,
                                GpioParams,
                                &TableSize
                                );
 
  return Status;
}
 
/**
 
    Reads GPIO pin to get Flash Security Override jumper status
 
    @param[out] Jumper - The pointer to the jumper output
 
    @retval Status - Success if GPIO's are read properly
            Jumper - 0x0 if an error happened, otherwise the jumperl value
 
**/
EFI_STATUS
GpioGetFlashSecOvrdVal (
  OUT UINT32 *Jumper
  )
{
  EFI_STATUS                  Status;
  PLATFORM_GPIO_CONFIG_TABLE  GpioPlatformConfig;
  DYNAMIC_SI_LIBARY_PPI       *DynamicSiLibraryPpi = NULL;
 
  Status = PeiServicesLocatePpi (&gDynamicSiLibraryPpiGuid, 0, NULL, &DynamicSiLibraryPpi);
  if (EFI_ERROR (Status)) {
    ASSERT_EFI_ERROR (Status);
    return Status;
  }
 
  *Jumper = 0x0;
 
  Status = PlatformGetGpioPlatformMappings (&GpioPlatformConfig);
  if (EFI_ERROR (Status)) {
    return Status;
  }
 
  if (GpioPlatformConfig.FlashSecOverride == UNUSED_GPIO) {
    return EFI_UNSUPPORTED;
  }
 
  Status = DynamicSiLibraryPpi->GpioGetInputValue (GpioPlatformConfig.FlashSecOverride, Jumper);
  return Status;
}
 
/**
 
    Reads GPIO pin to get recovery jumper status
 
    @param[out] RcvJumper - The pointer to the Recovery jumper input
 
    @retval Status - Success if GPIO's are read properly
 
**/
EFI_STATUS
GpioGetRcvPadVal (
  OUT UINT32 *RcvJumper
)
{
  EFI_STATUS                  Status;
  PLATFORM_GPIO_CONFIG_TABLE  GpioPlatformConfig;
  DYNAMIC_SI_LIBARY_PPI       *DynamicSiLibraryPpi = NULL;
 
  Status = PeiServicesLocatePpi (&gDynamicSiLibraryPpiGuid, 0, NULL, &DynamicSiLibraryPpi);
  if (EFI_ERROR (Status)) {
    ASSERT_EFI_ERROR (Status);
    return Status;
  }
 
  Status = PlatformGetGpioPlatformMappings (&GpioPlatformConfig);
  if (EFI_ERROR (Status)) {
    return Status;
  }
 
  if (GpioPlatformConfig.RcvJumper == UNUSED_GPIO) {
    return EFI_UNSUPPORTED;
  }
 
  Status = DynamicSiLibraryPpi->GpioGetInputValue (GpioPlatformConfig.RcvJumper, RcvJumper);
  return Status;
}
 
 
/**
 
    Reads GPIO pin to get FM ADR trigger pin
 
    @param[out] FmAdrTrigger - The pointer to the ADR trigger input
 
    @retval Status - Success if GPIO's are read properly
 
**/
EFI_STATUS
GpioGetFmAdrTriggerPadVal (
  OUT UINT32 *FmAdrTrigger
)
{
  EFI_STATUS                  Status;
  PLATFORM_GPIO_CONFIG_TABLE  GpioPlatformConfig;
  DYNAMIC_SI_LIBARY_PPI       *DynamicSiLibraryPpi = NULL;
 
  Status = PeiServicesLocatePpi (&gDynamicSiLibraryPpiGuid, 0, NULL, &DynamicSiLibraryPpi);
  if (EFI_ERROR (Status)) {
    ASSERT_EFI_ERROR (Status);
    return Status;
  }
 
  Status = PlatformGetGpioPlatformMappings (&GpioPlatformConfig);
  if (EFI_ERROR (Status)) {
    return Status;
  }
 
  if (GpioPlatformConfig.FmAdrTrigger == UNUSED_GPIO) {
    return EFI_UNSUPPORTED;
  }
 
  Status = DynamicSiLibraryPpi->GpioGetInputValue (GpioPlatformConfig.FmAdrTrigger, FmAdrTrigger);
  return Status;
}
 
 
/**
 
    Sets GPIO pin to enable ADR on the board
 
    @param Set[in] - If TRUE means the pas should go 'high', otherwise 'low'
 
    @retval Status - Success if GPIO set properly
 
**/
EFI_STATUS
GpioSetAdrEnablePadOutVal (
  IN BOOLEAN Set
)
{
  EFI_STATUS                  Status;
  PLATFORM_GPIO_CONFIG_TABLE  GpioPlatformConfig;
  DYNAMIC_SI_LIBARY_PPI       *DynamicSiLibraryPpi = NULL;
 
  Status = PeiServicesLocatePpi (&gDynamicSiLibraryPpiGuid, 0, NULL, &DynamicSiLibraryPpi);
  if (EFI_ERROR (Status)) {
    ASSERT_EFI_ERROR (Status);
    return Status;
  }
 
  Status = PlatformGetGpioPlatformMappings (&GpioPlatformConfig);
  if (EFI_ERROR(Status)) {
    return Status;
  }
 
  if (GpioPlatformConfig.AdrEnable == UNUSED_GPIO) {
    return EFI_UNSUPPORTED;
  }
 
  if (Set) {
    Status = DynamicSiLibraryPpi->GpioSetOutputValue (GpioPlatformConfig.AdrEnable, GpioOutHigh);
  }
  else {
    Status = DynamicSiLibraryPpi->GpioSetOutputValue (GpioPlatformConfig.AdrEnable, GpioOutLow);
  }
  return Status;
}
 
/**
 
    Reads GPIO pin to Force to S1 config mode pad
 
    @param[out] ForceS1ConfigPad - Input value of the Froce S1 Config pad
 
    @retval Status - Success if GPIO's are read properly
 
**/
EFI_STATUS
GpioGetForcetoS1ConfigModePadVal (
  OUT UINT32 *ForceS1ConfigPad
)
{
  EFI_STATUS                  Status;
  PLATFORM_GPIO_CONFIG_TABLE  GpioPlatformConfig;
  DYNAMIC_SI_LIBARY_PPI       *DynamicSiLibraryPpi = NULL;
 
  Status = PeiServicesLocatePpi (&gDynamicSiLibraryPpiGuid, 0, NULL, &DynamicSiLibraryPpi);
  if (EFI_ERROR (Status)) {
    ASSERT_EFI_ERROR (Status);
    return Status;
  }
 
  Status = PlatformGetGpioPlatformMappings (&GpioPlatformConfig);
  if (EFI_ERROR (Status)) {
    return Status;
  }
 
  if (GpioPlatformConfig.ForceTo1SConfigModePad == UNUSED_GPIO) {
    return EFI_UNSUPPORTED;
  }
 
  Status = DynamicSiLibraryPpi->GpioGetInputValue (GpioPlatformConfig.ForceTo1SConfigModePad, ForceS1ConfigPad);
  return Status;
}
 
/**
 
    Reads GPIO pin related to QAT
 
    @param[out] QATPad - Input value of the QAT pad
 
    @retval Status - Success if GPIO's are read properly
 
**/
EFI_STATUS
GpioGetQATPadVal (
  OUT UINT32 *QATPad
)
{
  EFI_STATUS                  Status;
  PLATFORM_GPIO_CONFIG_TABLE  GpioPlatformConfig;
  DYNAMIC_SI_LIBARY_PPI       *DynamicSiLibraryPpi = NULL;
 
  Status = PeiServicesLocatePpi (&gDynamicSiLibraryPpiGuid, 0, NULL, &DynamicSiLibraryPpi);
  if (EFI_ERROR (Status)) {
    ASSERT_EFI_ERROR (Status);
    return Status;
  }
 
  Status = PlatformGetGpioPlatformMappings (&GpioPlatformConfig);
  if (EFI_ERROR (Status)) {
    return Status;
  }
 
  if (GpioPlatformConfig.QATGpio == UNUSED_GPIO) {
    return EFI_UNSUPPORTED;
  }
 
  Status = DynamicSiLibraryPpi->GpioGetInputValue (GpioPlatformConfig.QATGpio, QATPad);
  return Status;
 
}
 
 
/**
 
    Get GPIO pin for FPGA error detection RAS functionality
 
    @param[out] FpgaErrorPad -The input value of the FPGA error 1 pad
 
    @retval Status - Success if GPIO's pad read properly
 
**/
EFI_STATUS
GpioGetFpgaErrorPad1 (
  OUT UINT32 *FpgaErrorPad
)
{
  EFI_STATUS           Status;
  PLATFORM_GPIO_CONFIG_TABLE GpioPlatformConfig;
 
  Status = PlatformGetGpioPlatformMappings (&GpioPlatformConfig);
  if (EFI_ERROR (Status)) {
    return Status;
  }
 
  if (GpioPlatformConfig.FpgaErrorSingnalPad1 == UNUSED_GPIO) {
    return EFI_UNSUPPORTED;
  }
 
  *FpgaErrorPad = (UINT32) GpioPlatformConfig.FpgaErrorSingnalPad1;
  return EFI_SUCCESS;
 
}
 
 
/**
 
    Get GPIO pin for FPGA error detection RAS functionality
 
    @param[out] FpgaErrorPad -The input value of the FPGA error 2 pad
 
    @retval Status - Success if GPIO's pad read properly
 
**/
EFI_STATUS
GpioGetFpgaErrorPad2 (
  OUT UINT32 *FpgaErrorPad
)
{
  EFI_STATUS           Status;
  PLATFORM_GPIO_CONFIG_TABLE GpioPlatformConfig;
 
  Status = PlatformGetGpioPlatformMappings (&GpioPlatformConfig);
  if (EFI_ERROR (Status)) {
    return Status;
  }
 
  if (GpioPlatformConfig.FpgaErrorSingnalPad2 == UNUSED_GPIO) {
    return EFI_UNSUPPORTED;
  }
 
  *FpgaErrorPad = (UINT32) GpioPlatformConfig.FpgaErrorSingnalPad2;
  return Status;
 
}
 
 
/**
 
    Get GPIO pin for CPU HP SMI detection for RAS functionality
 
    @retval Status - Success if GPIO's pad read properly
 
**/
EFI_STATUS
GpioGetCpuHpSmiPad (
  OUT UINT32 *CpuHpSmiPad
)
{
  EFI_STATUS           Status;
  PLATFORM_GPIO_CONFIG_TABLE GpioPlatformConfig;
 
  Status = PlatformGetGpioPlatformMappings (&GpioPlatformConfig);
  if (EFI_ERROR (Status)) {
    return Status;
  }
 
  if (GpioPlatformConfig.CpuHpSmiPad == UNUSED_GPIO) {
    return EFI_UNSUPPORTED;
  }
 
  *CpuHpSmiPad = (UINT32) GpioPlatformConfig.CpuHpSmiPad;
  return Status;
 
}
 
 
/**
 
    Reads GPIO pin that is first bit of the Board ID indication word
 
    @retval Status - Success if GPIO's are read properly
 
**/
EFI_STATUS
GpioGetBoardId0PadVal (
  OUT UINT32 *BoardID0Gpio
)
{
  EFI_STATUS                  Status;
  PLATFORM_GPIO_CONFIG_TABLE  GpioPlatformConfig;
  DYNAMIC_SI_LIBARY_PPI       *DynamicSiLibraryPpi = NULL;
 
  Status = PeiServicesLocatePpi (&gDynamicSiLibraryPpiGuid, 0, NULL, &DynamicSiLibraryPpi);
  if (EFI_ERROR (Status)) {
    ASSERT_EFI_ERROR (Status);
    return Status;
  }
 
  Status = PlatformGetGpioPlatformMappings (&GpioPlatformConfig);
  if (EFI_ERROR (Status)) {
    return Status;
  }
 
  if (GpioPlatformConfig.BoardID0Gpio == UNUSED_GPIO) {
    return EFI_UNSUPPORTED;
  }
 
  Status = DynamicSiLibraryPpi->GpioGetInputValue (GpioPlatformConfig.BoardID0Gpio, BoardID0Gpio);
  return Status;
 
}
 
/**
 
    Sets GPIO's used for Boot Mode
 
    @param None
 
    @retval Status - Success if GPIO's are configured
 
**/
EFI_STATUS
GpioConfigForMFGMode (
  VOID
  )
{
  EFI_STATUS                  Status;
  PLATFORM_GPIO_CONFIG_TABLE  GpioPlatformConfig;
  DYNAMIC_SI_LIBARY_PPI       *DynamicSiLibraryPpi = NULL;
 
  Status = PeiServicesLocatePpi (&gDynamicSiLibraryPpiGuid, 0, NULL, &DynamicSiLibraryPpi);
  if (EFI_ERROR (Status)) {
    ASSERT_EFI_ERROR (Status);
    return Status;
  }
 
  Status = PlatformGetGpioPlatformMappings (&GpioPlatformConfig);
  if (EFI_ERROR (Status)) {
    return Status;
  }
 
  if (GpioPlatformConfig.GpioMfgPad.GpioPad == UNUSED_GPIO) {
    return EFI_UNSUPPORTED;
  }
 
  DEBUG ((EFI_D_INFO, "Start ConfigureGpio() for BootMode Detection.\n"));
 
  Status = DynamicSiLibraryPpi->GpioSetPadConfig (GpioPlatformConfig.GpioMfgPad.GpioPad, &GpioPlatformConfig.GpioMfgPad.GpioConfig);
 
  ASSERT_EFI_ERROR (Status);
  DEBUG ((EFI_D_INFO, "End ConfigureGpio() for BootMode Detection.\n"));
  return Status;
}
 
/**
 
    Checks whether the MDF jumper has been set
 
    @param None
 
    @retval ManufacturingMode - TRUE when MFG jumper is on, FALSE otherwise
 
**/
BOOLEAN
IsManufacturingMode (
  VOID
)
{
 
  BOOLEAN                     ManufacturingMode = TRUE;
 
  EFI_STATUS                  Status;
  UINT32                      GpiValue;
  PLATFORM_GPIO_CONFIG_TABLE  GpioPlatformConfig;
  DYNAMIC_SI_LIBARY_PPI       *DynamicSiLibraryPpi = NULL;
 
  Status = PeiServicesLocatePpi (&gDynamicSiLibraryPpiGuid, 0, NULL, &DynamicSiLibraryPpi);
  if (EFI_ERROR (Status)) {
    ASSERT_EFI_ERROR (Status);
    return FALSE;
  }
 
  Status = PlatformGetGpioPlatformMappings (&GpioPlatformConfig);
  ASSERT_EFI_ERROR (Status);
 
  if (GpioPlatformConfig.GpioMfgPad.GpioPad == UNUSED_GPIO) {
    return FALSE;
  }
 
  Status = GpioConfigForMFGMode ();
  ASSERT_EFI_ERROR (Status);
 
 
  Status = DynamicSiLibraryPpi->GpioGetInputValue (GpioPlatformConfig.GpioMfgPad.GpioPad, &GpiValue);
 
  ASSERT_EFI_ERROR (Status);
 
  if (!GpiValue) {
    ManufacturingMode = FALSE;
  }
  return ManufacturingMode;
 
}