blob: 4730c1dd697d37c8218239fe79657cd970fbad06 [file] [log] [blame]
Jamie Lenehana09749d2006-09-27 15:05:39 +09001/*
2 * I/O routines for Titan
3 */
Jamie Lenehana09749d2006-09-27 15:05:39 +09004#include <linux/pci.h>
5#include <asm/machvec.h>
6#include <asm/addrspace.h>
7#include <asm/titan.h>
8#include <asm/io.h>
Jamie Lenehana09749d2006-09-27 15:05:39 +09009
Paul Mundt373e68b2006-09-27 15:41:24 +090010static inline unsigned int port2adr(unsigned int port)
Jamie Lenehana09749d2006-09-27 15:05:39 +090011{
12 maybebadio((unsigned long)port);
Paul Mundt373e68b2006-09-27 15:41:24 +090013 return port;
Jamie Lenehana09749d2006-09-27 15:05:39 +090014}
15
16u8 titan_inb(unsigned long port)
17{
18 if (PXSEG(port))
19 return ctrl_inb(port);
Paul Mundt959f85f2006-09-27 16:43:28 +090020 else if (is_pci_ioaddr(port))
21 return ctrl_inb(pci_ioaddr(port));
Jamie Lenehana09749d2006-09-27 15:05:39 +090022 return ctrl_inw(port2adr(port)) & 0xff;
23}
24
25u8 titan_inb_p(unsigned long port)
26{
27 u8 v;
28
29 if (PXSEG(port))
30 v = ctrl_inb(port);
Paul Mundt959f85f2006-09-27 16:43:28 +090031 else if (is_pci_ioaddr(port))
32 v = ctrl_inb(pci_ioaddr(port));
Jamie Lenehana09749d2006-09-27 15:05:39 +090033 else
34 v = ctrl_inw(port2adr(port)) & 0xff;
Paul Mundt959f85f2006-09-27 16:43:28 +090035 ctrl_delay();
Jamie Lenehana09749d2006-09-27 15:05:39 +090036 return v;
37}
38
39u16 titan_inw(unsigned long port)
40{
41 if (PXSEG(port))
42 return ctrl_inw(port);
Paul Mundt959f85f2006-09-27 16:43:28 +090043 else if (is_pci_ioaddr(port))
44 return ctrl_inw(pci_ioaddr(port));
Jamie Lenehana09749d2006-09-27 15:05:39 +090045 else if (port >= 0x2000)
46 return ctrl_inw(port2adr(port));
47 else
48 maybebadio(port);
49 return 0;
50}
51
52u32 titan_inl(unsigned long port)
53{
54 if (PXSEG(port))
55 return ctrl_inl(port);
Paul Mundt959f85f2006-09-27 16:43:28 +090056 else if (is_pci_ioaddr(port))
57 return ctrl_inl(pci_ioaddr(port));
Jamie Lenehana09749d2006-09-27 15:05:39 +090058 else if (port >= 0x2000)
59 return ctrl_inw(port2adr(port));
60 else
61 maybebadio(port);
62 return 0;
63}
64
65void titan_outb(u8 value, unsigned long port)
66{
67 if (PXSEG(port))
68 ctrl_outb(value, port);
Paul Mundt959f85f2006-09-27 16:43:28 +090069 else if (is_pci_ioaddr(port))
70 ctrl_outb(value, pci_ioaddr(port));
Jamie Lenehana09749d2006-09-27 15:05:39 +090071 else
72 ctrl_outw(value, port2adr(port));
73}
74
75void titan_outb_p(u8 value, unsigned long port)
76{
77 if (PXSEG(port))
78 ctrl_outb(value, port);
Paul Mundt959f85f2006-09-27 16:43:28 +090079 else if (is_pci_ioaddr(port))
80 ctrl_outb(value, pci_ioaddr(port));
Jamie Lenehana09749d2006-09-27 15:05:39 +090081 else
82 ctrl_outw(value, port2adr(port));
Paul Mundt959f85f2006-09-27 16:43:28 +090083 ctrl_delay();
Jamie Lenehana09749d2006-09-27 15:05:39 +090084}
85
86void titan_outw(u16 value, unsigned long port)
87{
88 if (PXSEG(port))
89 ctrl_outw(value, port);
Paul Mundt959f85f2006-09-27 16:43:28 +090090 else if (is_pci_ioaddr(port))
91 ctrl_outw(value, pci_ioaddr(port));
Jamie Lenehana09749d2006-09-27 15:05:39 +090092 else if (port >= 0x2000)
93 ctrl_outw(value, port2adr(port));
94 else
95 maybebadio(port);
96}
97
98void titan_outl(u32 value, unsigned long port)
99{
100 if (PXSEG(port))
101 ctrl_outl(value, port);
Paul Mundt959f85f2006-09-27 16:43:28 +0900102 else if (is_pci_ioaddr(port))
103 ctrl_outl(value, pci_ioaddr(port));
Jamie Lenehana09749d2006-09-27 15:05:39 +0900104 else
105 maybebadio(port);
106}
107
108void titan_insl(unsigned long port, void *dst, unsigned long count)
109{
110 maybebadio(port);
111}
112
113void titan_outsl(unsigned long port, const void *src, unsigned long count)
114{
115 maybebadio(port);
116}
117
Jamie Lenehana09749d2006-09-27 15:05:39 +0900118void __iomem *titan_ioport_map(unsigned long port, unsigned int size)
119{
Paul Mundt959f85f2006-09-27 16:43:28 +0900120 if (PXSEG(port) || is_pci_memaddr(port))
Jamie Lenehana09749d2006-09-27 15:05:39 +0900121 return (void __iomem *)port;
Paul Mundt959f85f2006-09-27 16:43:28 +0900122 else if (is_pci_ioaddr(port))
123 return (void __iomem *)pci_ioaddr(port);
Jamie Lenehana09749d2006-09-27 15:05:39 +0900124
125 return (void __iomem *)port2adr(port);
126}