2005-04-16 22:20:36 +00:00
|
|
|
/*
|
|
|
|
* pci_root.c - ACPI PCI Root Bridge Driver ($Revision: 40 $)
|
|
|
|
*
|
|
|
|
* Copyright (C) 2001, 2002 Andy Grover <andrew.grover@intel.com>
|
|
|
|
* Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>
|
|
|
|
*
|
|
|
|
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or (at
|
|
|
|
* your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
|
|
|
|
*
|
|
|
|
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/types.h>
|
|
|
|
#include <linux/proc_fs.h>
|
|
|
|
#include <linux/spinlock.h>
|
|
|
|
#include <linux/pm.h>
|
2010-02-17 22:44:09 +00:00
|
|
|
#include <linux/pm_runtime.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
#include <linux/pci.h>
|
2008-11-10 22:30:45 +00:00
|
|
|
#include <linux/pci-acpi.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
#include <linux/acpi.h>
|
include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h
percpu.h is included by sched.h and module.h and thus ends up being
included when building most .c files. percpu.h includes slab.h which
in turn includes gfp.h making everything defined by the two files
universally available and complicating inclusion dependencies.
percpu.h -> slab.h dependency is about to be removed. Prepare for
this change by updating users of gfp and slab facilities include those
headers directly instead of assuming availability. As this conversion
needs to touch large number of source files, the following script is
used as the basis of conversion.
http://userweb.kernel.org/~tj/misc/slabh-sweep.py
The script does the followings.
* Scan files for gfp and slab usages and update includes such that
only the necessary includes are there. ie. if only gfp is used,
gfp.h, if slab is used, slab.h.
* When the script inserts a new include, it looks at the include
blocks and try to put the new include such that its order conforms
to its surrounding. It's put in the include block which contains
core kernel includes, in the same order that the rest are ordered -
alphabetical, Christmas tree, rev-Xmas-tree or at the end if there
doesn't seem to be any matching order.
* If the script can't find a place to put a new include (mostly
because the file doesn't have fitting include block), it prints out
an error message indicating which .h file needs to be added to the
file.
The conversion was done in the following steps.
1. The initial automatic conversion of all .c files updated slightly
over 4000 files, deleting around 700 includes and adding ~480 gfp.h
and ~3000 slab.h inclusions. The script emitted errors for ~400
files.
2. Each error was manually checked. Some didn't need the inclusion,
some needed manual addition while adding it to implementation .h or
embedding .c file was more appropriate for others. This step added
inclusions to around 150 files.
3. The script was run again and the output was compared to the edits
from #2 to make sure no file was left behind.
4. Several build tests were done and a couple of problems were fixed.
e.g. lib/decompress_*.c used malloc/free() wrappers around slab
APIs requiring slab.h to be added manually.
5. The script was run on all .h files but without automatically
editing them as sprinkling gfp.h and slab.h inclusions around .h
files could easily lead to inclusion dependency hell. Most gfp.h
inclusion directives were ignored as stuff from gfp.h was usually
wildly available and often used in preprocessor macros. Each
slab.h inclusion directive was examined and added manually as
necessary.
6. percpu.h was updated not to include slab.h.
7. Build test were done on the following configurations and failures
were fixed. CONFIG_GCOV_KERNEL was turned off for all tests (as my
distributed build env didn't work with gcov compiles) and a few
more options had to be turned off depending on archs to make things
build (like ipr on powerpc/64 which failed due to missing writeq).
* x86 and x86_64 UP and SMP allmodconfig and a custom test config.
* powerpc and powerpc64 SMP allmodconfig
* sparc and sparc64 SMP allmodconfig
* ia64 SMP allmodconfig
* s390 SMP allmodconfig
* alpha SMP allmodconfig
* um on x86_64 SMP allmodconfig
8. percpu.h modifications were reverted so that it could be applied as
a separate patch and serve as bisection point.
Given the fact that I had only a couple of failures from tests on step
6, I'm fairly confident about the coverage of this conversion patch.
If there is a breakage, it's likely to be something in one of the arch
headers which should be easily discoverable easily on most builds of
the specific arch.
Signed-off-by: Tejun Heo <tj@kernel.org>
Guess-its-ok-by: Christoph Lameter <cl@linux-foundation.org>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>
2010-03-24 08:04:11 +00:00
|
|
|
#include <linux/slab.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
#include <acpi/acpi_bus.h>
|
|
|
|
#include <acpi/acpi_drivers.h>
|
|
|
|
|
2009-07-28 20:45:54 +00:00
|
|
|
#define PREFIX "ACPI: "
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
#define _COMPONENT ACPI_PCI_COMPONENT
|
2007-02-13 03:42:12 +00:00
|
|
|
ACPI_MODULE_NAME("pci_root");
|
2005-04-16 22:20:36 +00:00
|
|
|
#define ACPI_PCI_ROOT_CLASS "pci_bridge"
|
|
|
|
#define ACPI_PCI_ROOT_DEVICE_NAME "PCI Root Bridge"
|
2005-08-05 04:44:28 +00:00
|
|
|
static int acpi_pci_root_add(struct acpi_device *device);
|
|
|
|
static int acpi_pci_root_remove(struct acpi_device *device, int type);
|
|
|
|
static int acpi_pci_root_start(struct acpi_device *device);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2010-01-10 16:15:36 +00:00
|
|
|
static const struct acpi_device_id root_device_ids[] = {
|
2007-07-23 12:44:41 +00:00
|
|
|
{"PNP0A03", 0},
|
|
|
|
{"", 0},
|
|
|
|
};
|
|
|
|
MODULE_DEVICE_TABLE(acpi, root_device_ids);
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
static struct acpi_driver acpi_pci_root_driver = {
|
2007-02-13 04:33:40 +00:00
|
|
|
.name = "pci_root",
|
2005-08-05 04:44:28 +00:00
|
|
|
.class = ACPI_PCI_ROOT_CLASS,
|
2007-07-23 12:44:41 +00:00
|
|
|
.ids = root_device_ids,
|
2005-08-05 04:44:28 +00:00
|
|
|
.ops = {
|
|
|
|
.add = acpi_pci_root_add,
|
|
|
|
.remove = acpi_pci_root_remove,
|
|
|
|
.start = acpi_pci_root_start,
|
|
|
|
},
|
2005-04-16 22:20:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static LIST_HEAD(acpi_pci_roots);
|
|
|
|
|
|
|
|
static struct acpi_pci_driver *sub_driver;
|
2009-02-09 06:59:29 +00:00
|
|
|
static DEFINE_MUTEX(osc_lock);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
int acpi_pci_register_driver(struct acpi_pci_driver *driver)
|
|
|
|
{
|
|
|
|
int n = 0;
|
2009-06-18 20:47:02 +00:00
|
|
|
struct acpi_pci_root *root;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
struct acpi_pci_driver **pptr = &sub_driver;
|
|
|
|
while (*pptr)
|
|
|
|
pptr = &(*pptr)->next;
|
|
|
|
*pptr = driver;
|
|
|
|
|
|
|
|
if (!driver->add)
|
|
|
|
return 0;
|
|
|
|
|
2009-06-18 20:47:02 +00:00
|
|
|
list_for_each_entry(root, &acpi_pci_roots, node) {
|
2006-05-19 20:54:43 +00:00
|
|
|
driver->add(root->device->handle);
|
2005-04-16 22:20:36 +00:00
|
|
|
n++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return n;
|
|
|
|
}
|
2005-08-05 04:44:28 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
EXPORT_SYMBOL(acpi_pci_register_driver);
|
|
|
|
|
|
|
|
void acpi_pci_unregister_driver(struct acpi_pci_driver *driver)
|
|
|
|
{
|
2009-06-18 20:47:02 +00:00
|
|
|
struct acpi_pci_root *root;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
struct acpi_pci_driver **pptr = &sub_driver;
|
|
|
|
while (*pptr) {
|
2006-12-19 20:56:09 +00:00
|
|
|
if (*pptr == driver)
|
|
|
|
break;
|
|
|
|
pptr = &(*pptr)->next;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
2006-12-19 20:56:09 +00:00
|
|
|
BUG_ON(!*pptr);
|
|
|
|
*pptr = (*pptr)->next;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
if (!driver->remove)
|
|
|
|
return;
|
|
|
|
|
2009-06-18 20:47:02 +00:00
|
|
|
list_for_each_entry(root, &acpi_pci_roots, node)
|
2006-05-19 20:54:43 +00:00
|
|
|
driver->remove(root->device->handle);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
2005-08-05 04:44:28 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
EXPORT_SYMBOL(acpi_pci_unregister_driver);
|
|
|
|
|
2006-12-06 17:17:10 +00:00
|
|
|
acpi_handle acpi_get_pci_rootbridge_handle(unsigned int seg, unsigned int bus)
|
|
|
|
{
|
2009-06-18 20:47:02 +00:00
|
|
|
struct acpi_pci_root *root;
|
2006-12-06 17:17:10 +00:00
|
|
|
|
2009-06-18 20:47:02 +00:00
|
|
|
list_for_each_entry(root, &acpi_pci_roots, node)
|
2010-03-11 19:20:06 +00:00
|
|
|
if ((root->segment == (u16) seg) &&
|
|
|
|
(root->secondary.start == (u16) bus))
|
2009-06-18 20:47:02 +00:00
|
|
|
return root->device->handle;
|
2006-12-06 17:17:10 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
EXPORT_SYMBOL_GPL(acpi_get_pci_rootbridge_handle);
|
|
|
|
|
2009-06-10 19:55:14 +00:00
|
|
|
/**
|
|
|
|
* acpi_is_root_bridge - determine whether an ACPI CA node is a PCI root bridge
|
|
|
|
* @handle - the ACPI CA node in question.
|
|
|
|
*
|
|
|
|
* Note: we could make this API take a struct acpi_device * instead, but
|
|
|
|
* for now, it's more convenient to operate on an acpi_handle.
|
|
|
|
*/
|
|
|
|
int acpi_is_root_bridge(acpi_handle handle)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
struct acpi_device *device;
|
|
|
|
|
|
|
|
ret = acpi_bus_get_device(handle, &device);
|
|
|
|
if (ret)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
ret = acpi_match_device_ids(device, root_device_ids);
|
|
|
|
if (ret)
|
|
|
|
return 0;
|
|
|
|
else
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(acpi_is_root_bridge);
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
static acpi_status
|
2005-08-05 04:44:28 +00:00
|
|
|
get_root_bridge_busnr_callback(struct acpi_resource *resource, void *data)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2010-03-11 19:20:06 +00:00
|
|
|
struct resource *res = data;
|
2005-04-16 22:20:36 +00:00
|
|
|
struct acpi_resource_address64 address;
|
|
|
|
|
[ACPI] ACPICA 20050930
Completed a major overhaul of the Resource Manager code -
specifically, optimizations in the area of the AML/internal
resource conversion code. The code has been optimized to
simplify and eliminate duplicated code, CPU stack use has
been decreased by optimizing function parameters and local
variables, and naming conventions across the manager have
been standardized for clarity and ease of maintenance (this
includes function, parameter, variable, and struct/typedef
names.)
All Resource Manager dispatch and information tables have
been moved to a single location for clarity and ease of
maintenance. One new file was created, named "rsinfo.c".
The ACPI return macros (return_ACPI_STATUS, etc.) have
been modified to guarantee that the argument is
not evaluated twice, making them less prone to macro
side-effects. However, since there exists the possibility
of additional stack use if a particular compiler cannot
optimize them (such as in the debug generation case),
the original macros are optionally available. Note that
some invocations of the return_VALUE macro may now cause
size mismatch warnings; the return_UINT8 and return_UINT32
macros are provided to eliminate these. (From Randy Dunlap)
Implemented a new mechanism to enable debug tracing for
individual control methods. A new external interface,
acpi_debug_trace(), is provided to enable this mechanism. The
intent is to allow the host OS to easily enable and disable
tracing for problematic control methods. This interface
can be easily exposed to a user or debugger interface if
desired. See the file psxface.c for details.
acpi_ut_callocate() will now return a valid pointer if a
length of zero is specified - a length of one is used
and a warning is issued. This matches the behavior of
acpi_ut_allocate().
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2005-09-30 23:03:00 +00:00
|
|
|
if (resource->type != ACPI_RESOURCE_TYPE_ADDRESS16 &&
|
|
|
|
resource->type != ACPI_RESOURCE_TYPE_ADDRESS32 &&
|
|
|
|
resource->type != ACPI_RESOURCE_TYPE_ADDRESS64)
|
2005-04-16 22:20:36 +00:00
|
|
|
return AE_OK;
|
|
|
|
|
|
|
|
acpi_resource_to_address64(resource, &address);
|
2005-08-05 04:44:28 +00:00
|
|
|
if ((address.address_length > 0) &&
|
2010-03-11 19:20:06 +00:00
|
|
|
(address.resource_type == ACPI_BUS_NUMBER_RANGE)) {
|
|
|
|
res->start = address.minimum;
|
|
|
|
res->end = address.minimum + address.address_length - 1;
|
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
return AE_OK;
|
|
|
|
}
|
|
|
|
|
2009-06-18 20:46:52 +00:00
|
|
|
static acpi_status try_get_root_bridge_busnr(acpi_handle handle,
|
2010-03-11 19:20:06 +00:00
|
|
|
struct resource *res)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
acpi_status status;
|
|
|
|
|
2010-03-11 19:20:06 +00:00
|
|
|
res->start = -1;
|
2005-08-05 04:44:28 +00:00
|
|
|
status =
|
|
|
|
acpi_walk_resources(handle, METHOD_NAME__CRS,
|
2010-03-11 19:20:06 +00:00
|
|
|
get_root_bridge_busnr_callback, res);
|
2005-04-16 22:20:36 +00:00
|
|
|
if (ACPI_FAILURE(status))
|
|
|
|
return status;
|
2010-03-11 19:20:06 +00:00
|
|
|
if (res->start == -1)
|
2005-04-16 22:20:36 +00:00
|
|
|
return AE_ERROR;
|
|
|
|
return AE_OK;
|
|
|
|
}
|
|
|
|
|
2006-12-21 07:21:13 +00:00
|
|
|
static void acpi_pci_bridge_scan(struct acpi_device *device)
|
|
|
|
{
|
|
|
|
int status;
|
|
|
|
struct acpi_device *child = NULL;
|
|
|
|
|
|
|
|
if (device->flags.bus_address)
|
|
|
|
if (device->parent && device->parent->ops.bind) {
|
|
|
|
status = device->parent->ops.bind(device);
|
|
|
|
if (!status) {
|
|
|
|
list_for_each_entry(child, &device->children, node)
|
|
|
|
acpi_pci_bridge_scan(child);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-10-29 03:04:50 +00:00
|
|
|
static u8 pci_osc_uuid_str[] = "33DB4D5B-1FF7-401C-9657-7441C03DD766";
|
2009-02-09 06:59:29 +00:00
|
|
|
|
|
|
|
static acpi_status acpi_pci_run_osc(acpi_handle handle,
|
|
|
|
const u32 *capbuf, u32 *retval)
|
|
|
|
{
|
2009-10-29 03:04:50 +00:00
|
|
|
struct acpi_osc_context context = {
|
|
|
|
.uuid_str = pci_osc_uuid_str,
|
|
|
|
.rev = 1,
|
|
|
|
.cap.length = 12,
|
|
|
|
.cap.pointer = (void *)capbuf,
|
|
|
|
};
|
2009-02-09 06:59:29 +00:00
|
|
|
acpi_status status;
|
|
|
|
|
2009-10-29 03:04:50 +00:00
|
|
|
status = acpi_run_osc(handle, &context);
|
|
|
|
if (ACPI_SUCCESS(status)) {
|
|
|
|
*retval = *((u32 *)(context.ret.pointer + 8));
|
|
|
|
kfree(context.ret.pointer);
|
2009-02-09 06:59:29 +00:00
|
|
|
}
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
static acpi_status acpi_pci_query_osc(struct acpi_pci_root *root, u32 flags)
|
|
|
|
{
|
|
|
|
acpi_status status;
|
|
|
|
u32 support_set, result, capbuf[3];
|
|
|
|
|
|
|
|
/* do _OSC query for all possible controls */
|
2009-10-29 03:04:50 +00:00
|
|
|
support_set = root->osc_support_set | (flags & OSC_PCI_SUPPORT_MASKS);
|
2009-02-09 06:59:29 +00:00
|
|
|
capbuf[OSC_QUERY_TYPE] = OSC_QUERY_ENABLE;
|
|
|
|
capbuf[OSC_SUPPORT_TYPE] = support_set;
|
2009-10-29 03:04:50 +00:00
|
|
|
capbuf[OSC_CONTROL_TYPE] = OSC_PCI_CONTROL_MASKS;
|
2009-02-09 06:59:29 +00:00
|
|
|
|
|
|
|
status = acpi_pci_run_osc(root->device->handle, capbuf, &result);
|
|
|
|
if (ACPI_SUCCESS(status)) {
|
|
|
|
root->osc_support_set = support_set;
|
|
|
|
root->osc_control_qry = result;
|
|
|
|
root->osc_queried = 1;
|
|
|
|
}
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
static acpi_status acpi_pci_osc_support(struct acpi_pci_root *root, u32 flags)
|
|
|
|
{
|
|
|
|
acpi_status status;
|
|
|
|
acpi_handle tmp;
|
|
|
|
|
|
|
|
status = acpi_get_handle(root->device->handle, "_OSC", &tmp);
|
|
|
|
if (ACPI_FAILURE(status))
|
|
|
|
return status;
|
|
|
|
mutex_lock(&osc_lock);
|
|
|
|
status = acpi_pci_query_osc(root, flags);
|
|
|
|
mutex_unlock(&osc_lock);
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
2009-07-23 23:03:00 +00:00
|
|
|
struct acpi_pci_root *acpi_pci_find_root(acpi_handle handle)
|
2009-02-09 06:59:29 +00:00
|
|
|
{
|
|
|
|
struct acpi_pci_root *root;
|
2009-06-18 20:47:02 +00:00
|
|
|
|
2009-02-09 06:59:29 +00:00
|
|
|
list_for_each_entry(root, &acpi_pci_roots, node) {
|
|
|
|
if (root->device->handle == handle)
|
|
|
|
return root;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
2009-07-23 23:03:00 +00:00
|
|
|
EXPORT_SYMBOL_GPL(acpi_pci_find_root);
|
2009-02-09 06:59:29 +00:00
|
|
|
|
2009-06-10 19:55:20 +00:00
|
|
|
struct acpi_handle_node {
|
|
|
|
struct list_head node;
|
|
|
|
acpi_handle handle;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* acpi_get_pci_dev - convert ACPI CA handle to struct pci_dev
|
|
|
|
* @handle: the handle in question
|
|
|
|
*
|
|
|
|
* Given an ACPI CA handle, the desired PCI device is located in the
|
|
|
|
* list of PCI devices.
|
|
|
|
*
|
|
|
|
* If the device is found, its reference count is increased and this
|
|
|
|
* function returns a pointer to its data structure. The caller must
|
|
|
|
* decrement the reference count by calling pci_dev_put().
|
|
|
|
* If no device is found, %NULL is returned.
|
|
|
|
*/
|
|
|
|
struct pci_dev *acpi_get_pci_dev(acpi_handle handle)
|
|
|
|
{
|
|
|
|
int dev, fn;
|
|
|
|
unsigned long long adr;
|
|
|
|
acpi_status status;
|
|
|
|
acpi_handle phandle;
|
|
|
|
struct pci_bus *pbus;
|
|
|
|
struct pci_dev *pdev = NULL;
|
|
|
|
struct acpi_handle_node *node, *tmp;
|
|
|
|
struct acpi_pci_root *root;
|
|
|
|
LIST_HEAD(device_list);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Walk up the ACPI CA namespace until we reach a PCI root bridge.
|
|
|
|
*/
|
|
|
|
phandle = handle;
|
|
|
|
while (!acpi_is_root_bridge(phandle)) {
|
|
|
|
node = kzalloc(sizeof(struct acpi_handle_node), GFP_KERNEL);
|
|
|
|
if (!node)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
INIT_LIST_HEAD(&node->node);
|
|
|
|
node->handle = phandle;
|
|
|
|
list_add(&node->node, &device_list);
|
|
|
|
|
|
|
|
status = acpi_get_parent(phandle, &phandle);
|
|
|
|
if (ACPI_FAILURE(status))
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
root = acpi_pci_find_root(phandle);
|
|
|
|
if (!root)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
pbus = root->bus;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Now, walk back down the PCI device tree until we return to our
|
|
|
|
* original handle. Assumes that everything between the PCI root
|
|
|
|
* bridge and the device we're looking for must be a P2P bridge.
|
|
|
|
*/
|
|
|
|
list_for_each_entry(node, &device_list, node) {
|
|
|
|
acpi_handle hnd = node->handle;
|
|
|
|
status = acpi_evaluate_integer(hnd, "_ADR", NULL, &adr);
|
|
|
|
if (ACPI_FAILURE(status))
|
|
|
|
goto out;
|
|
|
|
dev = (adr >> 16) & 0xffff;
|
|
|
|
fn = adr & 0xffff;
|
|
|
|
|
|
|
|
pdev = pci_get_slot(pbus, PCI_DEVFN(dev, fn));
|
2009-06-25 23:05:35 +00:00
|
|
|
if (!pdev || hnd == handle)
|
2009-06-10 19:55:20 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
pbus = pdev->subordinate;
|
|
|
|
pci_dev_put(pdev);
|
2009-10-12 23:01:57 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* This function may be called for a non-PCI device that has a
|
|
|
|
* PCI parent (eg. a disk under a PCI SATA controller). In that
|
|
|
|
* case pdev->subordinate will be NULL for the parent.
|
|
|
|
*/
|
|
|
|
if (!pbus) {
|
|
|
|
dev_dbg(&pdev->dev, "Not a PCI-to-PCI bridge\n");
|
|
|
|
pdev = NULL;
|
|
|
|
break;
|
|
|
|
}
|
2009-06-10 19:55:20 +00:00
|
|
|
}
|
|
|
|
out:
|
|
|
|
list_for_each_entry_safe(node, tmp, &device_list, node)
|
|
|
|
kfree(node);
|
|
|
|
|
|
|
|
return pdev;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(acpi_get_pci_dev);
|
|
|
|
|
2009-02-09 06:59:29 +00:00
|
|
|
/**
|
2009-02-09 07:00:04 +00:00
|
|
|
* acpi_pci_osc_control_set - commit requested control to Firmware
|
2009-02-09 06:59:29 +00:00
|
|
|
* @handle: acpi_handle for the target ACPI object
|
|
|
|
* @flags: driver's requested control bits
|
|
|
|
*
|
|
|
|
* Attempt to take control from Firmware on requested control bits.
|
|
|
|
**/
|
2009-02-09 07:00:04 +00:00
|
|
|
acpi_status acpi_pci_osc_control_set(acpi_handle handle, u32 flags)
|
2009-02-09 06:59:29 +00:00
|
|
|
{
|
|
|
|
acpi_status status;
|
|
|
|
u32 control_req, result, capbuf[3];
|
|
|
|
acpi_handle tmp;
|
|
|
|
struct acpi_pci_root *root;
|
|
|
|
|
|
|
|
status = acpi_get_handle(handle, "_OSC", &tmp);
|
|
|
|
if (ACPI_FAILURE(status))
|
|
|
|
return status;
|
|
|
|
|
2009-10-29 03:04:50 +00:00
|
|
|
control_req = (flags & OSC_PCI_CONTROL_MASKS);
|
2009-02-09 06:59:29 +00:00
|
|
|
if (!control_req)
|
|
|
|
return AE_TYPE;
|
|
|
|
|
|
|
|
root = acpi_pci_find_root(handle);
|
|
|
|
if (!root)
|
|
|
|
return AE_NOT_EXIST;
|
|
|
|
|
|
|
|
mutex_lock(&osc_lock);
|
|
|
|
/* No need to evaluate _OSC if the control was already granted. */
|
|
|
|
if ((root->osc_control_set & control_req) == control_req)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
/* Need to query controls first before requesting them */
|
|
|
|
if (!root->osc_queried) {
|
|
|
|
status = acpi_pci_query_osc(root, root->osc_support_set);
|
|
|
|
if (ACPI_FAILURE(status))
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
if ((root->osc_control_qry & control_req) != control_req) {
|
|
|
|
printk(KERN_DEBUG
|
|
|
|
"Firmware did not grant requested _OSC control\n");
|
|
|
|
status = AE_SUPPORT;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
capbuf[OSC_QUERY_TYPE] = 0;
|
|
|
|
capbuf[OSC_SUPPORT_TYPE] = root->osc_support_set;
|
|
|
|
capbuf[OSC_CONTROL_TYPE] = root->osc_control_set | control_req;
|
|
|
|
status = acpi_pci_run_osc(handle, capbuf, &result);
|
|
|
|
if (ACPI_SUCCESS(status))
|
|
|
|
root->osc_control_set = result;
|
|
|
|
out:
|
|
|
|
mutex_unlock(&osc_lock);
|
|
|
|
return status;
|
|
|
|
}
|
2009-02-09 07:00:04 +00:00
|
|
|
EXPORT_SYMBOL(acpi_pci_osc_control_set);
|
2009-02-09 06:59:29 +00:00
|
|
|
|
2008-02-17 12:23:03 +00:00
|
|
|
static int __devinit acpi_pci_root_add(struct acpi_device *device)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2009-06-18 20:46:52 +00:00
|
|
|
unsigned long long segment, bus;
|
|
|
|
acpi_status status;
|
|
|
|
int result;
|
|
|
|
struct acpi_pci_root *root;
|
|
|
|
acpi_handle handle;
|
2006-12-21 07:21:13 +00:00
|
|
|
struct acpi_device *child;
|
2008-11-10 22:30:50 +00:00
|
|
|
u32 flags, base_flags;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2010-03-11 19:20:06 +00:00
|
|
|
root = kzalloc(sizeof(struct acpi_pci_root), GFP_KERNEL);
|
|
|
|
if (!root)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
2009-06-18 20:46:52 +00:00
|
|
|
segment = 0;
|
|
|
|
status = acpi_evaluate_integer(device->handle, METHOD_NAME__SEG, NULL,
|
|
|
|
&segment);
|
|
|
|
if (ACPI_FAILURE(status) && status != AE_NOT_FOUND) {
|
|
|
|
printk(KERN_ERR PREFIX "can't evaluate _SEG\n");
|
2010-03-11 19:20:06 +00:00
|
|
|
result = -ENODEV;
|
|
|
|
goto end;
|
2009-06-18 20:46:52 +00:00
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2009-06-18 20:46:52 +00:00
|
|
|
/* Check _CRS first, then _BBN. If no _BBN, default to zero. */
|
2010-03-11 19:20:06 +00:00
|
|
|
root->secondary.flags = IORESOURCE_BUS;
|
|
|
|
status = try_get_root_bridge_busnr(device->handle, &root->secondary);
|
2009-06-18 20:46:52 +00:00
|
|
|
if (ACPI_FAILURE(status)) {
|
2010-03-11 19:20:06 +00:00
|
|
|
/*
|
|
|
|
* We need both the start and end of the downstream bus range
|
|
|
|
* to interpret _CBA (MMCONFIG base address), so it really is
|
|
|
|
* supposed to be in _CRS. If we don't find it there, all we
|
|
|
|
* can do is assume [_BBN-0xFF] or [0-0xFF].
|
|
|
|
*/
|
|
|
|
root->secondary.end = 0xFF;
|
|
|
|
printk(KERN_WARNING FW_BUG PREFIX
|
|
|
|
"no secondary bus range in _CRS\n");
|
2009-06-18 20:46:52 +00:00
|
|
|
status = acpi_evaluate_integer(device->handle, METHOD_NAME__BBN, NULL, &bus);
|
2010-03-11 19:20:06 +00:00
|
|
|
if (ACPI_SUCCESS(status))
|
|
|
|
root->secondary.start = bus;
|
|
|
|
else if (status == AE_NOT_FOUND)
|
|
|
|
root->secondary.start = 0;
|
|
|
|
else {
|
|
|
|
printk(KERN_ERR PREFIX "can't evaluate _BBN\n");
|
|
|
|
result = -ENODEV;
|
|
|
|
goto end;
|
2009-06-18 20:46:52 +00:00
|
|
|
}
|
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2009-06-18 20:46:52 +00:00
|
|
|
INIT_LIST_HEAD(&root->node);
|
2006-05-19 20:54:39 +00:00
|
|
|
root->device = device;
|
2009-06-18 20:47:07 +00:00
|
|
|
root->segment = segment & 0xFFFF;
|
2005-04-16 22:20:36 +00:00
|
|
|
strcpy(acpi_device_name(device), ACPI_PCI_ROOT_DEVICE_NAME);
|
|
|
|
strcpy(acpi_device_class(device), ACPI_PCI_ROOT_CLASS);
|
2008-09-22 21:37:34 +00:00
|
|
|
device->driver_data = root;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2008-11-10 22:30:45 +00:00
|
|
|
/*
|
|
|
|
* All supported architectures that use ACPI have support for
|
|
|
|
* PCI domains, so we indicate this in _OSC support capabilities.
|
|
|
|
*/
|
2008-11-10 22:30:50 +00:00
|
|
|
flags = base_flags = OSC_PCI_SEGMENT_GROUPS_SUPPORT;
|
2009-02-09 06:59:29 +00:00
|
|
|
acpi_pci_osc_support(root, flags);
|
2008-11-10 22:30:45 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
/*
|
|
|
|
* TBD: Need PCI interface for enumeration/configuration of roots.
|
|
|
|
*/
|
|
|
|
|
2005-08-05 04:44:28 +00:00
|
|
|
/* TBD: Locking */
|
|
|
|
list_add_tail(&root->node, &acpi_pci_roots);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2010-03-11 19:20:06 +00:00
|
|
|
printk(KERN_INFO PREFIX "%s [%s] (domain %04x %pR)\n",
|
2005-08-05 04:44:28 +00:00
|
|
|
acpi_device_name(device), acpi_device_bid(device),
|
2010-03-11 19:20:06 +00:00
|
|
|
root->segment, &root->secondary);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Scan the Root Bridge
|
|
|
|
* --------------------
|
|
|
|
* Must do this prior to any attempt to bind the root device, as the
|
|
|
|
* PCI namespace does not get created until this call is made (and
|
|
|
|
* thus the root bridge's pci_dev does not exist).
|
|
|
|
*/
|
2010-03-11 19:20:11 +00:00
|
|
|
root->bus = pci_acpi_scan_root(root);
|
2005-04-16 22:20:36 +00:00
|
|
|
if (!root->bus) {
|
2006-06-27 03:41:38 +00:00
|
|
|
printk(KERN_ERR PREFIX
|
|
|
|
"Bus %04x:%02x not present in PCI namespace\n",
|
2010-03-11 19:20:06 +00:00
|
|
|
root->segment, (unsigned int)root->secondary.start);
|
2005-04-16 22:20:36 +00:00
|
|
|
result = -ENODEV;
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Attach ACPI-PCI Context
|
|
|
|
* -----------------------
|
|
|
|
* Thus binding the ACPI and PCI devices.
|
|
|
|
*/
|
2009-06-10 19:55:30 +00:00
|
|
|
result = acpi_pci_bind_root(device);
|
2005-04-16 22:20:36 +00:00
|
|
|
if (result)
|
|
|
|
goto end;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* PCI Routing Table
|
|
|
|
* -----------------
|
|
|
|
* Evaluate and parse _PRT, if exists.
|
|
|
|
*/
|
2006-05-19 20:54:43 +00:00
|
|
|
status = acpi_get_handle(device->handle, METHOD_NAME__PRT, &handle);
|
2005-04-16 22:20:36 +00:00
|
|
|
if (ACPI_SUCCESS(status))
|
2009-06-10 19:55:35 +00:00
|
|
|
result = acpi_pci_irq_add_prt(device->handle, root->bus);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2006-12-21 07:21:13 +00:00
|
|
|
/*
|
|
|
|
* Scan and bind all _ADR-Based Devices
|
|
|
|
*/
|
|
|
|
list_for_each_entry(child, &device->children, node)
|
|
|
|
acpi_pci_bridge_scan(child);
|
|
|
|
|
2008-11-10 22:30:50 +00:00
|
|
|
/* Indicate support for various _OSC capabilities. */
|
|
|
|
if (pci_ext_cfg_avail(root->bus->self))
|
|
|
|
flags |= OSC_EXT_PCI_CONFIG_SUPPORT;
|
2008-11-10 22:30:55 +00:00
|
|
|
if (pcie_aspm_enabled())
|
|
|
|
flags |= OSC_ACTIVE_STATE_PWR_SUPPORT |
|
|
|
|
OSC_CLOCK_PWR_CAPABILITY_SUPPORT;
|
2008-11-10 22:31:05 +00:00
|
|
|
if (pci_msi_enabled())
|
|
|
|
flags |= OSC_MSI_SUPPORT;
|
2008-11-10 22:30:50 +00:00
|
|
|
if (flags != base_flags)
|
2009-02-09 06:59:29 +00:00
|
|
|
acpi_pci_osc_support(root, flags);
|
2008-11-10 22:30:50 +00:00
|
|
|
|
2010-02-17 22:44:09 +00:00
|
|
|
pci_acpi_add_bus_pm_notifier(device, root->bus);
|
|
|
|
if (device->wakeup.flags.run_wake)
|
|
|
|
device_set_run_wake(root->bus->bridge, true);
|
|
|
|
|
2009-06-18 20:46:52 +00:00
|
|
|
return 0;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2009-06-18 20:46:52 +00:00
|
|
|
end:
|
|
|
|
if (!list_empty(&root->node))
|
|
|
|
list_del(&root->node);
|
|
|
|
kfree(root);
|
2006-06-27 04:41:40 +00:00
|
|
|
return result;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2005-08-05 04:44:28 +00:00
|
|
|
static int acpi_pci_root_start(struct acpi_device *device)
|
2005-04-28 07:25:45 +00:00
|
|
|
{
|
2009-06-18 20:46:57 +00:00
|
|
|
struct acpi_pci_root *root = acpi_driver_data(device);
|
2005-04-28 07:25:45 +00:00
|
|
|
|
2009-06-18 20:46:57 +00:00
|
|
|
pci_bus_add_devices(root->bus);
|
|
|
|
return 0;
|
2005-04-28 07:25:45 +00:00
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-08-05 04:44:28 +00:00
|
|
|
static int acpi_pci_root_remove(struct acpi_device *device, int type)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2009-06-18 20:46:57 +00:00
|
|
|
struct acpi_pci_root *root = acpi_driver_data(device);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2010-02-17 22:44:09 +00:00
|
|
|
device_set_run_wake(root->bus->bridge, false);
|
|
|
|
pci_acpi_remove_bus_pm_notifier(device);
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
kfree(root);
|
2006-06-27 04:41:40 +00:00
|
|
|
return 0;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2005-08-05 04:44:28 +00:00
|
|
|
static int __init acpi_pci_root_init(void)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
if (acpi_pci_disabled)
|
2006-06-27 04:41:40 +00:00
|
|
|
return 0;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2010-02-23 17:24:41 +00:00
|
|
|
pci_acpi_crs_quirks();
|
2005-04-16 22:20:36 +00:00
|
|
|
if (acpi_bus_register_driver(&acpi_pci_root_driver) < 0)
|
2006-06-27 04:41:40 +00:00
|
|
|
return -ENODEV;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2006-06-27 04:41:40 +00:00
|
|
|
return 0;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
subsys_initcall(acpi_pci_root_init);
|