]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - arch/powerpc/platforms/pseries/iommu.c
powerpc/pseries: Failure on removing device node
[mirror_ubuntu-zesty-kernel.git] / arch / powerpc / platforms / pseries / iommu.c
CommitLineData
1da177e4 1/*
1da177e4
LT
2 * Copyright (C) 2001 Mike Corrigan & Dave Engebretsen, IBM Corporation
3 *
bc97ce95 4 * Rewrite, cleanup:
1da177e4 5 *
91f14480 6 * Copyright (C) 2004 Olof Johansson <olof@lixom.net>, IBM Corporation
bc97ce95 7 * Copyright (C) 2006 Olof Johansson <olof@lixom.net>
1da177e4
LT
8 *
9 * Dynamic DMA mapping support, pSeries-specific parts, both SMP and LPAR.
10 *
bc97ce95 11 *
1da177e4
LT
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.
bc97ce95 16 *
1da177e4
LT
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.
bc97ce95 21 *
1da177e4
LT
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
25 */
26
1da177e4
LT
27#include <linux/init.h>
28#include <linux/types.h>
29#include <linux/slab.h>
30#include <linux/mm.h>
beacc6da 31#include <linux/memblock.h>
1da177e4 32#include <linux/spinlock.h>
62fe91bb 33#include <linux/sched.h> /* for show_stack */
1da177e4
LT
34#include <linux/string.h>
35#include <linux/pci.h>
36#include <linux/dma-mapping.h>
62a8bd6c 37#include <linux/crash_dump.h>
4e8b0cf4 38#include <linux/memory.h>
1cf3d8b3 39#include <linux/of.h>
1da177e4
LT
40#include <asm/io.h>
41#include <asm/prom.h>
42#include <asm/rtas.h>
1da177e4
LT
43#include <asm/iommu.h>
44#include <asm/pci-bridge.h>
45#include <asm/machdep.h>
1ababe11 46#include <asm/firmware.h>
c707ffcf 47#include <asm/tce.h>
d387899f 48#include <asm/ppc-pci.h>
2249ca9d 49#include <asm/udbg.h>
4e8b0cf4 50#include <asm/mmzone.h>
212bebb4 51#include <asm/plpar_wrappers.h>
a1218720 52
1da177e4 53
8d3d589a 54static void tce_invalidate_pSeries_sw(struct iommu_table *tbl,
df015604 55 __be64 *startp, __be64 *endp)
8d3d589a
MM
56{
57 u64 __iomem *invalidate = (u64 __iomem *)tbl->it_index;
58 unsigned long start, end, inc;
59
60 start = __pa(startp);
61 end = __pa(endp);
62 inc = L1_CACHE_BYTES; /* invalidate a cacheline of TCEs at a time */
63
64 /* If this is non-zero, change the format. We shift the
65 * address and or in the magic from the device tree. */
66 if (tbl->it_busno) {
67 start <<= 12;
68 end <<= 12;
69 inc <<= 12;
70 start |= tbl->it_busno;
71 end |= tbl->it_busno;
72 }
73
74 end |= inc - 1; /* round up end to be different than start */
75
76 mb(); /* Make sure TCEs in memory are written */
77 while (start <= end) {
78 out_be64(invalidate, start);
79 start += inc;
80 }
81}
82
6490c490 83static int tce_build_pSeries(struct iommu_table *tbl, long index,
bc97ce95 84 long npages, unsigned long uaddr,
4f3dd8a0
MN
85 enum dma_data_direction direction,
86 struct dma_attrs *attrs)
1da177e4 87{
bc97ce95 88 u64 proto_tce;
df015604 89 __be64 *tcep, *tces;
bc97ce95 90 u64 rpn;
1da177e4 91
bc97ce95 92 proto_tce = TCE_PCI_READ; // Read allowed
1da177e4
LT
93
94 if (direction != DMA_TO_DEVICE)
bc97ce95 95 proto_tce |= TCE_PCI_WRITE;
1da177e4 96
df015604 97 tces = tcep = ((__be64 *)tbl->it_base) + index;
1da177e4
LT
98
99 while (npages--) {
95f72d1e 100 /* can't move this out since we might cross MEMBLOCK boundary */
474e3d56 101 rpn = __pa(uaddr) >> TCE_SHIFT;
df015604 102 *tcep = cpu_to_be64(proto_tce | (rpn & TCE_RPN_MASK) << TCE_RPN_SHIFT);
1da177e4 103
d0035c62 104 uaddr += TCE_PAGE_SIZE;
bc97ce95 105 tcep++;
1da177e4 106 }
8d3d589a 107
bc6dc752 108 if (tbl->it_type & TCE_PCI_SWINV_CREATE)
8d3d589a 109 tce_invalidate_pSeries_sw(tbl, tces, tcep - 1);
6490c490 110 return 0;
1da177e4
LT
111}
112
113
114static void tce_free_pSeries(struct iommu_table *tbl, long index, long npages)
115{
df015604 116 __be64 *tcep, *tces;
1da177e4 117
df015604 118 tces = tcep = ((__be64 *)tbl->it_base) + index;
bc97ce95
OJ
119
120 while (npages--)
121 *(tcep++) = 0;
8d3d589a 122
bc6dc752 123 if (tbl->it_type & TCE_PCI_SWINV_FREE)
8d3d589a 124 tce_invalidate_pSeries_sw(tbl, tces, tcep - 1);
1da177e4
LT
125}
126
5f50867b
HM
127static unsigned long tce_get_pseries(struct iommu_table *tbl, long index)
128{
df015604 129 __be64 *tcep;
5f50867b 130
df015604 131 tcep = ((__be64 *)tbl->it_base) + index;
5f50867b 132
df015604 133 return be64_to_cpu(*tcep);
5f50867b 134}
1da177e4 135
6490c490
RJ
136static void tce_free_pSeriesLP(struct iommu_table*, long, long);
137static void tce_freemulti_pSeriesLP(struct iommu_table*, long, long);
138
139static int tce_build_pSeriesLP(struct iommu_table *tbl, long tcenum,
1da177e4 140 long npages, unsigned long uaddr,
4f3dd8a0
MN
141 enum dma_data_direction direction,
142 struct dma_attrs *attrs)
1da177e4 143{
6490c490 144 u64 rc = 0;
bc97ce95
OJ
145 u64 proto_tce, tce;
146 u64 rpn;
6490c490
RJ
147 int ret = 0;
148 long tcenum_start = tcenum, npages_start = npages;
1da177e4 149
474e3d56 150 rpn = __pa(uaddr) >> TCE_SHIFT;
bc97ce95 151 proto_tce = TCE_PCI_READ;
1da177e4 152 if (direction != DMA_TO_DEVICE)
bc97ce95 153 proto_tce |= TCE_PCI_WRITE;
1da177e4
LT
154
155 while (npages--) {
bc97ce95
OJ
156 tce = proto_tce | (rpn & TCE_RPN_MASK) << TCE_RPN_SHIFT;
157 rc = plpar_tce_put((u64)tbl->it_index, (u64)tcenum << 12, tce);
158
6490c490
RJ
159 if (unlikely(rc == H_NOT_ENOUGH_RESOURCES)) {
160 ret = (int)rc;
161 tce_free_pSeriesLP(tbl, tcenum_start,
162 (npages_start - (npages + 1)));
163 break;
164 }
165
1da177e4 166 if (rc && printk_ratelimit()) {
fe333321
IM
167 printk("tce_build_pSeriesLP: plpar_tce_put failed. rc=%lld\n", rc);
168 printk("\tindex = 0x%llx\n", (u64)tbl->it_index);
169 printk("\ttcenum = 0x%llx\n", (u64)tcenum);
170 printk("\ttce val = 0x%llx\n", tce );
1da177e4
LT
171 show_stack(current, (unsigned long *)__get_SP());
172 }
bc97ce95 173
1da177e4 174 tcenum++;
bc97ce95 175 rpn++;
1da177e4 176 }
6490c490 177 return ret;
1da177e4
LT
178}
179
df015604 180static DEFINE_PER_CPU(__be64 *, tce_page);
1da177e4 181
6490c490 182static int tce_buildmulti_pSeriesLP(struct iommu_table *tbl, long tcenum,
1da177e4 183 long npages, unsigned long uaddr,
4f3dd8a0
MN
184 enum dma_data_direction direction,
185 struct dma_attrs *attrs)
1da177e4 186{
6490c490 187 u64 rc = 0;
bc97ce95 188 u64 proto_tce;
df015604 189 __be64 *tcep;
bc97ce95 190 u64 rpn;
1da177e4 191 long l, limit;
6490c490
RJ
192 long tcenum_start = tcenum, npages_start = npages;
193 int ret = 0;
c1703e85 194 unsigned long flags;
1da177e4 195
541b2755 196 if (npages == 1) {
6490c490
RJ
197 return tce_build_pSeriesLP(tbl, tcenum, npages, uaddr,
198 direction, attrs);
541b2755 199 }
1da177e4 200
c1703e85
AB
201 local_irq_save(flags); /* to protect tcep and the page behind it */
202
1da177e4
LT
203 tcep = __get_cpu_var(tce_page);
204
205 /* This is safe to do since interrupts are off when we're called
206 * from iommu_alloc{,_sg}()
207 */
208 if (!tcep) {
df015604 209 tcep = (__be64 *)__get_free_page(GFP_ATOMIC);
1da177e4 210 /* If allocation fails, fall back to the loop implementation */
541b2755 211 if (!tcep) {
c1703e85 212 local_irq_restore(flags);
6490c490 213 return tce_build_pSeriesLP(tbl, tcenum, npages, uaddr,
4f3dd8a0 214 direction, attrs);
541b2755 215 }
1da177e4
LT
216 __get_cpu_var(tce_page) = tcep;
217 }
218
474e3d56 219 rpn = __pa(uaddr) >> TCE_SHIFT;
bc97ce95 220 proto_tce = TCE_PCI_READ;
1da177e4 221 if (direction != DMA_TO_DEVICE)
bc97ce95 222 proto_tce |= TCE_PCI_WRITE;
1da177e4
LT
223
224 /* We can map max one pageful of TCEs at a time */
225 do {
226 /*
227 * Set up the page with TCE data, looping through and setting
228 * the values.
229 */
bc97ce95 230 limit = min_t(long, npages, 4096/TCE_ENTRY_SIZE);
1da177e4
LT
231
232 for (l = 0; l < limit; l++) {
df015604 233 tcep[l] = cpu_to_be64(proto_tce | (rpn & TCE_RPN_MASK) << TCE_RPN_SHIFT);
bc97ce95 234 rpn++;
1da177e4
LT
235 }
236
237 rc = plpar_tce_put_indirect((u64)tbl->it_index,
238 (u64)tcenum << 12,
474e3d56 239 (u64)__pa(tcep),
1da177e4
LT
240 limit);
241
242 npages -= limit;
243 tcenum += limit;
244 } while (npages > 0 && !rc);
245
c1703e85
AB
246 local_irq_restore(flags);
247
6490c490
RJ
248 if (unlikely(rc == H_NOT_ENOUGH_RESOURCES)) {
249 ret = (int)rc;
250 tce_freemulti_pSeriesLP(tbl, tcenum_start,
251 (npages_start - (npages + limit)));
252 return ret;
253 }
254
1da177e4 255 if (rc && printk_ratelimit()) {
fe333321
IM
256 printk("tce_buildmulti_pSeriesLP: plpar_tce_put failed. rc=%lld\n", rc);
257 printk("\tindex = 0x%llx\n", (u64)tbl->it_index);
258 printk("\tnpages = 0x%llx\n", (u64)npages);
259 printk("\ttce[0] val = 0x%llx\n", tcep[0]);
1da177e4
LT
260 show_stack(current, (unsigned long *)__get_SP());
261 }
6490c490 262 return ret;
1da177e4
LT
263}
264
265static void tce_free_pSeriesLP(struct iommu_table *tbl, long tcenum, long npages)
266{
267 u64 rc;
1da177e4 268
1da177e4 269 while (npages--) {
bc97ce95 270 rc = plpar_tce_put((u64)tbl->it_index, (u64)tcenum << 12, 0);
1da177e4
LT
271
272 if (rc && printk_ratelimit()) {
fe333321
IM
273 printk("tce_free_pSeriesLP: plpar_tce_put failed. rc=%lld\n", rc);
274 printk("\tindex = 0x%llx\n", (u64)tbl->it_index);
275 printk("\ttcenum = 0x%llx\n", (u64)tcenum);
1da177e4
LT
276 show_stack(current, (unsigned long *)__get_SP());
277 }
278
279 tcenum++;
280 }
281}
282
283
284static void tce_freemulti_pSeriesLP(struct iommu_table *tbl, long tcenum, long npages)
285{
286 u64 rc;
1da177e4 287
bc97ce95 288 rc = plpar_tce_stuff((u64)tbl->it_index, (u64)tcenum << 12, 0, npages);
1da177e4
LT
289
290 if (rc && printk_ratelimit()) {
291 printk("tce_freemulti_pSeriesLP: plpar_tce_stuff failed\n");
fe333321
IM
292 printk("\trc = %lld\n", rc);
293 printk("\tindex = 0x%llx\n", (u64)tbl->it_index);
294 printk("\tnpages = 0x%llx\n", (u64)npages);
1da177e4
LT
295 show_stack(current, (unsigned long *)__get_SP());
296 }
297}
298
5f50867b
HM
299static unsigned long tce_get_pSeriesLP(struct iommu_table *tbl, long tcenum)
300{
301 u64 rc;
302 unsigned long tce_ret;
303
5f50867b
HM
304 rc = plpar_tce_get((u64)tbl->it_index, (u64)tcenum << 12, &tce_ret);
305
306 if (rc && printk_ratelimit()) {
fe333321
IM
307 printk("tce_get_pSeriesLP: plpar_tce_get failed. rc=%lld\n", rc);
308 printk("\tindex = 0x%llx\n", (u64)tbl->it_index);
309 printk("\ttcenum = 0x%llx\n", (u64)tcenum);
5f50867b
HM
310 show_stack(current, (unsigned long *)__get_SP());
311 }
312
313 return tce_ret;
314}
315
25985edc 316/* this is compatible with cells for the device tree property */
4e8b0cf4
NA
317struct dynamic_dma_window_prop {
318 __be32 liobn; /* tce table number */
319 __be64 dma_base; /* address hi,lo */
320 __be32 tce_shift; /* ilog2(tce_page_size) */
321 __be32 window_shift; /* ilog2(tce_window_size) */
322};
323
324struct direct_window {
325 struct device_node *device;
326 const struct dynamic_dma_window_prop *prop;
327 struct list_head list;
328};
329
330/* Dynamic DMA Window support */
331struct ddw_query_response {
df015604
AB
332 __be32 windows_available;
333 __be32 largest_available_block;
334 __be32 page_size;
335 __be32 migration_capable;
4e8b0cf4
NA
336};
337
338struct ddw_create_response {
df015604
AB
339 __be32 liobn;
340 __be32 addr_hi;
341 __be32 addr_lo;
4e8b0cf4
NA
342};
343
344static LIST_HEAD(direct_window_list);
345/* prevents races between memory on/offline and window creation */
346static DEFINE_SPINLOCK(direct_window_list_lock);
347/* protects initializing window twice for same device */
348static DEFINE_MUTEX(direct_window_init_mutex);
349#define DIRECT64_PROPNAME "linux,direct64-ddr-window-info"
350
351static int tce_clearrange_multi_pSeriesLP(unsigned long start_pfn,
352 unsigned long num_pfn, const void *arg)
353{
354 const struct dynamic_dma_window_prop *maprange = arg;
355 int rc;
356 u64 tce_size, num_tce, dma_offset, next;
357 u32 tce_shift;
358 long limit;
359
360 tce_shift = be32_to_cpu(maprange->tce_shift);
361 tce_size = 1ULL << tce_shift;
362 next = start_pfn << PAGE_SHIFT;
363 num_tce = num_pfn << PAGE_SHIFT;
364
365 /* round back to the beginning of the tce page size */
366 num_tce += next & (tce_size - 1);
367 next &= ~(tce_size - 1);
368
369 /* covert to number of tces */
370 num_tce |= tce_size - 1;
371 num_tce >>= tce_shift;
372
373 do {
374 /*
375 * Set up the page with TCE data, looping through and setting
376 * the values.
377 */
378 limit = min_t(long, num_tce, 512);
379 dma_offset = next + be64_to_cpu(maprange->dma_base);
380
381 rc = plpar_tce_stuff((u64)be32_to_cpu(maprange->liobn),
382 dma_offset,
383 0, limit);
22b38298 384 next += limit * tce_size;
4e8b0cf4
NA
385 num_tce -= limit;
386 } while (num_tce > 0 && !rc);
387
388 return rc;
389}
390
391static int tce_setrange_multi_pSeriesLP(unsigned long start_pfn,
392 unsigned long num_pfn, const void *arg)
393{
394 const struct dynamic_dma_window_prop *maprange = arg;
df015604
AB
395 u64 tce_size, num_tce, dma_offset, next, proto_tce, liobn;
396 __be64 *tcep;
4e8b0cf4
NA
397 u32 tce_shift;
398 u64 rc = 0;
399 long l, limit;
400
401 local_irq_disable(); /* to protect tcep and the page behind it */
402 tcep = __get_cpu_var(tce_page);
403
404 if (!tcep) {
df015604 405 tcep = (__be64 *)__get_free_page(GFP_ATOMIC);
4e8b0cf4
NA
406 if (!tcep) {
407 local_irq_enable();
408 return -ENOMEM;
409 }
410 __get_cpu_var(tce_page) = tcep;
411 }
412
413 proto_tce = TCE_PCI_READ | TCE_PCI_WRITE;
414
415 liobn = (u64)be32_to_cpu(maprange->liobn);
416 tce_shift = be32_to_cpu(maprange->tce_shift);
417 tce_size = 1ULL << tce_shift;
418 next = start_pfn << PAGE_SHIFT;
419 num_tce = num_pfn << PAGE_SHIFT;
420
421 /* round back to the beginning of the tce page size */
422 num_tce += next & (tce_size - 1);
423 next &= ~(tce_size - 1);
424
425 /* covert to number of tces */
426 num_tce |= tce_size - 1;
427 num_tce >>= tce_shift;
428
429 /* We can map max one pageful of TCEs at a time */
430 do {
431 /*
432 * Set up the page with TCE data, looping through and setting
433 * the values.
434 */
435 limit = min_t(long, num_tce, 4096/TCE_ENTRY_SIZE);
436 dma_offset = next + be64_to_cpu(maprange->dma_base);
437
438 for (l = 0; l < limit; l++) {
df015604 439 tcep[l] = cpu_to_be64(proto_tce | next);
4e8b0cf4
NA
440 next += tce_size;
441 }
442
443 rc = plpar_tce_put_indirect(liobn,
444 dma_offset,
474e3d56 445 (u64)__pa(tcep),
4e8b0cf4
NA
446 limit);
447
448 num_tce -= limit;
449 } while (num_tce > 0 && !rc);
450
451 /* error cleanup: caller will clear whole range */
452
453 local_irq_enable();
454 return rc;
455}
456
457static int tce_setrange_multi_pSeriesLP_walk(unsigned long start_pfn,
458 unsigned long num_pfn, void *arg)
459{
460 return tce_setrange_multi_pSeriesLP(start_pfn, num_pfn, arg);
461}
462
463
bed59275 464#ifdef CONFIG_PCI
1da177e4
LT
465static void iommu_table_setparms(struct pci_controller *phb,
466 struct device_node *dn,
bc97ce95 467 struct iommu_table *tbl)
1da177e4
LT
468{
469 struct device_node *node;
8d3d589a 470 const unsigned long *basep, *sw_inval;
9938c474 471 const u32 *sizep;
1da177e4 472
44ef3390 473 node = phb->dn;
1da177e4 474
e2eb6392
SR
475 basep = of_get_property(node, "linux,tce-base", NULL);
476 sizep = of_get_property(node, "linux,tce-size", NULL);
1da177e4
LT
477 if (basep == NULL || sizep == NULL) {
478 printk(KERN_ERR "PCI_DMA: iommu_table_setparms: %s has "
479 "missing tce entries !\n", dn->full_name);
480 return;
481 }
482
483 tbl->it_base = (unsigned long)__va(*basep);
5f50867b 484
62a8bd6c 485 if (!is_kdump_kernel())
54622f10 486 memset((void *)tbl->it_base, 0, *sizep);
1da177e4
LT
487
488 tbl->it_busno = phb->bus->number;
3a553170 489 tbl->it_page_shift = IOMMU_PAGE_SHIFT_4K;
bc97ce95 490
1da177e4 491 /* Units of tce entries */
3a553170 492 tbl->it_offset = phb->dma_window_base_cur >> tbl->it_page_shift;
bc97ce95 493
1da177e4 494 /* Test if we are going over 2GB of DMA space */
3c2822cc
OJ
495 if (phb->dma_window_base_cur + phb->dma_window_size > 0x80000000ul) {
496 udbg_printf("PCI_DMA: Unexpected number of IOAs under this PHB.\n");
bc97ce95 497 panic("PCI_DMA: Unexpected number of IOAs under this PHB.\n");
3c2822cc 498 }
bc97ce95 499
1da177e4
LT
500 phb->dma_window_base_cur += phb->dma_window_size;
501
502 /* Set the tce table size - measured in entries */
3a553170 503 tbl->it_size = phb->dma_window_size >> tbl->it_page_shift;
1da177e4
LT
504
505 tbl->it_index = 0;
506 tbl->it_blocksize = 16;
507 tbl->it_type = TCE_PCI;
8d3d589a
MM
508
509 sw_inval = of_get_property(node, "linux,tce-sw-invalidate-info", NULL);
510 if (sw_inval) {
511 /*
512 * This property contains information on how to
513 * invalidate the TCE entry. The first property is
514 * the base MMIO address used to invalidate entries.
515 * The second property tells us the format of the TCE
516 * invalidate (whether it needs to be shifted) and
517 * some magic routing info to add to our invalidate
518 * command.
519 */
520 tbl->it_index = (unsigned long) ioremap(sw_inval[0], 8);
521 tbl->it_busno = sw_inval[1]; /* overload this with magic */
1f1616e8 522 tbl->it_type = TCE_PCI_SWINV_CREATE | TCE_PCI_SWINV_FREE;
8d3d589a 523 }
1da177e4
LT
524}
525
526/*
527 * iommu_table_setparms_lpar
528 *
529 * Function: On pSeries LPAR systems, return TCE table info, given a pci bus.
1da177e4
LT
530 */
531static void iommu_table_setparms_lpar(struct pci_controller *phb,
532 struct device_node *dn,
533 struct iommu_table *tbl,
2083f681 534 const __be32 *dma_window)
1da177e4 535{
4c76e0bc
JK
536 unsigned long offset, size;
537
4c76e0bc 538 of_parse_dma_window(dn, dma_window, &tbl->it_index, &offset, &size);
1da177e4 539
b8c49def 540 tbl->it_busno = phb->bus->number;
3a553170 541 tbl->it_page_shift = IOMMU_PAGE_SHIFT_4K;
1da177e4 542 tbl->it_base = 0;
1da177e4
LT
543 tbl->it_blocksize = 16;
544 tbl->it_type = TCE_PCI;
3a553170
AP
545 tbl->it_offset = offset >> tbl->it_page_shift;
546 tbl->it_size = size >> tbl->it_page_shift;
1da177e4
LT
547}
548
12d04eef 549static void pci_dma_bus_setup_pSeries(struct pci_bus *bus)
1da177e4 550{
3c2822cc 551 struct device_node *dn;
1da177e4 552 struct iommu_table *tbl;
3c2822cc
OJ
553 struct device_node *isa_dn, *isa_dn_orig;
554 struct device_node *tmp;
555 struct pci_dn *pci;
556 int children;
1da177e4 557
3c2822cc 558 dn = pci_bus_to_OF_node(bus);
12d04eef 559
f7ebf352 560 pr_debug("pci_dma_bus_setup_pSeries: setting up bus %s\n", dn->full_name);
3c2822cc
OJ
561
562 if (bus->self) {
563 /* This is not a root bus, any setup will be done for the
564 * device-side of the bridge in iommu_dev_setup_pSeries().
565 */
566 return;
567 }
12d04eef 568 pci = PCI_DN(dn);
3c2822cc
OJ
569
570 /* Check if the ISA bus on the system is under
571 * this PHB.
1da177e4 572 */
3c2822cc 573 isa_dn = isa_dn_orig = of_find_node_by_type(NULL, "isa");
1da177e4 574
3c2822cc
OJ
575 while (isa_dn && isa_dn != dn)
576 isa_dn = isa_dn->parent;
577
578 if (isa_dn_orig)
579 of_node_put(isa_dn_orig);
1da177e4 580
d3c58fb1 581 /* Count number of direct PCI children of the PHB. */
3c2822cc 582 for (children = 0, tmp = dn->child; tmp; tmp = tmp->sibling)
d3c58fb1 583 children++;
1da177e4 584
f7ebf352 585 pr_debug("Children: %d\n", children);
1da177e4 586
3c2822cc
OJ
587 /* Calculate amount of DMA window per slot. Each window must be
588 * a power of two (due to pci_alloc_consistent requirements).
589 *
590 * Keep 256MB aside for PHBs with ISA.
591 */
1da177e4 592
3c2822cc
OJ
593 if (!isa_dn) {
594 /* No ISA/IDE - just set window size and return */
595 pci->phb->dma_window_size = 0x80000000ul; /* To be divided */
596
597 while (pci->phb->dma_window_size * children > 0x80000000ul)
598 pci->phb->dma_window_size >>= 1;
41febbc8 599 pr_debug("No ISA/IDE, window size is 0x%llx\n",
f7ebf352 600 pci->phb->dma_window_size);
3c2822cc
OJ
601 pci->phb->dma_window_base_cur = 0;
602
603 return;
1da177e4 604 }
3c2822cc
OJ
605
606 /* If we have ISA, then we probably have an IDE
607 * controller too. Allocate a 128MB table but
608 * skip the first 128MB to avoid stepping on ISA
609 * space.
610 */
611 pci->phb->dma_window_size = 0x8000000ul;
612 pci->phb->dma_window_base_cur = 0x8000000ul;
613
7aa241fd 614 tbl = kzalloc_node(sizeof(struct iommu_table), GFP_KERNEL,
ca1588e7 615 pci->phb->node);
3c2822cc
OJ
616
617 iommu_table_setparms(pci->phb, dn, tbl);
ca1588e7 618 pci->iommu_table = iommu_init_table(tbl, pci->phb->node);
5b25199e 619 iommu_register_group(tbl, pci_domain_nr(bus), 0);
3c2822cc
OJ
620
621 /* Divide the rest (1.75GB) among the children */
622 pci->phb->dma_window_size = 0x80000000ul;
623 while (pci->phb->dma_window_size * children > 0x70000000ul)
624 pci->phb->dma_window_size >>= 1;
625
41febbc8 626 pr_debug("ISA/IDE, window size is 0x%llx\n", pci->phb->dma_window_size);
1da177e4
LT
627}
628
629
12d04eef 630static void pci_dma_bus_setup_pSeriesLP(struct pci_bus *bus)
1da177e4
LT
631{
632 struct iommu_table *tbl;
633 struct device_node *dn, *pdn;
1635317f 634 struct pci_dn *ppci;
2083f681 635 const __be32 *dma_window = NULL;
1da177e4 636
1da177e4
LT
637 dn = pci_bus_to_OF_node(bus);
638
f7ebf352
ME
639 pr_debug("pci_dma_bus_setup_pSeriesLP: setting up bus %s\n",
640 dn->full_name);
12d04eef 641
1da177e4
LT
642 /* Find nearest ibm,dma-window, walking up the device tree */
643 for (pdn = dn; pdn != NULL; pdn = pdn->parent) {
e2eb6392 644 dma_window = of_get_property(pdn, "ibm,dma-window", NULL);
1da177e4
LT
645 if (dma_window != NULL)
646 break;
647 }
648
649 if (dma_window == NULL) {
f7ebf352 650 pr_debug(" no ibm,dma-window property !\n");
1da177e4
LT
651 return;
652 }
653
e07102db 654 ppci = PCI_DN(pdn);
12d04eef 655
f7ebf352
ME
656 pr_debug(" parent is %s, iommu_table: 0x%p\n",
657 pdn->full_name, ppci->iommu_table);
12d04eef 658
1635317f 659 if (!ppci->iommu_table) {
7aa241fd 660 tbl = kzalloc_node(sizeof(struct iommu_table), GFP_KERNEL,
ca1588e7 661 ppci->phb->node);
b8c49def 662 iommu_table_setparms_lpar(ppci->phb, pdn, tbl, dma_window);
ca1588e7 663 ppci->iommu_table = iommu_init_table(tbl, ppci->phb->node);
5b25199e 664 iommu_register_group(tbl, pci_domain_nr(bus), 0);
f7ebf352 665 pr_debug(" created table: %p\n", ppci->iommu_table);
1da177e4 666 }
1da177e4
LT
667}
668
669
12d04eef 670static void pci_dma_dev_setup_pSeries(struct pci_dev *dev)
1da177e4 671{
12d04eef 672 struct device_node *dn;
3c2822cc 673 struct iommu_table *tbl;
1da177e4 674
f7ebf352 675 pr_debug("pci_dma_dev_setup_pSeries: %s\n", pci_name(dev));
1da177e4 676
58f9b0b0 677 dn = dev->dev.of_node;
1da177e4 678
3c2822cc
OJ
679 /* If we're the direct child of a root bus, then we need to allocate
680 * an iommu table ourselves. The bus setup code should have setup
681 * the window sizes already.
682 */
683 if (!dev->bus->self) {
12d04eef
BH
684 struct pci_controller *phb = PCI_DN(dn)->phb;
685
f7ebf352 686 pr_debug(" --> first child, no bridge. Allocating iommu table.\n");
7aa241fd 687 tbl = kzalloc_node(sizeof(struct iommu_table), GFP_KERNEL,
12d04eef
BH
688 phb->node);
689 iommu_table_setparms(phb, dn, tbl);
77319254 690 PCI_DN(dn)->iommu_table = iommu_init_table(tbl, phb->node);
5b25199e 691 iommu_register_group(tbl, pci_domain_nr(phb->bus), 0);
d905c5df
AK
692 set_iommu_table_base_and_group(&dev->dev,
693 PCI_DN(dn)->iommu_table);
3c2822cc
OJ
694 return;
695 }
696
697 /* If this device is further down the bus tree, search upwards until
698 * an already allocated iommu table is found and use that.
699 */
700
e07102db 701 while (dn && PCI_DN(dn) && PCI_DN(dn)->iommu_table == NULL)
1da177e4
LT
702 dn = dn->parent;
703
12d04eef 704 if (dn && PCI_DN(dn))
d905c5df
AK
705 set_iommu_table_base_and_group(&dev->dev,
706 PCI_DN(dn)->iommu_table);
12d04eef
BH
707 else
708 printk(KERN_WARNING "iommu: Device %s has no iommu table\n",
709 pci_name(dev));
1da177e4
LT
710}
711
4e8b0cf4
NA
712static int __read_mostly disable_ddw;
713
714static int __init disable_ddw_setup(char *str)
715{
716 disable_ddw = 1;
717 printk(KERN_INFO "ppc iommu: disabling ddw.\n");
718
719 return 0;
720}
721
722early_param("disable_ddw", disable_ddw_setup);
723
724static void remove_ddw(struct device_node *np)
725{
726 struct dynamic_dma_window_prop *dwp;
727 struct property *win64;
b73a635f 728 const u32 *ddw_avail;
4e8b0cf4
NA
729 u64 liobn;
730 int len, ret;
731
b73a635f 732 ddw_avail = of_get_property(np, "ibm,ddw-applicable", &len);
4e8b0cf4 733 win64 = of_find_property(np, DIRECT64_PROPNAME, NULL);
2573f684 734 if (!win64)
4e8b0cf4
NA
735 return;
736
b73a635f 737 if (!ddw_avail || len < 3 * sizeof(u32) || win64->length < sizeof(*dwp))
2573f684
MM
738 goto delprop;
739
4e8b0cf4
NA
740 dwp = win64->value;
741 liobn = (u64)be32_to_cpu(dwp->liobn);
742
743 /* clear the whole window, note the arg is in kernel pages */
744 ret = tce_clearrange_multi_pSeriesLP(0,
745 1ULL << (be32_to_cpu(dwp->window_shift) - PAGE_SHIFT), dwp);
746 if (ret)
747 pr_warning("%s failed to clear tces in window.\n",
748 np->full_name);
749 else
750 pr_debug("%s successfully cleared tces in window.\n",
751 np->full_name);
752
ae69e1ed
NA
753 ret = rtas_call(ddw_avail[2], 1, 1, NULL, liobn);
754 if (ret)
755 pr_warning("%s: failed to remove direct window: rtas returned "
756 "%d to ibm,remove-pe-dma-window(%x) %llx\n",
757 np->full_name, ret, ddw_avail[2], liobn);
758 else
759 pr_debug("%s: successfully removed direct window: rtas returned "
760 "%d to ibm,remove-pe-dma-window(%x) %llx\n",
761 np->full_name, ret, ddw_avail[2], liobn);
4e8b0cf4 762
2573f684 763delprop:
79d1c712 764 ret = of_remove_property(np, win64);
2573f684 765 if (ret)
c8566780 766 pr_warning("%s: failed to remove direct window property: %d\n",
2573f684
MM
767 np->full_name, ret);
768}
4e8b0cf4 769
b73a635f 770static u64 find_existing_ddw(struct device_node *pdn)
4e8b0cf4 771{
4e8b0cf4
NA
772 struct direct_window *window;
773 const struct dynamic_dma_window_prop *direct64;
774 u64 dma_addr = 0;
775
4e8b0cf4
NA
776 spin_lock(&direct_window_list_lock);
777 /* check if we already created a window and dupe that config if so */
778 list_for_each_entry(window, &direct_window_list, list) {
779 if (window->device == pdn) {
780 direct64 = window->prop;
df015604 781 dma_addr = be64_to_cpu(direct64->dma_base);
4e8b0cf4
NA
782 break;
783 }
784 }
785 spin_unlock(&direct_window_list_lock);
786
787 return dma_addr;
788}
789
c8566780 790static int find_existing_ddw_windows(void)
4e8b0cf4 791{
97e7dc52 792 int len;
c8566780 793 struct device_node *pdn;
97e7dc52 794 struct direct_window *window;
4e8b0cf4 795 const struct dynamic_dma_window_prop *direct64;
4e8b0cf4 796
c8566780
MM
797 if (!firmware_has_feature(FW_FEATURE_LPAR))
798 return 0;
799
800 for_each_node_with_property(pdn, DIRECT64_PROPNAME) {
97e7dc52 801 direct64 = of_get_property(pdn, DIRECT64_PROPNAME, &len);
c8566780
MM
802 if (!direct64)
803 continue;
804
97e7dc52
NA
805 window = kzalloc(sizeof(*window), GFP_KERNEL);
806 if (!window || len < sizeof(struct dynamic_dma_window_prop)) {
807 kfree(window);
808 remove_ddw(pdn);
809 continue;
810 }
c8566780 811
97e7dc52
NA
812 window->device = pdn;
813 window->prop = direct64;
814 spin_lock(&direct_window_list_lock);
815 list_add(&window->list, &direct_window_list);
816 spin_unlock(&direct_window_list_lock);
4e8b0cf4
NA
817 }
818
c8566780 819 return 0;
4e8b0cf4 820}
c8566780 821machine_arch_initcall(pseries, find_existing_ddw_windows);
4e8b0cf4 822
b73a635f 823static int query_ddw(struct pci_dev *dev, const u32 *ddw_avail,
4e8b0cf4
NA
824 struct ddw_query_response *query)
825{
39baadbf 826 struct eeh_dev *edev;
4e8b0cf4
NA
827 u32 cfg_addr;
828 u64 buid;
829 int ret;
830
831 /*
832 * Get the config address and phb buid of the PE window.
833 * Rely on eeh to retrieve this for us.
834 * Retrieve them from the pci device, not the node with the
835 * dma-window property
836 */
39baadbf
GS
837 edev = pci_dev_to_eeh_dev(dev);
838 cfg_addr = edev->config_addr;
839 if (edev->pe_config_addr)
840 cfg_addr = edev->pe_config_addr;
841 buid = edev->phb->buid;
842
b73a635f 843 ret = rtas_call(ddw_avail[0], 3, 5, (u32 *)query,
4e8b0cf4
NA
844 cfg_addr, BUID_HI(buid), BUID_LO(buid));
845 dev_info(&dev->dev, "ibm,query-pe-dma-windows(%x) %x %x %x"
b73a635f 846 " returned %d\n", ddw_avail[0], cfg_addr, BUID_HI(buid),
4e8b0cf4
NA
847 BUID_LO(buid), ret);
848 return ret;
849}
850
b73a635f 851static int create_ddw(struct pci_dev *dev, const u32 *ddw_avail,
4e8b0cf4
NA
852 struct ddw_create_response *create, int page_shift,
853 int window_shift)
854{
39baadbf 855 struct eeh_dev *edev;
4e8b0cf4
NA
856 u32 cfg_addr;
857 u64 buid;
858 int ret;
859
860 /*
861 * Get the config address and phb buid of the PE window.
862 * Rely on eeh to retrieve this for us.
863 * Retrieve them from the pci device, not the node with the
864 * dma-window property
865 */
39baadbf
GS
866 edev = pci_dev_to_eeh_dev(dev);
867 cfg_addr = edev->config_addr;
868 if (edev->pe_config_addr)
869 cfg_addr = edev->pe_config_addr;
870 buid = edev->phb->buid;
4e8b0cf4
NA
871
872 do {
873 /* extra outputs are LIOBN and dma-addr (hi, lo) */
b73a635f 874 ret = rtas_call(ddw_avail[1], 5, 4, (u32 *)create, cfg_addr,
4e8b0cf4
NA
875 BUID_HI(buid), BUID_LO(buid), page_shift, window_shift);
876 } while (rtas_busy_delay(ret));
877 dev_info(&dev->dev,
878 "ibm,create-pe-dma-window(%x) %x %x %x %x %x returned %d "
b73a635f 879 "(liobn = 0x%x starting addr = %x %x)\n", ddw_avail[1],
4e8b0cf4
NA
880 cfg_addr, BUID_HI(buid), BUID_LO(buid), page_shift,
881 window_shift, ret, create->liobn, create->addr_hi, create->addr_lo);
882
883 return ret;
884}
885
61435690
NA
886struct failed_ddw_pdn {
887 struct device_node *pdn;
888 struct list_head list;
889};
890
891static LIST_HEAD(failed_ddw_pdn_list);
892
4e8b0cf4
NA
893/*
894 * If the PE supports dynamic dma windows, and there is space for a table
895 * that can map all pages in a linear offset, then setup such a table,
896 * and record the dma-offset in the struct device.
897 *
898 * dev: the pci device we are checking
899 * pdn: the parent pe node with the ibm,dma_window property
900 * Future: also check if we can remap the base window for our base page size
901 *
902 * returns the dma offset for use by dma_set_mask
903 */
904static u64 enable_ddw(struct pci_dev *dev, struct device_node *pdn)
905{
906 int len, ret;
907 struct ddw_query_response query;
908 struct ddw_create_response create;
909 int page_shift;
910 u64 dma_addr, max_addr;
911 struct device_node *dn;
b73a635f 912 const u32 *uninitialized_var(ddw_avail);
4e8b0cf4 913 struct direct_window *window;
76730334 914 struct property *win64;
4e8b0cf4 915 struct dynamic_dma_window_prop *ddwprop;
61435690 916 struct failed_ddw_pdn *fpdn;
4e8b0cf4
NA
917
918 mutex_lock(&direct_window_init_mutex);
919
b73a635f 920 dma_addr = find_existing_ddw(pdn);
4e8b0cf4
NA
921 if (dma_addr != 0)
922 goto out_unlock;
923
61435690
NA
924 /*
925 * If we already went through this for a previous function of
926 * the same device and failed, we don't want to muck with the
927 * DMA window again, as it will race with in-flight operations
928 * and can lead to EEHs. The above mutex protects access to the
929 * list.
930 */
931 list_for_each_entry(fpdn, &failed_ddw_pdn_list, list) {
932 if (!strcmp(fpdn->pdn->full_name, pdn->full_name))
933 goto out_unlock;
934 }
935
4e8b0cf4
NA
936 /*
937 * the ibm,ddw-applicable property holds the tokens for:
938 * ibm,query-pe-dma-window
939 * ibm,create-pe-dma-window
940 * ibm,remove-pe-dma-window
941 * for the given node in that order.
942 * the property is actually in the parent, not the PE
943 */
b73a635f
MM
944 ddw_avail = of_get_property(pdn, "ibm,ddw-applicable", &len);
945 if (!ddw_avail || len < 3 * sizeof(u32))
ae69e1ed 946 goto out_failed;
25ebc45b 947
ae69e1ed 948 /*
4e8b0cf4
NA
949 * Query if there is a second window of size to map the
950 * whole partition. Query returns number of windows, largest
951 * block assigned to PE (partition endpoint), and two bitmasks
952 * of page sizes: supported and supported for migrate-dma.
953 */
954 dn = pci_device_to_OF_node(dev);
b73a635f 955 ret = query_ddw(dev, ddw_avail, &query);
4e8b0cf4 956 if (ret != 0)
ae69e1ed 957 goto out_failed;
4e8b0cf4
NA
958
959 if (query.windows_available == 0) {
960 /*
961 * no additional windows are available for this device.
962 * We might be able to reallocate the existing window,
963 * trading in for a larger page size.
964 */
965 dev_dbg(&dev->dev, "no free dynamic windows");
ae69e1ed 966 goto out_failed;
4e8b0cf4 967 }
df015604 968 if (be32_to_cpu(query.page_size) & 4) {
4e8b0cf4 969 page_shift = 24; /* 16MB */
df015604 970 } else if (be32_to_cpu(query.page_size) & 2) {
4e8b0cf4 971 page_shift = 16; /* 64kB */
df015604 972 } else if (be32_to_cpu(query.page_size) & 1) {
4e8b0cf4
NA
973 page_shift = 12; /* 4kB */
974 } else {
975 dev_dbg(&dev->dev, "no supported direct page size in mask %x",
976 query.page_size);
ae69e1ed 977 goto out_failed;
4e8b0cf4
NA
978 }
979 /* verify the window * number of ptes will map the partition */
980 /* check largest block * page size > max memory hotplug addr */
981 max_addr = memory_hotplug_max();
df015604 982 if (be32_to_cpu(query.largest_available_block) < (max_addr >> page_shift)) {
4e8b0cf4
NA
983 dev_dbg(&dev->dev, "can't map partiton max 0x%llx with %u "
984 "%llu-sized pages\n", max_addr, query.largest_available_block,
985 1ULL << page_shift);
ae69e1ed 986 goto out_failed;
4e8b0cf4
NA
987 }
988 len = order_base_2(max_addr);
989 win64 = kzalloc(sizeof(struct property), GFP_KERNEL);
990 if (!win64) {
991 dev_info(&dev->dev,
992 "couldn't allocate property for 64bit dma window\n");
ae69e1ed 993 goto out_failed;
4e8b0cf4
NA
994 }
995 win64->name = kstrdup(DIRECT64_PROPNAME, GFP_KERNEL);
996 win64->value = ddwprop = kmalloc(sizeof(*ddwprop), GFP_KERNEL);
76730334 997 win64->length = sizeof(*ddwprop);
4e8b0cf4
NA
998 if (!win64->name || !win64->value) {
999 dev_info(&dev->dev,
1000 "couldn't allocate property name and value\n");
1001 goto out_free_prop;
1002 }
1003
b73a635f 1004 ret = create_ddw(dev, ddw_avail, &create, page_shift, len);
4e8b0cf4
NA
1005 if (ret != 0)
1006 goto out_free_prop;
1007
df015604 1008 ddwprop->liobn = create.liobn;
4e8b0cf4
NA
1009 ddwprop->dma_base = cpu_to_be64(of_read_number(&create.addr_hi, 2));
1010 ddwprop->tce_shift = cpu_to_be32(page_shift);
1011 ddwprop->window_shift = cpu_to_be32(len);
1012
1013 dev_dbg(&dev->dev, "created tce table LIOBN 0x%x for %s\n",
1014 create.liobn, dn->full_name);
1015
1016 window = kzalloc(sizeof(*window), GFP_KERNEL);
1017 if (!window)
1018 goto out_clear_window;
1019
1020 ret = walk_system_ram_range(0, memblock_end_of_DRAM() >> PAGE_SHIFT,
1021 win64->value, tce_setrange_multi_pSeriesLP_walk);
1022 if (ret) {
1023 dev_info(&dev->dev, "failed to map direct window for %s: %d\n",
1024 dn->full_name, ret);
7a19081f 1025 goto out_free_window;
4e8b0cf4
NA
1026 }
1027
79d1c712 1028 ret = of_add_property(pdn, win64);
4e8b0cf4
NA
1029 if (ret) {
1030 dev_err(&dev->dev, "unable to add dma window property for %s: %d",
1031 pdn->full_name, ret);
7a19081f 1032 goto out_free_window;
4e8b0cf4
NA
1033 }
1034
1035 window->device = pdn;
1036 window->prop = ddwprop;
1037 spin_lock(&direct_window_list_lock);
1038 list_add(&window->list, &direct_window_list);
1039 spin_unlock(&direct_window_list_lock);
1040
1041 dma_addr = of_read_number(&create.addr_hi, 2);
1042 goto out_unlock;
1043
7a19081f
JL
1044out_free_window:
1045 kfree(window);
1046
4e8b0cf4
NA
1047out_clear_window:
1048 remove_ddw(pdn);
1049
1050out_free_prop:
1051 kfree(win64->name);
1052 kfree(win64->value);
1053 kfree(win64);
1054
ae69e1ed 1055out_failed:
25ebc45b 1056
61435690
NA
1057 fpdn = kzalloc(sizeof(*fpdn), GFP_KERNEL);
1058 if (!fpdn)
1059 goto out_unlock;
1060 fpdn->pdn = pdn;
1061 list_add(&fpdn->list, &failed_ddw_pdn_list);
1062
4e8b0cf4
NA
1063out_unlock:
1064 mutex_unlock(&direct_window_init_mutex);
1065 return dma_addr;
1066}
1067
12d04eef 1068static void pci_dma_dev_setup_pSeriesLP(struct pci_dev *dev)
1da177e4
LT
1069{
1070 struct device_node *pdn, *dn;
1071 struct iommu_table *tbl;
2083f681 1072 const __be32 *dma_window = NULL;
1635317f 1073 struct pci_dn *pci;
1da177e4 1074
f7ebf352 1075 pr_debug("pci_dma_dev_setup_pSeriesLP: %s\n", pci_name(dev));
12d04eef 1076
1da177e4 1077 /* dev setup for LPAR is a little tricky, since the device tree might
25985edc 1078 * contain the dma-window properties per-device and not necessarily
1da177e4
LT
1079 * for the bus. So we need to search upwards in the tree until we
1080 * either hit a dma-window property, OR find a parent with a table
1081 * already allocated.
1082 */
1083 dn = pci_device_to_OF_node(dev);
f7ebf352 1084 pr_debug(" node is %s\n", dn->full_name);
5d2efba6 1085
e07102db 1086 for (pdn = dn; pdn && PCI_DN(pdn) && !PCI_DN(pdn)->iommu_table;
1635317f 1087 pdn = pdn->parent) {
e2eb6392 1088 dma_window = of_get_property(pdn, "ibm,dma-window", NULL);
1da177e4
LT
1089 if (dma_window)
1090 break;
1091 }
1092
650f7b3b
LV
1093 if (!pdn || !PCI_DN(pdn)) {
1094 printk(KERN_WARNING "pci_dma_dev_setup_pSeriesLP: "
1095 "no DMA window found for pci dev=%s dn=%s\n",
74a7f084 1096 pci_name(dev), of_node_full_name(dn));
650f7b3b
LV
1097 return;
1098 }
f7ebf352 1099 pr_debug(" parent is %s\n", pdn->full_name);
12d04eef 1100
e07102db 1101 pci = PCI_DN(pdn);
1635317f 1102 if (!pci->iommu_table) {
7aa241fd 1103 tbl = kzalloc_node(sizeof(struct iommu_table), GFP_KERNEL,
ca1588e7 1104 pci->phb->node);
b8c49def 1105 iommu_table_setparms_lpar(pci->phb, pdn, tbl, dma_window);
ca1588e7 1106 pci->iommu_table = iommu_init_table(tbl, pci->phb->node);
5b25199e 1107 iommu_register_group(tbl, pci_domain_nr(pci->phb->bus), 0);
f7ebf352 1108 pr_debug(" created table: %p\n", pci->iommu_table);
de113217 1109 } else {
f7ebf352 1110 pr_debug(" found DMA window, table: %p\n", pci->iommu_table);
1da177e4
LT
1111 }
1112
d905c5df 1113 set_iommu_table_base_and_group(&dev->dev, pci->iommu_table);
1da177e4 1114}
4e8b0cf4
NA
1115
1116static int dma_set_mask_pSeriesLP(struct device *dev, u64 dma_mask)
1117{
1118 bool ddw_enabled = false;
1119 struct device_node *pdn, *dn;
1120 struct pci_dev *pdev;
2083f681 1121 const __be32 *dma_window = NULL;
4e8b0cf4
NA
1122 u64 dma_offset;
1123
64ac822f 1124 if (!dev->dma_mask)
4e8b0cf4
NA
1125 return -EIO;
1126
64ac822f
MM
1127 if (!dev_is_pci(dev))
1128 goto check_mask;
1129
eb0dd411
NA
1130 pdev = to_pci_dev(dev);
1131
4e8b0cf4
NA
1132 /* only attempt to use a new window if 64-bit DMA is requested */
1133 if (!disable_ddw && dma_mask == DMA_BIT_MASK(64)) {
4e8b0cf4
NA
1134 dn = pci_device_to_OF_node(pdev);
1135 dev_dbg(dev, "node is %s\n", dn->full_name);
1136
1137 /*
1138 * the device tree might contain the dma-window properties
25985edc 1139 * per-device and not necessarily for the bus. So we need to
4e8b0cf4
NA
1140 * search upwards in the tree until we either hit a dma-window
1141 * property, OR find a parent with a table already allocated.
1142 */
1143 for (pdn = dn; pdn && PCI_DN(pdn) && !PCI_DN(pdn)->iommu_table;
1144 pdn = pdn->parent) {
1145 dma_window = of_get_property(pdn, "ibm,dma-window", NULL);
1146 if (dma_window)
1147 break;
1148 }
1149 if (pdn && PCI_DN(pdn)) {
1150 dma_offset = enable_ddw(pdev, pdn);
1151 if (dma_offset != 0) {
1152 dev_info(dev, "Using 64-bit direct DMA at offset %llx\n", dma_offset);
1153 set_dma_offset(dev, dma_offset);
1154 set_dma_ops(dev, &dma_direct_ops);
1155 ddw_enabled = true;
1156 }
1157 }
1158 }
1159
64ac822f
MM
1160 /* fall back on iommu ops, restore table pointer with ops */
1161 if (!ddw_enabled && get_dma_ops(dev) != &dma_iommu_ops) {
1162 dev_info(dev, "Restoring 32-bit DMA via iommu\n");
4e8b0cf4 1163 set_dma_ops(dev, &dma_iommu_ops);
eb0dd411 1164 pci_dma_dev_setup_pSeriesLP(pdev);
4e8b0cf4
NA
1165 }
1166
64ac822f
MM
1167check_mask:
1168 if (!dma_supported(dev, dma_mask))
1169 return -EIO;
1170
4e8b0cf4
NA
1171 *dev->dma_mask = dma_mask;
1172 return 0;
1173}
1174
6a5c7be5
MM
1175static u64 dma_get_required_mask_pSeriesLP(struct device *dev)
1176{
1177 if (!dev->dma_mask)
1178 return 0;
1179
1180 if (!disable_ddw && dev_is_pci(dev)) {
1181 struct pci_dev *pdev = to_pci_dev(dev);
1182 struct device_node *dn;
1183
1184 dn = pci_device_to_OF_node(pdev);
1185
1186 /* search upwards for ibm,dma-window */
1187 for (; dn && PCI_DN(dn) && !PCI_DN(dn)->iommu_table;
1188 dn = dn->parent)
1189 if (of_get_property(dn, "ibm,dma-window", NULL))
1190 break;
1191 /* if there is a ibm,ddw-applicable property require 64 bits */
1192 if (dn && PCI_DN(dn) &&
1193 of_get_property(dn, "ibm,ddw-applicable", NULL))
1194 return DMA_BIT_MASK(64);
1195 }
1196
d24f9c69 1197 return dma_iommu_ops.get_required_mask(dev);
6a5c7be5
MM
1198}
1199
bed59275
SR
1200#else /* CONFIG_PCI */
1201#define pci_dma_bus_setup_pSeries NULL
1202#define pci_dma_dev_setup_pSeries NULL
1203#define pci_dma_bus_setup_pSeriesLP NULL
1204#define pci_dma_dev_setup_pSeriesLP NULL
4e8b0cf4 1205#define dma_set_mask_pSeriesLP NULL
6a5c7be5 1206#define dma_get_required_mask_pSeriesLP NULL
bed59275
SR
1207#endif /* !CONFIG_PCI */
1208
4e8b0cf4
NA
1209static int iommu_mem_notifier(struct notifier_block *nb, unsigned long action,
1210 void *data)
1211{
1212 struct direct_window *window;
1213 struct memory_notify *arg = data;
1214 int ret = 0;
1215
1216 switch (action) {
1217 case MEM_GOING_ONLINE:
1218 spin_lock(&direct_window_list_lock);
1219 list_for_each_entry(window, &direct_window_list, list) {
1220 ret |= tce_setrange_multi_pSeriesLP(arg->start_pfn,
1221 arg->nr_pages, window->prop);
1222 /* XXX log error */
1223 }
1224 spin_unlock(&direct_window_list_lock);
1225 break;
1226 case MEM_CANCEL_ONLINE:
1227 case MEM_OFFLINE:
1228 spin_lock(&direct_window_list_lock);
1229 list_for_each_entry(window, &direct_window_list, list) {
1230 ret |= tce_clearrange_multi_pSeriesLP(arg->start_pfn,
1231 arg->nr_pages, window->prop);
1232 /* XXX log error */
1233 }
1234 spin_unlock(&direct_window_list_lock);
1235 break;
1236 default:
1237 break;
1238 }
1239 if (ret && action != MEM_CANCEL_ONLINE)
1240 return NOTIFY_BAD;
1241
1242 return NOTIFY_OK;
1243}
1244
1245static struct notifier_block iommu_mem_nb = {
1246 .notifier_call = iommu_mem_notifier,
1247};
1248
bed59275
SR
1249static int iommu_reconfig_notifier(struct notifier_block *nb, unsigned long action, void *node)
1250{
1251 int err = NOTIFY_OK;
1252 struct device_node *np = node;
1253 struct pci_dn *pci = PCI_DN(np);
4e8b0cf4 1254 struct direct_window *window;
bed59275
SR
1255
1256 switch (action) {
1cf3d8b3 1257 case OF_RECONFIG_DETACH_NODE:
71cf1def 1258 remove_ddw(np);
7372cfb8 1259 if (pci && pci->iommu_table)
68d315f5 1260 iommu_free_table(pci->iommu_table, np->full_name);
4e8b0cf4
NA
1261
1262 spin_lock(&direct_window_list_lock);
1263 list_for_each_entry(window, &direct_window_list, list) {
1264 if (window->device == np) {
1265 list_del(&window->list);
1266 kfree(window);
1267 break;
1268 }
1269 }
1270 spin_unlock(&direct_window_list_lock);
bed59275
SR
1271 break;
1272 default:
1273 err = NOTIFY_DONE;
1274 break;
1275 }
1276 return err;
1277}
1278
1279static struct notifier_block iommu_reconfig_nb = {
1280 .notifier_call = iommu_reconfig_notifier,
1281};
1da177e4 1282
1da177e4
LT
1283/* These are called very early. */
1284void iommu_init_early_pSeries(void)
1285{
a8daac8a 1286 if (of_chosen && of_get_property(of_chosen, "linux,iommu-off", NULL))
1da177e4 1287 return;
1da177e4 1288
57cfb814 1289 if (firmware_has_feature(FW_FEATURE_LPAR)) {
1ababe11 1290 if (firmware_has_feature(FW_FEATURE_MULTITCE)) {
1da177e4
LT
1291 ppc_md.tce_build = tce_buildmulti_pSeriesLP;
1292 ppc_md.tce_free = tce_freemulti_pSeriesLP;
1293 } else {
1294 ppc_md.tce_build = tce_build_pSeriesLP;
1295 ppc_md.tce_free = tce_free_pSeriesLP;
1296 }
5f50867b 1297 ppc_md.tce_get = tce_get_pSeriesLP;
12d04eef
BH
1298 ppc_md.pci_dma_bus_setup = pci_dma_bus_setup_pSeriesLP;
1299 ppc_md.pci_dma_dev_setup = pci_dma_dev_setup_pSeriesLP;
4e8b0cf4 1300 ppc_md.dma_set_mask = dma_set_mask_pSeriesLP;
6a5c7be5 1301 ppc_md.dma_get_required_mask = dma_get_required_mask_pSeriesLP;
1da177e4
LT
1302 } else {
1303 ppc_md.tce_build = tce_build_pSeries;
1304 ppc_md.tce_free = tce_free_pSeries;
5f50867b 1305 ppc_md.tce_get = tce_get_pseries;
12d04eef
BH
1306 ppc_md.pci_dma_bus_setup = pci_dma_bus_setup_pSeries;
1307 ppc_md.pci_dma_dev_setup = pci_dma_dev_setup_pSeries;
1da177e4
LT
1308 }
1309
1310
1cf3d8b3 1311 of_reconfig_notifier_register(&iommu_reconfig_nb);
4e8b0cf4 1312 register_memory_notifier(&iommu_mem_nb);
1da177e4 1313
98747770 1314 set_pci_dma_ops(&dma_iommu_ops);
1da177e4
LT
1315}
1316
4e89a2d8
WS
1317static int __init disable_multitce(char *str)
1318{
1319 if (strcmp(str, "off") == 0 &&
1320 firmware_has_feature(FW_FEATURE_LPAR) &&
1321 firmware_has_feature(FW_FEATURE_MULTITCE)) {
1322 printk(KERN_INFO "Disabling MULTITCE firmware feature\n");
1323 ppc_md.tce_build = tce_build_pSeriesLP;
1324 ppc_md.tce_free = tce_free_pSeriesLP;
1325 powerpc_firmware_features &= ~FW_FEATURE_MULTITCE;
1326 }
1327 return 1;
1328}
1329
1330__setup("multitce=", disable_multitce);