AMD IOMMU: reset command buffer pointers manually
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / arch / x86 / kernel / amd_iommu_init.c
blob1226ec6e080c8256d06ea3cfdc3acdcfd4113ea5
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>
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.
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.
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
20 #include <linux/pci.h>
21 #include <linux/acpi.h>
22 #include <linux/gfp.h>
23 #include <linux/list.h>
24 #include <linux/sysdev.h>
25 #include <asm/pci-direct.h>
26 #include <asm/amd_iommu_types.h>
27 #include <asm/amd_iommu.h>
28 #include <asm/iommu.h>
31 * definitions for the ACPI scanning code
33 #define PCI_BUS(x) (((x) >> 8) & 0xff)
34 #define IVRS_HEADER_LENGTH 48
36 #define ACPI_IVHD_TYPE 0x10
37 #define ACPI_IVMD_TYPE_ALL 0x20
38 #define ACPI_IVMD_TYPE 0x21
39 #define ACPI_IVMD_TYPE_RANGE 0x22
41 #define IVHD_DEV_ALL 0x01
42 #define IVHD_DEV_SELECT 0x02
43 #define IVHD_DEV_SELECT_RANGE_START 0x03
44 #define IVHD_DEV_RANGE_END 0x04
45 #define IVHD_DEV_ALIAS 0x42
46 #define IVHD_DEV_ALIAS_RANGE 0x43
47 #define IVHD_DEV_EXT_SELECT 0x46
48 #define IVHD_DEV_EXT_SELECT_RANGE 0x47
50 #define IVHD_FLAG_HT_TUN_EN 0x00
51 #define IVHD_FLAG_PASSPW_EN 0x01
52 #define IVHD_FLAG_RESPASSPW_EN 0x02
53 #define IVHD_FLAG_ISOC_EN 0x03
55 #define IVMD_FLAG_EXCL_RANGE 0x08
56 #define IVMD_FLAG_UNITY_MAP 0x01
58 #define ACPI_DEVFLAG_INITPASS 0x01
59 #define ACPI_DEVFLAG_EXTINT 0x02
60 #define ACPI_DEVFLAG_NMI 0x04
61 #define ACPI_DEVFLAG_SYSMGT1 0x10
62 #define ACPI_DEVFLAG_SYSMGT2 0x20
63 #define ACPI_DEVFLAG_LINT0 0x40
64 #define ACPI_DEVFLAG_LINT1 0x80
65 #define ACPI_DEVFLAG_ATSDIS 0x10000000
68 * ACPI table definitions
70 * These data structures are laid over the table to parse the important values
71 * out of it.
75 * structure describing one IOMMU in the ACPI table. Typically followed by one
76 * or more ivhd_entrys.
78 struct ivhd_header {
79 u8 type;
80 u8 flags;
81 u16 length;
82 u16 devid;
83 u16 cap_ptr;
84 u64 mmio_phys;
85 u16 pci_seg;
86 u16 info;
87 u32 reserved;
88 } __attribute__((packed));
91 * A device entry describing which devices a specific IOMMU translates and
92 * which requestor ids they use.
94 struct ivhd_entry {
95 u8 type;
96 u16 devid;
97 u8 flags;
98 u32 ext;
99 } __attribute__((packed));
102 * An AMD IOMMU memory definition structure. It defines things like exclusion
103 * ranges for devices and regions that should be unity mapped.
105 struct ivmd_header {
106 u8 type;
107 u8 flags;
108 u16 length;
109 u16 devid;
110 u16 aux;
111 u64 resv;
112 u64 range_start;
113 u64 range_length;
114 } __attribute__((packed));
116 static int __initdata amd_iommu_detected;
118 u16 amd_iommu_last_bdf; /* largest PCI device id we have
119 to handle */
120 LIST_HEAD(amd_iommu_unity_map); /* a list of required unity mappings
121 we find in ACPI */
122 unsigned amd_iommu_aperture_order = 26; /* size of aperture in power of 2 */
123 int amd_iommu_isolate = 1; /* if 1, device isolation is enabled */
125 LIST_HEAD(amd_iommu_list); /* list of all AMD IOMMUs in the
126 system */
129 * Pointer to the device table which is shared by all AMD IOMMUs
130 * it is indexed by the PCI device id or the HT unit id and contains
131 * information about the domain the device belongs to as well as the
132 * page table root pointer.
134 struct dev_table_entry *amd_iommu_dev_table;
137 * The alias table is a driver specific data structure which contains the
138 * mappings of the PCI device ids to the actual requestor ids on the IOMMU.
139 * More than one device can share the same requestor id.
141 u16 *amd_iommu_alias_table;
144 * The rlookup table is used to find the IOMMU which is responsible
145 * for a specific device. It is also indexed by the PCI device id.
147 struct amd_iommu **amd_iommu_rlookup_table;
150 * The pd table (protection domain table) is used to find the protection domain
151 * data structure a device belongs to. Indexed with the PCI device id too.
153 struct protection_domain **amd_iommu_pd_table;
156 * AMD IOMMU allows up to 2^16 differend protection domains. This is a bitmap
157 * to know which ones are already in use.
159 unsigned long *amd_iommu_pd_alloc_bitmap;
161 static u32 dev_table_size; /* size of the device table */
162 static u32 alias_table_size; /* size of the alias table */
163 static u32 rlookup_table_size; /* size if the rlookup table */
165 static inline void update_last_devid(u16 devid)
167 if (devid > amd_iommu_last_bdf)
168 amd_iommu_last_bdf = devid;
171 static inline unsigned long tbl_size(int entry_size)
173 unsigned shift = PAGE_SHIFT +
174 get_order(amd_iommu_last_bdf * entry_size);
176 return 1UL << shift;
179 /****************************************************************************
181 * AMD IOMMU MMIO register space handling functions
183 * These functions are used to program the IOMMU device registers in
184 * MMIO space required for that driver.
186 ****************************************************************************/
189 * This function set the exclusion range in the IOMMU. DMA accesses to the
190 * exclusion range are passed through untranslated
192 static void __init iommu_set_exclusion_range(struct amd_iommu *iommu)
194 u64 start = iommu->exclusion_start & PAGE_MASK;
195 u64 limit = (start + iommu->exclusion_length) & PAGE_MASK;
196 u64 entry;
198 if (!iommu->exclusion_start)
199 return;
201 entry = start | MMIO_EXCL_ENABLE_MASK;
202 memcpy_toio(iommu->mmio_base + MMIO_EXCL_BASE_OFFSET,
203 &entry, sizeof(entry));
205 entry = limit;
206 memcpy_toio(iommu->mmio_base + MMIO_EXCL_LIMIT_OFFSET,
207 &entry, sizeof(entry));
210 /* Programs the physical address of the device table into the IOMMU hardware */
211 static void __init iommu_set_device_table(struct amd_iommu *iommu)
213 u64 entry;
215 BUG_ON(iommu->mmio_base == NULL);
217 entry = virt_to_phys(amd_iommu_dev_table);
218 entry |= (dev_table_size >> 12) - 1;
219 memcpy_toio(iommu->mmio_base + MMIO_DEV_TABLE_OFFSET,
220 &entry, sizeof(entry));
223 /* Generic functions to enable/disable certain features of the IOMMU. */
224 static void __init iommu_feature_enable(struct amd_iommu *iommu, u8 bit)
226 u32 ctrl;
228 ctrl = readl(iommu->mmio_base + MMIO_CONTROL_OFFSET);
229 ctrl |= (1 << bit);
230 writel(ctrl, iommu->mmio_base + MMIO_CONTROL_OFFSET);
233 static void __init iommu_feature_disable(struct amd_iommu *iommu, u8 bit)
235 u32 ctrl;
237 ctrl = (u64)readl(iommu->mmio_base + MMIO_CONTROL_OFFSET);
238 ctrl &= ~(1 << bit);
239 writel(ctrl, iommu->mmio_base + MMIO_CONTROL_OFFSET);
242 /* Function to enable the hardware */
243 void __init iommu_enable(struct amd_iommu *iommu)
245 printk(KERN_INFO "AMD IOMMU: Enabling IOMMU at ");
246 print_devid(iommu->devid, 0);
247 printk(" cap 0x%hx\n", iommu->cap_ptr);
249 iommu_feature_enable(iommu, CONTROL_IOMMU_EN);
253 * mapping and unmapping functions for the IOMMU MMIO space. Each AMD IOMMU in
254 * the system has one.
256 static u8 * __init iommu_map_mmio_space(u64 address)
258 u8 *ret;
260 if (!request_mem_region(address, MMIO_REGION_LENGTH, "amd_iommu"))
261 return NULL;
263 ret = ioremap_nocache(address, MMIO_REGION_LENGTH);
264 if (ret != NULL)
265 return ret;
267 release_mem_region(address, MMIO_REGION_LENGTH);
269 return NULL;
272 static void __init iommu_unmap_mmio_space(struct amd_iommu *iommu)
274 if (iommu->mmio_base)
275 iounmap(iommu->mmio_base);
276 release_mem_region(iommu->mmio_phys, MMIO_REGION_LENGTH);
279 /****************************************************************************
281 * The functions below belong to the first pass of AMD IOMMU ACPI table
282 * parsing. In this pass we try to find out the highest device id this
283 * code has to handle. Upon this information the size of the shared data
284 * structures is determined later.
286 ****************************************************************************/
289 * This function reads the last device id the IOMMU has to handle from the PCI
290 * capability header for this IOMMU
292 static int __init find_last_devid_on_pci(int bus, int dev, int fn, int cap_ptr)
294 u32 cap;
296 cap = read_pci_config(bus, dev, fn, cap_ptr+MMIO_RANGE_OFFSET);
297 update_last_devid(calc_devid(MMIO_GET_BUS(cap), MMIO_GET_LD(cap)));
299 return 0;
303 * After reading the highest device id from the IOMMU PCI capability header
304 * this function looks if there is a higher device id defined in the ACPI table
306 static int __init find_last_devid_from_ivhd(struct ivhd_header *h)
308 u8 *p = (void *)h, *end = (void *)h;
309 struct ivhd_entry *dev;
311 p += sizeof(*h);
312 end += h->length;
314 find_last_devid_on_pci(PCI_BUS(h->devid),
315 PCI_SLOT(h->devid),
316 PCI_FUNC(h->devid),
317 h->cap_ptr);
319 while (p < end) {
320 dev = (struct ivhd_entry *)p;
321 switch (dev->type) {
322 case IVHD_DEV_SELECT:
323 case IVHD_DEV_RANGE_END:
324 case IVHD_DEV_ALIAS:
325 case IVHD_DEV_EXT_SELECT:
326 /* all the above subfield types refer to device ids */
327 update_last_devid(dev->devid);
328 break;
329 default:
330 break;
332 p += 0x04 << (*p >> 6);
335 WARN_ON(p != end);
337 return 0;
341 * Iterate over all IVHD entries in the ACPI table and find the highest device
342 * id which we need to handle. This is the first of three functions which parse
343 * the ACPI table. So we check the checksum here.
345 static int __init find_last_devid_acpi(struct acpi_table_header *table)
347 int i;
348 u8 checksum = 0, *p = (u8 *)table, *end = (u8 *)table;
349 struct ivhd_header *h;
352 * Validate checksum here so we don't need to do it when
353 * we actually parse the table
355 for (i = 0; i < table->length; ++i)
356 checksum += p[i];
357 if (checksum != 0)
358 /* ACPI table corrupt */
359 return -ENODEV;
361 p += IVRS_HEADER_LENGTH;
363 end += table->length;
364 while (p < end) {
365 h = (struct ivhd_header *)p;
366 switch (h->type) {
367 case ACPI_IVHD_TYPE:
368 find_last_devid_from_ivhd(h);
369 break;
370 default:
371 break;
373 p += h->length;
375 WARN_ON(p != end);
377 return 0;
380 /****************************************************************************
382 * The following functions belong the the code path which parses the ACPI table
383 * the second time. In this ACPI parsing iteration we allocate IOMMU specific
384 * data structures, initialize the device/alias/rlookup table and also
385 * basically initialize the hardware.
387 ****************************************************************************/
390 * Allocates the command buffer. This buffer is per AMD IOMMU. We can
391 * write commands to that buffer later and the IOMMU will execute them
392 * asynchronously
394 static u8 * __init alloc_command_buffer(struct amd_iommu *iommu)
396 u8 *cmd_buf = (u8 *)__get_free_pages(GFP_KERNEL | __GFP_ZERO,
397 get_order(CMD_BUFFER_SIZE));
398 u64 entry;
400 if (cmd_buf == NULL)
401 return NULL;
403 iommu->cmd_buf_size = CMD_BUFFER_SIZE;
405 entry = (u64)virt_to_phys(cmd_buf);
406 entry |= MMIO_CMD_SIZE_512;
407 memcpy_toio(iommu->mmio_base + MMIO_CMD_BUF_OFFSET,
408 &entry, sizeof(entry));
410 /* set head and tail to zero manually */
411 writel(0x00, iommu->mmio_base + MMIO_CMD_HEAD_OFFSET);
412 writel(0x00, iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
414 iommu_feature_enable(iommu, CONTROL_CMDBUF_EN);
416 return cmd_buf;
419 static void __init free_command_buffer(struct amd_iommu *iommu)
421 free_pages((unsigned long)iommu->cmd_buf, get_order(CMD_BUFFER_SIZE));
424 /* sets a specific bit in the device table entry. */
425 static void set_dev_entry_bit(u16 devid, u8 bit)
427 int i = (bit >> 5) & 0x07;
428 int _bit = bit & 0x1f;
430 amd_iommu_dev_table[devid].data[i] |= (1 << _bit);
433 /* Writes the specific IOMMU for a device into the rlookup table */
434 static void __init set_iommu_for_device(struct amd_iommu *iommu, u16 devid)
436 amd_iommu_rlookup_table[devid] = iommu;
440 * This function takes the device specific flags read from the ACPI
441 * table and sets up the device table entry with that information
443 static void __init set_dev_entry_from_acpi(struct amd_iommu *iommu,
444 u16 devid, u32 flags, u32 ext_flags)
446 if (flags & ACPI_DEVFLAG_INITPASS)
447 set_dev_entry_bit(devid, DEV_ENTRY_INIT_PASS);
448 if (flags & ACPI_DEVFLAG_EXTINT)
449 set_dev_entry_bit(devid, DEV_ENTRY_EINT_PASS);
450 if (flags & ACPI_DEVFLAG_NMI)
451 set_dev_entry_bit(devid, DEV_ENTRY_NMI_PASS);
452 if (flags & ACPI_DEVFLAG_SYSMGT1)
453 set_dev_entry_bit(devid, DEV_ENTRY_SYSMGT1);
454 if (flags & ACPI_DEVFLAG_SYSMGT2)
455 set_dev_entry_bit(devid, DEV_ENTRY_SYSMGT2);
456 if (flags & ACPI_DEVFLAG_LINT0)
457 set_dev_entry_bit(devid, DEV_ENTRY_LINT0_PASS);
458 if (flags & ACPI_DEVFLAG_LINT1)
459 set_dev_entry_bit(devid, DEV_ENTRY_LINT1_PASS);
461 set_iommu_for_device(iommu, devid);
465 * Reads the device exclusion range from ACPI and initialize IOMMU with
466 * it
468 static void __init set_device_exclusion_range(u16 devid, struct ivmd_header *m)
470 struct amd_iommu *iommu = amd_iommu_rlookup_table[devid];
472 if (!(m->flags & IVMD_FLAG_EXCL_RANGE))
473 return;
475 if (iommu) {
477 * We only can configure exclusion ranges per IOMMU, not
478 * per device. But we can enable the exclusion range per
479 * device. This is done here
481 set_dev_entry_bit(m->devid, DEV_ENTRY_EX);
482 iommu->exclusion_start = m->range_start;
483 iommu->exclusion_length = m->range_length;
488 * This function reads some important data from the IOMMU PCI space and
489 * initializes the driver data structure with it. It reads the hardware
490 * capabilities and the first/last device entries
492 static void __init init_iommu_from_pci(struct amd_iommu *iommu)
494 int bus = PCI_BUS(iommu->devid);
495 int dev = PCI_SLOT(iommu->devid);
496 int fn = PCI_FUNC(iommu->devid);
497 int cap_ptr = iommu->cap_ptr;
498 u32 range;
500 iommu->cap = read_pci_config(bus, dev, fn, cap_ptr+MMIO_CAP_HDR_OFFSET);
502 range = read_pci_config(bus, dev, fn, cap_ptr+MMIO_RANGE_OFFSET);
503 iommu->first_device = calc_devid(MMIO_GET_BUS(range),
504 MMIO_GET_FD(range));
505 iommu->last_device = calc_devid(MMIO_GET_BUS(range),
506 MMIO_GET_LD(range));
510 * Takes a pointer to an AMD IOMMU entry in the ACPI table and
511 * initializes the hardware and our data structures with it.
513 static void __init init_iommu_from_acpi(struct amd_iommu *iommu,
514 struct ivhd_header *h)
516 u8 *p = (u8 *)h;
517 u8 *end = p, flags = 0;
518 u16 dev_i, devid = 0, devid_start = 0, devid_to = 0;
519 u32 ext_flags = 0;
520 bool alias = false;
521 struct ivhd_entry *e;
524 * First set the recommended feature enable bits from ACPI
525 * into the IOMMU control registers
527 h->flags & IVHD_FLAG_HT_TUN_EN ?
528 iommu_feature_enable(iommu, CONTROL_HT_TUN_EN) :
529 iommu_feature_disable(iommu, CONTROL_HT_TUN_EN);
531 h->flags & IVHD_FLAG_PASSPW_EN ?
532 iommu_feature_enable(iommu, CONTROL_PASSPW_EN) :
533 iommu_feature_disable(iommu, CONTROL_PASSPW_EN);
535 h->flags & IVHD_FLAG_RESPASSPW_EN ?
536 iommu_feature_enable(iommu, CONTROL_RESPASSPW_EN) :
537 iommu_feature_disable(iommu, CONTROL_RESPASSPW_EN);
539 h->flags & IVHD_FLAG_ISOC_EN ?
540 iommu_feature_enable(iommu, CONTROL_ISOC_EN) :
541 iommu_feature_disable(iommu, CONTROL_ISOC_EN);
544 * make IOMMU memory accesses cache coherent
546 iommu_feature_enable(iommu, CONTROL_COHERENT_EN);
549 * Done. Now parse the device entries
551 p += sizeof(struct ivhd_header);
552 end += h->length;
554 while (p < end) {
555 e = (struct ivhd_entry *)p;
556 switch (e->type) {
557 case IVHD_DEV_ALL:
558 for (dev_i = iommu->first_device;
559 dev_i <= iommu->last_device; ++dev_i)
560 set_dev_entry_from_acpi(iommu, dev_i,
561 e->flags, 0);
562 break;
563 case IVHD_DEV_SELECT:
564 devid = e->devid;
565 set_dev_entry_from_acpi(iommu, devid, e->flags, 0);
566 break;
567 case IVHD_DEV_SELECT_RANGE_START:
568 devid_start = e->devid;
569 flags = e->flags;
570 ext_flags = 0;
571 alias = false;
572 break;
573 case IVHD_DEV_ALIAS:
574 devid = e->devid;
575 devid_to = e->ext >> 8;
576 set_dev_entry_from_acpi(iommu, devid, e->flags, 0);
577 amd_iommu_alias_table[devid] = devid_to;
578 break;
579 case IVHD_DEV_ALIAS_RANGE:
580 devid_start = e->devid;
581 flags = e->flags;
582 devid_to = e->ext >> 8;
583 ext_flags = 0;
584 alias = true;
585 break;
586 case IVHD_DEV_EXT_SELECT:
587 devid = e->devid;
588 set_dev_entry_from_acpi(iommu, devid, e->flags,
589 e->ext);
590 break;
591 case IVHD_DEV_EXT_SELECT_RANGE:
592 devid_start = e->devid;
593 flags = e->flags;
594 ext_flags = e->ext;
595 alias = false;
596 break;
597 case IVHD_DEV_RANGE_END:
598 devid = e->devid;
599 for (dev_i = devid_start; dev_i <= devid; ++dev_i) {
600 if (alias)
601 amd_iommu_alias_table[dev_i] = devid_to;
602 set_dev_entry_from_acpi(iommu,
603 amd_iommu_alias_table[dev_i],
604 flags, ext_flags);
606 break;
607 default:
608 break;
611 p += 0x04 << (e->type >> 6);
615 /* Initializes the device->iommu mapping for the driver */
616 static int __init init_iommu_devices(struct amd_iommu *iommu)
618 u16 i;
620 for (i = iommu->first_device; i <= iommu->last_device; ++i)
621 set_iommu_for_device(iommu, i);
623 return 0;
626 static void __init free_iommu_one(struct amd_iommu *iommu)
628 free_command_buffer(iommu);
629 iommu_unmap_mmio_space(iommu);
632 static void __init free_iommu_all(void)
634 struct amd_iommu *iommu, *next;
636 list_for_each_entry_safe(iommu, next, &amd_iommu_list, list) {
637 list_del(&iommu->list);
638 free_iommu_one(iommu);
639 kfree(iommu);
644 * This function clues the initialization function for one IOMMU
645 * together and also allocates the command buffer and programs the
646 * hardware. It does NOT enable the IOMMU. This is done afterwards.
648 static int __init init_iommu_one(struct amd_iommu *iommu, struct ivhd_header *h)
650 spin_lock_init(&iommu->lock);
651 list_add_tail(&iommu->list, &amd_iommu_list);
654 * Copy data from ACPI table entry to the iommu struct
656 iommu->devid = h->devid;
657 iommu->cap_ptr = h->cap_ptr;
658 iommu->mmio_phys = h->mmio_phys;
659 iommu->mmio_base = iommu_map_mmio_space(h->mmio_phys);
660 if (!iommu->mmio_base)
661 return -ENOMEM;
663 iommu_set_device_table(iommu);
664 iommu->cmd_buf = alloc_command_buffer(iommu);
665 if (!iommu->cmd_buf)
666 return -ENOMEM;
668 init_iommu_from_pci(iommu);
669 init_iommu_from_acpi(iommu, h);
670 init_iommu_devices(iommu);
672 return 0;
676 * Iterates over all IOMMU entries in the ACPI table, allocates the
677 * IOMMU structure and initializes it with init_iommu_one()
679 static int __init init_iommu_all(struct acpi_table_header *table)
681 u8 *p = (u8 *)table, *end = (u8 *)table;
682 struct ivhd_header *h;
683 struct amd_iommu *iommu;
684 int ret;
686 end += table->length;
687 p += IVRS_HEADER_LENGTH;
689 while (p < end) {
690 h = (struct ivhd_header *)p;
691 switch (*p) {
692 case ACPI_IVHD_TYPE:
693 iommu = kzalloc(sizeof(struct amd_iommu), GFP_KERNEL);
694 if (iommu == NULL)
695 return -ENOMEM;
696 ret = init_iommu_one(iommu, h);
697 if (ret)
698 return ret;
699 break;
700 default:
701 break;
703 p += h->length;
706 WARN_ON(p != end);
708 return 0;
711 /****************************************************************************
713 * The next functions belong to the third pass of parsing the ACPI
714 * table. In this last pass the memory mapping requirements are
715 * gathered (like exclusion and unity mapping reanges).
717 ****************************************************************************/
719 static void __init free_unity_maps(void)
721 struct unity_map_entry *entry, *next;
723 list_for_each_entry_safe(entry, next, &amd_iommu_unity_map, list) {
724 list_del(&entry->list);
725 kfree(entry);
729 /* called when we find an exclusion range definition in ACPI */
730 static int __init init_exclusion_range(struct ivmd_header *m)
732 int i;
734 switch (m->type) {
735 case ACPI_IVMD_TYPE:
736 set_device_exclusion_range(m->devid, m);
737 break;
738 case ACPI_IVMD_TYPE_ALL:
739 for (i = 0; i <= amd_iommu_last_bdf; ++i)
740 set_device_exclusion_range(i, m);
741 break;
742 case ACPI_IVMD_TYPE_RANGE:
743 for (i = m->devid; i <= m->aux; ++i)
744 set_device_exclusion_range(i, m);
745 break;
746 default:
747 break;
750 return 0;
753 /* called for unity map ACPI definition */
754 static int __init init_unity_map_range(struct ivmd_header *m)
756 struct unity_map_entry *e = 0;
758 e = kzalloc(sizeof(*e), GFP_KERNEL);
759 if (e == NULL)
760 return -ENOMEM;
762 switch (m->type) {
763 default:
764 case ACPI_IVMD_TYPE:
765 e->devid_start = e->devid_end = m->devid;
766 break;
767 case ACPI_IVMD_TYPE_ALL:
768 e->devid_start = 0;
769 e->devid_end = amd_iommu_last_bdf;
770 break;
771 case ACPI_IVMD_TYPE_RANGE:
772 e->devid_start = m->devid;
773 e->devid_end = m->aux;
774 break;
776 e->address_start = PAGE_ALIGN(m->range_start);
777 e->address_end = e->address_start + PAGE_ALIGN(m->range_length);
778 e->prot = m->flags >> 1;
780 list_add_tail(&e->list, &amd_iommu_unity_map);
782 return 0;
785 /* iterates over all memory definitions we find in the ACPI table */
786 static int __init init_memory_definitions(struct acpi_table_header *table)
788 u8 *p = (u8 *)table, *end = (u8 *)table;
789 struct ivmd_header *m;
791 end += table->length;
792 p += IVRS_HEADER_LENGTH;
794 while (p < end) {
795 m = (struct ivmd_header *)p;
796 if (m->flags & IVMD_FLAG_EXCL_RANGE)
797 init_exclusion_range(m);
798 else if (m->flags & IVMD_FLAG_UNITY_MAP)
799 init_unity_map_range(m);
801 p += m->length;
804 return 0;
808 * Init the device table to not allow DMA access for devices and
809 * suppress all page faults
811 static void init_device_table(void)
813 u16 devid;
815 for (devid = 0; devid <= amd_iommu_last_bdf; ++devid) {
816 set_dev_entry_bit(devid, DEV_ENTRY_VALID);
817 set_dev_entry_bit(devid, DEV_ENTRY_TRANSLATION);
818 set_dev_entry_bit(devid, DEV_ENTRY_NO_PAGE_FAULT);
823 * This function finally enables all IOMMUs found in the system after
824 * they have been initialized
826 static void __init enable_iommus(void)
828 struct amd_iommu *iommu;
830 list_for_each_entry(iommu, &amd_iommu_list, list) {
831 iommu_set_exclusion_range(iommu);
832 iommu_enable(iommu);
837 * Suspend/Resume support
838 * disable suspend until real resume implemented
841 static int amd_iommu_resume(struct sys_device *dev)
843 return 0;
846 static int amd_iommu_suspend(struct sys_device *dev, pm_message_t state)
848 return -EINVAL;
851 static struct sysdev_class amd_iommu_sysdev_class = {
852 .name = "amd_iommu",
853 .suspend = amd_iommu_suspend,
854 .resume = amd_iommu_resume,
857 static struct sys_device device_amd_iommu = {
858 .id = 0,
859 .cls = &amd_iommu_sysdev_class,
863 * This is the core init function for AMD IOMMU hardware in the system.
864 * This function is called from the generic x86 DMA layer initialization
865 * code.
867 * This function basically parses the ACPI table for AMD IOMMU (IVRS)
868 * three times:
870 * 1 pass) Find the highest PCI device id the driver has to handle.
871 * Upon this information the size of the data structures is
872 * determined that needs to be allocated.
874 * 2 pass) Initialize the data structures just allocated with the
875 * information in the ACPI table about available AMD IOMMUs
876 * in the system. It also maps the PCI devices in the
877 * system to specific IOMMUs
879 * 3 pass) After the basic data structures are allocated and
880 * initialized we update them with information about memory
881 * remapping requirements parsed out of the ACPI table in
882 * this last pass.
884 * After that the hardware is initialized and ready to go. In the last
885 * step we do some Linux specific things like registering the driver in
886 * the dma_ops interface and initializing the suspend/resume support
887 * functions. Finally it prints some information about AMD IOMMUs and
888 * the driver state and enables the hardware.
890 int __init amd_iommu_init(void)
892 int i, ret = 0;
895 if (no_iommu) {
896 printk(KERN_INFO "AMD IOMMU disabled by kernel command line\n");
897 return 0;
900 if (!amd_iommu_detected)
901 return -ENODEV;
904 * First parse ACPI tables to find the largest Bus/Dev/Func
905 * we need to handle. Upon this information the shared data
906 * structures for the IOMMUs in the system will be allocated
908 if (acpi_table_parse("IVRS", find_last_devid_acpi) != 0)
909 return -ENODEV;
911 dev_table_size = tbl_size(DEV_TABLE_ENTRY_SIZE);
912 alias_table_size = tbl_size(ALIAS_TABLE_ENTRY_SIZE);
913 rlookup_table_size = tbl_size(RLOOKUP_TABLE_ENTRY_SIZE);
915 ret = -ENOMEM;
917 /* Device table - directly used by all IOMMUs */
918 amd_iommu_dev_table = (void *)__get_free_pages(GFP_KERNEL | __GFP_ZERO,
919 get_order(dev_table_size));
920 if (amd_iommu_dev_table == NULL)
921 goto out;
924 * Alias table - map PCI Bus/Dev/Func to Bus/Dev/Func the
925 * IOMMU see for that device
927 amd_iommu_alias_table = (void *)__get_free_pages(GFP_KERNEL,
928 get_order(alias_table_size));
929 if (amd_iommu_alias_table == NULL)
930 goto free;
932 /* IOMMU rlookup table - find the IOMMU for a specific device */
933 amd_iommu_rlookup_table = (void *)__get_free_pages(GFP_KERNEL,
934 get_order(rlookup_table_size));
935 if (amd_iommu_rlookup_table == NULL)
936 goto free;
939 * Protection Domain table - maps devices to protection domains
940 * This table has the same size as the rlookup_table
942 amd_iommu_pd_table = (void *)__get_free_pages(GFP_KERNEL | __GFP_ZERO,
943 get_order(rlookup_table_size));
944 if (amd_iommu_pd_table == NULL)
945 goto free;
947 amd_iommu_pd_alloc_bitmap = (void *)__get_free_pages(
948 GFP_KERNEL | __GFP_ZERO,
949 get_order(MAX_DOMAIN_ID/8));
950 if (amd_iommu_pd_alloc_bitmap == NULL)
951 goto free;
953 /* init the device table */
954 init_device_table();
957 * let all alias entries point to itself
959 for (i = 0; i <= amd_iommu_last_bdf; ++i)
960 amd_iommu_alias_table[i] = i;
963 * never allocate domain 0 because its used as the non-allocated and
964 * error value placeholder
966 amd_iommu_pd_alloc_bitmap[0] = 1;
969 * now the data structures are allocated and basically initialized
970 * start the real acpi table scan
972 ret = -ENODEV;
973 if (acpi_table_parse("IVRS", init_iommu_all) != 0)
974 goto free;
976 if (acpi_table_parse("IVRS", init_memory_definitions) != 0)
977 goto free;
979 ret = sysdev_class_register(&amd_iommu_sysdev_class);
980 if (ret)
981 goto free;
983 ret = sysdev_register(&device_amd_iommu);
984 if (ret)
985 goto free;
987 ret = amd_iommu_init_dma_ops();
988 if (ret)
989 goto free;
991 enable_iommus();
993 printk(KERN_INFO "AMD IOMMU: aperture size is %d MB\n",
994 (1 << (amd_iommu_aperture_order-20)));
996 printk(KERN_INFO "AMD IOMMU: device isolation ");
997 if (amd_iommu_isolate)
998 printk("enabled\n");
999 else
1000 printk("disabled\n");
1002 out:
1003 return ret;
1005 free:
1006 free_pages((unsigned long)amd_iommu_pd_alloc_bitmap, 1);
1008 free_pages((unsigned long)amd_iommu_pd_table,
1009 get_order(rlookup_table_size));
1011 free_pages((unsigned long)amd_iommu_rlookup_table,
1012 get_order(rlookup_table_size));
1014 free_pages((unsigned long)amd_iommu_alias_table,
1015 get_order(alias_table_size));
1017 free_pages((unsigned long)amd_iommu_dev_table,
1018 get_order(dev_table_size));
1020 free_iommu_all();
1022 free_unity_maps();
1024 goto out;
1027 /****************************************************************************
1029 * Early detect code. This code runs at IOMMU detection time in the DMA
1030 * layer. It just looks if there is an IVRS ACPI table to detect AMD
1031 * IOMMUs
1033 ****************************************************************************/
1034 static int __init early_amd_iommu_detect(struct acpi_table_header *table)
1036 return 0;
1039 void __init amd_iommu_detect(void)
1041 if (swiotlb || no_iommu || (iommu_detected && !gart_iommu_aperture))
1042 return;
1044 if (acpi_table_parse("IVRS", early_amd_iommu_detect) == 0) {
1045 iommu_detected = 1;
1046 amd_iommu_detected = 1;
1047 #ifdef CONFIG_GART_IOMMU
1048 gart_iommu_aperture_disabled = 1;
1049 gart_iommu_aperture = 0;
1050 #endif
1054 /****************************************************************************
1056 * Parsing functions for the AMD IOMMU specific kernel command line
1057 * options.
1059 ****************************************************************************/
1061 static int __init parse_amd_iommu_options(char *str)
1063 for (; *str; ++str) {
1064 if (strcmp(str, "isolate") == 0)
1065 amd_iommu_isolate = 1;
1068 return 1;
1071 static int __init parse_amd_iommu_size_options(char *str)
1073 unsigned order = PAGE_SHIFT + get_order(memparse(str, &str));
1075 if ((order > 24) && (order < 31))
1076 amd_iommu_aperture_order = order;
1078 return 1;
1081 __setup("amd_iommu=", parse_amd_iommu_options);
1082 __setup("amd_iommu_size=", parse_amd_iommu_size_options);