The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/dev/acpica/acpi_pcib.c

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 /*-
    2  * Copyright (c) 2000 Michael Smith
    3  * Copyright (c) 2000 BSDi
    4  * All rights reserved.
    5  *
    6  * Redistribution and use in source and binary forms, with or without
    7  * modification, are permitted provided that the following conditions
    8  * are met:
    9  * 1. Redistributions of source code must retain the above copyright
   10  *    notice, this list of conditions and the following disclaimer.
   11  * 2. Redistributions in binary form must reproduce the above copyright
   12  *    notice, this list of conditions and the following disclaimer in the
   13  *    documentation and/or other materials provided with the distribution.
   14  *
   15  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
   16  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   17  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   18  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
   19  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
   20  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
   21  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
   22  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
   23  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
   24  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
   25  * SUCH DAMAGE.
   26  */
   27 
   28 #include <sys/cdefs.h>
   29 __FBSDID("$FreeBSD: releng/11.2/sys/dev/acpica/acpi_pcib.c 299286 2016-05-09 20:50:21Z jhb $");
   30 
   31 #include "opt_acpi.h"
   32 #include <sys/param.h>
   33 #include <sys/bus.h>
   34 #include <sys/malloc.h>
   35 #include <sys/kernel.h>
   36 
   37 #include <contrib/dev/acpica/include/acpi.h>
   38 #include <contrib/dev/acpica/include/accommon.h>
   39 
   40 #include <dev/acpica/acpivar.h>
   41 #include <dev/acpica/acpi_pcibvar.h>
   42 
   43 #include <dev/pci/pcivar.h>
   44 #include "pcib_if.h"
   45 
   46 /* Hooks for the ACPI CA debugging infrastructure. */
   47 #define _COMPONENT      ACPI_BUS
   48 ACPI_MODULE_NAME("PCI")
   49 
   50 ACPI_SERIAL_DECL(pcib, "ACPI PCI bus methods");
   51 
   52 /*
   53  * For locking, we assume the caller is not concurrent since this is
   54  * triggered by newbus methods.
   55  */
   56 
   57 struct prt_lookup_request {
   58     ACPI_PCI_ROUTING_TABLE *pr_entry;
   59     u_int       pr_pin;
   60     u_int       pr_slot;
   61 };
   62 
   63 typedef void prt_entry_handler(ACPI_PCI_ROUTING_TABLE *entry, void *arg);
   64 
   65 static void     prt_attach_devices(ACPI_PCI_ROUTING_TABLE *entry, void *arg);
   66 static void     prt_lookup_device(ACPI_PCI_ROUTING_TABLE *entry, void *arg);
   67 static void     prt_walk_table(ACPI_BUFFER *prt, prt_entry_handler *handler,
   68                     void *arg);
   69 
   70 static void
   71 prt_walk_table(ACPI_BUFFER *prt, prt_entry_handler *handler, void *arg)
   72 {
   73     ACPI_PCI_ROUTING_TABLE *entry;
   74     char *prtptr;
   75 
   76     /* First check to see if there is a table to walk. */
   77     if (prt == NULL || prt->Pointer == NULL)
   78         return;
   79 
   80     /* Walk the table executing the handler function for each entry. */
   81     prtptr = prt->Pointer;
   82     entry = (ACPI_PCI_ROUTING_TABLE *)prtptr;
   83     while (entry->Length != 0) {
   84         handler(entry, arg);
   85         prtptr += entry->Length;
   86         entry = (ACPI_PCI_ROUTING_TABLE *)prtptr;
   87     }
   88 }
   89 
   90 static void
   91 prt_attach_devices(ACPI_PCI_ROUTING_TABLE *entry, void *arg)
   92 {
   93     ACPI_HANDLE handle;
   94     device_t child, pcib;
   95     int error;
   96 
   97     /* We only care about entries that reference a link device. */
   98     if (entry->Source[0] == '\0')
   99         return;
  100 
  101     /*
  102      * In practice, we only see SourceIndex's of 0 out in the wild.
  103      * When indices != 0 have been found, they've been bugs in the ASL.
  104      */
  105     if (entry->SourceIndex != 0)
  106         return;
  107 
  108     /* Lookup the associated handle and device. */
  109     pcib = (device_t)arg;
  110     if (ACPI_FAILURE(AcpiGetHandle(ACPI_ROOT_OBJECT, entry->Source, &handle)))
  111         return;
  112     child = acpi_get_device(handle);
  113     if (child == NULL)
  114         return;
  115 
  116     /* If the device hasn't been probed yet, force it to do so. */
  117     error = device_probe_and_attach(child);
  118     if (error != 0) {
  119         device_printf(pcib, "failed to force attach of %s\n",
  120             acpi_name(handle));
  121         return;
  122     }
  123 
  124     /* Add a reference for a specific bus/device/pin tuple. */
  125     acpi_pci_link_add_reference(child, entry->SourceIndex, pcib,
  126         ACPI_ADR_PCI_SLOT(entry->Address), entry->Pin);
  127 }
  128 
  129 void
  130 acpi_pcib_fetch_prt(device_t dev, ACPI_BUFFER *prt)
  131 {
  132     ACPI_STATUS status;
  133 
  134     ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__);
  135 
  136     /*
  137      * Get the PCI interrupt routing table for this bus.  If we can't
  138      * get it, this is not an error but may reduce functionality.  There
  139      * are several valid bridges in the field that do not have a _PRT, so
  140      * only warn about missing tables if bootverbose is set.
  141      */
  142     prt->Length = ACPI_ALLOCATE_BUFFER;
  143     status = AcpiGetIrqRoutingTable(acpi_get_handle(dev), prt);
  144     if (ACPI_FAILURE(status) && (bootverbose || status != AE_NOT_FOUND))
  145         device_printf(dev,
  146             "could not get PCI interrupt routing table for %s - %s\n",
  147             acpi_name(acpi_get_handle(dev)), AcpiFormatException(status));
  148 
  149     /*
  150      * Ensure all the link devices are attached.
  151      */
  152     prt_walk_table(prt, prt_attach_devices, dev);
  153 }
  154 
  155 static void
  156 prt_lookup_device(ACPI_PCI_ROUTING_TABLE *entry, void *arg)
  157 {
  158     struct prt_lookup_request *pr;
  159 
  160     pr = (struct prt_lookup_request *)arg;
  161     if (pr->pr_entry != NULL)
  162         return;
  163 
  164     /*
  165      * Compare the slot number (high word of Address) and pin number
  166      * (note that ACPI uses 0 for INTA) to check for a match.
  167      *
  168      * Note that the low word of the Address field (function number)
  169      * is required by the specification to be 0xffff.  We don't risk
  170      * checking it here.
  171      */
  172     if (ACPI_ADR_PCI_SLOT(entry->Address) == pr->pr_slot &&
  173         entry->Pin == pr->pr_pin)
  174             pr->pr_entry = entry;
  175 }
  176 
  177 /*
  178  * Route an interrupt for a child of the bridge.
  179  */
  180 int
  181 acpi_pcib_route_interrupt(device_t pcib, device_t dev, int pin,
  182     ACPI_BUFFER *prtbuf)
  183 {
  184     ACPI_PCI_ROUTING_TABLE *prt;
  185     struct prt_lookup_request pr;
  186     ACPI_HANDLE lnkdev;
  187     int interrupt;
  188 
  189     ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__);
  190 
  191     interrupt = PCI_INVALID_IRQ;
  192 
  193     /* ACPI numbers pins 0-3, not 1-4 like the BIOS. */
  194     pin--;
  195 
  196     ACPI_SERIAL_BEGIN(pcib);
  197 
  198     /* Search for a matching entry in the routing table. */
  199     pr.pr_entry = NULL;
  200     pr.pr_pin = pin;
  201     pr.pr_slot = pci_get_slot(dev);
  202     prt_walk_table(prtbuf, prt_lookup_device, &pr);
  203     if (pr.pr_entry == NULL) {
  204         device_printf(pcib, "no PRT entry for %d.%d.INT%c\n", pci_get_bus(dev),
  205             pci_get_slot(dev), 'A' + pin);
  206         goto out;
  207     }
  208     prt = pr.pr_entry;
  209 
  210     if (bootverbose) {
  211         device_printf(pcib, "matched entry for %d.%d.INT%c",
  212             pci_get_bus(dev), pci_get_slot(dev), 'A' + pin);
  213         if (prt->Source[0] != '\0')
  214                 printf(" (src %s:%u)", prt->Source, prt->SourceIndex);
  215         printf("\n");
  216     }
  217 
  218     /*
  219      * If source is empty/NULL, the source index is a global IRQ number
  220      * and it's hard-wired so we're done.
  221      *
  222      * XXX: If the source index is non-zero, ignore the source device and
  223      * assume that this is a hard-wired entry.
  224      */
  225     if (prt->Source[0] == '\0' || prt->SourceIndex != 0) {
  226         if (bootverbose)
  227             device_printf(pcib, "slot %d INT%c hardwired to IRQ %d\n",
  228                 pci_get_slot(dev), 'A' + pin, prt->SourceIndex);
  229         if (prt->SourceIndex) {
  230             interrupt = prt->SourceIndex;
  231             BUS_CONFIG_INTR(dev, interrupt, INTR_TRIGGER_LEVEL,
  232                 INTR_POLARITY_LOW);
  233         } else
  234             device_printf(pcib, "error: invalid hard-wired IRQ of 0\n");
  235         goto out;
  236     }
  237 
  238     /*
  239      * We have to find the source device (PCI interrupt link device).
  240      */
  241     if (ACPI_FAILURE(AcpiGetHandle(ACPI_ROOT_OBJECT, prt->Source, &lnkdev))) {
  242         device_printf(pcib, "couldn't find PCI interrupt link device %s\n",
  243             prt->Source);
  244         goto out;
  245     }
  246     interrupt = acpi_pci_link_route_interrupt(acpi_get_device(lnkdev),
  247         prt->SourceIndex);
  248 
  249     if (bootverbose && PCI_INTERRUPT_VALID(interrupt))
  250         device_printf(pcib, "slot %d INT%c routed to irq %d via %s\n",
  251             pci_get_slot(dev), 'A' + pin, interrupt, acpi_name(lnkdev));
  252 
  253 out:
  254     ACPI_SERIAL_END(pcib);
  255 
  256     return_VALUE(interrupt);
  257 }
  258 
  259 int
  260 acpi_pcib_power_for_sleep(device_t pcib, device_t dev, int *pstate)
  261 {
  262     device_t acpi_dev;
  263 
  264     acpi_dev = devclass_get_device(devclass_find("acpi"), 0);
  265     acpi_device_pwr_for_sleep(acpi_dev, dev, pstate);
  266     return (0);
  267 }
  268 
  269 int
  270 acpi_pcib_get_cpus(device_t pcib, device_t dev, enum cpu_sets op,
  271     size_t setsize, cpuset_t *cpuset)
  272 {
  273 
  274         return (bus_get_cpus(pcib, op, setsize, cpuset));
  275 }

Cache object: 2fc2d41e5db6d87b0e5dae146afa2d24


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.