Glauber Costa | 459121c9 | 2008-04-08 13:20:43 -0300 | [diff] [blame] | 1 | #include <linux/dma-mapping.h> |
Joerg Roedel | 2118d0c | 2009-01-09 15:13:15 +0100 | [diff] [blame] | 2 | #include <linux/dma-debug.h> |
Glauber Costa | cb5867a | 2008-04-08 13:20:51 -0300 | [diff] [blame] | 3 | #include <linux/dmar.h> |
Glauber Costa | 116890d | 2008-04-08 13:20:54 -0300 | [diff] [blame] | 4 | #include <linux/bootmem.h> |
Glauber Costa | bca5c09 | 2008-04-08 13:20:53 -0300 | [diff] [blame] | 5 | #include <linux/pci.h> |
Glauber Costa | cb5867a | 2008-04-08 13:20:51 -0300 | [diff] [blame] | 6 | |
Glauber Costa | 116890d | 2008-04-08 13:20:54 -0300 | [diff] [blame] | 7 | #include <asm/proto.h> |
| 8 | #include <asm/dma.h> |
FUJITA Tomonori | 46a7fa2 | 2008-07-11 10:23:42 +0900 | [diff] [blame] | 9 | #include <asm/iommu.h> |
Joerg Roedel | 1d9b16d | 2008-11-27 18:39:15 +0100 | [diff] [blame] | 10 | #include <asm/gart.h> |
Glauber Costa | cb5867a | 2008-04-08 13:20:51 -0300 | [diff] [blame] | 11 | #include <asm/calgary.h> |
Joerg Roedel | a69ca34 | 2008-06-26 21:28:08 +0200 | [diff] [blame] | 12 | #include <asm/amd_iommu.h> |
Glauber Costa | 459121c9 | 2008-04-08 13:20:43 -0300 | [diff] [blame] | 13 | |
Fenghua Yu | 3b15e58 | 2008-10-23 16:51:00 -0700 | [diff] [blame] | 14 | static int forbid_dac __read_mostly; |
| 15 | |
FUJITA Tomonori | 160c1d8 | 2009-01-05 23:59:02 +0900 | [diff] [blame] | 16 | struct dma_map_ops *dma_ops; |
Glauber Costa | 85c246e | 2008-04-08 13:20:50 -0300 | [diff] [blame] | 17 | EXPORT_SYMBOL(dma_ops); |
| 18 | |
Dmitri Vorobiev | b4cdc43 | 2008-04-28 03:15:58 +0400 | [diff] [blame] | 19 | static int iommu_sac_force __read_mostly; |
Glauber Costa | 8e0c379 | 2008-04-08 13:20:55 -0300 | [diff] [blame] | 20 | |
Glauber Costa | f9c258d | 2008-04-08 13:20:52 -0300 | [diff] [blame] | 21 | #ifdef CONFIG_IOMMU_DEBUG |
| 22 | int panic_on_overflow __read_mostly = 1; |
| 23 | int force_iommu __read_mostly = 1; |
| 24 | #else |
| 25 | int panic_on_overflow __read_mostly = 0; |
| 26 | int force_iommu __read_mostly = 0; |
| 27 | #endif |
| 28 | |
Glauber Costa | fae9a0d | 2008-04-08 13:20:56 -0300 | [diff] [blame] | 29 | int iommu_merge __read_mostly = 0; |
| 30 | |
| 31 | int no_iommu __read_mostly; |
| 32 | /* Set this to 1 if there is a HW IOMMU in the system */ |
| 33 | int iommu_detected __read_mostly = 0; |
| 34 | |
Glauber Costa | cac6787 | 2008-04-08 13:21:00 -0300 | [diff] [blame] | 35 | dma_addr_t bad_dma_address __read_mostly = 0; |
| 36 | EXPORT_SYMBOL(bad_dma_address); |
Glauber Costa | fae9a0d | 2008-04-08 13:20:56 -0300 | [diff] [blame] | 37 | |
Glauber Costa | 098cb7f | 2008-04-09 13:18:10 -0300 | [diff] [blame] | 38 | /* Dummy device used for NULL arguments (normally ISA). Better would |
| 39 | be probably a smaller DMA mask, but this is bug-to-bug compatible |
| 40 | to older i386. */ |
Joerg Roedel | 6c505ce | 2008-08-19 16:32:45 +0200 | [diff] [blame] | 41 | struct device x86_dma_fallback_dev = { |
Kay Sievers | 1a92713 | 2008-10-30 02:17:49 +0100 | [diff] [blame] | 42 | .init_name = "fallback device", |
Yang Hongyang | 284901a | 2009-04-06 19:01:15 -0700 | [diff] [blame^] | 43 | .coherent_dma_mask = DMA_BIT_MASK(32), |
Joerg Roedel | 6c505ce | 2008-08-19 16:32:45 +0200 | [diff] [blame] | 44 | .dma_mask = &x86_dma_fallback_dev.coherent_dma_mask, |
Glauber Costa | 098cb7f | 2008-04-09 13:18:10 -0300 | [diff] [blame] | 45 | }; |
Joerg Roedel | 6c505ce | 2008-08-19 16:32:45 +0200 | [diff] [blame] | 46 | EXPORT_SYMBOL(x86_dma_fallback_dev); |
Glauber Costa | 098cb7f | 2008-04-09 13:18:10 -0300 | [diff] [blame] | 47 | |
Joerg Roedel | 2118d0c | 2009-01-09 15:13:15 +0100 | [diff] [blame] | 48 | /* Number of entries preallocated for DMA-API debugging */ |
| 49 | #define PREALLOC_DMA_DEBUG_ENTRIES 32768 |
| 50 | |
Glauber Costa | 459121c9 | 2008-04-08 13:20:43 -0300 | [diff] [blame] | 51 | int dma_set_mask(struct device *dev, u64 mask) |
| 52 | { |
| 53 | if (!dev->dma_mask || !dma_supported(dev, mask)) |
| 54 | return -EIO; |
| 55 | |
| 56 | *dev->dma_mask = mask; |
| 57 | |
| 58 | return 0; |
| 59 | } |
| 60 | EXPORT_SYMBOL(dma_set_mask); |
| 61 | |
Glauber Costa | 116890d | 2008-04-08 13:20:54 -0300 | [diff] [blame] | 62 | #ifdef CONFIG_X86_64 |
| 63 | static __initdata void *dma32_bootmem_ptr; |
| 64 | static unsigned long dma32_bootmem_size __initdata = (128ULL<<20); |
| 65 | |
| 66 | static int __init parse_dma32_size_opt(char *p) |
| 67 | { |
| 68 | if (!p) |
| 69 | return -EINVAL; |
| 70 | dma32_bootmem_size = memparse(p, &p); |
| 71 | return 0; |
| 72 | } |
| 73 | early_param("dma32_size", parse_dma32_size_opt); |
| 74 | |
| 75 | void __init dma32_reserve_bootmem(void) |
| 76 | { |
| 77 | unsigned long size, align; |
Yinghai Lu | c987d12 | 2008-06-24 22:14:09 -0700 | [diff] [blame] | 78 | if (max_pfn <= MAX_DMA32_PFN) |
Glauber Costa | 116890d | 2008-04-08 13:20:54 -0300 | [diff] [blame] | 79 | return; |
| 80 | |
Yinghai Lu | 7677b2e | 2008-04-14 20:40:37 -0700 | [diff] [blame] | 81 | /* |
| 82 | * check aperture_64.c allocate_aperture() for reason about |
| 83 | * using 512M as goal |
| 84 | */ |
Glauber Costa | 116890d | 2008-04-08 13:20:54 -0300 | [diff] [blame] | 85 | align = 64ULL<<20; |
Joerg Roedel | 1ddb551 | 2008-07-25 16:48:55 +0200 | [diff] [blame] | 86 | size = roundup(dma32_bootmem_size, align); |
Glauber Costa | 116890d | 2008-04-08 13:20:54 -0300 | [diff] [blame] | 87 | dma32_bootmem_ptr = __alloc_bootmem_nopanic(size, align, |
Yinghai Lu | 7677b2e | 2008-04-14 20:40:37 -0700 | [diff] [blame] | 88 | 512ULL<<20); |
Glauber Costa | 116890d | 2008-04-08 13:20:54 -0300 | [diff] [blame] | 89 | if (dma32_bootmem_ptr) |
| 90 | dma32_bootmem_size = size; |
| 91 | else |
| 92 | dma32_bootmem_size = 0; |
| 93 | } |
| 94 | static void __init dma32_free_bootmem(void) |
| 95 | { |
Glauber Costa | 116890d | 2008-04-08 13:20:54 -0300 | [diff] [blame] | 96 | |
Yinghai Lu | c987d12 | 2008-06-24 22:14:09 -0700 | [diff] [blame] | 97 | if (max_pfn <= MAX_DMA32_PFN) |
Glauber Costa | 116890d | 2008-04-08 13:20:54 -0300 | [diff] [blame] | 98 | return; |
| 99 | |
| 100 | if (!dma32_bootmem_ptr) |
| 101 | return; |
| 102 | |
Yinghai Lu | 330fce2 | 2008-04-19 01:31:45 -0700 | [diff] [blame] | 103 | free_bootmem(__pa(dma32_bootmem_ptr), dma32_bootmem_size); |
Glauber Costa | 116890d | 2008-04-08 13:20:54 -0300 | [diff] [blame] | 104 | |
| 105 | dma32_bootmem_ptr = NULL; |
| 106 | dma32_bootmem_size = 0; |
| 107 | } |
Jeremy Fitzhardinge | cfb80c9 | 2008-12-16 12:17:36 -0800 | [diff] [blame] | 108 | #endif |
Glauber Costa | 116890d | 2008-04-08 13:20:54 -0300 | [diff] [blame] | 109 | |
| 110 | void __init pci_iommu_alloc(void) |
| 111 | { |
Jeremy Fitzhardinge | cfb80c9 | 2008-12-16 12:17:36 -0800 | [diff] [blame] | 112 | #ifdef CONFIG_X86_64 |
Glauber Costa | 116890d | 2008-04-08 13:20:54 -0300 | [diff] [blame] | 113 | /* free the range so iommu could get some range less than 4G */ |
| 114 | dma32_free_bootmem(); |
Jeremy Fitzhardinge | cfb80c9 | 2008-12-16 12:17:36 -0800 | [diff] [blame] | 115 | #endif |
| 116 | |
Glauber Costa | 116890d | 2008-04-08 13:20:54 -0300 | [diff] [blame] | 117 | /* |
| 118 | * The order of these functions is important for |
| 119 | * fall-back/fail-over reasons |
| 120 | */ |
Glauber Costa | 116890d | 2008-04-08 13:20:54 -0300 | [diff] [blame] | 121 | gart_iommu_hole_init(); |
Glauber Costa | 116890d | 2008-04-08 13:20:54 -0300 | [diff] [blame] | 122 | |
Glauber Costa | 116890d | 2008-04-08 13:20:54 -0300 | [diff] [blame] | 123 | detect_calgary(); |
Glauber Costa | 116890d | 2008-04-08 13:20:54 -0300 | [diff] [blame] | 124 | |
| 125 | detect_intel_iommu(); |
| 126 | |
Joerg Roedel | a69ca34 | 2008-06-26 21:28:08 +0200 | [diff] [blame] | 127 | amd_iommu_detect(); |
| 128 | |
Glauber Costa | 116890d | 2008-04-08 13:20:54 -0300 | [diff] [blame] | 129 | pci_swiotlb_init(); |
Glauber Costa | 116890d | 2008-04-08 13:20:54 -0300 | [diff] [blame] | 130 | } |
FUJITA Tomonori | 8978b74 | 2008-07-29 13:38:53 +0900 | [diff] [blame] | 131 | |
FUJITA Tomonori | 9f6ac57 | 2008-09-24 20:48:35 +0900 | [diff] [blame] | 132 | void *dma_generic_alloc_coherent(struct device *dev, size_t size, |
| 133 | dma_addr_t *dma_addr, gfp_t flag) |
| 134 | { |
| 135 | unsigned long dma_mask; |
| 136 | struct page *page; |
| 137 | dma_addr_t addr; |
| 138 | |
| 139 | dma_mask = dma_alloc_coherent_mask(dev, flag); |
| 140 | |
| 141 | flag |= __GFP_ZERO; |
| 142 | again: |
| 143 | page = alloc_pages_node(dev_to_node(dev), flag, get_order(size)); |
| 144 | if (!page) |
| 145 | return NULL; |
| 146 | |
| 147 | addr = page_to_phys(page); |
| 148 | if (!is_buffer_dma_capable(dma_mask, addr, size)) { |
| 149 | __free_pages(page, get_order(size)); |
| 150 | |
Yang Hongyang | 284901a | 2009-04-06 19:01:15 -0700 | [diff] [blame^] | 151 | if (dma_mask < DMA_BIT_MASK(32) && !(flag & GFP_DMA)) { |
FUJITA Tomonori | 9f6ac57 | 2008-09-24 20:48:35 +0900 | [diff] [blame] | 152 | flag = (flag & ~GFP_DMA32) | GFP_DMA; |
| 153 | goto again; |
| 154 | } |
| 155 | |
| 156 | return NULL; |
| 157 | } |
| 158 | |
| 159 | *dma_addr = addr; |
| 160 | return page_address(page); |
| 161 | } |
| 162 | |
Glauber Costa | fae9a0d | 2008-04-08 13:20:56 -0300 | [diff] [blame] | 163 | /* |
| 164 | * See <Documentation/x86_64/boot-options.txt> for the iommu kernel parameter |
| 165 | * documentation. |
| 166 | */ |
| 167 | static __init int iommu_setup(char *p) |
| 168 | { |
| 169 | iommu_merge = 1; |
| 170 | |
| 171 | if (!p) |
| 172 | return -EINVAL; |
| 173 | |
| 174 | while (*p) { |
| 175 | if (!strncmp(p, "off", 3)) |
| 176 | no_iommu = 1; |
| 177 | /* gart_parse_options has more force support */ |
| 178 | if (!strncmp(p, "force", 5)) |
| 179 | force_iommu = 1; |
| 180 | if (!strncmp(p, "noforce", 7)) { |
| 181 | iommu_merge = 0; |
| 182 | force_iommu = 0; |
| 183 | } |
| 184 | |
| 185 | if (!strncmp(p, "biomerge", 8)) { |
Glauber Costa | fae9a0d | 2008-04-08 13:20:56 -0300 | [diff] [blame] | 186 | iommu_merge = 1; |
| 187 | force_iommu = 1; |
| 188 | } |
| 189 | if (!strncmp(p, "panic", 5)) |
| 190 | panic_on_overflow = 1; |
| 191 | if (!strncmp(p, "nopanic", 7)) |
| 192 | panic_on_overflow = 0; |
| 193 | if (!strncmp(p, "merge", 5)) { |
| 194 | iommu_merge = 1; |
| 195 | force_iommu = 1; |
| 196 | } |
| 197 | if (!strncmp(p, "nomerge", 7)) |
| 198 | iommu_merge = 0; |
| 199 | if (!strncmp(p, "forcesac", 8)) |
| 200 | iommu_sac_force = 1; |
| 201 | if (!strncmp(p, "allowdac", 8)) |
| 202 | forbid_dac = 0; |
| 203 | if (!strncmp(p, "nodac", 5)) |
| 204 | forbid_dac = -1; |
| 205 | if (!strncmp(p, "usedac", 6)) { |
| 206 | forbid_dac = -1; |
| 207 | return 1; |
| 208 | } |
| 209 | #ifdef CONFIG_SWIOTLB |
| 210 | if (!strncmp(p, "soft", 4)) |
| 211 | swiotlb = 1; |
| 212 | #endif |
| 213 | |
Glauber Costa | fae9a0d | 2008-04-08 13:20:56 -0300 | [diff] [blame] | 214 | gart_parse_options(p); |
Glauber Costa | fae9a0d | 2008-04-08 13:20:56 -0300 | [diff] [blame] | 215 | |
| 216 | #ifdef CONFIG_CALGARY_IOMMU |
| 217 | if (!strncmp(p, "calgary", 7)) |
| 218 | use_calgary = 1; |
| 219 | #endif /* CONFIG_CALGARY_IOMMU */ |
| 220 | |
| 221 | p += strcspn(p, ","); |
| 222 | if (*p == ',') |
| 223 | ++p; |
| 224 | } |
| 225 | return 0; |
| 226 | } |
| 227 | early_param("iommu", iommu_setup); |
| 228 | |
Glauber Costa | 8e0c379 | 2008-04-08 13:20:55 -0300 | [diff] [blame] | 229 | int dma_supported(struct device *dev, u64 mask) |
| 230 | { |
FUJITA Tomonori | 160c1d8 | 2009-01-05 23:59:02 +0900 | [diff] [blame] | 231 | struct dma_map_ops *ops = get_dma_ops(dev); |
FUJITA Tomonori | 8d8bb39 | 2008-07-25 19:44:49 -0700 | [diff] [blame] | 232 | |
Glauber Costa | 8e0c379 | 2008-04-08 13:20:55 -0300 | [diff] [blame] | 233 | #ifdef CONFIG_PCI |
| 234 | if (mask > 0xffffffff && forbid_dac > 0) { |
Greg Kroah-Hartman | fc3a882 | 2008-05-02 06:02:41 +0200 | [diff] [blame] | 235 | dev_info(dev, "PCI: Disallowing DAC for device\n"); |
Glauber Costa | 8e0c379 | 2008-04-08 13:20:55 -0300 | [diff] [blame] | 236 | return 0; |
| 237 | } |
| 238 | #endif |
| 239 | |
FUJITA Tomonori | 8d8bb39 | 2008-07-25 19:44:49 -0700 | [diff] [blame] | 240 | if (ops->dma_supported) |
| 241 | return ops->dma_supported(dev, mask); |
Glauber Costa | 8e0c379 | 2008-04-08 13:20:55 -0300 | [diff] [blame] | 242 | |
| 243 | /* Copied from i386. Doesn't make much sense, because it will |
| 244 | only work for pci_alloc_coherent. |
| 245 | The caller just has to use GFP_DMA in this case. */ |
| 246 | if (mask < DMA_24BIT_MASK) |
| 247 | return 0; |
| 248 | |
| 249 | /* Tell the device to use SAC when IOMMU force is on. This |
| 250 | allows the driver to use cheaper accesses in some cases. |
| 251 | |
| 252 | Problem with this is that if we overflow the IOMMU area and |
| 253 | return DAC as fallback address the device may not handle it |
| 254 | correctly. |
| 255 | |
| 256 | As a special case some controllers have a 39bit address |
| 257 | mode that is as efficient as 32bit (aic79xx). Don't force |
| 258 | SAC for these. Assume all masks <= 40 bits are of this |
| 259 | type. Normally this doesn't make any difference, but gives |
| 260 | more gentle handling of IOMMU overflow. */ |
Yang Hongyang | 50cf156 | 2009-04-06 19:01:14 -0700 | [diff] [blame] | 261 | if (iommu_sac_force && (mask >= DMA_BIT_MASK(40))) { |
Greg Kroah-Hartman | fc3a882 | 2008-05-02 06:02:41 +0200 | [diff] [blame] | 262 | dev_info(dev, "Force SAC with mask %Lx\n", mask); |
Glauber Costa | 8e0c379 | 2008-04-08 13:20:55 -0300 | [diff] [blame] | 263 | return 0; |
| 264 | } |
| 265 | |
| 266 | return 1; |
| 267 | } |
| 268 | EXPORT_SYMBOL(dma_supported); |
| 269 | |
Glauber Costa | cb5867a | 2008-04-08 13:20:51 -0300 | [diff] [blame] | 270 | static int __init pci_iommu_init(void) |
| 271 | { |
Joerg Roedel | 2118d0c | 2009-01-09 15:13:15 +0100 | [diff] [blame] | 272 | dma_debug_init(PREALLOC_DMA_DEBUG_ENTRIES); |
| 273 | |
Joerg Roedel | 86f3195 | 2009-03-16 17:50:28 +0100 | [diff] [blame] | 274 | #ifdef CONFIG_PCI |
| 275 | dma_debug_add_bus(&pci_bus_type); |
| 276 | #endif |
| 277 | |
Glauber Costa | cb5867a | 2008-04-08 13:20:51 -0300 | [diff] [blame] | 278 | calgary_iommu_init(); |
Glauber Costa | 459121c9 | 2008-04-08 13:20:43 -0300 | [diff] [blame] | 279 | |
Glauber Costa | cb5867a | 2008-04-08 13:20:51 -0300 | [diff] [blame] | 280 | intel_iommu_init(); |
| 281 | |
Joerg Roedel | a69ca34 | 2008-06-26 21:28:08 +0200 | [diff] [blame] | 282 | amd_iommu_init(); |
| 283 | |
Glauber Costa | cb5867a | 2008-04-08 13:20:51 -0300 | [diff] [blame] | 284 | gart_iommu_init(); |
Glauber Costa | cb5867a | 2008-04-08 13:20:51 -0300 | [diff] [blame] | 285 | |
| 286 | no_iommu_init(); |
| 287 | return 0; |
| 288 | } |
| 289 | |
| 290 | void pci_iommu_shutdown(void) |
| 291 | { |
| 292 | gart_iommu_shutdown(); |
| 293 | } |
| 294 | /* Must execute after PCI subsystem */ |
| 295 | fs_initcall(pci_iommu_init); |
Fenghua Yu | 3b15e58 | 2008-10-23 16:51:00 -0700 | [diff] [blame] | 296 | |
| 297 | #ifdef CONFIG_PCI |
| 298 | /* Many VIA bridges seem to corrupt data for DAC. Disable it here */ |
| 299 | |
| 300 | static __devinit void via_no_dac(struct pci_dev *dev) |
| 301 | { |
| 302 | if ((dev->class >> 8) == PCI_CLASS_BRIDGE_PCI && forbid_dac == 0) { |
Bjorn Helgaas | 13bf757 | 2009-02-24 10:38:22 -0700 | [diff] [blame] | 303 | dev_info(&dev->dev, "disabling DAC on VIA PCI bridge\n"); |
Fenghua Yu | 3b15e58 | 2008-10-23 16:51:00 -0700 | [diff] [blame] | 304 | forbid_dac = 1; |
| 305 | } |
| 306 | } |
| 307 | DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_VIA, PCI_ANY_ID, via_no_dac); |
| 308 | #endif |