]> git.proxmox.com Git - mirror_edk2.git/blame - MdePkg/Include/Protocol/SmmCpuIo.h
Added support for L2 (4K) page tables and made the CPU driver change cachability...
[mirror_edk2.git] / MdePkg / Include / Protocol / SmmCpuIo.h
CommitLineData
0495739f 1/** @file\r
2 SMM CPU I/O 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
6 Copyright (c) 2009, Intel Corporation\r
7 All rights reserved. This program and the accompanying materials\r
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_IO_H_\r
18#define _SMM_CPU_IO_H_\r
19\r
a2bb197e 20///\r
21/// Note:\r
22/// To avoid name conflict between PI and Framework SMM spec, the following names defined\r
23/// in PI 1.2 SMM spec are renamed. These renamings are not yet in a public PI spec and errta.\r
24///\r
25/// EFI_SMM_CPU_IO -> EFI_SMM_CPU_IO2\r
26/// EFI_SMM_IO_ACCESS -> EFI_SMM_IO_ACCESS2\r
27///\r
28\r
0495739f 29#define EFI_SMM_CPU_IO_PROTOCOL_GUID \\r
30 { \\r
31 0x3242A9D8, 0xCE70, 0x4AA0, { 0x95, 0x5D, 0x5E, 0x7B, 0x14, 0x0D, 0xE4, 0xD2 } \\r
32 }\r
33\r
34typedef struct _EFI_SMM_CPU_IO_PROTOCOL EFI_SMM_CPU_IO_PROTOCOL;\r
35\r
36///\r
37/// Width of the SMM CPU I/O operations\r
38///\r
39typedef enum {\r
40 SMM_IO_UINT8 = 0,\r
41 SMM_IO_UINT16 = 1,\r
42 SMM_IO_UINT32 = 2,\r
43 SMM_IO_UINT64 = 3\r
44} EFI_SMM_IO_WIDTH;\r
45\r
46/**\r
47 Provides the basic memory and I/O interfaces used toabstract accesses to devices.\r
48\r
49 The I/O operations are carried out exactly as requested. The caller is responsible for any alignment \r
50 and I/O width issues that the bus, device, platform, or type of I/O might require.\r
51\r
52 @param[in] This The EFI_SMM_CPU_IO_PROTOCOL instance.\r
53 @param[in] Width Signifies the width of the I/O operations.\r
54 @param[in] Address The base address of the I/O operations.\r
55 The caller is responsible for aligning the Address if required. \r
56 @param[in] Count The number of I/O operations to perform.\r
57 @param[in,out] Buffer For read operations, the destination buffer to store the results.\r
58 For write operations, the source buffer from which to write data.\r
59\r
60 @retval EFI_SUCCESS The data was read from or written to the device.\r
61 @retval EFI_UNSUPPORTED The Address is not valid for this system.\r
62 @retval EFI_INVALID_PARAMETER Width or Count, or both, were invalid.\r
63 @retval EFI_OUT_OF_RESOURCES The request could not be completed due to a lack of resources.\r
64**/\r
65typedef\r
66EFI_STATUS\r
a2bb197e 67(EFIAPI *EFI_SMM_CPU_IO2)(\r
0495739f 68 IN CONST EFI_SMM_CPU_IO_PROTOCOL *This,\r
69 IN EFI_SMM_IO_WIDTH Width,\r
70 IN UINT64 Address,\r
71 IN UINTN Count,\r
72 IN OUT VOID *Buffer\r
73 );\r
74\r
75typedef struct {\r
76 ///\r
77 /// This service provides the various modalities of memory and I/O read.\r
78 ///\r
a2bb197e 79 EFI_SMM_CPU_IO2 Read;\r
0495739f 80 ///\r
81 /// This service provides the various modalities of memory and I/O write.\r
82 ///\r
a2bb197e 83 EFI_SMM_CPU_IO2 Write;\r
84} EFI_SMM_IO_ACCESS2;\r
0495739f 85\r
86///\r
87/// SMM CPU I/O Protocol provides CPU I/O and memory access within SMM.\r
88///\r
5d967a7f 89struct _EFI_SMM_CPU_IO_PROTOCOL {\r
a2bb197e 90 EFI_SMM_IO_ACCESS2 Mem; ///< Allows reads and writes to memory-mapped I/O space.\r
91 EFI_SMM_IO_ACCESS2 Io; ///< Allows reads and writes to I/O space.\r
0495739f 92};\r
93\r
94extern EFI_GUID gEfiSmmCpuIoProtocolGuid;\r
95\r
96#endif\r