blob: 0c247032308eb9a7163e35f830ac626fa1b5150e [file] [log] [blame]
Joerg Roedelf6e2e6b2008-06-26 21:27:39 +02001/*
2 * Copyright (C) 2007-2008 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/gfp.h>
23#include <linux/list.h>
Joerg Roedel7441e9c2008-06-30 20:18:02 +020024#include <linux/sysdev.h>
Joerg Roedelf6e2e6b2008-06-26 21:27:39 +020025#include <asm/pci-direct.h>
26#include <asm/amd_iommu_types.h>
Joerg Roedelc6da9922008-06-26 21:28:06 +020027#include <asm/amd_iommu.h>
Joerg Roedelf6e2e6b2008-06-26 21:27:39 +020028#include <asm/gart.h>
29
30/*
31 * definitions for the ACPI scanning code
32 */
Joerg Roedelf6e2e6b2008-06-26 21:27:39 +020033#define DEVID(bus, devfn) (((bus) << 8) | (devfn))
34#define PCI_BUS(x) (((x) >> 8) & 0xff)
35#define IVRS_HEADER_LENGTH 48
Joerg Roedelf6e2e6b2008-06-26 21:27:39 +020036
37#define ACPI_IVHD_TYPE 0x10
38#define ACPI_IVMD_TYPE_ALL 0x20
39#define ACPI_IVMD_TYPE 0x21
40#define ACPI_IVMD_TYPE_RANGE 0x22
41
42#define IVHD_DEV_ALL 0x01
43#define IVHD_DEV_SELECT 0x02
44#define IVHD_DEV_SELECT_RANGE_START 0x03
45#define IVHD_DEV_RANGE_END 0x04
46#define IVHD_DEV_ALIAS 0x42
47#define IVHD_DEV_ALIAS_RANGE 0x43
48#define IVHD_DEV_EXT_SELECT 0x46
49#define IVHD_DEV_EXT_SELECT_RANGE 0x47
50
51#define IVHD_FLAG_HT_TUN_EN 0x00
52#define IVHD_FLAG_PASSPW_EN 0x01
53#define IVHD_FLAG_RESPASSPW_EN 0x02
54#define IVHD_FLAG_ISOC_EN 0x03
55
56#define IVMD_FLAG_EXCL_RANGE 0x08
57#define IVMD_FLAG_UNITY_MAP 0x01
58
59#define ACPI_DEVFLAG_INITPASS 0x01
60#define ACPI_DEVFLAG_EXTINT 0x02
61#define ACPI_DEVFLAG_NMI 0x04
62#define ACPI_DEVFLAG_SYSMGT1 0x10
63#define ACPI_DEVFLAG_SYSMGT2 0x20
64#define ACPI_DEVFLAG_LINT0 0x40
65#define ACPI_DEVFLAG_LINT1 0x80
66#define ACPI_DEVFLAG_ATSDIS 0x10000000
67
Joerg Roedelb65233a2008-07-11 17:14:21 +020068/*
69 * ACPI table definitions
70 *
71 * These data structures are laid over the table to parse the important values
72 * out of it.
73 */
74
75/*
76 * structure describing one IOMMU in the ACPI table. Typically followed by one
77 * or more ivhd_entrys.
78 */
Joerg Roedelf6e2e6b2008-06-26 21:27:39 +020079struct ivhd_header {
80 u8 type;
81 u8 flags;
82 u16 length;
83 u16 devid;
84 u16 cap_ptr;
85 u64 mmio_phys;
86 u16 pci_seg;
87 u16 info;
88 u32 reserved;
89} __attribute__((packed));
90
Joerg Roedelb65233a2008-07-11 17:14:21 +020091/*
92 * A device entry describing which devices a specific IOMMU translates and
93 * which requestor ids they use.
94 */
Joerg Roedelf6e2e6b2008-06-26 21:27:39 +020095struct ivhd_entry {
96 u8 type;
97 u16 devid;
98 u8 flags;
99 u32 ext;
100} __attribute__((packed));
101
Joerg Roedelb65233a2008-07-11 17:14:21 +0200102/*
103 * An AMD IOMMU memory definition structure. It defines things like exclusion
104 * ranges for devices and regions that should be unity mapped.
105 */
Joerg Roedelf6e2e6b2008-06-26 21:27:39 +0200106struct ivmd_header {
107 u8 type;
108 u8 flags;
109 u16 length;
110 u16 devid;
111 u16 aux;
112 u64 resv;
113 u64 range_start;
114 u64 range_length;
115} __attribute__((packed));
116
Joerg Roedelc1cbebe2008-07-03 19:35:10 +0200117static int __initdata amd_iommu_detected;
118
Joerg Roedelb65233a2008-07-11 17:14:21 +0200119u16 amd_iommu_last_bdf; /* largest PCI device id we have
120 to handle */
Joerg Roedel2e228472008-07-11 17:14:31 +0200121LIST_HEAD(amd_iommu_unity_map); /* a list of required unity mappings
Joerg Roedelb65233a2008-07-11 17:14:21 +0200122 we find in ACPI */
123unsigned amd_iommu_aperture_order = 26; /* size of aperture in power of 2 */
124int amd_iommu_isolate; /* if 1, device isolation is enabled */
Joerg Roedel928abd22008-06-26 21:27:40 +0200125
Joerg Roedel2e228472008-07-11 17:14:31 +0200126LIST_HEAD(amd_iommu_list); /* list of all AMD IOMMUs in the
Joerg Roedelb65233a2008-07-11 17:14:21 +0200127 system */
128
129/*
130 * Pointer to the device table which is shared by all AMD IOMMUs
131 * it is indexed by the PCI device id or the HT unit id and contains
132 * information about the domain the device belongs to as well as the
133 * page table root pointer.
134 */
Joerg Roedel928abd22008-06-26 21:27:40 +0200135struct dev_table_entry *amd_iommu_dev_table;
Joerg Roedelb65233a2008-07-11 17:14:21 +0200136
137/*
138 * The alias table is a driver specific data structure which contains the
139 * mappings of the PCI device ids to the actual requestor ids on the IOMMU.
140 * More than one device can share the same requestor id.
141 */
Joerg Roedel928abd22008-06-26 21:27:40 +0200142u16 *amd_iommu_alias_table;
Joerg Roedelb65233a2008-07-11 17:14:21 +0200143
144/*
145 * The rlookup table is used to find the IOMMU which is responsible
146 * for a specific device. It is also indexed by the PCI device id.
147 */
Joerg Roedel928abd22008-06-26 21:27:40 +0200148struct amd_iommu **amd_iommu_rlookup_table;
Joerg Roedelb65233a2008-07-11 17:14:21 +0200149
150/*
151 * The pd table (protection domain table) is used to find the protection domain
152 * data structure a device belongs to. Indexed with the PCI device id too.
153 */
Joerg Roedel928abd22008-06-26 21:27:40 +0200154struct protection_domain **amd_iommu_pd_table;
Joerg Roedelb65233a2008-07-11 17:14:21 +0200155
156/*
157 * AMD IOMMU allows up to 2^16 differend protection domains. This is a bitmap
158 * to know which ones are already in use.
159 */
Joerg Roedel928abd22008-06-26 21:27:40 +0200160unsigned long *amd_iommu_pd_alloc_bitmap;
161
Joerg Roedelb65233a2008-07-11 17:14:21 +0200162static u32 dev_table_size; /* size of the device table */
163static u32 alias_table_size; /* size of the alias table */
164static u32 rlookup_table_size; /* size if the rlookup table */
Joerg Roedel3e8064b2008-06-26 21:27:41 +0200165
Joerg Roedel208ec8c2008-07-11 17:14:24 +0200166static inline void update_last_devid(u16 devid)
167{
168 if (devid > amd_iommu_last_bdf)
169 amd_iommu_last_bdf = devid;
170}
171
Joerg Roedelc5714842008-07-11 17:14:25 +0200172static inline unsigned long tbl_size(int entry_size)
173{
174 unsigned shift = PAGE_SHIFT +
175 get_order(amd_iommu_last_bdf * entry_size);
176
177 return 1UL << shift;
178}
179
Joerg Roedelb65233a2008-07-11 17:14:21 +0200180/****************************************************************************
181 *
182 * AMD IOMMU MMIO register space handling functions
183 *
184 * These functions are used to program the IOMMU device registers in
185 * MMIO space required for that driver.
186 *
187 ****************************************************************************/
188
189/*
190 * This function set the exclusion range in the IOMMU. DMA accesses to the
191 * exclusion range are passed through untranslated
192 */
Joerg Roedelb2026aa2008-06-26 21:27:44 +0200193static void __init iommu_set_exclusion_range(struct amd_iommu *iommu)
194{
195 u64 start = iommu->exclusion_start & PAGE_MASK;
196 u64 limit = (start + iommu->exclusion_length) & PAGE_MASK;
197 u64 entry;
198
199 if (!iommu->exclusion_start)
200 return;
201
202 entry = start | MMIO_EXCL_ENABLE_MASK;
203 memcpy_toio(iommu->mmio_base + MMIO_EXCL_BASE_OFFSET,
204 &entry, sizeof(entry));
205
206 entry = limit;
207 memcpy_toio(iommu->mmio_base + MMIO_EXCL_LIMIT_OFFSET,
208 &entry, sizeof(entry));
209}
210
Joerg Roedelb65233a2008-07-11 17:14:21 +0200211/* Programs the physical address of the device table into the IOMMU hardware */
Joerg Roedelb2026aa2008-06-26 21:27:44 +0200212static void __init iommu_set_device_table(struct amd_iommu *iommu)
213{
214 u32 entry;
215
216 BUG_ON(iommu->mmio_base == NULL);
217
218 entry = virt_to_phys(amd_iommu_dev_table);
219 entry |= (dev_table_size >> 12) - 1;
220 memcpy_toio(iommu->mmio_base + MMIO_DEV_TABLE_OFFSET,
221 &entry, sizeof(entry));
222}
223
Joerg Roedelb65233a2008-07-11 17:14:21 +0200224/* Generic functions to enable/disable certain features of the IOMMU. */
Joerg Roedelb2026aa2008-06-26 21:27:44 +0200225static void __init iommu_feature_enable(struct amd_iommu *iommu, u8 bit)
226{
227 u32 ctrl;
228
229 ctrl = readl(iommu->mmio_base + MMIO_CONTROL_OFFSET);
230 ctrl |= (1 << bit);
231 writel(ctrl, iommu->mmio_base + MMIO_CONTROL_OFFSET);
232}
233
234static void __init iommu_feature_disable(struct amd_iommu *iommu, u8 bit)
235{
236 u32 ctrl;
237
238 ctrl = (u64)readl(iommu->mmio_base + MMIO_CONTROL_OFFSET);
239 ctrl &= ~(1 << bit);
240 writel(ctrl, iommu->mmio_base + MMIO_CONTROL_OFFSET);
241}
242
Joerg Roedelb65233a2008-07-11 17:14:21 +0200243/* Function to enable the hardware */
Joerg Roedelb2026aa2008-06-26 21:27:44 +0200244void __init iommu_enable(struct amd_iommu *iommu)
245{
Joerg Roedelb2026aa2008-06-26 21:27:44 +0200246 printk(KERN_INFO "AMD IOMMU: Enabling IOMMU at ");
247 print_devid(iommu->devid, 0);
248 printk(" cap 0x%hx\n", iommu->cap_ptr);
249
250 iommu_feature_enable(iommu, CONTROL_IOMMU_EN);
Joerg Roedelb2026aa2008-06-26 21:27:44 +0200251}
252
Joerg Roedelb65233a2008-07-11 17:14:21 +0200253/*
254 * mapping and unmapping functions for the IOMMU MMIO space. Each AMD IOMMU in
255 * the system has one.
256 */
Joerg Roedel6c567472008-06-26 21:27:43 +0200257static u8 * __init iommu_map_mmio_space(u64 address)
258{
259 u8 *ret;
260
261 if (!request_mem_region(address, MMIO_REGION_LENGTH, "amd_iommu"))
262 return NULL;
263
264 ret = ioremap_nocache(address, MMIO_REGION_LENGTH);
265 if (ret != NULL)
266 return ret;
267
268 release_mem_region(address, MMIO_REGION_LENGTH);
269
270 return NULL;
271}
272
273static void __init iommu_unmap_mmio_space(struct amd_iommu *iommu)
274{
275 if (iommu->mmio_base)
276 iounmap(iommu->mmio_base);
277 release_mem_region(iommu->mmio_phys, MMIO_REGION_LENGTH);
278}
279
Joerg Roedelb65233a2008-07-11 17:14:21 +0200280/****************************************************************************
281 *
282 * The functions below belong to the first pass of AMD IOMMU ACPI table
283 * parsing. In this pass we try to find out the highest device id this
284 * code has to handle. Upon this information the size of the shared data
285 * structures is determined later.
286 *
287 ****************************************************************************/
288
289/*
290 * This function reads the last device id the IOMMU has to handle from the PCI
291 * capability header for this IOMMU
292 */
Joerg Roedel3e8064b2008-06-26 21:27:41 +0200293static int __init find_last_devid_on_pci(int bus, int dev, int fn, int cap_ptr)
294{
295 u32 cap;
296
297 cap = read_pci_config(bus, dev, fn, cap_ptr+MMIO_RANGE_OFFSET);
Joerg Roedel208ec8c2008-07-11 17:14:24 +0200298 update_last_devid(DEVID(MMIO_GET_BUS(cap), MMIO_GET_LD(cap)));
Joerg Roedel3e8064b2008-06-26 21:27:41 +0200299
300 return 0;
301}
302
Joerg Roedelb65233a2008-07-11 17:14:21 +0200303/*
304 * After reading the highest device id from the IOMMU PCI capability header
305 * this function looks if there is a higher device id defined in the ACPI table
306 */
Joerg Roedel3e8064b2008-06-26 21:27:41 +0200307static int __init find_last_devid_from_ivhd(struct ivhd_header *h)
308{
309 u8 *p = (void *)h, *end = (void *)h;
310 struct ivhd_entry *dev;
311
312 p += sizeof(*h);
313 end += h->length;
314
315 find_last_devid_on_pci(PCI_BUS(h->devid),
316 PCI_SLOT(h->devid),
317 PCI_FUNC(h->devid),
318 h->cap_ptr);
319
320 while (p < end) {
321 dev = (struct ivhd_entry *)p;
322 switch (dev->type) {
323 case IVHD_DEV_SELECT:
324 case IVHD_DEV_RANGE_END:
325 case IVHD_DEV_ALIAS:
326 case IVHD_DEV_EXT_SELECT:
Joerg Roedelb65233a2008-07-11 17:14:21 +0200327 /* all the above subfield types refer to device ids */
Joerg Roedel208ec8c2008-07-11 17:14:24 +0200328 update_last_devid(dev->devid);
Joerg Roedel3e8064b2008-06-26 21:27:41 +0200329 break;
330 default:
331 break;
332 }
333 p += 0x04 << (*p >> 6);
334 }
335
336 WARN_ON(p != end);
337
338 return 0;
339}
340
Joerg Roedelb65233a2008-07-11 17:14:21 +0200341/*
342 * Iterate over all IVHD entries in the ACPI table and find the highest device
343 * id which we need to handle. This is the first of three functions which parse
344 * the ACPI table. So we check the checksum here.
345 */
Joerg Roedel3e8064b2008-06-26 21:27:41 +0200346static int __init find_last_devid_acpi(struct acpi_table_header *table)
347{
348 int i;
349 u8 checksum = 0, *p = (u8 *)table, *end = (u8 *)table;
350 struct ivhd_header *h;
351
352 /*
353 * Validate checksum here so we don't need to do it when
354 * we actually parse the table
355 */
356 for (i = 0; i < table->length; ++i)
357 checksum += p[i];
358 if (checksum != 0)
359 /* ACPI table corrupt */
360 return -ENODEV;
361
362 p += IVRS_HEADER_LENGTH;
363
364 end += table->length;
365 while (p < end) {
366 h = (struct ivhd_header *)p;
367 switch (h->type) {
368 case ACPI_IVHD_TYPE:
369 find_last_devid_from_ivhd(h);
370 break;
371 default:
372 break;
373 }
374 p += h->length;
375 }
376 WARN_ON(p != end);
377
378 return 0;
379}
380
Joerg Roedelb65233a2008-07-11 17:14:21 +0200381/****************************************************************************
382 *
383 * The following functions belong the the code path which parses the ACPI table
384 * the second time. In this ACPI parsing iteration we allocate IOMMU specific
385 * data structures, initialize the device/alias/rlookup table and also
386 * basically initialize the hardware.
387 *
388 ****************************************************************************/
389
390/*
391 * Allocates the command buffer. This buffer is per AMD IOMMU. We can
392 * write commands to that buffer later and the IOMMU will execute them
393 * asynchronously
394 */
Joerg Roedelb36ca912008-06-26 21:27:45 +0200395static u8 * __init alloc_command_buffer(struct amd_iommu *iommu)
396{
Joerg Roedeld0312b212008-07-11 17:14:29 +0200397 u8 *cmd_buf = (u8 *)__get_free_pages(GFP_KERNEL | __GFP_ZERO,
Joerg Roedelb36ca912008-06-26 21:27:45 +0200398 get_order(CMD_BUFFER_SIZE));
Joerg Roedeld0312b212008-07-11 17:14:29 +0200399 u64 entry;
Joerg Roedelb36ca912008-06-26 21:27:45 +0200400
401 if (cmd_buf == NULL)
402 return NULL;
403
404 iommu->cmd_buf_size = CMD_BUFFER_SIZE;
405
Joerg Roedelb36ca912008-06-26 21:27:45 +0200406 entry = (u64)virt_to_phys(cmd_buf);
407 entry |= MMIO_CMD_SIZE_512;
408 memcpy_toio(iommu->mmio_base + MMIO_CMD_BUF_OFFSET,
409 &entry, sizeof(entry));
410
411 iommu_feature_enable(iommu, CONTROL_CMDBUF_EN);
412
413 return cmd_buf;
414}
415
416static void __init free_command_buffer(struct amd_iommu *iommu)
417{
Joerg Roedel9a836de2008-07-11 17:14:26 +0200418 free_pages((unsigned long)iommu->cmd_buf, get_order(CMD_BUFFER_SIZE));
Joerg Roedelb36ca912008-06-26 21:27:45 +0200419}
420
Joerg Roedelb65233a2008-07-11 17:14:21 +0200421/* sets a specific bit in the device table entry. */
Joerg Roedel3566b772008-06-26 21:27:46 +0200422static void set_dev_entry_bit(u16 devid, u8 bit)
423{
424 int i = (bit >> 5) & 0x07;
425 int _bit = bit & 0x1f;
426
427 amd_iommu_dev_table[devid].data[i] |= (1 << _bit);
428}
429
Joerg Roedelb65233a2008-07-11 17:14:21 +0200430/*
431 * This function takes the device specific flags read from the ACPI
432 * table and sets up the device table entry with that information
433 */
Joerg Roedel3566b772008-06-26 21:27:46 +0200434static void __init set_dev_entry_from_acpi(u16 devid, u32 flags, u32 ext_flags)
435{
436 if (flags & ACPI_DEVFLAG_INITPASS)
437 set_dev_entry_bit(devid, DEV_ENTRY_INIT_PASS);
438 if (flags & ACPI_DEVFLAG_EXTINT)
439 set_dev_entry_bit(devid, DEV_ENTRY_EINT_PASS);
440 if (flags & ACPI_DEVFLAG_NMI)
441 set_dev_entry_bit(devid, DEV_ENTRY_NMI_PASS);
442 if (flags & ACPI_DEVFLAG_SYSMGT1)
443 set_dev_entry_bit(devid, DEV_ENTRY_SYSMGT1);
444 if (flags & ACPI_DEVFLAG_SYSMGT2)
445 set_dev_entry_bit(devid, DEV_ENTRY_SYSMGT2);
446 if (flags & ACPI_DEVFLAG_LINT0)
447 set_dev_entry_bit(devid, DEV_ENTRY_LINT0_PASS);
448 if (flags & ACPI_DEVFLAG_LINT1)
449 set_dev_entry_bit(devid, DEV_ENTRY_LINT1_PASS);
450}
451
Joerg Roedelb65233a2008-07-11 17:14:21 +0200452/* Writes the specific IOMMU for a device into the rlookup table */
Joerg Roedel3566b772008-06-26 21:27:46 +0200453static void __init set_iommu_for_device(struct amd_iommu *iommu, u16 devid)
454{
455 amd_iommu_rlookup_table[devid] = iommu;
456}
457
Joerg Roedelb65233a2008-07-11 17:14:21 +0200458/*
459 * Reads the device exclusion range from ACPI and initialize IOMMU with
460 * it
461 */
Joerg Roedel3566b772008-06-26 21:27:46 +0200462static void __init set_device_exclusion_range(u16 devid, struct ivmd_header *m)
463{
464 struct amd_iommu *iommu = amd_iommu_rlookup_table[devid];
465
466 if (!(m->flags & IVMD_FLAG_EXCL_RANGE))
467 return;
468
469 if (iommu) {
Joerg Roedelb65233a2008-07-11 17:14:21 +0200470 /*
471 * We only can configure exclusion ranges per IOMMU, not
472 * per device. But we can enable the exclusion range per
473 * device. This is done here
474 */
Joerg Roedel3566b772008-06-26 21:27:46 +0200475 set_dev_entry_bit(m->devid, DEV_ENTRY_EX);
476 iommu->exclusion_start = m->range_start;
477 iommu->exclusion_length = m->range_length;
478 }
479}
480
Joerg Roedelb65233a2008-07-11 17:14:21 +0200481/*
482 * This function reads some important data from the IOMMU PCI space and
483 * initializes the driver data structure with it. It reads the hardware
484 * capabilities and the first/last device entries
485 */
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200486static void __init init_iommu_from_pci(struct amd_iommu *iommu)
487{
488 int bus = PCI_BUS(iommu->devid);
489 int dev = PCI_SLOT(iommu->devid);
490 int fn = PCI_FUNC(iommu->devid);
491 int cap_ptr = iommu->cap_ptr;
492 u32 range;
493
494 iommu->cap = read_pci_config(bus, dev, fn, cap_ptr+MMIO_CAP_HDR_OFFSET);
495
496 range = read_pci_config(bus, dev, fn, cap_ptr+MMIO_RANGE_OFFSET);
497 iommu->first_device = DEVID(MMIO_GET_BUS(range), MMIO_GET_FD(range));
498 iommu->last_device = DEVID(MMIO_GET_BUS(range), MMIO_GET_LD(range));
499}
500
Joerg Roedelb65233a2008-07-11 17:14:21 +0200501/*
502 * Takes a pointer to an AMD IOMMU entry in the ACPI table and
503 * initializes the hardware and our data structures with it.
504 */
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200505static void __init init_iommu_from_acpi(struct amd_iommu *iommu,
506 struct ivhd_header *h)
507{
508 u8 *p = (u8 *)h;
509 u8 *end = p, flags = 0;
510 u16 dev_i, devid = 0, devid_start = 0, devid_to = 0;
511 u32 ext_flags = 0;
Joerg Roedel58a3bee2008-07-11 17:14:30 +0200512 bool alias = false;
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200513 struct ivhd_entry *e;
514
515 /*
516 * First set the recommended feature enable bits from ACPI
517 * into the IOMMU control registers
518 */
519 h->flags & IVHD_FLAG_HT_TUN_EN ?
520 iommu_feature_enable(iommu, CONTROL_HT_TUN_EN) :
521 iommu_feature_disable(iommu, CONTROL_HT_TUN_EN);
522
523 h->flags & IVHD_FLAG_PASSPW_EN ?
524 iommu_feature_enable(iommu, CONTROL_PASSPW_EN) :
525 iommu_feature_disable(iommu, CONTROL_PASSPW_EN);
526
527 h->flags & IVHD_FLAG_RESPASSPW_EN ?
528 iommu_feature_enable(iommu, CONTROL_RESPASSPW_EN) :
529 iommu_feature_disable(iommu, CONTROL_RESPASSPW_EN);
530
531 h->flags & IVHD_FLAG_ISOC_EN ?
532 iommu_feature_enable(iommu, CONTROL_ISOC_EN) :
533 iommu_feature_disable(iommu, CONTROL_ISOC_EN);
534
535 /*
536 * make IOMMU memory accesses cache coherent
537 */
538 iommu_feature_enable(iommu, CONTROL_COHERENT_EN);
539
540 /*
541 * Done. Now parse the device entries
542 */
543 p += sizeof(struct ivhd_header);
544 end += h->length;
545
546 while (p < end) {
547 e = (struct ivhd_entry *)p;
548 switch (e->type) {
549 case IVHD_DEV_ALL:
550 for (dev_i = iommu->first_device;
551 dev_i <= iommu->last_device; ++dev_i)
552 set_dev_entry_from_acpi(dev_i, e->flags, 0);
553 break;
554 case IVHD_DEV_SELECT:
555 devid = e->devid;
556 set_dev_entry_from_acpi(devid, e->flags, 0);
557 break;
558 case IVHD_DEV_SELECT_RANGE_START:
559 devid_start = e->devid;
560 flags = e->flags;
561 ext_flags = 0;
Joerg Roedel58a3bee2008-07-11 17:14:30 +0200562 alias = false;
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200563 break;
564 case IVHD_DEV_ALIAS:
565 devid = e->devid;
566 devid_to = e->ext >> 8;
567 set_dev_entry_from_acpi(devid, e->flags, 0);
568 amd_iommu_alias_table[devid] = devid_to;
569 break;
570 case IVHD_DEV_ALIAS_RANGE:
571 devid_start = e->devid;
572 flags = e->flags;
573 devid_to = e->ext >> 8;
574 ext_flags = 0;
Joerg Roedel58a3bee2008-07-11 17:14:30 +0200575 alias = true;
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200576 break;
577 case IVHD_DEV_EXT_SELECT:
578 devid = e->devid;
579 set_dev_entry_from_acpi(devid, e->flags, e->ext);
580 break;
581 case IVHD_DEV_EXT_SELECT_RANGE:
582 devid_start = e->devid;
583 flags = e->flags;
584 ext_flags = e->ext;
Joerg Roedel58a3bee2008-07-11 17:14:30 +0200585 alias = false;
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200586 break;
587 case IVHD_DEV_RANGE_END:
588 devid = e->devid;
589 for (dev_i = devid_start; dev_i <= devid; ++dev_i) {
590 if (alias)
591 amd_iommu_alias_table[dev_i] = devid_to;
592 set_dev_entry_from_acpi(
593 amd_iommu_alias_table[dev_i],
594 flags, ext_flags);
595 }
596 break;
597 default:
598 break;
599 }
600
601 p += 0x04 << (e->type >> 6);
602 }
603}
604
Joerg Roedelb65233a2008-07-11 17:14:21 +0200605/* Initializes the device->iommu mapping for the driver */
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200606static int __init init_iommu_devices(struct amd_iommu *iommu)
607{
608 u16 i;
609
610 for (i = iommu->first_device; i <= iommu->last_device; ++i)
611 set_iommu_for_device(iommu, i);
612
613 return 0;
614}
615
Joerg Roedele47d4022008-06-26 21:27:48 +0200616static void __init free_iommu_one(struct amd_iommu *iommu)
617{
618 free_command_buffer(iommu);
619 iommu_unmap_mmio_space(iommu);
620}
621
622static void __init free_iommu_all(void)
623{
624 struct amd_iommu *iommu, *next;
625
626 list_for_each_entry_safe(iommu, next, &amd_iommu_list, list) {
627 list_del(&iommu->list);
628 free_iommu_one(iommu);
629 kfree(iommu);
630 }
631}
632
Joerg Roedelb65233a2008-07-11 17:14:21 +0200633/*
634 * This function clues the initialization function for one IOMMU
635 * together and also allocates the command buffer and programs the
636 * hardware. It does NOT enable the IOMMU. This is done afterwards.
637 */
Joerg Roedele47d4022008-06-26 21:27:48 +0200638static int __init init_iommu_one(struct amd_iommu *iommu, struct ivhd_header *h)
639{
640 spin_lock_init(&iommu->lock);
641 list_add_tail(&iommu->list, &amd_iommu_list);
642
643 /*
644 * Copy data from ACPI table entry to the iommu struct
645 */
646 iommu->devid = h->devid;
647 iommu->cap_ptr = h->cap_ptr;
648 iommu->mmio_phys = h->mmio_phys;
649 iommu->mmio_base = iommu_map_mmio_space(h->mmio_phys);
650 if (!iommu->mmio_base)
651 return -ENOMEM;
652
653 iommu_set_device_table(iommu);
654 iommu->cmd_buf = alloc_command_buffer(iommu);
655 if (!iommu->cmd_buf)
656 return -ENOMEM;
657
658 init_iommu_from_pci(iommu);
659 init_iommu_from_acpi(iommu, h);
660 init_iommu_devices(iommu);
661
662 return 0;
663}
664
Joerg Roedelb65233a2008-07-11 17:14:21 +0200665/*
666 * Iterates over all IOMMU entries in the ACPI table, allocates the
667 * IOMMU structure and initializes it with init_iommu_one()
668 */
Joerg Roedele47d4022008-06-26 21:27:48 +0200669static int __init init_iommu_all(struct acpi_table_header *table)
670{
671 u8 *p = (u8 *)table, *end = (u8 *)table;
672 struct ivhd_header *h;
673 struct amd_iommu *iommu;
674 int ret;
675
Joerg Roedele47d4022008-06-26 21:27:48 +0200676 end += table->length;
677 p += IVRS_HEADER_LENGTH;
678
679 while (p < end) {
680 h = (struct ivhd_header *)p;
681 switch (*p) {
682 case ACPI_IVHD_TYPE:
683 iommu = kzalloc(sizeof(struct amd_iommu), GFP_KERNEL);
684 if (iommu == NULL)
685 return -ENOMEM;
686 ret = init_iommu_one(iommu, h);
687 if (ret)
688 return ret;
689 break;
690 default:
691 break;
692 }
693 p += h->length;
694
695 }
696 WARN_ON(p != end);
697
698 return 0;
699}
700
Joerg Roedelb65233a2008-07-11 17:14:21 +0200701/****************************************************************************
702 *
703 * The next functions belong to the third pass of parsing the ACPI
704 * table. In this last pass the memory mapping requirements are
705 * gathered (like exclusion and unity mapping reanges).
706 *
707 ****************************************************************************/
708
Joerg Roedelbe2a0222008-06-26 21:27:49 +0200709static void __init free_unity_maps(void)
710{
711 struct unity_map_entry *entry, *next;
712
713 list_for_each_entry_safe(entry, next, &amd_iommu_unity_map, list) {
714 list_del(&entry->list);
715 kfree(entry);
716 }
717}
718
Joerg Roedelb65233a2008-07-11 17:14:21 +0200719/* called when we find an exclusion range definition in ACPI */
Joerg Roedelbe2a0222008-06-26 21:27:49 +0200720static int __init init_exclusion_range(struct ivmd_header *m)
721{
722 int i;
723
724 switch (m->type) {
725 case ACPI_IVMD_TYPE:
726 set_device_exclusion_range(m->devid, m);
727 break;
728 case ACPI_IVMD_TYPE_ALL:
729 for (i = 0; i < amd_iommu_last_bdf; ++i)
730 set_device_exclusion_range(i, m);
731 break;
732 case ACPI_IVMD_TYPE_RANGE:
733 for (i = m->devid; i <= m->aux; ++i)
734 set_device_exclusion_range(i, m);
735 break;
736 default:
737 break;
738 }
739
740 return 0;
741}
742
Joerg Roedelb65233a2008-07-11 17:14:21 +0200743/* called for unity map ACPI definition */
Joerg Roedelbe2a0222008-06-26 21:27:49 +0200744static int __init init_unity_map_range(struct ivmd_header *m)
745{
746 struct unity_map_entry *e = 0;
747
748 e = kzalloc(sizeof(*e), GFP_KERNEL);
749 if (e == NULL)
750 return -ENOMEM;
751
752 switch (m->type) {
753 default:
754 case ACPI_IVMD_TYPE:
755 e->devid_start = e->devid_end = m->devid;
756 break;
757 case ACPI_IVMD_TYPE_ALL:
758 e->devid_start = 0;
759 e->devid_end = amd_iommu_last_bdf;
760 break;
761 case ACPI_IVMD_TYPE_RANGE:
762 e->devid_start = m->devid;
763 e->devid_end = m->aux;
764 break;
765 }
766 e->address_start = PAGE_ALIGN(m->range_start);
767 e->address_end = e->address_start + PAGE_ALIGN(m->range_length);
768 e->prot = m->flags >> 1;
769
770 list_add_tail(&e->list, &amd_iommu_unity_map);
771
772 return 0;
773}
774
Joerg Roedelb65233a2008-07-11 17:14:21 +0200775/* iterates over all memory definitions we find in the ACPI table */
Joerg Roedelbe2a0222008-06-26 21:27:49 +0200776static int __init init_memory_definitions(struct acpi_table_header *table)
777{
778 u8 *p = (u8 *)table, *end = (u8 *)table;
779 struct ivmd_header *m;
780
Joerg Roedelbe2a0222008-06-26 21:27:49 +0200781 end += table->length;
782 p += IVRS_HEADER_LENGTH;
783
784 while (p < end) {
785 m = (struct ivmd_header *)p;
786 if (m->flags & IVMD_FLAG_EXCL_RANGE)
787 init_exclusion_range(m);
788 else if (m->flags & IVMD_FLAG_UNITY_MAP)
789 init_unity_map_range(m);
790
791 p += m->length;
792 }
793
794 return 0;
795}
796
Joerg Roedelb65233a2008-07-11 17:14:21 +0200797/*
798 * This function finally enables all IOMMUs found in the system after
799 * they have been initialized
800 */
Joerg Roedel87361972008-06-26 21:28:07 +0200801static void __init enable_iommus(void)
802{
803 struct amd_iommu *iommu;
804
805 list_for_each_entry(iommu, &amd_iommu_list, list) {
806 iommu_set_exclusion_range(iommu);
807 iommu_enable(iommu);
808 }
809}
810
Joerg Roedel7441e9c2008-06-30 20:18:02 +0200811/*
812 * Suspend/Resume support
813 * disable suspend until real resume implemented
814 */
815
816static int amd_iommu_resume(struct sys_device *dev)
817{
818 return 0;
819}
820
821static int amd_iommu_suspend(struct sys_device *dev, pm_message_t state)
822{
823 return -EINVAL;
824}
825
826static struct sysdev_class amd_iommu_sysdev_class = {
827 .name = "amd_iommu",
828 .suspend = amd_iommu_suspend,
829 .resume = amd_iommu_resume,
830};
831
832static struct sys_device device_amd_iommu = {
833 .id = 0,
834 .cls = &amd_iommu_sysdev_class,
835};
836
Joerg Roedelb65233a2008-07-11 17:14:21 +0200837/*
838 * This is the core init function for AMD IOMMU hardware in the system.
839 * This function is called from the generic x86 DMA layer initialization
840 * code.
841 *
842 * This function basically parses the ACPI table for AMD IOMMU (IVRS)
843 * three times:
844 *
845 * 1 pass) Find the highest PCI device id the driver has to handle.
846 * Upon this information the size of the data structures is
847 * determined that needs to be allocated.
848 *
849 * 2 pass) Initialize the data structures just allocated with the
850 * information in the ACPI table about available AMD IOMMUs
851 * in the system. It also maps the PCI devices in the
852 * system to specific IOMMUs
853 *
854 * 3 pass) After the basic data structures are allocated and
855 * initialized we update them with information about memory
856 * remapping requirements parsed out of the ACPI table in
857 * this last pass.
858 *
859 * After that the hardware is initialized and ready to go. In the last
860 * step we do some Linux specific things like registering the driver in
861 * the dma_ops interface and initializing the suspend/resume support
862 * functions. Finally it prints some information about AMD IOMMUs and
863 * the driver state and enables the hardware.
864 */
Joerg Roedelfe74c9c2008-06-26 21:27:50 +0200865int __init amd_iommu_init(void)
866{
867 int i, ret = 0;
868
869
Joerg Roedel8b145182008-07-03 19:35:09 +0200870 if (no_iommu) {
Joerg Roedelfe74c9c2008-06-26 21:27:50 +0200871 printk(KERN_INFO "AMD IOMMU disabled by kernel command line\n");
872 return 0;
873 }
874
Joerg Roedelc1cbebe2008-07-03 19:35:10 +0200875 if (!amd_iommu_detected)
876 return -ENODEV;
877
Joerg Roedelfe74c9c2008-06-26 21:27:50 +0200878 /*
879 * First parse ACPI tables to find the largest Bus/Dev/Func
880 * we need to handle. Upon this information the shared data
881 * structures for the IOMMUs in the system will be allocated
882 */
883 if (acpi_table_parse("IVRS", find_last_devid_acpi) != 0)
884 return -ENODEV;
885
Joerg Roedelc5714842008-07-11 17:14:25 +0200886 dev_table_size = tbl_size(DEV_TABLE_ENTRY_SIZE);
887 alias_table_size = tbl_size(ALIAS_TABLE_ENTRY_SIZE);
888 rlookup_table_size = tbl_size(RLOOKUP_TABLE_ENTRY_SIZE);
Joerg Roedelfe74c9c2008-06-26 21:27:50 +0200889
890 ret = -ENOMEM;
891
892 /* Device table - directly used by all IOMMUs */
893 amd_iommu_dev_table = (void *)__get_free_pages(GFP_KERNEL,
894 get_order(dev_table_size));
895 if (amd_iommu_dev_table == NULL)
896 goto out;
897
898 /*
899 * Alias table - map PCI Bus/Dev/Func to Bus/Dev/Func the
900 * IOMMU see for that device
901 */
902 amd_iommu_alias_table = (void *)__get_free_pages(GFP_KERNEL,
903 get_order(alias_table_size));
904 if (amd_iommu_alias_table == NULL)
905 goto free;
906
907 /* IOMMU rlookup table - find the IOMMU for a specific device */
908 amd_iommu_rlookup_table = (void *)__get_free_pages(GFP_KERNEL,
909 get_order(rlookup_table_size));
910 if (amd_iommu_rlookup_table == NULL)
911 goto free;
912
913 /*
914 * Protection Domain table - maps devices to protection domains
915 * This table has the same size as the rlookup_table
916 */
917 amd_iommu_pd_table = (void *)__get_free_pages(GFP_KERNEL,
918 get_order(rlookup_table_size));
919 if (amd_iommu_pd_table == NULL)
920 goto free;
921
922 amd_iommu_pd_alloc_bitmap = (void *)__get_free_pages(GFP_KERNEL,
923 get_order(MAX_DOMAIN_ID/8));
924 if (amd_iommu_pd_alloc_bitmap == NULL)
925 goto free;
926
927 /*
928 * memory is allocated now; initialize the device table with all zeroes
929 * and let all alias entries point to itself
930 */
931 memset(amd_iommu_dev_table, 0, dev_table_size);
932 for (i = 0; i < amd_iommu_last_bdf; ++i)
933 amd_iommu_alias_table[i] = i;
934
935 memset(amd_iommu_pd_table, 0, rlookup_table_size);
936 memset(amd_iommu_pd_alloc_bitmap, 0, MAX_DOMAIN_ID / 8);
937
938 /*
939 * never allocate domain 0 because its used as the non-allocated and
940 * error value placeholder
941 */
942 amd_iommu_pd_alloc_bitmap[0] = 1;
943
944 /*
945 * now the data structures are allocated and basically initialized
946 * start the real acpi table scan
947 */
948 ret = -ENODEV;
949 if (acpi_table_parse("IVRS", init_iommu_all) != 0)
950 goto free;
951
952 if (acpi_table_parse("IVRS", init_memory_definitions) != 0)
953 goto free;
954
Joerg Roedel87361972008-06-26 21:28:07 +0200955 ret = amd_iommu_init_dma_ops();
956 if (ret)
957 goto free;
958
Joerg Roedel7441e9c2008-06-30 20:18:02 +0200959 ret = sysdev_class_register(&amd_iommu_sysdev_class);
960 if (ret)
961 goto free;
962
963 ret = sysdev_register(&device_amd_iommu);
964 if (ret)
965 goto free;
966
Joerg Roedel87361972008-06-26 21:28:07 +0200967 enable_iommus();
968
Joerg Roedelfe74c9c2008-06-26 21:27:50 +0200969 printk(KERN_INFO "AMD IOMMU: aperture size is %d MB\n",
970 (1 << (amd_iommu_aperture_order-20)));
971
972 printk(KERN_INFO "AMD IOMMU: device isolation ");
973 if (amd_iommu_isolate)
974 printk("enabled\n");
975 else
976 printk("disabled\n");
977
978out:
979 return ret;
980
981free:
Joerg Roedel9a836de2008-07-11 17:14:26 +0200982 free_pages((unsigned long)amd_iommu_pd_alloc_bitmap, 1);
Joerg Roedelfe74c9c2008-06-26 21:27:50 +0200983
Joerg Roedel9a836de2008-07-11 17:14:26 +0200984 free_pages((unsigned long)amd_iommu_pd_table,
985 get_order(rlookup_table_size));
Joerg Roedelfe74c9c2008-06-26 21:27:50 +0200986
Joerg Roedel9a836de2008-07-11 17:14:26 +0200987 free_pages((unsigned long)amd_iommu_rlookup_table,
988 get_order(rlookup_table_size));
Joerg Roedelfe74c9c2008-06-26 21:27:50 +0200989
Joerg Roedel9a836de2008-07-11 17:14:26 +0200990 free_pages((unsigned long)amd_iommu_alias_table,
991 get_order(alias_table_size));
Joerg Roedelfe74c9c2008-06-26 21:27:50 +0200992
Joerg Roedel9a836de2008-07-11 17:14:26 +0200993 free_pages((unsigned long)amd_iommu_dev_table,
994 get_order(dev_table_size));
Joerg Roedelfe74c9c2008-06-26 21:27:50 +0200995
996 free_iommu_all();
997
998 free_unity_maps();
999
1000 goto out;
1001}
1002
Joerg Roedelb65233a2008-07-11 17:14:21 +02001003/****************************************************************************
1004 *
1005 * Early detect code. This code runs at IOMMU detection time in the DMA
1006 * layer. It just looks if there is an IVRS ACPI table to detect AMD
1007 * IOMMUs
1008 *
1009 ****************************************************************************/
Joerg Roedelae7877d2008-06-26 21:27:51 +02001010static int __init early_amd_iommu_detect(struct acpi_table_header *table)
1011{
1012 return 0;
1013}
1014
1015void __init amd_iommu_detect(void)
1016{
Joerg Roedel299a1402008-07-08 14:47:16 +02001017 if (swiotlb || no_iommu || (iommu_detected && !gart_iommu_aperture))
Joerg Roedelae7877d2008-06-26 21:27:51 +02001018 return;
1019
Joerg Roedelae7877d2008-06-26 21:27:51 +02001020 if (acpi_table_parse("IVRS", early_amd_iommu_detect) == 0) {
1021 iommu_detected = 1;
Joerg Roedelc1cbebe2008-07-03 19:35:10 +02001022 amd_iommu_detected = 1;
Ingo Molnar92af4e22008-06-27 10:48:16 +02001023#ifdef CONFIG_GART_IOMMU
Joerg Roedelae7877d2008-06-26 21:27:51 +02001024 gart_iommu_aperture_disabled = 1;
1025 gart_iommu_aperture = 0;
Ingo Molnar92af4e22008-06-27 10:48:16 +02001026#endif
Joerg Roedelae7877d2008-06-26 21:27:51 +02001027 }
1028}
1029
Joerg Roedelb65233a2008-07-11 17:14:21 +02001030/****************************************************************************
1031 *
1032 * Parsing functions for the AMD IOMMU specific kernel command line
1033 * options.
1034 *
1035 ****************************************************************************/
1036
Joerg Roedel918ad6c2008-06-26 21:27:52 +02001037static int __init parse_amd_iommu_options(char *str)
1038{
1039 for (; *str; ++str) {
Joerg Roedel918ad6c2008-06-26 21:27:52 +02001040 if (strcmp(str, "isolate") == 0)
1041 amd_iommu_isolate = 1;
1042 }
1043
1044 return 1;
1045}
1046
1047static int __init parse_amd_iommu_size_options(char *str)
1048{
1049 for (; *str; ++str) {
1050 if (strcmp(str, "32M") == 0)
1051 amd_iommu_aperture_order = 25;
1052 if (strcmp(str, "64M") == 0)
1053 amd_iommu_aperture_order = 26;
1054 if (strcmp(str, "128M") == 0)
1055 amd_iommu_aperture_order = 27;
1056 if (strcmp(str, "256M") == 0)
1057 amd_iommu_aperture_order = 28;
1058 if (strcmp(str, "512M") == 0)
1059 amd_iommu_aperture_order = 29;
1060 if (strcmp(str, "1G") == 0)
1061 amd_iommu_aperture_order = 30;
1062 }
1063
1064 return 1;
1065}
1066
1067__setup("amd_iommu=", parse_amd_iommu_options);
1068__setup("amd_iommu_size=", parse_amd_iommu_size_options);