Thomas Gleixner | 0920654 | 2019-05-28 10:10:16 -0700 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
| 3 | * Dynamic DMA mapping support for AMD Hammer. |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 4 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | * Use the integrated AGP GART in the Hammer northbridge as an IOMMU for PCI. |
| 6 | * This allows to use PCI devices that only support 32bit addresses on systems |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 7 | * with more than 4GB. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | * |
Mauro Carvalho Chehab | 985098a | 2020-06-23 09:09:10 +0200 | [diff] [blame] | 9 | * See Documentation/core-api/dma-api-howto.rst for the interface specification. |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 10 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | * Copyright 2002 Andi Kleen, SuSE Labs. |
| 12 | */ |
| 13 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | #include <linux/types.h> |
| 15 | #include <linux/ctype.h> |
| 16 | #include <linux/agp_backend.h> |
| 17 | #include <linux/init.h> |
| 18 | #include <linux/mm.h> |
Alexey Dobriyan | d43c36d | 2009-10-07 17:09:06 +0400 | [diff] [blame] | 19 | #include <linux/sched.h> |
Ingo Molnar | b17b015 | 2017-02-08 18:51:35 +0100 | [diff] [blame] | 20 | #include <linux/sched/debug.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | #include <linux/string.h> |
| 22 | #include <linux/spinlock.h> |
| 23 | #include <linux/pci.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | #include <linux/topology.h> |
| 25 | #include <linux/interrupt.h> |
Akinobu Mita | a66022c | 2009-12-15 16:48:28 -0800 | [diff] [blame] | 26 | #include <linux/bitmap.h> |
Christoph Hellwig | 1eeb66a | 2007-05-08 00:27:03 -0700 | [diff] [blame] | 27 | #include <linux/kdebug.h> |
Jens Axboe | 9ee1bea | 2007-10-04 09:35:37 +0200 | [diff] [blame] | 28 | #include <linux/scatterlist.h> |
FUJITA Tomonori | fde9a10 | 2008-02-04 22:28:11 -0800 | [diff] [blame] | 29 | #include <linux/iommu-helper.h> |
Rafael J. Wysocki | f3c6ea1 | 2011-03-23 22:15:54 +0100 | [diff] [blame] | 30 | #include <linux/syscore_ops.h> |
Joerg Roedel | 237a622 | 2008-09-25 12:13:53 +0200 | [diff] [blame] | 31 | #include <linux/io.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 32 | #include <linux/gfp.h> |
Arun Sharma | 60063497 | 2011-07-26 16:09:06 -0700 | [diff] [blame] | 33 | #include <linux/atomic.h> |
Christoph Hellwig | ea8c64a | 2018-01-10 16:21:13 +0100 | [diff] [blame] | 34 | #include <linux/dma-direct.h> |
Christoph Hellwig | 0a0f0d8 | 2020-09-22 15:31:03 +0200 | [diff] [blame] | 35 | #include <linux/dma-map-ops.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | #include <asm/mtrr.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | #include <asm/proto.h> |
FUJITA Tomonori | 46a7fa2 | 2008-07-11 10:23:42 +0900 | [diff] [blame] | 38 | #include <asm/iommu.h> |
Joerg Roedel | 395624f | 2007-10-24 12:49:47 +0200 | [diff] [blame] | 39 | #include <asm/gart.h> |
Laura Abbott | d116365 | 2017-05-08 15:58:11 -0700 | [diff] [blame] | 40 | #include <asm/set_memory.h> |
Muli Ben-Yehuda | 17a941d | 2006-01-11 22:44:42 +0100 | [diff] [blame] | 41 | #include <asm/swiotlb.h> |
| 42 | #include <asm/dma.h> |
Andreas Herrmann | 23ac4ae | 2010-09-17 18:03:43 +0200 | [diff] [blame] | 43 | #include <asm/amd_nb.h> |
FUJITA Tomonori | 338bac5 | 2009-10-27 16:34:44 +0900 | [diff] [blame] | 44 | #include <asm/x86_init.h> |
Konrad Rzeszutek Wilk | 22e6daf | 2010-08-26 13:58:03 -0400 | [diff] [blame] | 45 | #include <asm/iommu_table.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | |
Joerg Roedel | 79da087 | 2007-10-24 12:49:49 +0200 | [diff] [blame] | 47 | static unsigned long iommu_bus_base; /* GART remapping area (physical) */ |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 48 | static unsigned long iommu_size; /* size of remapping area bytes */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | static unsigned long iommu_pages; /* .. and in pages */ |
| 50 | |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 51 | static u32 *iommu_gatt_base; /* Remapping table */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 53 | /* |
| 54 | * If this is disabled the IOMMU will use an optimized flushing strategy |
| 55 | * of only flushing when an mapping is reused. With it true the GART is |
| 56 | * flushed for every mapping. Problem is that doing the lazy flush seems |
| 57 | * to trigger bugs with some popular PCI cards, in particular 3ware (but |
| 58 | * has been also also seen with Qlogic at least). |
| 59 | */ |
Jaswinder Singh Rajput | c854c91 | 2008-12-29 20:38:09 +0530 | [diff] [blame] | 60 | static int iommu_fullflush = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 62 | /* Allocation bitmap for the remapping area: */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | static DEFINE_SPINLOCK(iommu_bitmap_lock); |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 64 | /* Guarded by iommu_bitmap_lock: */ |
| 65 | static unsigned long *iommu_gart_bitmap; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 67 | static u32 gart_unmapped_entry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | |
| 69 | #define GPTE_VALID 1 |
| 70 | #define GPTE_COHERENT 2 |
| 71 | #define GPTE_ENCODE(x) \ |
| 72 | (((x) & 0xfffff000) | (((x) >> 32) << 4) | GPTE_VALID | GPTE_COHERENT) |
| 73 | #define GPTE_DECODE(x) (((x) & 0xfffff000) | (((u64)(x) & 0xff0) << 28)) |
| 74 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | #ifdef CONFIG_AGP |
| 76 | #define AGPEXTERN extern |
| 77 | #else |
| 78 | #define AGPEXTERN |
| 79 | #endif |
| 80 | |
Joerg Roedel | 665d3e2 | 2011-04-18 15:45:46 +0200 | [diff] [blame] | 81 | /* GART can only remap to physical addresses < 1TB */ |
| 82 | #define GART_MAX_PHYS_ADDR (1ULL << 40) |
| 83 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | /* backdoor interface to AGP driver */ |
| 85 | AGPEXTERN int agp_memory_reserved; |
| 86 | AGPEXTERN __u32 *agp_gatt_table; |
| 87 | |
| 88 | static unsigned long next_bit; /* protected by iommu_bitmap_lock */ |
Joerg Roedel | 3610f21 | 2008-09-25 12:13:54 +0200 | [diff] [blame] | 89 | static bool need_flush; /* global flush state. set for each gart wrap */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | |
FUJITA Tomonori | 7b22ff5 | 2008-08-18 00:36:18 +0900 | [diff] [blame] | 91 | static unsigned long alloc_iommu(struct device *dev, int size, |
| 92 | unsigned long align_mask) |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 93 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | unsigned long offset, flags; |
FUJITA Tomonori | fde9a10 | 2008-02-04 22:28:11 -0800 | [diff] [blame] | 95 | unsigned long boundary_size; |
| 96 | unsigned long base_index; |
| 97 | |
| 98 | base_index = ALIGN(iommu_bus_base & dma_get_seg_boundary(dev), |
| 99 | PAGE_SIZE) >> PAGE_SHIFT; |
Nicolin Chen | 1e9d90d | 2020-09-01 15:16:45 -0700 | [diff] [blame] | 100 | boundary_size = dma_get_seg_boundary_nr_pages(dev, PAGE_SHIFT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 102 | spin_lock_irqsave(&iommu_bitmap_lock, flags); |
FUJITA Tomonori | fde9a10 | 2008-02-04 22:28:11 -0800 | [diff] [blame] | 103 | offset = iommu_area_alloc(iommu_gart_bitmap, iommu_pages, next_bit, |
FUJITA Tomonori | 7b22ff5 | 2008-08-18 00:36:18 +0900 | [diff] [blame] | 104 | size, base_index, boundary_size, align_mask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | if (offset == -1) { |
Joerg Roedel | 3610f21 | 2008-09-25 12:13:54 +0200 | [diff] [blame] | 106 | need_flush = true; |
FUJITA Tomonori | fde9a10 | 2008-02-04 22:28:11 -0800 | [diff] [blame] | 107 | offset = iommu_area_alloc(iommu_gart_bitmap, iommu_pages, 0, |
FUJITA Tomonori | 7b22ff5 | 2008-08-18 00:36:18 +0900 | [diff] [blame] | 108 | size, base_index, boundary_size, |
| 109 | align_mask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | } |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 111 | if (offset != -1) { |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 112 | next_bit = offset+size; |
| 113 | if (next_bit >= iommu_pages) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | next_bit = 0; |
Joerg Roedel | 3610f21 | 2008-09-25 12:13:54 +0200 | [diff] [blame] | 115 | need_flush = true; |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 116 | } |
| 117 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | if (iommu_fullflush) |
Joerg Roedel | 3610f21 | 2008-09-25 12:13:54 +0200 | [diff] [blame] | 119 | need_flush = true; |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 120 | spin_unlock_irqrestore(&iommu_bitmap_lock, flags); |
| 121 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | return offset; |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 123 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | |
| 125 | static void free_iommu(unsigned long offset, int size) |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 126 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | unsigned long flags; |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 128 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | spin_lock_irqsave(&iommu_bitmap_lock, flags); |
Akinobu Mita | a66022c | 2009-12-15 16:48:28 -0800 | [diff] [blame] | 130 | bitmap_clear(iommu_gart_bitmap, offset, size); |
Joerg Roedel | 70d7d35 | 2008-12-02 20:16:03 +0100 | [diff] [blame] | 131 | if (offset >= next_bit) |
| 132 | next_bit = offset + size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | spin_unlock_irqrestore(&iommu_bitmap_lock, flags); |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 134 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 136 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | * Use global flush state to avoid races with multiple flushers. |
| 138 | */ |
Andi Kleen | a32073b | 2006-06-26 13:56:40 +0200 | [diff] [blame] | 139 | static void flush_gart(void) |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 140 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | unsigned long flags; |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 142 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | spin_lock_irqsave(&iommu_bitmap_lock, flags); |
Andi Kleen | a32073b | 2006-06-26 13:56:40 +0200 | [diff] [blame] | 144 | if (need_flush) { |
Hans Rosenfeld | eec1d4f | 2010-10-29 17:14:30 +0200 | [diff] [blame] | 145 | amd_flush_garts(); |
Joerg Roedel | 3610f21 | 2008-09-25 12:13:54 +0200 | [diff] [blame] | 146 | need_flush = false; |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 147 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | spin_unlock_irqrestore(&iommu_bitmap_lock, flags); |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 149 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | #ifdef CONFIG_IOMMU_LEAK |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | /* Debugging aid for drivers that don't free their IOMMU tables */ |
Joerg Roedel | 79da087 | 2007-10-24 12:49:49 +0200 | [diff] [blame] | 153 | static void dump_leak(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | { |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 155 | static int dump; |
| 156 | |
FUJITA Tomonori | 19c1a6f | 2009-04-14 09:43:19 +0900 | [diff] [blame] | 157 | if (dump) |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 158 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | dump = 1; |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 160 | |
Dmitry Safonov | 9cb8f06 | 2020-06-08 21:32:29 -0700 | [diff] [blame] | 161 | show_stack(NULL, NULL, KERN_ERR); |
FUJITA Tomonori | 19c1a6f | 2009-04-14 09:43:19 +0900 | [diff] [blame] | 162 | debug_dma_dump_mappings(NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | #endif |
| 165 | |
Muli Ben-Yehuda | 17a941d | 2006-01-11 22:44:42 +0100 | [diff] [blame] | 166 | static void iommu_full(struct device *dev, size_t size, int dir) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | { |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 168 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | * Ran out of IOMMU space for this operation. This is very bad. |
| 170 | * Unfortunately the drivers cannot handle this operation properly. |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 171 | * Return some non mapped prereserved space in the aperture and |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | * let the Northbridge deal with it. This will result in garbage |
| 173 | * in the IO operation. When the size exceeds the prereserved space |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 174 | * memory corruption will occur or random memory will be DMAed |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | * out. Hopefully no network devices use single mappings that big. |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 176 | */ |
| 177 | |
Greg Kroah-Hartman | fc3a882 | 2008-05-02 06:02:41 +0200 | [diff] [blame] | 178 | dev_err(dev, "PCI-DMA: Out of IOMMU space for %lu bytes\n", size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | #ifdef CONFIG_IOMMU_LEAK |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 180 | dump_leak(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | } |
| 183 | |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 184 | static inline int |
| 185 | need_iommu(struct device *dev, unsigned long addr, size_t size) |
| 186 | { |
Christoph Hellwig | 68a33b1 | 2019-11-19 17:38:58 +0100 | [diff] [blame] | 187 | return force_iommu || !dma_capable(dev, addr, size, true); |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 188 | } |
| 189 | |
| 190 | static inline int |
| 191 | nonforced_iommu(struct device *dev, unsigned long addr, size_t size) |
| 192 | { |
Christoph Hellwig | 68a33b1 | 2019-11-19 17:38:58 +0100 | [diff] [blame] | 193 | return !dma_capable(dev, addr, size, true); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | } |
| 195 | |
| 196 | /* Map a single continuous physical area into the IOMMU. |
| 197 | * Caller needs to check if the iommu is needed and flush. |
| 198 | */ |
Muli Ben-Yehuda | 17a941d | 2006-01-11 22:44:42 +0100 | [diff] [blame] | 199 | static dma_addr_t dma_map_area(struct device *dev, dma_addr_t phys_mem, |
FUJITA Tomonori | 7b22ff5 | 2008-08-18 00:36:18 +0900 | [diff] [blame] | 200 | size_t size, int dir, unsigned long align_mask) |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 201 | { |
Joerg Roedel | 1477b8e | 2008-10-15 22:02:11 -0700 | [diff] [blame] | 202 | unsigned long npages = iommu_num_pages(phys_mem, size, PAGE_SIZE); |
Joerg Roedel | 665d3e2 | 2011-04-18 15:45:46 +0200 | [diff] [blame] | 203 | unsigned long iommu_page; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | int i; |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 205 | |
Joerg Roedel | 665d3e2 | 2011-04-18 15:45:46 +0200 | [diff] [blame] | 206 | if (unlikely(phys_mem + size > GART_MAX_PHYS_ADDR)) |
Christoph Hellwig | 9e8aa6b | 2018-11-21 19:20:44 +0100 | [diff] [blame] | 207 | return DMA_MAPPING_ERROR; |
Joerg Roedel | 665d3e2 | 2011-04-18 15:45:46 +0200 | [diff] [blame] | 208 | |
| 209 | iommu_page = alloc_iommu(dev, npages, align_mask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | if (iommu_page == -1) { |
| 211 | if (!nonforced_iommu(dev, phys_mem, size)) |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 212 | return phys_mem; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | if (panic_on_overflow) |
| 214 | panic("dma_map_area overflow %lu bytes\n", size); |
Muli Ben-Yehuda | 17a941d | 2006-01-11 22:44:42 +0100 | [diff] [blame] | 215 | iommu_full(dev, size, dir); |
Christoph Hellwig | 9e8aa6b | 2018-11-21 19:20:44 +0100 | [diff] [blame] | 216 | return DMA_MAPPING_ERROR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | } |
| 218 | |
| 219 | for (i = 0; i < npages; i++) { |
| 220 | iommu_gatt_base[iommu_page + i] = GPTE_ENCODE(phys_mem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 221 | phys_mem += PAGE_SIZE; |
| 222 | } |
| 223 | return iommu_bus_base + iommu_page*PAGE_SIZE + (phys_mem & ~PAGE_MASK); |
| 224 | } |
| 225 | |
| 226 | /* Map a single area into the IOMMU */ |
FUJITA Tomonori | 052aedb | 2009-01-05 23:47:23 +0900 | [diff] [blame] | 227 | static dma_addr_t gart_map_page(struct device *dev, struct page *page, |
| 228 | unsigned long offset, size_t size, |
| 229 | enum dma_data_direction dir, |
Krzysztof Kozlowski | 00085f1 | 2016-08-03 13:46:00 -0700 | [diff] [blame] | 230 | unsigned long attrs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | { |
Ingo Molnar | 2be6214 | 2008-04-19 19:19:56 +0200 | [diff] [blame] | 232 | unsigned long bus; |
FUJITA Tomonori | 052aedb | 2009-01-05 23:47:23 +0900 | [diff] [blame] | 233 | phys_addr_t paddr = page_to_phys(page) + offset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | |
Ingo Molnar | 2be6214 | 2008-04-19 19:19:56 +0200 | [diff] [blame] | 235 | if (!need_iommu(dev, paddr, size)) |
| 236 | return paddr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | |
FUJITA Tomonori | 7b22ff5 | 2008-08-18 00:36:18 +0900 | [diff] [blame] | 238 | bus = dma_map_area(dev, paddr, size, dir, 0); |
| 239 | flush_gart(); |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 240 | |
| 241 | return bus; |
Muli Ben-Yehuda | 17a941d | 2006-01-11 22:44:42 +0100 | [diff] [blame] | 242 | } |
| 243 | |
| 244 | /* |
Jon Mason | 7c2d9cd | 2006-06-26 13:56:37 +0200 | [diff] [blame] | 245 | * Free a DMA mapping. |
| 246 | */ |
FUJITA Tomonori | 052aedb | 2009-01-05 23:47:23 +0900 | [diff] [blame] | 247 | static void gart_unmap_page(struct device *dev, dma_addr_t dma_addr, |
| 248 | size_t size, enum dma_data_direction dir, |
Krzysztof Kozlowski | 00085f1 | 2016-08-03 13:46:00 -0700 | [diff] [blame] | 249 | unsigned long attrs) |
Jon Mason | 7c2d9cd | 2006-06-26 13:56:37 +0200 | [diff] [blame] | 250 | { |
| 251 | unsigned long iommu_page; |
| 252 | int npages; |
| 253 | int i; |
| 254 | |
Christoph Hellwig | 06f55fd | 2019-01-04 09:50:33 +0100 | [diff] [blame] | 255 | if (WARN_ON_ONCE(dma_addr == DMA_MAPPING_ERROR)) |
| 256 | return; |
| 257 | |
| 258 | /* |
| 259 | * This driver will not always use a GART mapping, but might have |
| 260 | * created a direct mapping instead. If that is the case there is |
| 261 | * nothing to unmap here. |
| 262 | */ |
| 263 | if (dma_addr < iommu_bus_base || |
Jon Mason | 7c2d9cd | 2006-06-26 13:56:37 +0200 | [diff] [blame] | 264 | dma_addr >= iommu_bus_base + iommu_size) |
| 265 | return; |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 266 | |
Jon Mason | 7c2d9cd | 2006-06-26 13:56:37 +0200 | [diff] [blame] | 267 | iommu_page = (dma_addr - iommu_bus_base)>>PAGE_SHIFT; |
Joerg Roedel | 1477b8e | 2008-10-15 22:02:11 -0700 | [diff] [blame] | 268 | npages = iommu_num_pages(dma_addr, size, PAGE_SIZE); |
Jon Mason | 7c2d9cd | 2006-06-26 13:56:37 +0200 | [diff] [blame] | 269 | for (i = 0; i < npages; i++) { |
| 270 | iommu_gatt_base[iommu_page + i] = gart_unmapped_entry; |
Jon Mason | 7c2d9cd | 2006-06-26 13:56:37 +0200 | [diff] [blame] | 271 | } |
| 272 | free_iommu(iommu_page, npages); |
| 273 | } |
| 274 | |
| 275 | /* |
Muli Ben-Yehuda | 17a941d | 2006-01-11 22:44:42 +0100 | [diff] [blame] | 276 | * Wrapper for pci_unmap_single working with scatterlists. |
| 277 | */ |
FUJITA Tomonori | 160c1d8 | 2009-01-05 23:59:02 +0900 | [diff] [blame] | 278 | static void gart_unmap_sg(struct device *dev, struct scatterlist *sg, int nents, |
Krzysztof Kozlowski | 00085f1 | 2016-08-03 13:46:00 -0700 | [diff] [blame] | 279 | enum dma_data_direction dir, unsigned long attrs) |
Muli Ben-Yehuda | 17a941d | 2006-01-11 22:44:42 +0100 | [diff] [blame] | 280 | { |
Jens Axboe | 9ee1bea | 2007-10-04 09:35:37 +0200 | [diff] [blame] | 281 | struct scatterlist *s; |
Muli Ben-Yehuda | 17a941d | 2006-01-11 22:44:42 +0100 | [diff] [blame] | 282 | int i; |
| 283 | |
Jens Axboe | 9ee1bea | 2007-10-04 09:35:37 +0200 | [diff] [blame] | 284 | for_each_sg(sg, s, nents, i) { |
Jon Mason | 60b08c6 | 2006-02-26 04:18:22 +0100 | [diff] [blame] | 285 | if (!s->dma_length || !s->length) |
Muli Ben-Yehuda | 17a941d | 2006-01-11 22:44:42 +0100 | [diff] [blame] | 286 | break; |
Krzysztof Kozlowski | 00085f1 | 2016-08-03 13:46:00 -0700 | [diff] [blame] | 287 | gart_unmap_page(dev, s->dma_address, s->dma_length, dir, 0); |
Muli Ben-Yehuda | 17a941d | 2006-01-11 22:44:42 +0100 | [diff] [blame] | 288 | } |
| 289 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | |
| 291 | /* Fallback for dma_map_sg in case of overflow */ |
| 292 | static int dma_map_sg_nonforce(struct device *dev, struct scatterlist *sg, |
| 293 | int nents, int dir) |
| 294 | { |
Jens Axboe | 9ee1bea | 2007-10-04 09:35:37 +0200 | [diff] [blame] | 295 | struct scatterlist *s; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 296 | int i; |
| 297 | |
| 298 | #ifdef CONFIG_IOMMU_DEBUG |
Ingo Molnar | 123bf0e | 2009-11-15 21:19:52 +0900 | [diff] [blame] | 299 | pr_debug("dma_map_sg overflow\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | #endif |
| 301 | |
Jens Axboe | 9ee1bea | 2007-10-04 09:35:37 +0200 | [diff] [blame] | 302 | for_each_sg(sg, s, nents, i) { |
Jens Axboe | 58b053e | 2007-10-22 20:02:46 +0200 | [diff] [blame] | 303 | unsigned long addr = sg_phys(s); |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 304 | |
| 305 | if (nonforced_iommu(dev, addr, s->length)) { |
FUJITA Tomonori | 7b22ff5 | 2008-08-18 00:36:18 +0900 | [diff] [blame] | 306 | addr = dma_map_area(dev, addr, s->length, dir, 0); |
Christoph Hellwig | 9e8aa6b | 2018-11-21 19:20:44 +0100 | [diff] [blame] | 307 | if (addr == DMA_MAPPING_ERROR) { |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 308 | if (i > 0) |
Krzysztof Kozlowski | 00085f1 | 2016-08-03 13:46:00 -0700 | [diff] [blame] | 309 | gart_unmap_sg(dev, sg, i, dir, 0); |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 310 | nents = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 311 | sg[0].dma_length = 0; |
| 312 | break; |
| 313 | } |
| 314 | } |
| 315 | s->dma_address = addr; |
| 316 | s->dma_length = s->length; |
| 317 | } |
Andi Kleen | a32073b | 2006-06-26 13:56:40 +0200 | [diff] [blame] | 318 | flush_gart(); |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 319 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 320 | return nents; |
| 321 | } |
| 322 | |
| 323 | /* Map multiple scatterlist entries continuous into the first. */ |
FUJITA Tomonori | fde9a10 | 2008-02-04 22:28:11 -0800 | [diff] [blame] | 324 | static int __dma_map_cont(struct device *dev, struct scatterlist *start, |
| 325 | int nelems, struct scatterlist *sout, |
| 326 | unsigned long pages) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 327 | { |
FUJITA Tomonori | 7b22ff5 | 2008-08-18 00:36:18 +0900 | [diff] [blame] | 328 | unsigned long iommu_start = alloc_iommu(dev, pages, 0); |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 329 | unsigned long iommu_page = iommu_start; |
Jens Axboe | 9ee1bea | 2007-10-04 09:35:37 +0200 | [diff] [blame] | 330 | struct scatterlist *s; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 331 | int i; |
| 332 | |
| 333 | if (iommu_start == -1) |
Martin Oliveira | fcacc8a | 2021-07-29 14:15:36 -0600 | [diff] [blame] | 334 | return -ENOMEM; |
Jens Axboe | 9ee1bea | 2007-10-04 09:35:37 +0200 | [diff] [blame] | 335 | |
| 336 | for_each_sg(start, s, nelems, i) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 337 | unsigned long pages, addr; |
| 338 | unsigned long phys_addr = s->dma_address; |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 339 | |
Jens Axboe | 9ee1bea | 2007-10-04 09:35:37 +0200 | [diff] [blame] | 340 | BUG_ON(s != start && s->offset); |
| 341 | if (s == start) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | sout->dma_address = iommu_bus_base; |
| 343 | sout->dma_address += iommu_page*PAGE_SIZE + s->offset; |
| 344 | sout->dma_length = s->length; |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 345 | } else { |
| 346 | sout->dma_length += s->length; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | } |
| 348 | |
| 349 | addr = phys_addr; |
Joerg Roedel | 1477b8e | 2008-10-15 22:02:11 -0700 | [diff] [blame] | 350 | pages = iommu_num_pages(s->offset, s->length, PAGE_SIZE); |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 351 | while (pages--) { |
| 352 | iommu_gatt_base[iommu_page] = GPTE_ENCODE(addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 | addr += PAGE_SIZE; |
| 354 | iommu_page++; |
Andi Kleen | 0d541064 | 2006-02-12 14:34:59 -0800 | [diff] [blame] | 355 | } |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 356 | } |
| 357 | BUG_ON(iommu_page - iommu_start != pages); |
| 358 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 359 | return 0; |
| 360 | } |
| 361 | |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 362 | static inline int |
FUJITA Tomonori | fde9a10 | 2008-02-04 22:28:11 -0800 | [diff] [blame] | 363 | dma_map_cont(struct device *dev, struct scatterlist *start, int nelems, |
| 364 | struct scatterlist *sout, unsigned long pages, int need) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 365 | { |
Jens Axboe | 9ee1bea | 2007-10-04 09:35:37 +0200 | [diff] [blame] | 366 | if (!need) { |
| 367 | BUG_ON(nelems != 1); |
FUJITA Tomonori | e88a39d | 2007-10-25 09:13:32 +0200 | [diff] [blame] | 368 | sout->dma_address = start->dma_address; |
Jens Axboe | 9ee1bea | 2007-10-04 09:35:37 +0200 | [diff] [blame] | 369 | sout->dma_length = start->length; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 370 | return 0; |
Jens Axboe | 9ee1bea | 2007-10-04 09:35:37 +0200 | [diff] [blame] | 371 | } |
FUJITA Tomonori | fde9a10 | 2008-02-04 22:28:11 -0800 | [diff] [blame] | 372 | return __dma_map_cont(dev, start, nelems, sout, pages); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 373 | } |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 374 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 375 | /* |
| 376 | * DMA map all entries in a scatterlist. |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 377 | * Merge chunks that have page aligned sizes into a continuous mapping. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | */ |
FUJITA Tomonori | 160c1d8 | 2009-01-05 23:59:02 +0900 | [diff] [blame] | 379 | static int gart_map_sg(struct device *dev, struct scatterlist *sg, int nents, |
Krzysztof Kozlowski | 00085f1 | 2016-08-03 13:46:00 -0700 | [diff] [blame] | 380 | enum dma_data_direction dir, unsigned long attrs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 381 | { |
Jens Axboe | 9ee1bea | 2007-10-04 09:35:37 +0200 | [diff] [blame] | 382 | struct scatterlist *s, *ps, *start_sg, *sgmap; |
Martin Oliveira | fcacc8a | 2021-07-29 14:15:36 -0600 | [diff] [blame] | 383 | int need = 0, nextneed, i, out, start, ret; |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 384 | unsigned long pages = 0; |
FUJITA Tomonori | 42d0028 | 2008-02-04 22:27:56 -0800 | [diff] [blame] | 385 | unsigned int seg_size; |
| 386 | unsigned int max_seg_size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 387 | |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 388 | if (nents == 0) |
Martin Oliveira | fcacc8a | 2021-07-29 14:15:36 -0600 | [diff] [blame] | 389 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 390 | |
Ingo Molnar | 123bf0e | 2009-11-15 21:19:52 +0900 | [diff] [blame] | 391 | out = 0; |
| 392 | start = 0; |
| 393 | start_sg = sg; |
| 394 | sgmap = sg; |
| 395 | seg_size = 0; |
| 396 | max_seg_size = dma_get_max_seg_size(dev); |
| 397 | ps = NULL; /* shut up gcc */ |
| 398 | |
Jens Axboe | 9ee1bea | 2007-10-04 09:35:37 +0200 | [diff] [blame] | 399 | for_each_sg(sg, s, nents, i) { |
Jens Axboe | 58b053e | 2007-10-22 20:02:46 +0200 | [diff] [blame] | 400 | dma_addr_t addr = sg_phys(s); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 401 | |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 402 | s->dma_address = addr; |
| 403 | BUG_ON(s->length == 0); |
| 404 | |
| 405 | nextneed = need_iommu(dev, addr, s->length); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 406 | |
| 407 | /* Handle the previous not yet processed entries */ |
| 408 | if (i > start) { |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 409 | /* |
| 410 | * Can only merge when the last chunk ends on a |
| 411 | * page boundary and the new one doesn't have an |
| 412 | * offset. |
| 413 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 414 | if (!iommu_merge || !nextneed || !need || s->offset || |
FUJITA Tomonori | 42d0028 | 2008-02-04 22:27:56 -0800 | [diff] [blame] | 415 | (s->length + seg_size > max_seg_size) || |
Jens Axboe | 9ee1bea | 2007-10-04 09:35:37 +0200 | [diff] [blame] | 416 | (ps->offset + ps->length) % PAGE_SIZE) { |
Martin Oliveira | fcacc8a | 2021-07-29 14:15:36 -0600 | [diff] [blame] | 417 | ret = dma_map_cont(dev, start_sg, i - start, |
| 418 | sgmap, pages, need); |
| 419 | if (ret < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 420 | goto error; |
| 421 | out++; |
Ingo Molnar | 123bf0e | 2009-11-15 21:19:52 +0900 | [diff] [blame] | 422 | |
| 423 | seg_size = 0; |
| 424 | sgmap = sg_next(sgmap); |
| 425 | pages = 0; |
| 426 | start = i; |
| 427 | start_sg = s; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 428 | } |
| 429 | } |
| 430 | |
FUJITA Tomonori | 42d0028 | 2008-02-04 22:27:56 -0800 | [diff] [blame] | 431 | seg_size += s->length; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 432 | need = nextneed; |
Joerg Roedel | 1477b8e | 2008-10-15 22:02:11 -0700 | [diff] [blame] | 433 | pages += iommu_num_pages(s->offset, s->length, PAGE_SIZE); |
Jens Axboe | 9ee1bea | 2007-10-04 09:35:37 +0200 | [diff] [blame] | 434 | ps = s; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 435 | } |
Martin Oliveira | fcacc8a | 2021-07-29 14:15:36 -0600 | [diff] [blame] | 436 | ret = dma_map_cont(dev, start_sg, i - start, sgmap, pages, need); |
| 437 | if (ret < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 438 | goto error; |
| 439 | out++; |
Andi Kleen | a32073b | 2006-06-26 13:56:40 +0200 | [diff] [blame] | 440 | flush_gart(); |
Jens Axboe | 9ee1bea | 2007-10-04 09:35:37 +0200 | [diff] [blame] | 441 | if (out < nents) { |
| 442 | sgmap = sg_next(sgmap); |
| 443 | sgmap->dma_length = 0; |
| 444 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 445 | return out; |
| 446 | |
| 447 | error: |
Andi Kleen | a32073b | 2006-06-26 13:56:40 +0200 | [diff] [blame] | 448 | flush_gart(); |
Krzysztof Kozlowski | 00085f1 | 2016-08-03 13:46:00 -0700 | [diff] [blame] | 449 | gart_unmap_sg(dev, sg, out, dir, 0); |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 450 | |
Kevin VanMaren | a1002a4 | 2006-02-03 21:51:32 +0100 | [diff] [blame] | 451 | /* When it was forced or merged try again in a dumb way */ |
| 452 | if (force_iommu || iommu_merge) { |
| 453 | out = dma_map_sg_nonforce(dev, sg, nents, dir); |
| 454 | if (out > 0) |
| 455 | return out; |
| 456 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 457 | if (panic_on_overflow) |
| 458 | panic("dma_map_sg: overflow on %lu pages\n", pages); |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 459 | |
Muli Ben-Yehuda | 17a941d | 2006-01-11 22:44:42 +0100 | [diff] [blame] | 460 | iommu_full(dev, pages << PAGE_SHIFT, dir); |
Martin Oliveira | fcacc8a | 2021-07-29 14:15:36 -0600 | [diff] [blame] | 461 | return ret; |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 462 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 463 | |
Joerg Roedel | 9458109 | 2008-08-19 16:32:39 +0200 | [diff] [blame] | 464 | /* allocate and map a coherent mapping */ |
| 465 | static void * |
| 466 | gart_alloc_coherent(struct device *dev, size_t size, dma_addr_t *dma_addr, |
Krzysztof Kozlowski | 00085f1 | 2016-08-03 13:46:00 -0700 | [diff] [blame] | 467 | gfp_t flag, unsigned long attrs) |
Joerg Roedel | 9458109 | 2008-08-19 16:32:39 +0200 | [diff] [blame] | 468 | { |
Christoph Hellwig | 51c7eeb | 2018-03-19 11:38:18 +0100 | [diff] [blame] | 469 | void *vaddr; |
Joerg Roedel | 9458109 | 2008-08-19 16:32:39 +0200 | [diff] [blame] | 470 | |
Christoph Hellwig | 2f5388a2 | 2020-08-17 17:06:40 +0200 | [diff] [blame] | 471 | vaddr = dma_direct_alloc(dev, size, dma_addr, flag, attrs); |
Christoph Hellwig | 51c7eeb | 2018-03-19 11:38:18 +0100 | [diff] [blame] | 472 | if (!vaddr || |
| 473 | !force_iommu || dev->coherent_dma_mask <= DMA_BIT_MASK(24)) |
| 474 | return vaddr; |
Joerg Roedel | 9458109 | 2008-08-19 16:32:39 +0200 | [diff] [blame] | 475 | |
Christoph Hellwig | 51c7eeb | 2018-03-19 11:38:18 +0100 | [diff] [blame] | 476 | *dma_addr = dma_map_area(dev, virt_to_phys(vaddr), size, |
| 477 | DMA_BIDIRECTIONAL, (1UL << get_order(size)) - 1); |
| 478 | flush_gart(); |
Christoph Hellwig | 9e8aa6b | 2018-11-21 19:20:44 +0100 | [diff] [blame] | 479 | if (unlikely(*dma_addr == DMA_MAPPING_ERROR)) |
Christoph Hellwig | 51c7eeb | 2018-03-19 11:38:18 +0100 | [diff] [blame] | 480 | goto out_free; |
| 481 | return vaddr; |
| 482 | out_free: |
Christoph Hellwig | 2f5388a2 | 2020-08-17 17:06:40 +0200 | [diff] [blame] | 483 | dma_direct_free(dev, size, vaddr, *dma_addr, attrs); |
Joerg Roedel | 9458109 | 2008-08-19 16:32:39 +0200 | [diff] [blame] | 484 | return NULL; |
| 485 | } |
| 486 | |
Joerg Roedel | 43a5a5a | 2008-08-19 16:32:40 +0200 | [diff] [blame] | 487 | /* free a coherent mapping */ |
| 488 | static void |
| 489 | gart_free_coherent(struct device *dev, size_t size, void *vaddr, |
Krzysztof Kozlowski | 00085f1 | 2016-08-03 13:46:00 -0700 | [diff] [blame] | 490 | dma_addr_t dma_addr, unsigned long attrs) |
Joerg Roedel | 43a5a5a | 2008-08-19 16:32:40 +0200 | [diff] [blame] | 491 | { |
Krzysztof Kozlowski | 00085f1 | 2016-08-03 13:46:00 -0700 | [diff] [blame] | 492 | gart_unmap_page(dev, dma_addr, size, DMA_BIDIRECTIONAL, 0); |
Christoph Hellwig | 2f5388a2 | 2020-08-17 17:06:40 +0200 | [diff] [blame] | 493 | dma_direct_free(dev, size, vaddr, dma_addr, attrs); |
Joerg Roedel | 43a5a5a | 2008-08-19 16:32:40 +0200 | [diff] [blame] | 494 | } |
| 495 | |
Muli Ben-Yehuda | 17a941d | 2006-01-11 22:44:42 +0100 | [diff] [blame] | 496 | static int no_agp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 497 | |
| 498 | static __init unsigned long check_iommu_size(unsigned long aper, u64 aper_size) |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 499 | { |
| 500 | unsigned long a; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 501 | |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 502 | if (!iommu_size) { |
| 503 | iommu_size = aper_size; |
| 504 | if (!no_agp) |
| 505 | iommu_size /= 2; |
| 506 | } |
| 507 | |
| 508 | a = aper + iommu_size; |
Andi Kleen | 31422c5 | 2008-02-04 16:48:08 +0100 | [diff] [blame] | 509 | iommu_size -= round_up(a, PMD_PAGE_SIZE) - a; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 510 | |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 511 | if (iommu_size < 64*1024*1024) { |
Kefeng Wang | 8d3bcc4 | 2019-10-18 11:18:24 +0800 | [diff] [blame] | 512 | pr_warn("PCI-DMA: Warning: Small IOMMU %luMB." |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 513 | " Consider increasing the AGP aperture in BIOS\n", |
Kefeng Wang | 8d3bcc4 | 2019-10-18 11:18:24 +0800 | [diff] [blame] | 514 | iommu_size >> 20); |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 515 | } |
| 516 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 517 | return iommu_size; |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 518 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 519 | |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 520 | static __init unsigned read_aperture(struct pci_dev *dev, u32 *size) |
| 521 | { |
| 522 | unsigned aper_size = 0, aper_base_32, aper_order; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 523 | u64 aper_base; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 524 | |
Pavel Machek | 3bb6fbf | 2008-04-15 12:43:57 +0200 | [diff] [blame] | 525 | pci_read_config_dword(dev, AMD64_GARTAPERTUREBASE, &aper_base_32); |
| 526 | pci_read_config_dword(dev, AMD64_GARTAPERTURECTL, &aper_order); |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 527 | aper_order = (aper_order >> 1) & 7; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 528 | |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 529 | aper_base = aper_base_32 & 0x7fff; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 530 | aper_base <<= 25; |
| 531 | |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 532 | aper_size = (32 * 1024 * 1024) << aper_order; |
| 533 | if (aper_base + aper_size > 0x100000000UL || !aper_size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 534 | aper_base = 0; |
| 535 | |
| 536 | *size = aper_size; |
| 537 | return aper_base; |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 538 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 539 | |
Rafael J. Wysocki | 6703f6d | 2008-06-10 00:10:48 +0200 | [diff] [blame] | 540 | static void enable_gart_translations(void) |
| 541 | { |
| 542 | int i; |
| 543 | |
Hans Rosenfeld | 9653a5c | 2010-10-29 17:14:31 +0200 | [diff] [blame] | 544 | if (!amd_nb_has_feature(AMD_NB_GART)) |
Andreas Herrmann | 900f9ac | 2010-09-17 18:02:54 +0200 | [diff] [blame] | 545 | return; |
| 546 | |
Hans Rosenfeld | 9653a5c | 2010-10-29 17:14:31 +0200 | [diff] [blame] | 547 | for (i = 0; i < amd_nb_num(); i++) { |
| 548 | struct pci_dev *dev = node_to_amd_nb(i)->misc; |
Rafael J. Wysocki | 6703f6d | 2008-06-10 00:10:48 +0200 | [diff] [blame] | 549 | |
| 550 | enable_gart_translation(dev, __pa(agp_gatt_table)); |
| 551 | } |
Joerg Roedel | 4b83873 | 2010-04-07 12:57:35 +0200 | [diff] [blame] | 552 | |
| 553 | /* Flush the GART-TLB to remove stale entries */ |
Hans Rosenfeld | eec1d4f | 2010-10-29 17:14:30 +0200 | [diff] [blame] | 554 | amd_flush_garts(); |
Rafael J. Wysocki | 6703f6d | 2008-06-10 00:10:48 +0200 | [diff] [blame] | 555 | } |
| 556 | |
| 557 | /* |
| 558 | * If fix_up_north_bridges is set, the north bridges have to be fixed up on |
| 559 | * resume in the same way as they are handled in gart_iommu_hole_init(). |
| 560 | */ |
| 561 | static bool fix_up_north_bridges; |
| 562 | static u32 aperture_order; |
| 563 | static u32 aperture_alloc; |
| 564 | |
| 565 | void set_up_gart_resume(u32 aper_order, u32 aper_alloc) |
| 566 | { |
| 567 | fix_up_north_bridges = true; |
| 568 | aperture_order = aper_order; |
| 569 | aperture_alloc = aper_alloc; |
| 570 | } |
| 571 | |
Rafael J. Wysocki | f3c6ea1 | 2011-03-23 22:15:54 +0100 | [diff] [blame] | 572 | static void gart_fixup_northbridges(void) |
Ingo Molnar | 123bf0e | 2009-11-15 21:19:52 +0900 | [diff] [blame] | 573 | { |
| 574 | int i; |
| 575 | |
| 576 | if (!fix_up_north_bridges) |
| 577 | return; |
| 578 | |
Hans Rosenfeld | 9653a5c | 2010-10-29 17:14:31 +0200 | [diff] [blame] | 579 | if (!amd_nb_has_feature(AMD_NB_GART)) |
Andreas Herrmann | 900f9ac | 2010-09-17 18:02:54 +0200 | [diff] [blame] | 580 | return; |
| 581 | |
Ingo Molnar | 123bf0e | 2009-11-15 21:19:52 +0900 | [diff] [blame] | 582 | pr_info("PCI-DMA: Restoring GART aperture settings\n"); |
| 583 | |
Hans Rosenfeld | 9653a5c | 2010-10-29 17:14:31 +0200 | [diff] [blame] | 584 | for (i = 0; i < amd_nb_num(); i++) { |
| 585 | struct pci_dev *dev = node_to_amd_nb(i)->misc; |
Ingo Molnar | 123bf0e | 2009-11-15 21:19:52 +0900 | [diff] [blame] | 586 | |
| 587 | /* |
| 588 | * Don't enable translations just yet. That is the next |
| 589 | * step. Restore the pre-suspend aperture settings. |
| 590 | */ |
Borislav Petkov | 260133a | 2010-09-03 18:39:40 +0200 | [diff] [blame] | 591 | gart_set_size_and_enable(dev, aperture_order); |
Ingo Molnar | 123bf0e | 2009-11-15 21:19:52 +0900 | [diff] [blame] | 592 | pci_write_config_dword(dev, AMD64_GARTAPERTUREBASE, aperture_alloc >> 25); |
| 593 | } |
| 594 | } |
| 595 | |
Rafael J. Wysocki | f3c6ea1 | 2011-03-23 22:15:54 +0100 | [diff] [blame] | 596 | static void gart_resume(void) |
Pavel Machek | cd76374 | 2008-05-29 00:30:21 -0700 | [diff] [blame] | 597 | { |
Ingo Molnar | 123bf0e | 2009-11-15 21:19:52 +0900 | [diff] [blame] | 598 | pr_info("PCI-DMA: Resuming GART IOMMU\n"); |
Rafael J. Wysocki | 6703f6d | 2008-06-10 00:10:48 +0200 | [diff] [blame] | 599 | |
Rafael J. Wysocki | f3c6ea1 | 2011-03-23 22:15:54 +0100 | [diff] [blame] | 600 | gart_fixup_northbridges(); |
Rafael J. Wysocki | 6703f6d | 2008-06-10 00:10:48 +0200 | [diff] [blame] | 601 | |
| 602 | enable_gart_translations(); |
Pavel Machek | cd76374 | 2008-05-29 00:30:21 -0700 | [diff] [blame] | 603 | } |
| 604 | |
Rafael J. Wysocki | f3c6ea1 | 2011-03-23 22:15:54 +0100 | [diff] [blame] | 605 | static struct syscore_ops gart_syscore_ops = { |
Ingo Molnar | 123bf0e | 2009-11-15 21:19:52 +0900 | [diff] [blame] | 606 | .resume = gart_resume, |
Pavel Machek | cd76374 | 2008-05-29 00:30:21 -0700 | [diff] [blame] | 607 | |
| 608 | }; |
| 609 | |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 610 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 611 | * Private Northbridge GATT initialization in case we cannot use the |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 612 | * AGP driver for some reason. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 613 | */ |
Hans Rosenfeld | eec1d4f | 2010-10-29 17:14:30 +0200 | [diff] [blame] | 614 | static __init int init_amd_gatt(struct agp_kern_info *info) |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 615 | { |
| 616 | unsigned aper_size, gatt_size, new_aper_size; |
| 617 | unsigned aper_base, new_aper_base; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 618 | struct pci_dev *dev; |
| 619 | void *gatt; |
Rafael J. Wysocki | f3c6ea1 | 2011-03-23 22:15:54 +0100 | [diff] [blame] | 620 | int i; |
Andi Kleen | a32073b | 2006-06-26 13:56:40 +0200 | [diff] [blame] | 621 | |
Ingo Molnar | 123bf0e | 2009-11-15 21:19:52 +0900 | [diff] [blame] | 622 | pr_info("PCI-DMA: Disabling AGP.\n"); |
| 623 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 624 | aper_size = aper_base = info->aper_size = 0; |
Andi Kleen | a32073b | 2006-06-26 13:56:40 +0200 | [diff] [blame] | 625 | dev = NULL; |
Hans Rosenfeld | 9653a5c | 2010-10-29 17:14:31 +0200 | [diff] [blame] | 626 | for (i = 0; i < amd_nb_num(); i++) { |
| 627 | dev = node_to_amd_nb(i)->misc; |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 628 | new_aper_base = read_aperture(dev, &new_aper_size); |
| 629 | if (!new_aper_base) |
| 630 | goto nommu; |
| 631 | |
| 632 | if (!aper_base) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 633 | aper_size = new_aper_size; |
| 634 | aper_base = new_aper_base; |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 635 | } |
| 636 | if (aper_size != new_aper_size || aper_base != new_aper_base) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 637 | goto nommu; |
| 638 | } |
| 639 | if (!aper_base) |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 640 | goto nommu; |
Ingo Molnar | 123bf0e | 2009-11-15 21:19:52 +0900 | [diff] [blame] | 641 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 642 | info->aper_base = aper_base; |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 643 | info->aper_size = aper_size >> 20; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 644 | |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 645 | gatt_size = (aper_size >> PAGE_SHIFT) * sizeof(u32); |
Joerg Roedel | 0114267 | 2008-09-25 12:42:12 +0200 | [diff] [blame] | 646 | gatt = (void *)__get_free_pages(GFP_KERNEL | __GFP_ZERO, |
| 647 | get_order(gatt_size)); |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 648 | if (!gatt) |
Joachim Deguara | cf6387d | 2007-04-24 13:05:36 +0200 | [diff] [blame] | 649 | panic("Cannot allocate GATT table"); |
Arjan van de Ven | 6d238cc | 2008-01-30 13:34:06 +0100 | [diff] [blame] | 650 | if (set_memory_uc((unsigned long)gatt, gatt_size >> PAGE_SHIFT)) |
Joachim Deguara | cf6387d | 2007-04-24 13:05:36 +0200 | [diff] [blame] | 651 | panic("Could not set GART PTEs to uncacheable pages"); |
Joachim Deguara | cf6387d | 2007-04-24 13:05:36 +0200 | [diff] [blame] | 652 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 653 | agp_gatt_table = gatt; |
Andi Kleen | a32073b | 2006-06-26 13:56:40 +0200 | [diff] [blame] | 654 | |
Rafael J. Wysocki | f3c6ea1 | 2011-03-23 22:15:54 +0100 | [diff] [blame] | 655 | register_syscore_ops(&gart_syscore_ops); |
Rafael J. Wysocki | 6703f6d | 2008-06-10 00:10:48 +0200 | [diff] [blame] | 656 | |
Andi Kleen | a32073b | 2006-06-26 13:56:40 +0200 | [diff] [blame] | 657 | flush_gart(); |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 658 | |
Ingo Molnar | 123bf0e | 2009-11-15 21:19:52 +0900 | [diff] [blame] | 659 | pr_info("PCI-DMA: aperture base @ %x size %u KB\n", |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 660 | aper_base, aper_size>>10); |
Yinghai Lu | 7ab073b | 2008-07-12 14:30:35 -0700 | [diff] [blame] | 661 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 662 | return 0; |
| 663 | |
| 664 | nommu: |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 665 | /* Should not happen anymore */ |
Kefeng Wang | 8d3bcc4 | 2019-10-18 11:18:24 +0800 | [diff] [blame] | 666 | pr_warn("PCI-DMA: More than 4GB of RAM and no IOMMU - falling back to iommu=soft.\n"); |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 667 | return -1; |
| 668 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 669 | |
Bart Van Assche | 5299709 | 2017-01-20 13:04:01 -0800 | [diff] [blame] | 670 | static const struct dma_map_ops gart_dma_ops = { |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 671 | .map_sg = gart_map_sg, |
| 672 | .unmap_sg = gart_unmap_sg, |
FUJITA Tomonori | 052aedb | 2009-01-05 23:47:23 +0900 | [diff] [blame] | 673 | .map_page = gart_map_page, |
| 674 | .unmap_page = gart_unmap_page, |
Andrzej Pietrasiewicz | baa676f | 2012-03-27 14:28:18 +0200 | [diff] [blame] | 675 | .alloc = gart_alloc_coherent, |
| 676 | .free = gart_free_coherent, |
Christoph Hellwig | f9f3232 | 2019-08-06 15:01:50 +0300 | [diff] [blame] | 677 | .mmap = dma_common_mmap, |
| 678 | .get_sgtable = dma_common_get_sgtable, |
Christoph Hellwig | fec777c | 2018-03-19 11:38:15 +0100 | [diff] [blame] | 679 | .dma_supported = dma_direct_supported, |
Christoph Hellwig | 249baa5 | 2019-08-06 15:01:38 +0300 | [diff] [blame] | 680 | .get_required_mask = dma_direct_get_required_mask, |
Christoph Hellwig | efa70f2 | 2020-09-01 13:34:33 +0200 | [diff] [blame] | 681 | .alloc_pages = dma_direct_alloc_pages, |
| 682 | .free_pages = dma_direct_free_pages, |
Muli Ben-Yehuda | 17a941d | 2006-01-11 22:44:42 +0100 | [diff] [blame] | 683 | }; |
| 684 | |
FUJITA Tomonori | 338bac5 | 2009-10-27 16:34:44 +0900 | [diff] [blame] | 685 | static void gart_iommu_shutdown(void) |
Yinghai Lu | bc2cea6 | 2007-07-21 17:11:28 +0200 | [diff] [blame] | 686 | { |
| 687 | struct pci_dev *dev; |
| 688 | int i; |
| 689 | |
Yinghai Lu | f3eee54 | 2009-12-14 11:52:15 +0900 | [diff] [blame] | 690 | /* don't shutdown it if there is AGP installed */ |
| 691 | if (!no_agp) |
Yinghai Lu | bc2cea6 | 2007-07-21 17:11:28 +0200 | [diff] [blame] | 692 | return; |
| 693 | |
Hans Rosenfeld | 9653a5c | 2010-10-29 17:14:31 +0200 | [diff] [blame] | 694 | if (!amd_nb_has_feature(AMD_NB_GART)) |
Andreas Herrmann | 900f9ac | 2010-09-17 18:02:54 +0200 | [diff] [blame] | 695 | return; |
| 696 | |
Hans Rosenfeld | 9653a5c | 2010-10-29 17:14:31 +0200 | [diff] [blame] | 697 | for (i = 0; i < amd_nb_num(); i++) { |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 698 | u32 ctl; |
Yinghai Lu | bc2cea6 | 2007-07-21 17:11:28 +0200 | [diff] [blame] | 699 | |
Hans Rosenfeld | 9653a5c | 2010-10-29 17:14:31 +0200 | [diff] [blame] | 700 | dev = node_to_amd_nb(i)->misc; |
Pavel Machek | 3bb6fbf | 2008-04-15 12:43:57 +0200 | [diff] [blame] | 701 | pci_read_config_dword(dev, AMD64_GARTAPERTURECTL, &ctl); |
Yinghai Lu | bc2cea6 | 2007-07-21 17:11:28 +0200 | [diff] [blame] | 702 | |
Pavel Machek | 3bb6fbf | 2008-04-15 12:43:57 +0200 | [diff] [blame] | 703 | ctl &= ~GARTEN; |
Yinghai Lu | bc2cea6 | 2007-07-21 17:11:28 +0200 | [diff] [blame] | 704 | |
Pavel Machek | 3bb6fbf | 2008-04-15 12:43:57 +0200 | [diff] [blame] | 705 | pci_write_config_dword(dev, AMD64_GARTAPERTURECTL, ctl); |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 706 | } |
Yinghai Lu | bc2cea6 | 2007-07-21 17:11:28 +0200 | [diff] [blame] | 707 | } |
| 708 | |
FUJITA Tomonori | de95762 | 2009-11-10 19:46:14 +0900 | [diff] [blame] | 709 | int __init gart_iommu_init(void) |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 710 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 711 | struct agp_kern_info info; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 712 | unsigned long iommu_start; |
Yinghai Lu | d99e901 | 2008-10-04 15:55:12 -0700 | [diff] [blame] | 713 | unsigned long aper_base, aper_size; |
| 714 | unsigned long start_pfn, end_pfn; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 715 | unsigned long scratch; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 716 | |
Hans Rosenfeld | 9653a5c | 2010-10-29 17:14:31 +0200 | [diff] [blame] | 717 | if (!amd_nb_has_feature(AMD_NB_GART)) |
FUJITA Tomonori | de95762 | 2009-11-10 19:46:14 +0900 | [diff] [blame] | 718 | return 0; |
Andi Kleen | a32073b | 2006-06-26 13:56:40 +0200 | [diff] [blame] | 719 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 720 | #ifndef CONFIG_AGP_AMD64 |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 721 | no_agp = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 722 | #else |
| 723 | /* Makefile puts PCI initialization via subsys_initcall first. */ |
Hans Rosenfeld | eec1d4f | 2010-10-29 17:14:30 +0200 | [diff] [blame] | 724 | /* Add other AMD AGP bridge drivers here */ |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 725 | no_agp = no_agp || |
| 726 | (agp_amd64_init() < 0) || |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 727 | (agp_copy_info(agp_bridge, &info) < 0); |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 728 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 729 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 730 | if (no_iommu || |
Yinghai Lu | c987d12 | 2008-06-24 22:14:09 -0700 | [diff] [blame] | 731 | (!force_iommu && max_pfn <= MAX_DMA32_PFN) || |
Joerg Roedel | 0440d4c | 2007-10-24 12:49:50 +0200 | [diff] [blame] | 732 | !gart_iommu_aperture || |
Hans Rosenfeld | eec1d4f | 2010-10-29 17:14:30 +0200 | [diff] [blame] | 733 | (no_agp && init_amd_gatt(&info) < 0)) { |
Yinghai Lu | c987d12 | 2008-06-24 22:14:09 -0700 | [diff] [blame] | 734 | if (max_pfn > MAX_DMA32_PFN) { |
Kefeng Wang | 8d3bcc4 | 2019-10-18 11:18:24 +0800 | [diff] [blame] | 735 | pr_warn("More than 4GB of memory but GART IOMMU not available.\n"); |
| 736 | pr_warn("falling back to iommu=soft.\n"); |
Jon Mason | 5b7b644 | 2006-02-03 21:51:59 +0100 | [diff] [blame] | 737 | } |
FUJITA Tomonori | de95762 | 2009-11-10 19:46:14 +0900 | [diff] [blame] | 738 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 739 | } |
| 740 | |
Yinghai Lu | d99e901 | 2008-10-04 15:55:12 -0700 | [diff] [blame] | 741 | /* need to map that range */ |
Ingo Molnar | 123bf0e | 2009-11-15 21:19:52 +0900 | [diff] [blame] | 742 | aper_size = info.aper_size << 20; |
| 743 | aper_base = info.aper_base; |
| 744 | end_pfn = (aper_base>>PAGE_SHIFT) + (aper_size>>PAGE_SHIFT); |
| 745 | |
Yinghai Lu | 5101730 | 2012-11-16 19:38:50 -0800 | [diff] [blame] | 746 | start_pfn = PFN_DOWN(aper_base); |
| 747 | if (!pfn_range_is_mapped(start_pfn, end_pfn)) |
Logan Gunthorpe | c164fbb | 2020-04-10 14:33:24 -0700 | [diff] [blame] | 748 | init_memory_mapping(start_pfn<<PAGE_SHIFT, end_pfn<<PAGE_SHIFT, |
| 749 | PAGE_KERNEL); |
Yinghai Lu | d99e901 | 2008-10-04 15:55:12 -0700 | [diff] [blame] | 750 | |
Ingo Molnar | 123bf0e | 2009-11-15 21:19:52 +0900 | [diff] [blame] | 751 | pr_info("PCI-DMA: using GART IOMMU.\n"); |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 752 | iommu_size = check_iommu_size(info.aper_base, aper_size); |
| 753 | iommu_pages = iommu_size >> PAGE_SHIFT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 754 | |
Joerg Roedel | 0114267 | 2008-09-25 12:42:12 +0200 | [diff] [blame] | 755 | iommu_gart_bitmap = (void *) __get_free_pages(GFP_KERNEL | __GFP_ZERO, |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 756 | get_order(iommu_pages/8)); |
| 757 | if (!iommu_gart_bitmap) |
| 758 | panic("Cannot allocate iommu bitmap\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 759 | |
Ingo Molnar | 123bf0e | 2009-11-15 21:19:52 +0900 | [diff] [blame] | 760 | pr_info("PCI-DMA: Reserving %luMB of IOMMU area in the AGP aperture\n", |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 761 | iommu_size >> 20); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 762 | |
Ingo Molnar | 123bf0e | 2009-11-15 21:19:52 +0900 | [diff] [blame] | 763 | agp_memory_reserved = iommu_size; |
| 764 | iommu_start = aper_size - iommu_size; |
| 765 | iommu_bus_base = info.aper_base + iommu_start; |
Ingo Molnar | 123bf0e | 2009-11-15 21:19:52 +0900 | [diff] [blame] | 766 | iommu_gatt_base = agp_gatt_table + (iommu_start>>PAGE_SHIFT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 767 | |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 768 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 769 | * Unmap the IOMMU part of the GART. The alias of the page is |
| 770 | * always mapped with cache enabled and there is no full cache |
| 771 | * coherency across the GART remapping. The unmapping avoids |
| 772 | * automatic prefetches from the CPU allocating cache lines in |
| 773 | * there. All CPU accesses are done via the direct mapping to |
| 774 | * the backing memory. The GART address is only used by PCI |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 775 | * devices. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 776 | */ |
Andi Kleen | 28d6ee4 | 2008-02-04 16:48:08 +0100 | [diff] [blame] | 777 | set_memory_np((unsigned long)__va(iommu_bus_base), |
| 778 | iommu_size >> PAGE_SHIFT); |
Ingo Molnar | 184652e | 2008-02-14 23:30:20 +0100 | [diff] [blame] | 779 | /* |
| 780 | * Tricky. The GART table remaps the physical memory range, |
| 781 | * so the CPU wont notice potential aliases and if the memory |
| 782 | * is remapped to UC later on, we might surprise the PCI devices |
| 783 | * with a stray writeout of a cacheline. So play it sure and |
| 784 | * do an explicit, full-scale wbinvd() _after_ having marked all |
| 785 | * the pages as Not-Present: |
| 786 | */ |
| 787 | wbinvd(); |
Ingo Molnar | 123bf0e | 2009-11-15 21:19:52 +0900 | [diff] [blame] | 788 | |
Mark Langsdorf | fe2245c | 2009-07-05 15:50:52 -0500 | [diff] [blame] | 789 | /* |
| 790 | * Now all caches are flushed and we can safely enable |
| 791 | * GART hardware. Doing it early leaves the possibility |
| 792 | * of stale cache entries that can lead to GART PTE |
| 793 | * errors. |
| 794 | */ |
| 795 | enable_gart_translations(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 796 | |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 797 | /* |
Pavel Machek | fa3d319 | 2008-06-26 00:25:43 +0200 | [diff] [blame] | 798 | * Try to workaround a bug (thanks to BenH): |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 799 | * Set unmapped entries to a scratch page instead of 0. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 800 | * Any prefetches that hit unmapped entries won't get an bus abort |
Pavel Machek | fa3d319 | 2008-06-26 00:25:43 +0200 | [diff] [blame] | 801 | * then. (P2P bridge may be prefetching on DMA reads). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 802 | */ |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 803 | scratch = get_zeroed_page(GFP_KERNEL); |
| 804 | if (!scratch) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 805 | panic("Cannot allocate iommu scratch page"); |
| 806 | gart_unmapped_entry = GPTE_ENCODE(__pa(scratch)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 807 | |
Andi Kleen | a32073b | 2006-06-26 13:56:40 +0200 | [diff] [blame] | 808 | flush_gart(); |
Muli Ben-Yehuda | 17a941d | 2006-01-11 22:44:42 +0100 | [diff] [blame] | 809 | dma_ops = &gart_dma_ops; |
FUJITA Tomonori | 338bac5 | 2009-10-27 16:34:44 +0900 | [diff] [blame] | 810 | x86_platform.iommu_shutdown = gart_iommu_shutdown; |
FUJITA Tomonori | 75f1cdf | 2009-11-10 19:46:20 +0900 | [diff] [blame] | 811 | swiotlb = 0; |
FUJITA Tomonori | de95762 | 2009-11-10 19:46:14 +0900 | [diff] [blame] | 812 | |
| 813 | return 0; |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 814 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 815 | |
Sam Ravnborg | 43999d9 | 2007-03-16 21:07:36 +0100 | [diff] [blame] | 816 | void __init gart_parse_options(char *p) |
Muli Ben-Yehuda | 17a941d | 2006-01-11 22:44:42 +0100 | [diff] [blame] | 817 | { |
| 818 | int arg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 819 | |
Muli Ben-Yehuda | 17a941d | 2006-01-11 22:44:42 +0100 | [diff] [blame] | 820 | if (isdigit(*p) && get_option(&p, &arg)) |
| 821 | iommu_size = arg; |
Joe Perches | 41855b7 | 2009-11-09 17:58:50 -0800 | [diff] [blame] | 822 | if (!strncmp(p, "fullflush", 9)) |
Muli Ben-Yehuda | 17a941d | 2006-01-11 22:44:42 +0100 | [diff] [blame] | 823 | iommu_fullflush = 1; |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 824 | if (!strncmp(p, "nofullflush", 11)) |
Muli Ben-Yehuda | 17a941d | 2006-01-11 22:44:42 +0100 | [diff] [blame] | 825 | iommu_fullflush = 0; |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 826 | if (!strncmp(p, "noagp", 5)) |
Muli Ben-Yehuda | 17a941d | 2006-01-11 22:44:42 +0100 | [diff] [blame] | 827 | no_agp = 1; |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 828 | if (!strncmp(p, "noaperture", 10)) |
Muli Ben-Yehuda | 17a941d | 2006-01-11 22:44:42 +0100 | [diff] [blame] | 829 | fix_aperture = 0; |
| 830 | /* duplicated from pci-dma.c */ |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 831 | if (!strncmp(p, "force", 5)) |
Joerg Roedel | 0440d4c | 2007-10-24 12:49:50 +0200 | [diff] [blame] | 832 | gart_iommu_aperture_allowed = 1; |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame] | 833 | if (!strncmp(p, "allowed", 7)) |
Joerg Roedel | 0440d4c | 2007-10-24 12:49:50 +0200 | [diff] [blame] | 834 | gart_iommu_aperture_allowed = 1; |
Muli Ben-Yehuda | 17a941d | 2006-01-11 22:44:42 +0100 | [diff] [blame] | 835 | if (!strncmp(p, "memaper", 7)) { |
| 836 | fallback_aper_force = 1; |
| 837 | p += 7; |
| 838 | if (*p == '=') { |
| 839 | ++p; |
| 840 | if (get_option(&p, &arg)) |
| 841 | fallback_aper_order = arg; |
| 842 | } |
| 843 | } |
| 844 | } |
Konrad Rzeszutek Wilk | 22e6daf | 2010-08-26 13:58:03 -0400 | [diff] [blame] | 845 | IOMMU_INIT_POST(gart_iommu_hole_init); |