summaryrefslogtreecommitdiff
path: root/ReferenceCode/Chipset/SystemAgent/AcpiTables/Dmar/Dmar.act
blob: 122a3cc7a5b6a8dff9231fff85fbdd155f92200f (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
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
/*++
  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
--*/

/*++

Copyright (c)  1999 - 2013 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.


Module Name:

  Dmar.act

Abstract:

  This file describes the contents of the ACPI DMA address Remapping

--*/

#include "Dmar.h"

EFI_ACPI_DMAR_TABLE DmarTable = {

  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
  //
  {
    0,                                          // Type = 0 (DRHD)
    sizeof (EFI_ACPI_DRHD_ENGINE1_STRUCT),      // Length of structure
    0,                                          // Flag - Do not include all - bugbug - not clear what this means
    0,                                          // Reserved fields
    0,                                          // Segment
    0x00000000,                                 // 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
    }
  },

  //Second DRHD structure VT-d Engine# 2
  {
    0,                                         // Type = 0 (DRHD)
    sizeof(EFI_ACPI_DRHD_ENGINE2_STRUCT),      // Length of strucure.
    1,                                         // Flag - Include all
    0,                                         // Reserved
    0,                                         // Segment Number
    0x00000000,                                // Base address of DMA-remapping hardware.

    {
      //
      // Device Scopes
      //
      {
        3,                                        // Type=IO APIC
        sizeof (EFI_ACPI_DEV_SCOPE_STRUCTURE),    // Length
        0,                                        // Reserved
        2,                                        // Enumeration ID
        0xF0,                                     // Start bus number
        {31, 0}                                   // PCI path
      },
      //
      // Device Scopes
      //
      {
        4,                                        // Type=HPET
        sizeof (EFI_ACPI_DEV_SCOPE_STRUCTURE),    // Length
        0,                                        // Reserved
        0,                                        // Enumeration ID
        0xF0,                                     // Start bus number
        {15, 0}                                   // PCI path
      }
      ,
      //
      // Device Scopes - I2C0
      //
      {
        5,                                        // Type=ACPI_NAMESPACE_DEVICE
        sizeof (EFI_ACPI_DEV_SCOPE_STRUCTURE),    // Length
        0,                                        // Reserved
        1,                                        // Enumeration ID
        0,                                        // Start bus number
        {21, 1}                                   // PCI path
      },
      //
      // Device Scopes - I2C1
      //
      {
        5,                                        // Type=ACPI_NAMESPACE_DEVICE
        sizeof (EFI_ACPI_DEV_SCOPE_STRUCTURE),    // Length
        0,                                        // Reserved
        2,                                        // Enumeration ID
        0,                                        // Start bus number
        {21, 2}                                   // PCI path
      },
      //
      // Device Scopes - SPI0
      //
      {
        5,                                        // Type=ACPI_NAMESPACE_DEVICE
        sizeof (EFI_ACPI_DEV_SCOPE_STRUCTURE),    // Length
        0,                                        // Reserved
        3,                                        // Enumeration ID
        0,                                        // Start bus number
        {21, 3}                                   // PCI path
      },
      //
      // Device Scopes - SPI1
      //
      {
        5,                                        // Type=ACPI_NAMESPACE_DEVICE
        sizeof (EFI_ACPI_DEV_SCOPE_STRUCTURE),    // Length
        0,                                        // Reserved
        4,                                        // Enumeration ID
        0,                                        // Start bus number
        {21, 4}                                   // PCI path
      },
      //
      // Device Scopes - UART0
      //
      {
        5,                                        // Type=ACPI_NAMESPACE_DEVICE
        sizeof (EFI_ACPI_DEV_SCOPE_STRUCTURE),    // Length
        0,                                        // Reserved
        5,                                        // Enumeration ID
        0,                                        // Start bus number
        {21, 5}                                   // PCI path
      },
      //
      // Device Scopes - UART1
      //
      {
        5,                                        // Type=ACPI_NAMESPACE_DEVICE
        sizeof (EFI_ACPI_DEV_SCOPE_STRUCTURE),    // Length
        0,                                        // Reserved
        6,                                        // Enumeration ID
        0,                                        // Start bus number
        {21, 6}                                   // PCI path
      },
      //
      // Device Scopes - SDIO
      //
      {
        5,                                        // Type=ACPI_NAMESPACE_DEVICE
        sizeof (EFI_ACPI_DEV_SCOPE_STRUCTURE),    // Length
        0,                                        // Reserved
        7,                                        // Enumeration ID
        0,                                        // Start bus number
        {23, 0}                                   // PCI path
      }
    }
  },

  //RMRR structure for USB devices.
  {
    0x1,                                       // Type 1 - RMRR structure
    sizeof(EFI_ACPI_RMRR_USB_STRUC),           // Length
    0x0000,                                    // Reserved
    0x0000,                                    // Segment Num
    0x00000000000E0000,                        // RMRR Base address - Updated in runtime.
    0x00000000000EFFFF,                        // RMRR Limit address - Updated in runtime.
    {
      {
        1,                                     // Type
        sizeof(EFI_ACPI_DEV_SCOPE_STRUCTURE),  // Length
        0,                                     // Reserved
        0,                                     // Enum ID
        0,                                     // Start bus number
        {29, 0}                                // PCI path
      },
      {
        1,                                     // Type
        sizeof(EFI_ACPI_DEV_SCOPE_STRUCTURE),  // Length
        0,                                     // Reserved
        0,                                     // Enum ID
        0,                                     // Start bus number
        {26, 0}                                // PCI path
      },
      {
        1,                                     // Type
        sizeof(EFI_ACPI_DEV_SCOPE_STRUCTURE),  // Length
        0,                                     // Reserved
        0,                                     // Enum ID
        0,                                     // Start bus number
        {20, 0}                                // PCI path
      }
    }
  },

  //RMRR structure for IGD device.
  {
    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.
    {
      {
        1,                                    // Type
        sizeof(EFI_ACPI_DEV_SCOPE_STRUCTURE), // Length
        0,                                    // Reserved
        0,                                    // Enum ID
        0,                                    // Start bus number
        {2, 0}                                // PCI path
      }
    }
  }
  ,

  // ANDD structure.
  {
    4,                                        // Type 4 - ANDD structure
    sizeof(EFI_ACPI_ANDD_STRUC),              // Length
    0, 0, 0,                                  // Reserved [3]
    1,
    "\\_SB.PCI0.I2C0"
  },

  // ANDD structure.
  {
    4,                                        // Type 4 - ANDD structure
    sizeof(EFI_ACPI_ANDD_STRUC),              // Length
    0, 0, 0,                                  // Reserved [3]
    2,
    "\\_SB.PCI0.I2C1"
  },

  // ANDD structure.
  {
    4,                                        // Type 4 - ANDD structure
    sizeof(EFI_ACPI_ANDD_STRUC),              // Length
    0, 0, 0,                                  // Reserved [3]
    3,
    "\\_SB.PCI0.SPI0"
  },

  // ANDD structure.
  {
    4,                                        // Type 4 - ANDD structure
    sizeof(EFI_ACPI_ANDD_STRUC),              // Length
    0, 0, 0,                                  // Reserved [3]
    4,
    "\\_SB.PCI0.SPI1"
  },

  // ANDD structure.
  {
    4,                                        // Type 4 - ANDD structure
    sizeof(EFI_ACPI_ANDD_STRUC),              // Length
    0, 0, 0,                                  // Reserved [3]
    5,
    "\\_SB.PCI0.UA00"
  },

  // ANDD structure.
  {
    4,                                        // Type 4 - ANDD structure
    sizeof(EFI_ACPI_ANDD_STRUC),              // Length
    0, 0, 0,                                  // Reserved [3]
    6,
    "\\_SB.PCI0.UA01"
  },

  // ANDD structure.
  {
    4,                                        // Type 4 - ANDD structure
    sizeof(EFI_ACPI_ANDD_STRUC),              // Length
    0, 0, 0,                                  // Reserved [3]
    7,
    "\\_SB.PCI0.SDHC"
  }
};

//
// Dummy function required for build tools
//
int
main (
  VOID
  )
{
  return 0;
}