Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Benjamin Herrenschmidt | 12d04ee | 2006-11-11 17:25:02 +1100 | [diff] [blame] | 2 | * Copyright (C) 2006 Benjamin Herrenschmidt, IBM Corporation |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * |
Benjamin Herrenschmidt | 12d04ee | 2006-11-11 17:25:02 +1100 | [diff] [blame] | 4 | * Provide default implementations of the DMA mapping callbacks for |
| 5 | * directly mapped busses and busses using the iommu infrastructure |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #include <linux/device.h> |
| 9 | #include <linux/dma-mapping.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | #include <asm/bug.h> |
Benjamin Herrenschmidt | 12d04ee | 2006-11-11 17:25:02 +1100 | [diff] [blame] | 11 | #include <asm/iommu.h> |
| 12 | #include <asm/abs_addr.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | |
Benjamin Herrenschmidt | 12d04ee | 2006-11-11 17:25:02 +1100 | [diff] [blame] | 14 | /* |
| 15 | * Generic iommu implementation |
| 16 | */ |
| 17 | |
| 18 | static inline unsigned long device_to_mask(struct device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | { |
Benjamin Herrenschmidt | 12d04ee | 2006-11-11 17:25:02 +1100 | [diff] [blame] | 20 | if (dev->dma_mask && *dev->dma_mask) |
| 21 | return *dev->dma_mask; |
| 22 | /* Assume devices without mask can take 32 bit addresses */ |
| 23 | return 0xfffffffful; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | } |
| 25 | |
Benjamin Herrenschmidt | 12d04ee | 2006-11-11 17:25:02 +1100 | [diff] [blame] | 26 | |
| 27 | /* Allocates a contiguous real buffer and creates mappings over it. |
| 28 | * Returns the virtual address of the buffer and sets dma_handle |
| 29 | * to the dma address (mapping) of the first page. |
| 30 | */ |
| 31 | static void *dma_iommu_alloc_coherent(struct device *dev, size_t size, |
| 32 | dma_addr_t *dma_handle, gfp_t flag) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | { |
FUJITA Tomonori | fb3475e | 2008-02-04 22:28:08 -0800 | [diff] [blame] | 34 | return iommu_alloc_coherent(dev, dev->archdata.dma_data, size, |
| 35 | dma_handle, device_to_mask(dev), flag, |
Benjamin Herrenschmidt | 12d04ee | 2006-11-11 17:25:02 +1100 | [diff] [blame] | 36 | dev->archdata.numa_node); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | |
Benjamin Herrenschmidt | 12d04ee | 2006-11-11 17:25:02 +1100 | [diff] [blame] | 39 | static void dma_iommu_free_coherent(struct device *dev, size_t size, |
| 40 | void *vaddr, dma_addr_t dma_handle) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | { |
Benjamin Herrenschmidt | 12d04ee | 2006-11-11 17:25:02 +1100 | [diff] [blame] | 42 | iommu_free_coherent(dev->archdata.dma_data, size, vaddr, dma_handle); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | |
Benjamin Herrenschmidt | 12d04ee | 2006-11-11 17:25:02 +1100 | [diff] [blame] | 45 | /* Creates TCEs for a user provided buffer. The user buffer must be |
| 46 | * contiguous real kernel storage (not vmalloc). The address of the buffer |
| 47 | * passed here is the kernel (virtual) address of the buffer. The buffer |
| 48 | * need not be page aligned, the dma_addr_t returned will point to the same |
| 49 | * byte within the page as vaddr. |
| 50 | */ |
| 51 | static dma_addr_t dma_iommu_map_single(struct device *dev, void *vaddr, |
| 52 | size_t size, |
Mark Nelson | 3affedc | 2008-07-05 05:05:42 +1000 | [diff] [blame^] | 53 | enum dma_data_direction direction, |
| 54 | struct dma_attrs *attrs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | { |
FUJITA Tomonori | fb3475e | 2008-02-04 22:28:08 -0800 | [diff] [blame] | 56 | return iommu_map_single(dev, dev->archdata.dma_data, vaddr, size, |
Mark Nelson | 3affedc | 2008-07-05 05:05:42 +1000 | [diff] [blame^] | 57 | device_to_mask(dev), direction, attrs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | |
Benjamin Herrenschmidt | 12d04ee | 2006-11-11 17:25:02 +1100 | [diff] [blame] | 60 | |
| 61 | static void dma_iommu_unmap_single(struct device *dev, dma_addr_t dma_handle, |
| 62 | size_t size, |
Mark Nelson | 3affedc | 2008-07-05 05:05:42 +1000 | [diff] [blame^] | 63 | enum dma_data_direction direction, |
| 64 | struct dma_attrs *attrs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | { |
Mark Nelson | 3affedc | 2008-07-05 05:05:42 +1000 | [diff] [blame^] | 66 | iommu_unmap_single(dev->archdata.dma_data, dma_handle, size, direction, |
| 67 | attrs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | |
Benjamin Herrenschmidt | 12d04ee | 2006-11-11 17:25:02 +1100 | [diff] [blame] | 70 | |
| 71 | static int dma_iommu_map_sg(struct device *dev, struct scatterlist *sglist, |
Mark Nelson | 3affedc | 2008-07-05 05:05:42 +1000 | [diff] [blame^] | 72 | int nelems, enum dma_data_direction direction, |
| 73 | struct dma_attrs *attrs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | { |
Mark Nelson | c869236 | 2008-07-05 05:05:41 +1000 | [diff] [blame] | 75 | return iommu_map_sg(dev, dev->archdata.dma_data, sglist, nelems, |
Mark Nelson | 3affedc | 2008-07-05 05:05:42 +1000 | [diff] [blame^] | 76 | device_to_mask(dev), direction, attrs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | |
Benjamin Herrenschmidt | 12d04ee | 2006-11-11 17:25:02 +1100 | [diff] [blame] | 79 | static void dma_iommu_unmap_sg(struct device *dev, struct scatterlist *sglist, |
Mark Nelson | 3affedc | 2008-07-05 05:05:42 +1000 | [diff] [blame^] | 80 | int nelems, enum dma_data_direction direction, |
| 81 | struct dma_attrs *attrs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | { |
Mark Nelson | 3affedc | 2008-07-05 05:05:42 +1000 | [diff] [blame^] | 83 | iommu_unmap_sg(dev->archdata.dma_data, sglist, nelems, direction, |
| 84 | attrs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | |
Benjamin Herrenschmidt | 12d04ee | 2006-11-11 17:25:02 +1100 | [diff] [blame] | 87 | /* We support DMA to/from any memory page via the iommu */ |
| 88 | static int dma_iommu_dma_supported(struct device *dev, u64 mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | { |
Benjamin Herrenschmidt | 12d04ee | 2006-11-11 17:25:02 +1100 | [diff] [blame] | 90 | struct iommu_table *tbl = dev->archdata.dma_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | |
Benjamin Herrenschmidt | 12d04ee | 2006-11-11 17:25:02 +1100 | [diff] [blame] | 92 | if (!tbl || tbl->it_offset > mask) { |
| 93 | printk(KERN_INFO |
| 94 | "Warning: IOMMU offset too big for device mask\n"); |
| 95 | if (tbl) |
| 96 | printk(KERN_INFO |
| 97 | "mask: 0x%08lx, table offset: 0x%08lx\n", |
| 98 | mask, tbl->it_offset); |
| 99 | else |
| 100 | printk(KERN_INFO "mask: 0x%08lx, table unavailable\n", |
| 101 | mask); |
| 102 | return 0; |
| 103 | } else |
| 104 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | |
Benjamin Herrenschmidt | 12d04ee | 2006-11-11 17:25:02 +1100 | [diff] [blame] | 107 | struct dma_mapping_ops dma_iommu_ops = { |
| 108 | .alloc_coherent = dma_iommu_alloc_coherent, |
| 109 | .free_coherent = dma_iommu_free_coherent, |
| 110 | .map_single = dma_iommu_map_single, |
| 111 | .unmap_single = dma_iommu_unmap_single, |
| 112 | .map_sg = dma_iommu_map_sg, |
| 113 | .unmap_sg = dma_iommu_unmap_sg, |
| 114 | .dma_supported = dma_iommu_dma_supported, |
| 115 | }; |
| 116 | EXPORT_SYMBOL(dma_iommu_ops); |
| 117 | |
| 118 | /* |
| 119 | * Generic direct DMA implementation |
Benjamin Herrenschmidt | 92b20c4 | 2006-11-11 17:25:14 +1100 | [diff] [blame] | 120 | * |
Michael Ellerman | 31d1b49 | 2008-01-21 16:42:48 +1100 | [diff] [blame] | 121 | * This implementation supports a per-device offset that can be applied if |
| 122 | * the address at which memory is visible to devices is not 0. Platform code |
| 123 | * can set archdata.dma_data to an unsigned long holding the offset. By |
| 124 | * default the offset is zero. |
Benjamin Herrenschmidt | 12d04ee | 2006-11-11 17:25:02 +1100 | [diff] [blame] | 125 | */ |
| 126 | |
Michael Ellerman | 35e4a6e | 2008-01-21 16:42:43 +1100 | [diff] [blame] | 127 | static unsigned long get_dma_direct_offset(struct device *dev) |
| 128 | { |
| 129 | return (unsigned long)dev->archdata.dma_data; |
| 130 | } |
| 131 | |
Benjamin Herrenschmidt | 12d04ee | 2006-11-11 17:25:02 +1100 | [diff] [blame] | 132 | static void *dma_direct_alloc_coherent(struct device *dev, size_t size, |
| 133 | dma_addr_t *dma_handle, gfp_t flag) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | { |
Benjamin Herrenschmidt | c80d913 | 2006-11-11 17:25:16 +1100 | [diff] [blame] | 135 | struct page *page; |
Benjamin Herrenschmidt | 12d04ee | 2006-11-11 17:25:02 +1100 | [diff] [blame] | 136 | void *ret; |
Benjamin Herrenschmidt | c80d913 | 2006-11-11 17:25:16 +1100 | [diff] [blame] | 137 | int node = dev->archdata.numa_node; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | |
Benjamin Herrenschmidt | c80d913 | 2006-11-11 17:25:16 +1100 | [diff] [blame] | 139 | page = alloc_pages_node(node, flag, get_order(size)); |
| 140 | if (page == NULL) |
| 141 | return NULL; |
| 142 | ret = page_address(page); |
| 143 | memset(ret, 0, size); |
Michael Ellerman | 35e4a6e | 2008-01-21 16:42:43 +1100 | [diff] [blame] | 144 | *dma_handle = virt_to_abs(ret) + get_dma_direct_offset(dev); |
Benjamin Herrenschmidt | c80d913 | 2006-11-11 17:25:16 +1100 | [diff] [blame] | 145 | |
Benjamin Herrenschmidt | 12d04ee | 2006-11-11 17:25:02 +1100 | [diff] [blame] | 146 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | |
Benjamin Herrenschmidt | 12d04ee | 2006-11-11 17:25:02 +1100 | [diff] [blame] | 149 | static void dma_direct_free_coherent(struct device *dev, size_t size, |
| 150 | void *vaddr, dma_addr_t dma_handle) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | { |
Benjamin Herrenschmidt | 12d04ee | 2006-11-11 17:25:02 +1100 | [diff] [blame] | 152 | free_pages((unsigned long)vaddr, get_order(size)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | |
Benjamin Herrenschmidt | 12d04ee | 2006-11-11 17:25:02 +1100 | [diff] [blame] | 155 | static dma_addr_t dma_direct_map_single(struct device *dev, void *ptr, |
| 156 | size_t size, |
Mark Nelson | 3affedc | 2008-07-05 05:05:42 +1000 | [diff] [blame^] | 157 | enum dma_data_direction direction, |
| 158 | struct dma_attrs *attrs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | { |
Michael Ellerman | 35e4a6e | 2008-01-21 16:42:43 +1100 | [diff] [blame] | 160 | return virt_to_abs(ptr) + get_dma_direct_offset(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | } |
Benjamin Herrenschmidt | 12d04ee | 2006-11-11 17:25:02 +1100 | [diff] [blame] | 162 | |
| 163 | static void dma_direct_unmap_single(struct device *dev, dma_addr_t dma_addr, |
| 164 | size_t size, |
Mark Nelson | 3affedc | 2008-07-05 05:05:42 +1000 | [diff] [blame^] | 165 | enum dma_data_direction direction, |
| 166 | struct dma_attrs *attrs) |
Benjamin Herrenschmidt | 12d04ee | 2006-11-11 17:25:02 +1100 | [diff] [blame] | 167 | { |
| 168 | } |
| 169 | |
Jens Axboe | 78bdc31 | 2007-10-12 13:44:12 +0200 | [diff] [blame] | 170 | static int dma_direct_map_sg(struct device *dev, struct scatterlist *sgl, |
Mark Nelson | 3affedc | 2008-07-05 05:05:42 +1000 | [diff] [blame^] | 171 | int nents, enum dma_data_direction direction, |
| 172 | struct dma_attrs *attrs) |
Benjamin Herrenschmidt | 12d04ee | 2006-11-11 17:25:02 +1100 | [diff] [blame] | 173 | { |
Jens Axboe | 78bdc31 | 2007-10-12 13:44:12 +0200 | [diff] [blame] | 174 | struct scatterlist *sg; |
Benjamin Herrenschmidt | 12d04ee | 2006-11-11 17:25:02 +1100 | [diff] [blame] | 175 | int i; |
| 176 | |
Jens Axboe | 78bdc31 | 2007-10-12 13:44:12 +0200 | [diff] [blame] | 177 | for_each_sg(sgl, sg, nents, i) { |
Michael Ellerman | 35e4a6e | 2008-01-21 16:42:43 +1100 | [diff] [blame] | 178 | sg->dma_address = sg_phys(sg) + get_dma_direct_offset(dev); |
Benjamin Herrenschmidt | 12d04ee | 2006-11-11 17:25:02 +1100 | [diff] [blame] | 179 | sg->dma_length = sg->length; |
| 180 | } |
| 181 | |
| 182 | return nents; |
| 183 | } |
| 184 | |
| 185 | static void dma_direct_unmap_sg(struct device *dev, struct scatterlist *sg, |
Mark Nelson | 3affedc | 2008-07-05 05:05:42 +1000 | [diff] [blame^] | 186 | int nents, enum dma_data_direction direction, |
| 187 | struct dma_attrs *attrs) |
Benjamin Herrenschmidt | 12d04ee | 2006-11-11 17:25:02 +1100 | [diff] [blame] | 188 | { |
| 189 | } |
| 190 | |
| 191 | static int dma_direct_dma_supported(struct device *dev, u64 mask) |
| 192 | { |
| 193 | /* Could be improved to check for memory though it better be |
| 194 | * done via some global so platforms can set the limit in case |
| 195 | * they have limited DMA windows |
| 196 | */ |
| 197 | return mask >= DMA_32BIT_MASK; |
| 198 | } |
| 199 | |
| 200 | struct dma_mapping_ops dma_direct_ops = { |
| 201 | .alloc_coherent = dma_direct_alloc_coherent, |
| 202 | .free_coherent = dma_direct_free_coherent, |
| 203 | .map_single = dma_direct_map_single, |
| 204 | .unmap_single = dma_direct_unmap_single, |
| 205 | .map_sg = dma_direct_map_sg, |
| 206 | .unmap_sg = dma_direct_unmap_sg, |
| 207 | .dma_supported = dma_direct_dma_supported, |
| 208 | }; |
| 209 | EXPORT_SYMBOL(dma_direct_ops); |