blob: 6153eea27ce7d39ea51fb4d1f210be2a1934bfdf [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Copyright (C) 2001 Mike Corrigan & Dave Engebretsen, IBM Corporation
3 *
Olof Johanssonbc97ce92006-04-28 22:51:59 -05004 * Rewrite, cleanup:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
Olof Johansson91f14482005-11-21 02:12:32 -06006 * Copyright (C) 2004 Olof Johansson <olof@lixom.net>, IBM Corporation
Olof Johanssonbc97ce92006-04-28 22:51:59 -05007 * Copyright (C) 2006 Olof Johansson <olof@lixom.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 *
9 * Dynamic DMA mapping support, pSeries-specific parts, both SMP and LPAR.
10 *
Olof Johanssonbc97ce92006-04-28 22:51:59 -050011 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 * 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.
Olof Johanssonbc97ce92006-04-28 22:51:59 -050016 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 * 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.
Olof Johanssonbc97ce92006-04-28 22:51:59 -050021 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 * 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/init.h>
28#include <linux/types.h>
29#include <linux/slab.h>
30#include <linux/mm.h>
Michael Ellermanbeacc6d2012-07-25 21:20:03 +000031#include <linux/memblock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/spinlock.h>
Paul Gortmaker62fe91b2011-05-27 14:25:11 -040033#include <linux/sched.h> /* for show_stack */
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/string.h>
35#include <linux/pci.h>
36#include <linux/dma-mapping.h>
Milton Miller62a8bd62008-10-22 15:39:04 -050037#include <linux/crash_dump.h>
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +000038#include <linux/memory.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <asm/io.h>
40#include <asm/prom.h>
41#include <asm/rtas.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <asm/iommu.h>
43#include <asm/pci-bridge.h>
44#include <asm/machdep.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <asm/pSeries_reconfig.h>
Stephen Rothwell1ababe12005-08-03 14:35:25 +100046#include <asm/firmware.h>
Olof Johanssonc707ffc2005-09-20 13:45:41 +100047#include <asm/tce.h>
Stephen Rothwelld3878992005-09-28 02:50:25 +100048#include <asm/ppc-pci.h>
Paul Mackerras2249ca92005-11-07 13:18:13 +110049#include <asm/udbg.h>
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +000050#include <asm/mmzone.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Michael Ellermana1218722005-11-03 15:33:31 +110052#include "plpar_wrappers.h"
53
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Milton Miller8d3d5892011-06-29 20:58:33 +000055static void tce_invalidate_pSeries_sw(struct iommu_table *tbl,
56 u64 *startp, u64 *endp)
57{
58 u64 __iomem *invalidate = (u64 __iomem *)tbl->it_index;
59 unsigned long start, end, inc;
60
61 start = __pa(startp);
62 end = __pa(endp);
63 inc = L1_CACHE_BYTES; /* invalidate a cacheline of TCEs at a time */
64
65 /* If this is non-zero, change the format. We shift the
66 * address and or in the magic from the device tree. */
67 if (tbl->it_busno) {
68 start <<= 12;
69 end <<= 12;
70 inc <<= 12;
71 start |= tbl->it_busno;
72 end |= tbl->it_busno;
73 }
74
75 end |= inc - 1; /* round up end to be different than start */
76
77 mb(); /* Make sure TCEs in memory are written */
78 while (start <= end) {
79 out_be64(invalidate, start);
80 start += inc;
81 }
82}
83
Robert Jennings6490c492008-07-24 04:31:16 +100084static int tce_build_pSeries(struct iommu_table *tbl, long index,
Olof Johanssonbc97ce92006-04-28 22:51:59 -050085 long npages, unsigned long uaddr,
Mark Nelson4f3dd8a2008-07-16 05:51:47 +100086 enum dma_data_direction direction,
87 struct dma_attrs *attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -070088{
Olof Johanssonbc97ce92006-04-28 22:51:59 -050089 u64 proto_tce;
Milton Miller8d3d5892011-06-29 20:58:33 +000090 u64 *tcep, *tces;
Olof Johanssonbc97ce92006-04-28 22:51:59 -050091 u64 rpn;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
Olof Johanssonbc97ce92006-04-28 22:51:59 -050093 proto_tce = TCE_PCI_READ; // Read allowed
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
95 if (direction != DMA_TO_DEVICE)
Olof Johanssonbc97ce92006-04-28 22:51:59 -050096 proto_tce |= TCE_PCI_WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Milton Miller8d3d5892011-06-29 20:58:33 +000098 tces = tcep = ((u64 *)tbl->it_base) + index;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
100 while (npages--) {
Yinghai Lu95f72d12010-07-12 14:36:09 +1000101 /* can't move this out since we might cross MEMBLOCK boundary */
Michael Ellerman474e3d52012-07-25 21:19:57 +0000102 rpn = __pa(uaddr) >> TCE_SHIFT;
Olof Johanssonbc97ce92006-04-28 22:51:59 -0500103 *tcep = proto_tce | (rpn & TCE_RPN_MASK) << TCE_RPN_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
Olof Johanssond0035c622005-09-20 13:46:44 +1000105 uaddr += TCE_PAGE_SIZE;
Olof Johanssonbc97ce92006-04-28 22:51:59 -0500106 tcep++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 }
Milton Miller8d3d5892011-06-29 20:58:33 +0000108
Michael Neulingbc6dc752012-06-26 21:26:37 +0000109 if (tbl->it_type & TCE_PCI_SWINV_CREATE)
Milton Miller8d3d5892011-06-29 20:58:33 +0000110 tce_invalidate_pSeries_sw(tbl, tces, tcep - 1);
Robert Jennings6490c492008-07-24 04:31:16 +1000111 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112}
113
114
115static void tce_free_pSeries(struct iommu_table *tbl, long index, long npages)
116{
Milton Miller8d3d5892011-06-29 20:58:33 +0000117 u64 *tcep, *tces;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
Milton Miller8d3d5892011-06-29 20:58:33 +0000119 tces = tcep = ((u64 *)tbl->it_base) + index;
Olof Johanssonbc97ce92006-04-28 22:51:59 -0500120
121 while (npages--)
122 *(tcep++) = 0;
Milton Miller8d3d5892011-06-29 20:58:33 +0000123
Michael Neulingbc6dc752012-06-26 21:26:37 +0000124 if (tbl->it_type & TCE_PCI_SWINV_FREE)
Milton Miller8d3d5892011-06-29 20:58:33 +0000125 tce_invalidate_pSeries_sw(tbl, tces, tcep - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126}
127
Haren Myneni5f508672006-06-22 23:35:10 -0700128static unsigned long tce_get_pseries(struct iommu_table *tbl, long index)
129{
130 u64 *tcep;
131
Haren Myneni5f508672006-06-22 23:35:10 -0700132 tcep = ((u64 *)tbl->it_base) + index;
133
134 return *tcep;
135}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
Robert Jennings6490c492008-07-24 04:31:16 +1000137static void tce_free_pSeriesLP(struct iommu_table*, long, long);
138static void tce_freemulti_pSeriesLP(struct iommu_table*, long, long);
139
140static int tce_build_pSeriesLP(struct iommu_table *tbl, long tcenum,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 long npages, unsigned long uaddr,
Mark Nelson4f3dd8a2008-07-16 05:51:47 +1000142 enum dma_data_direction direction,
143 struct dma_attrs *attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144{
Robert Jennings6490c492008-07-24 04:31:16 +1000145 u64 rc = 0;
Olof Johanssonbc97ce92006-04-28 22:51:59 -0500146 u64 proto_tce, tce;
147 u64 rpn;
Robert Jennings6490c492008-07-24 04:31:16 +1000148 int ret = 0;
149 long tcenum_start = tcenum, npages_start = npages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
Michael Ellerman474e3d52012-07-25 21:19:57 +0000151 rpn = __pa(uaddr) >> TCE_SHIFT;
Olof Johanssonbc97ce92006-04-28 22:51:59 -0500152 proto_tce = TCE_PCI_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 if (direction != DMA_TO_DEVICE)
Olof Johanssonbc97ce92006-04-28 22:51:59 -0500154 proto_tce |= TCE_PCI_WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
156 while (npages--) {
Olof Johanssonbc97ce92006-04-28 22:51:59 -0500157 tce = proto_tce | (rpn & TCE_RPN_MASK) << TCE_RPN_SHIFT;
158 rc = plpar_tce_put((u64)tbl->it_index, (u64)tcenum << 12, tce);
159
Robert Jennings6490c492008-07-24 04:31:16 +1000160 if (unlikely(rc == H_NOT_ENOUGH_RESOURCES)) {
161 ret = (int)rc;
162 tce_free_pSeriesLP(tbl, tcenum_start,
163 (npages_start - (npages + 1)));
164 break;
165 }
166
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 if (rc && printk_ratelimit()) {
Ingo Molnarfe333322009-01-06 14:26:03 +0000168 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 );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 show_stack(current, (unsigned long *)__get_SP());
173 }
Olof Johanssonbc97ce92006-04-28 22:51:59 -0500174
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 tcenum++;
Olof Johanssonbc97ce92006-04-28 22:51:59 -0500176 rpn++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 }
Robert Jennings6490c492008-07-24 04:31:16 +1000178 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179}
180
Nishanth Aravamudana8daac82010-10-18 07:27:03 +0000181static DEFINE_PER_CPU(u64 *, tce_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
Robert Jennings6490c492008-07-24 04:31:16 +1000183static int tce_buildmulti_pSeriesLP(struct iommu_table *tbl, long tcenum,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 long npages, unsigned long uaddr,
Mark Nelson4f3dd8a2008-07-16 05:51:47 +1000185 enum dma_data_direction direction,
186 struct dma_attrs *attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187{
Robert Jennings6490c492008-07-24 04:31:16 +1000188 u64 rc = 0;
Olof Johanssonbc97ce92006-04-28 22:51:59 -0500189 u64 proto_tce;
190 u64 *tcep;
191 u64 rpn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 long l, limit;
Robert Jennings6490c492008-07-24 04:31:16 +1000193 long tcenum_start = tcenum, npages_start = npages;
194 int ret = 0;
Anton Blanchardc1703e82012-06-03 19:42:13 +0000195 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
Michael Ellerman541b2752008-05-08 14:27:23 +1000197 if (npages == 1) {
Robert Jennings6490c492008-07-24 04:31:16 +1000198 return tce_build_pSeriesLP(tbl, tcenum, npages, uaddr,
199 direction, attrs);
Michael Ellerman541b2752008-05-08 14:27:23 +1000200 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
Anton Blanchardc1703e82012-06-03 19:42:13 +0000202 local_irq_save(flags); /* to protect tcep and the page behind it */
203
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 tcep = __get_cpu_var(tce_page);
205
206 /* This is safe to do since interrupts are off when we're called
207 * from iommu_alloc{,_sg}()
208 */
209 if (!tcep) {
Olof Johanssonbc97ce92006-04-28 22:51:59 -0500210 tcep = (u64 *)__get_free_page(GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 /* If allocation fails, fall back to the loop implementation */
Michael Ellerman541b2752008-05-08 14:27:23 +1000212 if (!tcep) {
Anton Blanchardc1703e82012-06-03 19:42:13 +0000213 local_irq_restore(flags);
Robert Jennings6490c492008-07-24 04:31:16 +1000214 return tce_build_pSeriesLP(tbl, tcenum, npages, uaddr,
Mark Nelson4f3dd8a2008-07-16 05:51:47 +1000215 direction, attrs);
Michael Ellerman541b2752008-05-08 14:27:23 +1000216 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 __get_cpu_var(tce_page) = tcep;
218 }
219
Michael Ellerman474e3d52012-07-25 21:19:57 +0000220 rpn = __pa(uaddr) >> TCE_SHIFT;
Olof Johanssonbc97ce92006-04-28 22:51:59 -0500221 proto_tce = TCE_PCI_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 if (direction != DMA_TO_DEVICE)
Olof Johanssonbc97ce92006-04-28 22:51:59 -0500223 proto_tce |= TCE_PCI_WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
225 /* We can map max one pageful of TCEs at a time */
226 do {
227 /*
228 * Set up the page with TCE data, looping through and setting
229 * the values.
230 */
Olof Johanssonbc97ce92006-04-28 22:51:59 -0500231 limit = min_t(long, npages, 4096/TCE_ENTRY_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
233 for (l = 0; l < limit; l++) {
Olof Johanssonbc97ce92006-04-28 22:51:59 -0500234 tcep[l] = proto_tce | (rpn & TCE_RPN_MASK) << TCE_RPN_SHIFT;
235 rpn++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 }
237
238 rc = plpar_tce_put_indirect((u64)tbl->it_index,
239 (u64)tcenum << 12,
Michael Ellerman474e3d52012-07-25 21:19:57 +0000240 (u64)__pa(tcep),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 limit);
242
243 npages -= limit;
244 tcenum += limit;
245 } while (npages > 0 && !rc);
246
Anton Blanchardc1703e82012-06-03 19:42:13 +0000247 local_irq_restore(flags);
248
Robert Jennings6490c492008-07-24 04:31:16 +1000249 if (unlikely(rc == H_NOT_ENOUGH_RESOURCES)) {
250 ret = (int)rc;
251 tce_freemulti_pSeriesLP(tbl, tcenum_start,
252 (npages_start - (npages + limit)));
253 return ret;
254 }
255
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 if (rc && printk_ratelimit()) {
Ingo Molnarfe333322009-01-06 14:26:03 +0000257 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]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 show_stack(current, (unsigned long *)__get_SP());
262 }
Robert Jennings6490c492008-07-24 04:31:16 +1000263 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264}
265
266static void tce_free_pSeriesLP(struct iommu_table *tbl, long tcenum, long npages)
267{
268 u64 rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 while (npages--) {
Olof Johanssonbc97ce92006-04-28 22:51:59 -0500271 rc = plpar_tce_put((u64)tbl->it_index, (u64)tcenum << 12, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
273 if (rc && printk_ratelimit()) {
Ingo Molnarfe333322009-01-06 14:26:03 +0000274 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 show_stack(current, (unsigned long *)__get_SP());
278 }
279
280 tcenum++;
281 }
282}
283
284
285static void tce_freemulti_pSeriesLP(struct iommu_table *tbl, long tcenum, long npages)
286{
287 u64 rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
Olof Johanssonbc97ce92006-04-28 22:51:59 -0500289 rc = plpar_tce_stuff((u64)tbl->it_index, (u64)tcenum << 12, 0, npages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
291 if (rc && printk_ratelimit()) {
292 printk("tce_freemulti_pSeriesLP: plpar_tce_stuff failed\n");
Ingo Molnarfe333322009-01-06 14:26:03 +0000293 printk("\trc = %lld\n", rc);
294 printk("\tindex = 0x%llx\n", (u64)tbl->it_index);
295 printk("\tnpages = 0x%llx\n", (u64)npages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 show_stack(current, (unsigned long *)__get_SP());
297 }
298}
299
Haren Myneni5f508672006-06-22 23:35:10 -0700300static unsigned long tce_get_pSeriesLP(struct iommu_table *tbl, long tcenum)
301{
302 u64 rc;
303 unsigned long tce_ret;
304
Haren Myneni5f508672006-06-22 23:35:10 -0700305 rc = plpar_tce_get((u64)tbl->it_index, (u64)tcenum << 12, &tce_ret);
306
307 if (rc && printk_ratelimit()) {
Ingo Molnarfe333322009-01-06 14:26:03 +0000308 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);
Haren Myneni5f508672006-06-22 23:35:10 -0700311 show_stack(current, (unsigned long *)__get_SP());
312 }
313
314 return tce_ret;
315}
316
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300317/* this is compatible with cells for the device tree property */
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000318struct 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) */
323};
324
325struct direct_window {
326 struct device_node *device;
327 const struct dynamic_dma_window_prop *prop;
328 struct list_head list;
329};
330
331/* Dynamic DMA Window support */
332struct ddw_query_response {
333 u32 windows_available;
334 u32 largest_available_block;
335 u32 page_size;
336 u32 migration_capable;
337};
338
339struct ddw_create_response {
340 u32 liobn;
341 u32 addr_hi;
342 u32 addr_lo;
343};
344
345static LIST_HEAD(direct_window_list);
346/* prevents races between memory on/offline and window creation */
347static DEFINE_SPINLOCK(direct_window_list_lock);
348/* protects initializing window twice for same device */
349static DEFINE_MUTEX(direct_window_init_mutex);
350#define DIRECT64_PROPNAME "linux,direct64-ddr-window-info"
351
352static int tce_clearrange_multi_pSeriesLP(unsigned long start_pfn,
353 unsigned long num_pfn, const void *arg)
354{
355 const struct dynamic_dma_window_prop *maprange = arg;
356 int rc;
357 u64 tce_size, num_tce, dma_offset, next;
358 u32 tce_shift;
359 long limit;
360
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;
365
366 /* round back to the beginning of the tce page size */
367 num_tce += next & (tce_size - 1);
368 next &= ~(tce_size - 1);
369
370 /* covert to number of tces */
371 num_tce |= tce_size - 1;
372 num_tce >>= tce_shift;
373
374 do {
375 /*
376 * Set up the page with TCE data, looping through and setting
377 * the values.
378 */
379 limit = min_t(long, num_tce, 512);
380 dma_offset = next + be64_to_cpu(maprange->dma_base);
381
382 rc = plpar_tce_stuff((u64)be32_to_cpu(maprange->liobn),
383 dma_offset,
384 0, limit);
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;
395 u64 *tcep, tce_size, num_tce, dma_offset, next, proto_tce, liobn;
396 u32 tce_shift;
397 u64 rc = 0;
398 long l, limit;
399
400 local_irq_disable(); /* to protect tcep and the page behind it */
401 tcep = __get_cpu_var(tce_page);
402
403 if (!tcep) {
404 tcep = (u64 *)__get_free_page(GFP_ATOMIC);
405 if (!tcep) {
406 local_irq_enable();
407 return -ENOMEM;
408 }
409 __get_cpu_var(tce_page) = tcep;
410 }
411
412 proto_tce = TCE_PCI_READ | TCE_PCI_WRITE;
413
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;
419
420 /* round back to the beginning of the tce page size */
421 num_tce += next & (tce_size - 1);
422 next &= ~(tce_size - 1);
423
424 /* covert to number of tces */
425 num_tce |= tce_size - 1;
426 num_tce >>= tce_shift;
427
428 /* We can map max one pageful of TCEs at a time */
429 do {
430 /*
431 * Set up the page with TCE data, looping through and setting
432 * the values.
433 */
434 limit = min_t(long, num_tce, 4096/TCE_ENTRY_SIZE);
435 dma_offset = next + be64_to_cpu(maprange->dma_base);
436
437 for (l = 0; l < limit; l++) {
438 tcep[l] = proto_tce | next;
439 next += tce_size;
440 }
441
442 rc = plpar_tce_put_indirect(liobn,
443 dma_offset,
Michael Ellerman474e3d52012-07-25 21:19:57 +0000444 (u64)__pa(tcep),
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000445 limit);
446
447 num_tce -= limit;
448 } while (num_tce > 0 && !rc);
449
450 /* error cleanup: caller will clear whole range */
451
452 local_irq_enable();
453 return rc;
454}
455
456static int tce_setrange_multi_pSeriesLP_walk(unsigned long start_pfn,
457 unsigned long num_pfn, void *arg)
458{
459 return tce_setrange_multi_pSeriesLP(start_pfn, num_pfn, arg);
460}
461
462
Stephen Rothwellbed59272007-03-04 17:04:44 +1100463#ifdef CONFIG_PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464static void iommu_table_setparms(struct pci_controller *phb,
465 struct device_node *dn,
Olof Johanssonbc97ce92006-04-28 22:51:59 -0500466 struct iommu_table *tbl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467{
468 struct device_node *node;
Milton Miller8d3d5892011-06-29 20:58:33 +0000469 const unsigned long *basep, *sw_inval;
Nathan Lynch9938c472006-10-04 22:28:00 -0500470 const u32 *sizep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471
Stephen Rothwell44ef3392007-12-10 14:33:21 +1100472 node = phb->dn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000474 basep = of_get_property(node, "linux,tce-base", NULL);
475 sizep = of_get_property(node, "linux,tce-size", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 if (basep == NULL || sizep == NULL) {
477 printk(KERN_ERR "PCI_DMA: iommu_table_setparms: %s has "
478 "missing tce entries !\n", dn->full_name);
479 return;
480 }
481
482 tbl->it_base = (unsigned long)__va(*basep);
Haren Myneni5f508672006-06-22 23:35:10 -0700483
Milton Miller62a8bd62008-10-22 15:39:04 -0500484 if (!is_kdump_kernel())
Mohan Kumar M54622f12008-10-21 17:38:10 +0000485 memset((void *)tbl->it_base, 0, *sizep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
487 tbl->it_busno = phb->bus->number;
Olof Johanssonbc97ce92006-04-28 22:51:59 -0500488
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 /* Units of tce entries */
Linas Vepstas5d2efba2006-10-30 16:15:59 +1100490 tbl->it_offset = phb->dma_window_base_cur >> IOMMU_PAGE_SHIFT;
Olof Johanssonbc97ce92006-04-28 22:51:59 -0500491
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 /* Test if we are going over 2GB of DMA space */
Olof Johansson3c2822c2005-09-21 09:55:31 -0700493 if (phb->dma_window_base_cur + phb->dma_window_size > 0x80000000ul) {
494 udbg_printf("PCI_DMA: Unexpected number of IOAs under this PHB.\n");
Olof Johanssonbc97ce92006-04-28 22:51:59 -0500495 panic("PCI_DMA: Unexpected number of IOAs under this PHB.\n");
Olof Johansson3c2822c2005-09-21 09:55:31 -0700496 }
Olof Johanssonbc97ce92006-04-28 22:51:59 -0500497
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 phb->dma_window_base_cur += phb->dma_window_size;
499
500 /* Set the tce table size - measured in entries */
Linas Vepstas5d2efba2006-10-30 16:15:59 +1100501 tbl->it_size = phb->dma_window_size >> IOMMU_PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
503 tbl->it_index = 0;
504 tbl->it_blocksize = 16;
505 tbl->it_type = TCE_PCI;
Milton Miller8d3d5892011-06-29 20:58:33 +0000506
507 sw_inval = of_get_property(node, "linux,tce-sw-invalidate-info", NULL);
508 if (sw_inval) {
509 /*
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
516 * command.
517 */
518 tbl->it_index = (unsigned long) ioremap(sw_inval[0], 8);
519 tbl->it_busno = sw_inval[1]; /* overload this with magic */
Benjamin Herrenschmidt1f1616e2011-11-06 18:55:59 +0000520 tbl->it_type = TCE_PCI_SWINV_CREATE | TCE_PCI_SWINV_FREE;
Milton Miller8d3d5892011-06-29 20:58:33 +0000521 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522}
523
524/*
525 * iommu_table_setparms_lpar
526 *
527 * Function: On pSeries LPAR systems, return TCE table info, given a pci bus.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 */
529static void iommu_table_setparms_lpar(struct pci_controller *phb,
530 struct device_node *dn,
531 struct iommu_table *tbl,
Benjamin Herrenschmidtb8c49de2010-12-09 15:24:01 +1100532 const void *dma_window)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533{
Jeremy Kerr4c76e0b2006-05-18 18:06:37 +1000534 unsigned long offset, size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535
Jeremy Kerr4c76e0b2006-05-18 18:06:37 +1000536 of_parse_dma_window(dn, dma_window, &tbl->it_index, &offset, &size);
537
Benjamin Herrenschmidtb8c49de2010-12-09 15:24:01 +1100538 tbl->it_busno = phb->bus->number;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 tbl->it_base = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 tbl->it_blocksize = 16;
541 tbl->it_type = TCE_PCI;
Linas Vepstas5d2efba2006-10-30 16:15:59 +1100542 tbl->it_offset = offset >> IOMMU_PAGE_SHIFT;
543 tbl->it_size = size >> IOMMU_PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544}
545
Benjamin Herrenschmidt12d04ee2006-11-11 17:25:02 +1100546static void pci_dma_bus_setup_pSeries(struct pci_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547{
Olof Johansson3c2822c2005-09-21 09:55:31 -0700548 struct device_node *dn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 struct iommu_table *tbl;
Olof Johansson3c2822c2005-09-21 09:55:31 -0700550 struct device_node *isa_dn, *isa_dn_orig;
551 struct device_node *tmp;
552 struct pci_dn *pci;
553 int children;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
Olof Johansson3c2822c2005-09-21 09:55:31 -0700555 dn = pci_bus_to_OF_node(bus);
Benjamin Herrenschmidt12d04ee2006-11-11 17:25:02 +1100556
Michael Ellermanf7ebf352008-04-24 15:13:19 +1000557 pr_debug("pci_dma_bus_setup_pSeries: setting up bus %s\n", dn->full_name);
Olof Johansson3c2822c2005-09-21 09:55:31 -0700558
559 if (bus->self) {
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().
562 */
563 return;
564 }
Benjamin Herrenschmidt12d04ee2006-11-11 17:25:02 +1100565 pci = PCI_DN(dn);
Olof Johansson3c2822c2005-09-21 09:55:31 -0700566
567 /* Check if the ISA bus on the system is under
568 * this PHB.
569 */
570 isa_dn = isa_dn_orig = of_find_node_by_type(NULL, "isa");
571
572 while (isa_dn && isa_dn != dn)
573 isa_dn = isa_dn->parent;
574
575 if (isa_dn_orig)
576 of_node_put(isa_dn_orig);
577
Anton Blanchardd3c58fb2006-06-20 18:00:30 +1000578 /* Count number of direct PCI children of the PHB. */
Olof Johansson3c2822c2005-09-21 09:55:31 -0700579 for (children = 0, tmp = dn->child; tmp; tmp = tmp->sibling)
Anton Blanchardd3c58fb2006-06-20 18:00:30 +1000580 children++;
Olof Johansson3c2822c2005-09-21 09:55:31 -0700581
Michael Ellermanf7ebf352008-04-24 15:13:19 +1000582 pr_debug("Children: %d\n", children);
Olof Johansson3c2822c2005-09-21 09:55:31 -0700583
584 /* Calculate amount of DMA window per slot. Each window must be
585 * a power of two (due to pci_alloc_consistent requirements).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 *
Olof Johansson3c2822c2005-09-21 09:55:31 -0700587 * Keep 256MB aside for PHBs with ISA.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 */
589
Olof Johansson3c2822c2005-09-21 09:55:31 -0700590 if (!isa_dn) {
591 /* No ISA/IDE - just set window size and return */
592 pci->phb->dma_window_size = 0x80000000ul; /* To be divided */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
Olof Johansson3c2822c2005-09-21 09:55:31 -0700594 while (pci->phb->dma_window_size * children > 0x80000000ul)
595 pci->phb->dma_window_size >>= 1;
Stephen Rothwell41febbc2009-06-02 18:21:30 +0000596 pr_debug("No ISA/IDE, window size is 0x%llx\n",
Michael Ellermanf7ebf352008-04-24 15:13:19 +1000597 pci->phb->dma_window_size);
Olof Johansson3c2822c2005-09-21 09:55:31 -0700598 pci->phb->dma_window_base_cur = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
Olof Johansson3c2822c2005-09-21 09:55:31 -0700600 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 }
Olof Johansson3c2822c2005-09-21 09:55:31 -0700602
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
606 * space.
607 */
608 pci->phb->dma_window_size = 0x8000000ul;
609 pci->phb->dma_window_base_cur = 0x8000000ul;
610
Anton Blanchard7aa241f2010-08-11 16:42:48 +0000611 tbl = kzalloc_node(sizeof(struct iommu_table), GFP_KERNEL,
Anton Blanchardca1588e2006-06-10 20:58:08 +1000612 pci->phb->node);
Olof Johansson3c2822c2005-09-21 09:55:31 -0700613
614 iommu_table_setparms(pci->phb, dn, tbl);
Anton Blanchardca1588e2006-06-10 20:58:08 +1000615 pci->iommu_table = iommu_init_table(tbl, pci->phb->node);
Olof Johansson3c2822c2005-09-21 09:55:31 -0700616
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;
621
Stephen Rothwell41febbc2009-06-02 18:21:30 +0000622 pr_debug("ISA/IDE, window size is 0x%llx\n", pci->phb->dma_window_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623}
624
625
Benjamin Herrenschmidt12d04ee2006-11-11 17:25:02 +1100626static void pci_dma_bus_setup_pSeriesLP(struct pci_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627{
628 struct iommu_table *tbl;
629 struct device_node *dn, *pdn;
Paul Mackerras16353172005-09-06 13:17:54 +1000630 struct pci_dn *ppci;
Jeremy Kerr954a46e2006-07-12 15:39:43 +1000631 const void *dma_window = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 dn = pci_bus_to_OF_node(bus);
634
Michael Ellermanf7ebf352008-04-24 15:13:19 +1000635 pr_debug("pci_dma_bus_setup_pSeriesLP: setting up bus %s\n",
636 dn->full_name);
Benjamin Herrenschmidt12d04ee2006-11-11 17:25:02 +1100637
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 /* Find nearest ibm,dma-window, walking up the device tree */
639 for (pdn = dn; pdn != NULL; pdn = pdn->parent) {
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000640 dma_window = of_get_property(pdn, "ibm,dma-window", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 if (dma_window != NULL)
642 break;
643 }
644
645 if (dma_window == NULL) {
Michael Ellermanf7ebf352008-04-24 15:13:19 +1000646 pr_debug(" no ibm,dma-window property !\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 return;
648 }
649
linase07102d2005-12-05 19:37:35 -0600650 ppci = PCI_DN(pdn);
Benjamin Herrenschmidt12d04ee2006-11-11 17:25:02 +1100651
Michael Ellermanf7ebf352008-04-24 15:13:19 +1000652 pr_debug(" parent is %s, iommu_table: 0x%p\n",
653 pdn->full_name, ppci->iommu_table);
Benjamin Herrenschmidt12d04ee2006-11-11 17:25:02 +1100654
Paul Mackerras16353172005-09-06 13:17:54 +1000655 if (!ppci->iommu_table) {
Anton Blanchard7aa241f2010-08-11 16:42:48 +0000656 tbl = kzalloc_node(sizeof(struct iommu_table), GFP_KERNEL,
Anton Blanchardca1588e2006-06-10 20:58:08 +1000657 ppci->phb->node);
Benjamin Herrenschmidtb8c49de2010-12-09 15:24:01 +1100658 iommu_table_setparms_lpar(ppci->phb, pdn, tbl, dma_window);
Anton Blanchardca1588e2006-06-10 20:58:08 +1000659 ppci->iommu_table = iommu_init_table(tbl, ppci->phb->node);
Michael Ellermanf7ebf352008-04-24 15:13:19 +1000660 pr_debug(" created table: %p\n", ppci->iommu_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662}
663
664
Benjamin Herrenschmidt12d04ee2006-11-11 17:25:02 +1100665static void pci_dma_dev_setup_pSeries(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666{
Benjamin Herrenschmidt12d04ee2006-11-11 17:25:02 +1100667 struct device_node *dn;
Olof Johansson3c2822c2005-09-21 09:55:31 -0700668 struct iommu_table *tbl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
Michael Ellermanf7ebf352008-04-24 15:13:19 +1000670 pr_debug("pci_dma_dev_setup_pSeries: %s\n", pci_name(dev));
Olof Johansson3c2822c2005-09-21 09:55:31 -0700671
Grant Likely58f9b0b2010-04-13 16:12:56 -0700672 dn = dev->dev.of_node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
Olof Johansson3c2822c2005-09-21 09:55:31 -0700674 /* 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.
677 */
678 if (!dev->bus->self) {
Benjamin Herrenschmidt12d04ee2006-11-11 17:25:02 +1100679 struct pci_controller *phb = PCI_DN(dn)->phb;
680
Michael Ellermanf7ebf352008-04-24 15:13:19 +1000681 pr_debug(" --> first child, no bridge. Allocating iommu table.\n");
Anton Blanchard7aa241f2010-08-11 16:42:48 +0000682 tbl = kzalloc_node(sizeof(struct iommu_table), GFP_KERNEL,
Benjamin Herrenschmidt12d04ee2006-11-11 17:25:02 +1100683 phb->node);
684 iommu_table_setparms(phb, dn, tbl);
Linas Vepstas77319252007-01-10 19:16:29 -0600685 PCI_DN(dn)->iommu_table = iommu_init_table(tbl, phb->node);
Becky Bruce738ef422009-09-21 08:26:35 +0000686 set_iommu_table_base(&dev->dev, PCI_DN(dn)->iommu_table);
Olof Johansson3c2822c2005-09-21 09:55:31 -0700687 return;
688 }
689
690 /* If this device is further down the bus tree, search upwards until
691 * an already allocated iommu table is found and use that.
692 */
693
linase07102d2005-12-05 19:37:35 -0600694 while (dn && PCI_DN(dn) && PCI_DN(dn)->iommu_table == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 dn = dn->parent;
696
Benjamin Herrenschmidt12d04ee2006-11-11 17:25:02 +1100697 if (dn && PCI_DN(dn))
Becky Bruce738ef422009-09-21 08:26:35 +0000698 set_iommu_table_base(&dev->dev, PCI_DN(dn)->iommu_table);
Benjamin Herrenschmidt12d04ee2006-11-11 17:25:02 +1100699 else
700 printk(KERN_WARNING "iommu: Device %s has no iommu table\n",
701 pci_name(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702}
703
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000704static int __read_mostly disable_ddw;
705
706static int __init disable_ddw_setup(char *str)
707{
708 disable_ddw = 1;
709 printk(KERN_INFO "ppc iommu: disabling ddw.\n");
710
711 return 0;
712}
713
714early_param("disable_ddw", disable_ddw_setup);
715
Nishanth Aravamudan25ebc452012-05-15 07:04:32 +0000716static inline void __remove_ddw(struct device_node *np, const u32 *ddw_avail, u64 liobn)
717{
718 int ret;
719
720 ret = rtas_call(ddw_avail[2], 1, 1, NULL, liobn);
721 if (ret)
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);
725 else
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);
729}
730
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000731static void remove_ddw(struct device_node *np)
732{
733 struct dynamic_dma_window_prop *dwp;
734 struct property *win64;
Milton Millerb73a6352011-05-11 12:25:00 +0000735 const u32 *ddw_avail;
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000736 u64 liobn;
737 int len, ret;
738
Milton Millerb73a6352011-05-11 12:25:00 +0000739 ddw_avail = of_get_property(np, "ibm,ddw-applicable", &len);
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000740 win64 = of_find_property(np, DIRECT64_PROPNAME, NULL);
Milton Miller2573f682011-05-11 12:24:58 +0000741 if (!win64)
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000742 return;
743
Milton Millerb73a6352011-05-11 12:25:00 +0000744 if (!ddw_avail || len < 3 * sizeof(u32) || win64->length < sizeof(*dwp))
Milton Miller2573f682011-05-11 12:24:58 +0000745 goto delprop;
746
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000747 dwp = win64->value;
748 liobn = (u64)be32_to_cpu(dwp->liobn);
749
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);
753 if (ret)
754 pr_warning("%s failed to clear tces in window.\n",
755 np->full_name);
756 else
757 pr_debug("%s successfully cleared tces in window.\n",
758 np->full_name);
759
Nishanth Aravamudan25ebc452012-05-15 07:04:32 +0000760 __remove_ddw(np, ddw_avail, liobn);
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000761
Milton Miller2573f682011-05-11 12:24:58 +0000762delprop:
Milton Millerc8566782011-05-11 12:24:59 +0000763 ret = prom_remove_property(np, win64);
Milton Miller2573f682011-05-11 12:24:58 +0000764 if (ret)
Milton Millerc8566782011-05-11 12:24:59 +0000765 pr_warning("%s: failed to remove direct window property: %d\n",
Milton Miller2573f682011-05-11 12:24:58 +0000766 np->full_name, ret);
767}
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000768
Milton Millerb73a6352011-05-11 12:25:00 +0000769static u64 find_existing_ddw(struct device_node *pdn)
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000770{
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000771 struct direct_window *window;
772 const struct dynamic_dma_window_prop *direct64;
773 u64 dma_addr = 0;
774
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000775 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;
781 break;
782 }
783 }
784 spin_unlock(&direct_window_list_lock);
785
786 return dma_addr;
787}
788
Milton Millerc8566782011-05-11 12:24:59 +0000789static int find_existing_ddw_windows(void)
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000790{
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000791 int len;
Milton Millerc8566782011-05-11 12:24:59 +0000792 struct device_node *pdn;
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000793 struct direct_window *window;
794 const struct dynamic_dma_window_prop *direct64;
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000795
Milton Millerc8566782011-05-11 12:24:59 +0000796 if (!firmware_has_feature(FW_FEATURE_LPAR))
797 return 0;
798
799 for_each_node_with_property(pdn, DIRECT64_PROPNAME) {
800 direct64 = of_get_property(pdn, DIRECT64_PROPNAME, &len);
801 if (!direct64)
802 continue;
803
804 window = kzalloc(sizeof(*window), GFP_KERNEL);
805 if (!window || len < sizeof(struct dynamic_dma_window_prop)) {
806 kfree(window);
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000807 remove_ddw(pdn);
Milton Millerc8566782011-05-11 12:24:59 +0000808 continue;
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000809 }
Milton Millerc8566782011-05-11 12:24:59 +0000810
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);
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000816 }
817
Milton Millerc8566782011-05-11 12:24:59 +0000818 return 0;
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000819}
Milton Millerc8566782011-05-11 12:24:59 +0000820machine_arch_initcall(pseries, find_existing_ddw_windows);
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000821
Milton Millerb73a6352011-05-11 12:25:00 +0000822static int query_ddw(struct pci_dev *dev, const u32 *ddw_avail,
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000823 struct ddw_query_response *query)
824{
Gavin Shan39baadb2012-03-20 21:30:28 +0000825 struct eeh_dev *edev;
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000826 u32 cfg_addr;
827 u64 buid;
828 int ret;
829
830 /*
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
835 */
Gavin Shan39baadb2012-03-20 21:30:28 +0000836 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;
841
Milton Millerb73a6352011-05-11 12:25:00 +0000842 ret = rtas_call(ddw_avail[0], 3, 5, (u32 *)query,
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000843 cfg_addr, BUID_HI(buid), BUID_LO(buid));
844 dev_info(&dev->dev, "ibm,query-pe-dma-windows(%x) %x %x %x"
Milton Millerb73a6352011-05-11 12:25:00 +0000845 " returned %d\n", ddw_avail[0], cfg_addr, BUID_HI(buid),
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000846 BUID_LO(buid), ret);
847 return ret;
848}
849
Milton Millerb73a6352011-05-11 12:25:00 +0000850static int create_ddw(struct pci_dev *dev, const u32 *ddw_avail,
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000851 struct ddw_create_response *create, int page_shift,
852 int window_shift)
853{
Gavin Shan39baadb2012-03-20 21:30:28 +0000854 struct eeh_dev *edev;
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000855 u32 cfg_addr;
856 u64 buid;
857 int ret;
858
859 /*
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
864 */
Gavin Shan39baadb2012-03-20 21:30:28 +0000865 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;
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000870
871 do {
872 /* extra outputs are LIOBN and dma-addr (hi, lo) */
Milton Millerb73a6352011-05-11 12:25:00 +0000873 ret = rtas_call(ddw_avail[1], 5, 4, (u32 *)create, cfg_addr,
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000874 BUID_HI(buid), BUID_LO(buid), page_shift, window_shift);
875 } while (rtas_busy_delay(ret));
876 dev_info(&dev->dev,
877 "ibm,create-pe-dma-window(%x) %x %x %x %x %x returned %d "
Milton Millerb73a6352011-05-11 12:25:00 +0000878 "(liobn = 0x%x starting addr = %x %x)\n", ddw_avail[1],
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000879 cfg_addr, BUID_HI(buid), BUID_LO(buid), page_shift,
880 window_shift, ret, create->liobn, create->addr_hi, create->addr_lo);
881
882 return ret;
883}
884
Nishanth Aravamudan25ebc452012-05-15 07:04:32 +0000885static void restore_default_window(struct pci_dev *dev,
886 u32 ddw_restore_token, unsigned long liobn)
887{
888 struct eeh_dev *edev;
889 u32 cfg_addr;
890 u64 buid;
891 int ret;
892
893 /*
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
898 */
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;
904
905 do {
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));
909 dev_info(&dev->dev,
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);
912}
913
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000914/*
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.
918 *
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
922 *
923 * returns the dma offset for use by dma_set_mask
924 */
925static u64 enable_ddw(struct pci_dev *dev, struct device_node *pdn)
926{
927 int len, ret;
928 struct ddw_query_response query;
929 struct ddw_create_response create;
930 int page_shift;
931 u64 dma_addr, max_addr;
932 struct device_node *dn;
Milton Millerb73a6352011-05-11 12:25:00 +0000933 const u32 *uninitialized_var(ddw_avail);
Nishanth Aravamudan25ebc452012-05-15 07:04:32 +0000934 const u32 *uninitialized_var(ddw_extensions);
935 u32 ddw_restore_token = 0;
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000936 struct direct_window *window;
Nishanth Aravamudan76730332011-05-06 13:27:30 +0000937 struct property *win64;
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000938 struct dynamic_dma_window_prop *ddwprop;
Nishanth Aravamudan25ebc452012-05-15 07:04:32 +0000939 const void *dma_window = NULL;
940 unsigned long liobn, offset, size;
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000941
942 mutex_lock(&direct_window_init_mutex);
943
Milton Millerb73a6352011-05-11 12:25:00 +0000944 dma_addr = find_existing_ddw(pdn);
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000945 if (dma_addr != 0)
946 goto out_unlock;
947
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000948 /*
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
955 */
Milton Millerb73a6352011-05-11 12:25:00 +0000956 ddw_avail = of_get_property(pdn, "ibm,ddw-applicable", &len);
957 if (!ddw_avail || len < 3 * sizeof(u32))
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000958 goto out_unlock;
959
Nishanth Aravamudan25ebc452012-05-15 07:04:32 +0000960 /*
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
966 */
967 ddw_extensions = of_get_property(pdn, "ibm,ddw-extensions", &len);
968 if (ddw_extensions) {
969 /*
970 * each new defined extension length should be added to
971 * the top of the switch so the "earlier" entries also
972 * get picked up
973 */
974 switch (ddw_extensions[0]) {
975 /* ibm,reset-pe-dma-windows */
976 case 1:
977 ddw_restore_token = ddw_extensions[1];
978 break;
979 }
980 }
981
982 /*
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.
986 */
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);
991 }
992
993 /*
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000994 * 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.
998 */
999 dn = pci_device_to_OF_node(dev);
Milton Millerb73a6352011-05-11 12:25:00 +00001000 ret = query_ddw(dev, ddw_avail, &query);
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +00001001 if (ret != 0)
Nishanth Aravamudan25ebc452012-05-15 07:04:32 +00001002 goto out_restore_window;
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +00001003
1004 if (query.windows_available == 0) {
1005 /*
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.
1009 */
1010 dev_dbg(&dev->dev, "no free dynamic windows");
Nishanth Aravamudan25ebc452012-05-15 07:04:32 +00001011 goto out_restore_window;
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +00001012 }
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 */
1019 } else {
1020 dev_dbg(&dev->dev, "no supported direct page size in mask %x",
1021 query.page_size);
Nishanth Aravamudan25ebc452012-05-15 07:04:32 +00001022 goto out_restore_window;
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +00001023 }
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);
Nishanth Aravamudan25ebc452012-05-15 07:04:32 +00001031 goto out_restore_window;
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +00001032 }
1033 len = order_base_2(max_addr);
1034 win64 = kzalloc(sizeof(struct property), GFP_KERNEL);
1035 if (!win64) {
1036 dev_info(&dev->dev,
1037 "couldn't allocate property for 64bit dma window\n");
Nishanth Aravamudan25ebc452012-05-15 07:04:32 +00001038 goto out_restore_window;
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +00001039 }
1040 win64->name = kstrdup(DIRECT64_PROPNAME, GFP_KERNEL);
1041 win64->value = ddwprop = kmalloc(sizeof(*ddwprop), GFP_KERNEL);
Nishanth Aravamudan76730332011-05-06 13:27:30 +00001042 win64->length = sizeof(*ddwprop);
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +00001043 if (!win64->name || !win64->value) {
1044 dev_info(&dev->dev,
1045 "couldn't allocate property name and value\n");
1046 goto out_free_prop;
1047 }
1048
Milton Millerb73a6352011-05-11 12:25:00 +00001049 ret = create_ddw(dev, ddw_avail, &create, page_shift, len);
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +00001050 if (ret != 0)
1051 goto out_free_prop;
1052
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);
1057
1058 dev_dbg(&dev->dev, "created tce table LIOBN 0x%x for %s\n",
1059 create.liobn, dn->full_name);
1060
1061 window = kzalloc(sizeof(*window), GFP_KERNEL);
1062 if (!window)
1063 goto out_clear_window;
1064
1065 ret = walk_system_ram_range(0, memblock_end_of_DRAM() >> PAGE_SHIFT,
1066 win64->value, tce_setrange_multi_pSeriesLP_walk);
1067 if (ret) {
1068 dev_info(&dev->dev, "failed to map direct window for %s: %d\n",
1069 dn->full_name, ret);
Julia Lawall7a190812011-08-08 01:18:00 +00001070 goto out_free_window;
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +00001071 }
1072
1073 ret = prom_add_property(pdn, win64);
1074 if (ret) {
1075 dev_err(&dev->dev, "unable to add dma window property for %s: %d",
1076 pdn->full_name, ret);
Julia Lawall7a190812011-08-08 01:18:00 +00001077 goto out_free_window;
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +00001078 }
1079
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);
1085
1086 dma_addr = of_read_number(&create.addr_hi, 2);
1087 goto out_unlock;
1088
Julia Lawall7a190812011-08-08 01:18:00 +00001089out_free_window:
1090 kfree(window);
1091
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +00001092out_clear_window:
1093 remove_ddw(pdn);
1094
1095out_free_prop:
1096 kfree(win64->name);
1097 kfree(win64->value);
1098 kfree(win64);
1099
Nishanth Aravamudan25ebc452012-05-15 07:04:32 +00001100out_restore_window:
1101 if (ddw_restore_token)
1102 restore_default_window(dev, ddw_restore_token, liobn);
1103
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +00001104out_unlock:
1105 mutex_unlock(&direct_window_init_mutex);
1106 return dma_addr;
1107}
1108
Benjamin Herrenschmidt12d04ee2006-11-11 17:25:02 +11001109static void pci_dma_dev_setup_pSeriesLP(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110{
1111 struct device_node *pdn, *dn;
1112 struct iommu_table *tbl;
Jeremy Kerr954a46e2006-07-12 15:39:43 +10001113 const void *dma_window = NULL;
Paul Mackerras16353172005-09-06 13:17:54 +10001114 struct pci_dn *pci;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115
Michael Ellermanf7ebf352008-04-24 15:13:19 +10001116 pr_debug("pci_dma_dev_setup_pSeriesLP: %s\n", pci_name(dev));
Benjamin Herrenschmidt12d04ee2006-11-11 17:25:02 +11001117
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 /* dev setup for LPAR is a little tricky, since the device tree might
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001119 * contain the dma-window properties per-device and not necessarily
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 * 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.
1123 */
1124 dn = pci_device_to_OF_node(dev);
Michael Ellermanf7ebf352008-04-24 15:13:19 +10001125 pr_debug(" node is %s\n", dn->full_name);
Linas Vepstas5d2efba2006-10-30 16:15:59 +11001126
linase07102d2005-12-05 19:37:35 -06001127 for (pdn = dn; pdn && PCI_DN(pdn) && !PCI_DN(pdn)->iommu_table;
Paul Mackerras16353172005-09-06 13:17:54 +10001128 pdn = pdn->parent) {
Stephen Rothwelle2eb6392007-04-03 22:26:41 +10001129 dma_window = of_get_property(pdn, "ibm,dma-window", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 if (dma_window)
1131 break;
1132 }
1133
Linas Vepstas650f7b32007-04-11 06:11:23 +10001134 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",
Grant Likely74a7f082012-06-15 11:50:25 -06001137 pci_name(dev), of_node_full_name(dn));
Linas Vepstas650f7b32007-04-11 06:11:23 +10001138 return;
1139 }
Michael Ellermanf7ebf352008-04-24 15:13:19 +10001140 pr_debug(" parent is %s\n", pdn->full_name);
Benjamin Herrenschmidt12d04ee2006-11-11 17:25:02 +11001141
linase07102d2005-12-05 19:37:35 -06001142 pci = PCI_DN(pdn);
Paul Mackerras16353172005-09-06 13:17:54 +10001143 if (!pci->iommu_table) {
Anton Blanchard7aa241f2010-08-11 16:42:48 +00001144 tbl = kzalloc_node(sizeof(struct iommu_table), GFP_KERNEL,
Anton Blanchardca1588e2006-06-10 20:58:08 +10001145 pci->phb->node);
Benjamin Herrenschmidtb8c49de2010-12-09 15:24:01 +11001146 iommu_table_setparms_lpar(pci->phb, pdn, tbl, dma_window);
Anton Blanchardca1588e2006-06-10 20:58:08 +10001147 pci->iommu_table = iommu_init_table(tbl, pci->phb->node);
Michael Ellermanf7ebf352008-04-24 15:13:19 +10001148 pr_debug(" created table: %p\n", pci->iommu_table);
Michael Neulingde113212007-05-10 15:16:27 +10001149 } else {
Michael Ellermanf7ebf352008-04-24 15:13:19 +10001150 pr_debug(" found DMA window, table: %p\n", pci->iommu_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 }
1152
Becky Bruce738ef422009-09-21 08:26:35 +00001153 set_iommu_table_base(&dev->dev, pci->iommu_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154}
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +00001155
1156static int dma_set_mask_pSeriesLP(struct device *dev, u64 dma_mask)
1157{
1158 bool ddw_enabled = false;
1159 struct device_node *pdn, *dn;
1160 struct pci_dev *pdev;
1161 const void *dma_window = NULL;
1162 u64 dma_offset;
1163
Milton Miller64ac8222011-05-11 12:24:57 +00001164 if (!dev->dma_mask)
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +00001165 return -EIO;
1166
Milton Miller64ac8222011-05-11 12:24:57 +00001167 if (!dev_is_pci(dev))
1168 goto check_mask;
1169
Nishanth Aravamudaneb0dd412011-05-09 12:58:03 +00001170 pdev = to_pci_dev(dev);
1171
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +00001172 /* only attempt to use a new window if 64-bit DMA is requested */
1173 if (!disable_ddw && dma_mask == DMA_BIT_MASK(64)) {
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +00001174 dn = pci_device_to_OF_node(pdev);
1175 dev_dbg(dev, "node is %s\n", dn->full_name);
1176
1177 /*
1178 * the device tree might contain the dma-window properties
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001179 * per-device and not necessarily for the bus. So we need to
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +00001180 * search upwards in the tree until we either hit a dma-window
1181 * property, OR find a parent with a table already allocated.
1182 */
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);
1186 if (dma_window)
1187 break;
1188 }
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);
1195 ddw_enabled = true;
1196 }
1197 }
1198 }
1199
Milton Miller64ac8222011-05-11 12:24:57 +00001200 /* 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");
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +00001203 set_dma_ops(dev, &dma_iommu_ops);
Nishanth Aravamudaneb0dd412011-05-09 12:58:03 +00001204 pci_dma_dev_setup_pSeriesLP(pdev);
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +00001205 }
1206
Milton Miller64ac8222011-05-11 12:24:57 +00001207check_mask:
1208 if (!dma_supported(dev, dma_mask))
1209 return -EIO;
1210
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +00001211 *dev->dma_mask = dma_mask;
1212 return 0;
1213}
1214
Milton Miller6a5c7be2011-06-24 09:05:22 +00001215static u64 dma_get_required_mask_pSeriesLP(struct device *dev)
1216{
1217 if (!dev->dma_mask)
1218 return 0;
1219
1220 if (!disable_ddw && dev_is_pci(dev)) {
1221 struct pci_dev *pdev = to_pci_dev(dev);
1222 struct device_node *dn;
1223
1224 dn = pci_device_to_OF_node(pdev);
1225
1226 /* search upwards for ibm,dma-window */
1227 for (; dn && PCI_DN(dn) && !PCI_DN(dn)->iommu_table;
1228 dn = dn->parent)
1229 if (of_get_property(dn, "ibm,dma-window", NULL))
1230 break;
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);
1235 }
1236
Milton Millerd24f9c62011-06-24 09:05:24 +00001237 return dma_iommu_ops.get_required_mask(dev);
Milton Miller6a5c7be2011-06-24 09:05:22 +00001238}
1239
Stephen Rothwellbed59272007-03-04 17:04:44 +11001240#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
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +00001245#define dma_set_mask_pSeriesLP NULL
Milton Miller6a5c7be2011-06-24 09:05:22 +00001246#define dma_get_required_mask_pSeriesLP NULL
Stephen Rothwellbed59272007-03-04 17:04:44 +11001247#endif /* !CONFIG_PCI */
1248
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +00001249static int iommu_mem_notifier(struct notifier_block *nb, unsigned long action,
1250 void *data)
1251{
1252 struct direct_window *window;
1253 struct memory_notify *arg = data;
1254 int ret = 0;
1255
1256 switch (action) {
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);
1262 /* XXX log error */
1263 }
1264 spin_unlock(&direct_window_list_lock);
1265 break;
1266 case MEM_CANCEL_ONLINE:
1267 case MEM_OFFLINE:
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);
1272 /* XXX log error */
1273 }
1274 spin_unlock(&direct_window_list_lock);
1275 break;
1276 default:
1277 break;
1278 }
1279 if (ret && action != MEM_CANCEL_ONLINE)
1280 return NOTIFY_BAD;
1281
1282 return NOTIFY_OK;
1283}
1284
1285static struct notifier_block iommu_mem_nb = {
1286 .notifier_call = iommu_mem_notifier,
1287};
1288
Stephen Rothwellbed59272007-03-04 17:04:44 +11001289static int iommu_reconfig_notifier(struct notifier_block *nb, unsigned long action, void *node)
1290{
1291 int err = NOTIFY_OK;
1292 struct device_node *np = node;
1293 struct pci_dn *pci = PCI_DN(np);
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +00001294 struct direct_window *window;
Stephen Rothwellbed59272007-03-04 17:04:44 +11001295
1296 switch (action) {
1297 case PSERIES_RECONFIG_REMOVE:
Nishanth Aravamudan7372cfb2010-10-26 17:35:13 +00001298 if (pci && pci->iommu_table)
Stephen Rothwell68d315f2007-12-06 13:39:19 +11001299 iommu_free_table(pci->iommu_table, np->full_name);
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +00001300
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);
1305 kfree(window);
1306 break;
1307 }
1308 }
1309 spin_unlock(&direct_window_list_lock);
1310
1311 /*
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.
1319 */
Stephen Rothwellbed59272007-03-04 17:04:44 +11001320 break;
1321 default:
1322 err = NOTIFY_DONE;
1323 break;
1324 }
1325 return err;
1326}
1327
1328static struct notifier_block iommu_reconfig_nb = {
1329 .notifier_call = iommu_reconfig_notifier,
1330};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332/* These are called very early. */
1333void iommu_init_early_pSeries(void)
1334{
Nishanth Aravamudana8daac82010-10-18 07:27:03 +00001335 if (of_chosen && of_get_property(of_chosen, "linux,iommu-off", NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337
Michael Ellerman57cfb812006-03-21 20:45:59 +11001338 if (firmware_has_feature(FW_FEATURE_LPAR)) {
Stephen Rothwell1ababe12005-08-03 14:35:25 +10001339 if (firmware_has_feature(FW_FEATURE_MULTITCE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 ppc_md.tce_build = tce_buildmulti_pSeriesLP;
1341 ppc_md.tce_free = tce_freemulti_pSeriesLP;
1342 } else {
1343 ppc_md.tce_build = tce_build_pSeriesLP;
1344 ppc_md.tce_free = tce_free_pSeriesLP;
1345 }
Haren Myneni5f508672006-06-22 23:35:10 -07001346 ppc_md.tce_get = tce_get_pSeriesLP;
Benjamin Herrenschmidt12d04ee2006-11-11 17:25:02 +11001347 ppc_md.pci_dma_bus_setup = pci_dma_bus_setup_pSeriesLP;
1348 ppc_md.pci_dma_dev_setup = pci_dma_dev_setup_pSeriesLP;
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +00001349 ppc_md.dma_set_mask = dma_set_mask_pSeriesLP;
Milton Miller6a5c7be2011-06-24 09:05:22 +00001350 ppc_md.dma_get_required_mask = dma_get_required_mask_pSeriesLP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 } else {
1352 ppc_md.tce_build = tce_build_pSeries;
1353 ppc_md.tce_free = tce_free_pSeries;
Haren Myneni5f508672006-06-22 23:35:10 -07001354 ppc_md.tce_get = tce_get_pseries;
Benjamin Herrenschmidt12d04ee2006-11-11 17:25:02 +11001355 ppc_md.pci_dma_bus_setup = pci_dma_bus_setup_pSeries;
1356 ppc_md.pci_dma_dev_setup = pci_dma_dev_setup_pSeries;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 }
1358
1359
1360 pSeries_reconfig_notifier_register(&iommu_reconfig_nb);
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +00001361 register_memory_notifier(&iommu_mem_nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362
Stephen Rothwell98747772007-03-04 16:58:39 +11001363 set_pci_dma_ops(&dma_iommu_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364}
1365
Will Schmidt4e89a2d2010-09-28 15:33:12 +00001366static int __init disable_multitce(char *str)
1367{
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;
1375 }
1376 return 1;
1377}
1378
1379__setup("multitce=", disable_multitce);