x86: Store a per-cpu shadow copy of CR4
[deliverable/linux.git] / arch / x86 / kernel / pci-swiotlb.c
CommitLineData
17a941d8
MBY
1/* Glue code to lib/swiotlb.c */
2
3#include <linux/pci.h>
4#include <linux/cache.h>
5#include <linux/module.h>
8ce79960
JF
6#include <linux/swiotlb.h>
7#include <linux/bootmem.h>
d6bd3a39
REB
8#include <linux/dma-mapping.h>
9
46a7fa27 10#include <asm/iommu.h>
17a941d8
MBY
11#include <asm/swiotlb.h>
12#include <asm/dma.h>
c116c545
KRW
13#include <asm/xen/swiotlb-xen.h>
14#include <asm/iommu_table.h>
17a941d8 15int swiotlb __read_mostly;
17a941d8 16
9c5a3621 17void *x86_swiotlb_alloc_coherent(struct device *hwdev, size_t size,
baa676fc
AP
18 dma_addr_t *dma_handle, gfp_t flags,
19 struct dma_attrs *attrs)
03967c52
FT
20{
21 void *vaddr;
22
baa676fc
AP
23 vaddr = dma_generic_alloc_coherent(hwdev, size, dma_handle, flags,
24 attrs);
03967c52
FT
25 if (vaddr)
26 return vaddr;
27
28 return swiotlb_alloc_coherent(hwdev, size, dma_handle, flags);
29}
30
9c5a3621 31void x86_swiotlb_free_coherent(struct device *dev, size_t size,
baa676fc
AP
32 void *vaddr, dma_addr_t dma_addr,
33 struct dma_attrs *attrs)
34{
9c5a3621
AM
35 if (is_swiotlb_buffer(dma_to_phys(dev, dma_addr)))
36 swiotlb_free_coherent(dev, size, vaddr, dma_addr);
37 else
38 dma_generic_free_coherent(dev, size, vaddr, dma_addr, attrs);
baa676fc
AP
39}
40
ff6c6fed 41static struct dma_map_ops swiotlb_dma_ops = {
17a941d8 42 .mapping_error = swiotlb_dma_mapping_error,
baa676fc
AP
43 .alloc = x86_swiotlb_alloc_coherent,
44 .free = x86_swiotlb_free_coherent,
17a941d8
MBY
45 .sync_single_for_cpu = swiotlb_sync_single_for_cpu,
46 .sync_single_for_device = swiotlb_sync_single_for_device,
17a941d8
MBY
47 .sync_sg_for_cpu = swiotlb_sync_sg_for_cpu,
48 .sync_sg_for_device = swiotlb_sync_sg_for_device,
160c1d8e
FT
49 .map_sg = swiotlb_map_sg_attrs,
50 .unmap_sg = swiotlb_unmap_sg_attrs,
4cf37bb7
FT
51 .map_page = swiotlb_map_page,
52 .unmap_page = swiotlb_unmap_page,
17a941d8
MBY
53 .dma_supported = NULL,
54};
55
b18485e7 56/*
efa631c2 57 * pci_swiotlb_detect_override - set swiotlb to 1 if necessary
b18485e7
FT
58 *
59 * This returns non-zero if we are forced to use swiotlb (by the boot
60 * option).
61 */
efa631c2 62int __init pci_swiotlb_detect_override(void)
17a941d8 63{
273bee27
FT
64 int use_swiotlb = swiotlb | swiotlb_force;
65
efa631c2
KRW
66 if (swiotlb_force)
67 swiotlb = 1;
68
69 return use_swiotlb;
70}
c116c545
KRW
71IOMMU_INIT_FINISH(pci_swiotlb_detect_override,
72 pci_xen_swiotlb_detect,
73 pci_swiotlb_init,
74 pci_swiotlb_late_init);
efa631c2
KRW
75
76/*
77 * if 4GB or more detected (and iommu=off not set) return 1
78 * and set swiotlb to 1.
79 */
80int __init pci_swiotlb_detect_4gb(void)
81{
17a941d8 82 /* don't initialize swiotlb if iommu=off (no_iommu=1) */
cfb80c9e 83#ifdef CONFIG_X86_64
75f1cdf1 84 if (!no_iommu && max_pfn > MAX_DMA32_PFN)
19943b0e 85 swiotlb = 1;
cfb80c9e 86#endif
efa631c2 87 return swiotlb;
186a2502 88}
c116c545
KRW
89IOMMU_INIT(pci_swiotlb_detect_4gb,
90 pci_swiotlb_detect_override,
91 pci_swiotlb_init,
92 pci_swiotlb_late_init);
186a2502
FT
93
94void __init pci_swiotlb_init(void)
95{
17a941d8 96 if (swiotlb) {
ad32e8cb 97 swiotlb_init(0);
17a941d8 98 dma_ops = &swiotlb_dma_ops;
a3b28ee1 99 }
17a941d8 100}
efa631c2
KRW
101
102void __init pci_swiotlb_late_init(void)
103{
104 /* An IOMMU turned us off. */
105 if (!swiotlb)
106 swiotlb_free();
107 else {
108 printk(KERN_INFO "PCI-DMA: "
109 "Using software bounce buffering for IO (SWIOTLB)\n");
110 swiotlb_print_info();
111 }
112}
This page took 0.672449 seconds and 5 git commands to generate.