Fenghua Yu | 62fdd76 | 2008-10-17 12:14:13 -0700 | [diff] [blame] | 1 | /* Glue code to lib/swiotlb.c */ |
| 2 | |
| 3 | #include <linux/pci.h> |
| 4 | #include <linux/cache.h> |
| 5 | #include <linux/module.h> |
| 6 | #include <linux/dma-mapping.h> |
| 7 | |
| 8 | #include <asm/swiotlb.h> |
| 9 | #include <asm/dma.h> |
| 10 | #include <asm/iommu.h> |
| 11 | #include <asm/machvec.h> |
| 12 | |
| 13 | int swiotlb __read_mostly; |
| 14 | EXPORT_SYMBOL(swiotlb); |
| 15 | |
FUJITA Tomonori | 97d9800 | 2009-01-28 21:53:16 +0900 | [diff] [blame] | 16 | static void *ia64_swiotlb_alloc_coherent(struct device *dev, size_t size, |
| 17 | dma_addr_t *dma_handle, gfp_t gfp) |
| 18 | { |
Yang Hongyang | e930438 | 2009-04-13 14:40:14 -0700 | [diff] [blame] | 19 | if (dev->coherent_dma_mask != DMA_BIT_MASK(64)) |
FUJITA Tomonori | 97d9800 | 2009-01-28 21:53:16 +0900 | [diff] [blame] | 20 | gfp |= GFP_DMA; |
| 21 | return swiotlb_alloc_coherent(dev, size, dma_handle, gfp); |
| 22 | } |
| 23 | |
FUJITA Tomonori | 160c1d8 | 2009-01-05 23:59:02 +0900 | [diff] [blame] | 24 | struct dma_map_ops swiotlb_dma_ops = { |
FUJITA Tomonori | 97d9800 | 2009-01-28 21:53:16 +0900 | [diff] [blame] | 25 | .alloc_coherent = ia64_swiotlb_alloc_coherent, |
Fenghua Yu | 62fdd76 | 2008-10-17 12:14:13 -0700 | [diff] [blame] | 26 | .free_coherent = swiotlb_free_coherent, |
FUJITA Tomonori | 160c1d8 | 2009-01-05 23:59:02 +0900 | [diff] [blame] | 27 | .map_page = swiotlb_map_page, |
| 28 | .unmap_page = swiotlb_unmap_page, |
| 29 | .map_sg = swiotlb_map_sg_attrs, |
| 30 | .unmap_sg = swiotlb_unmap_sg_attrs, |
Fenghua Yu | 62fdd76 | 2008-10-17 12:14:13 -0700 | [diff] [blame] | 31 | .sync_single_for_cpu = swiotlb_sync_single_for_cpu, |
| 32 | .sync_single_for_device = swiotlb_sync_single_for_device, |
| 33 | .sync_single_range_for_cpu = swiotlb_sync_single_range_for_cpu, |
| 34 | .sync_single_range_for_device = swiotlb_sync_single_range_for_device, |
| 35 | .sync_sg_for_cpu = swiotlb_sync_sg_for_cpu, |
| 36 | .sync_sg_for_device = swiotlb_sync_sg_for_device, |
FUJITA Tomonori | 160c1d8 | 2009-01-05 23:59:02 +0900 | [diff] [blame] | 37 | .dma_supported = swiotlb_dma_supported, |
FUJITA Tomonori | c82e441 | 2009-01-05 23:36:11 +0900 | [diff] [blame] | 38 | .mapping_error = swiotlb_dma_mapping_error, |
Fenghua Yu | 62fdd76 | 2008-10-17 12:14:13 -0700 | [diff] [blame] | 39 | }; |
| 40 | |
Luck, Tony | 07716e4 | 2009-01-06 10:25:25 -0800 | [diff] [blame] | 41 | void __init swiotlb_dma_init(void) |
FUJITA Tomonori | 4d9b977 | 2009-01-05 23:36:12 +0900 | [diff] [blame] | 42 | { |
| 43 | dma_ops = &swiotlb_dma_ops; |
| 44 | swiotlb_init(); |
| 45 | } |
| 46 | |
Fenghua Yu | 62fdd76 | 2008-10-17 12:14:13 -0700 | [diff] [blame] | 47 | void __init pci_swiotlb_init(void) |
| 48 | { |
David Woodhouse | ba6c548 | 2009-08-13 18:18:00 +0100 | [diff] [blame] | 49 | if (!iommu_detected) { |
Fenghua Yu | 62fdd76 | 2008-10-17 12:14:13 -0700 | [diff] [blame] | 50 | #ifdef CONFIG_IA64_GENERIC |
| 51 | swiotlb = 1; |
| 52 | printk(KERN_INFO "PCI-DMA: Re-initialize machine vector.\n"); |
| 53 | machvec_init("dig"); |
| 54 | swiotlb_init(); |
| 55 | dma_ops = &swiotlb_dma_ops; |
| 56 | #else |
| 57 | panic("Unable to find Intel IOMMU"); |
| 58 | #endif |
| 59 | } |
| 60 | } |