x86, AMD IOMMU: add early detection code
[pandora-kernel.git] / arch / x86 / kernel / amd_iommu_init.c
1 /*
2  * Copyright (C) 2007-2008 Advanced Micro Devices, Inc.
3  * Author: Joerg Roedel <joerg.roedel@amd.com>
4  *         Leo Duran <leo.duran@amd.com>
5  *
6  * This program is free software; you can redistribute it and/or modify it
7  * under the terms of the GNU General Public License version 2 as published
8  * by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
18  */
19
20 #include <linux/pci.h>
21 #include <linux/acpi.h>
22 #include <linux/gfp.h>
23 #include <linux/list.h>
24 #include <asm/pci-direct.h>
25 #include <asm/amd_iommu_types.h>
26 #include <asm/gart.h>
27
28 /*
29  * definitions for the ACPI scanning code
30  */
31 #define UPDATE_LAST_BDF(x) do {\
32         if ((x) > amd_iommu_last_bdf) \
33                 amd_iommu_last_bdf = (x); \
34         } while (0);
35
36 #define DEVID(bus, devfn) (((bus) << 8) | (devfn))
37 #define PCI_BUS(x) (((x) >> 8) & 0xff)
38 #define IVRS_HEADER_LENGTH 48
39 #define TBL_SIZE(x) (1 << (PAGE_SHIFT + get_order(amd_iommu_last_bdf * (x))))
40
41 #define ACPI_IVHD_TYPE                  0x10
42 #define ACPI_IVMD_TYPE_ALL              0x20
43 #define ACPI_IVMD_TYPE                  0x21
44 #define ACPI_IVMD_TYPE_RANGE            0x22
45
46 #define IVHD_DEV_ALL                    0x01
47 #define IVHD_DEV_SELECT                 0x02
48 #define IVHD_DEV_SELECT_RANGE_START     0x03
49 #define IVHD_DEV_RANGE_END              0x04
50 #define IVHD_DEV_ALIAS                  0x42
51 #define IVHD_DEV_ALIAS_RANGE            0x43
52 #define IVHD_DEV_EXT_SELECT             0x46
53 #define IVHD_DEV_EXT_SELECT_RANGE       0x47
54
55 #define IVHD_FLAG_HT_TUN_EN             0x00
56 #define IVHD_FLAG_PASSPW_EN             0x01
57 #define IVHD_FLAG_RESPASSPW_EN          0x02
58 #define IVHD_FLAG_ISOC_EN               0x03
59
60 #define IVMD_FLAG_EXCL_RANGE            0x08
61 #define IVMD_FLAG_UNITY_MAP             0x01
62
63 #define ACPI_DEVFLAG_INITPASS           0x01
64 #define ACPI_DEVFLAG_EXTINT             0x02
65 #define ACPI_DEVFLAG_NMI                0x04
66 #define ACPI_DEVFLAG_SYSMGT1            0x10
67 #define ACPI_DEVFLAG_SYSMGT2            0x20
68 #define ACPI_DEVFLAG_LINT0              0x40
69 #define ACPI_DEVFLAG_LINT1              0x80
70 #define ACPI_DEVFLAG_ATSDIS             0x10000000
71
72 struct ivhd_header {
73         u8 type;
74         u8 flags;
75         u16 length;
76         u16 devid;
77         u16 cap_ptr;
78         u64 mmio_phys;
79         u16 pci_seg;
80         u16 info;
81         u32 reserved;
82 } __attribute__((packed));
83
84 struct ivhd_entry {
85         u8 type;
86         u16 devid;
87         u8 flags;
88         u32 ext;
89 } __attribute__((packed));
90
91 struct ivmd_header {
92         u8 type;
93         u8 flags;
94         u16 length;
95         u16 devid;
96         u16 aux;
97         u64 resv;
98         u64 range_start;
99         u64 range_length;
100 } __attribute__((packed));
101
102 static int __initdata amd_iommu_disable;
103
104 u16 amd_iommu_last_bdf;
105 struct list_head amd_iommu_unity_map;
106 unsigned amd_iommu_aperture_order = 26;
107 int amd_iommu_isolate;
108
109 struct list_head amd_iommu_list;
110 struct dev_table_entry *amd_iommu_dev_table;
111 u16 *amd_iommu_alias_table;
112 struct amd_iommu **amd_iommu_rlookup_table;
113 struct protection_domain **amd_iommu_pd_table;
114 unsigned long *amd_iommu_pd_alloc_bitmap;
115
116 static u32 dev_table_size;
117 static u32 alias_table_size;
118 static u32 rlookup_table_size;
119
120 static void __init iommu_set_exclusion_range(struct amd_iommu *iommu)
121 {
122         u64 start = iommu->exclusion_start & PAGE_MASK;
123         u64 limit = (start + iommu->exclusion_length) & PAGE_MASK;
124         u64 entry;
125
126         if (!iommu->exclusion_start)
127                 return;
128
129         entry = start | MMIO_EXCL_ENABLE_MASK;
130         memcpy_toio(iommu->mmio_base + MMIO_EXCL_BASE_OFFSET,
131                         &entry, sizeof(entry));
132
133         entry = limit;
134         memcpy_toio(iommu->mmio_base + MMIO_EXCL_LIMIT_OFFSET,
135                         &entry, sizeof(entry));
136 }
137
138 static void __init iommu_set_device_table(struct amd_iommu *iommu)
139 {
140         u32 entry;
141
142         BUG_ON(iommu->mmio_base == NULL);
143
144         entry = virt_to_phys(amd_iommu_dev_table);
145         entry |= (dev_table_size >> 12) - 1;
146         memcpy_toio(iommu->mmio_base + MMIO_DEV_TABLE_OFFSET,
147                         &entry, sizeof(entry));
148 }
149
150 static void __init iommu_feature_enable(struct amd_iommu *iommu, u8 bit)
151 {
152         u32 ctrl;
153
154         ctrl = readl(iommu->mmio_base + MMIO_CONTROL_OFFSET);
155         ctrl |= (1 << bit);
156         writel(ctrl, iommu->mmio_base + MMIO_CONTROL_OFFSET);
157 }
158
159 static void __init iommu_feature_disable(struct amd_iommu *iommu, u8 bit)
160 {
161         u32 ctrl;
162
163         ctrl = (u64)readl(iommu->mmio_base + MMIO_CONTROL_OFFSET);
164         ctrl &= ~(1 << bit);
165         writel(ctrl, iommu->mmio_base + MMIO_CONTROL_OFFSET);
166 }
167
168 void __init iommu_enable(struct amd_iommu *iommu)
169 {
170         u32 ctrl;
171
172         printk(KERN_INFO "AMD IOMMU: Enabling IOMMU at ");
173         print_devid(iommu->devid, 0);
174         printk(" cap 0x%hx\n", iommu->cap_ptr);
175
176         iommu_feature_enable(iommu, CONTROL_IOMMU_EN);
177         ctrl = readl(iommu->mmio_base + MMIO_CONTROL_OFFSET);
178 }
179
180 static u8 * __init iommu_map_mmio_space(u64 address)
181 {
182         u8 *ret;
183
184         if (!request_mem_region(address, MMIO_REGION_LENGTH, "amd_iommu"))
185                 return NULL;
186
187         ret = ioremap_nocache(address, MMIO_REGION_LENGTH);
188         if (ret != NULL)
189                 return ret;
190
191         release_mem_region(address, MMIO_REGION_LENGTH);
192
193         return NULL;
194 }
195
196 static void __init iommu_unmap_mmio_space(struct amd_iommu *iommu)
197 {
198         if (iommu->mmio_base)
199                 iounmap(iommu->mmio_base);
200         release_mem_region(iommu->mmio_phys, MMIO_REGION_LENGTH);
201 }
202
203 static int __init find_last_devid_on_pci(int bus, int dev, int fn, int cap_ptr)
204 {
205         u32 cap;
206
207         cap = read_pci_config(bus, dev, fn, cap_ptr+MMIO_RANGE_OFFSET);
208         UPDATE_LAST_BDF(DEVID(MMIO_GET_BUS(cap), MMIO_GET_LD(cap)));
209
210         return 0;
211 }
212
213 static int __init find_last_devid_from_ivhd(struct ivhd_header *h)
214 {
215         u8 *p = (void *)h, *end = (void *)h;
216         struct ivhd_entry *dev;
217
218         p += sizeof(*h);
219         end += h->length;
220
221         find_last_devid_on_pci(PCI_BUS(h->devid),
222                         PCI_SLOT(h->devid),
223                         PCI_FUNC(h->devid),
224                         h->cap_ptr);
225
226         while (p < end) {
227                 dev = (struct ivhd_entry *)p;
228                 switch (dev->type) {
229                 case IVHD_DEV_SELECT:
230                 case IVHD_DEV_RANGE_END:
231                 case IVHD_DEV_ALIAS:
232                 case IVHD_DEV_EXT_SELECT:
233                         UPDATE_LAST_BDF(dev->devid);
234                         break;
235                 default:
236                         break;
237                 }
238                 p += 0x04 << (*p >> 6);
239         }
240
241         WARN_ON(p != end);
242
243         return 0;
244 }
245
246 static int __init find_last_devid_acpi(struct acpi_table_header *table)
247 {
248         int i;
249         u8 checksum = 0, *p = (u8 *)table, *end = (u8 *)table;
250         struct ivhd_header *h;
251
252         /*
253          * Validate checksum here so we don't need to do it when
254          * we actually parse the table
255          */
256         for (i = 0; i < table->length; ++i)
257                 checksum += p[i];
258         if (checksum != 0)
259                 /* ACPI table corrupt */
260                 return -ENODEV;
261
262         p += IVRS_HEADER_LENGTH;
263
264         end += table->length;
265         while (p < end) {
266                 h = (struct ivhd_header *)p;
267                 switch (h->type) {
268                 case ACPI_IVHD_TYPE:
269                         find_last_devid_from_ivhd(h);
270                         break;
271                 default:
272                         break;
273                 }
274                 p += h->length;
275         }
276         WARN_ON(p != end);
277
278         return 0;
279 }
280
281 static u8 * __init alloc_command_buffer(struct amd_iommu *iommu)
282 {
283         u8 *cmd_buf = (u8 *)__get_free_pages(GFP_KERNEL,
284                         get_order(CMD_BUFFER_SIZE));
285         u64 entry = 0;
286
287         if (cmd_buf == NULL)
288                 return NULL;
289
290         iommu->cmd_buf_size = CMD_BUFFER_SIZE;
291
292         memset(cmd_buf, 0, CMD_BUFFER_SIZE);
293
294         entry = (u64)virt_to_phys(cmd_buf);
295         entry |= MMIO_CMD_SIZE_512;
296         memcpy_toio(iommu->mmio_base + MMIO_CMD_BUF_OFFSET,
297                         &entry, sizeof(entry));
298
299         iommu_feature_enable(iommu, CONTROL_CMDBUF_EN);
300
301         return cmd_buf;
302 }
303
304 static void __init free_command_buffer(struct amd_iommu *iommu)
305 {
306         if (iommu->cmd_buf)
307                 free_pages((unsigned long)iommu->cmd_buf,
308                                 get_order(CMD_BUFFER_SIZE));
309 }
310
311 static void set_dev_entry_bit(u16 devid, u8 bit)
312 {
313         int i = (bit >> 5) & 0x07;
314         int _bit = bit & 0x1f;
315
316         amd_iommu_dev_table[devid].data[i] |= (1 << _bit);
317 }
318
319 static void __init set_dev_entry_from_acpi(u16 devid, u32 flags, u32 ext_flags)
320 {
321         if (flags & ACPI_DEVFLAG_INITPASS)
322                 set_dev_entry_bit(devid, DEV_ENTRY_INIT_PASS);
323         if (flags & ACPI_DEVFLAG_EXTINT)
324                 set_dev_entry_bit(devid, DEV_ENTRY_EINT_PASS);
325         if (flags & ACPI_DEVFLAG_NMI)
326                 set_dev_entry_bit(devid, DEV_ENTRY_NMI_PASS);
327         if (flags & ACPI_DEVFLAG_SYSMGT1)
328                 set_dev_entry_bit(devid, DEV_ENTRY_SYSMGT1);
329         if (flags & ACPI_DEVFLAG_SYSMGT2)
330                 set_dev_entry_bit(devid, DEV_ENTRY_SYSMGT2);
331         if (flags & ACPI_DEVFLAG_LINT0)
332                 set_dev_entry_bit(devid, DEV_ENTRY_LINT0_PASS);
333         if (flags & ACPI_DEVFLAG_LINT1)
334                 set_dev_entry_bit(devid, DEV_ENTRY_LINT1_PASS);
335 }
336
337 static void __init set_iommu_for_device(struct amd_iommu *iommu, u16 devid)
338 {
339         amd_iommu_rlookup_table[devid] = iommu;
340 }
341
342 static void __init set_device_exclusion_range(u16 devid, struct ivmd_header *m)
343 {
344         struct amd_iommu *iommu = amd_iommu_rlookup_table[devid];
345
346         if (!(m->flags & IVMD_FLAG_EXCL_RANGE))
347                 return;
348
349         if (iommu) {
350                 set_dev_entry_bit(m->devid, DEV_ENTRY_EX);
351                 iommu->exclusion_start = m->range_start;
352                 iommu->exclusion_length = m->range_length;
353         }
354 }
355
356 static void __init init_iommu_from_pci(struct amd_iommu *iommu)
357 {
358         int bus = PCI_BUS(iommu->devid);
359         int dev = PCI_SLOT(iommu->devid);
360         int fn  = PCI_FUNC(iommu->devid);
361         int cap_ptr = iommu->cap_ptr;
362         u32 range;
363
364         iommu->cap = read_pci_config(bus, dev, fn, cap_ptr+MMIO_CAP_HDR_OFFSET);
365
366         range = read_pci_config(bus, dev, fn, cap_ptr+MMIO_RANGE_OFFSET);
367         iommu->first_device = DEVID(MMIO_GET_BUS(range), MMIO_GET_FD(range));
368         iommu->last_device = DEVID(MMIO_GET_BUS(range), MMIO_GET_LD(range));
369 }
370
371 static void __init init_iommu_from_acpi(struct amd_iommu *iommu,
372                                         struct ivhd_header *h)
373 {
374         u8 *p = (u8 *)h;
375         u8 *end = p, flags = 0;
376         u16 dev_i, devid = 0, devid_start = 0, devid_to = 0;
377         u32 ext_flags = 0;
378         bool alias = 0;
379         struct ivhd_entry *e;
380
381         /*
382          * First set the recommended feature enable bits from ACPI
383          * into the IOMMU control registers
384          */
385         h->flags & IVHD_FLAG_HT_TUN_EN ?
386                 iommu_feature_enable(iommu, CONTROL_HT_TUN_EN) :
387                 iommu_feature_disable(iommu, CONTROL_HT_TUN_EN);
388
389         h->flags & IVHD_FLAG_PASSPW_EN ?
390                 iommu_feature_enable(iommu, CONTROL_PASSPW_EN) :
391                 iommu_feature_disable(iommu, CONTROL_PASSPW_EN);
392
393         h->flags & IVHD_FLAG_RESPASSPW_EN ?
394                 iommu_feature_enable(iommu, CONTROL_RESPASSPW_EN) :
395                 iommu_feature_disable(iommu, CONTROL_RESPASSPW_EN);
396
397         h->flags & IVHD_FLAG_ISOC_EN ?
398                 iommu_feature_enable(iommu, CONTROL_ISOC_EN) :
399                 iommu_feature_disable(iommu, CONTROL_ISOC_EN);
400
401         /*
402          * make IOMMU memory accesses cache coherent
403          */
404         iommu_feature_enable(iommu, CONTROL_COHERENT_EN);
405
406         /*
407          * Done. Now parse the device entries
408          */
409         p += sizeof(struct ivhd_header);
410         end += h->length;
411
412         while (p < end) {
413                 e = (struct ivhd_entry *)p;
414                 switch (e->type) {
415                 case IVHD_DEV_ALL:
416                         for (dev_i = iommu->first_device;
417                                         dev_i <= iommu->last_device; ++dev_i)
418                                 set_dev_entry_from_acpi(dev_i, e->flags, 0);
419                         break;
420                 case IVHD_DEV_SELECT:
421                         devid = e->devid;
422                         set_dev_entry_from_acpi(devid, e->flags, 0);
423                         break;
424                 case IVHD_DEV_SELECT_RANGE_START:
425                         devid_start = e->devid;
426                         flags = e->flags;
427                         ext_flags = 0;
428                         alias = 0;
429                         break;
430                 case IVHD_DEV_ALIAS:
431                         devid = e->devid;
432                         devid_to = e->ext >> 8;
433                         set_dev_entry_from_acpi(devid, e->flags, 0);
434                         amd_iommu_alias_table[devid] = devid_to;
435                         break;
436                 case IVHD_DEV_ALIAS_RANGE:
437                         devid_start = e->devid;
438                         flags = e->flags;
439                         devid_to = e->ext >> 8;
440                         ext_flags = 0;
441                         alias = 1;
442                         break;
443                 case IVHD_DEV_EXT_SELECT:
444                         devid = e->devid;
445                         set_dev_entry_from_acpi(devid, e->flags, e->ext);
446                         break;
447                 case IVHD_DEV_EXT_SELECT_RANGE:
448                         devid_start = e->devid;
449                         flags = e->flags;
450                         ext_flags = e->ext;
451                         alias = 0;
452                         break;
453                 case IVHD_DEV_RANGE_END:
454                         devid = e->devid;
455                         for (dev_i = devid_start; dev_i <= devid; ++dev_i) {
456                                 if (alias)
457                                         amd_iommu_alias_table[dev_i] = devid_to;
458                                 set_dev_entry_from_acpi(
459                                                 amd_iommu_alias_table[dev_i],
460                                                 flags, ext_flags);
461                         }
462                         break;
463                 default:
464                         break;
465                 }
466
467                 p += 0x04 << (e->type >> 6);
468         }
469 }
470
471 static int __init init_iommu_devices(struct amd_iommu *iommu)
472 {
473         u16 i;
474
475         for (i = iommu->first_device; i <= iommu->last_device; ++i)
476                 set_iommu_for_device(iommu, i);
477
478         return 0;
479 }
480
481 static void __init free_iommu_one(struct amd_iommu *iommu)
482 {
483         free_command_buffer(iommu);
484         iommu_unmap_mmio_space(iommu);
485 }
486
487 static void __init free_iommu_all(void)
488 {
489         struct amd_iommu *iommu, *next;
490
491         list_for_each_entry_safe(iommu, next, &amd_iommu_list, list) {
492                 list_del(&iommu->list);
493                 free_iommu_one(iommu);
494                 kfree(iommu);
495         }
496 }
497
498 static int __init init_iommu_one(struct amd_iommu *iommu, struct ivhd_header *h)
499 {
500         spin_lock_init(&iommu->lock);
501         list_add_tail(&iommu->list, &amd_iommu_list);
502
503         /*
504          * Copy data from ACPI table entry to the iommu struct
505          */
506         iommu->devid = h->devid;
507         iommu->cap_ptr = h->cap_ptr;
508         iommu->mmio_phys = h->mmio_phys;
509         iommu->mmio_base = iommu_map_mmio_space(h->mmio_phys);
510         if (!iommu->mmio_base)
511                 return -ENOMEM;
512
513         iommu_set_device_table(iommu);
514         iommu->cmd_buf = alloc_command_buffer(iommu);
515         if (!iommu->cmd_buf)
516                 return -ENOMEM;
517
518         init_iommu_from_pci(iommu);
519         init_iommu_from_acpi(iommu, h);
520         init_iommu_devices(iommu);
521
522         return 0;
523 }
524
525 static int __init init_iommu_all(struct acpi_table_header *table)
526 {
527         u8 *p = (u8 *)table, *end = (u8 *)table;
528         struct ivhd_header *h;
529         struct amd_iommu *iommu;
530         int ret;
531
532         INIT_LIST_HEAD(&amd_iommu_list);
533
534         end += table->length;
535         p += IVRS_HEADER_LENGTH;
536
537         while (p < end) {
538                 h = (struct ivhd_header *)p;
539                 switch (*p) {
540                 case ACPI_IVHD_TYPE:
541                         iommu = kzalloc(sizeof(struct amd_iommu), GFP_KERNEL);
542                         if (iommu == NULL)
543                                 return -ENOMEM;
544                         ret = init_iommu_one(iommu, h);
545                         if (ret)
546                                 return ret;
547                         break;
548                 default:
549                         break;
550                 }
551                 p += h->length;
552
553         }
554         WARN_ON(p != end);
555
556         return 0;
557 }
558
559 static void __init free_unity_maps(void)
560 {
561         struct unity_map_entry *entry, *next;
562
563         list_for_each_entry_safe(entry, next, &amd_iommu_unity_map, list) {
564                 list_del(&entry->list);
565                 kfree(entry);
566         }
567 }
568
569 static int __init init_exclusion_range(struct ivmd_header *m)
570 {
571         int i;
572
573         switch (m->type) {
574         case ACPI_IVMD_TYPE:
575                 set_device_exclusion_range(m->devid, m);
576                 break;
577         case ACPI_IVMD_TYPE_ALL:
578                 for (i = 0; i < amd_iommu_last_bdf; ++i)
579                         set_device_exclusion_range(i, m);
580                 break;
581         case ACPI_IVMD_TYPE_RANGE:
582                 for (i = m->devid; i <= m->aux; ++i)
583                         set_device_exclusion_range(i, m);
584                 break;
585         default:
586                 break;
587         }
588
589         return 0;
590 }
591
592 static int __init init_unity_map_range(struct ivmd_header *m)
593 {
594         struct unity_map_entry *e = 0;
595
596         e = kzalloc(sizeof(*e), GFP_KERNEL);
597         if (e == NULL)
598                 return -ENOMEM;
599
600         switch (m->type) {
601         default:
602         case ACPI_IVMD_TYPE:
603                 e->devid_start = e->devid_end = m->devid;
604                 break;
605         case ACPI_IVMD_TYPE_ALL:
606                 e->devid_start = 0;
607                 e->devid_end = amd_iommu_last_bdf;
608                 break;
609         case ACPI_IVMD_TYPE_RANGE:
610                 e->devid_start = m->devid;
611                 e->devid_end = m->aux;
612                 break;
613         }
614         e->address_start = PAGE_ALIGN(m->range_start);
615         e->address_end = e->address_start + PAGE_ALIGN(m->range_length);
616         e->prot = m->flags >> 1;
617
618         list_add_tail(&e->list, &amd_iommu_unity_map);
619
620         return 0;
621 }
622
623 static int __init init_memory_definitions(struct acpi_table_header *table)
624 {
625         u8 *p = (u8 *)table, *end = (u8 *)table;
626         struct ivmd_header *m;
627
628         INIT_LIST_HEAD(&amd_iommu_unity_map);
629
630         end += table->length;
631         p += IVRS_HEADER_LENGTH;
632
633         while (p < end) {
634                 m = (struct ivmd_header *)p;
635                 if (m->flags & IVMD_FLAG_EXCL_RANGE)
636                         init_exclusion_range(m);
637                 else if (m->flags & IVMD_FLAG_UNITY_MAP)
638                         init_unity_map_range(m);
639
640                 p += m->length;
641         }
642
643         return 0;
644 }
645
646 int __init amd_iommu_init(void)
647 {
648         int i, ret = 0;
649
650
651         if (amd_iommu_disable) {
652                 printk(KERN_INFO "AMD IOMMU disabled by kernel command line\n");
653                 return 0;
654         }
655
656         /*
657          * First parse ACPI tables to find the largest Bus/Dev/Func
658          * we need to handle. Upon this information the shared data
659          * structures for the IOMMUs in the system will be allocated
660          */
661         if (acpi_table_parse("IVRS", find_last_devid_acpi) != 0)
662                 return -ENODEV;
663
664         dev_table_size     = TBL_SIZE(DEV_TABLE_ENTRY_SIZE);
665         alias_table_size   = TBL_SIZE(ALIAS_TABLE_ENTRY_SIZE);
666         rlookup_table_size = TBL_SIZE(RLOOKUP_TABLE_ENTRY_SIZE);
667
668         ret = -ENOMEM;
669
670         /* Device table - directly used by all IOMMUs */
671         amd_iommu_dev_table = (void *)__get_free_pages(GFP_KERNEL,
672                                       get_order(dev_table_size));
673         if (amd_iommu_dev_table == NULL)
674                 goto out;
675
676         /*
677          * Alias table - map PCI Bus/Dev/Func to Bus/Dev/Func the
678          * IOMMU see for that device
679          */
680         amd_iommu_alias_table = (void *)__get_free_pages(GFP_KERNEL,
681                         get_order(alias_table_size));
682         if (amd_iommu_alias_table == NULL)
683                 goto free;
684
685         /* IOMMU rlookup table - find the IOMMU for a specific device */
686         amd_iommu_rlookup_table = (void *)__get_free_pages(GFP_KERNEL,
687                         get_order(rlookup_table_size));
688         if (amd_iommu_rlookup_table == NULL)
689                 goto free;
690
691         /*
692          * Protection Domain table - maps devices to protection domains
693          * This table has the same size as the rlookup_table
694          */
695         amd_iommu_pd_table = (void *)__get_free_pages(GFP_KERNEL,
696                                      get_order(rlookup_table_size));
697         if (amd_iommu_pd_table == NULL)
698                 goto free;
699
700         amd_iommu_pd_alloc_bitmap = (void *)__get_free_pages(GFP_KERNEL,
701                                             get_order(MAX_DOMAIN_ID/8));
702         if (amd_iommu_pd_alloc_bitmap == NULL)
703                 goto free;
704
705         /*
706          * memory is allocated now; initialize the device table with all zeroes
707          * and let all alias entries point to itself
708          */
709         memset(amd_iommu_dev_table, 0, dev_table_size);
710         for (i = 0; i < amd_iommu_last_bdf; ++i)
711                 amd_iommu_alias_table[i] = i;
712
713         memset(amd_iommu_pd_table, 0, rlookup_table_size);
714         memset(amd_iommu_pd_alloc_bitmap, 0, MAX_DOMAIN_ID / 8);
715
716         /*
717          * never allocate domain 0 because its used as the non-allocated and
718          * error value placeholder
719          */
720         amd_iommu_pd_alloc_bitmap[0] = 1;
721
722         /*
723          * now the data structures are allocated and basically initialized
724          * start the real acpi table scan
725          */
726         ret = -ENODEV;
727         if (acpi_table_parse("IVRS", init_iommu_all) != 0)
728                 goto free;
729
730         if (acpi_table_parse("IVRS", init_memory_definitions) != 0)
731                 goto free;
732
733         printk(KERN_INFO "AMD IOMMU: aperture size is %d MB\n",
734                         (1 << (amd_iommu_aperture_order-20)));
735
736         printk(KERN_INFO "AMD IOMMU: device isolation ");
737         if (amd_iommu_isolate)
738                 printk("enabled\n");
739         else
740                 printk("disabled\n");
741
742 out:
743         return ret;
744
745 free:
746         if (amd_iommu_pd_alloc_bitmap)
747                 free_pages((unsigned long)amd_iommu_pd_alloc_bitmap, 1);
748
749         if (amd_iommu_pd_table)
750                 free_pages((unsigned long)amd_iommu_pd_table,
751                                 get_order(rlookup_table_size));
752
753         if (amd_iommu_rlookup_table)
754                 free_pages((unsigned long)amd_iommu_rlookup_table,
755                                 get_order(rlookup_table_size));
756
757         if (amd_iommu_alias_table)
758                 free_pages((unsigned long)amd_iommu_alias_table,
759                                 get_order(alias_table_size));
760
761         if (amd_iommu_dev_table)
762                 free_pages((unsigned long)amd_iommu_dev_table,
763                                 get_order(dev_table_size));
764
765         free_iommu_all();
766
767         free_unity_maps();
768
769         goto out;
770 }
771
772 static int __init early_amd_iommu_detect(struct acpi_table_header *table)
773 {
774         return 0;
775 }
776
777 void __init amd_iommu_detect(void)
778 {
779         if (swiotlb || no_iommu || iommu_detected)
780                 return;
781
782         if (amd_iommu_disable)
783                 return;
784
785         if (acpi_table_parse("IVRS", early_amd_iommu_detect) == 0) {
786                 iommu_detected = 1;
787                 gart_iommu_aperture_disabled = 1;
788                 gart_iommu_aperture = 0;
789         }
790 }
791