blob: 6ffccd6e0156aa87e9d5ca4134bf15a4b036d89f [file] [log] [blame]
Adrian Bunk88278ca2008-05-19 16:53:02 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * ioport.c: Simple io mapping allocator.
3 *
4 * Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
5 * Copyright (C) 1995 Miguel de Icaza (miguel@nuclecu.unam.mx)
6 *
7 * 1996: sparc_free_io, 1999: ioremap()/iounmap() by Pete Zaitcev.
8 *
9 * 2000/01/29
10 * <rth> zait: as long as pci_alloc_consistent produces something addressable,
11 * things are ok.
12 * <zaitcev> rth: no, it is relevant, because get_free_pages returns you a
13 * pointer into the big page mapping
14 * <rth> zait: so what?
15 * <rth> zait: remap_it_my_way(virt_to_phys(get_free_page()))
16 * <zaitcev> Hmm
17 * <zaitcev> Suppose I did this remap_it_my_way(virt_to_phys(get_free_page())).
18 * So far so good.
19 * <zaitcev> Now, driver calls pci_free_consistent(with result of
20 * remap_it_my_way()).
21 * <zaitcev> How do you find the address to pass to free_pages()?
22 * <rth> zait: walk the page tables? It's only two or three level after all.
23 * <rth> zait: you have to walk them anyway to remove the mapping.
24 * <zaitcev> Hmm
25 * <zaitcev> Sounds reasonable
26 */
27
David S. Miller3ca9fab2006-06-29 14:35:33 -070028#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/sched.h>
30#include <linux/kernel.h>
31#include <linux/errno.h>
32#include <linux/types.h>
33#include <linux/ioport.h>
34#include <linux/mm.h>
35#include <linux/slab.h>
36#include <linux/pci.h> /* struct pci_dev */
37#include <linux/proc_fs.h>
Alexey Dobriyane7a088f2009-09-01 17:54:07 -070038#include <linux/seq_file.h>
Jens Axboe0912a5d2007-05-14 15:44:38 +020039#include <linux/scatterlist.h>
Stephen Rothwell764f2572008-08-07 15:33:36 -070040#include <linux/of_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42#include <asm/io.h>
43#include <asm/vaddrs.h>
44#include <asm/oplib.h>
David S. Miller576c3522006-06-23 15:55:45 -070045#include <asm/prom.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <asm/page.h>
47#include <asm/pgalloc.h>
48#include <asm/dma.h>
David S. Millere0039342008-08-25 22:47:20 -070049#include <asm/iommu.h>
50#include <asm/io-unit.h>
Konrad Eisele84017072009-08-31 22:08:13 +000051#include <asm/leon.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Kristoffer Glembod81f0872011-04-28 22:17:00 +000053/* This function must make sure that caches and memory are coherent after DMA
54 * On LEON systems without cache snooping it flushes the entire D-CACHE.
55 */
Kristoffer Glembo1b192742011-01-18 04:10:27 +000056#ifndef CONFIG_SPARC_LEON
Kristoffer Glembod81f0872011-04-28 22:17:00 +000057static inline void dma_make_coherent(unsigned long pa, unsigned long len)
58{
59}
Kristoffer Glembo1b192742011-01-18 04:10:27 +000060#else
Kristoffer Glembod81f0872011-04-28 22:17:00 +000061static inline void dma_make_coherent(unsigned long pa, unsigned long len)
Kristoffer Glembo1b192742011-01-18 04:10:27 +000062{
63 if (!sparc_leon3_snooping_enabled())
64 leon_flush_dcache_all();
65}
Konrad Eisele84017072009-08-31 22:08:13 +000066#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Adrian Bunkc61c65c2008-06-05 11:40:58 -070068static struct resource *_sparc_find_resource(struct resource *r,
69 unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
71static void __iomem *_sparc_ioremap(struct resource *res, u32 bus, u32 pa, int sz);
72static void __iomem *_sparc_alloc_io(unsigned int busno, unsigned long phys,
73 unsigned long size, char *name);
74static void _sparc_free_io(struct resource *res);
75
Adrian Bunkc61c65c2008-06-05 11:40:58 -070076static void register_proc_sparc_ioport(void);
77
Linus Torvalds1da177e2005-04-16 15:20:36 -070078/* This points to the next to use virtual memory for DVMA mappings */
79static struct resource _sparc_dvma = {
80 .name = "sparc_dvma", .start = DVMA_VADDR, .end = DVMA_END - 1
81};
82/* This points to the start of I/O mappings, cluable from outside. */
83/*ext*/ struct resource sparc_iomap = {
84 .name = "sparc_iomap", .start = IOBASE_VADDR, .end = IOBASE_END - 1
85};
86
87/*
88 * Our mini-allocator...
89 * Boy this is gross! We need it because we must map I/O for
90 * timers and interrupt controller before the kmalloc is available.
91 */
92
93#define XNMLN 15
94#define XNRES 10 /* SS-10 uses 8 */
95
96struct xresource {
97 struct resource xres; /* Must be first */
98 int xflag; /* 1 == used */
99 char xname[XNMLN+1];
100};
101
102static struct xresource xresv[XNRES];
103
104static struct xresource *xres_alloc(void) {
105 struct xresource *xrp;
106 int n;
107
108 xrp = xresv;
109 for (n = 0; n < XNRES; n++) {
110 if (xrp->xflag == 0) {
111 xrp->xflag = 1;
112 return xrp;
113 }
114 xrp++;
115 }
116 return NULL;
117}
118
119static void xres_free(struct xresource *xrp) {
120 xrp->xflag = 0;
121}
122
123/*
124 * These are typically used in PCI drivers
125 * which are trying to be cross-platform.
126 *
127 * Bus type is always zero on IIep.
128 */
129void __iomem *ioremap(unsigned long offset, unsigned long size)
130{
131 char name[14];
132
133 sprintf(name, "phys_%08x", (u32)offset);
134 return _sparc_alloc_io(0, offset, size, name);
135}
Sam Ravnborg6943f3d2009-01-08 16:58:05 -0800136EXPORT_SYMBOL(ioremap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
138/*
139 * Comlimentary to ioremap().
140 */
141void iounmap(volatile void __iomem *virtual)
142{
143 unsigned long vaddr = (unsigned long) virtual & PAGE_MASK;
144 struct resource *res;
145
146 if ((res = _sparc_find_resource(&sparc_iomap, vaddr)) == NULL) {
147 printk("free_io/iounmap: cannot free %lx\n", vaddr);
148 return;
149 }
150 _sparc_free_io(res);
151
152 if ((char *)res >= (char*)xresv && (char *)res < (char *)&xresv[XNRES]) {
153 xres_free((struct xresource *)res);
154 } else {
155 kfree(res);
156 }
157}
Sam Ravnborg6943f3d2009-01-08 16:58:05 -0800158EXPORT_SYMBOL(iounmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
David S. Miller3ca9fab2006-06-29 14:35:33 -0700160void __iomem *of_ioremap(struct resource *res, unsigned long offset,
161 unsigned long size, char *name)
162{
163 return _sparc_alloc_io(res->flags & 0xF,
164 res->start + offset,
165 size, name);
166}
167EXPORT_SYMBOL(of_ioremap);
168
David S. Millere3a411a2006-12-28 21:01:32 -0800169void of_iounmap(struct resource *res, void __iomem *base, unsigned long size)
David S. Miller3ca9fab2006-06-29 14:35:33 -0700170{
171 iounmap(base);
172}
173EXPORT_SYMBOL(of_iounmap);
174
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 * Meat of mapping
177 */
178static void __iomem *_sparc_alloc_io(unsigned int busno, unsigned long phys,
179 unsigned long size, char *name)
180{
181 static int printed_full;
182 struct xresource *xres;
183 struct resource *res;
184 char *tack;
185 int tlen;
186 void __iomem *va; /* P3 diag */
187
188 if (name == NULL) name = "???";
189
190 if ((xres = xres_alloc()) != 0) {
191 tack = xres->xname;
192 res = &xres->xres;
193 } else {
194 if (!printed_full) {
195 printk("ioremap: done with statics, switching to malloc\n");
196 printed_full = 1;
197 }
198 tlen = strlen(name);
199 tack = kmalloc(sizeof (struct resource) + tlen + 1, GFP_KERNEL);
200 if (tack == NULL) return NULL;
201 memset(tack, 0, sizeof(struct resource));
202 res = (struct resource *) tack;
203 tack += sizeof (struct resource);
204 }
205
206 strlcpy(tack, name, XNMLN+1);
207 res->name = tack;
208
209 va = _sparc_ioremap(res, busno, phys, size);
210 /* printk("ioremap(0x%x:%08lx[0x%lx])=%p\n", busno, phys, size, va); */ /* P3 diag */
211 return va;
212}
213
214/*
215 */
216static void __iomem *
217_sparc_ioremap(struct resource *res, u32 bus, u32 pa, int sz)
218{
219 unsigned long offset = ((unsigned long) pa) & (~PAGE_MASK);
220
221 if (allocate_resource(&sparc_iomap, res,
222 (offset + sz + PAGE_SIZE-1) & PAGE_MASK,
223 sparc_iomap.start, sparc_iomap.end, PAGE_SIZE, NULL, NULL) != 0) {
224 /* Usually we cannot see printks in this case. */
225 prom_printf("alloc_io_res(%s): cannot occupy\n",
226 (res->name != NULL)? res->name: "???");
227 prom_halt();
228 }
229
230 pa &= PAGE_MASK;
Joe Perches28f65c112011-06-09 09:13:32 -0700231 sparc_mapiorange(bus, pa, res->start, resource_size(res));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
Greg Kroah-Hartmand75fc8b2006-06-12 16:09:23 -0700233 return (void __iomem *)(unsigned long)(res->start + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234}
235
236/*
237 * Comlimentary to _sparc_ioremap().
238 */
239static void _sparc_free_io(struct resource *res)
240{
241 unsigned long plen;
242
Joe Perches28f65c112011-06-09 09:13:32 -0700243 plen = resource_size(res);
Eric Sesterhenn30d4d1f2006-03-10 02:55:20 -0800244 BUG_ON((plen & (PAGE_SIZE-1)) != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 sparc_unmapiorange(res->start, plen);
246 release_resource(res);
247}
248
249#ifdef CONFIG_SBUS
250
David S. Miller63237ee2008-08-26 23:33:42 -0700251void sbus_set_sbus64(struct device *dev, int x)
David S. Miller8fae0972006-06-20 15:23:28 -0700252{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 printk("sbus_set_sbus64: unsupported\n");
254}
Sam Ravnborg6943f3d2009-01-08 16:58:05 -0800255EXPORT_SYMBOL(sbus_set_sbus64);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
257/*
258 * Allocate a chunk of memory suitable for DMA.
259 * Typically devices use them for control blocks.
260 * CPU may access them without any explicit flushing.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 */
FUJITA Tomonoriee664a92009-08-10 11:53:16 +0900262static void *sbus_alloc_coherent(struct device *dev, size_t len,
263 dma_addr_t *dma_addrp, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264{
Grant Likelycd4cd732010-07-22 16:04:30 -0600265 struct platform_device *op = to_platform_device(dev);
Kristoffer Glembo5c8345b2011-01-18 04:10:24 +0000266 unsigned long len_total = PAGE_ALIGN(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 unsigned long va;
268 struct resource *res;
269 int order;
270
Paulius Zaleckasefad798b2008-02-03 15:42:53 +0200271 /* XXX why are some lengths signed, others unsigned? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 if (len <= 0) {
273 return NULL;
274 }
275 /* XXX So what is maxphys for us and how do drivers know it? */
276 if (len > 256*1024) { /* __get_free_pages() limit */
277 return NULL;
278 }
279
280 order = get_order(len_total);
Hugh Dickinsf3d48f02005-11-21 21:32:22 -0800281 if ((va = __get_free_pages(GFP_KERNEL|__GFP_COMP, order)) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 goto err_nopages;
283
Yan Burmanc80892d2006-11-30 17:07:04 -0800284 if ((res = kzalloc(sizeof(struct resource), GFP_KERNEL)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 goto err_nomem;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
287 if (allocate_resource(&_sparc_dvma, res, len_total,
288 _sparc_dvma.start, _sparc_dvma.end, PAGE_SIZE, NULL, NULL) != 0) {
289 printk("sbus_alloc_consistent: cannot occupy 0x%lx", len_total);
290 goto err_nova;
291 }
Kristoffer Glembo5c8345b2011-01-18 04:10:24 +0000292
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 // XXX The mmu_map_dma_area does this for us below, see comments.
294 // sparc_mapiorange(0, virt_to_phys(va), res->start, len_total);
295 /*
296 * XXX That's where sdev would be used. Currently we load
297 * all iommu tables with the same translations.
298 */
David S. Miller4b1c5df2008-08-27 18:40:38 -0700299 if (mmu_map_dma_area(dev, dma_addrp, va, res->start, len_total) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 goto err_noiommu;
301
Grant Likely61c7a082010-04-13 16:12:29 -0700302 res->name = op->dev.of_node->name;
Martin Habets4cfbd7e2006-05-07 23:43:19 -0700303
Greg Kroah-Hartmand75fc8b2006-06-12 16:09:23 -0700304 return (void *)(unsigned long)res->start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
306err_noiommu:
307 release_resource(res);
308err_nova:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 kfree(res);
Kristoffer Glembo0c7c6a32011-01-18 04:10:29 +0000310err_nomem:
311 free_pages(va, order);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312err_nopages:
313 return NULL;
314}
315
FUJITA Tomonoriee664a92009-08-10 11:53:16 +0900316static void sbus_free_coherent(struct device *dev, size_t n, void *p,
317 dma_addr_t ba)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318{
319 struct resource *res;
320 struct page *pgv;
321
322 if ((res = _sparc_find_resource(&_sparc_dvma,
323 (unsigned long)p)) == NULL) {
324 printk("sbus_free_consistent: cannot free %p\n", p);
325 return;
326 }
327
328 if (((unsigned long)p & (PAGE_SIZE-1)) != 0) {
329 printk("sbus_free_consistent: unaligned va %p\n", p);
330 return;
331 }
332
Kristoffer Glembo5c8345b2011-01-18 04:10:24 +0000333 n = PAGE_ALIGN(n);
Joe Perches28f65c112011-06-09 09:13:32 -0700334 if (resource_size(res) != n) {
FUJITA Tomonoriee664a92009-08-10 11:53:16 +0900335 printk("sbus_free_consistent: region 0x%lx asked 0x%zx\n",
Joe Perches28f65c112011-06-09 09:13:32 -0700336 (long)resource_size(res), n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 return;
338 }
339
340 release_resource(res);
341 kfree(res);
342
David S. Milleraba945e2008-08-27 02:20:35 -0700343 pgv = virt_to_page(p);
David S. Miller4b1c5df2008-08-27 18:40:38 -0700344 mmu_unmap_dma_area(dev, ba, n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
346 __free_pages(pgv, get_order(n));
347}
348
349/*
350 * Map a chunk of memory so that devices can see it.
351 * CPU view of this memory may be inconsistent with
352 * a device view and explicit flushing is necessary.
353 */
FUJITA Tomonoriee664a92009-08-10 11:53:16 +0900354static dma_addr_t sbus_map_page(struct device *dev, struct page *page,
355 unsigned long offset, size_t len,
356 enum dma_data_direction dir,
357 struct dma_attrs *attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358{
FUJITA Tomonoric2c07db2009-08-10 11:53:15 +0900359 void *va = page_address(page) + offset;
360
Paulius Zaleckasefad798b2008-02-03 15:42:53 +0200361 /* XXX why are some lengths signed, others unsigned? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 if (len <= 0) {
363 return 0;
364 }
365 /* XXX So what is maxphys for us and how do drivers know it? */
366 if (len > 256*1024) { /* __get_free_pages() limit */
367 return 0;
368 }
David S. Miller260489f2008-08-26 23:00:58 -0700369 return mmu_get_scsi_one(dev, va, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370}
371
FUJITA Tomonoriee664a92009-08-10 11:53:16 +0900372static void sbus_unmap_page(struct device *dev, dma_addr_t ba, size_t n,
373 enum dma_data_direction dir, struct dma_attrs *attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374{
David S. Miller260489f2008-08-26 23:00:58 -0700375 mmu_release_scsi_one(dev, ba, n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376}
377
FUJITA Tomonoriee664a92009-08-10 11:53:16 +0900378static int sbus_map_sg(struct device *dev, struct scatterlist *sg, int n,
379 enum dma_data_direction dir, struct dma_attrs *attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380{
David S. Miller260489f2008-08-26 23:00:58 -0700381 mmu_get_scsi_sgl(dev, sg, n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
383 /*
384 * XXX sparc64 can return a partial length here. sun4c should do this
385 * but it currently panics if it can't fulfill the request - Anton
386 */
387 return n;
388}
389
FUJITA Tomonoriee664a92009-08-10 11:53:16 +0900390static void sbus_unmap_sg(struct device *dev, struct scatterlist *sg, int n,
391 enum dma_data_direction dir, struct dma_attrs *attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392{
David S. Miller260489f2008-08-26 23:00:58 -0700393 mmu_release_scsi_sgl(dev, sg, n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394}
395
FUJITA Tomonoriee664a92009-08-10 11:53:16 +0900396static void sbus_sync_sg_for_cpu(struct device *dev, struct scatterlist *sg,
397 int n, enum dma_data_direction dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398{
FUJITA Tomonoriee664a92009-08-10 11:53:16 +0900399 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400}
401
FUJITA Tomonoriee664a92009-08-10 11:53:16 +0900402static void sbus_sync_sg_for_device(struct device *dev, struct scatterlist *sg,
403 int n, enum dma_data_direction dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404{
FUJITA Tomonoriee664a92009-08-10 11:53:16 +0900405 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406}
407
FUJITA Tomonoriee664a92009-08-10 11:53:16 +0900408struct dma_map_ops sbus_dma_ops = {
409 .alloc_coherent = sbus_alloc_coherent,
410 .free_coherent = sbus_free_coherent,
411 .map_page = sbus_map_page,
412 .unmap_page = sbus_unmap_page,
413 .map_sg = sbus_map_sg,
414 .unmap_sg = sbus_unmap_sg,
415 .sync_sg_for_cpu = sbus_sync_sg_for_cpu,
416 .sync_sg_for_device = sbus_sync_sg_for_device,
417};
418
David S. Millerf8e4d322008-08-27 04:20:14 -0700419static int __init sparc_register_ioport(void)
David S. Miller576c3522006-06-23 15:55:45 -0700420{
David S. Miller576c3522006-06-23 15:55:45 -0700421 register_proc_sparc_ioport();
422
David S. Miller576c3522006-06-23 15:55:45 -0700423 return 0;
David S. Miller576c3522006-06-23 15:55:45 -0700424}
425
David S. Millerf8e4d322008-08-27 04:20:14 -0700426arch_initcall(sparc_register_ioport);
427
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428#endif /* CONFIG_SBUS */
429
Kristoffer Glembo18304742011-01-18 04:10:26 +0000430
431/* LEON reuses PCI DMA ops */
432#if defined(CONFIG_PCI) || defined(CONFIG_SPARC_LEON)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
434/* Allocate and map kernel buffer using consistent mode DMA for a device.
435 * hwdev should be valid struct pci_dev pointer for PCI devices.
436 */
FUJITA Tomonoriee664a92009-08-10 11:53:16 +0900437static void *pci32_alloc_coherent(struct device *dev, size_t len,
438 dma_addr_t *pba, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439{
Kristoffer Glembo5c8345b2011-01-18 04:10:24 +0000440 unsigned long len_total = PAGE_ALIGN(len);
Kristoffer Glembo7feee242011-01-18 04:10:28 +0000441 void *va;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 struct resource *res;
443 int order;
444
445 if (len == 0) {
446 return NULL;
447 }
448 if (len > 256*1024) { /* __get_free_pages() limit */
449 return NULL;
450 }
451
452 order = get_order(len_total);
Kristoffer Glembo7feee242011-01-18 04:10:28 +0000453 va = (void *) __get_free_pages(GFP_KERNEL, order);
454 if (va == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 printk("pci_alloc_consistent: no %ld pages\n", len_total>>PAGE_SHIFT);
Kristoffer Glembo7feee242011-01-18 04:10:28 +0000456 goto err_nopages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 }
458
Yan Burmanc80892d2006-11-30 17:07:04 -0800459 if ((res = kzalloc(sizeof(struct resource), GFP_KERNEL)) == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 printk("pci_alloc_consistent: no core\n");
Kristoffer Glembo7feee242011-01-18 04:10:28 +0000461 goto err_nomem;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
464 if (allocate_resource(&_sparc_dvma, res, len_total,
465 _sparc_dvma.start, _sparc_dvma.end, PAGE_SIZE, NULL, NULL) != 0) {
466 printk("pci_alloc_consistent: cannot occupy 0x%lx", len_total);
Kristoffer Glembo7feee242011-01-18 04:10:28 +0000467 goto err_nova;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 sparc_mapiorange(0, virt_to_phys(va), res->start, len_total);
470
471 *pba = virt_to_phys(va); /* equals virt_to_bus (R.I.P.) for us. */
472 return (void *) res->start;
Kristoffer Glembo7feee242011-01-18 04:10:28 +0000473
474err_nova:
475 kfree(res);
476err_nomem:
477 free_pages((unsigned long)va, order);
478err_nopages:
479 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480}
481
482/* Free and unmap a consistent DMA buffer.
483 * cpu_addr is what was returned from pci_alloc_consistent,
484 * size must be the same as what as passed into pci_alloc_consistent,
485 * and likewise dma_addr must be the same as what *dma_addrp was set to.
486 *
Simon Arlottd1a78c32007-05-11 13:51:23 -0700487 * References to the memory and mappings associated with cpu_addr/dma_addr
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 * past this call are illegal.
489 */
FUJITA Tomonoriee664a92009-08-10 11:53:16 +0900490static void pci32_free_coherent(struct device *dev, size_t n, void *p,
491 dma_addr_t ba)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492{
493 struct resource *res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
495 if ((res = _sparc_find_resource(&_sparc_dvma,
496 (unsigned long)p)) == NULL) {
497 printk("pci_free_consistent: cannot free %p\n", p);
498 return;
499 }
500
501 if (((unsigned long)p & (PAGE_SIZE-1)) != 0) {
502 printk("pci_free_consistent: unaligned va %p\n", p);
503 return;
504 }
505
Kristoffer Glembo5c8345b2011-01-18 04:10:24 +0000506 n = PAGE_ALIGN(n);
Joe Perches28f65c112011-06-09 09:13:32 -0700507 if (resource_size(res) != n) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 printk("pci_free_consistent: region 0x%lx asked 0x%lx\n",
Joe Perches28f65c112011-06-09 09:13:32 -0700509 (long)resource_size(res), (long)n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 return;
511 }
512
Kristoffer Glembod81f0872011-04-28 22:17:00 +0000513 dma_make_coherent(ba, n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 sparc_unmapiorange((unsigned long)p, n);
515
516 release_resource(res);
517 kfree(res);
Kristoffer Glembod81f0872011-04-28 22:17:00 +0000518 free_pages((unsigned long)phys_to_virt(ba), get_order(n));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
521/*
522 * Same as pci_map_single, but with pages.
523 */
FUJITA Tomonoriee664a92009-08-10 11:53:16 +0900524static dma_addr_t pci32_map_page(struct device *dev, struct page *page,
525 unsigned long offset, size_t size,
526 enum dma_data_direction dir,
527 struct dma_attrs *attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 /* IIep is write-through, not flushing. */
530 return page_to_phys(page) + offset;
531}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532
Kristoffer Glembob8682ce2011-01-18 04:10:25 +0000533static void pci32_unmap_page(struct device *dev, dma_addr_t ba, size_t size,
534 enum dma_data_direction dir, struct dma_attrs *attrs)
535{
536 if (dir != PCI_DMA_TODEVICE)
Kristoffer Glembod81f0872011-04-28 22:17:00 +0000537 dma_make_coherent(ba, PAGE_ALIGN(size));
Kristoffer Glembob8682ce2011-01-18 04:10:25 +0000538}
539
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540/* Map a set of buffers described by scatterlist in streaming
541 * mode for DMA. This is the scather-gather version of the
542 * above pci_map_single interface. Here the scatter gather list
543 * elements are each tagged with the appropriate dma address
544 * and length. They are obtained via sg_dma_{address,length}(SG).
545 *
546 * NOTE: An implementation may be able to use a smaller number of
547 * DMA address/length pairs than there are SG table elements.
548 * (for example via virtual mapping capabilities)
549 * The routine returns the number of addr/length pairs actually
550 * used, at most nents.
551 *
552 * Device ownership issues as mentioned above for pci_map_single are
553 * the same here.
554 */
FUJITA Tomonoriee664a92009-08-10 11:53:16 +0900555static int pci32_map_sg(struct device *device, struct scatterlist *sgl,
556 int nents, enum dma_data_direction dir,
557 struct dma_attrs *attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558{
Jens Axboe0912a5d2007-05-14 15:44:38 +0200559 struct scatterlist *sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 int n;
561
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 /* IIep is write-through, not flushing. */
Jens Axboe0912a5d2007-05-14 15:44:38 +0200563 for_each_sg(sgl, sg, nents, n) {
Kristoffer Glembod81f0872011-04-28 22:17:00 +0000564 sg->dma_address = sg_phys(sg);
Robert Reifaa83a262008-12-11 20:24:58 -0800565 sg->dma_length = sg->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 }
567 return nents;
568}
569
570/* Unmap a set of streaming mode DMA translations.
571 * Again, cpu read rules concerning calls here are the same as for
572 * pci_unmap_single() above.
573 */
FUJITA Tomonoriee664a92009-08-10 11:53:16 +0900574static void pci32_unmap_sg(struct device *dev, struct scatterlist *sgl,
575 int nents, enum dma_data_direction dir,
576 struct dma_attrs *attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577{
Jens Axboe0912a5d2007-05-14 15:44:38 +0200578 struct scatterlist *sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 int n;
580
FUJITA Tomonoriee664a92009-08-10 11:53:16 +0900581 if (dir != PCI_DMA_TODEVICE) {
Jens Axboe0912a5d2007-05-14 15:44:38 +0200582 for_each_sg(sgl, sg, nents, n) {
Kristoffer Glembod81f0872011-04-28 22:17:00 +0000583 dma_make_coherent(sg_phys(sg), PAGE_ALIGN(sg->length));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 }
585 }
586}
587
588/* Make physical memory consistent for a single
589 * streaming mode DMA translation before or after a transfer.
590 *
591 * If you perform a pci_map_single() but wish to interrogate the
592 * buffer using the cpu, yet do not wish to teardown the PCI dma
593 * mapping, you must call this function before doing so. At the
594 * next point you give the PCI dma address back to the card, you
595 * must first perform a pci_dma_sync_for_device, and then the
596 * device again owns the buffer.
597 */
FUJITA Tomonoriee664a92009-08-10 11:53:16 +0900598static void pci32_sync_single_for_cpu(struct device *dev, dma_addr_t ba,
599 size_t size, enum dma_data_direction dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600{
FUJITA Tomonoriee664a92009-08-10 11:53:16 +0900601 if (dir != PCI_DMA_TODEVICE) {
Kristoffer Glembod81f0872011-04-28 22:17:00 +0000602 dma_make_coherent(ba, PAGE_ALIGN(size));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 }
604}
605
FUJITA Tomonoriee664a92009-08-10 11:53:16 +0900606static void pci32_sync_single_for_device(struct device *dev, dma_addr_t ba,
607 size_t size, enum dma_data_direction dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608{
FUJITA Tomonoriee664a92009-08-10 11:53:16 +0900609 if (dir != PCI_DMA_TODEVICE) {
Kristoffer Glembod81f0872011-04-28 22:17:00 +0000610 dma_make_coherent(ba, PAGE_ALIGN(size));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 }
612}
613
614/* Make physical memory consistent for a set of streaming
615 * mode DMA translations after a transfer.
616 *
617 * The same as pci_dma_sync_single_* but for a scatter-gather list,
618 * same rules and usage.
619 */
FUJITA Tomonoriee664a92009-08-10 11:53:16 +0900620static void pci32_sync_sg_for_cpu(struct device *dev, struct scatterlist *sgl,
621 int nents, enum dma_data_direction dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622{
Jens Axboe0912a5d2007-05-14 15:44:38 +0200623 struct scatterlist *sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 int n;
625
FUJITA Tomonoriee664a92009-08-10 11:53:16 +0900626 if (dir != PCI_DMA_TODEVICE) {
Jens Axboe0912a5d2007-05-14 15:44:38 +0200627 for_each_sg(sgl, sg, nents, n) {
Kristoffer Glembod81f0872011-04-28 22:17:00 +0000628 dma_make_coherent(sg_phys(sg), PAGE_ALIGN(sg->length));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 }
630 }
631}
632
FUJITA Tomonoriee664a92009-08-10 11:53:16 +0900633static void pci32_sync_sg_for_device(struct device *device, struct scatterlist *sgl,
634 int nents, enum dma_data_direction dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635{
Jens Axboe0912a5d2007-05-14 15:44:38 +0200636 struct scatterlist *sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 int n;
638
FUJITA Tomonoriee664a92009-08-10 11:53:16 +0900639 if (dir != PCI_DMA_TODEVICE) {
Jens Axboe0912a5d2007-05-14 15:44:38 +0200640 for_each_sg(sgl, sg, nents, n) {
Kristoffer Glembod81f0872011-04-28 22:17:00 +0000641 dma_make_coherent(sg_phys(sg), PAGE_ALIGN(sg->length));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 }
643 }
644}
FUJITA Tomonoriee664a92009-08-10 11:53:16 +0900645
646struct dma_map_ops pci32_dma_ops = {
647 .alloc_coherent = pci32_alloc_coherent,
648 .free_coherent = pci32_free_coherent,
649 .map_page = pci32_map_page,
Kristoffer Glembob8682ce2011-01-18 04:10:25 +0000650 .unmap_page = pci32_unmap_page,
FUJITA Tomonoriee664a92009-08-10 11:53:16 +0900651 .map_sg = pci32_map_sg,
652 .unmap_sg = pci32_unmap_sg,
653 .sync_single_for_cpu = pci32_sync_single_for_cpu,
654 .sync_single_for_device = pci32_sync_single_for_device,
655 .sync_sg_for_cpu = pci32_sync_sg_for_cpu,
656 .sync_sg_for_device = pci32_sync_sg_for_device,
657};
658EXPORT_SYMBOL(pci32_dma_ops);
659
Kristoffer Glembo18304742011-01-18 04:10:26 +0000660#endif /* CONFIG_PCI || CONFIG_SPARC_LEON */
661
662#ifdef CONFIG_SPARC_LEON
663struct dma_map_ops *dma_ops = &pci32_dma_ops;
664#elif defined(CONFIG_SBUS)
665struct dma_map_ops *dma_ops = &sbus_dma_ops;
666#endif
667
668EXPORT_SYMBOL(dma_ops);
669
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
FUJITA Tomonori451d7402009-08-10 11:53:17 +0900671/*
672 * Return whether the given PCI device DMA address mask can be
673 * supported properly. For example, if your device can only drive the
674 * low 24-bits during PCI bus mastering, then you would pass
675 * 0x00ffffff as the mask to this function.
676 */
677int dma_supported(struct device *dev, u64 mask)
678{
679#ifdef CONFIG_PCI
680 if (dev->bus == &pci_bus_type)
681 return 1;
682#endif
683 return 0;
684}
685EXPORT_SYMBOL(dma_supported);
686
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687#ifdef CONFIG_PROC_FS
688
Alexey Dobriyane7a088f2009-09-01 17:54:07 -0700689static int sparc_io_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690{
Alexey Dobriyane7a088f2009-09-01 17:54:07 -0700691 struct resource *root = m->private, *r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 const char *nm;
693
Alexey Dobriyane7a088f2009-09-01 17:54:07 -0700694 for (r = root->child; r != NULL; r = r->sibling) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 if ((nm = r->name) == 0) nm = "???";
Alexey Dobriyane7a088f2009-09-01 17:54:07 -0700696 seq_printf(m, "%016llx-%016llx: %s\n",
Greg Kroah-Hartman685143a2006-06-12 15:18:31 -0700697 (unsigned long long)r->start,
698 (unsigned long long)r->end, nm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 }
700
Alexey Dobriyane7a088f2009-09-01 17:54:07 -0700701 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702}
703
Alexey Dobriyane7a088f2009-09-01 17:54:07 -0700704static int sparc_io_proc_open(struct inode *inode, struct file *file)
705{
706 return single_open(file, sparc_io_proc_show, PDE(inode)->data);
707}
708
709static const struct file_operations sparc_io_proc_fops = {
710 .owner = THIS_MODULE,
711 .open = sparc_io_proc_open,
712 .read = seq_read,
713 .llseek = seq_lseek,
714 .release = single_release,
715};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716#endif /* CONFIG_PROC_FS */
717
718/*
719 * This is a version of find_resource and it belongs to kernel/resource.c.
720 * Until we have agreement with Linus and Martin, it lingers here.
721 *
722 * XXX Too slow. Can have 8192 DVMA pages on sun4m in the worst case.
723 * This probably warrants some sort of hashing.
724 */
Adrian Bunkc61c65c2008-06-05 11:40:58 -0700725static struct resource *_sparc_find_resource(struct resource *root,
726 unsigned long hit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727{
Kristoffer Glembo5c8345b2011-01-18 04:10:24 +0000728 struct resource *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
730 for (tmp = root->child; tmp != 0; tmp = tmp->sibling) {
731 if (tmp->start <= hit && tmp->end >= hit)
732 return tmp;
733 }
734 return NULL;
735}
736
Adrian Bunkc61c65c2008-06-05 11:40:58 -0700737static void register_proc_sparc_ioport(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738{
739#ifdef CONFIG_PROC_FS
Alexey Dobriyane7a088f2009-09-01 17:54:07 -0700740 proc_create_data("io_map", 0, NULL, &sparc_io_proc_fops, &sparc_iomap);
741 proc_create_data("dvma_map", 0, NULL, &sparc_io_proc_fops, &_sparc_dvma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742#endif
743}