]> git.proxmox.com Git - mirror_edk2.git/blob - ArmPkg/Library/BdsLib/BdsLinuxLoader.c
5ef3c1cb8d0373563484ac5c7b2a92b4f8cdd971
[mirror_edk2.git] / ArmPkg / Library / BdsLib / BdsLinuxLoader.c
1 /** @file
2 *
3 * Copyright (c) 2011-2012, ARM Limited. All rights reserved.
4 *
5 * 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 "BdsInternal.h"
16
17 #define ALIGN32_BELOW(addr) ALIGN_POINTER(addr - 32,32)
18
19 STATIC
20 EFI_STATUS
21 PreparePlatformHardware (
22 VOID
23 )
24 {
25 //Note: Interrupts will be disabled by the GIC driver when ExitBootServices() will be called.
26
27 // Clean, invalidate, disable data cache
28 ArmDisableDataCache();
29 ArmCleanInvalidateDataCache();
30
31 // Invalidate and disable the Instruction cache
32 ArmDisableInstructionCache ();
33 ArmInvalidateInstructionCache ();
34
35 // Turn off MMU
36 ArmDisableMmu();
37
38 return EFI_SUCCESS;
39 }
40
41 STATIC
42 EFI_STATUS
43 StartLinux (
44 IN EFI_PHYSICAL_ADDRESS LinuxImage,
45 IN UINTN LinuxImageSize,
46 IN EFI_PHYSICAL_ADDRESS KernelParamsAddress,
47 IN UINTN KernelParamsSize,
48 IN UINT32 MachineType
49 )
50 {
51 EFI_STATUS Status;
52 LINUX_KERNEL LinuxKernel;
53
54 // Shut down UEFI boot services. ExitBootServices() will notify every driver that created an event on
55 // ExitBootServices event. Example the Interrupt DXE driver will disable the interrupts on this event.
56 Status = ShutdownUefiBootServices ();
57 if(EFI_ERROR(Status)) {
58 DEBUG((EFI_D_ERROR,"ERROR: Can not shutdown UEFI boot services. Status=0x%X\n", Status));
59 goto Exit;
60 }
61
62 // Move the kernel parameters to any address inside the first 1MB.
63 // This is necessary because the ARM Linux kernel requires
64 // the FTD / ATAG List to reside entirely inside the first 1MB of
65 // physical memory.
66 if ((UINTN)KernelParamsAddress > LINUX_ATAG_MAX_OFFSET) {
67 //Note: There is no requirement on the alignment
68 KernelParamsAddress = (EFI_PHYSICAL_ADDRESS)(UINTN)CopyMem (ALIGN32_BELOW(LINUX_ATAG_MAX_OFFSET - KernelParamsSize), (VOID*)(UINTN)KernelParamsAddress, KernelParamsSize);
69 }
70
71 if ((UINTN)LinuxImage > LINUX_KERNEL_MAX_OFFSET) {
72 //Note: There is no requirement on the alignment
73 LinuxKernel = (LINUX_KERNEL)CopyMem (ALIGN32_BELOW(LINUX_KERNEL_MAX_OFFSET - LinuxImageSize), (VOID*)(UINTN)LinuxImage, LinuxImageSize);
74 } else {
75 LinuxKernel = (LINUX_KERNEL)(UINTN)LinuxImage;
76 }
77
78 // Check if the Linux Image is a uImage
79 if (*(UINT32*)LinuxKernel == LINUX_UIMAGE_SIGNATURE) {
80 // Assume the Image Entry Point is just after the uImage header (64-byte size)
81 LinuxKernel = (LINUX_KERNEL)((UINTN)LinuxKernel + 64);
82 LinuxImageSize -= 64;
83 }
84
85 //TODO: Check there is no overlapping between kernel and Atag
86
87 //
88 // Switch off interrupts, caches, mmu, etc
89 //
90 Status = PreparePlatformHardware ();
91 ASSERT_EFI_ERROR(Status);
92
93 // Register and print out performance information
94 PERF_END (NULL, "BDS", NULL, 0);
95 if (PerformanceMeasurementEnabled ()) {
96 PrintPerformance ();
97 }
98
99 //
100 // Start the Linux Kernel
101 //
102
103 // Outside BootServices, so can't use Print();
104 DEBUG((EFI_D_ERROR, "\nStarting the kernel:\n\n"));
105
106 // Jump to kernel with register set
107 LinuxKernel ((UINTN)0, MachineType, (UINTN)KernelParamsAddress);
108
109 // Kernel should never exit
110 // After Life services are not provided
111 ASSERT(FALSE);
112
113 Exit:
114 // Only be here if we fail to start Linux
115 Print (L"ERROR : Can not start the kernel. Status=0x%X\n", Status);
116
117 // Free Runtimee Memory (kernel and FDT)
118 return Status;
119 }
120
121 /**
122 Start a Linux kernel from a Device Path
123
124 @param LinuxKernel Device Path to the Linux Kernel
125 @param Parameters Linux kernel agruments
126 @param Fdt Device Path to the Flat Device Tree
127
128 @retval EFI_SUCCESS All drivers have been connected
129 @retval EFI_NOT_FOUND The Linux kernel Device Path has not been found
130 @retval EFI_OUT_OF_RESOURCES There is not enough resource memory to store the matching results.
131
132 **/
133 EFI_STATUS
134 BdsBootLinuxAtag (
135 IN EFI_DEVICE_PATH_PROTOCOL* LinuxKernelDevicePath,
136 IN EFI_DEVICE_PATH_PROTOCOL* InitrdDevicePath,
137 IN CONST CHAR8* Arguments
138 )
139 {
140 EFI_STATUS Status;
141 UINT32 LinuxImageSize;
142 UINT32 InitrdImageSize = 0;
143 UINT32 KernelParamsSize;
144 EFI_PHYSICAL_ADDRESS KernelParamsAddress;
145 EFI_PHYSICAL_ADDRESS LinuxImage;
146 EFI_PHYSICAL_ADDRESS InitrdImage;
147
148 PERF_START (NULL, "BDS", NULL, 0);
149
150 // Load the Linux kernel from a device path
151 LinuxImage = LINUX_KERNEL_MAX_OFFSET;
152 Status = BdsLoadImage (LinuxKernelDevicePath, AllocateMaxAddress, &LinuxImage, &LinuxImageSize);
153 if (EFI_ERROR(Status)) {
154 Print (L"ERROR: Did not find Linux kernel.\n");
155 return Status;
156 }
157
158 if (InitrdDevicePath) {
159 // Load the initrd near to the Linux kernel
160 InitrdImage = LINUX_KERNEL_MAX_OFFSET;
161 Status = BdsLoadImage (InitrdDevicePath, AllocateMaxAddress, &InitrdImage, &InitrdImageSize);
162 if (Status == EFI_OUT_OF_RESOURCES) {
163 Status = BdsLoadImage (InitrdDevicePath, AllocateAnyPages, &InitrdImage, &InitrdImageSize);
164 }
165 if (EFI_ERROR(Status)) {
166 Print (L"ERROR: Did not find initrd image.\n");
167 return Status;
168 }
169
170 // Check if the initrd is a uInitrd
171 if (*(UINT32*)((UINTN)InitrdImage) == LINUX_UIMAGE_SIGNATURE) {
172 // Skip the 64-byte image header
173 InitrdImage = (EFI_PHYSICAL_ADDRESS)((UINTN)InitrdImage + 64);
174 InitrdImageSize -= 64;
175 }
176 }
177
178 //
179 // Setup the Linux Kernel Parameters
180 //
181
182 // By setting address=0 we leave the memory allocation to the function
183 Status = PrepareAtagList (Arguments, InitrdImage, InitrdImageSize, &KernelParamsAddress, &KernelParamsSize);
184 if (EFI_ERROR(Status)) {
185 Print(L"ERROR: Can not prepare ATAG list. Status=0x%X\n", Status);
186 return Status;
187 }
188
189 return StartLinux (LinuxImage, LinuxImageSize, KernelParamsAddress, KernelParamsSize, PcdGet32(PcdArmMachineType));
190 }
191
192 /**
193 Start a Linux kernel from a Device Path
194
195 @param LinuxKernel Device Path to the Linux Kernel
196 @param Parameters Linux kernel agruments
197 @param Fdt Device Path to the Flat Device Tree
198
199 @retval EFI_SUCCESS All drivers have been connected
200 @retval EFI_NOT_FOUND The Linux kernel Device Path has not been found
201 @retval EFI_OUT_OF_RESOURCES There is not enough resource memory to store the matching results.
202
203 **/
204 EFI_STATUS
205 BdsBootLinuxFdt (
206 IN EFI_DEVICE_PATH_PROTOCOL* LinuxKernelDevicePath,
207 IN EFI_DEVICE_PATH_PROTOCOL* InitrdDevicePath,
208 IN CONST CHAR8* Arguments,
209 IN EFI_DEVICE_PATH_PROTOCOL* FdtDevicePath
210 )
211 {
212 EFI_STATUS Status;
213 UINT32 LinuxImageSize;
214 UINT32 InitrdImageSize = 0;
215 UINT32 KernelParamsSize;
216 EFI_PHYSICAL_ADDRESS KernelParamsAddress;
217 UINT32 FdtMachineType;
218 EFI_PHYSICAL_ADDRESS LinuxImage;
219 EFI_PHYSICAL_ADDRESS InitrdImage;
220
221 FdtMachineType = 0xFFFFFFFF;
222
223 PERF_START (NULL, "BDS", NULL, 0);
224
225 // Load the Linux kernel from a device path
226 LinuxImage = LINUX_KERNEL_MAX_OFFSET;
227 Status = BdsLoadImage (LinuxKernelDevicePath, AllocateMaxAddress, &LinuxImage, &LinuxImageSize);
228 if (EFI_ERROR(Status)) {
229 Print (L"ERROR: Did not find Linux kernel.\n");
230 return Status;
231 }
232
233 if (InitrdDevicePath) {
234 InitrdImage = LINUX_KERNEL_MAX_OFFSET;
235 Status = BdsLoadImage (InitrdDevicePath, AllocateMaxAddress, &InitrdImage, &InitrdImageSize);
236 if (Status == EFI_OUT_OF_RESOURCES) {
237 Status = BdsLoadImage (InitrdDevicePath, AllocateAnyPages, &InitrdImage, &InitrdImageSize);
238 }
239 if (EFI_ERROR(Status)) {
240 Print (L"ERROR: Did not find initrd image.\n");
241 return Status;
242 }
243
244 // Check if the initrd is a uInitrd
245 if (*(UINT32*)((UINTN)InitrdImage) == LINUX_UIMAGE_SIGNATURE) {
246 // Skip the 64-byte image header
247 InitrdImage = (EFI_PHYSICAL_ADDRESS)((UINTN)InitrdImage + 64);
248 InitrdImageSize -= 64;
249 }
250 }
251
252 // Load the FDT binary from a device path
253 KernelParamsAddress = LINUX_ATAG_MAX_OFFSET;
254 Status = BdsLoadImage (FdtDevicePath, AllocateMaxAddress, &KernelParamsAddress, &KernelParamsSize);
255 if (EFI_ERROR(Status)) {
256 Print (L"ERROR: Did not find Device Tree blob.\n");
257 return Status;
258 }
259 return StartLinux (LinuxImage, LinuxImageSize, KernelParamsAddress, KernelParamsSize, FdtMachineType);
260 }
261