]> git.karo-electronics.de Git - karo-tx-linux.git/blob - arch/sparc/kernel/ioport.c
sparc/leon: Add LEON dma_ops.
[karo-tx-linux.git] / arch / sparc / kernel / ioport.c
1 /*
2  * 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
28 #include <linux/module.h>
29 #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>
38 #include <linux/seq_file.h>
39 #include <linux/scatterlist.h>
40 #include <linux/of_device.h>
41
42 #include <asm/io.h>
43 #include <asm/vaddrs.h>
44 #include <asm/oplib.h>
45 #include <asm/prom.h>
46 #include <asm/page.h>
47 #include <asm/pgalloc.h>
48 #include <asm/dma.h>
49 #include <asm/iommu.h>
50 #include <asm/io-unit.h>
51 #include <asm/leon.h>
52
53 #ifdef CONFIG_SPARC_LEON
54 #define mmu_inval_dma_area(p, l) leon_flush_dcache_all()
55 #else
56 #define mmu_inval_dma_area(p, l)        /* Anton pulled it out for 2.4.0-xx */
57 #endif
58
59 static struct resource *_sparc_find_resource(struct resource *r,
60                                              unsigned long);
61
62 static void __iomem *_sparc_ioremap(struct resource *res, u32 bus, u32 pa, int sz);
63 static void __iomem *_sparc_alloc_io(unsigned int busno, unsigned long phys,
64     unsigned long size, char *name);
65 static void _sparc_free_io(struct resource *res);
66
67 static void register_proc_sparc_ioport(void);
68
69 /* This points to the next to use virtual memory for DVMA mappings */
70 static struct resource _sparc_dvma = {
71         .name = "sparc_dvma", .start = DVMA_VADDR, .end = DVMA_END - 1
72 };
73 /* This points to the start of I/O mappings, cluable from outside. */
74 /*ext*/ struct resource sparc_iomap = {
75         .name = "sparc_iomap", .start = IOBASE_VADDR, .end = IOBASE_END - 1
76 };
77
78 /*
79  * Our mini-allocator...
80  * Boy this is gross! We need it because we must map I/O for
81  * timers and interrupt controller before the kmalloc is available.
82  */
83
84 #define XNMLN  15
85 #define XNRES  10       /* SS-10 uses 8 */
86
87 struct xresource {
88         struct resource xres;   /* Must be first */
89         int xflag;              /* 1 == used */
90         char xname[XNMLN+1];
91 };
92
93 static struct xresource xresv[XNRES];
94
95 static struct xresource *xres_alloc(void) {
96         struct xresource *xrp;
97         int n;
98
99         xrp = xresv;
100         for (n = 0; n < XNRES; n++) {
101                 if (xrp->xflag == 0) {
102                         xrp->xflag = 1;
103                         return xrp;
104                 }
105                 xrp++;
106         }
107         return NULL;
108 }
109
110 static void xres_free(struct xresource *xrp) {
111         xrp->xflag = 0;
112 }
113
114 /*
115  * These are typically used in PCI drivers
116  * which are trying to be cross-platform.
117  *
118  * Bus type is always zero on IIep.
119  */
120 void __iomem *ioremap(unsigned long offset, unsigned long size)
121 {
122         char name[14];
123
124         sprintf(name, "phys_%08x", (u32)offset);
125         return _sparc_alloc_io(0, offset, size, name);
126 }
127 EXPORT_SYMBOL(ioremap);
128
129 /*
130  * Comlimentary to ioremap().
131  */
132 void iounmap(volatile void __iomem *virtual)
133 {
134         unsigned long vaddr = (unsigned long) virtual & PAGE_MASK;
135         struct resource *res;
136
137         if ((res = _sparc_find_resource(&sparc_iomap, vaddr)) == NULL) {
138                 printk("free_io/iounmap: cannot free %lx\n", vaddr);
139                 return;
140         }
141         _sparc_free_io(res);
142
143         if ((char *)res >= (char*)xresv && (char *)res < (char *)&xresv[XNRES]) {
144                 xres_free((struct xresource *)res);
145         } else {
146                 kfree(res);
147         }
148 }
149 EXPORT_SYMBOL(iounmap);
150
151 void __iomem *of_ioremap(struct resource *res, unsigned long offset,
152                          unsigned long size, char *name)
153 {
154         return _sparc_alloc_io(res->flags & 0xF,
155                                res->start + offset,
156                                size, name);
157 }
158 EXPORT_SYMBOL(of_ioremap);
159
160 void of_iounmap(struct resource *res, void __iomem *base, unsigned long size)
161 {
162         iounmap(base);
163 }
164 EXPORT_SYMBOL(of_iounmap);
165
166 /*
167  * Meat of mapping
168  */
169 static void __iomem *_sparc_alloc_io(unsigned int busno, unsigned long phys,
170     unsigned long size, char *name)
171 {
172         static int printed_full;
173         struct xresource *xres;
174         struct resource *res;
175         char *tack;
176         int tlen;
177         void __iomem *va;       /* P3 diag */
178
179         if (name == NULL) name = "???";
180
181         if ((xres = xres_alloc()) != 0) {
182                 tack = xres->xname;
183                 res = &xres->xres;
184         } else {
185                 if (!printed_full) {
186                         printk("ioremap: done with statics, switching to malloc\n");
187                         printed_full = 1;
188                 }
189                 tlen = strlen(name);
190                 tack = kmalloc(sizeof (struct resource) + tlen + 1, GFP_KERNEL);
191                 if (tack == NULL) return NULL;
192                 memset(tack, 0, sizeof(struct resource));
193                 res = (struct resource *) tack;
194                 tack += sizeof (struct resource);
195         }
196
197         strlcpy(tack, name, XNMLN+1);
198         res->name = tack;
199
200         va = _sparc_ioremap(res, busno, phys, size);
201         /* printk("ioremap(0x%x:%08lx[0x%lx])=%p\n", busno, phys, size, va); */ /* P3 diag */
202         return va;
203 }
204
205 /*
206  */
207 static void __iomem *
208 _sparc_ioremap(struct resource *res, u32 bus, u32 pa, int sz)
209 {
210         unsigned long offset = ((unsigned long) pa) & (~PAGE_MASK);
211
212         if (allocate_resource(&sparc_iomap, res,
213             (offset + sz + PAGE_SIZE-1) & PAGE_MASK,
214             sparc_iomap.start, sparc_iomap.end, PAGE_SIZE, NULL, NULL) != 0) {
215                 /* Usually we cannot see printks in this case. */
216                 prom_printf("alloc_io_res(%s): cannot occupy\n",
217                     (res->name != NULL)? res->name: "???");
218                 prom_halt();
219         }
220
221         pa &= PAGE_MASK;
222         sparc_mapiorange(bus, pa, res->start, res->end - res->start + 1);
223
224         return (void __iomem *)(unsigned long)(res->start + offset);
225 }
226
227 /*
228  * Comlimentary to _sparc_ioremap().
229  */
230 static void _sparc_free_io(struct resource *res)
231 {
232         unsigned long plen;
233
234         plen = res->end - res->start + 1;
235         BUG_ON((plen & (PAGE_SIZE-1)) != 0);
236         sparc_unmapiorange(res->start, plen);
237         release_resource(res);
238 }
239
240 #ifdef CONFIG_SBUS
241
242 void sbus_set_sbus64(struct device *dev, int x)
243 {
244         printk("sbus_set_sbus64: unsupported\n");
245 }
246 EXPORT_SYMBOL(sbus_set_sbus64);
247
248 /*
249  * Allocate a chunk of memory suitable for DMA.
250  * Typically devices use them for control blocks.
251  * CPU may access them without any explicit flushing.
252  */
253 static void *sbus_alloc_coherent(struct device *dev, size_t len,
254                                  dma_addr_t *dma_addrp, gfp_t gfp)
255 {
256         struct platform_device *op = to_platform_device(dev);
257         unsigned long len_total = PAGE_ALIGN(len);
258         unsigned long va;
259         struct resource *res;
260         int order;
261
262         /* XXX why are some lengths signed, others unsigned? */
263         if (len <= 0) {
264                 return NULL;
265         }
266         /* XXX So what is maxphys for us and how do drivers know it? */
267         if (len > 256*1024) {                   /* __get_free_pages() limit */
268                 return NULL;
269         }
270
271         order = get_order(len_total);
272         if ((va = __get_free_pages(GFP_KERNEL|__GFP_COMP, order)) == 0)
273                 goto err_nopages;
274
275         if ((res = kzalloc(sizeof(struct resource), GFP_KERNEL)) == NULL)
276                 goto err_nomem;
277
278         if (allocate_resource(&_sparc_dvma, res, len_total,
279             _sparc_dvma.start, _sparc_dvma.end, PAGE_SIZE, NULL, NULL) != 0) {
280                 printk("sbus_alloc_consistent: cannot occupy 0x%lx", len_total);
281                 goto err_nova;
282         }
283         mmu_inval_dma_area(va, len_total);
284
285         // XXX The mmu_map_dma_area does this for us below, see comments.
286         // sparc_mapiorange(0, virt_to_phys(va), res->start, len_total);
287         /*
288          * XXX That's where sdev would be used. Currently we load
289          * all iommu tables with the same translations.
290          */
291         if (mmu_map_dma_area(dev, dma_addrp, va, res->start, len_total) != 0)
292                 goto err_noiommu;
293
294         res->name = op->dev.of_node->name;
295
296         return (void *)(unsigned long)res->start;
297
298 err_noiommu:
299         release_resource(res);
300 err_nova:
301         free_pages(va, order);
302 err_nomem:
303         kfree(res);
304 err_nopages:
305         return NULL;
306 }
307
308 static void sbus_free_coherent(struct device *dev, size_t n, void *p,
309                                dma_addr_t ba)
310 {
311         struct resource *res;
312         struct page *pgv;
313
314         if ((res = _sparc_find_resource(&_sparc_dvma,
315             (unsigned long)p)) == NULL) {
316                 printk("sbus_free_consistent: cannot free %p\n", p);
317                 return;
318         }
319
320         if (((unsigned long)p & (PAGE_SIZE-1)) != 0) {
321                 printk("sbus_free_consistent: unaligned va %p\n", p);
322                 return;
323         }
324
325         n = PAGE_ALIGN(n);
326         if ((res->end-res->start)+1 != n) {
327                 printk("sbus_free_consistent: region 0x%lx asked 0x%zx\n",
328                     (long)((res->end-res->start)+1), n);
329                 return;
330         }
331
332         release_resource(res);
333         kfree(res);
334
335         /* mmu_inval_dma_area(va, n); */ /* it's consistent, isn't it */
336         pgv = virt_to_page(p);
337         mmu_unmap_dma_area(dev, ba, n);
338
339         __free_pages(pgv, get_order(n));
340 }
341
342 /*
343  * Map a chunk of memory so that devices can see it.
344  * CPU view of this memory may be inconsistent with
345  * a device view and explicit flushing is necessary.
346  */
347 static dma_addr_t sbus_map_page(struct device *dev, struct page *page,
348                                 unsigned long offset, size_t len,
349                                 enum dma_data_direction dir,
350                                 struct dma_attrs *attrs)
351 {
352         void *va = page_address(page) + offset;
353
354         /* XXX why are some lengths signed, others unsigned? */
355         if (len <= 0) {
356                 return 0;
357         }
358         /* XXX So what is maxphys for us and how do drivers know it? */
359         if (len > 256*1024) {                   /* __get_free_pages() limit */
360                 return 0;
361         }
362         return mmu_get_scsi_one(dev, va, len);
363 }
364
365 static void sbus_unmap_page(struct device *dev, dma_addr_t ba, size_t n,
366                             enum dma_data_direction dir, struct dma_attrs *attrs)
367 {
368         mmu_release_scsi_one(dev, ba, n);
369 }
370
371 static int sbus_map_sg(struct device *dev, struct scatterlist *sg, int n,
372                        enum dma_data_direction dir, struct dma_attrs *attrs)
373 {
374         mmu_get_scsi_sgl(dev, sg, n);
375
376         /*
377          * XXX sparc64 can return a partial length here. sun4c should do this
378          * but it currently panics if it can't fulfill the request - Anton
379          */
380         return n;
381 }
382
383 static void sbus_unmap_sg(struct device *dev, struct scatterlist *sg, int n,
384                           enum dma_data_direction dir, struct dma_attrs *attrs)
385 {
386         mmu_release_scsi_sgl(dev, sg, n);
387 }
388
389 static void sbus_sync_sg_for_cpu(struct device *dev, struct scatterlist *sg,
390                                  int n, enum dma_data_direction dir)
391 {
392         BUG();
393 }
394
395 static void sbus_sync_sg_for_device(struct device *dev, struct scatterlist *sg,
396                                     int n, enum dma_data_direction dir)
397 {
398         BUG();
399 }
400
401 struct dma_map_ops sbus_dma_ops = {
402         .alloc_coherent         = sbus_alloc_coherent,
403         .free_coherent          = sbus_free_coherent,
404         .map_page               = sbus_map_page,
405         .unmap_page             = sbus_unmap_page,
406         .map_sg                 = sbus_map_sg,
407         .unmap_sg               = sbus_unmap_sg,
408         .sync_sg_for_cpu        = sbus_sync_sg_for_cpu,
409         .sync_sg_for_device     = sbus_sync_sg_for_device,
410 };
411
412 static int __init sparc_register_ioport(void)
413 {
414         register_proc_sparc_ioport();
415
416         return 0;
417 }
418
419 arch_initcall(sparc_register_ioport);
420
421 #endif /* CONFIG_SBUS */
422
423
424 /* LEON reuses PCI DMA ops */
425 #if defined(CONFIG_PCI) || defined(CONFIG_SPARC_LEON)
426
427 /* Allocate and map kernel buffer using consistent mode DMA for a device.
428  * hwdev should be valid struct pci_dev pointer for PCI devices.
429  */
430 static void *pci32_alloc_coherent(struct device *dev, size_t len,
431                                   dma_addr_t *pba, gfp_t gfp)
432 {
433         unsigned long len_total = PAGE_ALIGN(len);
434         unsigned long va;
435         struct resource *res;
436         int order;
437
438         if (len == 0) {
439                 return NULL;
440         }
441         if (len > 256*1024) {                   /* __get_free_pages() limit */
442                 return NULL;
443         }
444
445         order = get_order(len_total);
446         va = __get_free_pages(GFP_KERNEL, order);
447         if (va == 0) {
448                 printk("pci_alloc_consistent: no %ld pages\n", len_total>>PAGE_SHIFT);
449                 return NULL;
450         }
451
452         if ((res = kzalloc(sizeof(struct resource), GFP_KERNEL)) == NULL) {
453                 free_pages(va, order);
454                 printk("pci_alloc_consistent: no core\n");
455                 return NULL;
456         }
457
458         if (allocate_resource(&_sparc_dvma, res, len_total,
459             _sparc_dvma.start, _sparc_dvma.end, PAGE_SIZE, NULL, NULL) != 0) {
460                 printk("pci_alloc_consistent: cannot occupy 0x%lx", len_total);
461                 free_pages(va, order);
462                 kfree(res);
463                 return NULL;
464         }
465         mmu_inval_dma_area(va, len_total);
466         sparc_mapiorange(0, virt_to_phys(va), res->start, len_total);
467
468         *pba = virt_to_phys(va); /* equals virt_to_bus (R.I.P.) for us. */
469         return (void *) res->start;
470 }
471
472 /* Free and unmap a consistent DMA buffer.
473  * cpu_addr is what was returned from pci_alloc_consistent,
474  * size must be the same as what as passed into pci_alloc_consistent,
475  * and likewise dma_addr must be the same as what *dma_addrp was set to.
476  *
477  * References to the memory and mappings associated with cpu_addr/dma_addr
478  * past this call are illegal.
479  */
480 static void pci32_free_coherent(struct device *dev, size_t n, void *p,
481                                 dma_addr_t ba)
482 {
483         struct resource *res;
484         unsigned long pgp;
485
486         if ((res = _sparc_find_resource(&_sparc_dvma,
487             (unsigned long)p)) == NULL) {
488                 printk("pci_free_consistent: cannot free %p\n", p);
489                 return;
490         }
491
492         if (((unsigned long)p & (PAGE_SIZE-1)) != 0) {
493                 printk("pci_free_consistent: unaligned va %p\n", p);
494                 return;
495         }
496
497         n = PAGE_ALIGN(n);
498         if ((res->end-res->start)+1 != n) {
499                 printk("pci_free_consistent: region 0x%lx asked 0x%lx\n",
500                     (long)((res->end-res->start)+1), (long)n);
501                 return;
502         }
503
504         pgp = (unsigned long) phys_to_virt(ba); /* bus_to_virt actually */
505         mmu_inval_dma_area(pgp, n);
506         sparc_unmapiorange((unsigned long)p, n);
507
508         release_resource(res);
509         kfree(res);
510
511         free_pages(pgp, get_order(n));
512 }
513
514 /*
515  * Same as pci_map_single, but with pages.
516  */
517 static dma_addr_t pci32_map_page(struct device *dev, struct page *page,
518                                  unsigned long offset, size_t size,
519                                  enum dma_data_direction dir,
520                                  struct dma_attrs *attrs)
521 {
522         /* IIep is write-through, not flushing. */
523         return page_to_phys(page) + offset;
524 }
525
526 static void pci32_unmap_page(struct device *dev, dma_addr_t ba, size_t size,
527                              enum dma_data_direction dir, struct dma_attrs *attrs)
528 {
529         if (dir != PCI_DMA_TODEVICE)
530                 mmu_inval_dma_area((unsigned long)phys_to_virt(ba), PAGE_ALIGN(size));
531 }
532
533 /* Map a set of buffers described by scatterlist in streaming
534  * mode for DMA.  This is the scather-gather version of the
535  * above pci_map_single interface.  Here the scatter gather list
536  * elements are each tagged with the appropriate dma address
537  * and length.  They are obtained via sg_dma_{address,length}(SG).
538  *
539  * NOTE: An implementation may be able to use a smaller number of
540  *       DMA address/length pairs than there are SG table elements.
541  *       (for example via virtual mapping capabilities)
542  *       The routine returns the number of addr/length pairs actually
543  *       used, at most nents.
544  *
545  * Device ownership issues as mentioned above for pci_map_single are
546  * the same here.
547  */
548 static int pci32_map_sg(struct device *device, struct scatterlist *sgl,
549                         int nents, enum dma_data_direction dir,
550                         struct dma_attrs *attrs)
551 {
552         struct scatterlist *sg;
553         int n;
554
555         /* IIep is write-through, not flushing. */
556         for_each_sg(sgl, sg, nents, n) {
557                 BUG_ON(page_address(sg_page(sg)) == NULL);
558                 sg->dma_address = virt_to_phys(sg_virt(sg));
559                 sg->dma_length = sg->length;
560         }
561         return nents;
562 }
563
564 /* Unmap a set of streaming mode DMA translations.
565  * Again, cpu read rules concerning calls here are the same as for
566  * pci_unmap_single() above.
567  */
568 static void pci32_unmap_sg(struct device *dev, struct scatterlist *sgl,
569                            int nents, enum dma_data_direction dir,
570                            struct dma_attrs *attrs)
571 {
572         struct scatterlist *sg;
573         int n;
574
575         if (dir != PCI_DMA_TODEVICE) {
576                 for_each_sg(sgl, sg, nents, n) {
577                         BUG_ON(page_address(sg_page(sg)) == NULL);
578                         mmu_inval_dma_area(
579                             (unsigned long) page_address(sg_page(sg)),
580                             PAGE_ALIGN(sg->length));
581                 }
582         }
583 }
584
585 /* Make physical memory consistent for a single
586  * streaming mode DMA translation before or after a transfer.
587  *
588  * If you perform a pci_map_single() but wish to interrogate the
589  * buffer using the cpu, yet do not wish to teardown the PCI dma
590  * mapping, you must call this function before doing so.  At the
591  * next point you give the PCI dma address back to the card, you
592  * must first perform a pci_dma_sync_for_device, and then the
593  * device again owns the buffer.
594  */
595 static void pci32_sync_single_for_cpu(struct device *dev, dma_addr_t ba,
596                                       size_t size, enum dma_data_direction dir)
597 {
598         if (dir != PCI_DMA_TODEVICE) {
599                 mmu_inval_dma_area((unsigned long)phys_to_virt(ba),
600                                    PAGE_ALIGN(size));
601         }
602 }
603
604 static void pci32_sync_single_for_device(struct device *dev, dma_addr_t ba,
605                                          size_t size, enum dma_data_direction dir)
606 {
607         if (dir != PCI_DMA_TODEVICE) {
608                 mmu_inval_dma_area((unsigned long)phys_to_virt(ba),
609                                    PAGE_ALIGN(size));
610         }
611 }
612
613 /* Make physical memory consistent for a set of streaming
614  * mode DMA translations after a transfer.
615  *
616  * The same as pci_dma_sync_single_* but for a scatter-gather list,
617  * same rules and usage.
618  */
619 static void pci32_sync_sg_for_cpu(struct device *dev, struct scatterlist *sgl,
620                                   int nents, enum dma_data_direction dir)
621 {
622         struct scatterlist *sg;
623         int n;
624
625         if (dir != PCI_DMA_TODEVICE) {
626                 for_each_sg(sgl, sg, nents, n) {
627                         BUG_ON(page_address(sg_page(sg)) == NULL);
628                         mmu_inval_dma_area(
629                             (unsigned long) page_address(sg_page(sg)),
630                             PAGE_ALIGN(sg->length));
631                 }
632         }
633 }
634
635 static void pci32_sync_sg_for_device(struct device *device, struct scatterlist *sgl,
636                                      int nents, enum dma_data_direction dir)
637 {
638         struct scatterlist *sg;
639         int n;
640
641         if (dir != PCI_DMA_TODEVICE) {
642                 for_each_sg(sgl, sg, nents, n) {
643                         BUG_ON(page_address(sg_page(sg)) == NULL);
644                         mmu_inval_dma_area(
645                             (unsigned long) page_address(sg_page(sg)),
646                             PAGE_ALIGN(sg->length));
647                 }
648         }
649 }
650
651 struct dma_map_ops pci32_dma_ops = {
652         .alloc_coherent         = pci32_alloc_coherent,
653         .free_coherent          = pci32_free_coherent,
654         .map_page               = pci32_map_page,
655         .unmap_page             = pci32_unmap_page,
656         .map_sg                 = pci32_map_sg,
657         .unmap_sg               = pci32_unmap_sg,
658         .sync_single_for_cpu    = pci32_sync_single_for_cpu,
659         .sync_single_for_device = pci32_sync_single_for_device,
660         .sync_sg_for_cpu        = pci32_sync_sg_for_cpu,
661         .sync_sg_for_device     = pci32_sync_sg_for_device,
662 };
663 EXPORT_SYMBOL(pci32_dma_ops);
664
665 #endif /* CONFIG_PCI || CONFIG_SPARC_LEON */
666
667 #ifdef CONFIG_SPARC_LEON
668 struct dma_map_ops *dma_ops = &pci32_dma_ops;
669 #elif defined(CONFIG_SBUS)
670 struct dma_map_ops *dma_ops = &sbus_dma_ops;
671 #endif
672
673 EXPORT_SYMBOL(dma_ops);
674
675
676 /*
677  * Return whether the given PCI device DMA address mask can be
678  * supported properly.  For example, if your device can only drive the
679  * low 24-bits during PCI bus mastering, then you would pass
680  * 0x00ffffff as the mask to this function.
681  */
682 int dma_supported(struct device *dev, u64 mask)
683 {
684 #ifdef CONFIG_PCI
685         if (dev->bus == &pci_bus_type)
686                 return 1;
687 #endif
688         return 0;
689 }
690 EXPORT_SYMBOL(dma_supported);
691
692 #ifdef CONFIG_PROC_FS
693
694 static int sparc_io_proc_show(struct seq_file *m, void *v)
695 {
696         struct resource *root = m->private, *r;
697         const char *nm;
698
699         for (r = root->child; r != NULL; r = r->sibling) {
700                 if ((nm = r->name) == 0) nm = "???";
701                 seq_printf(m, "%016llx-%016llx: %s\n",
702                                 (unsigned long long)r->start,
703                                 (unsigned long long)r->end, nm);
704         }
705
706         return 0;
707 }
708
709 static int sparc_io_proc_open(struct inode *inode, struct file *file)
710 {
711         return single_open(file, sparc_io_proc_show, PDE(inode)->data);
712 }
713
714 static const struct file_operations sparc_io_proc_fops = {
715         .owner          = THIS_MODULE,
716         .open           = sparc_io_proc_open,
717         .read           = seq_read,
718         .llseek         = seq_lseek,
719         .release        = single_release,
720 };
721 #endif /* CONFIG_PROC_FS */
722
723 /*
724  * This is a version of find_resource and it belongs to kernel/resource.c.
725  * Until we have agreement with Linus and Martin, it lingers here.
726  *
727  * XXX Too slow. Can have 8192 DVMA pages on sun4m in the worst case.
728  * This probably warrants some sort of hashing.
729  */
730 static struct resource *_sparc_find_resource(struct resource *root,
731                                              unsigned long hit)
732 {
733         struct resource *tmp;
734
735         for (tmp = root->child; tmp != 0; tmp = tmp->sibling) {
736                 if (tmp->start <= hit && tmp->end >= hit)
737                         return tmp;
738         }
739         return NULL;
740 }
741
742 static void register_proc_sparc_ioport(void)
743 {
744 #ifdef CONFIG_PROC_FS
745         proc_create_data("io_map", 0, NULL, &sparc_io_proc_fops, &sparc_iomap);
746         proc_create_data("dvma_map", 0, NULL, &sparc_io_proc_fops, &_sparc_dvma);
747 #endif
748 }