iommu/amd: Align DTE flag definitions
[deliverable/linux.git] / drivers / iommu / amd_iommu_init.c
CommitLineData
f6e2e6b6 1/*
5d0d7156 2 * Copyright (C) 2007-2010 Advanced Micro Devices, Inc.
63ce3ae8 3 * Author: Joerg Roedel <jroedel@suse.de>
f6e2e6b6
JR
4 * Leo Duran <leo.duran@amd.com>
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License version 2 as published
8 * by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 */
19
20#include <linux/pci.h>
21#include <linux/acpi.h>
f6e2e6b6 22#include <linux/list.h>
5a0e3ad6 23#include <linux/slab.h>
f3c6ea1b 24#include <linux/syscore_ops.h>
a80dc3e0
JR
25#include <linux/interrupt.h>
26#include <linux/msi.h>
403f81d8 27#include <linux/amd-iommu.h>
400a28a0 28#include <linux/export.h>
066f2e98 29#include <linux/iommu.h>
f6e2e6b6 30#include <asm/pci-direct.h>
46a7fa27 31#include <asm/iommu.h>
1d9b16d1 32#include <asm/gart.h>
ea1b0d39 33#include <asm/x86_init.h>
22e6daf4 34#include <asm/iommu_table.h>
eb1eb7ae 35#include <asm/io_apic.h>
6b474b82 36#include <asm/irq_remapping.h>
403f81d8
JR
37
38#include "amd_iommu_proto.h"
39#include "amd_iommu_types.h"
05152a04 40#include "irq_remapping.h"
403f81d8 41
f6e2e6b6
JR
42/*
43 * definitions for the ACPI scanning code
44 */
f6e2e6b6 45#define IVRS_HEADER_LENGTH 48
f6e2e6b6
JR
46
47#define ACPI_IVHD_TYPE 0x10
48#define ACPI_IVMD_TYPE_ALL 0x20
49#define ACPI_IVMD_TYPE 0x21
50#define ACPI_IVMD_TYPE_RANGE 0x22
51
52#define IVHD_DEV_ALL 0x01
53#define IVHD_DEV_SELECT 0x02
54#define IVHD_DEV_SELECT_RANGE_START 0x03
55#define IVHD_DEV_RANGE_END 0x04
56#define IVHD_DEV_ALIAS 0x42
57#define IVHD_DEV_ALIAS_RANGE 0x43
58#define IVHD_DEV_EXT_SELECT 0x46
59#define IVHD_DEV_EXT_SELECT_RANGE 0x47
6efed63b
JR
60#define IVHD_DEV_SPECIAL 0x48
61
62#define IVHD_SPECIAL_IOAPIC 1
63#define IVHD_SPECIAL_HPET 2
f6e2e6b6 64
6da7342f
JR
65#define IVHD_FLAG_HT_TUN_EN_MASK 0x01
66#define IVHD_FLAG_PASSPW_EN_MASK 0x02
67#define IVHD_FLAG_RESPASSPW_EN_MASK 0x04
68#define IVHD_FLAG_ISOC_EN_MASK 0x08
f6e2e6b6
JR
69
70#define IVMD_FLAG_EXCL_RANGE 0x08
71#define IVMD_FLAG_UNITY_MAP 0x01
72
73#define ACPI_DEVFLAG_INITPASS 0x01
74#define ACPI_DEVFLAG_EXTINT 0x02
75#define ACPI_DEVFLAG_NMI 0x04
76#define ACPI_DEVFLAG_SYSMGT1 0x10
77#define ACPI_DEVFLAG_SYSMGT2 0x20
78#define ACPI_DEVFLAG_LINT0 0x40
79#define ACPI_DEVFLAG_LINT1 0x80
80#define ACPI_DEVFLAG_ATSDIS 0x10000000
81
b65233a9
JR
82/*
83 * ACPI table definitions
84 *
85 * These data structures are laid over the table to parse the important values
86 * out of it.
87 */
88
89/*
90 * structure describing one IOMMU in the ACPI table. Typically followed by one
91 * or more ivhd_entrys.
92 */
f6e2e6b6
JR
93struct ivhd_header {
94 u8 type;
95 u8 flags;
96 u16 length;
97 u16 devid;
98 u16 cap_ptr;
99 u64 mmio_phys;
100 u16 pci_seg;
101 u16 info;
30861ddc 102 u32 efr;
f6e2e6b6
JR
103} __attribute__((packed));
104
b65233a9
JR
105/*
106 * A device entry describing which devices a specific IOMMU translates and
107 * which requestor ids they use.
108 */
f6e2e6b6
JR
109struct ivhd_entry {
110 u8 type;
111 u16 devid;
112 u8 flags;
113 u32 ext;
114} __attribute__((packed));
115
b65233a9
JR
116/*
117 * An AMD IOMMU memory definition structure. It defines things like exclusion
118 * ranges for devices and regions that should be unity mapped.
119 */
f6e2e6b6
JR
120struct ivmd_header {
121 u8 type;
122 u8 flags;
123 u16 length;
124 u16 devid;
125 u16 aux;
126 u64 resv;
127 u64 range_start;
128 u64 range_length;
129} __attribute__((packed));
130
fefda117 131bool amd_iommu_dump;
05152a04 132bool amd_iommu_irq_remap __read_mostly;
fefda117 133
02f3b3f5 134static bool amd_iommu_detected;
a5235725 135static bool __initdata amd_iommu_disabled;
c1cbebee 136
b65233a9
JR
137u16 amd_iommu_last_bdf; /* largest PCI device id we have
138 to handle */
2e22847f 139LIST_HEAD(amd_iommu_unity_map); /* a list of required unity mappings
b65233a9 140 we find in ACPI */
3775d481 141u32 amd_iommu_unmap_flush; /* if true, flush on every unmap */
928abd25 142
2e22847f 143LIST_HEAD(amd_iommu_list); /* list of all AMD IOMMUs in the
b65233a9 144 system */
928abd25 145
bb52777e
JR
146/* Array to assign indices to IOMMUs*/
147struct amd_iommu *amd_iommus[MAX_IOMMUS];
148int amd_iommus_present;
149
318afd41
JR
150/* IOMMUs have a non-present cache? */
151bool amd_iommu_np_cache __read_mostly;
60f723b4 152bool amd_iommu_iotlb_sup __read_mostly = true;
318afd41 153
a919a018 154u32 amd_iommu_max_pasid __read_mostly = ~0;
62f71abb 155
400a28a0 156bool amd_iommu_v2_present __read_mostly;
4160cd9e 157static bool amd_iommu_pc_present __read_mostly;
400a28a0 158
5abcdba4
JR
159bool amd_iommu_force_isolation __read_mostly;
160
aeb26f55
JR
161/*
162 * List of protection domains - used during resume
163 */
164LIST_HEAD(amd_iommu_pd_list);
165spinlock_t amd_iommu_pd_lock;
166
b65233a9
JR
167/*
168 * Pointer to the device table which is shared by all AMD IOMMUs
169 * it is indexed by the PCI device id or the HT unit id and contains
170 * information about the domain the device belongs to as well as the
171 * page table root pointer.
172 */
928abd25 173struct dev_table_entry *amd_iommu_dev_table;
b65233a9
JR
174
175/*
176 * The alias table is a driver specific data structure which contains the
177 * mappings of the PCI device ids to the actual requestor ids on the IOMMU.
178 * More than one device can share the same requestor id.
179 */
928abd25 180u16 *amd_iommu_alias_table;
b65233a9
JR
181
182/*
183 * The rlookup table is used to find the IOMMU which is responsible
184 * for a specific device. It is also indexed by the PCI device id.
185 */
928abd25 186struct amd_iommu **amd_iommu_rlookup_table;
b65233a9 187
b65233a9 188/*
0ea2c422
JR
189 * This table is used to find the irq remapping table for a given device id
190 * quickly.
191 */
192struct irq_remap_table **irq_lookup_table;
193
b65233a9 194/*
df805abb 195 * AMD IOMMU allows up to 2^16 different protection domains. This is a bitmap
b65233a9
JR
196 * to know which ones are already in use.
197 */
928abd25
JR
198unsigned long *amd_iommu_pd_alloc_bitmap;
199
b65233a9
JR
200static u32 dev_table_size; /* size of the device table */
201static u32 alias_table_size; /* size of the alias table */
202static u32 rlookup_table_size; /* size if the rlookup table */
3e8064ba 203
2c0ae172
JR
204enum iommu_init_state {
205 IOMMU_START_STATE,
206 IOMMU_IVRS_DETECTED,
207 IOMMU_ACPI_FINISHED,
208 IOMMU_ENABLED,
209 IOMMU_PCI_INIT,
210 IOMMU_INTERRUPTS_EN,
211 IOMMU_DMA_OPS,
212 IOMMU_INITIALIZED,
213 IOMMU_NOT_FOUND,
214 IOMMU_INIT_ERROR,
215};
216
235dacbc
JR
217/* Early ioapic and hpet maps from kernel command line */
218#define EARLY_MAP_SIZE 4
219static struct devid_map __initdata early_ioapic_map[EARLY_MAP_SIZE];
220static struct devid_map __initdata early_hpet_map[EARLY_MAP_SIZE];
221static int __initdata early_ioapic_map_size;
222static int __initdata early_hpet_map_size;
dfbb6d47 223static bool __initdata cmdline_maps;
235dacbc 224
2c0ae172
JR
225static enum iommu_init_state init_state = IOMMU_START_STATE;
226
ae295142 227static int amd_iommu_enable_interrupts(void);
2c0ae172 228static int __init iommu_go_to_state(enum iommu_init_state state);
aafd8ba0 229static void init_device_table_dma(void);
3d9761e7 230
208ec8c9
JR
231static inline void update_last_devid(u16 devid)
232{
233 if (devid > amd_iommu_last_bdf)
234 amd_iommu_last_bdf = devid;
235}
236
c571484e
JR
237static inline unsigned long tbl_size(int entry_size)
238{
239 unsigned shift = PAGE_SHIFT +
421f909c 240 get_order(((int)amd_iommu_last_bdf + 1) * entry_size);
c571484e
JR
241
242 return 1UL << shift;
243}
244
5bcd757f
MG
245/* Access to l1 and l2 indexed register spaces */
246
247static u32 iommu_read_l1(struct amd_iommu *iommu, u16 l1, u8 address)
248{
249 u32 val;
250
251 pci_write_config_dword(iommu->dev, 0xf8, (address | l1 << 16));
252 pci_read_config_dword(iommu->dev, 0xfc, &val);
253 return val;
254}
255
256static void iommu_write_l1(struct amd_iommu *iommu, u16 l1, u8 address, u32 val)
257{
258 pci_write_config_dword(iommu->dev, 0xf8, (address | l1 << 16 | 1 << 31));
259 pci_write_config_dword(iommu->dev, 0xfc, val);
260 pci_write_config_dword(iommu->dev, 0xf8, (address | l1 << 16));
261}
262
263static u32 iommu_read_l2(struct amd_iommu *iommu, u8 address)
264{
265 u32 val;
266
267 pci_write_config_dword(iommu->dev, 0xf0, address);
268 pci_read_config_dword(iommu->dev, 0xf4, &val);
269 return val;
270}
271
272static void iommu_write_l2(struct amd_iommu *iommu, u8 address, u32 val)
273{
274 pci_write_config_dword(iommu->dev, 0xf0, (address | 1 << 8));
275 pci_write_config_dword(iommu->dev, 0xf4, val);
276}
277
b65233a9
JR
278/****************************************************************************
279 *
280 * AMD IOMMU MMIO register space handling functions
281 *
282 * These functions are used to program the IOMMU device registers in
283 * MMIO space required for that driver.
284 *
285 ****************************************************************************/
3e8064ba 286
b65233a9
JR
287/*
288 * This function set the exclusion range in the IOMMU. DMA accesses to the
289 * exclusion range are passed through untranslated
290 */
05f92db9 291static void iommu_set_exclusion_range(struct amd_iommu *iommu)
b2026aa2
JR
292{
293 u64 start = iommu->exclusion_start & PAGE_MASK;
294 u64 limit = (start + iommu->exclusion_length) & PAGE_MASK;
295 u64 entry;
296
297 if (!iommu->exclusion_start)
298 return;
299
300 entry = start | MMIO_EXCL_ENABLE_MASK;
301 memcpy_toio(iommu->mmio_base + MMIO_EXCL_BASE_OFFSET,
302 &entry, sizeof(entry));
303
304 entry = limit;
305 memcpy_toio(iommu->mmio_base + MMIO_EXCL_LIMIT_OFFSET,
306 &entry, sizeof(entry));
307}
308
b65233a9 309/* Programs the physical address of the device table into the IOMMU hardware */
6b7f000e 310static void iommu_set_device_table(struct amd_iommu *iommu)
b2026aa2 311{
f609891f 312 u64 entry;
b2026aa2
JR
313
314 BUG_ON(iommu->mmio_base == NULL);
315
316 entry = virt_to_phys(amd_iommu_dev_table);
317 entry |= (dev_table_size >> 12) - 1;
318 memcpy_toio(iommu->mmio_base + MMIO_DEV_TABLE_OFFSET,
319 &entry, sizeof(entry));
320}
321
b65233a9 322/* Generic functions to enable/disable certain features of the IOMMU. */
05f92db9 323static void iommu_feature_enable(struct amd_iommu *iommu, u8 bit)
b2026aa2
JR
324{
325 u32 ctrl;
326
327 ctrl = readl(iommu->mmio_base + MMIO_CONTROL_OFFSET);
328 ctrl |= (1 << bit);
329 writel(ctrl, iommu->mmio_base + MMIO_CONTROL_OFFSET);
330}
331
ca020711 332static void iommu_feature_disable(struct amd_iommu *iommu, u8 bit)
b2026aa2
JR
333{
334 u32 ctrl;
335
199d0d50 336 ctrl = readl(iommu->mmio_base + MMIO_CONTROL_OFFSET);
b2026aa2
JR
337 ctrl &= ~(1 << bit);
338 writel(ctrl, iommu->mmio_base + MMIO_CONTROL_OFFSET);
339}
340
1456e9d2
JR
341static void iommu_set_inv_tlb_timeout(struct amd_iommu *iommu, int timeout)
342{
343 u32 ctrl;
344
345 ctrl = readl(iommu->mmio_base + MMIO_CONTROL_OFFSET);
346 ctrl &= ~CTRL_INV_TO_MASK;
347 ctrl |= (timeout << CONTROL_INV_TIMEOUT) & CTRL_INV_TO_MASK;
348 writel(ctrl, iommu->mmio_base + MMIO_CONTROL_OFFSET);
349}
350
b65233a9 351/* Function to enable the hardware */
05f92db9 352static void iommu_enable(struct amd_iommu *iommu)
b2026aa2 353{
b2026aa2 354 iommu_feature_enable(iommu, CONTROL_IOMMU_EN);
b2026aa2
JR
355}
356
92ac4320 357static void iommu_disable(struct amd_iommu *iommu)
126c52be 358{
a8c485bb
CW
359 /* Disable command buffer */
360 iommu_feature_disable(iommu, CONTROL_CMDBUF_EN);
361
362 /* Disable event logging and event interrupts */
363 iommu_feature_disable(iommu, CONTROL_EVT_INT_EN);
364 iommu_feature_disable(iommu, CONTROL_EVT_LOG_EN);
365
366 /* Disable IOMMU hardware itself */
92ac4320 367 iommu_feature_disable(iommu, CONTROL_IOMMU_EN);
126c52be
JR
368}
369
b65233a9
JR
370/*
371 * mapping and unmapping functions for the IOMMU MMIO space. Each AMD IOMMU in
372 * the system has one.
373 */
30861ddc 374static u8 __iomem * __init iommu_map_mmio_space(u64 address, u64 end)
6c56747b 375{
30861ddc
SK
376 if (!request_mem_region(address, end, "amd_iommu")) {
377 pr_err("AMD-Vi: Can not reserve memory region %llx-%llx for mmio\n",
378 address, end);
e82752d8 379 pr_err("AMD-Vi: This is a BIOS bug. Please contact your hardware vendor\n");
6c56747b 380 return NULL;
e82752d8 381 }
6c56747b 382
30861ddc 383 return (u8 __iomem *)ioremap_nocache(address, end);
6c56747b
JR
384}
385
386static void __init iommu_unmap_mmio_space(struct amd_iommu *iommu)
387{
388 if (iommu->mmio_base)
389 iounmap(iommu->mmio_base);
30861ddc 390 release_mem_region(iommu->mmio_phys, iommu->mmio_phys_end);
6c56747b
JR
391}
392
b65233a9
JR
393/****************************************************************************
394 *
395 * The functions below belong to the first pass of AMD IOMMU ACPI table
396 * parsing. In this pass we try to find out the highest device id this
397 * code has to handle. Upon this information the size of the shared data
398 * structures is determined later.
399 *
400 ****************************************************************************/
401
b514e555
JR
402/*
403 * This function calculates the length of a given IVHD entry
404 */
405static inline int ivhd_entry_length(u8 *ivhd)
406{
407 return 0x04 << (*ivhd >> 6);
408}
409
b65233a9
JR
410/*
411 * This function reads the last device id the IOMMU has to handle from the PCI
412 * capability header for this IOMMU
413 */
3e8064ba
JR
414static int __init find_last_devid_on_pci(int bus, int dev, int fn, int cap_ptr)
415{
416 u32 cap;
417
418 cap = read_pci_config(bus, dev, fn, cap_ptr+MMIO_RANGE_OFFSET);
6f2729ba 419 update_last_devid(PCI_DEVID(MMIO_GET_BUS(cap), MMIO_GET_LD(cap)));
3e8064ba
JR
420
421 return 0;
422}
423
b65233a9
JR
424/*
425 * After reading the highest device id from the IOMMU PCI capability header
426 * this function looks if there is a higher device id defined in the ACPI table
427 */
3e8064ba
JR
428static int __init find_last_devid_from_ivhd(struct ivhd_header *h)
429{
430 u8 *p = (void *)h, *end = (void *)h;
431 struct ivhd_entry *dev;
432
433 p += sizeof(*h);
434 end += h->length;
435
c5081cd7 436 find_last_devid_on_pci(PCI_BUS_NUM(h->devid),
3e8064ba
JR
437 PCI_SLOT(h->devid),
438 PCI_FUNC(h->devid),
439 h->cap_ptr);
440
441 while (p < end) {
442 dev = (struct ivhd_entry *)p;
443 switch (dev->type) {
444 case IVHD_DEV_SELECT:
445 case IVHD_DEV_RANGE_END:
446 case IVHD_DEV_ALIAS:
447 case IVHD_DEV_EXT_SELECT:
b65233a9 448 /* all the above subfield types refer to device ids */
208ec8c9 449 update_last_devid(dev->devid);
3e8064ba
JR
450 break;
451 default:
452 break;
453 }
b514e555 454 p += ivhd_entry_length(p);
3e8064ba
JR
455 }
456
457 WARN_ON(p != end);
458
459 return 0;
460}
461
b65233a9
JR
462/*
463 * Iterate over all IVHD entries in the ACPI table and find the highest device
464 * id which we need to handle. This is the first of three functions which parse
465 * the ACPI table. So we check the checksum here.
466 */
3e8064ba
JR
467static int __init find_last_devid_acpi(struct acpi_table_header *table)
468{
469 int i;
470 u8 checksum = 0, *p = (u8 *)table, *end = (u8 *)table;
471 struct ivhd_header *h;
472
473 /*
474 * Validate checksum here so we don't need to do it when
475 * we actually parse the table
476 */
477 for (i = 0; i < table->length; ++i)
478 checksum += p[i];
02f3b3f5 479 if (checksum != 0)
3e8064ba 480 /* ACPI table corrupt */
02f3b3f5 481 return -ENODEV;
3e8064ba
JR
482
483 p += IVRS_HEADER_LENGTH;
484
485 end += table->length;
486 while (p < end) {
487 h = (struct ivhd_header *)p;
488 switch (h->type) {
489 case ACPI_IVHD_TYPE:
490 find_last_devid_from_ivhd(h);
491 break;
492 default:
493 break;
494 }
495 p += h->length;
496 }
497 WARN_ON(p != end);
498
499 return 0;
500}
501
b65233a9
JR
502/****************************************************************************
503 *
df805abb 504 * The following functions belong to the code path which parses the ACPI table
b65233a9
JR
505 * the second time. In this ACPI parsing iteration we allocate IOMMU specific
506 * data structures, initialize the device/alias/rlookup table and also
507 * basically initialize the hardware.
508 *
509 ****************************************************************************/
510
511/*
512 * Allocates the command buffer. This buffer is per AMD IOMMU. We can
513 * write commands to that buffer later and the IOMMU will execute them
514 * asynchronously
515 */
b36ca91e
JR
516static u8 * __init alloc_command_buffer(struct amd_iommu *iommu)
517{
d0312b21 518 u8 *cmd_buf = (u8 *)__get_free_pages(GFP_KERNEL | __GFP_ZERO,
b36ca91e 519 get_order(CMD_BUFFER_SIZE));
b36ca91e
JR
520
521 if (cmd_buf == NULL)
522 return NULL;
523
549c90dc 524 iommu->cmd_buf_size = CMD_BUFFER_SIZE | CMD_BUFFER_UNINITIALIZED;
b36ca91e 525
58492e12
JR
526 return cmd_buf;
527}
528
93f1cc67
JR
529/*
530 * This function resets the command buffer if the IOMMU stopped fetching
531 * commands from it.
532 */
533void amd_iommu_reset_cmd_buffer(struct amd_iommu *iommu)
534{
535 iommu_feature_disable(iommu, CONTROL_CMDBUF_EN);
536
537 writel(0x00, iommu->mmio_base + MMIO_CMD_HEAD_OFFSET);
538 writel(0x00, iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
539
540 iommu_feature_enable(iommu, CONTROL_CMDBUF_EN);
541}
542
58492e12
JR
543/*
544 * This function writes the command buffer address to the hardware and
545 * enables it.
546 */
547static void iommu_enable_command_buffer(struct amd_iommu *iommu)
548{
549 u64 entry;
550
551 BUG_ON(iommu->cmd_buf == NULL);
552
553 entry = (u64)virt_to_phys(iommu->cmd_buf);
b36ca91e 554 entry |= MMIO_CMD_SIZE_512;
58492e12 555
b36ca91e 556 memcpy_toio(iommu->mmio_base + MMIO_CMD_BUF_OFFSET,
58492e12 557 &entry, sizeof(entry));
b36ca91e 558
93f1cc67 559 amd_iommu_reset_cmd_buffer(iommu);
549c90dc 560 iommu->cmd_buf_size &= ~(CMD_BUFFER_UNINITIALIZED);
b36ca91e
JR
561}
562
563static void __init free_command_buffer(struct amd_iommu *iommu)
564{
23c1713f 565 free_pages((unsigned long)iommu->cmd_buf,
549c90dc 566 get_order(iommu->cmd_buf_size & ~(CMD_BUFFER_UNINITIALIZED)));
b36ca91e
JR
567}
568
335503e5
JR
569/* allocates the memory where the IOMMU will log its events to */
570static u8 * __init alloc_event_buffer(struct amd_iommu *iommu)
571{
335503e5
JR
572 iommu->evt_buf = (u8 *)__get_free_pages(GFP_KERNEL | __GFP_ZERO,
573 get_order(EVT_BUFFER_SIZE));
574
575 if (iommu->evt_buf == NULL)
576 return NULL;
577
1bc6f838
JR
578 iommu->evt_buf_size = EVT_BUFFER_SIZE;
579
58492e12
JR
580 return iommu->evt_buf;
581}
582
583static void iommu_enable_event_buffer(struct amd_iommu *iommu)
584{
585 u64 entry;
586
587 BUG_ON(iommu->evt_buf == NULL);
588
335503e5 589 entry = (u64)virt_to_phys(iommu->evt_buf) | EVT_LEN_MASK;
58492e12 590
335503e5
JR
591 memcpy_toio(iommu->mmio_base + MMIO_EVT_BUF_OFFSET,
592 &entry, sizeof(entry));
593
09067207
JR
594 /* set head and tail to zero manually */
595 writel(0x00, iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
596 writel(0x00, iommu->mmio_base + MMIO_EVT_TAIL_OFFSET);
597
58492e12 598 iommu_feature_enable(iommu, CONTROL_EVT_LOG_EN);
335503e5
JR
599}
600
601static void __init free_event_buffer(struct amd_iommu *iommu)
602{
603 free_pages((unsigned long)iommu->evt_buf, get_order(EVT_BUFFER_SIZE));
604}
605
1a29ac01
JR
606/* allocates the memory where the IOMMU will log its events to */
607static u8 * __init alloc_ppr_log(struct amd_iommu *iommu)
608{
609 iommu->ppr_log = (u8 *)__get_free_pages(GFP_KERNEL | __GFP_ZERO,
610 get_order(PPR_LOG_SIZE));
611
612 if (iommu->ppr_log == NULL)
613 return NULL;
614
615 return iommu->ppr_log;
616}
617
618static void iommu_enable_ppr_log(struct amd_iommu *iommu)
619{
620 u64 entry;
621
622 if (iommu->ppr_log == NULL)
623 return;
624
625 entry = (u64)virt_to_phys(iommu->ppr_log) | PPR_LOG_SIZE_512;
626
627 memcpy_toio(iommu->mmio_base + MMIO_PPR_LOG_OFFSET,
628 &entry, sizeof(entry));
629
630 /* set head and tail to zero manually */
631 writel(0x00, iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
632 writel(0x00, iommu->mmio_base + MMIO_PPR_TAIL_OFFSET);
633
634 iommu_feature_enable(iommu, CONTROL_PPFLOG_EN);
635 iommu_feature_enable(iommu, CONTROL_PPR_EN);
636}
637
638static void __init free_ppr_log(struct amd_iommu *iommu)
639{
640 if (iommu->ppr_log == NULL)
641 return;
642
643 free_pages((unsigned long)iommu->ppr_log, get_order(PPR_LOG_SIZE));
644}
645
cbc33a90
JR
646static void iommu_enable_gt(struct amd_iommu *iommu)
647{
648 if (!iommu_feature(iommu, FEATURE_GT))
649 return;
650
651 iommu_feature_enable(iommu, CONTROL_GT_EN);
652}
653
b65233a9 654/* sets a specific bit in the device table entry. */
3566b778
JR
655static void set_dev_entry_bit(u16 devid, u8 bit)
656{
ee6c2868
JR
657 int i = (bit >> 6) & 0x03;
658 int _bit = bit & 0x3f;
3566b778 659
ee6c2868 660 amd_iommu_dev_table[devid].data[i] |= (1UL << _bit);
3566b778
JR
661}
662
c5cca146
JR
663static int get_dev_entry_bit(u16 devid, u8 bit)
664{
ee6c2868
JR
665 int i = (bit >> 6) & 0x03;
666 int _bit = bit & 0x3f;
c5cca146 667
ee6c2868 668 return (amd_iommu_dev_table[devid].data[i] & (1UL << _bit)) >> _bit;
c5cca146
JR
669}
670
671
672void amd_iommu_apply_erratum_63(u16 devid)
673{
674 int sysmgt;
675
676 sysmgt = get_dev_entry_bit(devid, DEV_ENTRY_SYSMGT1) |
677 (get_dev_entry_bit(devid, DEV_ENTRY_SYSMGT2) << 1);
678
679 if (sysmgt == 0x01)
680 set_dev_entry_bit(devid, DEV_ENTRY_IW);
681}
682
5ff4789d
JR
683/* Writes the specific IOMMU for a device into the rlookup table */
684static void __init set_iommu_for_device(struct amd_iommu *iommu, u16 devid)
685{
686 amd_iommu_rlookup_table[devid] = iommu;
687}
688
b65233a9
JR
689/*
690 * This function takes the device specific flags read from the ACPI
691 * table and sets up the device table entry with that information
692 */
5ff4789d
JR
693static void __init set_dev_entry_from_acpi(struct amd_iommu *iommu,
694 u16 devid, u32 flags, u32 ext_flags)
3566b778
JR
695{
696 if (flags & ACPI_DEVFLAG_INITPASS)
697 set_dev_entry_bit(devid, DEV_ENTRY_INIT_PASS);
698 if (flags & ACPI_DEVFLAG_EXTINT)
699 set_dev_entry_bit(devid, DEV_ENTRY_EINT_PASS);
700 if (flags & ACPI_DEVFLAG_NMI)
701 set_dev_entry_bit(devid, DEV_ENTRY_NMI_PASS);
702 if (flags & ACPI_DEVFLAG_SYSMGT1)
703 set_dev_entry_bit(devid, DEV_ENTRY_SYSMGT1);
704 if (flags & ACPI_DEVFLAG_SYSMGT2)
705 set_dev_entry_bit(devid, DEV_ENTRY_SYSMGT2);
706 if (flags & ACPI_DEVFLAG_LINT0)
707 set_dev_entry_bit(devid, DEV_ENTRY_LINT0_PASS);
708 if (flags & ACPI_DEVFLAG_LINT1)
709 set_dev_entry_bit(devid, DEV_ENTRY_LINT1_PASS);
3566b778 710
c5cca146
JR
711 amd_iommu_apply_erratum_63(devid);
712
5ff4789d 713 set_iommu_for_device(iommu, devid);
3566b778
JR
714}
715
c50e3247 716static int __init add_special_device(u8 type, u8 id, u16 *devid, bool cmd_line)
6efed63b
JR
717{
718 struct devid_map *entry;
719 struct list_head *list;
720
31cff67f
JR
721 if (type == IVHD_SPECIAL_IOAPIC)
722 list = &ioapic_map;
723 else if (type == IVHD_SPECIAL_HPET)
724 list = &hpet_map;
725 else
6efed63b
JR
726 return -EINVAL;
727
31cff67f
JR
728 list_for_each_entry(entry, list, list) {
729 if (!(entry->id == id && entry->cmd_line))
730 continue;
731
732 pr_info("AMD-Vi: Command-line override present for %s id %d - ignoring\n",
733 type == IVHD_SPECIAL_IOAPIC ? "IOAPIC" : "HPET", id);
734
c50e3247
JR
735 *devid = entry->devid;
736
31cff67f
JR
737 return 0;
738 }
739
6efed63b
JR
740 entry = kzalloc(sizeof(*entry), GFP_KERNEL);
741 if (!entry)
742 return -ENOMEM;
743
31cff67f 744 entry->id = id;
c50e3247 745 entry->devid = *devid;
31cff67f 746 entry->cmd_line = cmd_line;
6efed63b
JR
747
748 list_add_tail(&entry->list, list);
749
750 return 0;
751}
752
235dacbc
JR
753static int __init add_early_maps(void)
754{
755 int i, ret;
756
757 for (i = 0; i < early_ioapic_map_size; ++i) {
758 ret = add_special_device(IVHD_SPECIAL_IOAPIC,
759 early_ioapic_map[i].id,
c50e3247 760 &early_ioapic_map[i].devid,
235dacbc
JR
761 early_ioapic_map[i].cmd_line);
762 if (ret)
763 return ret;
764 }
765
766 for (i = 0; i < early_hpet_map_size; ++i) {
767 ret = add_special_device(IVHD_SPECIAL_HPET,
768 early_hpet_map[i].id,
c50e3247 769 &early_hpet_map[i].devid,
235dacbc
JR
770 early_hpet_map[i].cmd_line);
771 if (ret)
772 return ret;
773 }
774
775 return 0;
776}
777
b65233a9 778/*
df805abb 779 * Reads the device exclusion range from ACPI and initializes the IOMMU with
b65233a9
JR
780 * it
781 */
3566b778
JR
782static void __init set_device_exclusion_range(u16 devid, struct ivmd_header *m)
783{
784 struct amd_iommu *iommu = amd_iommu_rlookup_table[devid];
785
786 if (!(m->flags & IVMD_FLAG_EXCL_RANGE))
787 return;
788
789 if (iommu) {
b65233a9
JR
790 /*
791 * We only can configure exclusion ranges per IOMMU, not
792 * per device. But we can enable the exclusion range per
793 * device. This is done here
794 */
2c16c9fd 795 set_dev_entry_bit(devid, DEV_ENTRY_EX);
3566b778
JR
796 iommu->exclusion_start = m->range_start;
797 iommu->exclusion_length = m->range_length;
798 }
799}
800
b65233a9
JR
801/*
802 * Takes a pointer to an AMD IOMMU entry in the ACPI table and
803 * initializes the hardware and our data structures with it.
804 */
6efed63b 805static int __init init_iommu_from_acpi(struct amd_iommu *iommu,
5d0c8e49
JR
806 struct ivhd_header *h)
807{
808 u8 *p = (u8 *)h;
809 u8 *end = p, flags = 0;
0de66d5b
JR
810 u16 devid = 0, devid_start = 0, devid_to = 0;
811 u32 dev_i, ext_flags = 0;
58a3bee5 812 bool alias = false;
5d0c8e49 813 struct ivhd_entry *e;
235dacbc
JR
814 int ret;
815
816
817 ret = add_early_maps();
818 if (ret)
819 return ret;
5d0c8e49
JR
820
821 /*
e9bf5197 822 * First save the recommended feature enable bits from ACPI
5d0c8e49 823 */
e9bf5197 824 iommu->acpi_flags = h->flags;
5d0c8e49
JR
825
826 /*
827 * Done. Now parse the device entries
828 */
829 p += sizeof(struct ivhd_header);
830 end += h->length;
831
42a698f4 832
5d0c8e49
JR
833 while (p < end) {
834 e = (struct ivhd_entry *)p;
835 switch (e->type) {
836 case IVHD_DEV_ALL:
42a698f4
JR
837
838 DUMP_printk(" DEV_ALL\t\t\t first devid: %02x:%02x.%x"
839 " last device %02x:%02x.%x flags: %02x\n",
c5081cd7 840 PCI_BUS_NUM(iommu->first_device),
42a698f4
JR
841 PCI_SLOT(iommu->first_device),
842 PCI_FUNC(iommu->first_device),
c5081cd7 843 PCI_BUS_NUM(iommu->last_device),
42a698f4
JR
844 PCI_SLOT(iommu->last_device),
845 PCI_FUNC(iommu->last_device),
846 e->flags);
847
5d0c8e49
JR
848 for (dev_i = iommu->first_device;
849 dev_i <= iommu->last_device; ++dev_i)
5ff4789d
JR
850 set_dev_entry_from_acpi(iommu, dev_i,
851 e->flags, 0);
5d0c8e49
JR
852 break;
853 case IVHD_DEV_SELECT:
42a698f4
JR
854
855 DUMP_printk(" DEV_SELECT\t\t\t devid: %02x:%02x.%x "
856 "flags: %02x\n",
c5081cd7 857 PCI_BUS_NUM(e->devid),
42a698f4
JR
858 PCI_SLOT(e->devid),
859 PCI_FUNC(e->devid),
860 e->flags);
861
5d0c8e49 862 devid = e->devid;
5ff4789d 863 set_dev_entry_from_acpi(iommu, devid, e->flags, 0);
5d0c8e49
JR
864 break;
865 case IVHD_DEV_SELECT_RANGE_START:
42a698f4
JR
866
867 DUMP_printk(" DEV_SELECT_RANGE_START\t "
868 "devid: %02x:%02x.%x flags: %02x\n",
c5081cd7 869 PCI_BUS_NUM(e->devid),
42a698f4
JR
870 PCI_SLOT(e->devid),
871 PCI_FUNC(e->devid),
872 e->flags);
873
5d0c8e49
JR
874 devid_start = e->devid;
875 flags = e->flags;
876 ext_flags = 0;
58a3bee5 877 alias = false;
5d0c8e49
JR
878 break;
879 case IVHD_DEV_ALIAS:
42a698f4
JR
880
881 DUMP_printk(" DEV_ALIAS\t\t\t devid: %02x:%02x.%x "
882 "flags: %02x devid_to: %02x:%02x.%x\n",
c5081cd7 883 PCI_BUS_NUM(e->devid),
42a698f4
JR
884 PCI_SLOT(e->devid),
885 PCI_FUNC(e->devid),
886 e->flags,
c5081cd7 887 PCI_BUS_NUM(e->ext >> 8),
42a698f4
JR
888 PCI_SLOT(e->ext >> 8),
889 PCI_FUNC(e->ext >> 8));
890
5d0c8e49
JR
891 devid = e->devid;
892 devid_to = e->ext >> 8;
7a6a3a08 893 set_dev_entry_from_acpi(iommu, devid , e->flags, 0);
7455aab1 894 set_dev_entry_from_acpi(iommu, devid_to, e->flags, 0);
5d0c8e49
JR
895 amd_iommu_alias_table[devid] = devid_to;
896 break;
897 case IVHD_DEV_ALIAS_RANGE:
42a698f4
JR
898
899 DUMP_printk(" DEV_ALIAS_RANGE\t\t "
900 "devid: %02x:%02x.%x flags: %02x "
901 "devid_to: %02x:%02x.%x\n",
c5081cd7 902 PCI_BUS_NUM(e->devid),
42a698f4
JR
903 PCI_SLOT(e->devid),
904 PCI_FUNC(e->devid),
905 e->flags,
c5081cd7 906 PCI_BUS_NUM(e->ext >> 8),
42a698f4
JR
907 PCI_SLOT(e->ext >> 8),
908 PCI_FUNC(e->ext >> 8));
909
5d0c8e49
JR
910 devid_start = e->devid;
911 flags = e->flags;
912 devid_to = e->ext >> 8;
913 ext_flags = 0;
58a3bee5 914 alias = true;
5d0c8e49
JR
915 break;
916 case IVHD_DEV_EXT_SELECT:
42a698f4
JR
917
918 DUMP_printk(" DEV_EXT_SELECT\t\t devid: %02x:%02x.%x "
919 "flags: %02x ext: %08x\n",
c5081cd7 920 PCI_BUS_NUM(e->devid),
42a698f4
JR
921 PCI_SLOT(e->devid),
922 PCI_FUNC(e->devid),
923 e->flags, e->ext);
924
5d0c8e49 925 devid = e->devid;
5ff4789d
JR
926 set_dev_entry_from_acpi(iommu, devid, e->flags,
927 e->ext);
5d0c8e49
JR
928 break;
929 case IVHD_DEV_EXT_SELECT_RANGE:
42a698f4
JR
930
931 DUMP_printk(" DEV_EXT_SELECT_RANGE\t devid: "
932 "%02x:%02x.%x flags: %02x ext: %08x\n",
c5081cd7 933 PCI_BUS_NUM(e->devid),
42a698f4
JR
934 PCI_SLOT(e->devid),
935 PCI_FUNC(e->devid),
936 e->flags, e->ext);
937
5d0c8e49
JR
938 devid_start = e->devid;
939 flags = e->flags;
940 ext_flags = e->ext;
58a3bee5 941 alias = false;
5d0c8e49
JR
942 break;
943 case IVHD_DEV_RANGE_END:
42a698f4
JR
944
945 DUMP_printk(" DEV_RANGE_END\t\t devid: %02x:%02x.%x\n",
c5081cd7 946 PCI_BUS_NUM(e->devid),
42a698f4
JR
947 PCI_SLOT(e->devid),
948 PCI_FUNC(e->devid));
949
5d0c8e49
JR
950 devid = e->devid;
951 for (dev_i = devid_start; dev_i <= devid; ++dev_i) {
7a6a3a08 952 if (alias) {
5d0c8e49 953 amd_iommu_alias_table[dev_i] = devid_to;
7a6a3a08
JR
954 set_dev_entry_from_acpi(iommu,
955 devid_to, flags, ext_flags);
956 }
957 set_dev_entry_from_acpi(iommu, dev_i,
958 flags, ext_flags);
5d0c8e49
JR
959 }
960 break;
6efed63b
JR
961 case IVHD_DEV_SPECIAL: {
962 u8 handle, type;
963 const char *var;
964 u16 devid;
965 int ret;
966
967 handle = e->ext & 0xff;
968 devid = (e->ext >> 8) & 0xffff;
969 type = (e->ext >> 24) & 0xff;
970
971 if (type == IVHD_SPECIAL_IOAPIC)
972 var = "IOAPIC";
973 else if (type == IVHD_SPECIAL_HPET)
974 var = "HPET";
975 else
976 var = "UNKNOWN";
977
978 DUMP_printk(" DEV_SPECIAL(%s[%d])\t\tdevid: %02x:%02x.%x\n",
979 var, (int)handle,
c5081cd7 980 PCI_BUS_NUM(devid),
6efed63b
JR
981 PCI_SLOT(devid),
982 PCI_FUNC(devid));
983
c50e3247 984 ret = add_special_device(type, handle, &devid, false);
6efed63b
JR
985 if (ret)
986 return ret;
c50e3247
JR
987
988 /*
989 * add_special_device might update the devid in case a
990 * command-line override is present. So call
991 * set_dev_entry_from_acpi after add_special_device.
992 */
993 set_dev_entry_from_acpi(iommu, devid, e->flags, 0);
994
6efed63b
JR
995 break;
996 }
5d0c8e49
JR
997 default:
998 break;
999 }
1000
b514e555 1001 p += ivhd_entry_length(p);
5d0c8e49 1002 }
6efed63b
JR
1003
1004 return 0;
5d0c8e49
JR
1005}
1006
b65233a9 1007/* Initializes the device->iommu mapping for the driver */
5d0c8e49
JR
1008static int __init init_iommu_devices(struct amd_iommu *iommu)
1009{
0de66d5b 1010 u32 i;
5d0c8e49
JR
1011
1012 for (i = iommu->first_device; i <= iommu->last_device; ++i)
1013 set_iommu_for_device(iommu, i);
1014
1015 return 0;
1016}
1017
e47d402d
JR
1018static void __init free_iommu_one(struct amd_iommu *iommu)
1019{
1020 free_command_buffer(iommu);
335503e5 1021 free_event_buffer(iommu);
1a29ac01 1022 free_ppr_log(iommu);
e47d402d
JR
1023 iommu_unmap_mmio_space(iommu);
1024}
1025
1026static void __init free_iommu_all(void)
1027{
1028 struct amd_iommu *iommu, *next;
1029
3bd22172 1030 for_each_iommu_safe(iommu, next) {
e47d402d
JR
1031 list_del(&iommu->list);
1032 free_iommu_one(iommu);
1033 kfree(iommu);
1034 }
1035}
1036
318fe782
SS
1037/*
1038 * Family15h Model 10h-1fh erratum 746 (IOMMU Logging May Stall Translations)
1039 * Workaround:
1040 * BIOS should disable L2B micellaneous clock gating by setting
1041 * L2_L2B_CK_GATE_CONTROL[CKGateL2BMiscDisable](D0F2xF4_x90[2]) = 1b
1042 */
e2f1a3bd 1043static void amd_iommu_erratum_746_workaround(struct amd_iommu *iommu)
318fe782
SS
1044{
1045 u32 value;
1046
1047 if ((boot_cpu_data.x86 != 0x15) ||
1048 (boot_cpu_data.x86_model < 0x10) ||
1049 (boot_cpu_data.x86_model > 0x1f))
1050 return;
1051
1052 pci_write_config_dword(iommu->dev, 0xf0, 0x90);
1053 pci_read_config_dword(iommu->dev, 0xf4, &value);
1054
1055 if (value & BIT(2))
1056 return;
1057
1058 /* Select NB indirect register 0x90 and enable writing */
1059 pci_write_config_dword(iommu->dev, 0xf0, 0x90 | (1 << 8));
1060
1061 pci_write_config_dword(iommu->dev, 0xf4, value | 0x4);
1062 pr_info("AMD-Vi: Applying erratum 746 workaround for IOMMU at %s\n",
1063 dev_name(&iommu->dev->dev));
1064
1065 /* Clear the enable writing bit */
1066 pci_write_config_dword(iommu->dev, 0xf0, 0x90);
1067}
1068
b65233a9
JR
1069/*
1070 * This function clues the initialization function for one IOMMU
1071 * together and also allocates the command buffer and programs the
1072 * hardware. It does NOT enable the IOMMU. This is done afterwards.
1073 */
e47d402d
JR
1074static int __init init_iommu_one(struct amd_iommu *iommu, struct ivhd_header *h)
1075{
6efed63b
JR
1076 int ret;
1077
e47d402d 1078 spin_lock_init(&iommu->lock);
bb52777e
JR
1079
1080 /* Add IOMMU to internal data structures */
e47d402d 1081 list_add_tail(&iommu->list, &amd_iommu_list);
bb52777e
JR
1082 iommu->index = amd_iommus_present++;
1083
1084 if (unlikely(iommu->index >= MAX_IOMMUS)) {
1085 WARN(1, "AMD-Vi: System has more IOMMUs than supported by this driver\n");
1086 return -ENOSYS;
1087 }
1088
1089 /* Index is fine - add IOMMU to the array */
1090 amd_iommus[iommu->index] = iommu;
e47d402d
JR
1091
1092 /*
1093 * Copy data from ACPI table entry to the iommu struct
1094 */
23c742db 1095 iommu->devid = h->devid;
e47d402d 1096 iommu->cap_ptr = h->cap_ptr;
ee893c24 1097 iommu->pci_seg = h->pci_seg;
e47d402d 1098 iommu->mmio_phys = h->mmio_phys;
30861ddc
SK
1099
1100 /* Check if IVHD EFR contains proper max banks/counters */
1101 if ((h->efr != 0) &&
1102 ((h->efr & (0xF << 13)) != 0) &&
1103 ((h->efr & (0x3F << 17)) != 0)) {
1104 iommu->mmio_phys_end = MMIO_REG_END_OFFSET;
1105 } else {
1106 iommu->mmio_phys_end = MMIO_CNTR_CONF_OFFSET;
1107 }
1108
1109 iommu->mmio_base = iommu_map_mmio_space(iommu->mmio_phys,
1110 iommu->mmio_phys_end);
e47d402d
JR
1111 if (!iommu->mmio_base)
1112 return -ENOMEM;
1113
e47d402d
JR
1114 iommu->cmd_buf = alloc_command_buffer(iommu);
1115 if (!iommu->cmd_buf)
1116 return -ENOMEM;
1117
335503e5
JR
1118 iommu->evt_buf = alloc_event_buffer(iommu);
1119 if (!iommu->evt_buf)
1120 return -ENOMEM;
1121
a80dc3e0
JR
1122 iommu->int_enabled = false;
1123
6efed63b
JR
1124 ret = init_iommu_from_acpi(iommu, h);
1125 if (ret)
1126 return ret;
f6fec00a 1127
7c71d306
JL
1128 ret = amd_iommu_create_irq_domain(iommu);
1129 if (ret)
1130 return ret;
1131
f6fec00a
JR
1132 /*
1133 * Make sure IOMMU is not considered to translate itself. The IVRS
1134 * table tells us so, but this is a lie!
1135 */
1136 amd_iommu_rlookup_table[iommu->devid] = NULL;
1137
e47d402d
JR
1138 init_iommu_devices(iommu);
1139
23c742db 1140 return 0;
e47d402d
JR
1141}
1142
b65233a9
JR
1143/*
1144 * Iterates over all IOMMU entries in the ACPI table, allocates the
1145 * IOMMU structure and initializes it with init_iommu_one()
1146 */
e47d402d
JR
1147static int __init init_iommu_all(struct acpi_table_header *table)
1148{
1149 u8 *p = (u8 *)table, *end = (u8 *)table;
1150 struct ivhd_header *h;
1151 struct amd_iommu *iommu;
1152 int ret;
1153
e47d402d
JR
1154 end += table->length;
1155 p += IVRS_HEADER_LENGTH;
1156
1157 while (p < end) {
1158 h = (struct ivhd_header *)p;
1159 switch (*p) {
1160 case ACPI_IVHD_TYPE:
9c72041f 1161
ae908c22 1162 DUMP_printk("device: %02x:%02x.%01x cap: %04x "
9c72041f 1163 "seg: %d flags: %01x info %04x\n",
c5081cd7 1164 PCI_BUS_NUM(h->devid), PCI_SLOT(h->devid),
9c72041f
JR
1165 PCI_FUNC(h->devid), h->cap_ptr,
1166 h->pci_seg, h->flags, h->info);
1167 DUMP_printk(" mmio-addr: %016llx\n",
1168 h->mmio_phys);
1169
e47d402d 1170 iommu = kzalloc(sizeof(struct amd_iommu), GFP_KERNEL);
02f3b3f5
JR
1171 if (iommu == NULL)
1172 return -ENOMEM;
3551a708 1173
e47d402d 1174 ret = init_iommu_one(iommu, h);
02f3b3f5
JR
1175 if (ret)
1176 return ret;
e47d402d
JR
1177 break;
1178 default:
1179 break;
1180 }
1181 p += h->length;
1182
1183 }
1184 WARN_ON(p != end);
1185
1186 return 0;
1187}
1188
30861ddc
SK
1189
1190static void init_iommu_perf_ctr(struct amd_iommu *iommu)
1191{
1192 u64 val = 0xabcd, val2 = 0;
1193
1194 if (!iommu_feature(iommu, FEATURE_PC))
1195 return;
1196
1197 amd_iommu_pc_present = true;
1198
1199 /* Check if the performance counters can be written to */
1200 if ((0 != amd_iommu_pc_get_set_reg_val(0, 0, 0, 0, &val, true)) ||
1201 (0 != amd_iommu_pc_get_set_reg_val(0, 0, 0, 0, &val2, false)) ||
1202 (val != val2)) {
1203 pr_err("AMD-Vi: Unable to write to IOMMU perf counter.\n");
1204 amd_iommu_pc_present = false;
1205 return;
1206 }
1207
1208 pr_info("AMD-Vi: IOMMU performance counters supported\n");
1209
1210 val = readl(iommu->mmio_base + MMIO_CNTR_CONF_OFFSET);
1211 iommu->max_banks = (u8) ((val >> 12) & 0x3f);
1212 iommu->max_counters = (u8) ((val >> 7) & 0xf);
1213}
1214
066f2e98
AW
1215static ssize_t amd_iommu_show_cap(struct device *dev,
1216 struct device_attribute *attr,
1217 char *buf)
1218{
1219 struct amd_iommu *iommu = dev_get_drvdata(dev);
1220 return sprintf(buf, "%x\n", iommu->cap);
1221}
1222static DEVICE_ATTR(cap, S_IRUGO, amd_iommu_show_cap, NULL);
1223
1224static ssize_t amd_iommu_show_features(struct device *dev,
1225 struct device_attribute *attr,
1226 char *buf)
1227{
1228 struct amd_iommu *iommu = dev_get_drvdata(dev);
1229 return sprintf(buf, "%llx\n", iommu->features);
1230}
1231static DEVICE_ATTR(features, S_IRUGO, amd_iommu_show_features, NULL);
1232
1233static struct attribute *amd_iommu_attrs[] = {
1234 &dev_attr_cap.attr,
1235 &dev_attr_features.attr,
1236 NULL,
1237};
1238
1239static struct attribute_group amd_iommu_group = {
1240 .name = "amd-iommu",
1241 .attrs = amd_iommu_attrs,
1242};
1243
1244static const struct attribute_group *amd_iommu_groups[] = {
1245 &amd_iommu_group,
1246 NULL,
1247};
30861ddc 1248
23c742db
JR
1249static int iommu_init_pci(struct amd_iommu *iommu)
1250{
1251 int cap_ptr = iommu->cap_ptr;
1252 u32 range, misc, low, high;
1253
c5081cd7 1254 iommu->dev = pci_get_bus_and_slot(PCI_BUS_NUM(iommu->devid),
23c742db
JR
1255 iommu->devid & 0xff);
1256 if (!iommu->dev)
1257 return -ENODEV;
1258
1259 pci_read_config_dword(iommu->dev, cap_ptr + MMIO_CAP_HDR_OFFSET,
1260 &iommu->cap);
1261 pci_read_config_dword(iommu->dev, cap_ptr + MMIO_RANGE_OFFSET,
1262 &range);
1263 pci_read_config_dword(iommu->dev, cap_ptr + MMIO_MISC_OFFSET,
1264 &misc);
1265
6f2729ba 1266 iommu->first_device = PCI_DEVID(MMIO_GET_BUS(range),
23c742db 1267 MMIO_GET_FD(range));
6f2729ba 1268 iommu->last_device = PCI_DEVID(MMIO_GET_BUS(range),
23c742db
JR
1269 MMIO_GET_LD(range));
1270
1271 if (!(iommu->cap & (1 << IOMMU_CAP_IOTLB)))
1272 amd_iommu_iotlb_sup = false;
1273
1274 /* read extended feature bits */
1275 low = readl(iommu->mmio_base + MMIO_EXT_FEATURES);
1276 high = readl(iommu->mmio_base + MMIO_EXT_FEATURES + 4);
1277
1278 iommu->features = ((u64)high << 32) | low;
1279
1280 if (iommu_feature(iommu, FEATURE_GT)) {
1281 int glxval;
a919a018
SS
1282 u32 max_pasid;
1283 u64 pasmax;
23c742db 1284
a919a018
SS
1285 pasmax = iommu->features & FEATURE_PASID_MASK;
1286 pasmax >>= FEATURE_PASID_SHIFT;
1287 max_pasid = (1 << (pasmax + 1)) - 1;
23c742db 1288
a919a018
SS
1289 amd_iommu_max_pasid = min(amd_iommu_max_pasid, max_pasid);
1290
1291 BUG_ON(amd_iommu_max_pasid & ~PASID_MASK);
23c742db
JR
1292
1293 glxval = iommu->features & FEATURE_GLXVAL_MASK;
1294 glxval >>= FEATURE_GLXVAL_SHIFT;
1295
1296 if (amd_iommu_max_glx_val == -1)
1297 amd_iommu_max_glx_val = glxval;
1298 else
1299 amd_iommu_max_glx_val = min(amd_iommu_max_glx_val, glxval);
1300 }
1301
1302 if (iommu_feature(iommu, FEATURE_GT) &&
1303 iommu_feature(iommu, FEATURE_PPR)) {
1304 iommu->is_iommu_v2 = true;
1305 amd_iommu_v2_present = true;
1306 }
1307
1308 if (iommu_feature(iommu, FEATURE_PPR)) {
1309 iommu->ppr_log = alloc_ppr_log(iommu);
1310 if (!iommu->ppr_log)
1311 return -ENOMEM;
1312 }
1313
1314 if (iommu->cap & (1UL << IOMMU_CAP_NPCACHE))
1315 amd_iommu_np_cache = true;
1316
30861ddc
SK
1317 init_iommu_perf_ctr(iommu);
1318
23c742db
JR
1319 if (is_rd890_iommu(iommu->dev)) {
1320 int i, j;
1321
1322 iommu->root_pdev = pci_get_bus_and_slot(iommu->dev->bus->number,
1323 PCI_DEVFN(0, 0));
1324
1325 /*
1326 * Some rd890 systems may not be fully reconfigured by the
1327 * BIOS, so it's necessary for us to store this information so
1328 * it can be reprogrammed on resume
1329 */
1330 pci_read_config_dword(iommu->dev, iommu->cap_ptr + 4,
1331 &iommu->stored_addr_lo);
1332 pci_read_config_dword(iommu->dev, iommu->cap_ptr + 8,
1333 &iommu->stored_addr_hi);
1334
1335 /* Low bit locks writes to configuration space */
1336 iommu->stored_addr_lo &= ~1;
1337
1338 for (i = 0; i < 6; i++)
1339 for (j = 0; j < 0x12; j++)
1340 iommu->stored_l1[i][j] = iommu_read_l1(iommu, i, j);
1341
1342 for (i = 0; i < 0x83; i++)
1343 iommu->stored_l2[i] = iommu_read_l2(iommu, i);
1344 }
1345
318fe782
SS
1346 amd_iommu_erratum_746_workaround(iommu);
1347
066f2e98
AW
1348 iommu->iommu_dev = iommu_device_create(&iommu->dev->dev, iommu,
1349 amd_iommu_groups, "ivhd%d",
1350 iommu->index);
1351
23c742db
JR
1352 return pci_enable_device(iommu->dev);
1353}
1354
4d121c32
JR
1355static void print_iommu_info(void)
1356{
1357 static const char * const feat_str[] = {
1358 "PreF", "PPR", "X2APIC", "NX", "GT", "[5]",
1359 "IA", "GA", "HE", "PC"
1360 };
1361 struct amd_iommu *iommu;
1362
1363 for_each_iommu(iommu) {
1364 int i;
1365
1366 pr_info("AMD-Vi: Found IOMMU at %s cap 0x%hx\n",
1367 dev_name(&iommu->dev->dev), iommu->cap_ptr);
1368
1369 if (iommu->cap & (1 << IOMMU_CAP_EFR)) {
1370 pr_info("AMD-Vi: Extended features: ");
2bd5ed00 1371 for (i = 0; i < ARRAY_SIZE(feat_str); ++i) {
4d121c32
JR
1372 if (iommu_feature(iommu, (1ULL << i)))
1373 pr_cont(" %s", feat_str[i]);
1374 }
30861ddc 1375 pr_cont("\n");
500c25ed 1376 }
4d121c32 1377 }
ebe60bbf
JR
1378 if (irq_remapping_enabled)
1379 pr_info("AMD-Vi: Interrupt remapping enabled\n");
4d121c32
JR
1380}
1381
2c0ae172 1382static int __init amd_iommu_init_pci(void)
23c742db
JR
1383{
1384 struct amd_iommu *iommu;
1385 int ret = 0;
1386
1387 for_each_iommu(iommu) {
1388 ret = iommu_init_pci(iommu);
1389 if (ret)
1390 break;
1391 }
1392
aafd8ba0
JR
1393 init_device_table_dma();
1394
1395 for_each_iommu(iommu)
1396 iommu_flush_all_caches(iommu);
1397
3a18404c 1398 ret = amd_iommu_init_api();
23c742db 1399
3a18404c
JR
1400 if (!ret)
1401 print_iommu_info();
4d121c32 1402
23c742db
JR
1403 return ret;
1404}
1405
a80dc3e0
JR
1406/****************************************************************************
1407 *
1408 * The following functions initialize the MSI interrupts for all IOMMUs
df805abb 1409 * in the system. It's a bit challenging because there could be multiple
a80dc3e0
JR
1410 * IOMMUs per PCI BDF but we can call pci_enable_msi(x) only once per
1411 * pci_dev.
1412 *
1413 ****************************************************************************/
1414
9f800de3 1415static int iommu_setup_msi(struct amd_iommu *iommu)
a80dc3e0
JR
1416{
1417 int r;
a80dc3e0 1418
9ddd592a
JR
1419 r = pci_enable_msi(iommu->dev);
1420 if (r)
1421 return r;
a80dc3e0 1422
72fe00f0
JR
1423 r = request_threaded_irq(iommu->dev->irq,
1424 amd_iommu_int_handler,
1425 amd_iommu_int_thread,
1426 0, "AMD-Vi",
3f398bc7 1427 iommu);
a80dc3e0
JR
1428
1429 if (r) {
1430 pci_disable_msi(iommu->dev);
9ddd592a 1431 return r;
a80dc3e0
JR
1432 }
1433
fab6afa3 1434 iommu->int_enabled = true;
1a29ac01 1435
a80dc3e0
JR
1436 return 0;
1437}
1438
05f92db9 1439static int iommu_init_msi(struct amd_iommu *iommu)
a80dc3e0 1440{
9ddd592a
JR
1441 int ret;
1442
a80dc3e0 1443 if (iommu->int_enabled)
9ddd592a 1444 goto enable_faults;
a80dc3e0 1445
82fcfc67 1446 if (iommu->dev->msi_cap)
9ddd592a
JR
1447 ret = iommu_setup_msi(iommu);
1448 else
1449 ret = -ENODEV;
1450
1451 if (ret)
1452 return ret;
a80dc3e0 1453
9ddd592a
JR
1454enable_faults:
1455 iommu_feature_enable(iommu, CONTROL_EVT_INT_EN);
a80dc3e0 1456
9ddd592a
JR
1457 if (iommu->ppr_log != NULL)
1458 iommu_feature_enable(iommu, CONTROL_PPFINT_EN);
1459
1460 return 0;
a80dc3e0
JR
1461}
1462
b65233a9
JR
1463/****************************************************************************
1464 *
1465 * The next functions belong to the third pass of parsing the ACPI
1466 * table. In this last pass the memory mapping requirements are
df805abb 1467 * gathered (like exclusion and unity mapping ranges).
b65233a9
JR
1468 *
1469 ****************************************************************************/
1470
be2a022c
JR
1471static void __init free_unity_maps(void)
1472{
1473 struct unity_map_entry *entry, *next;
1474
1475 list_for_each_entry_safe(entry, next, &amd_iommu_unity_map, list) {
1476 list_del(&entry->list);
1477 kfree(entry);
1478 }
1479}
1480
b65233a9 1481/* called when we find an exclusion range definition in ACPI */
be2a022c
JR
1482static int __init init_exclusion_range(struct ivmd_header *m)
1483{
1484 int i;
1485
1486 switch (m->type) {
1487 case ACPI_IVMD_TYPE:
1488 set_device_exclusion_range(m->devid, m);
1489 break;
1490 case ACPI_IVMD_TYPE_ALL:
3a61ec38 1491 for (i = 0; i <= amd_iommu_last_bdf; ++i)
be2a022c
JR
1492 set_device_exclusion_range(i, m);
1493 break;
1494 case ACPI_IVMD_TYPE_RANGE:
1495 for (i = m->devid; i <= m->aux; ++i)
1496 set_device_exclusion_range(i, m);
1497 break;
1498 default:
1499 break;
1500 }
1501
1502 return 0;
1503}
1504
b65233a9 1505/* called for unity map ACPI definition */
be2a022c
JR
1506static int __init init_unity_map_range(struct ivmd_header *m)
1507{
98f1ad25 1508 struct unity_map_entry *e = NULL;
02acc43a 1509 char *s;
be2a022c
JR
1510
1511 e = kzalloc(sizeof(*e), GFP_KERNEL);
1512 if (e == NULL)
1513 return -ENOMEM;
1514
1515 switch (m->type) {
1516 default:
0bc252f4
JR
1517 kfree(e);
1518 return 0;
be2a022c 1519 case ACPI_IVMD_TYPE:
02acc43a 1520 s = "IVMD_TYPEi\t\t\t";
be2a022c
JR
1521 e->devid_start = e->devid_end = m->devid;
1522 break;
1523 case ACPI_IVMD_TYPE_ALL:
02acc43a 1524 s = "IVMD_TYPE_ALL\t\t";
be2a022c
JR
1525 e->devid_start = 0;
1526 e->devid_end = amd_iommu_last_bdf;
1527 break;
1528 case ACPI_IVMD_TYPE_RANGE:
02acc43a 1529 s = "IVMD_TYPE_RANGE\t\t";
be2a022c
JR
1530 e->devid_start = m->devid;
1531 e->devid_end = m->aux;
1532 break;
1533 }
1534 e->address_start = PAGE_ALIGN(m->range_start);
1535 e->address_end = e->address_start + PAGE_ALIGN(m->range_length);
1536 e->prot = m->flags >> 1;
1537
02acc43a
JR
1538 DUMP_printk("%s devid_start: %02x:%02x.%x devid_end: %02x:%02x.%x"
1539 " range_start: %016llx range_end: %016llx flags: %x\n", s,
c5081cd7
SK
1540 PCI_BUS_NUM(e->devid_start), PCI_SLOT(e->devid_start),
1541 PCI_FUNC(e->devid_start), PCI_BUS_NUM(e->devid_end),
02acc43a
JR
1542 PCI_SLOT(e->devid_end), PCI_FUNC(e->devid_end),
1543 e->address_start, e->address_end, m->flags);
1544
be2a022c
JR
1545 list_add_tail(&e->list, &amd_iommu_unity_map);
1546
1547 return 0;
1548}
1549
b65233a9 1550/* iterates over all memory definitions we find in the ACPI table */
be2a022c
JR
1551static int __init init_memory_definitions(struct acpi_table_header *table)
1552{
1553 u8 *p = (u8 *)table, *end = (u8 *)table;
1554 struct ivmd_header *m;
1555
be2a022c
JR
1556 end += table->length;
1557 p += IVRS_HEADER_LENGTH;
1558
1559 while (p < end) {
1560 m = (struct ivmd_header *)p;
1561 if (m->flags & IVMD_FLAG_EXCL_RANGE)
1562 init_exclusion_range(m);
1563 else if (m->flags & IVMD_FLAG_UNITY_MAP)
1564 init_unity_map_range(m);
1565
1566 p += m->length;
1567 }
1568
1569 return 0;
1570}
1571
9f5f5fb3
JR
1572/*
1573 * Init the device table to not allow DMA access for devices and
1574 * suppress all page faults
1575 */
33f28c59 1576static void init_device_table_dma(void)
9f5f5fb3 1577{
0de66d5b 1578 u32 devid;
9f5f5fb3
JR
1579
1580 for (devid = 0; devid <= amd_iommu_last_bdf; ++devid) {
1581 set_dev_entry_bit(devid, DEV_ENTRY_VALID);
1582 set_dev_entry_bit(devid, DEV_ENTRY_TRANSLATION);
9f5f5fb3
JR
1583 }
1584}
1585
d04e0ba3
JR
1586static void __init uninit_device_table_dma(void)
1587{
1588 u32 devid;
1589
1590 for (devid = 0; devid <= amd_iommu_last_bdf; ++devid) {
1591 amd_iommu_dev_table[devid].data[0] = 0ULL;
1592 amd_iommu_dev_table[devid].data[1] = 0ULL;
1593 }
1594}
1595
33f28c59
JR
1596static void init_device_table(void)
1597{
1598 u32 devid;
1599
1600 if (!amd_iommu_irq_remap)
1601 return;
1602
1603 for (devid = 0; devid <= amd_iommu_last_bdf; ++devid)
1604 set_dev_entry_bit(devid, DEV_ENTRY_IRQ_TBL_EN);
1605}
1606
e9bf5197
JR
1607static void iommu_init_flags(struct amd_iommu *iommu)
1608{
1609 iommu->acpi_flags & IVHD_FLAG_HT_TUN_EN_MASK ?
1610 iommu_feature_enable(iommu, CONTROL_HT_TUN_EN) :
1611 iommu_feature_disable(iommu, CONTROL_HT_TUN_EN);
1612
1613 iommu->acpi_flags & IVHD_FLAG_PASSPW_EN_MASK ?
1614 iommu_feature_enable(iommu, CONTROL_PASSPW_EN) :
1615 iommu_feature_disable(iommu, CONTROL_PASSPW_EN);
1616
1617 iommu->acpi_flags & IVHD_FLAG_RESPASSPW_EN_MASK ?
1618 iommu_feature_enable(iommu, CONTROL_RESPASSPW_EN) :
1619 iommu_feature_disable(iommu, CONTROL_RESPASSPW_EN);
1620
1621 iommu->acpi_flags & IVHD_FLAG_ISOC_EN_MASK ?
1622 iommu_feature_enable(iommu, CONTROL_ISOC_EN) :
1623 iommu_feature_disable(iommu, CONTROL_ISOC_EN);
1624
1625 /*
1626 * make IOMMU memory accesses cache coherent
1627 */
1628 iommu_feature_enable(iommu, CONTROL_COHERENT_EN);
1456e9d2
JR
1629
1630 /* Set IOTLB invalidation timeout to 1s */
1631 iommu_set_inv_tlb_timeout(iommu, CTRL_INV_TO_1S);
e9bf5197
JR
1632}
1633
5bcd757f 1634static void iommu_apply_resume_quirks(struct amd_iommu *iommu)
4c894f47 1635{
5bcd757f
MG
1636 int i, j;
1637 u32 ioc_feature_control;
c1bf94ec 1638 struct pci_dev *pdev = iommu->root_pdev;
5bcd757f
MG
1639
1640 /* RD890 BIOSes may not have completely reconfigured the iommu */
c1bf94ec 1641 if (!is_rd890_iommu(iommu->dev) || !pdev)
5bcd757f
MG
1642 return;
1643
1644 /*
1645 * First, we need to ensure that the iommu is enabled. This is
1646 * controlled by a register in the northbridge
1647 */
5bcd757f
MG
1648
1649 /* Select Northbridge indirect register 0x75 and enable writing */
1650 pci_write_config_dword(pdev, 0x60, 0x75 | (1 << 7));
1651 pci_read_config_dword(pdev, 0x64, &ioc_feature_control);
1652
1653 /* Enable the iommu */
1654 if (!(ioc_feature_control & 0x1))
1655 pci_write_config_dword(pdev, 0x64, ioc_feature_control | 1);
1656
5bcd757f
MG
1657 /* Restore the iommu BAR */
1658 pci_write_config_dword(iommu->dev, iommu->cap_ptr + 4,
1659 iommu->stored_addr_lo);
1660 pci_write_config_dword(iommu->dev, iommu->cap_ptr + 8,
1661 iommu->stored_addr_hi);
1662
1663 /* Restore the l1 indirect regs for each of the 6 l1s */
1664 for (i = 0; i < 6; i++)
1665 for (j = 0; j < 0x12; j++)
1666 iommu_write_l1(iommu, i, j, iommu->stored_l1[i][j]);
1667
1668 /* Restore the l2 indirect regs */
1669 for (i = 0; i < 0x83; i++)
1670 iommu_write_l2(iommu, i, iommu->stored_l2[i]);
1671
1672 /* Lock PCI setup registers */
1673 pci_write_config_dword(iommu->dev, iommu->cap_ptr + 4,
1674 iommu->stored_addr_lo | 1);
4c894f47
JR
1675}
1676
b65233a9
JR
1677/*
1678 * This function finally enables all IOMMUs found in the system after
1679 * they have been initialized
1680 */
11ee5ac4 1681static void early_enable_iommus(void)
8736197b
JR
1682{
1683 struct amd_iommu *iommu;
1684
3bd22172 1685 for_each_iommu(iommu) {
a8c485bb 1686 iommu_disable(iommu);
e9bf5197 1687 iommu_init_flags(iommu);
58492e12
JR
1688 iommu_set_device_table(iommu);
1689 iommu_enable_command_buffer(iommu);
1690 iommu_enable_event_buffer(iommu);
8736197b
JR
1691 iommu_set_exclusion_range(iommu);
1692 iommu_enable(iommu);
7d0c5cc5 1693 iommu_flush_all_caches(iommu);
8736197b
JR
1694 }
1695}
1696
11ee5ac4
JR
1697static void enable_iommus_v2(void)
1698{
1699 struct amd_iommu *iommu;
1700
1701 for_each_iommu(iommu) {
1702 iommu_enable_ppr_log(iommu);
1703 iommu_enable_gt(iommu);
1704 }
1705}
1706
1707static void enable_iommus(void)
1708{
1709 early_enable_iommus();
1710
1711 enable_iommus_v2();
1712}
1713
92ac4320
JR
1714static void disable_iommus(void)
1715{
1716 struct amd_iommu *iommu;
1717
1718 for_each_iommu(iommu)
1719 iommu_disable(iommu);
1720}
1721
7441e9cb
JR
1722/*
1723 * Suspend/Resume support
1724 * disable suspend until real resume implemented
1725 */
1726
f3c6ea1b 1727static void amd_iommu_resume(void)
7441e9cb 1728{
5bcd757f
MG
1729 struct amd_iommu *iommu;
1730
1731 for_each_iommu(iommu)
1732 iommu_apply_resume_quirks(iommu);
1733
736501ee
JR
1734 /* re-load the hardware */
1735 enable_iommus();
3d9761e7
JR
1736
1737 amd_iommu_enable_interrupts();
7441e9cb
JR
1738}
1739
f3c6ea1b 1740static int amd_iommu_suspend(void)
7441e9cb 1741{
736501ee
JR
1742 /* disable IOMMUs to go out of the way for BIOS */
1743 disable_iommus();
1744
1745 return 0;
7441e9cb
JR
1746}
1747
f3c6ea1b 1748static struct syscore_ops amd_iommu_syscore_ops = {
7441e9cb
JR
1749 .suspend = amd_iommu_suspend,
1750 .resume = amd_iommu_resume,
1751};
1752
8704a1ba
JR
1753static void __init free_on_init_error(void)
1754{
0ea2c422
JR
1755 free_pages((unsigned long)irq_lookup_table,
1756 get_order(rlookup_table_size));
8704a1ba 1757
a591989a
JL
1758 kmem_cache_destroy(amd_iommu_irq_cache);
1759 amd_iommu_irq_cache = NULL;
8704a1ba
JR
1760
1761 free_pages((unsigned long)amd_iommu_rlookup_table,
1762 get_order(rlookup_table_size));
1763
1764 free_pages((unsigned long)amd_iommu_alias_table,
1765 get_order(alias_table_size));
1766
1767 free_pages((unsigned long)amd_iommu_dev_table,
1768 get_order(dev_table_size));
1769
1770 free_iommu_all();
1771
8704a1ba
JR
1772#ifdef CONFIG_GART_IOMMU
1773 /*
1774 * We failed to initialize the AMD IOMMU - try fallback to GART
1775 * if possible.
1776 */
1777 gart_iommu_init();
1778
1779#endif
1780}
1781
c2ff5cf5
JR
1782/* SB IOAPIC is always on this device in AMD systems */
1783#define IOAPIC_SB_DEVID ((0x00 << 8) | PCI_DEVFN(0x14, 0))
1784
eb1eb7ae
JR
1785static bool __init check_ioapic_information(void)
1786{
dfbb6d47 1787 const char *fw_bug = FW_BUG;
c2ff5cf5 1788 bool ret, has_sb_ioapic;
eb1eb7ae
JR
1789 int idx;
1790
c2ff5cf5
JR
1791 has_sb_ioapic = false;
1792 ret = false;
eb1eb7ae 1793
dfbb6d47
JR
1794 /*
1795 * If we have map overrides on the kernel command line the
1796 * messages in this function might not describe firmware bugs
1797 * anymore - so be careful
1798 */
1799 if (cmdline_maps)
1800 fw_bug = "";
1801
c2ff5cf5
JR
1802 for (idx = 0; idx < nr_ioapics; idx++) {
1803 int devid, id = mpc_ioapic_id(idx);
1804
1805 devid = get_ioapic_devid(id);
1806 if (devid < 0) {
dfbb6d47
JR
1807 pr_err("%sAMD-Vi: IOAPIC[%d] not in IVRS table\n",
1808 fw_bug, id);
c2ff5cf5
JR
1809 ret = false;
1810 } else if (devid == IOAPIC_SB_DEVID) {
1811 has_sb_ioapic = true;
1812 ret = true;
eb1eb7ae
JR
1813 }
1814 }
1815
c2ff5cf5
JR
1816 if (!has_sb_ioapic) {
1817 /*
1818 * We expect the SB IOAPIC to be listed in the IVRS
1819 * table. The system timer is connected to the SB IOAPIC
1820 * and if we don't have it in the list the system will
1821 * panic at boot time. This situation usually happens
1822 * when the BIOS is buggy and provides us the wrong
1823 * device id for the IOAPIC in the system.
1824 */
dfbb6d47 1825 pr_err("%sAMD-Vi: No southbridge IOAPIC found\n", fw_bug);
c2ff5cf5
JR
1826 }
1827
1828 if (!ret)
dfbb6d47 1829 pr_err("AMD-Vi: Disabling interrupt remapping\n");
c2ff5cf5
JR
1830
1831 return ret;
eb1eb7ae
JR
1832}
1833
d04e0ba3
JR
1834static void __init free_dma_resources(void)
1835{
d04e0ba3
JR
1836 free_pages((unsigned long)amd_iommu_pd_alloc_bitmap,
1837 get_order(MAX_DOMAIN_ID/8));
1838
1839 free_unity_maps();
1840}
1841
b65233a9 1842/*
8704a1ba
JR
1843 * This is the hardware init function for AMD IOMMU in the system.
1844 * This function is called either from amd_iommu_init or from the interrupt
1845 * remapping setup code.
b65233a9
JR
1846 *
1847 * This function basically parses the ACPI table for AMD IOMMU (IVRS)
1848 * three times:
1849 *
1850 * 1 pass) Find the highest PCI device id the driver has to handle.
1851 * Upon this information the size of the data structures is
1852 * determined that needs to be allocated.
1853 *
1854 * 2 pass) Initialize the data structures just allocated with the
1855 * information in the ACPI table about available AMD IOMMUs
1856 * in the system. It also maps the PCI devices in the
1857 * system to specific IOMMUs
1858 *
1859 * 3 pass) After the basic data structures are allocated and
1860 * initialized we update them with information about memory
1861 * remapping requirements parsed out of the ACPI table in
1862 * this last pass.
1863 *
8704a1ba
JR
1864 * After everything is set up the IOMMUs are enabled and the necessary
1865 * hotplug and suspend notifiers are registered.
b65233a9 1866 */
643511b3 1867static int __init early_amd_iommu_init(void)
fe74c9cf 1868{
02f3b3f5
JR
1869 struct acpi_table_header *ivrs_base;
1870 acpi_size ivrs_size;
1871 acpi_status status;
fe74c9cf
JR
1872 int i, ret = 0;
1873
643511b3 1874 if (!amd_iommu_detected)
8704a1ba
JR
1875 return -ENODEV;
1876
02f3b3f5
JR
1877 status = acpi_get_table_with_size("IVRS", 0, &ivrs_base, &ivrs_size);
1878 if (status == AE_NOT_FOUND)
1879 return -ENODEV;
1880 else if (ACPI_FAILURE(status)) {
1881 const char *err = acpi_format_exception(status);
1882 pr_err("AMD-Vi: IVRS table error: %s\n", err);
1883 return -EINVAL;
1884 }
1885
fe74c9cf
JR
1886 /*
1887 * First parse ACPI tables to find the largest Bus/Dev/Func
1888 * we need to handle. Upon this information the shared data
1889 * structures for the IOMMUs in the system will be allocated
1890 */
2c0ae172
JR
1891 ret = find_last_devid_acpi(ivrs_base);
1892 if (ret)
3551a708
JR
1893 goto out;
1894
c571484e
JR
1895 dev_table_size = tbl_size(DEV_TABLE_ENTRY_SIZE);
1896 alias_table_size = tbl_size(ALIAS_TABLE_ENTRY_SIZE);
1897 rlookup_table_size = tbl_size(RLOOKUP_TABLE_ENTRY_SIZE);
fe74c9cf 1898
fe74c9cf 1899 /* Device table - directly used by all IOMMUs */
8704a1ba 1900 ret = -ENOMEM;
5dc8bff0 1901 amd_iommu_dev_table = (void *)__get_free_pages(GFP_KERNEL | __GFP_ZERO,
fe74c9cf
JR
1902 get_order(dev_table_size));
1903 if (amd_iommu_dev_table == NULL)
1904 goto out;
1905
1906 /*
1907 * Alias table - map PCI Bus/Dev/Func to Bus/Dev/Func the
1908 * IOMMU see for that device
1909 */
1910 amd_iommu_alias_table = (void *)__get_free_pages(GFP_KERNEL,
1911 get_order(alias_table_size));
1912 if (amd_iommu_alias_table == NULL)
2c0ae172 1913 goto out;
fe74c9cf
JR
1914
1915 /* IOMMU rlookup table - find the IOMMU for a specific device */
83fd5cc6
JR
1916 amd_iommu_rlookup_table = (void *)__get_free_pages(
1917 GFP_KERNEL | __GFP_ZERO,
fe74c9cf
JR
1918 get_order(rlookup_table_size));
1919 if (amd_iommu_rlookup_table == NULL)
2c0ae172 1920 goto out;
fe74c9cf 1921
5dc8bff0
JR
1922 amd_iommu_pd_alloc_bitmap = (void *)__get_free_pages(
1923 GFP_KERNEL | __GFP_ZERO,
fe74c9cf
JR
1924 get_order(MAX_DOMAIN_ID/8));
1925 if (amd_iommu_pd_alloc_bitmap == NULL)
2c0ae172 1926 goto out;
fe74c9cf
JR
1927
1928 /*
5dc8bff0 1929 * let all alias entries point to itself
fe74c9cf 1930 */
3a61ec38 1931 for (i = 0; i <= amd_iommu_last_bdf; ++i)
fe74c9cf
JR
1932 amd_iommu_alias_table[i] = i;
1933
fe74c9cf
JR
1934 /*
1935 * never allocate domain 0 because its used as the non-allocated and
1936 * error value placeholder
1937 */
1938 amd_iommu_pd_alloc_bitmap[0] = 1;
1939
aeb26f55
JR
1940 spin_lock_init(&amd_iommu_pd_lock);
1941
fe74c9cf
JR
1942 /*
1943 * now the data structures are allocated and basically initialized
1944 * start the real acpi table scan
1945 */
02f3b3f5
JR
1946 ret = init_iommu_all(ivrs_base);
1947 if (ret)
2c0ae172 1948 goto out;
fe74c9cf 1949
eb1eb7ae
JR
1950 if (amd_iommu_irq_remap)
1951 amd_iommu_irq_remap = check_ioapic_information();
1952
05152a04
JR
1953 if (amd_iommu_irq_remap) {
1954 /*
1955 * Interrupt remapping enabled, create kmem_cache for the
1956 * remapping tables.
1957 */
83ed9c13 1958 ret = -ENOMEM;
05152a04
JR
1959 amd_iommu_irq_cache = kmem_cache_create("irq_remap_cache",
1960 MAX_IRQS_PER_TABLE * sizeof(u32),
1961 IRQ_TABLE_ALIGNMENT,
1962 0, NULL);
1963 if (!amd_iommu_irq_cache)
1964 goto out;
0ea2c422
JR
1965
1966 irq_lookup_table = (void *)__get_free_pages(
1967 GFP_KERNEL | __GFP_ZERO,
1968 get_order(rlookup_table_size));
1969 if (!irq_lookup_table)
1970 goto out;
05152a04
JR
1971 }
1972
02f3b3f5
JR
1973 ret = init_memory_definitions(ivrs_base);
1974 if (ret)
2c0ae172 1975 goto out;
3551a708 1976
eb1eb7ae
JR
1977 /* init the device table */
1978 init_device_table();
1979
8704a1ba 1980out:
02f3b3f5
JR
1981 /* Don't leak any ACPI memory */
1982 early_acpi_os_unmap_memory((char __iomem *)ivrs_base, ivrs_size);
1983 ivrs_base = NULL;
1984
643511b3
JR
1985 return ret;
1986}
1987
ae295142 1988static int amd_iommu_enable_interrupts(void)
3d9761e7
JR
1989{
1990 struct amd_iommu *iommu;
1991 int ret = 0;
1992
1993 for_each_iommu(iommu) {
1994 ret = iommu_init_msi(iommu);
1995 if (ret)
1996 goto out;
1997 }
1998
1999out:
2000 return ret;
2001}
2002
02f3b3f5
JR
2003static bool detect_ivrs(void)
2004{
2005 struct acpi_table_header *ivrs_base;
2006 acpi_size ivrs_size;
2007 acpi_status status;
2008
2009 status = acpi_get_table_with_size("IVRS", 0, &ivrs_base, &ivrs_size);
2010 if (status == AE_NOT_FOUND)
2011 return false;
2012 else if (ACPI_FAILURE(status)) {
2013 const char *err = acpi_format_exception(status);
2014 pr_err("AMD-Vi: IVRS table error: %s\n", err);
2015 return false;
2016 }
2017
2018 early_acpi_os_unmap_memory((char __iomem *)ivrs_base, ivrs_size);
2019
1adb7d31
JR
2020 /* Make sure ACS will be enabled during PCI probe */
2021 pci_request_acs();
2022
02f3b3f5
JR
2023 return true;
2024}
2025
2c0ae172 2026/****************************************************************************
8704a1ba 2027 *
2c0ae172
JR
2028 * AMD IOMMU Initialization State Machine
2029 *
2030 ****************************************************************************/
2031
2032static int __init state_next(void)
8704a1ba
JR
2033{
2034 int ret = 0;
2035
2c0ae172
JR
2036 switch (init_state) {
2037 case IOMMU_START_STATE:
2038 if (!detect_ivrs()) {
2039 init_state = IOMMU_NOT_FOUND;
2040 ret = -ENODEV;
2041 } else {
2042 init_state = IOMMU_IVRS_DETECTED;
2043 }
2044 break;
2045 case IOMMU_IVRS_DETECTED:
2046 ret = early_amd_iommu_init();
2047 init_state = ret ? IOMMU_INIT_ERROR : IOMMU_ACPI_FINISHED;
2048 break;
2049 case IOMMU_ACPI_FINISHED:
2050 early_enable_iommus();
2051 register_syscore_ops(&amd_iommu_syscore_ops);
2052 x86_platform.iommu_shutdown = disable_iommus;
2053 init_state = IOMMU_ENABLED;
2054 break;
2055 case IOMMU_ENABLED:
2056 ret = amd_iommu_init_pci();
2057 init_state = ret ? IOMMU_INIT_ERROR : IOMMU_PCI_INIT;
2058 enable_iommus_v2();
2059 break;
2060 case IOMMU_PCI_INIT:
2061 ret = amd_iommu_enable_interrupts();
2062 init_state = ret ? IOMMU_INIT_ERROR : IOMMU_INTERRUPTS_EN;
2063 break;
2064 case IOMMU_INTERRUPTS_EN:
1e6a7b04 2065 ret = amd_iommu_init_dma_ops();
2c0ae172
JR
2066 init_state = ret ? IOMMU_INIT_ERROR : IOMMU_DMA_OPS;
2067 break;
2068 case IOMMU_DMA_OPS:
2069 init_state = IOMMU_INITIALIZED;
2070 break;
2071 case IOMMU_INITIALIZED:
2072 /* Nothing to do */
2073 break;
2074 case IOMMU_NOT_FOUND:
2075 case IOMMU_INIT_ERROR:
2076 /* Error states => do nothing */
2077 ret = -EINVAL;
2078 break;
2079 default:
2080 /* Unknown state */
2081 BUG();
2082 }
3d9761e7 2083
2c0ae172
JR
2084 return ret;
2085}
7441e9cb 2086
2c0ae172
JR
2087static int __init iommu_go_to_state(enum iommu_init_state state)
2088{
2089 int ret = 0;
f5325094 2090
2c0ae172
JR
2091 while (init_state != state) {
2092 ret = state_next();
2093 if (init_state == IOMMU_NOT_FOUND ||
2094 init_state == IOMMU_INIT_ERROR)
2095 break;
2096 }
f2f12b6f 2097
fe74c9cf 2098 return ret;
2c0ae172 2099}
fe74c9cf 2100
6b474b82
JR
2101#ifdef CONFIG_IRQ_REMAP
2102int __init amd_iommu_prepare(void)
2103{
3f4cb7c0
TG
2104 int ret;
2105
7fa1c842 2106 amd_iommu_irq_remap = true;
84d07793 2107
3f4cb7c0
TG
2108 ret = iommu_go_to_state(IOMMU_ACPI_FINISHED);
2109 if (ret)
2110 return ret;
2111 return amd_iommu_irq_remap ? 0 : -ENODEV;
6b474b82 2112}
d7f07769 2113
6b474b82
JR
2114int __init amd_iommu_enable(void)
2115{
2116 int ret;
2117
2118 ret = iommu_go_to_state(IOMMU_ENABLED);
2119 if (ret)
2120 return ret;
d7f07769 2121
6b474b82 2122 irq_remapping_enabled = 1;
d7f07769 2123
6b474b82
JR
2124 return 0;
2125}
2126
2127void amd_iommu_disable(void)
2128{
2129 amd_iommu_suspend();
2130}
2131
2132int amd_iommu_reenable(int mode)
2133{
2134 amd_iommu_resume();
2135
2136 return 0;
2137}
d7f07769 2138
6b474b82
JR
2139int __init amd_iommu_enable_faulting(void)
2140{
2141 /* We enable MSI later when PCI is initialized */
2142 return 0;
2143}
2144#endif
d7f07769 2145
2c0ae172
JR
2146/*
2147 * This is the core init function for AMD IOMMU hardware in the system.
2148 * This function is called from the generic x86 DMA layer initialization
2149 * code.
2150 */
2151static int __init amd_iommu_init(void)
2152{
2153 int ret;
2154
2155 ret = iommu_go_to_state(IOMMU_INITIALIZED);
2156 if (ret) {
d04e0ba3
JR
2157 free_dma_resources();
2158 if (!irq_remapping_enabled) {
2159 disable_iommus();
2160 free_on_init_error();
2161 } else {
2162 struct amd_iommu *iommu;
2163
2164 uninit_device_table_dma();
2165 for_each_iommu(iommu)
2166 iommu_flush_all_caches(iommu);
2167 }
2c0ae172
JR
2168 }
2169
2170 return ret;
fe74c9cf
JR
2171}
2172
b65233a9
JR
2173/****************************************************************************
2174 *
2175 * Early detect code. This code runs at IOMMU detection time in the DMA
2176 * layer. It just looks if there is an IVRS ACPI table to detect AMD
2177 * IOMMUs
2178 *
2179 ****************************************************************************/
480125ba 2180int __init amd_iommu_detect(void)
ae7877de 2181{
2c0ae172 2182 int ret;
02f3b3f5 2183
75f1cdf1 2184 if (no_iommu || (iommu_detected && !gart_iommu_aperture))
480125ba 2185 return -ENODEV;
ae7877de 2186
a5235725 2187 if (amd_iommu_disabled)
480125ba 2188 return -ENODEV;
a5235725 2189
2c0ae172
JR
2190 ret = iommu_go_to_state(IOMMU_IVRS_DETECTED);
2191 if (ret)
2192 return ret;
11bd04f6 2193
02f3b3f5
JR
2194 amd_iommu_detected = true;
2195 iommu_detected = 1;
2196 x86_init.iommu.iommu_init = amd_iommu_init;
2197
4781bc42 2198 return 1;
ae7877de
JR
2199}
2200
b65233a9
JR
2201/****************************************************************************
2202 *
2203 * Parsing functions for the AMD IOMMU specific kernel command line
2204 * options.
2205 *
2206 ****************************************************************************/
2207
fefda117
JR
2208static int __init parse_amd_iommu_dump(char *str)
2209{
2210 amd_iommu_dump = true;
2211
2212 return 1;
2213}
2214
918ad6c5
JR
2215static int __init parse_amd_iommu_options(char *str)
2216{
2217 for (; *str; ++str) {
695b5676 2218 if (strncmp(str, "fullflush", 9) == 0)
afa9fdc2 2219 amd_iommu_unmap_flush = true;
a5235725
JR
2220 if (strncmp(str, "off", 3) == 0)
2221 amd_iommu_disabled = true;
5abcdba4
JR
2222 if (strncmp(str, "force_isolation", 15) == 0)
2223 amd_iommu_force_isolation = true;
918ad6c5
JR
2224 }
2225
2226 return 1;
2227}
2228
440e8998
JR
2229static int __init parse_ivrs_ioapic(char *str)
2230{
2231 unsigned int bus, dev, fn;
2232 int ret, id, i;
2233 u16 devid;
2234
2235 ret = sscanf(str, "[%d]=%x:%x.%x", &id, &bus, &dev, &fn);
2236
2237 if (ret != 4) {
2238 pr_err("AMD-Vi: Invalid command line: ivrs_ioapic%s\n", str);
2239 return 1;
2240 }
2241
2242 if (early_ioapic_map_size == EARLY_MAP_SIZE) {
2243 pr_err("AMD-Vi: Early IOAPIC map overflow - ignoring ivrs_ioapic%s\n",
2244 str);
2245 return 1;
2246 }
2247
2248 devid = ((bus & 0xff) << 8) | ((dev & 0x1f) << 3) | (fn & 0x7);
2249
dfbb6d47 2250 cmdline_maps = true;
440e8998
JR
2251 i = early_ioapic_map_size++;
2252 early_ioapic_map[i].id = id;
2253 early_ioapic_map[i].devid = devid;
2254 early_ioapic_map[i].cmd_line = true;
2255
2256 return 1;
2257}
2258
2259static int __init parse_ivrs_hpet(char *str)
2260{
2261 unsigned int bus, dev, fn;
2262 int ret, id, i;
2263 u16 devid;
2264
2265 ret = sscanf(str, "[%d]=%x:%x.%x", &id, &bus, &dev, &fn);
2266
2267 if (ret != 4) {
2268 pr_err("AMD-Vi: Invalid command line: ivrs_hpet%s\n", str);
2269 return 1;
2270 }
2271
2272 if (early_hpet_map_size == EARLY_MAP_SIZE) {
2273 pr_err("AMD-Vi: Early HPET map overflow - ignoring ivrs_hpet%s\n",
2274 str);
2275 return 1;
2276 }
2277
2278 devid = ((bus & 0xff) << 8) | ((dev & 0x1f) << 3) | (fn & 0x7);
2279
dfbb6d47 2280 cmdline_maps = true;
440e8998
JR
2281 i = early_hpet_map_size++;
2282 early_hpet_map[i].id = id;
2283 early_hpet_map[i].devid = devid;
2284 early_hpet_map[i].cmd_line = true;
2285
2286 return 1;
2287}
2288
2289__setup("amd_iommu_dump", parse_amd_iommu_dump);
2290__setup("amd_iommu=", parse_amd_iommu_options);
2291__setup("ivrs_ioapic", parse_ivrs_ioapic);
2292__setup("ivrs_hpet", parse_ivrs_hpet);
22e6daf4
KRW
2293
2294IOMMU_INIT_FINISH(amd_iommu_detect,
2295 gart_iommu_hole_init,
98f1ad25
JR
2296 NULL,
2297 NULL);
400a28a0
JR
2298
2299bool amd_iommu_v2_supported(void)
2300{
2301 return amd_iommu_v2_present;
2302}
2303EXPORT_SYMBOL(amd_iommu_v2_supported);
30861ddc
SK
2304
2305/****************************************************************************
2306 *
2307 * IOMMU EFR Performance Counter support functionality. This code allows
2308 * access to the IOMMU PC functionality.
2309 *
2310 ****************************************************************************/
2311
2312u8 amd_iommu_pc_get_max_banks(u16 devid)
2313{
2314 struct amd_iommu *iommu;
2315 u8 ret = 0;
2316
2317 /* locate the iommu governing the devid */
2318 iommu = amd_iommu_rlookup_table[devid];
2319 if (iommu)
2320 ret = iommu->max_banks;
2321
2322 return ret;
2323}
2324EXPORT_SYMBOL(amd_iommu_pc_get_max_banks);
2325
2326bool amd_iommu_pc_supported(void)
2327{
2328 return amd_iommu_pc_present;
2329}
2330EXPORT_SYMBOL(amd_iommu_pc_supported);
2331
2332u8 amd_iommu_pc_get_max_counters(u16 devid)
2333{
2334 struct amd_iommu *iommu;
2335 u8 ret = 0;
2336
2337 /* locate the iommu governing the devid */
2338 iommu = amd_iommu_rlookup_table[devid];
2339 if (iommu)
2340 ret = iommu->max_counters;
2341
2342 return ret;
2343}
2344EXPORT_SYMBOL(amd_iommu_pc_get_max_counters);
2345
2346int amd_iommu_pc_get_set_reg_val(u16 devid, u8 bank, u8 cntr, u8 fxn,
2347 u64 *value, bool is_write)
2348{
2349 struct amd_iommu *iommu;
2350 u32 offset;
2351 u32 max_offset_lim;
2352
2353 /* Make sure the IOMMU PC resource is available */
2354 if (!amd_iommu_pc_present)
2355 return -ENODEV;
2356
2357 /* Locate the iommu associated with the device ID */
2358 iommu = amd_iommu_rlookup_table[devid];
2359
2360 /* Check for valid iommu and pc register indexing */
2361 if (WARN_ON((iommu == NULL) || (fxn > 0x28) || (fxn & 7)))
2362 return -ENODEV;
2363
2364 offset = (u32)(((0x40|bank) << 12) | (cntr << 8) | fxn);
2365
2366 /* Limit the offset to the hw defined mmio region aperture */
2367 max_offset_lim = (u32)(((0x40|iommu->max_banks) << 12) |
2368 (iommu->max_counters << 8) | 0x28);
2369 if ((offset < MMIO_CNTR_REG_OFFSET) ||
2370 (offset > max_offset_lim))
2371 return -EINVAL;
2372
2373 if (is_write) {
2374 writel((u32)*value, iommu->mmio_base + offset);
2375 writel((*value >> 32), iommu->mmio_base + offset + 4);
2376 } else {
2377 *value = readl(iommu->mmio_base + offset + 4);
2378 *value <<= 32;
2379 *value = readl(iommu->mmio_base + offset);
2380 }
2381
2382 return 0;
2383}
2384EXPORT_SYMBOL(amd_iommu_pc_get_set_reg_val);
This page took 0.62094 seconds and 5 git commands to generate.