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