diff options
-rw-r--r-- | arch/x86_64/Kconfig | 11 | ||||
-rw-r--r-- | drivers/pci/Makefile | 3 | ||||
-rw-r--r-- | drivers/pci/dmar.c | 329 | ||||
-rw-r--r-- | include/acpi/actbl1.h | 27 | ||||
-rw-r--r-- | include/linux/dmar.h | 52 |
5 files changed, 415 insertions, 7 deletions
diff --git a/arch/x86_64/Kconfig b/arch/x86_64/Kconfig index aab25f3ba3ce..5c9aaed589a5 100644 --- a/arch/x86_64/Kconfig +++ b/arch/x86_64/Kconfig | |||
@@ -750,6 +750,17 @@ config PCI_DOMAINS | |||
750 | depends on PCI | 750 | depends on PCI |
751 | default y | 751 | default y |
752 | 752 | ||
753 | config DMAR | ||
754 | bool "Support for DMA Remapping Devices (EXPERIMENTAL)" | ||
755 | depends on PCI_MSI && ACPI && EXPERIMENTAL | ||
756 | default y | ||
757 | help | ||
758 | DMA remapping(DMAR) devices support enables independent address | ||
759 | translations for Direct Memory Access(DMA) from Devices. | ||
760 | These DMA remapping devices are reported via ACPI tables | ||
761 | and includes pci device scope covered by these DMA | ||
762 | remapping device. | ||
763 | |||
753 | source "drivers/pci/pcie/Kconfig" | 764 | source "drivers/pci/pcie/Kconfig" |
754 | 765 | ||
755 | source "drivers/pci/Kconfig" | 766 | source "drivers/pci/Kconfig" |
diff --git a/drivers/pci/Makefile b/drivers/pci/Makefile index 006054a40995..836ab2f250d1 100644 --- a/drivers/pci/Makefile +++ b/drivers/pci/Makefile | |||
@@ -20,6 +20,9 @@ obj-$(CONFIG_PCI_MSI) += msi.o | |||
20 | # Build the Hypertransport interrupt support | 20 | # Build the Hypertransport interrupt support |
21 | obj-$(CONFIG_HT_IRQ) += htirq.o | 21 | obj-$(CONFIG_HT_IRQ) += htirq.o |
22 | 22 | ||
23 | # Build Intel IOMMU support | ||
24 | obj-$(CONFIG_DMAR) += dmar.o | ||
25 | |||
23 | # | 26 | # |
24 | # Some architectures use the generic PCI setup functions | 27 | # Some architectures use the generic PCI setup functions |
25 | # | 28 | # |
diff --git a/drivers/pci/dmar.c b/drivers/pci/dmar.c new file mode 100644 index 000000000000..5dfdfdac92e1 --- /dev/null +++ b/drivers/pci/dmar.c | |||
@@ -0,0 +1,329 @@ | |||
1 | /* | ||
2 | * Copyright (c) 2006, Intel Corporation. | ||
3 | * | ||
4 | * This program is free software; you can redistribute it and/or modify it | ||
5 | * under the terms and conditions of the GNU General Public License, | ||
6 | * version 2, as published by the Free Software Foundation. | ||
7 | * | ||
8 | * This program is distributed in the hope it will be useful, but WITHOUT | ||
9 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
10 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
11 | * more details. | ||
12 | * | ||
13 | * You should have received a copy of the GNU General Public License along with | ||
14 | * this program; if not, write to the Free Software Foundation, Inc., 59 Temple | ||
15 | * Place - Suite 330, Boston, MA 02111-1307 USA. | ||
16 | * | ||
17 | * Copyright (C) Ashok Raj <ashok.raj@intel.com> | ||
18 | * Copyright (C) Shaohua Li <shaohua.li@intel.com> | ||
19 | * Copyright (C) Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com> | ||
20 | * | ||
21 | * This file implements early detection/parsing of DMA Remapping Devices | ||
22 | * reported to OS through BIOS via DMA remapping reporting (DMAR) ACPI | ||
23 | * tables. | ||
24 | */ | ||
25 | |||
26 | #include <linux/pci.h> | ||
27 | #include <linux/dmar.h> | ||
28 | |||
29 | #undef PREFIX | ||
30 | #define PREFIX "DMAR:" | ||
31 | |||
32 | /* No locks are needed as DMA remapping hardware unit | ||
33 | * list is constructed at boot time and hotplug of | ||
34 | * these units are not supported by the architecture. | ||
35 | */ | ||
36 | LIST_HEAD(dmar_drhd_units); | ||
37 | LIST_HEAD(dmar_rmrr_units); | ||
38 | |||
39 | static struct acpi_table_header * __initdata dmar_tbl; | ||
40 | |||
41 | static void __init dmar_register_drhd_unit(struct dmar_drhd_unit *drhd) | ||
42 | { | ||
43 | /* | ||
44 | * add INCLUDE_ALL at the tail, so scan the list will find it at | ||
45 | * the very end. | ||
46 | */ | ||
47 | if (drhd->include_all) | ||
48 | list_add_tail(&drhd->list, &dmar_drhd_units); | ||
49 | else | ||
50 | list_add(&drhd->list, &dmar_drhd_units); | ||
51 | } | ||
52 | |||
53 | static void __init dmar_register_rmrr_unit(struct dmar_rmrr_unit *rmrr) | ||
54 | { | ||
55 | list_add(&rmrr->list, &dmar_rmrr_units); | ||
56 | } | ||
57 | |||
58 | static int __init dmar_parse_one_dev_scope(struct acpi_dmar_device_scope *scope, | ||
59 | struct pci_dev **dev, u16 segment) | ||
60 | { | ||
61 | struct pci_bus *bus; | ||
62 | struct pci_dev *pdev = NULL; | ||
63 | struct acpi_dmar_pci_path *path; | ||
64 | int count; | ||
65 | |||
66 | bus = pci_find_bus(segment, scope->bus); | ||
67 | path = (struct acpi_dmar_pci_path *)(scope + 1); | ||
68 | count = (scope->length - sizeof(struct acpi_dmar_device_scope)) | ||
69 | / sizeof(struct acpi_dmar_pci_path); | ||
70 | |||
71 | while (count) { | ||
72 | if (pdev) | ||
73 | pci_dev_put(pdev); | ||
74 | /* | ||
75 | * Some BIOSes list non-exist devices in DMAR table, just | ||
76 | * ignore it | ||
77 | */ | ||
78 | if (!bus) { | ||
79 | printk(KERN_WARNING | ||
80 | PREFIX "Device scope bus [%d] not found\n", | ||
81 | scope->bus); | ||
82 | break; | ||
83 | } | ||
84 | pdev = pci_get_slot(bus, PCI_DEVFN(path->dev, path->fn)); | ||
85 | if (!pdev) { | ||
86 | printk(KERN_WARNING PREFIX | ||
87 | "Device scope device [%04x:%02x:%02x.%02x] not found\n", | ||
88 | segment, bus->number, path->dev, path->fn); | ||
89 | break; | ||
90 | } | ||
91 | path ++; | ||
92 | count --; | ||
93 | bus = pdev->subordinate; | ||
94 | } | ||
95 | if (!pdev) { | ||
96 | printk(KERN_WARNING PREFIX | ||
97 | "Device scope device [%04x:%02x:%02x.%02x] not found\n", | ||
98 | segment, scope->bus, path->dev, path->fn); | ||
99 | *dev = NULL; | ||
100 | return 0; | ||
101 | } | ||
102 | if ((scope->entry_type == ACPI_DMAR_SCOPE_TYPE_ENDPOINT && \ | ||
103 | pdev->subordinate) || (scope->entry_type == \ | ||
104 | ACPI_DMAR_SCOPE_TYPE_BRIDGE && !pdev->subordinate)) { | ||
105 | pci_dev_put(pdev); | ||
106 | printk(KERN_WARNING PREFIX | ||
107 | "Device scope type does not match for %s\n", | ||
108 | pci_name(pdev)); | ||
109 | return -EINVAL; | ||
110 | } | ||
111 | *dev = pdev; | ||
112 | return 0; | ||
113 | } | ||
114 | |||
115 | static int __init dmar_parse_dev_scope(void *start, void *end, int *cnt, | ||
116 | struct pci_dev ***devices, u16 segment) | ||
117 | { | ||
118 | struct acpi_dmar_device_scope *scope; | ||
119 | void * tmp = start; | ||
120 | int index; | ||
121 | int ret; | ||
122 | |||
123 | *cnt = 0; | ||
124 | while (start < end) { | ||
125 | scope = start; | ||
126 | if (scope->entry_type == ACPI_DMAR_SCOPE_TYPE_ENDPOINT || | ||
127 | scope->entry_type == ACPI_DMAR_SCOPE_TYPE_BRIDGE) | ||
128 | (*cnt)++; | ||
129 | else | ||
130 | printk(KERN_WARNING PREFIX | ||
131 | "Unsupported device scope\n"); | ||
132 | start += scope->length; | ||
133 | } | ||
134 | if (*cnt == 0) | ||
135 | return 0; | ||
136 | |||
137 | *devices = kcalloc(*cnt, sizeof(struct pci_dev *), GFP_KERNEL); | ||
138 | if (!*devices) | ||
139 | return -ENOMEM; | ||
140 | |||
141 | start = tmp; | ||
142 | index = 0; | ||
143 | while (start < end) { | ||
144 | scope = start; | ||
145 | if (scope->entry_type == ACPI_DMAR_SCOPE_TYPE_ENDPOINT || | ||
146 | scope->entry_type == ACPI_DMAR_SCOPE_TYPE_BRIDGE) { | ||
147 | ret = dmar_parse_one_dev_scope(scope, | ||
148 | &(*devices)[index], segment); | ||
149 | if (ret) { | ||
150 | kfree(*devices); | ||
151 | return ret; | ||
152 | } | ||
153 | index ++; | ||
154 | } | ||
155 | start += scope->length; | ||
156 | } | ||
157 | |||
158 | return 0; | ||
159 | } | ||
160 | |||
161 | /** | ||
162 | * dmar_parse_one_drhd - parses exactly one DMA remapping hardware definition | ||
163 | * structure which uniquely represent one DMA remapping hardware unit | ||
164 | * present in the platform | ||
165 | */ | ||
166 | static int __init | ||
167 | dmar_parse_one_drhd(struct acpi_dmar_header *header) | ||
168 | { | ||
169 | struct acpi_dmar_hardware_unit *drhd; | ||
170 | struct dmar_drhd_unit *dmaru; | ||
171 | int ret = 0; | ||
172 | static int include_all; | ||
173 | |||
174 | dmaru = kzalloc(sizeof(*dmaru), GFP_KERNEL); | ||
175 | if (!dmaru) | ||
176 | return -ENOMEM; | ||
177 | |||
178 | drhd = (struct acpi_dmar_hardware_unit *)header; | ||
179 | dmaru->reg_base_addr = drhd->address; | ||
180 | dmaru->include_all = drhd->flags & 0x1; /* BIT0: INCLUDE_ALL */ | ||
181 | |||
182 | if (!dmaru->include_all) | ||
183 | ret = dmar_parse_dev_scope((void *)(drhd + 1), | ||
184 | ((void *)drhd) + header->length, | ||
185 | &dmaru->devices_cnt, &dmaru->devices, | ||
186 | drhd->segment); | ||
187 | else { | ||
188 | /* Only allow one INCLUDE_ALL */ | ||
189 | if (include_all) { | ||
190 | printk(KERN_WARNING PREFIX "Only one INCLUDE_ALL " | ||
191 | "device scope is allowed\n"); | ||
192 | ret = -EINVAL; | ||
193 | } | ||
194 | include_all = 1; | ||
195 | } | ||
196 | |||
197 | if (ret || (dmaru->devices_cnt == 0 && !dmaru->include_all)) | ||
198 | kfree(dmaru); | ||
199 | else | ||
200 | dmar_register_drhd_unit(dmaru); | ||
201 | return ret; | ||
202 | } | ||
203 | |||
204 | static int __init | ||
205 | dmar_parse_one_rmrr(struct acpi_dmar_header *header) | ||
206 | { | ||
207 | struct acpi_dmar_reserved_memory *rmrr; | ||
208 | struct dmar_rmrr_unit *rmrru; | ||
209 | int ret = 0; | ||
210 | |||
211 | rmrru = kzalloc(sizeof(*rmrru), GFP_KERNEL); | ||
212 | if (!rmrru) | ||
213 | return -ENOMEM; | ||
214 | |||
215 | rmrr = (struct acpi_dmar_reserved_memory *)header; | ||
216 | rmrru->base_address = rmrr->base_address; | ||
217 | rmrru->end_address = rmrr->end_address; | ||
218 | ret = dmar_parse_dev_scope((void *)(rmrr + 1), | ||
219 | ((void *)rmrr) + header->length, | ||
220 | &rmrru->devices_cnt, &rmrru->devices, rmrr->segment); | ||
221 | |||
222 | if (ret || (rmrru->devices_cnt == 0)) | ||
223 | kfree(rmrru); | ||
224 | else | ||
225 | dmar_register_rmrr_unit(rmrru); | ||
226 | return ret; | ||
227 | } | ||
228 | |||
229 | static void __init | ||
230 | dmar_table_print_dmar_entry(struct acpi_dmar_header *header) | ||
231 | { | ||
232 | struct acpi_dmar_hardware_unit *drhd; | ||
233 | struct acpi_dmar_reserved_memory *rmrr; | ||
234 | |||
235 | switch (header->type) { | ||
236 | case ACPI_DMAR_TYPE_HARDWARE_UNIT: | ||
237 | drhd = (struct acpi_dmar_hardware_unit *)header; | ||
238 | printk (KERN_INFO PREFIX | ||
239 | "DRHD (flags: 0x%08x)base: 0x%016Lx\n", | ||
240 | drhd->flags, drhd->address); | ||
241 | break; | ||
242 | case ACPI_DMAR_TYPE_RESERVED_MEMORY: | ||
243 | rmrr = (struct acpi_dmar_reserved_memory *)header; | ||
244 | |||
245 | printk (KERN_INFO PREFIX | ||
246 | "RMRR base: 0x%016Lx end: 0x%016Lx\n", | ||
247 | rmrr->base_address, rmrr->end_address); | ||
248 | break; | ||
249 | } | ||
250 | } | ||
251 | |||
252 | /** | ||
253 | * parse_dmar_table - parses the DMA reporting table | ||
254 | */ | ||
255 | static int __init | ||
256 | parse_dmar_table(void) | ||
257 | { | ||
258 | struct acpi_table_dmar *dmar; | ||
259 | struct acpi_dmar_header *entry_header; | ||
260 | int ret = 0; | ||
261 | |||
262 | dmar = (struct acpi_table_dmar *)dmar_tbl; | ||
263 | if (!dmar) | ||
264 | return -ENODEV; | ||
265 | |||
266 | if (!dmar->width) { | ||
267 | printk (KERN_WARNING PREFIX "Zero: Invalid DMAR haw\n"); | ||
268 | return -EINVAL; | ||
269 | } | ||
270 | |||
271 | printk (KERN_INFO PREFIX "Host address width %d\n", | ||
272 | dmar->width + 1); | ||
273 | |||
274 | entry_header = (struct acpi_dmar_header *)(dmar + 1); | ||
275 | while (((unsigned long)entry_header) < | ||
276 | (((unsigned long)dmar) + dmar_tbl->length)) { | ||
277 | dmar_table_print_dmar_entry(entry_header); | ||
278 | |||
279 | switch (entry_header->type) { | ||
280 | case ACPI_DMAR_TYPE_HARDWARE_UNIT: | ||
281 | ret = dmar_parse_one_drhd(entry_header); | ||
282 | break; | ||
283 | case ACPI_DMAR_TYPE_RESERVED_MEMORY: | ||
284 | ret = dmar_parse_one_rmrr(entry_header); | ||
285 | break; | ||
286 | default: | ||
287 | printk(KERN_WARNING PREFIX | ||
288 | "Unknown DMAR structure type\n"); | ||
289 | ret = 0; /* for forward compatibility */ | ||
290 | break; | ||
291 | } | ||
292 | if (ret) | ||
293 | break; | ||
294 | |||
295 | entry_header = ((void *)entry_header + entry_header->length); | ||
296 | } | ||
297 | return ret; | ||
298 | } | ||
299 | |||
300 | |||
301 | int __init dmar_table_init(void) | ||
302 | { | ||
303 | |||
304 | parse_dmar_table(); | ||
305 | if (list_empty(&dmar_drhd_units)) { | ||
306 | printk(KERN_INFO PREFIX "No DMAR devices found\n"); | ||
307 | return -ENODEV; | ||
308 | } | ||
309 | return 0; | ||
310 | } | ||
311 | |||
312 | /** | ||
313 | * early_dmar_detect - checks to see if the platform supports DMAR devices | ||
314 | */ | ||
315 | int __init early_dmar_detect(void) | ||
316 | { | ||
317 | acpi_status status = AE_OK; | ||
318 | |||
319 | /* if we could find DMAR table, then there are DMAR devices */ | ||
320 | status = acpi_get_table(ACPI_SIG_DMAR, 0, | ||
321 | (struct acpi_table_header **)&dmar_tbl); | ||
322 | |||
323 | if (ACPI_SUCCESS(status) && !dmar_tbl) { | ||
324 | printk (KERN_WARNING PREFIX "Unable to map DMAR\n"); | ||
325 | status = AE_NOT_FOUND; | ||
326 | } | ||
327 | |||
328 | return (ACPI_SUCCESS(status) ? 1 : 0); | ||
329 | } | ||
diff --git a/include/acpi/actbl1.h b/include/acpi/actbl1.h index 4e5d3ca53a8e..a1b1b2ee3e51 100644 --- a/include/acpi/actbl1.h +++ b/include/acpi/actbl1.h | |||
@@ -257,7 +257,8 @@ struct acpi_table_dbgp { | |||
257 | struct acpi_table_dmar { | 257 | struct acpi_table_dmar { |
258 | struct acpi_table_header header; /* Common ACPI table header */ | 258 | struct acpi_table_header header; /* Common ACPI table header */ |
259 | u8 width; /* Host Address Width */ | 259 | u8 width; /* Host Address Width */ |
260 | u8 reserved[11]; | 260 | u8 flags; |
261 | u8 reserved[10]; | ||
261 | }; | 262 | }; |
262 | 263 | ||
263 | /* DMAR subtable header */ | 264 | /* DMAR subtable header */ |
@@ -265,8 +266,6 @@ struct acpi_table_dmar { | |||
265 | struct acpi_dmar_header { | 266 | struct acpi_dmar_header { |
266 | u16 type; | 267 | u16 type; |
267 | u16 length; | 268 | u16 length; |
268 | u8 flags; | ||
269 | u8 reserved[3]; | ||
270 | }; | 269 | }; |
271 | 270 | ||
272 | /* Values for subtable type in struct acpi_dmar_header */ | 271 | /* Values for subtable type in struct acpi_dmar_header */ |
@@ -274,13 +273,15 @@ struct acpi_dmar_header { | |||
274 | enum acpi_dmar_type { | 273 | enum acpi_dmar_type { |
275 | ACPI_DMAR_TYPE_HARDWARE_UNIT = 0, | 274 | ACPI_DMAR_TYPE_HARDWARE_UNIT = 0, |
276 | ACPI_DMAR_TYPE_RESERVED_MEMORY = 1, | 275 | ACPI_DMAR_TYPE_RESERVED_MEMORY = 1, |
277 | ACPI_DMAR_TYPE_RESERVED = 2 /* 2 and greater are reserved */ | 276 | ACPI_DMAR_TYPE_ATSR = 2, |
277 | ACPI_DMAR_TYPE_RESERVED = 3 /* 3 and greater are reserved */ | ||
278 | }; | 278 | }; |
279 | 279 | ||
280 | struct acpi_dmar_device_scope { | 280 | struct acpi_dmar_device_scope { |
281 | u8 entry_type; | 281 | u8 entry_type; |
282 | u8 length; | 282 | u8 length; |
283 | u8 segment; | 283 | u16 reserved; |
284 | u8 enumeration_id; | ||
284 | u8 bus; | 285 | u8 bus; |
285 | }; | 286 | }; |
286 | 287 | ||
@@ -290,7 +291,14 @@ enum acpi_dmar_scope_type { | |||
290 | ACPI_DMAR_SCOPE_TYPE_NOT_USED = 0, | 291 | ACPI_DMAR_SCOPE_TYPE_NOT_USED = 0, |
291 | ACPI_DMAR_SCOPE_TYPE_ENDPOINT = 1, | 292 | ACPI_DMAR_SCOPE_TYPE_ENDPOINT = 1, |
292 | ACPI_DMAR_SCOPE_TYPE_BRIDGE = 2, | 293 | ACPI_DMAR_SCOPE_TYPE_BRIDGE = 2, |
293 | ACPI_DMAR_SCOPE_TYPE_RESERVED = 3 /* 3 and greater are reserved */ | 294 | ACPI_DMAR_SCOPE_TYPE_IOAPIC = 3, |
295 | ACPI_DMAR_SCOPE_TYPE_HPET = 4, | ||
296 | ACPI_DMAR_SCOPE_TYPE_RESERVED = 5 /* 5 and greater are reserved */ | ||
297 | }; | ||
298 | |||
299 | struct acpi_dmar_pci_path { | ||
300 | u8 dev; | ||
301 | u8 fn; | ||
294 | }; | 302 | }; |
295 | 303 | ||
296 | /* | 304 | /* |
@@ -301,6 +309,9 @@ enum acpi_dmar_scope_type { | |||
301 | 309 | ||
302 | struct acpi_dmar_hardware_unit { | 310 | struct acpi_dmar_hardware_unit { |
303 | struct acpi_dmar_header header; | 311 | struct acpi_dmar_header header; |
312 | u8 flags; | ||
313 | u8 reserved; | ||
314 | u16 segment; | ||
304 | u64 address; /* Register Base Address */ | 315 | u64 address; /* Register Base Address */ |
305 | }; | 316 | }; |
306 | 317 | ||
@@ -312,7 +323,9 @@ struct acpi_dmar_hardware_unit { | |||
312 | 323 | ||
313 | struct acpi_dmar_reserved_memory { | 324 | struct acpi_dmar_reserved_memory { |
314 | struct acpi_dmar_header header; | 325 | struct acpi_dmar_header header; |
315 | u64 address; /* 4_k aligned base address */ | 326 | u16 reserved; |
327 | u16 segment; | ||
328 | u64 base_address; /* 4_k aligned base address */ | ||
316 | u64 end_address; /* 4_k aligned limit address */ | 329 | u64 end_address; /* 4_k aligned limit address */ |
317 | }; | 330 | }; |
318 | 331 | ||
diff --git a/include/linux/dmar.h b/include/linux/dmar.h new file mode 100644 index 000000000000..8d3e0e38ca4d --- /dev/null +++ b/include/linux/dmar.h | |||
@@ -0,0 +1,52 @@ | |||
1 | /* | ||
2 | * Copyright (c) 2006, Intel Corporation. | ||
3 | * | ||
4 | * This program is free software; you can redistribute it and/or modify it | ||
5 | * under the terms and conditions of the GNU General Public License, | ||
6 | * version 2, as published by the Free Software Foundation. | ||
7 | * | ||
8 | * This program is distributed in the hope it will be useful, but WITHOUT | ||
9 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
10 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
11 | * more details. | ||
12 | * | ||
13 | * You should have received a copy of the GNU General Public License along with | ||
14 | * this program; if not, write to the Free Software Foundation, Inc., 59 Temple | ||
15 | * Place - Suite 330, Boston, MA 02111-1307 USA. | ||
16 | * | ||
17 | * Copyright (C) Ashok Raj <ashok.raj@intel.com> | ||
18 | * Copyright (C) Shaohua Li <shaohua.li@intel.com> | ||
19 | */ | ||
20 | |||
21 | #ifndef __DMAR_H__ | ||
22 | #define __DMAR_H__ | ||
23 | |||
24 | #include <linux/acpi.h> | ||
25 | #include <linux/types.h> | ||
26 | |||
27 | |||
28 | extern int dmar_table_init(void); | ||
29 | extern int early_dmar_detect(void); | ||
30 | |||
31 | extern struct list_head dmar_drhd_units; | ||
32 | extern struct list_head dmar_rmrr_units; | ||
33 | |||
34 | struct dmar_drhd_unit { | ||
35 | struct list_head list; /* list of drhd units */ | ||
36 | u64 reg_base_addr; /* register base address*/ | ||
37 | struct pci_dev **devices; /* target device array */ | ||
38 | int devices_cnt; /* target device count */ | ||
39 | u8 ignored:1; /* ignore drhd */ | ||
40 | u8 include_all:1; | ||
41 | struct intel_iommu *iommu; | ||
42 | }; | ||
43 | |||
44 | struct dmar_rmrr_unit { | ||
45 | struct list_head list; /* list of rmrr units */ | ||
46 | u64 base_address; /* reserved base address*/ | ||
47 | u64 end_address; /* reserved end address */ | ||
48 | struct pci_dev **devices; /* target devices */ | ||
49 | int devices_cnt; /* target device count */ | ||
50 | }; | ||
51 | |||
52 | #endif /* __DMAR_H__ */ | ||