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