diff mbox

[RESEND-v3] acpi: acpidump: dump out the DMAR table

Message ID 1341223989-2135-1-git-send-email-colin.king@canonical.com
State Accepted
Headers show

Commit Message

Colin Ian King July 2, 2012, 10:13 a.m. UTC
From: Colin Ian King <colin.king@canonical.com>

The DMAR table is fairly well described so lets also dump
this one out in an annotated form too

Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 src/acpi/acpidump/acpidump.c |  137 ++++++++++++++++++++++++++++++++++++++++++
 src/lib/include/fwts_acpi.h  |   53 ++++++++++++++++
 2 files changed, 190 insertions(+)

Comments

Alex Hung July 3, 2012, 7 a.m. UTC | #1
On 07/02/2012 06:13 PM, Colin King wrote:
> From: Colin Ian King <colin.king@canonical.com>
>
> The DMAR table is fairly well described so lets also dump
> this one out in an annotated form too
>
> Signed-off-by: Colin Ian King <colin.king@canonical.com>
> ---
>   src/acpi/acpidump/acpidump.c |  137 ++++++++++++++++++++++++++++++++++++++++++
>   src/lib/include/fwts_acpi.h  |   53 ++++++++++++++++
>   2 files changed, 190 insertions(+)
>
> diff --git a/src/acpi/acpidump/acpidump.c b/src/acpi/acpidump/acpidump.c
> index 3ff3e75..1cf06c5 100644
> --- a/src/acpi/acpidump/acpidump.c
> +++ b/src/acpi/acpidump/acpidump.c
> @@ -1202,6 +1202,142 @@ static void acpidump_asf(fwts_framework *fw, fwts_acpi_table_info *table)
>   	}
>   }
>
> +/*
> + *  acpidump_dmar_device_scope()
> + *	dump out DMAR device scope
> + */
> +static void acpidump_dmar_device_scope(
> +	fwts_framework *fw,
> +	uint8_t *data,
> +	uint8_t *device_scope,
> +	size_t device_scope_length)
> +{
> +	static fwts_acpidump_field dmar_device_scope_fields[] = {
> +		FIELD_UINT("Type",			fwts_acpi_table_dmar_device_scope, type),
> +		FIELD_UINT("Length",			fwts_acpi_table_dmar_device_scope, length),
> +		FIELD_UINT("Reserved",			fwts_acpi_table_dmar_device_scope, reserved),
> +		FIELD_UINT("Enumeration ID",		fwts_acpi_table_dmar_device_scope, enumeration_id),
> +		FIELD_UINT("Start Bus Number",		fwts_acpi_table_dmar_device_scope, start_bus_number),
> +		FIELD_END
> +	};
> +
> +	/* Parse through multiple device scope entries */
> +	while (device_scope_length > 0) {
> +		int i;
> +
> +		fwts_acpi_table_dmar_device_scope *device_scope_entry =
> +			(fwts_acpi_table_dmar_device_scope *)device_scope;
> +		__acpi_dump_table_fields(fw, device_scope, dmar_device_scope_fields, device_scope - data);
> +		/*
> +		 *  The device scope has a variable length path,
> +		 *  so just dump this raw data out for now.
> +		 */
> +		for (i=0; i < device_scope_entry->length - sizeof(fwts_acpi_table_dmar_device_scope); i++) {
> +			uint8_t val8 = device_scope_entry->path[i];
> +			fwts_log_info_verbatum(fw, "%s 0x%2.2x [%d]", acpi_dump_field_info("Path", 1,
> +				(device_scope - data) + sizeof(fwts_acpi_table_dmar_device_scope) + i),
> +				val8, i);
> +		}
> +		device_scope += device_scope_entry->length;
> +		device_scope_length -= device_scope_entry->length;
> +	}
> +}
> +
> +/*
> + *  acpidump_dmar()
> + *	dump out DMAR
> + *	http://download.intel.com/technology/computing/vptech/Intel(r)_VT_for_Direct_IO.pdf
> + */
> +static void acpidump_dmar(fwts_framework *fw, fwts_acpi_table_info *table)
> +{
> +	uint8_t *data = (uint8_t *)table->data;
> +	size_t length = table->length;
> +	uint8_t *ptr = data;
> +
> +	static fwts_acpidump_field dmar_fields[] = {
> +		FIELD_UINT("Host Address Width", 	fwts_acpi_table_dmar, host_addr_width),
> +		FIELD_UINT("Flags", 			fwts_acpi_table_dmar, flags),
> +		FIELD_UINT("Reserved", 			fwts_acpi_table_dmar, reserved),
> +		FIELD_END
> +	};
> +
> +	static fwts_acpidump_field dmar_header_fields[] = {
> +		FIELD_UINT("Type",			fwts_acpi_table_dmar_header, type),
> +		FIELD_UINT("Length",			fwts_acpi_table_dmar_header, length),
> +		FIELD_END
> +	};
> +
> +	static fwts_acpidump_field dmar_hardware_unit_fields[] = {
> +		FIELD_UINT("Flags",			fwts_acpi_table_dmar_hardware_unit, flags),
> +		FIELD_UINT("Reserved",			fwts_acpi_table_dmar_hardware_unit, reserved),
> +		FIELD_UINT("Segment Number",		fwts_acpi_table_dmar_hardware_unit, segment_number),
> +		FIELD_UINT("Register Base Address",	fwts_acpi_table_dmar_hardware_unit, register_base_addr),
> +		FIELD_UINT("Device Scope",		fwts_acpi_table_dmar_hardware_unit, device_scope),
> +		FIELD_END
> +	};
> +
> +	static fwts_acpidump_field dmar_reserved_memory_fields[] = {
> +		FIELD_UINT("Reserved",			fwts_acpi_table_dmar_reserved_memory, reserved),
> +		FIELD_UINT("Segment",			fwts_acpi_table_dmar_reserved_memory, segment),
> +		FIELD_UINT("Base Address",		fwts_acpi_table_dmar_reserved_memory, base_address),
> +		FIELD_UINT("End Address",		fwts_acpi_table_dmar_reserved_memory, end_address),
> +		
> +		FIELD_END
> +	};
> +
> +	static fwts_acpidump_field dmar_atsr_fields[] = {
> +		FIELD_UINT("Flags",			fwts_acpi_table_dmar_atsr, flags),
> +		FIELD_UINT("Reserved",			fwts_acpi_table_dmar_atsr, reserved),
> +		FIELD_UINT("Segment",			fwts_acpi_table_dmar_atsr, segment),
> +		FIELD_END
> +	};
> +	
> +	__acpi_dump_table_fields(fw, ptr, dmar_fields, ptr - data);
> +	ptr += sizeof(fwts_acpi_table_dmar);
> +
> +	while (ptr < data + length) {
> +		fwts_acpi_table_dmar_header *header =
> +			(fwts_acpi_table_dmar_header *)ptr;
> +
> +		fwts_log_nl(fw);
> +
> +		switch (header->type) {
> +		case 0:
> +			fwts_log_info_verbatum(fw, "Hardware Unit Definition:");
> +			__acpi_dump_table_fields(fw, ptr, dmar_header_fields, ptr - data);
> +			__acpi_dump_table_fields(fw, ptr, dmar_hardware_unit_fields, ptr - data);
> +
> +			acpidump_dmar_device_scope(fw, data,
> +				ptr + sizeof(fwts_acpi_table_dmar_hardware_unit),
> +				(size_t)header->length - sizeof(fwts_acpi_table_dmar_hardware_unit));
> +			break;
> +		case 1:
> +			fwts_log_info_verbatum(fw, "Reserved Memory Definition:");
> +			__acpi_dump_table_fields(fw, ptr, dmar_header_fields, ptr - data);
> +			__acpi_dump_table_fields(fw, ptr, dmar_reserved_memory_fields, ptr - data);
> +
> +			acpidump_dmar_device_scope(fw, data,
> +				ptr + sizeof(fwts_acpi_table_dmar_reserved_memory),
> +				(size_t)header->length - sizeof(fwts_acpi_table_dmar_reserved_memory));
> +			break;
> +		case 2:
> +			fwts_log_info_verbatum(fw, "Root Port ATS Capability Reporting Structure:");
> +			__acpi_dump_table_fields(fw, ptr, dmar_header_fields, ptr - data);
> +			__acpi_dump_table_fields(fw, ptr, dmar_atsr_fields, ptr - data);
> +
> +			acpidump_dmar_device_scope(fw, data,
> +				ptr + sizeof(fwts_acpi_table_dmar_atsr),
> +				(size_t)header->length - sizeof(fwts_acpi_table_dmar_atsr));
> +			break;
> +		default:
> +			/* and anything else */
> +			break;
> +		}
> +
> +		ptr += header->length;
> +	}
> +}
> +
>   typedef struct {
>   	char *name;
>   	void (*func)(fwts_framework *fw, fwts_acpi_table_info *table);
> @@ -1220,6 +1356,7 @@ static acpidump_table_vec table_vec[] = {
>   	{ "BOOT", 	acpidump_boot, 	1 },
>   	{ "CPEP", 	acpidump_cpep, 	1 },
>   	{ "DSDT", 	acpidump_amlcode, 1 },
> +	{ "DMAR", 	acpidump_dmar,	1 },
>   	{ "ECDT", 	acpidump_ecdt, 	1 },
>   	{ "EINJ", 	acpidump_einj, 	1 },
>   	{ "ERST", 	acpidump_erst, 	1 },
> diff --git a/src/lib/include/fwts_acpi.h b/src/lib/include/fwts_acpi.h
> index 03f7c2e..ef25ef5 100644
> --- a/src/lib/include/fwts_acpi.h
> +++ b/src/lib/include/fwts_acpi.h
> @@ -504,6 +504,59 @@ typedef struct {
>   	uint8_t		fwts_acpi_table_asf_addr_element[0];
>   } __attribute__ ((packed)) fwts_acpi_table_asf_addr;
>
> +/*
> + *  DMAR
> + *  See http://download.intel.com/technology/computing/vptech/Intel(r)_VT_for_Direct_IO.pdf
> + */
> +typedef struct {
> +	fwts_acpi_table_header header;
> +	uint8_t		host_addr_width;
> +	uint8_t		flags;
> +	uint8_t		reserved[10];
> +} __attribute__ ((packed)) fwts_acpi_table_dmar;
> +
> +typedef struct {
> +	uint16_t	type;
> +	uint16_t	length;
> +} __attribute__ ((packed)) fwts_acpi_table_dmar_header;
> +
> +/* DMA remapping hardware unit definition structure */
> +typedef struct {
> +	fwts_acpi_table_dmar_header header;
> +	uint8_t		flags;
> +	uint8_t		reserved;
> +	uint16_t	segment_number;
> +	uint64_t	register_base_addr;
> +	uint8_t		device_scope[0];
> +} __attribute__ ((packed)) fwts_acpi_table_dmar_hardware_unit;
> +
> +/* Reserved Memory Defininition */
> +typedef struct {
> +	fwts_acpi_table_dmar_header header;
> +	uint16_t	reserved;
> +	uint16_t	segment;
> +	uint64_t	base_address;
> +	uint64_t	end_address;
> +} __attribute__ ((packed)) fwts_acpi_table_dmar_reserved_memory;
> +
> +/* Root Port ATS capability reporting structure */
> +typedef struct {
> +	fwts_acpi_table_dmar_header header;
> +	uint8_t		flags;
> +	uint8_t		reserved;
> +	uint16_t	segment;
> +} __attribute__ ((packed)) fwts_acpi_table_dmar_atsr;
> +
> +/* DMA remapping device scope entries */
> +typedef struct {
> +	uint8_t		type;
> +	uint8_t		length;
> +	uint8_t		reserved[2];
> +	uint8_t		enumeration_id;
> +	uint8_t		start_bus_number;
> +	uint8_t		path[0];
> +} __attribute__ ((packed)) fwts_acpi_table_dmar_device_scope;
> +
>   void fwts_acpi_table_get_header(fwts_acpi_table_header *hdr, uint8_t *data);
>
>   #endif
>
Acked-by: Alex Hung <alex.hung@canonical.com>
Keng-Yu Lin July 3, 2012, 7:03 a.m. UTC | #2
On Mon, Jul 2, 2012 at 6:13 PM, Colin King <colin.king@canonical.com> wrote:
> From: Colin Ian King <colin.king@canonical.com>
>
> The DMAR table is fairly well described so lets also dump
> this one out in an annotated form too
>
> Signed-off-by: Colin Ian King <colin.king@canonical.com>
> ---
>  src/acpi/acpidump/acpidump.c |  137 ++++++++++++++++++++++++++++++++++++++++++
>  src/lib/include/fwts_acpi.h  |   53 ++++++++++++++++
>  2 files changed, 190 insertions(+)
>
> diff --git a/src/acpi/acpidump/acpidump.c b/src/acpi/acpidump/acpidump.c
> index 3ff3e75..1cf06c5 100644
> --- a/src/acpi/acpidump/acpidump.c
> +++ b/src/acpi/acpidump/acpidump.c
> @@ -1202,6 +1202,142 @@ static void acpidump_asf(fwts_framework *fw, fwts_acpi_table_info *table)
>         }
>  }
>
> +/*
> + *  acpidump_dmar_device_scope()
> + *     dump out DMAR device scope
> + */
> +static void acpidump_dmar_device_scope(
> +       fwts_framework *fw,
> +       uint8_t *data,
> +       uint8_t *device_scope,
> +       size_t device_scope_length)
> +{
> +       static fwts_acpidump_field dmar_device_scope_fields[] = {
> +               FIELD_UINT("Type",                      fwts_acpi_table_dmar_device_scope, type),
> +               FIELD_UINT("Length",                    fwts_acpi_table_dmar_device_scope, length),
> +               FIELD_UINT("Reserved",                  fwts_acpi_table_dmar_device_scope, reserved),
> +               FIELD_UINT("Enumeration ID",            fwts_acpi_table_dmar_device_scope, enumeration_id),
> +               FIELD_UINT("Start Bus Number",          fwts_acpi_table_dmar_device_scope, start_bus_number),
> +               FIELD_END
> +       };
> +
> +       /* Parse through multiple device scope entries */
> +       while (device_scope_length > 0) {
> +               int i;
> +
> +               fwts_acpi_table_dmar_device_scope *device_scope_entry =
> +                       (fwts_acpi_table_dmar_device_scope *)device_scope;
> +               __acpi_dump_table_fields(fw, device_scope, dmar_device_scope_fields, device_scope - data);
> +               /*
> +                *  The device scope has a variable length path,
> +                *  so just dump this raw data out for now.
> +                */
> +               for (i=0; i < device_scope_entry->length - sizeof(fwts_acpi_table_dmar_device_scope); i++) {
> +                       uint8_t val8 = device_scope_entry->path[i];
> +                       fwts_log_info_verbatum(fw, "%s 0x%2.2x [%d]", acpi_dump_field_info("Path", 1,
> +                               (device_scope - data) + sizeof(fwts_acpi_table_dmar_device_scope) + i),
> +                               val8, i);
> +               }
> +               device_scope += device_scope_entry->length;
> +               device_scope_length -= device_scope_entry->length;
> +       }
> +}
> +
> +/*
> + *  acpidump_dmar()
> + *     dump out DMAR
> + *     http://download.intel.com/technology/computing/vptech/Intel(r)_VT_for_Direct_IO.pdf
> + */
> +static void acpidump_dmar(fwts_framework *fw, fwts_acpi_table_info *table)
> +{
> +       uint8_t *data = (uint8_t *)table->data;
> +       size_t length = table->length;
> +       uint8_t *ptr = data;
> +
> +       static fwts_acpidump_field dmar_fields[] = {
> +               FIELD_UINT("Host Address Width",        fwts_acpi_table_dmar, host_addr_width),
> +               FIELD_UINT("Flags",                     fwts_acpi_table_dmar, flags),
> +               FIELD_UINT("Reserved",                  fwts_acpi_table_dmar, reserved),
> +               FIELD_END
> +       };
> +
> +       static fwts_acpidump_field dmar_header_fields[] = {
> +               FIELD_UINT("Type",                      fwts_acpi_table_dmar_header, type),
> +               FIELD_UINT("Length",                    fwts_acpi_table_dmar_header, length),
> +               FIELD_END
> +       };
> +
> +       static fwts_acpidump_field dmar_hardware_unit_fields[] = {
> +               FIELD_UINT("Flags",                     fwts_acpi_table_dmar_hardware_unit, flags),
> +               FIELD_UINT("Reserved",                  fwts_acpi_table_dmar_hardware_unit, reserved),
> +               FIELD_UINT("Segment Number",            fwts_acpi_table_dmar_hardware_unit, segment_number),
> +               FIELD_UINT("Register Base Address",     fwts_acpi_table_dmar_hardware_unit, register_base_addr),
> +               FIELD_UINT("Device Scope",              fwts_acpi_table_dmar_hardware_unit, device_scope),
> +               FIELD_END
> +       };
> +
> +       static fwts_acpidump_field dmar_reserved_memory_fields[] = {
> +               FIELD_UINT("Reserved",                  fwts_acpi_table_dmar_reserved_memory, reserved),
> +               FIELD_UINT("Segment",                   fwts_acpi_table_dmar_reserved_memory, segment),
> +               FIELD_UINT("Base Address",              fwts_acpi_table_dmar_reserved_memory, base_address),
> +               FIELD_UINT("End Address",               fwts_acpi_table_dmar_reserved_memory, end_address),
> +
> +               FIELD_END
> +       };
> +
> +       static fwts_acpidump_field dmar_atsr_fields[] = {
> +               FIELD_UINT("Flags",                     fwts_acpi_table_dmar_atsr, flags),
> +               FIELD_UINT("Reserved",                  fwts_acpi_table_dmar_atsr, reserved),
> +               FIELD_UINT("Segment",                   fwts_acpi_table_dmar_atsr, segment),
> +               FIELD_END
> +       };
> +
> +       __acpi_dump_table_fields(fw, ptr, dmar_fields, ptr - data);
> +       ptr += sizeof(fwts_acpi_table_dmar);
> +
> +       while (ptr < data + length) {
> +               fwts_acpi_table_dmar_header *header =
> +                       (fwts_acpi_table_dmar_header *)ptr;
> +
> +               fwts_log_nl(fw);
> +
> +               switch (header->type) {
> +               case 0:
> +                       fwts_log_info_verbatum(fw, "Hardware Unit Definition:");
> +                       __acpi_dump_table_fields(fw, ptr, dmar_header_fields, ptr - data);
> +                       __acpi_dump_table_fields(fw, ptr, dmar_hardware_unit_fields, ptr - data);
> +
> +                       acpidump_dmar_device_scope(fw, data,
> +                               ptr + sizeof(fwts_acpi_table_dmar_hardware_unit),
> +                               (size_t)header->length - sizeof(fwts_acpi_table_dmar_hardware_unit));
> +                       break;
> +               case 1:
> +                       fwts_log_info_verbatum(fw, "Reserved Memory Definition:");
> +                       __acpi_dump_table_fields(fw, ptr, dmar_header_fields, ptr - data);
> +                       __acpi_dump_table_fields(fw, ptr, dmar_reserved_memory_fields, ptr - data);
> +
> +                       acpidump_dmar_device_scope(fw, data,
> +                               ptr + sizeof(fwts_acpi_table_dmar_reserved_memory),
> +                               (size_t)header->length - sizeof(fwts_acpi_table_dmar_reserved_memory));
> +                       break;
> +               case 2:
> +                       fwts_log_info_verbatum(fw, "Root Port ATS Capability Reporting Structure:");
> +                       __acpi_dump_table_fields(fw, ptr, dmar_header_fields, ptr - data);
> +                       __acpi_dump_table_fields(fw, ptr, dmar_atsr_fields, ptr - data);
> +
> +                       acpidump_dmar_device_scope(fw, data,
> +                               ptr + sizeof(fwts_acpi_table_dmar_atsr),
> +                               (size_t)header->length - sizeof(fwts_acpi_table_dmar_atsr));
> +                       break;
> +               default:
> +                       /* and anything else */
> +                       break;
> +               }
> +
> +               ptr += header->length;
> +       }
> +}
> +
>  typedef struct {
>         char *name;
>         void (*func)(fwts_framework *fw, fwts_acpi_table_info *table);
> @@ -1220,6 +1356,7 @@ static acpidump_table_vec table_vec[] = {
>         { "BOOT",       acpidump_boot,  1 },
>         { "CPEP",       acpidump_cpep,  1 },
>         { "DSDT",       acpidump_amlcode, 1 },
> +       { "DMAR",       acpidump_dmar,  1 },
>         { "ECDT",       acpidump_ecdt,  1 },
>         { "EINJ",       acpidump_einj,  1 },
>         { "ERST",       acpidump_erst,  1 },
> diff --git a/src/lib/include/fwts_acpi.h b/src/lib/include/fwts_acpi.h
> index 03f7c2e..ef25ef5 100644
> --- a/src/lib/include/fwts_acpi.h
> +++ b/src/lib/include/fwts_acpi.h
> @@ -504,6 +504,59 @@ typedef struct {
>         uint8_t         fwts_acpi_table_asf_addr_element[0];
>  } __attribute__ ((packed)) fwts_acpi_table_asf_addr;
>
> +/*
> + *  DMAR
> + *  See http://download.intel.com/technology/computing/vptech/Intel(r)_VT_for_Direct_IO.pdf
> + */
> +typedef struct {
> +       fwts_acpi_table_header header;
> +       uint8_t         host_addr_width;
> +       uint8_t         flags;
> +       uint8_t         reserved[10];
> +} __attribute__ ((packed)) fwts_acpi_table_dmar;
> +
> +typedef struct {
> +       uint16_t        type;
> +       uint16_t        length;
> +} __attribute__ ((packed)) fwts_acpi_table_dmar_header;
> +
> +/* DMA remapping hardware unit definition structure */
> +typedef struct {
> +       fwts_acpi_table_dmar_header header;
> +       uint8_t         flags;
> +       uint8_t         reserved;
> +       uint16_t        segment_number;
> +       uint64_t        register_base_addr;
> +       uint8_t         device_scope[0];
> +} __attribute__ ((packed)) fwts_acpi_table_dmar_hardware_unit;
> +
> +/* Reserved Memory Defininition */
> +typedef struct {
> +       fwts_acpi_table_dmar_header header;
> +       uint16_t        reserved;
> +       uint16_t        segment;
> +       uint64_t        base_address;
> +       uint64_t        end_address;
> +} __attribute__ ((packed)) fwts_acpi_table_dmar_reserved_memory;
> +
> +/* Root Port ATS capability reporting structure */
> +typedef struct {
> +       fwts_acpi_table_dmar_header header;
> +       uint8_t         flags;
> +       uint8_t         reserved;
> +       uint16_t        segment;
> +} __attribute__ ((packed)) fwts_acpi_table_dmar_atsr;
> +
> +/* DMA remapping device scope entries */
> +typedef struct {
> +       uint8_t         type;
> +       uint8_t         length;
> +       uint8_t         reserved[2];
> +       uint8_t         enumeration_id;
> +       uint8_t         start_bus_number;
> +       uint8_t         path[0];
> +} __attribute__ ((packed)) fwts_acpi_table_dmar_device_scope;
> +
>  void fwts_acpi_table_get_header(fwts_acpi_table_header *hdr, uint8_t *data);
>
>  #endif
> --
> 1.7.10.4
>
Acked-by: Keng-Yu Lin <kengyu@canonical.com>
diff mbox

Patch

diff --git a/src/acpi/acpidump/acpidump.c b/src/acpi/acpidump/acpidump.c
index 3ff3e75..1cf06c5 100644
--- a/src/acpi/acpidump/acpidump.c
+++ b/src/acpi/acpidump/acpidump.c
@@ -1202,6 +1202,142 @@  static void acpidump_asf(fwts_framework *fw, fwts_acpi_table_info *table)
 	}
 }
 
+/*
+ *  acpidump_dmar_device_scope()
+ *	dump out DMAR device scope
+ */
+static void acpidump_dmar_device_scope(
+	fwts_framework *fw,
+	uint8_t *data,
+	uint8_t *device_scope,
+	size_t device_scope_length)
+{
+	static fwts_acpidump_field dmar_device_scope_fields[] = {
+		FIELD_UINT("Type",			fwts_acpi_table_dmar_device_scope, type),
+		FIELD_UINT("Length",			fwts_acpi_table_dmar_device_scope, length),
+		FIELD_UINT("Reserved",			fwts_acpi_table_dmar_device_scope, reserved),
+		FIELD_UINT("Enumeration ID",		fwts_acpi_table_dmar_device_scope, enumeration_id),
+		FIELD_UINT("Start Bus Number",		fwts_acpi_table_dmar_device_scope, start_bus_number),
+		FIELD_END
+	};
+
+	/* Parse through multiple device scope entries */
+	while (device_scope_length > 0) {
+		int i;
+
+		fwts_acpi_table_dmar_device_scope *device_scope_entry =
+			(fwts_acpi_table_dmar_device_scope *)device_scope;
+		__acpi_dump_table_fields(fw, device_scope, dmar_device_scope_fields, device_scope - data);
+		/*
+		 *  The device scope has a variable length path,
+		 *  so just dump this raw data out for now.
+		 */
+		for (i=0; i < device_scope_entry->length - sizeof(fwts_acpi_table_dmar_device_scope); i++) {
+			uint8_t val8 = device_scope_entry->path[i];
+			fwts_log_info_verbatum(fw, "%s 0x%2.2x [%d]", acpi_dump_field_info("Path", 1,
+				(device_scope - data) + sizeof(fwts_acpi_table_dmar_device_scope) + i),
+				val8, i);
+		}
+		device_scope += device_scope_entry->length;
+		device_scope_length -= device_scope_entry->length;
+	}
+}
+
+/*
+ *  acpidump_dmar()
+ *	dump out DMAR
+ *	http://download.intel.com/technology/computing/vptech/Intel(r)_VT_for_Direct_IO.pdf
+ */
+static void acpidump_dmar(fwts_framework *fw, fwts_acpi_table_info *table)
+{
+	uint8_t *data = (uint8_t *)table->data;
+	size_t length = table->length;
+	uint8_t *ptr = data;
+
+	static fwts_acpidump_field dmar_fields[] = {
+		FIELD_UINT("Host Address Width", 	fwts_acpi_table_dmar, host_addr_width),
+		FIELD_UINT("Flags", 			fwts_acpi_table_dmar, flags),
+		FIELD_UINT("Reserved", 			fwts_acpi_table_dmar, reserved),
+		FIELD_END
+	};
+
+	static fwts_acpidump_field dmar_header_fields[] = {
+		FIELD_UINT("Type",			fwts_acpi_table_dmar_header, type),
+		FIELD_UINT("Length",			fwts_acpi_table_dmar_header, length),
+		FIELD_END
+	};
+
+	static fwts_acpidump_field dmar_hardware_unit_fields[] = {
+		FIELD_UINT("Flags",			fwts_acpi_table_dmar_hardware_unit, flags),
+		FIELD_UINT("Reserved",			fwts_acpi_table_dmar_hardware_unit, reserved),
+		FIELD_UINT("Segment Number",		fwts_acpi_table_dmar_hardware_unit, segment_number),
+		FIELD_UINT("Register Base Address",	fwts_acpi_table_dmar_hardware_unit, register_base_addr),
+		FIELD_UINT("Device Scope",		fwts_acpi_table_dmar_hardware_unit, device_scope),
+		FIELD_END
+	};
+
+	static fwts_acpidump_field dmar_reserved_memory_fields[] = {
+		FIELD_UINT("Reserved",			fwts_acpi_table_dmar_reserved_memory, reserved),
+		FIELD_UINT("Segment",			fwts_acpi_table_dmar_reserved_memory, segment),
+		FIELD_UINT("Base Address",		fwts_acpi_table_dmar_reserved_memory, base_address),
+		FIELD_UINT("End Address",		fwts_acpi_table_dmar_reserved_memory, end_address),
+		
+		FIELD_END
+	};
+
+	static fwts_acpidump_field dmar_atsr_fields[] = {
+		FIELD_UINT("Flags",			fwts_acpi_table_dmar_atsr, flags),
+		FIELD_UINT("Reserved",			fwts_acpi_table_dmar_atsr, reserved),
+		FIELD_UINT("Segment",			fwts_acpi_table_dmar_atsr, segment),
+		FIELD_END
+	};
+	
+	__acpi_dump_table_fields(fw, ptr, dmar_fields, ptr - data);
+	ptr += sizeof(fwts_acpi_table_dmar);
+
+	while (ptr < data + length) {
+		fwts_acpi_table_dmar_header *header =
+			(fwts_acpi_table_dmar_header *)ptr;
+
+		fwts_log_nl(fw);
+
+		switch (header->type) {
+		case 0:
+			fwts_log_info_verbatum(fw, "Hardware Unit Definition:");
+			__acpi_dump_table_fields(fw, ptr, dmar_header_fields, ptr - data);
+			__acpi_dump_table_fields(fw, ptr, dmar_hardware_unit_fields, ptr - data);
+
+			acpidump_dmar_device_scope(fw, data,
+				ptr + sizeof(fwts_acpi_table_dmar_hardware_unit),
+				(size_t)header->length - sizeof(fwts_acpi_table_dmar_hardware_unit));
+			break;
+		case 1:
+			fwts_log_info_verbatum(fw, "Reserved Memory Definition:");
+			__acpi_dump_table_fields(fw, ptr, dmar_header_fields, ptr - data);
+			__acpi_dump_table_fields(fw, ptr, dmar_reserved_memory_fields, ptr - data);
+
+			acpidump_dmar_device_scope(fw, data,
+				ptr + sizeof(fwts_acpi_table_dmar_reserved_memory),
+				(size_t)header->length - sizeof(fwts_acpi_table_dmar_reserved_memory));
+			break;
+		case 2:
+			fwts_log_info_verbatum(fw, "Root Port ATS Capability Reporting Structure:");
+			__acpi_dump_table_fields(fw, ptr, dmar_header_fields, ptr - data);
+			__acpi_dump_table_fields(fw, ptr, dmar_atsr_fields, ptr - data);
+
+			acpidump_dmar_device_scope(fw, data,
+				ptr + sizeof(fwts_acpi_table_dmar_atsr),
+				(size_t)header->length - sizeof(fwts_acpi_table_dmar_atsr));
+			break;
+		default:
+			/* and anything else */
+			break;
+		}
+
+		ptr += header->length;
+	}
+}
+
 typedef struct {
 	char *name;
 	void (*func)(fwts_framework *fw, fwts_acpi_table_info *table);
@@ -1220,6 +1356,7 @@  static acpidump_table_vec table_vec[] = {
 	{ "BOOT", 	acpidump_boot, 	1 },
 	{ "CPEP", 	acpidump_cpep, 	1 },
 	{ "DSDT", 	acpidump_amlcode, 1 },
+	{ "DMAR", 	acpidump_dmar,	1 },
 	{ "ECDT", 	acpidump_ecdt, 	1 },
 	{ "EINJ", 	acpidump_einj, 	1 },
 	{ "ERST", 	acpidump_erst, 	1 },
diff --git a/src/lib/include/fwts_acpi.h b/src/lib/include/fwts_acpi.h
index 03f7c2e..ef25ef5 100644
--- a/src/lib/include/fwts_acpi.h
+++ b/src/lib/include/fwts_acpi.h
@@ -504,6 +504,59 @@  typedef struct {
 	uint8_t		fwts_acpi_table_asf_addr_element[0];
 } __attribute__ ((packed)) fwts_acpi_table_asf_addr;
 
+/*
+ *  DMAR
+ *  See http://download.intel.com/technology/computing/vptech/Intel(r)_VT_for_Direct_IO.pdf
+ */
+typedef struct {
+	fwts_acpi_table_header header;
+	uint8_t		host_addr_width;
+	uint8_t		flags;
+	uint8_t		reserved[10];
+} __attribute__ ((packed)) fwts_acpi_table_dmar;
+
+typedef struct {
+	uint16_t	type;
+	uint16_t	length;
+} __attribute__ ((packed)) fwts_acpi_table_dmar_header;
+
+/* DMA remapping hardware unit definition structure */
+typedef struct {
+	fwts_acpi_table_dmar_header header;
+	uint8_t		flags;
+	uint8_t		reserved;
+	uint16_t	segment_number;
+	uint64_t	register_base_addr;
+	uint8_t		device_scope[0];
+} __attribute__ ((packed)) fwts_acpi_table_dmar_hardware_unit;
+
+/* Reserved Memory Defininition */
+typedef struct {
+	fwts_acpi_table_dmar_header header;
+	uint16_t	reserved;
+	uint16_t	segment;
+	uint64_t	base_address;
+	uint64_t	end_address;
+} __attribute__ ((packed)) fwts_acpi_table_dmar_reserved_memory;
+
+/* Root Port ATS capability reporting structure */
+typedef struct {
+	fwts_acpi_table_dmar_header header;
+	uint8_t		flags;
+	uint8_t		reserved;
+	uint16_t	segment;
+} __attribute__ ((packed)) fwts_acpi_table_dmar_atsr;
+
+/* DMA remapping device scope entries */
+typedef struct {
+	uint8_t		type;
+	uint8_t		length;
+	uint8_t		reserved[2];
+	uint8_t		enumeration_id;
+	uint8_t		start_bus_number;
+	uint8_t		path[0];
+} __attribute__ ((packed)) fwts_acpi_table_dmar_device_scope;
+
 void fwts_acpi_table_get_header(fwts_acpi_table_header *hdr, uint8_t *data);
 
 #endif