blob: 192624820217f9eeeb64ee39ada5ad57a76a0df5 [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>
FUJITA Tomonori46a7fa22008-07-11 10:23:42 +09008#include <asm/iommu.h>
Glauber Costacb5867a2008-04-08 13:20:51 -03009#include <asm/calgary.h>
Joerg Roedela69ca342008-06-26 21:28:08 +020010#include <asm/amd_iommu.h>
Glauber Costa459121c92008-04-08 13:20:43 -030011
Fenghua Yu3b15e582008-10-23 16:51:00 -070012static int forbid_dac __read_mostly;
13
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -070014struct dma_mapping_ops *dma_ops;
Glauber Costa85c246e2008-04-08 13:20:50 -030015EXPORT_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. */
Joerg Roedel6c505ce2008-08-19 16:32:45 +020044struct device x86_dma_fallback_dev = {
Glauber Costa098cb7f2008-04-09 13:18:10 -030045 .bus_id = "fallback device",
46 .coherent_dma_mask = DMA_32BIT_MASK,
Joerg Roedel6c505ce2008-08-19 16:32:45 +020047 .dma_mask = &x86_dma_fallback_dev.coherent_dma_mask,
Glauber Costa098cb7f2008-04-09 13:18:10 -030048};
Joerg Roedel6c505ce2008-08-19 16:32:45 +020049EXPORT_SYMBOL(x86_dma_fallback_dev);
Glauber Costa098cb7f2008-04-09 13:18:10 -030050
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}
108
109void __init pci_iommu_alloc(void)
110{
111 /* free the range so iommu could get some range less than 4G */
112 dma32_free_bootmem();
113 /*
114 * The order of these functions is important for
115 * fall-back/fail-over reasons
116 */
Glauber Costa116890d2008-04-08 13:20:54 -0300117 gart_iommu_hole_init();
Glauber Costa116890d2008-04-08 13:20:54 -0300118
Glauber Costa116890d2008-04-08 13:20:54 -0300119 detect_calgary();
Glauber Costa116890d2008-04-08 13:20:54 -0300120
121 detect_intel_iommu();
122
Joerg Roedela69ca342008-06-26 21:28:08 +0200123 amd_iommu_detect();
124
Glauber Costa116890d2008-04-08 13:20:54 -0300125 pci_swiotlb_init();
Glauber Costa116890d2008-04-08 13:20:54 -0300126}
FUJITA Tomonori8978b742008-07-29 13:38:53 +0900127
Joerg Roedelbdab0ba2008-10-15 22:02:07 -0700128unsigned long iommu_nr_pages(unsigned long addr, unsigned long len)
FUJITA Tomonori8978b742008-07-29 13:38:53 +0900129{
130 unsigned long size = roundup((addr & ~PAGE_MASK) + len, PAGE_SIZE);
131
132 return size >> PAGE_SHIFT;
133}
Joerg Roedelbdab0ba2008-10-15 22:02:07 -0700134EXPORT_SYMBOL(iommu_nr_pages);
Glauber Costa116890d2008-04-08 13:20:54 -0300135#endif
136
FUJITA Tomonori9f6ac572008-09-24 20:48:35 +0900137void *dma_generic_alloc_coherent(struct device *dev, size_t size,
138 dma_addr_t *dma_addr, gfp_t flag)
139{
140 unsigned long dma_mask;
141 struct page *page;
142 dma_addr_t addr;
143
144 dma_mask = dma_alloc_coherent_mask(dev, flag);
145
146 flag |= __GFP_ZERO;
147again:
148 page = alloc_pages_node(dev_to_node(dev), flag, get_order(size));
149 if (!page)
150 return NULL;
151
152 addr = page_to_phys(page);
153 if (!is_buffer_dma_capable(dma_mask, addr, size)) {
154 __free_pages(page, get_order(size));
155
156 if (dma_mask < DMA_32BIT_MASK && !(flag & GFP_DMA)) {
157 flag = (flag & ~GFP_DMA32) | GFP_DMA;
158 goto again;
159 }
160
161 return NULL;
162 }
163
164 *dma_addr = addr;
165 return page_address(page);
166}
167
Glauber Costafae9a0d2008-04-08 13:20:56 -0300168/*
169 * See <Documentation/x86_64/boot-options.txt> for the iommu kernel parameter
170 * documentation.
171 */
172static __init int iommu_setup(char *p)
173{
174 iommu_merge = 1;
175
176 if (!p)
177 return -EINVAL;
178
179 while (*p) {
180 if (!strncmp(p, "off", 3))
181 no_iommu = 1;
182 /* gart_parse_options has more force support */
183 if (!strncmp(p, "force", 5))
184 force_iommu = 1;
185 if (!strncmp(p, "noforce", 7)) {
186 iommu_merge = 0;
187 force_iommu = 0;
188 }
189
190 if (!strncmp(p, "biomerge", 8)) {
191 iommu_bio_merge = 4096;
192 iommu_merge = 1;
193 force_iommu = 1;
194 }
195 if (!strncmp(p, "panic", 5))
196 panic_on_overflow = 1;
197 if (!strncmp(p, "nopanic", 7))
198 panic_on_overflow = 0;
199 if (!strncmp(p, "merge", 5)) {
200 iommu_merge = 1;
201 force_iommu = 1;
202 }
203 if (!strncmp(p, "nomerge", 7))
204 iommu_merge = 0;
205 if (!strncmp(p, "forcesac", 8))
206 iommu_sac_force = 1;
207 if (!strncmp(p, "allowdac", 8))
208 forbid_dac = 0;
209 if (!strncmp(p, "nodac", 5))
210 forbid_dac = -1;
211 if (!strncmp(p, "usedac", 6)) {
212 forbid_dac = -1;
213 return 1;
214 }
215#ifdef CONFIG_SWIOTLB
216 if (!strncmp(p, "soft", 4))
217 swiotlb = 1;
218#endif
219
Glauber Costafae9a0d2008-04-08 13:20:56 -0300220 gart_parse_options(p);
Glauber Costafae9a0d2008-04-08 13:20:56 -0300221
222#ifdef CONFIG_CALGARY_IOMMU
223 if (!strncmp(p, "calgary", 7))
224 use_calgary = 1;
225#endif /* CONFIG_CALGARY_IOMMU */
226
227 p += strcspn(p, ",");
228 if (*p == ',')
229 ++p;
230 }
231 return 0;
232}
233early_param("iommu", iommu_setup);
234
Glauber Costa8e0c3792008-04-08 13:20:55 -0300235int dma_supported(struct device *dev, u64 mask)
236{
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700237 struct dma_mapping_ops *ops = get_dma_ops(dev);
238
Glauber Costa8e0c3792008-04-08 13:20:55 -0300239#ifdef CONFIG_PCI
240 if (mask > 0xffffffff && forbid_dac > 0) {
Greg Kroah-Hartmanfc3a8822008-05-02 06:02:41 +0200241 dev_info(dev, "PCI: Disallowing DAC for device\n");
Glauber Costa8e0c3792008-04-08 13:20:55 -0300242 return 0;
243 }
244#endif
245
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700246 if (ops->dma_supported)
247 return ops->dma_supported(dev, mask);
Glauber Costa8e0c3792008-04-08 13:20:55 -0300248
249 /* Copied from i386. Doesn't make much sense, because it will
250 only work for pci_alloc_coherent.
251 The caller just has to use GFP_DMA in this case. */
252 if (mask < DMA_24BIT_MASK)
253 return 0;
254
255 /* Tell the device to use SAC when IOMMU force is on. This
256 allows the driver to use cheaper accesses in some cases.
257
258 Problem with this is that if we overflow the IOMMU area and
259 return DAC as fallback address the device may not handle it
260 correctly.
261
262 As a special case some controllers have a 39bit address
263 mode that is as efficient as 32bit (aic79xx). Don't force
264 SAC for these. Assume all masks <= 40 bits are of this
265 type. Normally this doesn't make any difference, but gives
266 more gentle handling of IOMMU overflow. */
267 if (iommu_sac_force && (mask >= DMA_40BIT_MASK)) {
Greg Kroah-Hartmanfc3a8822008-05-02 06:02:41 +0200268 dev_info(dev, "Force SAC with mask %Lx\n", mask);
Glauber Costa8e0c3792008-04-08 13:20:55 -0300269 return 0;
270 }
271
272 return 1;
273}
274EXPORT_SYMBOL(dma_supported);
275
Glauber Costacb5867a2008-04-08 13:20:51 -0300276static int __init pci_iommu_init(void)
277{
Glauber Costacb5867a2008-04-08 13:20:51 -0300278 calgary_iommu_init();
Glauber Costa459121c92008-04-08 13:20:43 -0300279
Glauber Costacb5867a2008-04-08 13:20:51 -0300280 intel_iommu_init();
281
Joerg Roedela69ca342008-06-26 21:28:08 +0200282 amd_iommu_init();
283
Glauber Costacb5867a2008-04-08 13:20:51 -0300284 gart_iommu_init();
Glauber Costacb5867a2008-04-08 13:20:51 -0300285
286 no_iommu_init();
287 return 0;
288}
289
290void pci_iommu_shutdown(void)
291{
292 gart_iommu_shutdown();
293}
294/* Must execute after PCI subsystem */
295fs_initcall(pci_iommu_init);
Fenghua Yu3b15e582008-10-23 16:51:00 -0700296
297#ifdef CONFIG_PCI
298/* Many VIA bridges seem to corrupt data for DAC. Disable it here */
299
300static __devinit void via_no_dac(struct pci_dev *dev)
301{
302 if ((dev->class >> 8) == PCI_CLASS_BRIDGE_PCI && forbid_dac == 0) {
303 printk(KERN_INFO "PCI: VIA PCI bridge detected."
304 "Disabling DAC.\n");
305 forbid_dac = 1;
306 }
307}
308DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_VIA, PCI_ANY_ID, via_no_dac);
309#endif