1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
|
/** IoAccessLib.c
Provide MMIO APIs for BE modules.
Copyright 2017-2020 NXP
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include <Base.h>
#include <Library/BaseLib.h>
#include <Library/IoAccessLib.h>
#include <Library/IoLib.h>
/**
MmioRead16 for Big-Endian modules.
@param Address The MMIO register to read.
@return The value read.
**/
STATIC
UINT16
EFIAPI
SwapMmioRead16 (
IN UINTN Address
)
{
return SwapBytes16 (MmioRead16 (Address));
}
/**
MmioRead32 for Big-Endian modules.
@param Address The MMIO register to read.
@return The value read.
**/
STATIC
UINT32
EFIAPI
SwapMmioRead32 (
IN UINTN Address
)
{
return SwapBytes32 (MmioRead32 (Address));
}
/**
MmioRead64 for Big-Endian modules.
@param Address The MMIO register to read.
@return The value read.
**/
STATIC
UINT64
EFIAPI
SwapMmioRead64 (
IN UINTN Address
)
{
return SwapBytes64 (MmioRead64 (Address));
}
/**
MmioWrite16 for Big-Endian modules.
@param Address The MMIO register to write.
@param Value The value to write to the MMIO register.
**/
STATIC
UINT16
EFIAPI
SwapMmioWrite16 (
IN UINTN Address,
IN UINT16 Value
)
{
return MmioWrite16 (Address, SwapBytes16 (Value));
}
/**
MmioWrite32 for Big-Endian modules.
@param Address The MMIO register to write.
@param Value The value to write to the MMIO register.
**/
STATIC
UINT32
EFIAPI
SwapMmioWrite32 (
IN UINTN Address,
IN UINT32 Value
)
{
return MmioWrite32 (Address, SwapBytes32 (Value));
}
/**
MmioWrite64 for Big-Endian modules.
@param Address The MMIO register to write.
@param Value The value to write to the MMIO register.
**/
STATIC
UINT64
EFIAPI
SwapMmioWrite64 (
IN UINTN Address,
IN UINT64 Value
)
{
return MmioWrite64 (Address, SwapBytes64 (Value));
}
/**
MmioAndThenOr16 for Big-Endian modules.
@param Address The MMIO register to write.
@param AndData The value to AND with the read value from the MMIO register.
@param OrData The value to OR with the result of the AND operation.
@return The value written back to the MMIO register.
**/
STATIC
UINT16
EFIAPI
SwapMmioAndThenOr16 (
IN UINTN Address,
IN UINT16 AndData,
IN UINT16 OrData
)
{
AndData = SwapBytes16 (AndData);
OrData = SwapBytes16 (OrData);
return MmioAndThenOr16 (Address, AndData, OrData);
}
/**
MmioAndThenOr32 for Big-Endian modules.
@param Address The MMIO register to write.
@param AndData The value to AND with the read value from the MMIO register.
@param OrData The value to OR with the result of the AND operation.
@return The value written back to the MMIO register.
**/
STATIC
UINT32
EFIAPI
SwapMmioAndThenOr32 (
IN UINTN Address,
IN UINT32 AndData,
IN UINT32 OrData
)
{
AndData = SwapBytes32 (AndData);
OrData = SwapBytes32 (OrData);
return MmioAndThenOr32 (Address, AndData, OrData);
}
/**
MmioAndThenOr64 for Big-Endian modules.
@param Address The MMIO register to write.
@param AndData The value to AND with the read value from the MMIO register.
@param OrData The value to OR with the result of the AND operation.
@return The value written back to the MMIO register.
**/
STATIC
UINT64
EFIAPI
SwapMmioAndThenOr64 (
IN UINTN Address,
IN UINT64 AndData,
IN UINT64 OrData
)
{
AndData = SwapBytes64 (AndData);
OrData = SwapBytes64 (OrData);
return MmioAndThenOr64 (Address, AndData, OrData);
}
/**
MmioOr16 for Big-Endian modules.
@param Address The MMIO register to write.
@param OrData The value to OR with the read value from the MMIO register.
@return The value written back to the MMIO register.
**/
STATIC
UINT16
EFIAPI
SwapMmioOr16 (
IN UINTN Address,
IN UINT16 OrData
)
{
return MmioOr16 (Address, SwapBytes16 (OrData));
}
/**
MmioOr32 for Big-Endian modules.
@param Address The MMIO register to write.
@param OrData The value to OR with the read value from the MMIO register.
@return The value written back to the MMIO register.
**/
STATIC
UINT32
EFIAPI
SwapMmioOr32 (
IN UINTN Address,
IN UINT32 OrData
)
{
return MmioOr32 (Address, SwapBytes32 (OrData));
}
/**
MmioOr64 for Big-Endian modules.
@param Address The MMIO register to write.
@param OrData The value to OR with the read value from the MMIO register.
@return The value written back to the MMIO register.
**/
STATIC
UINT64
EFIAPI
SwapMmioOr64 (
IN UINTN Address,
IN UINT64 OrData
)
{
return MmioOr64 (Address, SwapBytes64 (OrData));
}
/**
MmioAnd16 for Big-Endian modules.
@param Address The MMIO register to write.
@param AndData The value to AND with the read value from the MMIO register.
@return The value written back to the MMIO register.
**/
STATIC
UINT16
EFIAPI
SwapMmioAnd16 (
IN UINTN Address,
IN UINT16 AndData
)
{
return MmioAnd16 (Address, SwapBytes16 (AndData));
}
/**
MmioAnd32 for Big-Endian modules.
@param Address The MMIO register to write.
@param AndData The value to AND with the read value from the MMIO register.
@return The value written back to the MMIO register.
**/
STATIC
UINT32
EFIAPI
SwapMmioAnd32 (
IN UINTN Address,
IN UINT32 AndData
)
{
return MmioAnd32 (Address, SwapBytes32 (AndData));
}
/**
MmioAnd64 for Big-Endian modules.
@param Address The MMIO register to write.
@param AndData The value to AND with the read value from the MMIO register.
@return The value written back to the MMIO register.
**/
STATIC
UINT64
EFIAPI
SwapMmioAnd64 (
IN UINTN Address,
IN UINT64 AndData
)
{
return MmioAnd64 (Address, SwapBytes64 (AndData));
}
STATIC MMIO_OPERATIONS SwappingFunctions = {
SwapMmioRead16,
SwapMmioWrite16,
SwapMmioOr16,
SwapMmioAnd16,
SwapMmioAndThenOr16,
SwapMmioRead32,
SwapMmioWrite32,
SwapMmioOr32,
SwapMmioAnd32,
SwapMmioAndThenOr32,
SwapMmioRead64,
SwapMmioWrite64,
SwapMmioOr64,
SwapMmioAnd64,
SwapMmioAndThenOr64,
};
STATIC MMIO_OPERATIONS NonSwappingFunctions = {
MmioRead16,
MmioWrite16,
MmioOr16,
MmioAnd16,
MmioAndThenOr16,
MmioRead32,
MmioWrite32,
MmioOr32,
MmioAnd32,
MmioAndThenOr32,
MmioRead64,
MmioWrite64,
MmioOr64,
MmioAnd64,
MmioAndThenOr64,
};
/**
Function to return pointer to Mmio operations.
@param Swap Flag to tell if Swap is needed or not
on Mmio Operations.
@return Pointer to Mmio Operations.
**/
MMIO_OPERATIONS *
GetMmioOperations (BOOLEAN Swap) {
if (Swap) {
return &SwappingFunctions;
} else {
return &NonSwappingFunctions;
}
}
|