]> git.proxmox.com Git - mirror_edk2.git/blob - ArmPkg/Drivers/CpuDxe/Exception.c
eef76644f70529f548fee62e915660a2a5f742d0
[mirror_edk2.git] / ArmPkg / Drivers / CpuDxe / Exception.c
1 /** @file
2
3 Copyright (c) 2008 - 2009, Apple Inc. All rights reserved.<BR>
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 "CpuDxe.h"
16
17 //FIXME: Will not compile on non-ARMv7 builds
18 #include <Chipset/ArmV7.h>
19
20 VOID
21 ExceptionHandlersStart (
22 VOID
23 );
24
25 VOID
26 ExceptionHandlersEnd (
27 VOID
28 );
29
30 VOID
31 CommonExceptionEntry (
32 VOID
33 );
34
35 VOID
36 AsmCommonExceptionEntry (
37 VOID
38 );
39
40
41 EFI_EXCEPTION_CALLBACK gExceptionHandlers[MAX_ARM_EXCEPTION + 1];
42 EFI_EXCEPTION_CALLBACK gDebuggerExceptionHandlers[MAX_ARM_EXCEPTION + 1];
43
44
45
46 /**
47 This function registers and enables the handler specified by InterruptHandler for a processor
48 interrupt or exception type specified by InterruptType. If InterruptHandler is NULL, then the
49 handler for the processor interrupt or exception type specified by InterruptType is uninstalled.
50 The installed handler is called once for each processor interrupt or exception.
51
52 @param InterruptType A pointer to the processor's current interrupt state. Set to TRUE if interrupts
53 are enabled and FALSE if interrupts are disabled.
54 @param InterruptHandler A pointer to a function of type EFI_CPU_INTERRUPT_HANDLER that is called
55 when a processor interrupt occurs. If this parameter is NULL, then the handler
56 will be uninstalled.
57
58 @retval EFI_SUCCESS The handler for the processor interrupt was successfully installed or uninstalled.
59 @retval EFI_ALREADY_STARTED InterruptHandler is not NULL, and a handler for InterruptType was
60 previously installed.
61 @retval EFI_INVALID_PARAMETER InterruptHandler is NULL, and a handler for InterruptType was not
62 previously installed.
63 @retval EFI_UNSUPPORTED The interrupt specified by InterruptType is not supported.
64
65 **/
66 EFI_STATUS
67 RegisterInterruptHandler (
68 IN EFI_EXCEPTION_TYPE InterruptType,
69 IN EFI_CPU_INTERRUPT_HANDLER InterruptHandler
70 )
71 {
72 if (InterruptType > MAX_ARM_EXCEPTION) {
73 return EFI_UNSUPPORTED;
74 }
75
76 if ((InterruptHandler != NULL) && (gExceptionHandlers[InterruptType] != NULL)) {
77 return EFI_ALREADY_STARTED;
78 }
79
80 gExceptionHandlers[InterruptType] = InterruptHandler;
81
82 return EFI_SUCCESS;
83 }
84
85
86
87
88 VOID
89 EFIAPI
90 CommonCExceptionHandler (
91 IN EFI_EXCEPTION_TYPE ExceptionType,
92 IN OUT EFI_SYSTEM_CONTEXT SystemContext
93 )
94 {
95 if (ExceptionType <= MAX_ARM_EXCEPTION) {
96 if (gExceptionHandlers[ExceptionType]) {
97 gExceptionHandlers[ExceptionType] (ExceptionType, SystemContext);
98 return;
99 }
100 } else {
101 DEBUG ((EFI_D_ERROR, "Unknown exception type %d from %08x\n", ExceptionType, SystemContext.SystemContextArm->PC));
102 ASSERT (FALSE);
103 }
104
105 if (ExceptionType == EXCEPT_ARM_SOFTWARE_INTERRUPT) {
106 //
107 // ARM JTAG debuggers some times use this vector, so it is not an error to get one
108 //
109 return;
110 }
111
112 DefaultExceptionHandler (ExceptionType, SystemContext);
113 }
114
115
116
117 EFI_STATUS
118 InitializeExceptions (
119 IN EFI_CPU_ARCH_PROTOCOL *Cpu
120 )
121 {
122 EFI_STATUS Status;
123 UINTN Offset;
124 UINTN Length;
125 UINTN Index;
126 BOOLEAN IrqEnabled;
127 BOOLEAN FiqEnabled;
128 EFI_PHYSICAL_ADDRESS Base;
129 UINT32 *VectorBase;
130
131 Status = EFI_SUCCESS;
132 //
133 // Disable interrupts
134 //
135 Cpu->GetInterruptState (Cpu, &IrqEnabled);
136 Cpu->DisableInterrupt (Cpu);
137
138 //
139 // EFI does not use the FIQ, but a debugger might so we must disable
140 // as we take over the exception vectors.
141 //
142 FiqEnabled = ArmGetFiqState ();
143 ArmDisableFiq ();
144
145 if (FeaturePcdGet(PcdRelocateVectorTable) == TRUE) {
146 //
147 // Copy an implementation of the ARM exception vectors to PcdCpuVectorBaseAddress.
148 //
149 Length = (UINTN)ExceptionHandlersEnd - (UINTN)ExceptionHandlersStart;
150
151 // Check if the exception vector is in the low address
152 if (PcdGet32 (PcdCpuVectorBaseAddress) == 0x0) {
153 // Set SCTLR.V to 0 to enable VBAR to be used
154 ArmSetLowVectors ();
155 } else {
156 ArmSetHighVectors ();
157 }
158
159 //
160 // Reserve space for the exception handlers
161 //
162 Base = (EFI_PHYSICAL_ADDRESS)PcdGet32 (PcdCpuVectorBaseAddress);
163 VectorBase = (UINT32 *)(UINTN)Base;
164 Status = gBS->AllocatePages (AllocateAddress, EfiBootServicesCode, EFI_SIZE_TO_PAGES (Length), &Base);
165 // If the request was for memory that's not in the memory map (which is often the case for 0x00000000
166 // on embedded systems, for example, we don't want to hang up. So we'll check here for a status of
167 // EFI_NOT_FOUND, and continue in that case.
168 if (EFI_ERROR(Status) && (Status != EFI_NOT_FOUND)) {
169 ASSERT_EFI_ERROR (Status);
170 }
171
172 if (FeaturePcdGet(PcdDebuggerExceptionSupport) == TRUE) {
173 // Save existing vector table, in case debugger is already hooked in
174 CopyMem ((VOID *)gDebuggerExceptionHandlers, (VOID *)VectorBase, sizeof (gDebuggerExceptionHandlers));
175 }
176
177 // Copy our assembly code into the page that contains the exception vectors.
178 CopyMem ((VOID *)VectorBase, (VOID *)ExceptionHandlersStart, Length);
179
180 //
181 // Patch in the common Assembly exception handler
182 //
183 Offset = (UINTN)CommonExceptionEntry - (UINTN)ExceptionHandlersStart;
184 *(UINTN *) ((UINT8 *)(UINTN)PcdGet32 (PcdCpuVectorBaseAddress) + Offset) = (UINTN)AsmCommonExceptionEntry;
185
186 //
187 // Initialize the C entry points for interrupts
188 //
189 for (Index = 0; Index <= MAX_ARM_EXCEPTION; Index++) {
190 if (!FeaturePcdGet(PcdDebuggerExceptionSupport) ||
191 (gDebuggerExceptionHandlers[Index] == 0) || (gDebuggerExceptionHandlers[Index] == (VOID *)(UINTN)0xEAFFFFFE)) {
192 // Exception handler contains branch to vector location (jmp $) so no handler
193 // NOTE: This code assumes vectors are ARM and not Thumb code
194 Status = RegisterInterruptHandler (Index, NULL);
195 ASSERT_EFI_ERROR (Status);
196 } else {
197 // If the debugger has already hooked put its vector back
198 VectorBase[Index] = (UINT32)(UINTN)gDebuggerExceptionHandlers[Index];
199 }
200 }
201
202 // Flush Caches since we updated executable stuff
203 InvalidateInstructionCacheRange ((VOID *)PcdGet32(PcdCpuVectorBaseAddress), Length);
204
205 //Note: On ARM processor with the Security Extension, the Vector Table can be located anywhere in the memory.
206 // The Vector Base Address Register defines the location
207 ArmWriteVBar(PcdGet32(PcdCpuVectorBaseAddress));
208 } else {
209 // We do not copy the Exception Table at PcdGet32(PcdCpuVectorBaseAddress). We just set Vector Base Address to point into CpuDxe code.
210 ArmWriteVBar((UINT32)ExceptionHandlersStart);
211 }
212
213 if (FiqEnabled) {
214 ArmEnableFiq ();
215 }
216
217 if (IrqEnabled) {
218 //
219 // Restore interrupt state
220 //
221 Status = Cpu->EnableInterrupt (Cpu);
222 }
223
224 return Status;
225 }