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
/** @file
 
  Copyright (c) 2021, Intel Corporation. All rights reserved.<BR>
  SPDX-License-Identifier: BSD-2-Clause-Patent
**/
 
#include <PiPei.h>
#include <Library/DebugLib.h>
#include <Library/BaseMemoryLib.h>
#include <Library/IoLib.h>
#include <Library/HobLib.h>
#include <Library/PcdLib.h>
#include <Library/PchCycleDecodingLib.h>
#include <Library/PciLib.h>
#include <Library/BoardInitLib.h>
#include <PeiPlatformHookLib.h>
#include "TigerlakeURvpInit.h"
#include "GpioTableTigerlakeUDdr4Rvp.h"
#include <Library/ConfigBlockLib.h>
 
/**
  GPIO init function for PEI post memory phase.
 
  @param[in]  BoardId       An unsigned integrer represent the board id.
 
  @retval     EFI_SUCCESS   The function completed successfully.
**/
EFI_STATUS
BoardGpioInit(
  IN UINT16 BoardId
  )
{
  //
  // GPIO Table Init.
  //
  switch (BoardId) {
 
    case BoardIdTglUDdr4:
      PcdSet32S (PcdBoardGpioTable, (UINTN) mGpioTableTglUDdr4);
      PcdSet16S (PcdBoardGpioTableSize, mGpioTableTglUDdr4Size);
      break;
 
    default:
      break;
  }
 
  return EFI_SUCCESS;
}
 
/**
  Touch panel GPIO init function for PEI post memory phase.
 
  @param[in]  BoardId       An unsigned integrer represent the board id.
 
  @retval     EFI_SUCCESS   The function completed successfully.
**/
EFI_STATUS
TouchPanelGpioInit (
  IN UINT16 BoardId
  )
{
 
  return EFI_SUCCESS;
}
 
/**
  Misc. init function for PEI post memory phase.
 
  @param[in]  BoardId       An unsigned integrer represent the board id.
 
  @retval     EFI_SUCCESS   The function completed successfully.
**/
EFI_STATUS
BoardMiscInit (
  IN UINT16 BoardId
  )
{
 
  return EFI_SUCCESS;
}
 
/**
  Security GPIO init function for PEI post memory phase.
 
  @param[in]  BoardId       An unsigned integrer represent the board id.
 
  @retval     EFI_SUCCESS   The function completed successfully.
**/
EFI_STATUS
BoardSecurityInit (
  IN UINT16 BoardId
  )
{
  return EFI_SUCCESS;
}
 
/**
  Board configuration initialization in the post-memory boot phase.
**/
VOID
BoardConfigInit (
  VOID
  )
{
  EFI_STATUS  Status;
  UINT16      BoardId;
 
  BoardId = BoardIdTglUDdr4;
 
  Status = BoardGpioInit (BoardId);
  ASSERT_EFI_ERROR (Status);
 
  Status = TouchPanelGpioInit (BoardId);
  ASSERT_EFI_ERROR (Status);
 
  Status = BoardMiscInit (BoardId);
  ASSERT_EFI_ERROR (Status);
 
  Status = BoardSecurityInit (BoardId);
  ASSERT_EFI_ERROR (Status);
}
 
 
/**
  Configure GPIO and SIO
 
  @retval  EFI_SUCCESS   Operation success.
**/
EFI_STATUS
EFIAPI
TigerlakeURvpBoardInitBeforeSiliconInit(
  VOID
  )
{
  EFI_STATUS      Status;
 
  DEBUG ((DEBUG_INFO, "Board Init before Silicon Init\n"));
 
  BoardConfigInit ();
  //
  // Configure GPIO and SIO
  //
  Status = BoardInit ();
  ASSERT_EFI_ERROR (Status);
 
  //
  // Initializing Platform Specific Programming
  //
  Status = PlatformSpecificInit ();
  ASSERT_EFI_ERROR(Status);
 
  return EFI_SUCCESS;
}