blob: 1e66b18f45cb6da71321a0cc5f66cf9688e980f7 [file] [log] [blame]
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +01001/* Glue code to lib/swiotlb.c */
2
3#include <linux/pci.h>
4#include <linux/cache.h>
5#include <linux/module.h>
Jeremy Fitzhardinge8ce79962008-12-16 12:17:35 -08006#include <linux/swiotlb.h>
7#include <linux/bootmem.h>
Rolf Eike Beerd6bd3a32006-09-29 01:59:48 -07008#include <linux/dma-mapping.h>
9
FUJITA Tomonori46a7fa22008-07-11 10:23:42 +090010#include <asm/iommu.h>
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +010011#include <asm/swiotlb.h>
12#include <asm/dma.h>
13
14int swiotlb __read_mostly;
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +010015
Roland Dreier79ff56e2008-12-30 20:18:00 -080016void * __init swiotlb_alloc_boot(size_t size, unsigned long nslabs)
Jeremy Fitzhardinge8ce79962008-12-16 12:17:35 -080017{
18 return alloc_bootmem_low_pages(size);
19}
20
21void *swiotlb_alloc(unsigned order, unsigned long nslabs)
22{
23 return (void *)__get_free_pages(GFP_DMA | __GFP_NOWARN, order);
24}
25
Jeremy Fitzhardinge70a7d3c2008-12-22 10:26:05 -080026dma_addr_t swiotlb_phys_to_bus(struct device *hwdev, phys_addr_t paddr)
Ian Campbell1d322512008-12-16 12:17:37 -080027{
28 return paddr;
29}
30
Becky Bruce42d7c5e2009-04-08 09:09:21 -050031phys_addr_t swiotlb_bus_to_phys(struct device *hwdev, dma_addr_t baddr)
Ian Campbell1d322512008-12-16 12:17:37 -080032{
33 return baddr;
34}
35
Ian Campbell0b8698a2009-01-09 18:32:09 +000036int __weak swiotlb_arch_range_needs_mapping(phys_addr_t paddr, size_t size)
Ian Campbella0863662008-12-16 12:17:38 -080037{
38 return 0;
39}
40
FUJITA Tomonori03967c52008-10-23 23:14:29 +090041static void *x86_swiotlb_alloc_coherent(struct device *hwdev, size_t size,
42 dma_addr_t *dma_handle, gfp_t flags)
43{
44 void *vaddr;
45
46 vaddr = dma_generic_alloc_coherent(hwdev, size, dma_handle, flags);
47 if (vaddr)
48 return vaddr;
49
50 return swiotlb_alloc_coherent(hwdev, size, dma_handle, flags);
51}
52
Jaswinder Singh Rajputff6c6fed2009-04-12 23:24:21 +053053static struct dma_map_ops swiotlb_dma_ops = {
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +010054 .mapping_error = swiotlb_dma_mapping_error,
FUJITA Tomonori03967c52008-10-23 23:14:29 +090055 .alloc_coherent = x86_swiotlb_alloc_coherent,
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +010056 .free_coherent = swiotlb_free_coherent,
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +010057 .sync_single_for_cpu = swiotlb_sync_single_for_cpu,
58 .sync_single_for_device = swiotlb_sync_single_for_device,
59 .sync_single_range_for_cpu = swiotlb_sync_single_range_for_cpu,
60 .sync_single_range_for_device = swiotlb_sync_single_range_for_device,
61 .sync_sg_for_cpu = swiotlb_sync_sg_for_cpu,
62 .sync_sg_for_device = swiotlb_sync_sg_for_device,
FUJITA Tomonori160c1d82009-01-05 23:59:02 +090063 .map_sg = swiotlb_map_sg_attrs,
64 .unmap_sg = swiotlb_unmap_sg_attrs,
FUJITA Tomonori4cf37bb2009-01-05 23:47:22 +090065 .map_page = swiotlb_map_page,
66 .unmap_page = swiotlb_unmap_page,
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +010067 .dma_supported = NULL,
68};
69
Jan Beulich563aaf02007-02-05 18:51:25 -080070void __init pci_swiotlb_init(void)
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +010071{
72 /* don't initialize swiotlb if iommu=off (no_iommu=1) */
Jeremy Fitzhardingecfb80c92008-12-16 12:17:36 -080073#ifdef CONFIG_X86_64
David Woodhouse19943b02009-08-04 16:19:20 +010074 if ((!iommu_detected && !no_iommu && max_pfn > MAX_DMA32_PFN))
75 swiotlb = 1;
Jeremy Fitzhardingecfb80c92008-12-16 12:17:36 -080076#endif
Andi Kleen65f87d82006-07-29 21:42:49 +020077 if (swiotlb_force)
78 swiotlb = 1;
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +010079 if (swiotlb) {
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +010080 printk(KERN_INFO "PCI-DMA: Using software bounce buffering for IO (SWIOTLB)\n");
Jon Mason5b7b6442006-02-03 21:51:59 +010081 swiotlb_init();
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +010082 dma_ops = &swiotlb_dma_ops;
83 }
84}