blob: ebf7d454f210ef7bf8e1dc3baef884274afe8b62 [file] [log] [blame]
Glauber Costa459121c92008-04-08 13:20:43 -03001#include <linux/dma-mapping.h>
Joerg Roedel2118d0c2009-01-09 15:13:15 +01002#include <linux/dma-debug.h>
Glauber Costacb5867a2008-04-08 13:20:51 -03003#include <linux/dmar.h>
Glauber Costa116890d2008-04-08 13:20:54 -03004#include <linux/bootmem.h>
Glauber Costabca5c092008-04-08 13:20:53 -03005#include <linux/pci.h>
Glauber Costacb5867a2008-04-08 13:20:51 -03006
Glauber Costa116890d2008-04-08 13:20:54 -03007#include <asm/proto.h>
8#include <asm/dma.h>
FUJITA Tomonori46a7fa22008-07-11 10:23:42 +09009#include <asm/iommu.h>
Joerg Roedel1d9b16d2008-11-27 18:39:15 +010010#include <asm/gart.h>
Glauber Costacb5867a2008-04-08 13:20:51 -030011#include <asm/calgary.h>
Joerg Roedela69ca342008-06-26 21:28:08 +020012#include <asm/amd_iommu.h>
Glauber Costa459121c92008-04-08 13:20:43 -030013
Fenghua Yu3b15e582008-10-23 16:51:00 -070014static int forbid_dac __read_mostly;
15
FUJITA Tomonori160c1d82009-01-05 23:59:02 +090016struct dma_map_ops *dma_ops;
Glauber Costa85c246e2008-04-08 13:20:50 -030017EXPORT_SYMBOL(dma_ops);
18
Dmitri Vorobievb4cdc432008-04-28 03:15:58 +040019static int iommu_sac_force __read_mostly;
Glauber Costa8e0c3792008-04-08 13:20:55 -030020
Glauber Costaf9c258d2008-04-08 13:20:52 -030021#ifdef CONFIG_IOMMU_DEBUG
22int panic_on_overflow __read_mostly = 1;
23int force_iommu __read_mostly = 1;
24#else
25int panic_on_overflow __read_mostly = 0;
26int force_iommu __read_mostly = 0;
27#endif
28
Glauber Costafae9a0d2008-04-08 13:20:56 -030029int iommu_merge __read_mostly = 0;
30
31int no_iommu __read_mostly;
32/* Set this to 1 if there is a HW IOMMU in the system */
33int iommu_detected __read_mostly = 0;
34
Glauber Costacac67872008-04-08 13:21:00 -030035dma_addr_t bad_dma_address __read_mostly = 0;
36EXPORT_SYMBOL(bad_dma_address);
Glauber Costafae9a0d2008-04-08 13:20:56 -030037
Glauber Costa098cb7f2008-04-09 13:18:10 -030038/* 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 Roedel6c505ce2008-08-19 16:32:45 +020041struct device x86_dma_fallback_dev = {
Kay Sievers1a927132008-10-30 02:17:49 +010042 .init_name = "fallback device",
Glauber Costa098cb7f2008-04-09 13:18:10 -030043 .coherent_dma_mask = DMA_32BIT_MASK,
Joerg Roedel6c505ce2008-08-19 16:32:45 +020044 .dma_mask = &x86_dma_fallback_dev.coherent_dma_mask,
Glauber Costa098cb7f2008-04-09 13:18:10 -030045};
Joerg Roedel6c505ce2008-08-19 16:32:45 +020046EXPORT_SYMBOL(x86_dma_fallback_dev);
Glauber Costa098cb7f2008-04-09 13:18:10 -030047
Joerg Roedel2118d0c2009-01-09 15:13:15 +010048/* Number of entries preallocated for DMA-API debugging */
49#define PREALLOC_DMA_DEBUG_ENTRIES 32768
50
Glauber Costa459121c92008-04-08 13:20:43 -030051int 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}
60EXPORT_SYMBOL(dma_set_mask);
61
Glauber Costa116890d2008-04-08 13:20:54 -030062#ifdef CONFIG_X86_64
63static __initdata void *dma32_bootmem_ptr;
64static unsigned long dma32_bootmem_size __initdata = (128ULL<<20);
65
66static 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}
73early_param("dma32_size", parse_dma32_size_opt);
74
75void __init dma32_reserve_bootmem(void)
76{
77 unsigned long size, align;
Yinghai Luc987d122008-06-24 22:14:09 -070078 if (max_pfn <= MAX_DMA32_PFN)
Glauber Costa116890d2008-04-08 13:20:54 -030079 return;
80
Yinghai Lu7677b2e2008-04-14 20:40:37 -070081 /*
82 * check aperture_64.c allocate_aperture() for reason about
83 * using 512M as goal
84 */
Glauber Costa116890d2008-04-08 13:20:54 -030085 align = 64ULL<<20;
Joerg Roedel1ddb5512008-07-25 16:48:55 +020086 size = roundup(dma32_bootmem_size, align);
Glauber Costa116890d2008-04-08 13:20:54 -030087 dma32_bootmem_ptr = __alloc_bootmem_nopanic(size, align,
Yinghai Lu7677b2e2008-04-14 20:40:37 -070088 512ULL<<20);
Glauber Costa116890d2008-04-08 13:20:54 -030089 if (dma32_bootmem_ptr)
90 dma32_bootmem_size = size;
91 else
92 dma32_bootmem_size = 0;
93}
94static void __init dma32_free_bootmem(void)
95{
Glauber Costa116890d2008-04-08 13:20:54 -030096
Yinghai Luc987d122008-06-24 22:14:09 -070097 if (max_pfn <= MAX_DMA32_PFN)
Glauber Costa116890d2008-04-08 13:20:54 -030098 return;
99
100 if (!dma32_bootmem_ptr)
101 return;
102
Yinghai Lu330fce22008-04-19 01:31:45 -0700103 free_bootmem(__pa(dma32_bootmem_ptr), dma32_bootmem_size);
Glauber Costa116890d2008-04-08 13:20:54 -0300104
105 dma32_bootmem_ptr = NULL;
106 dma32_bootmem_size = 0;
107}
Jeremy Fitzhardingecfb80c92008-12-16 12:17:36 -0800108#endif
Glauber Costa116890d2008-04-08 13:20:54 -0300109
110void __init pci_iommu_alloc(void)
111{
Jeremy Fitzhardingecfb80c92008-12-16 12:17:36 -0800112#ifdef CONFIG_X86_64
Glauber Costa116890d2008-04-08 13:20:54 -0300113 /* free the range so iommu could get some range less than 4G */
114 dma32_free_bootmem();
Jeremy Fitzhardingecfb80c92008-12-16 12:17:36 -0800115#endif
116
Glauber Costa116890d2008-04-08 13:20:54 -0300117 /*
118 * The order of these functions is important for
119 * fall-back/fail-over reasons
120 */
Glauber Costa116890d2008-04-08 13:20:54 -0300121 gart_iommu_hole_init();
Glauber Costa116890d2008-04-08 13:20:54 -0300122
Glauber Costa116890d2008-04-08 13:20:54 -0300123 detect_calgary();
Glauber Costa116890d2008-04-08 13:20:54 -0300124
125 detect_intel_iommu();
126
Joerg Roedela69ca342008-06-26 21:28:08 +0200127 amd_iommu_detect();
128
Glauber Costa116890d2008-04-08 13:20:54 -0300129 pci_swiotlb_init();
Glauber Costa116890d2008-04-08 13:20:54 -0300130}
FUJITA Tomonori8978b742008-07-29 13:38:53 +0900131
FUJITA Tomonori9f6ac572008-09-24 20:48:35 +0900132void *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;
142again:
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
151 if (dma_mask < DMA_32BIT_MASK && !(flag & GFP_DMA)) {
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 Costafae9a0d2008-04-08 13:20:56 -0300163/*
164 * See <Documentation/x86_64/boot-options.txt> for the iommu kernel parameter
165 * documentation.
166 */
167static __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 Costafae9a0d2008-04-08 13:20:56 -0300186 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 Costafae9a0d2008-04-08 13:20:56 -0300214 gart_parse_options(p);
Glauber Costafae9a0d2008-04-08 13:20:56 -0300215
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}
227early_param("iommu", iommu_setup);
228
Glauber Costa8e0c3792008-04-08 13:20:55 -0300229int dma_supported(struct device *dev, u64 mask)
230{
FUJITA Tomonori160c1d82009-01-05 23:59:02 +0900231 struct dma_map_ops *ops = get_dma_ops(dev);
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700232
Glauber Costa8e0c3792008-04-08 13:20:55 -0300233#ifdef CONFIG_PCI
234 if (mask > 0xffffffff && forbid_dac > 0) {
Greg Kroah-Hartmanfc3a8822008-05-02 06:02:41 +0200235 dev_info(dev, "PCI: Disallowing DAC for device\n");
Glauber Costa8e0c3792008-04-08 13:20:55 -0300236 return 0;
237 }
238#endif
239
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700240 if (ops->dma_supported)
241 return ops->dma_supported(dev, mask);
Glauber Costa8e0c3792008-04-08 13:20:55 -0300242
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. */
261 if (iommu_sac_force && (mask >= DMA_40BIT_MASK)) {
Greg Kroah-Hartmanfc3a8822008-05-02 06:02:41 +0200262 dev_info(dev, "Force SAC with mask %Lx\n", mask);
Glauber Costa8e0c3792008-04-08 13:20:55 -0300263 return 0;
264 }
265
266 return 1;
267}
268EXPORT_SYMBOL(dma_supported);
269
Glauber Costacb5867a2008-04-08 13:20:51 -0300270static int __init pci_iommu_init(void)
271{
Joerg Roedel2118d0c2009-01-09 15:13:15 +0100272 dma_debug_init(PREALLOC_DMA_DEBUG_ENTRIES);
273
Glauber Costacb5867a2008-04-08 13:20:51 -0300274 calgary_iommu_init();
Glauber Costa459121c92008-04-08 13:20:43 -0300275
Glauber Costacb5867a2008-04-08 13:20:51 -0300276 intel_iommu_init();
277
Joerg Roedela69ca342008-06-26 21:28:08 +0200278 amd_iommu_init();
279
Glauber Costacb5867a2008-04-08 13:20:51 -0300280 gart_iommu_init();
Glauber Costacb5867a2008-04-08 13:20:51 -0300281
282 no_iommu_init();
283 return 0;
284}
285
286void pci_iommu_shutdown(void)
287{
288 gart_iommu_shutdown();
289}
290/* Must execute after PCI subsystem */
291fs_initcall(pci_iommu_init);
Fenghua Yu3b15e582008-10-23 16:51:00 -0700292
293#ifdef CONFIG_PCI
294/* Many VIA bridges seem to corrupt data for DAC. Disable it here */
295
296static __devinit void via_no_dac(struct pci_dev *dev)
297{
298 if ((dev->class >> 8) == PCI_CLASS_BRIDGE_PCI && forbid_dac == 0) {
Michael Tokareva0286c92008-12-05 15:47:29 +0300299 printk(KERN_INFO
300 "PCI: VIA PCI bridge detected. Disabling DAC.\n");
Fenghua Yu3b15e582008-10-23 16:51:00 -0700301 forbid_dac = 1;
302 }
303}
304DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_VIA, PCI_ANY_ID, via_no_dac);
305#endif