]> git.proxmox.com Git - mirror_edk2.git/blame - MdePkg/Include/Protocol/SmmCpuIo2.h
MdePkg/ProcessorBind: add defines for page allocation granularity
[mirror_edk2.git] / MdePkg / Include / Protocol / SmmCpuIo2.h
CommitLineData
8fc71dec 1/** @file\r
2 SMM CPU I/O 2 protocol as defined in the PI 1.2 specification.\r
3\r
4 This protocol provides CPU I/O and memory access within SMM.\r
5\r
9df063a0
HT
6 Copyright (c) 2009 - 2010, Intel Corporation. All rights reserved.<BR>\r
7 This program and the accompanying materials\r
8fc71dec 8 are licensed and made available under the terms and conditions of the BSD License\r
9 which accompanies this distribution. The full text of the license may be found at\r
10 http://opensource.org/licenses/bsd-license.php\r
11\r
12 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
13 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
14\r
15**/\r
16\r
17#ifndef _SMM_CPU_IO2_H_\r
18#define _SMM_CPU_IO2_H_\r
19\r
8fc71dec 20#define EFI_SMM_CPU_IO2_PROTOCOL_GUID \\r
21 { \\r
22 0x3242A9D8, 0xCE70, 0x4AA0, { 0x95, 0x5D, 0x5E, 0x7B, 0x14, 0x0D, 0xE4, 0xD2 } \\r
23 }\r
24\r
25typedef struct _EFI_SMM_CPU_IO2_PROTOCOL EFI_SMM_CPU_IO2_PROTOCOL;\r
26\r
27///\r
28/// Width of the SMM CPU I/O operations\r
29///\r
30typedef enum {\r
31 SMM_IO_UINT8 = 0,\r
32 SMM_IO_UINT16 = 1,\r
33 SMM_IO_UINT32 = 2,\r
34 SMM_IO_UINT64 = 3\r
35} EFI_SMM_IO_WIDTH;\r
36\r
37/**\r
38 Provides the basic memory and I/O interfaces used toabstract accesses to devices.\r
39\r
40 The I/O operations are carried out exactly as requested. The caller is \r
41 responsible for any alignment and I/O width issues that the bus, device, \r
42 platform, or type of I/O might require.\r
43\r
44 @param[in] This The EFI_SMM_CPU_IO2_PROTOCOL instance.\r
45 @param[in] Width Signifies the width of the I/O operations.\r
46 @param[in] Address The base address of the I/O operations. The caller is \r
47 responsible for aligning the Address if required. \r
48 @param[in] Count The number of I/O operations to perform.\r
49 @param[in,out] Buffer For read operations, the destination buffer to store \r
50 the results. For write operations, the source buffer \r
51 from which to write data.\r
52\r
53 @retval EFI_SUCCESS The data was read from or written to the device.\r
54 @retval EFI_UNSUPPORTED The Address is not valid for this system.\r
55 @retval EFI_INVALID_PARAMETER Width or Count, or both, were invalid.\r
56 @retval EFI_OUT_OF_RESOURCES The request could not be completed due to a lack\r
57 of resources.\r
58**/\r
59typedef\r
60EFI_STATUS\r
61(EFIAPI *EFI_SMM_CPU_IO2)(\r
62 IN CONST EFI_SMM_CPU_IO2_PROTOCOL *This,\r
63 IN EFI_SMM_IO_WIDTH Width,\r
64 IN UINT64 Address,\r
65 IN UINTN Count,\r
66 IN OUT VOID *Buffer\r
67 );\r
68\r
69typedef struct {\r
70 ///\r
71 /// This service provides the various modalities of memory and I/O read.\r
72 ///\r
73 EFI_SMM_CPU_IO2 Read;\r
74 ///\r
75 /// This service provides the various modalities of memory and I/O write.\r
76 ///\r
77 EFI_SMM_CPU_IO2 Write;\r
78} EFI_SMM_IO_ACCESS2;\r
79\r
80///\r
81/// SMM CPU I/O Protocol provides CPU I/O and memory access within SMM.\r
82///\r
83struct _EFI_SMM_CPU_IO2_PROTOCOL {\r
84 ///\r
85 /// Allows reads and writes to memory-mapped I/O space.\r
86 ///\r
87 EFI_SMM_IO_ACCESS2 Mem;\r
88 ///\r
89 /// Allows reads and writes to I/O space.\r
90 ///\r
91 EFI_SMM_IO_ACCESS2 Io;\r
92};\r
93\r
94extern EFI_GUID gEfiSmmCpuIo2ProtocolGuid;\r
95\r
96#endif\r