Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | * Copyright (C) 2001 Mike Corrigan & Dave Engebretsen, IBM Corporation |
| 3 | * |
Olof Johansson | bc97ce9 | 2006-04-28 22:51:59 -0500 | [diff] [blame] | 4 | * Rewrite, cleanup: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | * |
Olof Johansson | 91f1448 | 2005-11-21 02:12:32 -0600 | [diff] [blame] | 6 | * Copyright (C) 2004 Olof Johansson <olof@lixom.net>, IBM Corporation |
Olof Johansson | bc97ce9 | 2006-04-28 22:51:59 -0500 | [diff] [blame] | 7 | * Copyright (C) 2006 Olof Johansson <olof@lixom.net> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | * |
| 9 | * Dynamic DMA mapping support, pSeries-specific parts, both SMP and LPAR. |
| 10 | * |
Olof Johansson | bc97ce9 | 2006-04-28 22:51:59 -0500 | [diff] [blame] | 11 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | * This program is free software; you can redistribute it and/or modify |
| 13 | * it under the terms of the GNU General Public License as published by |
| 14 | * the Free Software Foundation; either version 2 of the License, or |
| 15 | * (at your option) any later version. |
Olof Johansson | bc97ce9 | 2006-04-28 22:51:59 -0500 | [diff] [blame] | 16 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | * This program is distributed in the hope that it will be useful, |
| 18 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 20 | * GNU General Public License for more details. |
Olof Johansson | bc97ce9 | 2006-04-28 22:51:59 -0500 | [diff] [blame] | 21 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | * You should have received a copy of the GNU General Public License |
| 23 | * along with this program; if not, write to the Free Software |
| 24 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 25 | */ |
| 26 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | #include <linux/init.h> |
| 28 | #include <linux/types.h> |
| 29 | #include <linux/slab.h> |
| 30 | #include <linux/mm.h> |
Michael Ellerman | beacc6d | 2012-07-25 21:20:03 +0000 | [diff] [blame] | 31 | #include <linux/memblock.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | #include <linux/spinlock.h> |
Paul Gortmaker | 62fe91b | 2011-05-27 14:25:11 -0400 | [diff] [blame] | 33 | #include <linux/sched.h> /* for show_stack */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | #include <linux/string.h> |
| 35 | #include <linux/pci.h> |
| 36 | #include <linux/dma-mapping.h> |
Milton Miller | 62a8bd6 | 2008-10-22 15:39:04 -0500 | [diff] [blame] | 37 | #include <linux/crash_dump.h> |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 38 | #include <linux/memory.h> |
Nathan Fontenot | 1cf3d8b | 2012-10-02 16:57:57 +0000 | [diff] [blame] | 39 | #include <linux/of.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | #include <asm/io.h> |
| 41 | #include <asm/prom.h> |
| 42 | #include <asm/rtas.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | #include <asm/iommu.h> |
| 44 | #include <asm/pci-bridge.h> |
| 45 | #include <asm/machdep.h> |
Stephen Rothwell | 1ababe1 | 2005-08-03 14:35:25 +1000 | [diff] [blame] | 46 | #include <asm/firmware.h> |
Olof Johansson | c707ffc | 2005-09-20 13:45:41 +1000 | [diff] [blame] | 47 | #include <asm/tce.h> |
Stephen Rothwell | d387899 | 2005-09-28 02:50:25 +1000 | [diff] [blame] | 48 | #include <asm/ppc-pci.h> |
Paul Mackerras | 2249ca9 | 2005-11-07 13:18:13 +1100 | [diff] [blame] | 49 | #include <asm/udbg.h> |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 50 | #include <asm/mmzone.h> |
Deepthi Dharwar | 212bebb | 2013-08-22 15:23:52 +0530 | [diff] [blame] | 51 | #include <asm/plpar_wrappers.h> |
Michael Ellerman | a121872 | 2005-11-03 15:33:31 +1100 | [diff] [blame] | 52 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | |
Milton Miller | 8d3d589 | 2011-06-29 20:58:33 +0000 | [diff] [blame] | 54 | static void tce_invalidate_pSeries_sw(struct iommu_table *tbl, |
Anton Blanchard | df01560 | 2013-10-17 23:21:15 +1100 | [diff] [blame] | 55 | __be64 *startp, __be64 *endp) |
Milton Miller | 8d3d589 | 2011-06-29 20:58:33 +0000 | [diff] [blame] | 56 | { |
| 57 | u64 __iomem *invalidate = (u64 __iomem *)tbl->it_index; |
| 58 | unsigned long start, end, inc; |
| 59 | |
| 60 | start = __pa(startp); |
| 61 | end = __pa(endp); |
| 62 | inc = L1_CACHE_BYTES; /* invalidate a cacheline of TCEs at a time */ |
| 63 | |
| 64 | /* If this is non-zero, change the format. We shift the |
| 65 | * address and or in the magic from the device tree. */ |
| 66 | if (tbl->it_busno) { |
| 67 | start <<= 12; |
| 68 | end <<= 12; |
| 69 | inc <<= 12; |
| 70 | start |= tbl->it_busno; |
| 71 | end |= tbl->it_busno; |
| 72 | } |
| 73 | |
| 74 | end |= inc - 1; /* round up end to be different than start */ |
| 75 | |
| 76 | mb(); /* Make sure TCEs in memory are written */ |
| 77 | while (start <= end) { |
| 78 | out_be64(invalidate, start); |
| 79 | start += inc; |
| 80 | } |
| 81 | } |
| 82 | |
Robert Jennings | 6490c49 | 2008-07-24 04:31:16 +1000 | [diff] [blame] | 83 | static int tce_build_pSeries(struct iommu_table *tbl, long index, |
Olof Johansson | bc97ce9 | 2006-04-28 22:51:59 -0500 | [diff] [blame] | 84 | long npages, unsigned long uaddr, |
Mark Nelson | 4f3dd8a | 2008-07-16 05:51:47 +1000 | [diff] [blame] | 85 | enum dma_data_direction direction, |
| 86 | struct dma_attrs *attrs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | { |
Olof Johansson | bc97ce9 | 2006-04-28 22:51:59 -0500 | [diff] [blame] | 88 | u64 proto_tce; |
Anton Blanchard | df01560 | 2013-10-17 23:21:15 +1100 | [diff] [blame] | 89 | __be64 *tcep, *tces; |
Olof Johansson | bc97ce9 | 2006-04-28 22:51:59 -0500 | [diff] [blame] | 90 | u64 rpn; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | |
Olof Johansson | bc97ce9 | 2006-04-28 22:51:59 -0500 | [diff] [blame] | 92 | proto_tce = TCE_PCI_READ; // Read allowed |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | |
| 94 | if (direction != DMA_TO_DEVICE) |
Olof Johansson | bc97ce9 | 2006-04-28 22:51:59 -0500 | [diff] [blame] | 95 | proto_tce |= TCE_PCI_WRITE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | |
Anton Blanchard | df01560 | 2013-10-17 23:21:15 +1100 | [diff] [blame] | 97 | tces = tcep = ((__be64 *)tbl->it_base) + index; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | |
| 99 | while (npages--) { |
Yinghai Lu | 95f72d1 | 2010-07-12 14:36:09 +1000 | [diff] [blame] | 100 | /* can't move this out since we might cross MEMBLOCK boundary */ |
Michael Ellerman | 474e3d5 | 2012-07-25 21:19:57 +0000 | [diff] [blame] | 101 | rpn = __pa(uaddr) >> TCE_SHIFT; |
Anton Blanchard | df01560 | 2013-10-17 23:21:15 +1100 | [diff] [blame] | 102 | *tcep = cpu_to_be64(proto_tce | (rpn & TCE_RPN_MASK) << TCE_RPN_SHIFT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | |
Olof Johansson | d0035c62 | 2005-09-20 13:46:44 +1000 | [diff] [blame] | 104 | uaddr += TCE_PAGE_SIZE; |
Olof Johansson | bc97ce9 | 2006-04-28 22:51:59 -0500 | [diff] [blame] | 105 | tcep++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | } |
Milton Miller | 8d3d589 | 2011-06-29 20:58:33 +0000 | [diff] [blame] | 107 | |
Michael Neuling | bc6dc75 | 2012-06-26 21:26:37 +0000 | [diff] [blame] | 108 | if (tbl->it_type & TCE_PCI_SWINV_CREATE) |
Milton Miller | 8d3d589 | 2011-06-29 20:58:33 +0000 | [diff] [blame] | 109 | tce_invalidate_pSeries_sw(tbl, tces, tcep - 1); |
Robert Jennings | 6490c49 | 2008-07-24 04:31:16 +1000 | [diff] [blame] | 110 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | } |
| 112 | |
| 113 | |
| 114 | static void tce_free_pSeries(struct iommu_table *tbl, long index, long npages) |
| 115 | { |
Anton Blanchard | df01560 | 2013-10-17 23:21:15 +1100 | [diff] [blame] | 116 | __be64 *tcep, *tces; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | |
Anton Blanchard | df01560 | 2013-10-17 23:21:15 +1100 | [diff] [blame] | 118 | tces = tcep = ((__be64 *)tbl->it_base) + index; |
Olof Johansson | bc97ce9 | 2006-04-28 22:51:59 -0500 | [diff] [blame] | 119 | |
| 120 | while (npages--) |
| 121 | *(tcep++) = 0; |
Milton Miller | 8d3d589 | 2011-06-29 20:58:33 +0000 | [diff] [blame] | 122 | |
Michael Neuling | bc6dc75 | 2012-06-26 21:26:37 +0000 | [diff] [blame] | 123 | if (tbl->it_type & TCE_PCI_SWINV_FREE) |
Milton Miller | 8d3d589 | 2011-06-29 20:58:33 +0000 | [diff] [blame] | 124 | tce_invalidate_pSeries_sw(tbl, tces, tcep - 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | } |
| 126 | |
Haren Myneni | 5f50867 | 2006-06-22 23:35:10 -0700 | [diff] [blame] | 127 | static unsigned long tce_get_pseries(struct iommu_table *tbl, long index) |
| 128 | { |
Anton Blanchard | df01560 | 2013-10-17 23:21:15 +1100 | [diff] [blame] | 129 | __be64 *tcep; |
Haren Myneni | 5f50867 | 2006-06-22 23:35:10 -0700 | [diff] [blame] | 130 | |
Anton Blanchard | df01560 | 2013-10-17 23:21:15 +1100 | [diff] [blame] | 131 | tcep = ((__be64 *)tbl->it_base) + index; |
Haren Myneni | 5f50867 | 2006-06-22 23:35:10 -0700 | [diff] [blame] | 132 | |
Anton Blanchard | df01560 | 2013-10-17 23:21:15 +1100 | [diff] [blame] | 133 | return be64_to_cpu(*tcep); |
Haren Myneni | 5f50867 | 2006-06-22 23:35:10 -0700 | [diff] [blame] | 134 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | |
Robert Jennings | 6490c49 | 2008-07-24 04:31:16 +1000 | [diff] [blame] | 136 | static void tce_free_pSeriesLP(struct iommu_table*, long, long); |
| 137 | static void tce_freemulti_pSeriesLP(struct iommu_table*, long, long); |
| 138 | |
| 139 | static int tce_build_pSeriesLP(struct iommu_table *tbl, long tcenum, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | long npages, unsigned long uaddr, |
Mark Nelson | 4f3dd8a | 2008-07-16 05:51:47 +1000 | [diff] [blame] | 141 | enum dma_data_direction direction, |
| 142 | struct dma_attrs *attrs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | { |
Robert Jennings | 6490c49 | 2008-07-24 04:31:16 +1000 | [diff] [blame] | 144 | u64 rc = 0; |
Olof Johansson | bc97ce9 | 2006-04-28 22:51:59 -0500 | [diff] [blame] | 145 | u64 proto_tce, tce; |
| 146 | u64 rpn; |
Robert Jennings | 6490c49 | 2008-07-24 04:31:16 +1000 | [diff] [blame] | 147 | int ret = 0; |
| 148 | long tcenum_start = tcenum, npages_start = npages; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | |
Michael Ellerman | 474e3d5 | 2012-07-25 21:19:57 +0000 | [diff] [blame] | 150 | rpn = __pa(uaddr) >> TCE_SHIFT; |
Olof Johansson | bc97ce9 | 2006-04-28 22:51:59 -0500 | [diff] [blame] | 151 | proto_tce = TCE_PCI_READ; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | if (direction != DMA_TO_DEVICE) |
Olof Johansson | bc97ce9 | 2006-04-28 22:51:59 -0500 | [diff] [blame] | 153 | proto_tce |= TCE_PCI_WRITE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | |
| 155 | while (npages--) { |
Olof Johansson | bc97ce9 | 2006-04-28 22:51:59 -0500 | [diff] [blame] | 156 | tce = proto_tce | (rpn & TCE_RPN_MASK) << TCE_RPN_SHIFT; |
| 157 | rc = plpar_tce_put((u64)tbl->it_index, (u64)tcenum << 12, tce); |
| 158 | |
Robert Jennings | 6490c49 | 2008-07-24 04:31:16 +1000 | [diff] [blame] | 159 | if (unlikely(rc == H_NOT_ENOUGH_RESOURCES)) { |
| 160 | ret = (int)rc; |
| 161 | tce_free_pSeriesLP(tbl, tcenum_start, |
| 162 | (npages_start - (npages + 1))); |
| 163 | break; |
| 164 | } |
| 165 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | if (rc && printk_ratelimit()) { |
Ingo Molnar | fe33332 | 2009-01-06 14:26:03 +0000 | [diff] [blame] | 167 | printk("tce_build_pSeriesLP: plpar_tce_put failed. rc=%lld\n", rc); |
| 168 | printk("\tindex = 0x%llx\n", (u64)tbl->it_index); |
| 169 | printk("\ttcenum = 0x%llx\n", (u64)tcenum); |
| 170 | printk("\ttce val = 0x%llx\n", tce ); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | show_stack(current, (unsigned long *)__get_SP()); |
| 172 | } |
Olof Johansson | bc97ce9 | 2006-04-28 22:51:59 -0500 | [diff] [blame] | 173 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | tcenum++; |
Olof Johansson | bc97ce9 | 2006-04-28 22:51:59 -0500 | [diff] [blame] | 175 | rpn++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | } |
Robert Jennings | 6490c49 | 2008-07-24 04:31:16 +1000 | [diff] [blame] | 177 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | } |
| 179 | |
Anton Blanchard | df01560 | 2013-10-17 23:21:15 +1100 | [diff] [blame] | 180 | static DEFINE_PER_CPU(__be64 *, tce_page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | |
Robert Jennings | 6490c49 | 2008-07-24 04:31:16 +1000 | [diff] [blame] | 182 | static int tce_buildmulti_pSeriesLP(struct iommu_table *tbl, long tcenum, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | long npages, unsigned long uaddr, |
Mark Nelson | 4f3dd8a | 2008-07-16 05:51:47 +1000 | [diff] [blame] | 184 | enum dma_data_direction direction, |
| 185 | struct dma_attrs *attrs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | { |
Robert Jennings | 6490c49 | 2008-07-24 04:31:16 +1000 | [diff] [blame] | 187 | u64 rc = 0; |
Olof Johansson | bc97ce9 | 2006-04-28 22:51:59 -0500 | [diff] [blame] | 188 | u64 proto_tce; |
Anton Blanchard | df01560 | 2013-10-17 23:21:15 +1100 | [diff] [blame] | 189 | __be64 *tcep; |
Olof Johansson | bc97ce9 | 2006-04-28 22:51:59 -0500 | [diff] [blame] | 190 | u64 rpn; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | long l, limit; |
Robert Jennings | 6490c49 | 2008-07-24 04:31:16 +1000 | [diff] [blame] | 192 | long tcenum_start = tcenum, npages_start = npages; |
| 193 | int ret = 0; |
Anton Blanchard | c1703e8 | 2012-06-03 19:42:13 +0000 | [diff] [blame] | 194 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | |
Michael Ellerman | 541b275 | 2008-05-08 14:27:23 +1000 | [diff] [blame] | 196 | if (npages == 1) { |
Robert Jennings | 6490c49 | 2008-07-24 04:31:16 +1000 | [diff] [blame] | 197 | return tce_build_pSeriesLP(tbl, tcenum, npages, uaddr, |
| 198 | direction, attrs); |
Michael Ellerman | 541b275 | 2008-05-08 14:27:23 +1000 | [diff] [blame] | 199 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | |
Anton Blanchard | c1703e8 | 2012-06-03 19:42:13 +0000 | [diff] [blame] | 201 | local_irq_save(flags); /* to protect tcep and the page behind it */ |
| 202 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | tcep = __get_cpu_var(tce_page); |
| 204 | |
| 205 | /* This is safe to do since interrupts are off when we're called |
| 206 | * from iommu_alloc{,_sg}() |
| 207 | */ |
| 208 | if (!tcep) { |
Anton Blanchard | df01560 | 2013-10-17 23:21:15 +1100 | [diff] [blame] | 209 | tcep = (__be64 *)__get_free_page(GFP_ATOMIC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | /* If allocation fails, fall back to the loop implementation */ |
Michael Ellerman | 541b275 | 2008-05-08 14:27:23 +1000 | [diff] [blame] | 211 | if (!tcep) { |
Anton Blanchard | c1703e8 | 2012-06-03 19:42:13 +0000 | [diff] [blame] | 212 | local_irq_restore(flags); |
Robert Jennings | 6490c49 | 2008-07-24 04:31:16 +1000 | [diff] [blame] | 213 | return tce_build_pSeriesLP(tbl, tcenum, npages, uaddr, |
Mark Nelson | 4f3dd8a | 2008-07-16 05:51:47 +1000 | [diff] [blame] | 214 | direction, attrs); |
Michael Ellerman | 541b275 | 2008-05-08 14:27:23 +1000 | [diff] [blame] | 215 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | __get_cpu_var(tce_page) = tcep; |
| 217 | } |
| 218 | |
Michael Ellerman | 474e3d5 | 2012-07-25 21:19:57 +0000 | [diff] [blame] | 219 | rpn = __pa(uaddr) >> TCE_SHIFT; |
Olof Johansson | bc97ce9 | 2006-04-28 22:51:59 -0500 | [diff] [blame] | 220 | proto_tce = TCE_PCI_READ; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 221 | if (direction != DMA_TO_DEVICE) |
Olof Johansson | bc97ce9 | 2006-04-28 22:51:59 -0500 | [diff] [blame] | 222 | proto_tce |= TCE_PCI_WRITE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | |
| 224 | /* We can map max one pageful of TCEs at a time */ |
| 225 | do { |
| 226 | /* |
| 227 | * Set up the page with TCE data, looping through and setting |
| 228 | * the values. |
| 229 | */ |
Olof Johansson | bc97ce9 | 2006-04-28 22:51:59 -0500 | [diff] [blame] | 230 | limit = min_t(long, npages, 4096/TCE_ENTRY_SIZE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | |
| 232 | for (l = 0; l < limit; l++) { |
Anton Blanchard | df01560 | 2013-10-17 23:21:15 +1100 | [diff] [blame] | 233 | tcep[l] = cpu_to_be64(proto_tce | (rpn & TCE_RPN_MASK) << TCE_RPN_SHIFT); |
Olof Johansson | bc97ce9 | 2006-04-28 22:51:59 -0500 | [diff] [blame] | 234 | rpn++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | } |
| 236 | |
| 237 | rc = plpar_tce_put_indirect((u64)tbl->it_index, |
| 238 | (u64)tcenum << 12, |
Michael Ellerman | 474e3d5 | 2012-07-25 21:19:57 +0000 | [diff] [blame] | 239 | (u64)__pa(tcep), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 240 | limit); |
| 241 | |
| 242 | npages -= limit; |
| 243 | tcenum += limit; |
| 244 | } while (npages > 0 && !rc); |
| 245 | |
Anton Blanchard | c1703e8 | 2012-06-03 19:42:13 +0000 | [diff] [blame] | 246 | local_irq_restore(flags); |
| 247 | |
Robert Jennings | 6490c49 | 2008-07-24 04:31:16 +1000 | [diff] [blame] | 248 | if (unlikely(rc == H_NOT_ENOUGH_RESOURCES)) { |
| 249 | ret = (int)rc; |
| 250 | tce_freemulti_pSeriesLP(tbl, tcenum_start, |
| 251 | (npages_start - (npages + limit))); |
| 252 | return ret; |
| 253 | } |
| 254 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 255 | if (rc && printk_ratelimit()) { |
Ingo Molnar | fe33332 | 2009-01-06 14:26:03 +0000 | [diff] [blame] | 256 | printk("tce_buildmulti_pSeriesLP: plpar_tce_put failed. rc=%lld\n", rc); |
| 257 | printk("\tindex = 0x%llx\n", (u64)tbl->it_index); |
| 258 | printk("\tnpages = 0x%llx\n", (u64)npages); |
| 259 | printk("\ttce[0] val = 0x%llx\n", tcep[0]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | show_stack(current, (unsigned long *)__get_SP()); |
| 261 | } |
Robert Jennings | 6490c49 | 2008-07-24 04:31:16 +1000 | [diff] [blame] | 262 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 263 | } |
| 264 | |
| 265 | static void tce_free_pSeriesLP(struct iommu_table *tbl, long tcenum, long npages) |
| 266 | { |
| 267 | u64 rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | while (npages--) { |
Olof Johansson | bc97ce9 | 2006-04-28 22:51:59 -0500 | [diff] [blame] | 270 | rc = plpar_tce_put((u64)tbl->it_index, (u64)tcenum << 12, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 271 | |
| 272 | if (rc && printk_ratelimit()) { |
Ingo Molnar | fe33332 | 2009-01-06 14:26:03 +0000 | [diff] [blame] | 273 | printk("tce_free_pSeriesLP: plpar_tce_put failed. rc=%lld\n", rc); |
| 274 | printk("\tindex = 0x%llx\n", (u64)tbl->it_index); |
| 275 | printk("\ttcenum = 0x%llx\n", (u64)tcenum); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | show_stack(current, (unsigned long *)__get_SP()); |
| 277 | } |
| 278 | |
| 279 | tcenum++; |
| 280 | } |
| 281 | } |
| 282 | |
| 283 | |
| 284 | static void tce_freemulti_pSeriesLP(struct iommu_table *tbl, long tcenum, long npages) |
| 285 | { |
| 286 | u64 rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 287 | |
Olof Johansson | bc97ce9 | 2006-04-28 22:51:59 -0500 | [diff] [blame] | 288 | rc = plpar_tce_stuff((u64)tbl->it_index, (u64)tcenum << 12, 0, npages); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | |
| 290 | if (rc && printk_ratelimit()) { |
| 291 | printk("tce_freemulti_pSeriesLP: plpar_tce_stuff failed\n"); |
Ingo Molnar | fe33332 | 2009-01-06 14:26:03 +0000 | [diff] [blame] | 292 | printk("\trc = %lld\n", rc); |
| 293 | printk("\tindex = 0x%llx\n", (u64)tbl->it_index); |
| 294 | printk("\tnpages = 0x%llx\n", (u64)npages); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 295 | show_stack(current, (unsigned long *)__get_SP()); |
| 296 | } |
| 297 | } |
| 298 | |
Haren Myneni | 5f50867 | 2006-06-22 23:35:10 -0700 | [diff] [blame] | 299 | static unsigned long tce_get_pSeriesLP(struct iommu_table *tbl, long tcenum) |
| 300 | { |
| 301 | u64 rc; |
| 302 | unsigned long tce_ret; |
| 303 | |
Haren Myneni | 5f50867 | 2006-06-22 23:35:10 -0700 | [diff] [blame] | 304 | rc = plpar_tce_get((u64)tbl->it_index, (u64)tcenum << 12, &tce_ret); |
| 305 | |
| 306 | if (rc && printk_ratelimit()) { |
Ingo Molnar | fe33332 | 2009-01-06 14:26:03 +0000 | [diff] [blame] | 307 | printk("tce_get_pSeriesLP: plpar_tce_get failed. rc=%lld\n", rc); |
| 308 | printk("\tindex = 0x%llx\n", (u64)tbl->it_index); |
| 309 | printk("\ttcenum = 0x%llx\n", (u64)tcenum); |
Haren Myneni | 5f50867 | 2006-06-22 23:35:10 -0700 | [diff] [blame] | 310 | show_stack(current, (unsigned long *)__get_SP()); |
| 311 | } |
| 312 | |
| 313 | return tce_ret; |
| 314 | } |
| 315 | |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 316 | /* this is compatible with cells for the device tree property */ |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 317 | struct 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 | |
| 324 | struct 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 */ |
| 331 | struct ddw_query_response { |
Anton Blanchard | df01560 | 2013-10-17 23:21:15 +1100 | [diff] [blame] | 332 | __be32 windows_available; |
| 333 | __be32 largest_available_block; |
| 334 | __be32 page_size; |
| 335 | __be32 migration_capable; |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 336 | }; |
| 337 | |
| 338 | struct ddw_create_response { |
Anton Blanchard | df01560 | 2013-10-17 23:21:15 +1100 | [diff] [blame] | 339 | __be32 liobn; |
| 340 | __be32 addr_hi; |
| 341 | __be32 addr_lo; |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 342 | }; |
| 343 | |
| 344 | static LIST_HEAD(direct_window_list); |
| 345 | /* prevents races between memory on/offline and window creation */ |
| 346 | static DEFINE_SPINLOCK(direct_window_list_lock); |
| 347 | /* protects initializing window twice for same device */ |
| 348 | static DEFINE_MUTEX(direct_window_init_mutex); |
| 349 | #define DIRECT64_PROPNAME "linux,direct64-ddr-window-info" |
| 350 | |
| 351 | static 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 Aravamudan | 22b3829 | 2013-01-18 09:16:24 +0000 | [diff] [blame] | 384 | next += limit * tce_size; |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 385 | num_tce -= limit; |
| 386 | } while (num_tce > 0 && !rc); |
| 387 | |
| 388 | return rc; |
| 389 | } |
| 390 | |
| 391 | static 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 Blanchard | df01560 | 2013-10-17 23:21:15 +1100 | [diff] [blame] | 395 | u64 tce_size, num_tce, dma_offset, next, proto_tce, liobn; |
| 396 | __be64 *tcep; |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 397 | u32 tce_shift; |
| 398 | u64 rc = 0; |
| 399 | long l, limit; |
| 400 | |
| 401 | local_irq_disable(); /* to protect tcep and the page behind it */ |
| 402 | tcep = __get_cpu_var(tce_page); |
| 403 | |
| 404 | if (!tcep) { |
Anton Blanchard | df01560 | 2013-10-17 23:21:15 +1100 | [diff] [blame] | 405 | tcep = (__be64 *)__get_free_page(GFP_ATOMIC); |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 406 | if (!tcep) { |
| 407 | local_irq_enable(); |
| 408 | return -ENOMEM; |
| 409 | } |
| 410 | __get_cpu_var(tce_page) = tcep; |
| 411 | } |
| 412 | |
| 413 | proto_tce = TCE_PCI_READ | TCE_PCI_WRITE; |
| 414 | |
| 415 | liobn = (u64)be32_to_cpu(maprange->liobn); |
| 416 | tce_shift = be32_to_cpu(maprange->tce_shift); |
| 417 | tce_size = 1ULL << tce_shift; |
| 418 | next = start_pfn << PAGE_SHIFT; |
| 419 | num_tce = num_pfn << PAGE_SHIFT; |
| 420 | |
| 421 | /* round back to the beginning of the tce page size */ |
| 422 | num_tce += next & (tce_size - 1); |
| 423 | next &= ~(tce_size - 1); |
| 424 | |
| 425 | /* covert to number of tces */ |
| 426 | num_tce |= tce_size - 1; |
| 427 | num_tce >>= tce_shift; |
| 428 | |
| 429 | /* We can map max one pageful of TCEs at a time */ |
| 430 | do { |
| 431 | /* |
| 432 | * Set up the page with TCE data, looping through and setting |
| 433 | * the values. |
| 434 | */ |
| 435 | limit = min_t(long, num_tce, 4096/TCE_ENTRY_SIZE); |
| 436 | dma_offset = next + be64_to_cpu(maprange->dma_base); |
| 437 | |
| 438 | for (l = 0; l < limit; l++) { |
Anton Blanchard | df01560 | 2013-10-17 23:21:15 +1100 | [diff] [blame] | 439 | tcep[l] = cpu_to_be64(proto_tce | next); |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 440 | next += tce_size; |
| 441 | } |
| 442 | |
| 443 | rc = plpar_tce_put_indirect(liobn, |
| 444 | dma_offset, |
Michael Ellerman | 474e3d5 | 2012-07-25 21:19:57 +0000 | [diff] [blame] | 445 | (u64)__pa(tcep), |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 446 | limit); |
| 447 | |
| 448 | num_tce -= limit; |
| 449 | } while (num_tce > 0 && !rc); |
| 450 | |
| 451 | /* error cleanup: caller will clear whole range */ |
| 452 | |
| 453 | local_irq_enable(); |
| 454 | return rc; |
| 455 | } |
| 456 | |
| 457 | static 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 Rothwell | bed5927 | 2007-03-04 17:04:44 +1100 | [diff] [blame] | 464 | #ifdef CONFIG_PCI |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 465 | static void iommu_table_setparms(struct pci_controller *phb, |
| 466 | struct device_node *dn, |
Olof Johansson | bc97ce9 | 2006-04-28 22:51:59 -0500 | [diff] [blame] | 467 | struct iommu_table *tbl) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 468 | { |
| 469 | struct device_node *node; |
Milton Miller | 8d3d589 | 2011-06-29 20:58:33 +0000 | [diff] [blame] | 470 | const unsigned long *basep, *sw_inval; |
Nathan Lynch | 9938c47 | 2006-10-04 22:28:00 -0500 | [diff] [blame] | 471 | const u32 *sizep; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 472 | |
Stephen Rothwell | 44ef339 | 2007-12-10 14:33:21 +1100 | [diff] [blame] | 473 | node = phb->dn; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 474 | |
Stephen Rothwell | e2eb639 | 2007-04-03 22:26:41 +1000 | [diff] [blame] | 475 | basep = of_get_property(node, "linux,tce-base", NULL); |
| 476 | sizep = of_get_property(node, "linux,tce-size", NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 477 | if (basep == NULL || sizep == NULL) { |
| 478 | printk(KERN_ERR "PCI_DMA: iommu_table_setparms: %s has " |
| 479 | "missing tce entries !\n", dn->full_name); |
| 480 | return; |
| 481 | } |
| 482 | |
| 483 | tbl->it_base = (unsigned long)__va(*basep); |
Haren Myneni | 5f50867 | 2006-06-22 23:35:10 -0700 | [diff] [blame] | 484 | |
Milton Miller | 62a8bd6 | 2008-10-22 15:39:04 -0500 | [diff] [blame] | 485 | if (!is_kdump_kernel()) |
Mohan Kumar M | 54622f1 | 2008-10-21 17:38:10 +0000 | [diff] [blame] | 486 | memset((void *)tbl->it_base, 0, *sizep); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 487 | |
| 488 | tbl->it_busno = phb->bus->number; |
Alistair Popple | 3a55317 | 2013-12-09 18:17:02 +1100 | [diff] [blame^] | 489 | tbl->it_page_shift = IOMMU_PAGE_SHIFT_4K; |
Olof Johansson | bc97ce9 | 2006-04-28 22:51:59 -0500 | [diff] [blame] | 490 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 491 | /* Units of tce entries */ |
Alistair Popple | 3a55317 | 2013-12-09 18:17:02 +1100 | [diff] [blame^] | 492 | tbl->it_offset = phb->dma_window_base_cur >> tbl->it_page_shift; |
Olof Johansson | bc97ce9 | 2006-04-28 22:51:59 -0500 | [diff] [blame] | 493 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 494 | /* Test if we are going over 2GB of DMA space */ |
Olof Johansson | 3c2822c | 2005-09-21 09:55:31 -0700 | [diff] [blame] | 495 | if (phb->dma_window_base_cur + phb->dma_window_size > 0x80000000ul) { |
| 496 | udbg_printf("PCI_DMA: Unexpected number of IOAs under this PHB.\n"); |
Olof Johansson | bc97ce9 | 2006-04-28 22:51:59 -0500 | [diff] [blame] | 497 | panic("PCI_DMA: Unexpected number of IOAs under this PHB.\n"); |
Olof Johansson | 3c2822c | 2005-09-21 09:55:31 -0700 | [diff] [blame] | 498 | } |
Olof Johansson | bc97ce9 | 2006-04-28 22:51:59 -0500 | [diff] [blame] | 499 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 500 | phb->dma_window_base_cur += phb->dma_window_size; |
| 501 | |
| 502 | /* Set the tce table size - measured in entries */ |
Alistair Popple | 3a55317 | 2013-12-09 18:17:02 +1100 | [diff] [blame^] | 503 | tbl->it_size = phb->dma_window_size >> tbl->it_page_shift; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 504 | |
| 505 | tbl->it_index = 0; |
| 506 | tbl->it_blocksize = 16; |
| 507 | tbl->it_type = TCE_PCI; |
Milton Miller | 8d3d589 | 2011-06-29 20:58:33 +0000 | [diff] [blame] | 508 | |
| 509 | sw_inval = of_get_property(node, "linux,tce-sw-invalidate-info", NULL); |
| 510 | if (sw_inval) { |
| 511 | /* |
| 512 | * This property contains information on how to |
| 513 | * invalidate the TCE entry. The first property is |
| 514 | * the base MMIO address used to invalidate entries. |
| 515 | * The second property tells us the format of the TCE |
| 516 | * invalidate (whether it needs to be shifted) and |
| 517 | * some magic routing info to add to our invalidate |
| 518 | * command. |
| 519 | */ |
| 520 | tbl->it_index = (unsigned long) ioremap(sw_inval[0], 8); |
| 521 | tbl->it_busno = sw_inval[1]; /* overload this with magic */ |
Benjamin Herrenschmidt | 1f1616e | 2011-11-06 18:55:59 +0000 | [diff] [blame] | 522 | tbl->it_type = TCE_PCI_SWINV_CREATE | TCE_PCI_SWINV_FREE; |
Milton Miller | 8d3d589 | 2011-06-29 20:58:33 +0000 | [diff] [blame] | 523 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 524 | } |
| 525 | |
| 526 | /* |
| 527 | * iommu_table_setparms_lpar |
| 528 | * |
| 529 | * Function: On pSeries LPAR systems, return TCE table info, given a pci bus. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 530 | */ |
| 531 | static void iommu_table_setparms_lpar(struct pci_controller *phb, |
| 532 | struct device_node *dn, |
| 533 | struct iommu_table *tbl, |
Anton Blanchard | 2083f68 | 2013-08-07 02:01:36 +1000 | [diff] [blame] | 534 | const __be32 *dma_window) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 535 | { |
Jeremy Kerr | 4c76e0b | 2006-05-18 18:06:37 +1000 | [diff] [blame] | 536 | unsigned long offset, size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 537 | |
Jeremy Kerr | 4c76e0b | 2006-05-18 18:06:37 +1000 | [diff] [blame] | 538 | of_parse_dma_window(dn, dma_window, &tbl->it_index, &offset, &size); |
| 539 | |
Benjamin Herrenschmidt | b8c49de | 2010-12-09 15:24:01 +1100 | [diff] [blame] | 540 | tbl->it_busno = phb->bus->number; |
Alistair Popple | 3a55317 | 2013-12-09 18:17:02 +1100 | [diff] [blame^] | 541 | tbl->it_page_shift = IOMMU_PAGE_SHIFT_4K; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 542 | tbl->it_base = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 543 | tbl->it_blocksize = 16; |
| 544 | tbl->it_type = TCE_PCI; |
Alistair Popple | 3a55317 | 2013-12-09 18:17:02 +1100 | [diff] [blame^] | 545 | tbl->it_offset = offset >> tbl->it_page_shift; |
| 546 | tbl->it_size = size >> tbl->it_page_shift; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 547 | } |
| 548 | |
Benjamin Herrenschmidt | 12d04ee | 2006-11-11 17:25:02 +1100 | [diff] [blame] | 549 | static void pci_dma_bus_setup_pSeries(struct pci_bus *bus) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 550 | { |
Olof Johansson | 3c2822c | 2005-09-21 09:55:31 -0700 | [diff] [blame] | 551 | struct device_node *dn; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 552 | struct iommu_table *tbl; |
Olof Johansson | 3c2822c | 2005-09-21 09:55:31 -0700 | [diff] [blame] | 553 | struct device_node *isa_dn, *isa_dn_orig; |
| 554 | struct device_node *tmp; |
| 555 | struct pci_dn *pci; |
| 556 | int children; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 557 | |
Olof Johansson | 3c2822c | 2005-09-21 09:55:31 -0700 | [diff] [blame] | 558 | dn = pci_bus_to_OF_node(bus); |
Benjamin Herrenschmidt | 12d04ee | 2006-11-11 17:25:02 +1100 | [diff] [blame] | 559 | |
Michael Ellerman | f7ebf35 | 2008-04-24 15:13:19 +1000 | [diff] [blame] | 560 | pr_debug("pci_dma_bus_setup_pSeries: setting up bus %s\n", dn->full_name); |
Olof Johansson | 3c2822c | 2005-09-21 09:55:31 -0700 | [diff] [blame] | 561 | |
| 562 | if (bus->self) { |
| 563 | /* This is not a root bus, any setup will be done for the |
| 564 | * device-side of the bridge in iommu_dev_setup_pSeries(). |
| 565 | */ |
| 566 | return; |
| 567 | } |
Benjamin Herrenschmidt | 12d04ee | 2006-11-11 17:25:02 +1100 | [diff] [blame] | 568 | pci = PCI_DN(dn); |
Olof Johansson | 3c2822c | 2005-09-21 09:55:31 -0700 | [diff] [blame] | 569 | |
| 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 Blanchard | d3c58fb | 2006-06-20 18:00:30 +1000 | [diff] [blame] | 581 | /* Count number of direct PCI children of the PHB. */ |
Olof Johansson | 3c2822c | 2005-09-21 09:55:31 -0700 | [diff] [blame] | 582 | for (children = 0, tmp = dn->child; tmp; tmp = tmp->sibling) |
Anton Blanchard | d3c58fb | 2006-06-20 18:00:30 +1000 | [diff] [blame] | 583 | children++; |
Olof Johansson | 3c2822c | 2005-09-21 09:55:31 -0700 | [diff] [blame] | 584 | |
Michael Ellerman | f7ebf35 | 2008-04-24 15:13:19 +1000 | [diff] [blame] | 585 | pr_debug("Children: %d\n", children); |
Olof Johansson | 3c2822c | 2005-09-21 09:55:31 -0700 | [diff] [blame] | 586 | |
| 587 | /* Calculate amount of DMA window per slot. Each window must be |
| 588 | * a power of two (due to pci_alloc_consistent requirements). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 589 | * |
Olof Johansson | 3c2822c | 2005-09-21 09:55:31 -0700 | [diff] [blame] | 590 | * Keep 256MB aside for PHBs with ISA. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 591 | */ |
| 592 | |
Olof Johansson | 3c2822c | 2005-09-21 09:55:31 -0700 | [diff] [blame] | 593 | if (!isa_dn) { |
| 594 | /* No ISA/IDE - just set window size and return */ |
| 595 | pci->phb->dma_window_size = 0x80000000ul; /* To be divided */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 596 | |
Olof Johansson | 3c2822c | 2005-09-21 09:55:31 -0700 | [diff] [blame] | 597 | while (pci->phb->dma_window_size * children > 0x80000000ul) |
| 598 | pci->phb->dma_window_size >>= 1; |
Stephen Rothwell | 41febbc | 2009-06-02 18:21:30 +0000 | [diff] [blame] | 599 | pr_debug("No ISA/IDE, window size is 0x%llx\n", |
Michael Ellerman | f7ebf35 | 2008-04-24 15:13:19 +1000 | [diff] [blame] | 600 | pci->phb->dma_window_size); |
Olof Johansson | 3c2822c | 2005-09-21 09:55:31 -0700 | [diff] [blame] | 601 | pci->phb->dma_window_base_cur = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 602 | |
Olof Johansson | 3c2822c | 2005-09-21 09:55:31 -0700 | [diff] [blame] | 603 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 604 | } |
Olof Johansson | 3c2822c | 2005-09-21 09:55:31 -0700 | [diff] [blame] | 605 | |
| 606 | /* If we have ISA, then we probably have an IDE |
| 607 | * controller too. Allocate a 128MB table but |
| 608 | * skip the first 128MB to avoid stepping on ISA |
| 609 | * space. |
| 610 | */ |
| 611 | pci->phb->dma_window_size = 0x8000000ul; |
| 612 | pci->phb->dma_window_base_cur = 0x8000000ul; |
| 613 | |
Anton Blanchard | 7aa241f | 2010-08-11 16:42:48 +0000 | [diff] [blame] | 614 | tbl = kzalloc_node(sizeof(struct iommu_table), GFP_KERNEL, |
Anton Blanchard | ca1588e | 2006-06-10 20:58:08 +1000 | [diff] [blame] | 615 | pci->phb->node); |
Olof Johansson | 3c2822c | 2005-09-21 09:55:31 -0700 | [diff] [blame] | 616 | |
| 617 | iommu_table_setparms(pci->phb, dn, tbl); |
Anton Blanchard | ca1588e | 2006-06-10 20:58:08 +1000 | [diff] [blame] | 618 | pci->iommu_table = iommu_init_table(tbl, pci->phb->node); |
Alexey Kardashevskiy | 5b25199 | 2013-05-21 13:33:11 +1000 | [diff] [blame] | 619 | iommu_register_group(tbl, pci_domain_nr(bus), 0); |
Olof Johansson | 3c2822c | 2005-09-21 09:55:31 -0700 | [diff] [blame] | 620 | |
| 621 | /* Divide the rest (1.75GB) among the children */ |
| 622 | pci->phb->dma_window_size = 0x80000000ul; |
| 623 | while (pci->phb->dma_window_size * children > 0x70000000ul) |
| 624 | pci->phb->dma_window_size >>= 1; |
| 625 | |
Stephen Rothwell | 41febbc | 2009-06-02 18:21:30 +0000 | [diff] [blame] | 626 | pr_debug("ISA/IDE, window size is 0x%llx\n", pci->phb->dma_window_size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 627 | } |
| 628 | |
| 629 | |
Benjamin Herrenschmidt | 12d04ee | 2006-11-11 17:25:02 +1100 | [diff] [blame] | 630 | static void pci_dma_bus_setup_pSeriesLP(struct pci_bus *bus) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 631 | { |
| 632 | struct iommu_table *tbl; |
| 633 | struct device_node *dn, *pdn; |
Paul Mackerras | 1635317 | 2005-09-06 13:17:54 +1000 | [diff] [blame] | 634 | struct pci_dn *ppci; |
Anton Blanchard | 2083f68 | 2013-08-07 02:01:36 +1000 | [diff] [blame] | 635 | const __be32 *dma_window = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 636 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 637 | dn = pci_bus_to_OF_node(bus); |
| 638 | |
Michael Ellerman | f7ebf35 | 2008-04-24 15:13:19 +1000 | [diff] [blame] | 639 | pr_debug("pci_dma_bus_setup_pSeriesLP: setting up bus %s\n", |
| 640 | dn->full_name); |
Benjamin Herrenschmidt | 12d04ee | 2006-11-11 17:25:02 +1100 | [diff] [blame] | 641 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 642 | /* Find nearest ibm,dma-window, walking up the device tree */ |
| 643 | for (pdn = dn; pdn != NULL; pdn = pdn->parent) { |
Stephen Rothwell | e2eb639 | 2007-04-03 22:26:41 +1000 | [diff] [blame] | 644 | dma_window = of_get_property(pdn, "ibm,dma-window", NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 645 | if (dma_window != NULL) |
| 646 | break; |
| 647 | } |
| 648 | |
| 649 | if (dma_window == NULL) { |
Michael Ellerman | f7ebf35 | 2008-04-24 15:13:19 +1000 | [diff] [blame] | 650 | pr_debug(" no ibm,dma-window property !\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 651 | return; |
| 652 | } |
| 653 | |
linas | e07102d | 2005-12-05 19:37:35 -0600 | [diff] [blame] | 654 | ppci = PCI_DN(pdn); |
Benjamin Herrenschmidt | 12d04ee | 2006-11-11 17:25:02 +1100 | [diff] [blame] | 655 | |
Michael Ellerman | f7ebf35 | 2008-04-24 15:13:19 +1000 | [diff] [blame] | 656 | pr_debug(" parent is %s, iommu_table: 0x%p\n", |
| 657 | pdn->full_name, ppci->iommu_table); |
Benjamin Herrenschmidt | 12d04ee | 2006-11-11 17:25:02 +1100 | [diff] [blame] | 658 | |
Paul Mackerras | 1635317 | 2005-09-06 13:17:54 +1000 | [diff] [blame] | 659 | if (!ppci->iommu_table) { |
Anton Blanchard | 7aa241f | 2010-08-11 16:42:48 +0000 | [diff] [blame] | 660 | tbl = kzalloc_node(sizeof(struct iommu_table), GFP_KERNEL, |
Anton Blanchard | ca1588e | 2006-06-10 20:58:08 +1000 | [diff] [blame] | 661 | ppci->phb->node); |
Benjamin Herrenschmidt | b8c49de | 2010-12-09 15:24:01 +1100 | [diff] [blame] | 662 | iommu_table_setparms_lpar(ppci->phb, pdn, tbl, dma_window); |
Anton Blanchard | ca1588e | 2006-06-10 20:58:08 +1000 | [diff] [blame] | 663 | ppci->iommu_table = iommu_init_table(tbl, ppci->phb->node); |
Alexey Kardashevskiy | 5b25199 | 2013-05-21 13:33:11 +1000 | [diff] [blame] | 664 | iommu_register_group(tbl, pci_domain_nr(bus), 0); |
Michael Ellerman | f7ebf35 | 2008-04-24 15:13:19 +1000 | [diff] [blame] | 665 | pr_debug(" created table: %p\n", ppci->iommu_table); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 666 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 667 | } |
| 668 | |
| 669 | |
Benjamin Herrenschmidt | 12d04ee | 2006-11-11 17:25:02 +1100 | [diff] [blame] | 670 | static void pci_dma_dev_setup_pSeries(struct pci_dev *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 671 | { |
Benjamin Herrenschmidt | 12d04ee | 2006-11-11 17:25:02 +1100 | [diff] [blame] | 672 | struct device_node *dn; |
Olof Johansson | 3c2822c | 2005-09-21 09:55:31 -0700 | [diff] [blame] | 673 | struct iommu_table *tbl; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 674 | |
Michael Ellerman | f7ebf35 | 2008-04-24 15:13:19 +1000 | [diff] [blame] | 675 | pr_debug("pci_dma_dev_setup_pSeries: %s\n", pci_name(dev)); |
Olof Johansson | 3c2822c | 2005-09-21 09:55:31 -0700 | [diff] [blame] | 676 | |
Grant Likely | 58f9b0b | 2010-04-13 16:12:56 -0700 | [diff] [blame] | 677 | dn = dev->dev.of_node; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 678 | |
Olof Johansson | 3c2822c | 2005-09-21 09:55:31 -0700 | [diff] [blame] | 679 | /* If we're the direct child of a root bus, then we need to allocate |
| 680 | * an iommu table ourselves. The bus setup code should have setup |
| 681 | * the window sizes already. |
| 682 | */ |
| 683 | if (!dev->bus->self) { |
Benjamin Herrenschmidt | 12d04ee | 2006-11-11 17:25:02 +1100 | [diff] [blame] | 684 | struct pci_controller *phb = PCI_DN(dn)->phb; |
| 685 | |
Michael Ellerman | f7ebf35 | 2008-04-24 15:13:19 +1000 | [diff] [blame] | 686 | pr_debug(" --> first child, no bridge. Allocating iommu table.\n"); |
Anton Blanchard | 7aa241f | 2010-08-11 16:42:48 +0000 | [diff] [blame] | 687 | tbl = kzalloc_node(sizeof(struct iommu_table), GFP_KERNEL, |
Benjamin Herrenschmidt | 12d04ee | 2006-11-11 17:25:02 +1100 | [diff] [blame] | 688 | phb->node); |
| 689 | iommu_table_setparms(phb, dn, tbl); |
Linas Vepstas | 7731925 | 2007-01-10 19:16:29 -0600 | [diff] [blame] | 690 | PCI_DN(dn)->iommu_table = iommu_init_table(tbl, phb->node); |
Alexey Kardashevskiy | 5b25199 | 2013-05-21 13:33:11 +1000 | [diff] [blame] | 691 | iommu_register_group(tbl, pci_domain_nr(phb->bus), 0); |
Alexey Kardashevskiy | d905c5d | 2013-11-21 17:43:14 +1100 | [diff] [blame] | 692 | set_iommu_table_base_and_group(&dev->dev, |
| 693 | PCI_DN(dn)->iommu_table); |
Olof Johansson | 3c2822c | 2005-09-21 09:55:31 -0700 | [diff] [blame] | 694 | return; |
| 695 | } |
| 696 | |
| 697 | /* If this device is further down the bus tree, search upwards until |
| 698 | * an already allocated iommu table is found and use that. |
| 699 | */ |
| 700 | |
linas | e07102d | 2005-12-05 19:37:35 -0600 | [diff] [blame] | 701 | while (dn && PCI_DN(dn) && PCI_DN(dn)->iommu_table == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 702 | dn = dn->parent; |
| 703 | |
Benjamin Herrenschmidt | 12d04ee | 2006-11-11 17:25:02 +1100 | [diff] [blame] | 704 | if (dn && PCI_DN(dn)) |
Alexey Kardashevskiy | d905c5d | 2013-11-21 17:43:14 +1100 | [diff] [blame] | 705 | set_iommu_table_base_and_group(&dev->dev, |
| 706 | PCI_DN(dn)->iommu_table); |
Benjamin Herrenschmidt | 12d04ee | 2006-11-11 17:25:02 +1100 | [diff] [blame] | 707 | else |
| 708 | printk(KERN_WARNING "iommu: Device %s has no iommu table\n", |
| 709 | pci_name(dev)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 710 | } |
| 711 | |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 712 | static int __read_mostly disable_ddw; |
| 713 | |
| 714 | static 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 | |
| 722 | early_param("disable_ddw", disable_ddw_setup); |
| 723 | |
Nishanth Aravamudan | 25ebc45 | 2012-05-15 07:04:32 +0000 | [diff] [blame] | 724 | static inline void __remove_ddw(struct device_node *np, const u32 *ddw_avail, u64 liobn) |
| 725 | { |
| 726 | int ret; |
| 727 | |
| 728 | ret = rtas_call(ddw_avail[2], 1, 1, NULL, liobn); |
| 729 | if (ret) |
| 730 | pr_warning("%s: failed to remove DMA window: rtas returned " |
| 731 | "%d to ibm,remove-pe-dma-window(%x) %llx\n", |
| 732 | np->full_name, ret, ddw_avail[2], liobn); |
| 733 | else |
| 734 | pr_debug("%s: successfully removed DMA window: rtas returned " |
| 735 | "%d to ibm,remove-pe-dma-window(%x) %llx\n", |
| 736 | np->full_name, ret, ddw_avail[2], liobn); |
| 737 | } |
| 738 | |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 739 | static void remove_ddw(struct device_node *np) |
| 740 | { |
| 741 | struct dynamic_dma_window_prop *dwp; |
| 742 | struct property *win64; |
Milton Miller | b73a635 | 2011-05-11 12:25:00 +0000 | [diff] [blame] | 743 | const u32 *ddw_avail; |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 744 | u64 liobn; |
| 745 | int len, ret; |
| 746 | |
Milton Miller | b73a635 | 2011-05-11 12:25:00 +0000 | [diff] [blame] | 747 | ddw_avail = of_get_property(np, "ibm,ddw-applicable", &len); |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 748 | win64 = of_find_property(np, DIRECT64_PROPNAME, NULL); |
Milton Miller | 2573f68 | 2011-05-11 12:24:58 +0000 | [diff] [blame] | 749 | if (!win64) |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 750 | return; |
| 751 | |
Milton Miller | b73a635 | 2011-05-11 12:25:00 +0000 | [diff] [blame] | 752 | if (!ddw_avail || len < 3 * sizeof(u32) || win64->length < sizeof(*dwp)) |
Milton Miller | 2573f68 | 2011-05-11 12:24:58 +0000 | [diff] [blame] | 753 | goto delprop; |
| 754 | |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 755 | dwp = win64->value; |
| 756 | liobn = (u64)be32_to_cpu(dwp->liobn); |
| 757 | |
| 758 | /* clear the whole window, note the arg is in kernel pages */ |
| 759 | ret = tce_clearrange_multi_pSeriesLP(0, |
| 760 | 1ULL << (be32_to_cpu(dwp->window_shift) - PAGE_SHIFT), dwp); |
| 761 | if (ret) |
| 762 | pr_warning("%s failed to clear tces in window.\n", |
| 763 | np->full_name); |
| 764 | else |
| 765 | pr_debug("%s successfully cleared tces in window.\n", |
| 766 | np->full_name); |
| 767 | |
Nishanth Aravamudan | 25ebc45 | 2012-05-15 07:04:32 +0000 | [diff] [blame] | 768 | __remove_ddw(np, ddw_avail, liobn); |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 769 | |
Milton Miller | 2573f68 | 2011-05-11 12:24:58 +0000 | [diff] [blame] | 770 | delprop: |
Nathan Fontenot | 79d1c71 | 2012-10-02 16:58:46 +0000 | [diff] [blame] | 771 | ret = of_remove_property(np, win64); |
Milton Miller | 2573f68 | 2011-05-11 12:24:58 +0000 | [diff] [blame] | 772 | if (ret) |
Milton Miller | c856678 | 2011-05-11 12:24:59 +0000 | [diff] [blame] | 773 | pr_warning("%s: failed to remove direct window property: %d\n", |
Milton Miller | 2573f68 | 2011-05-11 12:24:58 +0000 | [diff] [blame] | 774 | np->full_name, ret); |
| 775 | } |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 776 | |
Milton Miller | b73a635 | 2011-05-11 12:25:00 +0000 | [diff] [blame] | 777 | static u64 find_existing_ddw(struct device_node *pdn) |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 778 | { |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 779 | struct direct_window *window; |
| 780 | const struct dynamic_dma_window_prop *direct64; |
| 781 | u64 dma_addr = 0; |
| 782 | |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 783 | spin_lock(&direct_window_list_lock); |
| 784 | /* check if we already created a window and dupe that config if so */ |
| 785 | list_for_each_entry(window, &direct_window_list, list) { |
| 786 | if (window->device == pdn) { |
| 787 | direct64 = window->prop; |
Anton Blanchard | df01560 | 2013-10-17 23:21:15 +1100 | [diff] [blame] | 788 | dma_addr = be64_to_cpu(direct64->dma_base); |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 789 | break; |
| 790 | } |
| 791 | } |
| 792 | spin_unlock(&direct_window_list_lock); |
| 793 | |
| 794 | return dma_addr; |
| 795 | } |
| 796 | |
Nishanth Aravamudan | 14b6f00 | 2013-01-28 16:03:58 +0000 | [diff] [blame] | 797 | static void __restore_default_window(struct eeh_dev *edev, |
| 798 | u32 ddw_restore_token) |
| 799 | { |
| 800 | u32 cfg_addr; |
| 801 | u64 buid; |
| 802 | int ret; |
| 803 | |
| 804 | /* |
| 805 | * Get the config address and phb buid of the PE window. |
| 806 | * Rely on eeh to retrieve this for us. |
| 807 | * Retrieve them from the pci device, not the node with the |
| 808 | * dma-window property |
| 809 | */ |
| 810 | cfg_addr = edev->config_addr; |
| 811 | if (edev->pe_config_addr) |
| 812 | cfg_addr = edev->pe_config_addr; |
| 813 | buid = edev->phb->buid; |
| 814 | |
| 815 | do { |
| 816 | ret = rtas_call(ddw_restore_token, 3, 1, NULL, cfg_addr, |
| 817 | BUID_HI(buid), BUID_LO(buid)); |
| 818 | } while (rtas_busy_delay(ret)); |
| 819 | pr_info("ibm,reset-pe-dma-windows(%x) %x %x %x returned %d\n", |
| 820 | ddw_restore_token, cfg_addr, BUID_HI(buid), BUID_LO(buid), ret); |
| 821 | } |
| 822 | |
Milton Miller | c856678 | 2011-05-11 12:24:59 +0000 | [diff] [blame] | 823 | static int find_existing_ddw_windows(void) |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 824 | { |
Milton Miller | c856678 | 2011-05-11 12:24:59 +0000 | [diff] [blame] | 825 | struct device_node *pdn; |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 826 | const struct dynamic_dma_window_prop *direct64; |
Nishanth Aravamudan | 14b6f00 | 2013-01-28 16:03:58 +0000 | [diff] [blame] | 827 | const u32 *ddw_extensions; |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 828 | |
Milton Miller | c856678 | 2011-05-11 12:24:59 +0000 | [diff] [blame] | 829 | if (!firmware_has_feature(FW_FEATURE_LPAR)) |
| 830 | return 0; |
| 831 | |
| 832 | for_each_node_with_property(pdn, DIRECT64_PROPNAME) { |
Nishanth Aravamudan | 14b6f00 | 2013-01-28 16:03:58 +0000 | [diff] [blame] | 833 | direct64 = of_get_property(pdn, DIRECT64_PROPNAME, NULL); |
Milton Miller | c856678 | 2011-05-11 12:24:59 +0000 | [diff] [blame] | 834 | if (!direct64) |
| 835 | continue; |
| 836 | |
Nishanth Aravamudan | 14b6f00 | 2013-01-28 16:03:58 +0000 | [diff] [blame] | 837 | /* |
| 838 | * We need to ensure the IOMMU table is active when we |
| 839 | * return from the IOMMU setup so that the common code |
| 840 | * can clear the table or find the holes. To that end, |
| 841 | * first, remove any existing DDW configuration. |
| 842 | */ |
| 843 | remove_ddw(pdn); |
Milton Miller | c856678 | 2011-05-11 12:24:59 +0000 | [diff] [blame] | 844 | |
Nishanth Aravamudan | 14b6f00 | 2013-01-28 16:03:58 +0000 | [diff] [blame] | 845 | /* |
| 846 | * Second, if we are running on a new enough level of |
| 847 | * firmware where the restore API is present, use it to |
| 848 | * restore the 32-bit window, which was removed in |
| 849 | * create_ddw. |
| 850 | * If the API is not present, then create_ddw couldn't |
| 851 | * have removed the 32-bit window in the first place, so |
| 852 | * removing the DDW configuration should be sufficient. |
| 853 | */ |
| 854 | ddw_extensions = of_get_property(pdn, "ibm,ddw-extensions", |
| 855 | NULL); |
| 856 | if (ddw_extensions && ddw_extensions[0] > 0) |
| 857 | __restore_default_window(of_node_to_eeh_dev(pdn), |
| 858 | ddw_extensions[1]); |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 859 | } |
| 860 | |
Milton Miller | c856678 | 2011-05-11 12:24:59 +0000 | [diff] [blame] | 861 | return 0; |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 862 | } |
Milton Miller | c856678 | 2011-05-11 12:24:59 +0000 | [diff] [blame] | 863 | machine_arch_initcall(pseries, find_existing_ddw_windows); |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 864 | |
Milton Miller | b73a635 | 2011-05-11 12:25:00 +0000 | [diff] [blame] | 865 | static int query_ddw(struct pci_dev *dev, const u32 *ddw_avail, |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 866 | struct ddw_query_response *query) |
| 867 | { |
Gavin Shan | 39baadb | 2012-03-20 21:30:28 +0000 | [diff] [blame] | 868 | struct eeh_dev *edev; |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 869 | u32 cfg_addr; |
| 870 | u64 buid; |
| 871 | int ret; |
| 872 | |
| 873 | /* |
| 874 | * Get the config address and phb buid of the PE window. |
| 875 | * Rely on eeh to retrieve this for us. |
| 876 | * Retrieve them from the pci device, not the node with the |
| 877 | * dma-window property |
| 878 | */ |
Gavin Shan | 39baadb | 2012-03-20 21:30:28 +0000 | [diff] [blame] | 879 | edev = pci_dev_to_eeh_dev(dev); |
| 880 | cfg_addr = edev->config_addr; |
| 881 | if (edev->pe_config_addr) |
| 882 | cfg_addr = edev->pe_config_addr; |
| 883 | buid = edev->phb->buid; |
| 884 | |
Milton Miller | b73a635 | 2011-05-11 12:25:00 +0000 | [diff] [blame] | 885 | ret = rtas_call(ddw_avail[0], 3, 5, (u32 *)query, |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 886 | cfg_addr, BUID_HI(buid), BUID_LO(buid)); |
| 887 | dev_info(&dev->dev, "ibm,query-pe-dma-windows(%x) %x %x %x" |
Milton Miller | b73a635 | 2011-05-11 12:25:00 +0000 | [diff] [blame] | 888 | " returned %d\n", ddw_avail[0], cfg_addr, BUID_HI(buid), |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 889 | BUID_LO(buid), ret); |
| 890 | return ret; |
| 891 | } |
| 892 | |
Milton Miller | b73a635 | 2011-05-11 12:25:00 +0000 | [diff] [blame] | 893 | static int create_ddw(struct pci_dev *dev, const u32 *ddw_avail, |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 894 | struct ddw_create_response *create, int page_shift, |
| 895 | int window_shift) |
| 896 | { |
Gavin Shan | 39baadb | 2012-03-20 21:30:28 +0000 | [diff] [blame] | 897 | struct eeh_dev *edev; |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 898 | u32 cfg_addr; |
| 899 | u64 buid; |
| 900 | int ret; |
| 901 | |
| 902 | /* |
| 903 | * Get the config address and phb buid of the PE window. |
| 904 | * Rely on eeh to retrieve this for us. |
| 905 | * Retrieve them from the pci device, not the node with the |
| 906 | * dma-window property |
| 907 | */ |
Gavin Shan | 39baadb | 2012-03-20 21:30:28 +0000 | [diff] [blame] | 908 | edev = pci_dev_to_eeh_dev(dev); |
| 909 | cfg_addr = edev->config_addr; |
| 910 | if (edev->pe_config_addr) |
| 911 | cfg_addr = edev->pe_config_addr; |
| 912 | buid = edev->phb->buid; |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 913 | |
| 914 | do { |
| 915 | /* extra outputs are LIOBN and dma-addr (hi, lo) */ |
Milton Miller | b73a635 | 2011-05-11 12:25:00 +0000 | [diff] [blame] | 916 | ret = rtas_call(ddw_avail[1], 5, 4, (u32 *)create, cfg_addr, |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 917 | BUID_HI(buid), BUID_LO(buid), page_shift, window_shift); |
| 918 | } while (rtas_busy_delay(ret)); |
| 919 | dev_info(&dev->dev, |
| 920 | "ibm,create-pe-dma-window(%x) %x %x %x %x %x returned %d " |
Milton Miller | b73a635 | 2011-05-11 12:25:00 +0000 | [diff] [blame] | 921 | "(liobn = 0x%x starting addr = %x %x)\n", ddw_avail[1], |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 922 | cfg_addr, BUID_HI(buid), BUID_LO(buid), page_shift, |
| 923 | window_shift, ret, create->liobn, create->addr_hi, create->addr_lo); |
| 924 | |
| 925 | return ret; |
| 926 | } |
| 927 | |
Nishanth Aravamudan | 25ebc45 | 2012-05-15 07:04:32 +0000 | [diff] [blame] | 928 | static void restore_default_window(struct pci_dev *dev, |
Nishanth Aravamudan | a1dabad | 2013-01-28 16:02:46 +0000 | [diff] [blame] | 929 | u32 ddw_restore_token) |
Nishanth Aravamudan | 25ebc45 | 2012-05-15 07:04:32 +0000 | [diff] [blame] | 930 | { |
Nishanth Aravamudan | 14b6f00 | 2013-01-28 16:03:58 +0000 | [diff] [blame] | 931 | __restore_default_window(pci_dev_to_eeh_dev(dev), ddw_restore_token); |
Nishanth Aravamudan | 25ebc45 | 2012-05-15 07:04:32 +0000 | [diff] [blame] | 932 | } |
| 933 | |
Nishanth Aravamudan | 6143569 | 2013-03-07 12:33:03 +0000 | [diff] [blame] | 934 | struct failed_ddw_pdn { |
| 935 | struct device_node *pdn; |
| 936 | struct list_head list; |
| 937 | }; |
| 938 | |
| 939 | static LIST_HEAD(failed_ddw_pdn_list); |
| 940 | |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 941 | /* |
| 942 | * If the PE supports dynamic dma windows, and there is space for a table |
| 943 | * that can map all pages in a linear offset, then setup such a table, |
| 944 | * and record the dma-offset in the struct device. |
| 945 | * |
| 946 | * dev: the pci device we are checking |
| 947 | * pdn: the parent pe node with the ibm,dma_window property |
| 948 | * Future: also check if we can remap the base window for our base page size |
| 949 | * |
| 950 | * returns the dma offset for use by dma_set_mask |
| 951 | */ |
| 952 | static u64 enable_ddw(struct pci_dev *dev, struct device_node *pdn) |
| 953 | { |
| 954 | int len, ret; |
| 955 | struct ddw_query_response query; |
| 956 | struct ddw_create_response create; |
| 957 | int page_shift; |
| 958 | u64 dma_addr, max_addr; |
| 959 | struct device_node *dn; |
Milton Miller | b73a635 | 2011-05-11 12:25:00 +0000 | [diff] [blame] | 960 | const u32 *uninitialized_var(ddw_avail); |
Nishanth Aravamudan | 25ebc45 | 2012-05-15 07:04:32 +0000 | [diff] [blame] | 961 | const u32 *uninitialized_var(ddw_extensions); |
| 962 | u32 ddw_restore_token = 0; |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 963 | struct direct_window *window; |
Nishanth Aravamudan | 7673033 | 2011-05-06 13:27:30 +0000 | [diff] [blame] | 964 | struct property *win64; |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 965 | struct dynamic_dma_window_prop *ddwprop; |
Nishanth Aravamudan | 25ebc45 | 2012-05-15 07:04:32 +0000 | [diff] [blame] | 966 | const void *dma_window = NULL; |
| 967 | unsigned long liobn, offset, size; |
Nishanth Aravamudan | 6143569 | 2013-03-07 12:33:03 +0000 | [diff] [blame] | 968 | struct failed_ddw_pdn *fpdn; |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 969 | |
| 970 | mutex_lock(&direct_window_init_mutex); |
| 971 | |
Milton Miller | b73a635 | 2011-05-11 12:25:00 +0000 | [diff] [blame] | 972 | dma_addr = find_existing_ddw(pdn); |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 973 | if (dma_addr != 0) |
| 974 | goto out_unlock; |
| 975 | |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 976 | /* |
Nishanth Aravamudan | 6143569 | 2013-03-07 12:33:03 +0000 | [diff] [blame] | 977 | * If we already went through this for a previous function of |
| 978 | * the same device and failed, we don't want to muck with the |
| 979 | * DMA window again, as it will race with in-flight operations |
| 980 | * and can lead to EEHs. The above mutex protects access to the |
| 981 | * list. |
| 982 | */ |
| 983 | list_for_each_entry(fpdn, &failed_ddw_pdn_list, list) { |
| 984 | if (!strcmp(fpdn->pdn->full_name, pdn->full_name)) |
| 985 | goto out_unlock; |
| 986 | } |
| 987 | |
| 988 | /* |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 989 | * the ibm,ddw-applicable property holds the tokens for: |
| 990 | * ibm,query-pe-dma-window |
| 991 | * ibm,create-pe-dma-window |
| 992 | * ibm,remove-pe-dma-window |
| 993 | * for the given node in that order. |
| 994 | * the property is actually in the parent, not the PE |
| 995 | */ |
Milton Miller | b73a635 | 2011-05-11 12:25:00 +0000 | [diff] [blame] | 996 | ddw_avail = of_get_property(pdn, "ibm,ddw-applicable", &len); |
| 997 | if (!ddw_avail || len < 3 * sizeof(u32)) |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 998 | goto out_unlock; |
| 999 | |
Nishanth Aravamudan | 25ebc45 | 2012-05-15 07:04:32 +0000 | [diff] [blame] | 1000 | /* |
| 1001 | * the extensions property is only required to exist in certain |
| 1002 | * levels of firmware and later |
| 1003 | * the ibm,ddw-extensions property is a list with the first |
| 1004 | * element containing the number of extensions and each |
| 1005 | * subsequent entry is a value corresponding to that extension |
| 1006 | */ |
| 1007 | ddw_extensions = of_get_property(pdn, "ibm,ddw-extensions", &len); |
| 1008 | if (ddw_extensions) { |
| 1009 | /* |
| 1010 | * each new defined extension length should be added to |
| 1011 | * the top of the switch so the "earlier" entries also |
| 1012 | * get picked up |
| 1013 | */ |
| 1014 | switch (ddw_extensions[0]) { |
| 1015 | /* ibm,reset-pe-dma-windows */ |
| 1016 | case 1: |
| 1017 | ddw_restore_token = ddw_extensions[1]; |
| 1018 | break; |
| 1019 | } |
| 1020 | } |
| 1021 | |
| 1022 | /* |
| 1023 | * Only remove the existing DMA window if we can restore back to |
| 1024 | * the default state. Removing the existing window maximizes the |
| 1025 | * resources available to firmware for dynamic window creation. |
| 1026 | */ |
| 1027 | if (ddw_restore_token) { |
| 1028 | dma_window = of_get_property(pdn, "ibm,dma-window", NULL); |
| 1029 | of_parse_dma_window(pdn, dma_window, &liobn, &offset, &size); |
| 1030 | __remove_ddw(pdn, ddw_avail, liobn); |
| 1031 | } |
| 1032 | |
| 1033 | /* |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 1034 | * Query if there is a second window of size to map the |
| 1035 | * whole partition. Query returns number of windows, largest |
| 1036 | * block assigned to PE (partition endpoint), and two bitmasks |
| 1037 | * of page sizes: supported and supported for migrate-dma. |
| 1038 | */ |
| 1039 | dn = pci_device_to_OF_node(dev); |
Milton Miller | b73a635 | 2011-05-11 12:25:00 +0000 | [diff] [blame] | 1040 | ret = query_ddw(dev, ddw_avail, &query); |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 1041 | if (ret != 0) |
Nishanth Aravamudan | 25ebc45 | 2012-05-15 07:04:32 +0000 | [diff] [blame] | 1042 | goto out_restore_window; |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 1043 | |
| 1044 | if (query.windows_available == 0) { |
| 1045 | /* |
| 1046 | * no additional windows are available for this device. |
| 1047 | * We might be able to reallocate the existing window, |
| 1048 | * trading in for a larger page size. |
| 1049 | */ |
| 1050 | dev_dbg(&dev->dev, "no free dynamic windows"); |
Nishanth Aravamudan | 25ebc45 | 2012-05-15 07:04:32 +0000 | [diff] [blame] | 1051 | goto out_restore_window; |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 1052 | } |
Anton Blanchard | df01560 | 2013-10-17 23:21:15 +1100 | [diff] [blame] | 1053 | if (be32_to_cpu(query.page_size) & 4) { |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 1054 | page_shift = 24; /* 16MB */ |
Anton Blanchard | df01560 | 2013-10-17 23:21:15 +1100 | [diff] [blame] | 1055 | } else if (be32_to_cpu(query.page_size) & 2) { |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 1056 | page_shift = 16; /* 64kB */ |
Anton Blanchard | df01560 | 2013-10-17 23:21:15 +1100 | [diff] [blame] | 1057 | } else if (be32_to_cpu(query.page_size) & 1) { |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 1058 | page_shift = 12; /* 4kB */ |
| 1059 | } else { |
| 1060 | dev_dbg(&dev->dev, "no supported direct page size in mask %x", |
| 1061 | query.page_size); |
Nishanth Aravamudan | 25ebc45 | 2012-05-15 07:04:32 +0000 | [diff] [blame] | 1062 | goto out_restore_window; |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 1063 | } |
| 1064 | /* verify the window * number of ptes will map the partition */ |
| 1065 | /* check largest block * page size > max memory hotplug addr */ |
| 1066 | max_addr = memory_hotplug_max(); |
Anton Blanchard | df01560 | 2013-10-17 23:21:15 +1100 | [diff] [blame] | 1067 | if (be32_to_cpu(query.largest_available_block) < (max_addr >> page_shift)) { |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 1068 | dev_dbg(&dev->dev, "can't map partiton max 0x%llx with %u " |
| 1069 | "%llu-sized pages\n", max_addr, query.largest_available_block, |
| 1070 | 1ULL << page_shift); |
Nishanth Aravamudan | 25ebc45 | 2012-05-15 07:04:32 +0000 | [diff] [blame] | 1071 | goto out_restore_window; |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 1072 | } |
| 1073 | len = order_base_2(max_addr); |
| 1074 | win64 = kzalloc(sizeof(struct property), GFP_KERNEL); |
| 1075 | if (!win64) { |
| 1076 | dev_info(&dev->dev, |
| 1077 | "couldn't allocate property for 64bit dma window\n"); |
Nishanth Aravamudan | 25ebc45 | 2012-05-15 07:04:32 +0000 | [diff] [blame] | 1078 | goto out_restore_window; |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 1079 | } |
| 1080 | win64->name = kstrdup(DIRECT64_PROPNAME, GFP_KERNEL); |
| 1081 | win64->value = ddwprop = kmalloc(sizeof(*ddwprop), GFP_KERNEL); |
Nishanth Aravamudan | 7673033 | 2011-05-06 13:27:30 +0000 | [diff] [blame] | 1082 | win64->length = sizeof(*ddwprop); |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 1083 | if (!win64->name || !win64->value) { |
| 1084 | dev_info(&dev->dev, |
| 1085 | "couldn't allocate property name and value\n"); |
| 1086 | goto out_free_prop; |
| 1087 | } |
| 1088 | |
Milton Miller | b73a635 | 2011-05-11 12:25:00 +0000 | [diff] [blame] | 1089 | ret = create_ddw(dev, ddw_avail, &create, page_shift, len); |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 1090 | if (ret != 0) |
| 1091 | goto out_free_prop; |
| 1092 | |
Anton Blanchard | df01560 | 2013-10-17 23:21:15 +1100 | [diff] [blame] | 1093 | ddwprop->liobn = create.liobn; |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 1094 | ddwprop->dma_base = cpu_to_be64(of_read_number(&create.addr_hi, 2)); |
| 1095 | ddwprop->tce_shift = cpu_to_be32(page_shift); |
| 1096 | ddwprop->window_shift = cpu_to_be32(len); |
| 1097 | |
| 1098 | dev_dbg(&dev->dev, "created tce table LIOBN 0x%x for %s\n", |
| 1099 | create.liobn, dn->full_name); |
| 1100 | |
| 1101 | window = kzalloc(sizeof(*window), GFP_KERNEL); |
| 1102 | if (!window) |
| 1103 | goto out_clear_window; |
| 1104 | |
| 1105 | ret = walk_system_ram_range(0, memblock_end_of_DRAM() >> PAGE_SHIFT, |
| 1106 | win64->value, tce_setrange_multi_pSeriesLP_walk); |
| 1107 | if (ret) { |
| 1108 | dev_info(&dev->dev, "failed to map direct window for %s: %d\n", |
| 1109 | dn->full_name, ret); |
Julia Lawall | 7a19081 | 2011-08-08 01:18:00 +0000 | [diff] [blame] | 1110 | goto out_free_window; |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 1111 | } |
| 1112 | |
Nathan Fontenot | 79d1c71 | 2012-10-02 16:58:46 +0000 | [diff] [blame] | 1113 | ret = of_add_property(pdn, win64); |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 1114 | if (ret) { |
| 1115 | dev_err(&dev->dev, "unable to add dma window property for %s: %d", |
| 1116 | pdn->full_name, ret); |
Julia Lawall | 7a19081 | 2011-08-08 01:18:00 +0000 | [diff] [blame] | 1117 | goto out_free_window; |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 1118 | } |
| 1119 | |
| 1120 | window->device = pdn; |
| 1121 | window->prop = ddwprop; |
| 1122 | spin_lock(&direct_window_list_lock); |
| 1123 | list_add(&window->list, &direct_window_list); |
| 1124 | spin_unlock(&direct_window_list_lock); |
| 1125 | |
| 1126 | dma_addr = of_read_number(&create.addr_hi, 2); |
| 1127 | goto out_unlock; |
| 1128 | |
Julia Lawall | 7a19081 | 2011-08-08 01:18:00 +0000 | [diff] [blame] | 1129 | out_free_window: |
| 1130 | kfree(window); |
| 1131 | |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 1132 | out_clear_window: |
| 1133 | remove_ddw(pdn); |
| 1134 | |
| 1135 | out_free_prop: |
| 1136 | kfree(win64->name); |
| 1137 | kfree(win64->value); |
| 1138 | kfree(win64); |
| 1139 | |
Nishanth Aravamudan | 25ebc45 | 2012-05-15 07:04:32 +0000 | [diff] [blame] | 1140 | out_restore_window: |
| 1141 | if (ddw_restore_token) |
Nishanth Aravamudan | a1dabad | 2013-01-28 16:02:46 +0000 | [diff] [blame] | 1142 | restore_default_window(dev, ddw_restore_token); |
Nishanth Aravamudan | 25ebc45 | 2012-05-15 07:04:32 +0000 | [diff] [blame] | 1143 | |
Nishanth Aravamudan | 6143569 | 2013-03-07 12:33:03 +0000 | [diff] [blame] | 1144 | fpdn = kzalloc(sizeof(*fpdn), GFP_KERNEL); |
| 1145 | if (!fpdn) |
| 1146 | goto out_unlock; |
| 1147 | fpdn->pdn = pdn; |
| 1148 | list_add(&fpdn->list, &failed_ddw_pdn_list); |
| 1149 | |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 1150 | out_unlock: |
| 1151 | mutex_unlock(&direct_window_init_mutex); |
| 1152 | return dma_addr; |
| 1153 | } |
| 1154 | |
Benjamin Herrenschmidt | 12d04ee | 2006-11-11 17:25:02 +1100 | [diff] [blame] | 1155 | static void pci_dma_dev_setup_pSeriesLP(struct pci_dev *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1156 | { |
| 1157 | struct device_node *pdn, *dn; |
| 1158 | struct iommu_table *tbl; |
Anton Blanchard | 2083f68 | 2013-08-07 02:01:36 +1000 | [diff] [blame] | 1159 | const __be32 *dma_window = NULL; |
Paul Mackerras | 1635317 | 2005-09-06 13:17:54 +1000 | [diff] [blame] | 1160 | struct pci_dn *pci; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1161 | |
Michael Ellerman | f7ebf35 | 2008-04-24 15:13:19 +1000 | [diff] [blame] | 1162 | pr_debug("pci_dma_dev_setup_pSeriesLP: %s\n", pci_name(dev)); |
Benjamin Herrenschmidt | 12d04ee | 2006-11-11 17:25:02 +1100 | [diff] [blame] | 1163 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1164 | /* dev setup for LPAR is a little tricky, since the device tree might |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 1165 | * contain the dma-window properties per-device and not necessarily |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1166 | * for the bus. So we need to search upwards in the tree until we |
| 1167 | * either hit a dma-window property, OR find a parent with a table |
| 1168 | * already allocated. |
| 1169 | */ |
| 1170 | dn = pci_device_to_OF_node(dev); |
Michael Ellerman | f7ebf35 | 2008-04-24 15:13:19 +1000 | [diff] [blame] | 1171 | pr_debug(" node is %s\n", dn->full_name); |
Linas Vepstas | 5d2efba | 2006-10-30 16:15:59 +1100 | [diff] [blame] | 1172 | |
linas | e07102d | 2005-12-05 19:37:35 -0600 | [diff] [blame] | 1173 | for (pdn = dn; pdn && PCI_DN(pdn) && !PCI_DN(pdn)->iommu_table; |
Paul Mackerras | 1635317 | 2005-09-06 13:17:54 +1000 | [diff] [blame] | 1174 | pdn = pdn->parent) { |
Stephen Rothwell | e2eb639 | 2007-04-03 22:26:41 +1000 | [diff] [blame] | 1175 | dma_window = of_get_property(pdn, "ibm,dma-window", NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1176 | if (dma_window) |
| 1177 | break; |
| 1178 | } |
| 1179 | |
Linas Vepstas | 650f7b3 | 2007-04-11 06:11:23 +1000 | [diff] [blame] | 1180 | if (!pdn || !PCI_DN(pdn)) { |
| 1181 | printk(KERN_WARNING "pci_dma_dev_setup_pSeriesLP: " |
| 1182 | "no DMA window found for pci dev=%s dn=%s\n", |
Grant Likely | 74a7f08 | 2012-06-15 11:50:25 -0600 | [diff] [blame] | 1183 | pci_name(dev), of_node_full_name(dn)); |
Linas Vepstas | 650f7b3 | 2007-04-11 06:11:23 +1000 | [diff] [blame] | 1184 | return; |
| 1185 | } |
Michael Ellerman | f7ebf35 | 2008-04-24 15:13:19 +1000 | [diff] [blame] | 1186 | pr_debug(" parent is %s\n", pdn->full_name); |
Benjamin Herrenschmidt | 12d04ee | 2006-11-11 17:25:02 +1100 | [diff] [blame] | 1187 | |
linas | e07102d | 2005-12-05 19:37:35 -0600 | [diff] [blame] | 1188 | pci = PCI_DN(pdn); |
Paul Mackerras | 1635317 | 2005-09-06 13:17:54 +1000 | [diff] [blame] | 1189 | if (!pci->iommu_table) { |
Anton Blanchard | 7aa241f | 2010-08-11 16:42:48 +0000 | [diff] [blame] | 1190 | tbl = kzalloc_node(sizeof(struct iommu_table), GFP_KERNEL, |
Anton Blanchard | ca1588e | 2006-06-10 20:58:08 +1000 | [diff] [blame] | 1191 | pci->phb->node); |
Benjamin Herrenschmidt | b8c49de | 2010-12-09 15:24:01 +1100 | [diff] [blame] | 1192 | iommu_table_setparms_lpar(pci->phb, pdn, tbl, dma_window); |
Anton Blanchard | ca1588e | 2006-06-10 20:58:08 +1000 | [diff] [blame] | 1193 | pci->iommu_table = iommu_init_table(tbl, pci->phb->node); |
Alexey Kardashevskiy | 5b25199 | 2013-05-21 13:33:11 +1000 | [diff] [blame] | 1194 | iommu_register_group(tbl, pci_domain_nr(pci->phb->bus), 0); |
Michael Ellerman | f7ebf35 | 2008-04-24 15:13:19 +1000 | [diff] [blame] | 1195 | pr_debug(" created table: %p\n", pci->iommu_table); |
Michael Neuling | de11321 | 2007-05-10 15:16:27 +1000 | [diff] [blame] | 1196 | } else { |
Michael Ellerman | f7ebf35 | 2008-04-24 15:13:19 +1000 | [diff] [blame] | 1197 | pr_debug(" found DMA window, table: %p\n", pci->iommu_table); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1198 | } |
| 1199 | |
Alexey Kardashevskiy | d905c5d | 2013-11-21 17:43:14 +1100 | [diff] [blame] | 1200 | set_iommu_table_base_and_group(&dev->dev, pci->iommu_table); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1201 | } |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 1202 | |
| 1203 | static int dma_set_mask_pSeriesLP(struct device *dev, u64 dma_mask) |
| 1204 | { |
| 1205 | bool ddw_enabled = false; |
| 1206 | struct device_node *pdn, *dn; |
| 1207 | struct pci_dev *pdev; |
Anton Blanchard | 2083f68 | 2013-08-07 02:01:36 +1000 | [diff] [blame] | 1208 | const __be32 *dma_window = NULL; |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 1209 | u64 dma_offset; |
| 1210 | |
Milton Miller | 64ac822 | 2011-05-11 12:24:57 +0000 | [diff] [blame] | 1211 | if (!dev->dma_mask) |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 1212 | return -EIO; |
| 1213 | |
Milton Miller | 64ac822 | 2011-05-11 12:24:57 +0000 | [diff] [blame] | 1214 | if (!dev_is_pci(dev)) |
| 1215 | goto check_mask; |
| 1216 | |
Nishanth Aravamudan | eb0dd41 | 2011-05-09 12:58:03 +0000 | [diff] [blame] | 1217 | pdev = to_pci_dev(dev); |
| 1218 | |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 1219 | /* only attempt to use a new window if 64-bit DMA is requested */ |
| 1220 | if (!disable_ddw && dma_mask == DMA_BIT_MASK(64)) { |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 1221 | dn = pci_device_to_OF_node(pdev); |
| 1222 | dev_dbg(dev, "node is %s\n", dn->full_name); |
| 1223 | |
| 1224 | /* |
| 1225 | * the device tree might contain the dma-window properties |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 1226 | * per-device and not necessarily for the bus. So we need to |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 1227 | * search upwards in the tree until we either hit a dma-window |
| 1228 | * property, OR find a parent with a table already allocated. |
| 1229 | */ |
| 1230 | for (pdn = dn; pdn && PCI_DN(pdn) && !PCI_DN(pdn)->iommu_table; |
| 1231 | pdn = pdn->parent) { |
| 1232 | dma_window = of_get_property(pdn, "ibm,dma-window", NULL); |
| 1233 | if (dma_window) |
| 1234 | break; |
| 1235 | } |
| 1236 | if (pdn && PCI_DN(pdn)) { |
| 1237 | dma_offset = enable_ddw(pdev, pdn); |
| 1238 | if (dma_offset != 0) { |
| 1239 | dev_info(dev, "Using 64-bit direct DMA at offset %llx\n", dma_offset); |
| 1240 | set_dma_offset(dev, dma_offset); |
| 1241 | set_dma_ops(dev, &dma_direct_ops); |
| 1242 | ddw_enabled = true; |
| 1243 | } |
| 1244 | } |
| 1245 | } |
| 1246 | |
Milton Miller | 64ac822 | 2011-05-11 12:24:57 +0000 | [diff] [blame] | 1247 | /* fall back on iommu ops, restore table pointer with ops */ |
| 1248 | if (!ddw_enabled && get_dma_ops(dev) != &dma_iommu_ops) { |
| 1249 | dev_info(dev, "Restoring 32-bit DMA via iommu\n"); |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 1250 | set_dma_ops(dev, &dma_iommu_ops); |
Nishanth Aravamudan | eb0dd41 | 2011-05-09 12:58:03 +0000 | [diff] [blame] | 1251 | pci_dma_dev_setup_pSeriesLP(pdev); |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 1252 | } |
| 1253 | |
Milton Miller | 64ac822 | 2011-05-11 12:24:57 +0000 | [diff] [blame] | 1254 | check_mask: |
| 1255 | if (!dma_supported(dev, dma_mask)) |
| 1256 | return -EIO; |
| 1257 | |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 1258 | *dev->dma_mask = dma_mask; |
| 1259 | return 0; |
| 1260 | } |
| 1261 | |
Milton Miller | 6a5c7be | 2011-06-24 09:05:22 +0000 | [diff] [blame] | 1262 | static u64 dma_get_required_mask_pSeriesLP(struct device *dev) |
| 1263 | { |
| 1264 | if (!dev->dma_mask) |
| 1265 | return 0; |
| 1266 | |
| 1267 | if (!disable_ddw && dev_is_pci(dev)) { |
| 1268 | struct pci_dev *pdev = to_pci_dev(dev); |
| 1269 | struct device_node *dn; |
| 1270 | |
| 1271 | dn = pci_device_to_OF_node(pdev); |
| 1272 | |
| 1273 | /* search upwards for ibm,dma-window */ |
| 1274 | for (; dn && PCI_DN(dn) && !PCI_DN(dn)->iommu_table; |
| 1275 | dn = dn->parent) |
| 1276 | if (of_get_property(dn, "ibm,dma-window", NULL)) |
| 1277 | break; |
| 1278 | /* if there is a ibm,ddw-applicable property require 64 bits */ |
| 1279 | if (dn && PCI_DN(dn) && |
| 1280 | of_get_property(dn, "ibm,ddw-applicable", NULL)) |
| 1281 | return DMA_BIT_MASK(64); |
| 1282 | } |
| 1283 | |
Milton Miller | d24f9c6 | 2011-06-24 09:05:24 +0000 | [diff] [blame] | 1284 | return dma_iommu_ops.get_required_mask(dev); |
Milton Miller | 6a5c7be | 2011-06-24 09:05:22 +0000 | [diff] [blame] | 1285 | } |
| 1286 | |
Stephen Rothwell | bed5927 | 2007-03-04 17:04:44 +1100 | [diff] [blame] | 1287 | #else /* CONFIG_PCI */ |
| 1288 | #define pci_dma_bus_setup_pSeries NULL |
| 1289 | #define pci_dma_dev_setup_pSeries NULL |
| 1290 | #define pci_dma_bus_setup_pSeriesLP NULL |
| 1291 | #define pci_dma_dev_setup_pSeriesLP NULL |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 1292 | #define dma_set_mask_pSeriesLP NULL |
Milton Miller | 6a5c7be | 2011-06-24 09:05:22 +0000 | [diff] [blame] | 1293 | #define dma_get_required_mask_pSeriesLP NULL |
Stephen Rothwell | bed5927 | 2007-03-04 17:04:44 +1100 | [diff] [blame] | 1294 | #endif /* !CONFIG_PCI */ |
| 1295 | |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 1296 | static int iommu_mem_notifier(struct notifier_block *nb, unsigned long action, |
| 1297 | void *data) |
| 1298 | { |
| 1299 | struct direct_window *window; |
| 1300 | struct memory_notify *arg = data; |
| 1301 | int ret = 0; |
| 1302 | |
| 1303 | switch (action) { |
| 1304 | case MEM_GOING_ONLINE: |
| 1305 | spin_lock(&direct_window_list_lock); |
| 1306 | list_for_each_entry(window, &direct_window_list, list) { |
| 1307 | ret |= tce_setrange_multi_pSeriesLP(arg->start_pfn, |
| 1308 | arg->nr_pages, window->prop); |
| 1309 | /* XXX log error */ |
| 1310 | } |
| 1311 | spin_unlock(&direct_window_list_lock); |
| 1312 | break; |
| 1313 | case MEM_CANCEL_ONLINE: |
| 1314 | case MEM_OFFLINE: |
| 1315 | spin_lock(&direct_window_list_lock); |
| 1316 | list_for_each_entry(window, &direct_window_list, list) { |
| 1317 | ret |= tce_clearrange_multi_pSeriesLP(arg->start_pfn, |
| 1318 | arg->nr_pages, window->prop); |
| 1319 | /* XXX log error */ |
| 1320 | } |
| 1321 | spin_unlock(&direct_window_list_lock); |
| 1322 | break; |
| 1323 | default: |
| 1324 | break; |
| 1325 | } |
| 1326 | if (ret && action != MEM_CANCEL_ONLINE) |
| 1327 | return NOTIFY_BAD; |
| 1328 | |
| 1329 | return NOTIFY_OK; |
| 1330 | } |
| 1331 | |
| 1332 | static struct notifier_block iommu_mem_nb = { |
| 1333 | .notifier_call = iommu_mem_notifier, |
| 1334 | }; |
| 1335 | |
Stephen Rothwell | bed5927 | 2007-03-04 17:04:44 +1100 | [diff] [blame] | 1336 | static int iommu_reconfig_notifier(struct notifier_block *nb, unsigned long action, void *node) |
| 1337 | { |
| 1338 | int err = NOTIFY_OK; |
| 1339 | struct device_node *np = node; |
| 1340 | struct pci_dn *pci = PCI_DN(np); |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 1341 | struct direct_window *window; |
Stephen Rothwell | bed5927 | 2007-03-04 17:04:44 +1100 | [diff] [blame] | 1342 | |
| 1343 | switch (action) { |
Nathan Fontenot | 1cf3d8b | 2012-10-02 16:57:57 +0000 | [diff] [blame] | 1344 | case OF_RECONFIG_DETACH_NODE: |
Nishanth Aravamudan | 71cf1de | 2013-01-18 09:17:36 +0000 | [diff] [blame] | 1345 | remove_ddw(np); |
Nishanth Aravamudan | 7372cfb | 2010-10-26 17:35:13 +0000 | [diff] [blame] | 1346 | if (pci && pci->iommu_table) |
Stephen Rothwell | 68d315f | 2007-12-06 13:39:19 +1100 | [diff] [blame] | 1347 | iommu_free_table(pci->iommu_table, np->full_name); |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 1348 | |
| 1349 | spin_lock(&direct_window_list_lock); |
| 1350 | list_for_each_entry(window, &direct_window_list, list) { |
| 1351 | if (window->device == np) { |
| 1352 | list_del(&window->list); |
| 1353 | kfree(window); |
| 1354 | break; |
| 1355 | } |
| 1356 | } |
| 1357 | spin_unlock(&direct_window_list_lock); |
Stephen Rothwell | bed5927 | 2007-03-04 17:04:44 +1100 | [diff] [blame] | 1358 | break; |
| 1359 | default: |
| 1360 | err = NOTIFY_DONE; |
| 1361 | break; |
| 1362 | } |
| 1363 | return err; |
| 1364 | } |
| 1365 | |
| 1366 | static struct notifier_block iommu_reconfig_nb = { |
| 1367 | .notifier_call = iommu_reconfig_notifier, |
| 1368 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1369 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1370 | /* These are called very early. */ |
| 1371 | void iommu_init_early_pSeries(void) |
| 1372 | { |
Nishanth Aravamudan | a8daac8 | 2010-10-18 07:27:03 +0000 | [diff] [blame] | 1373 | if (of_chosen && of_get_property(of_chosen, "linux,iommu-off", NULL)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1374 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1375 | |
Michael Ellerman | 57cfb81 | 2006-03-21 20:45:59 +1100 | [diff] [blame] | 1376 | if (firmware_has_feature(FW_FEATURE_LPAR)) { |
Stephen Rothwell | 1ababe1 | 2005-08-03 14:35:25 +1000 | [diff] [blame] | 1377 | if (firmware_has_feature(FW_FEATURE_MULTITCE)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1378 | ppc_md.tce_build = tce_buildmulti_pSeriesLP; |
| 1379 | ppc_md.tce_free = tce_freemulti_pSeriesLP; |
| 1380 | } else { |
| 1381 | ppc_md.tce_build = tce_build_pSeriesLP; |
| 1382 | ppc_md.tce_free = tce_free_pSeriesLP; |
| 1383 | } |
Haren Myneni | 5f50867 | 2006-06-22 23:35:10 -0700 | [diff] [blame] | 1384 | ppc_md.tce_get = tce_get_pSeriesLP; |
Benjamin Herrenschmidt | 12d04ee | 2006-11-11 17:25:02 +1100 | [diff] [blame] | 1385 | ppc_md.pci_dma_bus_setup = pci_dma_bus_setup_pSeriesLP; |
| 1386 | ppc_md.pci_dma_dev_setup = pci_dma_dev_setup_pSeriesLP; |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 1387 | ppc_md.dma_set_mask = dma_set_mask_pSeriesLP; |
Milton Miller | 6a5c7be | 2011-06-24 09:05:22 +0000 | [diff] [blame] | 1388 | ppc_md.dma_get_required_mask = dma_get_required_mask_pSeriesLP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1389 | } else { |
| 1390 | ppc_md.tce_build = tce_build_pSeries; |
| 1391 | ppc_md.tce_free = tce_free_pSeries; |
Haren Myneni | 5f50867 | 2006-06-22 23:35:10 -0700 | [diff] [blame] | 1392 | ppc_md.tce_get = tce_get_pseries; |
Benjamin Herrenschmidt | 12d04ee | 2006-11-11 17:25:02 +1100 | [diff] [blame] | 1393 | ppc_md.pci_dma_bus_setup = pci_dma_bus_setup_pSeries; |
| 1394 | ppc_md.pci_dma_dev_setup = pci_dma_dev_setup_pSeries; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1395 | } |
| 1396 | |
| 1397 | |
Nathan Fontenot | 1cf3d8b | 2012-10-02 16:57:57 +0000 | [diff] [blame] | 1398 | of_reconfig_notifier_register(&iommu_reconfig_nb); |
Nishanth Aravamudan | 4e8b0cf | 2011-02-10 09:10:47 +0000 | [diff] [blame] | 1399 | register_memory_notifier(&iommu_mem_nb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1400 | |
Stephen Rothwell | 9874777 | 2007-03-04 16:58:39 +1100 | [diff] [blame] | 1401 | set_pci_dma_ops(&dma_iommu_ops); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1402 | } |
| 1403 | |
Will Schmidt | 4e89a2d | 2010-09-28 15:33:12 +0000 | [diff] [blame] | 1404 | static int __init disable_multitce(char *str) |
| 1405 | { |
| 1406 | if (strcmp(str, "off") == 0 && |
| 1407 | firmware_has_feature(FW_FEATURE_LPAR) && |
| 1408 | firmware_has_feature(FW_FEATURE_MULTITCE)) { |
| 1409 | printk(KERN_INFO "Disabling MULTITCE firmware feature\n"); |
| 1410 | ppc_md.tce_build = tce_build_pSeriesLP; |
| 1411 | ppc_md.tce_free = tce_free_pSeriesLP; |
| 1412 | powerpc_firmware_features &= ~FW_FEATURE_MULTITCE; |
| 1413 | } |
| 1414 | return 1; |
| 1415 | } |
| 1416 | |
| 1417 | __setup("multitce=", disable_multitce); |