blob: bb2e16c5ae27959b6269ecc901f2889ff93ed0f8 [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>
Nathan Fontenot1cf3d8b2012-10-02 16:57:57 +000039#include <linux/of.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <asm/io.h>
41#include <asm/prom.h>
42#include <asm/rtas.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <asm/iommu.h>
44#include <asm/pci-bridge.h>
45#include <asm/machdep.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>
Deepthi Dharwar212bebb2013-08-22 15:23:52 +053051#include <asm/plpar_wrappers.h>
Michael Ellermana1218722005-11-03 15:33:31 +110052
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Milton Miller8d3d5892011-06-29 20:58:33 +000054static void tce_invalidate_pSeries_sw(struct iommu_table *tbl,
Anton Blancharddf015602013-10-17 23:21:15 +110055 __be64 *startp, __be64 *endp)
Milton Miller8d3d5892011-06-29 20:58:33 +000056{
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
Robert Jennings6490c492008-07-24 04:31:16 +100083static int tce_build_pSeries(struct iommu_table *tbl, long index,
Olof Johanssonbc97ce92006-04-28 22:51:59 -050084 long npages, unsigned long uaddr,
Mark Nelson4f3dd8a2008-07-16 05:51:47 +100085 enum dma_data_direction direction,
86 struct dma_attrs *attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -070087{
Olof Johanssonbc97ce92006-04-28 22:51:59 -050088 u64 proto_tce;
Anton Blancharddf015602013-10-17 23:21:15 +110089 __be64 *tcep, *tces;
Olof Johanssonbc97ce92006-04-28 22:51:59 -050090 u64 rpn;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
Olof Johanssonbc97ce92006-04-28 22:51:59 -050092 proto_tce = TCE_PCI_READ; // Read allowed
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
94 if (direction != DMA_TO_DEVICE)
Olof Johanssonbc97ce92006-04-28 22:51:59 -050095 proto_tce |= TCE_PCI_WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Anton Blancharddf015602013-10-17 23:21:15 +110097 tces = tcep = ((__be64 *)tbl->it_base) + index;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
99 while (npages--) {
Yinghai Lu95f72d12010-07-12 14:36:09 +1000100 /* can't move this out since we might cross MEMBLOCK boundary */
Michael Ellerman474e3d52012-07-25 21:19:57 +0000101 rpn = __pa(uaddr) >> TCE_SHIFT;
Anton Blancharddf015602013-10-17 23:21:15 +1100102 *tcep = cpu_to_be64(proto_tce | (rpn & TCE_RPN_MASK) << TCE_RPN_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
Olof Johanssond0035c622005-09-20 13:46:44 +1000104 uaddr += TCE_PAGE_SIZE;
Olof Johanssonbc97ce92006-04-28 22:51:59 -0500105 tcep++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 }
Milton Miller8d3d5892011-06-29 20:58:33 +0000107
Michael Neulingbc6dc752012-06-26 21:26:37 +0000108 if (tbl->it_type & TCE_PCI_SWINV_CREATE)
Milton Miller8d3d5892011-06-29 20:58:33 +0000109 tce_invalidate_pSeries_sw(tbl, tces, tcep - 1);
Robert Jennings6490c492008-07-24 04:31:16 +1000110 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111}
112
113
114static void tce_free_pSeries(struct iommu_table *tbl, long index, long npages)
115{
Anton Blancharddf015602013-10-17 23:21:15 +1100116 __be64 *tcep, *tces;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
Anton Blancharddf015602013-10-17 23:21:15 +1100118 tces = tcep = ((__be64 *)tbl->it_base) + index;
Olof Johanssonbc97ce92006-04-28 22:51:59 -0500119
120 while (npages--)
121 *(tcep++) = 0;
Milton Miller8d3d5892011-06-29 20:58:33 +0000122
Michael Neulingbc6dc752012-06-26 21:26:37 +0000123 if (tbl->it_type & TCE_PCI_SWINV_FREE)
Milton Miller8d3d5892011-06-29 20:58:33 +0000124 tce_invalidate_pSeries_sw(tbl, tces, tcep - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125}
126
Haren Myneni5f508672006-06-22 23:35:10 -0700127static unsigned long tce_get_pseries(struct iommu_table *tbl, long index)
128{
Anton Blancharddf015602013-10-17 23:21:15 +1100129 __be64 *tcep;
Haren Myneni5f508672006-06-22 23:35:10 -0700130
Anton Blancharddf015602013-10-17 23:21:15 +1100131 tcep = ((__be64 *)tbl->it_base) + index;
Haren Myneni5f508672006-06-22 23:35:10 -0700132
Anton Blancharddf015602013-10-17 23:21:15 +1100133 return be64_to_cpu(*tcep);
Haren Myneni5f508672006-06-22 23:35:10 -0700134}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
Robert Jennings6490c492008-07-24 04:31:16 +1000136static 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,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 long npages, unsigned long uaddr,
Mark Nelson4f3dd8a2008-07-16 05:51:47 +1000141 enum dma_data_direction direction,
142 struct dma_attrs *attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143{
Robert Jennings6490c492008-07-24 04:31:16 +1000144 u64 rc = 0;
Olof Johanssonbc97ce92006-04-28 22:51:59 -0500145 u64 proto_tce, tce;
146 u64 rpn;
Robert Jennings6490c492008-07-24 04:31:16 +1000147 int ret = 0;
148 long tcenum_start = tcenum, npages_start = npages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
Michael Ellerman474e3d52012-07-25 21:19:57 +0000150 rpn = __pa(uaddr) >> TCE_SHIFT;
Olof Johanssonbc97ce92006-04-28 22:51:59 -0500151 proto_tce = TCE_PCI_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 if (direction != DMA_TO_DEVICE)
Olof Johanssonbc97ce92006-04-28 22:51:59 -0500153 proto_tce |= TCE_PCI_WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
155 while (npages--) {
Olof Johanssonbc97ce92006-04-28 22:51:59 -0500156 tce = proto_tce | (rpn & TCE_RPN_MASK) << TCE_RPN_SHIFT;
157 rc = plpar_tce_put((u64)tbl->it_index, (u64)tcenum << 12, tce);
158
Robert Jennings6490c492008-07-24 04:31:16 +1000159 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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 if (rc && printk_ratelimit()) {
Ingo Molnarfe333322009-01-06 14:26:03 +0000167 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 );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 show_stack(current, (unsigned long *)__get_SP());
172 }
Olof Johanssonbc97ce92006-04-28 22:51:59 -0500173
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 tcenum++;
Olof Johanssonbc97ce92006-04-28 22:51:59 -0500175 rpn++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 }
Robert Jennings6490c492008-07-24 04:31:16 +1000177 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178}
179
Anton Blancharddf015602013-10-17 23:21:15 +1100180static DEFINE_PER_CPU(__be64 *, tce_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
Robert Jennings6490c492008-07-24 04:31:16 +1000182static int tce_buildmulti_pSeriesLP(struct iommu_table *tbl, long tcenum,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 long npages, unsigned long uaddr,
Mark Nelson4f3dd8a2008-07-16 05:51:47 +1000184 enum dma_data_direction direction,
185 struct dma_attrs *attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186{
Robert Jennings6490c492008-07-24 04:31:16 +1000187 u64 rc = 0;
Olof Johanssonbc97ce92006-04-28 22:51:59 -0500188 u64 proto_tce;
Anton Blancharddf015602013-10-17 23:21:15 +1100189 __be64 *tcep;
Olof Johanssonbc97ce92006-04-28 22:51:59 -0500190 u64 rpn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 long l, limit;
Robert Jennings6490c492008-07-24 04:31:16 +1000192 long tcenum_start = tcenum, npages_start = npages;
193 int ret = 0;
Anton Blanchardc1703e82012-06-03 19:42:13 +0000194 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
Michael Ellerman541b2752008-05-08 14:27:23 +1000196 if (npages == 1) {
Robert Jennings6490c492008-07-24 04:31:16 +1000197 return tce_build_pSeriesLP(tbl, tcenum, npages, uaddr,
198 direction, attrs);
Michael Ellerman541b2752008-05-08 14:27:23 +1000199 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
Anton Blanchardc1703e82012-06-03 19:42:13 +0000201 local_irq_save(flags); /* to protect tcep and the page behind it */
202
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 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) {
Anton Blancharddf015602013-10-17 23:21:15 +1100209 tcep = (__be64 *)__get_free_page(GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 /* If allocation fails, fall back to the loop implementation */
Michael Ellerman541b2752008-05-08 14:27:23 +1000211 if (!tcep) {
Anton Blanchardc1703e82012-06-03 19:42:13 +0000212 local_irq_restore(flags);
Robert Jennings6490c492008-07-24 04:31:16 +1000213 return tce_build_pSeriesLP(tbl, tcenum, npages, uaddr,
Mark Nelson4f3dd8a2008-07-16 05:51:47 +1000214 direction, attrs);
Michael Ellerman541b2752008-05-08 14:27:23 +1000215 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 __get_cpu_var(tce_page) = tcep;
217 }
218
Michael Ellerman474e3d52012-07-25 21:19:57 +0000219 rpn = __pa(uaddr) >> TCE_SHIFT;
Olof Johanssonbc97ce92006-04-28 22:51:59 -0500220 proto_tce = TCE_PCI_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 if (direction != DMA_TO_DEVICE)
Olof Johanssonbc97ce92006-04-28 22:51:59 -0500222 proto_tce |= TCE_PCI_WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
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 */
Olof Johanssonbc97ce92006-04-28 22:51:59 -0500230 limit = min_t(long, npages, 4096/TCE_ENTRY_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
232 for (l = 0; l < limit; l++) {
Anton Blancharddf015602013-10-17 23:21:15 +1100233 tcep[l] = cpu_to_be64(proto_tce | (rpn & TCE_RPN_MASK) << TCE_RPN_SHIFT);
Olof Johanssonbc97ce92006-04-28 22:51:59 -0500234 rpn++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 }
236
237 rc = plpar_tce_put_indirect((u64)tbl->it_index,
238 (u64)tcenum << 12,
Michael Ellerman474e3d52012-07-25 21:19:57 +0000239 (u64)__pa(tcep),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 limit);
241
242 npages -= limit;
243 tcenum += limit;
244 } while (npages > 0 && !rc);
245
Anton Blanchardc1703e82012-06-03 19:42:13 +0000246 local_irq_restore(flags);
247
Robert Jennings6490c492008-07-24 04:31:16 +1000248 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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 if (rc && printk_ratelimit()) {
Ingo Molnarfe333322009-01-06 14:26:03 +0000256 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]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 show_stack(current, (unsigned long *)__get_SP());
261 }
Robert Jennings6490c492008-07-24 04:31:16 +1000262 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263}
264
265static void tce_free_pSeriesLP(struct iommu_table *tbl, long tcenum, long npages)
266{
267 u64 rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 while (npages--) {
Olof Johanssonbc97ce92006-04-28 22:51:59 -0500270 rc = plpar_tce_put((u64)tbl->it_index, (u64)tcenum << 12, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
272 if (rc && printk_ratelimit()) {
Ingo Molnarfe333322009-01-06 14:26:03 +0000273 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
Olof Johanssonbc97ce92006-04-28 22:51:59 -0500288 rc = plpar_tce_stuff((u64)tbl->it_index, (u64)tcenum << 12, 0, npages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
290 if (rc && printk_ratelimit()) {
291 printk("tce_freemulti_pSeriesLP: plpar_tce_stuff failed\n");
Ingo Molnarfe333322009-01-06 14:26:03 +0000292 printk("\trc = %lld\n", rc);
293 printk("\tindex = 0x%llx\n", (u64)tbl->it_index);
294 printk("\tnpages = 0x%llx\n", (u64)npages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 show_stack(current, (unsigned long *)__get_SP());
296 }
297}
298
Haren Myneni5f508672006-06-22 23:35:10 -0700299static unsigned long tce_get_pSeriesLP(struct iommu_table *tbl, long tcenum)
300{
301 u64 rc;
302 unsigned long tce_ret;
303
Haren Myneni5f508672006-06-22 23:35:10 -0700304 rc = plpar_tce_get((u64)tbl->it_index, (u64)tcenum << 12, &tce_ret);
305
306 if (rc && printk_ratelimit()) {
Ingo Molnarfe333322009-01-06 14:26:03 +0000307 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);
Haren Myneni5f508672006-06-22 23:35:10 -0700310 show_stack(current, (unsigned long *)__get_SP());
311 }
312
313 return tce_ret;
314}
315
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300316/* this is compatible with cells for the device tree property */
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000317struct 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 {
Anton Blancharddf015602013-10-17 23:21:15 +1100332 __be32 windows_available;
333 __be32 largest_available_block;
334 __be32 page_size;
335 __be32 migration_capable;
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000336};
337
338struct ddw_create_response {
Anton Blancharddf015602013-10-17 23:21:15 +1100339 __be32 liobn;
340 __be32 addr_hi;
341 __be32 addr_lo;
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000342};
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);
Nishanth Aravamudan22b38292013-01-18 09:16:24 +0000384 next += limit * tce_size;
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000385 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;
Anton Blancharddf015602013-10-17 23:21:15 +1100395 u64 tce_size, num_tce, dma_offset, next, proto_tce, liobn;
396 __be64 *tcep;
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000397 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) {
Anton Blancharddf015602013-10-17 23:21:15 +1100405 tcep = (__be64 *)__get_free_page(GFP_ATOMIC);
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000406 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++) {
Anton Blancharddf015602013-10-17 23:21:15 +1100439 tcep[l] = cpu_to_be64(proto_tce | next);
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000440 next += tce_size;
441 }
442
443 rc = plpar_tce_put_indirect(liobn,
444 dma_offset,
Michael Ellerman474e3d52012-07-25 21:19:57 +0000445 (u64)__pa(tcep),
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000446 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
Stephen Rothwellbed59272007-03-04 17:04:44 +1100464#ifdef CONFIG_PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465static void iommu_table_setparms(struct pci_controller *phb,
466 struct device_node *dn,
Olof Johanssonbc97ce92006-04-28 22:51:59 -0500467 struct iommu_table *tbl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468{
469 struct device_node *node;
Milton Miller8d3d5892011-06-29 20:58:33 +0000470 const unsigned long *basep, *sw_inval;
Nathan Lynch9938c472006-10-04 22:28:00 -0500471 const u32 *sizep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
Stephen Rothwell44ef3392007-12-10 14:33:21 +1100473 node = phb->dn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000475 basep = of_get_property(node, "linux,tce-base", NULL);
476 sizep = of_get_property(node, "linux,tce-size", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 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);
Haren Myneni5f508672006-06-22 23:35:10 -0700484
Milton Miller62a8bd62008-10-22 15:39:04 -0500485 if (!is_kdump_kernel())
Mohan Kumar M54622f12008-10-21 17:38:10 +0000486 memset((void *)tbl->it_base, 0, *sizep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
488 tbl->it_busno = phb->bus->number;
Alistair Popple3a553172013-12-09 18:17:02 +1100489 tbl->it_page_shift = IOMMU_PAGE_SHIFT_4K;
Olof Johanssonbc97ce92006-04-28 22:51:59 -0500490
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 /* Units of tce entries */
Alistair Popple3a553172013-12-09 18:17:02 +1100492 tbl->it_offset = phb->dma_window_base_cur >> tbl->it_page_shift;
Olof Johanssonbc97ce92006-04-28 22:51:59 -0500493
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 /* Test if we are going over 2GB of DMA space */
Olof Johansson3c2822c2005-09-21 09:55:31 -0700495 if (phb->dma_window_base_cur + phb->dma_window_size > 0x80000000ul) {
496 udbg_printf("PCI_DMA: Unexpected number of IOAs under this PHB.\n");
Olof Johanssonbc97ce92006-04-28 22:51:59 -0500497 panic("PCI_DMA: Unexpected number of IOAs under this PHB.\n");
Olof Johansson3c2822c2005-09-21 09:55:31 -0700498 }
Olof Johanssonbc97ce92006-04-28 22:51:59 -0500499
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 phb->dma_window_base_cur += phb->dma_window_size;
501
502 /* Set the tce table size - measured in entries */
Alistair Popple3a553172013-12-09 18:17:02 +1100503 tbl->it_size = phb->dma_window_size >> tbl->it_page_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
505 tbl->it_index = 0;
506 tbl->it_blocksize = 16;
507 tbl->it_type = TCE_PCI;
Milton Miller8d3d5892011-06-29 20:58:33 +0000508
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 */
Benjamin Herrenschmidt1f1616e2011-11-06 18:55:59 +0000522 tbl->it_type = TCE_PCI_SWINV_CREATE | TCE_PCI_SWINV_FREE;
Milton Miller8d3d5892011-06-29 20:58:33 +0000523 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524}
525
526/*
527 * iommu_table_setparms_lpar
528 *
529 * Function: On pSeries LPAR systems, return TCE table info, given a pci bus.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 */
531static void iommu_table_setparms_lpar(struct pci_controller *phb,
532 struct device_node *dn,
533 struct iommu_table *tbl,
Anton Blanchard2083f682013-08-07 02:01:36 +1000534 const __be32 *dma_window)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535{
Jeremy Kerr4c76e0b2006-05-18 18:06:37 +1000536 unsigned long offset, size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
Jeremy Kerr4c76e0b2006-05-18 18:06:37 +1000538 of_parse_dma_window(dn, dma_window, &tbl->it_index, &offset, &size);
539
Benjamin Herrenschmidtb8c49de2010-12-09 15:24:01 +1100540 tbl->it_busno = phb->bus->number;
Alistair Popple3a553172013-12-09 18:17:02 +1100541 tbl->it_page_shift = IOMMU_PAGE_SHIFT_4K;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 tbl->it_base = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 tbl->it_blocksize = 16;
544 tbl->it_type = TCE_PCI;
Alistair Popple3a553172013-12-09 18:17:02 +1100545 tbl->it_offset = offset >> tbl->it_page_shift;
546 tbl->it_size = size >> tbl->it_page_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547}
548
Benjamin Herrenschmidt12d04ee2006-11-11 17:25:02 +1100549static void pci_dma_bus_setup_pSeries(struct pci_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550{
Olof Johansson3c2822c2005-09-21 09:55:31 -0700551 struct device_node *dn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 struct iommu_table *tbl;
Olof Johansson3c2822c2005-09-21 09:55:31 -0700553 struct device_node *isa_dn, *isa_dn_orig;
554 struct device_node *tmp;
555 struct pci_dn *pci;
556 int children;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
Olof Johansson3c2822c2005-09-21 09:55:31 -0700558 dn = pci_bus_to_OF_node(bus);
Benjamin Herrenschmidt12d04ee2006-11-11 17:25:02 +1100559
Michael Ellermanf7ebf352008-04-24 15:13:19 +1000560 pr_debug("pci_dma_bus_setup_pSeries: setting up bus %s\n", dn->full_name);
Olof Johansson3c2822c2005-09-21 09:55:31 -0700561
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 }
Benjamin Herrenschmidt12d04ee2006-11-11 17:25:02 +1100568 pci = PCI_DN(dn);
Olof Johansson3c2822c2005-09-21 09:55:31 -0700569
570 /* Check if the ISA bus on the system is under
571 * this PHB.
572 */
573 isa_dn = isa_dn_orig = of_find_node_by_type(NULL, "isa");
574
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);
580
Anton Blanchardd3c58fb2006-06-20 18:00:30 +1000581 /* Count number of direct PCI children of the PHB. */
Olof Johansson3c2822c2005-09-21 09:55:31 -0700582 for (children = 0, tmp = dn->child; tmp; tmp = tmp->sibling)
Anton Blanchardd3c58fb2006-06-20 18:00:30 +1000583 children++;
Olof Johansson3c2822c2005-09-21 09:55:31 -0700584
Michael Ellermanf7ebf352008-04-24 15:13:19 +1000585 pr_debug("Children: %d\n", children);
Olof Johansson3c2822c2005-09-21 09:55:31 -0700586
587 /* Calculate amount of DMA window per slot. Each window must be
588 * a power of two (due to pci_alloc_consistent requirements).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 *
Olof Johansson3c2822c2005-09-21 09:55:31 -0700590 * Keep 256MB aside for PHBs with ISA.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 */
592
Olof Johansson3c2822c2005-09-21 09:55:31 -0700593 if (!isa_dn) {
594 /* No ISA/IDE - just set window size and return */
595 pci->phb->dma_window_size = 0x80000000ul; /* To be divided */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596
Olof Johansson3c2822c2005-09-21 09:55:31 -0700597 while (pci->phb->dma_window_size * children > 0x80000000ul)
598 pci->phb->dma_window_size >>= 1;
Stephen Rothwell41febbc2009-06-02 18:21:30 +0000599 pr_debug("No ISA/IDE, window size is 0x%llx\n",
Michael Ellermanf7ebf352008-04-24 15:13:19 +1000600 pci->phb->dma_window_size);
Olof Johansson3c2822c2005-09-21 09:55:31 -0700601 pci->phb->dma_window_base_cur = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
Olof Johansson3c2822c2005-09-21 09:55:31 -0700603 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 }
Olof Johansson3c2822c2005-09-21 09:55:31 -0700605
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
Anton Blanchard7aa241f2010-08-11 16:42:48 +0000614 tbl = kzalloc_node(sizeof(struct iommu_table), GFP_KERNEL,
Anton Blanchardca1588e2006-06-10 20:58:08 +1000615 pci->phb->node);
Olof Johansson3c2822c2005-09-21 09:55:31 -0700616
617 iommu_table_setparms(pci->phb, dn, tbl);
Anton Blanchardca1588e2006-06-10 20:58:08 +1000618 pci->iommu_table = iommu_init_table(tbl, pci->phb->node);
Alexey Kardashevskiy5b251992013-05-21 13:33:11 +1000619 iommu_register_group(tbl, pci_domain_nr(bus), 0);
Olof Johansson3c2822c2005-09-21 09:55:31 -0700620
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
Stephen Rothwell41febbc2009-06-02 18:21:30 +0000626 pr_debug("ISA/IDE, window size is 0x%llx\n", pci->phb->dma_window_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627}
628
629
Benjamin Herrenschmidt12d04ee2006-11-11 17:25:02 +1100630static void pci_dma_bus_setup_pSeriesLP(struct pci_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631{
632 struct iommu_table *tbl;
633 struct device_node *dn, *pdn;
Paul Mackerras16353172005-09-06 13:17:54 +1000634 struct pci_dn *ppci;
Anton Blanchard2083f682013-08-07 02:01:36 +1000635 const __be32 *dma_window = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 dn = pci_bus_to_OF_node(bus);
638
Michael Ellermanf7ebf352008-04-24 15:13:19 +1000639 pr_debug("pci_dma_bus_setup_pSeriesLP: setting up bus %s\n",
640 dn->full_name);
Benjamin Herrenschmidt12d04ee2006-11-11 17:25:02 +1100641
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 /* Find nearest ibm,dma-window, walking up the device tree */
643 for (pdn = dn; pdn != NULL; pdn = pdn->parent) {
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000644 dma_window = of_get_property(pdn, "ibm,dma-window", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 if (dma_window != NULL)
646 break;
647 }
648
649 if (dma_window == NULL) {
Michael Ellermanf7ebf352008-04-24 15:13:19 +1000650 pr_debug(" no ibm,dma-window property !\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 return;
652 }
653
linase07102d2005-12-05 19:37:35 -0600654 ppci = PCI_DN(pdn);
Benjamin Herrenschmidt12d04ee2006-11-11 17:25:02 +1100655
Michael Ellermanf7ebf352008-04-24 15:13:19 +1000656 pr_debug(" parent is %s, iommu_table: 0x%p\n",
657 pdn->full_name, ppci->iommu_table);
Benjamin Herrenschmidt12d04ee2006-11-11 17:25:02 +1100658
Paul Mackerras16353172005-09-06 13:17:54 +1000659 if (!ppci->iommu_table) {
Anton Blanchard7aa241f2010-08-11 16:42:48 +0000660 tbl = kzalloc_node(sizeof(struct iommu_table), GFP_KERNEL,
Anton Blanchardca1588e2006-06-10 20:58:08 +1000661 ppci->phb->node);
Benjamin Herrenschmidtb8c49de2010-12-09 15:24:01 +1100662 iommu_table_setparms_lpar(ppci->phb, pdn, tbl, dma_window);
Anton Blanchardca1588e2006-06-10 20:58:08 +1000663 ppci->iommu_table = iommu_init_table(tbl, ppci->phb->node);
Alexey Kardashevskiy5b251992013-05-21 13:33:11 +1000664 iommu_register_group(tbl, pci_domain_nr(bus), 0);
Michael Ellermanf7ebf352008-04-24 15:13:19 +1000665 pr_debug(" created table: %p\n", ppci->iommu_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667}
668
669
Benjamin Herrenschmidt12d04ee2006-11-11 17:25:02 +1100670static void pci_dma_dev_setup_pSeries(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671{
Benjamin Herrenschmidt12d04ee2006-11-11 17:25:02 +1100672 struct device_node *dn;
Olof Johansson3c2822c2005-09-21 09:55:31 -0700673 struct iommu_table *tbl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
Michael Ellermanf7ebf352008-04-24 15:13:19 +1000675 pr_debug("pci_dma_dev_setup_pSeries: %s\n", pci_name(dev));
Olof Johansson3c2822c2005-09-21 09:55:31 -0700676
Grant Likely58f9b0b2010-04-13 16:12:56 -0700677 dn = dev->dev.of_node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
Olof Johansson3c2822c2005-09-21 09:55:31 -0700679 /* 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) {
Benjamin Herrenschmidt12d04ee2006-11-11 17:25:02 +1100684 struct pci_controller *phb = PCI_DN(dn)->phb;
685
Michael Ellermanf7ebf352008-04-24 15:13:19 +1000686 pr_debug(" --> first child, no bridge. Allocating iommu table.\n");
Anton Blanchard7aa241f2010-08-11 16:42:48 +0000687 tbl = kzalloc_node(sizeof(struct iommu_table), GFP_KERNEL,
Benjamin Herrenschmidt12d04ee2006-11-11 17:25:02 +1100688 phb->node);
689 iommu_table_setparms(phb, dn, tbl);
Linas Vepstas77319252007-01-10 19:16:29 -0600690 PCI_DN(dn)->iommu_table = iommu_init_table(tbl, phb->node);
Alexey Kardashevskiy5b251992013-05-21 13:33:11 +1000691 iommu_register_group(tbl, pci_domain_nr(phb->bus), 0);
Alexey Kardashevskiyd905c5d2013-11-21 17:43:14 +1100692 set_iommu_table_base_and_group(&dev->dev,
693 PCI_DN(dn)->iommu_table);
Olof Johansson3c2822c2005-09-21 09:55:31 -0700694 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
linase07102d2005-12-05 19:37:35 -0600701 while (dn && PCI_DN(dn) && PCI_DN(dn)->iommu_table == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 dn = dn->parent;
703
Benjamin Herrenschmidt12d04ee2006-11-11 17:25:02 +1100704 if (dn && PCI_DN(dn))
Alexey Kardashevskiyd905c5d2013-11-21 17:43:14 +1100705 set_iommu_table_base_and_group(&dev->dev,
706 PCI_DN(dn)->iommu_table);
Benjamin Herrenschmidt12d04ee2006-11-11 17:25:02 +1100707 else
708 printk(KERN_WARNING "iommu: Device %s has no iommu table\n",
709 pci_name(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710}
711
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000712static 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;
Milton Millerb73a6352011-05-11 12:25:00 +0000728 const u32 *ddw_avail;
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000729 u64 liobn;
730 int len, ret;
731
Milton Millerb73a6352011-05-11 12:25:00 +0000732 ddw_avail = of_get_property(np, "ibm,ddw-applicable", &len);
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000733 win64 = of_find_property(np, DIRECT64_PROPNAME, NULL);
Milton Miller2573f682011-05-11 12:24:58 +0000734 if (!win64)
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000735 return;
736
Milton Millerb73a6352011-05-11 12:25:00 +0000737 if (!ddw_avail || len < 3 * sizeof(u32) || win64->length < sizeof(*dwp))
Milton Miller2573f682011-05-11 12:24:58 +0000738 goto delprop;
739
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000740 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
Nishanth Aravamudanae69e1e2014-01-10 15:09:38 -0800753 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);
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000762
Milton Miller2573f682011-05-11 12:24:58 +0000763delprop:
Nathan Fontenot79d1c712012-10-02 16:58:46 +0000764 ret = of_remove_property(np, win64);
Milton Miller2573f682011-05-11 12:24:58 +0000765 if (ret)
Milton Millerc8566782011-05-11 12:24:59 +0000766 pr_warning("%s: failed to remove direct window property: %d\n",
Milton Miller2573f682011-05-11 12:24:58 +0000767 np->full_name, ret);
768}
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000769
Milton Millerb73a6352011-05-11 12:25:00 +0000770static u64 find_existing_ddw(struct device_node *pdn)
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000771{
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000772 struct direct_window *window;
773 const struct dynamic_dma_window_prop *direct64;
774 u64 dma_addr = 0;
775
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000776 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;
Anton Blancharddf015602013-10-17 23:21:15 +1100781 dma_addr = be64_to_cpu(direct64->dma_base);
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000782 break;
783 }
784 }
785 spin_unlock(&direct_window_list_lock);
786
787 return dma_addr;
788}
789
Nishanth Aravamudan14b6f002013-01-28 16:03:58 +0000790static void __restore_default_window(struct eeh_dev *edev,
791 u32 ddw_restore_token)
792{
793 u32 cfg_addr;
794 u64 buid;
795 int ret;
796
797 /*
798 * Get the config address and phb buid of the PE window.
799 * Rely on eeh to retrieve this for us.
800 * Retrieve them from the pci device, not the node with the
801 * dma-window property
802 */
803 cfg_addr = edev->config_addr;
804 if (edev->pe_config_addr)
805 cfg_addr = edev->pe_config_addr;
806 buid = edev->phb->buid;
807
808 do {
809 ret = rtas_call(ddw_restore_token, 3, 1, NULL, cfg_addr,
810 BUID_HI(buid), BUID_LO(buid));
811 } while (rtas_busy_delay(ret));
812 pr_info("ibm,reset-pe-dma-windows(%x) %x %x %x returned %d\n",
813 ddw_restore_token, cfg_addr, BUID_HI(buid), BUID_LO(buid), ret);
814}
815
Milton Millerc8566782011-05-11 12:24:59 +0000816static int find_existing_ddw_windows(void)
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000817{
Milton Millerc8566782011-05-11 12:24:59 +0000818 struct device_node *pdn;
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000819 const struct dynamic_dma_window_prop *direct64;
Nishanth Aravamudan14b6f002013-01-28 16:03:58 +0000820 const u32 *ddw_extensions;
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000821
Milton Millerc8566782011-05-11 12:24:59 +0000822 if (!firmware_has_feature(FW_FEATURE_LPAR))
823 return 0;
824
825 for_each_node_with_property(pdn, DIRECT64_PROPNAME) {
Nishanth Aravamudan14b6f002013-01-28 16:03:58 +0000826 direct64 = of_get_property(pdn, DIRECT64_PROPNAME, NULL);
Milton Millerc8566782011-05-11 12:24:59 +0000827 if (!direct64)
828 continue;
829
Nishanth Aravamudan14b6f002013-01-28 16:03:58 +0000830 /*
831 * We need to ensure the IOMMU table is active when we
832 * return from the IOMMU setup so that the common code
833 * can clear the table or find the holes. To that end,
834 * first, remove any existing DDW configuration.
835 */
836 remove_ddw(pdn);
Milton Millerc8566782011-05-11 12:24:59 +0000837
Nishanth Aravamudan14b6f002013-01-28 16:03:58 +0000838 /*
839 * Second, if we are running on a new enough level of
840 * firmware where the restore API is present, use it to
841 * restore the 32-bit window, which was removed in
842 * create_ddw.
843 * If the API is not present, then create_ddw couldn't
844 * have removed the 32-bit window in the first place, so
845 * removing the DDW configuration should be sufficient.
846 */
847 ddw_extensions = of_get_property(pdn, "ibm,ddw-extensions",
848 NULL);
849 if (ddw_extensions && ddw_extensions[0] > 0)
850 __restore_default_window(of_node_to_eeh_dev(pdn),
851 ddw_extensions[1]);
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000852 }
853
Milton Millerc8566782011-05-11 12:24:59 +0000854 return 0;
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000855}
Milton Millerc8566782011-05-11 12:24:59 +0000856machine_arch_initcall(pseries, find_existing_ddw_windows);
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000857
Milton Millerb73a6352011-05-11 12:25:00 +0000858static int query_ddw(struct pci_dev *dev, const u32 *ddw_avail,
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000859 struct ddw_query_response *query)
860{
Gavin Shan39baadb2012-03-20 21:30:28 +0000861 struct eeh_dev *edev;
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000862 u32 cfg_addr;
863 u64 buid;
864 int ret;
865
866 /*
867 * Get the config address and phb buid of the PE window.
868 * Rely on eeh to retrieve this for us.
869 * Retrieve them from the pci device, not the node with the
870 * dma-window property
871 */
Gavin Shan39baadb2012-03-20 21:30:28 +0000872 edev = pci_dev_to_eeh_dev(dev);
873 cfg_addr = edev->config_addr;
874 if (edev->pe_config_addr)
875 cfg_addr = edev->pe_config_addr;
876 buid = edev->phb->buid;
877
Milton Millerb73a6352011-05-11 12:25:00 +0000878 ret = rtas_call(ddw_avail[0], 3, 5, (u32 *)query,
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000879 cfg_addr, BUID_HI(buid), BUID_LO(buid));
880 dev_info(&dev->dev, "ibm,query-pe-dma-windows(%x) %x %x %x"
Milton Millerb73a6352011-05-11 12:25:00 +0000881 " returned %d\n", ddw_avail[0], cfg_addr, BUID_HI(buid),
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000882 BUID_LO(buid), ret);
883 return ret;
884}
885
Milton Millerb73a6352011-05-11 12:25:00 +0000886static int create_ddw(struct pci_dev *dev, const u32 *ddw_avail,
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000887 struct ddw_create_response *create, int page_shift,
888 int window_shift)
889{
Gavin Shan39baadb2012-03-20 21:30:28 +0000890 struct eeh_dev *edev;
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000891 u32 cfg_addr;
892 u64 buid;
893 int ret;
894
895 /*
896 * Get the config address and phb buid of the PE window.
897 * Rely on eeh to retrieve this for us.
898 * Retrieve them from the pci device, not the node with the
899 * dma-window property
900 */
Gavin Shan39baadb2012-03-20 21:30:28 +0000901 edev = pci_dev_to_eeh_dev(dev);
902 cfg_addr = edev->config_addr;
903 if (edev->pe_config_addr)
904 cfg_addr = edev->pe_config_addr;
905 buid = edev->phb->buid;
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000906
907 do {
908 /* extra outputs are LIOBN and dma-addr (hi, lo) */
Milton Millerb73a6352011-05-11 12:25:00 +0000909 ret = rtas_call(ddw_avail[1], 5, 4, (u32 *)create, cfg_addr,
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000910 BUID_HI(buid), BUID_LO(buid), page_shift, window_shift);
911 } while (rtas_busy_delay(ret));
912 dev_info(&dev->dev,
913 "ibm,create-pe-dma-window(%x) %x %x %x %x %x returned %d "
Milton Millerb73a6352011-05-11 12:25:00 +0000914 "(liobn = 0x%x starting addr = %x %x)\n", ddw_avail[1],
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000915 cfg_addr, BUID_HI(buid), BUID_LO(buid), page_shift,
916 window_shift, ret, create->liobn, create->addr_hi, create->addr_lo);
917
918 return ret;
919}
920
Nishanth Aravamudan61435692013-03-07 12:33:03 +0000921struct failed_ddw_pdn {
922 struct device_node *pdn;
923 struct list_head list;
924};
925
926static LIST_HEAD(failed_ddw_pdn_list);
927
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000928/*
929 * If the PE supports dynamic dma windows, and there is space for a table
930 * that can map all pages in a linear offset, then setup such a table,
931 * and record the dma-offset in the struct device.
932 *
933 * dev: the pci device we are checking
934 * pdn: the parent pe node with the ibm,dma_window property
935 * Future: also check if we can remap the base window for our base page size
936 *
937 * returns the dma offset for use by dma_set_mask
938 */
939static u64 enable_ddw(struct pci_dev *dev, struct device_node *pdn)
940{
941 int len, ret;
942 struct ddw_query_response query;
943 struct ddw_create_response create;
944 int page_shift;
945 u64 dma_addr, max_addr;
946 struct device_node *dn;
Milton Millerb73a6352011-05-11 12:25:00 +0000947 const u32 *uninitialized_var(ddw_avail);
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000948 struct direct_window *window;
Nishanth Aravamudan76730332011-05-06 13:27:30 +0000949 struct property *win64;
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000950 struct dynamic_dma_window_prop *ddwprop;
Nishanth Aravamudan61435692013-03-07 12:33:03 +0000951 struct failed_ddw_pdn *fpdn;
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000952
953 mutex_lock(&direct_window_init_mutex);
954
Milton Millerb73a6352011-05-11 12:25:00 +0000955 dma_addr = find_existing_ddw(pdn);
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000956 if (dma_addr != 0)
957 goto out_unlock;
958
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000959 /*
Nishanth Aravamudan61435692013-03-07 12:33:03 +0000960 * If we already went through this for a previous function of
961 * the same device and failed, we don't want to muck with the
962 * DMA window again, as it will race with in-flight operations
963 * and can lead to EEHs. The above mutex protects access to the
964 * list.
965 */
966 list_for_each_entry(fpdn, &failed_ddw_pdn_list, list) {
967 if (!strcmp(fpdn->pdn->full_name, pdn->full_name))
968 goto out_unlock;
969 }
970
971 /*
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000972 * the ibm,ddw-applicable property holds the tokens for:
973 * ibm,query-pe-dma-window
974 * ibm,create-pe-dma-window
975 * ibm,remove-pe-dma-window
976 * for the given node in that order.
977 * the property is actually in the parent, not the PE
978 */
Milton Millerb73a6352011-05-11 12:25:00 +0000979 ddw_avail = of_get_property(pdn, "ibm,ddw-applicable", &len);
980 if (!ddw_avail || len < 3 * sizeof(u32))
Nishanth Aravamudanae69e1e2014-01-10 15:09:38 -0800981 goto out_failed;
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000982
Nishanth Aravamudanae69e1e2014-01-10 15:09:38 -0800983 /*
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000984 * Query if there is a second window of size to map the
985 * whole partition. Query returns number of windows, largest
986 * block assigned to PE (partition endpoint), and two bitmasks
987 * of page sizes: supported and supported for migrate-dma.
988 */
989 dn = pci_device_to_OF_node(dev);
Milton Millerb73a6352011-05-11 12:25:00 +0000990 ret = query_ddw(dev, ddw_avail, &query);
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000991 if (ret != 0)
Nishanth Aravamudanae69e1e2014-01-10 15:09:38 -0800992 goto out_failed;
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +0000993
994 if (query.windows_available == 0) {
995 /*
996 * no additional windows are available for this device.
997 * We might be able to reallocate the existing window,
998 * trading in for a larger page size.
999 */
1000 dev_dbg(&dev->dev, "no free dynamic windows");
Nishanth Aravamudanae69e1e2014-01-10 15:09:38 -08001001 goto out_failed;
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +00001002 }
Anton Blancharddf015602013-10-17 23:21:15 +11001003 if (be32_to_cpu(query.page_size) & 4) {
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +00001004 page_shift = 24; /* 16MB */
Anton Blancharddf015602013-10-17 23:21:15 +11001005 } else if (be32_to_cpu(query.page_size) & 2) {
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +00001006 page_shift = 16; /* 64kB */
Anton Blancharddf015602013-10-17 23:21:15 +11001007 } else if (be32_to_cpu(query.page_size) & 1) {
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +00001008 page_shift = 12; /* 4kB */
1009 } else {
1010 dev_dbg(&dev->dev, "no supported direct page size in mask %x",
1011 query.page_size);
Nishanth Aravamudanae69e1e2014-01-10 15:09:38 -08001012 goto out_failed;
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +00001013 }
1014 /* verify the window * number of ptes will map the partition */
1015 /* check largest block * page size > max memory hotplug addr */
1016 max_addr = memory_hotplug_max();
Anton Blancharddf015602013-10-17 23:21:15 +11001017 if (be32_to_cpu(query.largest_available_block) < (max_addr >> page_shift)) {
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +00001018 dev_dbg(&dev->dev, "can't map partiton max 0x%llx with %u "
1019 "%llu-sized pages\n", max_addr, query.largest_available_block,
1020 1ULL << page_shift);
Nishanth Aravamudanae69e1e2014-01-10 15:09:38 -08001021 goto out_failed;
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +00001022 }
1023 len = order_base_2(max_addr);
1024 win64 = kzalloc(sizeof(struct property), GFP_KERNEL);
1025 if (!win64) {
1026 dev_info(&dev->dev,
1027 "couldn't allocate property for 64bit dma window\n");
Nishanth Aravamudanae69e1e2014-01-10 15:09:38 -08001028 goto out_failed;
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +00001029 }
1030 win64->name = kstrdup(DIRECT64_PROPNAME, GFP_KERNEL);
1031 win64->value = ddwprop = kmalloc(sizeof(*ddwprop), GFP_KERNEL);
Nishanth Aravamudan76730332011-05-06 13:27:30 +00001032 win64->length = sizeof(*ddwprop);
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +00001033 if (!win64->name || !win64->value) {
1034 dev_info(&dev->dev,
1035 "couldn't allocate property name and value\n");
1036 goto out_free_prop;
1037 }
1038
Milton Millerb73a6352011-05-11 12:25:00 +00001039 ret = create_ddw(dev, ddw_avail, &create, page_shift, len);
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +00001040 if (ret != 0)
1041 goto out_free_prop;
1042
Anton Blancharddf015602013-10-17 23:21:15 +11001043 ddwprop->liobn = create.liobn;
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +00001044 ddwprop->dma_base = cpu_to_be64(of_read_number(&create.addr_hi, 2));
1045 ddwprop->tce_shift = cpu_to_be32(page_shift);
1046 ddwprop->window_shift = cpu_to_be32(len);
1047
1048 dev_dbg(&dev->dev, "created tce table LIOBN 0x%x for %s\n",
1049 create.liobn, dn->full_name);
1050
1051 window = kzalloc(sizeof(*window), GFP_KERNEL);
1052 if (!window)
1053 goto out_clear_window;
1054
1055 ret = walk_system_ram_range(0, memblock_end_of_DRAM() >> PAGE_SHIFT,
1056 win64->value, tce_setrange_multi_pSeriesLP_walk);
1057 if (ret) {
1058 dev_info(&dev->dev, "failed to map direct window for %s: %d\n",
1059 dn->full_name, ret);
Julia Lawall7a190812011-08-08 01:18:00 +00001060 goto out_free_window;
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +00001061 }
1062
Nathan Fontenot79d1c712012-10-02 16:58:46 +00001063 ret = of_add_property(pdn, win64);
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +00001064 if (ret) {
1065 dev_err(&dev->dev, "unable to add dma window property for %s: %d",
1066 pdn->full_name, ret);
Julia Lawall7a190812011-08-08 01:18:00 +00001067 goto out_free_window;
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +00001068 }
1069
1070 window->device = pdn;
1071 window->prop = ddwprop;
1072 spin_lock(&direct_window_list_lock);
1073 list_add(&window->list, &direct_window_list);
1074 spin_unlock(&direct_window_list_lock);
1075
1076 dma_addr = of_read_number(&create.addr_hi, 2);
1077 goto out_unlock;
1078
Julia Lawall7a190812011-08-08 01:18:00 +00001079out_free_window:
1080 kfree(window);
1081
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +00001082out_clear_window:
1083 remove_ddw(pdn);
1084
1085out_free_prop:
1086 kfree(win64->name);
1087 kfree(win64->value);
1088 kfree(win64);
1089
Nishanth Aravamudanae69e1e2014-01-10 15:09:38 -08001090out_failed:
Nishanth Aravamudan25ebc452012-05-15 07:04:32 +00001091
Nishanth Aravamudan61435692013-03-07 12:33:03 +00001092 fpdn = kzalloc(sizeof(*fpdn), GFP_KERNEL);
1093 if (!fpdn)
1094 goto out_unlock;
1095 fpdn->pdn = pdn;
1096 list_add(&fpdn->list, &failed_ddw_pdn_list);
1097
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +00001098out_unlock:
1099 mutex_unlock(&direct_window_init_mutex);
1100 return dma_addr;
1101}
1102
Benjamin Herrenschmidt12d04ee2006-11-11 17:25:02 +11001103static void pci_dma_dev_setup_pSeriesLP(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104{
1105 struct device_node *pdn, *dn;
1106 struct iommu_table *tbl;
Anton Blanchard2083f682013-08-07 02:01:36 +10001107 const __be32 *dma_window = NULL;
Paul Mackerras16353172005-09-06 13:17:54 +10001108 struct pci_dn *pci;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109
Michael Ellermanf7ebf352008-04-24 15:13:19 +10001110 pr_debug("pci_dma_dev_setup_pSeriesLP: %s\n", pci_name(dev));
Benjamin Herrenschmidt12d04ee2006-11-11 17:25:02 +11001111
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 /* dev setup for LPAR is a little tricky, since the device tree might
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001113 * contain the dma-window properties per-device and not necessarily
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 * for the bus. So we need to search upwards in the tree until we
1115 * either hit a dma-window property, OR find a parent with a table
1116 * already allocated.
1117 */
1118 dn = pci_device_to_OF_node(dev);
Michael Ellermanf7ebf352008-04-24 15:13:19 +10001119 pr_debug(" node is %s\n", dn->full_name);
Linas Vepstas5d2efba2006-10-30 16:15:59 +11001120
linase07102d2005-12-05 19:37:35 -06001121 for (pdn = dn; pdn && PCI_DN(pdn) && !PCI_DN(pdn)->iommu_table;
Paul Mackerras16353172005-09-06 13:17:54 +10001122 pdn = pdn->parent) {
Stephen Rothwelle2eb6392007-04-03 22:26:41 +10001123 dma_window = of_get_property(pdn, "ibm,dma-window", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 if (dma_window)
1125 break;
1126 }
1127
Linas Vepstas650f7b32007-04-11 06:11:23 +10001128 if (!pdn || !PCI_DN(pdn)) {
1129 printk(KERN_WARNING "pci_dma_dev_setup_pSeriesLP: "
1130 "no DMA window found for pci dev=%s dn=%s\n",
Grant Likely74a7f082012-06-15 11:50:25 -06001131 pci_name(dev), of_node_full_name(dn));
Linas Vepstas650f7b32007-04-11 06:11:23 +10001132 return;
1133 }
Michael Ellermanf7ebf352008-04-24 15:13:19 +10001134 pr_debug(" parent is %s\n", pdn->full_name);
Benjamin Herrenschmidt12d04ee2006-11-11 17:25:02 +11001135
linase07102d2005-12-05 19:37:35 -06001136 pci = PCI_DN(pdn);
Paul Mackerras16353172005-09-06 13:17:54 +10001137 if (!pci->iommu_table) {
Anton Blanchard7aa241f2010-08-11 16:42:48 +00001138 tbl = kzalloc_node(sizeof(struct iommu_table), GFP_KERNEL,
Anton Blanchardca1588e2006-06-10 20:58:08 +10001139 pci->phb->node);
Benjamin Herrenschmidtb8c49de2010-12-09 15:24:01 +11001140 iommu_table_setparms_lpar(pci->phb, pdn, tbl, dma_window);
Anton Blanchardca1588e2006-06-10 20:58:08 +10001141 pci->iommu_table = iommu_init_table(tbl, pci->phb->node);
Alexey Kardashevskiy5b251992013-05-21 13:33:11 +10001142 iommu_register_group(tbl, pci_domain_nr(pci->phb->bus), 0);
Michael Ellermanf7ebf352008-04-24 15:13:19 +10001143 pr_debug(" created table: %p\n", pci->iommu_table);
Michael Neulingde113212007-05-10 15:16:27 +10001144 } else {
Michael Ellermanf7ebf352008-04-24 15:13:19 +10001145 pr_debug(" found DMA window, table: %p\n", pci->iommu_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 }
1147
Alexey Kardashevskiyd905c5d2013-11-21 17:43:14 +11001148 set_iommu_table_base_and_group(&dev->dev, pci->iommu_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149}
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +00001150
1151static int dma_set_mask_pSeriesLP(struct device *dev, u64 dma_mask)
1152{
1153 bool ddw_enabled = false;
1154 struct device_node *pdn, *dn;
1155 struct pci_dev *pdev;
Anton Blanchard2083f682013-08-07 02:01:36 +10001156 const __be32 *dma_window = NULL;
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +00001157 u64 dma_offset;
1158
Milton Miller64ac8222011-05-11 12:24:57 +00001159 if (!dev->dma_mask)
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +00001160 return -EIO;
1161
Milton Miller64ac8222011-05-11 12:24:57 +00001162 if (!dev_is_pci(dev))
1163 goto check_mask;
1164
Nishanth Aravamudaneb0dd412011-05-09 12:58:03 +00001165 pdev = to_pci_dev(dev);
1166
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +00001167 /* only attempt to use a new window if 64-bit DMA is requested */
1168 if (!disable_ddw && dma_mask == DMA_BIT_MASK(64)) {
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +00001169 dn = pci_device_to_OF_node(pdev);
1170 dev_dbg(dev, "node is %s\n", dn->full_name);
1171
1172 /*
1173 * the device tree might contain the dma-window properties
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001174 * per-device and not necessarily for the bus. So we need to
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +00001175 * search upwards in the tree until we either hit a dma-window
1176 * property, OR find a parent with a table already allocated.
1177 */
1178 for (pdn = dn; pdn && PCI_DN(pdn) && !PCI_DN(pdn)->iommu_table;
1179 pdn = pdn->parent) {
1180 dma_window = of_get_property(pdn, "ibm,dma-window", NULL);
1181 if (dma_window)
1182 break;
1183 }
1184 if (pdn && PCI_DN(pdn)) {
1185 dma_offset = enable_ddw(pdev, pdn);
1186 if (dma_offset != 0) {
1187 dev_info(dev, "Using 64-bit direct DMA at offset %llx\n", dma_offset);
1188 set_dma_offset(dev, dma_offset);
1189 set_dma_ops(dev, &dma_direct_ops);
1190 ddw_enabled = true;
1191 }
1192 }
1193 }
1194
Milton Miller64ac8222011-05-11 12:24:57 +00001195 /* fall back on iommu ops, restore table pointer with ops */
1196 if (!ddw_enabled && get_dma_ops(dev) != &dma_iommu_ops) {
1197 dev_info(dev, "Restoring 32-bit DMA via iommu\n");
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +00001198 set_dma_ops(dev, &dma_iommu_ops);
Nishanth Aravamudaneb0dd412011-05-09 12:58:03 +00001199 pci_dma_dev_setup_pSeriesLP(pdev);
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +00001200 }
1201
Milton Miller64ac8222011-05-11 12:24:57 +00001202check_mask:
1203 if (!dma_supported(dev, dma_mask))
1204 return -EIO;
1205
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +00001206 *dev->dma_mask = dma_mask;
1207 return 0;
1208}
1209
Milton Miller6a5c7be2011-06-24 09:05:22 +00001210static u64 dma_get_required_mask_pSeriesLP(struct device *dev)
1211{
1212 if (!dev->dma_mask)
1213 return 0;
1214
1215 if (!disable_ddw && dev_is_pci(dev)) {
1216 struct pci_dev *pdev = to_pci_dev(dev);
1217 struct device_node *dn;
1218
1219 dn = pci_device_to_OF_node(pdev);
1220
1221 /* search upwards for ibm,dma-window */
1222 for (; dn && PCI_DN(dn) && !PCI_DN(dn)->iommu_table;
1223 dn = dn->parent)
1224 if (of_get_property(dn, "ibm,dma-window", NULL))
1225 break;
1226 /* if there is a ibm,ddw-applicable property require 64 bits */
1227 if (dn && PCI_DN(dn) &&
1228 of_get_property(dn, "ibm,ddw-applicable", NULL))
1229 return DMA_BIT_MASK(64);
1230 }
1231
Milton Millerd24f9c62011-06-24 09:05:24 +00001232 return dma_iommu_ops.get_required_mask(dev);
Milton Miller6a5c7be2011-06-24 09:05:22 +00001233}
1234
Stephen Rothwellbed59272007-03-04 17:04:44 +11001235#else /* CONFIG_PCI */
1236#define pci_dma_bus_setup_pSeries NULL
1237#define pci_dma_dev_setup_pSeries NULL
1238#define pci_dma_bus_setup_pSeriesLP NULL
1239#define pci_dma_dev_setup_pSeriesLP NULL
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +00001240#define dma_set_mask_pSeriesLP NULL
Milton Miller6a5c7be2011-06-24 09:05:22 +00001241#define dma_get_required_mask_pSeriesLP NULL
Stephen Rothwellbed59272007-03-04 17:04:44 +11001242#endif /* !CONFIG_PCI */
1243
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +00001244static int iommu_mem_notifier(struct notifier_block *nb, unsigned long action,
1245 void *data)
1246{
1247 struct direct_window *window;
1248 struct memory_notify *arg = data;
1249 int ret = 0;
1250
1251 switch (action) {
1252 case MEM_GOING_ONLINE:
1253 spin_lock(&direct_window_list_lock);
1254 list_for_each_entry(window, &direct_window_list, list) {
1255 ret |= tce_setrange_multi_pSeriesLP(arg->start_pfn,
1256 arg->nr_pages, window->prop);
1257 /* XXX log error */
1258 }
1259 spin_unlock(&direct_window_list_lock);
1260 break;
1261 case MEM_CANCEL_ONLINE:
1262 case MEM_OFFLINE:
1263 spin_lock(&direct_window_list_lock);
1264 list_for_each_entry(window, &direct_window_list, list) {
1265 ret |= tce_clearrange_multi_pSeriesLP(arg->start_pfn,
1266 arg->nr_pages, window->prop);
1267 /* XXX log error */
1268 }
1269 spin_unlock(&direct_window_list_lock);
1270 break;
1271 default:
1272 break;
1273 }
1274 if (ret && action != MEM_CANCEL_ONLINE)
1275 return NOTIFY_BAD;
1276
1277 return NOTIFY_OK;
1278}
1279
1280static struct notifier_block iommu_mem_nb = {
1281 .notifier_call = iommu_mem_notifier,
1282};
1283
Stephen Rothwellbed59272007-03-04 17:04:44 +11001284static int iommu_reconfig_notifier(struct notifier_block *nb, unsigned long action, void *node)
1285{
1286 int err = NOTIFY_OK;
1287 struct device_node *np = node;
1288 struct pci_dn *pci = PCI_DN(np);
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +00001289 struct direct_window *window;
Stephen Rothwellbed59272007-03-04 17:04:44 +11001290
1291 switch (action) {
Nathan Fontenot1cf3d8b2012-10-02 16:57:57 +00001292 case OF_RECONFIG_DETACH_NODE:
Nishanth Aravamudan71cf1de2013-01-18 09:17:36 +00001293 remove_ddw(np);
Nishanth Aravamudan7372cfb2010-10-26 17:35:13 +00001294 if (pci && pci->iommu_table)
Stephen Rothwell68d315f2007-12-06 13:39:19 +11001295 iommu_free_table(pci->iommu_table, np->full_name);
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +00001296
1297 spin_lock(&direct_window_list_lock);
1298 list_for_each_entry(window, &direct_window_list, list) {
1299 if (window->device == np) {
1300 list_del(&window->list);
1301 kfree(window);
1302 break;
1303 }
1304 }
1305 spin_unlock(&direct_window_list_lock);
Stephen Rothwellbed59272007-03-04 17:04:44 +11001306 break;
1307 default:
1308 err = NOTIFY_DONE;
1309 break;
1310 }
1311 return err;
1312}
1313
1314static struct notifier_block iommu_reconfig_nb = {
1315 .notifier_call = iommu_reconfig_notifier,
1316};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318/* These are called very early. */
1319void iommu_init_early_pSeries(void)
1320{
Nishanth Aravamudana8daac82010-10-18 07:27:03 +00001321 if (of_chosen && of_get_property(of_chosen, "linux,iommu-off", NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323
Michael Ellerman57cfb812006-03-21 20:45:59 +11001324 if (firmware_has_feature(FW_FEATURE_LPAR)) {
Stephen Rothwell1ababe12005-08-03 14:35:25 +10001325 if (firmware_has_feature(FW_FEATURE_MULTITCE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 ppc_md.tce_build = tce_buildmulti_pSeriesLP;
1327 ppc_md.tce_free = tce_freemulti_pSeriesLP;
1328 } else {
1329 ppc_md.tce_build = tce_build_pSeriesLP;
1330 ppc_md.tce_free = tce_free_pSeriesLP;
1331 }
Haren Myneni5f508672006-06-22 23:35:10 -07001332 ppc_md.tce_get = tce_get_pSeriesLP;
Benjamin Herrenschmidt12d04ee2006-11-11 17:25:02 +11001333 ppc_md.pci_dma_bus_setup = pci_dma_bus_setup_pSeriesLP;
1334 ppc_md.pci_dma_dev_setup = pci_dma_dev_setup_pSeriesLP;
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +00001335 ppc_md.dma_set_mask = dma_set_mask_pSeriesLP;
Milton Miller6a5c7be2011-06-24 09:05:22 +00001336 ppc_md.dma_get_required_mask = dma_get_required_mask_pSeriesLP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 } else {
1338 ppc_md.tce_build = tce_build_pSeries;
1339 ppc_md.tce_free = tce_free_pSeries;
Haren Myneni5f508672006-06-22 23:35:10 -07001340 ppc_md.tce_get = tce_get_pseries;
Benjamin Herrenschmidt12d04ee2006-11-11 17:25:02 +11001341 ppc_md.pci_dma_bus_setup = pci_dma_bus_setup_pSeries;
1342 ppc_md.pci_dma_dev_setup = pci_dma_dev_setup_pSeries;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 }
1344
1345
Nathan Fontenot1cf3d8b2012-10-02 16:57:57 +00001346 of_reconfig_notifier_register(&iommu_reconfig_nb);
Nishanth Aravamudan4e8b0cf2011-02-10 09:10:47 +00001347 register_memory_notifier(&iommu_mem_nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348
Stephen Rothwell98747772007-03-04 16:58:39 +11001349 set_pci_dma_ops(&dma_iommu_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350}
1351
Will Schmidt4e89a2d2010-09-28 15:33:12 +00001352static int __init disable_multitce(char *str)
1353{
1354 if (strcmp(str, "off") == 0 &&
1355 firmware_has_feature(FW_FEATURE_LPAR) &&
1356 firmware_has_feature(FW_FEATURE_MULTITCE)) {
1357 printk(KERN_INFO "Disabling MULTITCE firmware feature\n");
1358 ppc_md.tce_build = tce_build_pSeriesLP;
1359 ppc_md.tce_free = tce_free_pSeriesLP;
1360 powerpc_firmware_features &= ~FW_FEATURE_MULTITCE;
1361 }
1362 return 1;
1363}
1364
1365__setup("multitce=", disable_multitce);