pci: Support PCI Express Configuration Space memory-mapped access mechanism
[dragonfly.git] / sys / bus / pci / x86_64 / pci_cfgreg.c
... / ...
CommitLineData
1/*-
2 * Copyright (c) 1997, Stefan Esser <se@kfreebsd.org>
3 * Copyright (c) 2000, Michael Smith <msmith@kfreebsd.org>
4 * Copyright (c) 2000, BSDi
5 * Copyright (c) 2004, Scott Long <scottl@kfreebsd.org>
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
11 * 1. Redistributions of source code must retain the above copyright
12 * notice unmodified, this list of conditions, and the following
13 * disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
16 * documentation and/or other materials provided with the distribution.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 *
29 * $FreeBSD: src/sys/i386/pci/pci_cfgreg.c,v 1.124.2.3 2009/05/04 21:04:29 jhb
30 */
31
32#include <sys/param.h>
33#include <sys/systm.h>
34#include <sys/bus.h>
35#include <sys/kernel.h>
36#include <sys/lock.h>
37#include <sys/malloc.h>
38#include <sys/thread2.h>
39#include <sys/spinlock.h>
40#include <sys/spinlock2.h>
41#include <sys/queue.h>
42#include <bus/pci/pcivar.h>
43#include <bus/pci/pcireg.h>
44#include "pci_cfgreg.h"
45#include <machine/pc/bios.h>
46
47#include <vm/vm.h>
48#include <vm/vm_param.h>
49#include <vm/vm_kern.h>
50#include <vm/vm_extern.h>
51#include <vm/pmap.h>
52#include <machine/pmap.h>
53
54enum {
55 CFGMECH_NONE = 0,
56 CFGMECH_1,
57 CFGMECH_PCIE,
58};
59
60static vm_offset_t pcie_base;
61static int pcie_minbus, pcie_maxbus;
62static uint32_t pcie_badslots;
63static int cfgmech;
64static struct spinlock pcicfg_spin;
65
66static int mcfg_enable = 1;
67TUNABLE_INT("hw.pci.mcfg", &mcfg_enable);
68
69static uint32_t pci_docfgregread(int bus, int slot, int func, int reg, int bytes);
70
71static int pcireg_cfgread(int bus, int slot, int func, int reg, int bytes);
72static void pcireg_cfgwrite(int bus, int slot, int func, int reg, int data,
73 int bytes);
74
75static int pciereg_cfgread(int bus, unsigned slot, unsigned func,
76 unsigned reg, unsigned bytes);
77static void pciereg_cfgwrite(int bus, unsigned slot, unsigned func,
78 unsigned reg, int data, unsigned bytes);
79
80/*
81 * Initialise access to PCI configuration space
82 */
83int
84pci_cfgregopen(void)
85{
86 static int inited = 0;
87 uint64_t pciebar;
88 uint16_t vid, did;
89
90 if (!inited) {
91 inited = 1;
92 spin_init(&pcicfg_spin);
93 }
94
95 if (cfgmech != CFGMECH_NONE)
96 return 1;
97 cfgmech = CFGMECH_1;
98
99 /*
100 * Grope around in the PCI config space to see if this is a
101 * chipset that is capable of doing memory-mapped config cycles.
102 * This also implies that it can do PCIe extended config cycles.
103 */
104
105 /* Check for supported chipsets */
106 vid = pci_cfgregread(0, 0, 0, PCIR_VENDOR, 2);
107 did = pci_cfgregread(0, 0, 0, PCIR_DEVICE, 2);
108 switch (vid) {
109 case 0x8086:
110 switch (did) {
111 case 0x3590:
112 case 0x3592:
113 /* Intel 7520 or 7320 */
114 pciebar = pci_cfgregread(0, 0, 0, 0xce, 2) << 16;
115 pcie_cfgregopen(pciebar, 0, 255);
116 break;
117 case 0x2580:
118 case 0x2584:
119 case 0x2590:
120 /* Intel 915, 925, or 915GM */
121 pciebar = pci_cfgregread(0, 0, 0, 0x48, 4);
122 pcie_cfgregopen(pciebar, 0, 255);
123 break;
124 }
125 }
126 return 1;
127}
128
129static uint32_t
130pci_docfgregread(int bus, int slot, int func, int reg, int bytes)
131{
132 if (cfgmech == CFGMECH_PCIE &&
133 (bus >= pcie_minbus && bus <= pcie_maxbus) &&
134 (bus != 0 || !(1 << slot & pcie_badslots)))
135 return pciereg_cfgread(bus, slot, func, reg, bytes);
136 else
137 return pcireg_cfgread(bus, slot, func, reg, bytes);
138}
139
140/*
141 * Read configuration space register
142 */
143uint32_t
144pci_cfgregread(int bus, int slot, int func, int reg, int bytes)
145{
146 /*
147 * Some BIOS writers seem to want to ignore the spec and put
148 * 0 in the intline rather than 255 to indicate none. Some use
149 * numbers in the range 128-254 to indicate something strange and
150 * apparently undocumented anywhere. Assume these are completely
151 * bogus and map them to 255, which means "none".
152 */
153 if (reg == PCIR_INTLINE && bytes == 1) {
154 uint32_t line;
155
156 line = pci_docfgregread(bus, slot, func, PCIR_INTLINE, 1);
157 if (line == 0 || line >= 128)
158 return (PCI_INVALID_IRQ);
159 return line;
160 }
161 return pci_docfgregread(bus, slot, func, reg, bytes);
162}
163
164/*
165 * Write configuration space register
166 */
167void
168pci_cfgregwrite(int bus, int slot, int func, int reg, u_int32_t data, int bytes)
169{
170 if (cfgmech == CFGMECH_PCIE &&
171 (bus >= pcie_minbus && bus <= pcie_maxbus) &&
172 (bus != 0 || !(1 << slot & pcie_badslots)))
173 pciereg_cfgwrite(bus, slot, func, reg, data, bytes);
174 else
175 pcireg_cfgwrite(bus, slot, func, reg, data, bytes);
176}
177
178/*
179 * Configuration space access using direct register operations
180 */
181
182/* enable configuration space accesses and return data port address */
183static int
184pci_cfgenable(unsigned bus, unsigned slot, unsigned func, int reg, int bytes)
185{
186 int dataport = 0;
187
188 if (bus <= PCI_BUSMAX &&
189 slot <= PCI_SLOTMAX &&
190 func <= PCI_FUNCMAX &&
191 (unsigned)reg <= PCI_REGMAX &&
192 bytes != 3 &&
193 (unsigned)bytes <= 4 &&
194 (reg & (bytes - 1)) == 0) {
195 outl(CONF1_ADDR_PORT, (1 << 31) | (bus << 16) | (slot << 11) |
196 (func << 8) | (reg & ~0x03));
197 dataport = CONF1_DATA_PORT + (reg & 0x03);
198 }
199 return dataport;
200}
201
202/* disable configuration space accesses */
203static void
204pci_cfgdisable(void)
205{
206 /*
207 * Do nothing. Writing a 0 to the address port can apparently
208 * confuse some bridges and cause spurious access failures.
209 */
210}
211
212static int
213pcireg_cfgread(int bus, int slot, int func, int reg, int bytes)
214{
215 int data = -1;
216 int port;
217
218 spin_lock(&pcicfg_spin);
219 port = pci_cfgenable(bus, slot, func, reg, bytes);
220 if (port != 0) {
221 switch (bytes) {
222 case 1:
223 data = inb(port);
224 break;
225 case 2:
226 data = inw(port);
227 break;
228 case 4:
229 data = inl(port);
230 break;
231 }
232 pci_cfgdisable();
233 }
234 spin_unlock(&pcicfg_spin);
235 return data;
236}
237
238static void
239pcireg_cfgwrite(int bus, int slot, int func, int reg, int data, int bytes)
240{
241 int port;
242
243 spin_lock(&pcicfg_spin);
244 port = pci_cfgenable(bus, slot, func, reg, bytes);
245 if (port != 0) {
246 switch (bytes) {
247 case 1:
248 outb(port, data);
249 break;
250 case 2:
251 outw(port, data);
252 break;
253 case 4:
254 outl(port, data);
255 break;
256 }
257 pci_cfgdisable();
258 }
259 spin_unlock(&pcicfg_spin);
260}
261
262int
263pcie_cfgregopen(uint64_t base, uint8_t minbus, uint8_t maxbus)
264{
265 if (!mcfg_enable)
266 return 0;
267
268 if (minbus != 0)
269 return 0;
270
271 if (bootverbose) {
272 kprintf("PCIe: Memory Mapped configuration base @ 0x%jx, "
273 "bus [%d, %d]\n", (uintmax_t)base, minbus, maxbus);
274 }
275
276 pcie_base = (vm_offset_t)pmap_mapdev_uncacheable(base,
277 ((unsigned)maxbus + 1) << 20);
278 pcie_minbus = minbus;
279 pcie_maxbus = maxbus;
280 cfgmech = CFGMECH_PCIE;
281
282 /*
283 * On some AMD systems, some of the devices on bus 0 are
284 * inaccessible using memory-mapped PCI config access. Walk
285 * bus 0 looking for such devices. For these devices, we will
286 * fall back to using type 1 config access instead.
287 */
288 if (pci_cfgregopen() != 0) {
289 int slot;
290
291 for (slot = 0; slot <= PCI_SLOTMAX; slot++) {
292 uint32_t val1, val2;
293
294 val1 = pcireg_cfgread(0, slot, 0, 0, 4);
295 if (val1 == 0xffffffff)
296 continue;
297
298 val2 = pciereg_cfgread(0, slot, 0, 0, 4);
299 if (val2 != val1)
300 pcie_badslots |= (1 << slot);
301 }
302 }
303 return 1;
304}
305
306#define PCIE_VADDR(base, reg, bus, slot, func) \
307 ((base) + \
308 ((((bus) & 0xff) << 20) | \
309 (((slot) & 0x1f) << 15) | \
310 (((func) & 0x7) << 12) | \
311 ((reg) & 0xfff)))
312
313static int
314pciereg_cfgread(int bus, unsigned slot, unsigned func, unsigned reg,
315 unsigned bytes)
316{
317 volatile vm_offset_t va;
318 int data = -1;
319
320 if (bus < pcie_minbus || bus > pcie_maxbus || slot > PCI_SLOTMAX ||
321 func > PCI_FUNCMAX || reg > PCIE_REGMAX)
322 return -1;
323
324 va = PCIE_VADDR(pcie_base, reg, bus, slot, func);
325
326 switch (bytes) {
327 case 4:
328 data = *(volatile uint32_t *)(va);
329 break;
330 case 2:
331 data = *(volatile uint16_t *)(va);
332 break;
333 case 1:
334 data = *(volatile uint8_t *)(va);
335 break;
336 }
337 return data;
338}
339
340static void
341pciereg_cfgwrite(int bus, unsigned slot, unsigned func, unsigned reg, int data,
342 unsigned bytes)
343{
344 volatile vm_offset_t va;
345
346 if (bus < pcie_minbus || bus > pcie_maxbus || slot > PCI_SLOTMAX ||
347 func > PCI_FUNCMAX || reg > PCIE_REGMAX)
348 return;
349
350 va = PCIE_VADDR(pcie_base, reg, bus, slot, func);
351
352 switch (bytes) {
353 case 4:
354 *(volatile uint32_t *)(va) = data;
355 break;
356 case 2:
357 *(volatile uint16_t *)(va) = data;
358 break;
359 case 1:
360 *(volatile uint8_t *)(va) = data;
361 break;
362 }
363}