staging: tidspbridge: remove cmm_init() and cmm_exit()
[linux-2.6.git] / arch / hexagon / kernel / dma.c
blobe711ace62fdf9b60eb93d97cf0de193d936cce35
1 /*
2 * DMA implementation for Hexagon
4 * Copyright (c) 2010-2011, Code Aurora Forum. All rights reserved.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 and
8 * only version 2 as published by the Free Software Foundation.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
18 * 02110-1301, USA.
21 #include <linux/dma-mapping.h>
22 #include <linux/bootmem.h>
23 #include <linux/genalloc.h>
24 #include <asm/dma-mapping.h>
26 struct dma_map_ops *dma_ops;
27 EXPORT_SYMBOL(dma_ops);
29 int bad_dma_address; /* globals are automatically initialized to zero */
31 int dma_supported(struct device *dev, u64 mask)
33 if (mask == DMA_BIT_MASK(32))
34 return 1;
35 else
36 return 0;
38 EXPORT_SYMBOL(dma_supported);
40 int dma_set_mask(struct device *dev, u64 mask)
42 if (!dev->dma_mask || !dma_supported(dev, mask))
43 return -EIO;
45 *dev->dma_mask = mask;
47 return 0;
49 EXPORT_SYMBOL(dma_set_mask);
51 static struct gen_pool *coherent_pool;
54 /* Allocates from a pool of uncached memory that was reserved at boot time */
56 void *hexagon_dma_alloc_coherent(struct device *dev, size_t size,
57 dma_addr_t *dma_addr, gfp_t flag)
59 void *ret;
61 if (coherent_pool == NULL) {
62 coherent_pool = gen_pool_create(PAGE_SHIFT, -1);
64 if (coherent_pool == NULL)
65 panic("Can't create %s() memory pool!", __func__);
66 else
67 gen_pool_add(coherent_pool,
68 (PAGE_OFFSET + (max_low_pfn << PAGE_SHIFT)),
69 hexagon_coherent_pool_size, -1);
72 ret = (void *) gen_pool_alloc(coherent_pool, size);
74 if (ret) {
75 memset(ret, 0, size);
76 *dma_addr = (dma_addr_t) (ret - PAGE_OFFSET);
77 } else
78 *dma_addr = ~0;
80 return ret;
83 static void hexagon_free_coherent(struct device *dev, size_t size, void *vaddr,
84 dma_addr_t dma_addr)
86 gen_pool_free(coherent_pool, (unsigned long) vaddr, size);
89 static int check_addr(const char *name, struct device *hwdev,
90 dma_addr_t bus, size_t size)
92 if (hwdev && hwdev->dma_mask && !dma_capable(hwdev, bus, size)) {
93 if (*hwdev->dma_mask >= DMA_BIT_MASK(32))
94 printk(KERN_ERR
95 "%s: overflow %Lx+%zu of device mask %Lx\n",
96 name, (long long)bus, size,
97 (long long)*hwdev->dma_mask);
98 return 0;
100 return 1;
103 static int hexagon_map_sg(struct device *hwdev, struct scatterlist *sg,
104 int nents, enum dma_data_direction dir,
105 struct dma_attrs *attrs)
107 struct scatterlist *s;
108 int i;
110 WARN_ON(nents == 0 || sg[0].length == 0);
112 for_each_sg(sg, s, nents, i) {
113 s->dma_address = sg_phys(s);
114 if (!check_addr("map_sg", hwdev, s->dma_address, s->length))
115 return 0;
117 s->dma_length = s->length;
119 flush_dcache_range(PAGE_OFFSET + s->dma_address,
120 PAGE_OFFSET + s->dma_address + s->length);
123 return nents;
127 * address is virtual
129 static inline void dma_sync(void *addr, size_t size,
130 enum dma_data_direction dir)
132 switch (dir) {
133 case DMA_TO_DEVICE:
134 hexagon_clean_dcache_range((unsigned long) addr,
135 (unsigned long) addr + size);
136 break;
137 case DMA_FROM_DEVICE:
138 hexagon_inv_dcache_range((unsigned long) addr,
139 (unsigned long) addr + size);
140 break;
141 case DMA_BIDIRECTIONAL:
142 flush_dcache_range((unsigned long) addr,
143 (unsigned long) addr + size);
144 break;
145 default:
146 BUG();
150 static inline void *dma_addr_to_virt(dma_addr_t dma_addr)
152 return phys_to_virt((unsigned long) dma_addr);
156 * hexagon_map_page() - maps an address for device DMA
157 * @dev: pointer to DMA device
158 * @page: pointer to page struct of DMA memory
159 * @offset: offset within page
160 * @size: size of memory to map
161 * @dir: transfer direction
162 * @attrs: pointer to DMA attrs (not used)
164 * Called to map a memory address to a DMA address prior
165 * to accesses to/from device.
167 * We don't particularly have many hoops to jump through
168 * so far. Straight translation between phys and virtual.
170 * DMA is not cache coherent so sync is necessary; this
171 * seems to be a convenient place to do it.
174 static dma_addr_t hexagon_map_page(struct device *dev, struct page *page,
175 unsigned long offset, size_t size,
176 enum dma_data_direction dir,
177 struct dma_attrs *attrs)
179 dma_addr_t bus = page_to_phys(page) + offset;
180 WARN_ON(size == 0);
182 if (!check_addr("map_single", dev, bus, size))
183 return bad_dma_address;
185 dma_sync(dma_addr_to_virt(bus), size, dir);
187 return bus;
190 static void hexagon_sync_single_for_cpu(struct device *dev,
191 dma_addr_t dma_handle, size_t size,
192 enum dma_data_direction dir)
194 dma_sync(dma_addr_to_virt(dma_handle), size, dir);
197 static void hexagon_sync_single_for_device(struct device *dev,
198 dma_addr_t dma_handle, size_t size,
199 enum dma_data_direction dir)
201 dma_sync(dma_addr_to_virt(dma_handle), size, dir);
204 struct dma_map_ops hexagon_dma_ops = {
205 .alloc_coherent = hexagon_dma_alloc_coherent,
206 .free_coherent = hexagon_free_coherent,
207 .map_sg = hexagon_map_sg,
208 .map_page = hexagon_map_page,
209 .sync_single_for_cpu = hexagon_sync_single_for_cpu,
210 .sync_single_for_device = hexagon_sync_single_for_device,
211 .is_phys = 1,
214 void __init hexagon_dma_init(void)
216 if (dma_ops)
217 return;
219 dma_ops = &hexagon_dma_ops;