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