2 * Copyright (C) 2007-2010 Advanced Micro Devices, Inc.
3 * Author: Joerg Roedel <jroedel@suse.de>
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/list.h>
23 #include <linux/slab.h>
24 #include <linux/syscore_ops.h>
25 #include <linux/interrupt.h>
26 #include <linux/msi.h>
27 #include <linux/amd-iommu.h>
28 #include <linux/export.h>
29 #include <linux/iommu.h>
30 #include <asm/pci-direct.h>
31 #include <asm/iommu.h>
33 #include <asm/x86_init.h>
34 #include <asm/iommu_table.h>
35 #include <asm/io_apic.h>
36 #include <asm/irq_remapping.h>
38 #include "amd_iommu_proto.h"
39 #include "amd_iommu_types.h"
40 #include "irq_remapping.h"
43 * definitions for the ACPI scanning code
45 #define IVRS_HEADER_LENGTH 48
47 #define ACPI_IVHD_TYPE 0x10
48 #define ACPI_IVMD_TYPE_ALL 0x20
49 #define ACPI_IVMD_TYPE 0x21
50 #define ACPI_IVMD_TYPE_RANGE 0x22
52 #define IVHD_DEV_ALL 0x01
53 #define IVHD_DEV_SELECT 0x02
54 #define IVHD_DEV_SELECT_RANGE_START 0x03
55 #define IVHD_DEV_RANGE_END 0x04
56 #define IVHD_DEV_ALIAS 0x42
57 #define IVHD_DEV_ALIAS_RANGE 0x43
58 #define IVHD_DEV_EXT_SELECT 0x46
59 #define IVHD_DEV_EXT_SELECT_RANGE 0x47
60 #define IVHD_DEV_SPECIAL 0x48
62 #define IVHD_SPECIAL_IOAPIC 1
63 #define IVHD_SPECIAL_HPET 2
65 #define IVHD_FLAG_HT_TUN_EN_MASK 0x01
66 #define IVHD_FLAG_PASSPW_EN_MASK 0x02
67 #define IVHD_FLAG_RESPASSPW_EN_MASK 0x04
68 #define IVHD_FLAG_ISOC_EN_MASK 0x08
70 #define IVMD_FLAG_EXCL_RANGE 0x08
71 #define IVMD_FLAG_UNITY_MAP 0x01
73 #define ACPI_DEVFLAG_INITPASS 0x01
74 #define ACPI_DEVFLAG_EXTINT 0x02
75 #define ACPI_DEVFLAG_NMI 0x04
76 #define ACPI_DEVFLAG_SYSMGT1 0x10
77 #define ACPI_DEVFLAG_SYSMGT2 0x20
78 #define ACPI_DEVFLAG_LINT0 0x40
79 #define ACPI_DEVFLAG_LINT1 0x80
80 #define ACPI_DEVFLAG_ATSDIS 0x10000000
83 * ACPI table definitions
85 * These data structures are laid over the table to parse the important values
90 * structure describing one IOMMU in the ACPI table. Typically followed by one
91 * or more ivhd_entrys.
103 } __attribute__((packed
));
106 * A device entry describing which devices a specific IOMMU translates and
107 * which requestor ids they use.
114 } __attribute__((packed
));
117 * An AMD IOMMU memory definition structure. It defines things like exclusion
118 * ranges for devices and regions that should be unity mapped.
129 } __attribute__((packed
));
132 bool amd_iommu_irq_remap __read_mostly
;
134 static bool amd_iommu_detected
;
135 static bool __initdata amd_iommu_disabled
;
137 u16 amd_iommu_last_bdf
; /* largest PCI device id we have
139 LIST_HEAD(amd_iommu_unity_map
); /* a list of required unity mappings
141 bool amd_iommu_unmap_flush
; /* if true, flush on every unmap */
143 LIST_HEAD(amd_iommu_list
); /* list of all AMD IOMMUs in the
146 /* Array to assign indices to IOMMUs*/
147 struct amd_iommu
*amd_iommus
[MAX_IOMMUS
];
148 int amd_iommus_present
;
150 /* IOMMUs have a non-present cache? */
151 bool amd_iommu_np_cache __read_mostly
;
152 bool amd_iommu_iotlb_sup __read_mostly
= true;
154 u32 amd_iommu_max_pasid __read_mostly
= ~0;
156 bool amd_iommu_v2_present __read_mostly
;
157 static bool amd_iommu_pc_present __read_mostly
;
159 bool amd_iommu_force_isolation __read_mostly
;
162 * List of protection domains - used during resume
164 LIST_HEAD(amd_iommu_pd_list
);
165 spinlock_t amd_iommu_pd_lock
;
168 * Pointer to the device table which is shared by all AMD IOMMUs
169 * it is indexed by the PCI device id or the HT unit id and contains
170 * information about the domain the device belongs to as well as the
171 * page table root pointer.
173 struct dev_table_entry
*amd_iommu_dev_table
;
176 * The alias table is a driver specific data structure which contains the
177 * mappings of the PCI device ids to the actual requestor ids on the IOMMU.
178 * More than one device can share the same requestor id.
180 u16
*amd_iommu_alias_table
;
183 * The rlookup table is used to find the IOMMU which is responsible
184 * for a specific device. It is also indexed by the PCI device id.
186 struct amd_iommu
**amd_iommu_rlookup_table
;
189 * This table is used to find the irq remapping table for a given device id
192 struct irq_remap_table
**irq_lookup_table
;
195 * AMD IOMMU allows up to 2^16 different protection domains. This is a bitmap
196 * to know which ones are already in use.
198 unsigned long *amd_iommu_pd_alloc_bitmap
;
200 static u32 dev_table_size
; /* size of the device table */
201 static u32 alias_table_size
; /* size of the alias table */
202 static u32 rlookup_table_size
; /* size if the rlookup table */
204 enum iommu_init_state
{
217 /* Early ioapic and hpet maps from kernel command line */
218 #define EARLY_MAP_SIZE 4
219 static struct devid_map __initdata early_ioapic_map
[EARLY_MAP_SIZE
];
220 static struct devid_map __initdata early_hpet_map
[EARLY_MAP_SIZE
];
221 static int __initdata early_ioapic_map_size
;
222 static int __initdata early_hpet_map_size
;
223 static bool __initdata cmdline_maps
;
225 static enum iommu_init_state init_state
= IOMMU_START_STATE
;
227 static int amd_iommu_enable_interrupts(void);
228 static int __init
iommu_go_to_state(enum iommu_init_state state
);
229 static void init_device_table_dma(void);
231 static inline void update_last_devid(u16 devid
)
233 if (devid
> amd_iommu_last_bdf
)
234 amd_iommu_last_bdf
= devid
;
237 static inline unsigned long tbl_size(int entry_size
)
239 unsigned shift
= PAGE_SHIFT
+
240 get_order(((int)amd_iommu_last_bdf
+ 1) * entry_size
);
245 /* Access to l1 and l2 indexed register spaces */
247 static u32
iommu_read_l1(struct amd_iommu
*iommu
, u16 l1
, u8 address
)
251 pci_write_config_dword(iommu
->dev
, 0xf8, (address
| l1
<< 16));
252 pci_read_config_dword(iommu
->dev
, 0xfc, &val
);
256 static void iommu_write_l1(struct amd_iommu
*iommu
, u16 l1
, u8 address
, u32 val
)
258 pci_write_config_dword(iommu
->dev
, 0xf8, (address
| l1
<< 16 | 1 << 31));
259 pci_write_config_dword(iommu
->dev
, 0xfc, val
);
260 pci_write_config_dword(iommu
->dev
, 0xf8, (address
| l1
<< 16));
263 static u32
iommu_read_l2(struct amd_iommu
*iommu
, u8 address
)
267 pci_write_config_dword(iommu
->dev
, 0xf0, address
);
268 pci_read_config_dword(iommu
->dev
, 0xf4, &val
);
272 static void iommu_write_l2(struct amd_iommu
*iommu
, u8 address
, u32 val
)
274 pci_write_config_dword(iommu
->dev
, 0xf0, (address
| 1 << 8));
275 pci_write_config_dword(iommu
->dev
, 0xf4, val
);
278 /****************************************************************************
280 * AMD IOMMU MMIO register space handling functions
282 * These functions are used to program the IOMMU device registers in
283 * MMIO space required for that driver.
285 ****************************************************************************/
288 * This function set the exclusion range in the IOMMU. DMA accesses to the
289 * exclusion range are passed through untranslated
291 static void iommu_set_exclusion_range(struct amd_iommu
*iommu
)
293 u64 start
= iommu
->exclusion_start
& PAGE_MASK
;
294 u64 limit
= (start
+ iommu
->exclusion_length
) & PAGE_MASK
;
297 if (!iommu
->exclusion_start
)
300 entry
= start
| MMIO_EXCL_ENABLE_MASK
;
301 memcpy_toio(iommu
->mmio_base
+ MMIO_EXCL_BASE_OFFSET
,
302 &entry
, sizeof(entry
));
305 memcpy_toio(iommu
->mmio_base
+ MMIO_EXCL_LIMIT_OFFSET
,
306 &entry
, sizeof(entry
));
309 /* Programs the physical address of the device table into the IOMMU hardware */
310 static void iommu_set_device_table(struct amd_iommu
*iommu
)
314 BUG_ON(iommu
->mmio_base
== NULL
);
316 entry
= virt_to_phys(amd_iommu_dev_table
);
317 entry
|= (dev_table_size
>> 12) - 1;
318 memcpy_toio(iommu
->mmio_base
+ MMIO_DEV_TABLE_OFFSET
,
319 &entry
, sizeof(entry
));
322 /* Generic functions to enable/disable certain features of the IOMMU. */
323 static void iommu_feature_enable(struct amd_iommu
*iommu
, u8 bit
)
327 ctrl
= readl(iommu
->mmio_base
+ MMIO_CONTROL_OFFSET
);
329 writel(ctrl
, iommu
->mmio_base
+ MMIO_CONTROL_OFFSET
);
332 static void iommu_feature_disable(struct amd_iommu
*iommu
, u8 bit
)
336 ctrl
= readl(iommu
->mmio_base
+ MMIO_CONTROL_OFFSET
);
338 writel(ctrl
, iommu
->mmio_base
+ MMIO_CONTROL_OFFSET
);
341 static void iommu_set_inv_tlb_timeout(struct amd_iommu
*iommu
, int timeout
)
345 ctrl
= readl(iommu
->mmio_base
+ MMIO_CONTROL_OFFSET
);
346 ctrl
&= ~CTRL_INV_TO_MASK
;
347 ctrl
|= (timeout
<< CONTROL_INV_TIMEOUT
) & CTRL_INV_TO_MASK
;
348 writel(ctrl
, iommu
->mmio_base
+ MMIO_CONTROL_OFFSET
);
351 /* Function to enable the hardware */
352 static void iommu_enable(struct amd_iommu
*iommu
)
354 iommu_feature_enable(iommu
, CONTROL_IOMMU_EN
);
357 static void iommu_disable(struct amd_iommu
*iommu
)
359 /* Disable command buffer */
360 iommu_feature_disable(iommu
, CONTROL_CMDBUF_EN
);
362 /* Disable event logging and event interrupts */
363 iommu_feature_disable(iommu
, CONTROL_EVT_INT_EN
);
364 iommu_feature_disable(iommu
, CONTROL_EVT_LOG_EN
);
366 /* Disable IOMMU hardware itself */
367 iommu_feature_disable(iommu
, CONTROL_IOMMU_EN
);
371 * mapping and unmapping functions for the IOMMU MMIO space. Each AMD IOMMU in
372 * the system has one.
374 static u8 __iomem
* __init
iommu_map_mmio_space(u64 address
, u64 end
)
376 if (!request_mem_region(address
, end
, "amd_iommu")) {
377 pr_err("AMD-Vi: Can not reserve memory region %llx-%llx for mmio\n",
379 pr_err("AMD-Vi: This is a BIOS bug. Please contact your hardware vendor\n");
383 return (u8 __iomem
*)ioremap_nocache(address
, end
);
386 static void __init
iommu_unmap_mmio_space(struct amd_iommu
*iommu
)
388 if (iommu
->mmio_base
)
389 iounmap(iommu
->mmio_base
);
390 release_mem_region(iommu
->mmio_phys
, iommu
->mmio_phys_end
);
393 /****************************************************************************
395 * The functions below belong to the first pass of AMD IOMMU ACPI table
396 * parsing. In this pass we try to find out the highest device id this
397 * code has to handle. Upon this information the size of the shared data
398 * structures is determined later.
400 ****************************************************************************/
403 * This function calculates the length of a given IVHD entry
405 static inline int ivhd_entry_length(u8
*ivhd
)
407 return 0x04 << (*ivhd
>> 6);
411 * After reading the highest device id from the IOMMU PCI capability header
412 * this function looks if there is a higher device id defined in the ACPI table
414 static int __init
find_last_devid_from_ivhd(struct ivhd_header
*h
)
416 u8
*p
= (void *)h
, *end
= (void *)h
;
417 struct ivhd_entry
*dev
;
423 dev
= (struct ivhd_entry
*)p
;
426 /* Use maximum BDF value for DEV_ALL */
427 update_last_devid(0xffff);
429 case IVHD_DEV_SELECT
:
430 case IVHD_DEV_RANGE_END
:
432 case IVHD_DEV_EXT_SELECT
:
433 /* all the above subfield types refer to device ids */
434 update_last_devid(dev
->devid
);
439 p
+= ivhd_entry_length(p
);
448 * Iterate over all IVHD entries in the ACPI table and find the highest device
449 * id which we need to handle. This is the first of three functions which parse
450 * the ACPI table. So we check the checksum here.
452 static int __init
find_last_devid_acpi(struct acpi_table_header
*table
)
455 u8 checksum
= 0, *p
= (u8
*)table
, *end
= (u8
*)table
;
456 struct ivhd_header
*h
;
459 * Validate checksum here so we don't need to do it when
460 * we actually parse the table
462 for (i
= 0; i
< table
->length
; ++i
)
465 /* ACPI table corrupt */
468 p
+= IVRS_HEADER_LENGTH
;
470 end
+= table
->length
;
472 h
= (struct ivhd_header
*)p
;
475 find_last_devid_from_ivhd(h
);
487 /****************************************************************************
489 * The following functions belong to the code path which parses the ACPI table
490 * the second time. In this ACPI parsing iteration we allocate IOMMU specific
491 * data structures, initialize the device/alias/rlookup table and also
492 * basically initialize the hardware.
494 ****************************************************************************/
497 * Allocates the command buffer. This buffer is per AMD IOMMU. We can
498 * write commands to that buffer later and the IOMMU will execute them
501 static int __init
alloc_command_buffer(struct amd_iommu
*iommu
)
503 iommu
->cmd_buf
= (void *)__get_free_pages(GFP_KERNEL
| __GFP_ZERO
,
504 get_order(CMD_BUFFER_SIZE
));
506 return iommu
->cmd_buf
? 0 : -ENOMEM
;
510 * This function resets the command buffer if the IOMMU stopped fetching
513 void amd_iommu_reset_cmd_buffer(struct amd_iommu
*iommu
)
515 iommu_feature_disable(iommu
, CONTROL_CMDBUF_EN
);
517 writel(0x00, iommu
->mmio_base
+ MMIO_CMD_HEAD_OFFSET
);
518 writel(0x00, iommu
->mmio_base
+ MMIO_CMD_TAIL_OFFSET
);
520 iommu_feature_enable(iommu
, CONTROL_CMDBUF_EN
);
524 * This function writes the command buffer address to the hardware and
527 static void iommu_enable_command_buffer(struct amd_iommu
*iommu
)
531 BUG_ON(iommu
->cmd_buf
== NULL
);
533 entry
= (u64
)virt_to_phys(iommu
->cmd_buf
);
534 entry
|= MMIO_CMD_SIZE_512
;
536 memcpy_toio(iommu
->mmio_base
+ MMIO_CMD_BUF_OFFSET
,
537 &entry
, sizeof(entry
));
539 amd_iommu_reset_cmd_buffer(iommu
);
542 static void __init
free_command_buffer(struct amd_iommu
*iommu
)
544 free_pages((unsigned long)iommu
->cmd_buf
, get_order(CMD_BUFFER_SIZE
));
547 /* allocates the memory where the IOMMU will log its events to */
548 static int __init
alloc_event_buffer(struct amd_iommu
*iommu
)
550 iommu
->evt_buf
= (void *)__get_free_pages(GFP_KERNEL
| __GFP_ZERO
,
551 get_order(EVT_BUFFER_SIZE
));
553 return iommu
->evt_buf
? 0 : -ENOMEM
;
556 static void iommu_enable_event_buffer(struct amd_iommu
*iommu
)
560 BUG_ON(iommu
->evt_buf
== NULL
);
562 entry
= (u64
)virt_to_phys(iommu
->evt_buf
) | EVT_LEN_MASK
;
564 memcpy_toio(iommu
->mmio_base
+ MMIO_EVT_BUF_OFFSET
,
565 &entry
, sizeof(entry
));
567 /* set head and tail to zero manually */
568 writel(0x00, iommu
->mmio_base
+ MMIO_EVT_HEAD_OFFSET
);
569 writel(0x00, iommu
->mmio_base
+ MMIO_EVT_TAIL_OFFSET
);
571 iommu_feature_enable(iommu
, CONTROL_EVT_LOG_EN
);
574 static void __init
free_event_buffer(struct amd_iommu
*iommu
)
576 free_pages((unsigned long)iommu
->evt_buf
, get_order(EVT_BUFFER_SIZE
));
579 /* allocates the memory where the IOMMU will log its events to */
580 static int __init
alloc_ppr_log(struct amd_iommu
*iommu
)
582 iommu
->ppr_log
= (void *)__get_free_pages(GFP_KERNEL
| __GFP_ZERO
,
583 get_order(PPR_LOG_SIZE
));
585 return iommu
->ppr_log
? 0 : -ENOMEM
;
588 static void iommu_enable_ppr_log(struct amd_iommu
*iommu
)
592 if (iommu
->ppr_log
== NULL
)
595 entry
= (u64
)virt_to_phys(iommu
->ppr_log
) | PPR_LOG_SIZE_512
;
597 memcpy_toio(iommu
->mmio_base
+ MMIO_PPR_LOG_OFFSET
,
598 &entry
, sizeof(entry
));
600 /* set head and tail to zero manually */
601 writel(0x00, iommu
->mmio_base
+ MMIO_PPR_HEAD_OFFSET
);
602 writel(0x00, iommu
->mmio_base
+ MMIO_PPR_TAIL_OFFSET
);
604 iommu_feature_enable(iommu
, CONTROL_PPFLOG_EN
);
605 iommu_feature_enable(iommu
, CONTROL_PPR_EN
);
608 static void __init
free_ppr_log(struct amd_iommu
*iommu
)
610 if (iommu
->ppr_log
== NULL
)
613 free_pages((unsigned long)iommu
->ppr_log
, get_order(PPR_LOG_SIZE
));
616 static void iommu_enable_gt(struct amd_iommu
*iommu
)
618 if (!iommu_feature(iommu
, FEATURE_GT
))
621 iommu_feature_enable(iommu
, CONTROL_GT_EN
);
624 /* sets a specific bit in the device table entry. */
625 static void set_dev_entry_bit(u16 devid
, u8 bit
)
627 int i
= (bit
>> 6) & 0x03;
628 int _bit
= bit
& 0x3f;
630 amd_iommu_dev_table
[devid
].data
[i
] |= (1UL << _bit
);
633 static int get_dev_entry_bit(u16 devid
, u8 bit
)
635 int i
= (bit
>> 6) & 0x03;
636 int _bit
= bit
& 0x3f;
638 return (amd_iommu_dev_table
[devid
].data
[i
] & (1UL << _bit
)) >> _bit
;
642 void amd_iommu_apply_erratum_63(u16 devid
)
646 sysmgt
= get_dev_entry_bit(devid
, DEV_ENTRY_SYSMGT1
) |
647 (get_dev_entry_bit(devid
, DEV_ENTRY_SYSMGT2
) << 1);
650 set_dev_entry_bit(devid
, DEV_ENTRY_IW
);
653 /* Writes the specific IOMMU for a device into the rlookup table */
654 static void __init
set_iommu_for_device(struct amd_iommu
*iommu
, u16 devid
)
656 amd_iommu_rlookup_table
[devid
] = iommu
;
660 * This function takes the device specific flags read from the ACPI
661 * table and sets up the device table entry with that information
663 static void __init
set_dev_entry_from_acpi(struct amd_iommu
*iommu
,
664 u16 devid
, u32 flags
, u32 ext_flags
)
666 if (flags
& ACPI_DEVFLAG_INITPASS
)
667 set_dev_entry_bit(devid
, DEV_ENTRY_INIT_PASS
);
668 if (flags
& ACPI_DEVFLAG_EXTINT
)
669 set_dev_entry_bit(devid
, DEV_ENTRY_EINT_PASS
);
670 if (flags
& ACPI_DEVFLAG_NMI
)
671 set_dev_entry_bit(devid
, DEV_ENTRY_NMI_PASS
);
672 if (flags
& ACPI_DEVFLAG_SYSMGT1
)
673 set_dev_entry_bit(devid
, DEV_ENTRY_SYSMGT1
);
674 if (flags
& ACPI_DEVFLAG_SYSMGT2
)
675 set_dev_entry_bit(devid
, DEV_ENTRY_SYSMGT2
);
676 if (flags
& ACPI_DEVFLAG_LINT0
)
677 set_dev_entry_bit(devid
, DEV_ENTRY_LINT0_PASS
);
678 if (flags
& ACPI_DEVFLAG_LINT1
)
679 set_dev_entry_bit(devid
, DEV_ENTRY_LINT1_PASS
);
681 amd_iommu_apply_erratum_63(devid
);
683 set_iommu_for_device(iommu
, devid
);
686 static int __init
add_special_device(u8 type
, u8 id
, u16
*devid
, bool cmd_line
)
688 struct devid_map
*entry
;
689 struct list_head
*list
;
691 if (type
== IVHD_SPECIAL_IOAPIC
)
693 else if (type
== IVHD_SPECIAL_HPET
)
698 list_for_each_entry(entry
, list
, list
) {
699 if (!(entry
->id
== id
&& entry
->cmd_line
))
702 pr_info("AMD-Vi: Command-line override present for %s id %d - ignoring\n",
703 type
== IVHD_SPECIAL_IOAPIC
? "IOAPIC" : "HPET", id
);
705 *devid
= entry
->devid
;
710 entry
= kzalloc(sizeof(*entry
), GFP_KERNEL
);
715 entry
->devid
= *devid
;
716 entry
->cmd_line
= cmd_line
;
718 list_add_tail(&entry
->list
, list
);
723 static int __init
add_early_maps(void)
727 for (i
= 0; i
< early_ioapic_map_size
; ++i
) {
728 ret
= add_special_device(IVHD_SPECIAL_IOAPIC
,
729 early_ioapic_map
[i
].id
,
730 &early_ioapic_map
[i
].devid
,
731 early_ioapic_map
[i
].cmd_line
);
736 for (i
= 0; i
< early_hpet_map_size
; ++i
) {
737 ret
= add_special_device(IVHD_SPECIAL_HPET
,
738 early_hpet_map
[i
].id
,
739 &early_hpet_map
[i
].devid
,
740 early_hpet_map
[i
].cmd_line
);
749 * Reads the device exclusion range from ACPI and initializes the IOMMU with
752 static void __init
set_device_exclusion_range(u16 devid
, struct ivmd_header
*m
)
754 struct amd_iommu
*iommu
= amd_iommu_rlookup_table
[devid
];
756 if (!(m
->flags
& IVMD_FLAG_EXCL_RANGE
))
761 * We only can configure exclusion ranges per IOMMU, not
762 * per device. But we can enable the exclusion range per
763 * device. This is done here
765 set_dev_entry_bit(devid
, DEV_ENTRY_EX
);
766 iommu
->exclusion_start
= m
->range_start
;
767 iommu
->exclusion_length
= m
->range_length
;
772 * Takes a pointer to an AMD IOMMU entry in the ACPI table and
773 * initializes the hardware and our data structures with it.
775 static int __init
init_iommu_from_acpi(struct amd_iommu
*iommu
,
776 struct ivhd_header
*h
)
779 u8
*end
= p
, flags
= 0;
780 u16 devid
= 0, devid_start
= 0, devid_to
= 0;
781 u32 dev_i
, ext_flags
= 0;
783 struct ivhd_entry
*e
;
787 ret
= add_early_maps();
792 * First save the recommended feature enable bits from ACPI
794 iommu
->acpi_flags
= h
->flags
;
797 * Done. Now parse the device entries
799 p
+= sizeof(struct ivhd_header
);
804 e
= (struct ivhd_entry
*)p
;
808 DUMP_printk(" DEV_ALL\t\t\tflags: %02x\n", e
->flags
);
810 for (dev_i
= 0; dev_i
<= amd_iommu_last_bdf
; ++dev_i
)
811 set_dev_entry_from_acpi(iommu
, dev_i
, e
->flags
, 0);
813 case IVHD_DEV_SELECT
:
815 DUMP_printk(" DEV_SELECT\t\t\t devid: %02x:%02x.%x "
817 PCI_BUS_NUM(e
->devid
),
823 set_dev_entry_from_acpi(iommu
, devid
, e
->flags
, 0);
825 case IVHD_DEV_SELECT_RANGE_START
:
827 DUMP_printk(" DEV_SELECT_RANGE_START\t "
828 "devid: %02x:%02x.%x flags: %02x\n",
829 PCI_BUS_NUM(e
->devid
),
834 devid_start
= e
->devid
;
841 DUMP_printk(" DEV_ALIAS\t\t\t devid: %02x:%02x.%x "
842 "flags: %02x devid_to: %02x:%02x.%x\n",
843 PCI_BUS_NUM(e
->devid
),
847 PCI_BUS_NUM(e
->ext
>> 8),
848 PCI_SLOT(e
->ext
>> 8),
849 PCI_FUNC(e
->ext
>> 8));
852 devid_to
= e
->ext
>> 8;
853 set_dev_entry_from_acpi(iommu
, devid
, e
->flags
, 0);
854 set_dev_entry_from_acpi(iommu
, devid_to
, e
->flags
, 0);
855 amd_iommu_alias_table
[devid
] = devid_to
;
857 case IVHD_DEV_ALIAS_RANGE
:
859 DUMP_printk(" DEV_ALIAS_RANGE\t\t "
860 "devid: %02x:%02x.%x flags: %02x "
861 "devid_to: %02x:%02x.%x\n",
862 PCI_BUS_NUM(e
->devid
),
866 PCI_BUS_NUM(e
->ext
>> 8),
867 PCI_SLOT(e
->ext
>> 8),
868 PCI_FUNC(e
->ext
>> 8));
870 devid_start
= e
->devid
;
872 devid_to
= e
->ext
>> 8;
876 case IVHD_DEV_EXT_SELECT
:
878 DUMP_printk(" DEV_EXT_SELECT\t\t devid: %02x:%02x.%x "
879 "flags: %02x ext: %08x\n",
880 PCI_BUS_NUM(e
->devid
),
886 set_dev_entry_from_acpi(iommu
, devid
, e
->flags
,
889 case IVHD_DEV_EXT_SELECT_RANGE
:
891 DUMP_printk(" DEV_EXT_SELECT_RANGE\t devid: "
892 "%02x:%02x.%x flags: %02x ext: %08x\n",
893 PCI_BUS_NUM(e
->devid
),
898 devid_start
= e
->devid
;
903 case IVHD_DEV_RANGE_END
:
905 DUMP_printk(" DEV_RANGE_END\t\t devid: %02x:%02x.%x\n",
906 PCI_BUS_NUM(e
->devid
),
911 for (dev_i
= devid_start
; dev_i
<= devid
; ++dev_i
) {
913 amd_iommu_alias_table
[dev_i
] = devid_to
;
914 set_dev_entry_from_acpi(iommu
,
915 devid_to
, flags
, ext_flags
);
917 set_dev_entry_from_acpi(iommu
, dev_i
,
921 case IVHD_DEV_SPECIAL
: {
927 handle
= e
->ext
& 0xff;
928 devid
= (e
->ext
>> 8) & 0xffff;
929 type
= (e
->ext
>> 24) & 0xff;
931 if (type
== IVHD_SPECIAL_IOAPIC
)
933 else if (type
== IVHD_SPECIAL_HPET
)
938 DUMP_printk(" DEV_SPECIAL(%s[%d])\t\tdevid: %02x:%02x.%x\n",
944 ret
= add_special_device(type
, handle
, &devid
, false);
949 * add_special_device might update the devid in case a
950 * command-line override is present. So call
951 * set_dev_entry_from_acpi after add_special_device.
953 set_dev_entry_from_acpi(iommu
, devid
, e
->flags
, 0);
961 p
+= ivhd_entry_length(p
);
967 static void __init
free_iommu_one(struct amd_iommu
*iommu
)
969 free_command_buffer(iommu
);
970 free_event_buffer(iommu
);
972 iommu_unmap_mmio_space(iommu
);
975 static void __init
free_iommu_all(void)
977 struct amd_iommu
*iommu
, *next
;
979 for_each_iommu_safe(iommu
, next
) {
980 list_del(&iommu
->list
);
981 free_iommu_one(iommu
);
987 * Family15h Model 10h-1fh erratum 746 (IOMMU Logging May Stall Translations)
989 * BIOS should disable L2B micellaneous clock gating by setting
990 * L2_L2B_CK_GATE_CONTROL[CKGateL2BMiscDisable](D0F2xF4_x90[2]) = 1b
992 static void amd_iommu_erratum_746_workaround(struct amd_iommu
*iommu
)
996 if ((boot_cpu_data
.x86
!= 0x15) ||
997 (boot_cpu_data
.x86_model
< 0x10) ||
998 (boot_cpu_data
.x86_model
> 0x1f))
1001 pci_write_config_dword(iommu
->dev
, 0xf0, 0x90);
1002 pci_read_config_dword(iommu
->dev
, 0xf4, &value
);
1007 /* Select NB indirect register 0x90 and enable writing */
1008 pci_write_config_dword(iommu
->dev
, 0xf0, 0x90 | (1 << 8));
1010 pci_write_config_dword(iommu
->dev
, 0xf4, value
| 0x4);
1011 pr_info("AMD-Vi: Applying erratum 746 workaround for IOMMU at %s\n",
1012 dev_name(&iommu
->dev
->dev
));
1014 /* Clear the enable writing bit */
1015 pci_write_config_dword(iommu
->dev
, 0xf0, 0x90);
1019 * This function clues the initialization function for one IOMMU
1020 * together and also allocates the command buffer and programs the
1021 * hardware. It does NOT enable the IOMMU. This is done afterwards.
1023 static int __init
init_iommu_one(struct amd_iommu
*iommu
, struct ivhd_header
*h
)
1027 spin_lock_init(&iommu
->lock
);
1029 /* Add IOMMU to internal data structures */
1030 list_add_tail(&iommu
->list
, &amd_iommu_list
);
1031 iommu
->index
= amd_iommus_present
++;
1033 if (unlikely(iommu
->index
>= MAX_IOMMUS
)) {
1034 WARN(1, "AMD-Vi: System has more IOMMUs than supported by this driver\n");
1038 /* Index is fine - add IOMMU to the array */
1039 amd_iommus
[iommu
->index
] = iommu
;
1042 * Copy data from ACPI table entry to the iommu struct
1044 iommu
->devid
= h
->devid
;
1045 iommu
->cap_ptr
= h
->cap_ptr
;
1046 iommu
->pci_seg
= h
->pci_seg
;
1047 iommu
->mmio_phys
= h
->mmio_phys
;
1049 /* Check if IVHD EFR contains proper max banks/counters */
1050 if ((h
->efr
!= 0) &&
1051 ((h
->efr
& (0xF << 13)) != 0) &&
1052 ((h
->efr
& (0x3F << 17)) != 0)) {
1053 iommu
->mmio_phys_end
= MMIO_REG_END_OFFSET
;
1055 iommu
->mmio_phys_end
= MMIO_CNTR_CONF_OFFSET
;
1058 iommu
->mmio_base
= iommu_map_mmio_space(iommu
->mmio_phys
,
1059 iommu
->mmio_phys_end
);
1060 if (!iommu
->mmio_base
)
1063 if (alloc_command_buffer(iommu
))
1066 if (alloc_event_buffer(iommu
))
1069 iommu
->int_enabled
= false;
1071 ret
= init_iommu_from_acpi(iommu
, h
);
1075 ret
= amd_iommu_create_irq_domain(iommu
);
1080 * Make sure IOMMU is not considered to translate itself. The IVRS
1081 * table tells us so, but this is a lie!
1083 amd_iommu_rlookup_table
[iommu
->devid
] = NULL
;
1089 * Iterates over all IOMMU entries in the ACPI table, allocates the
1090 * IOMMU structure and initializes it with init_iommu_one()
1092 static int __init
init_iommu_all(struct acpi_table_header
*table
)
1094 u8
*p
= (u8
*)table
, *end
= (u8
*)table
;
1095 struct ivhd_header
*h
;
1096 struct amd_iommu
*iommu
;
1099 end
+= table
->length
;
1100 p
+= IVRS_HEADER_LENGTH
;
1103 h
= (struct ivhd_header
*)p
;
1105 case ACPI_IVHD_TYPE
:
1107 DUMP_printk("device: %02x:%02x.%01x cap: %04x "
1108 "seg: %d flags: %01x info %04x\n",
1109 PCI_BUS_NUM(h
->devid
), PCI_SLOT(h
->devid
),
1110 PCI_FUNC(h
->devid
), h
->cap_ptr
,
1111 h
->pci_seg
, h
->flags
, h
->info
);
1112 DUMP_printk(" mmio-addr: %016llx\n",
1115 iommu
= kzalloc(sizeof(struct amd_iommu
), GFP_KERNEL
);
1119 ret
= init_iommu_one(iommu
, h
);
1135 static void init_iommu_perf_ctr(struct amd_iommu
*iommu
)
1137 u64 val
= 0xabcd, val2
= 0;
1139 if (!iommu_feature(iommu
, FEATURE_PC
))
1142 amd_iommu_pc_present
= true;
1144 /* Check if the performance counters can be written to */
1145 if ((0 != amd_iommu_pc_get_set_reg_val(0, 0, 0, 0, &val
, true)) ||
1146 (0 != amd_iommu_pc_get_set_reg_val(0, 0, 0, 0, &val2
, false)) ||
1148 pr_err("AMD-Vi: Unable to write to IOMMU perf counter.\n");
1149 amd_iommu_pc_present
= false;
1153 pr_info("AMD-Vi: IOMMU performance counters supported\n");
1155 val
= readl(iommu
->mmio_base
+ MMIO_CNTR_CONF_OFFSET
);
1156 iommu
->max_banks
= (u8
) ((val
>> 12) & 0x3f);
1157 iommu
->max_counters
= (u8
) ((val
>> 7) & 0xf);
1160 static ssize_t
amd_iommu_show_cap(struct device
*dev
,
1161 struct device_attribute
*attr
,
1164 struct amd_iommu
*iommu
= dev_get_drvdata(dev
);
1165 return sprintf(buf
, "%x\n", iommu
->cap
);
1167 static DEVICE_ATTR(cap
, S_IRUGO
, amd_iommu_show_cap
, NULL
);
1169 static ssize_t
amd_iommu_show_features(struct device
*dev
,
1170 struct device_attribute
*attr
,
1173 struct amd_iommu
*iommu
= dev_get_drvdata(dev
);
1174 return sprintf(buf
, "%llx\n", iommu
->features
);
1176 static DEVICE_ATTR(features
, S_IRUGO
, amd_iommu_show_features
, NULL
);
1178 static struct attribute
*amd_iommu_attrs
[] = {
1180 &dev_attr_features
.attr
,
1184 static struct attribute_group amd_iommu_group
= {
1185 .name
= "amd-iommu",
1186 .attrs
= amd_iommu_attrs
,
1189 static const struct attribute_group
*amd_iommu_groups
[] = {
1194 static int iommu_init_pci(struct amd_iommu
*iommu
)
1196 int cap_ptr
= iommu
->cap_ptr
;
1197 u32 range
, misc
, low
, high
;
1199 iommu
->dev
= pci_get_bus_and_slot(PCI_BUS_NUM(iommu
->devid
),
1200 iommu
->devid
& 0xff);
1204 /* Prevent binding other PCI device drivers to IOMMU devices */
1205 iommu
->dev
->match_driver
= false;
1207 pci_read_config_dword(iommu
->dev
, cap_ptr
+ MMIO_CAP_HDR_OFFSET
,
1209 pci_read_config_dword(iommu
->dev
, cap_ptr
+ MMIO_RANGE_OFFSET
,
1211 pci_read_config_dword(iommu
->dev
, cap_ptr
+ MMIO_MISC_OFFSET
,
1214 if (!(iommu
->cap
& (1 << IOMMU_CAP_IOTLB
)))
1215 amd_iommu_iotlb_sup
= false;
1217 /* read extended feature bits */
1218 low
= readl(iommu
->mmio_base
+ MMIO_EXT_FEATURES
);
1219 high
= readl(iommu
->mmio_base
+ MMIO_EXT_FEATURES
+ 4);
1221 iommu
->features
= ((u64
)high
<< 32) | low
;
1223 if (iommu_feature(iommu
, FEATURE_GT
)) {
1228 pasmax
= iommu
->features
& FEATURE_PASID_MASK
;
1229 pasmax
>>= FEATURE_PASID_SHIFT
;
1230 max_pasid
= (1 << (pasmax
+ 1)) - 1;
1232 amd_iommu_max_pasid
= min(amd_iommu_max_pasid
, max_pasid
);
1234 BUG_ON(amd_iommu_max_pasid
& ~PASID_MASK
);
1236 glxval
= iommu
->features
& FEATURE_GLXVAL_MASK
;
1237 glxval
>>= FEATURE_GLXVAL_SHIFT
;
1239 if (amd_iommu_max_glx_val
== -1)
1240 amd_iommu_max_glx_val
= glxval
;
1242 amd_iommu_max_glx_val
= min(amd_iommu_max_glx_val
, glxval
);
1245 if (iommu_feature(iommu
, FEATURE_GT
) &&
1246 iommu_feature(iommu
, FEATURE_PPR
)) {
1247 iommu
->is_iommu_v2
= true;
1248 amd_iommu_v2_present
= true;
1251 if (iommu_feature(iommu
, FEATURE_PPR
) && alloc_ppr_log(iommu
))
1254 if (iommu
->cap
& (1UL << IOMMU_CAP_NPCACHE
))
1255 amd_iommu_np_cache
= true;
1257 init_iommu_perf_ctr(iommu
);
1259 if (is_rd890_iommu(iommu
->dev
)) {
1262 iommu
->root_pdev
= pci_get_bus_and_slot(iommu
->dev
->bus
->number
,
1266 * Some rd890 systems may not be fully reconfigured by the
1267 * BIOS, so it's necessary for us to store this information so
1268 * it can be reprogrammed on resume
1270 pci_read_config_dword(iommu
->dev
, iommu
->cap_ptr
+ 4,
1271 &iommu
->stored_addr_lo
);
1272 pci_read_config_dword(iommu
->dev
, iommu
->cap_ptr
+ 8,
1273 &iommu
->stored_addr_hi
);
1275 /* Low bit locks writes to configuration space */
1276 iommu
->stored_addr_lo
&= ~1;
1278 for (i
= 0; i
< 6; i
++)
1279 for (j
= 0; j
< 0x12; j
++)
1280 iommu
->stored_l1
[i
][j
] = iommu_read_l1(iommu
, i
, j
);
1282 for (i
= 0; i
< 0x83; i
++)
1283 iommu
->stored_l2
[i
] = iommu_read_l2(iommu
, i
);
1286 amd_iommu_erratum_746_workaround(iommu
);
1288 iommu
->iommu_dev
= iommu_device_create(&iommu
->dev
->dev
, iommu
,
1289 amd_iommu_groups
, "ivhd%d",
1292 return pci_enable_device(iommu
->dev
);
1295 static void print_iommu_info(void)
1297 static const char * const feat_str
[] = {
1298 "PreF", "PPR", "X2APIC", "NX", "GT", "[5]",
1299 "IA", "GA", "HE", "PC"
1301 struct amd_iommu
*iommu
;
1303 for_each_iommu(iommu
) {
1306 pr_info("AMD-Vi: Found IOMMU at %s cap 0x%hx\n",
1307 dev_name(&iommu
->dev
->dev
), iommu
->cap_ptr
);
1309 if (iommu
->cap
& (1 << IOMMU_CAP_EFR
)) {
1310 pr_info("AMD-Vi: Extended features: ");
1311 for (i
= 0; i
< ARRAY_SIZE(feat_str
); ++i
) {
1312 if (iommu_feature(iommu
, (1ULL << i
)))
1313 pr_cont(" %s", feat_str
[i
]);
1318 if (irq_remapping_enabled
)
1319 pr_info("AMD-Vi: Interrupt remapping enabled\n");
1322 static int __init
amd_iommu_init_pci(void)
1324 struct amd_iommu
*iommu
;
1327 for_each_iommu(iommu
) {
1328 ret
= iommu_init_pci(iommu
);
1333 init_device_table_dma();
1335 for_each_iommu(iommu
)
1336 iommu_flush_all_caches(iommu
);
1338 ret
= amd_iommu_init_api();
1346 /****************************************************************************
1348 * The following functions initialize the MSI interrupts for all IOMMUs
1349 * in the system. It's a bit challenging because there could be multiple
1350 * IOMMUs per PCI BDF but we can call pci_enable_msi(x) only once per
1353 ****************************************************************************/
1355 static int iommu_setup_msi(struct amd_iommu
*iommu
)
1359 r
= pci_enable_msi(iommu
->dev
);
1363 r
= request_threaded_irq(iommu
->dev
->irq
,
1364 amd_iommu_int_handler
,
1365 amd_iommu_int_thread
,
1370 pci_disable_msi(iommu
->dev
);
1374 iommu
->int_enabled
= true;
1379 static int iommu_init_msi(struct amd_iommu
*iommu
)
1383 if (iommu
->int_enabled
)
1386 if (iommu
->dev
->msi_cap
)
1387 ret
= iommu_setup_msi(iommu
);
1395 iommu_feature_enable(iommu
, CONTROL_EVT_INT_EN
);
1397 if (iommu
->ppr_log
!= NULL
)
1398 iommu_feature_enable(iommu
, CONTROL_PPFINT_EN
);
1403 /****************************************************************************
1405 * The next functions belong to the third pass of parsing the ACPI
1406 * table. In this last pass the memory mapping requirements are
1407 * gathered (like exclusion and unity mapping ranges).
1409 ****************************************************************************/
1411 static void __init
free_unity_maps(void)
1413 struct unity_map_entry
*entry
, *next
;
1415 list_for_each_entry_safe(entry
, next
, &amd_iommu_unity_map
, list
) {
1416 list_del(&entry
->list
);
1421 /* called when we find an exclusion range definition in ACPI */
1422 static int __init
init_exclusion_range(struct ivmd_header
*m
)
1427 case ACPI_IVMD_TYPE
:
1428 set_device_exclusion_range(m
->devid
, m
);
1430 case ACPI_IVMD_TYPE_ALL
:
1431 for (i
= 0; i
<= amd_iommu_last_bdf
; ++i
)
1432 set_device_exclusion_range(i
, m
);
1434 case ACPI_IVMD_TYPE_RANGE
:
1435 for (i
= m
->devid
; i
<= m
->aux
; ++i
)
1436 set_device_exclusion_range(i
, m
);
1445 /* called for unity map ACPI definition */
1446 static int __init
init_unity_map_range(struct ivmd_header
*m
)
1448 struct unity_map_entry
*e
= NULL
;
1451 e
= kzalloc(sizeof(*e
), GFP_KERNEL
);
1459 case ACPI_IVMD_TYPE
:
1460 s
= "IVMD_TYPEi\t\t\t";
1461 e
->devid_start
= e
->devid_end
= m
->devid
;
1463 case ACPI_IVMD_TYPE_ALL
:
1464 s
= "IVMD_TYPE_ALL\t\t";
1466 e
->devid_end
= amd_iommu_last_bdf
;
1468 case ACPI_IVMD_TYPE_RANGE
:
1469 s
= "IVMD_TYPE_RANGE\t\t";
1470 e
->devid_start
= m
->devid
;
1471 e
->devid_end
= m
->aux
;
1474 e
->address_start
= PAGE_ALIGN(m
->range_start
);
1475 e
->address_end
= e
->address_start
+ PAGE_ALIGN(m
->range_length
);
1476 e
->prot
= m
->flags
>> 1;
1478 DUMP_printk("%s devid_start: %02x:%02x.%x devid_end: %02x:%02x.%x"
1479 " range_start: %016llx range_end: %016llx flags: %x\n", s
,
1480 PCI_BUS_NUM(e
->devid_start
), PCI_SLOT(e
->devid_start
),
1481 PCI_FUNC(e
->devid_start
), PCI_BUS_NUM(e
->devid_end
),
1482 PCI_SLOT(e
->devid_end
), PCI_FUNC(e
->devid_end
),
1483 e
->address_start
, e
->address_end
, m
->flags
);
1485 list_add_tail(&e
->list
, &amd_iommu_unity_map
);
1490 /* iterates over all memory definitions we find in the ACPI table */
1491 static int __init
init_memory_definitions(struct acpi_table_header
*table
)
1493 u8
*p
= (u8
*)table
, *end
= (u8
*)table
;
1494 struct ivmd_header
*m
;
1496 end
+= table
->length
;
1497 p
+= IVRS_HEADER_LENGTH
;
1500 m
= (struct ivmd_header
*)p
;
1501 if (m
->flags
& IVMD_FLAG_EXCL_RANGE
)
1502 init_exclusion_range(m
);
1503 else if (m
->flags
& IVMD_FLAG_UNITY_MAP
)
1504 init_unity_map_range(m
);
1513 * Init the device table to not allow DMA access for devices and
1514 * suppress all page faults
1516 static void init_device_table_dma(void)
1520 for (devid
= 0; devid
<= amd_iommu_last_bdf
; ++devid
) {
1521 set_dev_entry_bit(devid
, DEV_ENTRY_VALID
);
1522 set_dev_entry_bit(devid
, DEV_ENTRY_TRANSLATION
);
1526 static void __init
uninit_device_table_dma(void)
1530 for (devid
= 0; devid
<= amd_iommu_last_bdf
; ++devid
) {
1531 amd_iommu_dev_table
[devid
].data
[0] = 0ULL;
1532 amd_iommu_dev_table
[devid
].data
[1] = 0ULL;
1536 static void init_device_table(void)
1540 if (!amd_iommu_irq_remap
)
1543 for (devid
= 0; devid
<= amd_iommu_last_bdf
; ++devid
)
1544 set_dev_entry_bit(devid
, DEV_ENTRY_IRQ_TBL_EN
);
1547 static void iommu_init_flags(struct amd_iommu
*iommu
)
1549 iommu
->acpi_flags
& IVHD_FLAG_HT_TUN_EN_MASK
?
1550 iommu_feature_enable(iommu
, CONTROL_HT_TUN_EN
) :
1551 iommu_feature_disable(iommu
, CONTROL_HT_TUN_EN
);
1553 iommu
->acpi_flags
& IVHD_FLAG_PASSPW_EN_MASK
?
1554 iommu_feature_enable(iommu
, CONTROL_PASSPW_EN
) :
1555 iommu_feature_disable(iommu
, CONTROL_PASSPW_EN
);
1557 iommu
->acpi_flags
& IVHD_FLAG_RESPASSPW_EN_MASK
?
1558 iommu_feature_enable(iommu
, CONTROL_RESPASSPW_EN
) :
1559 iommu_feature_disable(iommu
, CONTROL_RESPASSPW_EN
);
1561 iommu
->acpi_flags
& IVHD_FLAG_ISOC_EN_MASK
?
1562 iommu_feature_enable(iommu
, CONTROL_ISOC_EN
) :
1563 iommu_feature_disable(iommu
, CONTROL_ISOC_EN
);
1566 * make IOMMU memory accesses cache coherent
1568 iommu_feature_enable(iommu
, CONTROL_COHERENT_EN
);
1570 /* Set IOTLB invalidation timeout to 1s */
1571 iommu_set_inv_tlb_timeout(iommu
, CTRL_INV_TO_1S
);
1574 static void iommu_apply_resume_quirks(struct amd_iommu
*iommu
)
1577 u32 ioc_feature_control
;
1578 struct pci_dev
*pdev
= iommu
->root_pdev
;
1580 /* RD890 BIOSes may not have completely reconfigured the iommu */
1581 if (!is_rd890_iommu(iommu
->dev
) || !pdev
)
1585 * First, we need to ensure that the iommu is enabled. This is
1586 * controlled by a register in the northbridge
1589 /* Select Northbridge indirect register 0x75 and enable writing */
1590 pci_write_config_dword(pdev
, 0x60, 0x75 | (1 << 7));
1591 pci_read_config_dword(pdev
, 0x64, &ioc_feature_control
);
1593 /* Enable the iommu */
1594 if (!(ioc_feature_control
& 0x1))
1595 pci_write_config_dword(pdev
, 0x64, ioc_feature_control
| 1);
1597 /* Restore the iommu BAR */
1598 pci_write_config_dword(iommu
->dev
, iommu
->cap_ptr
+ 4,
1599 iommu
->stored_addr_lo
);
1600 pci_write_config_dword(iommu
->dev
, iommu
->cap_ptr
+ 8,
1601 iommu
->stored_addr_hi
);
1603 /* Restore the l1 indirect regs for each of the 6 l1s */
1604 for (i
= 0; i
< 6; i
++)
1605 for (j
= 0; j
< 0x12; j
++)
1606 iommu_write_l1(iommu
, i
, j
, iommu
->stored_l1
[i
][j
]);
1608 /* Restore the l2 indirect regs */
1609 for (i
= 0; i
< 0x83; i
++)
1610 iommu_write_l2(iommu
, i
, iommu
->stored_l2
[i
]);
1612 /* Lock PCI setup registers */
1613 pci_write_config_dword(iommu
->dev
, iommu
->cap_ptr
+ 4,
1614 iommu
->stored_addr_lo
| 1);
1618 * This function finally enables all IOMMUs found in the system after
1619 * they have been initialized
1621 static void early_enable_iommus(void)
1623 struct amd_iommu
*iommu
;
1625 for_each_iommu(iommu
) {
1626 iommu_disable(iommu
);
1627 iommu_init_flags(iommu
);
1628 iommu_set_device_table(iommu
);
1629 iommu_enable_command_buffer(iommu
);
1630 iommu_enable_event_buffer(iommu
);
1631 iommu_set_exclusion_range(iommu
);
1632 iommu_enable(iommu
);
1633 iommu_flush_all_caches(iommu
);
1637 static void enable_iommus_v2(void)
1639 struct amd_iommu
*iommu
;
1641 for_each_iommu(iommu
) {
1642 iommu_enable_ppr_log(iommu
);
1643 iommu_enable_gt(iommu
);
1647 static void enable_iommus(void)
1649 early_enable_iommus();
1654 static void disable_iommus(void)
1656 struct amd_iommu
*iommu
;
1658 for_each_iommu(iommu
)
1659 iommu_disable(iommu
);
1663 * Suspend/Resume support
1664 * disable suspend until real resume implemented
1667 static void amd_iommu_resume(void)
1669 struct amd_iommu
*iommu
;
1671 for_each_iommu(iommu
)
1672 iommu_apply_resume_quirks(iommu
);
1674 /* re-load the hardware */
1677 amd_iommu_enable_interrupts();
1680 static int amd_iommu_suspend(void)
1682 /* disable IOMMUs to go out of the way for BIOS */
1688 static struct syscore_ops amd_iommu_syscore_ops
= {
1689 .suspend
= amd_iommu_suspend
,
1690 .resume
= amd_iommu_resume
,
1693 static void __init
free_on_init_error(void)
1695 free_pages((unsigned long)irq_lookup_table
,
1696 get_order(rlookup_table_size
));
1698 kmem_cache_destroy(amd_iommu_irq_cache
);
1699 amd_iommu_irq_cache
= NULL
;
1701 free_pages((unsigned long)amd_iommu_rlookup_table
,
1702 get_order(rlookup_table_size
));
1704 free_pages((unsigned long)amd_iommu_alias_table
,
1705 get_order(alias_table_size
));
1707 free_pages((unsigned long)amd_iommu_dev_table
,
1708 get_order(dev_table_size
));
1712 #ifdef CONFIG_GART_IOMMU
1714 * We failed to initialize the AMD IOMMU - try fallback to GART
1722 /* SB IOAPIC is always on this device in AMD systems */
1723 #define IOAPIC_SB_DEVID ((0x00 << 8) | PCI_DEVFN(0x14, 0))
1725 static bool __init
check_ioapic_information(void)
1727 const char *fw_bug
= FW_BUG
;
1728 bool ret
, has_sb_ioapic
;
1731 has_sb_ioapic
= false;
1735 * If we have map overrides on the kernel command line the
1736 * messages in this function might not describe firmware bugs
1737 * anymore - so be careful
1742 for (idx
= 0; idx
< nr_ioapics
; idx
++) {
1743 int devid
, id
= mpc_ioapic_id(idx
);
1745 devid
= get_ioapic_devid(id
);
1747 pr_err("%sAMD-Vi: IOAPIC[%d] not in IVRS table\n",
1750 } else if (devid
== IOAPIC_SB_DEVID
) {
1751 has_sb_ioapic
= true;
1756 if (!has_sb_ioapic
) {
1758 * We expect the SB IOAPIC to be listed in the IVRS
1759 * table. The system timer is connected to the SB IOAPIC
1760 * and if we don't have it in the list the system will
1761 * panic at boot time. This situation usually happens
1762 * when the BIOS is buggy and provides us the wrong
1763 * device id for the IOAPIC in the system.
1765 pr_err("%sAMD-Vi: No southbridge IOAPIC found\n", fw_bug
);
1769 pr_err("AMD-Vi: Disabling interrupt remapping\n");
1774 static void __init
free_dma_resources(void)
1776 free_pages((unsigned long)amd_iommu_pd_alloc_bitmap
,
1777 get_order(MAX_DOMAIN_ID
/8));
1783 * This is the hardware init function for AMD IOMMU in the system.
1784 * This function is called either from amd_iommu_init or from the interrupt
1785 * remapping setup code.
1787 * This function basically parses the ACPI table for AMD IOMMU (IVRS)
1790 * 1 pass) Find the highest PCI device id the driver has to handle.
1791 * Upon this information the size of the data structures is
1792 * determined that needs to be allocated.
1794 * 2 pass) Initialize the data structures just allocated with the
1795 * information in the ACPI table about available AMD IOMMUs
1796 * in the system. It also maps the PCI devices in the
1797 * system to specific IOMMUs
1799 * 3 pass) After the basic data structures are allocated and
1800 * initialized we update them with information about memory
1801 * remapping requirements parsed out of the ACPI table in
1804 * After everything is set up the IOMMUs are enabled and the necessary
1805 * hotplug and suspend notifiers are registered.
1807 static int __init
early_amd_iommu_init(void)
1809 struct acpi_table_header
*ivrs_base
;
1810 acpi_size ivrs_size
;
1814 if (!amd_iommu_detected
)
1817 status
= acpi_get_table_with_size("IVRS", 0, &ivrs_base
, &ivrs_size
);
1818 if (status
== AE_NOT_FOUND
)
1820 else if (ACPI_FAILURE(status
)) {
1821 const char *err
= acpi_format_exception(status
);
1822 pr_err("AMD-Vi: IVRS table error: %s\n", err
);
1827 * First parse ACPI tables to find the largest Bus/Dev/Func
1828 * we need to handle. Upon this information the shared data
1829 * structures for the IOMMUs in the system will be allocated
1831 ret
= find_last_devid_acpi(ivrs_base
);
1835 dev_table_size
= tbl_size(DEV_TABLE_ENTRY_SIZE
);
1836 alias_table_size
= tbl_size(ALIAS_TABLE_ENTRY_SIZE
);
1837 rlookup_table_size
= tbl_size(RLOOKUP_TABLE_ENTRY_SIZE
);
1839 /* Device table - directly used by all IOMMUs */
1841 amd_iommu_dev_table
= (void *)__get_free_pages(GFP_KERNEL
| __GFP_ZERO
,
1842 get_order(dev_table_size
));
1843 if (amd_iommu_dev_table
== NULL
)
1847 * Alias table - map PCI Bus/Dev/Func to Bus/Dev/Func the
1848 * IOMMU see for that device
1850 amd_iommu_alias_table
= (void *)__get_free_pages(GFP_KERNEL
,
1851 get_order(alias_table_size
));
1852 if (amd_iommu_alias_table
== NULL
)
1855 /* IOMMU rlookup table - find the IOMMU for a specific device */
1856 amd_iommu_rlookup_table
= (void *)__get_free_pages(
1857 GFP_KERNEL
| __GFP_ZERO
,
1858 get_order(rlookup_table_size
));
1859 if (amd_iommu_rlookup_table
== NULL
)
1862 amd_iommu_pd_alloc_bitmap
= (void *)__get_free_pages(
1863 GFP_KERNEL
| __GFP_ZERO
,
1864 get_order(MAX_DOMAIN_ID
/8));
1865 if (amd_iommu_pd_alloc_bitmap
== NULL
)
1869 * let all alias entries point to itself
1871 for (i
= 0; i
<= amd_iommu_last_bdf
; ++i
)
1872 amd_iommu_alias_table
[i
] = i
;
1875 * never allocate domain 0 because its used as the non-allocated and
1876 * error value placeholder
1878 amd_iommu_pd_alloc_bitmap
[0] = 1;
1880 spin_lock_init(&amd_iommu_pd_lock
);
1883 * now the data structures are allocated and basically initialized
1884 * start the real acpi table scan
1886 ret
= init_iommu_all(ivrs_base
);
1890 if (amd_iommu_irq_remap
)
1891 amd_iommu_irq_remap
= check_ioapic_information();
1893 if (amd_iommu_irq_remap
) {
1895 * Interrupt remapping enabled, create kmem_cache for the
1899 amd_iommu_irq_cache
= kmem_cache_create("irq_remap_cache",
1900 MAX_IRQS_PER_TABLE
* sizeof(u32
),
1901 IRQ_TABLE_ALIGNMENT
,
1903 if (!amd_iommu_irq_cache
)
1906 irq_lookup_table
= (void *)__get_free_pages(
1907 GFP_KERNEL
| __GFP_ZERO
,
1908 get_order(rlookup_table_size
));
1909 if (!irq_lookup_table
)
1913 ret
= init_memory_definitions(ivrs_base
);
1917 /* init the device table */
1918 init_device_table();
1921 /* Don't leak any ACPI memory */
1922 early_acpi_os_unmap_memory((char __iomem
*)ivrs_base
, ivrs_size
);
1928 static int amd_iommu_enable_interrupts(void)
1930 struct amd_iommu
*iommu
;
1933 for_each_iommu(iommu
) {
1934 ret
= iommu_init_msi(iommu
);
1943 static bool detect_ivrs(void)
1945 struct acpi_table_header
*ivrs_base
;
1946 acpi_size ivrs_size
;
1949 status
= acpi_get_table_with_size("IVRS", 0, &ivrs_base
, &ivrs_size
);
1950 if (status
== AE_NOT_FOUND
)
1952 else if (ACPI_FAILURE(status
)) {
1953 const char *err
= acpi_format_exception(status
);
1954 pr_err("AMD-Vi: IVRS table error: %s\n", err
);
1958 early_acpi_os_unmap_memory((char __iomem
*)ivrs_base
, ivrs_size
);
1960 /* Make sure ACS will be enabled during PCI probe */
1966 /****************************************************************************
1968 * AMD IOMMU Initialization State Machine
1970 ****************************************************************************/
1972 static int __init
state_next(void)
1976 switch (init_state
) {
1977 case IOMMU_START_STATE
:
1978 if (!detect_ivrs()) {
1979 init_state
= IOMMU_NOT_FOUND
;
1982 init_state
= IOMMU_IVRS_DETECTED
;
1985 case IOMMU_IVRS_DETECTED
:
1986 ret
= early_amd_iommu_init();
1987 init_state
= ret
? IOMMU_INIT_ERROR
: IOMMU_ACPI_FINISHED
;
1989 case IOMMU_ACPI_FINISHED
:
1990 early_enable_iommus();
1991 register_syscore_ops(&amd_iommu_syscore_ops
);
1992 x86_platform
.iommu_shutdown
= disable_iommus
;
1993 init_state
= IOMMU_ENABLED
;
1996 ret
= amd_iommu_init_pci();
1997 init_state
= ret
? IOMMU_INIT_ERROR
: IOMMU_PCI_INIT
;
2000 case IOMMU_PCI_INIT
:
2001 ret
= amd_iommu_enable_interrupts();
2002 init_state
= ret
? IOMMU_INIT_ERROR
: IOMMU_INTERRUPTS_EN
;
2004 case IOMMU_INTERRUPTS_EN
:
2005 ret
= amd_iommu_init_dma_ops();
2006 init_state
= ret
? IOMMU_INIT_ERROR
: IOMMU_DMA_OPS
;
2009 init_state
= IOMMU_INITIALIZED
;
2011 case IOMMU_INITIALIZED
:
2014 case IOMMU_NOT_FOUND
:
2015 case IOMMU_INIT_ERROR
:
2016 /* Error states => do nothing */
2027 static int __init
iommu_go_to_state(enum iommu_init_state state
)
2031 while (init_state
!= state
) {
2033 if (init_state
== IOMMU_NOT_FOUND
||
2034 init_state
== IOMMU_INIT_ERROR
)
2041 #ifdef CONFIG_IRQ_REMAP
2042 int __init
amd_iommu_prepare(void)
2046 amd_iommu_irq_remap
= true;
2048 ret
= iommu_go_to_state(IOMMU_ACPI_FINISHED
);
2051 return amd_iommu_irq_remap
? 0 : -ENODEV
;
2054 int __init
amd_iommu_enable(void)
2058 ret
= iommu_go_to_state(IOMMU_ENABLED
);
2062 irq_remapping_enabled
= 1;
2067 void amd_iommu_disable(void)
2069 amd_iommu_suspend();
2072 int amd_iommu_reenable(int mode
)
2079 int __init
amd_iommu_enable_faulting(void)
2081 /* We enable MSI later when PCI is initialized */
2087 * This is the core init function for AMD IOMMU hardware in the system.
2088 * This function is called from the generic x86 DMA layer initialization
2091 static int __init
amd_iommu_init(void)
2095 ret
= iommu_go_to_state(IOMMU_INITIALIZED
);
2097 free_dma_resources();
2098 if (!irq_remapping_enabled
) {
2100 free_on_init_error();
2102 struct amd_iommu
*iommu
;
2104 uninit_device_table_dma();
2105 for_each_iommu(iommu
)
2106 iommu_flush_all_caches(iommu
);
2113 /****************************************************************************
2115 * Early detect code. This code runs at IOMMU detection time in the DMA
2116 * layer. It just looks if there is an IVRS ACPI table to detect AMD
2119 ****************************************************************************/
2120 int __init
amd_iommu_detect(void)
2124 if (no_iommu
|| (iommu_detected
&& !gart_iommu_aperture
))
2127 if (amd_iommu_disabled
)
2130 ret
= iommu_go_to_state(IOMMU_IVRS_DETECTED
);
2134 amd_iommu_detected
= true;
2136 x86_init
.iommu
.iommu_init
= amd_iommu_init
;
2141 /****************************************************************************
2143 * Parsing functions for the AMD IOMMU specific kernel command line
2146 ****************************************************************************/
2148 static int __init
parse_amd_iommu_dump(char *str
)
2150 amd_iommu_dump
= true;
2155 static int __init
parse_amd_iommu_options(char *str
)
2157 for (; *str
; ++str
) {
2158 if (strncmp(str
, "fullflush", 9) == 0)
2159 amd_iommu_unmap_flush
= true;
2160 if (strncmp(str
, "off", 3) == 0)
2161 amd_iommu_disabled
= true;
2162 if (strncmp(str
, "force_isolation", 15) == 0)
2163 amd_iommu_force_isolation
= true;
2169 static int __init
parse_ivrs_ioapic(char *str
)
2171 unsigned int bus
, dev
, fn
;
2175 ret
= sscanf(str
, "[%d]=%x:%x.%x", &id
, &bus
, &dev
, &fn
);
2178 pr_err("AMD-Vi: Invalid command line: ivrs_ioapic%s\n", str
);
2182 if (early_ioapic_map_size
== EARLY_MAP_SIZE
) {
2183 pr_err("AMD-Vi: Early IOAPIC map overflow - ignoring ivrs_ioapic%s\n",
2188 devid
= ((bus
& 0xff) << 8) | ((dev
& 0x1f) << 3) | (fn
& 0x7);
2190 cmdline_maps
= true;
2191 i
= early_ioapic_map_size
++;
2192 early_ioapic_map
[i
].id
= id
;
2193 early_ioapic_map
[i
].devid
= devid
;
2194 early_ioapic_map
[i
].cmd_line
= true;
2199 static int __init
parse_ivrs_hpet(char *str
)
2201 unsigned int bus
, dev
, fn
;
2205 ret
= sscanf(str
, "[%d]=%x:%x.%x", &id
, &bus
, &dev
, &fn
);
2208 pr_err("AMD-Vi: Invalid command line: ivrs_hpet%s\n", str
);
2212 if (early_hpet_map_size
== EARLY_MAP_SIZE
) {
2213 pr_err("AMD-Vi: Early HPET map overflow - ignoring ivrs_hpet%s\n",
2218 devid
= ((bus
& 0xff) << 8) | ((dev
& 0x1f) << 3) | (fn
& 0x7);
2220 cmdline_maps
= true;
2221 i
= early_hpet_map_size
++;
2222 early_hpet_map
[i
].id
= id
;
2223 early_hpet_map
[i
].devid
= devid
;
2224 early_hpet_map
[i
].cmd_line
= true;
2229 __setup("amd_iommu_dump", parse_amd_iommu_dump
);
2230 __setup("amd_iommu=", parse_amd_iommu_options
);
2231 __setup("ivrs_ioapic", parse_ivrs_ioapic
);
2232 __setup("ivrs_hpet", parse_ivrs_hpet
);
2234 IOMMU_INIT_FINISH(amd_iommu_detect
,
2235 gart_iommu_hole_init
,
2239 bool amd_iommu_v2_supported(void)
2241 return amd_iommu_v2_present
;
2243 EXPORT_SYMBOL(amd_iommu_v2_supported
);
2245 /****************************************************************************
2247 * IOMMU EFR Performance Counter support functionality. This code allows
2248 * access to the IOMMU PC functionality.
2250 ****************************************************************************/
2252 u8
amd_iommu_pc_get_max_banks(u16 devid
)
2254 struct amd_iommu
*iommu
;
2257 /* locate the iommu governing the devid */
2258 iommu
= amd_iommu_rlookup_table
[devid
];
2260 ret
= iommu
->max_banks
;
2264 EXPORT_SYMBOL(amd_iommu_pc_get_max_banks
);
2266 bool amd_iommu_pc_supported(void)
2268 return amd_iommu_pc_present
;
2270 EXPORT_SYMBOL(amd_iommu_pc_supported
);
2272 u8
amd_iommu_pc_get_max_counters(u16 devid
)
2274 struct amd_iommu
*iommu
;
2277 /* locate the iommu governing the devid */
2278 iommu
= amd_iommu_rlookup_table
[devid
];
2280 ret
= iommu
->max_counters
;
2284 EXPORT_SYMBOL(amd_iommu_pc_get_max_counters
);
2286 int amd_iommu_pc_get_set_reg_val(u16 devid
, u8 bank
, u8 cntr
, u8 fxn
,
2287 u64
*value
, bool is_write
)
2289 struct amd_iommu
*iommu
;
2293 /* Make sure the IOMMU PC resource is available */
2294 if (!amd_iommu_pc_present
)
2297 /* Locate the iommu associated with the device ID */
2298 iommu
= amd_iommu_rlookup_table
[devid
];
2300 /* Check for valid iommu and pc register indexing */
2301 if (WARN_ON((iommu
== NULL
) || (fxn
> 0x28) || (fxn
& 7)))
2304 offset
= (u32
)(((0x40|bank
) << 12) | (cntr
<< 8) | fxn
);
2306 /* Limit the offset to the hw defined mmio region aperture */
2307 max_offset_lim
= (u32
)(((0x40|iommu
->max_banks
) << 12) |
2308 (iommu
->max_counters
<< 8) | 0x28);
2309 if ((offset
< MMIO_CNTR_REG_OFFSET
) ||
2310 (offset
> max_offset_lim
))
2314 writel((u32
)*value
, iommu
->mmio_base
+ offset
);
2315 writel((*value
>> 32), iommu
->mmio_base
+ offset
+ 4);
2317 *value
= readl(iommu
->mmio_base
+ offset
+ 4);
2319 *value
= readl(iommu
->mmio_base
+ offset
);
2324 EXPORT_SYMBOL(amd_iommu_pc_get_set_reg_val
);