blob: 48f3494f55b15310ca8d3dcfd1f19951ea0e5c29 [file] [log] [blame]
Jamie Lenehana09749d2006-09-27 15:05:39 +09001/*
2 * I/O routines for Titan
3 */
4
5#include <linux/pci.h>
6#include <asm/machvec.h>
7#include <asm/addrspace.h>
8#include <asm/titan.h>
9#include <asm/io.h>
10#include "../../drivers/pci/pci-sh7751.h"
11
12#define PCIIOBR (volatile long *)PCI_REG(SH7751_PCIIOBR)
13#define PCIMBR (volatile long *)PCI_REG(SH7751_PCIMBR)
14#define PCI_IO_AREA SH7751_PCI_IO_BASE
15#define PCI_MEM_AREA SH7751_PCI_CONFIG_BASE
16
17#define PCI_IOMAP(adr) (PCI_IO_AREA + (adr & ~SH7751_PCIIOBR_MASK))
18
19#if defined(CONFIG_PCI)
20#define CHECK_SH7751_PCIIO(port) \
21 ((port >= PCIBIOS_MIN_IO) && (port < (PCIBIOS_MIN_IO + SH7751_PCI_IO_SIZE)))
22#define CHECK_SH7751_PCIMEMIO(port) \
23 ((port >= PCIBIOS_MIN_MEM) && (port < (PCIBIOS_MIN_MEM + SH7751_PCI_MEM_SIZE)))
24#else
25#define CHECK_SH7751_PCIIO(port) (0)
26#endif
27
28static inline void delay(void)
29{
30 ctrl_inw(0xa0000000);
31}
32
Paul Mundt373e68b2006-09-27 15:41:24 +090033static inline unsigned int port2adr(unsigned int port)
Jamie Lenehana09749d2006-09-27 15:05:39 +090034{
35 maybebadio((unsigned long)port);
Paul Mundt373e68b2006-09-27 15:41:24 +090036 return port;
Jamie Lenehana09749d2006-09-27 15:05:39 +090037}
38
39u8 titan_inb(unsigned long port)
40{
41 if (PXSEG(port))
42 return ctrl_inb(port);
43 else if (CHECK_SH7751_PCIIO(port))
44 return ctrl_inb(PCI_IOMAP(port));
45 return ctrl_inw(port2adr(port)) & 0xff;
46}
47
48u8 titan_inb_p(unsigned long port)
49{
50 u8 v;
51
52 if (PXSEG(port))
53 v = ctrl_inb(port);
54 else if (CHECK_SH7751_PCIIO(port))
55 v = ctrl_inb(PCI_IOMAP(port));
56 else
57 v = ctrl_inw(port2adr(port)) & 0xff;
58 delay();
59 return v;
60}
61
62u16 titan_inw(unsigned long port)
63{
64 if (PXSEG(port))
65 return ctrl_inw(port);
66 else if (CHECK_SH7751_PCIIO(port))
67 return ctrl_inw(PCI_IOMAP(port));
68 else if (port >= 0x2000)
69 return ctrl_inw(port2adr(port));
70 else
71 maybebadio(port);
72 return 0;
73}
74
75u32 titan_inl(unsigned long port)
76{
77 if (PXSEG(port))
78 return ctrl_inl(port);
79 else if (CHECK_SH7751_PCIIO(port))
80 return ctrl_inl(PCI_IOMAP(port));
81 else if (port >= 0x2000)
82 return ctrl_inw(port2adr(port));
83 else
84 maybebadio(port);
85 return 0;
86}
87
88void titan_outb(u8 value, unsigned long port)
89{
90 if (PXSEG(port))
91 ctrl_outb(value, port);
92 else if (CHECK_SH7751_PCIIO(port))
93 ctrl_outb(value, PCI_IOMAP(port));
94 else
95 ctrl_outw(value, port2adr(port));
96}
97
98void titan_outb_p(u8 value, unsigned long port)
99{
100 if (PXSEG(port))
101 ctrl_outb(value, port);
102 else if (CHECK_SH7751_PCIIO(port))
103 ctrl_outb(value, PCI_IOMAP(port));
104 else
105 ctrl_outw(value, port2adr(port));
106 delay();
107}
108
109void titan_outw(u16 value, unsigned long port)
110{
111 if (PXSEG(port))
112 ctrl_outw(value, port);
113 else if (CHECK_SH7751_PCIIO(port))
114 ctrl_outw(value, PCI_IOMAP(port));
115 else if (port >= 0x2000)
116 ctrl_outw(value, port2adr(port));
117 else
118 maybebadio(port);
119}
120
121void titan_outl(u32 value, unsigned long port)
122{
123 if (PXSEG(port))
124 ctrl_outl(value, port);
125 else if (CHECK_SH7751_PCIIO(port))
126 ctrl_outl(value, PCI_IOMAP(port));
127 else
128 maybebadio(port);
129}
130
131void titan_insl(unsigned long port, void *dst, unsigned long count)
132{
133 maybebadio(port);
134}
135
136void titan_outsl(unsigned long port, const void *src, unsigned long count)
137{
138 maybebadio(port);
139}
140
Jamie Lenehana09749d2006-09-27 15:05:39 +0900141void __iomem *titan_ioport_map(unsigned long port, unsigned int size)
142{
Paul Mundtd7cdc9e2006-09-27 15:16:42 +0900143 if (PXSEG(port) || CHECK_SH7751_PCIMEMIO(port))
Jamie Lenehana09749d2006-09-27 15:05:39 +0900144 return (void __iomem *)port;
145 else if (CHECK_SH7751_PCIIO(port))
146 return (void __iomem *)PCI_IOMAP(port);
147
148 return (void __iomem *)port2adr(port);
149}