1 // SPDX-License-Identifier: GPL-2.0
3 * ioport.c: Simple io mapping allocator.
5 * Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
6 * Copyright (C) 1995 Miguel de Icaza (miguel@nuclecu.unam.mx)
8 * 1996: sparc_free_io, 1999: ioremap()/iounmap() by Pete Zaitcev.
11 * <rth> zait: as long as pci_alloc_consistent produces something addressable,
13 * <zaitcev> rth: no, it is relevant, because get_free_pages returns you a
14 * pointer into the big page mapping
15 * <rth> zait: so what?
16 * <rth> zait: remap_it_my_way(virt_to_phys(get_free_page()))
18 * <zaitcev> Suppose I did this remap_it_my_way(virt_to_phys(get_free_page())).
20 * <zaitcev> Now, driver calls pci_free_consistent(with result of
22 * <zaitcev> How do you find the address to pass to free_pages()?
23 * <rth> zait: walk the page tables? It's only two or three level after all.
24 * <rth> zait: you have to walk them anyway to remove the mapping.
26 * <zaitcev> Sounds reasonable
29 #include <linux/module.h>
30 #include <linux/sched.h>
31 #include <linux/kernel.h>
32 #include <linux/errno.h>
33 #include <linux/types.h>
34 #include <linux/ioport.h>
36 #include <linux/slab.h>
37 #include <linux/pci.h> /* struct pci_dev */
38 #include <linux/proc_fs.h>
39 #include <linux/seq_file.h>
40 #include <linux/scatterlist.h>
41 #include <linux/of_device.h>
44 #include <asm/vaddrs.h>
45 #include <asm/oplib.h>
48 #include <asm/pgalloc.h>
50 #include <asm/iommu.h>
51 #include <asm/io-unit.h>
54 const struct sparc32_dma_ops
*sparc32_dma_ops
;
56 /* This function must make sure that caches and memory are coherent after DMA
57 * On LEON systems without cache snooping it flushes the entire D-CACHE.
59 static inline void dma_make_coherent(unsigned long pa
, unsigned long len
)
61 if (sparc_cpu_model
== sparc_leon
) {
62 if (!sparc_leon3_snooping_enabled())
63 leon_flush_dcache_all();
67 static void __iomem
*_sparc_ioremap(struct resource
*res
, u32 bus
, u32 pa
, int sz
);
68 static void __iomem
*_sparc_alloc_io(unsigned int busno
, unsigned long phys
,
69 unsigned long size
, char *name
);
70 static void _sparc_free_io(struct resource
*res
);
72 static void register_proc_sparc_ioport(void);
74 /* This points to the next to use virtual memory for DVMA mappings */
75 static struct resource _sparc_dvma
= {
76 .name
= "sparc_dvma", .start
= DVMA_VADDR
, .end
= DVMA_END
- 1
78 /* This points to the start of I/O mappings, cluable from outside. */
79 /*ext*/ struct resource sparc_iomap
= {
80 .name
= "sparc_iomap", .start
= IOBASE_VADDR
, .end
= IOBASE_END
- 1
84 * Our mini-allocator...
85 * Boy this is gross! We need it because we must map I/O for
86 * timers and interrupt controller before the kmalloc is available.
90 #define XNRES 10 /* SS-10 uses 8 */
93 struct resource xres
; /* Must be first */
94 int xflag
; /* 1 == used */
98 static struct xresource xresv
[XNRES
];
100 static struct xresource
*xres_alloc(void) {
101 struct xresource
*xrp
;
105 for (n
= 0; n
< XNRES
; n
++) {
106 if (xrp
->xflag
== 0) {
115 static void xres_free(struct xresource
*xrp
) {
120 * These are typically used in PCI drivers
121 * which are trying to be cross-platform.
123 * Bus type is always zero on IIep.
125 void __iomem
*ioremap(unsigned long offset
, unsigned long size
)
129 sprintf(name
, "phys_%08x", (u32
)offset
);
130 return _sparc_alloc_io(0, offset
, size
, name
);
132 EXPORT_SYMBOL(ioremap
);
135 * Complementary to ioremap().
137 void iounmap(volatile void __iomem
*virtual)
139 unsigned long vaddr
= (unsigned long) virtual & PAGE_MASK
;
140 struct resource
*res
;
143 * XXX Too slow. Can have 8192 DVMA pages on sun4m in the worst case.
144 * This probably warrants some sort of hashing.
146 if ((res
= lookup_resource(&sparc_iomap
, vaddr
)) == NULL
) {
147 printk("free_io/iounmap: cannot free %lx\n", vaddr
);
152 if ((char *)res
>= (char*)xresv
&& (char *)res
< (char *)&xresv
[XNRES
]) {
153 xres_free((struct xresource
*)res
);
158 EXPORT_SYMBOL(iounmap
);
160 void __iomem
*of_ioremap(struct resource
*res
, unsigned long offset
,
161 unsigned long size
, char *name
)
163 return _sparc_alloc_io(res
->flags
& 0xF,
167 EXPORT_SYMBOL(of_ioremap
);
169 void of_iounmap(struct resource
*res
, void __iomem
*base
, unsigned long size
)
173 EXPORT_SYMBOL(of_iounmap
);
178 static void __iomem
*_sparc_alloc_io(unsigned int busno
, unsigned long phys
,
179 unsigned long size
, char *name
)
181 static int printed_full
;
182 struct xresource
*xres
;
183 struct resource
*res
;
186 void __iomem
*va
; /* P3 diag */
188 if (name
== NULL
) name
= "???";
190 if ((xres
= xres_alloc()) != NULL
) {
195 printk("ioremap: done with statics, switching to malloc\n");
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
);
206 strlcpy(tack
, name
, XNMLN
+1);
209 va
= _sparc_ioremap(res
, busno
, phys
, size
);
210 /* printk("ioremap(0x%x:%08lx[0x%lx])=%p\n", busno, phys, size, va); */ /* P3 diag */
216 static void __iomem
*
217 _sparc_ioremap(struct resource
*res
, u32 bus
, u32 pa
, int sz
)
219 unsigned long offset
= ((unsigned long) pa
) & (~PAGE_MASK
);
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
: "???");
231 srmmu_mapiorange(bus
, pa
, res
->start
, resource_size(res
));
233 return (void __iomem
*)(unsigned long)(res
->start
+ offset
);
237 * Complementary to _sparc_ioremap().
239 static void _sparc_free_io(struct resource
*res
)
243 plen
= resource_size(res
);
244 BUG_ON((plen
& (PAGE_SIZE
-1)) != 0);
245 srmmu_unmapiorange(res
->start
, plen
);
246 release_resource(res
);
251 void sbus_set_sbus64(struct device
*dev
, int x
)
253 printk("sbus_set_sbus64: unsupported\n");
255 EXPORT_SYMBOL(sbus_set_sbus64
);
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.
262 static void *sbus_alloc_coherent(struct device
*dev
, size_t len
,
263 dma_addr_t
*dma_addrp
, gfp_t gfp
,
266 struct platform_device
*op
= to_platform_device(dev
);
267 unsigned long len_total
= PAGE_ALIGN(len
);
269 struct resource
*res
;
272 /* XXX why are some lengths signed, others unsigned? */
276 /* XXX So what is maxphys for us and how do drivers know it? */
277 if (len
> 256*1024) { /* __get_free_pages() limit */
281 order
= get_order(len_total
);
282 va
= __get_free_pages(gfp
, order
);
286 if ((res
= kzalloc(sizeof(struct resource
), GFP_KERNEL
)) == NULL
)
289 if (allocate_resource(&_sparc_dvma
, res
, len_total
,
290 _sparc_dvma
.start
, _sparc_dvma
.end
, PAGE_SIZE
, NULL
, NULL
) != 0) {
291 printk("sbus_alloc_consistent: cannot occupy 0x%lx", len_total
);
295 // XXX The sbus_map_dma_area does this for us below, see comments.
296 // srmmu_mapiorange(0, virt_to_phys(va), res->start, len_total);
298 * XXX That's where sdev would be used. Currently we load
299 * all iommu tables with the same translations.
301 if (sbus_map_dma_area(dev
, dma_addrp
, va
, res
->start
, len_total
) != 0)
304 res
->name
= op
->dev
.of_node
->name
;
306 return (void *)(unsigned long)res
->start
;
309 release_resource(res
);
313 free_pages(va
, order
);
318 static void sbus_free_coherent(struct device
*dev
, size_t n
, void *p
,
319 dma_addr_t ba
, unsigned long attrs
)
321 struct resource
*res
;
324 if ((res
= lookup_resource(&_sparc_dvma
,
325 (unsigned long)p
)) == NULL
) {
326 printk("sbus_free_consistent: cannot free %p\n", p
);
330 if (((unsigned long)p
& (PAGE_SIZE
-1)) != 0) {
331 printk("sbus_free_consistent: unaligned va %p\n", p
);
336 if (resource_size(res
) != n
) {
337 printk("sbus_free_consistent: region 0x%lx asked 0x%zx\n",
338 (long)resource_size(res
), n
);
342 release_resource(res
);
345 pgv
= virt_to_page(p
);
346 sbus_unmap_dma_area(dev
, ba
, n
);
348 __free_pages(pgv
, get_order(n
));
352 * Map a chunk of memory so that devices can see it.
353 * CPU view of this memory may be inconsistent with
354 * a device view and explicit flushing is necessary.
356 static dma_addr_t
sbus_map_page(struct device
*dev
, struct page
*page
,
357 unsigned long offset
, size_t len
,
358 enum dma_data_direction dir
,
361 void *va
= page_address(page
) + offset
;
363 /* XXX why are some lengths signed, others unsigned? */
367 /* XXX So what is maxphys for us and how do drivers know it? */
368 if (len
> 256*1024) { /* __get_free_pages() limit */
371 return mmu_get_scsi_one(dev
, va
, len
);
374 static void sbus_unmap_page(struct device
*dev
, dma_addr_t ba
, size_t n
,
375 enum dma_data_direction dir
, unsigned long attrs
)
377 mmu_release_scsi_one(dev
, ba
, n
);
380 static int sbus_map_sg(struct device
*dev
, struct scatterlist
*sg
, int n
,
381 enum dma_data_direction dir
, unsigned long attrs
)
383 mmu_get_scsi_sgl(dev
, sg
, n
);
387 static void sbus_unmap_sg(struct device
*dev
, struct scatterlist
*sg
, int n
,
388 enum dma_data_direction dir
, unsigned long attrs
)
390 mmu_release_scsi_sgl(dev
, sg
, n
);
393 static void sbus_sync_sg_for_cpu(struct device
*dev
, struct scatterlist
*sg
,
394 int n
, enum dma_data_direction dir
)
399 static void sbus_sync_sg_for_device(struct device
*dev
, struct scatterlist
*sg
,
400 int n
, enum dma_data_direction dir
)
405 static int sbus_dma_supported(struct device
*dev
, u64 mask
)
410 static const struct dma_map_ops sbus_dma_ops
= {
411 .alloc
= sbus_alloc_coherent
,
412 .free
= sbus_free_coherent
,
413 .map_page
= sbus_map_page
,
414 .unmap_page
= sbus_unmap_page
,
415 .map_sg
= sbus_map_sg
,
416 .unmap_sg
= sbus_unmap_sg
,
417 .sync_sg_for_cpu
= sbus_sync_sg_for_cpu
,
418 .sync_sg_for_device
= sbus_sync_sg_for_device
,
419 .dma_supported
= sbus_dma_supported
,
422 static int __init
sparc_register_ioport(void)
424 register_proc_sparc_ioport();
429 arch_initcall(sparc_register_ioport
);
431 #endif /* CONFIG_SBUS */
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.
437 static void *pci32_alloc_coherent(struct device
*dev
, size_t len
,
438 dma_addr_t
*pba
, gfp_t gfp
,
441 unsigned long len_total
= PAGE_ALIGN(len
);
443 struct resource
*res
;
449 if (len
> 256*1024) { /* __get_free_pages() limit */
453 order
= get_order(len_total
);
454 va
= (void *) __get_free_pages(gfp
, order
);
456 printk("pci_alloc_consistent: no %ld pages\n", len_total
>>PAGE_SHIFT
);
460 if ((res
= kzalloc(sizeof(struct resource
), GFP_KERNEL
)) == NULL
) {
461 printk("pci_alloc_consistent: no core\n");
465 if (allocate_resource(&_sparc_dvma
, res
, len_total
,
466 _sparc_dvma
.start
, _sparc_dvma
.end
, PAGE_SIZE
, NULL
, NULL
) != 0) {
467 printk("pci_alloc_consistent: cannot occupy 0x%lx", len_total
);
470 srmmu_mapiorange(0, virt_to_phys(va
), res
->start
, len_total
);
472 *pba
= virt_to_phys(va
); /* equals virt_to_bus (R.I.P.) for us. */
473 return (void *) res
->start
;
478 free_pages((unsigned long)va
, order
);
483 /* Free and unmap a consistent DMA buffer.
484 * cpu_addr is what was returned from pci_alloc_consistent,
485 * size must be the same as what as passed into pci_alloc_consistent,
486 * and likewise dma_addr must be the same as what *dma_addrp was set to.
488 * References to the memory and mappings associated with cpu_addr/dma_addr
489 * past this call are illegal.
491 static void pci32_free_coherent(struct device
*dev
, size_t n
, void *p
,
492 dma_addr_t ba
, unsigned long attrs
)
494 struct resource
*res
;
496 if ((res
= lookup_resource(&_sparc_dvma
,
497 (unsigned long)p
)) == NULL
) {
498 printk("pci_free_consistent: cannot free %p\n", p
);
502 if (((unsigned long)p
& (PAGE_SIZE
-1)) != 0) {
503 printk("pci_free_consistent: unaligned va %p\n", p
);
508 if (resource_size(res
) != n
) {
509 printk("pci_free_consistent: region 0x%lx asked 0x%lx\n",
510 (long)resource_size(res
), (long)n
);
514 dma_make_coherent(ba
, n
);
515 srmmu_unmapiorange((unsigned long)p
, n
);
517 release_resource(res
);
519 free_pages((unsigned long)phys_to_virt(ba
), get_order(n
));
523 * Same as pci_map_single, but with pages.
525 static dma_addr_t
pci32_map_page(struct device
*dev
, struct page
*page
,
526 unsigned long offset
, size_t size
,
527 enum dma_data_direction dir
,
530 /* IIep is write-through, not flushing. */
531 return page_to_phys(page
) + offset
;
534 static void pci32_unmap_page(struct device
*dev
, dma_addr_t ba
, size_t size
,
535 enum dma_data_direction dir
, unsigned long attrs
)
537 if (dir
!= PCI_DMA_TODEVICE
&& !(attrs
& DMA_ATTR_SKIP_CPU_SYNC
))
538 dma_make_coherent(ba
, PAGE_ALIGN(size
));
541 /* Map a set of buffers described by scatterlist in streaming
542 * mode for DMA. This is the scatter-gather version of the
543 * above pci_map_single interface. Here the scatter gather list
544 * elements are each tagged with the appropriate dma address
545 * and length. They are obtained via sg_dma_{address,length}(SG).
547 * NOTE: An implementation may be able to use a smaller number of
548 * DMA address/length pairs than there are SG table elements.
549 * (for example via virtual mapping capabilities)
550 * The routine returns the number of addr/length pairs actually
551 * used, at most nents.
553 * Device ownership issues as mentioned above for pci_map_single are
556 static int pci32_map_sg(struct device
*device
, struct scatterlist
*sgl
,
557 int nents
, enum dma_data_direction dir
,
560 struct scatterlist
*sg
;
563 /* IIep is write-through, not flushing. */
564 for_each_sg(sgl
, sg
, nents
, n
) {
565 sg
->dma_address
= sg_phys(sg
);
566 sg
->dma_length
= sg
->length
;
571 /* Unmap a set of streaming mode DMA translations.
572 * Again, cpu read rules concerning calls here are the same as for
573 * pci_unmap_single() above.
575 static void pci32_unmap_sg(struct device
*dev
, struct scatterlist
*sgl
,
576 int nents
, enum dma_data_direction dir
,
579 struct scatterlist
*sg
;
582 if (dir
!= PCI_DMA_TODEVICE
&& !(attrs
& DMA_ATTR_SKIP_CPU_SYNC
)) {
583 for_each_sg(sgl
, sg
, nents
, n
) {
584 dma_make_coherent(sg_phys(sg
), PAGE_ALIGN(sg
->length
));
589 /* Make physical memory consistent for a single
590 * streaming mode DMA translation before or after a transfer.
592 * If you perform a pci_map_single() but wish to interrogate the
593 * buffer using the cpu, yet do not wish to teardown the PCI dma
594 * mapping, you must call this function before doing so. At the
595 * next point you give the PCI dma address back to the card, you
596 * must first perform a pci_dma_sync_for_device, and then the
597 * device again owns the buffer.
599 static void pci32_sync_single_for_cpu(struct device
*dev
, dma_addr_t ba
,
600 size_t size
, enum dma_data_direction dir
)
602 if (dir
!= PCI_DMA_TODEVICE
) {
603 dma_make_coherent(ba
, PAGE_ALIGN(size
));
607 static void pci32_sync_single_for_device(struct device
*dev
, dma_addr_t ba
,
608 size_t size
, enum dma_data_direction dir
)
610 if (dir
!= PCI_DMA_TODEVICE
) {
611 dma_make_coherent(ba
, PAGE_ALIGN(size
));
615 /* Make physical memory consistent for a set of streaming
616 * mode DMA translations after a transfer.
618 * The same as pci_dma_sync_single_* but for a scatter-gather list,
619 * same rules and usage.
621 static void pci32_sync_sg_for_cpu(struct device
*dev
, struct scatterlist
*sgl
,
622 int nents
, enum dma_data_direction dir
)
624 struct scatterlist
*sg
;
627 if (dir
!= PCI_DMA_TODEVICE
) {
628 for_each_sg(sgl
, sg
, nents
, n
) {
629 dma_make_coherent(sg_phys(sg
), PAGE_ALIGN(sg
->length
));
634 static void pci32_sync_sg_for_device(struct device
*device
, struct scatterlist
*sgl
,
635 int nents
, enum dma_data_direction dir
)
637 struct scatterlist
*sg
;
640 if (dir
!= PCI_DMA_TODEVICE
) {
641 for_each_sg(sgl
, sg
, nents
, n
) {
642 dma_make_coherent(sg_phys(sg
), PAGE_ALIGN(sg
->length
));
647 /* note: leon re-uses pci32_dma_ops */
648 const struct dma_map_ops pci32_dma_ops
= {
649 .alloc
= pci32_alloc_coherent
,
650 .free
= pci32_free_coherent
,
651 .map_page
= pci32_map_page
,
652 .unmap_page
= pci32_unmap_page
,
653 .map_sg
= pci32_map_sg
,
654 .unmap_sg
= pci32_unmap_sg
,
655 .sync_single_for_cpu
= pci32_sync_single_for_cpu
,
656 .sync_single_for_device
= pci32_sync_single_for_device
,
657 .sync_sg_for_cpu
= pci32_sync_sg_for_cpu
,
658 .sync_sg_for_device
= pci32_sync_sg_for_device
,
660 EXPORT_SYMBOL(pci32_dma_ops
);
662 const struct dma_map_ops
*dma_ops
= &sbus_dma_ops
;
663 EXPORT_SYMBOL(dma_ops
);
665 #ifdef CONFIG_PROC_FS
667 static int sparc_io_proc_show(struct seq_file
*m
, void *v
)
669 struct resource
*root
= m
->private, *r
;
672 for (r
= root
->child
; r
!= NULL
; r
= r
->sibling
) {
673 if ((nm
= r
->name
) == NULL
) nm
= "???";
674 seq_printf(m
, "%016llx-%016llx: %s\n",
675 (unsigned long long)r
->start
,
676 (unsigned long long)r
->end
, nm
);
682 static int sparc_io_proc_open(struct inode
*inode
, struct file
*file
)
684 return single_open(file
, sparc_io_proc_show
, PDE_DATA(inode
));
687 static const struct file_operations sparc_io_proc_fops
= {
688 .owner
= THIS_MODULE
,
689 .open
= sparc_io_proc_open
,
692 .release
= single_release
,
694 #endif /* CONFIG_PROC_FS */
696 static void register_proc_sparc_ioport(void)
698 #ifdef CONFIG_PROC_FS
699 proc_create_data("io_map", 0, NULL
, &sparc_io_proc_fops
, &sparc_iomap
);
700 proc_create_data("dvma_map", 0, NULL
, &sparc_io_proc_fops
, &_sparc_dvma
);