2002-08-26 18:30:27 +00:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 2000 Michael Smith
|
|
|
|
* Copyright (c) 2000 BSDi
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
2003-08-24 17:55:58 +00:00
|
|
|
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
2002-08-26 18:30:27 +00:00
|
|
|
#include "opt_acpi.h"
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/bus.h>
|
|
|
|
#include <sys/kernel.h>
|
2004-05-29 04:32:50 +00:00
|
|
|
#include <sys/malloc.h>
|
2004-05-30 20:08:47 +00:00
|
|
|
#include <sys/module.h>
|
2011-05-03 17:37:24 +00:00
|
|
|
#include <sys/rman.h>
|
2002-08-26 18:30:27 +00:00
|
|
|
|
2009-06-05 18:44:36 +00:00
|
|
|
#include <contrib/dev/acpica/include/acpi.h>
|
|
|
|
#include <contrib/dev/acpica/include/accommon.h>
|
|
|
|
|
2002-08-26 18:30:27 +00:00
|
|
|
#include <dev/acpica/acpivar.h>
|
|
|
|
#include <dev/acpica/acpi_pcibvar.h>
|
|
|
|
|
|
|
|
#include <machine/pci_cfgreg.h>
|
2003-08-22 06:06:16 +00:00
|
|
|
#include <dev/pci/pcivar.h>
|
|
|
|
#include <dev/pci/pcireg.h>
|
|
|
|
#include <dev/pci/pcib_private.h>
|
2002-08-26 18:30:27 +00:00
|
|
|
#include "pcib_if.h"
|
|
|
|
|
2004-05-29 04:32:50 +00:00
|
|
|
/* Hooks for the ACPI CA debugging infrastructure. */
|
2002-08-26 18:30:27 +00:00
|
|
|
#define _COMPONENT ACPI_BUS
|
|
|
|
ACPI_MODULE_NAME("PCI_PCI")
|
|
|
|
|
|
|
|
struct acpi_pcib_softc {
|
|
|
|
struct pcib_softc ap_pcibsc;
|
|
|
|
ACPI_HANDLE ap_handle;
|
|
|
|
ACPI_BUFFER ap_prt; /* interrupt routing table */
|
|
|
|
};
|
2004-12-27 05:36:47 +00:00
|
|
|
|
2002-08-26 18:30:27 +00:00
|
|
|
struct acpi_pcib_lookup_info {
|
2004-05-29 04:32:50 +00:00
|
|
|
UINT32 address;
|
|
|
|
ACPI_HANDLE handle;
|
2002-08-26 18:30:27 +00:00
|
|
|
};
|
2004-12-27 05:36:47 +00:00
|
|
|
|
2002-08-26 18:30:27 +00:00
|
|
|
static int acpi_pcib_pci_probe(device_t bus);
|
|
|
|
static int acpi_pcib_pci_attach(device_t bus);
|
2016-05-20 00:03:22 +00:00
|
|
|
static int acpi_pcib_pci_detach(device_t bus);
|
2004-05-29 04:32:50 +00:00
|
|
|
static int acpi_pcib_read_ivar(device_t dev, device_t child,
|
|
|
|
int which, uintptr_t *result);
|
2002-08-26 18:30:27 +00:00
|
|
|
static int acpi_pcib_pci_route_interrupt(device_t pcib,
|
2004-05-29 04:32:50 +00:00
|
|
|
device_t dev, int pin);
|
2002-08-26 18:30:27 +00:00
|
|
|
|
|
|
|
static device_method_t acpi_pcib_pci_methods[] = {
|
|
|
|
/* Device interface */
|
|
|
|
DEVMETHOD(device_probe, acpi_pcib_pci_probe),
|
|
|
|
DEVMETHOD(device_attach, acpi_pcib_pci_attach),
|
2016-05-20 00:03:22 +00:00
|
|
|
DEVMETHOD(device_detach, acpi_pcib_pci_detach),
|
2002-08-26 18:30:27 +00:00
|
|
|
|
|
|
|
/* Bus interface */
|
|
|
|
DEVMETHOD(bus_read_ivar, acpi_pcib_read_ivar),
|
2016-05-09 20:50:21 +00:00
|
|
|
DEVMETHOD(bus_get_cpus, acpi_pcib_get_cpus),
|
2002-08-26 18:30:27 +00:00
|
|
|
|
|
|
|
/* pcib interface */
|
|
|
|
DEVMETHOD(pcib_route_interrupt, acpi_pcib_pci_route_interrupt),
|
2010-08-17 15:44:52 +00:00
|
|
|
DEVMETHOD(pcib_power_for_sleep, acpi_pcib_power_for_sleep),
|
2002-08-26 18:30:27 +00:00
|
|
|
|
2013-01-30 18:01:20 +00:00
|
|
|
DEVMETHOD_END
|
2002-08-26 18:30:27 +00:00
|
|
|
};
|
|
|
|
|
2006-01-06 19:22:19 +00:00
|
|
|
static devclass_t pcib_devclass;
|
2002-08-26 18:30:27 +00:00
|
|
|
|
2010-08-05 16:10:12 +00:00
|
|
|
DEFINE_CLASS_1(pcib, acpi_pcib_pci_driver, acpi_pcib_pci_methods,
|
|
|
|
sizeof(struct acpi_pcib_softc), pcib_driver);
|
2002-08-26 18:30:27 +00:00
|
|
|
DRIVER_MODULE(acpi_pcib, pci, acpi_pcib_pci_driver, pcib_devclass, 0, 0);
|
2004-04-09 18:14:32 +00:00
|
|
|
MODULE_DEPEND(acpi_pcib, acpi, 1, 1, 1);
|
2002-08-26 18:30:27 +00:00
|
|
|
|
|
|
|
static int
|
|
|
|
acpi_pcib_pci_probe(device_t dev)
|
|
|
|
{
|
|
|
|
|
2004-05-29 04:32:50 +00:00
|
|
|
if (pci_get_class(dev) != PCIC_BRIDGE ||
|
|
|
|
pci_get_subclass(dev) != PCIS_BRIDGE_PCI ||
|
2002-08-26 18:30:27 +00:00
|
|
|
acpi_disabled("pci"))
|
|
|
|
return (ENXIO);
|
|
|
|
if (acpi_get_handle(dev) == NULL)
|
|
|
|
return (ENXIO);
|
2004-05-29 04:32:50 +00:00
|
|
|
if (pci_cfgregopen() == 0)
|
2002-10-05 02:16:49 +00:00
|
|
|
return (ENXIO);
|
|
|
|
|
2002-08-26 18:30:27 +00:00
|
|
|
device_set_desc(dev, "ACPI PCI-PCI bridge");
|
|
|
|
return (-1000);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
acpi_pcib_pci_attach(device_t dev)
|
|
|
|
{
|
|
|
|
struct acpi_pcib_softc *sc;
|
|
|
|
|
|
|
|
ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__);
|
|
|
|
|
|
|
|
pcib_attach_common(dev);
|
|
|
|
sc = device_get_softc(dev);
|
|
|
|
sc->ap_handle = acpi_get_handle(dev);
|
2016-04-27 16:39:05 +00:00
|
|
|
acpi_pcib_fetch_prt(dev, &sc->ap_prt);
|
|
|
|
|
|
|
|
return (pcib_attach_child(dev));
|
2002-08-26 18:30:27 +00:00
|
|
|
}
|
|
|
|
|
2016-05-20 00:03:22 +00:00
|
|
|
static int
|
|
|
|
acpi_pcib_pci_detach(device_t dev)
|
|
|
|
{
|
|
|
|
struct acpi_pcib_softc *sc;
|
|
|
|
int error;
|
|
|
|
|
|
|
|
ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__);
|
|
|
|
|
|
|
|
sc = device_get_softc(dev);
|
|
|
|
error = pcib_detach(dev);
|
|
|
|
if (error == 0)
|
|
|
|
AcpiOsFree(sc->ap_prt.Pointer);
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
2002-08-26 18:30:27 +00:00
|
|
|
static int
|
|
|
|
acpi_pcib_read_ivar(device_t dev, device_t child, int which, uintptr_t *result)
|
|
|
|
{
|
2004-05-29 04:32:50 +00:00
|
|
|
struct acpi_pcib_softc *sc = device_get_softc(dev);
|
2002-08-26 18:30:27 +00:00
|
|
|
|
|
|
|
switch (which) {
|
2004-05-29 04:32:50 +00:00
|
|
|
case ACPI_IVAR_HANDLE:
|
2002-08-26 18:30:27 +00:00
|
|
|
*result = (uintptr_t)sc->ap_handle;
|
2004-05-29 04:32:50 +00:00
|
|
|
return (0);
|
2002-08-26 18:30:27 +00:00
|
|
|
}
|
2004-05-29 04:32:50 +00:00
|
|
|
return (pcib_read_ivar(dev, child, which, result));
|
2002-08-26 18:30:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
acpi_pcib_pci_route_interrupt(device_t pcib, device_t dev, int pin)
|
|
|
|
{
|
|
|
|
struct acpi_pcib_softc *sc;
|
|
|
|
|
|
|
|
sc = device_get_softc(pcib);
|
2004-05-10 18:26:22 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* If we don't have a _PRT, fall back to the swizzle method
|
|
|
|
* for routing interrupts.
|
|
|
|
*/
|
|
|
|
if (sc->ap_prt.Pointer == NULL)
|
2004-05-29 04:32:50 +00:00
|
|
|
return (pcib_route_interrupt(pcib, dev, pin));
|
2004-05-10 18:26:22 +00:00
|
|
|
else
|
Rework the ACPI PCI link code.
- Use a new-bus device driver for the ACPI PCI link devices. The devices
are called pci_linkX. The driver includes suspend/resume support so that
the ACPI bridge drivers no longer have to poke the links to get them
to handle suspend/resume. Also, the code to handle which IRQs a link is
routed to and choosing an IRQ when a link is not already routed is all
contained in the link driver. The PCI bridge drivers now ask the link
driver which IRQ to use once they determine that a _PRT entry does not
use a hardwired interrupt number.
- The new link driver includes support for multiple IRQ resources per
link device as well as preserving any non-IRQ resources when adjusting
the IRQ that a link is routed to.
- The entire approach to routing when using a link device is now
link-centric rather than pci bus/device/pin specific. Thus, when
using a tunable to override the default IRQ settings, one now uses
a single tunable to route an entire link rather than routing a single
device that uses the link (which has great foot-shooting potential if
the user tries to route the same link to two different IRQs using two
different pci bus/device/pin hints). For example, to adjust the IRQ
that \_SB_.LNKA uses, one would set 'hw.pci.link.LNKA.irq=10' from the
loader.
- As a side effect of having the link driver, unused link devices will now
be disabled when they are probed.
- The algorithm for choosing an IRQ for a link that doesn't already have an
IRQ assigned is now much closer to the one used in $PIR routing. When a
link is routed via an ISA IRQ, only known-good IRQs that the BIOS has
already used are used for routing instead of using probabilities to
guess at which IRQs are probably not used by an ISA device. One change
from $PIR is that the SCI is always considered a viable ISA IRQ, so that
if the BIOS does not setup any IRQs the kernel will degenerate to routing
all interrupts over the SCI. For non ISA IRQs, interrupts are picked
from the possible pool using a simplistic weighting algorithm.
Tested by: ru, scottl, others on acpi@
Reviewed by: njl
2004-11-23 22:26:44 +00:00
|
|
|
return (acpi_pcib_route_interrupt(pcib, dev, pin, &sc->ap_prt));
|
2002-08-26 18:30:27 +00:00
|
|
|
}
|