Linux Audio

Check our new training course

Loading...
v5.9
   1// SPDX-License-Identifier: GPL-2.0-only
   2/*
   3 * Copyright (C) 2007-2010 Advanced Micro Devices, Inc.
   4 * Author: Joerg Roedel <jroedel@suse.de>
   5 *         Leo Duran <leo.duran@amd.com>
   6 */
   7
   8#define pr_fmt(fmt)     "AMD-Vi: " fmt
   9#define dev_fmt(fmt)    pr_fmt(fmt)
  10
  11#include <linux/pci.h>
  12#include <linux/acpi.h>
  13#include <linux/list.h>
  14#include <linux/bitmap.h>
  15#include <linux/slab.h>
  16#include <linux/syscore_ops.h>
  17#include <linux/interrupt.h>
  18#include <linux/msi.h>
 
  19#include <linux/amd-iommu.h>
  20#include <linux/export.h>
  21#include <linux/kmemleak.h>
  22#include <linux/mem_encrypt.h>
  23#include <asm/pci-direct.h>
  24#include <asm/iommu.h>
  25#include <asm/apic.h>
  26#include <asm/msidef.h>
  27#include <asm/gart.h>
  28#include <asm/x86_init.h>
  29#include <asm/iommu_table.h>
  30#include <asm/io_apic.h>
  31#include <asm/irq_remapping.h>
 
  32
  33#include <linux/crash_dump.h>
  34
  35#include "amd_iommu.h"
  36#include "../irq_remapping.h"
  37
  38/*
  39 * definitions for the ACPI scanning code
  40 */
  41#define IVRS_HEADER_LENGTH 48
  42
  43#define ACPI_IVHD_TYPE_MAX_SUPPORTED	0x40
  44#define ACPI_IVMD_TYPE_ALL              0x20
  45#define ACPI_IVMD_TYPE                  0x21
  46#define ACPI_IVMD_TYPE_RANGE            0x22
  47
  48#define IVHD_DEV_ALL                    0x01
  49#define IVHD_DEV_SELECT                 0x02
  50#define IVHD_DEV_SELECT_RANGE_START     0x03
  51#define IVHD_DEV_RANGE_END              0x04
  52#define IVHD_DEV_ALIAS                  0x42
  53#define IVHD_DEV_ALIAS_RANGE            0x43
  54#define IVHD_DEV_EXT_SELECT             0x46
  55#define IVHD_DEV_EXT_SELECT_RANGE       0x47
  56#define IVHD_DEV_SPECIAL		0x48
  57#define IVHD_DEV_ACPI_HID		0xf0
  58
  59#define UID_NOT_PRESENT                 0
  60#define UID_IS_INTEGER                  1
  61#define UID_IS_CHARACTER                2
  62
  63#define IVHD_SPECIAL_IOAPIC		1
  64#define IVHD_SPECIAL_HPET		2
  65
  66#define IVHD_FLAG_HT_TUN_EN_MASK        0x01
  67#define IVHD_FLAG_PASSPW_EN_MASK        0x02
  68#define IVHD_FLAG_RESPASSPW_EN_MASK     0x04
  69#define IVHD_FLAG_ISOC_EN_MASK          0x08
  70
  71#define IVMD_FLAG_EXCL_RANGE            0x08
  72#define IVMD_FLAG_IW                    0x04
  73#define IVMD_FLAG_IR                    0x02
  74#define IVMD_FLAG_UNITY_MAP             0x01
  75
  76#define ACPI_DEVFLAG_INITPASS           0x01
  77#define ACPI_DEVFLAG_EXTINT             0x02
  78#define ACPI_DEVFLAG_NMI                0x04
  79#define ACPI_DEVFLAG_SYSMGT1            0x10
  80#define ACPI_DEVFLAG_SYSMGT2            0x20
  81#define ACPI_DEVFLAG_LINT0              0x40
  82#define ACPI_DEVFLAG_LINT1              0x80
  83#define ACPI_DEVFLAG_ATSDIS             0x10000000
  84
  85#define LOOP_TIMEOUT	100000
  86/*
  87 * ACPI table definitions
  88 *
  89 * These data structures are laid over the table to parse the important values
  90 * out of it.
  91 */
  92
  93extern const struct iommu_ops amd_iommu_ops;
  94
  95/*
  96 * structure describing one IOMMU in the ACPI table. Typically followed by one
  97 * or more ivhd_entrys.
  98 */
  99struct ivhd_header {
 100	u8 type;
 101	u8 flags;
 102	u16 length;
 103	u16 devid;
 104	u16 cap_ptr;
 105	u64 mmio_phys;
 106	u16 pci_seg;
 107	u16 info;
 108	u32 efr_attr;
 109
 110	/* Following only valid on IVHD type 11h and 40h */
 111	u64 efr_reg; /* Exact copy of MMIO_EXT_FEATURES */
 112	u64 res;
 113} __attribute__((packed));
 114
 115/*
 116 * A device entry describing which devices a specific IOMMU translates and
 117 * which requestor ids they use.
 118 */
 119struct ivhd_entry {
 120	u8 type;
 121	u16 devid;
 122	u8 flags;
 123	u32 ext;
 124	u32 hidh;
 125	u64 cid;
 126	u8 uidf;
 127	u8 uidl;
 128	u8 uid;
 129} __attribute__((packed));
 130
 131/*
 132 * An AMD IOMMU memory definition structure. It defines things like exclusion
 133 * ranges for devices and regions that should be unity mapped.
 134 */
 135struct ivmd_header {
 136	u8 type;
 137	u8 flags;
 138	u16 length;
 139	u16 devid;
 140	u16 aux;
 141	u64 resv;
 142	u64 range_start;
 143	u64 range_length;
 144} __attribute__((packed));
 145
 146bool amd_iommu_dump;
 147bool amd_iommu_irq_remap __read_mostly;
 148
 
 
 149int amd_iommu_guest_ir = AMD_IOMMU_GUEST_IR_VAPIC;
 150static int amd_iommu_xt_mode = IRQ_REMAP_XAPIC_MODE;
 151
 152static bool amd_iommu_detected;
 153static bool __initdata amd_iommu_disabled;
 
 154static int amd_iommu_target_ivhd_type;
 155
 156u16 amd_iommu_last_bdf;			/* largest PCI device id we have
 157					   to handle */
 158LIST_HEAD(amd_iommu_unity_map);		/* a list of required unity mappings
 159					   we find in ACPI */
 160bool amd_iommu_unmap_flush;		/* if true, flush on every unmap */
 161
 162LIST_HEAD(amd_iommu_list);		/* list of all AMD IOMMUs in the
 163					   system */
 164
 165/* Array to assign indices to IOMMUs*/
 166struct amd_iommu *amd_iommus[MAX_IOMMUS];
 167
 168/* Number of IOMMUs present in the system */
 169static int amd_iommus_present;
 170
 171/* IOMMUs have a non-present cache? */
 172bool amd_iommu_np_cache __read_mostly;
 173bool amd_iommu_iotlb_sup __read_mostly = true;
 174
 175u32 amd_iommu_max_pasid __read_mostly = ~0;
 176
 177bool amd_iommu_v2_present __read_mostly;
 178static bool amd_iommu_pc_present __read_mostly;
 179
 180bool amd_iommu_force_isolation __read_mostly;
 181
 182/*
 183 * Pointer to the device table which is shared by all AMD IOMMUs
 184 * it is indexed by the PCI device id or the HT unit id and contains
 185 * information about the domain the device belongs to as well as the
 186 * page table root pointer.
 187 */
 188struct dev_table_entry *amd_iommu_dev_table;
 189/*
 190 * Pointer to a device table which the content of old device table
 191 * will be copied to. It's only be used in kdump kernel.
 192 */
 193static struct dev_table_entry *old_dev_tbl_cpy;
 194
 195/*
 196 * The alias table is a driver specific data structure which contains the
 197 * mappings of the PCI device ids to the actual requestor ids on the IOMMU.
 198 * More than one device can share the same requestor id.
 199 */
 200u16 *amd_iommu_alias_table;
 201
 202/*
 203 * The rlookup table is used to find the IOMMU which is responsible
 204 * for a specific device. It is also indexed by the PCI device id.
 205 */
 206struct amd_iommu **amd_iommu_rlookup_table;
 207EXPORT_SYMBOL(amd_iommu_rlookup_table);
 208
 209/*
 210 * This table is used to find the irq remapping table for a given device id
 211 * quickly.
 212 */
 213struct irq_remap_table **irq_lookup_table;
 214
 215/*
 216 * AMD IOMMU allows up to 2^16 different protection domains. This is a bitmap
 217 * to know which ones are already in use.
 218 */
 219unsigned long *amd_iommu_pd_alloc_bitmap;
 220
 221static u32 dev_table_size;	/* size of the device table */
 222static u32 alias_table_size;	/* size of the alias table */
 223static u32 rlookup_table_size;	/* size if the rlookup table */
 224
 225enum iommu_init_state {
 226	IOMMU_START_STATE,
 227	IOMMU_IVRS_DETECTED,
 228	IOMMU_ACPI_FINISHED,
 229	IOMMU_ENABLED,
 230	IOMMU_PCI_INIT,
 231	IOMMU_INTERRUPTS_EN,
 232	IOMMU_DMA_OPS,
 233	IOMMU_INITIALIZED,
 234	IOMMU_NOT_FOUND,
 235	IOMMU_INIT_ERROR,
 236	IOMMU_CMDLINE_DISABLED,
 237};
 238
 239/* Early ioapic and hpet maps from kernel command line */
 240#define EARLY_MAP_SIZE		4
 241static struct devid_map __initdata early_ioapic_map[EARLY_MAP_SIZE];
 242static struct devid_map __initdata early_hpet_map[EARLY_MAP_SIZE];
 243static struct acpihid_map_entry __initdata early_acpihid_map[EARLY_MAP_SIZE];
 244
 245static int __initdata early_ioapic_map_size;
 246static int __initdata early_hpet_map_size;
 247static int __initdata early_acpihid_map_size;
 248
 249static bool __initdata cmdline_maps;
 250
 251static enum iommu_init_state init_state = IOMMU_START_STATE;
 252
 253static int amd_iommu_enable_interrupts(void);
 254static int __init iommu_go_to_state(enum iommu_init_state state);
 255static void init_device_table_dma(void);
 256
 257static bool amd_iommu_pre_enabled = true;
 258
 
 
 259bool translation_pre_enabled(struct amd_iommu *iommu)
 260{
 261	return (iommu->flags & AMD_IOMMU_FLAG_TRANS_PRE_ENABLED);
 262}
 263EXPORT_SYMBOL(translation_pre_enabled);
 264
 265static void clear_translation_pre_enabled(struct amd_iommu *iommu)
 266{
 267	iommu->flags &= ~AMD_IOMMU_FLAG_TRANS_PRE_ENABLED;
 268}
 269
 270static void init_translation_status(struct amd_iommu *iommu)
 271{
 272	u64 ctrl;
 273
 274	ctrl = readq(iommu->mmio_base + MMIO_CONTROL_OFFSET);
 275	if (ctrl & (1<<CONTROL_IOMMU_EN))
 276		iommu->flags |= AMD_IOMMU_FLAG_TRANS_PRE_ENABLED;
 277}
 278
 279static inline void update_last_devid(u16 devid)
 280{
 281	if (devid > amd_iommu_last_bdf)
 282		amd_iommu_last_bdf = devid;
 283}
 284
 285static inline unsigned long tbl_size(int entry_size)
 286{
 287	unsigned shift = PAGE_SHIFT +
 288			 get_order(((int)amd_iommu_last_bdf + 1) * entry_size);
 289
 290	return 1UL << shift;
 291}
 292
 293int amd_iommu_get_num_iommus(void)
 294{
 295	return amd_iommus_present;
 296}
 297
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 298/* Access to l1 and l2 indexed register spaces */
 299
 300static u32 iommu_read_l1(struct amd_iommu *iommu, u16 l1, u8 address)
 301{
 302	u32 val;
 303
 304	pci_write_config_dword(iommu->dev, 0xf8, (address | l1 << 16));
 305	pci_read_config_dword(iommu->dev, 0xfc, &val);
 306	return val;
 307}
 308
 309static void iommu_write_l1(struct amd_iommu *iommu, u16 l1, u8 address, u32 val)
 310{
 311	pci_write_config_dword(iommu->dev, 0xf8, (address | l1 << 16 | 1 << 31));
 312	pci_write_config_dword(iommu->dev, 0xfc, val);
 313	pci_write_config_dword(iommu->dev, 0xf8, (address | l1 << 16));
 314}
 315
 316static u32 iommu_read_l2(struct amd_iommu *iommu, u8 address)
 317{
 318	u32 val;
 319
 320	pci_write_config_dword(iommu->dev, 0xf0, address);
 321	pci_read_config_dword(iommu->dev, 0xf4, &val);
 322	return val;
 323}
 324
 325static void iommu_write_l2(struct amd_iommu *iommu, u8 address, u32 val)
 326{
 327	pci_write_config_dword(iommu->dev, 0xf0, (address | 1 << 8));
 328	pci_write_config_dword(iommu->dev, 0xf4, val);
 329}
 330
 331/****************************************************************************
 332 *
 333 * AMD IOMMU MMIO register space handling functions
 334 *
 335 * These functions are used to program the IOMMU device registers in
 336 * MMIO space required for that driver.
 337 *
 338 ****************************************************************************/
 339
 340/*
 341 * This function set the exclusion range in the IOMMU. DMA accesses to the
 342 * exclusion range are passed through untranslated
 343 */
 344static void iommu_set_exclusion_range(struct amd_iommu *iommu)
 345{
 346	u64 start = iommu->exclusion_start & PAGE_MASK;
 347	u64 limit = (start + iommu->exclusion_length - 1) & PAGE_MASK;
 348	u64 entry;
 349
 350	if (!iommu->exclusion_start)
 351		return;
 352
 353	entry = start | MMIO_EXCL_ENABLE_MASK;
 354	memcpy_toio(iommu->mmio_base + MMIO_EXCL_BASE_OFFSET,
 355			&entry, sizeof(entry));
 356
 357	entry = limit;
 358	memcpy_toio(iommu->mmio_base + MMIO_EXCL_LIMIT_OFFSET,
 359			&entry, sizeof(entry));
 360}
 361
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 362/* Programs the physical address of the device table into the IOMMU hardware */
 363static void iommu_set_device_table(struct amd_iommu *iommu)
 364{
 365	u64 entry;
 366
 367	BUG_ON(iommu->mmio_base == NULL);
 368
 369	entry = iommu_virt_to_phys(amd_iommu_dev_table);
 370	entry |= (dev_table_size >> 12) - 1;
 371	memcpy_toio(iommu->mmio_base + MMIO_DEV_TABLE_OFFSET,
 372			&entry, sizeof(entry));
 373}
 374
 375/* Generic functions to enable/disable certain features of the IOMMU. */
 376static void iommu_feature_enable(struct amd_iommu *iommu, u8 bit)
 377{
 378	u64 ctrl;
 379
 380	ctrl = readq(iommu->mmio_base +  MMIO_CONTROL_OFFSET);
 381	ctrl |= (1ULL << bit);
 382	writeq(ctrl, iommu->mmio_base +  MMIO_CONTROL_OFFSET);
 383}
 384
 385static void iommu_feature_disable(struct amd_iommu *iommu, u8 bit)
 386{
 387	u64 ctrl;
 388
 389	ctrl = readq(iommu->mmio_base + MMIO_CONTROL_OFFSET);
 390	ctrl &= ~(1ULL << bit);
 391	writeq(ctrl, iommu->mmio_base + MMIO_CONTROL_OFFSET);
 392}
 393
 394static void iommu_set_inv_tlb_timeout(struct amd_iommu *iommu, int timeout)
 395{
 396	u64 ctrl;
 397
 398	ctrl = readq(iommu->mmio_base + MMIO_CONTROL_OFFSET);
 399	ctrl &= ~CTRL_INV_TO_MASK;
 400	ctrl |= (timeout << CONTROL_INV_TIMEOUT) & CTRL_INV_TO_MASK;
 401	writeq(ctrl, iommu->mmio_base + MMIO_CONTROL_OFFSET);
 402}
 403
 404/* Function to enable the hardware */
 405static void iommu_enable(struct amd_iommu *iommu)
 406{
 407	iommu_feature_enable(iommu, CONTROL_IOMMU_EN);
 408}
 409
 410static void iommu_disable(struct amd_iommu *iommu)
 411{
 412	if (!iommu->mmio_base)
 413		return;
 414
 415	/* Disable command buffer */
 416	iommu_feature_disable(iommu, CONTROL_CMDBUF_EN);
 417
 418	/* Disable event logging and event interrupts */
 419	iommu_feature_disable(iommu, CONTROL_EVT_INT_EN);
 420	iommu_feature_disable(iommu, CONTROL_EVT_LOG_EN);
 421
 422	/* Disable IOMMU GA_LOG */
 423	iommu_feature_disable(iommu, CONTROL_GALOG_EN);
 424	iommu_feature_disable(iommu, CONTROL_GAINT_EN);
 425
 426	/* Disable IOMMU hardware itself */
 427	iommu_feature_disable(iommu, CONTROL_IOMMU_EN);
 428}
 429
 430/*
 431 * mapping and unmapping functions for the IOMMU MMIO space. Each AMD IOMMU in
 432 * the system has one.
 433 */
 434static u8 __iomem * __init iommu_map_mmio_space(u64 address, u64 end)
 435{
 436	if (!request_mem_region(address, end, "amd_iommu")) {
 437		pr_err("Can not reserve memory region %llx-%llx for mmio\n",
 438			address, end);
 439		pr_err("This is a BIOS bug. Please contact your hardware vendor\n");
 440		return NULL;
 441	}
 442
 443	return (u8 __iomem *)ioremap(address, end);
 444}
 445
 446static void __init iommu_unmap_mmio_space(struct amd_iommu *iommu)
 447{
 448	if (iommu->mmio_base)
 449		iounmap(iommu->mmio_base);
 450	release_mem_region(iommu->mmio_phys, iommu->mmio_phys_end);
 451}
 452
 453static inline u32 get_ivhd_header_size(struct ivhd_header *h)
 454{
 455	u32 size = 0;
 456
 457	switch (h->type) {
 458	case 0x10:
 459		size = 24;
 460		break;
 461	case 0x11:
 462	case 0x40:
 463		size = 40;
 464		break;
 465	}
 466	return size;
 467}
 468
 469/****************************************************************************
 470 *
 471 * The functions below belong to the first pass of AMD IOMMU ACPI table
 472 * parsing. In this pass we try to find out the highest device id this
 473 * code has to handle. Upon this information the size of the shared data
 474 * structures is determined later.
 475 *
 476 ****************************************************************************/
 477
 478/*
 479 * This function calculates the length of a given IVHD entry
 480 */
 481static inline int ivhd_entry_length(u8 *ivhd)
 482{
 483	u32 type = ((struct ivhd_entry *)ivhd)->type;
 484
 485	if (type < 0x80) {
 486		return 0x04 << (*ivhd >> 6);
 487	} else if (type == IVHD_DEV_ACPI_HID) {
 488		/* For ACPI_HID, offset 21 is uid len */
 489		return *((u8 *)ivhd + 21) + 22;
 490	}
 491	return 0;
 492}
 493
 494/*
 495 * After reading the highest device id from the IOMMU PCI capability header
 496 * this function looks if there is a higher device id defined in the ACPI table
 497 */
 498static int __init find_last_devid_from_ivhd(struct ivhd_header *h)
 499{
 500	u8 *p = (void *)h, *end = (void *)h;
 501	struct ivhd_entry *dev;
 502
 503	u32 ivhd_size = get_ivhd_header_size(h);
 504
 505	if (!ivhd_size) {
 506		pr_err("Unsupported IVHD type %#x\n", h->type);
 507		return -EINVAL;
 508	}
 509
 510	p += ivhd_size;
 511	end += h->length;
 512
 513	while (p < end) {
 514		dev = (struct ivhd_entry *)p;
 515		switch (dev->type) {
 516		case IVHD_DEV_ALL:
 517			/* Use maximum BDF value for DEV_ALL */
 518			update_last_devid(0xffff);
 519			break;
 520		case IVHD_DEV_SELECT:
 521		case IVHD_DEV_RANGE_END:
 522		case IVHD_DEV_ALIAS:
 523		case IVHD_DEV_EXT_SELECT:
 524			/* all the above subfield types refer to device ids */
 525			update_last_devid(dev->devid);
 526			break;
 527		default:
 528			break;
 529		}
 530		p += ivhd_entry_length(p);
 531	}
 532
 533	WARN_ON(p != end);
 534
 535	return 0;
 536}
 537
 538static int __init check_ivrs_checksum(struct acpi_table_header *table)
 539{
 540	int i;
 541	u8 checksum = 0, *p = (u8 *)table;
 542
 543	for (i = 0; i < table->length; ++i)
 544		checksum += p[i];
 545	if (checksum != 0) {
 546		/* ACPI table corrupt */
 547		pr_err(FW_BUG "IVRS invalid checksum\n");
 548		return -ENODEV;
 549	}
 550
 551	return 0;
 552}
 553
 554/*
 555 * Iterate over all IVHD entries in the ACPI table and find the highest device
 556 * id which we need to handle. This is the first of three functions which parse
 557 * the ACPI table. So we check the checksum here.
 558 */
 559static int __init find_last_devid_acpi(struct acpi_table_header *table)
 560{
 561	u8 *p = (u8 *)table, *end = (u8 *)table;
 562	struct ivhd_header *h;
 563
 564	p += IVRS_HEADER_LENGTH;
 565
 566	end += table->length;
 567	while (p < end) {
 568		h = (struct ivhd_header *)p;
 569		if (h->type == amd_iommu_target_ivhd_type) {
 570			int ret = find_last_devid_from_ivhd(h);
 571
 572			if (ret)
 573				return ret;
 574		}
 575		p += h->length;
 576	}
 577	WARN_ON(p != end);
 578
 579	return 0;
 580}
 581
 582/****************************************************************************
 583 *
 584 * The following functions belong to the code path which parses the ACPI table
 585 * the second time. In this ACPI parsing iteration we allocate IOMMU specific
 586 * data structures, initialize the device/alias/rlookup table and also
 587 * basically initialize the hardware.
 588 *
 589 ****************************************************************************/
 590
 591/*
 592 * Allocates the command buffer. This buffer is per AMD IOMMU. We can
 593 * write commands to that buffer later and the IOMMU will execute them
 594 * asynchronously
 595 */
 596static int __init alloc_command_buffer(struct amd_iommu *iommu)
 597{
 598	iommu->cmd_buf = (void *)__get_free_pages(GFP_KERNEL | __GFP_ZERO,
 599						  get_order(CMD_BUFFER_SIZE));
 600
 601	return iommu->cmd_buf ? 0 : -ENOMEM;
 602}
 603
 604/*
 605 * This function resets the command buffer if the IOMMU stopped fetching
 606 * commands from it.
 607 */
 608void amd_iommu_reset_cmd_buffer(struct amd_iommu *iommu)
 609{
 610	iommu_feature_disable(iommu, CONTROL_CMDBUF_EN);
 611
 612	writel(0x00, iommu->mmio_base + MMIO_CMD_HEAD_OFFSET);
 613	writel(0x00, iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
 614	iommu->cmd_buf_head = 0;
 615	iommu->cmd_buf_tail = 0;
 616
 617	iommu_feature_enable(iommu, CONTROL_CMDBUF_EN);
 618}
 619
 620/*
 621 * This function writes the command buffer address to the hardware and
 622 * enables it.
 623 */
 624static void iommu_enable_command_buffer(struct amd_iommu *iommu)
 625{
 626	u64 entry;
 627
 628	BUG_ON(iommu->cmd_buf == NULL);
 629
 630	entry = iommu_virt_to_phys(iommu->cmd_buf);
 631	entry |= MMIO_CMD_SIZE_512;
 632
 633	memcpy_toio(iommu->mmio_base + MMIO_CMD_BUF_OFFSET,
 634		    &entry, sizeof(entry));
 635
 636	amd_iommu_reset_cmd_buffer(iommu);
 637}
 638
 639/*
 640 * This function disables the command buffer
 641 */
 642static void iommu_disable_command_buffer(struct amd_iommu *iommu)
 643{
 644	iommu_feature_disable(iommu, CONTROL_CMDBUF_EN);
 645}
 646
 647static void __init free_command_buffer(struct amd_iommu *iommu)
 648{
 649	free_pages((unsigned long)iommu->cmd_buf, get_order(CMD_BUFFER_SIZE));
 650}
 651
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 652/* allocates the memory where the IOMMU will log its events to */
 653static int __init alloc_event_buffer(struct amd_iommu *iommu)
 654{
 655	iommu->evt_buf = (void *)__get_free_pages(GFP_KERNEL | __GFP_ZERO,
 656						  get_order(EVT_BUFFER_SIZE));
 657
 658	return iommu->evt_buf ? 0 : -ENOMEM;
 659}
 660
 661static void iommu_enable_event_buffer(struct amd_iommu *iommu)
 662{
 663	u64 entry;
 664
 665	BUG_ON(iommu->evt_buf == NULL);
 666
 667	entry = iommu_virt_to_phys(iommu->evt_buf) | EVT_LEN_MASK;
 668
 669	memcpy_toio(iommu->mmio_base + MMIO_EVT_BUF_OFFSET,
 670		    &entry, sizeof(entry));
 671
 672	/* set head and tail to zero manually */
 673	writel(0x00, iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
 674	writel(0x00, iommu->mmio_base + MMIO_EVT_TAIL_OFFSET);
 675
 676	iommu_feature_enable(iommu, CONTROL_EVT_LOG_EN);
 677}
 678
 679/*
 680 * This function disables the event log buffer
 681 */
 682static void iommu_disable_event_buffer(struct amd_iommu *iommu)
 683{
 684	iommu_feature_disable(iommu, CONTROL_EVT_LOG_EN);
 685}
 686
 687static void __init free_event_buffer(struct amd_iommu *iommu)
 688{
 689	free_pages((unsigned long)iommu->evt_buf, get_order(EVT_BUFFER_SIZE));
 690}
 691
 692/* allocates the memory where the IOMMU will log its events to */
 693static int __init alloc_ppr_log(struct amd_iommu *iommu)
 694{
 695	iommu->ppr_log = (void *)__get_free_pages(GFP_KERNEL | __GFP_ZERO,
 696						  get_order(PPR_LOG_SIZE));
 697
 698	return iommu->ppr_log ? 0 : -ENOMEM;
 699}
 700
 701static void iommu_enable_ppr_log(struct amd_iommu *iommu)
 702{
 703	u64 entry;
 704
 705	if (iommu->ppr_log == NULL)
 706		return;
 707
 708	entry = iommu_virt_to_phys(iommu->ppr_log) | PPR_LOG_SIZE_512;
 709
 710	memcpy_toio(iommu->mmio_base + MMIO_PPR_LOG_OFFSET,
 711		    &entry, sizeof(entry));
 712
 713	/* set head and tail to zero manually */
 714	writel(0x00, iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
 715	writel(0x00, iommu->mmio_base + MMIO_PPR_TAIL_OFFSET);
 716
 717	iommu_feature_enable(iommu, CONTROL_PPRLOG_EN);
 718	iommu_feature_enable(iommu, CONTROL_PPR_EN);
 719}
 720
 721static void __init free_ppr_log(struct amd_iommu *iommu)
 722{
 723	free_pages((unsigned long)iommu->ppr_log, get_order(PPR_LOG_SIZE));
 724}
 725
 726static void free_ga_log(struct amd_iommu *iommu)
 727{
 728#ifdef CONFIG_IRQ_REMAP
 729	free_pages((unsigned long)iommu->ga_log, get_order(GA_LOG_SIZE));
 730	free_pages((unsigned long)iommu->ga_log_tail, get_order(8));
 731#endif
 732}
 733
 734static int iommu_ga_log_enable(struct amd_iommu *iommu)
 735{
 736#ifdef CONFIG_IRQ_REMAP
 737	u32 status, i;
 738
 739	if (!iommu->ga_log)
 740		return -EINVAL;
 741
 742	status = readl(iommu->mmio_base + MMIO_STATUS_OFFSET);
 743
 744	/* Check if already running */
 745	if (status & (MMIO_STATUS_GALOG_RUN_MASK))
 746		return 0;
 747
 748	iommu_feature_enable(iommu, CONTROL_GAINT_EN);
 749	iommu_feature_enable(iommu, CONTROL_GALOG_EN);
 750
 751	for (i = 0; i < LOOP_TIMEOUT; ++i) {
 752		status = readl(iommu->mmio_base + MMIO_STATUS_OFFSET);
 753		if (status & (MMIO_STATUS_GALOG_RUN_MASK))
 754			break;
 755	}
 756
 757	if (i >= LOOP_TIMEOUT)
 758		return -EINVAL;
 759#endif /* CONFIG_IRQ_REMAP */
 760	return 0;
 761}
 762
 763#ifdef CONFIG_IRQ_REMAP
 764static int iommu_init_ga_log(struct amd_iommu *iommu)
 765{
 766	u64 entry;
 767
 768	if (!AMD_IOMMU_GUEST_IR_VAPIC(amd_iommu_guest_ir))
 769		return 0;
 770
 771	iommu->ga_log = (u8 *)__get_free_pages(GFP_KERNEL | __GFP_ZERO,
 772					get_order(GA_LOG_SIZE));
 773	if (!iommu->ga_log)
 774		goto err_out;
 775
 776	iommu->ga_log_tail = (u8 *)__get_free_pages(GFP_KERNEL | __GFP_ZERO,
 777					get_order(8));
 778	if (!iommu->ga_log_tail)
 779		goto err_out;
 780
 781	entry = iommu_virt_to_phys(iommu->ga_log) | GA_LOG_SIZE_512;
 782	memcpy_toio(iommu->mmio_base + MMIO_GA_LOG_BASE_OFFSET,
 783		    &entry, sizeof(entry));
 784	entry = (iommu_virt_to_phys(iommu->ga_log_tail) &
 785		 (BIT_ULL(52)-1)) & ~7ULL;
 786	memcpy_toio(iommu->mmio_base + MMIO_GA_LOG_TAIL_OFFSET,
 787		    &entry, sizeof(entry));
 788	writel(0x00, iommu->mmio_base + MMIO_GA_HEAD_OFFSET);
 789	writel(0x00, iommu->mmio_base + MMIO_GA_TAIL_OFFSET);
 790
 791	return 0;
 792err_out:
 793	free_ga_log(iommu);
 794	return -EINVAL;
 795}
 796#endif /* CONFIG_IRQ_REMAP */
 797
 798static int iommu_init_ga(struct amd_iommu *iommu)
 799{
 800	int ret = 0;
 801
 802#ifdef CONFIG_IRQ_REMAP
 803	/* Note: We have already checked GASup from IVRS table.
 804	 *       Now, we need to make sure that GAMSup is set.
 805	 */
 806	if (AMD_IOMMU_GUEST_IR_VAPIC(amd_iommu_guest_ir) &&
 807	    !iommu_feature(iommu, FEATURE_GAM_VAPIC))
 808		amd_iommu_guest_ir = AMD_IOMMU_GUEST_IR_LEGACY_GA;
 809
 810	ret = iommu_init_ga_log(iommu);
 811#endif /* CONFIG_IRQ_REMAP */
 812
 813	return ret;
 814}
 815
 
 
 
 
 
 
 
 
 
 
 
 
 
 816static void iommu_enable_xt(struct amd_iommu *iommu)
 817{
 818#ifdef CONFIG_IRQ_REMAP
 819	/*
 820	 * XT mode (32-bit APIC destination ID) requires
 821	 * GA mode (128-bit IRTE support) as a prerequisite.
 822	 */
 823	if (AMD_IOMMU_GUEST_IR_GA(amd_iommu_guest_ir) &&
 824	    amd_iommu_xt_mode == IRQ_REMAP_X2APIC_MODE)
 825		iommu_feature_enable(iommu, CONTROL_XT_EN);
 826#endif /* CONFIG_IRQ_REMAP */
 827}
 828
 829static void iommu_enable_gt(struct amd_iommu *iommu)
 830{
 831	if (!iommu_feature(iommu, FEATURE_GT))
 832		return;
 833
 834	iommu_feature_enable(iommu, CONTROL_GT_EN);
 835}
 836
 837/* sets a specific bit in the device table entry. */
 838static void set_dev_entry_bit(u16 devid, u8 bit)
 839{
 840	int i = (bit >> 6) & 0x03;
 841	int _bit = bit & 0x3f;
 842
 843	amd_iommu_dev_table[devid].data[i] |= (1UL << _bit);
 844}
 845
 846static int get_dev_entry_bit(u16 devid, u8 bit)
 847{
 848	int i = (bit >> 6) & 0x03;
 849	int _bit = bit & 0x3f;
 850
 851	return (amd_iommu_dev_table[devid].data[i] & (1UL << _bit)) >> _bit;
 852}
 853
 854
 855static bool copy_device_table(void)
 856{
 857	u64 int_ctl, int_tab_len, entry = 0, last_entry = 0;
 858	struct dev_table_entry *old_devtb = NULL;
 859	u32 lo, hi, devid, old_devtb_size;
 860	phys_addr_t old_devtb_phys;
 861	struct amd_iommu *iommu;
 862	u16 dom_id, dte_v, irq_v;
 863	gfp_t gfp_flag;
 864	u64 tmp;
 865
 866	if (!amd_iommu_pre_enabled)
 867		return false;
 868
 869	pr_warn("Translation is already enabled - trying to copy translation structures\n");
 870	for_each_iommu(iommu) {
 871		/* All IOMMUs should use the same device table with the same size */
 872		lo = readl(iommu->mmio_base + MMIO_DEV_TABLE_OFFSET);
 873		hi = readl(iommu->mmio_base + MMIO_DEV_TABLE_OFFSET + 4);
 874		entry = (((u64) hi) << 32) + lo;
 875		if (last_entry && last_entry != entry) {
 876			pr_err("IOMMU:%d should use the same dev table as others!\n",
 877				iommu->index);
 878			return false;
 879		}
 880		last_entry = entry;
 881
 882		old_devtb_size = ((entry & ~PAGE_MASK) + 1) << 12;
 883		if (old_devtb_size != dev_table_size) {
 884			pr_err("The device table size of IOMMU:%d is not expected!\n",
 885				iommu->index);
 886			return false;
 887		}
 888	}
 889
 890	/*
 891	 * When SME is enabled in the first kernel, the entry includes the
 892	 * memory encryption mask(sme_me_mask), we must remove the memory
 893	 * encryption mask to obtain the true physical address in kdump kernel.
 894	 */
 895	old_devtb_phys = __sme_clr(entry) & PAGE_MASK;
 896
 897	if (old_devtb_phys >= 0x100000000ULL) {
 898		pr_err("The address of old device table is above 4G, not trustworthy!\n");
 899		return false;
 900	}
 901	old_devtb = (sme_active() && is_kdump_kernel())
 902		    ? (__force void *)ioremap_encrypted(old_devtb_phys,
 903							dev_table_size)
 904		    : memremap(old_devtb_phys, dev_table_size, MEMREMAP_WB);
 905
 906	if (!old_devtb)
 907		return false;
 908
 909	gfp_flag = GFP_KERNEL | __GFP_ZERO | GFP_DMA32;
 910	old_dev_tbl_cpy = (void *)__get_free_pages(gfp_flag,
 911				get_order(dev_table_size));
 912	if (old_dev_tbl_cpy == NULL) {
 913		pr_err("Failed to allocate memory for copying old device table!\n");
 914		return false;
 915	}
 916
 917	for (devid = 0; devid <= amd_iommu_last_bdf; ++devid) {
 918		old_dev_tbl_cpy[devid] = old_devtb[devid];
 919		dom_id = old_devtb[devid].data[1] & DEV_DOMID_MASK;
 920		dte_v = old_devtb[devid].data[0] & DTE_FLAG_V;
 921
 922		if (dte_v && dom_id) {
 923			old_dev_tbl_cpy[devid].data[0] = old_devtb[devid].data[0];
 924			old_dev_tbl_cpy[devid].data[1] = old_devtb[devid].data[1];
 925			__set_bit(dom_id, amd_iommu_pd_alloc_bitmap);
 926			/* If gcr3 table existed, mask it out */
 927			if (old_devtb[devid].data[0] & DTE_FLAG_GV) {
 928				tmp = DTE_GCR3_VAL_B(~0ULL) << DTE_GCR3_SHIFT_B;
 929				tmp |= DTE_GCR3_VAL_C(~0ULL) << DTE_GCR3_SHIFT_C;
 930				old_dev_tbl_cpy[devid].data[1] &= ~tmp;
 931				tmp = DTE_GCR3_VAL_A(~0ULL) << DTE_GCR3_SHIFT_A;
 932				tmp |= DTE_FLAG_GV;
 933				old_dev_tbl_cpy[devid].data[0] &= ~tmp;
 934			}
 935		}
 936
 937		irq_v = old_devtb[devid].data[2] & DTE_IRQ_REMAP_ENABLE;
 938		int_ctl = old_devtb[devid].data[2] & DTE_IRQ_REMAP_INTCTL_MASK;
 939		int_tab_len = old_devtb[devid].data[2] & DTE_IRQ_TABLE_LEN_MASK;
 940		if (irq_v && (int_ctl || int_tab_len)) {
 941			if ((int_ctl != DTE_IRQ_REMAP_INTCTL) ||
 942			    (int_tab_len != DTE_IRQ_TABLE_LEN)) {
 943				pr_err("Wrong old irq remapping flag: %#x\n", devid);
 944				return false;
 945			}
 946
 947		        old_dev_tbl_cpy[devid].data[2] = old_devtb[devid].data[2];
 948		}
 949	}
 950	memunmap(old_devtb);
 951
 952	return true;
 953}
 954
 955void amd_iommu_apply_erratum_63(u16 devid)
 956{
 957	int sysmgt;
 958
 959	sysmgt = get_dev_entry_bit(devid, DEV_ENTRY_SYSMGT1) |
 960		 (get_dev_entry_bit(devid, DEV_ENTRY_SYSMGT2) << 1);
 961
 962	if (sysmgt == 0x01)
 963		set_dev_entry_bit(devid, DEV_ENTRY_IW);
 964}
 965
 966/* Writes the specific IOMMU for a device into the rlookup table */
 967static void __init set_iommu_for_device(struct amd_iommu *iommu, u16 devid)
 968{
 969	amd_iommu_rlookup_table[devid] = iommu;
 970}
 971
 972/*
 973 * This function takes the device specific flags read from the ACPI
 974 * table and sets up the device table entry with that information
 975 */
 976static void __init set_dev_entry_from_acpi(struct amd_iommu *iommu,
 977					   u16 devid, u32 flags, u32 ext_flags)
 978{
 979	if (flags & ACPI_DEVFLAG_INITPASS)
 980		set_dev_entry_bit(devid, DEV_ENTRY_INIT_PASS);
 981	if (flags & ACPI_DEVFLAG_EXTINT)
 982		set_dev_entry_bit(devid, DEV_ENTRY_EINT_PASS);
 983	if (flags & ACPI_DEVFLAG_NMI)
 984		set_dev_entry_bit(devid, DEV_ENTRY_NMI_PASS);
 985	if (flags & ACPI_DEVFLAG_SYSMGT1)
 986		set_dev_entry_bit(devid, DEV_ENTRY_SYSMGT1);
 987	if (flags & ACPI_DEVFLAG_SYSMGT2)
 988		set_dev_entry_bit(devid, DEV_ENTRY_SYSMGT2);
 989	if (flags & ACPI_DEVFLAG_LINT0)
 990		set_dev_entry_bit(devid, DEV_ENTRY_LINT0_PASS);
 991	if (flags & ACPI_DEVFLAG_LINT1)
 992		set_dev_entry_bit(devid, DEV_ENTRY_LINT1_PASS);
 993
 994	amd_iommu_apply_erratum_63(devid);
 995
 996	set_iommu_for_device(iommu, devid);
 997}
 998
 999int __init add_special_device(u8 type, u8 id, u16 *devid, bool cmd_line)
1000{
1001	struct devid_map *entry;
1002	struct list_head *list;
1003
1004	if (type == IVHD_SPECIAL_IOAPIC)
1005		list = &ioapic_map;
1006	else if (type == IVHD_SPECIAL_HPET)
1007		list = &hpet_map;
1008	else
1009		return -EINVAL;
1010
1011	list_for_each_entry(entry, list, list) {
1012		if (!(entry->id == id && entry->cmd_line))
1013			continue;
1014
1015		pr_info("Command-line override present for %s id %d - ignoring\n",
1016			type == IVHD_SPECIAL_IOAPIC ? "IOAPIC" : "HPET", id);
1017
1018		*devid = entry->devid;
1019
1020		return 0;
1021	}
1022
1023	entry = kzalloc(sizeof(*entry), GFP_KERNEL);
1024	if (!entry)
1025		return -ENOMEM;
1026
1027	entry->id	= id;
1028	entry->devid	= *devid;
1029	entry->cmd_line	= cmd_line;
1030
1031	list_add_tail(&entry->list, list);
1032
1033	return 0;
1034}
1035
1036static int __init add_acpi_hid_device(u8 *hid, u8 *uid, u16 *devid,
1037				      bool cmd_line)
1038{
1039	struct acpihid_map_entry *entry;
1040	struct list_head *list = &acpihid_map;
1041
1042	list_for_each_entry(entry, list, list) {
1043		if (strcmp(entry->hid, hid) ||
1044		    (*uid && *entry->uid && strcmp(entry->uid, uid)) ||
1045		    !entry->cmd_line)
1046			continue;
1047
1048		pr_info("Command-line override for hid:%s uid:%s\n",
1049			hid, uid);
1050		*devid = entry->devid;
1051		return 0;
1052	}
1053
1054	entry = kzalloc(sizeof(*entry), GFP_KERNEL);
1055	if (!entry)
1056		return -ENOMEM;
1057
1058	memcpy(entry->uid, uid, strlen(uid));
1059	memcpy(entry->hid, hid, strlen(hid));
1060	entry->devid = *devid;
1061	entry->cmd_line	= cmd_line;
1062	entry->root_devid = (entry->devid & (~0x7));
1063
1064	pr_info("%s, add hid:%s, uid:%s, rdevid:%d\n",
1065		entry->cmd_line ? "cmd" : "ivrs",
1066		entry->hid, entry->uid, entry->root_devid);
1067
1068	list_add_tail(&entry->list, list);
1069	return 0;
1070}
1071
1072static int __init add_early_maps(void)
1073{
1074	int i, ret;
1075
1076	for (i = 0; i < early_ioapic_map_size; ++i) {
1077		ret = add_special_device(IVHD_SPECIAL_IOAPIC,
1078					 early_ioapic_map[i].id,
1079					 &early_ioapic_map[i].devid,
1080					 early_ioapic_map[i].cmd_line);
1081		if (ret)
1082			return ret;
1083	}
1084
1085	for (i = 0; i < early_hpet_map_size; ++i) {
1086		ret = add_special_device(IVHD_SPECIAL_HPET,
1087					 early_hpet_map[i].id,
1088					 &early_hpet_map[i].devid,
1089					 early_hpet_map[i].cmd_line);
1090		if (ret)
1091			return ret;
1092	}
1093
1094	for (i = 0; i < early_acpihid_map_size; ++i) {
1095		ret = add_acpi_hid_device(early_acpihid_map[i].hid,
1096					  early_acpihid_map[i].uid,
1097					  &early_acpihid_map[i].devid,
1098					  early_acpihid_map[i].cmd_line);
1099		if (ret)
1100			return ret;
1101	}
1102
1103	return 0;
1104}
1105
1106/*
1107 * Takes a pointer to an AMD IOMMU entry in the ACPI table and
1108 * initializes the hardware and our data structures with it.
1109 */
1110static int __init init_iommu_from_acpi(struct amd_iommu *iommu,
1111					struct ivhd_header *h)
1112{
1113	u8 *p = (u8 *)h;
1114	u8 *end = p, flags = 0;
1115	u16 devid = 0, devid_start = 0, devid_to = 0;
1116	u32 dev_i, ext_flags = 0;
1117	bool alias = false;
1118	struct ivhd_entry *e;
1119	u32 ivhd_size;
1120	int ret;
1121
1122
1123	ret = add_early_maps();
1124	if (ret)
1125		return ret;
1126
1127	amd_iommu_apply_ivrs_quirks();
1128
1129	/*
1130	 * First save the recommended feature enable bits from ACPI
1131	 */
1132	iommu->acpi_flags = h->flags;
1133
1134	/*
1135	 * Done. Now parse the device entries
1136	 */
1137	ivhd_size = get_ivhd_header_size(h);
1138	if (!ivhd_size) {
1139		pr_err("Unsupported IVHD type %#x\n", h->type);
1140		return -EINVAL;
1141	}
1142
1143	p += ivhd_size;
1144
1145	end += h->length;
1146
1147
1148	while (p < end) {
1149		e = (struct ivhd_entry *)p;
1150		switch (e->type) {
1151		case IVHD_DEV_ALL:
1152
1153			DUMP_printk("  DEV_ALL\t\t\tflags: %02x\n", e->flags);
1154
1155			for (dev_i = 0; dev_i <= amd_iommu_last_bdf; ++dev_i)
1156				set_dev_entry_from_acpi(iommu, dev_i, e->flags, 0);
1157			break;
1158		case IVHD_DEV_SELECT:
1159
1160			DUMP_printk("  DEV_SELECT\t\t\t devid: %02x:%02x.%x "
1161				    "flags: %02x\n",
1162				    PCI_BUS_NUM(e->devid),
1163				    PCI_SLOT(e->devid),
1164				    PCI_FUNC(e->devid),
1165				    e->flags);
1166
1167			devid = e->devid;
1168			set_dev_entry_from_acpi(iommu, devid, e->flags, 0);
1169			break;
1170		case IVHD_DEV_SELECT_RANGE_START:
1171
1172			DUMP_printk("  DEV_SELECT_RANGE_START\t "
1173				    "devid: %02x:%02x.%x flags: %02x\n",
1174				    PCI_BUS_NUM(e->devid),
1175				    PCI_SLOT(e->devid),
1176				    PCI_FUNC(e->devid),
1177				    e->flags);
1178
1179			devid_start = e->devid;
1180			flags = e->flags;
1181			ext_flags = 0;
1182			alias = false;
1183			break;
1184		case IVHD_DEV_ALIAS:
1185
1186			DUMP_printk("  DEV_ALIAS\t\t\t devid: %02x:%02x.%x "
1187				    "flags: %02x devid_to: %02x:%02x.%x\n",
1188				    PCI_BUS_NUM(e->devid),
1189				    PCI_SLOT(e->devid),
1190				    PCI_FUNC(e->devid),
1191				    e->flags,
1192				    PCI_BUS_NUM(e->ext >> 8),
1193				    PCI_SLOT(e->ext >> 8),
1194				    PCI_FUNC(e->ext >> 8));
1195
1196			devid = e->devid;
1197			devid_to = e->ext >> 8;
1198			set_dev_entry_from_acpi(iommu, devid   , e->flags, 0);
1199			set_dev_entry_from_acpi(iommu, devid_to, e->flags, 0);
1200			amd_iommu_alias_table[devid] = devid_to;
1201			break;
1202		case IVHD_DEV_ALIAS_RANGE:
1203
1204			DUMP_printk("  DEV_ALIAS_RANGE\t\t "
1205				    "devid: %02x:%02x.%x flags: %02x "
1206				    "devid_to: %02x:%02x.%x\n",
1207				    PCI_BUS_NUM(e->devid),
1208				    PCI_SLOT(e->devid),
1209				    PCI_FUNC(e->devid),
1210				    e->flags,
1211				    PCI_BUS_NUM(e->ext >> 8),
1212				    PCI_SLOT(e->ext >> 8),
1213				    PCI_FUNC(e->ext >> 8));
1214
1215			devid_start = e->devid;
1216			flags = e->flags;
1217			devid_to = e->ext >> 8;
1218			ext_flags = 0;
1219			alias = true;
1220			break;
1221		case IVHD_DEV_EXT_SELECT:
1222
1223			DUMP_printk("  DEV_EXT_SELECT\t\t devid: %02x:%02x.%x "
1224				    "flags: %02x ext: %08x\n",
1225				    PCI_BUS_NUM(e->devid),
1226				    PCI_SLOT(e->devid),
1227				    PCI_FUNC(e->devid),
1228				    e->flags, e->ext);
1229
1230			devid = e->devid;
1231			set_dev_entry_from_acpi(iommu, devid, e->flags,
1232						e->ext);
1233			break;
1234		case IVHD_DEV_EXT_SELECT_RANGE:
1235
1236			DUMP_printk("  DEV_EXT_SELECT_RANGE\t devid: "
1237				    "%02x:%02x.%x flags: %02x ext: %08x\n",
1238				    PCI_BUS_NUM(e->devid),
1239				    PCI_SLOT(e->devid),
1240				    PCI_FUNC(e->devid),
1241				    e->flags, e->ext);
1242
1243			devid_start = e->devid;
1244			flags = e->flags;
1245			ext_flags = e->ext;
1246			alias = false;
1247			break;
1248		case IVHD_DEV_RANGE_END:
1249
1250			DUMP_printk("  DEV_RANGE_END\t\t devid: %02x:%02x.%x\n",
1251				    PCI_BUS_NUM(e->devid),
1252				    PCI_SLOT(e->devid),
1253				    PCI_FUNC(e->devid));
1254
1255			devid = e->devid;
1256			for (dev_i = devid_start; dev_i <= devid; ++dev_i) {
1257				if (alias) {
1258					amd_iommu_alias_table[dev_i] = devid_to;
1259					set_dev_entry_from_acpi(iommu,
1260						devid_to, flags, ext_flags);
1261				}
1262				set_dev_entry_from_acpi(iommu, dev_i,
1263							flags, ext_flags);
1264			}
1265			break;
1266		case IVHD_DEV_SPECIAL: {
1267			u8 handle, type;
1268			const char *var;
1269			u16 devid;
1270			int ret;
1271
1272			handle = e->ext & 0xff;
1273			devid  = (e->ext >>  8) & 0xffff;
1274			type   = (e->ext >> 24) & 0xff;
1275
1276			if (type == IVHD_SPECIAL_IOAPIC)
1277				var = "IOAPIC";
1278			else if (type == IVHD_SPECIAL_HPET)
1279				var = "HPET";
1280			else
1281				var = "UNKNOWN";
1282
1283			DUMP_printk("  DEV_SPECIAL(%s[%d])\t\tdevid: %02x:%02x.%x\n",
1284				    var, (int)handle,
1285				    PCI_BUS_NUM(devid),
1286				    PCI_SLOT(devid),
1287				    PCI_FUNC(devid));
1288
1289			ret = add_special_device(type, handle, &devid, false);
1290			if (ret)
1291				return ret;
1292
1293			/*
1294			 * add_special_device might update the devid in case a
1295			 * command-line override is present. So call
1296			 * set_dev_entry_from_acpi after add_special_device.
1297			 */
1298			set_dev_entry_from_acpi(iommu, devid, e->flags, 0);
1299
1300			break;
1301		}
1302		case IVHD_DEV_ACPI_HID: {
1303			u16 devid;
1304			u8 hid[ACPIHID_HID_LEN];
1305			u8 uid[ACPIHID_UID_LEN];
1306			int ret;
1307
1308			if (h->type != 0x40) {
1309				pr_err(FW_BUG "Invalid IVHD device type %#x\n",
1310				       e->type);
1311				break;
1312			}
1313
1314			memcpy(hid, (u8 *)(&e->ext), ACPIHID_HID_LEN - 1);
1315			hid[ACPIHID_HID_LEN - 1] = '\0';
1316
1317			if (!(*hid)) {
1318				pr_err(FW_BUG "Invalid HID.\n");
1319				break;
1320			}
1321
1322			uid[0] = '\0';
1323			switch (e->uidf) {
1324			case UID_NOT_PRESENT:
1325
1326				if (e->uidl != 0)
1327					pr_warn(FW_BUG "Invalid UID length.\n");
1328
1329				break;
1330			case UID_IS_INTEGER:
1331
1332				sprintf(uid, "%d", e->uid);
1333
1334				break;
1335			case UID_IS_CHARACTER:
1336
1337				memcpy(uid, &e->uid, e->uidl);
1338				uid[e->uidl] = '\0';
1339
1340				break;
1341			default:
1342				break;
1343			}
1344
1345			devid = e->devid;
1346			DUMP_printk("  DEV_ACPI_HID(%s[%s])\t\tdevid: %02x:%02x.%x\n",
1347				    hid, uid,
1348				    PCI_BUS_NUM(devid),
1349				    PCI_SLOT(devid),
1350				    PCI_FUNC(devid));
1351
1352			flags = e->flags;
1353
1354			ret = add_acpi_hid_device(hid, uid, &devid, false);
1355			if (ret)
1356				return ret;
1357
1358			/*
1359			 * add_special_device might update the devid in case a
1360			 * command-line override is present. So call
1361			 * set_dev_entry_from_acpi after add_special_device.
1362			 */
1363			set_dev_entry_from_acpi(iommu, devid, e->flags, 0);
1364
1365			break;
1366		}
1367		default:
1368			break;
1369		}
1370
1371		p += ivhd_entry_length(p);
1372	}
1373
1374	return 0;
1375}
1376
1377static void __init free_iommu_one(struct amd_iommu *iommu)
1378{
 
1379	free_command_buffer(iommu);
1380	free_event_buffer(iommu);
1381	free_ppr_log(iommu);
1382	free_ga_log(iommu);
1383	iommu_unmap_mmio_space(iommu);
1384}
1385
1386static void __init free_iommu_all(void)
1387{
1388	struct amd_iommu *iommu, *next;
1389
1390	for_each_iommu_safe(iommu, next) {
1391		list_del(&iommu->list);
1392		free_iommu_one(iommu);
1393		kfree(iommu);
1394	}
1395}
1396
1397/*
1398 * Family15h Model 10h-1fh erratum 746 (IOMMU Logging May Stall Translations)
1399 * Workaround:
1400 *     BIOS should disable L2B micellaneous clock gating by setting
1401 *     L2_L2B_CK_GATE_CONTROL[CKGateL2BMiscDisable](D0F2xF4_x90[2]) = 1b
1402 */
1403static void amd_iommu_erratum_746_workaround(struct amd_iommu *iommu)
1404{
1405	u32 value;
1406
1407	if ((boot_cpu_data.x86 != 0x15) ||
1408	    (boot_cpu_data.x86_model < 0x10) ||
1409	    (boot_cpu_data.x86_model > 0x1f))
1410		return;
1411
1412	pci_write_config_dword(iommu->dev, 0xf0, 0x90);
1413	pci_read_config_dword(iommu->dev, 0xf4, &value);
1414
1415	if (value & BIT(2))
1416		return;
1417
1418	/* Select NB indirect register 0x90 and enable writing */
1419	pci_write_config_dword(iommu->dev, 0xf0, 0x90 | (1 << 8));
1420
1421	pci_write_config_dword(iommu->dev, 0xf4, value | 0x4);
1422	pci_info(iommu->dev, "Applying erratum 746 workaround\n");
1423
1424	/* Clear the enable writing bit */
1425	pci_write_config_dword(iommu->dev, 0xf0, 0x90);
1426}
1427
1428/*
1429 * Family15h Model 30h-3fh (IOMMU Mishandles ATS Write Permission)
1430 * Workaround:
1431 *     BIOS should enable ATS write permission check by setting
1432 *     L2_DEBUG_3[AtsIgnoreIWDis](D0F2xF4_x47[0]) = 1b
1433 */
1434static void amd_iommu_ats_write_check_workaround(struct amd_iommu *iommu)
1435{
1436	u32 value;
1437
1438	if ((boot_cpu_data.x86 != 0x15) ||
1439	    (boot_cpu_data.x86_model < 0x30) ||
1440	    (boot_cpu_data.x86_model > 0x3f))
1441		return;
1442
1443	/* Test L2_DEBUG_3[AtsIgnoreIWDis] == 1 */
1444	value = iommu_read_l2(iommu, 0x47);
1445
1446	if (value & BIT(0))
1447		return;
1448
1449	/* Set L2_DEBUG_3[AtsIgnoreIWDis] = 1 */
1450	iommu_write_l2(iommu, 0x47, value | BIT(0));
1451
1452	pci_info(iommu->dev, "Applying ATS write check workaround\n");
1453}
1454
1455/*
1456 * This function clues the initialization function for one IOMMU
1457 * together and also allocates the command buffer and programs the
1458 * hardware. It does NOT enable the IOMMU. This is done afterwards.
1459 */
1460static int __init init_iommu_one(struct amd_iommu *iommu, struct ivhd_header *h)
1461{
1462	int ret;
1463
1464	raw_spin_lock_init(&iommu->lock);
 
1465
1466	/* Add IOMMU to internal data structures */
1467	list_add_tail(&iommu->list, &amd_iommu_list);
1468	iommu->index = amd_iommus_present++;
1469
1470	if (unlikely(iommu->index >= MAX_IOMMUS)) {
1471		WARN(1, "System has more IOMMUs than supported by this driver\n");
1472		return -ENOSYS;
1473	}
1474
1475	/* Index is fine - add IOMMU to the array */
1476	amd_iommus[iommu->index] = iommu;
1477
1478	/*
1479	 * Copy data from ACPI table entry to the iommu struct
1480	 */
1481	iommu->devid   = h->devid;
1482	iommu->cap_ptr = h->cap_ptr;
1483	iommu->pci_seg = h->pci_seg;
1484	iommu->mmio_phys = h->mmio_phys;
1485
1486	switch (h->type) {
1487	case 0x10:
1488		/* Check if IVHD EFR contains proper max banks/counters */
1489		if ((h->efr_attr != 0) &&
1490		    ((h->efr_attr & (0xF << 13)) != 0) &&
1491		    ((h->efr_attr & (0x3F << 17)) != 0))
1492			iommu->mmio_phys_end = MMIO_REG_END_OFFSET;
1493		else
1494			iommu->mmio_phys_end = MMIO_CNTR_CONF_OFFSET;
1495
1496		/*
1497		 * Note: GA (128-bit IRTE) mode requires cmpxchg16b supports.
1498		 * GAM also requires GA mode. Therefore, we need to
1499		 * check cmpxchg16b support before enabling it.
1500		 */
1501		if (!boot_cpu_has(X86_FEATURE_CX16) ||
1502		    ((h->efr_attr & (0x1 << IOMMU_FEAT_GASUP_SHIFT)) == 0))
1503			amd_iommu_guest_ir = AMD_IOMMU_GUEST_IR_LEGACY;
1504		break;
1505	case 0x11:
1506	case 0x40:
1507		if (h->efr_reg & (1 << 9))
1508			iommu->mmio_phys_end = MMIO_REG_END_OFFSET;
1509		else
1510			iommu->mmio_phys_end = MMIO_CNTR_CONF_OFFSET;
1511
1512		/*
1513		 * Note: GA (128-bit IRTE) mode requires cmpxchg16b supports.
1514		 * XT, GAM also requires GA mode. Therefore, we need to
1515		 * check cmpxchg16b support before enabling them.
1516		 */
1517		if (!boot_cpu_has(X86_FEATURE_CX16) ||
1518		    ((h->efr_reg & (0x1 << IOMMU_EFR_GASUP_SHIFT)) == 0)) {
1519			amd_iommu_guest_ir = AMD_IOMMU_GUEST_IR_LEGACY;
1520			break;
1521		}
1522
1523		/*
1524		 * Note: Since iommu_update_intcapxt() leverages
1525		 * the IOMMU MMIO access to MSI capability block registers
1526		 * for MSI address lo/hi/data, we need to check both
1527		 * EFR[XtSup] and EFR[MsiCapMmioSup] for x2APIC support.
1528		 */
1529		if ((h->efr_reg & BIT(IOMMU_EFR_XTSUP_SHIFT)) &&
1530		    (h->efr_reg & BIT(IOMMU_EFR_MSICAPMMIOSUP_SHIFT)))
1531			amd_iommu_xt_mode = IRQ_REMAP_X2APIC_MODE;
 
 
 
1532		break;
1533	default:
1534		return -EINVAL;
1535	}
1536
1537	iommu->mmio_base = iommu_map_mmio_space(iommu->mmio_phys,
1538						iommu->mmio_phys_end);
1539	if (!iommu->mmio_base)
1540		return -ENOMEM;
1541
 
 
 
1542	if (alloc_command_buffer(iommu))
1543		return -ENOMEM;
1544
1545	if (alloc_event_buffer(iommu))
1546		return -ENOMEM;
1547
1548	iommu->int_enabled = false;
1549
1550	init_translation_status(iommu);
1551	if (translation_pre_enabled(iommu) && !is_kdump_kernel()) {
1552		iommu_disable(iommu);
1553		clear_translation_pre_enabled(iommu);
1554		pr_warn("Translation was enabled for IOMMU:%d but we are not in kdump mode\n",
1555			iommu->index);
1556	}
1557	if (amd_iommu_pre_enabled)
1558		amd_iommu_pre_enabled = translation_pre_enabled(iommu);
1559
1560	ret = init_iommu_from_acpi(iommu, h);
1561	if (ret)
1562		return ret;
1563
1564	ret = amd_iommu_create_irq_domain(iommu);
1565	if (ret)
1566		return ret;
 
 
1567
1568	/*
1569	 * Make sure IOMMU is not considered to translate itself. The IVRS
1570	 * table tells us so, but this is a lie!
1571	 */
1572	amd_iommu_rlookup_table[iommu->devid] = NULL;
1573
1574	return 0;
1575}
1576
1577/**
1578 * get_highest_supported_ivhd_type - Look up the appropriate IVHD type
1579 * @ivrs          Pointer to the IVRS header
1580 *
1581 * This function search through all IVDB of the maximum supported IVHD
1582 */
1583static u8 get_highest_supported_ivhd_type(struct acpi_table_header *ivrs)
1584{
1585	u8 *base = (u8 *)ivrs;
1586	struct ivhd_header *ivhd = (struct ivhd_header *)
1587					(base + IVRS_HEADER_LENGTH);
1588	u8 last_type = ivhd->type;
1589	u16 devid = ivhd->devid;
1590
1591	while (((u8 *)ivhd - base < ivrs->length) &&
1592	       (ivhd->type <= ACPI_IVHD_TYPE_MAX_SUPPORTED)) {
1593		u8 *p = (u8 *) ivhd;
1594
1595		if (ivhd->devid == devid)
1596			last_type = ivhd->type;
1597		ivhd = (struct ivhd_header *)(p + ivhd->length);
1598	}
1599
1600	return last_type;
1601}
1602
1603/*
1604 * Iterates over all IOMMU entries in the ACPI table, allocates the
1605 * IOMMU structure and initializes it with init_iommu_one()
1606 */
1607static int __init init_iommu_all(struct acpi_table_header *table)
1608{
1609	u8 *p = (u8 *)table, *end = (u8 *)table;
1610	struct ivhd_header *h;
1611	struct amd_iommu *iommu;
1612	int ret;
1613
1614	end += table->length;
1615	p += IVRS_HEADER_LENGTH;
1616
1617	while (p < end) {
1618		h = (struct ivhd_header *)p;
1619		if (*p == amd_iommu_target_ivhd_type) {
1620
1621			DUMP_printk("device: %02x:%02x.%01x cap: %04x "
1622				    "seg: %d flags: %01x info %04x\n",
1623				    PCI_BUS_NUM(h->devid), PCI_SLOT(h->devid),
1624				    PCI_FUNC(h->devid), h->cap_ptr,
1625				    h->pci_seg, h->flags, h->info);
1626			DUMP_printk("       mmio-addr: %016llx\n",
1627				    h->mmio_phys);
1628
1629			iommu = kzalloc(sizeof(struct amd_iommu), GFP_KERNEL);
1630			if (iommu == NULL)
1631				return -ENOMEM;
1632
1633			ret = init_iommu_one(iommu, h);
1634			if (ret)
1635				return ret;
1636		}
1637		p += h->length;
1638
1639	}
1640	WARN_ON(p != end);
1641
1642	return 0;
1643}
1644
1645static int iommu_pc_get_set_reg(struct amd_iommu *iommu, u8 bank, u8 cntr,
1646				u8 fxn, u64 *value, bool is_write);
1647
1648static void init_iommu_perf_ctr(struct amd_iommu *iommu)
1649{
 
1650	struct pci_dev *pdev = iommu->dev;
1651	u64 val = 0xabcd, val2 = 0, save_reg = 0;
1652
1653	if (!iommu_feature(iommu, FEATURE_PC))
1654		return;
1655
1656	amd_iommu_pc_present = true;
1657
1658	/* save the value to restore, if writable */
1659	if (iommu_pc_get_set_reg(iommu, 0, 0, 0, &save_reg, false))
1660		goto pc_false;
1661
1662	/* Check if the performance counters can be written to */
1663	if ((iommu_pc_get_set_reg(iommu, 0, 0, 0, &val, true)) ||
1664	    (iommu_pc_get_set_reg(iommu, 0, 0, 0, &val2, false)) ||
1665	    (val != val2))
1666		goto pc_false;
1667
1668	/* restore */
1669	if (iommu_pc_get_set_reg(iommu, 0, 0, 0, &save_reg, true))
1670		goto pc_false;
1671
1672	pci_info(pdev, "IOMMU performance counters supported\n");
1673
1674	val = readl(iommu->mmio_base + MMIO_CNTR_CONF_OFFSET);
1675	iommu->max_banks = (u8) ((val >> 12) & 0x3f);
1676	iommu->max_counters = (u8) ((val >> 7) & 0xf);
1677
1678	return;
1679
1680pc_false:
1681	pci_err(pdev, "Unable to read/write to IOMMU perf counter.\n");
1682	amd_iommu_pc_present = false;
1683	return;
1684}
1685
1686static ssize_t amd_iommu_show_cap(struct device *dev,
1687				  struct device_attribute *attr,
1688				  char *buf)
1689{
1690	struct amd_iommu *iommu = dev_to_amd_iommu(dev);
1691	return sprintf(buf, "%x\n", iommu->cap);
1692}
1693static DEVICE_ATTR(cap, S_IRUGO, amd_iommu_show_cap, NULL);
1694
1695static ssize_t amd_iommu_show_features(struct device *dev,
1696				       struct device_attribute *attr,
1697				       char *buf)
1698{
1699	struct amd_iommu *iommu = dev_to_amd_iommu(dev);
1700	return sprintf(buf, "%llx\n", iommu->features);
1701}
1702static DEVICE_ATTR(features, S_IRUGO, amd_iommu_show_features, NULL);
1703
1704static struct attribute *amd_iommu_attrs[] = {
1705	&dev_attr_cap.attr,
1706	&dev_attr_features.attr,
1707	NULL,
1708};
1709
1710static struct attribute_group amd_iommu_group = {
1711	.name = "amd-iommu",
1712	.attrs = amd_iommu_attrs,
1713};
1714
1715static const struct attribute_group *amd_iommu_groups[] = {
1716	&amd_iommu_group,
1717	NULL,
1718};
1719
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1720static int __init iommu_init_pci(struct amd_iommu *iommu)
1721{
1722	int cap_ptr = iommu->cap_ptr;
1723	int ret;
1724
1725	iommu->dev = pci_get_domain_bus_and_slot(0, PCI_BUS_NUM(iommu->devid),
1726						 iommu->devid & 0xff);
1727	if (!iommu->dev)
1728		return -ENODEV;
1729
1730	/* Prevent binding other PCI device drivers to IOMMU devices */
1731	iommu->dev->match_driver = false;
1732
1733	pci_read_config_dword(iommu->dev, cap_ptr + MMIO_CAP_HDR_OFFSET,
1734			      &iommu->cap);
1735
1736	if (!(iommu->cap & (1 << IOMMU_CAP_IOTLB)))
1737		amd_iommu_iotlb_sup = false;
1738
1739	/* read extended feature bits */
1740	iommu->features = readq(iommu->mmio_base + MMIO_EXT_FEATURES);
1741
1742	if (iommu_feature(iommu, FEATURE_GT)) {
1743		int glxval;
1744		u32 max_pasid;
1745		u64 pasmax;
1746
1747		pasmax = iommu->features & FEATURE_PASID_MASK;
1748		pasmax >>= FEATURE_PASID_SHIFT;
1749		max_pasid  = (1 << (pasmax + 1)) - 1;
1750
1751		amd_iommu_max_pasid = min(amd_iommu_max_pasid, max_pasid);
1752
1753		BUG_ON(amd_iommu_max_pasid & ~PASID_MASK);
1754
1755		glxval   = iommu->features & FEATURE_GLXVAL_MASK;
1756		glxval >>= FEATURE_GLXVAL_SHIFT;
1757
1758		if (amd_iommu_max_glx_val == -1)
1759			amd_iommu_max_glx_val = glxval;
1760		else
1761			amd_iommu_max_glx_val = min(amd_iommu_max_glx_val, glxval);
1762	}
1763
1764	if (iommu_feature(iommu, FEATURE_GT) &&
1765	    iommu_feature(iommu, FEATURE_PPR)) {
1766		iommu->is_iommu_v2   = true;
1767		amd_iommu_v2_present = true;
1768	}
1769
1770	if (iommu_feature(iommu, FEATURE_PPR) && alloc_ppr_log(iommu))
1771		return -ENOMEM;
1772
1773	ret = iommu_init_ga(iommu);
1774	if (ret)
1775		return ret;
1776
1777	if (iommu->cap & (1UL << IOMMU_CAP_NPCACHE))
1778		amd_iommu_np_cache = true;
1779
1780	init_iommu_perf_ctr(iommu);
1781
1782	if (is_rd890_iommu(iommu->dev)) {
1783		int i, j;
1784
1785		iommu->root_pdev =
1786			pci_get_domain_bus_and_slot(0, iommu->dev->bus->number,
1787						    PCI_DEVFN(0, 0));
1788
1789		/*
1790		 * Some rd890 systems may not be fully reconfigured by the
1791		 * BIOS, so it's necessary for us to store this information so
1792		 * it can be reprogrammed on resume
1793		 */
1794		pci_read_config_dword(iommu->dev, iommu->cap_ptr + 4,
1795				&iommu->stored_addr_lo);
1796		pci_read_config_dword(iommu->dev, iommu->cap_ptr + 8,
1797				&iommu->stored_addr_hi);
1798
1799		/* Low bit locks writes to configuration space */
1800		iommu->stored_addr_lo &= ~1;
1801
1802		for (i = 0; i < 6; i++)
1803			for (j = 0; j < 0x12; j++)
1804				iommu->stored_l1[i][j] = iommu_read_l1(iommu, i, j);
1805
1806		for (i = 0; i < 0x83; i++)
1807			iommu->stored_l2[i] = iommu_read_l2(iommu, i);
1808	}
1809
1810	amd_iommu_erratum_746_workaround(iommu);
1811	amd_iommu_ats_write_check_workaround(iommu);
1812
1813	iommu_device_sysfs_add(&iommu->iommu, &iommu->dev->dev,
1814			       amd_iommu_groups, "ivhd%d", iommu->index);
1815	iommu_device_set_ops(&iommu->iommu, &amd_iommu_ops);
1816	iommu_device_register(&iommu->iommu);
1817
1818	return pci_enable_device(iommu->dev);
1819}
1820
1821static void print_iommu_info(void)
1822{
1823	static const char * const feat_str[] = {
1824		"PreF", "PPR", "X2APIC", "NX", "GT", "[5]",
1825		"IA", "GA", "HE", "PC"
1826	};
1827	struct amd_iommu *iommu;
1828
1829	for_each_iommu(iommu) {
1830		struct pci_dev *pdev = iommu->dev;
1831		int i;
1832
1833		pci_info(pdev, "Found IOMMU cap 0x%hx\n", iommu->cap_ptr);
1834
1835		if (iommu->cap & (1 << IOMMU_CAP_EFR)) {
1836			pci_info(pdev, "Extended features (%#llx):",
1837				 iommu->features);
1838			for (i = 0; i < ARRAY_SIZE(feat_str); ++i) {
1839				if (iommu_feature(iommu, (1ULL << i)))
1840					pr_cont(" %s", feat_str[i]);
1841			}
1842
1843			if (iommu->features & FEATURE_GAM_VAPIC)
1844				pr_cont(" GA_vAPIC");
1845
1846			pr_cont("\n");
1847		}
1848	}
1849	if (irq_remapping_enabled) {
1850		pr_info("Interrupt remapping enabled\n");
1851		if (AMD_IOMMU_GUEST_IR_VAPIC(amd_iommu_guest_ir))
1852			pr_info("Virtual APIC enabled\n");
1853		if (amd_iommu_xt_mode == IRQ_REMAP_X2APIC_MODE)
1854			pr_info("X2APIC enabled\n");
1855	}
1856}
1857
1858static int __init amd_iommu_init_pci(void)
1859{
1860	struct amd_iommu *iommu;
1861	int ret = 0;
1862
1863	for_each_iommu(iommu) {
1864		ret = iommu_init_pci(iommu);
1865		if (ret)
1866			break;
 
 
 
1867	}
1868
1869	/*
1870	 * Order is important here to make sure any unity map requirements are
1871	 * fulfilled. The unity mappings are created and written to the device
1872	 * table during the amd_iommu_init_api() call.
1873	 *
1874	 * After that we call init_device_table_dma() to make sure any
1875	 * uninitialized DTE will block DMA, and in the end we flush the caches
1876	 * of all IOMMUs to make sure the changes to the device table are
1877	 * active.
1878	 */
1879	ret = amd_iommu_init_api();
1880
1881	init_device_table_dma();
1882
1883	for_each_iommu(iommu)
1884		iommu_flush_all_caches(iommu);
1885
1886	if (!ret)
1887		print_iommu_info();
1888
1889	return ret;
1890}
1891
1892/****************************************************************************
1893 *
1894 * The following functions initialize the MSI interrupts for all IOMMUs
1895 * in the system. It's a bit challenging because there could be multiple
1896 * IOMMUs per PCI BDF but we can call pci_enable_msi(x) only once per
1897 * pci_dev.
1898 *
1899 ****************************************************************************/
1900
1901static int iommu_setup_msi(struct amd_iommu *iommu)
1902{
1903	int r;
1904
1905	r = pci_enable_msi(iommu->dev);
1906	if (r)
1907		return r;
1908
1909	r = request_threaded_irq(iommu->dev->irq,
1910				 amd_iommu_int_handler,
1911				 amd_iommu_int_thread,
1912				 0, "AMD-Vi",
1913				 iommu);
1914
1915	if (r) {
1916		pci_disable_msi(iommu->dev);
1917		return r;
1918	}
1919
1920	iommu->int_enabled = true;
1921
1922	return 0;
1923}
1924
1925#define XT_INT_DEST_MODE(x)	(((x) & 0x1ULL) << 2)
1926#define XT_INT_DEST_LO(x)	(((x) & 0xFFFFFFULL) << 8)
1927#define XT_INT_VEC(x)		(((x) & 0xFFULL) << 32)
1928#define XT_INT_DEST_HI(x)	((((x) >> 24) & 0xFFULL) << 56)
 
 
 
 
 
 
 
 
1929
1930/**
1931 * Setup the IntCapXT registers with interrupt routing information
1932 * based on the PCI MSI capability block registers, accessed via
1933 * MMIO MSI address low/hi and MSI data registers.
1934 */
1935static void iommu_update_intcapxt(struct amd_iommu *iommu)
1936{
1937	u64 val;
1938	u32 addr_lo = readl(iommu->mmio_base + MMIO_MSI_ADDR_LO_OFFSET);
1939	u32 addr_hi = readl(iommu->mmio_base + MMIO_MSI_ADDR_HI_OFFSET);
1940	u32 data    = readl(iommu->mmio_base + MMIO_MSI_DATA_OFFSET);
1941	bool dm     = (addr_lo >> MSI_ADDR_DEST_MODE_SHIFT) & 0x1;
1942	u32 dest    = ((addr_lo >> MSI_ADDR_DEST_ID_SHIFT) & 0xFF);
1943
1944	if (x2apic_enabled())
1945		dest |= MSI_ADDR_EXT_DEST_ID(addr_hi);
1946
1947	val = XT_INT_VEC(data & 0xFF) |
1948	      XT_INT_DEST_MODE(dm) |
1949	      XT_INT_DEST_LO(dest) |
1950	      XT_INT_DEST_HI(dest);
 
 
 
 
 
 
1951
1952	/**
1953	 * Current IOMMU implemtation uses the same IRQ for all
1954	 * 3 IOMMU interrupts.
1955	 */
1956	writeq(val, iommu->mmio_base + MMIO_INTCAPXT_EVT_OFFSET);
1957	writeq(val, iommu->mmio_base + MMIO_INTCAPXT_PPR_OFFSET);
1958	writeq(val, iommu->mmio_base + MMIO_INTCAPXT_GALOG_OFFSET);
 
1959}
1960
1961static void _irq_notifier_notify(struct irq_affinity_notify *notify,
1962				 const cpumask_t *mask)
1963{
1964	struct amd_iommu *iommu;
 
1965
1966	for_each_iommu(iommu) {
1967		if (iommu->dev->irq == notify->irq) {
1968			iommu_update_intcapxt(iommu);
1969			break;
1970		}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1971	}
 
 
1972}
1973
1974static void _irq_notifier_release(struct kref *ref)
 
1975{
 
1976}
1977
1978static int iommu_init_intcapxt(struct amd_iommu *iommu)
 
1979{
 
1980	int ret;
1981	struct irq_affinity_notify *notify = &iommu->intcapxt_notify;
1982
1983	/**
1984	 * IntCapXT requires XTSup=1 and MsiCapMmioSup=1,
1985	 * which can be inferred from amd_iommu_xt_mode.
1986	 */
1987	if (amd_iommu_xt_mode != IRQ_REMAP_X2APIC_MODE)
1988		return 0;
1989
1990	/**
1991	 * Also, we need to setup notifier to update the IntCapXT registers
1992	 * whenever the irq affinity is changed from user-space.
1993	 */
1994	notify->irq = iommu->dev->irq;
1995	notify->notify = _irq_notifier_notify,
1996	notify->release = _irq_notifier_release,
1997	ret = irq_set_affinity_notifier(iommu->dev->irq, notify);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1998	if (ret) {
1999		pr_err("Failed to register irq affinity notifier (devid=%#x, irq %d)\n",
2000		       iommu->devid, iommu->dev->irq);
2001		return ret;
2002	}
2003
2004	iommu_update_intcapxt(iommu);
2005	iommu_feature_enable(iommu, CONTROL_INTCAPXT_EN);
2006	return ret;
2007}
2008
2009static int iommu_init_msi(struct amd_iommu *iommu)
2010{
2011	int ret;
2012
2013	if (iommu->int_enabled)
2014		goto enable_faults;
2015
2016	if (iommu->dev->msi_cap)
 
 
2017		ret = iommu_setup_msi(iommu);
2018	else
2019		ret = -ENODEV;
2020
2021	if (ret)
2022		return ret;
2023
 
2024enable_faults:
2025	ret = iommu_init_intcapxt(iommu);
2026	if (ret)
2027		return ret;
2028
2029	iommu_feature_enable(iommu, CONTROL_EVT_INT_EN);
2030
2031	if (iommu->ppr_log != NULL)
2032		iommu_feature_enable(iommu, CONTROL_PPRINT_EN);
2033
2034	iommu_ga_log_enable(iommu);
2035
2036	return 0;
2037}
2038
2039/****************************************************************************
2040 *
2041 * The next functions belong to the third pass of parsing the ACPI
2042 * table. In this last pass the memory mapping requirements are
2043 * gathered (like exclusion and unity mapping ranges).
2044 *
2045 ****************************************************************************/
2046
2047static void __init free_unity_maps(void)
2048{
2049	struct unity_map_entry *entry, *next;
2050
2051	list_for_each_entry_safe(entry, next, &amd_iommu_unity_map, list) {
2052		list_del(&entry->list);
2053		kfree(entry);
2054	}
2055}
2056
2057/* called for unity map ACPI definition */
2058static int __init init_unity_map_range(struct ivmd_header *m)
2059{
2060	struct unity_map_entry *e = NULL;
2061	char *s;
2062
2063	e = kzalloc(sizeof(*e), GFP_KERNEL);
2064	if (e == NULL)
2065		return -ENOMEM;
2066
2067	switch (m->type) {
2068	default:
2069		kfree(e);
2070		return 0;
2071	case ACPI_IVMD_TYPE:
2072		s = "IVMD_TYPEi\t\t\t";
2073		e->devid_start = e->devid_end = m->devid;
2074		break;
2075	case ACPI_IVMD_TYPE_ALL:
2076		s = "IVMD_TYPE_ALL\t\t";
2077		e->devid_start = 0;
2078		e->devid_end = amd_iommu_last_bdf;
2079		break;
2080	case ACPI_IVMD_TYPE_RANGE:
2081		s = "IVMD_TYPE_RANGE\t\t";
2082		e->devid_start = m->devid;
2083		e->devid_end = m->aux;
2084		break;
2085	}
2086	e->address_start = PAGE_ALIGN(m->range_start);
2087	e->address_end = e->address_start + PAGE_ALIGN(m->range_length);
2088	e->prot = m->flags >> 1;
2089
2090	/*
2091	 * Treat per-device exclusion ranges as r/w unity-mapped regions
2092	 * since some buggy BIOSes might lead to the overwritten exclusion
2093	 * range (exclusion_start and exclusion_length members). This
2094	 * happens when there are multiple exclusion ranges (IVMD entries)
2095	 * defined in ACPI table.
2096	 */
2097	if (m->flags & IVMD_FLAG_EXCL_RANGE)
2098		e->prot = (IVMD_FLAG_IW | IVMD_FLAG_IR) >> 1;
2099
2100	DUMP_printk("%s devid_start: %02x:%02x.%x devid_end: %02x:%02x.%x"
2101		    " range_start: %016llx range_end: %016llx flags: %x\n", s,
2102		    PCI_BUS_NUM(e->devid_start), PCI_SLOT(e->devid_start),
2103		    PCI_FUNC(e->devid_start), PCI_BUS_NUM(e->devid_end),
2104		    PCI_SLOT(e->devid_end), PCI_FUNC(e->devid_end),
2105		    e->address_start, e->address_end, m->flags);
2106
2107	list_add_tail(&e->list, &amd_iommu_unity_map);
2108
2109	return 0;
2110}
2111
2112/* iterates over all memory definitions we find in the ACPI table */
2113static int __init init_memory_definitions(struct acpi_table_header *table)
2114{
2115	u8 *p = (u8 *)table, *end = (u8 *)table;
2116	struct ivmd_header *m;
2117
2118	end += table->length;
2119	p += IVRS_HEADER_LENGTH;
2120
2121	while (p < end) {
2122		m = (struct ivmd_header *)p;
2123		if (m->flags & (IVMD_FLAG_UNITY_MAP | IVMD_FLAG_EXCL_RANGE))
2124			init_unity_map_range(m);
2125
2126		p += m->length;
2127	}
2128
2129	return 0;
2130}
2131
2132/*
2133 * Init the device table to not allow DMA access for devices
2134 */
2135static void init_device_table_dma(void)
2136{
2137	u32 devid;
2138
2139	for (devid = 0; devid <= amd_iommu_last_bdf; ++devid) {
2140		set_dev_entry_bit(devid, DEV_ENTRY_VALID);
2141		set_dev_entry_bit(devid, DEV_ENTRY_TRANSLATION);
2142	}
2143}
2144
2145static void __init uninit_device_table_dma(void)
2146{
2147	u32 devid;
2148
2149	for (devid = 0; devid <= amd_iommu_last_bdf; ++devid) {
2150		amd_iommu_dev_table[devid].data[0] = 0ULL;
2151		amd_iommu_dev_table[devid].data[1] = 0ULL;
2152	}
2153}
2154
2155static void init_device_table(void)
2156{
2157	u32 devid;
2158
2159	if (!amd_iommu_irq_remap)
2160		return;
2161
2162	for (devid = 0; devid <= amd_iommu_last_bdf; ++devid)
2163		set_dev_entry_bit(devid, DEV_ENTRY_IRQ_TBL_EN);
2164}
2165
2166static void iommu_init_flags(struct amd_iommu *iommu)
2167{
2168	iommu->acpi_flags & IVHD_FLAG_HT_TUN_EN_MASK ?
2169		iommu_feature_enable(iommu, CONTROL_HT_TUN_EN) :
2170		iommu_feature_disable(iommu, CONTROL_HT_TUN_EN);
2171
2172	iommu->acpi_flags & IVHD_FLAG_PASSPW_EN_MASK ?
2173		iommu_feature_enable(iommu, CONTROL_PASSPW_EN) :
2174		iommu_feature_disable(iommu, CONTROL_PASSPW_EN);
2175
2176	iommu->acpi_flags & IVHD_FLAG_RESPASSPW_EN_MASK ?
2177		iommu_feature_enable(iommu, CONTROL_RESPASSPW_EN) :
2178		iommu_feature_disable(iommu, CONTROL_RESPASSPW_EN);
2179
2180	iommu->acpi_flags & IVHD_FLAG_ISOC_EN_MASK ?
2181		iommu_feature_enable(iommu, CONTROL_ISOC_EN) :
2182		iommu_feature_disable(iommu, CONTROL_ISOC_EN);
2183
2184	/*
2185	 * make IOMMU memory accesses cache coherent
2186	 */
2187	iommu_feature_enable(iommu, CONTROL_COHERENT_EN);
2188
2189	/* Set IOTLB invalidation timeout to 1s */
2190	iommu_set_inv_tlb_timeout(iommu, CTRL_INV_TO_1S);
2191}
2192
2193static void iommu_apply_resume_quirks(struct amd_iommu *iommu)
2194{
2195	int i, j;
2196	u32 ioc_feature_control;
2197	struct pci_dev *pdev = iommu->root_pdev;
2198
2199	/* RD890 BIOSes may not have completely reconfigured the iommu */
2200	if (!is_rd890_iommu(iommu->dev) || !pdev)
2201		return;
2202
2203	/*
2204	 * First, we need to ensure that the iommu is enabled. This is
2205	 * controlled by a register in the northbridge
2206	 */
2207
2208	/* Select Northbridge indirect register 0x75 and enable writing */
2209	pci_write_config_dword(pdev, 0x60, 0x75 | (1 << 7));
2210	pci_read_config_dword(pdev, 0x64, &ioc_feature_control);
2211
2212	/* Enable the iommu */
2213	if (!(ioc_feature_control & 0x1))
2214		pci_write_config_dword(pdev, 0x64, ioc_feature_control | 1);
2215
2216	/* Restore the iommu BAR */
2217	pci_write_config_dword(iommu->dev, iommu->cap_ptr + 4,
2218			       iommu->stored_addr_lo);
2219	pci_write_config_dword(iommu->dev, iommu->cap_ptr + 8,
2220			       iommu->stored_addr_hi);
2221
2222	/* Restore the l1 indirect regs for each of the 6 l1s */
2223	for (i = 0; i < 6; i++)
2224		for (j = 0; j < 0x12; j++)
2225			iommu_write_l1(iommu, i, j, iommu->stored_l1[i][j]);
2226
2227	/* Restore the l2 indirect regs */
2228	for (i = 0; i < 0x83; i++)
2229		iommu_write_l2(iommu, i, iommu->stored_l2[i]);
2230
2231	/* Lock PCI setup registers */
2232	pci_write_config_dword(iommu->dev, iommu->cap_ptr + 4,
2233			       iommu->stored_addr_lo | 1);
2234}
2235
2236static void iommu_enable_ga(struct amd_iommu *iommu)
2237{
2238#ifdef CONFIG_IRQ_REMAP
2239	switch (amd_iommu_guest_ir) {
2240	case AMD_IOMMU_GUEST_IR_VAPIC:
2241		iommu_feature_enable(iommu, CONTROL_GAM_EN);
2242		fallthrough;
2243	case AMD_IOMMU_GUEST_IR_LEGACY_GA:
2244		iommu_feature_enable(iommu, CONTROL_GA_EN);
2245		iommu->irte_ops = &irte_128_ops;
2246		break;
2247	default:
2248		iommu->irte_ops = &irte_32_ops;
2249		break;
2250	}
2251#endif
2252}
2253
2254static void early_enable_iommu(struct amd_iommu *iommu)
2255{
2256	iommu_disable(iommu);
2257	iommu_init_flags(iommu);
2258	iommu_set_device_table(iommu);
2259	iommu_enable_command_buffer(iommu);
2260	iommu_enable_event_buffer(iommu);
2261	iommu_set_exclusion_range(iommu);
2262	iommu_enable_ga(iommu);
2263	iommu_enable_xt(iommu);
2264	iommu_enable(iommu);
2265	iommu_flush_all_caches(iommu);
2266}
2267
2268/*
2269 * This function finally enables all IOMMUs found in the system after
2270 * they have been initialized.
2271 *
2272 * Or if in kdump kernel and IOMMUs are all pre-enabled, try to copy
2273 * the old content of device table entries. Not this case or copy failed,
2274 * just continue as normal kernel does.
2275 */
2276static void early_enable_iommus(void)
2277{
2278	struct amd_iommu *iommu;
2279
2280
2281	if (!copy_device_table()) {
2282		/*
2283		 * If come here because of failure in copying device table from old
2284		 * kernel with all IOMMUs enabled, print error message and try to
2285		 * free allocated old_dev_tbl_cpy.
2286		 */
2287		if (amd_iommu_pre_enabled)
2288			pr_err("Failed to copy DEV table from previous kernel.\n");
2289		if (old_dev_tbl_cpy != NULL)
2290			free_pages((unsigned long)old_dev_tbl_cpy,
2291					get_order(dev_table_size));
2292
2293		for_each_iommu(iommu) {
2294			clear_translation_pre_enabled(iommu);
2295			early_enable_iommu(iommu);
2296		}
2297	} else {
2298		pr_info("Copied DEV table from previous kernel.\n");
2299		free_pages((unsigned long)amd_iommu_dev_table,
2300				get_order(dev_table_size));
2301		amd_iommu_dev_table = old_dev_tbl_cpy;
2302		for_each_iommu(iommu) {
2303			iommu_disable_command_buffer(iommu);
2304			iommu_disable_event_buffer(iommu);
2305			iommu_enable_command_buffer(iommu);
2306			iommu_enable_event_buffer(iommu);
2307			iommu_enable_ga(iommu);
2308			iommu_enable_xt(iommu);
2309			iommu_set_device_table(iommu);
2310			iommu_flush_all_caches(iommu);
2311		}
2312	}
2313
2314#ifdef CONFIG_IRQ_REMAP
 
 
 
 
 
 
 
 
2315	if (AMD_IOMMU_GUEST_IR_VAPIC(amd_iommu_guest_ir))
2316		amd_iommu_irq_ops.capability |= (1 << IRQ_POSTING_CAP);
2317#endif
2318}
2319
2320static void enable_iommus_v2(void)
2321{
2322	struct amd_iommu *iommu;
2323
2324	for_each_iommu(iommu) {
2325		iommu_enable_ppr_log(iommu);
2326		iommu_enable_gt(iommu);
2327	}
2328}
2329
2330static void enable_iommus(void)
2331{
2332	early_enable_iommus();
2333
2334	enable_iommus_v2();
2335}
2336
2337static void disable_iommus(void)
2338{
2339	struct amd_iommu *iommu;
2340
2341	for_each_iommu(iommu)
2342		iommu_disable(iommu);
2343
2344#ifdef CONFIG_IRQ_REMAP
2345	if (AMD_IOMMU_GUEST_IR_VAPIC(amd_iommu_guest_ir))
2346		amd_iommu_irq_ops.capability &= ~(1 << IRQ_POSTING_CAP);
2347#endif
2348}
2349
2350/*
2351 * Suspend/Resume support
2352 * disable suspend until real resume implemented
2353 */
2354
2355static void amd_iommu_resume(void)
2356{
2357	struct amd_iommu *iommu;
2358
2359	for_each_iommu(iommu)
2360		iommu_apply_resume_quirks(iommu);
2361
2362	/* re-load the hardware */
2363	enable_iommus();
2364
2365	amd_iommu_enable_interrupts();
2366}
2367
2368static int amd_iommu_suspend(void)
2369{
2370	/* disable IOMMUs to go out of the way for BIOS */
2371	disable_iommus();
2372
2373	return 0;
2374}
2375
2376static struct syscore_ops amd_iommu_syscore_ops = {
2377	.suspend = amd_iommu_suspend,
2378	.resume = amd_iommu_resume,
2379};
2380
2381static void __init free_iommu_resources(void)
2382{
2383	kmemleak_free(irq_lookup_table);
2384	free_pages((unsigned long)irq_lookup_table,
2385		   get_order(rlookup_table_size));
2386	irq_lookup_table = NULL;
2387
2388	kmem_cache_destroy(amd_iommu_irq_cache);
2389	amd_iommu_irq_cache = NULL;
2390
2391	free_pages((unsigned long)amd_iommu_rlookup_table,
2392		   get_order(rlookup_table_size));
2393	amd_iommu_rlookup_table = NULL;
2394
2395	free_pages((unsigned long)amd_iommu_alias_table,
2396		   get_order(alias_table_size));
2397	amd_iommu_alias_table = NULL;
2398
2399	free_pages((unsigned long)amd_iommu_dev_table,
2400		   get_order(dev_table_size));
2401	amd_iommu_dev_table = NULL;
2402
2403	free_iommu_all();
2404}
2405
2406/* SB IOAPIC is always on this device in AMD systems */
2407#define IOAPIC_SB_DEVID		((0x00 << 8) | PCI_DEVFN(0x14, 0))
2408
2409static bool __init check_ioapic_information(void)
2410{
2411	const char *fw_bug = FW_BUG;
2412	bool ret, has_sb_ioapic;
2413	int idx;
2414
2415	has_sb_ioapic = false;
2416	ret           = false;
2417
2418	/*
2419	 * If we have map overrides on the kernel command line the
2420	 * messages in this function might not describe firmware bugs
2421	 * anymore - so be careful
2422	 */
2423	if (cmdline_maps)
2424		fw_bug = "";
2425
2426	for (idx = 0; idx < nr_ioapics; idx++) {
2427		int devid, id = mpc_ioapic_id(idx);
2428
2429		devid = get_ioapic_devid(id);
2430		if (devid < 0) {
2431			pr_err("%s: IOAPIC[%d] not in IVRS table\n",
2432				fw_bug, id);
2433			ret = false;
2434		} else if (devid == IOAPIC_SB_DEVID) {
2435			has_sb_ioapic = true;
2436			ret           = true;
2437		}
2438	}
2439
2440	if (!has_sb_ioapic) {
2441		/*
2442		 * We expect the SB IOAPIC to be listed in the IVRS
2443		 * table. The system timer is connected to the SB IOAPIC
2444		 * and if we don't have it in the list the system will
2445		 * panic at boot time.  This situation usually happens
2446		 * when the BIOS is buggy and provides us the wrong
2447		 * device id for the IOAPIC in the system.
2448		 */
2449		pr_err("%s: No southbridge IOAPIC found\n", fw_bug);
2450	}
2451
2452	if (!ret)
2453		pr_err("Disabling interrupt remapping\n");
2454
2455	return ret;
2456}
2457
2458static void __init free_dma_resources(void)
2459{
2460	free_pages((unsigned long)amd_iommu_pd_alloc_bitmap,
2461		   get_order(MAX_DOMAIN_ID/8));
2462	amd_iommu_pd_alloc_bitmap = NULL;
2463
2464	free_unity_maps();
2465}
2466
 
 
 
 
 
2467/*
2468 * This is the hardware init function for AMD IOMMU in the system.
2469 * This function is called either from amd_iommu_init or from the interrupt
2470 * remapping setup code.
2471 *
2472 * This function basically parses the ACPI table for AMD IOMMU (IVRS)
2473 * four times:
2474 *
2475 *	1 pass) Discover the most comprehensive IVHD type to use.
2476 *
2477 *	2 pass) Find the highest PCI device id the driver has to handle.
2478 *		Upon this information the size of the data structures is
2479 *		determined that needs to be allocated.
2480 *
2481 *	3 pass) Initialize the data structures just allocated with the
2482 *		information in the ACPI table about available AMD IOMMUs
2483 *		in the system. It also maps the PCI devices in the
2484 *		system to specific IOMMUs
2485 *
2486 *	4 pass) After the basic data structures are allocated and
2487 *		initialized we update them with information about memory
2488 *		remapping requirements parsed out of the ACPI table in
2489 *		this last pass.
2490 *
2491 * After everything is set up the IOMMUs are enabled and the necessary
2492 * hotplug and suspend notifiers are registered.
2493 */
2494static int __init early_amd_iommu_init(void)
2495{
2496	struct acpi_table_header *ivrs_base;
 
2497	acpi_status status;
2498	int i, remap_cache_sz, ret = 0;
2499	u32 pci_id;
2500
2501	if (!amd_iommu_detected)
2502		return -ENODEV;
2503
2504	status = acpi_get_table("IVRS", 0, &ivrs_base);
2505	if (status == AE_NOT_FOUND)
2506		return -ENODEV;
2507	else if (ACPI_FAILURE(status)) {
2508		const char *err = acpi_format_exception(status);
2509		pr_err("IVRS table error: %s\n", err);
2510		return -EINVAL;
2511	}
2512
2513	/*
2514	 * Validate checksum here so we don't need to do it when
2515	 * we actually parse the table
2516	 */
2517	ret = check_ivrs_checksum(ivrs_base);
2518	if (ret)
2519		goto out;
2520
 
 
2521	amd_iommu_target_ivhd_type = get_highest_supported_ivhd_type(ivrs_base);
2522	DUMP_printk("Using IVHD type %#x\n", amd_iommu_target_ivhd_type);
2523
2524	/*
2525	 * First parse ACPI tables to find the largest Bus/Dev/Func
2526	 * we need to handle. Upon this information the shared data
2527	 * structures for the IOMMUs in the system will be allocated
2528	 */
2529	ret = find_last_devid_acpi(ivrs_base);
2530	if (ret)
2531		goto out;
2532
2533	dev_table_size     = tbl_size(DEV_TABLE_ENTRY_SIZE);
2534	alias_table_size   = tbl_size(ALIAS_TABLE_ENTRY_SIZE);
2535	rlookup_table_size = tbl_size(RLOOKUP_TABLE_ENTRY_SIZE);
2536
2537	/* Device table - directly used by all IOMMUs */
2538	ret = -ENOMEM;
2539	amd_iommu_dev_table = (void *)__get_free_pages(
2540				      GFP_KERNEL | __GFP_ZERO | GFP_DMA32,
2541				      get_order(dev_table_size));
2542	if (amd_iommu_dev_table == NULL)
2543		goto out;
2544
2545	/*
2546	 * Alias table - map PCI Bus/Dev/Func to Bus/Dev/Func the
2547	 * IOMMU see for that device
2548	 */
2549	amd_iommu_alias_table = (void *)__get_free_pages(GFP_KERNEL,
2550			get_order(alias_table_size));
2551	if (amd_iommu_alias_table == NULL)
2552		goto out;
2553
2554	/* IOMMU rlookup table - find the IOMMU for a specific device */
2555	amd_iommu_rlookup_table = (void *)__get_free_pages(
2556			GFP_KERNEL | __GFP_ZERO,
2557			get_order(rlookup_table_size));
2558	if (amd_iommu_rlookup_table == NULL)
2559		goto out;
2560
2561	amd_iommu_pd_alloc_bitmap = (void *)__get_free_pages(
2562					    GFP_KERNEL | __GFP_ZERO,
2563					    get_order(MAX_DOMAIN_ID/8));
2564	if (amd_iommu_pd_alloc_bitmap == NULL)
2565		goto out;
2566
2567	/*
2568	 * let all alias entries point to itself
2569	 */
2570	for (i = 0; i <= amd_iommu_last_bdf; ++i)
2571		amd_iommu_alias_table[i] = i;
2572
2573	/*
2574	 * never allocate domain 0 because its used as the non-allocated and
2575	 * error value placeholder
2576	 */
2577	__set_bit(0, amd_iommu_pd_alloc_bitmap);
2578
2579	/*
2580	 * now the data structures are allocated and basically initialized
2581	 * start the real acpi table scan
2582	 */
2583	ret = init_iommu_all(ivrs_base);
2584	if (ret)
2585		goto out;
2586
2587	/* Disable IOMMU if there's Stoney Ridge graphics */
2588	for (i = 0; i < 32; i++) {
2589		pci_id = read_pci_config(0, i, 0, 0);
2590		if ((pci_id & 0xffff) == 0x1002 && (pci_id >> 16) == 0x98e4) {
2591			pr_info("Disable IOMMU on Stoney Ridge\n");
2592			amd_iommu_disabled = true;
2593			break;
2594		}
2595	}
2596
2597	/* Disable any previously enabled IOMMUs */
2598	if (!is_kdump_kernel() || amd_iommu_disabled)
2599		disable_iommus();
2600
2601	if (amd_iommu_irq_remap)
2602		amd_iommu_irq_remap = check_ioapic_information();
2603
2604	if (amd_iommu_irq_remap) {
2605		/*
2606		 * Interrupt remapping enabled, create kmem_cache for the
2607		 * remapping tables.
2608		 */
2609		ret = -ENOMEM;
2610		if (!AMD_IOMMU_GUEST_IR_GA(amd_iommu_guest_ir))
2611			remap_cache_sz = MAX_IRQS_PER_TABLE * sizeof(u32);
2612		else
2613			remap_cache_sz = MAX_IRQS_PER_TABLE * (sizeof(u64) * 2);
2614		amd_iommu_irq_cache = kmem_cache_create("irq_remap_cache",
2615							remap_cache_sz,
2616							IRQ_TABLE_ALIGNMENT,
2617							0, NULL);
2618		if (!amd_iommu_irq_cache)
2619			goto out;
2620
2621		irq_lookup_table = (void *)__get_free_pages(
2622				GFP_KERNEL | __GFP_ZERO,
2623				get_order(rlookup_table_size));
2624		kmemleak_alloc(irq_lookup_table, rlookup_table_size,
2625			       1, GFP_KERNEL);
2626		if (!irq_lookup_table)
2627			goto out;
2628	}
2629
2630	ret = init_memory_definitions(ivrs_base);
2631	if (ret)
2632		goto out;
2633
2634	/* init the device table */
2635	init_device_table();
2636
2637out:
2638	/* Don't leak any ACPI memory */
2639	acpi_put_table(ivrs_base);
2640	ivrs_base = NULL;
2641
2642	return ret;
2643}
2644
2645static int amd_iommu_enable_interrupts(void)
2646{
2647	struct amd_iommu *iommu;
2648	int ret = 0;
2649
2650	for_each_iommu(iommu) {
2651		ret = iommu_init_msi(iommu);
2652		if (ret)
2653			goto out;
2654	}
2655
2656out:
2657	return ret;
2658}
2659
2660static bool detect_ivrs(void)
2661{
2662	struct acpi_table_header *ivrs_base;
2663	acpi_status status;
 
2664
2665	status = acpi_get_table("IVRS", 0, &ivrs_base);
2666	if (status == AE_NOT_FOUND)
2667		return false;
2668	else if (ACPI_FAILURE(status)) {
2669		const char *err = acpi_format_exception(status);
2670		pr_err("IVRS table error: %s\n", err);
2671		return false;
2672	}
2673
2674	acpi_put_table(ivrs_base);
2675
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2676	/* Make sure ACS will be enabled during PCI probe */
2677	pci_request_acs();
2678
2679	return true;
2680}
2681
2682/****************************************************************************
2683 *
2684 * AMD IOMMU Initialization State Machine
2685 *
2686 ****************************************************************************/
2687
2688static int __init state_next(void)
2689{
2690	int ret = 0;
2691
2692	switch (init_state) {
2693	case IOMMU_START_STATE:
2694		if (!detect_ivrs()) {
2695			init_state	= IOMMU_NOT_FOUND;
2696			ret		= -ENODEV;
2697		} else {
2698			init_state	= IOMMU_IVRS_DETECTED;
2699		}
2700		break;
2701	case IOMMU_IVRS_DETECTED:
2702		ret = early_amd_iommu_init();
2703		init_state = ret ? IOMMU_INIT_ERROR : IOMMU_ACPI_FINISHED;
2704		if (init_state == IOMMU_ACPI_FINISHED && amd_iommu_disabled) {
2705			pr_info("AMD IOMMU disabled\n");
2706			init_state = IOMMU_CMDLINE_DISABLED;
2707			ret = -EINVAL;
 
 
 
2708		}
2709		break;
2710	case IOMMU_ACPI_FINISHED:
2711		early_enable_iommus();
2712		x86_platform.iommu_shutdown = disable_iommus;
2713		init_state = IOMMU_ENABLED;
2714		break;
2715	case IOMMU_ENABLED:
2716		register_syscore_ops(&amd_iommu_syscore_ops);
2717		ret = amd_iommu_init_pci();
2718		init_state = ret ? IOMMU_INIT_ERROR : IOMMU_PCI_INIT;
2719		enable_iommus_v2();
2720		break;
2721	case IOMMU_PCI_INIT:
2722		ret = amd_iommu_enable_interrupts();
2723		init_state = ret ? IOMMU_INIT_ERROR : IOMMU_INTERRUPTS_EN;
2724		break;
2725	case IOMMU_INTERRUPTS_EN:
2726		ret = amd_iommu_init_dma_ops();
2727		init_state = ret ? IOMMU_INIT_ERROR : IOMMU_DMA_OPS;
2728		break;
2729	case IOMMU_DMA_OPS:
2730		init_state = IOMMU_INITIALIZED;
2731		break;
2732	case IOMMU_INITIALIZED:
2733		/* Nothing to do */
2734		break;
2735	case IOMMU_NOT_FOUND:
2736	case IOMMU_INIT_ERROR:
2737	case IOMMU_CMDLINE_DISABLED:
2738		/* Error states => do nothing */
2739		ret = -EINVAL;
2740		break;
2741	default:
2742		/* Unknown state */
2743		BUG();
2744	}
2745
2746	if (ret) {
2747		free_dma_resources();
2748		if (!irq_remapping_enabled) {
2749			disable_iommus();
2750			free_iommu_resources();
2751		} else {
2752			struct amd_iommu *iommu;
2753
2754			uninit_device_table_dma();
2755			for_each_iommu(iommu)
2756				iommu_flush_all_caches(iommu);
2757		}
2758	}
2759	return ret;
2760}
2761
2762static int __init iommu_go_to_state(enum iommu_init_state state)
2763{
2764	int ret = -EINVAL;
2765
2766	while (init_state != state) {
2767		if (init_state == IOMMU_NOT_FOUND         ||
2768		    init_state == IOMMU_INIT_ERROR        ||
2769		    init_state == IOMMU_CMDLINE_DISABLED)
2770			break;
2771		ret = state_next();
2772	}
2773
2774	return ret;
2775}
2776
2777#ifdef CONFIG_IRQ_REMAP
2778int __init amd_iommu_prepare(void)
2779{
2780	int ret;
2781
2782	amd_iommu_irq_remap = true;
2783
2784	ret = iommu_go_to_state(IOMMU_ACPI_FINISHED);
2785	if (ret)
 
2786		return ret;
 
 
2787	return amd_iommu_irq_remap ? 0 : -ENODEV;
2788}
2789
2790int __init amd_iommu_enable(void)
2791{
2792	int ret;
2793
2794	ret = iommu_go_to_state(IOMMU_ENABLED);
2795	if (ret)
2796		return ret;
2797
2798	irq_remapping_enabled = 1;
2799	return amd_iommu_xt_mode;
2800}
2801
2802void amd_iommu_disable(void)
2803{
2804	amd_iommu_suspend();
2805}
2806
2807int amd_iommu_reenable(int mode)
2808{
2809	amd_iommu_resume();
2810
2811	return 0;
2812}
2813
2814int __init amd_iommu_enable_faulting(void)
2815{
2816	/* We enable MSI later when PCI is initialized */
2817	return 0;
2818}
2819#endif
2820
2821/*
2822 * This is the core init function for AMD IOMMU hardware in the system.
2823 * This function is called from the generic x86 DMA layer initialization
2824 * code.
2825 */
2826static int __init amd_iommu_init(void)
2827{
2828	struct amd_iommu *iommu;
2829	int ret;
2830
2831	ret = iommu_go_to_state(IOMMU_INITIALIZED);
2832#ifdef CONFIG_GART_IOMMU
2833	if (ret && list_empty(&amd_iommu_list)) {
2834		/*
2835		 * We failed to initialize the AMD IOMMU - try fallback
2836		 * to GART if possible.
2837		 */
2838		gart_iommu_init();
2839	}
2840#endif
2841
2842	for_each_iommu(iommu)
2843		amd_iommu_debugfs_setup(iommu);
2844
2845	return ret;
2846}
2847
2848static bool amd_iommu_sme_check(void)
2849{
2850	if (!sme_active() || (boot_cpu_data.x86 != 0x17))
2851		return true;
2852
2853	/* For Fam17h, a specific level of support is required */
2854	if (boot_cpu_data.microcode >= 0x08001205)
2855		return true;
2856
2857	if ((boot_cpu_data.microcode >= 0x08001126) &&
2858	    (boot_cpu_data.microcode <= 0x080011ff))
2859		return true;
2860
2861	pr_notice("IOMMU not currently supported when SME is active\n");
2862
2863	return false;
2864}
2865
2866/****************************************************************************
2867 *
2868 * Early detect code. This code runs at IOMMU detection time in the DMA
2869 * layer. It just looks if there is an IVRS ACPI table to detect AMD
2870 * IOMMUs
2871 *
2872 ****************************************************************************/
2873int __init amd_iommu_detect(void)
2874{
2875	int ret;
2876
2877	if (no_iommu || (iommu_detected && !gart_iommu_aperture))
2878		return -ENODEV;
2879
2880	if (!amd_iommu_sme_check())
2881		return -ENODEV;
2882
2883	ret = iommu_go_to_state(IOMMU_IVRS_DETECTED);
2884	if (ret)
2885		return ret;
2886
2887	amd_iommu_detected = true;
2888	iommu_detected = 1;
2889	x86_init.iommu.iommu_init = amd_iommu_init;
2890
2891	return 1;
2892}
2893
2894/****************************************************************************
2895 *
2896 * Parsing functions for the AMD IOMMU specific kernel command line
2897 * options.
2898 *
2899 ****************************************************************************/
2900
2901static int __init parse_amd_iommu_dump(char *str)
2902{
2903	amd_iommu_dump = true;
2904
2905	return 1;
2906}
2907
2908static int __init parse_amd_iommu_intr(char *str)
2909{
2910	for (; *str; ++str) {
2911		if (strncmp(str, "legacy", 6) == 0) {
2912			amd_iommu_guest_ir = AMD_IOMMU_GUEST_IR_LEGACY_GA;
2913			break;
2914		}
2915		if (strncmp(str, "vapic", 5) == 0) {
2916			amd_iommu_guest_ir = AMD_IOMMU_GUEST_IR_VAPIC;
2917			break;
2918		}
2919	}
2920	return 1;
2921}
2922
2923static int __init parse_amd_iommu_options(char *str)
2924{
2925	for (; *str; ++str) {
2926		if (strncmp(str, "fullflush", 9) == 0)
2927			amd_iommu_unmap_flush = true;
 
 
2928		if (strncmp(str, "off", 3) == 0)
2929			amd_iommu_disabled = true;
2930		if (strncmp(str, "force_isolation", 15) == 0)
2931			amd_iommu_force_isolation = true;
2932	}
2933
2934	return 1;
2935}
2936
2937static int __init parse_ivrs_ioapic(char *str)
2938{
2939	unsigned int bus, dev, fn;
2940	int ret, id, i;
2941	u16 devid;
2942
2943	ret = sscanf(str, "[%d]=%x:%x.%x", &id, &bus, &dev, &fn);
2944
2945	if (ret != 4) {
2946		pr_err("Invalid command line: ivrs_ioapic%s\n", str);
2947		return 1;
2948	}
2949
2950	if (early_ioapic_map_size == EARLY_MAP_SIZE) {
2951		pr_err("Early IOAPIC map overflow - ignoring ivrs_ioapic%s\n",
2952			str);
2953		return 1;
2954	}
2955
2956	devid = ((bus & 0xff) << 8) | ((dev & 0x1f) << 3) | (fn & 0x7);
2957
2958	cmdline_maps			= true;
2959	i				= early_ioapic_map_size++;
2960	early_ioapic_map[i].id		= id;
2961	early_ioapic_map[i].devid	= devid;
2962	early_ioapic_map[i].cmd_line	= true;
2963
2964	return 1;
2965}
2966
2967static int __init parse_ivrs_hpet(char *str)
2968{
2969	unsigned int bus, dev, fn;
2970	int ret, id, i;
2971	u16 devid;
2972
2973	ret = sscanf(str, "[%d]=%x:%x.%x", &id, &bus, &dev, &fn);
2974
2975	if (ret != 4) {
2976		pr_err("Invalid command line: ivrs_hpet%s\n", str);
2977		return 1;
2978	}
2979
2980	if (early_hpet_map_size == EARLY_MAP_SIZE) {
2981		pr_err("Early HPET map overflow - ignoring ivrs_hpet%s\n",
2982			str);
2983		return 1;
2984	}
2985
2986	devid = ((bus & 0xff) << 8) | ((dev & 0x1f) << 3) | (fn & 0x7);
2987
2988	cmdline_maps			= true;
2989	i				= early_hpet_map_size++;
2990	early_hpet_map[i].id		= id;
2991	early_hpet_map[i].devid		= devid;
2992	early_hpet_map[i].cmd_line	= true;
2993
2994	return 1;
2995}
2996
2997static int __init parse_ivrs_acpihid(char *str)
2998{
2999	u32 bus, dev, fn;
3000	char *hid, *uid, *p;
3001	char acpiid[ACPIHID_UID_LEN + ACPIHID_HID_LEN] = {0};
3002	int ret, i;
3003
3004	ret = sscanf(str, "[%x:%x.%x]=%s", &bus, &dev, &fn, acpiid);
3005	if (ret != 4) {
3006		pr_err("Invalid command line: ivrs_acpihid(%s)\n", str);
3007		return 1;
3008	}
3009
3010	p = acpiid;
3011	hid = strsep(&p, ":");
3012	uid = p;
3013
3014	if (!hid || !(*hid) || !uid) {
3015		pr_err("Invalid command line: hid or uid\n");
3016		return 1;
3017	}
3018
3019	i = early_acpihid_map_size++;
3020	memcpy(early_acpihid_map[i].hid, hid, strlen(hid));
3021	memcpy(early_acpihid_map[i].uid, uid, strlen(uid));
3022	early_acpihid_map[i].devid =
3023		((bus & 0xff) << 8) | ((dev & 0x1f) << 3) | (fn & 0x7);
3024	early_acpihid_map[i].cmd_line	= true;
3025
3026	return 1;
3027}
3028
3029__setup("amd_iommu_dump",	parse_amd_iommu_dump);
3030__setup("amd_iommu=",		parse_amd_iommu_options);
3031__setup("amd_iommu_intr=",	parse_amd_iommu_intr);
3032__setup("ivrs_ioapic",		parse_ivrs_ioapic);
3033__setup("ivrs_hpet",		parse_ivrs_hpet);
3034__setup("ivrs_acpihid",		parse_ivrs_acpihid);
3035
3036IOMMU_INIT_FINISH(amd_iommu_detect,
3037		  gart_iommu_hole_init,
3038		  NULL,
3039		  NULL);
3040
3041bool amd_iommu_v2_supported(void)
3042{
3043	return amd_iommu_v2_present;
3044}
3045EXPORT_SYMBOL(amd_iommu_v2_supported);
3046
3047struct amd_iommu *get_amd_iommu(unsigned int idx)
3048{
3049	unsigned int i = 0;
3050	struct amd_iommu *iommu;
3051
3052	for_each_iommu(iommu)
3053		if (i++ == idx)
3054			return iommu;
3055	return NULL;
3056}
3057EXPORT_SYMBOL(get_amd_iommu);
3058
3059/****************************************************************************
3060 *
3061 * IOMMU EFR Performance Counter support functionality. This code allows
3062 * access to the IOMMU PC functionality.
3063 *
3064 ****************************************************************************/
3065
3066u8 amd_iommu_pc_get_max_banks(unsigned int idx)
3067{
3068	struct amd_iommu *iommu = get_amd_iommu(idx);
3069
3070	if (iommu)
3071		return iommu->max_banks;
3072
3073	return 0;
3074}
3075EXPORT_SYMBOL(amd_iommu_pc_get_max_banks);
3076
3077bool amd_iommu_pc_supported(void)
3078{
3079	return amd_iommu_pc_present;
3080}
3081EXPORT_SYMBOL(amd_iommu_pc_supported);
3082
3083u8 amd_iommu_pc_get_max_counters(unsigned int idx)
3084{
3085	struct amd_iommu *iommu = get_amd_iommu(idx);
3086
3087	if (iommu)
3088		return iommu->max_counters;
3089
3090	return 0;
3091}
3092EXPORT_SYMBOL(amd_iommu_pc_get_max_counters);
3093
3094static int iommu_pc_get_set_reg(struct amd_iommu *iommu, u8 bank, u8 cntr,
3095				u8 fxn, u64 *value, bool is_write)
3096{
3097	u32 offset;
3098	u32 max_offset_lim;
3099
3100	/* Make sure the IOMMU PC resource is available */
3101	if (!amd_iommu_pc_present)
3102		return -ENODEV;
3103
3104	/* Check for valid iommu and pc register indexing */
3105	if (WARN_ON(!iommu || (fxn > 0x28) || (fxn & 7)))
3106		return -ENODEV;
3107
3108	offset = (u32)(((0x40 | bank) << 12) | (cntr << 8) | fxn);
3109
3110	/* Limit the offset to the hw defined mmio region aperture */
3111	max_offset_lim = (u32)(((0x40 | iommu->max_banks) << 12) |
3112				(iommu->max_counters << 8) | 0x28);
3113	if ((offset < MMIO_CNTR_REG_OFFSET) ||
3114	    (offset > max_offset_lim))
3115		return -EINVAL;
3116
3117	if (is_write) {
3118		u64 val = *value & GENMASK_ULL(47, 0);
3119
3120		writel((u32)val, iommu->mmio_base + offset);
3121		writel((val >> 32), iommu->mmio_base + offset + 4);
3122	} else {
3123		*value = readl(iommu->mmio_base + offset + 4);
3124		*value <<= 32;
3125		*value |= readl(iommu->mmio_base + offset);
3126		*value &= GENMASK_ULL(47, 0);
3127	}
3128
3129	return 0;
3130}
3131
3132int amd_iommu_pc_get_reg(struct amd_iommu *iommu, u8 bank, u8 cntr, u8 fxn, u64 *value)
3133{
3134	if (!iommu)
3135		return -EINVAL;
3136
3137	return iommu_pc_get_set_reg(iommu, bank, cntr, fxn, value, false);
3138}
3139EXPORT_SYMBOL(amd_iommu_pc_get_reg);
3140
3141int amd_iommu_pc_set_reg(struct amd_iommu *iommu, u8 bank, u8 cntr, u8 fxn, u64 *value)
3142{
3143	if (!iommu)
3144		return -EINVAL;
3145
3146	return iommu_pc_get_set_reg(iommu, bank, cntr, fxn, value, true);
3147}
3148EXPORT_SYMBOL(amd_iommu_pc_set_reg);
v5.14.15
   1// SPDX-License-Identifier: GPL-2.0-only
   2/*
   3 * Copyright (C) 2007-2010 Advanced Micro Devices, Inc.
   4 * Author: Joerg Roedel <jroedel@suse.de>
   5 *         Leo Duran <leo.duran@amd.com>
   6 */
   7
   8#define pr_fmt(fmt)     "AMD-Vi: " fmt
   9#define dev_fmt(fmt)    pr_fmt(fmt)
  10
  11#include <linux/pci.h>
  12#include <linux/acpi.h>
  13#include <linux/list.h>
  14#include <linux/bitmap.h>
  15#include <linux/slab.h>
  16#include <linux/syscore_ops.h>
  17#include <linux/interrupt.h>
  18#include <linux/msi.h>
  19#include <linux/irq.h>
  20#include <linux/amd-iommu.h>
  21#include <linux/export.h>
  22#include <linux/kmemleak.h>
  23#include <linux/mem_encrypt.h>
  24#include <asm/pci-direct.h>
  25#include <asm/iommu.h>
  26#include <asm/apic.h>
 
  27#include <asm/gart.h>
  28#include <asm/x86_init.h>
  29#include <asm/iommu_table.h>
  30#include <asm/io_apic.h>
  31#include <asm/irq_remapping.h>
  32#include <asm/set_memory.h>
  33
  34#include <linux/crash_dump.h>
  35
  36#include "amd_iommu.h"
  37#include "../irq_remapping.h"
  38
  39/*
  40 * definitions for the ACPI scanning code
  41 */
  42#define IVRS_HEADER_LENGTH 48
  43
  44#define ACPI_IVHD_TYPE_MAX_SUPPORTED	0x40
  45#define ACPI_IVMD_TYPE_ALL              0x20
  46#define ACPI_IVMD_TYPE                  0x21
  47#define ACPI_IVMD_TYPE_RANGE            0x22
  48
  49#define IVHD_DEV_ALL                    0x01
  50#define IVHD_DEV_SELECT                 0x02
  51#define IVHD_DEV_SELECT_RANGE_START     0x03
  52#define IVHD_DEV_RANGE_END              0x04
  53#define IVHD_DEV_ALIAS                  0x42
  54#define IVHD_DEV_ALIAS_RANGE            0x43
  55#define IVHD_DEV_EXT_SELECT             0x46
  56#define IVHD_DEV_EXT_SELECT_RANGE       0x47
  57#define IVHD_DEV_SPECIAL		0x48
  58#define IVHD_DEV_ACPI_HID		0xf0
  59
  60#define UID_NOT_PRESENT                 0
  61#define UID_IS_INTEGER                  1
  62#define UID_IS_CHARACTER                2
  63
  64#define IVHD_SPECIAL_IOAPIC		1
  65#define IVHD_SPECIAL_HPET		2
  66
  67#define IVHD_FLAG_HT_TUN_EN_MASK        0x01
  68#define IVHD_FLAG_PASSPW_EN_MASK        0x02
  69#define IVHD_FLAG_RESPASSPW_EN_MASK     0x04
  70#define IVHD_FLAG_ISOC_EN_MASK          0x08
  71
  72#define IVMD_FLAG_EXCL_RANGE            0x08
  73#define IVMD_FLAG_IW                    0x04
  74#define IVMD_FLAG_IR                    0x02
  75#define IVMD_FLAG_UNITY_MAP             0x01
  76
  77#define ACPI_DEVFLAG_INITPASS           0x01
  78#define ACPI_DEVFLAG_EXTINT             0x02
  79#define ACPI_DEVFLAG_NMI                0x04
  80#define ACPI_DEVFLAG_SYSMGT1            0x10
  81#define ACPI_DEVFLAG_SYSMGT2            0x20
  82#define ACPI_DEVFLAG_LINT0              0x40
  83#define ACPI_DEVFLAG_LINT1              0x80
  84#define ACPI_DEVFLAG_ATSDIS             0x10000000
  85
  86#define LOOP_TIMEOUT	100000
  87/*
  88 * ACPI table definitions
  89 *
  90 * These data structures are laid over the table to parse the important values
  91 * out of it.
  92 */
  93
  94extern const struct iommu_ops amd_iommu_ops;
  95
  96/*
  97 * structure describing one IOMMU in the ACPI table. Typically followed by one
  98 * or more ivhd_entrys.
  99 */
 100struct ivhd_header {
 101	u8 type;
 102	u8 flags;
 103	u16 length;
 104	u16 devid;
 105	u16 cap_ptr;
 106	u64 mmio_phys;
 107	u16 pci_seg;
 108	u16 info;
 109	u32 efr_attr;
 110
 111	/* Following only valid on IVHD type 11h and 40h */
 112	u64 efr_reg; /* Exact copy of MMIO_EXT_FEATURES */
 113	u64 res;
 114} __attribute__((packed));
 115
 116/*
 117 * A device entry describing which devices a specific IOMMU translates and
 118 * which requestor ids they use.
 119 */
 120struct ivhd_entry {
 121	u8 type;
 122	u16 devid;
 123	u8 flags;
 124	u32 ext;
 125	u32 hidh;
 126	u64 cid;
 127	u8 uidf;
 128	u8 uidl;
 129	u8 uid;
 130} __attribute__((packed));
 131
 132/*
 133 * An AMD IOMMU memory definition structure. It defines things like exclusion
 134 * ranges for devices and regions that should be unity mapped.
 135 */
 136struct ivmd_header {
 137	u8 type;
 138	u8 flags;
 139	u16 length;
 140	u16 devid;
 141	u16 aux;
 142	u64 resv;
 143	u64 range_start;
 144	u64 range_length;
 145} __attribute__((packed));
 146
 147bool amd_iommu_dump;
 148bool amd_iommu_irq_remap __read_mostly;
 149
 150enum io_pgtable_fmt amd_iommu_pgtable = AMD_IOMMU_V1;
 151
 152int amd_iommu_guest_ir = AMD_IOMMU_GUEST_IR_VAPIC;
 153static int amd_iommu_xt_mode = IRQ_REMAP_XAPIC_MODE;
 154
 155static bool amd_iommu_detected;
 156static bool amd_iommu_disabled __initdata;
 157static bool amd_iommu_force_enable __initdata;
 158static int amd_iommu_target_ivhd_type;
 159
 160u16 amd_iommu_last_bdf;			/* largest PCI device id we have
 161					   to handle */
 162LIST_HEAD(amd_iommu_unity_map);		/* a list of required unity mappings
 163					   we find in ACPI */
 164bool amd_iommu_unmap_flush;		/* if true, flush on every unmap */
 165
 166LIST_HEAD(amd_iommu_list);		/* list of all AMD IOMMUs in the
 167					   system */
 168
 169/* Array to assign indices to IOMMUs*/
 170struct amd_iommu *amd_iommus[MAX_IOMMUS];
 171
 172/* Number of IOMMUs present in the system */
 173static int amd_iommus_present;
 174
 175/* IOMMUs have a non-present cache? */
 176bool amd_iommu_np_cache __read_mostly;
 177bool amd_iommu_iotlb_sup __read_mostly = true;
 178
 179u32 amd_iommu_max_pasid __read_mostly = ~0;
 180
 181bool amd_iommu_v2_present __read_mostly;
 182static bool amd_iommu_pc_present __read_mostly;
 183
 184bool amd_iommu_force_isolation __read_mostly;
 185
 186/*
 187 * Pointer to the device table which is shared by all AMD IOMMUs
 188 * it is indexed by the PCI device id or the HT unit id and contains
 189 * information about the domain the device belongs to as well as the
 190 * page table root pointer.
 191 */
 192struct dev_table_entry *amd_iommu_dev_table;
 193/*
 194 * Pointer to a device table which the content of old device table
 195 * will be copied to. It's only be used in kdump kernel.
 196 */
 197static struct dev_table_entry *old_dev_tbl_cpy;
 198
 199/*
 200 * The alias table is a driver specific data structure which contains the
 201 * mappings of the PCI device ids to the actual requestor ids on the IOMMU.
 202 * More than one device can share the same requestor id.
 203 */
 204u16 *amd_iommu_alias_table;
 205
 206/*
 207 * The rlookup table is used to find the IOMMU which is responsible
 208 * for a specific device. It is also indexed by the PCI device id.
 209 */
 210struct amd_iommu **amd_iommu_rlookup_table;
 
 211
 212/*
 213 * This table is used to find the irq remapping table for a given device id
 214 * quickly.
 215 */
 216struct irq_remap_table **irq_lookup_table;
 217
 218/*
 219 * AMD IOMMU allows up to 2^16 different protection domains. This is a bitmap
 220 * to know which ones are already in use.
 221 */
 222unsigned long *amd_iommu_pd_alloc_bitmap;
 223
 224static u32 dev_table_size;	/* size of the device table */
 225static u32 alias_table_size;	/* size of the alias table */
 226static u32 rlookup_table_size;	/* size if the rlookup table */
 227
 228enum iommu_init_state {
 229	IOMMU_START_STATE,
 230	IOMMU_IVRS_DETECTED,
 231	IOMMU_ACPI_FINISHED,
 232	IOMMU_ENABLED,
 233	IOMMU_PCI_INIT,
 234	IOMMU_INTERRUPTS_EN,
 
 235	IOMMU_INITIALIZED,
 236	IOMMU_NOT_FOUND,
 237	IOMMU_INIT_ERROR,
 238	IOMMU_CMDLINE_DISABLED,
 239};
 240
 241/* Early ioapic and hpet maps from kernel command line */
 242#define EARLY_MAP_SIZE		4
 243static struct devid_map __initdata early_ioapic_map[EARLY_MAP_SIZE];
 244static struct devid_map __initdata early_hpet_map[EARLY_MAP_SIZE];
 245static struct acpihid_map_entry __initdata early_acpihid_map[EARLY_MAP_SIZE];
 246
 247static int __initdata early_ioapic_map_size;
 248static int __initdata early_hpet_map_size;
 249static int __initdata early_acpihid_map_size;
 250
 251static bool __initdata cmdline_maps;
 252
 253static enum iommu_init_state init_state = IOMMU_START_STATE;
 254
 255static int amd_iommu_enable_interrupts(void);
 256static int __init iommu_go_to_state(enum iommu_init_state state);
 257static void init_device_table_dma(void);
 258
 259static bool amd_iommu_pre_enabled = true;
 260
 261static u32 amd_iommu_ivinfo __initdata;
 262
 263bool translation_pre_enabled(struct amd_iommu *iommu)
 264{
 265	return (iommu->flags & AMD_IOMMU_FLAG_TRANS_PRE_ENABLED);
 266}
 
 267
 268static void clear_translation_pre_enabled(struct amd_iommu *iommu)
 269{
 270	iommu->flags &= ~AMD_IOMMU_FLAG_TRANS_PRE_ENABLED;
 271}
 272
 273static void init_translation_status(struct amd_iommu *iommu)
 274{
 275	u64 ctrl;
 276
 277	ctrl = readq(iommu->mmio_base + MMIO_CONTROL_OFFSET);
 278	if (ctrl & (1<<CONTROL_IOMMU_EN))
 279		iommu->flags |= AMD_IOMMU_FLAG_TRANS_PRE_ENABLED;
 280}
 281
 282static inline void update_last_devid(u16 devid)
 283{
 284	if (devid > amd_iommu_last_bdf)
 285		amd_iommu_last_bdf = devid;
 286}
 287
 288static inline unsigned long tbl_size(int entry_size)
 289{
 290	unsigned shift = PAGE_SHIFT +
 291			 get_order(((int)amd_iommu_last_bdf + 1) * entry_size);
 292
 293	return 1UL << shift;
 294}
 295
 296int amd_iommu_get_num_iommus(void)
 297{
 298	return amd_iommus_present;
 299}
 300
 301#ifdef CONFIG_IRQ_REMAP
 302static bool check_feature_on_all_iommus(u64 mask)
 303{
 304	bool ret = false;
 305	struct amd_iommu *iommu;
 306
 307	for_each_iommu(iommu) {
 308		ret = iommu_feature(iommu, mask);
 309		if (!ret)
 310			return false;
 311	}
 312
 313	return true;
 314}
 315#endif
 316
 317/*
 318 * For IVHD type 0x11/0x40, EFR is also available via IVHD.
 319 * Default to IVHD EFR since it is available sooner
 320 * (i.e. before PCI init).
 321 */
 322static void __init early_iommu_features_init(struct amd_iommu *iommu,
 323					     struct ivhd_header *h)
 324{
 325	if (amd_iommu_ivinfo & IOMMU_IVINFO_EFRSUP)
 326		iommu->features = h->efr_reg;
 327}
 328
 329/* Access to l1 and l2 indexed register spaces */
 330
 331static u32 iommu_read_l1(struct amd_iommu *iommu, u16 l1, u8 address)
 332{
 333	u32 val;
 334
 335	pci_write_config_dword(iommu->dev, 0xf8, (address | l1 << 16));
 336	pci_read_config_dword(iommu->dev, 0xfc, &val);
 337	return val;
 338}
 339
 340static void iommu_write_l1(struct amd_iommu *iommu, u16 l1, u8 address, u32 val)
 341{
 342	pci_write_config_dword(iommu->dev, 0xf8, (address | l1 << 16 | 1 << 31));
 343	pci_write_config_dword(iommu->dev, 0xfc, val);
 344	pci_write_config_dword(iommu->dev, 0xf8, (address | l1 << 16));
 345}
 346
 347static u32 iommu_read_l2(struct amd_iommu *iommu, u8 address)
 348{
 349	u32 val;
 350
 351	pci_write_config_dword(iommu->dev, 0xf0, address);
 352	pci_read_config_dword(iommu->dev, 0xf4, &val);
 353	return val;
 354}
 355
 356static void iommu_write_l2(struct amd_iommu *iommu, u8 address, u32 val)
 357{
 358	pci_write_config_dword(iommu->dev, 0xf0, (address | 1 << 8));
 359	pci_write_config_dword(iommu->dev, 0xf4, val);
 360}
 361
 362/****************************************************************************
 363 *
 364 * AMD IOMMU MMIO register space handling functions
 365 *
 366 * These functions are used to program the IOMMU device registers in
 367 * MMIO space required for that driver.
 368 *
 369 ****************************************************************************/
 370
 371/*
 372 * This function set the exclusion range in the IOMMU. DMA accesses to the
 373 * exclusion range are passed through untranslated
 374 */
 375static void iommu_set_exclusion_range(struct amd_iommu *iommu)
 376{
 377	u64 start = iommu->exclusion_start & PAGE_MASK;
 378	u64 limit = (start + iommu->exclusion_length - 1) & PAGE_MASK;
 379	u64 entry;
 380
 381	if (!iommu->exclusion_start)
 382		return;
 383
 384	entry = start | MMIO_EXCL_ENABLE_MASK;
 385	memcpy_toio(iommu->mmio_base + MMIO_EXCL_BASE_OFFSET,
 386			&entry, sizeof(entry));
 387
 388	entry = limit;
 389	memcpy_toio(iommu->mmio_base + MMIO_EXCL_LIMIT_OFFSET,
 390			&entry, sizeof(entry));
 391}
 392
 393static void iommu_set_cwwb_range(struct amd_iommu *iommu)
 394{
 395	u64 start = iommu_virt_to_phys((void *)iommu->cmd_sem);
 396	u64 entry = start & PM_ADDR_MASK;
 397
 398	if (!iommu_feature(iommu, FEATURE_SNP))
 399		return;
 400
 401	/* Note:
 402	 * Re-purpose Exclusion base/limit registers for Completion wait
 403	 * write-back base/limit.
 404	 */
 405	memcpy_toio(iommu->mmio_base + MMIO_EXCL_BASE_OFFSET,
 406		    &entry, sizeof(entry));
 407
 408	/* Note:
 409	 * Default to 4 Kbytes, which can be specified by setting base
 410	 * address equal to the limit address.
 411	 */
 412	memcpy_toio(iommu->mmio_base + MMIO_EXCL_LIMIT_OFFSET,
 413		    &entry, sizeof(entry));
 414}
 415
 416/* Programs the physical address of the device table into the IOMMU hardware */
 417static void iommu_set_device_table(struct amd_iommu *iommu)
 418{
 419	u64 entry;
 420
 421	BUG_ON(iommu->mmio_base == NULL);
 422
 423	entry = iommu_virt_to_phys(amd_iommu_dev_table);
 424	entry |= (dev_table_size >> 12) - 1;
 425	memcpy_toio(iommu->mmio_base + MMIO_DEV_TABLE_OFFSET,
 426			&entry, sizeof(entry));
 427}
 428
 429/* Generic functions to enable/disable certain features of the IOMMU. */
 430static void iommu_feature_enable(struct amd_iommu *iommu, u8 bit)
 431{
 432	u64 ctrl;
 433
 434	ctrl = readq(iommu->mmio_base +  MMIO_CONTROL_OFFSET);
 435	ctrl |= (1ULL << bit);
 436	writeq(ctrl, iommu->mmio_base +  MMIO_CONTROL_OFFSET);
 437}
 438
 439static void iommu_feature_disable(struct amd_iommu *iommu, u8 bit)
 440{
 441	u64 ctrl;
 442
 443	ctrl = readq(iommu->mmio_base + MMIO_CONTROL_OFFSET);
 444	ctrl &= ~(1ULL << bit);
 445	writeq(ctrl, iommu->mmio_base + MMIO_CONTROL_OFFSET);
 446}
 447
 448static void iommu_set_inv_tlb_timeout(struct amd_iommu *iommu, int timeout)
 449{
 450	u64 ctrl;
 451
 452	ctrl = readq(iommu->mmio_base + MMIO_CONTROL_OFFSET);
 453	ctrl &= ~CTRL_INV_TO_MASK;
 454	ctrl |= (timeout << CONTROL_INV_TIMEOUT) & CTRL_INV_TO_MASK;
 455	writeq(ctrl, iommu->mmio_base + MMIO_CONTROL_OFFSET);
 456}
 457
 458/* Function to enable the hardware */
 459static void iommu_enable(struct amd_iommu *iommu)
 460{
 461	iommu_feature_enable(iommu, CONTROL_IOMMU_EN);
 462}
 463
 464static void iommu_disable(struct amd_iommu *iommu)
 465{
 466	if (!iommu->mmio_base)
 467		return;
 468
 469	/* Disable command buffer */
 470	iommu_feature_disable(iommu, CONTROL_CMDBUF_EN);
 471
 472	/* Disable event logging and event interrupts */
 473	iommu_feature_disable(iommu, CONTROL_EVT_INT_EN);
 474	iommu_feature_disable(iommu, CONTROL_EVT_LOG_EN);
 475
 476	/* Disable IOMMU GA_LOG */
 477	iommu_feature_disable(iommu, CONTROL_GALOG_EN);
 478	iommu_feature_disable(iommu, CONTROL_GAINT_EN);
 479
 480	/* Disable IOMMU hardware itself */
 481	iommu_feature_disable(iommu, CONTROL_IOMMU_EN);
 482}
 483
 484/*
 485 * mapping and unmapping functions for the IOMMU MMIO space. Each AMD IOMMU in
 486 * the system has one.
 487 */
 488static u8 __iomem * __init iommu_map_mmio_space(u64 address, u64 end)
 489{
 490	if (!request_mem_region(address, end, "amd_iommu")) {
 491		pr_err("Can not reserve memory region %llx-%llx for mmio\n",
 492			address, end);
 493		pr_err("This is a BIOS bug. Please contact your hardware vendor\n");
 494		return NULL;
 495	}
 496
 497	return (u8 __iomem *)ioremap(address, end);
 498}
 499
 500static void __init iommu_unmap_mmio_space(struct amd_iommu *iommu)
 501{
 502	if (iommu->mmio_base)
 503		iounmap(iommu->mmio_base);
 504	release_mem_region(iommu->mmio_phys, iommu->mmio_phys_end);
 505}
 506
 507static inline u32 get_ivhd_header_size(struct ivhd_header *h)
 508{
 509	u32 size = 0;
 510
 511	switch (h->type) {
 512	case 0x10:
 513		size = 24;
 514		break;
 515	case 0x11:
 516	case 0x40:
 517		size = 40;
 518		break;
 519	}
 520	return size;
 521}
 522
 523/****************************************************************************
 524 *
 525 * The functions below belong to the first pass of AMD IOMMU ACPI table
 526 * parsing. In this pass we try to find out the highest device id this
 527 * code has to handle. Upon this information the size of the shared data
 528 * structures is determined later.
 529 *
 530 ****************************************************************************/
 531
 532/*
 533 * This function calculates the length of a given IVHD entry
 534 */
 535static inline int ivhd_entry_length(u8 *ivhd)
 536{
 537	u32 type = ((struct ivhd_entry *)ivhd)->type;
 538
 539	if (type < 0x80) {
 540		return 0x04 << (*ivhd >> 6);
 541	} else if (type == IVHD_DEV_ACPI_HID) {
 542		/* For ACPI_HID, offset 21 is uid len */
 543		return *((u8 *)ivhd + 21) + 22;
 544	}
 545	return 0;
 546}
 547
 548/*
 549 * After reading the highest device id from the IOMMU PCI capability header
 550 * this function looks if there is a higher device id defined in the ACPI table
 551 */
 552static int __init find_last_devid_from_ivhd(struct ivhd_header *h)
 553{
 554	u8 *p = (void *)h, *end = (void *)h;
 555	struct ivhd_entry *dev;
 556
 557	u32 ivhd_size = get_ivhd_header_size(h);
 558
 559	if (!ivhd_size) {
 560		pr_err("Unsupported IVHD type %#x\n", h->type);
 561		return -EINVAL;
 562	}
 563
 564	p += ivhd_size;
 565	end += h->length;
 566
 567	while (p < end) {
 568		dev = (struct ivhd_entry *)p;
 569		switch (dev->type) {
 570		case IVHD_DEV_ALL:
 571			/* Use maximum BDF value for DEV_ALL */
 572			update_last_devid(0xffff);
 573			break;
 574		case IVHD_DEV_SELECT:
 575		case IVHD_DEV_RANGE_END:
 576		case IVHD_DEV_ALIAS:
 577		case IVHD_DEV_EXT_SELECT:
 578			/* all the above subfield types refer to device ids */
 579			update_last_devid(dev->devid);
 580			break;
 581		default:
 582			break;
 583		}
 584		p += ivhd_entry_length(p);
 585	}
 586
 587	WARN_ON(p != end);
 588
 589	return 0;
 590}
 591
 592static int __init check_ivrs_checksum(struct acpi_table_header *table)
 593{
 594	int i;
 595	u8 checksum = 0, *p = (u8 *)table;
 596
 597	for (i = 0; i < table->length; ++i)
 598		checksum += p[i];
 599	if (checksum != 0) {
 600		/* ACPI table corrupt */
 601		pr_err(FW_BUG "IVRS invalid checksum\n");
 602		return -ENODEV;
 603	}
 604
 605	return 0;
 606}
 607
 608/*
 609 * Iterate over all IVHD entries in the ACPI table and find the highest device
 610 * id which we need to handle. This is the first of three functions which parse
 611 * the ACPI table. So we check the checksum here.
 612 */
 613static int __init find_last_devid_acpi(struct acpi_table_header *table)
 614{
 615	u8 *p = (u8 *)table, *end = (u8 *)table;
 616	struct ivhd_header *h;
 617
 618	p += IVRS_HEADER_LENGTH;
 619
 620	end += table->length;
 621	while (p < end) {
 622		h = (struct ivhd_header *)p;
 623		if (h->type == amd_iommu_target_ivhd_type) {
 624			int ret = find_last_devid_from_ivhd(h);
 625
 626			if (ret)
 627				return ret;
 628		}
 629		p += h->length;
 630	}
 631	WARN_ON(p != end);
 632
 633	return 0;
 634}
 635
 636/****************************************************************************
 637 *
 638 * The following functions belong to the code path which parses the ACPI table
 639 * the second time. In this ACPI parsing iteration we allocate IOMMU specific
 640 * data structures, initialize the device/alias/rlookup table and also
 641 * basically initialize the hardware.
 642 *
 643 ****************************************************************************/
 644
 645/*
 646 * Allocates the command buffer. This buffer is per AMD IOMMU. We can
 647 * write commands to that buffer later and the IOMMU will execute them
 648 * asynchronously
 649 */
 650static int __init alloc_command_buffer(struct amd_iommu *iommu)
 651{
 652	iommu->cmd_buf = (void *)__get_free_pages(GFP_KERNEL | __GFP_ZERO,
 653						  get_order(CMD_BUFFER_SIZE));
 654
 655	return iommu->cmd_buf ? 0 : -ENOMEM;
 656}
 657
 658/*
 659 * This function resets the command buffer if the IOMMU stopped fetching
 660 * commands from it.
 661 */
 662void amd_iommu_reset_cmd_buffer(struct amd_iommu *iommu)
 663{
 664	iommu_feature_disable(iommu, CONTROL_CMDBUF_EN);
 665
 666	writel(0x00, iommu->mmio_base + MMIO_CMD_HEAD_OFFSET);
 667	writel(0x00, iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
 668	iommu->cmd_buf_head = 0;
 669	iommu->cmd_buf_tail = 0;
 670
 671	iommu_feature_enable(iommu, CONTROL_CMDBUF_EN);
 672}
 673
 674/*
 675 * This function writes the command buffer address to the hardware and
 676 * enables it.
 677 */
 678static void iommu_enable_command_buffer(struct amd_iommu *iommu)
 679{
 680	u64 entry;
 681
 682	BUG_ON(iommu->cmd_buf == NULL);
 683
 684	entry = iommu_virt_to_phys(iommu->cmd_buf);
 685	entry |= MMIO_CMD_SIZE_512;
 686
 687	memcpy_toio(iommu->mmio_base + MMIO_CMD_BUF_OFFSET,
 688		    &entry, sizeof(entry));
 689
 690	amd_iommu_reset_cmd_buffer(iommu);
 691}
 692
 693/*
 694 * This function disables the command buffer
 695 */
 696static void iommu_disable_command_buffer(struct amd_iommu *iommu)
 697{
 698	iommu_feature_disable(iommu, CONTROL_CMDBUF_EN);
 699}
 700
 701static void __init free_command_buffer(struct amd_iommu *iommu)
 702{
 703	free_pages((unsigned long)iommu->cmd_buf, get_order(CMD_BUFFER_SIZE));
 704}
 705
 706static void *__init iommu_alloc_4k_pages(struct amd_iommu *iommu,
 707					 gfp_t gfp, size_t size)
 708{
 709	int order = get_order(size);
 710	void *buf = (void *)__get_free_pages(gfp, order);
 711
 712	if (buf &&
 713	    iommu_feature(iommu, FEATURE_SNP) &&
 714	    set_memory_4k((unsigned long)buf, (1 << order))) {
 715		free_pages((unsigned long)buf, order);
 716		buf = NULL;
 717	}
 718
 719	return buf;
 720}
 721
 722/* allocates the memory where the IOMMU will log its events to */
 723static int __init alloc_event_buffer(struct amd_iommu *iommu)
 724{
 725	iommu->evt_buf = iommu_alloc_4k_pages(iommu, GFP_KERNEL | __GFP_ZERO,
 726					      EVT_BUFFER_SIZE);
 727
 728	return iommu->evt_buf ? 0 : -ENOMEM;
 729}
 730
 731static void iommu_enable_event_buffer(struct amd_iommu *iommu)
 732{
 733	u64 entry;
 734
 735	BUG_ON(iommu->evt_buf == NULL);
 736
 737	entry = iommu_virt_to_phys(iommu->evt_buf) | EVT_LEN_MASK;
 738
 739	memcpy_toio(iommu->mmio_base + MMIO_EVT_BUF_OFFSET,
 740		    &entry, sizeof(entry));
 741
 742	/* set head and tail to zero manually */
 743	writel(0x00, iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
 744	writel(0x00, iommu->mmio_base + MMIO_EVT_TAIL_OFFSET);
 745
 746	iommu_feature_enable(iommu, CONTROL_EVT_LOG_EN);
 747}
 748
 749/*
 750 * This function disables the event log buffer
 751 */
 752static void iommu_disable_event_buffer(struct amd_iommu *iommu)
 753{
 754	iommu_feature_disable(iommu, CONTROL_EVT_LOG_EN);
 755}
 756
 757static void __init free_event_buffer(struct amd_iommu *iommu)
 758{
 759	free_pages((unsigned long)iommu->evt_buf, get_order(EVT_BUFFER_SIZE));
 760}
 761
 762/* allocates the memory where the IOMMU will log its events to */
 763static int __init alloc_ppr_log(struct amd_iommu *iommu)
 764{
 765	iommu->ppr_log = iommu_alloc_4k_pages(iommu, GFP_KERNEL | __GFP_ZERO,
 766					      PPR_LOG_SIZE);
 767
 768	return iommu->ppr_log ? 0 : -ENOMEM;
 769}
 770
 771static void iommu_enable_ppr_log(struct amd_iommu *iommu)
 772{
 773	u64 entry;
 774
 775	if (iommu->ppr_log == NULL)
 776		return;
 777
 778	entry = iommu_virt_to_phys(iommu->ppr_log) | PPR_LOG_SIZE_512;
 779
 780	memcpy_toio(iommu->mmio_base + MMIO_PPR_LOG_OFFSET,
 781		    &entry, sizeof(entry));
 782
 783	/* set head and tail to zero manually */
 784	writel(0x00, iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
 785	writel(0x00, iommu->mmio_base + MMIO_PPR_TAIL_OFFSET);
 786
 787	iommu_feature_enable(iommu, CONTROL_PPRLOG_EN);
 788	iommu_feature_enable(iommu, CONTROL_PPR_EN);
 789}
 790
 791static void __init free_ppr_log(struct amd_iommu *iommu)
 792{
 793	free_pages((unsigned long)iommu->ppr_log, get_order(PPR_LOG_SIZE));
 794}
 795
 796static void free_ga_log(struct amd_iommu *iommu)
 797{
 798#ifdef CONFIG_IRQ_REMAP
 799	free_pages((unsigned long)iommu->ga_log, get_order(GA_LOG_SIZE));
 800	free_pages((unsigned long)iommu->ga_log_tail, get_order(8));
 801#endif
 802}
 803
 804static int iommu_ga_log_enable(struct amd_iommu *iommu)
 805{
 806#ifdef CONFIG_IRQ_REMAP
 807	u32 status, i;
 808
 809	if (!iommu->ga_log)
 810		return -EINVAL;
 811
 812	status = readl(iommu->mmio_base + MMIO_STATUS_OFFSET);
 813
 814	/* Check if already running */
 815	if (status & (MMIO_STATUS_GALOG_RUN_MASK))
 816		return 0;
 817
 818	iommu_feature_enable(iommu, CONTROL_GAINT_EN);
 819	iommu_feature_enable(iommu, CONTROL_GALOG_EN);
 820
 821	for (i = 0; i < LOOP_TIMEOUT; ++i) {
 822		status = readl(iommu->mmio_base + MMIO_STATUS_OFFSET);
 823		if (status & (MMIO_STATUS_GALOG_RUN_MASK))
 824			break;
 825	}
 826
 827	if (i >= LOOP_TIMEOUT)
 828		return -EINVAL;
 829#endif /* CONFIG_IRQ_REMAP */
 830	return 0;
 831}
 832
 833#ifdef CONFIG_IRQ_REMAP
 834static int iommu_init_ga_log(struct amd_iommu *iommu)
 835{
 836	u64 entry;
 837
 838	if (!AMD_IOMMU_GUEST_IR_VAPIC(amd_iommu_guest_ir))
 839		return 0;
 840
 841	iommu->ga_log = (u8 *)__get_free_pages(GFP_KERNEL | __GFP_ZERO,
 842					get_order(GA_LOG_SIZE));
 843	if (!iommu->ga_log)
 844		goto err_out;
 845
 846	iommu->ga_log_tail = (u8 *)__get_free_pages(GFP_KERNEL | __GFP_ZERO,
 847					get_order(8));
 848	if (!iommu->ga_log_tail)
 849		goto err_out;
 850
 851	entry = iommu_virt_to_phys(iommu->ga_log) | GA_LOG_SIZE_512;
 852	memcpy_toio(iommu->mmio_base + MMIO_GA_LOG_BASE_OFFSET,
 853		    &entry, sizeof(entry));
 854	entry = (iommu_virt_to_phys(iommu->ga_log_tail) &
 855		 (BIT_ULL(52)-1)) & ~7ULL;
 856	memcpy_toio(iommu->mmio_base + MMIO_GA_LOG_TAIL_OFFSET,
 857		    &entry, sizeof(entry));
 858	writel(0x00, iommu->mmio_base + MMIO_GA_HEAD_OFFSET);
 859	writel(0x00, iommu->mmio_base + MMIO_GA_TAIL_OFFSET);
 860
 861	return 0;
 862err_out:
 863	free_ga_log(iommu);
 864	return -EINVAL;
 865}
 866#endif /* CONFIG_IRQ_REMAP */
 867
 868static int iommu_init_ga(struct amd_iommu *iommu)
 869{
 870	int ret = 0;
 871
 872#ifdef CONFIG_IRQ_REMAP
 
 
 
 
 
 
 
 873	ret = iommu_init_ga_log(iommu);
 874#endif /* CONFIG_IRQ_REMAP */
 875
 876	return ret;
 877}
 878
 879static int __init alloc_cwwb_sem(struct amd_iommu *iommu)
 880{
 881	iommu->cmd_sem = iommu_alloc_4k_pages(iommu, GFP_KERNEL | __GFP_ZERO, 1);
 882
 883	return iommu->cmd_sem ? 0 : -ENOMEM;
 884}
 885
 886static void __init free_cwwb_sem(struct amd_iommu *iommu)
 887{
 888	if (iommu->cmd_sem)
 889		free_page((unsigned long)iommu->cmd_sem);
 890}
 891
 892static void iommu_enable_xt(struct amd_iommu *iommu)
 893{
 894#ifdef CONFIG_IRQ_REMAP
 895	/*
 896	 * XT mode (32-bit APIC destination ID) requires
 897	 * GA mode (128-bit IRTE support) as a prerequisite.
 898	 */
 899	if (AMD_IOMMU_GUEST_IR_GA(amd_iommu_guest_ir) &&
 900	    amd_iommu_xt_mode == IRQ_REMAP_X2APIC_MODE)
 901		iommu_feature_enable(iommu, CONTROL_XT_EN);
 902#endif /* CONFIG_IRQ_REMAP */
 903}
 904
 905static void iommu_enable_gt(struct amd_iommu *iommu)
 906{
 907	if (!iommu_feature(iommu, FEATURE_GT))
 908		return;
 909
 910	iommu_feature_enable(iommu, CONTROL_GT_EN);
 911}
 912
 913/* sets a specific bit in the device table entry. */
 914static void set_dev_entry_bit(u16 devid, u8 bit)
 915{
 916	int i = (bit >> 6) & 0x03;
 917	int _bit = bit & 0x3f;
 918
 919	amd_iommu_dev_table[devid].data[i] |= (1UL << _bit);
 920}
 921
 922static int get_dev_entry_bit(u16 devid, u8 bit)
 923{
 924	int i = (bit >> 6) & 0x03;
 925	int _bit = bit & 0x3f;
 926
 927	return (amd_iommu_dev_table[devid].data[i] & (1UL << _bit)) >> _bit;
 928}
 929
 930
 931static bool copy_device_table(void)
 932{
 933	u64 int_ctl, int_tab_len, entry = 0, last_entry = 0;
 934	struct dev_table_entry *old_devtb = NULL;
 935	u32 lo, hi, devid, old_devtb_size;
 936	phys_addr_t old_devtb_phys;
 937	struct amd_iommu *iommu;
 938	u16 dom_id, dte_v, irq_v;
 939	gfp_t gfp_flag;
 940	u64 tmp;
 941
 942	if (!amd_iommu_pre_enabled)
 943		return false;
 944
 945	pr_warn("Translation is already enabled - trying to copy translation structures\n");
 946	for_each_iommu(iommu) {
 947		/* All IOMMUs should use the same device table with the same size */
 948		lo = readl(iommu->mmio_base + MMIO_DEV_TABLE_OFFSET);
 949		hi = readl(iommu->mmio_base + MMIO_DEV_TABLE_OFFSET + 4);
 950		entry = (((u64) hi) << 32) + lo;
 951		if (last_entry && last_entry != entry) {
 952			pr_err("IOMMU:%d should use the same dev table as others!\n",
 953				iommu->index);
 954			return false;
 955		}
 956		last_entry = entry;
 957
 958		old_devtb_size = ((entry & ~PAGE_MASK) + 1) << 12;
 959		if (old_devtb_size != dev_table_size) {
 960			pr_err("The device table size of IOMMU:%d is not expected!\n",
 961				iommu->index);
 962			return false;
 963		}
 964	}
 965
 966	/*
 967	 * When SME is enabled in the first kernel, the entry includes the
 968	 * memory encryption mask(sme_me_mask), we must remove the memory
 969	 * encryption mask to obtain the true physical address in kdump kernel.
 970	 */
 971	old_devtb_phys = __sme_clr(entry) & PAGE_MASK;
 972
 973	if (old_devtb_phys >= 0x100000000ULL) {
 974		pr_err("The address of old device table is above 4G, not trustworthy!\n");
 975		return false;
 976	}
 977	old_devtb = (sme_active() && is_kdump_kernel())
 978		    ? (__force void *)ioremap_encrypted(old_devtb_phys,
 979							dev_table_size)
 980		    : memremap(old_devtb_phys, dev_table_size, MEMREMAP_WB);
 981
 982	if (!old_devtb)
 983		return false;
 984
 985	gfp_flag = GFP_KERNEL | __GFP_ZERO | GFP_DMA32;
 986	old_dev_tbl_cpy = (void *)__get_free_pages(gfp_flag,
 987				get_order(dev_table_size));
 988	if (old_dev_tbl_cpy == NULL) {
 989		pr_err("Failed to allocate memory for copying old device table!\n");
 990		return false;
 991	}
 992
 993	for (devid = 0; devid <= amd_iommu_last_bdf; ++devid) {
 994		old_dev_tbl_cpy[devid] = old_devtb[devid];
 995		dom_id = old_devtb[devid].data[1] & DEV_DOMID_MASK;
 996		dte_v = old_devtb[devid].data[0] & DTE_FLAG_V;
 997
 998		if (dte_v && dom_id) {
 999			old_dev_tbl_cpy[devid].data[0] = old_devtb[devid].data[0];
1000			old_dev_tbl_cpy[devid].data[1] = old_devtb[devid].data[1];
1001			__set_bit(dom_id, amd_iommu_pd_alloc_bitmap);
1002			/* If gcr3 table existed, mask it out */
1003			if (old_devtb[devid].data[0] & DTE_FLAG_GV) {
1004				tmp = DTE_GCR3_VAL_B(~0ULL) << DTE_GCR3_SHIFT_B;
1005				tmp |= DTE_GCR3_VAL_C(~0ULL) << DTE_GCR3_SHIFT_C;
1006				old_dev_tbl_cpy[devid].data[1] &= ~tmp;
1007				tmp = DTE_GCR3_VAL_A(~0ULL) << DTE_GCR3_SHIFT_A;
1008				tmp |= DTE_FLAG_GV;
1009				old_dev_tbl_cpy[devid].data[0] &= ~tmp;
1010			}
1011		}
1012
1013		irq_v = old_devtb[devid].data[2] & DTE_IRQ_REMAP_ENABLE;
1014		int_ctl = old_devtb[devid].data[2] & DTE_IRQ_REMAP_INTCTL_MASK;
1015		int_tab_len = old_devtb[devid].data[2] & DTE_INTTABLEN_MASK;
1016		if (irq_v && (int_ctl || int_tab_len)) {
1017			if ((int_ctl != DTE_IRQ_REMAP_INTCTL) ||
1018			    (int_tab_len != DTE_INTTABLEN)) {
1019				pr_err("Wrong old irq remapping flag: %#x\n", devid);
1020				return false;
1021			}
1022
1023		        old_dev_tbl_cpy[devid].data[2] = old_devtb[devid].data[2];
1024		}
1025	}
1026	memunmap(old_devtb);
1027
1028	return true;
1029}
1030
1031void amd_iommu_apply_erratum_63(u16 devid)
1032{
1033	int sysmgt;
1034
1035	sysmgt = get_dev_entry_bit(devid, DEV_ENTRY_SYSMGT1) |
1036		 (get_dev_entry_bit(devid, DEV_ENTRY_SYSMGT2) << 1);
1037
1038	if (sysmgt == 0x01)
1039		set_dev_entry_bit(devid, DEV_ENTRY_IW);
1040}
1041
1042/* Writes the specific IOMMU for a device into the rlookup table */
1043static void __init set_iommu_for_device(struct amd_iommu *iommu, u16 devid)
1044{
1045	amd_iommu_rlookup_table[devid] = iommu;
1046}
1047
1048/*
1049 * This function takes the device specific flags read from the ACPI
1050 * table and sets up the device table entry with that information
1051 */
1052static void __init set_dev_entry_from_acpi(struct amd_iommu *iommu,
1053					   u16 devid, u32 flags, u32 ext_flags)
1054{
1055	if (flags & ACPI_DEVFLAG_INITPASS)
1056		set_dev_entry_bit(devid, DEV_ENTRY_INIT_PASS);
1057	if (flags & ACPI_DEVFLAG_EXTINT)
1058		set_dev_entry_bit(devid, DEV_ENTRY_EINT_PASS);
1059	if (flags & ACPI_DEVFLAG_NMI)
1060		set_dev_entry_bit(devid, DEV_ENTRY_NMI_PASS);
1061	if (flags & ACPI_DEVFLAG_SYSMGT1)
1062		set_dev_entry_bit(devid, DEV_ENTRY_SYSMGT1);
1063	if (flags & ACPI_DEVFLAG_SYSMGT2)
1064		set_dev_entry_bit(devid, DEV_ENTRY_SYSMGT2);
1065	if (flags & ACPI_DEVFLAG_LINT0)
1066		set_dev_entry_bit(devid, DEV_ENTRY_LINT0_PASS);
1067	if (flags & ACPI_DEVFLAG_LINT1)
1068		set_dev_entry_bit(devid, DEV_ENTRY_LINT1_PASS);
1069
1070	amd_iommu_apply_erratum_63(devid);
1071
1072	set_iommu_for_device(iommu, devid);
1073}
1074
1075int __init add_special_device(u8 type, u8 id, u16 *devid, bool cmd_line)
1076{
1077	struct devid_map *entry;
1078	struct list_head *list;
1079
1080	if (type == IVHD_SPECIAL_IOAPIC)
1081		list = &ioapic_map;
1082	else if (type == IVHD_SPECIAL_HPET)
1083		list = &hpet_map;
1084	else
1085		return -EINVAL;
1086
1087	list_for_each_entry(entry, list, list) {
1088		if (!(entry->id == id && entry->cmd_line))
1089			continue;
1090
1091		pr_info("Command-line override present for %s id %d - ignoring\n",
1092			type == IVHD_SPECIAL_IOAPIC ? "IOAPIC" : "HPET", id);
1093
1094		*devid = entry->devid;
1095
1096		return 0;
1097	}
1098
1099	entry = kzalloc(sizeof(*entry), GFP_KERNEL);
1100	if (!entry)
1101		return -ENOMEM;
1102
1103	entry->id	= id;
1104	entry->devid	= *devid;
1105	entry->cmd_line	= cmd_line;
1106
1107	list_add_tail(&entry->list, list);
1108
1109	return 0;
1110}
1111
1112static int __init add_acpi_hid_device(u8 *hid, u8 *uid, u16 *devid,
1113				      bool cmd_line)
1114{
1115	struct acpihid_map_entry *entry;
1116	struct list_head *list = &acpihid_map;
1117
1118	list_for_each_entry(entry, list, list) {
1119		if (strcmp(entry->hid, hid) ||
1120		    (*uid && *entry->uid && strcmp(entry->uid, uid)) ||
1121		    !entry->cmd_line)
1122			continue;
1123
1124		pr_info("Command-line override for hid:%s uid:%s\n",
1125			hid, uid);
1126		*devid = entry->devid;
1127		return 0;
1128	}
1129
1130	entry = kzalloc(sizeof(*entry), GFP_KERNEL);
1131	if (!entry)
1132		return -ENOMEM;
1133
1134	memcpy(entry->uid, uid, strlen(uid));
1135	memcpy(entry->hid, hid, strlen(hid));
1136	entry->devid = *devid;
1137	entry->cmd_line	= cmd_line;
1138	entry->root_devid = (entry->devid & (~0x7));
1139
1140	pr_info("%s, add hid:%s, uid:%s, rdevid:%d\n",
1141		entry->cmd_line ? "cmd" : "ivrs",
1142		entry->hid, entry->uid, entry->root_devid);
1143
1144	list_add_tail(&entry->list, list);
1145	return 0;
1146}
1147
1148static int __init add_early_maps(void)
1149{
1150	int i, ret;
1151
1152	for (i = 0; i < early_ioapic_map_size; ++i) {
1153		ret = add_special_device(IVHD_SPECIAL_IOAPIC,
1154					 early_ioapic_map[i].id,
1155					 &early_ioapic_map[i].devid,
1156					 early_ioapic_map[i].cmd_line);
1157		if (ret)
1158			return ret;
1159	}
1160
1161	for (i = 0; i < early_hpet_map_size; ++i) {
1162		ret = add_special_device(IVHD_SPECIAL_HPET,
1163					 early_hpet_map[i].id,
1164					 &early_hpet_map[i].devid,
1165					 early_hpet_map[i].cmd_line);
1166		if (ret)
1167			return ret;
1168	}
1169
1170	for (i = 0; i < early_acpihid_map_size; ++i) {
1171		ret = add_acpi_hid_device(early_acpihid_map[i].hid,
1172					  early_acpihid_map[i].uid,
1173					  &early_acpihid_map[i].devid,
1174					  early_acpihid_map[i].cmd_line);
1175		if (ret)
1176			return ret;
1177	}
1178
1179	return 0;
1180}
1181
1182/*
1183 * Takes a pointer to an AMD IOMMU entry in the ACPI table and
1184 * initializes the hardware and our data structures with it.
1185 */
1186static int __init init_iommu_from_acpi(struct amd_iommu *iommu,
1187					struct ivhd_header *h)
1188{
1189	u8 *p = (u8 *)h;
1190	u8 *end = p, flags = 0;
1191	u16 devid = 0, devid_start = 0, devid_to = 0;
1192	u32 dev_i, ext_flags = 0;
1193	bool alias = false;
1194	struct ivhd_entry *e;
1195	u32 ivhd_size;
1196	int ret;
1197
1198
1199	ret = add_early_maps();
1200	if (ret)
1201		return ret;
1202
1203	amd_iommu_apply_ivrs_quirks();
1204
1205	/*
1206	 * First save the recommended feature enable bits from ACPI
1207	 */
1208	iommu->acpi_flags = h->flags;
1209
1210	/*
1211	 * Done. Now parse the device entries
1212	 */
1213	ivhd_size = get_ivhd_header_size(h);
1214	if (!ivhd_size) {
1215		pr_err("Unsupported IVHD type %#x\n", h->type);
1216		return -EINVAL;
1217	}
1218
1219	p += ivhd_size;
1220
1221	end += h->length;
1222
1223
1224	while (p < end) {
1225		e = (struct ivhd_entry *)p;
1226		switch (e->type) {
1227		case IVHD_DEV_ALL:
1228
1229			DUMP_printk("  DEV_ALL\t\t\tflags: %02x\n", e->flags);
1230
1231			for (dev_i = 0; dev_i <= amd_iommu_last_bdf; ++dev_i)
1232				set_dev_entry_from_acpi(iommu, dev_i, e->flags, 0);
1233			break;
1234		case IVHD_DEV_SELECT:
1235
1236			DUMP_printk("  DEV_SELECT\t\t\t devid: %02x:%02x.%x "
1237				    "flags: %02x\n",
1238				    PCI_BUS_NUM(e->devid),
1239				    PCI_SLOT(e->devid),
1240				    PCI_FUNC(e->devid),
1241				    e->flags);
1242
1243			devid = e->devid;
1244			set_dev_entry_from_acpi(iommu, devid, e->flags, 0);
1245			break;
1246		case IVHD_DEV_SELECT_RANGE_START:
1247
1248			DUMP_printk("  DEV_SELECT_RANGE_START\t "
1249				    "devid: %02x:%02x.%x flags: %02x\n",
1250				    PCI_BUS_NUM(e->devid),
1251				    PCI_SLOT(e->devid),
1252				    PCI_FUNC(e->devid),
1253				    e->flags);
1254
1255			devid_start = e->devid;
1256			flags = e->flags;
1257			ext_flags = 0;
1258			alias = false;
1259			break;
1260		case IVHD_DEV_ALIAS:
1261
1262			DUMP_printk("  DEV_ALIAS\t\t\t devid: %02x:%02x.%x "
1263				    "flags: %02x devid_to: %02x:%02x.%x\n",
1264				    PCI_BUS_NUM(e->devid),
1265				    PCI_SLOT(e->devid),
1266				    PCI_FUNC(e->devid),
1267				    e->flags,
1268				    PCI_BUS_NUM(e->ext >> 8),
1269				    PCI_SLOT(e->ext >> 8),
1270				    PCI_FUNC(e->ext >> 8));
1271
1272			devid = e->devid;
1273			devid_to = e->ext >> 8;
1274			set_dev_entry_from_acpi(iommu, devid   , e->flags, 0);
1275			set_dev_entry_from_acpi(iommu, devid_to, e->flags, 0);
1276			amd_iommu_alias_table[devid] = devid_to;
1277			break;
1278		case IVHD_DEV_ALIAS_RANGE:
1279
1280			DUMP_printk("  DEV_ALIAS_RANGE\t\t "
1281				    "devid: %02x:%02x.%x flags: %02x "
1282				    "devid_to: %02x:%02x.%x\n",
1283				    PCI_BUS_NUM(e->devid),
1284				    PCI_SLOT(e->devid),
1285				    PCI_FUNC(e->devid),
1286				    e->flags,
1287				    PCI_BUS_NUM(e->ext >> 8),
1288				    PCI_SLOT(e->ext >> 8),
1289				    PCI_FUNC(e->ext >> 8));
1290
1291			devid_start = e->devid;
1292			flags = e->flags;
1293			devid_to = e->ext >> 8;
1294			ext_flags = 0;
1295			alias = true;
1296			break;
1297		case IVHD_DEV_EXT_SELECT:
1298
1299			DUMP_printk("  DEV_EXT_SELECT\t\t devid: %02x:%02x.%x "
1300				    "flags: %02x ext: %08x\n",
1301				    PCI_BUS_NUM(e->devid),
1302				    PCI_SLOT(e->devid),
1303				    PCI_FUNC(e->devid),
1304				    e->flags, e->ext);
1305
1306			devid = e->devid;
1307			set_dev_entry_from_acpi(iommu, devid, e->flags,
1308						e->ext);
1309			break;
1310		case IVHD_DEV_EXT_SELECT_RANGE:
1311
1312			DUMP_printk("  DEV_EXT_SELECT_RANGE\t devid: "
1313				    "%02x:%02x.%x flags: %02x ext: %08x\n",
1314				    PCI_BUS_NUM(e->devid),
1315				    PCI_SLOT(e->devid),
1316				    PCI_FUNC(e->devid),
1317				    e->flags, e->ext);
1318
1319			devid_start = e->devid;
1320			flags = e->flags;
1321			ext_flags = e->ext;
1322			alias = false;
1323			break;
1324		case IVHD_DEV_RANGE_END:
1325
1326			DUMP_printk("  DEV_RANGE_END\t\t devid: %02x:%02x.%x\n",
1327				    PCI_BUS_NUM(e->devid),
1328				    PCI_SLOT(e->devid),
1329				    PCI_FUNC(e->devid));
1330
1331			devid = e->devid;
1332			for (dev_i = devid_start; dev_i <= devid; ++dev_i) {
1333				if (alias) {
1334					amd_iommu_alias_table[dev_i] = devid_to;
1335					set_dev_entry_from_acpi(iommu,
1336						devid_to, flags, ext_flags);
1337				}
1338				set_dev_entry_from_acpi(iommu, dev_i,
1339							flags, ext_flags);
1340			}
1341			break;
1342		case IVHD_DEV_SPECIAL: {
1343			u8 handle, type;
1344			const char *var;
1345			u16 devid;
1346			int ret;
1347
1348			handle = e->ext & 0xff;
1349			devid  = (e->ext >>  8) & 0xffff;
1350			type   = (e->ext >> 24) & 0xff;
1351
1352			if (type == IVHD_SPECIAL_IOAPIC)
1353				var = "IOAPIC";
1354			else if (type == IVHD_SPECIAL_HPET)
1355				var = "HPET";
1356			else
1357				var = "UNKNOWN";
1358
1359			DUMP_printk("  DEV_SPECIAL(%s[%d])\t\tdevid: %02x:%02x.%x\n",
1360				    var, (int)handle,
1361				    PCI_BUS_NUM(devid),
1362				    PCI_SLOT(devid),
1363				    PCI_FUNC(devid));
1364
1365			ret = add_special_device(type, handle, &devid, false);
1366			if (ret)
1367				return ret;
1368
1369			/*
1370			 * add_special_device might update the devid in case a
1371			 * command-line override is present. So call
1372			 * set_dev_entry_from_acpi after add_special_device.
1373			 */
1374			set_dev_entry_from_acpi(iommu, devid, e->flags, 0);
1375
1376			break;
1377		}
1378		case IVHD_DEV_ACPI_HID: {
1379			u16 devid;
1380			u8 hid[ACPIHID_HID_LEN];
1381			u8 uid[ACPIHID_UID_LEN];
1382			int ret;
1383
1384			if (h->type != 0x40) {
1385				pr_err(FW_BUG "Invalid IVHD device type %#x\n",
1386				       e->type);
1387				break;
1388			}
1389
1390			memcpy(hid, (u8 *)(&e->ext), ACPIHID_HID_LEN - 1);
1391			hid[ACPIHID_HID_LEN - 1] = '\0';
1392
1393			if (!(*hid)) {
1394				pr_err(FW_BUG "Invalid HID.\n");
1395				break;
1396			}
1397
1398			uid[0] = '\0';
1399			switch (e->uidf) {
1400			case UID_NOT_PRESENT:
1401
1402				if (e->uidl != 0)
1403					pr_warn(FW_BUG "Invalid UID length.\n");
1404
1405				break;
1406			case UID_IS_INTEGER:
1407
1408				sprintf(uid, "%d", e->uid);
1409
1410				break;
1411			case UID_IS_CHARACTER:
1412
1413				memcpy(uid, &e->uid, e->uidl);
1414				uid[e->uidl] = '\0';
1415
1416				break;
1417			default:
1418				break;
1419			}
1420
1421			devid = e->devid;
1422			DUMP_printk("  DEV_ACPI_HID(%s[%s])\t\tdevid: %02x:%02x.%x\n",
1423				    hid, uid,
1424				    PCI_BUS_NUM(devid),
1425				    PCI_SLOT(devid),
1426				    PCI_FUNC(devid));
1427
1428			flags = e->flags;
1429
1430			ret = add_acpi_hid_device(hid, uid, &devid, false);
1431			if (ret)
1432				return ret;
1433
1434			/*
1435			 * add_special_device might update the devid in case a
1436			 * command-line override is present. So call
1437			 * set_dev_entry_from_acpi after add_special_device.
1438			 */
1439			set_dev_entry_from_acpi(iommu, devid, e->flags, 0);
1440
1441			break;
1442		}
1443		default:
1444			break;
1445		}
1446
1447		p += ivhd_entry_length(p);
1448	}
1449
1450	return 0;
1451}
1452
1453static void __init free_iommu_one(struct amd_iommu *iommu)
1454{
1455	free_cwwb_sem(iommu);
1456	free_command_buffer(iommu);
1457	free_event_buffer(iommu);
1458	free_ppr_log(iommu);
1459	free_ga_log(iommu);
1460	iommu_unmap_mmio_space(iommu);
1461}
1462
1463static void __init free_iommu_all(void)
1464{
1465	struct amd_iommu *iommu, *next;
1466
1467	for_each_iommu_safe(iommu, next) {
1468		list_del(&iommu->list);
1469		free_iommu_one(iommu);
1470		kfree(iommu);
1471	}
1472}
1473
1474/*
1475 * Family15h Model 10h-1fh erratum 746 (IOMMU Logging May Stall Translations)
1476 * Workaround:
1477 *     BIOS should disable L2B micellaneous clock gating by setting
1478 *     L2_L2B_CK_GATE_CONTROL[CKGateL2BMiscDisable](D0F2xF4_x90[2]) = 1b
1479 */
1480static void amd_iommu_erratum_746_workaround(struct amd_iommu *iommu)
1481{
1482	u32 value;
1483
1484	if ((boot_cpu_data.x86 != 0x15) ||
1485	    (boot_cpu_data.x86_model < 0x10) ||
1486	    (boot_cpu_data.x86_model > 0x1f))
1487		return;
1488
1489	pci_write_config_dword(iommu->dev, 0xf0, 0x90);
1490	pci_read_config_dword(iommu->dev, 0xf4, &value);
1491
1492	if (value & BIT(2))
1493		return;
1494
1495	/* Select NB indirect register 0x90 and enable writing */
1496	pci_write_config_dword(iommu->dev, 0xf0, 0x90 | (1 << 8));
1497
1498	pci_write_config_dword(iommu->dev, 0xf4, value | 0x4);
1499	pci_info(iommu->dev, "Applying erratum 746 workaround\n");
1500
1501	/* Clear the enable writing bit */
1502	pci_write_config_dword(iommu->dev, 0xf0, 0x90);
1503}
1504
1505/*
1506 * Family15h Model 30h-3fh (IOMMU Mishandles ATS Write Permission)
1507 * Workaround:
1508 *     BIOS should enable ATS write permission check by setting
1509 *     L2_DEBUG_3[AtsIgnoreIWDis](D0F2xF4_x47[0]) = 1b
1510 */
1511static void amd_iommu_ats_write_check_workaround(struct amd_iommu *iommu)
1512{
1513	u32 value;
1514
1515	if ((boot_cpu_data.x86 != 0x15) ||
1516	    (boot_cpu_data.x86_model < 0x30) ||
1517	    (boot_cpu_data.x86_model > 0x3f))
1518		return;
1519
1520	/* Test L2_DEBUG_3[AtsIgnoreIWDis] == 1 */
1521	value = iommu_read_l2(iommu, 0x47);
1522
1523	if (value & BIT(0))
1524		return;
1525
1526	/* Set L2_DEBUG_3[AtsIgnoreIWDis] = 1 */
1527	iommu_write_l2(iommu, 0x47, value | BIT(0));
1528
1529	pci_info(iommu->dev, "Applying ATS write check workaround\n");
1530}
1531
1532/*
1533 * This function clues the initialization function for one IOMMU
1534 * together and also allocates the command buffer and programs the
1535 * hardware. It does NOT enable the IOMMU. This is done afterwards.
1536 */
1537static int __init init_iommu_one(struct amd_iommu *iommu, struct ivhd_header *h)
1538{
1539	int ret;
1540
1541	raw_spin_lock_init(&iommu->lock);
1542	iommu->cmd_sem_val = 0;
1543
1544	/* Add IOMMU to internal data structures */
1545	list_add_tail(&iommu->list, &amd_iommu_list);
1546	iommu->index = amd_iommus_present++;
1547
1548	if (unlikely(iommu->index >= MAX_IOMMUS)) {
1549		WARN(1, "System has more IOMMUs than supported by this driver\n");
1550		return -ENOSYS;
1551	}
1552
1553	/* Index is fine - add IOMMU to the array */
1554	amd_iommus[iommu->index] = iommu;
1555
1556	/*
1557	 * Copy data from ACPI table entry to the iommu struct
1558	 */
1559	iommu->devid   = h->devid;
1560	iommu->cap_ptr = h->cap_ptr;
1561	iommu->pci_seg = h->pci_seg;
1562	iommu->mmio_phys = h->mmio_phys;
1563
1564	switch (h->type) {
1565	case 0x10:
1566		/* Check if IVHD EFR contains proper max banks/counters */
1567		if ((h->efr_attr != 0) &&
1568		    ((h->efr_attr & (0xF << 13)) != 0) &&
1569		    ((h->efr_attr & (0x3F << 17)) != 0))
1570			iommu->mmio_phys_end = MMIO_REG_END_OFFSET;
1571		else
1572			iommu->mmio_phys_end = MMIO_CNTR_CONF_OFFSET;
1573
1574		/*
1575		 * Note: GA (128-bit IRTE) mode requires cmpxchg16b supports.
1576		 * GAM also requires GA mode. Therefore, we need to
1577		 * check cmpxchg16b support before enabling it.
1578		 */
1579		if (!boot_cpu_has(X86_FEATURE_CX16) ||
1580		    ((h->efr_attr & (0x1 << IOMMU_FEAT_GASUP_SHIFT)) == 0))
1581			amd_iommu_guest_ir = AMD_IOMMU_GUEST_IR_LEGACY;
1582		break;
1583	case 0x11:
1584	case 0x40:
1585		if (h->efr_reg & (1 << 9))
1586			iommu->mmio_phys_end = MMIO_REG_END_OFFSET;
1587		else
1588			iommu->mmio_phys_end = MMIO_CNTR_CONF_OFFSET;
1589
1590		/*
1591		 * Note: GA (128-bit IRTE) mode requires cmpxchg16b supports.
1592		 * XT, GAM also requires GA mode. Therefore, we need to
1593		 * check cmpxchg16b support before enabling them.
1594		 */
1595		if (!boot_cpu_has(X86_FEATURE_CX16) ||
1596		    ((h->efr_reg & (0x1 << IOMMU_EFR_GASUP_SHIFT)) == 0)) {
1597			amd_iommu_guest_ir = AMD_IOMMU_GUEST_IR_LEGACY;
1598			break;
1599		}
1600
1601		if (h->efr_reg & BIT(IOMMU_EFR_XTSUP_SHIFT))
 
 
 
 
 
 
 
1602			amd_iommu_xt_mode = IRQ_REMAP_X2APIC_MODE;
1603
1604		early_iommu_features_init(iommu, h);
1605
1606		break;
1607	default:
1608		return -EINVAL;
1609	}
1610
1611	iommu->mmio_base = iommu_map_mmio_space(iommu->mmio_phys,
1612						iommu->mmio_phys_end);
1613	if (!iommu->mmio_base)
1614		return -ENOMEM;
1615
1616	if (alloc_cwwb_sem(iommu))
1617		return -ENOMEM;
1618
1619	if (alloc_command_buffer(iommu))
1620		return -ENOMEM;
1621
1622	if (alloc_event_buffer(iommu))
1623		return -ENOMEM;
1624
1625	iommu->int_enabled = false;
1626
1627	init_translation_status(iommu);
1628	if (translation_pre_enabled(iommu) && !is_kdump_kernel()) {
1629		iommu_disable(iommu);
1630		clear_translation_pre_enabled(iommu);
1631		pr_warn("Translation was enabled for IOMMU:%d but we are not in kdump mode\n",
1632			iommu->index);
1633	}
1634	if (amd_iommu_pre_enabled)
1635		amd_iommu_pre_enabled = translation_pre_enabled(iommu);
1636
1637	ret = init_iommu_from_acpi(iommu, h);
1638	if (ret)
1639		return ret;
1640
1641	if (amd_iommu_irq_remap) {
1642		ret = amd_iommu_create_irq_domain(iommu);
1643		if (ret)
1644			return ret;
1645	}
1646
1647	/*
1648	 * Make sure IOMMU is not considered to translate itself. The IVRS
1649	 * table tells us so, but this is a lie!
1650	 */
1651	amd_iommu_rlookup_table[iommu->devid] = NULL;
1652
1653	return 0;
1654}
1655
1656/**
1657 * get_highest_supported_ivhd_type - Look up the appropriate IVHD type
1658 * @ivrs: Pointer to the IVRS header
1659 *
1660 * This function search through all IVDB of the maximum supported IVHD
1661 */
1662static u8 get_highest_supported_ivhd_type(struct acpi_table_header *ivrs)
1663{
1664	u8 *base = (u8 *)ivrs;
1665	struct ivhd_header *ivhd = (struct ivhd_header *)
1666					(base + IVRS_HEADER_LENGTH);
1667	u8 last_type = ivhd->type;
1668	u16 devid = ivhd->devid;
1669
1670	while (((u8 *)ivhd - base < ivrs->length) &&
1671	       (ivhd->type <= ACPI_IVHD_TYPE_MAX_SUPPORTED)) {
1672		u8 *p = (u8 *) ivhd;
1673
1674		if (ivhd->devid == devid)
1675			last_type = ivhd->type;
1676		ivhd = (struct ivhd_header *)(p + ivhd->length);
1677	}
1678
1679	return last_type;
1680}
1681
1682/*
1683 * Iterates over all IOMMU entries in the ACPI table, allocates the
1684 * IOMMU structure and initializes it with init_iommu_one()
1685 */
1686static int __init init_iommu_all(struct acpi_table_header *table)
1687{
1688	u8 *p = (u8 *)table, *end = (u8 *)table;
1689	struct ivhd_header *h;
1690	struct amd_iommu *iommu;
1691	int ret;
1692
1693	end += table->length;
1694	p += IVRS_HEADER_LENGTH;
1695
1696	while (p < end) {
1697		h = (struct ivhd_header *)p;
1698		if (*p == amd_iommu_target_ivhd_type) {
1699
1700			DUMP_printk("device: %02x:%02x.%01x cap: %04x "
1701				    "seg: %d flags: %01x info %04x\n",
1702				    PCI_BUS_NUM(h->devid), PCI_SLOT(h->devid),
1703				    PCI_FUNC(h->devid), h->cap_ptr,
1704				    h->pci_seg, h->flags, h->info);
1705			DUMP_printk("       mmio-addr: %016llx\n",
1706				    h->mmio_phys);
1707
1708			iommu = kzalloc(sizeof(struct amd_iommu), GFP_KERNEL);
1709			if (iommu == NULL)
1710				return -ENOMEM;
1711
1712			ret = init_iommu_one(iommu, h);
1713			if (ret)
1714				return ret;
1715		}
1716		p += h->length;
1717
1718	}
1719	WARN_ON(p != end);
1720
1721	return 0;
1722}
1723
 
 
 
1724static void init_iommu_perf_ctr(struct amd_iommu *iommu)
1725{
1726	u64 val;
1727	struct pci_dev *pdev = iommu->dev;
 
1728
1729	if (!iommu_feature(iommu, FEATURE_PC))
1730		return;
1731
1732	amd_iommu_pc_present = true;
1733
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1734	pci_info(pdev, "IOMMU performance counters supported\n");
1735
1736	val = readl(iommu->mmio_base + MMIO_CNTR_CONF_OFFSET);
1737	iommu->max_banks = (u8) ((val >> 12) & 0x3f);
1738	iommu->max_counters = (u8) ((val >> 7) & 0xf);
1739
1740	return;
 
 
 
 
 
1741}
1742
1743static ssize_t amd_iommu_show_cap(struct device *dev,
1744				  struct device_attribute *attr,
1745				  char *buf)
1746{
1747	struct amd_iommu *iommu = dev_to_amd_iommu(dev);
1748	return sprintf(buf, "%x\n", iommu->cap);
1749}
1750static DEVICE_ATTR(cap, S_IRUGO, amd_iommu_show_cap, NULL);
1751
1752static ssize_t amd_iommu_show_features(struct device *dev,
1753				       struct device_attribute *attr,
1754				       char *buf)
1755{
1756	struct amd_iommu *iommu = dev_to_amd_iommu(dev);
1757	return sprintf(buf, "%llx\n", iommu->features);
1758}
1759static DEVICE_ATTR(features, S_IRUGO, amd_iommu_show_features, NULL);
1760
1761static struct attribute *amd_iommu_attrs[] = {
1762	&dev_attr_cap.attr,
1763	&dev_attr_features.attr,
1764	NULL,
1765};
1766
1767static struct attribute_group amd_iommu_group = {
1768	.name = "amd-iommu",
1769	.attrs = amd_iommu_attrs,
1770};
1771
1772static const struct attribute_group *amd_iommu_groups[] = {
1773	&amd_iommu_group,
1774	NULL,
1775};
1776
1777/*
1778 * Note: IVHD 0x11 and 0x40 also contains exact copy
1779 * of the IOMMU Extended Feature Register [MMIO Offset 0030h].
1780 * Default to EFR in IVHD since it is available sooner (i.e. before PCI init).
1781 */
1782static void __init late_iommu_features_init(struct amd_iommu *iommu)
1783{
1784	u64 features;
1785
1786	if (!(iommu->cap & (1 << IOMMU_CAP_EFR)))
1787		return;
1788
1789	/* read extended feature bits */
1790	features = readq(iommu->mmio_base + MMIO_EXT_FEATURES);
1791
1792	if (!iommu->features) {
1793		iommu->features = features;
1794		return;
1795	}
1796
1797	/*
1798	 * Sanity check and warn if EFR values from
1799	 * IVHD and MMIO conflict.
1800	 */
1801	if (features != iommu->features)
1802		pr_warn(FW_WARN "EFR mismatch. Use IVHD EFR (%#llx : %#llx).\n",
1803			features, iommu->features);
1804}
1805
1806static int __init iommu_init_pci(struct amd_iommu *iommu)
1807{
1808	int cap_ptr = iommu->cap_ptr;
1809	int ret;
1810
1811	iommu->dev = pci_get_domain_bus_and_slot(0, PCI_BUS_NUM(iommu->devid),
1812						 iommu->devid & 0xff);
1813	if (!iommu->dev)
1814		return -ENODEV;
1815
1816	/* Prevent binding other PCI device drivers to IOMMU devices */
1817	iommu->dev->match_driver = false;
1818
1819	pci_read_config_dword(iommu->dev, cap_ptr + MMIO_CAP_HDR_OFFSET,
1820			      &iommu->cap);
1821
1822	if (!(iommu->cap & (1 << IOMMU_CAP_IOTLB)))
1823		amd_iommu_iotlb_sup = false;
1824
1825	late_iommu_features_init(iommu);
 
1826
1827	if (iommu_feature(iommu, FEATURE_GT)) {
1828		int glxval;
1829		u32 max_pasid;
1830		u64 pasmax;
1831
1832		pasmax = iommu->features & FEATURE_PASID_MASK;
1833		pasmax >>= FEATURE_PASID_SHIFT;
1834		max_pasid  = (1 << (pasmax + 1)) - 1;
1835
1836		amd_iommu_max_pasid = min(amd_iommu_max_pasid, max_pasid);
1837
1838		BUG_ON(amd_iommu_max_pasid & ~PASID_MASK);
1839
1840		glxval   = iommu->features & FEATURE_GLXVAL_MASK;
1841		glxval >>= FEATURE_GLXVAL_SHIFT;
1842
1843		if (amd_iommu_max_glx_val == -1)
1844			amd_iommu_max_glx_val = glxval;
1845		else
1846			amd_iommu_max_glx_val = min(amd_iommu_max_glx_val, glxval);
1847	}
1848
1849	if (iommu_feature(iommu, FEATURE_GT) &&
1850	    iommu_feature(iommu, FEATURE_PPR)) {
1851		iommu->is_iommu_v2   = true;
1852		amd_iommu_v2_present = true;
1853	}
1854
1855	if (iommu_feature(iommu, FEATURE_PPR) && alloc_ppr_log(iommu))
1856		return -ENOMEM;
1857
1858	ret = iommu_init_ga(iommu);
1859	if (ret)
1860		return ret;
1861
1862	if (iommu->cap & (1UL << IOMMU_CAP_NPCACHE))
1863		amd_iommu_np_cache = true;
1864
1865	init_iommu_perf_ctr(iommu);
1866
1867	if (is_rd890_iommu(iommu->dev)) {
1868		int i, j;
1869
1870		iommu->root_pdev =
1871			pci_get_domain_bus_and_slot(0, iommu->dev->bus->number,
1872						    PCI_DEVFN(0, 0));
1873
1874		/*
1875		 * Some rd890 systems may not be fully reconfigured by the
1876		 * BIOS, so it's necessary for us to store this information so
1877		 * it can be reprogrammed on resume
1878		 */
1879		pci_read_config_dword(iommu->dev, iommu->cap_ptr + 4,
1880				&iommu->stored_addr_lo);
1881		pci_read_config_dword(iommu->dev, iommu->cap_ptr + 8,
1882				&iommu->stored_addr_hi);
1883
1884		/* Low bit locks writes to configuration space */
1885		iommu->stored_addr_lo &= ~1;
1886
1887		for (i = 0; i < 6; i++)
1888			for (j = 0; j < 0x12; j++)
1889				iommu->stored_l1[i][j] = iommu_read_l1(iommu, i, j);
1890
1891		for (i = 0; i < 0x83; i++)
1892			iommu->stored_l2[i] = iommu_read_l2(iommu, i);
1893	}
1894
1895	amd_iommu_erratum_746_workaround(iommu);
1896	amd_iommu_ats_write_check_workaround(iommu);
1897
1898	iommu_device_sysfs_add(&iommu->iommu, &iommu->dev->dev,
1899			       amd_iommu_groups, "ivhd%d", iommu->index);
1900	iommu_device_register(&iommu->iommu, &amd_iommu_ops, NULL);
 
1901
1902	return pci_enable_device(iommu->dev);
1903}
1904
1905static void print_iommu_info(void)
1906{
1907	static const char * const feat_str[] = {
1908		"PreF", "PPR", "X2APIC", "NX", "GT", "[5]",
1909		"IA", "GA", "HE", "PC"
1910	};
1911	struct amd_iommu *iommu;
1912
1913	for_each_iommu(iommu) {
1914		struct pci_dev *pdev = iommu->dev;
1915		int i;
1916
1917		pci_info(pdev, "Found IOMMU cap 0x%x\n", iommu->cap_ptr);
1918
1919		if (iommu->cap & (1 << IOMMU_CAP_EFR)) {
1920			pr_info("Extended features (%#llx):", iommu->features);
1921
1922			for (i = 0; i < ARRAY_SIZE(feat_str); ++i) {
1923				if (iommu_feature(iommu, (1ULL << i)))
1924					pr_cont(" %s", feat_str[i]);
1925			}
1926
1927			if (iommu->features & FEATURE_GAM_VAPIC)
1928				pr_cont(" GA_vAPIC");
1929
1930			pr_cont("\n");
1931		}
1932	}
1933	if (irq_remapping_enabled) {
1934		pr_info("Interrupt remapping enabled\n");
1935		if (AMD_IOMMU_GUEST_IR_VAPIC(amd_iommu_guest_ir))
1936			pr_info("Virtual APIC enabled\n");
1937		if (amd_iommu_xt_mode == IRQ_REMAP_X2APIC_MODE)
1938			pr_info("X2APIC enabled\n");
1939	}
1940}
1941
1942static int __init amd_iommu_init_pci(void)
1943{
1944	struct amd_iommu *iommu;
1945	int ret;
1946
1947	for_each_iommu(iommu) {
1948		ret = iommu_init_pci(iommu);
1949		if (ret)
1950			break;
1951
1952		/* Need to setup range after PCI init */
1953		iommu_set_cwwb_range(iommu);
1954	}
1955
1956	/*
1957	 * Order is important here to make sure any unity map requirements are
1958	 * fulfilled. The unity mappings are created and written to the device
1959	 * table during the amd_iommu_init_api() call.
1960	 *
1961	 * After that we call init_device_table_dma() to make sure any
1962	 * uninitialized DTE will block DMA, and in the end we flush the caches
1963	 * of all IOMMUs to make sure the changes to the device table are
1964	 * active.
1965	 */
1966	ret = amd_iommu_init_api();
1967
1968	init_device_table_dma();
1969
1970	for_each_iommu(iommu)
1971		iommu_flush_all_caches(iommu);
1972
1973	if (!ret)
1974		print_iommu_info();
1975
1976	return ret;
1977}
1978
1979/****************************************************************************
1980 *
1981 * The following functions initialize the MSI interrupts for all IOMMUs
1982 * in the system. It's a bit challenging because there could be multiple
1983 * IOMMUs per PCI BDF but we can call pci_enable_msi(x) only once per
1984 * pci_dev.
1985 *
1986 ****************************************************************************/
1987
1988static int iommu_setup_msi(struct amd_iommu *iommu)
1989{
1990	int r;
1991
1992	r = pci_enable_msi(iommu->dev);
1993	if (r)
1994		return r;
1995
1996	r = request_threaded_irq(iommu->dev->irq,
1997				 amd_iommu_int_handler,
1998				 amd_iommu_int_thread,
1999				 0, "AMD-Vi",
2000				 iommu);
2001
2002	if (r) {
2003		pci_disable_msi(iommu->dev);
2004		return r;
2005	}
2006
 
 
2007	return 0;
2008}
2009
2010union intcapxt {
2011	u64	capxt;
2012	struct {
2013		u64	reserved_0		:  2,
2014			dest_mode_logical	:  1,
2015			reserved_1		:  5,
2016			destid_0_23		: 24,
2017			vector			:  8,
2018			reserved_2		: 16,
2019			destid_24_31		:  8;
2020	};
2021} __attribute__ ((packed));
2022
2023/*
2024 * There isn't really any need to mask/unmask at the irqchip level because
2025 * the 64-bit INTCAPXT registers can be updated atomically without tearing
2026 * when the affinity is being updated.
2027 */
2028static void intcapxt_unmask_irq(struct irq_data *data)
2029{
2030}
2031
2032static void intcapxt_mask_irq(struct irq_data *data)
2033{
2034}
2035
2036static struct irq_chip intcapxt_controller;
2037
2038static int intcapxt_irqdomain_activate(struct irq_domain *domain,
2039				       struct irq_data *irqd, bool reserve)
2040{
2041	struct amd_iommu *iommu = irqd->chip_data;
2042	struct irq_cfg *cfg = irqd_cfg(irqd);
2043	union intcapxt xt;
2044
2045	xt.capxt = 0ULL;
2046	xt.dest_mode_logical = apic->dest_mode_logical;
2047	xt.vector = cfg->vector;
2048	xt.destid_0_23 = cfg->dest_apicid & GENMASK(23, 0);
2049	xt.destid_24_31 = cfg->dest_apicid >> 24;
2050
2051	/**
2052	 * Current IOMMU implemtation uses the same IRQ for all
2053	 * 3 IOMMU interrupts.
2054	 */
2055	writeq(xt.capxt, iommu->mmio_base + MMIO_INTCAPXT_EVT_OFFSET);
2056	writeq(xt.capxt, iommu->mmio_base + MMIO_INTCAPXT_PPR_OFFSET);
2057	writeq(xt.capxt, iommu->mmio_base + MMIO_INTCAPXT_GALOG_OFFSET);
2058	return 0;
2059}
2060
2061static void intcapxt_irqdomain_deactivate(struct irq_domain *domain,
2062					  struct irq_data *irqd)
2063{
2064	intcapxt_mask_irq(irqd);
2065}
2066
2067
2068static int intcapxt_irqdomain_alloc(struct irq_domain *domain, unsigned int virq,
2069				    unsigned int nr_irqs, void *arg)
2070{
2071	struct irq_alloc_info *info = arg;
2072	int i, ret;
2073
2074	if (!info || info->type != X86_IRQ_ALLOC_TYPE_AMDVI)
2075		return -EINVAL;
2076
2077	ret = irq_domain_alloc_irqs_parent(domain, virq, nr_irqs, arg);
2078	if (ret < 0)
2079		return ret;
2080
2081	for (i = virq; i < virq + nr_irqs; i++) {
2082		struct irq_data *irqd = irq_domain_get_irq_data(domain, i);
2083
2084		irqd->chip = &intcapxt_controller;
2085		irqd->chip_data = info->data;
2086		__irq_set_handler(i, handle_edge_irq, 0, "edge");
2087	}
2088
2089	return ret;
2090}
2091
2092static void intcapxt_irqdomain_free(struct irq_domain *domain, unsigned int virq,
2093				    unsigned int nr_irqs)
2094{
2095	irq_domain_free_irqs_top(domain, virq, nr_irqs);
2096}
2097
2098static int intcapxt_set_affinity(struct irq_data *irqd,
2099				 const struct cpumask *mask, bool force)
2100{
2101	struct irq_data *parent = irqd->parent_data;
2102	int ret;
 
2103
2104	ret = parent->chip->irq_set_affinity(parent, mask, force);
2105	if (ret < 0 || ret == IRQ_SET_MASK_OK_DONE)
2106		return ret;
 
 
 
2107
2108	return intcapxt_irqdomain_activate(irqd->domain, irqd, false);
2109}
2110
2111static struct irq_chip intcapxt_controller = {
2112	.name			= "IOMMU-MSI",
2113	.irq_unmask		= intcapxt_unmask_irq,
2114	.irq_mask		= intcapxt_mask_irq,
2115	.irq_ack		= irq_chip_ack_parent,
2116	.irq_retrigger		= irq_chip_retrigger_hierarchy,
2117	.irq_set_affinity       = intcapxt_set_affinity,
2118	.flags			= IRQCHIP_SKIP_SET_WAKE,
2119};
2120
2121static const struct irq_domain_ops intcapxt_domain_ops = {
2122	.alloc			= intcapxt_irqdomain_alloc,
2123	.free			= intcapxt_irqdomain_free,
2124	.activate		= intcapxt_irqdomain_activate,
2125	.deactivate		= intcapxt_irqdomain_deactivate,
2126};
2127
2128
2129static struct irq_domain *iommu_irqdomain;
2130
2131static struct irq_domain *iommu_get_irqdomain(void)
2132{
2133	struct fwnode_handle *fn;
2134
2135	/* No need for locking here (yet) as the init is single-threaded */
2136	if (iommu_irqdomain)
2137		return iommu_irqdomain;
2138
2139	fn = irq_domain_alloc_named_fwnode("AMD-Vi-MSI");
2140	if (!fn)
2141		return NULL;
2142
2143	iommu_irqdomain = irq_domain_create_hierarchy(x86_vector_domain, 0, 0,
2144						      fn, &intcapxt_domain_ops,
2145						      NULL);
2146	if (!iommu_irqdomain)
2147		irq_domain_free_fwnode(fn);
2148
2149	return iommu_irqdomain;
2150}
2151
2152static int iommu_setup_intcapxt(struct amd_iommu *iommu)
2153{
2154	struct irq_domain *domain;
2155	struct irq_alloc_info info;
2156	int irq, ret;
2157
2158	domain = iommu_get_irqdomain();
2159	if (!domain)
2160		return -ENXIO;
2161
2162	init_irq_alloc_info(&info, NULL);
2163	info.type = X86_IRQ_ALLOC_TYPE_AMDVI;
2164	info.data = iommu;
2165
2166	irq = irq_domain_alloc_irqs(domain, 1, NUMA_NO_NODE, &info);
2167	if (irq < 0) {
2168		irq_domain_remove(domain);
2169		return irq;
2170	}
2171
2172	ret = request_threaded_irq(irq, amd_iommu_int_handler,
2173				   amd_iommu_int_thread, 0, "AMD-Vi", iommu);
2174	if (ret) {
2175		irq_domain_free_irqs(irq, 1);
2176		irq_domain_remove(domain);
2177		return ret;
2178	}
2179
 
2180	iommu_feature_enable(iommu, CONTROL_INTCAPXT_EN);
2181	return 0;
2182}
2183
2184static int iommu_init_irq(struct amd_iommu *iommu)
2185{
2186	int ret;
2187
2188	if (iommu->int_enabled)
2189		goto enable_faults;
2190
2191	if (amd_iommu_xt_mode == IRQ_REMAP_X2APIC_MODE)
2192		ret = iommu_setup_intcapxt(iommu);
2193	else if (iommu->dev->msi_cap)
2194		ret = iommu_setup_msi(iommu);
2195	else
2196		ret = -ENODEV;
2197
2198	if (ret)
2199		return ret;
2200
2201	iommu->int_enabled = true;
2202enable_faults:
 
 
 
 
2203	iommu_feature_enable(iommu, CONTROL_EVT_INT_EN);
2204
2205	if (iommu->ppr_log != NULL)
2206		iommu_feature_enable(iommu, CONTROL_PPRINT_EN);
2207
2208	iommu_ga_log_enable(iommu);
2209
2210	return 0;
2211}
2212
2213/****************************************************************************
2214 *
2215 * The next functions belong to the third pass of parsing the ACPI
2216 * table. In this last pass the memory mapping requirements are
2217 * gathered (like exclusion and unity mapping ranges).
2218 *
2219 ****************************************************************************/
2220
2221static void __init free_unity_maps(void)
2222{
2223	struct unity_map_entry *entry, *next;
2224
2225	list_for_each_entry_safe(entry, next, &amd_iommu_unity_map, list) {
2226		list_del(&entry->list);
2227		kfree(entry);
2228	}
2229}
2230
2231/* called for unity map ACPI definition */
2232static int __init init_unity_map_range(struct ivmd_header *m)
2233{
2234	struct unity_map_entry *e = NULL;
2235	char *s;
2236
2237	e = kzalloc(sizeof(*e), GFP_KERNEL);
2238	if (e == NULL)
2239		return -ENOMEM;
2240
2241	switch (m->type) {
2242	default:
2243		kfree(e);
2244		return 0;
2245	case ACPI_IVMD_TYPE:
2246		s = "IVMD_TYPEi\t\t\t";
2247		e->devid_start = e->devid_end = m->devid;
2248		break;
2249	case ACPI_IVMD_TYPE_ALL:
2250		s = "IVMD_TYPE_ALL\t\t";
2251		e->devid_start = 0;
2252		e->devid_end = amd_iommu_last_bdf;
2253		break;
2254	case ACPI_IVMD_TYPE_RANGE:
2255		s = "IVMD_TYPE_RANGE\t\t";
2256		e->devid_start = m->devid;
2257		e->devid_end = m->aux;
2258		break;
2259	}
2260	e->address_start = PAGE_ALIGN(m->range_start);
2261	e->address_end = e->address_start + PAGE_ALIGN(m->range_length);
2262	e->prot = m->flags >> 1;
2263
2264	/*
2265	 * Treat per-device exclusion ranges as r/w unity-mapped regions
2266	 * since some buggy BIOSes might lead to the overwritten exclusion
2267	 * range (exclusion_start and exclusion_length members). This
2268	 * happens when there are multiple exclusion ranges (IVMD entries)
2269	 * defined in ACPI table.
2270	 */
2271	if (m->flags & IVMD_FLAG_EXCL_RANGE)
2272		e->prot = (IVMD_FLAG_IW | IVMD_FLAG_IR) >> 1;
2273
2274	DUMP_printk("%s devid_start: %02x:%02x.%x devid_end: %02x:%02x.%x"
2275		    " range_start: %016llx range_end: %016llx flags: %x\n", s,
2276		    PCI_BUS_NUM(e->devid_start), PCI_SLOT(e->devid_start),
2277		    PCI_FUNC(e->devid_start), PCI_BUS_NUM(e->devid_end),
2278		    PCI_SLOT(e->devid_end), PCI_FUNC(e->devid_end),
2279		    e->address_start, e->address_end, m->flags);
2280
2281	list_add_tail(&e->list, &amd_iommu_unity_map);
2282
2283	return 0;
2284}
2285
2286/* iterates over all memory definitions we find in the ACPI table */
2287static int __init init_memory_definitions(struct acpi_table_header *table)
2288{
2289	u8 *p = (u8 *)table, *end = (u8 *)table;
2290	struct ivmd_header *m;
2291
2292	end += table->length;
2293	p += IVRS_HEADER_LENGTH;
2294
2295	while (p < end) {
2296		m = (struct ivmd_header *)p;
2297		if (m->flags & (IVMD_FLAG_UNITY_MAP | IVMD_FLAG_EXCL_RANGE))
2298			init_unity_map_range(m);
2299
2300		p += m->length;
2301	}
2302
2303	return 0;
2304}
2305
2306/*
2307 * Init the device table to not allow DMA access for devices
2308 */
2309static void init_device_table_dma(void)
2310{
2311	u32 devid;
2312
2313	for (devid = 0; devid <= amd_iommu_last_bdf; ++devid) {
2314		set_dev_entry_bit(devid, DEV_ENTRY_VALID);
2315		set_dev_entry_bit(devid, DEV_ENTRY_TRANSLATION);
2316	}
2317}
2318
2319static void __init uninit_device_table_dma(void)
2320{
2321	u32 devid;
2322
2323	for (devid = 0; devid <= amd_iommu_last_bdf; ++devid) {
2324		amd_iommu_dev_table[devid].data[0] = 0ULL;
2325		amd_iommu_dev_table[devid].data[1] = 0ULL;
2326	}
2327}
2328
2329static void init_device_table(void)
2330{
2331	u32 devid;
2332
2333	if (!amd_iommu_irq_remap)
2334		return;
2335
2336	for (devid = 0; devid <= amd_iommu_last_bdf; ++devid)
2337		set_dev_entry_bit(devid, DEV_ENTRY_IRQ_TBL_EN);
2338}
2339
2340static void iommu_init_flags(struct amd_iommu *iommu)
2341{
2342	iommu->acpi_flags & IVHD_FLAG_HT_TUN_EN_MASK ?
2343		iommu_feature_enable(iommu, CONTROL_HT_TUN_EN) :
2344		iommu_feature_disable(iommu, CONTROL_HT_TUN_EN);
2345
2346	iommu->acpi_flags & IVHD_FLAG_PASSPW_EN_MASK ?
2347		iommu_feature_enable(iommu, CONTROL_PASSPW_EN) :
2348		iommu_feature_disable(iommu, CONTROL_PASSPW_EN);
2349
2350	iommu->acpi_flags & IVHD_FLAG_RESPASSPW_EN_MASK ?
2351		iommu_feature_enable(iommu, CONTROL_RESPASSPW_EN) :
2352		iommu_feature_disable(iommu, CONTROL_RESPASSPW_EN);
2353
2354	iommu->acpi_flags & IVHD_FLAG_ISOC_EN_MASK ?
2355		iommu_feature_enable(iommu, CONTROL_ISOC_EN) :
2356		iommu_feature_disable(iommu, CONTROL_ISOC_EN);
2357
2358	/*
2359	 * make IOMMU memory accesses cache coherent
2360	 */
2361	iommu_feature_enable(iommu, CONTROL_COHERENT_EN);
2362
2363	/* Set IOTLB invalidation timeout to 1s */
2364	iommu_set_inv_tlb_timeout(iommu, CTRL_INV_TO_1S);
2365}
2366
2367static void iommu_apply_resume_quirks(struct amd_iommu *iommu)
2368{
2369	int i, j;
2370	u32 ioc_feature_control;
2371	struct pci_dev *pdev = iommu->root_pdev;
2372
2373	/* RD890 BIOSes may not have completely reconfigured the iommu */
2374	if (!is_rd890_iommu(iommu->dev) || !pdev)
2375		return;
2376
2377	/*
2378	 * First, we need to ensure that the iommu is enabled. This is
2379	 * controlled by a register in the northbridge
2380	 */
2381
2382	/* Select Northbridge indirect register 0x75 and enable writing */
2383	pci_write_config_dword(pdev, 0x60, 0x75 | (1 << 7));
2384	pci_read_config_dword(pdev, 0x64, &ioc_feature_control);
2385
2386	/* Enable the iommu */
2387	if (!(ioc_feature_control & 0x1))
2388		pci_write_config_dword(pdev, 0x64, ioc_feature_control | 1);
2389
2390	/* Restore the iommu BAR */
2391	pci_write_config_dword(iommu->dev, iommu->cap_ptr + 4,
2392			       iommu->stored_addr_lo);
2393	pci_write_config_dword(iommu->dev, iommu->cap_ptr + 8,
2394			       iommu->stored_addr_hi);
2395
2396	/* Restore the l1 indirect regs for each of the 6 l1s */
2397	for (i = 0; i < 6; i++)
2398		for (j = 0; j < 0x12; j++)
2399			iommu_write_l1(iommu, i, j, iommu->stored_l1[i][j]);
2400
2401	/* Restore the l2 indirect regs */
2402	for (i = 0; i < 0x83; i++)
2403		iommu_write_l2(iommu, i, iommu->stored_l2[i]);
2404
2405	/* Lock PCI setup registers */
2406	pci_write_config_dword(iommu->dev, iommu->cap_ptr + 4,
2407			       iommu->stored_addr_lo | 1);
2408}
2409
2410static void iommu_enable_ga(struct amd_iommu *iommu)
2411{
2412#ifdef CONFIG_IRQ_REMAP
2413	switch (amd_iommu_guest_ir) {
2414	case AMD_IOMMU_GUEST_IR_VAPIC:
2415		iommu_feature_enable(iommu, CONTROL_GAM_EN);
2416		fallthrough;
2417	case AMD_IOMMU_GUEST_IR_LEGACY_GA:
2418		iommu_feature_enable(iommu, CONTROL_GA_EN);
2419		iommu->irte_ops = &irte_128_ops;
2420		break;
2421	default:
2422		iommu->irte_ops = &irte_32_ops;
2423		break;
2424	}
2425#endif
2426}
2427
2428static void early_enable_iommu(struct amd_iommu *iommu)
2429{
2430	iommu_disable(iommu);
2431	iommu_init_flags(iommu);
2432	iommu_set_device_table(iommu);
2433	iommu_enable_command_buffer(iommu);
2434	iommu_enable_event_buffer(iommu);
2435	iommu_set_exclusion_range(iommu);
2436	iommu_enable_ga(iommu);
2437	iommu_enable_xt(iommu);
2438	iommu_enable(iommu);
2439	iommu_flush_all_caches(iommu);
2440}
2441
2442/*
2443 * This function finally enables all IOMMUs found in the system after
2444 * they have been initialized.
2445 *
2446 * Or if in kdump kernel and IOMMUs are all pre-enabled, try to copy
2447 * the old content of device table entries. Not this case or copy failed,
2448 * just continue as normal kernel does.
2449 */
2450static void early_enable_iommus(void)
2451{
2452	struct amd_iommu *iommu;
2453
2454
2455	if (!copy_device_table()) {
2456		/*
2457		 * If come here because of failure in copying device table from old
2458		 * kernel with all IOMMUs enabled, print error message and try to
2459		 * free allocated old_dev_tbl_cpy.
2460		 */
2461		if (amd_iommu_pre_enabled)
2462			pr_err("Failed to copy DEV table from previous kernel.\n");
2463		if (old_dev_tbl_cpy != NULL)
2464			free_pages((unsigned long)old_dev_tbl_cpy,
2465					get_order(dev_table_size));
2466
2467		for_each_iommu(iommu) {
2468			clear_translation_pre_enabled(iommu);
2469			early_enable_iommu(iommu);
2470		}
2471	} else {
2472		pr_info("Copied DEV table from previous kernel.\n");
2473		free_pages((unsigned long)amd_iommu_dev_table,
2474				get_order(dev_table_size));
2475		amd_iommu_dev_table = old_dev_tbl_cpy;
2476		for_each_iommu(iommu) {
2477			iommu_disable_command_buffer(iommu);
2478			iommu_disable_event_buffer(iommu);
2479			iommu_enable_command_buffer(iommu);
2480			iommu_enable_event_buffer(iommu);
2481			iommu_enable_ga(iommu);
2482			iommu_enable_xt(iommu);
2483			iommu_set_device_table(iommu);
2484			iommu_flush_all_caches(iommu);
2485		}
2486	}
2487
2488#ifdef CONFIG_IRQ_REMAP
2489	/*
2490	 * Note: We have already checked GASup from IVRS table.
2491	 *       Now, we need to make sure that GAMSup is set.
2492	 */
2493	if (AMD_IOMMU_GUEST_IR_VAPIC(amd_iommu_guest_ir) &&
2494	    !check_feature_on_all_iommus(FEATURE_GAM_VAPIC))
2495		amd_iommu_guest_ir = AMD_IOMMU_GUEST_IR_LEGACY_GA;
2496
2497	if (AMD_IOMMU_GUEST_IR_VAPIC(amd_iommu_guest_ir))
2498		amd_iommu_irq_ops.capability |= (1 << IRQ_POSTING_CAP);
2499#endif
2500}
2501
2502static void enable_iommus_v2(void)
2503{
2504	struct amd_iommu *iommu;
2505
2506	for_each_iommu(iommu) {
2507		iommu_enable_ppr_log(iommu);
2508		iommu_enable_gt(iommu);
2509	}
2510}
2511
2512static void enable_iommus(void)
2513{
2514	early_enable_iommus();
2515
2516	enable_iommus_v2();
2517}
2518
2519static void disable_iommus(void)
2520{
2521	struct amd_iommu *iommu;
2522
2523	for_each_iommu(iommu)
2524		iommu_disable(iommu);
2525
2526#ifdef CONFIG_IRQ_REMAP
2527	if (AMD_IOMMU_GUEST_IR_VAPIC(amd_iommu_guest_ir))
2528		amd_iommu_irq_ops.capability &= ~(1 << IRQ_POSTING_CAP);
2529#endif
2530}
2531
2532/*
2533 * Suspend/Resume support
2534 * disable suspend until real resume implemented
2535 */
2536
2537static void amd_iommu_resume(void)
2538{
2539	struct amd_iommu *iommu;
2540
2541	for_each_iommu(iommu)
2542		iommu_apply_resume_quirks(iommu);
2543
2544	/* re-load the hardware */
2545	enable_iommus();
2546
2547	amd_iommu_enable_interrupts();
2548}
2549
2550static int amd_iommu_suspend(void)
2551{
2552	/* disable IOMMUs to go out of the way for BIOS */
2553	disable_iommus();
2554
2555	return 0;
2556}
2557
2558static struct syscore_ops amd_iommu_syscore_ops = {
2559	.suspend = amd_iommu_suspend,
2560	.resume = amd_iommu_resume,
2561};
2562
2563static void __init free_iommu_resources(void)
2564{
2565	kmemleak_free(irq_lookup_table);
2566	free_pages((unsigned long)irq_lookup_table,
2567		   get_order(rlookup_table_size));
2568	irq_lookup_table = NULL;
2569
2570	kmem_cache_destroy(amd_iommu_irq_cache);
2571	amd_iommu_irq_cache = NULL;
2572
2573	free_pages((unsigned long)amd_iommu_rlookup_table,
2574		   get_order(rlookup_table_size));
2575	amd_iommu_rlookup_table = NULL;
2576
2577	free_pages((unsigned long)amd_iommu_alias_table,
2578		   get_order(alias_table_size));
2579	amd_iommu_alias_table = NULL;
2580
2581	free_pages((unsigned long)amd_iommu_dev_table,
2582		   get_order(dev_table_size));
2583	amd_iommu_dev_table = NULL;
2584
2585	free_iommu_all();
2586}
2587
2588/* SB IOAPIC is always on this device in AMD systems */
2589#define IOAPIC_SB_DEVID		((0x00 << 8) | PCI_DEVFN(0x14, 0))
2590
2591static bool __init check_ioapic_information(void)
2592{
2593	const char *fw_bug = FW_BUG;
2594	bool ret, has_sb_ioapic;
2595	int idx;
2596
2597	has_sb_ioapic = false;
2598	ret           = false;
2599
2600	/*
2601	 * If we have map overrides on the kernel command line the
2602	 * messages in this function might not describe firmware bugs
2603	 * anymore - so be careful
2604	 */
2605	if (cmdline_maps)
2606		fw_bug = "";
2607
2608	for (idx = 0; idx < nr_ioapics; idx++) {
2609		int devid, id = mpc_ioapic_id(idx);
2610
2611		devid = get_ioapic_devid(id);
2612		if (devid < 0) {
2613			pr_err("%s: IOAPIC[%d] not in IVRS table\n",
2614				fw_bug, id);
2615			ret = false;
2616		} else if (devid == IOAPIC_SB_DEVID) {
2617			has_sb_ioapic = true;
2618			ret           = true;
2619		}
2620	}
2621
2622	if (!has_sb_ioapic) {
2623		/*
2624		 * We expect the SB IOAPIC to be listed in the IVRS
2625		 * table. The system timer is connected to the SB IOAPIC
2626		 * and if we don't have it in the list the system will
2627		 * panic at boot time.  This situation usually happens
2628		 * when the BIOS is buggy and provides us the wrong
2629		 * device id for the IOAPIC in the system.
2630		 */
2631		pr_err("%s: No southbridge IOAPIC found\n", fw_bug);
2632	}
2633
2634	if (!ret)
2635		pr_err("Disabling interrupt remapping\n");
2636
2637	return ret;
2638}
2639
2640static void __init free_dma_resources(void)
2641{
2642	free_pages((unsigned long)amd_iommu_pd_alloc_bitmap,
2643		   get_order(MAX_DOMAIN_ID/8));
2644	amd_iommu_pd_alloc_bitmap = NULL;
2645
2646	free_unity_maps();
2647}
2648
2649static void __init ivinfo_init(void *ivrs)
2650{
2651	amd_iommu_ivinfo = *((u32 *)(ivrs + IOMMU_IVINFO_OFFSET));
2652}
2653
2654/*
2655 * This is the hardware init function for AMD IOMMU in the system.
2656 * This function is called either from amd_iommu_init or from the interrupt
2657 * remapping setup code.
2658 *
2659 * This function basically parses the ACPI table for AMD IOMMU (IVRS)
2660 * four times:
2661 *
2662 *	1 pass) Discover the most comprehensive IVHD type to use.
2663 *
2664 *	2 pass) Find the highest PCI device id the driver has to handle.
2665 *		Upon this information the size of the data structures is
2666 *		determined that needs to be allocated.
2667 *
2668 *	3 pass) Initialize the data structures just allocated with the
2669 *		information in the ACPI table about available AMD IOMMUs
2670 *		in the system. It also maps the PCI devices in the
2671 *		system to specific IOMMUs
2672 *
2673 *	4 pass) After the basic data structures are allocated and
2674 *		initialized we update them with information about memory
2675 *		remapping requirements parsed out of the ACPI table in
2676 *		this last pass.
2677 *
2678 * After everything is set up the IOMMUs are enabled and the necessary
2679 * hotplug and suspend notifiers are registered.
2680 */
2681static int __init early_amd_iommu_init(void)
2682{
2683	struct acpi_table_header *ivrs_base;
2684	int i, remap_cache_sz, ret;
2685	acpi_status status;
 
 
2686
2687	if (!amd_iommu_detected)
2688		return -ENODEV;
2689
2690	status = acpi_get_table("IVRS", 0, &ivrs_base);
2691	if (status == AE_NOT_FOUND)
2692		return -ENODEV;
2693	else if (ACPI_FAILURE(status)) {
2694		const char *err = acpi_format_exception(status);
2695		pr_err("IVRS table error: %s\n", err);
2696		return -EINVAL;
2697	}
2698
2699	/*
2700	 * Validate checksum here so we don't need to do it when
2701	 * we actually parse the table
2702	 */
2703	ret = check_ivrs_checksum(ivrs_base);
2704	if (ret)
2705		goto out;
2706
2707	ivinfo_init(ivrs_base);
2708
2709	amd_iommu_target_ivhd_type = get_highest_supported_ivhd_type(ivrs_base);
2710	DUMP_printk("Using IVHD type %#x\n", amd_iommu_target_ivhd_type);
2711
2712	/*
2713	 * First parse ACPI tables to find the largest Bus/Dev/Func
2714	 * we need to handle. Upon this information the shared data
2715	 * structures for the IOMMUs in the system will be allocated
2716	 */
2717	ret = find_last_devid_acpi(ivrs_base);
2718	if (ret)
2719		goto out;
2720
2721	dev_table_size     = tbl_size(DEV_TABLE_ENTRY_SIZE);
2722	alias_table_size   = tbl_size(ALIAS_TABLE_ENTRY_SIZE);
2723	rlookup_table_size = tbl_size(RLOOKUP_TABLE_ENTRY_SIZE);
2724
2725	/* Device table - directly used by all IOMMUs */
2726	ret = -ENOMEM;
2727	amd_iommu_dev_table = (void *)__get_free_pages(
2728				      GFP_KERNEL | __GFP_ZERO | GFP_DMA32,
2729				      get_order(dev_table_size));
2730	if (amd_iommu_dev_table == NULL)
2731		goto out;
2732
2733	/*
2734	 * Alias table - map PCI Bus/Dev/Func to Bus/Dev/Func the
2735	 * IOMMU see for that device
2736	 */
2737	amd_iommu_alias_table = (void *)__get_free_pages(GFP_KERNEL,
2738			get_order(alias_table_size));
2739	if (amd_iommu_alias_table == NULL)
2740		goto out;
2741
2742	/* IOMMU rlookup table - find the IOMMU for a specific device */
2743	amd_iommu_rlookup_table = (void *)__get_free_pages(
2744			GFP_KERNEL | __GFP_ZERO,
2745			get_order(rlookup_table_size));
2746	if (amd_iommu_rlookup_table == NULL)
2747		goto out;
2748
2749	amd_iommu_pd_alloc_bitmap = (void *)__get_free_pages(
2750					    GFP_KERNEL | __GFP_ZERO,
2751					    get_order(MAX_DOMAIN_ID/8));
2752	if (amd_iommu_pd_alloc_bitmap == NULL)
2753		goto out;
2754
2755	/*
2756	 * let all alias entries point to itself
2757	 */
2758	for (i = 0; i <= amd_iommu_last_bdf; ++i)
2759		amd_iommu_alias_table[i] = i;
2760
2761	/*
2762	 * never allocate domain 0 because its used as the non-allocated and
2763	 * error value placeholder
2764	 */
2765	__set_bit(0, amd_iommu_pd_alloc_bitmap);
2766
2767	/*
2768	 * now the data structures are allocated and basically initialized
2769	 * start the real acpi table scan
2770	 */
2771	ret = init_iommu_all(ivrs_base);
2772	if (ret)
2773		goto out;
2774
 
 
 
 
 
 
 
 
 
 
2775	/* Disable any previously enabled IOMMUs */
2776	if (!is_kdump_kernel() || amd_iommu_disabled)
2777		disable_iommus();
2778
2779	if (amd_iommu_irq_remap)
2780		amd_iommu_irq_remap = check_ioapic_information();
2781
2782	if (amd_iommu_irq_remap) {
2783		/*
2784		 * Interrupt remapping enabled, create kmem_cache for the
2785		 * remapping tables.
2786		 */
2787		ret = -ENOMEM;
2788		if (!AMD_IOMMU_GUEST_IR_GA(amd_iommu_guest_ir))
2789			remap_cache_sz = MAX_IRQS_PER_TABLE * sizeof(u32);
2790		else
2791			remap_cache_sz = MAX_IRQS_PER_TABLE * (sizeof(u64) * 2);
2792		amd_iommu_irq_cache = kmem_cache_create("irq_remap_cache",
2793							remap_cache_sz,
2794							DTE_INTTAB_ALIGNMENT,
2795							0, NULL);
2796		if (!amd_iommu_irq_cache)
2797			goto out;
2798
2799		irq_lookup_table = (void *)__get_free_pages(
2800				GFP_KERNEL | __GFP_ZERO,
2801				get_order(rlookup_table_size));
2802		kmemleak_alloc(irq_lookup_table, rlookup_table_size,
2803			       1, GFP_KERNEL);
2804		if (!irq_lookup_table)
2805			goto out;
2806	}
2807
2808	ret = init_memory_definitions(ivrs_base);
2809	if (ret)
2810		goto out;
2811
2812	/* init the device table */
2813	init_device_table();
2814
2815out:
2816	/* Don't leak any ACPI memory */
2817	acpi_put_table(ivrs_base);
 
2818
2819	return ret;
2820}
2821
2822static int amd_iommu_enable_interrupts(void)
2823{
2824	struct amd_iommu *iommu;
2825	int ret = 0;
2826
2827	for_each_iommu(iommu) {
2828		ret = iommu_init_irq(iommu);
2829		if (ret)
2830			goto out;
2831	}
2832
2833out:
2834	return ret;
2835}
2836
2837static bool __init detect_ivrs(void)
2838{
2839	struct acpi_table_header *ivrs_base;
2840	acpi_status status;
2841	int i;
2842
2843	status = acpi_get_table("IVRS", 0, &ivrs_base);
2844	if (status == AE_NOT_FOUND)
2845		return false;
2846	else if (ACPI_FAILURE(status)) {
2847		const char *err = acpi_format_exception(status);
2848		pr_err("IVRS table error: %s\n", err);
2849		return false;
2850	}
2851
2852	acpi_put_table(ivrs_base);
2853
2854	if (amd_iommu_force_enable)
2855		goto out;
2856
2857	/* Don't use IOMMU if there is Stoney Ridge graphics */
2858	for (i = 0; i < 32; i++) {
2859		u32 pci_id;
2860
2861		pci_id = read_pci_config(0, i, 0, 0);
2862		if ((pci_id & 0xffff) == 0x1002 && (pci_id >> 16) == 0x98e4) {
2863			pr_info("Disable IOMMU on Stoney Ridge\n");
2864			return false;
2865		}
2866	}
2867
2868out:
2869	/* Make sure ACS will be enabled during PCI probe */
2870	pci_request_acs();
2871
2872	return true;
2873}
2874
2875/****************************************************************************
2876 *
2877 * AMD IOMMU Initialization State Machine
2878 *
2879 ****************************************************************************/
2880
2881static int __init state_next(void)
2882{
2883	int ret = 0;
2884
2885	switch (init_state) {
2886	case IOMMU_START_STATE:
2887		if (!detect_ivrs()) {
2888			init_state	= IOMMU_NOT_FOUND;
2889			ret		= -ENODEV;
2890		} else {
2891			init_state	= IOMMU_IVRS_DETECTED;
2892		}
2893		break;
2894	case IOMMU_IVRS_DETECTED:
2895		if (amd_iommu_disabled) {
 
 
 
2896			init_state = IOMMU_CMDLINE_DISABLED;
2897			ret = -EINVAL;
2898		} else {
2899			ret = early_amd_iommu_init();
2900			init_state = ret ? IOMMU_INIT_ERROR : IOMMU_ACPI_FINISHED;
2901		}
2902		break;
2903	case IOMMU_ACPI_FINISHED:
2904		early_enable_iommus();
2905		x86_platform.iommu_shutdown = disable_iommus;
2906		init_state = IOMMU_ENABLED;
2907		break;
2908	case IOMMU_ENABLED:
2909		register_syscore_ops(&amd_iommu_syscore_ops);
2910		ret = amd_iommu_init_pci();
2911		init_state = ret ? IOMMU_INIT_ERROR : IOMMU_PCI_INIT;
2912		enable_iommus_v2();
2913		break;
2914	case IOMMU_PCI_INIT:
2915		ret = amd_iommu_enable_interrupts();
2916		init_state = ret ? IOMMU_INIT_ERROR : IOMMU_INTERRUPTS_EN;
2917		break;
2918	case IOMMU_INTERRUPTS_EN:
 
 
 
 
2919		init_state = IOMMU_INITIALIZED;
2920		break;
2921	case IOMMU_INITIALIZED:
2922		/* Nothing to do */
2923		break;
2924	case IOMMU_NOT_FOUND:
2925	case IOMMU_INIT_ERROR:
2926	case IOMMU_CMDLINE_DISABLED:
2927		/* Error states => do nothing */
2928		ret = -EINVAL;
2929		break;
2930	default:
2931		/* Unknown state */
2932		BUG();
2933	}
2934
2935	if (ret) {
2936		free_dma_resources();
2937		if (!irq_remapping_enabled) {
2938			disable_iommus();
2939			free_iommu_resources();
2940		} else {
2941			struct amd_iommu *iommu;
2942
2943			uninit_device_table_dma();
2944			for_each_iommu(iommu)
2945				iommu_flush_all_caches(iommu);
2946		}
2947	}
2948	return ret;
2949}
2950
2951static int __init iommu_go_to_state(enum iommu_init_state state)
2952{
2953	int ret = -EINVAL;
2954
2955	while (init_state != state) {
2956		if (init_state == IOMMU_NOT_FOUND         ||
2957		    init_state == IOMMU_INIT_ERROR        ||
2958		    init_state == IOMMU_CMDLINE_DISABLED)
2959			break;
2960		ret = state_next();
2961	}
2962
2963	return ret;
2964}
2965
2966#ifdef CONFIG_IRQ_REMAP
2967int __init amd_iommu_prepare(void)
2968{
2969	int ret;
2970
2971	amd_iommu_irq_remap = true;
2972
2973	ret = iommu_go_to_state(IOMMU_ACPI_FINISHED);
2974	if (ret) {
2975		amd_iommu_irq_remap = false;
2976		return ret;
2977	}
2978
2979	return amd_iommu_irq_remap ? 0 : -ENODEV;
2980}
2981
2982int __init amd_iommu_enable(void)
2983{
2984	int ret;
2985
2986	ret = iommu_go_to_state(IOMMU_ENABLED);
2987	if (ret)
2988		return ret;
2989
2990	irq_remapping_enabled = 1;
2991	return amd_iommu_xt_mode;
2992}
2993
2994void amd_iommu_disable(void)
2995{
2996	amd_iommu_suspend();
2997}
2998
2999int amd_iommu_reenable(int mode)
3000{
3001	amd_iommu_resume();
3002
3003	return 0;
3004}
3005
3006int __init amd_iommu_enable_faulting(void)
3007{
3008	/* We enable MSI later when PCI is initialized */
3009	return 0;
3010}
3011#endif
3012
3013/*
3014 * This is the core init function for AMD IOMMU hardware in the system.
3015 * This function is called from the generic x86 DMA layer initialization
3016 * code.
3017 */
3018static int __init amd_iommu_init(void)
3019{
3020	struct amd_iommu *iommu;
3021	int ret;
3022
3023	ret = iommu_go_to_state(IOMMU_INITIALIZED);
3024#ifdef CONFIG_GART_IOMMU
3025	if (ret && list_empty(&amd_iommu_list)) {
3026		/*
3027		 * We failed to initialize the AMD IOMMU - try fallback
3028		 * to GART if possible.
3029		 */
3030		gart_iommu_init();
3031	}
3032#endif
3033
3034	for_each_iommu(iommu)
3035		amd_iommu_debugfs_setup(iommu);
3036
3037	return ret;
3038}
3039
3040static bool amd_iommu_sme_check(void)
3041{
3042	if (!sme_active() || (boot_cpu_data.x86 != 0x17))
3043		return true;
3044
3045	/* For Fam17h, a specific level of support is required */
3046	if (boot_cpu_data.microcode >= 0x08001205)
3047		return true;
3048
3049	if ((boot_cpu_data.microcode >= 0x08001126) &&
3050	    (boot_cpu_data.microcode <= 0x080011ff))
3051		return true;
3052
3053	pr_notice("IOMMU not currently supported when SME is active\n");
3054
3055	return false;
3056}
3057
3058/****************************************************************************
3059 *
3060 * Early detect code. This code runs at IOMMU detection time in the DMA
3061 * layer. It just looks if there is an IVRS ACPI table to detect AMD
3062 * IOMMUs
3063 *
3064 ****************************************************************************/
3065int __init amd_iommu_detect(void)
3066{
3067	int ret;
3068
3069	if (no_iommu || (iommu_detected && !gart_iommu_aperture))
3070		return -ENODEV;
3071
3072	if (!amd_iommu_sme_check())
3073		return -ENODEV;
3074
3075	ret = iommu_go_to_state(IOMMU_IVRS_DETECTED);
3076	if (ret)
3077		return ret;
3078
3079	amd_iommu_detected = true;
3080	iommu_detected = 1;
3081	x86_init.iommu.iommu_init = amd_iommu_init;
3082
3083	return 1;
3084}
3085
3086/****************************************************************************
3087 *
3088 * Parsing functions for the AMD IOMMU specific kernel command line
3089 * options.
3090 *
3091 ****************************************************************************/
3092
3093static int __init parse_amd_iommu_dump(char *str)
3094{
3095	amd_iommu_dump = true;
3096
3097	return 1;
3098}
3099
3100static int __init parse_amd_iommu_intr(char *str)
3101{
3102	for (; *str; ++str) {
3103		if (strncmp(str, "legacy", 6) == 0) {
3104			amd_iommu_guest_ir = AMD_IOMMU_GUEST_IR_LEGACY_GA;
3105			break;
3106		}
3107		if (strncmp(str, "vapic", 5) == 0) {
3108			amd_iommu_guest_ir = AMD_IOMMU_GUEST_IR_VAPIC;
3109			break;
3110		}
3111	}
3112	return 1;
3113}
3114
3115static int __init parse_amd_iommu_options(char *str)
3116{
3117	for (; *str; ++str) {
3118		if (strncmp(str, "fullflush", 9) == 0)
3119			amd_iommu_unmap_flush = true;
3120		if (strncmp(str, "force_enable", 12) == 0)
3121			amd_iommu_force_enable = true;
3122		if (strncmp(str, "off", 3) == 0)
3123			amd_iommu_disabled = true;
3124		if (strncmp(str, "force_isolation", 15) == 0)
3125			amd_iommu_force_isolation = true;
3126	}
3127
3128	return 1;
3129}
3130
3131static int __init parse_ivrs_ioapic(char *str)
3132{
3133	unsigned int bus, dev, fn;
3134	int ret, id, i;
3135	u16 devid;
3136
3137	ret = sscanf(str, "[%d]=%x:%x.%x", &id, &bus, &dev, &fn);
3138
3139	if (ret != 4) {
3140		pr_err("Invalid command line: ivrs_ioapic%s\n", str);
3141		return 1;
3142	}
3143
3144	if (early_ioapic_map_size == EARLY_MAP_SIZE) {
3145		pr_err("Early IOAPIC map overflow - ignoring ivrs_ioapic%s\n",
3146			str);
3147		return 1;
3148	}
3149
3150	devid = ((bus & 0xff) << 8) | ((dev & 0x1f) << 3) | (fn & 0x7);
3151
3152	cmdline_maps			= true;
3153	i				= early_ioapic_map_size++;
3154	early_ioapic_map[i].id		= id;
3155	early_ioapic_map[i].devid	= devid;
3156	early_ioapic_map[i].cmd_line	= true;
3157
3158	return 1;
3159}
3160
3161static int __init parse_ivrs_hpet(char *str)
3162{
3163	unsigned int bus, dev, fn;
3164	int ret, id, i;
3165	u16 devid;
3166
3167	ret = sscanf(str, "[%d]=%x:%x.%x", &id, &bus, &dev, &fn);
3168
3169	if (ret != 4) {
3170		pr_err("Invalid command line: ivrs_hpet%s\n", str);
3171		return 1;
3172	}
3173
3174	if (early_hpet_map_size == EARLY_MAP_SIZE) {
3175		pr_err("Early HPET map overflow - ignoring ivrs_hpet%s\n",
3176			str);
3177		return 1;
3178	}
3179
3180	devid = ((bus & 0xff) << 8) | ((dev & 0x1f) << 3) | (fn & 0x7);
3181
3182	cmdline_maps			= true;
3183	i				= early_hpet_map_size++;
3184	early_hpet_map[i].id		= id;
3185	early_hpet_map[i].devid		= devid;
3186	early_hpet_map[i].cmd_line	= true;
3187
3188	return 1;
3189}
3190
3191static int __init parse_ivrs_acpihid(char *str)
3192{
3193	u32 bus, dev, fn;
3194	char *hid, *uid, *p;
3195	char acpiid[ACPIHID_UID_LEN + ACPIHID_HID_LEN] = {0};
3196	int ret, i;
3197
3198	ret = sscanf(str, "[%x:%x.%x]=%s", &bus, &dev, &fn, acpiid);
3199	if (ret != 4) {
3200		pr_err("Invalid command line: ivrs_acpihid(%s)\n", str);
3201		return 1;
3202	}
3203
3204	p = acpiid;
3205	hid = strsep(&p, ":");
3206	uid = p;
3207
3208	if (!hid || !(*hid) || !uid) {
3209		pr_err("Invalid command line: hid or uid\n");
3210		return 1;
3211	}
3212
3213	i = early_acpihid_map_size++;
3214	memcpy(early_acpihid_map[i].hid, hid, strlen(hid));
3215	memcpy(early_acpihid_map[i].uid, uid, strlen(uid));
3216	early_acpihid_map[i].devid =
3217		((bus & 0xff) << 8) | ((dev & 0x1f) << 3) | (fn & 0x7);
3218	early_acpihid_map[i].cmd_line	= true;
3219
3220	return 1;
3221}
3222
3223__setup("amd_iommu_dump",	parse_amd_iommu_dump);
3224__setup("amd_iommu=",		parse_amd_iommu_options);
3225__setup("amd_iommu_intr=",	parse_amd_iommu_intr);
3226__setup("ivrs_ioapic",		parse_ivrs_ioapic);
3227__setup("ivrs_hpet",		parse_ivrs_hpet);
3228__setup("ivrs_acpihid",		parse_ivrs_acpihid);
3229
3230IOMMU_INIT_FINISH(amd_iommu_detect,
3231		  gart_iommu_hole_init,
3232		  NULL,
3233		  NULL);
3234
3235bool amd_iommu_v2_supported(void)
3236{
3237	return amd_iommu_v2_present;
3238}
3239EXPORT_SYMBOL(amd_iommu_v2_supported);
3240
3241struct amd_iommu *get_amd_iommu(unsigned int idx)
3242{
3243	unsigned int i = 0;
3244	struct amd_iommu *iommu;
3245
3246	for_each_iommu(iommu)
3247		if (i++ == idx)
3248			return iommu;
3249	return NULL;
3250}
 
3251
3252/****************************************************************************
3253 *
3254 * IOMMU EFR Performance Counter support functionality. This code allows
3255 * access to the IOMMU PC functionality.
3256 *
3257 ****************************************************************************/
3258
3259u8 amd_iommu_pc_get_max_banks(unsigned int idx)
3260{
3261	struct amd_iommu *iommu = get_amd_iommu(idx);
3262
3263	if (iommu)
3264		return iommu->max_banks;
3265
3266	return 0;
3267}
3268EXPORT_SYMBOL(amd_iommu_pc_get_max_banks);
3269
3270bool amd_iommu_pc_supported(void)
3271{
3272	return amd_iommu_pc_present;
3273}
3274EXPORT_SYMBOL(amd_iommu_pc_supported);
3275
3276u8 amd_iommu_pc_get_max_counters(unsigned int idx)
3277{
3278	struct amd_iommu *iommu = get_amd_iommu(idx);
3279
3280	if (iommu)
3281		return iommu->max_counters;
3282
3283	return 0;
3284}
3285EXPORT_SYMBOL(amd_iommu_pc_get_max_counters);
3286
3287static int iommu_pc_get_set_reg(struct amd_iommu *iommu, u8 bank, u8 cntr,
3288				u8 fxn, u64 *value, bool is_write)
3289{
3290	u32 offset;
3291	u32 max_offset_lim;
3292
3293	/* Make sure the IOMMU PC resource is available */
3294	if (!amd_iommu_pc_present)
3295		return -ENODEV;
3296
3297	/* Check for valid iommu and pc register indexing */
3298	if (WARN_ON(!iommu || (fxn > 0x28) || (fxn & 7)))
3299		return -ENODEV;
3300
3301	offset = (u32)(((0x40 | bank) << 12) | (cntr << 8) | fxn);
3302
3303	/* Limit the offset to the hw defined mmio region aperture */
3304	max_offset_lim = (u32)(((0x40 | iommu->max_banks) << 12) |
3305				(iommu->max_counters << 8) | 0x28);
3306	if ((offset < MMIO_CNTR_REG_OFFSET) ||
3307	    (offset > max_offset_lim))
3308		return -EINVAL;
3309
3310	if (is_write) {
3311		u64 val = *value & GENMASK_ULL(47, 0);
3312
3313		writel((u32)val, iommu->mmio_base + offset);
3314		writel((val >> 32), iommu->mmio_base + offset + 4);
3315	} else {
3316		*value = readl(iommu->mmio_base + offset + 4);
3317		*value <<= 32;
3318		*value |= readl(iommu->mmio_base + offset);
3319		*value &= GENMASK_ULL(47, 0);
3320	}
3321
3322	return 0;
3323}
3324
3325int amd_iommu_pc_get_reg(struct amd_iommu *iommu, u8 bank, u8 cntr, u8 fxn, u64 *value)
3326{
3327	if (!iommu)
3328		return -EINVAL;
3329
3330	return iommu_pc_get_set_reg(iommu, bank, cntr, fxn, value, false);
3331}
 
3332
3333int amd_iommu_pc_set_reg(struct amd_iommu *iommu, u8 bank, u8 cntr, u8 fxn, u64 *value)
3334{
3335	if (!iommu)
3336		return -EINVAL;
3337
3338	return iommu_pc_get_set_reg(iommu, bank, cntr, fxn, value, true);
3339}