Merge tag 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost
[cris-mirror.git] / arch / powerpc / platforms / pseries / iommu.c
blob06f02960b4392386375b5b4d87eb604cf7465438
1 /*
2 * Copyright (C) 2001 Mike Corrigan & Dave Engebretsen, IBM Corporation
4 * Rewrite, cleanup:
6 * Copyright (C) 2004 Olof Johansson <olof@lixom.net>, IBM Corporation
7 * Copyright (C) 2006 Olof Johansson <olof@lixom.net>
9 * Dynamic DMA mapping support, pSeries-specific parts, both SMP and LPAR.
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
27 #include <linux/init.h>
28 #include <linux/types.h>
29 #include <linux/slab.h>
30 #include <linux/mm.h>
31 #include <linux/memblock.h>
32 #include <linux/spinlock.h>
33 #include <linux/string.h>
34 #include <linux/pci.h>
35 #include <linux/dma-mapping.h>
36 #include <linux/crash_dump.h>
37 #include <linux/memory.h>
38 #include <linux/of.h>
39 #include <linux/iommu.h>
40 #include <linux/rculist.h>
41 #include <asm/io.h>
42 #include <asm/prom.h>
43 #include <asm/rtas.h>
44 #include <asm/iommu.h>
45 #include <asm/pci-bridge.h>
46 #include <asm/machdep.h>
47 #include <asm/firmware.h>
48 #include <asm/tce.h>
49 #include <asm/ppc-pci.h>
50 #include <asm/udbg.h>
51 #include <asm/mmzone.h>
52 #include <asm/plpar_wrappers.h>
54 #include "pseries.h"
56 static struct iommu_table_group *iommu_pseries_alloc_group(int node)
58 struct iommu_table_group *table_group;
59 struct iommu_table *tbl;
60 struct iommu_table_group_link *tgl;
62 table_group = kzalloc_node(sizeof(struct iommu_table_group), GFP_KERNEL,
63 node);
64 if (!table_group)
65 return NULL;
67 tbl = kzalloc_node(sizeof(struct iommu_table), GFP_KERNEL, node);
68 if (!tbl)
69 goto free_group;
71 tgl = kzalloc_node(sizeof(struct iommu_table_group_link), GFP_KERNEL,
72 node);
73 if (!tgl)
74 goto free_table;
76 INIT_LIST_HEAD_RCU(&tbl->it_group_list);
77 kref_init(&tbl->it_kref);
78 tgl->table_group = table_group;
79 list_add_rcu(&tgl->next, &tbl->it_group_list);
81 table_group->tables[0] = tbl;
83 return table_group;
85 free_table:
86 kfree(tbl);
87 free_group:
88 kfree(table_group);
89 return NULL;
92 static void iommu_pseries_free_group(struct iommu_table_group *table_group,
93 const char *node_name)
95 struct iommu_table *tbl;
96 #ifdef CONFIG_IOMMU_API
97 struct iommu_table_group_link *tgl;
98 #endif
100 if (!table_group)
101 return;
103 tbl = table_group->tables[0];
104 #ifdef CONFIG_IOMMU_API
105 tgl = list_first_entry_or_null(&tbl->it_group_list,
106 struct iommu_table_group_link, next);
108 WARN_ON_ONCE(!tgl);
109 if (tgl) {
110 list_del_rcu(&tgl->next);
111 kfree(tgl);
113 if (table_group->group) {
114 iommu_group_put(table_group->group);
115 BUG_ON(table_group->group);
117 #endif
118 iommu_tce_table_put(tbl);
120 kfree(table_group);
123 static int tce_build_pSeries(struct iommu_table *tbl, long index,
124 long npages, unsigned long uaddr,
125 enum dma_data_direction direction,
126 unsigned long attrs)
128 u64 proto_tce;
129 __be64 *tcep, *tces;
130 u64 rpn;
132 proto_tce = TCE_PCI_READ; // Read allowed
134 if (direction != DMA_TO_DEVICE)
135 proto_tce |= TCE_PCI_WRITE;
137 tces = tcep = ((__be64 *)tbl->it_base) + index;
139 while (npages--) {
140 /* can't move this out since we might cross MEMBLOCK boundary */
141 rpn = __pa(uaddr) >> TCE_SHIFT;
142 *tcep = cpu_to_be64(proto_tce | (rpn & TCE_RPN_MASK) << TCE_RPN_SHIFT);
144 uaddr += TCE_PAGE_SIZE;
145 tcep++;
147 return 0;
151 static void tce_free_pSeries(struct iommu_table *tbl, long index, long npages)
153 __be64 *tcep, *tces;
155 tces = tcep = ((__be64 *)tbl->it_base) + index;
157 while (npages--)
158 *(tcep++) = 0;
161 static unsigned long tce_get_pseries(struct iommu_table *tbl, long index)
163 __be64 *tcep;
165 tcep = ((__be64 *)tbl->it_base) + index;
167 return be64_to_cpu(*tcep);
170 static void tce_free_pSeriesLP(struct iommu_table*, long, long);
171 static void tce_freemulti_pSeriesLP(struct iommu_table*, long, long);
173 static int tce_build_pSeriesLP(struct iommu_table *tbl, long tcenum,
174 long npages, unsigned long uaddr,
175 enum dma_data_direction direction,
176 unsigned long attrs)
178 u64 rc = 0;
179 u64 proto_tce, tce;
180 u64 rpn;
181 int ret = 0;
182 long tcenum_start = tcenum, npages_start = npages;
184 rpn = __pa(uaddr) >> TCE_SHIFT;
185 proto_tce = TCE_PCI_READ;
186 if (direction != DMA_TO_DEVICE)
187 proto_tce |= TCE_PCI_WRITE;
189 while (npages--) {
190 tce = proto_tce | (rpn & TCE_RPN_MASK) << TCE_RPN_SHIFT;
191 rc = plpar_tce_put((u64)tbl->it_index, (u64)tcenum << 12, tce);
193 if (unlikely(rc == H_NOT_ENOUGH_RESOURCES)) {
194 ret = (int)rc;
195 tce_free_pSeriesLP(tbl, tcenum_start,
196 (npages_start - (npages + 1)));
197 break;
200 if (rc && printk_ratelimit()) {
201 printk("tce_build_pSeriesLP: plpar_tce_put failed. rc=%lld\n", rc);
202 printk("\tindex = 0x%llx\n", (u64)tbl->it_index);
203 printk("\ttcenum = 0x%llx\n", (u64)tcenum);
204 printk("\ttce val = 0x%llx\n", tce );
205 dump_stack();
208 tcenum++;
209 rpn++;
211 return ret;
214 static DEFINE_PER_CPU(__be64 *, tce_page);
216 static int tce_buildmulti_pSeriesLP(struct iommu_table *tbl, long tcenum,
217 long npages, unsigned long uaddr,
218 enum dma_data_direction direction,
219 unsigned long attrs)
221 u64 rc = 0;
222 u64 proto_tce;
223 __be64 *tcep;
224 u64 rpn;
225 long l, limit;
226 long tcenum_start = tcenum, npages_start = npages;
227 int ret = 0;
228 unsigned long flags;
230 if ((npages == 1) || !firmware_has_feature(FW_FEATURE_MULTITCE)) {
231 return tce_build_pSeriesLP(tbl, tcenum, npages, uaddr,
232 direction, attrs);
235 local_irq_save(flags); /* to protect tcep and the page behind it */
237 tcep = __this_cpu_read(tce_page);
239 /* This is safe to do since interrupts are off when we're called
240 * from iommu_alloc{,_sg}()
242 if (!tcep) {
243 tcep = (__be64 *)__get_free_page(GFP_ATOMIC);
244 /* If allocation fails, fall back to the loop implementation */
245 if (!tcep) {
246 local_irq_restore(flags);
247 return tce_build_pSeriesLP(tbl, tcenum, npages, uaddr,
248 direction, attrs);
250 __this_cpu_write(tce_page, tcep);
253 rpn = __pa(uaddr) >> TCE_SHIFT;
254 proto_tce = TCE_PCI_READ;
255 if (direction != DMA_TO_DEVICE)
256 proto_tce |= TCE_PCI_WRITE;
258 /* We can map max one pageful of TCEs at a time */
259 do {
261 * Set up the page with TCE data, looping through and setting
262 * the values.
264 limit = min_t(long, npages, 4096/TCE_ENTRY_SIZE);
266 for (l = 0; l < limit; l++) {
267 tcep[l] = cpu_to_be64(proto_tce | (rpn & TCE_RPN_MASK) << TCE_RPN_SHIFT);
268 rpn++;
271 rc = plpar_tce_put_indirect((u64)tbl->it_index,
272 (u64)tcenum << 12,
273 (u64)__pa(tcep),
274 limit);
276 npages -= limit;
277 tcenum += limit;
278 } while (npages > 0 && !rc);
280 local_irq_restore(flags);
282 if (unlikely(rc == H_NOT_ENOUGH_RESOURCES)) {
283 ret = (int)rc;
284 tce_freemulti_pSeriesLP(tbl, tcenum_start,
285 (npages_start - (npages + limit)));
286 return ret;
289 if (rc && printk_ratelimit()) {
290 printk("tce_buildmulti_pSeriesLP: plpar_tce_put failed. rc=%lld\n", rc);
291 printk("\tindex = 0x%llx\n", (u64)tbl->it_index);
292 printk("\tnpages = 0x%llx\n", (u64)npages);
293 printk("\ttce[0] val = 0x%llx\n", tcep[0]);
294 dump_stack();
296 return ret;
299 static void tce_free_pSeriesLP(struct iommu_table *tbl, long tcenum, long npages)
301 u64 rc;
303 while (npages--) {
304 rc = plpar_tce_put((u64)tbl->it_index, (u64)tcenum << 12, 0);
306 if (rc && printk_ratelimit()) {
307 printk("tce_free_pSeriesLP: plpar_tce_put failed. rc=%lld\n", rc);
308 printk("\tindex = 0x%llx\n", (u64)tbl->it_index);
309 printk("\ttcenum = 0x%llx\n", (u64)tcenum);
310 dump_stack();
313 tcenum++;
318 static void tce_freemulti_pSeriesLP(struct iommu_table *tbl, long tcenum, long npages)
320 u64 rc;
322 if (!firmware_has_feature(FW_FEATURE_MULTITCE))
323 return tce_free_pSeriesLP(tbl, tcenum, npages);
325 rc = plpar_tce_stuff((u64)tbl->it_index, (u64)tcenum << 12, 0, npages);
327 if (rc && printk_ratelimit()) {
328 printk("tce_freemulti_pSeriesLP: plpar_tce_stuff failed\n");
329 printk("\trc = %lld\n", rc);
330 printk("\tindex = 0x%llx\n", (u64)tbl->it_index);
331 printk("\tnpages = 0x%llx\n", (u64)npages);
332 dump_stack();
336 static unsigned long tce_get_pSeriesLP(struct iommu_table *tbl, long tcenum)
338 u64 rc;
339 unsigned long tce_ret;
341 rc = plpar_tce_get((u64)tbl->it_index, (u64)tcenum << 12, &tce_ret);
343 if (rc && printk_ratelimit()) {
344 printk("tce_get_pSeriesLP: plpar_tce_get failed. rc=%lld\n", rc);
345 printk("\tindex = 0x%llx\n", (u64)tbl->it_index);
346 printk("\ttcenum = 0x%llx\n", (u64)tcenum);
347 dump_stack();
350 return tce_ret;
353 /* this is compatible with cells for the device tree property */
354 struct dynamic_dma_window_prop {
355 __be32 liobn; /* tce table number */
356 __be64 dma_base; /* address hi,lo */
357 __be32 tce_shift; /* ilog2(tce_page_size) */
358 __be32 window_shift; /* ilog2(tce_window_size) */
361 struct direct_window {
362 struct device_node *device;
363 const struct dynamic_dma_window_prop *prop;
364 struct list_head list;
367 /* Dynamic DMA Window support */
368 struct ddw_query_response {
369 u32 windows_available;
370 u32 largest_available_block;
371 u32 page_size;
372 u32 migration_capable;
375 struct ddw_create_response {
376 u32 liobn;
377 u32 addr_hi;
378 u32 addr_lo;
381 static LIST_HEAD(direct_window_list);
382 /* prevents races between memory on/offline and window creation */
383 static DEFINE_SPINLOCK(direct_window_list_lock);
384 /* protects initializing window twice for same device */
385 static DEFINE_MUTEX(direct_window_init_mutex);
386 #define DIRECT64_PROPNAME "linux,direct64-ddr-window-info"
388 static int tce_clearrange_multi_pSeriesLP(unsigned long start_pfn,
389 unsigned long num_pfn, const void *arg)
391 const struct dynamic_dma_window_prop *maprange = arg;
392 int rc;
393 u64 tce_size, num_tce, dma_offset, next;
394 u32 tce_shift;
395 long limit;
397 tce_shift = be32_to_cpu(maprange->tce_shift);
398 tce_size = 1ULL << tce_shift;
399 next = start_pfn << PAGE_SHIFT;
400 num_tce = num_pfn << PAGE_SHIFT;
402 /* round back to the beginning of the tce page size */
403 num_tce += next & (tce_size - 1);
404 next &= ~(tce_size - 1);
406 /* covert to number of tces */
407 num_tce |= tce_size - 1;
408 num_tce >>= tce_shift;
410 do {
412 * Set up the page with TCE data, looping through and setting
413 * the values.
415 limit = min_t(long, num_tce, 512);
416 dma_offset = next + be64_to_cpu(maprange->dma_base);
418 rc = plpar_tce_stuff((u64)be32_to_cpu(maprange->liobn),
419 dma_offset,
420 0, limit);
421 next += limit * tce_size;
422 num_tce -= limit;
423 } while (num_tce > 0 && !rc);
425 return rc;
428 static int tce_setrange_multi_pSeriesLP(unsigned long start_pfn,
429 unsigned long num_pfn, const void *arg)
431 const struct dynamic_dma_window_prop *maprange = arg;
432 u64 tce_size, num_tce, dma_offset, next, proto_tce, liobn;
433 __be64 *tcep;
434 u32 tce_shift;
435 u64 rc = 0;
436 long l, limit;
438 local_irq_disable(); /* to protect tcep and the page behind it */
439 tcep = __this_cpu_read(tce_page);
441 if (!tcep) {
442 tcep = (__be64 *)__get_free_page(GFP_ATOMIC);
443 if (!tcep) {
444 local_irq_enable();
445 return -ENOMEM;
447 __this_cpu_write(tce_page, tcep);
450 proto_tce = TCE_PCI_READ | TCE_PCI_WRITE;
452 liobn = (u64)be32_to_cpu(maprange->liobn);
453 tce_shift = be32_to_cpu(maprange->tce_shift);
454 tce_size = 1ULL << tce_shift;
455 next = start_pfn << PAGE_SHIFT;
456 num_tce = num_pfn << PAGE_SHIFT;
458 /* round back to the beginning of the tce page size */
459 num_tce += next & (tce_size - 1);
460 next &= ~(tce_size - 1);
462 /* covert to number of tces */
463 num_tce |= tce_size - 1;
464 num_tce >>= tce_shift;
466 /* We can map max one pageful of TCEs at a time */
467 do {
469 * Set up the page with TCE data, looping through and setting
470 * the values.
472 limit = min_t(long, num_tce, 4096/TCE_ENTRY_SIZE);
473 dma_offset = next + be64_to_cpu(maprange->dma_base);
475 for (l = 0; l < limit; l++) {
476 tcep[l] = cpu_to_be64(proto_tce | next);
477 next += tce_size;
480 rc = plpar_tce_put_indirect(liobn,
481 dma_offset,
482 (u64)__pa(tcep),
483 limit);
485 num_tce -= limit;
486 } while (num_tce > 0 && !rc);
488 /* error cleanup: caller will clear whole range */
490 local_irq_enable();
491 return rc;
494 static int tce_setrange_multi_pSeriesLP_walk(unsigned long start_pfn,
495 unsigned long num_pfn, void *arg)
497 return tce_setrange_multi_pSeriesLP(start_pfn, num_pfn, arg);
500 static void iommu_table_setparms(struct pci_controller *phb,
501 struct device_node *dn,
502 struct iommu_table *tbl)
504 struct device_node *node;
505 const unsigned long *basep;
506 const u32 *sizep;
508 node = phb->dn;
510 basep = of_get_property(node, "linux,tce-base", NULL);
511 sizep = of_get_property(node, "linux,tce-size", NULL);
512 if (basep == NULL || sizep == NULL) {
513 printk(KERN_ERR "PCI_DMA: iommu_table_setparms: %pOF has "
514 "missing tce entries !\n", dn);
515 return;
518 tbl->it_base = (unsigned long)__va(*basep);
520 if (!is_kdump_kernel())
521 memset((void *)tbl->it_base, 0, *sizep);
523 tbl->it_busno = phb->bus->number;
524 tbl->it_page_shift = IOMMU_PAGE_SHIFT_4K;
526 /* Units of tce entries */
527 tbl->it_offset = phb->dma_window_base_cur >> tbl->it_page_shift;
529 /* Test if we are going over 2GB of DMA space */
530 if (phb->dma_window_base_cur + phb->dma_window_size > 0x80000000ul) {
531 udbg_printf("PCI_DMA: Unexpected number of IOAs under this PHB.\n");
532 panic("PCI_DMA: Unexpected number of IOAs under this PHB.\n");
535 phb->dma_window_base_cur += phb->dma_window_size;
537 /* Set the tce table size - measured in entries */
538 tbl->it_size = phb->dma_window_size >> tbl->it_page_shift;
540 tbl->it_index = 0;
541 tbl->it_blocksize = 16;
542 tbl->it_type = TCE_PCI;
546 * iommu_table_setparms_lpar
548 * Function: On pSeries LPAR systems, return TCE table info, given a pci bus.
550 static void iommu_table_setparms_lpar(struct pci_controller *phb,
551 struct device_node *dn,
552 struct iommu_table *tbl,
553 struct iommu_table_group *table_group,
554 const __be32 *dma_window)
556 unsigned long offset, size;
558 of_parse_dma_window(dn, dma_window, &tbl->it_index, &offset, &size);
560 tbl->it_busno = phb->bus->number;
561 tbl->it_page_shift = IOMMU_PAGE_SHIFT_4K;
562 tbl->it_base = 0;
563 tbl->it_blocksize = 16;
564 tbl->it_type = TCE_PCI;
565 tbl->it_offset = offset >> tbl->it_page_shift;
566 tbl->it_size = size >> tbl->it_page_shift;
568 table_group->tce32_start = offset;
569 table_group->tce32_size = size;
572 struct iommu_table_ops iommu_table_pseries_ops = {
573 .set = tce_build_pSeries,
574 .clear = tce_free_pSeries,
575 .get = tce_get_pseries
578 static void pci_dma_bus_setup_pSeries(struct pci_bus *bus)
580 struct device_node *dn;
581 struct iommu_table *tbl;
582 struct device_node *isa_dn, *isa_dn_orig;
583 struct device_node *tmp;
584 struct pci_dn *pci;
585 int children;
587 dn = pci_bus_to_OF_node(bus);
589 pr_debug("pci_dma_bus_setup_pSeries: setting up bus %pOF\n", dn);
591 if (bus->self) {
592 /* This is not a root bus, any setup will be done for the
593 * device-side of the bridge in iommu_dev_setup_pSeries().
595 return;
597 pci = PCI_DN(dn);
599 /* Check if the ISA bus on the system is under
600 * this PHB.
602 isa_dn = isa_dn_orig = of_find_node_by_type(NULL, "isa");
604 while (isa_dn && isa_dn != dn)
605 isa_dn = isa_dn->parent;
607 of_node_put(isa_dn_orig);
609 /* Count number of direct PCI children of the PHB. */
610 for (children = 0, tmp = dn->child; tmp; tmp = tmp->sibling)
611 children++;
613 pr_debug("Children: %d\n", children);
615 /* Calculate amount of DMA window per slot. Each window must be
616 * a power of two (due to pci_alloc_consistent requirements).
618 * Keep 256MB aside for PHBs with ISA.
621 if (!isa_dn) {
622 /* No ISA/IDE - just set window size and return */
623 pci->phb->dma_window_size = 0x80000000ul; /* To be divided */
625 while (pci->phb->dma_window_size * children > 0x80000000ul)
626 pci->phb->dma_window_size >>= 1;
627 pr_debug("No ISA/IDE, window size is 0x%llx\n",
628 pci->phb->dma_window_size);
629 pci->phb->dma_window_base_cur = 0;
631 return;
634 /* If we have ISA, then we probably have an IDE
635 * controller too. Allocate a 128MB table but
636 * skip the first 128MB to avoid stepping on ISA
637 * space.
639 pci->phb->dma_window_size = 0x8000000ul;
640 pci->phb->dma_window_base_cur = 0x8000000ul;
642 pci->table_group = iommu_pseries_alloc_group(pci->phb->node);
643 tbl = pci->table_group->tables[0];
645 iommu_table_setparms(pci->phb, dn, tbl);
646 tbl->it_ops = &iommu_table_pseries_ops;
647 iommu_init_table(tbl, pci->phb->node);
648 iommu_register_group(pci->table_group, pci_domain_nr(bus), 0);
650 /* Divide the rest (1.75GB) among the children */
651 pci->phb->dma_window_size = 0x80000000ul;
652 while (pci->phb->dma_window_size * children > 0x70000000ul)
653 pci->phb->dma_window_size >>= 1;
655 pr_debug("ISA/IDE, window size is 0x%llx\n", pci->phb->dma_window_size);
658 #ifdef CONFIG_IOMMU_API
659 static int tce_exchange_pseries(struct iommu_table *tbl, long index, unsigned
660 long *tce, enum dma_data_direction *direction)
662 long rc;
663 unsigned long ioba = (unsigned long) index << tbl->it_page_shift;
664 unsigned long flags, oldtce = 0;
665 u64 proto_tce = iommu_direction_to_tce_perm(*direction);
666 unsigned long newtce = *tce | proto_tce;
668 spin_lock_irqsave(&tbl->large_pool.lock, flags);
670 rc = plpar_tce_get((u64)tbl->it_index, ioba, &oldtce);
671 if (!rc)
672 rc = plpar_tce_put((u64)tbl->it_index, ioba, newtce);
674 if (!rc) {
675 *direction = iommu_tce_direction(oldtce);
676 *tce = oldtce & ~(TCE_PCI_READ | TCE_PCI_WRITE);
679 spin_unlock_irqrestore(&tbl->large_pool.lock, flags);
681 return rc;
683 #endif
685 struct iommu_table_ops iommu_table_lpar_multi_ops = {
686 .set = tce_buildmulti_pSeriesLP,
687 #ifdef CONFIG_IOMMU_API
688 .exchange = tce_exchange_pseries,
689 #endif
690 .clear = tce_freemulti_pSeriesLP,
691 .get = tce_get_pSeriesLP
694 static void pci_dma_bus_setup_pSeriesLP(struct pci_bus *bus)
696 struct iommu_table *tbl;
697 struct device_node *dn, *pdn;
698 struct pci_dn *ppci;
699 const __be32 *dma_window = NULL;
701 dn = pci_bus_to_OF_node(bus);
703 pr_debug("pci_dma_bus_setup_pSeriesLP: setting up bus %pOF\n",
704 dn);
706 /* Find nearest ibm,dma-window, walking up the device tree */
707 for (pdn = dn; pdn != NULL; pdn = pdn->parent) {
708 dma_window = of_get_property(pdn, "ibm,dma-window", NULL);
709 if (dma_window != NULL)
710 break;
713 if (dma_window == NULL) {
714 pr_debug(" no ibm,dma-window property !\n");
715 return;
718 ppci = PCI_DN(pdn);
720 pr_debug(" parent is %pOF, iommu_table: 0x%p\n",
721 pdn, ppci->table_group);
723 if (!ppci->table_group) {
724 ppci->table_group = iommu_pseries_alloc_group(ppci->phb->node);
725 tbl = ppci->table_group->tables[0];
726 iommu_table_setparms_lpar(ppci->phb, pdn, tbl,
727 ppci->table_group, dma_window);
728 tbl->it_ops = &iommu_table_lpar_multi_ops;
729 iommu_init_table(tbl, ppci->phb->node);
730 iommu_register_group(ppci->table_group,
731 pci_domain_nr(bus), 0);
732 pr_debug(" created table: %p\n", ppci->table_group);
737 static void pci_dma_dev_setup_pSeries(struct pci_dev *dev)
739 struct device_node *dn;
740 struct iommu_table *tbl;
742 pr_debug("pci_dma_dev_setup_pSeries: %s\n", pci_name(dev));
744 dn = dev->dev.of_node;
746 /* If we're the direct child of a root bus, then we need to allocate
747 * an iommu table ourselves. The bus setup code should have setup
748 * the window sizes already.
750 if (!dev->bus->self) {
751 struct pci_controller *phb = PCI_DN(dn)->phb;
753 pr_debug(" --> first child, no bridge. Allocating iommu table.\n");
754 PCI_DN(dn)->table_group = iommu_pseries_alloc_group(phb->node);
755 tbl = PCI_DN(dn)->table_group->tables[0];
756 iommu_table_setparms(phb, dn, tbl);
757 tbl->it_ops = &iommu_table_pseries_ops;
758 iommu_init_table(tbl, phb->node);
759 iommu_register_group(PCI_DN(dn)->table_group,
760 pci_domain_nr(phb->bus), 0);
761 set_iommu_table_base(&dev->dev, tbl);
762 iommu_add_device(&dev->dev);
763 return;
766 /* If this device is further down the bus tree, search upwards until
767 * an already allocated iommu table is found and use that.
770 while (dn && PCI_DN(dn) && PCI_DN(dn)->table_group == NULL)
771 dn = dn->parent;
773 if (dn && PCI_DN(dn)) {
774 set_iommu_table_base(&dev->dev,
775 PCI_DN(dn)->table_group->tables[0]);
776 iommu_add_device(&dev->dev);
777 } else
778 printk(KERN_WARNING "iommu: Device %s has no iommu table\n",
779 pci_name(dev));
782 static int __read_mostly disable_ddw;
784 static int __init disable_ddw_setup(char *str)
786 disable_ddw = 1;
787 printk(KERN_INFO "ppc iommu: disabling ddw.\n");
789 return 0;
792 early_param("disable_ddw", disable_ddw_setup);
794 static void remove_ddw(struct device_node *np, bool remove_prop)
796 struct dynamic_dma_window_prop *dwp;
797 struct property *win64;
798 u32 ddw_avail[3];
799 u64 liobn;
800 int ret = 0;
802 ret = of_property_read_u32_array(np, "ibm,ddw-applicable",
803 &ddw_avail[0], 3);
805 win64 = of_find_property(np, DIRECT64_PROPNAME, NULL);
806 if (!win64)
807 return;
809 if (ret || win64->length < sizeof(*dwp))
810 goto delprop;
812 dwp = win64->value;
813 liobn = (u64)be32_to_cpu(dwp->liobn);
815 /* clear the whole window, note the arg is in kernel pages */
816 ret = tce_clearrange_multi_pSeriesLP(0,
817 1ULL << (be32_to_cpu(dwp->window_shift) - PAGE_SHIFT), dwp);
818 if (ret)
819 pr_warn("%pOF failed to clear tces in window.\n",
820 np);
821 else
822 pr_debug("%pOF successfully cleared tces in window.\n",
823 np);
825 ret = rtas_call(ddw_avail[2], 1, 1, NULL, liobn);
826 if (ret)
827 pr_warn("%pOF: failed to remove direct window: rtas returned "
828 "%d to ibm,remove-pe-dma-window(%x) %llx\n",
829 np, ret, ddw_avail[2], liobn);
830 else
831 pr_debug("%pOF: successfully removed direct window: rtas returned "
832 "%d to ibm,remove-pe-dma-window(%x) %llx\n",
833 np, ret, ddw_avail[2], liobn);
835 delprop:
836 if (remove_prop)
837 ret = of_remove_property(np, win64);
838 if (ret)
839 pr_warn("%pOF: failed to remove direct window property: %d\n",
840 np, ret);
843 static u64 find_existing_ddw(struct device_node *pdn)
845 struct direct_window *window;
846 const struct dynamic_dma_window_prop *direct64;
847 u64 dma_addr = 0;
849 spin_lock(&direct_window_list_lock);
850 /* check if we already created a window and dupe that config if so */
851 list_for_each_entry(window, &direct_window_list, list) {
852 if (window->device == pdn) {
853 direct64 = window->prop;
854 dma_addr = be64_to_cpu(direct64->dma_base);
855 break;
858 spin_unlock(&direct_window_list_lock);
860 return dma_addr;
863 static int find_existing_ddw_windows(void)
865 int len;
866 struct device_node *pdn;
867 struct direct_window *window;
868 const struct dynamic_dma_window_prop *direct64;
870 if (!firmware_has_feature(FW_FEATURE_LPAR))
871 return 0;
873 for_each_node_with_property(pdn, DIRECT64_PROPNAME) {
874 direct64 = of_get_property(pdn, DIRECT64_PROPNAME, &len);
875 if (!direct64)
876 continue;
878 window = kzalloc(sizeof(*window), GFP_KERNEL);
879 if (!window || len < sizeof(struct dynamic_dma_window_prop)) {
880 kfree(window);
881 remove_ddw(pdn, true);
882 continue;
885 window->device = pdn;
886 window->prop = direct64;
887 spin_lock(&direct_window_list_lock);
888 list_add(&window->list, &direct_window_list);
889 spin_unlock(&direct_window_list_lock);
892 return 0;
894 machine_arch_initcall(pseries, find_existing_ddw_windows);
896 static int query_ddw(struct pci_dev *dev, const u32 *ddw_avail,
897 struct ddw_query_response *query)
899 struct device_node *dn;
900 struct pci_dn *pdn;
901 u32 cfg_addr;
902 u64 buid;
903 int ret;
906 * Get the config address and phb buid of the PE window.
907 * Rely on eeh to retrieve this for us.
908 * Retrieve them from the pci device, not the node with the
909 * dma-window property
911 dn = pci_device_to_OF_node(dev);
912 pdn = PCI_DN(dn);
913 buid = pdn->phb->buid;
914 cfg_addr = ((pdn->busno << 16) | (pdn->devfn << 8));
916 ret = rtas_call(ddw_avail[0], 3, 5, (u32 *)query,
917 cfg_addr, BUID_HI(buid), BUID_LO(buid));
918 dev_info(&dev->dev, "ibm,query-pe-dma-windows(%x) %x %x %x"
919 " returned %d\n", ddw_avail[0], cfg_addr, BUID_HI(buid),
920 BUID_LO(buid), ret);
921 return ret;
924 static int create_ddw(struct pci_dev *dev, const u32 *ddw_avail,
925 struct ddw_create_response *create, int page_shift,
926 int window_shift)
928 struct device_node *dn;
929 struct pci_dn *pdn;
930 u32 cfg_addr;
931 u64 buid;
932 int ret;
935 * Get the config address and phb buid of the PE window.
936 * Rely on eeh to retrieve this for us.
937 * Retrieve them from the pci device, not the node with the
938 * dma-window property
940 dn = pci_device_to_OF_node(dev);
941 pdn = PCI_DN(dn);
942 buid = pdn->phb->buid;
943 cfg_addr = ((pdn->busno << 16) | (pdn->devfn << 8));
945 do {
946 /* extra outputs are LIOBN and dma-addr (hi, lo) */
947 ret = rtas_call(ddw_avail[1], 5, 4, (u32 *)create,
948 cfg_addr, BUID_HI(buid), BUID_LO(buid),
949 page_shift, window_shift);
950 } while (rtas_busy_delay(ret));
951 dev_info(&dev->dev,
952 "ibm,create-pe-dma-window(%x) %x %x %x %x %x returned %d "
953 "(liobn = 0x%x starting addr = %x %x)\n", ddw_avail[1],
954 cfg_addr, BUID_HI(buid), BUID_LO(buid), page_shift,
955 window_shift, ret, create->liobn, create->addr_hi, create->addr_lo);
957 return ret;
960 struct failed_ddw_pdn {
961 struct device_node *pdn;
962 struct list_head list;
965 static LIST_HEAD(failed_ddw_pdn_list);
968 * If the PE supports dynamic dma windows, and there is space for a table
969 * that can map all pages in a linear offset, then setup such a table,
970 * and record the dma-offset in the struct device.
972 * dev: the pci device we are checking
973 * pdn: the parent pe node with the ibm,dma_window property
974 * Future: also check if we can remap the base window for our base page size
976 * returns the dma offset for use by dma_set_mask
978 static u64 enable_ddw(struct pci_dev *dev, struct device_node *pdn)
980 int len, ret;
981 struct ddw_query_response query;
982 struct ddw_create_response create;
983 int page_shift;
984 u64 dma_addr, max_addr;
985 struct device_node *dn;
986 u32 ddw_avail[3];
987 struct direct_window *window;
988 struct property *win64;
989 struct dynamic_dma_window_prop *ddwprop;
990 struct failed_ddw_pdn *fpdn;
992 mutex_lock(&direct_window_init_mutex);
994 dma_addr = find_existing_ddw(pdn);
995 if (dma_addr != 0)
996 goto out_unlock;
999 * If we already went through this for a previous function of
1000 * the same device and failed, we don't want to muck with the
1001 * DMA window again, as it will race with in-flight operations
1002 * and can lead to EEHs. The above mutex protects access to the
1003 * list.
1005 list_for_each_entry(fpdn, &failed_ddw_pdn_list, list) {
1006 if (fpdn->pdn == pdn)
1007 goto out_unlock;
1011 * the ibm,ddw-applicable property holds the tokens for:
1012 * ibm,query-pe-dma-window
1013 * ibm,create-pe-dma-window
1014 * ibm,remove-pe-dma-window
1015 * for the given node in that order.
1016 * the property is actually in the parent, not the PE
1018 ret = of_property_read_u32_array(pdn, "ibm,ddw-applicable",
1019 &ddw_avail[0], 3);
1020 if (ret)
1021 goto out_failed;
1024 * Query if there is a second window of size to map the
1025 * whole partition. Query returns number of windows, largest
1026 * block assigned to PE (partition endpoint), and two bitmasks
1027 * of page sizes: supported and supported for migrate-dma.
1029 dn = pci_device_to_OF_node(dev);
1030 ret = query_ddw(dev, ddw_avail, &query);
1031 if (ret != 0)
1032 goto out_failed;
1034 if (query.windows_available == 0) {
1036 * no additional windows are available for this device.
1037 * We might be able to reallocate the existing window,
1038 * trading in for a larger page size.
1040 dev_dbg(&dev->dev, "no free dynamic windows");
1041 goto out_failed;
1043 if (query.page_size & 4) {
1044 page_shift = 24; /* 16MB */
1045 } else if (query.page_size & 2) {
1046 page_shift = 16; /* 64kB */
1047 } else if (query.page_size & 1) {
1048 page_shift = 12; /* 4kB */
1049 } else {
1050 dev_dbg(&dev->dev, "no supported direct page size in mask %x",
1051 query.page_size);
1052 goto out_failed;
1054 /* verify the window * number of ptes will map the partition */
1055 /* check largest block * page size > max memory hotplug addr */
1056 max_addr = memory_hotplug_max();
1057 if (query.largest_available_block < (max_addr >> page_shift)) {
1058 dev_dbg(&dev->dev, "can't map partition max 0x%llx with %u "
1059 "%llu-sized pages\n", max_addr, query.largest_available_block,
1060 1ULL << page_shift);
1061 goto out_failed;
1063 len = order_base_2(max_addr);
1064 win64 = kzalloc(sizeof(struct property), GFP_KERNEL);
1065 if (!win64) {
1066 dev_info(&dev->dev,
1067 "couldn't allocate property for 64bit dma window\n");
1068 goto out_failed;
1070 win64->name = kstrdup(DIRECT64_PROPNAME, GFP_KERNEL);
1071 win64->value = ddwprop = kmalloc(sizeof(*ddwprop), GFP_KERNEL);
1072 win64->length = sizeof(*ddwprop);
1073 if (!win64->name || !win64->value) {
1074 dev_info(&dev->dev,
1075 "couldn't allocate property name and value\n");
1076 goto out_free_prop;
1079 ret = create_ddw(dev, ddw_avail, &create, page_shift, len);
1080 if (ret != 0)
1081 goto out_free_prop;
1083 ddwprop->liobn = cpu_to_be32(create.liobn);
1084 ddwprop->dma_base = cpu_to_be64(((u64)create.addr_hi << 32) |
1085 create.addr_lo);
1086 ddwprop->tce_shift = cpu_to_be32(page_shift);
1087 ddwprop->window_shift = cpu_to_be32(len);
1089 dev_dbg(&dev->dev, "created tce table LIOBN 0x%x for %pOF\n",
1090 create.liobn, dn);
1092 window = kzalloc(sizeof(*window), GFP_KERNEL);
1093 if (!window)
1094 goto out_clear_window;
1096 ret = walk_system_ram_range(0, memblock_end_of_DRAM() >> PAGE_SHIFT,
1097 win64->value, tce_setrange_multi_pSeriesLP_walk);
1098 if (ret) {
1099 dev_info(&dev->dev, "failed to map direct window for %pOF: %d\n",
1100 dn, ret);
1101 goto out_free_window;
1104 ret = of_add_property(pdn, win64);
1105 if (ret) {
1106 dev_err(&dev->dev, "unable to add dma window property for %pOF: %d",
1107 pdn, ret);
1108 goto out_free_window;
1111 window->device = pdn;
1112 window->prop = ddwprop;
1113 spin_lock(&direct_window_list_lock);
1114 list_add(&window->list, &direct_window_list);
1115 spin_unlock(&direct_window_list_lock);
1117 dma_addr = be64_to_cpu(ddwprop->dma_base);
1118 goto out_unlock;
1120 out_free_window:
1121 kfree(window);
1123 out_clear_window:
1124 remove_ddw(pdn, true);
1126 out_free_prop:
1127 kfree(win64->name);
1128 kfree(win64->value);
1129 kfree(win64);
1131 out_failed:
1133 fpdn = kzalloc(sizeof(*fpdn), GFP_KERNEL);
1134 if (!fpdn)
1135 goto out_unlock;
1136 fpdn->pdn = pdn;
1137 list_add(&fpdn->list, &failed_ddw_pdn_list);
1139 out_unlock:
1140 mutex_unlock(&direct_window_init_mutex);
1141 return dma_addr;
1144 static void pci_dma_dev_setup_pSeriesLP(struct pci_dev *dev)
1146 struct device_node *pdn, *dn;
1147 struct iommu_table *tbl;
1148 const __be32 *dma_window = NULL;
1149 struct pci_dn *pci;
1151 pr_debug("pci_dma_dev_setup_pSeriesLP: %s\n", pci_name(dev));
1153 /* dev setup for LPAR is a little tricky, since the device tree might
1154 * contain the dma-window properties per-device and not necessarily
1155 * for the bus. So we need to search upwards in the tree until we
1156 * either hit a dma-window property, OR find a parent with a table
1157 * already allocated.
1159 dn = pci_device_to_OF_node(dev);
1160 pr_debug(" node is %pOF\n", dn);
1162 for (pdn = dn; pdn && PCI_DN(pdn) && !PCI_DN(pdn)->table_group;
1163 pdn = pdn->parent) {
1164 dma_window = of_get_property(pdn, "ibm,dma-window", NULL);
1165 if (dma_window)
1166 break;
1169 if (!pdn || !PCI_DN(pdn)) {
1170 printk(KERN_WARNING "pci_dma_dev_setup_pSeriesLP: "
1171 "no DMA window found for pci dev=%s dn=%pOF\n",
1172 pci_name(dev), dn);
1173 return;
1175 pr_debug(" parent is %pOF\n", pdn);
1177 pci = PCI_DN(pdn);
1178 if (!pci->table_group) {
1179 pci->table_group = iommu_pseries_alloc_group(pci->phb->node);
1180 tbl = pci->table_group->tables[0];
1181 iommu_table_setparms_lpar(pci->phb, pdn, tbl,
1182 pci->table_group, dma_window);
1183 tbl->it_ops = &iommu_table_lpar_multi_ops;
1184 iommu_init_table(tbl, pci->phb->node);
1185 iommu_register_group(pci->table_group,
1186 pci_domain_nr(pci->phb->bus), 0);
1187 pr_debug(" created table: %p\n", pci->table_group);
1188 } else {
1189 pr_debug(" found DMA window, table: %p\n", pci->table_group);
1192 set_iommu_table_base(&dev->dev, pci->table_group->tables[0]);
1193 iommu_add_device(&dev->dev);
1196 static int dma_set_mask_pSeriesLP(struct device *dev, u64 dma_mask)
1198 bool ddw_enabled = false;
1199 struct device_node *pdn, *dn;
1200 struct pci_dev *pdev;
1201 const __be32 *dma_window = NULL;
1202 u64 dma_offset;
1204 if (!dev->dma_mask)
1205 return -EIO;
1207 if (!dev_is_pci(dev))
1208 goto check_mask;
1210 pdev = to_pci_dev(dev);
1212 /* only attempt to use a new window if 64-bit DMA is requested */
1213 if (!disable_ddw && dma_mask == DMA_BIT_MASK(64)) {
1214 dn = pci_device_to_OF_node(pdev);
1215 dev_dbg(dev, "node is %pOF\n", dn);
1218 * the device tree might contain the dma-window properties
1219 * per-device and not necessarily for the bus. So we need to
1220 * search upwards in the tree until we either hit a dma-window
1221 * property, OR find a parent with a table already allocated.
1223 for (pdn = dn; pdn && PCI_DN(pdn) && !PCI_DN(pdn)->table_group;
1224 pdn = pdn->parent) {
1225 dma_window = of_get_property(pdn, "ibm,dma-window", NULL);
1226 if (dma_window)
1227 break;
1229 if (pdn && PCI_DN(pdn)) {
1230 dma_offset = enable_ddw(pdev, pdn);
1231 if (dma_offset != 0) {
1232 dev_info(dev, "Using 64-bit direct DMA at offset %llx\n", dma_offset);
1233 set_dma_offset(dev, dma_offset);
1234 set_dma_ops(dev, &dma_nommu_ops);
1235 ddw_enabled = true;
1240 /* fall back on iommu ops */
1241 if (!ddw_enabled && get_dma_ops(dev) != &dma_iommu_ops) {
1242 dev_info(dev, "Restoring 32-bit DMA via iommu\n");
1243 set_dma_ops(dev, &dma_iommu_ops);
1246 check_mask:
1247 if (!dma_supported(dev, dma_mask))
1248 return -EIO;
1250 *dev->dma_mask = dma_mask;
1251 return 0;
1254 static u64 dma_get_required_mask_pSeriesLP(struct device *dev)
1256 if (!dev->dma_mask)
1257 return 0;
1259 if (!disable_ddw && dev_is_pci(dev)) {
1260 struct pci_dev *pdev = to_pci_dev(dev);
1261 struct device_node *dn;
1263 dn = pci_device_to_OF_node(pdev);
1265 /* search upwards for ibm,dma-window */
1266 for (; dn && PCI_DN(dn) && !PCI_DN(dn)->table_group;
1267 dn = dn->parent)
1268 if (of_get_property(dn, "ibm,dma-window", NULL))
1269 break;
1270 /* if there is a ibm,ddw-applicable property require 64 bits */
1271 if (dn && PCI_DN(dn) &&
1272 of_get_property(dn, "ibm,ddw-applicable", NULL))
1273 return DMA_BIT_MASK(64);
1276 return dma_iommu_ops.get_required_mask(dev);
1279 static int iommu_mem_notifier(struct notifier_block *nb, unsigned long action,
1280 void *data)
1282 struct direct_window *window;
1283 struct memory_notify *arg = data;
1284 int ret = 0;
1286 switch (action) {
1287 case MEM_GOING_ONLINE:
1288 spin_lock(&direct_window_list_lock);
1289 list_for_each_entry(window, &direct_window_list, list) {
1290 ret |= tce_setrange_multi_pSeriesLP(arg->start_pfn,
1291 arg->nr_pages, window->prop);
1292 /* XXX log error */
1294 spin_unlock(&direct_window_list_lock);
1295 break;
1296 case MEM_CANCEL_ONLINE:
1297 case MEM_OFFLINE:
1298 spin_lock(&direct_window_list_lock);
1299 list_for_each_entry(window, &direct_window_list, list) {
1300 ret |= tce_clearrange_multi_pSeriesLP(arg->start_pfn,
1301 arg->nr_pages, window->prop);
1302 /* XXX log error */
1304 spin_unlock(&direct_window_list_lock);
1305 break;
1306 default:
1307 break;
1309 if (ret && action != MEM_CANCEL_ONLINE)
1310 return NOTIFY_BAD;
1312 return NOTIFY_OK;
1315 static struct notifier_block iommu_mem_nb = {
1316 .notifier_call = iommu_mem_notifier,
1319 static int iommu_reconfig_notifier(struct notifier_block *nb, unsigned long action, void *data)
1321 int err = NOTIFY_OK;
1322 struct of_reconfig_data *rd = data;
1323 struct device_node *np = rd->dn;
1324 struct pci_dn *pci = PCI_DN(np);
1325 struct direct_window *window;
1327 switch (action) {
1328 case OF_RECONFIG_DETACH_NODE:
1330 * Removing the property will invoke the reconfig
1331 * notifier again, which causes dead-lock on the
1332 * read-write semaphore of the notifier chain. So
1333 * we have to remove the property when releasing
1334 * the device node.
1336 remove_ddw(np, false);
1337 if (pci && pci->table_group)
1338 iommu_pseries_free_group(pci->table_group,
1339 np->full_name);
1341 spin_lock(&direct_window_list_lock);
1342 list_for_each_entry(window, &direct_window_list, list) {
1343 if (window->device == np) {
1344 list_del(&window->list);
1345 kfree(window);
1346 break;
1349 spin_unlock(&direct_window_list_lock);
1350 break;
1351 default:
1352 err = NOTIFY_DONE;
1353 break;
1355 return err;
1358 static struct notifier_block iommu_reconfig_nb = {
1359 .notifier_call = iommu_reconfig_notifier,
1362 /* These are called very early. */
1363 void iommu_init_early_pSeries(void)
1365 if (of_chosen && of_get_property(of_chosen, "linux,iommu-off", NULL))
1366 return;
1368 if (firmware_has_feature(FW_FEATURE_LPAR)) {
1369 pseries_pci_controller_ops.dma_bus_setup = pci_dma_bus_setup_pSeriesLP;
1370 pseries_pci_controller_ops.dma_dev_setup = pci_dma_dev_setup_pSeriesLP;
1371 ppc_md.dma_set_mask = dma_set_mask_pSeriesLP;
1372 ppc_md.dma_get_required_mask = dma_get_required_mask_pSeriesLP;
1373 } else {
1374 pseries_pci_controller_ops.dma_bus_setup = pci_dma_bus_setup_pSeries;
1375 pseries_pci_controller_ops.dma_dev_setup = pci_dma_dev_setup_pSeries;
1379 of_reconfig_notifier_register(&iommu_reconfig_nb);
1380 register_memory_notifier(&iommu_mem_nb);
1382 set_pci_dma_ops(&dma_iommu_ops);
1385 static int __init disable_multitce(char *str)
1387 if (strcmp(str, "off") == 0 &&
1388 firmware_has_feature(FW_FEATURE_LPAR) &&
1389 firmware_has_feature(FW_FEATURE_MULTITCE)) {
1390 printk(KERN_INFO "Disabling MULTITCE firmware feature\n");
1391 powerpc_firmware_features &= ~FW_FEATURE_MULTITCE;
1393 return 1;
1396 __setup("multitce=", disable_multitce);
1398 machine_subsys_initcall_sync(pseries, tce_iommu_bus_notifier_init);