1.. Copyright 2001 Matthew Wilcox
2..
3..     This documentation is free software; you can redistribute
4..     it and/or modify it under the terms of the GNU General Public
5..     License as published by the Free Software Foundation; either
6..     version 2 of the License, or (at your option) any later
7..     version.
8
9===============================
10Bus-Independent Device Accesses
11===============================
12
13:Author: Matthew Wilcox
14:Author: Alan Cox
15
16Introduction
17============
18
19Linux provides an API which abstracts performing IO across all busses
20and devices, allowing device drivers to be written independently of bus
21type.
22
23Memory Mapped IO
24================
25
26Getting Access to the Device
27----------------------------
28
29The most widely supported form of IO is memory mapped IO. That is, a
30part of the CPU's address space is interpreted not as accesses to
31memory, but as accesses to a device. Some architectures define devices
32to be at a fixed address, but most have some method of discovering
33devices. The PCI bus walk is a good example of such a scheme. This
34document does not cover how to receive such an address, but assumes you
35are starting with one. Physical addresses are of type unsigned long.
36
37This address should not be used directly. Instead, to get an address
38suitable for passing to the accessor functions described below, you
39should call ioremap(). An address suitable for accessing
40the device will be returned to you.
41
42After you've finished using the device (say, in your module's exit
43routine), call iounmap() in order to return the address
44space to the kernel. Most architectures allocate new address space each
45time you call ioremap(), and they can run out unless you
46call iounmap().
47
48Accessing the device
49--------------------
50
51The part of the interface most used by drivers is reading and writing
52memory-mapped registers on the device. Linux provides interfaces to read
53and write 8-bit, 16-bit, 32-bit and 64-bit quantities. Due to a
54historical accident, these are named byte, word, long and quad accesses.
55Both read and write accesses are supported; there is no prefetch support
56at this time.
57
58The functions are named readb(), readw(), readl(), readq(),
59readb_relaxed(), readw_relaxed(), readl_relaxed(), readq_relaxed(),
60writeb(), writew(), writel() and writeq().
61
62Some devices (such as framebuffers) would like to use larger transfers than
638 bytes at a time. For these devices, the memcpy_toio(),
64memcpy_fromio() and memset_io() functions are
65provided. Do not use memset or memcpy on IO addresses; they are not
66guaranteed to copy data in order.
67
68The read and write functions are defined to be ordered. That is the
69compiler is not permitted to reorder the I/O sequence. When the ordering
70can be compiler optimised, you can use __readb() and friends to
71indicate the relaxed ordering. Use this with care.
72
73While the basic functions are defined to be synchronous with respect to
74each other and ordered with respect to each other the busses the devices
75sit on may themselves have asynchronicity. In particular many authors
76are burned by the fact that PCI bus writes are posted asynchronously. A
77driver author must issue a read from the same device to ensure that
78writes have occurred in the specific cases the author cares. This kind
79of property cannot be hidden from driver writers in the API. In some
80cases, the read used to flush the device may be expected to fail (if the
81card is resetting, for example). In that case, the read should be done
82from config space, which is guaranteed to soft-fail if the card doesn't
83respond.
84
85The following is an example of flushing a write to a device when the
86driver would like to ensure the write's effects are visible prior to
87continuing execution::
88
89    static inline void
90    qla1280_disable_intrs(struct scsi_qla_host *ha)
91    {
92        struct device_reg *reg;
93
94        reg = ha->iobase;
95        /* disable risc and host interrupts */
96        WRT_REG_WORD(&reg->ictrl, 0);
97        /*
98         * The following read will ensure that the above write
99         * has been received by the device before we return from this
100         * function.
101         */
102        RD_REG_WORD(&reg->ictrl);
103        ha->flags.ints_enabled = 0;
104    }
105
106PCI ordering rules also guarantee that PIO read responses arrive after any
107outstanding DMA writes from that bus, since for some devices the result of
108a readb() call may signal to the driver that a DMA transaction is
109complete. In many cases, however, the driver may want to indicate that the
110next readb() call has no relation to any previous DMA writes
111performed by the device. The driver can use readb_relaxed() for
112these cases, although only some platforms will honor the relaxed
113semantics. Using the relaxed read functions will provide significant
114performance benefits on platforms that support it. The qla2xxx driver
115provides examples of how to use readX_relaxed(). In many cases, a majority
116of the driver's readX() calls can safely be converted to readX_relaxed()
117calls, since only a few will indicate or depend on DMA completion.
118
119Port Space Accesses
120===================
121
122Port Space Explained
123--------------------
124
125Another form of IO commonly supported is Port Space. This is a range of
126addresses separate to the normal memory address space. Access to these
127addresses is generally not as fast as accesses to the memory mapped
128addresses, and it also has a potentially smaller address space.
129
130Unlike memory mapped IO, no preparation is required to access port
131space.
132
133Accessing Port Space
134--------------------
135
136Accesses to this space are provided through a set of functions which
137allow 8-bit, 16-bit and 32-bit accesses; also known as byte, word and
138long. These functions are inb(), inw(),
139inl(), outb(), outw() and
140outl().
141
142Some variants are provided for these functions. Some devices require
143that accesses to their ports are slowed down. This functionality is
144provided by appending a ``_p`` to the end of the function.
145There are also equivalents to memcpy. The ins() and
146outs() functions copy bytes, words or longs to the given
147port.
148
149Public Functions Provided
150=========================
151
152.. kernel-doc:: arch/x86/include/asm/io.h
153   :internal:
154
155.. kernel-doc:: lib/pci_iomap.c
156   :export:
157