1 | /** @file
|
---|
2 | CPU exception handler library implementation for SMM modules.
|
---|
3 |
|
---|
4 | Copyright (c) 2013 - 2022, Intel Corporation. All rights reserved.<BR>
|
---|
5 | SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
6 |
|
---|
7 | **/
|
---|
8 |
|
---|
9 | #include <PiSmm.h>
|
---|
10 | #include "CpuExceptionCommon.h"
|
---|
11 |
|
---|
12 | CONST UINTN mDoFarReturnFlag = 1;
|
---|
13 |
|
---|
14 | RESERVED_VECTORS_DATA mReservedVectorsData[CPU_EXCEPTION_NUM];
|
---|
15 | EFI_CPU_INTERRUPT_HANDLER mExternalInterruptHandlerTable[CPU_EXCEPTION_NUM];
|
---|
16 | EXCEPTION_HANDLER_DATA mExceptionHandlerData = {
|
---|
17 | CPU_EXCEPTION_NUM,
|
---|
18 | 0, // To be fixed
|
---|
19 | mReservedVectorsData,
|
---|
20 | mExternalInterruptHandlerTable
|
---|
21 | };
|
---|
22 |
|
---|
23 | /**
|
---|
24 | Common exception handler.
|
---|
25 |
|
---|
26 | @param ExceptionType Exception type.
|
---|
27 | @param SystemContext Pointer to EFI_SYSTEM_CONTEXT.
|
---|
28 | **/
|
---|
29 | VOID
|
---|
30 | EFIAPI
|
---|
31 | CommonExceptionHandler (
|
---|
32 | IN EFI_EXCEPTION_TYPE ExceptionType,
|
---|
33 | IN EFI_SYSTEM_CONTEXT SystemContext
|
---|
34 | )
|
---|
35 | {
|
---|
36 | CommonExceptionHandlerWorker (ExceptionType, SystemContext, &mExceptionHandlerData);
|
---|
37 | }
|
---|
38 |
|
---|
39 | /**
|
---|
40 | Initializes all CPU exceptions entries and provides the default exception handlers.
|
---|
41 |
|
---|
42 | Caller should try to get an array of interrupt and/or exception vectors that are in use and need to
|
---|
43 | persist by EFI_VECTOR_HANDOFF_INFO defined in PI 1.3 specification.
|
---|
44 | If caller cannot get reserved vector list or it does not exists, set VectorInfo to NULL.
|
---|
45 | If VectorInfo is not NULL, the exception vectors will be initialized per vector attribute accordingly.
|
---|
46 |
|
---|
47 | @param[in] VectorInfo Pointer to reserved vector list.
|
---|
48 |
|
---|
49 | @retval EFI_SUCCESS CPU Exception Entries have been successfully initialized
|
---|
50 | with default exception handlers.
|
---|
51 | @retval EFI_INVALID_PARAMETER VectorInfo includes the invalid content if VectorInfo is not NULL.
|
---|
52 | @retval EFI_UNSUPPORTED This function is not supported.
|
---|
53 |
|
---|
54 | **/
|
---|
55 | EFI_STATUS
|
---|
56 | EFIAPI
|
---|
57 | InitializeCpuExceptionHandlers (
|
---|
58 | IN EFI_VECTOR_HANDOFF_INFO *VectorInfo OPTIONAL
|
---|
59 | )
|
---|
60 | {
|
---|
61 | InitializeSpinLock (&mExceptionHandlerData.DisplayMessageSpinLock);
|
---|
62 | return InitializeCpuExceptionHandlersWorker (VectorInfo, &mExceptionHandlerData);
|
---|
63 | }
|
---|
64 |
|
---|
65 | /**
|
---|
66 | Registers a function to be called from the processor interrupt handler.
|
---|
67 |
|
---|
68 | This function registers and enables the handler specified by InterruptHandler for a processor
|
---|
69 | interrupt or exception type specified by InterruptType. If InterruptHandler is NULL, then the
|
---|
70 | handler for the processor interrupt or exception type specified by InterruptType is uninstalled.
|
---|
71 | The installed handler is called once for each processor interrupt or exception.
|
---|
72 | NOTE: This function should be invoked after InitializeCpuExceptionHandlers() is invoked,
|
---|
73 | otherwise EFI_UNSUPPORTED returned.
|
---|
74 |
|
---|
75 | @param[in] InterruptType Defines which interrupt or exception to hook.
|
---|
76 | @param[in] InterruptHandler A pointer to a function of type EFI_CPU_INTERRUPT_HANDLER that is called
|
---|
77 | when a processor interrupt occurs. If this parameter is NULL, then the handler
|
---|
78 | will be uninstalled.
|
---|
79 |
|
---|
80 | @retval EFI_SUCCESS The handler for the processor interrupt was successfully installed or uninstalled.
|
---|
81 | @retval EFI_ALREADY_STARTED InterruptHandler is not NULL, and a handler for InterruptType was
|
---|
82 | previously installed.
|
---|
83 | @retval EFI_INVALID_PARAMETER InterruptHandler is NULL, and a handler for InterruptType was not
|
---|
84 | previously installed.
|
---|
85 | @retval EFI_UNSUPPORTED The interrupt specified by InterruptType is not supported,
|
---|
86 | or this function is not supported.
|
---|
87 | **/
|
---|
88 | EFI_STATUS
|
---|
89 | EFIAPI
|
---|
90 | RegisterCpuInterruptHandler (
|
---|
91 | IN EFI_EXCEPTION_TYPE InterruptType,
|
---|
92 | IN EFI_CPU_INTERRUPT_HANDLER InterruptHandler
|
---|
93 | )
|
---|
94 | {
|
---|
95 | return RegisterCpuInterruptHandlerWorker (InterruptType, InterruptHandler, &mExceptionHandlerData);
|
---|
96 | }
|
---|
97 |
|
---|
98 | /**
|
---|
99 | Setup separate stacks for certain exception handlers.
|
---|
100 | If the input Buffer and BufferSize are both NULL, use global variable if possible.
|
---|
101 |
|
---|
102 | @param[in] Buffer Point to buffer used to separate exception stack.
|
---|
103 | @param[in, out] BufferSize On input, it indicates the byte size of Buffer.
|
---|
104 | If the size is not enough, the return status will
|
---|
105 | be EFI_BUFFER_TOO_SMALL, and output BufferSize
|
---|
106 | will be the size it needs.
|
---|
107 |
|
---|
108 | @retval EFI_SUCCESS The stacks are assigned successfully.
|
---|
109 | @retval EFI_UNSUPPORTED This function is not supported.
|
---|
110 | @retval EFI_BUFFER_TOO_SMALL This BufferSize is too small.
|
---|
111 | **/
|
---|
112 | EFI_STATUS
|
---|
113 | EFIAPI
|
---|
114 | InitializeSeparateExceptionStacks (
|
---|
115 | IN VOID *Buffer,
|
---|
116 | IN OUT UINTN *BufferSize
|
---|
117 | )
|
---|
118 | {
|
---|
119 | return EFI_UNSUPPORTED;
|
---|
120 | }
|
---|