blob: a51074c559824320fffbfefa07c82f55dbc178c6 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * direct.c - Low-level direct PCI config space access
4 */
5
6#include <linux/pci.h>
7#include <linux/init.h>
Andi Kleenec0f08e2006-04-07 19:49:36 +02008#include <linux/dmi.h>
Jaswinder Singh Rajput82487712008-12-27 18:32:28 +05309#include <asm/pci_x86.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010
11/*
Robert Richter831d9912007-09-03 10:17:39 +020012 * Functions for accessing PCI base (first 256 bytes) and extended
13 * (4096 bytes per PCI function) configuration space with type 1
14 * accesses.
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 */
16
17#define PCI_CONF1_ADDRESS(bus, devfn, reg) \
Robert Richter831d9912007-09-03 10:17:39 +020018 (0x80000000 | ((reg & 0xF00) << 16) | (bus << 16) \
19 | (devfn << 8) | (reg & 0xFC))
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
Matthew Wilcoxb6ce0682008-02-10 09:45:28 -050021static int pci_conf1_read(unsigned int seg, unsigned int bus,
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 unsigned int devfn, int reg, int len, u32 *value)
23{
24 unsigned long flags;
25
Jan Beulichdb34a362011-07-22 08:13:05 +010026 if (seg || (bus > 255) || (devfn > 255) || (reg > 4095)) {
Andi Kleen49c93e82006-04-07 19:50:15 +020027 *value = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 return -EINVAL;
Andi Kleen49c93e82006-04-07 19:50:15 +020029 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
Thomas Gleixnerd19f61f2010-02-17 14:35:25 +000031 raw_spin_lock_irqsave(&pci_config_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
33 outl(PCI_CONF1_ADDRESS(bus, devfn, reg), 0xCF8);
34
35 switch (len) {
36 case 1:
37 *value = inb(0xCFC + (reg & 3));
38 break;
39 case 2:
40 *value = inw(0xCFC + (reg & 2));
41 break;
42 case 4:
43 *value = inl(0xCFC);
44 break;
45 }
46
Thomas Gleixnerd19f61f2010-02-17 14:35:25 +000047 raw_spin_unlock_irqrestore(&pci_config_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49 return 0;
50}
51
Matthew Wilcoxb6ce0682008-02-10 09:45:28 -050052static int pci_conf1_write(unsigned int seg, unsigned int bus,
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 unsigned int devfn, int reg, int len, u32 value)
54{
55 unsigned long flags;
56
Jan Beulichdb34a362011-07-22 08:13:05 +010057 if (seg || (bus > 255) || (devfn > 255) || (reg > 4095))
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 return -EINVAL;
59
Thomas Gleixnerd19f61f2010-02-17 14:35:25 +000060 raw_spin_lock_irqsave(&pci_config_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62 outl(PCI_CONF1_ADDRESS(bus, devfn, reg), 0xCF8);
63
64 switch (len) {
65 case 1:
66 outb((u8)value, 0xCFC + (reg & 3));
67 break;
68 case 2:
69 outw((u16)value, 0xCFC + (reg & 2));
70 break;
71 case 4:
72 outl((u32)value, 0xCFC);
73 break;
74 }
75
Thomas Gleixnerd19f61f2010-02-17 14:35:25 +000076 raw_spin_unlock_irqrestore(&pci_config_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
78 return 0;
79}
80
81#undef PCI_CONF1_ADDRESS
82
Jan Beulich72da0b02011-09-15 08:58:51 +010083const struct pci_raw_ops pci_direct_conf1 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 .read = pci_conf1_read,
85 .write = pci_conf1_write,
86};
87
88
89/*
90 * Functions for accessing PCI configuration space with type 2 accesses
91 */
92
93#define PCI_CONF2_ADDRESS(dev, reg) (u16)(0xC000 | (dev << 8) | reg)
94
95static int pci_conf2_read(unsigned int seg, unsigned int bus,
96 unsigned int devfn, int reg, int len, u32 *value)
97{
98 unsigned long flags;
99 int dev, fn;
100
Jan Beulichdb34a362011-07-22 08:13:05 +0100101 WARN_ON(seg);
Andi Kleenecc16ba2006-04-11 12:54:48 +0200102 if ((bus > 255) || (devfn > 255) || (reg > 255)) {
103 *value = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 return -EINVAL;
Andi Kleenecc16ba2006-04-11 12:54:48 +0200105 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
107 dev = PCI_SLOT(devfn);
108 fn = PCI_FUNC(devfn);
109
110 if (dev & 0x10)
111 return PCIBIOS_DEVICE_NOT_FOUND;
112
Thomas Gleixnerd19f61f2010-02-17 14:35:25 +0000113 raw_spin_lock_irqsave(&pci_config_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
115 outb((u8)(0xF0 | (fn << 1)), 0xCF8);
116 outb((u8)bus, 0xCFA);
117
118 switch (len) {
119 case 1:
120 *value = inb(PCI_CONF2_ADDRESS(dev, reg));
121 break;
122 case 2:
123 *value = inw(PCI_CONF2_ADDRESS(dev, reg));
124 break;
125 case 4:
126 *value = inl(PCI_CONF2_ADDRESS(dev, reg));
127 break;
128 }
129
130 outb(0, 0xCF8);
131
Thomas Gleixnerd19f61f2010-02-17 14:35:25 +0000132 raw_spin_unlock_irqrestore(&pci_config_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
134 return 0;
135}
136
137static int pci_conf2_write(unsigned int seg, unsigned int bus,
138 unsigned int devfn, int reg, int len, u32 value)
139{
140 unsigned long flags;
141 int dev, fn;
142
Jan Beulichdb34a362011-07-22 08:13:05 +0100143 WARN_ON(seg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 if ((bus > 255) || (devfn > 255) || (reg > 255))
145 return -EINVAL;
146
147 dev = PCI_SLOT(devfn);
148 fn = PCI_FUNC(devfn);
149
150 if (dev & 0x10)
151 return PCIBIOS_DEVICE_NOT_FOUND;
152
Thomas Gleixnerd19f61f2010-02-17 14:35:25 +0000153 raw_spin_lock_irqsave(&pci_config_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
155 outb((u8)(0xF0 | (fn << 1)), 0xCF8);
156 outb((u8)bus, 0xCFA);
157
158 switch (len) {
159 case 1:
160 outb((u8)value, PCI_CONF2_ADDRESS(dev, reg));
161 break;
162 case 2:
163 outw((u16)value, PCI_CONF2_ADDRESS(dev, reg));
164 break;
165 case 4:
166 outl((u32)value, PCI_CONF2_ADDRESS(dev, reg));
167 break;
168 }
169
170 outb(0, 0xCF8);
171
Thomas Gleixnerd19f61f2010-02-17 14:35:25 +0000172 raw_spin_unlock_irqrestore(&pci_config_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
174 return 0;
175}
176
177#undef PCI_CONF2_ADDRESS
178
Jan Beulich72da0b02011-09-15 08:58:51 +0100179static const struct pci_raw_ops pci_direct_conf2 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 .read = pci_conf2_read,
181 .write = pci_conf2_write,
182};
183
184
185/*
186 * Before we decide to use direct hardware access mechanisms, we try to do some
187 * trivial checks to ensure it at least _seems_ to be working -- we just test
188 * whether bus 00 contains a host bridge (this is similar to checking
189 * techniques used in XFree86, but ours should be more reliable since we
190 * attempt to make use of direct access hints provided by the PCI BIOS).
191 *
192 * This should be close to trivial, but it isn't, because there are buggy
193 * chipsets (yes, you guessed it, by Intel and Compaq) that have no class ID.
194 */
Jan Beulich72da0b02011-09-15 08:58:51 +0100195static int __init pci_sanity_check(const struct pci_raw_ops *o)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196{
197 u32 x = 0;
Andy Shevchenko69c42d42018-02-22 14:59:21 +0200198 int devfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
200 if (pci_probe & PCI_NO_CHECKS)
201 return 1;
Andi Kleenec0f08e2006-04-07 19:49:36 +0200202 /* Assume Type 1 works for newer systems.
203 This handles machines that don't have anything on PCI Bus 0. */
Andy Shevchenko69c42d42018-02-22 14:59:21 +0200204 if (dmi_get_bios_year() >= 2001)
Andi Kleenec0f08e2006-04-07 19:49:36 +0200205 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
207 for (devfn = 0; devfn < 0x100; devfn++) {
208 if (o->read(0, 0, devfn, PCI_CLASS_DEVICE, 2, &x))
209 continue;
210 if (x == PCI_CLASS_BRIDGE_HOST || x == PCI_CLASS_DISPLAY_VGA)
211 return 1;
212
213 if (o->read(0, 0, devfn, PCI_VENDOR_ID, 2, &x))
214 continue;
215 if (x == PCI_VENDOR_ID_INTEL || x == PCI_VENDOR_ID_COMPAQ)
216 return 1;
217 }
218
Daniel Marjamäkicac1a292005-11-23 15:45:09 -0800219 DBG(KERN_WARNING "PCI: Sanity check failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 return 0;
221}
222
223static int __init pci_check_type1(void)
224{
225 unsigned long flags;
226 unsigned int tmp;
227 int works = 0;
228
229 local_irq_save(flags);
230
231 outb(0x01, 0xCFB);
232 tmp = inl(0xCF8);
233 outl(0x80000000, 0xCF8);
234 if (inl(0xCF8) == 0x80000000 && pci_sanity_check(&pci_direct_conf1)) {
235 works = 1;
236 }
237 outl(tmp, 0xCF8);
238 local_irq_restore(flags);
239
240 return works;
241}
242
243static int __init pci_check_type2(void)
244{
245 unsigned long flags;
246 int works = 0;
247
248 local_irq_save(flags);
249
250 outb(0x00, 0xCFB);
251 outb(0x00, 0xCF8);
252 outb(0x00, 0xCFA);
253 if (inb(0xCF8) == 0x00 && inb(0xCFA) == 0x00 &&
254 pci_sanity_check(&pci_direct_conf2)) {
255 works = 1;
256 }
257
258 local_irq_restore(flags);
259
260 return works;
261}
262
Andi Kleen5e544d62006-09-26 10:52:40 +0200263void __init pci_direct_init(int type)
264{
Andi Kleenf015c6c2006-10-05 18:47:22 +0200265 if (type == 0)
266 return;
Yinghai Lubb63b422008-02-28 23:56:50 -0800267 printk(KERN_INFO "PCI: Using configuration type %d for base access\n",
268 type);
Robert Richter831d9912007-09-03 10:17:39 +0200269 if (type == 1) {
Andi Kleen5e544d62006-09-26 10:52:40 +0200270 raw_pci_ops = &pci_direct_conf1;
Robert Richter3a27dd12008-06-12 20:19:23 +0200271 if (raw_pci_ext_ops)
272 return;
273 if (!(pci_probe & PCI_HAS_IO_ECS))
274 return;
275 printk(KERN_INFO "PCI: Using configuration type 1 "
276 "for extended access\n");
277 raw_pci_ext_ops = &pci_direct_conf1;
278 return;
Robert Richter831d9912007-09-03 10:17:39 +0200279 }
Robert Richter3a27dd12008-06-12 20:19:23 +0200280 raw_pci_ops = &pci_direct_conf2;
Andi Kleen5e544d62006-09-26 10:52:40 +0200281}
282
283int __init pci_direct_probe(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 if ((pci_probe & PCI_PROBE_CONF1) == 0)
286 goto type2;
Julia Lawall0e8ede52011-02-13 13:12:11 +0100287 if (!request_region(0xCF8, 8, "PCI conf1"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 goto type2;
289
Yinghai Lubb63b422008-02-28 23:56:50 -0800290 if (pci_check_type1()) {
291 raw_pci_ops = &pci_direct_conf1;
H. Peter Anvin14d7ca52008-11-11 16:19:48 -0800292 port_cf9_safe = true;
Andi Kleen5e544d62006-09-26 10:52:40 +0200293 return 1;
Yinghai Lubb63b422008-02-28 23:56:50 -0800294 }
Julia Lawall0e8ede52011-02-13 13:12:11 +0100295 release_region(0xCF8, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
297 type2:
298 if ((pci_probe & PCI_PROBE_CONF2) == 0)
Andi Kleen5e544d62006-09-26 10:52:40 +0200299 return 0;
Julia Lawall0e8ede52011-02-13 13:12:11 +0100300 if (!request_region(0xCF8, 4, "PCI conf2"))
Andi Kleen5e544d62006-09-26 10:52:40 +0200301 return 0;
Julia Lawall0e8ede52011-02-13 13:12:11 +0100302 if (!request_region(0xC000, 0x1000, "PCI conf2"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 goto fail2;
304
305 if (pci_check_type2()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 raw_pci_ops = &pci_direct_conf2;
H. Peter Anvin14d7ca52008-11-11 16:19:48 -0800307 port_cf9_safe = true;
Andi Kleen5e544d62006-09-26 10:52:40 +0200308 return 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 }
310
Julia Lawall0e8ede52011-02-13 13:12:11 +0100311 release_region(0xC000, 0x1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 fail2:
Julia Lawall0e8ede52011-02-13 13:12:11 +0100313 release_region(0xCF8, 4);
Andi Kleen5e544d62006-09-26 10:52:40 +0200314 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315}