summaryrefslogtreecommitdiff
path: root/ReferenceCode/Chipset/SystemAgent/MemoryInit/Pei/MrcOemMmio.h
blob: f5621cd6d997d23c58a54ca4481fe114aea21e9b (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
/** @file

  This file contains the memory mapped I/O manipulation definitions.

@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.
**/

#ifndef _MrcOemMmio_h_
#define _MrcOemMmio_h_

#include "MrcTypes.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.
**/
extern
void
MrcOemMmioRead64 (
  IN  U32 Offset,
  OUT U64 *Value,
  IN  U32 BaseAddress
  );

/**
@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.
**/
extern
void
MrcOemMmioRead (
  IN  U32 Offset,
  OUT U32 *Value,
  IN  U32 BaseAddress
  );

/**
@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.
**/
extern
void
MrcOemMmioRead16 (
  IN  U32 Offset,
  OUT U16 *Value,
  IN  U32 BaseAddress
  );

/**
@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.
**/
extern
void
MrcOemMmioRead8 (
  IN  U32 Offset,
  OUT U8  *Value,
  IN  U32 BaseAddress
  );

/**
@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
**/
extern
void
MrcOemMmioWrite64 (
  IN U32 Offset,
  IN U64 Value,
  IN U32 BaseAddress
  );

/**
@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.
**/
extern
void
MrcOemMmioWrite (
  IN U32 Offset,
  IN U32 Value,
  IN U32 BaseAddress
  );

/**
@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.
**/
extern
void
MrcOemMmioWrite16 (
  IN U32 Offset,
  IN U16 Value,
  IN U32 BaseAddress
  );

/**
@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.
**/
extern
void
MrcOemMmioWrite8 (
  IN U32 Offset,
  IN U8  Value,
  IN U32 BaseAddress
  );

extern
void
MmioReadCount (
  void
  );

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

  @param[in] Nothing

  @retval Nothing
**/
extern
void
MmioWriteCount (
  void
  );

#endif // _MrcOemMmio_h_