aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/pci/pci-acpi.c
diff options
context:
space:
mode:
authorAndrew Patterson <andrew.patterson@hp.com>2008-11-10 17:30:45 -0500
committerJesse Barnes <jbarnes@virtuousgeek.org>2009-01-07 14:12:27 -0500
commit990a7ac5645883a833a11b900bb6f25b65dea65b (patch)
tree8644b7da9b41069d873d2b4dbe600bc5a828347d /drivers/pci/pci-acpi.c
parent8b62091e20215730be1b94b7cd135a78a3e692ca (diff)
ACPI/PCI: call _OSC support during root bridge discovery
Add pci_acpi_osc_support() and call it when a PCI bridge is added. This allows us to avoid having every individual PCI root bridge driver call _OSC support for every root bridge in their probe functions, a significant savings in boot time. Signed-off-by: Matthew Wilcox <willy@linux.intel.com> Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Diffstat (limited to 'drivers/pci/pci-acpi.c')
-rw-r--r--drivers/pci/pci-acpi.c24
1 files changed, 19 insertions, 5 deletions
diff --git a/drivers/pci/pci-acpi.c b/drivers/pci/pci-acpi.c
index 2ed3f10d0860..8a1f02c3c915 100644
--- a/drivers/pci/pci-acpi.c
+++ b/drivers/pci/pci-acpi.c
@@ -143,28 +143,42 @@ static acpi_status __acpi_query_osc(u32 flags, struct acpi_osc_data *osc_data,
143 return status; 143 return status;
144} 144}
145 145
146static acpi_status acpi_query_osc(acpi_handle handle, 146/*
147 u32 level, void *context, void **retval) 147 * pci_acpi_osc_support: Invoke _OSC indicating support for the given feature
148 * @flags: Bitmask of flags to support
149 *
150 * See the ACPI spec for the definition of the flags
151 */
152int pci_acpi_osc_support(acpi_handle handle, u32 flags)
148{ 153{
154 u32 dummy;
149 acpi_status status; 155 acpi_status status;
150 struct acpi_osc_data *osc_data;
151 u32 flags = (unsigned long)context, dummy;
152 acpi_handle tmp; 156 acpi_handle tmp;
157 struct acpi_osc_data *osc_data;
158 int rc = 0;
153 159
154 status = acpi_get_handle(handle, "_OSC", &tmp); 160 status = acpi_get_handle(handle, "_OSC", &tmp);
155 if (ACPI_FAILURE(status)) 161 if (ACPI_FAILURE(status))
156 return AE_OK; 162 return -ENOTTY;
157 163
158 mutex_lock(&pci_acpi_lock); 164 mutex_lock(&pci_acpi_lock);
159 osc_data = acpi_get_osc_data(handle); 165 osc_data = acpi_get_osc_data(handle);
160 if (!osc_data) { 166 if (!osc_data) {
161 printk(KERN_ERR "acpi osc data array is full\n"); 167 printk(KERN_ERR "acpi osc data array is full\n");
168 rc = -ENOMEM;
162 goto out; 169 goto out;
163 } 170 }
164 171
165 __acpi_query_osc(flags, osc_data, &dummy); 172 __acpi_query_osc(flags, osc_data, &dummy);
166out: 173out:
167 mutex_unlock(&pci_acpi_lock); 174 mutex_unlock(&pci_acpi_lock);
175 return rc;
176}
177
178static acpi_status acpi_query_osc(acpi_handle handle, u32 level,
179 void *context, void **retval)
180{
181 pci_acpi_osc_support(handle, (unsigned long)context);
168 return AE_OK; 182 return AE_OK;
169} 183}
170 184