blob: b75c81a8d3e68f94c214f898f04c90ae12e39f81 [file] [log] [blame]
Glauber Costa459121c92008-04-08 13:20:43 -03001#include <linux/dma-mapping.h>
Glauber Costacb5867a2008-04-08 13:20:51 -03002#include <linux/dmar.h>
Glauber Costa116890d2008-04-08 13:20:54 -03003#include <linux/bootmem.h>
Glauber Costabca5c092008-04-08 13:20:53 -03004#include <linux/pci.h>
Glauber Costacb5867a2008-04-08 13:20:51 -03005
Glauber Costa116890d2008-04-08 13:20:54 -03006#include <asm/proto.h>
7#include <asm/dma.h>
Glauber Costacb5867a2008-04-08 13:20:51 -03008#include <asm/gart.h>
9#include <asm/calgary.h>
Glauber Costa459121c92008-04-08 13:20:43 -030010
Glauber Costabca5c092008-04-08 13:20:53 -030011int forbid_dac __read_mostly;
12EXPORT_SYMBOL(forbid_dac);
13
Glauber Costa85c246e2008-04-08 13:20:50 -030014const struct dma_mapping_ops *dma_ops;
15EXPORT_SYMBOL(dma_ops);
16
Dmitri Vorobievb4cdc432008-04-28 03:15:58 +040017static int iommu_sac_force __read_mostly;
Glauber Costa8e0c3792008-04-08 13:20:55 -030018
Glauber Costaf9c258d2008-04-08 13:20:52 -030019#ifdef CONFIG_IOMMU_DEBUG
20int panic_on_overflow __read_mostly = 1;
21int force_iommu __read_mostly = 1;
22#else
23int panic_on_overflow __read_mostly = 0;
24int force_iommu __read_mostly = 0;
25#endif
26
Glauber Costafae9a0d2008-04-08 13:20:56 -030027int iommu_merge __read_mostly = 0;
28
29int no_iommu __read_mostly;
30/* Set this to 1 if there is a HW IOMMU in the system */
31int iommu_detected __read_mostly = 0;
32
33/* This tells the BIO block layer to assume merging. Default to off
34 because we cannot guarantee merging later. */
35int iommu_bio_merge __read_mostly = 0;
36EXPORT_SYMBOL(iommu_bio_merge);
37
Glauber Costacac67872008-04-08 13:21:00 -030038dma_addr_t bad_dma_address __read_mostly = 0;
39EXPORT_SYMBOL(bad_dma_address);
Glauber Costafae9a0d2008-04-08 13:20:56 -030040
Glauber Costa098cb7f2008-04-09 13:18:10 -030041/* Dummy device used for NULL arguments (normally ISA). Better would
42 be probably a smaller DMA mask, but this is bug-to-bug compatible
43 to older i386. */
44struct device fallback_dev = {
45 .bus_id = "fallback device",
46 .coherent_dma_mask = DMA_32BIT_MASK,
47 .dma_mask = &fallback_dev.coherent_dma_mask,
48};
49
Glauber Costa459121c92008-04-08 13:20:43 -030050int dma_set_mask(struct device *dev, u64 mask)
51{
52 if (!dev->dma_mask || !dma_supported(dev, mask))
53 return -EIO;
54
55 *dev->dma_mask = mask;
56
57 return 0;
58}
59EXPORT_SYMBOL(dma_set_mask);
60
Glauber Costa116890d2008-04-08 13:20:54 -030061#ifdef CONFIG_X86_64
62static __initdata void *dma32_bootmem_ptr;
63static unsigned long dma32_bootmem_size __initdata = (128ULL<<20);
64
65static int __init parse_dma32_size_opt(char *p)
66{
67 if (!p)
68 return -EINVAL;
69 dma32_bootmem_size = memparse(p, &p);
70 return 0;
71}
72early_param("dma32_size", parse_dma32_size_opt);
73
74void __init dma32_reserve_bootmem(void)
75{
76 unsigned long size, align;
77 if (end_pfn <= MAX_DMA32_PFN)
78 return;
79
80 align = 64ULL<<20;
81 size = round_up(dma32_bootmem_size, align);
82 dma32_bootmem_ptr = __alloc_bootmem_nopanic(size, align,
83 __pa(MAX_DMA_ADDRESS));
84 if (dma32_bootmem_ptr)
85 dma32_bootmem_size = size;
86 else
87 dma32_bootmem_size = 0;
88}
89static void __init dma32_free_bootmem(void)
90{
91 int node;
92
93 if (end_pfn <= MAX_DMA32_PFN)
94 return;
95
96 if (!dma32_bootmem_ptr)
97 return;
98
99 for_each_online_node(node)
100 free_bootmem_node(NODE_DATA(node), __pa(dma32_bootmem_ptr),
101 dma32_bootmem_size);
102
103 dma32_bootmem_ptr = NULL;
104 dma32_bootmem_size = 0;
105}
106
107void __init pci_iommu_alloc(void)
108{
109 /* free the range so iommu could get some range less than 4G */
110 dma32_free_bootmem();
111 /*
112 * The order of these functions is important for
113 * fall-back/fail-over reasons
114 */
115#ifdef CONFIG_GART_IOMMU
116 gart_iommu_hole_init();
117#endif
118
119#ifdef CONFIG_CALGARY_IOMMU
120 detect_calgary();
121#endif
122
123 detect_intel_iommu();
124
125#ifdef CONFIG_SWIOTLB
126 pci_swiotlb_init();
127#endif
128}
129#endif
130
Glauber Costafae9a0d2008-04-08 13:20:56 -0300131/*
132 * See <Documentation/x86_64/boot-options.txt> for the iommu kernel parameter
133 * documentation.
134 */
135static __init int iommu_setup(char *p)
136{
137 iommu_merge = 1;
138
139 if (!p)
140 return -EINVAL;
141
142 while (*p) {
143 if (!strncmp(p, "off", 3))
144 no_iommu = 1;
145 /* gart_parse_options has more force support */
146 if (!strncmp(p, "force", 5))
147 force_iommu = 1;
148 if (!strncmp(p, "noforce", 7)) {
149 iommu_merge = 0;
150 force_iommu = 0;
151 }
152
153 if (!strncmp(p, "biomerge", 8)) {
154 iommu_bio_merge = 4096;
155 iommu_merge = 1;
156 force_iommu = 1;
157 }
158 if (!strncmp(p, "panic", 5))
159 panic_on_overflow = 1;
160 if (!strncmp(p, "nopanic", 7))
161 panic_on_overflow = 0;
162 if (!strncmp(p, "merge", 5)) {
163 iommu_merge = 1;
164 force_iommu = 1;
165 }
166 if (!strncmp(p, "nomerge", 7))
167 iommu_merge = 0;
168 if (!strncmp(p, "forcesac", 8))
169 iommu_sac_force = 1;
170 if (!strncmp(p, "allowdac", 8))
171 forbid_dac = 0;
172 if (!strncmp(p, "nodac", 5))
173 forbid_dac = -1;
174 if (!strncmp(p, "usedac", 6)) {
175 forbid_dac = -1;
176 return 1;
177 }
178#ifdef CONFIG_SWIOTLB
179 if (!strncmp(p, "soft", 4))
180 swiotlb = 1;
181#endif
182
183#ifdef CONFIG_GART_IOMMU
184 gart_parse_options(p);
185#endif
186
187#ifdef CONFIG_CALGARY_IOMMU
188 if (!strncmp(p, "calgary", 7))
189 use_calgary = 1;
190#endif /* CONFIG_CALGARY_IOMMU */
191
192 p += strcspn(p, ",");
193 if (*p == ',')
194 ++p;
195 }
196 return 0;
197}
198early_param("iommu", iommu_setup);
199
Glauber Costa8e0c3792008-04-08 13:20:55 -0300200int dma_supported(struct device *dev, u64 mask)
201{
202#ifdef CONFIG_PCI
203 if (mask > 0xffffffff && forbid_dac > 0) {
204 printk(KERN_INFO "PCI: Disallowing DAC for device %s\n",
205 dev->bus_id);
206 return 0;
207 }
208#endif
209
210 if (dma_ops->dma_supported)
211 return dma_ops->dma_supported(dev, mask);
212
213 /* Copied from i386. Doesn't make much sense, because it will
214 only work for pci_alloc_coherent.
215 The caller just has to use GFP_DMA in this case. */
216 if (mask < DMA_24BIT_MASK)
217 return 0;
218
219 /* Tell the device to use SAC when IOMMU force is on. This
220 allows the driver to use cheaper accesses in some cases.
221
222 Problem with this is that if we overflow the IOMMU area and
223 return DAC as fallback address the device may not handle it
224 correctly.
225
226 As a special case some controllers have a 39bit address
227 mode that is as efficient as 32bit (aic79xx). Don't force
228 SAC for these. Assume all masks <= 40 bits are of this
229 type. Normally this doesn't make any difference, but gives
230 more gentle handling of IOMMU overflow. */
231 if (iommu_sac_force && (mask >= DMA_40BIT_MASK)) {
232 printk(KERN_INFO "%s: Force SAC with mask %Lx\n",
233 dev->bus_id, mask);
234 return 0;
235 }
236
237 return 1;
238}
239EXPORT_SYMBOL(dma_supported);
240
Glauber Costa098cb7f2008-04-09 13:18:10 -0300241/* Allocate DMA memory on node near device */
242noinline struct page *
243dma_alloc_pages(struct device *dev, gfp_t gfp, unsigned order)
244{
245 int node;
246
247 node = dev_to_node(dev);
248
249 return alloc_pages_node(node, gfp, order);
250}
251
252/*
253 * Allocate memory for a coherent mapping.
254 */
255void *
256dma_alloc_coherent(struct device *dev, size_t size, dma_addr_t *dma_handle,
257 gfp_t gfp)
258{
259 void *memory = NULL;
260 struct page *page;
261 unsigned long dma_mask = 0;
262 dma_addr_t bus;
Miquel van Smoorenburgb7f09ae2008-06-05 18:14:44 +0200263 int noretry = 0;
Glauber Costa098cb7f2008-04-09 13:18:10 -0300264
265 /* ignore region specifiers */
266 gfp &= ~(__GFP_DMA | __GFP_HIGHMEM | __GFP_DMA32);
267
Dmitry Baryshkov323ec002008-06-29 14:19:31 +0400268 if (dma_alloc_from_coherent(dev, size, dma_handle, &memory))
Glauber Costa098cb7f2008-04-09 13:18:10 -0300269 return memory;
270
Takashi Iwai4a367f32008-05-09 08:06:55 +0200271 if (!dev) {
Glauber Costa098cb7f2008-04-09 13:18:10 -0300272 dev = &fallback_dev;
Takashi Iwai4a367f32008-05-09 08:06:55 +0200273 gfp |= GFP_DMA;
274 }
Glauber Costa098cb7f2008-04-09 13:18:10 -0300275 dma_mask = dev->coherent_dma_mask;
276 if (dma_mask == 0)
Takashi Iwai4a367f32008-05-09 08:06:55 +0200277 dma_mask = (gfp & GFP_DMA) ? DMA_24BIT_MASK : DMA_32BIT_MASK;
Glauber Costa098cb7f2008-04-09 13:18:10 -0300278
279 /* Device not DMA able */
280 if (dev->dma_mask == NULL)
281 return NULL;
282
Miquel van Smoorenburgb7f09ae2008-06-05 18:14:44 +0200283 /* Don't invoke OOM killer or retry in lower 16MB DMA zone */
284 if (gfp & __GFP_DMA)
285 noretry = 1;
286
Glauber Costa098cb7f2008-04-09 13:18:10 -0300287#ifdef CONFIG_X86_64
288 /* Why <=? Even when the mask is smaller than 4GB it is often
289 larger than 16MB and in this case we have a chance of
290 finding fitting memory in the next higher zone first. If
291 not retry with true GFP_DMA. -AK */
Miquel van Smoorenburgb7f09ae2008-06-05 18:14:44 +0200292 if (dma_mask <= DMA_32BIT_MASK && !(gfp & GFP_DMA)) {
Glauber Costa098cb7f2008-04-09 13:18:10 -0300293 gfp |= GFP_DMA32;
Miquel van Smoorenburgb7f09ae2008-06-05 18:14:44 +0200294 if (dma_mask < DMA_32BIT_MASK)
295 noretry = 1;
296 }
Glauber Costa098cb7f2008-04-09 13:18:10 -0300297#endif
298
299 again:
Miquel van Smoorenburgdb9f6002008-05-28 10:31:25 +0200300 page = dma_alloc_pages(dev,
Miquel van Smoorenburgb7f09ae2008-06-05 18:14:44 +0200301 noretry ? gfp | __GFP_NORETRY : gfp, get_order(size));
Glauber Costa098cb7f2008-04-09 13:18:10 -0300302 if (page == NULL)
303 return NULL;
304
305 {
306 int high, mmu;
307 bus = page_to_phys(page);
308 memory = page_address(page);
309 high = (bus + size) >= dma_mask;
310 mmu = high;
311 if (force_iommu && !(gfp & GFP_DMA))
312 mmu = 1;
313 else if (high) {
314 free_pages((unsigned long)memory,
315 get_order(size));
316
317 /* Don't use the 16MB ZONE_DMA unless absolutely
318 needed. It's better to use remapping first. */
319 if (dma_mask < DMA_32BIT_MASK && !(gfp & GFP_DMA)) {
320 gfp = (gfp & ~GFP_DMA32) | GFP_DMA;
321 goto again;
322 }
323
324 /* Let low level make its own zone decisions */
325 gfp &= ~(GFP_DMA32|GFP_DMA);
326
327 if (dma_ops->alloc_coherent)
328 return dma_ops->alloc_coherent(dev, size,
329 dma_handle, gfp);
330 return NULL;
331 }
332
333 memset(memory, 0, size);
334 if (!mmu) {
335 *dma_handle = bus;
336 return memory;
337 }
338 }
339
340 if (dma_ops->alloc_coherent) {
341 free_pages((unsigned long)memory, get_order(size));
342 gfp &= ~(GFP_DMA|GFP_DMA32);
343 return dma_ops->alloc_coherent(dev, size, dma_handle, gfp);
344 }
345
346 if (dma_ops->map_simple) {
347 *dma_handle = dma_ops->map_simple(dev, virt_to_phys(memory),
348 size,
349 PCI_DMA_BIDIRECTIONAL);
350 if (*dma_handle != bad_dma_address)
351 return memory;
352 }
353
354 if (panic_on_overflow)
355 panic("dma_alloc_coherent: IOMMU overflow by %lu bytes\n",
356 (unsigned long)size);
357 free_pages((unsigned long)memory, get_order(size));
358 return NULL;
359}
360EXPORT_SYMBOL(dma_alloc_coherent);
361
362/*
363 * Unmap coherent memory.
364 * The caller must ensure that the device has finished accessing the mapping.
365 */
366void dma_free_coherent(struct device *dev, size_t size,
367 void *vaddr, dma_addr_t bus)
368{
369 int order = get_order(size);
370 WARN_ON(irqs_disabled()); /* for portability */
Dmitry Baryshkov323ec002008-06-29 14:19:31 +0400371 if (dma_release_from_coherent(dev, order, vaddr))
Glauber Costa098cb7f2008-04-09 13:18:10 -0300372 return;
373 if (dma_ops->unmap_single)
374 dma_ops->unmap_single(dev, bus, size, 0);
375 free_pages((unsigned long)vaddr, order);
376}
377EXPORT_SYMBOL(dma_free_coherent);
Glauber Costa8e0c3792008-04-08 13:20:55 -0300378
Glauber Costacb5867a2008-04-08 13:20:51 -0300379static int __init pci_iommu_init(void)
380{
381#ifdef CONFIG_CALGARY_IOMMU
382 calgary_iommu_init();
383#endif
Glauber Costa459121c92008-04-08 13:20:43 -0300384
Glauber Costacb5867a2008-04-08 13:20:51 -0300385 intel_iommu_init();
386
387#ifdef CONFIG_GART_IOMMU
388 gart_iommu_init();
389#endif
390
391 no_iommu_init();
392 return 0;
393}
394
395void pci_iommu_shutdown(void)
396{
397 gart_iommu_shutdown();
398}
399/* Must execute after PCI subsystem */
400fs_initcall(pci_iommu_init);
Glauber Costabca5c092008-04-08 13:20:53 -0300401
402#ifdef CONFIG_PCI
403/* Many VIA bridges seem to corrupt data for DAC. Disable it here */
404
405static __devinit void via_no_dac(struct pci_dev *dev)
406{
407 if ((dev->class >> 8) == PCI_CLASS_BRIDGE_PCI && forbid_dac == 0) {
408 printk(KERN_INFO "PCI: VIA PCI bridge detected."
409 "Disabling DAC.\n");
410 forbid_dac = 1;
411 }
412}
413DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_VIA, PCI_ANY_ID, via_no_dac);
414#endif