xref: /freebsd/sys/dev/acpica/acpi_pcib_acpi.c (revision 64278df5e02bfd3061b58440a695339ec48c2785)
115e32d5dSMike Smith /*-
215e32d5dSMike Smith  * Copyright (c) 2000 Michael Smith
315e32d5dSMike Smith  * Copyright (c) 2000 BSDi
415e32d5dSMike Smith  * All rights reserved.
515e32d5dSMike Smith  *
615e32d5dSMike Smith  * Redistribution and use in source and binary forms, with or without
715e32d5dSMike Smith  * modification, are permitted provided that the following conditions
815e32d5dSMike Smith  * are met:
915e32d5dSMike Smith  * 1. Redistributions of source code must retain the above copyright
1015e32d5dSMike Smith  *    notice, this list of conditions and the following disclaimer.
1115e32d5dSMike Smith  * 2. Redistributions in binary form must reproduce the above copyright
1215e32d5dSMike Smith  *    notice, this list of conditions and the following disclaimer in the
1315e32d5dSMike Smith  *    documentation and/or other materials provided with the distribution.
1415e32d5dSMike Smith  *
1515e32d5dSMike Smith  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
1615e32d5dSMike Smith  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1715e32d5dSMike Smith  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1815e32d5dSMike Smith  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
1915e32d5dSMike Smith  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2015e32d5dSMike Smith  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2115e32d5dSMike Smith  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2215e32d5dSMike Smith  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2315e32d5dSMike Smith  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2415e32d5dSMike Smith  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2515e32d5dSMike Smith  * SUCH DAMAGE.
2615e32d5dSMike Smith  *
2715e32d5dSMike Smith  *	$FreeBSD$
2815e32d5dSMike Smith  */
2915e32d5dSMike Smith #include "opt_acpi.h"
3015e32d5dSMike Smith #include <sys/param.h>
3115e32d5dSMike Smith #include <sys/bus.h>
324fa387b6SMike Smith #include <sys/malloc.h>
334fa387b6SMike Smith #include <sys/kernel.h>
3415e32d5dSMike Smith 
3515e32d5dSMike Smith #include "acpi.h"
3615e32d5dSMike Smith 
3715e32d5dSMike Smith #include <dev/acpica/acpivar.h>
3815e32d5dSMike Smith 
3915e32d5dSMike Smith #include <machine/pci_cfgreg.h>
40cace7a2aSWarner Losh #include <dev/pci/pcivar.h>
41cace7a2aSWarner Losh #include <dev/pci/pcib_private.h>
4215e32d5dSMike Smith #include "pcib_if.h"
4315e32d5dSMike Smith 
442ccfc932SJohn Baldwin #include <dev/acpica/acpi_pcibvar.h>
452ccfc932SJohn Baldwin 
460ae55423SMike Smith /*
470ae55423SMike Smith  * Hooks for the ACPI CA debugging infrastructure
480ae55423SMike Smith  */
49e71b6381SMike Smith #define _COMPONENT	ACPI_BUS
502ccfc932SJohn Baldwin ACPI_MODULE_NAME("PCI_ACPI")
510ae55423SMike Smith 
522ccfc932SJohn Baldwin struct acpi_hpcib_softc {
5315e32d5dSMike Smith     device_t		ap_dev;
5415e32d5dSMike Smith     ACPI_HANDLE		ap_handle;
5515e32d5dSMike Smith 
5615e32d5dSMike Smith     int			ap_segment;	/* analagous to Alpha 'hose' */
5715e32d5dSMike Smith     int			ap_bus;		/* bios-assigned bus number */
584fa387b6SMike Smith 
594fa387b6SMike Smith     ACPI_BUFFER		ap_prt;		/* interrupt routing table */
6015e32d5dSMike Smith };
6115e32d5dSMike Smith 
622ccfc932SJohn Baldwin 
632ccfc932SJohn Baldwin static int		acpi_pcib_acpi_probe(device_t bus);
642ccfc932SJohn Baldwin static int		acpi_pcib_acpi_attach(device_t bus);
65ba835e3fSMitsuru IWASAKI static int		acpi_pcib_acpi_resume(device_t bus);
6615e32d5dSMike Smith static int		acpi_pcib_read_ivar(device_t dev, device_t child, int which, uintptr_t *result);
6715e32d5dSMike Smith static int		acpi_pcib_write_ivar(device_t dev, device_t child, int which, uintptr_t value);
6815e32d5dSMike Smith static u_int32_t	acpi_pcib_read_config(device_t dev, int bus, int slot, int func, int reg, int bytes);
6915e32d5dSMike Smith static void		acpi_pcib_write_config(device_t dev, int bus, int slot, int func, int reg,
7015e32d5dSMike Smith 					       u_int32_t data, int bytes);
712ccfc932SJohn Baldwin static int		acpi_pcib_acpi_route_interrupt(device_t pcib,
722ccfc932SJohn Baldwin     device_t dev, int pin);
73cd8b53edSWarner Losh static struct resource *acpi_pcib_acpi_alloc_resource(device_t dev,
74cd8b53edSWarner Losh   			    device_t child, int type, int *rid,
75cd8b53edSWarner Losh 			    u_long start, u_long end, u_long count,
76cd8b53edSWarner Losh 			    u_int flags);
7715e32d5dSMike Smith 
782ccfc932SJohn Baldwin static device_method_t acpi_pcib_acpi_methods[] = {
7915e32d5dSMike Smith     /* Device interface */
802ccfc932SJohn Baldwin     DEVMETHOD(device_probe,		acpi_pcib_acpi_probe),
812ccfc932SJohn Baldwin     DEVMETHOD(device_attach,		acpi_pcib_acpi_attach),
8215e32d5dSMike Smith     DEVMETHOD(device_shutdown,		bus_generic_shutdown),
8315e32d5dSMike Smith     DEVMETHOD(device_suspend,		bus_generic_suspend),
84ba835e3fSMitsuru IWASAKI     DEVMETHOD(device_resume,		acpi_pcib_acpi_resume),
8515e32d5dSMike Smith 
8615e32d5dSMike Smith     /* Bus interface */
8715e32d5dSMike Smith     DEVMETHOD(bus_print_child,		bus_generic_print_child),
8815e32d5dSMike Smith     DEVMETHOD(bus_read_ivar,		acpi_pcib_read_ivar),
8915e32d5dSMike Smith     DEVMETHOD(bus_write_ivar,		acpi_pcib_write_ivar),
90cd8b53edSWarner Losh     DEVMETHOD(bus_alloc_resource,	acpi_pcib_acpi_alloc_resource),
9115e32d5dSMike Smith     DEVMETHOD(bus_release_resource,	bus_generic_release_resource),
9215e32d5dSMike Smith     DEVMETHOD(bus_activate_resource,	bus_generic_activate_resource),
9315e32d5dSMike Smith     DEVMETHOD(bus_deactivate_resource, 	bus_generic_deactivate_resource),
9415e32d5dSMike Smith     DEVMETHOD(bus_setup_intr,		bus_generic_setup_intr),
9515e32d5dSMike Smith     DEVMETHOD(bus_teardown_intr,	bus_generic_teardown_intr),
9615e32d5dSMike Smith 
9715e32d5dSMike Smith     /* pcib interface */
982ccfc932SJohn Baldwin     DEVMETHOD(pcib_maxslots,		pcib_maxslots),
9915e32d5dSMike Smith     DEVMETHOD(pcib_read_config,		acpi_pcib_read_config),
10015e32d5dSMike Smith     DEVMETHOD(pcib_write_config,	acpi_pcib_write_config),
1012ccfc932SJohn Baldwin     DEVMETHOD(pcib_route_interrupt,	acpi_pcib_acpi_route_interrupt),
10215e32d5dSMike Smith 
10315e32d5dSMike Smith     {0, 0}
10415e32d5dSMike Smith };
10515e32d5dSMike Smith 
1062ccfc932SJohn Baldwin static driver_t acpi_pcib_acpi_driver = {
1072ccfc932SJohn Baldwin     "pcib",
1082ccfc932SJohn Baldwin     acpi_pcib_acpi_methods,
1092ccfc932SJohn Baldwin     sizeof(struct acpi_hpcib_softc),
11015e32d5dSMike Smith };
11115e32d5dSMike Smith 
1122ccfc932SJohn Baldwin DRIVER_MODULE(acpi_pcib, acpi, acpi_pcib_acpi_driver, pcib_devclass, 0, 0);
11364278df5SNate Lawson MODULE_DEPEND(acpi_pcib, acpi, 1, 1, 1);
11415e32d5dSMike Smith 
11515e32d5dSMike Smith static int
1162ccfc932SJohn Baldwin acpi_pcib_acpi_probe(device_t dev)
11715e32d5dSMike Smith {
11815e32d5dSMike Smith 
11915e32d5dSMike Smith     if ((acpi_get_type(dev) == ACPI_TYPE_DEVICE) &&
1200ae55423SMike Smith 	!acpi_disabled("pci") &&
12115e32d5dSMike Smith 	acpi_MatchHid(dev, "PNP0A03")) {
12215e32d5dSMike Smith 
1235e0ca577SMitsuru IWASAKI 	if (!pci_cfgregopen())
1245e0ca577SMitsuru IWASAKI 		return(ENXIO);
1255e0ca577SMitsuru IWASAKI 
12615e32d5dSMike Smith 	/*
12715e32d5dSMike Smith 	 * Set device description
12815e32d5dSMike Smith 	 */
1292ccfc932SJohn Baldwin 	device_set_desc(dev, "ACPI Host-PCI bridge");
13015e32d5dSMike Smith 	return(0);
13115e32d5dSMike Smith     }
13215e32d5dSMike Smith     return(ENXIO);
13315e32d5dSMike Smith }
13415e32d5dSMike Smith 
13515e32d5dSMike Smith static int
1362ccfc932SJohn Baldwin acpi_pcib_acpi_attach(device_t dev)
13715e32d5dSMike Smith {
1382ccfc932SJohn Baldwin     struct acpi_hpcib_softc	*sc;
13915e32d5dSMike Smith     ACPI_STATUS			status;
1408b149b51SJohn Baldwin     u_int addr, slot, func, busok;
1419debb532SJohn Baldwin     uint8_t busno;
1420ae55423SMike Smith 
143b4a05238SPeter Wemm     ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__);
14415e32d5dSMike Smith 
14515e32d5dSMike Smith     sc = device_get_softc(dev);
14615e32d5dSMike Smith     sc->ap_dev = dev;
14715e32d5dSMike Smith     sc->ap_handle = acpi_get_handle(dev);
14815e32d5dSMike Smith 
14915e32d5dSMike Smith     /*
1509debb532SJohn Baldwin      * Get our base bus number by evaluating _BBN.
151c1b1f787SMike Smith      * If this doesn't work, we assume we're bus number 0.
15215e32d5dSMike Smith      *
15315e32d5dSMike Smith      * XXX note that it may also not exist in the case where we are
15415e32d5dSMike Smith      *     meant to use a private configuration space mechanism for this bus,
15515e32d5dSMike Smith      *     so we should dig out our resources and check to see if we have
15615e32d5dSMike Smith      *     anything like that.  How do we do this?
157042283a6SMike Smith      * XXX If we have the requisite information, and if we don't think the
158042283a6SMike Smith      *     default PCI configuration space handlers can deal with this bus,
159042283a6SMike Smith      *     we should attach our own handler.
160042283a6SMike Smith      * XXX invoke _REG on this for the PCI config space address space?
1619debb532SJohn Baldwin      * XXX It seems many BIOS's with multiple Host-PCI bridges do not set
1629debb532SJohn Baldwin      *     _BBN correctly.  They set _BBN to zero for all bridges.  Thus,
1639debb532SJohn Baldwin      *     if _BBN is zero and pcib0 already exists, we try to read our
1649debb532SJohn Baldwin      *     bus number from the configuration registers at address _ADR.
16515e32d5dSMike Smith      */
166c310653eSNate Lawson     status = acpi_GetInteger(sc->ap_handle, "_BBN", &sc->ap_bus);
1679debb532SJohn Baldwin     if (ACPI_FAILURE(status)) {
16815e32d5dSMike Smith 	if (status != AE_NOT_FOUND) {
1699debb532SJohn Baldwin 	    device_printf(dev, "could not evaluate _BBN - %s\n",
1709debb532SJohn Baldwin 		AcpiFormatException(status));
171c1b1f787SMike Smith 	    return_VALUE(ENXIO);
172c1b1f787SMike Smith 	} else {
17315e32d5dSMike Smith 	    /* if it's not found, assume 0 */
17415e32d5dSMike Smith 	    sc->ap_bus = 0;
17515e32d5dSMike Smith 	}
1768745ec57SJohn Baldwin     }
1779debb532SJohn Baldwin 
1789debb532SJohn Baldwin     /*
1799debb532SJohn Baldwin      * If the bus is zero and pcib0 already exists, read the bus number
1809debb532SJohn Baldwin      * via PCI config space.
1819debb532SJohn Baldwin      */
1829debb532SJohn Baldwin     busok = 1;
1839debb532SJohn Baldwin     if (sc->ap_bus == 0 && devclass_get_device(pcib_devclass, 0) != dev) {
1848745ec57SJohn Baldwin 	busok = 0;
185c310653eSNate Lawson 	status = acpi_GetInteger(sc->ap_handle, "_ADR", &addr);
1869debb532SJohn Baldwin 	if (ACPI_FAILURE(status)) {
1879debb532SJohn Baldwin 	    if (status != AE_NOT_FOUND) {
1889debb532SJohn Baldwin 		device_printf(dev, "could not evaluate _ADR - %s\n",
1899debb532SJohn Baldwin 		    AcpiFormatException(status));
1909debb532SJohn Baldwin 		return_VALUE(ENXIO);
1918745ec57SJohn Baldwin 	    } else
1929debb532SJohn Baldwin 		device_printf(dev, "could not determine config space address\n");
1939debb532SJohn Baldwin 	} else {
1949debb532SJohn Baldwin 	    /* XXX: We assume bus 0. */
1959debb532SJohn Baldwin 	    slot = addr >> 16;
1969debb532SJohn Baldwin 	    func = addr & 0xffff;
1979debb532SJohn Baldwin 	    if (bootverbose)
1989debb532SJohn Baldwin 		device_printf(dev, "reading config registers from 0:%d:%d\n",
1999debb532SJohn Baldwin 		    slot, func);
2008745ec57SJohn Baldwin 	    if (host_pcib_get_busno(pci_cfgregread, 0, slot, func, &busno) == 0)
2019debb532SJohn Baldwin 		device_printf(dev, "could not read bus number from config space\n");
2028745ec57SJohn Baldwin 	    else {
2039debb532SJohn Baldwin 		sc->ap_bus = busno;
2048745ec57SJohn Baldwin 		busok = 1;
2059debb532SJohn Baldwin 	    }
2069debb532SJohn Baldwin 	}
2079debb532SJohn Baldwin     }
2089debb532SJohn Baldwin 
2099debb532SJohn Baldwin     /*
2109debb532SJohn Baldwin      * If nothing else worked, hope that ACPI at least lays out the
2119debb532SJohn Baldwin      * host-PCI bridges in order and that as a result our unit number
2129debb532SJohn Baldwin      * is actually our bus number.  There are several reasons this
2139debb532SJohn Baldwin      * might not be true.
2149debb532SJohn Baldwin      */
2159debb532SJohn Baldwin     if (busok == 0) {
2169debb532SJohn Baldwin 	sc->ap_bus = device_get_unit(dev);
2179debb532SJohn Baldwin 	device_printf(dev, "trying bus number %d\n", sc->ap_bus);
218c1b1f787SMike Smith     }
21915e32d5dSMike Smith 
22015e32d5dSMike Smith     /*
2212ccfc932SJohn Baldwin      * Get our segment number by evaluating _SEG
2222ccfc932SJohn Baldwin      * It's OK for this to not exist.
223042283a6SMike Smith      */
224c310653eSNate Lawson     if (ACPI_FAILURE(status = acpi_GetInteger(sc->ap_handle, "_SEG", &sc->ap_segment))) {
2252ccfc932SJohn Baldwin 	if (status != AE_NOT_FOUND) {
2262ccfc932SJohn Baldwin 	    device_printf(dev, "could not evaluate _SEG - %s\n", AcpiFormatException(status));
2270ae55423SMike Smith 	    return_VALUE(ENXIO);
22815e32d5dSMike Smith 	}
2292ccfc932SJohn Baldwin 	/* if it's not found, assume 0 */
2302ccfc932SJohn Baldwin 	sc->ap_segment = 0;
23115e32d5dSMike Smith     }
23215e32d5dSMike Smith 
2332ccfc932SJohn Baldwin     return (acpi_pcib_attach(dev, &sc->ap_prt, sc->ap_bus));
23415e32d5dSMike Smith }
23515e32d5dSMike Smith 
236ba835e3fSMitsuru IWASAKI static int
237ba835e3fSMitsuru IWASAKI acpi_pcib_acpi_resume(device_t dev)
238ba835e3fSMitsuru IWASAKI {
239ba835e3fSMitsuru IWASAKI     struct acpi_hpcib_softc	*sc = device_get_softc(dev);
240ba835e3fSMitsuru IWASAKI 
241ba835e3fSMitsuru IWASAKI     return (acpi_pcib_resume(dev, &sc->ap_prt, sc->ap_bus));
242ba835e3fSMitsuru IWASAKI }
243ba835e3fSMitsuru IWASAKI 
2444fa387b6SMike Smith /*
2454fa387b6SMike Smith  * Support for standard PCI bridge ivars.
2464fa387b6SMike Smith  */
24715e32d5dSMike Smith static int
24815e32d5dSMike Smith acpi_pcib_read_ivar(device_t dev, device_t child, int which, uintptr_t *result)
24915e32d5dSMike Smith {
2502ccfc932SJohn Baldwin     struct acpi_hpcib_softc	*sc = device_get_softc(dev);
25115e32d5dSMike Smith 
25215e32d5dSMike Smith     switch (which) {
25315e32d5dSMike Smith     case  PCIB_IVAR_BUS:
25415e32d5dSMike Smith 	*result = sc->ap_bus;
25515e32d5dSMike Smith 	return(0);
2562ccfc932SJohn Baldwin     case  ACPI_IVAR_HANDLE:
2572ccfc932SJohn Baldwin 	*result = (uintptr_t)sc->ap_handle;
2582ccfc932SJohn Baldwin 	return(0);
25915e32d5dSMike Smith     }
26015e32d5dSMike Smith     return(ENOENT);
26115e32d5dSMike Smith }
26215e32d5dSMike Smith 
26315e32d5dSMike Smith static int
26415e32d5dSMike Smith acpi_pcib_write_ivar(device_t dev, device_t child, int which, uintptr_t value)
26515e32d5dSMike Smith {
2662ccfc932SJohn Baldwin     struct acpi_hpcib_softc 	*sc = device_get_softc(dev);
26715e32d5dSMike Smith 
26815e32d5dSMike Smith     switch (which) {
26915e32d5dSMike Smith     case  PCIB_IVAR_BUS:
27015e32d5dSMike Smith 	sc->ap_bus = value;
27115e32d5dSMike Smith 	return(0);
27215e32d5dSMike Smith     }
27315e32d5dSMike Smith     return(ENOENT);
27415e32d5dSMike Smith }
27515e32d5dSMike Smith 
27615e32d5dSMike Smith static u_int32_t
27715e32d5dSMike Smith acpi_pcib_read_config(device_t dev, int bus, int slot, int func, int reg, int bytes)
27815e32d5dSMike Smith {
27915e32d5dSMike Smith     return(pci_cfgregread(bus, slot, func, reg, bytes));
28015e32d5dSMike Smith }
28115e32d5dSMike Smith 
28215e32d5dSMike Smith static void
28315e32d5dSMike Smith acpi_pcib_write_config(device_t dev, int bus, int slot, int func, int reg, u_int32_t data, int bytes)
28415e32d5dSMike Smith {
28515e32d5dSMike Smith     pci_cfgregwrite(bus, slot, func, reg, data, bytes);
28615e32d5dSMike Smith }
28715e32d5dSMike Smith 
28815e32d5dSMike Smith static int
2892ccfc932SJohn Baldwin acpi_pcib_acpi_route_interrupt(device_t pcib, device_t dev, int pin)
29015e32d5dSMike Smith {
2912ccfc932SJohn Baldwin     struct acpi_hpcib_softc *sc;
2924fa387b6SMike Smith 
2934fa387b6SMike Smith     /* find the bridge softc */
2942ccfc932SJohn Baldwin     sc = device_get_softc(pcib);
2952ccfc932SJohn Baldwin     return (acpi_pcib_route_interrupt(pcib, dev, pin, &sc->ap_prt));
29615e32d5dSMike Smith }
297cd8b53edSWarner Losh 
298cd8b53edSWarner Losh struct resource *
299cd8b53edSWarner Losh acpi_pcib_acpi_alloc_resource(device_t dev, device_t child, int type, int *rid,
300cd8b53edSWarner Losh   u_long start, u_long end, u_long count, u_int flags)
301cd8b53edSWarner Losh {
302cd8b53edSWarner Losh 	/*
303cd8b53edSWarner Losh 	 * If no memory preference is given, use upper 256MB slot most
304cd8b53edSWarner Losh 	 * bioses use for their memory window.  Typically other bridges
305cd8b53edSWarner Losh 	 * before us get in the way to assert their preferences on memory.
306cd8b53edSWarner Losh 	 * Hardcoding like this sucks, so a more MD/MI way needs to be
307cd8b53edSWarner Losh 	 * found to do it.
308cd8b53edSWarner Losh 	 */
309cd8b53edSWarner Losh 	if (type == SYS_RES_MEMORY && start == 0UL && end == ~0UL)
310cd8b53edSWarner Losh 		start = 0xf0000000;
311cd8b53edSWarner Losh 	return (bus_generic_alloc_resource(dev, child, type, rid, start, end,
312cd8b53edSWarner Losh 	    count, flags));
313cd8b53edSWarner Losh }
314