This source file includes following definitions.
- config_access
- read_config_byte
- read_config_word
- read_config_dword
- write_config_byte
- write_config_word
- write_config_dword
- pci_config_read
- pci_config_write
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28 #include <linux/delay.h>
29 #include <linux/io.h>
30 #include <linux/pci.h>
31 #include <linux/types.h>
32
33 #include <asm/cpu.h>
34 #include <asm/mach-rc32434/rc32434.h>
35 #include <asm/mach-rc32434/pci.h>
36
37 #define PCI_ACCESS_READ 0
38 #define PCI_ACCESS_WRITE 1
39
40
41 #define PCI_CFG_SET(bus, slot, func, off) \
42 (rc32434_pci->pcicfga = (0x80000000 | \
43 ((bus) << 16) | ((slot)<<11) | \
44 ((func)<<8) | (off)))
45
46 static inline int config_access(unsigned char access_type,
47 struct pci_bus *bus, unsigned int devfn,
48 unsigned char where, u32 *data)
49 {
50 unsigned int slot = PCI_SLOT(devfn);
51 u8 func = PCI_FUNC(devfn);
52
53
54 PCI_CFG_SET(bus->number, slot, func, where);
55 rc32434_sync();
56
57 if (access_type == PCI_ACCESS_WRITE)
58 rc32434_pci->pcicfgd = *data;
59 else
60 *data = rc32434_pci->pcicfgd;
61
62 rc32434_sync();
63
64 return 0;
65 }
66
67
68
69
70
71
72 static int read_config_byte(struct pci_bus *bus, unsigned int devfn,
73 int where, u8 *val)
74 {
75 u32 data;
76 int ret;
77
78 ret = config_access(PCI_ACCESS_READ, bus, devfn, where, &data);
79 *val = (data >> ((where & 3) << 3)) & 0xff;
80 return ret;
81 }
82
83 static int read_config_word(struct pci_bus *bus, unsigned int devfn,
84 int where, u16 *val)
85 {
86 u32 data;
87 int ret;
88
89 ret = config_access(PCI_ACCESS_READ, bus, devfn, where, &data);
90 *val = (data >> ((where & 3) << 3)) & 0xffff;
91 return ret;
92 }
93
94 static int read_config_dword(struct pci_bus *bus, unsigned int devfn,
95 int where, u32 *val)
96 {
97 int ret;
98 int delay = 1;
99
100
101
102
103
104 if (bus->number == 0 && PCI_SLOT(devfn) > 21)
105 return 0;
106
107 retry:
108 ret = config_access(PCI_ACCESS_READ, bus, devfn, where, val);
109
110
111
112
113
114 if (where == PCI_VENDOR_ID) {
115 if (ret == 0xffffffff || ret == 0x00000000 ||
116 ret == 0x0000ffff || ret == 0xffff0000) {
117 if (delay > 4)
118 return 0;
119 delay *= 2;
120 msleep(delay);
121 goto retry;
122 }
123 }
124
125 return ret;
126 }
127
128 static int
129 write_config_byte(struct pci_bus *bus, unsigned int devfn, int where,
130 u8 val)
131 {
132 u32 data = 0;
133
134 if (config_access(PCI_ACCESS_READ, bus, devfn, where, &data))
135 return -1;
136
137 data = (data & ~(0xff << ((where & 3) << 3))) |
138 (val << ((where & 3) << 3));
139
140 if (config_access(PCI_ACCESS_WRITE, bus, devfn, where, &data))
141 return -1;
142
143 return PCIBIOS_SUCCESSFUL;
144 }
145
146
147 static int
148 write_config_word(struct pci_bus *bus, unsigned int devfn, int where,
149 u16 val)
150 {
151 u32 data = 0;
152
153 if (config_access(PCI_ACCESS_READ, bus, devfn, where, &data))
154 return -1;
155
156 data = (data & ~(0xffff << ((where & 3) << 3))) |
157 (val << ((where & 3) << 3));
158
159 if (config_access(PCI_ACCESS_WRITE, bus, devfn, where, &data))
160 return -1;
161
162
163 return PCIBIOS_SUCCESSFUL;
164 }
165
166
167 static int
168 write_config_dword(struct pci_bus *bus, unsigned int devfn, int where,
169 u32 val)
170 {
171 if (config_access(PCI_ACCESS_WRITE, bus, devfn, where, &val))
172 return -1;
173
174 return PCIBIOS_SUCCESSFUL;
175 }
176
177 static int pci_config_read(struct pci_bus *bus, unsigned int devfn,
178 int where, int size, u32 *val)
179 {
180 switch (size) {
181 case 1:
182 return read_config_byte(bus, devfn, where, (u8 *) val);
183 case 2:
184 return read_config_word(bus, devfn, where, (u16 *) val);
185 default:
186 return read_config_dword(bus, devfn, where, val);
187 }
188 }
189
190 static int pci_config_write(struct pci_bus *bus, unsigned int devfn,
191 int where, int size, u32 val)
192 {
193 switch (size) {
194 case 1:
195 return write_config_byte(bus, devfn, where, (u8) val);
196 case 2:
197 return write_config_word(bus, devfn, where, (u16) val);
198 default:
199 return write_config_dword(bus, devfn, where, val);
200 }
201 }
202
203 struct pci_ops rc32434_pci_ops = {
204 .read = pci_config_read,
205 .write = pci_config_write,
206 };