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
| /** @file
| This file describes the contents of the ACPI DMA address Remapping
|
| Copyright (c) 2019 Intel Corporation. All rights reserved. <BR>
|
| SPDX-License-Identifier: BSD-2-Clause-Patent
| **/
|
| #include "Dmar.h"
| #include <Register/PchRegsP2sb.h>
|
| EFI_ACPI_DMAR_TABLE DmarTable = {
| //
| // EFI_ACPI_DMAR_HEADER
| //
| {
| //
| // EFI_ACPI_DESCRIPTION_HEADER
| //
| {
| EFI_ACPI_VTD_DMAR_TABLE_SIGNATURE,
| sizeof (EFI_ACPI_DMAR_TABLE),
| EFI_ACPI_DMAR_TABLE_REVISION,
|
| //
| // Checksum will be updated at runtime
| //
| 0x00,
|
| //
| // It is expected that these values will be programmed at runtime
| //
| { 'I', 'N', 'T', 'E', 'L', ' ' },
| EFI_ACPI_DMAR_OEM_TABLE_ID,
| 0x1,
| EFI_ACPI_DMAR_OEM_CREATOR_ID,
| 1
| },
|
| //
| // DMAR table specific entries below:
| //
|
| //
| // 39-bit addressing Host Address Width
| //
| 38,
|
| //
| // Flags
| //
| 0,
|
| //
| // Reserved fields
| //
| { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }
| },
|
| //
| // First DRHD structure, VT-d Engine #1
| //
| {
| //
| // EFI_ACPI_DMAR_DRHD_HEADER
| //
| {
| {0, // Type = 0 (DRHD)
| sizeof (EFI_ACPI_DRHD_ENGINE1_STRUCT)}, // Length of structure
| 0, // Flag - Do not include all
| 0, // Reserved fields
| 0, // Segment
| 0 // Base address of DMA-remapping hardware - Updated at boot time
| },
| //
| // Device Scopes
| //
| {
| {
| {1, // Type
| sizeof (EFI_ACPI_DEV_SCOPE_STRUCTURE), // Length
| 0, // Segment number
| 0, // Reserved
| 0}, // Start bus number
| {2, 0} // PCI path
| }
| }
| },
|
| //
| //Third DRHD structure VT-d Engine# 3
| //
| {
| //
| // EFI_ACPI_DMAR_DRHD_HEADER
| //
| {
| {0, // Type = 0 (DRHD)
| sizeof (EFI_ACPI_DRHD_ENGINE3_STRUCT)}, // Length of strucure.
| 1, // Flag - Include all
| 0, // Reserved
| 0, // Segment Number
| 0 // Base address of DMA-remapping hardware.
| },
| {
| //
| // Device Scopes
| //
| {
| {3, // Type=IO APIC
| sizeof (EFI_ACPI_DEV_SCOPE_STRUCTURE), // Length
| 0, // Reserved
| 2, // Enumeration ID
| V_P2SB_CFG_IBDF_BUS}, // Start bus number
| {V_P2SB_CFG_IBDF_DEV, V_P2SB_CFG_IBDF_FUNC} // PCI path
| },
| //
| // Device Scopes
| //
| {
| {4, // Type=HPET
| sizeof (EFI_ACPI_DEV_SCOPE_STRUCTURE), // Length
| 0, // Reserved
| 0, // Enumeration ID
| V_P2SB_CFG_HBDF_BUS}, // Start bus number
| {V_P2SB_CFG_HBDF_DEV, V_P2SB_CFG_HBDF_FUNC} // PCI path
| }
| }
| },
| //RMRR structure for USB devices.
| {
| //
| // EFI_ACPI_DMAR_RMRR_HEADER
| //
| {
| {
| 0x1, // Type 1 - RMRR structure
| sizeof(EFI_ACPI_RMRR_USB_STRUC) // Length
| },
| { 0x00, 0x00 }, // Reserved
| 0x0000, // Segment Num
| 0x00000000000E0000, // RMRR Base address - Updated in runtime.
| 0x00000000000EFFFF // RMRR Limit address - Updated in runtime.
| },
| //
| // Device Scopes
| //
| {
| {
| {1, // Type
| sizeof (EFI_ACPI_DEV_SCOPE_STRUCTURE), // Length
| 0, // Reserved
| 0, // Enum ID
| 0}, // Start bus number
| {20, 0} // PCI path
| },
| {
| {1, // Type
| sizeof (EFI_ACPI_DEV_SCOPE_STRUCTURE), // Length
| 0, // Reserved
| 0, // Enum ID
| 0}, // Start bus number
| {20, 1} // PCI path
| }
| }
| },
|
| //RMRR structure for IGD device.
| {
| //
| // EFI_ACPI_DMAR_RMRR_HEADER
| //
| {
| {1, // Type 1 - RMRR structure
| sizeof (EFI_ACPI_RMRR_IGD_STRUC)}, // Length
| {0x0000}, // Reserved
| 0x0000, // Segment Num
| 0x0000000000000000, // RMRR Base address - Updated in runtime.
| 0x0000000000000000 // RMRR Limit address - Updated in runtime.
| },
| //
| // Device Scopes
| //
| {
| {
| {1, // Type
| sizeof (EFI_ACPI_DEV_SCOPE_STRUCTURE), // Length
| 0, // Reserved
| 0, // Enum ID
| 0}, // Start bus number
| {2, 0} // PCI path
| }
| }
| },
|
| // RMRR structure for WiAMT DMA access.
| // Keep this device in end of RMRR queue.
| {
| //
| // EFI_ACPI_DMAR_RMRR_HEADER
| //
| {
| {1, // Type 1 - RMRR structure
| sizeof (EFI_ACPI_RMRR_CSME_STRUC)}, // Length
| {0x0000}, // Reserved
| 0x0000, // Segment Num
| 0x0000000000000000, // RMRR Base address - Updated in runtime.
| 0x0000000000000000 // RMRR Limit address - Updated in runtime.
| },
| //
| // Device Scopes
| //
| {
| {
| {1, // Type
| sizeof (EFI_ACPI_DEV_SCOPE_STRUCTURE), // Length
| 0, // Reserved
| 0, // Enum ID
| 0}, // Start bus number
| {22, 7} // PCI path
| }
| }
| }
| };
|
| //
| // Dummy function required for build tools
| //
| #if defined (__GNUC__)
| VOID*
| ReferenceAcpiTable (
| VOID
| )
|
| {
| //
| // Reference the table being generated to prevent the optimizer from removing the
| // data structure from the exeutable
| //
| return (VOID*)&DmarTable;
| }
| #else
| int
| main (
| VOID
| )
| {
| return 0;
| }
| #endif
|
|