iommu/amd: Remove cmd_buf_size and evt_buf_size from struct amd_iommu
[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
58492e12
JR
524 return cmd_buf;
525}
526
93f1cc67
JR
527/*
528 * This function resets the command buffer if the IOMMU stopped fetching
529 * commands from it.
530 */
531void amd_iommu_reset_cmd_buffer(struct amd_iommu *iommu)
532{
533 iommu_feature_disable(iommu, CONTROL_CMDBUF_EN);
534
535 writel(0x00, iommu->mmio_base + MMIO_CMD_HEAD_OFFSET);
536 writel(0x00, iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
537
538 iommu_feature_enable(iommu, CONTROL_CMDBUF_EN);
539}
540
58492e12
JR
541/*
542 * This function writes the command buffer address to the hardware and
543 * enables it.
544 */
545static void iommu_enable_command_buffer(struct amd_iommu *iommu)
546{
547 u64 entry;
548
549 BUG_ON(iommu->cmd_buf == NULL);
550
551 entry = (u64)virt_to_phys(iommu->cmd_buf);
b36ca91e 552 entry |= MMIO_CMD_SIZE_512;
58492e12 553
b36ca91e 554 memcpy_toio(iommu->mmio_base + MMIO_CMD_BUF_OFFSET,
58492e12 555 &entry, sizeof(entry));
b36ca91e 556
93f1cc67 557 amd_iommu_reset_cmd_buffer(iommu);
b36ca91e
JR
558}
559
560static void __init free_command_buffer(struct amd_iommu *iommu)
561{
deba4bce 562 free_pages((unsigned long)iommu->cmd_buf, get_order(CMD_BUFFER_SIZE));
b36ca91e
JR
563}
564
335503e5
JR
565/* allocates the memory where the IOMMU will log its events to */
566static u8 * __init alloc_event_buffer(struct amd_iommu *iommu)
567{
335503e5
JR
568 iommu->evt_buf = (u8 *)__get_free_pages(GFP_KERNEL | __GFP_ZERO,
569 get_order(EVT_BUFFER_SIZE));
570
571 if (iommu->evt_buf == NULL)
572 return NULL;
573
58492e12
JR
574 return iommu->evt_buf;
575}
576
577static void iommu_enable_event_buffer(struct amd_iommu *iommu)
578{
579 u64 entry;
580
581 BUG_ON(iommu->evt_buf == NULL);
582
335503e5 583 entry = (u64)virt_to_phys(iommu->evt_buf) | EVT_LEN_MASK;
58492e12 584
335503e5
JR
585 memcpy_toio(iommu->mmio_base + MMIO_EVT_BUF_OFFSET,
586 &entry, sizeof(entry));
587
09067207
JR
588 /* set head and tail to zero manually */
589 writel(0x00, iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
590 writel(0x00, iommu->mmio_base + MMIO_EVT_TAIL_OFFSET);
591
58492e12 592 iommu_feature_enable(iommu, CONTROL_EVT_LOG_EN);
335503e5
JR
593}
594
595static void __init free_event_buffer(struct amd_iommu *iommu)
596{
597 free_pages((unsigned long)iommu->evt_buf, get_order(EVT_BUFFER_SIZE));
598}
599
1a29ac01
JR
600/* allocates the memory where the IOMMU will log its events to */
601static u8 * __init alloc_ppr_log(struct amd_iommu *iommu)
602{
603 iommu->ppr_log = (u8 *)__get_free_pages(GFP_KERNEL | __GFP_ZERO,
604 get_order(PPR_LOG_SIZE));
605
606 if (iommu->ppr_log == NULL)
607 return NULL;
608
609 return iommu->ppr_log;
610}
611
612static void iommu_enable_ppr_log(struct amd_iommu *iommu)
613{
614 u64 entry;
615
616 if (iommu->ppr_log == NULL)
617 return;
618
619 entry = (u64)virt_to_phys(iommu->ppr_log) | PPR_LOG_SIZE_512;
620
621 memcpy_toio(iommu->mmio_base + MMIO_PPR_LOG_OFFSET,
622 &entry, sizeof(entry));
623
624 /* set head and tail to zero manually */
625 writel(0x00, iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
626 writel(0x00, iommu->mmio_base + MMIO_PPR_TAIL_OFFSET);
627
628 iommu_feature_enable(iommu, CONTROL_PPFLOG_EN);
629 iommu_feature_enable(iommu, CONTROL_PPR_EN);
630}
631
632static void __init free_ppr_log(struct amd_iommu *iommu)
633{
634 if (iommu->ppr_log == NULL)
635 return;
636
637 free_pages((unsigned long)iommu->ppr_log, get_order(PPR_LOG_SIZE));
638}
639
cbc33a90
JR
640static void iommu_enable_gt(struct amd_iommu *iommu)
641{
642 if (!iommu_feature(iommu, FEATURE_GT))
643 return;
644
645 iommu_feature_enable(iommu, CONTROL_GT_EN);
646}
647
b65233a9 648/* sets a specific bit in the device table entry. */
3566b778
JR
649static void set_dev_entry_bit(u16 devid, u8 bit)
650{
ee6c2868
JR
651 int i = (bit >> 6) & 0x03;
652 int _bit = bit & 0x3f;
3566b778 653
ee6c2868 654 amd_iommu_dev_table[devid].data[i] |= (1UL << _bit);
3566b778
JR
655}
656
c5cca146
JR
657static int get_dev_entry_bit(u16 devid, u8 bit)
658{
ee6c2868
JR
659 int i = (bit >> 6) & 0x03;
660 int _bit = bit & 0x3f;
c5cca146 661
ee6c2868 662 return (amd_iommu_dev_table[devid].data[i] & (1UL << _bit)) >> _bit;
c5cca146
JR
663}
664
665
666void amd_iommu_apply_erratum_63(u16 devid)
667{
668 int sysmgt;
669
670 sysmgt = get_dev_entry_bit(devid, DEV_ENTRY_SYSMGT1) |
671 (get_dev_entry_bit(devid, DEV_ENTRY_SYSMGT2) << 1);
672
673 if (sysmgt == 0x01)
674 set_dev_entry_bit(devid, DEV_ENTRY_IW);
675}
676
5ff4789d
JR
677/* Writes the specific IOMMU for a device into the rlookup table */
678static void __init set_iommu_for_device(struct amd_iommu *iommu, u16 devid)
679{
680 amd_iommu_rlookup_table[devid] = iommu;
681}
682
b65233a9
JR
683/*
684 * This function takes the device specific flags read from the ACPI
685 * table and sets up the device table entry with that information
686 */
5ff4789d
JR
687static void __init set_dev_entry_from_acpi(struct amd_iommu *iommu,
688 u16 devid, u32 flags, u32 ext_flags)
3566b778
JR
689{
690 if (flags & ACPI_DEVFLAG_INITPASS)
691 set_dev_entry_bit(devid, DEV_ENTRY_INIT_PASS);
692 if (flags & ACPI_DEVFLAG_EXTINT)
693 set_dev_entry_bit(devid, DEV_ENTRY_EINT_PASS);
694 if (flags & ACPI_DEVFLAG_NMI)
695 set_dev_entry_bit(devid, DEV_ENTRY_NMI_PASS);
696 if (flags & ACPI_DEVFLAG_SYSMGT1)
697 set_dev_entry_bit(devid, DEV_ENTRY_SYSMGT1);
698 if (flags & ACPI_DEVFLAG_SYSMGT2)
699 set_dev_entry_bit(devid, DEV_ENTRY_SYSMGT2);
700 if (flags & ACPI_DEVFLAG_LINT0)
701 set_dev_entry_bit(devid, DEV_ENTRY_LINT0_PASS);
702 if (flags & ACPI_DEVFLAG_LINT1)
703 set_dev_entry_bit(devid, DEV_ENTRY_LINT1_PASS);
3566b778 704
c5cca146
JR
705 amd_iommu_apply_erratum_63(devid);
706
5ff4789d 707 set_iommu_for_device(iommu, devid);
3566b778
JR
708}
709
c50e3247 710static int __init add_special_device(u8 type, u8 id, u16 *devid, bool cmd_line)
6efed63b
JR
711{
712 struct devid_map *entry;
713 struct list_head *list;
714
31cff67f
JR
715 if (type == IVHD_SPECIAL_IOAPIC)
716 list = &ioapic_map;
717 else if (type == IVHD_SPECIAL_HPET)
718 list = &hpet_map;
719 else
6efed63b
JR
720 return -EINVAL;
721
31cff67f
JR
722 list_for_each_entry(entry, list, list) {
723 if (!(entry->id == id && entry->cmd_line))
724 continue;
725
726 pr_info("AMD-Vi: Command-line override present for %s id %d - ignoring\n",
727 type == IVHD_SPECIAL_IOAPIC ? "IOAPIC" : "HPET", id);
728
c50e3247
JR
729 *devid = entry->devid;
730
31cff67f
JR
731 return 0;
732 }
733
6efed63b
JR
734 entry = kzalloc(sizeof(*entry), GFP_KERNEL);
735 if (!entry)
736 return -ENOMEM;
737
31cff67f 738 entry->id = id;
c50e3247 739 entry->devid = *devid;
31cff67f 740 entry->cmd_line = cmd_line;
6efed63b
JR
741
742 list_add_tail(&entry->list, list);
743
744 return 0;
745}
746
235dacbc
JR
747static int __init add_early_maps(void)
748{
749 int i, ret;
750
751 for (i = 0; i < early_ioapic_map_size; ++i) {
752 ret = add_special_device(IVHD_SPECIAL_IOAPIC,
753 early_ioapic_map[i].id,
c50e3247 754 &early_ioapic_map[i].devid,
235dacbc
JR
755 early_ioapic_map[i].cmd_line);
756 if (ret)
757 return ret;
758 }
759
760 for (i = 0; i < early_hpet_map_size; ++i) {
761 ret = add_special_device(IVHD_SPECIAL_HPET,
762 early_hpet_map[i].id,
c50e3247 763 &early_hpet_map[i].devid,
235dacbc
JR
764 early_hpet_map[i].cmd_line);
765 if (ret)
766 return ret;
767 }
768
769 return 0;
770}
771
b65233a9 772/*
df805abb 773 * Reads the device exclusion range from ACPI and initializes the IOMMU with
b65233a9
JR
774 * it
775 */
3566b778
JR
776static void __init set_device_exclusion_range(u16 devid, struct ivmd_header *m)
777{
778 struct amd_iommu *iommu = amd_iommu_rlookup_table[devid];
779
780 if (!(m->flags & IVMD_FLAG_EXCL_RANGE))
781 return;
782
783 if (iommu) {
b65233a9
JR
784 /*
785 * We only can configure exclusion ranges per IOMMU, not
786 * per device. But we can enable the exclusion range per
787 * device. This is done here
788 */
2c16c9fd 789 set_dev_entry_bit(devid, DEV_ENTRY_EX);
3566b778
JR
790 iommu->exclusion_start = m->range_start;
791 iommu->exclusion_length = m->range_length;
792 }
793}
794
b65233a9
JR
795/*
796 * Takes a pointer to an AMD IOMMU entry in the ACPI table and
797 * initializes the hardware and our data structures with it.
798 */
6efed63b 799static int __init init_iommu_from_acpi(struct amd_iommu *iommu,
5d0c8e49
JR
800 struct ivhd_header *h)
801{
802 u8 *p = (u8 *)h;
803 u8 *end = p, flags = 0;
0de66d5b
JR
804 u16 devid = 0, devid_start = 0, devid_to = 0;
805 u32 dev_i, ext_flags = 0;
58a3bee5 806 bool alias = false;
5d0c8e49 807 struct ivhd_entry *e;
235dacbc
JR
808 int ret;
809
810
811 ret = add_early_maps();
812 if (ret)
813 return ret;
5d0c8e49
JR
814
815 /*
e9bf5197 816 * First save the recommended feature enable bits from ACPI
5d0c8e49 817 */
e9bf5197 818 iommu->acpi_flags = h->flags;
5d0c8e49
JR
819
820 /*
821 * Done. Now parse the device entries
822 */
823 p += sizeof(struct ivhd_header);
824 end += h->length;
825
42a698f4 826
5d0c8e49
JR
827 while (p < end) {
828 e = (struct ivhd_entry *)p;
829 switch (e->type) {
830 case IVHD_DEV_ALL:
42a698f4
JR
831
832 DUMP_printk(" DEV_ALL\t\t\t first devid: %02x:%02x.%x"
833 " last device %02x:%02x.%x flags: %02x\n",
c5081cd7 834 PCI_BUS_NUM(iommu->first_device),
42a698f4
JR
835 PCI_SLOT(iommu->first_device),
836 PCI_FUNC(iommu->first_device),
c5081cd7 837 PCI_BUS_NUM(iommu->last_device),
42a698f4
JR
838 PCI_SLOT(iommu->last_device),
839 PCI_FUNC(iommu->last_device),
840 e->flags);
841
5d0c8e49
JR
842 for (dev_i = iommu->first_device;
843 dev_i <= iommu->last_device; ++dev_i)
5ff4789d
JR
844 set_dev_entry_from_acpi(iommu, dev_i,
845 e->flags, 0);
5d0c8e49
JR
846 break;
847 case IVHD_DEV_SELECT:
42a698f4
JR
848
849 DUMP_printk(" DEV_SELECT\t\t\t devid: %02x:%02x.%x "
850 "flags: %02x\n",
c5081cd7 851 PCI_BUS_NUM(e->devid),
42a698f4
JR
852 PCI_SLOT(e->devid),
853 PCI_FUNC(e->devid),
854 e->flags);
855
5d0c8e49 856 devid = e->devid;
5ff4789d 857 set_dev_entry_from_acpi(iommu, devid, e->flags, 0);
5d0c8e49
JR
858 break;
859 case IVHD_DEV_SELECT_RANGE_START:
42a698f4
JR
860
861 DUMP_printk(" DEV_SELECT_RANGE_START\t "
862 "devid: %02x:%02x.%x flags: %02x\n",
c5081cd7 863 PCI_BUS_NUM(e->devid),
42a698f4
JR
864 PCI_SLOT(e->devid),
865 PCI_FUNC(e->devid),
866 e->flags);
867
5d0c8e49
JR
868 devid_start = e->devid;
869 flags = e->flags;
870 ext_flags = 0;
58a3bee5 871 alias = false;
5d0c8e49
JR
872 break;
873 case IVHD_DEV_ALIAS:
42a698f4
JR
874
875 DUMP_printk(" DEV_ALIAS\t\t\t devid: %02x:%02x.%x "
876 "flags: %02x devid_to: %02x:%02x.%x\n",
c5081cd7 877 PCI_BUS_NUM(e->devid),
42a698f4
JR
878 PCI_SLOT(e->devid),
879 PCI_FUNC(e->devid),
880 e->flags,
c5081cd7 881 PCI_BUS_NUM(e->ext >> 8),
42a698f4
JR
882 PCI_SLOT(e->ext >> 8),
883 PCI_FUNC(e->ext >> 8));
884
5d0c8e49
JR
885 devid = e->devid;
886 devid_to = e->ext >> 8;
7a6a3a08 887 set_dev_entry_from_acpi(iommu, devid , e->flags, 0);
7455aab1 888 set_dev_entry_from_acpi(iommu, devid_to, e->flags, 0);
5d0c8e49
JR
889 amd_iommu_alias_table[devid] = devid_to;
890 break;
891 case IVHD_DEV_ALIAS_RANGE:
42a698f4
JR
892
893 DUMP_printk(" DEV_ALIAS_RANGE\t\t "
894 "devid: %02x:%02x.%x flags: %02x "
895 "devid_to: %02x:%02x.%x\n",
c5081cd7 896 PCI_BUS_NUM(e->devid),
42a698f4
JR
897 PCI_SLOT(e->devid),
898 PCI_FUNC(e->devid),
899 e->flags,
c5081cd7 900 PCI_BUS_NUM(e->ext >> 8),
42a698f4
JR
901 PCI_SLOT(e->ext >> 8),
902 PCI_FUNC(e->ext >> 8));
903
5d0c8e49
JR
904 devid_start = e->devid;
905 flags = e->flags;
906 devid_to = e->ext >> 8;
907 ext_flags = 0;
58a3bee5 908 alias = true;
5d0c8e49
JR
909 break;
910 case IVHD_DEV_EXT_SELECT:
42a698f4
JR
911
912 DUMP_printk(" DEV_EXT_SELECT\t\t devid: %02x:%02x.%x "
913 "flags: %02x ext: %08x\n",
c5081cd7 914 PCI_BUS_NUM(e->devid),
42a698f4
JR
915 PCI_SLOT(e->devid),
916 PCI_FUNC(e->devid),
917 e->flags, e->ext);
918
5d0c8e49 919 devid = e->devid;
5ff4789d
JR
920 set_dev_entry_from_acpi(iommu, devid, e->flags,
921 e->ext);
5d0c8e49
JR
922 break;
923 case IVHD_DEV_EXT_SELECT_RANGE:
42a698f4
JR
924
925 DUMP_printk(" DEV_EXT_SELECT_RANGE\t devid: "
926 "%02x:%02x.%x flags: %02x ext: %08x\n",
c5081cd7 927 PCI_BUS_NUM(e->devid),
42a698f4
JR
928 PCI_SLOT(e->devid),
929 PCI_FUNC(e->devid),
930 e->flags, e->ext);
931
5d0c8e49
JR
932 devid_start = e->devid;
933 flags = e->flags;
934 ext_flags = e->ext;
58a3bee5 935 alias = false;
5d0c8e49
JR
936 break;
937 case IVHD_DEV_RANGE_END:
42a698f4
JR
938
939 DUMP_printk(" DEV_RANGE_END\t\t devid: %02x:%02x.%x\n",
c5081cd7 940 PCI_BUS_NUM(e->devid),
42a698f4
JR
941 PCI_SLOT(e->devid),
942 PCI_FUNC(e->devid));
943
5d0c8e49
JR
944 devid = e->devid;
945 for (dev_i = devid_start; dev_i <= devid; ++dev_i) {
7a6a3a08 946 if (alias) {
5d0c8e49 947 amd_iommu_alias_table[dev_i] = devid_to;
7a6a3a08
JR
948 set_dev_entry_from_acpi(iommu,
949 devid_to, flags, ext_flags);
950 }
951 set_dev_entry_from_acpi(iommu, dev_i,
952 flags, ext_flags);
5d0c8e49
JR
953 }
954 break;
6efed63b
JR
955 case IVHD_DEV_SPECIAL: {
956 u8 handle, type;
957 const char *var;
958 u16 devid;
959 int ret;
960
961 handle = e->ext & 0xff;
962 devid = (e->ext >> 8) & 0xffff;
963 type = (e->ext >> 24) & 0xff;
964
965 if (type == IVHD_SPECIAL_IOAPIC)
966 var = "IOAPIC";
967 else if (type == IVHD_SPECIAL_HPET)
968 var = "HPET";
969 else
970 var = "UNKNOWN";
971
972 DUMP_printk(" DEV_SPECIAL(%s[%d])\t\tdevid: %02x:%02x.%x\n",
973 var, (int)handle,
c5081cd7 974 PCI_BUS_NUM(devid),
6efed63b
JR
975 PCI_SLOT(devid),
976 PCI_FUNC(devid));
977
c50e3247 978 ret = add_special_device(type, handle, &devid, false);
6efed63b
JR
979 if (ret)
980 return ret;
c50e3247
JR
981
982 /*
983 * add_special_device might update the devid in case a
984 * command-line override is present. So call
985 * set_dev_entry_from_acpi after add_special_device.
986 */
987 set_dev_entry_from_acpi(iommu, devid, e->flags, 0);
988
6efed63b
JR
989 break;
990 }
5d0c8e49
JR
991 default:
992 break;
993 }
994
b514e555 995 p += ivhd_entry_length(p);
5d0c8e49 996 }
6efed63b
JR
997
998 return 0;
5d0c8e49
JR
999}
1000
b65233a9 1001/* Initializes the device->iommu mapping for the driver */
5d0c8e49
JR
1002static int __init init_iommu_devices(struct amd_iommu *iommu)
1003{
0de66d5b 1004 u32 i;
5d0c8e49
JR
1005
1006 for (i = iommu->first_device; i <= iommu->last_device; ++i)
1007 set_iommu_for_device(iommu, i);
1008
1009 return 0;
1010}
1011
e47d402d
JR
1012static void __init free_iommu_one(struct amd_iommu *iommu)
1013{
1014 free_command_buffer(iommu);
335503e5 1015 free_event_buffer(iommu);
1a29ac01 1016 free_ppr_log(iommu);
e47d402d
JR
1017 iommu_unmap_mmio_space(iommu);
1018}
1019
1020static void __init free_iommu_all(void)
1021{
1022 struct amd_iommu *iommu, *next;
1023
3bd22172 1024 for_each_iommu_safe(iommu, next) {
e47d402d
JR
1025 list_del(&iommu->list);
1026 free_iommu_one(iommu);
1027 kfree(iommu);
1028 }
1029}
1030
318fe782
SS
1031/*
1032 * Family15h Model 10h-1fh erratum 746 (IOMMU Logging May Stall Translations)
1033 * Workaround:
1034 * BIOS should disable L2B micellaneous clock gating by setting
1035 * L2_L2B_CK_GATE_CONTROL[CKGateL2BMiscDisable](D0F2xF4_x90[2]) = 1b
1036 */
e2f1a3bd 1037static void amd_iommu_erratum_746_workaround(struct amd_iommu *iommu)
318fe782
SS
1038{
1039 u32 value;
1040
1041 if ((boot_cpu_data.x86 != 0x15) ||
1042 (boot_cpu_data.x86_model < 0x10) ||
1043 (boot_cpu_data.x86_model > 0x1f))
1044 return;
1045
1046 pci_write_config_dword(iommu->dev, 0xf0, 0x90);
1047 pci_read_config_dword(iommu->dev, 0xf4, &value);
1048
1049 if (value & BIT(2))
1050 return;
1051
1052 /* Select NB indirect register 0x90 and enable writing */
1053 pci_write_config_dword(iommu->dev, 0xf0, 0x90 | (1 << 8));
1054
1055 pci_write_config_dword(iommu->dev, 0xf4, value | 0x4);
1056 pr_info("AMD-Vi: Applying erratum 746 workaround for IOMMU at %s\n",
1057 dev_name(&iommu->dev->dev));
1058
1059 /* Clear the enable writing bit */
1060 pci_write_config_dword(iommu->dev, 0xf0, 0x90);
1061}
1062
b65233a9
JR
1063/*
1064 * This function clues the initialization function for one IOMMU
1065 * together and also allocates the command buffer and programs the
1066 * hardware. It does NOT enable the IOMMU. This is done afterwards.
1067 */
e47d402d
JR
1068static int __init init_iommu_one(struct amd_iommu *iommu, struct ivhd_header *h)
1069{
6efed63b
JR
1070 int ret;
1071
e47d402d 1072 spin_lock_init(&iommu->lock);
bb52777e
JR
1073
1074 /* Add IOMMU to internal data structures */
e47d402d 1075 list_add_tail(&iommu->list, &amd_iommu_list);
bb52777e
JR
1076 iommu->index = amd_iommus_present++;
1077
1078 if (unlikely(iommu->index >= MAX_IOMMUS)) {
1079 WARN(1, "AMD-Vi: System has more IOMMUs than supported by this driver\n");
1080 return -ENOSYS;
1081 }
1082
1083 /* Index is fine - add IOMMU to the array */
1084 amd_iommus[iommu->index] = iommu;
e47d402d
JR
1085
1086 /*
1087 * Copy data from ACPI table entry to the iommu struct
1088 */
23c742db 1089 iommu->devid = h->devid;
e47d402d 1090 iommu->cap_ptr = h->cap_ptr;
ee893c24 1091 iommu->pci_seg = h->pci_seg;
e47d402d 1092 iommu->mmio_phys = h->mmio_phys;
30861ddc
SK
1093
1094 /* Check if IVHD EFR contains proper max banks/counters */
1095 if ((h->efr != 0) &&
1096 ((h->efr & (0xF << 13)) != 0) &&
1097 ((h->efr & (0x3F << 17)) != 0)) {
1098 iommu->mmio_phys_end = MMIO_REG_END_OFFSET;
1099 } else {
1100 iommu->mmio_phys_end = MMIO_CNTR_CONF_OFFSET;
1101 }
1102
1103 iommu->mmio_base = iommu_map_mmio_space(iommu->mmio_phys,
1104 iommu->mmio_phys_end);
e47d402d
JR
1105 if (!iommu->mmio_base)
1106 return -ENOMEM;
1107
e47d402d
JR
1108 iommu->cmd_buf = alloc_command_buffer(iommu);
1109 if (!iommu->cmd_buf)
1110 return -ENOMEM;
1111
335503e5
JR
1112 iommu->evt_buf = alloc_event_buffer(iommu);
1113 if (!iommu->evt_buf)
1114 return -ENOMEM;
1115
a80dc3e0
JR
1116 iommu->int_enabled = false;
1117
6efed63b
JR
1118 ret = init_iommu_from_acpi(iommu, h);
1119 if (ret)
1120 return ret;
f6fec00a 1121
7c71d306
JL
1122 ret = amd_iommu_create_irq_domain(iommu);
1123 if (ret)
1124 return ret;
1125
f6fec00a
JR
1126 /*
1127 * Make sure IOMMU is not considered to translate itself. The IVRS
1128 * table tells us so, but this is a lie!
1129 */
1130 amd_iommu_rlookup_table[iommu->devid] = NULL;
1131
e47d402d
JR
1132 init_iommu_devices(iommu);
1133
23c742db 1134 return 0;
e47d402d
JR
1135}
1136
b65233a9
JR
1137/*
1138 * Iterates over all IOMMU entries in the ACPI table, allocates the
1139 * IOMMU structure and initializes it with init_iommu_one()
1140 */
e47d402d
JR
1141static int __init init_iommu_all(struct acpi_table_header *table)
1142{
1143 u8 *p = (u8 *)table, *end = (u8 *)table;
1144 struct ivhd_header *h;
1145 struct amd_iommu *iommu;
1146 int ret;
1147
e47d402d
JR
1148 end += table->length;
1149 p += IVRS_HEADER_LENGTH;
1150
1151 while (p < end) {
1152 h = (struct ivhd_header *)p;
1153 switch (*p) {
1154 case ACPI_IVHD_TYPE:
9c72041f 1155
ae908c22 1156 DUMP_printk("device: %02x:%02x.%01x cap: %04x "
9c72041f 1157 "seg: %d flags: %01x info %04x\n",
c5081cd7 1158 PCI_BUS_NUM(h->devid), PCI_SLOT(h->devid),
9c72041f
JR
1159 PCI_FUNC(h->devid), h->cap_ptr,
1160 h->pci_seg, h->flags, h->info);
1161 DUMP_printk(" mmio-addr: %016llx\n",
1162 h->mmio_phys);
1163
e47d402d 1164 iommu = kzalloc(sizeof(struct amd_iommu), GFP_KERNEL);
02f3b3f5
JR
1165 if (iommu == NULL)
1166 return -ENOMEM;
3551a708 1167
e47d402d 1168 ret = init_iommu_one(iommu, h);
02f3b3f5
JR
1169 if (ret)
1170 return ret;
e47d402d
JR
1171 break;
1172 default:
1173 break;
1174 }
1175 p += h->length;
1176
1177 }
1178 WARN_ON(p != end);
1179
1180 return 0;
1181}
1182
30861ddc
SK
1183
1184static void init_iommu_perf_ctr(struct amd_iommu *iommu)
1185{
1186 u64 val = 0xabcd, val2 = 0;
1187
1188 if (!iommu_feature(iommu, FEATURE_PC))
1189 return;
1190
1191 amd_iommu_pc_present = true;
1192
1193 /* Check if the performance counters can be written to */
1194 if ((0 != amd_iommu_pc_get_set_reg_val(0, 0, 0, 0, &val, true)) ||
1195 (0 != amd_iommu_pc_get_set_reg_val(0, 0, 0, 0, &val2, false)) ||
1196 (val != val2)) {
1197 pr_err("AMD-Vi: Unable to write to IOMMU perf counter.\n");
1198 amd_iommu_pc_present = false;
1199 return;
1200 }
1201
1202 pr_info("AMD-Vi: IOMMU performance counters supported\n");
1203
1204 val = readl(iommu->mmio_base + MMIO_CNTR_CONF_OFFSET);
1205 iommu->max_banks = (u8) ((val >> 12) & 0x3f);
1206 iommu->max_counters = (u8) ((val >> 7) & 0xf);
1207}
1208
066f2e98
AW
1209static ssize_t amd_iommu_show_cap(struct device *dev,
1210 struct device_attribute *attr,
1211 char *buf)
1212{
1213 struct amd_iommu *iommu = dev_get_drvdata(dev);
1214 return sprintf(buf, "%x\n", iommu->cap);
1215}
1216static DEVICE_ATTR(cap, S_IRUGO, amd_iommu_show_cap, NULL);
1217
1218static ssize_t amd_iommu_show_features(struct device *dev,
1219 struct device_attribute *attr,
1220 char *buf)
1221{
1222 struct amd_iommu *iommu = dev_get_drvdata(dev);
1223 return sprintf(buf, "%llx\n", iommu->features);
1224}
1225static DEVICE_ATTR(features, S_IRUGO, amd_iommu_show_features, NULL);
1226
1227static struct attribute *amd_iommu_attrs[] = {
1228 &dev_attr_cap.attr,
1229 &dev_attr_features.attr,
1230 NULL,
1231};
1232
1233static struct attribute_group amd_iommu_group = {
1234 .name = "amd-iommu",
1235 .attrs = amd_iommu_attrs,
1236};
1237
1238static const struct attribute_group *amd_iommu_groups[] = {
1239 &amd_iommu_group,
1240 NULL,
1241};
30861ddc 1242
23c742db
JR
1243static int iommu_init_pci(struct amd_iommu *iommu)
1244{
1245 int cap_ptr = iommu->cap_ptr;
1246 u32 range, misc, low, high;
1247
c5081cd7 1248 iommu->dev = pci_get_bus_and_slot(PCI_BUS_NUM(iommu->devid),
23c742db
JR
1249 iommu->devid & 0xff);
1250 if (!iommu->dev)
1251 return -ENODEV;
1252
1253 pci_read_config_dword(iommu->dev, cap_ptr + MMIO_CAP_HDR_OFFSET,
1254 &iommu->cap);
1255 pci_read_config_dword(iommu->dev, cap_ptr + MMIO_RANGE_OFFSET,
1256 &range);
1257 pci_read_config_dword(iommu->dev, cap_ptr + MMIO_MISC_OFFSET,
1258 &misc);
1259
6f2729ba 1260 iommu->first_device = PCI_DEVID(MMIO_GET_BUS(range),
23c742db 1261 MMIO_GET_FD(range));
6f2729ba 1262 iommu->last_device = PCI_DEVID(MMIO_GET_BUS(range),
23c742db
JR
1263 MMIO_GET_LD(range));
1264
1265 if (!(iommu->cap & (1 << IOMMU_CAP_IOTLB)))
1266 amd_iommu_iotlb_sup = false;
1267
1268 /* read extended feature bits */
1269 low = readl(iommu->mmio_base + MMIO_EXT_FEATURES);
1270 high = readl(iommu->mmio_base + MMIO_EXT_FEATURES + 4);
1271
1272 iommu->features = ((u64)high << 32) | low;
1273
1274 if (iommu_feature(iommu, FEATURE_GT)) {
1275 int glxval;
a919a018
SS
1276 u32 max_pasid;
1277 u64 pasmax;
23c742db 1278
a919a018
SS
1279 pasmax = iommu->features & FEATURE_PASID_MASK;
1280 pasmax >>= FEATURE_PASID_SHIFT;
1281 max_pasid = (1 << (pasmax + 1)) - 1;
23c742db 1282
a919a018
SS
1283 amd_iommu_max_pasid = min(amd_iommu_max_pasid, max_pasid);
1284
1285 BUG_ON(amd_iommu_max_pasid & ~PASID_MASK);
23c742db
JR
1286
1287 glxval = iommu->features & FEATURE_GLXVAL_MASK;
1288 glxval >>= FEATURE_GLXVAL_SHIFT;
1289
1290 if (amd_iommu_max_glx_val == -1)
1291 amd_iommu_max_glx_val = glxval;
1292 else
1293 amd_iommu_max_glx_val = min(amd_iommu_max_glx_val, glxval);
1294 }
1295
1296 if (iommu_feature(iommu, FEATURE_GT) &&
1297 iommu_feature(iommu, FEATURE_PPR)) {
1298 iommu->is_iommu_v2 = true;
1299 amd_iommu_v2_present = true;
1300 }
1301
1302 if (iommu_feature(iommu, FEATURE_PPR)) {
1303 iommu->ppr_log = alloc_ppr_log(iommu);
1304 if (!iommu->ppr_log)
1305 return -ENOMEM;
1306 }
1307
1308 if (iommu->cap & (1UL << IOMMU_CAP_NPCACHE))
1309 amd_iommu_np_cache = true;
1310
30861ddc
SK
1311 init_iommu_perf_ctr(iommu);
1312
23c742db
JR
1313 if (is_rd890_iommu(iommu->dev)) {
1314 int i, j;
1315
1316 iommu->root_pdev = pci_get_bus_and_slot(iommu->dev->bus->number,
1317 PCI_DEVFN(0, 0));
1318
1319 /*
1320 * Some rd890 systems may not be fully reconfigured by the
1321 * BIOS, so it's necessary for us to store this information so
1322 * it can be reprogrammed on resume
1323 */
1324 pci_read_config_dword(iommu->dev, iommu->cap_ptr + 4,
1325 &iommu->stored_addr_lo);
1326 pci_read_config_dword(iommu->dev, iommu->cap_ptr + 8,
1327 &iommu->stored_addr_hi);
1328
1329 /* Low bit locks writes to configuration space */
1330 iommu->stored_addr_lo &= ~1;
1331
1332 for (i = 0; i < 6; i++)
1333 for (j = 0; j < 0x12; j++)
1334 iommu->stored_l1[i][j] = iommu_read_l1(iommu, i, j);
1335
1336 for (i = 0; i < 0x83; i++)
1337 iommu->stored_l2[i] = iommu_read_l2(iommu, i);
1338 }
1339
318fe782
SS
1340 amd_iommu_erratum_746_workaround(iommu);
1341
066f2e98
AW
1342 iommu->iommu_dev = iommu_device_create(&iommu->dev->dev, iommu,
1343 amd_iommu_groups, "ivhd%d",
1344 iommu->index);
1345
23c742db
JR
1346 return pci_enable_device(iommu->dev);
1347}
1348
4d121c32
JR
1349static void print_iommu_info(void)
1350{
1351 static const char * const feat_str[] = {
1352 "PreF", "PPR", "X2APIC", "NX", "GT", "[5]",
1353 "IA", "GA", "HE", "PC"
1354 };
1355 struct amd_iommu *iommu;
1356
1357 for_each_iommu(iommu) {
1358 int i;
1359
1360 pr_info("AMD-Vi: Found IOMMU at %s cap 0x%hx\n",
1361 dev_name(&iommu->dev->dev), iommu->cap_ptr);
1362
1363 if (iommu->cap & (1 << IOMMU_CAP_EFR)) {
1364 pr_info("AMD-Vi: Extended features: ");
2bd5ed00 1365 for (i = 0; i < ARRAY_SIZE(feat_str); ++i) {
4d121c32
JR
1366 if (iommu_feature(iommu, (1ULL << i)))
1367 pr_cont(" %s", feat_str[i]);
1368 }
30861ddc 1369 pr_cont("\n");
500c25ed 1370 }
4d121c32 1371 }
ebe60bbf
JR
1372 if (irq_remapping_enabled)
1373 pr_info("AMD-Vi: Interrupt remapping enabled\n");
4d121c32
JR
1374}
1375
2c0ae172 1376static int __init amd_iommu_init_pci(void)
23c742db
JR
1377{
1378 struct amd_iommu *iommu;
1379 int ret = 0;
1380
1381 for_each_iommu(iommu) {
1382 ret = iommu_init_pci(iommu);
1383 if (ret)
1384 break;
1385 }
1386
aafd8ba0
JR
1387 init_device_table_dma();
1388
1389 for_each_iommu(iommu)
1390 iommu_flush_all_caches(iommu);
1391
3a18404c 1392 ret = amd_iommu_init_api();
23c742db 1393
3a18404c
JR
1394 if (!ret)
1395 print_iommu_info();
4d121c32 1396
23c742db
JR
1397 return ret;
1398}
1399
a80dc3e0
JR
1400/****************************************************************************
1401 *
1402 * The following functions initialize the MSI interrupts for all IOMMUs
df805abb 1403 * in the system. It's a bit challenging because there could be multiple
a80dc3e0
JR
1404 * IOMMUs per PCI BDF but we can call pci_enable_msi(x) only once per
1405 * pci_dev.
1406 *
1407 ****************************************************************************/
1408
9f800de3 1409static int iommu_setup_msi(struct amd_iommu *iommu)
a80dc3e0
JR
1410{
1411 int r;
a80dc3e0 1412
9ddd592a
JR
1413 r = pci_enable_msi(iommu->dev);
1414 if (r)
1415 return r;
a80dc3e0 1416
72fe00f0
JR
1417 r = request_threaded_irq(iommu->dev->irq,
1418 amd_iommu_int_handler,
1419 amd_iommu_int_thread,
1420 0, "AMD-Vi",
3f398bc7 1421 iommu);
a80dc3e0
JR
1422
1423 if (r) {
1424 pci_disable_msi(iommu->dev);
9ddd592a 1425 return r;
a80dc3e0
JR
1426 }
1427
fab6afa3 1428 iommu->int_enabled = true;
1a29ac01 1429
a80dc3e0
JR
1430 return 0;
1431}
1432
05f92db9 1433static int iommu_init_msi(struct amd_iommu *iommu)
a80dc3e0 1434{
9ddd592a
JR
1435 int ret;
1436
a80dc3e0 1437 if (iommu->int_enabled)
9ddd592a 1438 goto enable_faults;
a80dc3e0 1439
82fcfc67 1440 if (iommu->dev->msi_cap)
9ddd592a
JR
1441 ret = iommu_setup_msi(iommu);
1442 else
1443 ret = -ENODEV;
1444
1445 if (ret)
1446 return ret;
a80dc3e0 1447
9ddd592a
JR
1448enable_faults:
1449 iommu_feature_enable(iommu, CONTROL_EVT_INT_EN);
a80dc3e0 1450
9ddd592a
JR
1451 if (iommu->ppr_log != NULL)
1452 iommu_feature_enable(iommu, CONTROL_PPFINT_EN);
1453
1454 return 0;
a80dc3e0
JR
1455}
1456
b65233a9
JR
1457/****************************************************************************
1458 *
1459 * The next functions belong to the third pass of parsing the ACPI
1460 * table. In this last pass the memory mapping requirements are
df805abb 1461 * gathered (like exclusion and unity mapping ranges).
b65233a9
JR
1462 *
1463 ****************************************************************************/
1464
be2a022c
JR
1465static void __init free_unity_maps(void)
1466{
1467 struct unity_map_entry *entry, *next;
1468
1469 list_for_each_entry_safe(entry, next, &amd_iommu_unity_map, list) {
1470 list_del(&entry->list);
1471 kfree(entry);
1472 }
1473}
1474
b65233a9 1475/* called when we find an exclusion range definition in ACPI */
be2a022c
JR
1476static int __init init_exclusion_range(struct ivmd_header *m)
1477{
1478 int i;
1479
1480 switch (m->type) {
1481 case ACPI_IVMD_TYPE:
1482 set_device_exclusion_range(m->devid, m);
1483 break;
1484 case ACPI_IVMD_TYPE_ALL:
3a61ec38 1485 for (i = 0; i <= amd_iommu_last_bdf; ++i)
be2a022c
JR
1486 set_device_exclusion_range(i, m);
1487 break;
1488 case ACPI_IVMD_TYPE_RANGE:
1489 for (i = m->devid; i <= m->aux; ++i)
1490 set_device_exclusion_range(i, m);
1491 break;
1492 default:
1493 break;
1494 }
1495
1496 return 0;
1497}
1498
b65233a9 1499/* called for unity map ACPI definition */
be2a022c
JR
1500static int __init init_unity_map_range(struct ivmd_header *m)
1501{
98f1ad25 1502 struct unity_map_entry *e = NULL;
02acc43a 1503 char *s;
be2a022c
JR
1504
1505 e = kzalloc(sizeof(*e), GFP_KERNEL);
1506 if (e == NULL)
1507 return -ENOMEM;
1508
1509 switch (m->type) {
1510 default:
0bc252f4
JR
1511 kfree(e);
1512 return 0;
be2a022c 1513 case ACPI_IVMD_TYPE:
02acc43a 1514 s = "IVMD_TYPEi\t\t\t";
be2a022c
JR
1515 e->devid_start = e->devid_end = m->devid;
1516 break;
1517 case ACPI_IVMD_TYPE_ALL:
02acc43a 1518 s = "IVMD_TYPE_ALL\t\t";
be2a022c
JR
1519 e->devid_start = 0;
1520 e->devid_end = amd_iommu_last_bdf;
1521 break;
1522 case ACPI_IVMD_TYPE_RANGE:
02acc43a 1523 s = "IVMD_TYPE_RANGE\t\t";
be2a022c
JR
1524 e->devid_start = m->devid;
1525 e->devid_end = m->aux;
1526 break;
1527 }
1528 e->address_start = PAGE_ALIGN(m->range_start);
1529 e->address_end = e->address_start + PAGE_ALIGN(m->range_length);
1530 e->prot = m->flags >> 1;
1531
02acc43a
JR
1532 DUMP_printk("%s devid_start: %02x:%02x.%x devid_end: %02x:%02x.%x"
1533 " range_start: %016llx range_end: %016llx flags: %x\n", s,
c5081cd7
SK
1534 PCI_BUS_NUM(e->devid_start), PCI_SLOT(e->devid_start),
1535 PCI_FUNC(e->devid_start), PCI_BUS_NUM(e->devid_end),
02acc43a
JR
1536 PCI_SLOT(e->devid_end), PCI_FUNC(e->devid_end),
1537 e->address_start, e->address_end, m->flags);
1538
be2a022c
JR
1539 list_add_tail(&e->list, &amd_iommu_unity_map);
1540
1541 return 0;
1542}
1543
b65233a9 1544/* iterates over all memory definitions we find in the ACPI table */
be2a022c
JR
1545static int __init init_memory_definitions(struct acpi_table_header *table)
1546{
1547 u8 *p = (u8 *)table, *end = (u8 *)table;
1548 struct ivmd_header *m;
1549
be2a022c
JR
1550 end += table->length;
1551 p += IVRS_HEADER_LENGTH;
1552
1553 while (p < end) {
1554 m = (struct ivmd_header *)p;
1555 if (m->flags & IVMD_FLAG_EXCL_RANGE)
1556 init_exclusion_range(m);
1557 else if (m->flags & IVMD_FLAG_UNITY_MAP)
1558 init_unity_map_range(m);
1559
1560 p += m->length;
1561 }
1562
1563 return 0;
1564}
1565
9f5f5fb3
JR
1566/*
1567 * Init the device table to not allow DMA access for devices and
1568 * suppress all page faults
1569 */
33f28c59 1570static void init_device_table_dma(void)
9f5f5fb3 1571{
0de66d5b 1572 u32 devid;
9f5f5fb3
JR
1573
1574 for (devid = 0; devid <= amd_iommu_last_bdf; ++devid) {
1575 set_dev_entry_bit(devid, DEV_ENTRY_VALID);
1576 set_dev_entry_bit(devid, DEV_ENTRY_TRANSLATION);
9f5f5fb3
JR
1577 }
1578}
1579
d04e0ba3
JR
1580static void __init uninit_device_table_dma(void)
1581{
1582 u32 devid;
1583
1584 for (devid = 0; devid <= amd_iommu_last_bdf; ++devid) {
1585 amd_iommu_dev_table[devid].data[0] = 0ULL;
1586 amd_iommu_dev_table[devid].data[1] = 0ULL;
1587 }
1588}
1589
33f28c59
JR
1590static void init_device_table(void)
1591{
1592 u32 devid;
1593
1594 if (!amd_iommu_irq_remap)
1595 return;
1596
1597 for (devid = 0; devid <= amd_iommu_last_bdf; ++devid)
1598 set_dev_entry_bit(devid, DEV_ENTRY_IRQ_TBL_EN);
1599}
1600
e9bf5197
JR
1601static void iommu_init_flags(struct amd_iommu *iommu)
1602{
1603 iommu->acpi_flags & IVHD_FLAG_HT_TUN_EN_MASK ?
1604 iommu_feature_enable(iommu, CONTROL_HT_TUN_EN) :
1605 iommu_feature_disable(iommu, CONTROL_HT_TUN_EN);
1606
1607 iommu->acpi_flags & IVHD_FLAG_PASSPW_EN_MASK ?
1608 iommu_feature_enable(iommu, CONTROL_PASSPW_EN) :
1609 iommu_feature_disable(iommu, CONTROL_PASSPW_EN);
1610
1611 iommu->acpi_flags & IVHD_FLAG_RESPASSPW_EN_MASK ?
1612 iommu_feature_enable(iommu, CONTROL_RESPASSPW_EN) :
1613 iommu_feature_disable(iommu, CONTROL_RESPASSPW_EN);
1614
1615 iommu->acpi_flags & IVHD_FLAG_ISOC_EN_MASK ?
1616 iommu_feature_enable(iommu, CONTROL_ISOC_EN) :
1617 iommu_feature_disable(iommu, CONTROL_ISOC_EN);
1618
1619 /*
1620 * make IOMMU memory accesses cache coherent
1621 */
1622 iommu_feature_enable(iommu, CONTROL_COHERENT_EN);
1456e9d2
JR
1623
1624 /* Set IOTLB invalidation timeout to 1s */
1625 iommu_set_inv_tlb_timeout(iommu, CTRL_INV_TO_1S);
e9bf5197
JR
1626}
1627
5bcd757f 1628static void iommu_apply_resume_quirks(struct amd_iommu *iommu)
4c894f47 1629{
5bcd757f
MG
1630 int i, j;
1631 u32 ioc_feature_control;
c1bf94ec 1632 struct pci_dev *pdev = iommu->root_pdev;
5bcd757f
MG
1633
1634 /* RD890 BIOSes may not have completely reconfigured the iommu */
c1bf94ec 1635 if (!is_rd890_iommu(iommu->dev) || !pdev)
5bcd757f
MG
1636 return;
1637
1638 /*
1639 * First, we need to ensure that the iommu is enabled. This is
1640 * controlled by a register in the northbridge
1641 */
5bcd757f
MG
1642
1643 /* Select Northbridge indirect register 0x75 and enable writing */
1644 pci_write_config_dword(pdev, 0x60, 0x75 | (1 << 7));
1645 pci_read_config_dword(pdev, 0x64, &ioc_feature_control);
1646
1647 /* Enable the iommu */
1648 if (!(ioc_feature_control & 0x1))
1649 pci_write_config_dword(pdev, 0x64, ioc_feature_control | 1);
1650
5bcd757f
MG
1651 /* Restore the iommu BAR */
1652 pci_write_config_dword(iommu->dev, iommu->cap_ptr + 4,
1653 iommu->stored_addr_lo);
1654 pci_write_config_dword(iommu->dev, iommu->cap_ptr + 8,
1655 iommu->stored_addr_hi);
1656
1657 /* Restore the l1 indirect regs for each of the 6 l1s */
1658 for (i = 0; i < 6; i++)
1659 for (j = 0; j < 0x12; j++)
1660 iommu_write_l1(iommu, i, j, iommu->stored_l1[i][j]);
1661
1662 /* Restore the l2 indirect regs */
1663 for (i = 0; i < 0x83; i++)
1664 iommu_write_l2(iommu, i, iommu->stored_l2[i]);
1665
1666 /* Lock PCI setup registers */
1667 pci_write_config_dword(iommu->dev, iommu->cap_ptr + 4,
1668 iommu->stored_addr_lo | 1);
4c894f47
JR
1669}
1670
b65233a9
JR
1671/*
1672 * This function finally enables all IOMMUs found in the system after
1673 * they have been initialized
1674 */
11ee5ac4 1675static void early_enable_iommus(void)
8736197b
JR
1676{
1677 struct amd_iommu *iommu;
1678
3bd22172 1679 for_each_iommu(iommu) {
a8c485bb 1680 iommu_disable(iommu);
e9bf5197 1681 iommu_init_flags(iommu);
58492e12
JR
1682 iommu_set_device_table(iommu);
1683 iommu_enable_command_buffer(iommu);
1684 iommu_enable_event_buffer(iommu);
8736197b
JR
1685 iommu_set_exclusion_range(iommu);
1686 iommu_enable(iommu);
7d0c5cc5 1687 iommu_flush_all_caches(iommu);
8736197b
JR
1688 }
1689}
1690
11ee5ac4
JR
1691static void enable_iommus_v2(void)
1692{
1693 struct amd_iommu *iommu;
1694
1695 for_each_iommu(iommu) {
1696 iommu_enable_ppr_log(iommu);
1697 iommu_enable_gt(iommu);
1698 }
1699}
1700
1701static void enable_iommus(void)
1702{
1703 early_enable_iommus();
1704
1705 enable_iommus_v2();
1706}
1707
92ac4320
JR
1708static void disable_iommus(void)
1709{
1710 struct amd_iommu *iommu;
1711
1712 for_each_iommu(iommu)
1713 iommu_disable(iommu);
1714}
1715
7441e9cb
JR
1716/*
1717 * Suspend/Resume support
1718 * disable suspend until real resume implemented
1719 */
1720
f3c6ea1b 1721static void amd_iommu_resume(void)
7441e9cb 1722{
5bcd757f
MG
1723 struct amd_iommu *iommu;
1724
1725 for_each_iommu(iommu)
1726 iommu_apply_resume_quirks(iommu);
1727
736501ee
JR
1728 /* re-load the hardware */
1729 enable_iommus();
3d9761e7
JR
1730
1731 amd_iommu_enable_interrupts();
7441e9cb
JR
1732}
1733
f3c6ea1b 1734static int amd_iommu_suspend(void)
7441e9cb 1735{
736501ee
JR
1736 /* disable IOMMUs to go out of the way for BIOS */
1737 disable_iommus();
1738
1739 return 0;
7441e9cb
JR
1740}
1741
f3c6ea1b 1742static struct syscore_ops amd_iommu_syscore_ops = {
7441e9cb
JR
1743 .suspend = amd_iommu_suspend,
1744 .resume = amd_iommu_resume,
1745};
1746
8704a1ba
JR
1747static void __init free_on_init_error(void)
1748{
0ea2c422
JR
1749 free_pages((unsigned long)irq_lookup_table,
1750 get_order(rlookup_table_size));
8704a1ba 1751
a591989a
JL
1752 kmem_cache_destroy(amd_iommu_irq_cache);
1753 amd_iommu_irq_cache = NULL;
8704a1ba
JR
1754
1755 free_pages((unsigned long)amd_iommu_rlookup_table,
1756 get_order(rlookup_table_size));
1757
1758 free_pages((unsigned long)amd_iommu_alias_table,
1759 get_order(alias_table_size));
1760
1761 free_pages((unsigned long)amd_iommu_dev_table,
1762 get_order(dev_table_size));
1763
1764 free_iommu_all();
1765
8704a1ba
JR
1766#ifdef CONFIG_GART_IOMMU
1767 /*
1768 * We failed to initialize the AMD IOMMU - try fallback to GART
1769 * if possible.
1770 */
1771 gart_iommu_init();
1772
1773#endif
1774}
1775
c2ff5cf5
JR
1776/* SB IOAPIC is always on this device in AMD systems */
1777#define IOAPIC_SB_DEVID ((0x00 << 8) | PCI_DEVFN(0x14, 0))
1778
eb1eb7ae
JR
1779static bool __init check_ioapic_information(void)
1780{
dfbb6d47 1781 const char *fw_bug = FW_BUG;
c2ff5cf5 1782 bool ret, has_sb_ioapic;
eb1eb7ae
JR
1783 int idx;
1784
c2ff5cf5
JR
1785 has_sb_ioapic = false;
1786 ret = false;
eb1eb7ae 1787
dfbb6d47
JR
1788 /*
1789 * If we have map overrides on the kernel command line the
1790 * messages in this function might not describe firmware bugs
1791 * anymore - so be careful
1792 */
1793 if (cmdline_maps)
1794 fw_bug = "";
1795
c2ff5cf5
JR
1796 for (idx = 0; idx < nr_ioapics; idx++) {
1797 int devid, id = mpc_ioapic_id(idx);
1798
1799 devid = get_ioapic_devid(id);
1800 if (devid < 0) {
dfbb6d47
JR
1801 pr_err("%sAMD-Vi: IOAPIC[%d] not in IVRS table\n",
1802 fw_bug, id);
c2ff5cf5
JR
1803 ret = false;
1804 } else if (devid == IOAPIC_SB_DEVID) {
1805 has_sb_ioapic = true;
1806 ret = true;
eb1eb7ae
JR
1807 }
1808 }
1809
c2ff5cf5
JR
1810 if (!has_sb_ioapic) {
1811 /*
1812 * We expect the SB IOAPIC to be listed in the IVRS
1813 * table. The system timer is connected to the SB IOAPIC
1814 * and if we don't have it in the list the system will
1815 * panic at boot time. This situation usually happens
1816 * when the BIOS is buggy and provides us the wrong
1817 * device id for the IOAPIC in the system.
1818 */
dfbb6d47 1819 pr_err("%sAMD-Vi: No southbridge IOAPIC found\n", fw_bug);
c2ff5cf5
JR
1820 }
1821
1822 if (!ret)
dfbb6d47 1823 pr_err("AMD-Vi: Disabling interrupt remapping\n");
c2ff5cf5
JR
1824
1825 return ret;
eb1eb7ae
JR
1826}
1827
d04e0ba3
JR
1828static void __init free_dma_resources(void)
1829{
d04e0ba3
JR
1830 free_pages((unsigned long)amd_iommu_pd_alloc_bitmap,
1831 get_order(MAX_DOMAIN_ID/8));
1832
1833 free_unity_maps();
1834}
1835
b65233a9 1836/*
8704a1ba
JR
1837 * This is the hardware init function for AMD IOMMU in the system.
1838 * This function is called either from amd_iommu_init or from the interrupt
1839 * remapping setup code.
b65233a9
JR
1840 *
1841 * This function basically parses the ACPI table for AMD IOMMU (IVRS)
1842 * three times:
1843 *
1844 * 1 pass) Find the highest PCI device id the driver has to handle.
1845 * Upon this information the size of the data structures is
1846 * determined that needs to be allocated.
1847 *
1848 * 2 pass) Initialize the data structures just allocated with the
1849 * information in the ACPI table about available AMD IOMMUs
1850 * in the system. It also maps the PCI devices in the
1851 * system to specific IOMMUs
1852 *
1853 * 3 pass) After the basic data structures are allocated and
1854 * initialized we update them with information about memory
1855 * remapping requirements parsed out of the ACPI table in
1856 * this last pass.
1857 *
8704a1ba
JR
1858 * After everything is set up the IOMMUs are enabled and the necessary
1859 * hotplug and suspend notifiers are registered.
b65233a9 1860 */
643511b3 1861static int __init early_amd_iommu_init(void)
fe74c9cf 1862{
02f3b3f5
JR
1863 struct acpi_table_header *ivrs_base;
1864 acpi_size ivrs_size;
1865 acpi_status status;
fe74c9cf
JR
1866 int i, ret = 0;
1867
643511b3 1868 if (!amd_iommu_detected)
8704a1ba
JR
1869 return -ENODEV;
1870
02f3b3f5
JR
1871 status = acpi_get_table_with_size("IVRS", 0, &ivrs_base, &ivrs_size);
1872 if (status == AE_NOT_FOUND)
1873 return -ENODEV;
1874 else if (ACPI_FAILURE(status)) {
1875 const char *err = acpi_format_exception(status);
1876 pr_err("AMD-Vi: IVRS table error: %s\n", err);
1877 return -EINVAL;
1878 }
1879
fe74c9cf
JR
1880 /*
1881 * First parse ACPI tables to find the largest Bus/Dev/Func
1882 * we need to handle. Upon this information the shared data
1883 * structures for the IOMMUs in the system will be allocated
1884 */
2c0ae172
JR
1885 ret = find_last_devid_acpi(ivrs_base);
1886 if (ret)
3551a708
JR
1887 goto out;
1888
c571484e
JR
1889 dev_table_size = tbl_size(DEV_TABLE_ENTRY_SIZE);
1890 alias_table_size = tbl_size(ALIAS_TABLE_ENTRY_SIZE);
1891 rlookup_table_size = tbl_size(RLOOKUP_TABLE_ENTRY_SIZE);
fe74c9cf 1892
fe74c9cf 1893 /* Device table - directly used by all IOMMUs */
8704a1ba 1894 ret = -ENOMEM;
5dc8bff0 1895 amd_iommu_dev_table = (void *)__get_free_pages(GFP_KERNEL | __GFP_ZERO,
fe74c9cf
JR
1896 get_order(dev_table_size));
1897 if (amd_iommu_dev_table == NULL)
1898 goto out;
1899
1900 /*
1901 * Alias table - map PCI Bus/Dev/Func to Bus/Dev/Func the
1902 * IOMMU see for that device
1903 */
1904 amd_iommu_alias_table = (void *)__get_free_pages(GFP_KERNEL,
1905 get_order(alias_table_size));
1906 if (amd_iommu_alias_table == NULL)
2c0ae172 1907 goto out;
fe74c9cf
JR
1908
1909 /* IOMMU rlookup table - find the IOMMU for a specific device */
83fd5cc6
JR
1910 amd_iommu_rlookup_table = (void *)__get_free_pages(
1911 GFP_KERNEL | __GFP_ZERO,
fe74c9cf
JR
1912 get_order(rlookup_table_size));
1913 if (amd_iommu_rlookup_table == NULL)
2c0ae172 1914 goto out;
fe74c9cf 1915
5dc8bff0
JR
1916 amd_iommu_pd_alloc_bitmap = (void *)__get_free_pages(
1917 GFP_KERNEL | __GFP_ZERO,
fe74c9cf
JR
1918 get_order(MAX_DOMAIN_ID/8));
1919 if (amd_iommu_pd_alloc_bitmap == NULL)
2c0ae172 1920 goto out;
fe74c9cf
JR
1921
1922 /*
5dc8bff0 1923 * let all alias entries point to itself
fe74c9cf 1924 */
3a61ec38 1925 for (i = 0; i <= amd_iommu_last_bdf; ++i)
fe74c9cf
JR
1926 amd_iommu_alias_table[i] = i;
1927
fe74c9cf
JR
1928 /*
1929 * never allocate domain 0 because its used as the non-allocated and
1930 * error value placeholder
1931 */
1932 amd_iommu_pd_alloc_bitmap[0] = 1;
1933
aeb26f55
JR
1934 spin_lock_init(&amd_iommu_pd_lock);
1935
fe74c9cf
JR
1936 /*
1937 * now the data structures are allocated and basically initialized
1938 * start the real acpi table scan
1939 */
02f3b3f5
JR
1940 ret = init_iommu_all(ivrs_base);
1941 if (ret)
2c0ae172 1942 goto out;
fe74c9cf 1943
eb1eb7ae
JR
1944 if (amd_iommu_irq_remap)
1945 amd_iommu_irq_remap = check_ioapic_information();
1946
05152a04
JR
1947 if (amd_iommu_irq_remap) {
1948 /*
1949 * Interrupt remapping enabled, create kmem_cache for the
1950 * remapping tables.
1951 */
83ed9c13 1952 ret = -ENOMEM;
05152a04
JR
1953 amd_iommu_irq_cache = kmem_cache_create("irq_remap_cache",
1954 MAX_IRQS_PER_TABLE * sizeof(u32),
1955 IRQ_TABLE_ALIGNMENT,
1956 0, NULL);
1957 if (!amd_iommu_irq_cache)
1958 goto out;
0ea2c422
JR
1959
1960 irq_lookup_table = (void *)__get_free_pages(
1961 GFP_KERNEL | __GFP_ZERO,
1962 get_order(rlookup_table_size));
1963 if (!irq_lookup_table)
1964 goto out;
05152a04
JR
1965 }
1966
02f3b3f5
JR
1967 ret = init_memory_definitions(ivrs_base);
1968 if (ret)
2c0ae172 1969 goto out;
3551a708 1970
eb1eb7ae
JR
1971 /* init the device table */
1972 init_device_table();
1973
8704a1ba 1974out:
02f3b3f5
JR
1975 /* Don't leak any ACPI memory */
1976 early_acpi_os_unmap_memory((char __iomem *)ivrs_base, ivrs_size);
1977 ivrs_base = NULL;
1978
643511b3
JR
1979 return ret;
1980}
1981
ae295142 1982static int amd_iommu_enable_interrupts(void)
3d9761e7
JR
1983{
1984 struct amd_iommu *iommu;
1985 int ret = 0;
1986
1987 for_each_iommu(iommu) {
1988 ret = iommu_init_msi(iommu);
1989 if (ret)
1990 goto out;
1991 }
1992
1993out:
1994 return ret;
1995}
1996
02f3b3f5
JR
1997static bool detect_ivrs(void)
1998{
1999 struct acpi_table_header *ivrs_base;
2000 acpi_size ivrs_size;
2001 acpi_status status;
2002
2003 status = acpi_get_table_with_size("IVRS", 0, &ivrs_base, &ivrs_size);
2004 if (status == AE_NOT_FOUND)
2005 return false;
2006 else if (ACPI_FAILURE(status)) {
2007 const char *err = acpi_format_exception(status);
2008 pr_err("AMD-Vi: IVRS table error: %s\n", err);
2009 return false;
2010 }
2011
2012 early_acpi_os_unmap_memory((char __iomem *)ivrs_base, ivrs_size);
2013
1adb7d31
JR
2014 /* Make sure ACS will be enabled during PCI probe */
2015 pci_request_acs();
2016
02f3b3f5
JR
2017 return true;
2018}
2019
2c0ae172 2020/****************************************************************************
8704a1ba 2021 *
2c0ae172
JR
2022 * AMD IOMMU Initialization State Machine
2023 *
2024 ****************************************************************************/
2025
2026static int __init state_next(void)
8704a1ba
JR
2027{
2028 int ret = 0;
2029
2c0ae172
JR
2030 switch (init_state) {
2031 case IOMMU_START_STATE:
2032 if (!detect_ivrs()) {
2033 init_state = IOMMU_NOT_FOUND;
2034 ret = -ENODEV;
2035 } else {
2036 init_state = IOMMU_IVRS_DETECTED;
2037 }
2038 break;
2039 case IOMMU_IVRS_DETECTED:
2040 ret = early_amd_iommu_init();
2041 init_state = ret ? IOMMU_INIT_ERROR : IOMMU_ACPI_FINISHED;
2042 break;
2043 case IOMMU_ACPI_FINISHED:
2044 early_enable_iommus();
2045 register_syscore_ops(&amd_iommu_syscore_ops);
2046 x86_platform.iommu_shutdown = disable_iommus;
2047 init_state = IOMMU_ENABLED;
2048 break;
2049 case IOMMU_ENABLED:
2050 ret = amd_iommu_init_pci();
2051 init_state = ret ? IOMMU_INIT_ERROR : IOMMU_PCI_INIT;
2052 enable_iommus_v2();
2053 break;
2054 case IOMMU_PCI_INIT:
2055 ret = amd_iommu_enable_interrupts();
2056 init_state = ret ? IOMMU_INIT_ERROR : IOMMU_INTERRUPTS_EN;
2057 break;
2058 case IOMMU_INTERRUPTS_EN:
1e6a7b04 2059 ret = amd_iommu_init_dma_ops();
2c0ae172
JR
2060 init_state = ret ? IOMMU_INIT_ERROR : IOMMU_DMA_OPS;
2061 break;
2062 case IOMMU_DMA_OPS:
2063 init_state = IOMMU_INITIALIZED;
2064 break;
2065 case IOMMU_INITIALIZED:
2066 /* Nothing to do */
2067 break;
2068 case IOMMU_NOT_FOUND:
2069 case IOMMU_INIT_ERROR:
2070 /* Error states => do nothing */
2071 ret = -EINVAL;
2072 break;
2073 default:
2074 /* Unknown state */
2075 BUG();
2076 }
3d9761e7 2077
2c0ae172
JR
2078 return ret;
2079}
7441e9cb 2080
2c0ae172
JR
2081static int __init iommu_go_to_state(enum iommu_init_state state)
2082{
2083 int ret = 0;
f5325094 2084
2c0ae172
JR
2085 while (init_state != state) {
2086 ret = state_next();
2087 if (init_state == IOMMU_NOT_FOUND ||
2088 init_state == IOMMU_INIT_ERROR)
2089 break;
2090 }
f2f12b6f 2091
fe74c9cf 2092 return ret;
2c0ae172 2093}
fe74c9cf 2094
6b474b82
JR
2095#ifdef CONFIG_IRQ_REMAP
2096int __init amd_iommu_prepare(void)
2097{
3f4cb7c0
TG
2098 int ret;
2099
7fa1c842 2100 amd_iommu_irq_remap = true;
84d07793 2101
3f4cb7c0
TG
2102 ret = iommu_go_to_state(IOMMU_ACPI_FINISHED);
2103 if (ret)
2104 return ret;
2105 return amd_iommu_irq_remap ? 0 : -ENODEV;
6b474b82 2106}
d7f07769 2107
6b474b82
JR
2108int __init amd_iommu_enable(void)
2109{
2110 int ret;
2111
2112 ret = iommu_go_to_state(IOMMU_ENABLED);
2113 if (ret)
2114 return ret;
d7f07769 2115
6b474b82 2116 irq_remapping_enabled = 1;
d7f07769 2117
6b474b82
JR
2118 return 0;
2119}
2120
2121void amd_iommu_disable(void)
2122{
2123 amd_iommu_suspend();
2124}
2125
2126int amd_iommu_reenable(int mode)
2127{
2128 amd_iommu_resume();
2129
2130 return 0;
2131}
d7f07769 2132
6b474b82
JR
2133int __init amd_iommu_enable_faulting(void)
2134{
2135 /* We enable MSI later when PCI is initialized */
2136 return 0;
2137}
2138#endif
d7f07769 2139
2c0ae172
JR
2140/*
2141 * This is the core init function for AMD IOMMU hardware in the system.
2142 * This function is called from the generic x86 DMA layer initialization
2143 * code.
2144 */
2145static int __init amd_iommu_init(void)
2146{
2147 int ret;
2148
2149 ret = iommu_go_to_state(IOMMU_INITIALIZED);
2150 if (ret) {
d04e0ba3
JR
2151 free_dma_resources();
2152 if (!irq_remapping_enabled) {
2153 disable_iommus();
2154 free_on_init_error();
2155 } else {
2156 struct amd_iommu *iommu;
2157
2158 uninit_device_table_dma();
2159 for_each_iommu(iommu)
2160 iommu_flush_all_caches(iommu);
2161 }
2c0ae172
JR
2162 }
2163
2164 return ret;
fe74c9cf
JR
2165}
2166
b65233a9
JR
2167/****************************************************************************
2168 *
2169 * Early detect code. This code runs at IOMMU detection time in the DMA
2170 * layer. It just looks if there is an IVRS ACPI table to detect AMD
2171 * IOMMUs
2172 *
2173 ****************************************************************************/
480125ba 2174int __init amd_iommu_detect(void)
ae7877de 2175{
2c0ae172 2176 int ret;
02f3b3f5 2177
75f1cdf1 2178 if (no_iommu || (iommu_detected && !gart_iommu_aperture))
480125ba 2179 return -ENODEV;
ae7877de 2180
a5235725 2181 if (amd_iommu_disabled)
480125ba 2182 return -ENODEV;
a5235725 2183
2c0ae172
JR
2184 ret = iommu_go_to_state(IOMMU_IVRS_DETECTED);
2185 if (ret)
2186 return ret;
11bd04f6 2187
02f3b3f5
JR
2188 amd_iommu_detected = true;
2189 iommu_detected = 1;
2190 x86_init.iommu.iommu_init = amd_iommu_init;
2191
4781bc42 2192 return 1;
ae7877de
JR
2193}
2194
b65233a9
JR
2195/****************************************************************************
2196 *
2197 * Parsing functions for the AMD IOMMU specific kernel command line
2198 * options.
2199 *
2200 ****************************************************************************/
2201
fefda117
JR
2202static int __init parse_amd_iommu_dump(char *str)
2203{
2204 amd_iommu_dump = true;
2205
2206 return 1;
2207}
2208
918ad6c5
JR
2209static int __init parse_amd_iommu_options(char *str)
2210{
2211 for (; *str; ++str) {
695b5676 2212 if (strncmp(str, "fullflush", 9) == 0)
afa9fdc2 2213 amd_iommu_unmap_flush = true;
a5235725
JR
2214 if (strncmp(str, "off", 3) == 0)
2215 amd_iommu_disabled = true;
5abcdba4
JR
2216 if (strncmp(str, "force_isolation", 15) == 0)
2217 amd_iommu_force_isolation = true;
918ad6c5
JR
2218 }
2219
2220 return 1;
2221}
2222
440e8998
JR
2223static int __init parse_ivrs_ioapic(char *str)
2224{
2225 unsigned int bus, dev, fn;
2226 int ret, id, i;
2227 u16 devid;
2228
2229 ret = sscanf(str, "[%d]=%x:%x.%x", &id, &bus, &dev, &fn);
2230
2231 if (ret != 4) {
2232 pr_err("AMD-Vi: Invalid command line: ivrs_ioapic%s\n", str);
2233 return 1;
2234 }
2235
2236 if (early_ioapic_map_size == EARLY_MAP_SIZE) {
2237 pr_err("AMD-Vi: Early IOAPIC map overflow - ignoring ivrs_ioapic%s\n",
2238 str);
2239 return 1;
2240 }
2241
2242 devid = ((bus & 0xff) << 8) | ((dev & 0x1f) << 3) | (fn & 0x7);
2243
dfbb6d47 2244 cmdline_maps = true;
440e8998
JR
2245 i = early_ioapic_map_size++;
2246 early_ioapic_map[i].id = id;
2247 early_ioapic_map[i].devid = devid;
2248 early_ioapic_map[i].cmd_line = true;
2249
2250 return 1;
2251}
2252
2253static int __init parse_ivrs_hpet(char *str)
2254{
2255 unsigned int bus, dev, fn;
2256 int ret, id, i;
2257 u16 devid;
2258
2259 ret = sscanf(str, "[%d]=%x:%x.%x", &id, &bus, &dev, &fn);
2260
2261 if (ret != 4) {
2262 pr_err("AMD-Vi: Invalid command line: ivrs_hpet%s\n", str);
2263 return 1;
2264 }
2265
2266 if (early_hpet_map_size == EARLY_MAP_SIZE) {
2267 pr_err("AMD-Vi: Early HPET map overflow - ignoring ivrs_hpet%s\n",
2268 str);
2269 return 1;
2270 }
2271
2272 devid = ((bus & 0xff) << 8) | ((dev & 0x1f) << 3) | (fn & 0x7);
2273
dfbb6d47 2274 cmdline_maps = true;
440e8998
JR
2275 i = early_hpet_map_size++;
2276 early_hpet_map[i].id = id;
2277 early_hpet_map[i].devid = devid;
2278 early_hpet_map[i].cmd_line = true;
2279
2280 return 1;
2281}
2282
2283__setup("amd_iommu_dump", parse_amd_iommu_dump);
2284__setup("amd_iommu=", parse_amd_iommu_options);
2285__setup("ivrs_ioapic", parse_ivrs_ioapic);
2286__setup("ivrs_hpet", parse_ivrs_hpet);
22e6daf4
KRW
2287
2288IOMMU_INIT_FINISH(amd_iommu_detect,
2289 gart_iommu_hole_init,
98f1ad25
JR
2290 NULL,
2291 NULL);
400a28a0
JR
2292
2293bool amd_iommu_v2_supported(void)
2294{
2295 return amd_iommu_v2_present;
2296}
2297EXPORT_SYMBOL(amd_iommu_v2_supported);
30861ddc
SK
2298
2299/****************************************************************************
2300 *
2301 * IOMMU EFR Performance Counter support functionality. This code allows
2302 * access to the IOMMU PC functionality.
2303 *
2304 ****************************************************************************/
2305
2306u8 amd_iommu_pc_get_max_banks(u16 devid)
2307{
2308 struct amd_iommu *iommu;
2309 u8 ret = 0;
2310
2311 /* locate the iommu governing the devid */
2312 iommu = amd_iommu_rlookup_table[devid];
2313 if (iommu)
2314 ret = iommu->max_banks;
2315
2316 return ret;
2317}
2318EXPORT_SYMBOL(amd_iommu_pc_get_max_banks);
2319
2320bool amd_iommu_pc_supported(void)
2321{
2322 return amd_iommu_pc_present;
2323}
2324EXPORT_SYMBOL(amd_iommu_pc_supported);
2325
2326u8 amd_iommu_pc_get_max_counters(u16 devid)
2327{
2328 struct amd_iommu *iommu;
2329 u8 ret = 0;
2330
2331 /* locate the iommu governing the devid */
2332 iommu = amd_iommu_rlookup_table[devid];
2333 if (iommu)
2334 ret = iommu->max_counters;
2335
2336 return ret;
2337}
2338EXPORT_SYMBOL(amd_iommu_pc_get_max_counters);
2339
2340int amd_iommu_pc_get_set_reg_val(u16 devid, u8 bank, u8 cntr, u8 fxn,
2341 u64 *value, bool is_write)
2342{
2343 struct amd_iommu *iommu;
2344 u32 offset;
2345 u32 max_offset_lim;
2346
2347 /* Make sure the IOMMU PC resource is available */
2348 if (!amd_iommu_pc_present)
2349 return -ENODEV;
2350
2351 /* Locate the iommu associated with the device ID */
2352 iommu = amd_iommu_rlookup_table[devid];
2353
2354 /* Check for valid iommu and pc register indexing */
2355 if (WARN_ON((iommu == NULL) || (fxn > 0x28) || (fxn & 7)))
2356 return -ENODEV;
2357
2358 offset = (u32)(((0x40|bank) << 12) | (cntr << 8) | fxn);
2359
2360 /* Limit the offset to the hw defined mmio region aperture */
2361 max_offset_lim = (u32)(((0x40|iommu->max_banks) << 12) |
2362 (iommu->max_counters << 8) | 0x28);
2363 if ((offset < MMIO_CNTR_REG_OFFSET) ||
2364 (offset > max_offset_lim))
2365 return -EINVAL;
2366
2367 if (is_write) {
2368 writel((u32)*value, iommu->mmio_base + offset);
2369 writel((*value >> 32), iommu->mmio_base + offset + 4);
2370 } else {
2371 *value = readl(iommu->mmio_base + offset + 4);
2372 *value <<= 32;
2373 *value = readl(iommu->mmio_base + offset);
2374 }
2375
2376 return 0;
2377}
2378EXPORT_SYMBOL(amd_iommu_pc_get_set_reg_val);
This page took 0.694723 seconds and 5 git commands to generate.