summaryrefslogtreecommitdiff
path: root/ReferenceCode/Chipset/SystemAgent/MemoryInit/Pei/MrcOemMmio.c
blob: c2d80e6c371513de55992a786c4b78106d330cb6 (plain)
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
/** @file
  This file contains the memory mapped I/O manipulation functions.

@copyright
  Copyright (c) 1999 - 2012 Intel Corporation. All rights reserved.
  This software and associated documentation (if any) is furnished
  under a license and may only be used or copied in accordance
  with the terms of the license. Except as permitted by such
  license, no part of this software or documentation may be
  reproduced, stored in a retrieval system, or transmitted in any
  form or by any means without the express written consent of
  Intel Corporation.

  This file contains an 'Intel Peripheral Driver' and uniquely
  identified as "Intel Reference Module" and is
  licensed for Intel CPUs and chipsets under the terms of your
  license agreement with Intel or your vendor.  This file may
  be modified by the user, subject to additional terms of the
  license agreement.
**/

#include "MrcTypes.h"
#include "MrcOemMmio.h"

/**
@brief
  Read 64 bits from the Memory Mapped I/O space.

  @param[in]  Offset      - Offset from the specified base address.
  @param[out] Value       - Where to store the read value.
  @param[in]  BaseAddress - MMIO space base address.

  @retval Nothing.
**/
void
MrcOemMmioRead64 (
  IN  U32 Offset,
  OUT U64 *Value,
  IN  U32 BaseAddress
  )
{
  U64 MmxSave;
  U64 *MmioOffset;

  MmioOffset = (U64 *) (Offset + BaseAddress);

#if defined __GNUC__  // GCC compiler
  __asm__ __volatile__ (
    "\n\t movq %%mm0, %0"
    "\n\t movq %2, %%mm0"
    "\n\t movq %%mm0, %1"
    "\n\t movq %3, %%mm0"
    "\n\t emms"
    : "=m" (MmxSave),
      "=m" (Value[0])
    : "m" (MmioOffset[0]),
      "m" (MmxSave)
    );
#else // MSFT compiler
  ASM {

    ; Save mm0
    movq  MmxSave, mm0

    mov   edi, MmioOffset

    movq  mm0, QWORD PTR DS:[edi]

    mov   edi, Value
    movq  QWORD PTR DS:[edi], mm0

    ; Restore mm0
    movq  mm0, MmxSave
    emms                     ; Exit mmx Instruction
  }
#endif

  MmioReadCount ();
  return;
}

/**
@brief
  Read 32 bits from the Memory Mapped I/O space.

  @param[in]  Offset      - Offset from the specified base address.
  @param[out] Value       - Where to store the read value.
  @param[in]  BaseAddress - MMIO space base address.

  @retval Nothing.
**/
void
MrcOemMmioRead (
  IN  U32 Offset,
  OUT U32 *Value,
  IN  U32 BaseAddress
  )
{
  *Value = (*((volatile U32 *) (Offset + BaseAddress)));
  MmioReadCount ();
  return;
}

/**
@brief
  Read 16 bits from the Memory Mapped I/O space.

  @param[in]  Offset      - Offset from the specified base address.
  @param[out] Value       - Where to store the read value.
  @param[in]  BaseAddress - MMIO space base address.

  @retval Nothing.
**/
void
MrcOemMmioRead16 (
  IN  U32 Offset,
  OUT U16 *Value,
  IN  U32 BaseAddress
  )
{
  *Value = (*((volatile U16 *) (Offset + BaseAddress)));
  MmioReadCount ();
  return;
}

/**
@brief
  Read 8 bits from the Memory Mapped I/O space.

  @param[in]  Offset      - Offset from the specified base address.
  @param[out] Value       - Where to store the read value.
  @param[in]  BaseAddress - MMIO space base address.

  @retval Nothing.
**/
void
MrcOemMmioRead8 (
  IN  U32 Offset,
  OUT U8  *Value,
  IN  U32 BaseAddress
  )
{
  *Value = (*((volatile U8 *) (Offset + BaseAddress)));
  MmioReadCount ();
  return;
}

/**
@brief
  Write 64 bits to the Memory Mapped I/O space.

  @param[in] Offset      - Offset from the specified base address.
  @param[in] Value       - The value to write.
  @param[in] BaseAddress - MMIO space base address.

  @retval Nothing.
**/
void
MrcOemMmioWrite64 (
  IN U32 Offset,
  IN U64 Value,
  IN U32 BaseAddress
  )
{
  U64 MmxSave;
  U64 *MmioOffset;

  MmioOffset = (U64 *) (Offset + BaseAddress);

#if defined __GNUC__  // GCC compiler
  __asm__ __volatile__ (
    "\n\t movq %%mm0, %0"
    "\n\t movq %2, %%mm0"
    "\n\t movq %%mm0, %1"
    "\n\t movq %3, %%mm0"
    "\n\t emms"
    : "=m" (MmxSave)
    : "m" (MmioOffset[0]),
      "m" (Value),
      "m" (MmxSave)
    );
#else //MSFT compiler
  ASM {

    ; Save mm0
    movq  MmxSave, mm0

    mov   edi, MmioOffset
    movq  mm0, Value

    movq  QWORD PTR DS:[edi], mm0

    ; Restore mm0
    movq  mm0, MmxSave
    emms                     ; Exit mmx Instruction

  }
#endif

  MmioWriteCount ();
  return;
}

/**
@brief
  Write 32 bits to the Memory Mapped I/O space.

  @param[in] Offset      - Offset from the specified base address.
  @param[in] Value       - The value to write.
  @param[in] BaseAddress - MMIO space base address.

  @retval Nothing.
**/
void
MrcOemMmioWrite (
  IN U32 Offset,
  IN U32 Value,
  IN U32 BaseAddress
  )
{
  (*((volatile U32 *) (Offset + BaseAddress))) = Value;
  MmioWriteCount ();
  return;
}

/**
@brief
  Write 16 bits to the Memory Mapped I/O space.

  @param[in] Offset      - Offset from the specified base address.
  @param[in] Value       - The value to write.
  @param[in] BaseAddress - MMIO space base address.

  @retval Nothing.
**/
void
MrcOemMmioWrite16 (
  IN U32 Offset,
  IN U16 Value,
  IN U32 BaseAddress
  )
{
  (*((volatile U16 *) (Offset + BaseAddress))) = Value;
  MmioWriteCount ();
  return;
}

/**
@brief
  Write 8 bits to the Memory Mapped I/O space.

  @param[in] Offset      - Offset from the specified base address.
  @param[in] Value       - The value to write.
  @param[in] BaseAddress - MMIO space base address.

  @retval Nothing.
**/
void
MrcOemMmioWrite8 (
  IN U32 Offset,
  IN U8  Value,
  IN U32 BaseAddress
  )
{
  (*((volatile U8 *) (Offset + BaseAddress))) = Value;
  MmioWriteCount ();
  return;
}
#ifndef MRC_MINIBIOS_BUILD
/*++

@brief
  This function count the number of access to writes MMIO registers.

  @param[in] Nothing.

  @retval Nothing.
**/
void
MmioWriteCount (
  void
  )
{
  return;
}

/**
@brief
  This function count the number of access to reads MMIO registers.

  @param[in] Nothing.

  @retval Nothing.
**/
void
MmioReadCount (
  void
  )
{
  return;
}
#endif // MRC_MINIBIOS_BUILD