]> git.proxmox.com Git - mirror_edk2.git/blob - EdkCompatibilityPkg/Compatibility/SmmControl2OnSmmControlThunk/SmmControl2OnSmmControlThunk.c
8abd56ecd6cfef3c9c00b6082652c9ccec17c857
[mirror_edk2.git] / EdkCompatibilityPkg / Compatibility / SmmControl2OnSmmControlThunk / SmmControl2OnSmmControlThunk.c
1 /** @file
2 SMM Control2 Protocol on SMM Control Protocol Thunk driver.
3
4 Copyright (c) 2009 - 2010, Intel Corporation
5 All rights reserved. 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 "SmmControl2OnSmmControlThunk.h"
16
17 EFI_SMM_CONTROL2_PROTOCOL gSmmControl2 = {
18 SmmControl2Trigger,
19 SmmControl2Clear,
20 0
21 };
22
23 EFI_SMM_CONTROL_PROTOCOL *mSmmControl;
24 UINT8 mDataPort;
25
26 /**
27 Invokes SMI activation from either the preboot or runtime environment.
28
29 This function generates an SMI.
30
31 @param[in] This The EFI_SMM_CONTROL2_PROTOCOL instance.
32 @param[in, out] CommandPort The value written to the command port.
33 @param[in, out] DataPort The value written to the data port.
34 @param[in] Periodic Optional mechanism to engender a periodic stream.
35 @param[in] ActivationInterval Optional parameter to repeat at this period one
36 time or, if the Periodic Boolean is set, periodically.
37
38 @retval EFI_SUCCESS The SMI/PMI has been engendered.
39 @retval EFI_DEVICE_ERROR The timing is unsupported.
40 @retval EFI_INVALID_PARAMETER The activation period is unsupported.
41 @retval EFI_NOT_STARTED The SMM base service has not been initialized.
42 **/
43 EFI_STATUS
44 EFIAPI
45 SmmControl2Trigger (
46 IN CONST EFI_SMM_CONTROL2_PROTOCOL *This,
47 IN OUT UINT8 *CommandPort OPTIONAL,
48 IN OUT UINT8 *DataPort OPTIONAL,
49 IN BOOLEAN Periodic OPTIONAL,
50 IN UINTN ActivationInterval OPTIONAL
51 )
52 {
53 UINTN ArgumentBufferSize;
54
55 ArgumentBufferSize = 0;
56 if (CommandPort != NULL) {
57 ArgumentBufferSize = 1;
58 }
59 if (DataPort != NULL) {
60 IoWrite8 (mDataPort, *DataPort);
61 }
62 return mSmmControl->Trigger (mSmmControl, (INT8 *)CommandPort, &ArgumentBufferSize, Periodic, ActivationInterval);
63 }
64
65 /**
66 Clears any system state that was created in response to the Trigger() call.
67
68 This function acknowledges and causes the deassertion of the SMI activation source.
69
70 @param[in] This The EFI_SMM_CONTROL2_PROTOCOL instance.
71 @param[in] Periodic Optional parameter to repeat at this period one time
72
73 @retval EFI_SUCCESS The SMI/PMI has been engendered.
74 @retval EFI_DEVICE_ERROR The source could not be cleared.
75 @retval EFI_INVALID_PARAMETER The service did not support the Periodic input argument.
76 **/
77 EFI_STATUS
78 EFIAPI
79 SmmControl2Clear (
80 IN CONST EFI_SMM_CONTROL2_PROTOCOL *This,
81 IN BOOLEAN Periodic OPTIONAL
82 )
83 {
84 return mSmmControl->Clear (mSmmControl, Periodic);
85 }
86
87 /**
88 Entry Point for this thunk driver.
89
90 @param[in] ImageHandle Image handle of this driver.
91 @param[in] SystemTable A Pointer to the EFI System Table.
92
93 @retval EFI_SUCCESS The entry point is executed successfully.
94 @retval other Some error occurred when executing this entry point.
95 **/
96 EFI_STATUS
97 EFIAPI
98 SmmControl2ThunkMain (
99 IN EFI_HANDLE ImageHandle,
100 IN EFI_SYSTEM_TABLE *SystemTable
101 )
102 {
103 EFI_STATUS Status;
104 EFI_SMM_CONTROL_REGISTER RegisterInfo;
105
106 ///
107 /// Locate Framework SMM Control Protocol
108 ///
109 Status = gBS->LocateProtocol (&gEfiSmmControlProtocolGuid, NULL, (VOID **)&mSmmControl);
110 ASSERT_EFI_ERROR (Status);
111
112 gSmmControl2.MinimumTriggerPeriod = mSmmControl->MinimumTriggerPeriod;
113
114 Status = mSmmControl->GetRegisterInfo (mSmmControl, &RegisterInfo);
115 ASSERT_EFI_ERROR (Status);
116 mDataPort = RegisterInfo.SmiDataRegister;
117
118 ///
119 /// Publish framework SMM Control Protocol
120 ///
121 Status = gBS->InstallProtocolInterface (
122 &ImageHandle,
123 &gEfiSmmControl2ProtocolGuid,
124 EFI_NATIVE_INTERFACE,
125 &gSmmControl2
126 );
127 return Status;
128 }
129