2 * Copyright (C) 2001 Mike Corrigan & Dave Engebretsen, IBM Corporation
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>
31 #include <linux/spinlock.h>
32 #include <linux/sched.h> /* for show_stack */
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>
41 #include <asm/iommu.h>
42 #include <asm/pci-bridge.h>
43 #include <asm/machdep.h>
44 #include <asm/abs_addr.h>
45 #include <asm/pSeries_reconfig.h>
46 #include <asm/firmware.h>
48 #include <asm/ppc-pci.h>
50 #include <asm/mmzone.h>
52 #include "plpar_wrappers.h"
55 static void tce_invalidate_pSeries_sw(struct iommu_table
*tbl
,
56 u64
*startp
, u64
*endp
)
58 u64 __iomem
*invalidate
= (u64 __iomem
*)tbl
->it_index
;
59 unsigned long start
, end
, inc
;
63 inc
= L1_CACHE_BYTES
; /* invalidate a cacheline of TCEs at a time */
65 /* If this is non-zero, change the format. We shift the
66 * address and or in the magic from the device tree. */
71 start
|= tbl
->it_busno
;
75 end
|= inc
- 1; /* round up end to be different than start */
77 mb(); /* Make sure TCEs in memory are written */
78 while (start
<= end
) {
79 out_be64(invalidate
, start
);
84 static int tce_build_pSeries(struct iommu_table
*tbl
, long index
,
85 long npages
, unsigned long uaddr
,
86 enum dma_data_direction direction
,
87 struct dma_attrs
*attrs
)
93 proto_tce
= TCE_PCI_READ
; // Read allowed
95 if (direction
!= DMA_TO_DEVICE
)
96 proto_tce
|= TCE_PCI_WRITE
;
98 tces
= tcep
= ((u64
*)tbl
->it_base
) + index
;
101 /* can't move this out since we might cross MEMBLOCK boundary */
102 rpn
= (virt_to_abs(uaddr
)) >> TCE_SHIFT
;
103 *tcep
= proto_tce
| (rpn
& TCE_RPN_MASK
) << TCE_RPN_SHIFT
;
105 uaddr
+= TCE_PAGE_SIZE
;
109 if (tbl
->it_type
& TCE_PCI_SWINV_CREATE
)
110 tce_invalidate_pSeries_sw(tbl
, tces
, tcep
- 1);
115 static void tce_free_pSeries(struct iommu_table
*tbl
, long index
, long npages
)
119 tces
= tcep
= ((u64
*)tbl
->it_base
) + index
;
124 if (tbl
->it_type
& TCE_PCI_SWINV_FREE
)
125 tce_invalidate_pSeries_sw(tbl
, tces
, tcep
- 1);
128 static unsigned long tce_get_pseries(struct iommu_table
*tbl
, long index
)
132 tcep
= ((u64
*)tbl
->it_base
) + index
;
137 static void tce_free_pSeriesLP(struct iommu_table
*, long, long);
138 static void tce_freemulti_pSeriesLP(struct iommu_table
*, long, long);
140 static int tce_build_pSeriesLP(struct iommu_table
*tbl
, long tcenum
,
141 long npages
, unsigned long uaddr
,
142 enum dma_data_direction direction
,
143 struct dma_attrs
*attrs
)
149 long tcenum_start
= tcenum
, npages_start
= npages
;
151 rpn
= (virt_to_abs(uaddr
)) >> TCE_SHIFT
;
152 proto_tce
= TCE_PCI_READ
;
153 if (direction
!= DMA_TO_DEVICE
)
154 proto_tce
|= TCE_PCI_WRITE
;
157 tce
= proto_tce
| (rpn
& TCE_RPN_MASK
) << TCE_RPN_SHIFT
;
158 rc
= plpar_tce_put((u64
)tbl
->it_index
, (u64
)tcenum
<< 12, tce
);
160 if (unlikely(rc
== H_NOT_ENOUGH_RESOURCES
)) {
162 tce_free_pSeriesLP(tbl
, tcenum_start
,
163 (npages_start
- (npages
+ 1)));
167 if (rc
&& printk_ratelimit()) {
168 printk("tce_build_pSeriesLP: plpar_tce_put failed. rc=%lld\n", rc
);
169 printk("\tindex = 0x%llx\n", (u64
)tbl
->it_index
);
170 printk("\ttcenum = 0x%llx\n", (u64
)tcenum
);
171 printk("\ttce val = 0x%llx\n", tce
);
172 show_stack(current
, (unsigned long *)__get_SP());
181 static DEFINE_PER_CPU(u64
*, tce_page
);
183 static int tce_buildmulti_pSeriesLP(struct iommu_table
*tbl
, long tcenum
,
184 long npages
, unsigned long uaddr
,
185 enum dma_data_direction direction
,
186 struct dma_attrs
*attrs
)
193 long tcenum_start
= tcenum
, npages_start
= npages
;
198 return tce_build_pSeriesLP(tbl
, tcenum
, npages
, uaddr
,
202 local_irq_save(flags
); /* to protect tcep and the page behind it */
204 tcep
= __get_cpu_var(tce_page
);
206 /* This is safe to do since interrupts are off when we're called
207 * from iommu_alloc{,_sg}()
210 tcep
= (u64
*)__get_free_page(GFP_ATOMIC
);
211 /* If allocation fails, fall back to the loop implementation */
213 local_irq_restore(flags
);
214 return tce_build_pSeriesLP(tbl
, tcenum
, npages
, uaddr
,
217 __get_cpu_var(tce_page
) = tcep
;
220 rpn
= (virt_to_abs(uaddr
)) >> TCE_SHIFT
;
221 proto_tce
= TCE_PCI_READ
;
222 if (direction
!= DMA_TO_DEVICE
)
223 proto_tce
|= TCE_PCI_WRITE
;
225 /* We can map max one pageful of TCEs at a time */
228 * Set up the page with TCE data, looping through and setting
231 limit
= min_t(long, npages
, 4096/TCE_ENTRY_SIZE
);
233 for (l
= 0; l
< limit
; l
++) {
234 tcep
[l
] = proto_tce
| (rpn
& TCE_RPN_MASK
) << TCE_RPN_SHIFT
;
238 rc
= plpar_tce_put_indirect((u64
)tbl
->it_index
,
240 (u64
)virt_to_abs(tcep
),
245 } while (npages
> 0 && !rc
);
247 local_irq_restore(flags
);
249 if (unlikely(rc
== H_NOT_ENOUGH_RESOURCES
)) {
251 tce_freemulti_pSeriesLP(tbl
, tcenum_start
,
252 (npages_start
- (npages
+ limit
)));
256 if (rc
&& printk_ratelimit()) {
257 printk("tce_buildmulti_pSeriesLP: plpar_tce_put failed. rc=%lld\n", rc
);
258 printk("\tindex = 0x%llx\n", (u64
)tbl
->it_index
);
259 printk("\tnpages = 0x%llx\n", (u64
)npages
);
260 printk("\ttce[0] val = 0x%llx\n", tcep
[0]);
261 show_stack(current
, (unsigned long *)__get_SP());
266 static void tce_free_pSeriesLP(struct iommu_table
*tbl
, long tcenum
, long npages
)
271 rc
= plpar_tce_put((u64
)tbl
->it_index
, (u64
)tcenum
<< 12, 0);
273 if (rc
&& printk_ratelimit()) {
274 printk("tce_free_pSeriesLP: plpar_tce_put failed. rc=%lld\n", rc
);
275 printk("\tindex = 0x%llx\n", (u64
)tbl
->it_index
);
276 printk("\ttcenum = 0x%llx\n", (u64
)tcenum
);
277 show_stack(current
, (unsigned long *)__get_SP());
285 static void tce_freemulti_pSeriesLP(struct iommu_table
*tbl
, long tcenum
, long npages
)
289 rc
= plpar_tce_stuff((u64
)tbl
->it_index
, (u64
)tcenum
<< 12, 0, npages
);
291 if (rc
&& printk_ratelimit()) {
292 printk("tce_freemulti_pSeriesLP: plpar_tce_stuff failed\n");
293 printk("\trc = %lld\n", rc
);
294 printk("\tindex = 0x%llx\n", (u64
)tbl
->it_index
);
295 printk("\tnpages = 0x%llx\n", (u64
)npages
);
296 show_stack(current
, (unsigned long *)__get_SP());
300 static unsigned long tce_get_pSeriesLP(struct iommu_table
*tbl
, long tcenum
)
303 unsigned long tce_ret
;
305 rc
= plpar_tce_get((u64
)tbl
->it_index
, (u64
)tcenum
<< 12, &tce_ret
);
307 if (rc
&& printk_ratelimit()) {
308 printk("tce_get_pSeriesLP: plpar_tce_get failed. rc=%lld\n", rc
);
309 printk("\tindex = 0x%llx\n", (u64
)tbl
->it_index
);
310 printk("\ttcenum = 0x%llx\n", (u64
)tcenum
);
311 show_stack(current
, (unsigned long *)__get_SP());
317 /* this is compatible with cells for the device tree property */
318 struct dynamic_dma_window_prop
{
319 __be32 liobn
; /* tce table number */
320 __be64 dma_base
; /* address hi,lo */
321 __be32 tce_shift
; /* ilog2(tce_page_size) */
322 __be32 window_shift
; /* ilog2(tce_window_size) */
325 struct direct_window
{
326 struct device_node
*device
;
327 const struct dynamic_dma_window_prop
*prop
;
328 struct list_head list
;
331 /* Dynamic DMA Window support */
332 struct ddw_query_response
{
333 u32 windows_available
;
334 u32 largest_available_block
;
336 u32 migration_capable
;
339 struct ddw_create_response
{
345 static LIST_HEAD(direct_window_list
);
346 /* prevents races between memory on/offline and window creation */
347 static DEFINE_SPINLOCK(direct_window_list_lock
);
348 /* protects initializing window twice for same device */
349 static DEFINE_MUTEX(direct_window_init_mutex
);
350 #define DIRECT64_PROPNAME "linux,direct64-ddr-window-info"
352 static int tce_clearrange_multi_pSeriesLP(unsigned long start_pfn
,
353 unsigned long num_pfn
, const void *arg
)
355 const struct dynamic_dma_window_prop
*maprange
= arg
;
357 u64 tce_size
, num_tce
, dma_offset
, next
;
361 tce_shift
= be32_to_cpu(maprange
->tce_shift
);
362 tce_size
= 1ULL << tce_shift
;
363 next
= start_pfn
<< PAGE_SHIFT
;
364 num_tce
= num_pfn
<< PAGE_SHIFT
;
366 /* round back to the beginning of the tce page size */
367 num_tce
+= next
& (tce_size
- 1);
368 next
&= ~(tce_size
- 1);
370 /* covert to number of tces */
371 num_tce
|= tce_size
- 1;
372 num_tce
>>= tce_shift
;
376 * Set up the page with TCE data, looping through and setting
379 limit
= min_t(long, num_tce
, 512);
380 dma_offset
= next
+ be64_to_cpu(maprange
->dma_base
);
382 rc
= plpar_tce_stuff((u64
)be32_to_cpu(maprange
->liobn
),
386 } while (num_tce
> 0 && !rc
);
391 static int tce_setrange_multi_pSeriesLP(unsigned long start_pfn
,
392 unsigned long num_pfn
, const void *arg
)
394 const struct dynamic_dma_window_prop
*maprange
= arg
;
395 u64
*tcep
, tce_size
, num_tce
, dma_offset
, next
, proto_tce
, liobn
;
400 local_irq_disable(); /* to protect tcep and the page behind it */
401 tcep
= __get_cpu_var(tce_page
);
404 tcep
= (u64
*)__get_free_page(GFP_ATOMIC
);
409 __get_cpu_var(tce_page
) = tcep
;
412 proto_tce
= TCE_PCI_READ
| TCE_PCI_WRITE
;
414 liobn
= (u64
)be32_to_cpu(maprange
->liobn
);
415 tce_shift
= be32_to_cpu(maprange
->tce_shift
);
416 tce_size
= 1ULL << tce_shift
;
417 next
= start_pfn
<< PAGE_SHIFT
;
418 num_tce
= num_pfn
<< PAGE_SHIFT
;
420 /* round back to the beginning of the tce page size */
421 num_tce
+= next
& (tce_size
- 1);
422 next
&= ~(tce_size
- 1);
424 /* covert to number of tces */
425 num_tce
|= tce_size
- 1;
426 num_tce
>>= tce_shift
;
428 /* We can map max one pageful of TCEs at a time */
431 * Set up the page with TCE data, looping through and setting
434 limit
= min_t(long, num_tce
, 4096/TCE_ENTRY_SIZE
);
435 dma_offset
= next
+ be64_to_cpu(maprange
->dma_base
);
437 for (l
= 0; l
< limit
; l
++) {
438 tcep
[l
] = proto_tce
| next
;
442 rc
= plpar_tce_put_indirect(liobn
,
444 (u64
)virt_to_abs(tcep
),
448 } while (num_tce
> 0 && !rc
);
450 /* error cleanup: caller will clear whole range */
456 static int tce_setrange_multi_pSeriesLP_walk(unsigned long start_pfn
,
457 unsigned long num_pfn
, void *arg
)
459 return tce_setrange_multi_pSeriesLP(start_pfn
, num_pfn
, arg
);
464 static void iommu_table_setparms(struct pci_controller
*phb
,
465 struct device_node
*dn
,
466 struct iommu_table
*tbl
)
468 struct device_node
*node
;
469 const unsigned long *basep
, *sw_inval
;
474 basep
= of_get_property(node
, "linux,tce-base", NULL
);
475 sizep
= of_get_property(node
, "linux,tce-size", NULL
);
476 if (basep
== NULL
|| sizep
== NULL
) {
477 printk(KERN_ERR
"PCI_DMA: iommu_table_setparms: %s has "
478 "missing tce entries !\n", dn
->full_name
);
482 tbl
->it_base
= (unsigned long)__va(*basep
);
484 if (!is_kdump_kernel())
485 memset((void *)tbl
->it_base
, 0, *sizep
);
487 tbl
->it_busno
= phb
->bus
->number
;
489 /* Units of tce entries */
490 tbl
->it_offset
= phb
->dma_window_base_cur
>> IOMMU_PAGE_SHIFT
;
492 /* Test if we are going over 2GB of DMA space */
493 if (phb
->dma_window_base_cur
+ phb
->dma_window_size
> 0x80000000ul
) {
494 udbg_printf("PCI_DMA: Unexpected number of IOAs under this PHB.\n");
495 panic("PCI_DMA: Unexpected number of IOAs under this PHB.\n");
498 phb
->dma_window_base_cur
+= phb
->dma_window_size
;
500 /* Set the tce table size - measured in entries */
501 tbl
->it_size
= phb
->dma_window_size
>> IOMMU_PAGE_SHIFT
;
504 tbl
->it_blocksize
= 16;
505 tbl
->it_type
= TCE_PCI
;
507 sw_inval
= of_get_property(node
, "linux,tce-sw-invalidate-info", NULL
);
510 * This property contains information on how to
511 * invalidate the TCE entry. The first property is
512 * the base MMIO address used to invalidate entries.
513 * The second property tells us the format of the TCE
514 * invalidate (whether it needs to be shifted) and
515 * some magic routing info to add to our invalidate
518 tbl
->it_index
= (unsigned long) ioremap(sw_inval
[0], 8);
519 tbl
->it_busno
= sw_inval
[1]; /* overload this with magic */
520 tbl
->it_type
= TCE_PCI_SWINV_CREATE
| TCE_PCI_SWINV_FREE
;
525 * iommu_table_setparms_lpar
527 * Function: On pSeries LPAR systems, return TCE table info, given a pci bus.
529 static void iommu_table_setparms_lpar(struct pci_controller
*phb
,
530 struct device_node
*dn
,
531 struct iommu_table
*tbl
,
532 const void *dma_window
)
534 unsigned long offset
, size
;
536 of_parse_dma_window(dn
, dma_window
, &tbl
->it_index
, &offset
, &size
);
538 tbl
->it_busno
= phb
->bus
->number
;
540 tbl
->it_blocksize
= 16;
541 tbl
->it_type
= TCE_PCI
;
542 tbl
->it_offset
= offset
>> IOMMU_PAGE_SHIFT
;
543 tbl
->it_size
= size
>> IOMMU_PAGE_SHIFT
;
546 static void pci_dma_bus_setup_pSeries(struct pci_bus
*bus
)
548 struct device_node
*dn
;
549 struct iommu_table
*tbl
;
550 struct device_node
*isa_dn
, *isa_dn_orig
;
551 struct device_node
*tmp
;
555 dn
= pci_bus_to_OF_node(bus
);
557 pr_debug("pci_dma_bus_setup_pSeries: setting up bus %s\n", dn
->full_name
);
560 /* This is not a root bus, any setup will be done for the
561 * device-side of the bridge in iommu_dev_setup_pSeries().
567 /* Check if the ISA bus on the system is under
570 isa_dn
= isa_dn_orig
= of_find_node_by_type(NULL
, "isa");
572 while (isa_dn
&& isa_dn
!= dn
)
573 isa_dn
= isa_dn
->parent
;
576 of_node_put(isa_dn_orig
);
578 /* Count number of direct PCI children of the PHB. */
579 for (children
= 0, tmp
= dn
->child
; tmp
; tmp
= tmp
->sibling
)
582 pr_debug("Children: %d\n", children
);
584 /* Calculate amount of DMA window per slot. Each window must be
585 * a power of two (due to pci_alloc_consistent requirements).
587 * Keep 256MB aside for PHBs with ISA.
591 /* No ISA/IDE - just set window size and return */
592 pci
->phb
->dma_window_size
= 0x80000000ul
; /* To be divided */
594 while (pci
->phb
->dma_window_size
* children
> 0x80000000ul
)
595 pci
->phb
->dma_window_size
>>= 1;
596 pr_debug("No ISA/IDE, window size is 0x%llx\n",
597 pci
->phb
->dma_window_size
);
598 pci
->phb
->dma_window_base_cur
= 0;
603 /* If we have ISA, then we probably have an IDE
604 * controller too. Allocate a 128MB table but
605 * skip the first 128MB to avoid stepping on ISA
608 pci
->phb
->dma_window_size
= 0x8000000ul
;
609 pci
->phb
->dma_window_base_cur
= 0x8000000ul
;
611 tbl
= kzalloc_node(sizeof(struct iommu_table
), GFP_KERNEL
,
614 iommu_table_setparms(pci
->phb
, dn
, tbl
);
615 pci
->iommu_table
= iommu_init_table(tbl
, pci
->phb
->node
);
617 /* Divide the rest (1.75GB) among the children */
618 pci
->phb
->dma_window_size
= 0x80000000ul
;
619 while (pci
->phb
->dma_window_size
* children
> 0x70000000ul
)
620 pci
->phb
->dma_window_size
>>= 1;
622 pr_debug("ISA/IDE, window size is 0x%llx\n", pci
->phb
->dma_window_size
);
626 static void pci_dma_bus_setup_pSeriesLP(struct pci_bus
*bus
)
628 struct iommu_table
*tbl
;
629 struct device_node
*dn
, *pdn
;
631 const void *dma_window
= NULL
;
633 dn
= pci_bus_to_OF_node(bus
);
635 pr_debug("pci_dma_bus_setup_pSeriesLP: setting up bus %s\n",
638 /* Find nearest ibm,dma-window, walking up the device tree */
639 for (pdn
= dn
; pdn
!= NULL
; pdn
= pdn
->parent
) {
640 dma_window
= of_get_property(pdn
, "ibm,dma-window", NULL
);
641 if (dma_window
!= NULL
)
645 if (dma_window
== NULL
) {
646 pr_debug(" no ibm,dma-window property !\n");
652 pr_debug(" parent is %s, iommu_table: 0x%p\n",
653 pdn
->full_name
, ppci
->iommu_table
);
655 if (!ppci
->iommu_table
) {
656 tbl
= kzalloc_node(sizeof(struct iommu_table
), GFP_KERNEL
,
658 iommu_table_setparms_lpar(ppci
->phb
, pdn
, tbl
, dma_window
);
659 ppci
->iommu_table
= iommu_init_table(tbl
, ppci
->phb
->node
);
660 pr_debug(" created table: %p\n", ppci
->iommu_table
);
665 static void pci_dma_dev_setup_pSeries(struct pci_dev
*dev
)
667 struct device_node
*dn
;
668 struct iommu_table
*tbl
;
670 pr_debug("pci_dma_dev_setup_pSeries: %s\n", pci_name(dev
));
672 dn
= dev
->dev
.of_node
;
674 /* If we're the direct child of a root bus, then we need to allocate
675 * an iommu table ourselves. The bus setup code should have setup
676 * the window sizes already.
678 if (!dev
->bus
->self
) {
679 struct pci_controller
*phb
= PCI_DN(dn
)->phb
;
681 pr_debug(" --> first child, no bridge. Allocating iommu table.\n");
682 tbl
= kzalloc_node(sizeof(struct iommu_table
), GFP_KERNEL
,
684 iommu_table_setparms(phb
, dn
, tbl
);
685 PCI_DN(dn
)->iommu_table
= iommu_init_table(tbl
, phb
->node
);
686 set_iommu_table_base(&dev
->dev
, PCI_DN(dn
)->iommu_table
);
690 /* If this device is further down the bus tree, search upwards until
691 * an already allocated iommu table is found and use that.
694 while (dn
&& PCI_DN(dn
) && PCI_DN(dn
)->iommu_table
== NULL
)
697 if (dn
&& PCI_DN(dn
))
698 set_iommu_table_base(&dev
->dev
, PCI_DN(dn
)->iommu_table
);
700 printk(KERN_WARNING
"iommu: Device %s has no iommu table\n",
704 static int __read_mostly disable_ddw
;
706 static int __init
disable_ddw_setup(char *str
)
709 printk(KERN_INFO
"ppc iommu: disabling ddw.\n");
714 early_param("disable_ddw", disable_ddw_setup
);
716 static inline void __remove_ddw(struct device_node
*np
, const u32
*ddw_avail
, u64 liobn
)
720 ret
= rtas_call(ddw_avail
[2], 1, 1, NULL
, liobn
);
722 pr_warning("%s: failed to remove DMA window: rtas returned "
723 "%d to ibm,remove-pe-dma-window(%x) %llx\n",
724 np
->full_name
, ret
, ddw_avail
[2], liobn
);
726 pr_debug("%s: successfully removed DMA window: rtas returned "
727 "%d to ibm,remove-pe-dma-window(%x) %llx\n",
728 np
->full_name
, ret
, ddw_avail
[2], liobn
);
731 static void remove_ddw(struct device_node
*np
)
733 struct dynamic_dma_window_prop
*dwp
;
734 struct property
*win64
;
735 const u32
*ddw_avail
;
739 ddw_avail
= of_get_property(np
, "ibm,ddw-applicable", &len
);
740 win64
= of_find_property(np
, DIRECT64_PROPNAME
, NULL
);
744 if (!ddw_avail
|| len
< 3 * sizeof(u32
) || win64
->length
< sizeof(*dwp
))
748 liobn
= (u64
)be32_to_cpu(dwp
->liobn
);
750 /* clear the whole window, note the arg is in kernel pages */
751 ret
= tce_clearrange_multi_pSeriesLP(0,
752 1ULL << (be32_to_cpu(dwp
->window_shift
) - PAGE_SHIFT
), dwp
);
754 pr_warning("%s failed to clear tces in window.\n",
757 pr_debug("%s successfully cleared tces in window.\n",
760 __remove_ddw(np
, ddw_avail
, liobn
);
763 ret
= prom_remove_property(np
, win64
);
765 pr_warning("%s: failed to remove direct window property: %d\n",
769 static u64
find_existing_ddw(struct device_node
*pdn
)
771 struct direct_window
*window
;
772 const struct dynamic_dma_window_prop
*direct64
;
775 spin_lock(&direct_window_list_lock
);
776 /* check if we already created a window and dupe that config if so */
777 list_for_each_entry(window
, &direct_window_list
, list
) {
778 if (window
->device
== pdn
) {
779 direct64
= window
->prop
;
780 dma_addr
= direct64
->dma_base
;
784 spin_unlock(&direct_window_list_lock
);
789 static int find_existing_ddw_windows(void)
792 struct device_node
*pdn
;
793 struct direct_window
*window
;
794 const struct dynamic_dma_window_prop
*direct64
;
796 if (!firmware_has_feature(FW_FEATURE_LPAR
))
799 for_each_node_with_property(pdn
, DIRECT64_PROPNAME
) {
800 direct64
= of_get_property(pdn
, DIRECT64_PROPNAME
, &len
);
804 window
= kzalloc(sizeof(*window
), GFP_KERNEL
);
805 if (!window
|| len
< sizeof(struct dynamic_dma_window_prop
)) {
811 window
->device
= pdn
;
812 window
->prop
= direct64
;
813 spin_lock(&direct_window_list_lock
);
814 list_add(&window
->list
, &direct_window_list
);
815 spin_unlock(&direct_window_list_lock
);
820 machine_arch_initcall(pseries
, find_existing_ddw_windows
);
822 static int query_ddw(struct pci_dev
*dev
, const u32
*ddw_avail
,
823 struct ddw_query_response
*query
)
825 struct eeh_dev
*edev
;
831 * Get the config address and phb buid of the PE window.
832 * Rely on eeh to retrieve this for us.
833 * Retrieve them from the pci device, not the node with the
834 * dma-window property
836 edev
= pci_dev_to_eeh_dev(dev
);
837 cfg_addr
= edev
->config_addr
;
838 if (edev
->pe_config_addr
)
839 cfg_addr
= edev
->pe_config_addr
;
840 buid
= edev
->phb
->buid
;
842 ret
= rtas_call(ddw_avail
[0], 3, 5, (u32
*)query
,
843 cfg_addr
, BUID_HI(buid
), BUID_LO(buid
));
844 dev_info(&dev
->dev
, "ibm,query-pe-dma-windows(%x) %x %x %x"
845 " returned %d\n", ddw_avail
[0], cfg_addr
, BUID_HI(buid
),
850 static int create_ddw(struct pci_dev
*dev
, const u32
*ddw_avail
,
851 struct ddw_create_response
*create
, int page_shift
,
854 struct eeh_dev
*edev
;
860 * Get the config address and phb buid of the PE window.
861 * Rely on eeh to retrieve this for us.
862 * Retrieve them from the pci device, not the node with the
863 * dma-window property
865 edev
= pci_dev_to_eeh_dev(dev
);
866 cfg_addr
= edev
->config_addr
;
867 if (edev
->pe_config_addr
)
868 cfg_addr
= edev
->pe_config_addr
;
869 buid
= edev
->phb
->buid
;
872 /* extra outputs are LIOBN and dma-addr (hi, lo) */
873 ret
= rtas_call(ddw_avail
[1], 5, 4, (u32
*)create
, cfg_addr
,
874 BUID_HI(buid
), BUID_LO(buid
), page_shift
, window_shift
);
875 } while (rtas_busy_delay(ret
));
877 "ibm,create-pe-dma-window(%x) %x %x %x %x %x returned %d "
878 "(liobn = 0x%x starting addr = %x %x)\n", ddw_avail
[1],
879 cfg_addr
, BUID_HI(buid
), BUID_LO(buid
), page_shift
,
880 window_shift
, ret
, create
->liobn
, create
->addr_hi
, create
->addr_lo
);
885 static void restore_default_window(struct pci_dev
*dev
,
886 u32 ddw_restore_token
, unsigned long liobn
)
888 struct eeh_dev
*edev
;
894 * Get the config address and phb buid of the PE window.
895 * Rely on eeh to retrieve this for us.
896 * Retrieve them from the pci device, not the node with the
897 * dma-window property
899 edev
= pci_dev_to_eeh_dev(dev
);
900 cfg_addr
= edev
->config_addr
;
901 if (edev
->pe_config_addr
)
902 cfg_addr
= edev
->pe_config_addr
;
903 buid
= edev
->phb
->buid
;
906 ret
= rtas_call(ddw_restore_token
, 3, 1, NULL
, cfg_addr
,
907 BUID_HI(buid
), BUID_LO(buid
));
908 } while (rtas_busy_delay(ret
));
910 "ibm,reset-pe-dma-windows(%x) %x %x %x returned %d\n",
911 ddw_restore_token
, cfg_addr
, BUID_HI(buid
), BUID_LO(buid
), ret
);
915 * If the PE supports dynamic dma windows, and there is space for a table
916 * that can map all pages in a linear offset, then setup such a table,
917 * and record the dma-offset in the struct device.
919 * dev: the pci device we are checking
920 * pdn: the parent pe node with the ibm,dma_window property
921 * Future: also check if we can remap the base window for our base page size
923 * returns the dma offset for use by dma_set_mask
925 static u64
enable_ddw(struct pci_dev
*dev
, struct device_node
*pdn
)
928 struct ddw_query_response query
;
929 struct ddw_create_response create
;
931 u64 dma_addr
, max_addr
;
932 struct device_node
*dn
;
933 const u32
*uninitialized_var(ddw_avail
);
934 const u32
*uninitialized_var(ddw_extensions
);
935 u32 ddw_restore_token
= 0;
936 struct direct_window
*window
;
937 struct property
*win64
;
938 struct dynamic_dma_window_prop
*ddwprop
;
939 const void *dma_window
= NULL
;
940 unsigned long liobn
, offset
, size
;
942 mutex_lock(&direct_window_init_mutex
);
944 dma_addr
= find_existing_ddw(pdn
);
949 * the ibm,ddw-applicable property holds the tokens for:
950 * ibm,query-pe-dma-window
951 * ibm,create-pe-dma-window
952 * ibm,remove-pe-dma-window
953 * for the given node in that order.
954 * the property is actually in the parent, not the PE
956 ddw_avail
= of_get_property(pdn
, "ibm,ddw-applicable", &len
);
957 if (!ddw_avail
|| len
< 3 * sizeof(u32
))
961 * the extensions property is only required to exist in certain
962 * levels of firmware and later
963 * the ibm,ddw-extensions property is a list with the first
964 * element containing the number of extensions and each
965 * subsequent entry is a value corresponding to that extension
967 ddw_extensions
= of_get_property(pdn
, "ibm,ddw-extensions", &len
);
968 if (ddw_extensions
) {
970 * each new defined extension length should be added to
971 * the top of the switch so the "earlier" entries also
974 switch (ddw_extensions
[0]) {
975 /* ibm,reset-pe-dma-windows */
977 ddw_restore_token
= ddw_extensions
[1];
983 * Only remove the existing DMA window if we can restore back to
984 * the default state. Removing the existing window maximizes the
985 * resources available to firmware for dynamic window creation.
987 if (ddw_restore_token
) {
988 dma_window
= of_get_property(pdn
, "ibm,dma-window", NULL
);
989 of_parse_dma_window(pdn
, dma_window
, &liobn
, &offset
, &size
);
990 __remove_ddw(pdn
, ddw_avail
, liobn
);
994 * Query if there is a second window of size to map the
995 * whole partition. Query returns number of windows, largest
996 * block assigned to PE (partition endpoint), and two bitmasks
997 * of page sizes: supported and supported for migrate-dma.
999 dn
= pci_device_to_OF_node(dev
);
1000 ret
= query_ddw(dev
, ddw_avail
, &query
);
1002 goto out_restore_window
;
1004 if (query
.windows_available
== 0) {
1006 * no additional windows are available for this device.
1007 * We might be able to reallocate the existing window,
1008 * trading in for a larger page size.
1010 dev_dbg(&dev
->dev
, "no free dynamic windows");
1011 goto out_restore_window
;
1013 if (query
.page_size
& 4) {
1014 page_shift
= 24; /* 16MB */
1015 } else if (query
.page_size
& 2) {
1016 page_shift
= 16; /* 64kB */
1017 } else if (query
.page_size
& 1) {
1018 page_shift
= 12; /* 4kB */
1020 dev_dbg(&dev
->dev
, "no supported direct page size in mask %x",
1022 goto out_restore_window
;
1024 /* verify the window * number of ptes will map the partition */
1025 /* check largest block * page size > max memory hotplug addr */
1026 max_addr
= memory_hotplug_max();
1027 if (query
.largest_available_block
< (max_addr
>> page_shift
)) {
1028 dev_dbg(&dev
->dev
, "can't map partiton max 0x%llx with %u "
1029 "%llu-sized pages\n", max_addr
, query
.largest_available_block
,
1030 1ULL << page_shift
);
1031 goto out_restore_window
;
1033 len
= order_base_2(max_addr
);
1034 win64
= kzalloc(sizeof(struct property
), GFP_KERNEL
);
1037 "couldn't allocate property for 64bit dma window\n");
1038 goto out_restore_window
;
1040 win64
->name
= kstrdup(DIRECT64_PROPNAME
, GFP_KERNEL
);
1041 win64
->value
= ddwprop
= kmalloc(sizeof(*ddwprop
), GFP_KERNEL
);
1042 win64
->length
= sizeof(*ddwprop
);
1043 if (!win64
->name
|| !win64
->value
) {
1045 "couldn't allocate property name and value\n");
1049 ret
= create_ddw(dev
, ddw_avail
, &create
, page_shift
, len
);
1053 ddwprop
->liobn
= cpu_to_be32(create
.liobn
);
1054 ddwprop
->dma_base
= cpu_to_be64(of_read_number(&create
.addr_hi
, 2));
1055 ddwprop
->tce_shift
= cpu_to_be32(page_shift
);
1056 ddwprop
->window_shift
= cpu_to_be32(len
);
1058 dev_dbg(&dev
->dev
, "created tce table LIOBN 0x%x for %s\n",
1059 create
.liobn
, dn
->full_name
);
1061 window
= kzalloc(sizeof(*window
), GFP_KERNEL
);
1063 goto out_clear_window
;
1065 ret
= walk_system_ram_range(0, memblock_end_of_DRAM() >> PAGE_SHIFT
,
1066 win64
->value
, tce_setrange_multi_pSeriesLP_walk
);
1068 dev_info(&dev
->dev
, "failed to map direct window for %s: %d\n",
1069 dn
->full_name
, ret
);
1070 goto out_free_window
;
1073 ret
= prom_add_property(pdn
, win64
);
1075 dev_err(&dev
->dev
, "unable to add dma window property for %s: %d",
1076 pdn
->full_name
, ret
);
1077 goto out_free_window
;
1080 window
->device
= pdn
;
1081 window
->prop
= ddwprop
;
1082 spin_lock(&direct_window_list_lock
);
1083 list_add(&window
->list
, &direct_window_list
);
1084 spin_unlock(&direct_window_list_lock
);
1086 dma_addr
= of_read_number(&create
.addr_hi
, 2);
1097 kfree(win64
->value
);
1101 if (ddw_restore_token
)
1102 restore_default_window(dev
, ddw_restore_token
, liobn
);
1105 mutex_unlock(&direct_window_init_mutex
);
1109 static void pci_dma_dev_setup_pSeriesLP(struct pci_dev
*dev
)
1111 struct device_node
*pdn
, *dn
;
1112 struct iommu_table
*tbl
;
1113 const void *dma_window
= NULL
;
1116 pr_debug("pci_dma_dev_setup_pSeriesLP: %s\n", pci_name(dev
));
1118 /* dev setup for LPAR is a little tricky, since the device tree might
1119 * contain the dma-window properties per-device and not necessarily
1120 * for the bus. So we need to search upwards in the tree until we
1121 * either hit a dma-window property, OR find a parent with a table
1122 * already allocated.
1124 dn
= pci_device_to_OF_node(dev
);
1125 pr_debug(" node is %s\n", dn
->full_name
);
1127 for (pdn
= dn
; pdn
&& PCI_DN(pdn
) && !PCI_DN(pdn
)->iommu_table
;
1128 pdn
= pdn
->parent
) {
1129 dma_window
= of_get_property(pdn
, "ibm,dma-window", NULL
);
1134 if (!pdn
|| !PCI_DN(pdn
)) {
1135 printk(KERN_WARNING
"pci_dma_dev_setup_pSeriesLP: "
1136 "no DMA window found for pci dev=%s dn=%s\n",
1137 pci_name(dev
), of_node_full_name(dn
));
1140 pr_debug(" parent is %s\n", pdn
->full_name
);
1143 if (!pci
->iommu_table
) {
1144 tbl
= kzalloc_node(sizeof(struct iommu_table
), GFP_KERNEL
,
1146 iommu_table_setparms_lpar(pci
->phb
, pdn
, tbl
, dma_window
);
1147 pci
->iommu_table
= iommu_init_table(tbl
, pci
->phb
->node
);
1148 pr_debug(" created table: %p\n", pci
->iommu_table
);
1150 pr_debug(" found DMA window, table: %p\n", pci
->iommu_table
);
1153 set_iommu_table_base(&dev
->dev
, pci
->iommu_table
);
1156 static int dma_set_mask_pSeriesLP(struct device
*dev
, u64 dma_mask
)
1158 bool ddw_enabled
= false;
1159 struct device_node
*pdn
, *dn
;
1160 struct pci_dev
*pdev
;
1161 const void *dma_window
= NULL
;
1167 if (!dev_is_pci(dev
))
1170 pdev
= to_pci_dev(dev
);
1172 /* only attempt to use a new window if 64-bit DMA is requested */
1173 if (!disable_ddw
&& dma_mask
== DMA_BIT_MASK(64)) {
1174 dn
= pci_device_to_OF_node(pdev
);
1175 dev_dbg(dev
, "node is %s\n", dn
->full_name
);
1178 * the device tree might contain the dma-window properties
1179 * per-device and not necessarily for the bus. So we need to
1180 * search upwards in the tree until we either hit a dma-window
1181 * property, OR find a parent with a table already allocated.
1183 for (pdn
= dn
; pdn
&& PCI_DN(pdn
) && !PCI_DN(pdn
)->iommu_table
;
1184 pdn
= pdn
->parent
) {
1185 dma_window
= of_get_property(pdn
, "ibm,dma-window", NULL
);
1189 if (pdn
&& PCI_DN(pdn
)) {
1190 dma_offset
= enable_ddw(pdev
, pdn
);
1191 if (dma_offset
!= 0) {
1192 dev_info(dev
, "Using 64-bit direct DMA at offset %llx\n", dma_offset
);
1193 set_dma_offset(dev
, dma_offset
);
1194 set_dma_ops(dev
, &dma_direct_ops
);
1200 /* fall back on iommu ops, restore table pointer with ops */
1201 if (!ddw_enabled
&& get_dma_ops(dev
) != &dma_iommu_ops
) {
1202 dev_info(dev
, "Restoring 32-bit DMA via iommu\n");
1203 set_dma_ops(dev
, &dma_iommu_ops
);
1204 pci_dma_dev_setup_pSeriesLP(pdev
);
1208 if (!dma_supported(dev
, dma_mask
))
1211 *dev
->dma_mask
= dma_mask
;
1215 static u64
dma_get_required_mask_pSeriesLP(struct device
*dev
)
1220 if (!disable_ddw
&& dev_is_pci(dev
)) {
1221 struct pci_dev
*pdev
= to_pci_dev(dev
);
1222 struct device_node
*dn
;
1224 dn
= pci_device_to_OF_node(pdev
);
1226 /* search upwards for ibm,dma-window */
1227 for (; dn
&& PCI_DN(dn
) && !PCI_DN(dn
)->iommu_table
;
1229 if (of_get_property(dn
, "ibm,dma-window", NULL
))
1231 /* if there is a ibm,ddw-applicable property require 64 bits */
1232 if (dn
&& PCI_DN(dn
) &&
1233 of_get_property(dn
, "ibm,ddw-applicable", NULL
))
1234 return DMA_BIT_MASK(64);
1237 return dma_iommu_ops
.get_required_mask(dev
);
1240 #else /* CONFIG_PCI */
1241 #define pci_dma_bus_setup_pSeries NULL
1242 #define pci_dma_dev_setup_pSeries NULL
1243 #define pci_dma_bus_setup_pSeriesLP NULL
1244 #define pci_dma_dev_setup_pSeriesLP NULL
1245 #define dma_set_mask_pSeriesLP NULL
1246 #define dma_get_required_mask_pSeriesLP NULL
1247 #endif /* !CONFIG_PCI */
1249 static int iommu_mem_notifier(struct notifier_block
*nb
, unsigned long action
,
1252 struct direct_window
*window
;
1253 struct memory_notify
*arg
= data
;
1257 case MEM_GOING_ONLINE
:
1258 spin_lock(&direct_window_list_lock
);
1259 list_for_each_entry(window
, &direct_window_list
, list
) {
1260 ret
|= tce_setrange_multi_pSeriesLP(arg
->start_pfn
,
1261 arg
->nr_pages
, window
->prop
);
1264 spin_unlock(&direct_window_list_lock
);
1266 case MEM_CANCEL_ONLINE
:
1268 spin_lock(&direct_window_list_lock
);
1269 list_for_each_entry(window
, &direct_window_list
, list
) {
1270 ret
|= tce_clearrange_multi_pSeriesLP(arg
->start_pfn
,
1271 arg
->nr_pages
, window
->prop
);
1274 spin_unlock(&direct_window_list_lock
);
1279 if (ret
&& action
!= MEM_CANCEL_ONLINE
)
1285 static struct notifier_block iommu_mem_nb
= {
1286 .notifier_call
= iommu_mem_notifier
,
1289 static int iommu_reconfig_notifier(struct notifier_block
*nb
, unsigned long action
, void *node
)
1291 int err
= NOTIFY_OK
;
1292 struct device_node
*np
= node
;
1293 struct pci_dn
*pci
= PCI_DN(np
);
1294 struct direct_window
*window
;
1297 case PSERIES_RECONFIG_REMOVE
:
1298 if (pci
&& pci
->iommu_table
)
1299 iommu_free_table(pci
->iommu_table
, np
->full_name
);
1301 spin_lock(&direct_window_list_lock
);
1302 list_for_each_entry(window
, &direct_window_list
, list
) {
1303 if (window
->device
== np
) {
1304 list_del(&window
->list
);
1309 spin_unlock(&direct_window_list_lock
);
1312 * Because the notifier runs after isolation of the
1313 * slot, we are guaranteed any DMA window has already
1314 * been revoked and the TCEs have been marked invalid,
1315 * so we don't need a call to remove_ddw(np). However,
1316 * if an additional notifier action is added before the
1317 * isolate call, we should update this code for
1318 * completeness with such a call.
1328 static struct notifier_block iommu_reconfig_nb
= {
1329 .notifier_call
= iommu_reconfig_notifier
,
1332 /* These are called very early. */
1333 void iommu_init_early_pSeries(void)
1335 if (of_chosen
&& of_get_property(of_chosen
, "linux,iommu-off", NULL
))
1338 if (firmware_has_feature(FW_FEATURE_LPAR
)) {
1339 if (firmware_has_feature(FW_FEATURE_MULTITCE
)) {
1340 ppc_md
.tce_build
= tce_buildmulti_pSeriesLP
;
1341 ppc_md
.tce_free
= tce_freemulti_pSeriesLP
;
1343 ppc_md
.tce_build
= tce_build_pSeriesLP
;
1344 ppc_md
.tce_free
= tce_free_pSeriesLP
;
1346 ppc_md
.tce_get
= tce_get_pSeriesLP
;
1347 ppc_md
.pci_dma_bus_setup
= pci_dma_bus_setup_pSeriesLP
;
1348 ppc_md
.pci_dma_dev_setup
= pci_dma_dev_setup_pSeriesLP
;
1349 ppc_md
.dma_set_mask
= dma_set_mask_pSeriesLP
;
1350 ppc_md
.dma_get_required_mask
= dma_get_required_mask_pSeriesLP
;
1352 ppc_md
.tce_build
= tce_build_pSeries
;
1353 ppc_md
.tce_free
= tce_free_pSeries
;
1354 ppc_md
.tce_get
= tce_get_pseries
;
1355 ppc_md
.pci_dma_bus_setup
= pci_dma_bus_setup_pSeries
;
1356 ppc_md
.pci_dma_dev_setup
= pci_dma_dev_setup_pSeries
;
1360 pSeries_reconfig_notifier_register(&iommu_reconfig_nb
);
1361 register_memory_notifier(&iommu_mem_nb
);
1363 set_pci_dma_ops(&dma_iommu_ops
);
1366 static int __init
disable_multitce(char *str
)
1368 if (strcmp(str
, "off") == 0 &&
1369 firmware_has_feature(FW_FEATURE_LPAR
) &&
1370 firmware_has_feature(FW_FEATURE_MULTITCE
)) {
1371 printk(KERN_INFO
"Disabling MULTITCE firmware feature\n");
1372 ppc_md
.tce_build
= tce_build_pSeriesLP
;
1373 ppc_md
.tce_free
= tce_free_pSeriesLP
;
1374 powerpc_firmware_features
&= ~FW_FEATURE_MULTITCE
;
1379 __setup("multitce=", disable_multitce
);