]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Include/Protocol/SmmSwDispatch2.h
MdePkg FirmwareManagement.h: Fix typo EFI_SECURITY_VIOLATIO
[mirror_edk2.git] / MdePkg / Include / Protocol / SmmSwDispatch2.h
1 /** @file
2 SMM Software Dispatch Protocol introduced from PI 1.2 Specification
3 Volume 4 System Management Mode Core Interface.
4
5 This protocol provides the parent dispatch service for a given SMI source generator.
6
7 Copyright (c) 2009 - 2017, Intel Corporation. All rights reserved.<BR>
8 This program and the accompanying materials
9 are licensed and made available under the terms and conditions of the BSD License
10 which accompanies this distribution. The full text of the license may be found at
11 http://opensource.org/licenses/bsd-license.php
12
13 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
14 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
15
16 **/
17
18 #ifndef _SMM_SW_DISPATCH2_H_
19 #define _SMM_SW_DISPATCH2_H_
20
21 #include <Protocol/MmSwDispatch.h>
22 #include <Pi/PiSmmCis.h>
23
24 #define EFI_SMM_SW_DISPATCH2_PROTOCOL_GUID EFI_MM_SW_DISPATCH_PROTOCOL_GUID
25
26 ///
27 /// A particular chipset may not support all possible software SMI input values.
28 /// For example, the ICH supports only values 00h to 0FFh. The parent only allows a single
29 /// child registration for each SwSmiInputValue.
30 ///
31 typedef struct {
32 UINTN SwSmiInputValue;
33 } EFI_SMM_SW_REGISTER_CONTEXT;
34
35 ///
36 /// The DispatchFunction will be called with Context set to the same value as was passed into
37 /// this function in RegisterContext and with CommBuffer (and CommBufferSize) pointing
38 /// to an instance of EFI_SMM_SW_CONTEXT indicating the index of the CPU which generated the
39 /// software SMI.
40 ///
41 typedef struct {
42 ///
43 /// The 0-based index of the CPU which generated the software SMI.
44 ///
45 UINTN SwSmiCpuIndex;
46 ///
47 /// This value corresponds directly to the CommandPort parameter used in the call to Trigger().
48 ///
49 UINT8 CommandPort;
50 ///
51 /// This value corresponds directly to the DataPort parameter used in the call to Trigger().
52 ///
53 UINT8 DataPort;
54 } EFI_SMM_SW_CONTEXT;
55
56 typedef struct _EFI_SMM_SW_DISPATCH2_PROTOCOL EFI_SMM_SW_DISPATCH2_PROTOCOL;
57
58 /**
59 Register a child SMI source dispatch function for the specified software SMI.
60
61 This service registers a function (DispatchFunction) which will be called when the software
62 SMI source specified by RegisterContext->SwSmiCpuIndex is detected. On return,
63 DispatchHandle contains a unique handle which may be used later to unregister the function
64 using UnRegister().
65
66 @param[in] This Pointer to the EFI_SMM_SW_DISPATCH2_PROTOCOL instance.
67 @param[in] DispatchFunction Function to register for handler when the specified software
68 SMI is generated.
69 @param[in, out] RegisterContext Pointer to the dispatch function's context.
70 The caller fills this context in before calling
71 the register function to indicate to the register
72 function which Software SMI input value the
73 dispatch function should be invoked for.
74 @param[out] DispatchHandle Handle generated by the dispatcher to track the
75 function instance.
76
77 @retval EFI_SUCCESS The dispatch function has been successfully
78 registered and the SMI source has been enabled.
79 @retval EFI_DEVICE_ERROR The SW driver was unable to enable the SMI source.
80 @retval EFI_INVALID_PARAMETER RegisterContext is invalid. The SW SMI input value
81 is not within a valid range or is already in use.
82 @retval EFI_OUT_OF_RESOURCES There is not enough memory (system or SMM) to manage this
83 child.
84 @retval EFI_OUT_OF_RESOURCES A unique software SMI value could not be assigned
85 for this dispatch.
86 **/
87 typedef
88 EFI_STATUS
89 (EFIAPI *EFI_SMM_SW_REGISTER2)(
90 IN CONST EFI_SMM_SW_DISPATCH2_PROTOCOL *This,
91 IN EFI_SMM_HANDLER_ENTRY_POINT2 DispatchFunction,
92 IN OUT EFI_SMM_SW_REGISTER_CONTEXT *RegisterContext,
93 OUT EFI_HANDLE *DispatchHandle
94 );
95
96 /**
97 Unregister a child SMI source dispatch function for the specified software SMI.
98
99 This service removes the handler associated with DispatchHandle so that it will no longer be
100 called in response to a software SMI.
101
102 @param[in] This Pointer to the EFI_SMM_SW_DISPATCH2_PROTOCOL instance.
103 @param[in] DispatchHandle Handle of dispatch function to deregister.
104
105 @retval EFI_SUCCESS The dispatch function has been successfully unregistered.
106 @retval EFI_INVALID_PARAMETER The DispatchHandle was not valid.
107 **/
108 typedef
109 EFI_STATUS
110 (EFIAPI *EFI_SMM_SW_UNREGISTER2)(
111 IN CONST EFI_SMM_SW_DISPATCH2_PROTOCOL *This,
112 IN EFI_HANDLE DispatchHandle
113 );
114
115 ///
116 /// Interface structure for the SMM Software SMI Dispatch Protocol.
117 ///
118 /// The EFI_SMM_SW_DISPATCH2_PROTOCOL provides the ability to install child handlers for the
119 /// given software. These handlers will respond to software interrupts, and the maximum software
120 /// interrupt in the EFI_SMM_SW_REGISTER_CONTEXT is denoted by MaximumSwiValue.
121 ///
122 struct _EFI_SMM_SW_DISPATCH2_PROTOCOL {
123 EFI_SMM_SW_REGISTER2 Register;
124 EFI_SMM_SW_UNREGISTER2 UnRegister;
125 ///
126 /// A read-only field that describes the maximum value that can be used in the
127 /// EFI_SMM_SW_DISPATCH2_PROTOCOL.Register() service.
128 ///
129 UINTN MaximumSwiValue;
130 };
131
132 extern EFI_GUID gEfiSmmSwDispatch2ProtocolGuid;
133
134 #endif