Merge branch 'core-objtool-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[linux-block.git] / arch / unicore32 / include / asm / io.h
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*
3  * linux/arch/unicore32/include/asm/io.h
4  *
5  * Code specific to PKUnity SoC and UniCore ISA
6  *
7  * Copyright (C) 2001-2010 GUAN Xue-tao
8  */
9 #ifndef __UNICORE_IO_H__
10 #define __UNICORE_IO_H__
11
12 #ifdef __KERNEL__
13
14 #include <asm/byteorder.h>
15 #include <asm/memory.h>
16
17 #define PCI_IOBASE      PKUNITY_PCILIO_BASE
18 #include <asm-generic/io.h>
19
20 /*
21  * __uc32_ioremap takes CPU physical address.
22  */
23 extern void __iomem *__uc32_ioremap(unsigned long, size_t);
24 extern void __uc32_iounmap(volatile void __iomem *addr);
25
26 /*
27  * ioremap and friends.
28  *
29  * ioremap takes a PCI memory address, as specified in
30  * Documentation/driver-api/io-mapping.rst.
31  *
32  */
33 #define ioremap(cookie, size)           __uc32_ioremap(cookie, size)
34 #define iounmap(cookie)                 __uc32_iounmap(cookie)
35
36 #define readb_relaxed readb
37 #define readw_relaxed readw
38 #define readl_relaxed readl
39
40 #define HAVE_ARCH_PIO_SIZE
41 #define PIO_OFFSET              (unsigned int)(PCI_IOBASE)
42 #define PIO_MASK                (unsigned int)(IO_SPACE_LIMIT)
43 #define PIO_RESERVED            (PIO_OFFSET + PIO_MASK + 1)
44
45 #ifdef CONFIG_STRICT_DEVMEM
46
47 #include <linux/ioport.h>
48 #include <linux/mm.h>
49
50 /*
51  * devmem_is_allowed() checks to see if /dev/mem access to a certain
52  * address is valid. The argument is a physical page number.
53  * We mimic x86 here by disallowing access to system RAM as well as
54  * device-exclusive MMIO regions. This effectively disable read()/write()
55  * on /dev/mem.
56  */
57 static inline int devmem_is_allowed(unsigned long pfn)
58 {
59         if (iomem_is_exclusive(pfn << PAGE_SHIFT))
60                 return 0;
61         if (!page_is_ram(pfn))
62                 return 1;
63         return 0;
64 }
65
66 #endif /* CONFIG_STRICT_DEVMEM */
67
68 #endif  /* __KERNEL__ */
69 #endif  /* __UNICORE_IO_H__ */