Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
iomap.c
Go to the documentation of this file.
1 /*
2  * ppc64 "iomap" interface implementation.
3  *
4  * (C) Copyright 2004 Linus Torvalds
5  */
6 #include <linux/init.h>
7 #include <linux/pci.h>
8 #include <linux/mm.h>
9 #include <linux/export.h>
10 #include <asm/io.h>
11 #include <asm/pci-bridge.h>
12 
13 /*
14  * Here comes the ppc64 implementation of the IOMAP
15  * interfaces.
16  */
17 unsigned int ioread8(void __iomem *addr)
18 {
19  return readb(addr);
20 }
21 unsigned int ioread16(void __iomem *addr)
22 {
23  return readw(addr);
24 }
25 unsigned int ioread16be(void __iomem *addr)
26 {
27  return in_be16(addr);
28 }
29 unsigned int ioread32(void __iomem *addr)
30 {
31  return readl(addr);
32 }
33 unsigned int ioread32be(void __iomem *addr)
34 {
35  return in_be32(addr);
36 }
42 
43 void iowrite8(u8 val, void __iomem *addr)
44 {
45  writeb(val, addr);
46 }
48 {
49  writew(val, addr);
50 }
52 {
53  out_be16(addr, val);
54 }
56 {
57  writel(val, addr);
58 }
60 {
61  out_be32(addr, val);
62 }
68 
69 /*
70  * These are the "repeat read/write" functions. Note the
71  * non-CPU byte order. We do things in "IO byteorder"
72  * here.
73  *
74  * FIXME! We could make these do EEH handling if we really
75  * wanted. Not clear if we do.
76  */
77 void ioread8_rep(void __iomem *addr, void *dst, unsigned long count)
78 {
79  _insb((u8 __iomem *) addr, dst, count);
80 }
81 void ioread16_rep(void __iomem *addr, void *dst, unsigned long count)
82 {
83  _insw_ns((u16 __iomem *) addr, dst, count);
84 }
85 void ioread32_rep(void __iomem *addr, void *dst, unsigned long count)
86 {
87  _insl_ns((u32 __iomem *) addr, dst, count);
88 }
92 
93 void iowrite8_rep(void __iomem *addr, const void *src, unsigned long count)
94 {
95  _outsb((u8 __iomem *) addr, src, count);
96 }
97 void iowrite16_rep(void __iomem *addr, const void *src, unsigned long count)
98 {
99  _outsw_ns((u16 __iomem *) addr, src, count);
100 }
101 void iowrite32_rep(void __iomem *addr, const void *src, unsigned long count)
102 {
103  _outsl_ns((u32 __iomem *) addr, src, count);
104 }
108 
109 void __iomem *ioport_map(unsigned long port, unsigned int len)
110 {
111  return (void __iomem *) (port + _IO_BASE);
112 }
113 
115 {
116  /* Nothing to do */
117 }
120 
121 #ifdef CONFIG_PCI
122 void pci_iounmap(struct pci_dev *dev, void __iomem *addr)
123 {
124  if (isa_vaddr_is_ioport(addr))
125  return;
126  if (pcibios_vaddr_is_ioport(addr))
127  return;
128  iounmap(addr);
129 }
130 
132 #endif /* CONFIG_PCI */