]> git.proxmox.com Git - mirror_edk2.git/blame - ArmPkg/Drivers/CpuDxe/Exception.c
Adding support for BeagleBoard.
[mirror_edk2.git] / ArmPkg / Drivers / CpuDxe / Exception.c
CommitLineData
2ef2b01e
A
1/** @file\r
2\r
3 Copyright (c) 2008-2009, Apple Inc. All rights reserved.\r
4 \r
5 All rights reserved. This program and the accompanying materials\r
6 are licensed and made available under the terms and conditions of the BSD License\r
7 which accompanies this distribution. The full text of the license may be found at\r
8 http://opensource.org/licenses/bsd-license.php\r
9\r
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
12\r
13**/\r
14\r
15#include "CpuDxe.h" \r
16#include <Library/CacheMaintenanceLib.h>\r
17\r
18VOID\r
19ExceptionHandlersStart (\r
20 VOID\r
21 );\r
22\r
23VOID\r
24ExceptionHandlersEnd (\r
25 VOID\r
26 );\r
27\r
28VOID\r
29CommonExceptionEntry (\r
30 VOID\r
31 );\r
32\r
33VOID\r
34AsmCommonExceptionEntry (\r
35 VOID\r
36 );\r
37\r
38\r
39EFI_EXCEPTION_CALLBACK gExceptionHandlers[MAX_ARM_EXCEPTION + 1];\r
40EFI_EXCEPTION_CALLBACK gDebuggerExceptionHandlers[MAX_ARM_EXCEPTION + 1];\r
41\r
42\r
43\r
44/**\r
45 This function registers and enables the handler specified by InterruptHandler for a processor \r
46 interrupt or exception type specified by InterruptType. If InterruptHandler is NULL, then the \r
47 handler for the processor interrupt or exception type specified by InterruptType is uninstalled. \r
48 The installed handler is called once for each processor interrupt or exception.\r
49\r
50 @param InterruptType A pointer to the processor's current interrupt state. Set to TRUE if interrupts\r
51 are enabled and FALSE if interrupts are disabled.\r
52 @param InterruptHandler A pointer to a function of type EFI_CPU_INTERRUPT_HANDLER that is called\r
53 when a processor interrupt occurs. If this parameter is NULL, then the handler\r
54 will be uninstalled.\r
55\r
56 @retval EFI_SUCCESS The handler for the processor interrupt was successfully installed or uninstalled.\r
57 @retval EFI_ALREADY_STARTED InterruptHandler is not NULL, and a handler for InterruptType was\r
58 previously installed.\r
59 @retval EFI_INVALID_PARAMETER InterruptHandler is NULL, and a handler for InterruptType was not\r
60 previously installed.\r
61 @retval EFI_UNSUPPORTED The interrupt specified by InterruptType is not supported.\r
62\r
63**/\r
64EFI_STATUS\r
65RegisterInterruptHandler (\r
66 IN EFI_EXCEPTION_TYPE InterruptType,\r
67 IN EFI_CPU_INTERRUPT_HANDLER InterruptHandler\r
68 )\r
69{\r
70 if (InterruptType > MAX_ARM_EXCEPTION) {\r
71 return EFI_UNSUPPORTED;\r
72 }\r
73\r
74 if ((InterruptHandler != NULL) && (gExceptionHandlers[InterruptType] != NULL)) {\r
75 return EFI_ALREADY_STARTED;\r
76 }\r
77\r
78 gExceptionHandlers[InterruptType] = InterruptHandler;\r
79\r
80 return EFI_SUCCESS;\r
81}\r
82\r
83\r
84/**\r
85 This function registers and enables the handler specified by InterruptHandler for a processor \r
86 interrupt or exception type specified by InterruptType. If InterruptHandler is NULL, then the \r
87 handler for the processor interrupt or exception type specified by InterruptType is uninstalled. \r
88 The installed handler is called once for each processor interrupt or exception.\r
89\r
90 @param InterruptType A pointer to the processor's current interrupt state. Set to TRUE if interrupts\r
91 are enabled and FALSE if interrupts are disabled.\r
92 @param InterruptHandler A pointer to a function of type EFI_CPU_INTERRUPT_HANDLER that is called\r
93 when a processor interrupt occurs. If this parameter is NULL, then the handler\r
94 will be uninstalled.\r
95\r
96 @retval EFI_SUCCESS The handler for the processor interrupt was successfully installed or uninstalled.\r
97 @retval EFI_ALREADY_STARTED InterruptHandler is not NULL, and a handler for InterruptType was\r
98 previously installed.\r
99 @retval EFI_INVALID_PARAMETER InterruptHandler is NULL, and a handler for InterruptType was not\r
100 previously installed.\r
101 @retval EFI_UNSUPPORTED The interrupt specified by InterruptType is not supported.\r
102\r
103**/\r
104EFI_STATUS\r
105RegisterDebuggerInterruptHandler (\r
106 IN EFI_EXCEPTION_TYPE InterruptType,\r
107 IN EFI_CPU_INTERRUPT_HANDLER InterruptHandler\r
108 )\r
109{\r
110 if (InterruptType > MAX_ARM_EXCEPTION) {\r
111 return EFI_UNSUPPORTED;\r
112 }\r
113\r
114 if ((InterruptHandler != NULL) && (gDebuggerExceptionHandlers[InterruptType] != NULL)) {\r
115 return EFI_ALREADY_STARTED;\r
116 }\r
117\r
118 gDebuggerExceptionHandlers[InterruptType] = InterruptHandler;\r
119\r
120 return EFI_SUCCESS;\r
121}\r
122\r
123\r
124\r
125VOID\r
126EFIAPI\r
127CommonCExceptionHandler (\r
128 IN EFI_EXCEPTION_TYPE ExceptionType,\r
129 IN OUT EFI_SYSTEM_CONTEXT SystemContext\r
130 )\r
131{\r
132 BOOLEAN Dispatched = FALSE;\r
133 \r
134 if (ExceptionType <= MAX_ARM_EXCEPTION) {\r
135 if (gDebuggerExceptionHandlers[ExceptionType]) {\r
136 //\r
137 // If DebugSupport hooked the interrupt call the handler. This does not disable \r
138 // the normal handler.\r
139 //\r
140 gDebuggerExceptionHandlers[ExceptionType] (ExceptionType, SystemContext);\r
141 Dispatched = TRUE;\r
142 }\r
143 if (gExceptionHandlers[ExceptionType]) {\r
144 gExceptionHandlers[ExceptionType] (ExceptionType, SystemContext);\r
145 Dispatched = TRUE;\r
146 }\r
147 }\r
148\r
149 if (Dispatched) {\r
150 //\r
151 // We did work so this was an expected ExceptionType\r
152 //\r
153 return;\r
154 }\r
155 \r
156 if (ExceptionType == EXCEPT_ARM_SOFTWARE_INTERRUPT) {\r
157 //\r
158 // ARM JTAG debuggers some times use this vector, so it is not an error to get one\r
159 //\r
160 return;\r
161 }\r
162\r
163 //\r
164 // Code after here is the default exception handler...\r
165 //\r
166 DEBUG ((EFI_D_ERROR, "Exception %d from %08x\n", ExceptionType, SystemContext.SystemContextArm->PC));\r
167 ASSERT (FALSE);\r
168\r
169}\r
170\r
171\r
172\r
173EFI_STATUS\r
174InitializeExceptions (\r
175 IN EFI_CPU_ARCH_PROTOCOL *Cpu\r
176 )\r
177{\r
178 EFI_STATUS Status;\r
179 UINTN Offset;\r
180 UINTN Length;\r
181 UINTN Index;\r
182 BOOLEAN Enabled;\r
183 EFI_PHYSICAL_ADDRESS Base;\r
184\r
185 //\r
186 // Disable interrupts\r
187 //\r
188 Cpu->GetInterruptState (Cpu, &Enabled);\r
189 Cpu->DisableInterrupt (Cpu);\r
190\r
191 //\r
192 // Initialize the C entry points for interrupts\r
193 //\r
194 for (Index = 0; Index <= MAX_ARM_EXCEPTION; Index++) {\r
195 Status = RegisterInterruptHandler (Index, NULL);\r
196 ASSERT_EFI_ERROR (Status);\r
197 \r
198 Status = RegisterDebuggerInterruptHandler (Index, NULL);\r
199 ASSERT_EFI_ERROR (Status);\r
200 }\r
201 \r
202 //\r
203 // Copy an implementation of the ARM exception vectors to 0x0.\r
204 //\r
205 Length = (UINTN)ExceptionHandlersEnd - (UINTN)ExceptionHandlersStart;\r
206\r
207 //\r
208 // Reserve space for the exception handlers\r
209 //\r
210 Base = (EFI_PHYSICAL_ADDRESS)PcdGet32 (PcdCpuVectorBaseAddress);\r
211 Status = gBS->AllocatePages (AllocateAddress, EfiBootServicesCode, EFI_SIZE_TO_PAGES (Length), &Base);\r
212 // If the request was for memory that's not in the memory map (which is often the case for 0x00000000\r
213 // on embedded systems, for example, we don't want to hang up. So we'll check here for a status of \r
214 // EFI_NOT_FOUND, and continue in that case.\r
215 if (EFI_ERROR(Status) && (Status != EFI_NOT_FOUND)) {\r
216 ASSERT_EFI_ERROR (Status);\r
217 }\r
218\r
219 CopyMem ((VOID *)(UINTN)PcdGet32 (PcdCpuVectorBaseAddress), (VOID *)ExceptionHandlersStart, Length);\r
220\r
221 //\r
222 // Patch in the common Assembly exception handler\r
223 //\r
224 Offset = (UINTN)CommonExceptionEntry - (UINTN)ExceptionHandlersStart;\r
225 *(UINTN *) ((UINT8 *)(UINTN)PcdGet32 (PcdCpuVectorBaseAddress) + Offset) = (UINTN)AsmCommonExceptionEntry;\r
226\r
227 // Flush Caches since we updated executable stuff\r
228 InvalidateInstructionCacheRange((VOID *)PcdGet32(PcdCpuVectorBaseAddress), Length);\r
229\r
230 if (Enabled) {\r
231 // \r
232 // Restore interrupt state\r
233 //\r
234 Status = Cpu->EnableInterrupt (Cpu);\r
235 }\r
236\r
237 return Status;\r
238}\r