]> git.proxmox.com Git - mirror_edk2.git/blob - UefiPayloadPkg/BlSupportDxe/BlSupportDxe.c
2e70c4533c21582671638f0ba5faae5311049b84
[mirror_edk2.git] / UefiPayloadPkg / BlSupportDxe / BlSupportDxe.c
1 /** @file
2 This driver will report some MMIO/IO resources to dxe core, extract smbios and acpi
3 tables from bootloader.
4
5 Copyright (c) 2014 - 2021, Intel Corporation. All rights reserved.<BR>
6 SPDX-License-Identifier: BSD-2-Clause-Patent
7
8 **/
9 #include "BlSupportDxe.h"
10
11 /**
12 Reserve MMIO/IO resource in GCD
13
14 @param IsMMIO Flag of whether it is mmio resource or io resource.
15 @param GcdType Type of the space.
16 @param BaseAddress Base address of the space.
17 @param Length Length of the space.
18 @param Alignment Align with 2^Alignment
19 @param ImageHandle Handle for the image of this driver.
20
21 @retval EFI_SUCCESS Reserve successful
22 **/
23 EFI_STATUS
24 ReserveResourceInGcd (
25 IN BOOLEAN IsMMIO,
26 IN UINTN GcdType,
27 IN EFI_PHYSICAL_ADDRESS BaseAddress,
28 IN UINT64 Length,
29 IN UINTN Alignment,
30 IN EFI_HANDLE ImageHandle
31 )
32 {
33 EFI_STATUS Status;
34
35 if (IsMMIO) {
36 Status = gDS->AddMemorySpace (
37 GcdType,
38 BaseAddress,
39 Length,
40 EFI_MEMORY_UC
41 );
42 if (EFI_ERROR (Status)) {
43 DEBUG ((
44 DEBUG_WARN,
45 "Failed to add memory space :0x%lx 0x%lx\n",
46 BaseAddress,
47 Length
48 ));
49 }
50
51 Status = gDS->AllocateMemorySpace (
52 EfiGcdAllocateAddress,
53 GcdType,
54 Alignment,
55 Length,
56 &BaseAddress,
57 ImageHandle,
58 NULL
59 );
60 } else {
61 Status = gDS->AddIoSpace (
62 GcdType,
63 BaseAddress,
64 Length
65 );
66 if (EFI_ERROR (Status)) {
67 DEBUG ((
68 DEBUG_WARN,
69 "Failed to add IO space :0x%lx 0x%lx\n",
70 BaseAddress,
71 Length
72 ));
73 }
74
75 Status = gDS->AllocateIoSpace (
76 EfiGcdAllocateAddress,
77 GcdType,
78 Alignment,
79 Length,
80 &BaseAddress,
81 ImageHandle,
82 NULL
83 );
84 }
85
86 return Status;
87 }
88
89 /**
90 Main entry for the bootloader support DXE module.
91
92 @param[in] ImageHandle The firmware allocated handle for the EFI image.
93 @param[in] SystemTable A pointer to the EFI System Table.
94
95 @retval EFI_SUCCESS The entry point is executed successfully.
96 @retval other Some error occurs when executing this entry point.
97
98 **/
99 EFI_STATUS
100 EFIAPI
101 BlDxeEntryPoint (
102 IN EFI_HANDLE ImageHandle,
103 IN EFI_SYSTEM_TABLE *SystemTable
104 )
105 {
106 EFI_STATUS Status;
107 EFI_HOB_GUID_TYPE *GuidHob;
108 EFI_PEI_GRAPHICS_INFO_HOB *GfxInfo;
109 ACPI_BOARD_INFO *AcpiBoardInfo;
110
111 Status = EFI_SUCCESS;
112 //
113 // Report MMIO/IO Resources
114 //
115 ReserveResourceInGcd (TRUE, EfiGcdMemoryTypeMemoryMappedIo, 0xFEC00000, SIZE_4KB, 0, ImageHandle); // IOAPIC
116
117 ReserveResourceInGcd (TRUE, EfiGcdMemoryTypeMemoryMappedIo, 0xFED00000, SIZE_1KB, 0, ImageHandle); // HPET
118
119 //
120 // Find the frame buffer information and update PCDs
121 //
122 GuidHob = GetFirstGuidHob (&gEfiGraphicsInfoHobGuid);
123 if (GuidHob != NULL) {
124 GfxInfo = (EFI_PEI_GRAPHICS_INFO_HOB *)GET_GUID_HOB_DATA (GuidHob);
125 Status = PcdSet32S (PcdVideoHorizontalResolution, GfxInfo->GraphicsMode.HorizontalResolution);
126 ASSERT_EFI_ERROR (Status);
127 Status = PcdSet32S (PcdVideoVerticalResolution, GfxInfo->GraphicsMode.VerticalResolution);
128 ASSERT_EFI_ERROR (Status);
129 Status = PcdSet32S (PcdSetupVideoHorizontalResolution, GfxInfo->GraphicsMode.HorizontalResolution);
130 ASSERT_EFI_ERROR (Status);
131 Status = PcdSet32S (PcdSetupVideoVerticalResolution, GfxInfo->GraphicsMode.VerticalResolution);
132 ASSERT_EFI_ERROR (Status);
133 }
134
135 //
136 // Set PcdPciExpressBaseAddress and PcdPciExpressBaseSize by HOB info
137 //
138 GuidHob = GetFirstGuidHob (&gUefiAcpiBoardInfoGuid);
139 if (GuidHob != NULL) {
140 AcpiBoardInfo = (ACPI_BOARD_INFO *)GET_GUID_HOB_DATA (GuidHob);
141 Status = PcdSet64S (PcdPciExpressBaseAddress, AcpiBoardInfo->PcieBaseAddress);
142 ASSERT_EFI_ERROR (Status);
143 Status = PcdSet64S (PcdPciExpressBaseSize, AcpiBoardInfo->PcieBaseSize);
144 ASSERT_EFI_ERROR (Status);
145 }
146
147 return EFI_SUCCESS;
148 }