]> git.proxmox.com Git - mirror_edk2.git/blame_incremental - MdePkg/Library/DxeIoLibCpuIo2/DxeCpuIo2LibInternal.h
MdePkg: Clean up source files
[mirror_edk2.git] / MdePkg / Library / DxeIoLibCpuIo2 / DxeCpuIo2LibInternal.h
... / ...
CommitLineData
1/** @file\r
2 Internal include file of DXE CPU IO2 Library.\r
3\r
4 Copyright (c) 2010 - 2018, Intel Corporation. All rights reserved.<BR>\r
5 Copyright (c) 2017, AMD Incorporated. All rights reserved.<BR>\r
6\r
7 This program and the accompanying materials are licensed and made available\r
8 under the terms and conditions of the BSD License which accompanies this\r
9 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 _DXE_CPUIO2_LIB_INTERNAL_H_\r
18#define _DXE_CPUIO2_LIB_INTERNAL_H_\r
19\r
20#include <PiDxe.h>\r
21\r
22#include <Protocol/CpuIo2.h>\r
23\r
24#include <Library/IoLib.h>\r
25#include <Library/UefiBootServicesTableLib.h>\r
26#include <Library/DebugLib.h>\r
27#include <Library/BaseLib.h>\r
28\r
29\r
30/**\r
31 Reads registers in the EFI CPU I/O space.\r
32\r
33 Reads the I/O port specified by Port with registers width specified by Width.\r
34 The read value is returned.\r
35\r
36 This function must guarantee that all I/O read and write operations are serialized.\r
37 If such operations are not supported, then ASSERT().\r
38\r
39 @param Port The base address of the I/O operation.\r
40 The caller is responsible for aligning the Address if required.\r
41 @param Width The width of the I/O operation.\r
42\r
43 @return Data read from registers in the EFI CPU I/O space.\r
44\r
45**/\r
46UINT64\r
47EFIAPI\r
48IoReadWorker (\r
49 IN UINTN Port,\r
50 IN EFI_CPU_IO_PROTOCOL_WIDTH Width\r
51 );\r
52\r
53/**\r
54 Writes registers in the EFI CPU I/O space.\r
55\r
56 Writes the I/O port specified by Port with registers width and value specified by Width\r
57 and Data respectively. Data is returned.\r
58\r
59 This function must guarantee that all I/O read and write operations are serialized.\r
60 If such operations are not supported, then ASSERT().\r
61\r
62 @param Port The base address of the I/O operation.\r
63 The caller is responsible for aligning the Address if required.\r
64 @param Width The width of the I/O operation.\r
65 @param Data The value to write to the I/O port.\r
66\r
67 @return The parameter of Data.\r
68\r
69**/\r
70UINT64\r
71EFIAPI\r
72IoWriteWorker (\r
73 IN UINTN Port,\r
74 IN EFI_CPU_IO_PROTOCOL_WIDTH Width,\r
75 IN UINT64 Data\r
76 );\r
77\r
78/**\r
79 Reads registers in the EFI CPU I/O space.\r
80\r
81 Reads the I/O port specified by Port with registers width specified by Width.\r
82 The port is read Count times, and the read data is stored in the provided Buffer.\r
83\r
84 This function must guarantee that all I/O read and write operations are serialized.\r
85 If such operations are not supported, then ASSERT().\r
86\r
87 @param Port The base address of the I/O operation.\r
88 The caller is responsible for aligning the Address if required.\r
89 @param Width The width of the I/O operation.\r
90 @param Count The number of times to read I/O port.\r
91 @param Buffer The buffer to store the read data into.\r
92\r
93**/\r
94VOID\r
95EFIAPI\r
96IoReadFifoWorker (\r
97 IN UINTN Port,\r
98 IN EFI_CPU_IO_PROTOCOL_WIDTH Width,\r
99 IN UINTN Count,\r
100 IN VOID *Buffer\r
101 );\r
102\r
103/**\r
104 Writes registers in the EFI CPU I/O space.\r
105\r
106 Writes the I/O port specified by Port with registers width specified by Width.\r
107 The port is written Count times, and the write data is retrieved from the provided Buffer.\r
108\r
109 This function must guarantee that all I/O read and write operations are serialized.\r
110 If such operations are not supported, then ASSERT().\r
111\r
112 @param Port The base address of the I/O operation.\r
113 The caller is responsible for aligning the Address if required.\r
114 @param Width The width of the I/O operation.\r
115 @param Count The number of times to write I/O port.\r
116 @param Buffer The buffer to store the read data into.\r
117\r
118**/\r
119VOID\r
120EFIAPI\r
121IoWriteFifoWorker (\r
122 IN UINTN Port,\r
123 IN EFI_CPU_IO_PROTOCOL_WIDTH Width,\r
124 IN UINTN Count,\r
125 IN VOID *Buffer\r
126 );\r
127\r
128/**\r
129 Reads memory-mapped registers in the EFI system memory space.\r
130\r
131 Reads the MMIO registers specified by Address with registers width specified by Width.\r
132 The read value is returned. If such operations are not supported, then ASSERT().\r
133 This function must guarantee that all MMIO read and write operations are serialized.\r
134\r
135 @param Address The MMIO register to read.\r
136 The caller is responsible for aligning the Address if required.\r
137 @param Width The width of the I/O operation.\r
138\r
139 @return Data read from registers in the EFI system memory space.\r
140\r
141**/\r
142UINT64\r
143EFIAPI\r
144MmioReadWorker (\r
145 IN UINTN Address,\r
146 IN EFI_CPU_IO_PROTOCOL_WIDTH Width\r
147 );\r
148\r
149/**\r
150 Writes memory-mapped registers in the EFI system memory space.\r
151\r
152 Writes the MMIO registers specified by Address with registers width and value specified by Width\r
153 and Data respectively. Data is returned. If such operations are not supported, then ASSERT().\r
154 This function must guarantee that all MMIO read and write operations are serialized.\r
155\r
156 @param Address The MMIO register to read.\r
157 The caller is responsible for aligning the Address if required.\r
158 @param Width The width of the I/O operation.\r
159 @param Data The value to write to the I/O port.\r
160\r
161 @return Data read from registers in the EFI system memory space.\r
162\r
163**/\r
164UINT64\r
165EFIAPI\r
166MmioWriteWorker (\r
167 IN UINTN Address,\r
168 IN EFI_CPU_IO_PROTOCOL_WIDTH Width,\r
169 IN UINT64 Data\r
170 );\r
171\r
172#endif\r