diff options
Diffstat (limited to 'include/acpi/actbl1.h')
-rw-r--r-- | include/acpi/actbl1.h | 23 |
1 files changed, 21 insertions, 2 deletions
diff --git a/include/acpi/actbl1.h b/include/acpi/actbl1.h index 9af239bd1153..d38f9be2f6ee 100644 --- a/include/acpi/actbl1.h +++ b/include/acpi/actbl1.h | |||
@@ -300,6 +300,7 @@ struct acpi_table_dbgp { | |||
300 | /******************************************************************************* | 300 | /******************************************************************************* |
301 | * | 301 | * |
302 | * DMAR - DMA Remapping table | 302 | * DMAR - DMA Remapping table |
303 | * From "Intel Virtualization Technology for Directed I/O", Sept. 2007 | ||
303 | * | 304 | * |
304 | ******************************************************************************/ | 305 | ******************************************************************************/ |
305 | 306 | ||
@@ -310,6 +311,10 @@ struct acpi_table_dmar { | |||
310 | u8 reserved[10]; | 311 | u8 reserved[10]; |
311 | }; | 312 | }; |
312 | 313 | ||
314 | /* Flags */ | ||
315 | |||
316 | #define ACPI_DMAR_INTR_REMAP (1) | ||
317 | |||
313 | /* DMAR subtable header */ | 318 | /* DMAR subtable header */ |
314 | 319 | ||
315 | struct acpi_dmar_header { | 320 | struct acpi_dmar_header { |
@@ -382,6 +387,20 @@ struct acpi_dmar_reserved_memory { | |||
382 | 387 | ||
383 | #define ACPI_DMAR_ALLOW_ALL (1) | 388 | #define ACPI_DMAR_ALLOW_ALL (1) |
384 | 389 | ||
390 | |||
391 | /* 2: Root Port ATS Capability Reporting Structure */ | ||
392 | |||
393 | struct acpi_dmar_atsr { | ||
394 | struct acpi_dmar_header header; | ||
395 | u8 flags; | ||
396 | u8 reserved; | ||
397 | u16 segment; | ||
398 | }; | ||
399 | |||
400 | /* Flags */ | ||
401 | |||
402 | #define ACPI_DMAR_ALL_PORTS (1) | ||
403 | |||
385 | /******************************************************************************* | 404 | /******************************************************************************* |
386 | * | 405 | * |
387 | * ECDT - Embedded Controller Boot Resources Table | 406 | * ECDT - Embedded Controller Boot Resources Table |
@@ -1156,9 +1175,9 @@ struct acpi_srat_mem_affinity { | |||
1156 | u16 reserved; /* Reserved, must be zero */ | 1175 | u16 reserved; /* Reserved, must be zero */ |
1157 | u64 base_address; | 1176 | u64 base_address; |
1158 | u64 length; | 1177 | u64 length; |
1159 | u32 memory_type; /* See acpi_address_range_id */ | 1178 | u32 reserved1; |
1160 | u32 flags; | 1179 | u32 flags; |
1161 | u64 reserved1; /* Reserved, must be zero */ | 1180 | u64 reserved2; /* Reserved, must be zero */ |
1162 | }; | 1181 | }; |
1163 | 1182 | ||
1164 | /* Flags */ | 1183 | /* Flags */ |