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