blob: 08237ae8b840d8baf5ce3028b1ceccaa5ff0199c [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002#ifndef __GENERIC_IO_H
3#define __GENERIC_IO_H
4
5#include <linux/linkage.h>
James Bottomleydae409a2005-04-16 15:25:54 -07006#include <asm/byteorder.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007
8/*
9 * These are the "generic" interfaces for doing new-style
10 * memory-mapped or PIO accesses. Architectures may do
11 * their own arch-optimized versions, these just act as
12 * wrappers around the old-style IO register access functions:
13 * read[bwl]/write[bwl]/in[bwl]/out[bwl]
14 *
15 * Don't include this directly, include it from <asm/io.h>.
16 */
17
18/*
19 * Read/write from/to an (offsettable) iomem cookie. It might be a PIO
20 * access or a MMIO access, these functions don't care. The info is
21 * encoded in the hardware mapping set up by the mapping functions
22 * (or the cookie itself, depending on implementation and hw).
23 *
24 * The generic routines just encode the PIO/MMIO as part of the
25 * cookie, and coldly assume that the MMIO IO mappings are not
26 * in the low address range. Architectures for which this is not
27 * true can't use this generic implementation.
28 */
Krzysztof Kozlowski8f28ca62020-08-14 17:32:07 -070029extern unsigned int ioread8(const void __iomem *);
30extern unsigned int ioread16(const void __iomem *);
31extern unsigned int ioread16be(const void __iomem *);
32extern unsigned int ioread32(const void __iomem *);
33extern unsigned int ioread32be(const void __iomem *);
Horia Geantă9e44fb12016-05-19 18:10:56 +030034#ifdef CONFIG_64BIT
Krzysztof Kozlowski8f28ca62020-08-14 17:32:07 -070035extern u64 ioread64(const void __iomem *);
36extern u64 ioread64be(const void __iomem *);
Horia Geantă9e44fb12016-05-19 18:10:56 +030037#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Logan Gunthorpe79bf0cb2019-01-16 11:25:20 -070039#ifdef readq
40#define ioread64_lo_hi ioread64_lo_hi
41#define ioread64_hi_lo ioread64_hi_lo
42#define ioread64be_lo_hi ioread64be_lo_hi
43#define ioread64be_hi_lo ioread64be_hi_lo
Krzysztof Kozlowski8f28ca62020-08-14 17:32:07 -070044extern u64 ioread64_lo_hi(const void __iomem *addr);
45extern u64 ioread64_hi_lo(const void __iomem *addr);
46extern u64 ioread64be_lo_hi(const void __iomem *addr);
47extern u64 ioread64be_hi_lo(const void __iomem *addr);
Logan Gunthorpe79bf0cb2019-01-16 11:25:20 -070048#endif
49
Harvey Harrison144b2a92008-02-08 04:19:56 -080050extern void iowrite8(u8, void __iomem *);
51extern void iowrite16(u16, void __iomem *);
52extern void iowrite16be(u16, void __iomem *);
53extern void iowrite32(u32, void __iomem *);
54extern void iowrite32be(u32, void __iomem *);
Horia Geantă9e44fb12016-05-19 18:10:56 +030055#ifdef CONFIG_64BIT
56extern void iowrite64(u64, void __iomem *);
57extern void iowrite64be(u64, void __iomem *);
58#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Logan Gunthorpe79bf0cb2019-01-16 11:25:20 -070060#ifdef writeq
61#define iowrite64_lo_hi iowrite64_lo_hi
62#define iowrite64_hi_lo iowrite64_hi_lo
63#define iowrite64be_lo_hi iowrite64be_lo_hi
64#define iowrite64be_hi_lo iowrite64be_hi_lo
65extern void iowrite64_lo_hi(u64 val, void __iomem *addr);
66extern void iowrite64_hi_lo(u64 val, void __iomem *addr);
67extern void iowrite64be_lo_hi(u64 val, void __iomem *addr);
68extern void iowrite64be_hi_lo(u64 val, void __iomem *addr);
69#endif
70
Linus Torvalds1da177e2005-04-16 15:20:36 -070071/*
72 * "string" versions of the above. Note that they
73 * use native byte ordering for the accesses (on
74 * the assumption that IO and memory agree on a
75 * byte order, and CPU byteorder is irrelevant).
76 *
77 * They do _not_ update the port address. If you
78 * want MMIO that copies stuff laid out in MMIO
79 * memory across multiple ports, use "memcpy_toio()"
80 * and friends.
81 */
Krzysztof Kozlowski8f28ca62020-08-14 17:32:07 -070082extern void ioread8_rep(const void __iomem *port, void *buf, unsigned long count);
83extern void ioread16_rep(const void __iomem *port, void *buf, unsigned long count);
84extern void ioread32_rep(const void __iomem *port, void *buf, unsigned long count);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
Harvey Harrison144b2a92008-02-08 04:19:56 -080086extern void iowrite8_rep(void __iomem *port, const void *buf, unsigned long count);
87extern void iowrite16_rep(void __iomem *port, const void *buf, unsigned long count);
88extern void iowrite32_rep(void __iomem *port, const void *buf, unsigned long count);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
Uwe Kleine-Königce816fa2014-04-07 15:39:19 -070090#ifdef CONFIG_HAS_IOPORT_MAP
Linus Torvalds1da177e2005-04-16 15:20:36 -070091/* Create a virtual mapping cookie for an IO port range */
92extern void __iomem *ioport_map(unsigned long port, unsigned int nr);
93extern void ioport_unmap(void __iomem *);
Jonas Bonn82ed2232011-07-02 17:23:29 +020094#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
venkatesh.pallipadi@intel.com1526a752008-03-18 17:00:24 -070096#ifndef ARCH_HAS_IOREMAP_WC
Christoph Hellwig4bdc0d62020-01-06 09:43:50 +010097#define ioremap_wc ioremap
venkatesh.pallipadi@intel.com1526a752008-03-18 17:00:24 -070098#endif
99
Toshi Kanid8382702015-06-04 18:55:15 +0200100#ifndef ARCH_HAS_IOREMAP_WT
Christoph Hellwig4bdc0d62020-01-06 09:43:50 +0100101#define ioremap_wt ioremap
Toshi Kanid8382702015-06-04 18:55:15 +0200102#endif
103
Hector Martin7c566bb2021-02-11 21:35:46 +0900104#ifndef ARCH_HAS_IOREMAP_NP
105/* See the comment in asm-generic/io.h about ioremap_np(). */
106#define ioremap_np ioremap_np
107static inline void __iomem *ioremap_np(phys_addr_t offset, size_t size)
108{
109 return NULL;
110}
111#endif
112
Michael S. Tsirkin66eab4d2011-11-24 20:45:20 +0200113#include <asm-generic/pci_iomap.h>
114
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115#endif