blob: 053ee843863c1891bc1398b968456cffd6fc31c0 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * ACPI PCI HotPlug glue functions to ACPI CA subsystem
3 *
4 * Copyright (C) 2002,2003 Takayoshi Kochi (t-kochi@bq.jp.nec.com)
5 * Copyright (C) 2002 Hiroshi Aono (h-aono@ap.jp.nec.com)
6 * Copyright (C) 2002,2003 NEC Corporation
Rajesh Shah42f49a62005-04-28 00:25:53 -07007 * Copyright (C) 2003-2005 Matthew Wilcox (matthew.wilcox@hp.com)
8 * Copyright (C) 2003-2005 Hewlett Packard
Rajesh Shah8e7561c2005-04-28 00:25:56 -07009 * Copyright (C) 2005 Rajesh Shah (rajesh.shah@intel.com)
10 * Copyright (C) 2005 Intel Corporation
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 *
12 * All rights reserved.
13 *
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2 of the License, or (at
17 * your option) any later version.
18 *
19 * This program is distributed in the hope that it will be useful, but
20 * WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
22 * NON INFRINGEMENT. See the GNU General Public License for more
23 * details.
24 *
25 * You should have received a copy of the GNU General Public License
26 * along with this program; if not, write to the Free Software
27 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
28 *
29 * Send feedback to <t-kochi@bq.jp.nec.com>
30 *
31 */
32
Rajesh Shah42f49a62005-04-28 00:25:53 -070033/*
34 * Lifetime rules for pci_dev:
35 * - The one in acpiphp_func has its refcount elevated by pci_get_slot()
36 * when the driver is loaded or when an insertion event occurs. It loses
37 * a refcount when its ejected or the driver unloads.
38 * - The one in acpiphp_bridge has its refcount elevated by pci_get_slot()
39 * when the bridge is scanned and it loses a refcount when the bridge
40 * is removed.
41 */
42
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <linux/init.h>
44#include <linux/module.h>
45
46#include <linux/kernel.h>
47#include <linux/pci.h>
48#include <linux/smp_lock.h>
Ingo Molnar6aa4cdd2006-01-13 16:02:15 +010049#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51#include "../pci.h"
52#include "pci_hotplug.h"
53#include "acpiphp.h"
54
55static LIST_HEAD(bridge_list);
56
57#define MY_NAME "acpiphp_glue"
58
59static void handle_hotplug_event_bridge (acpi_handle, u32, void *);
Kristen Accardi8e5dce32005-10-18 17:21:40 -070060static void acpiphp_sanitize_bus(struct pci_bus *bus);
61static void acpiphp_set_hpp_values(acpi_handle handle, struct pci_bus *bus);
62
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
64/*
65 * initialization & terminatation routines
66 */
67
68/**
69 * is_ejectable - determine if a slot is ejectable
70 * @handle: handle to acpi namespace
71 *
72 * Ejectable slot should satisfy at least these conditions:
73 *
74 * 1. has _ADR method
75 * 2. has _EJ0 method
76 *
77 * optionally
78 *
79 * 1. has _STA method
80 * 2. has _PS0 method
81 * 3. has _PS3 method
82 * 4. ..
83 *
84 */
85static int is_ejectable(acpi_handle handle)
86{
87 acpi_status status;
88 acpi_handle tmp;
89
90 status = acpi_get_handle(handle, "_ADR", &tmp);
91 if (ACPI_FAILURE(status)) {
92 return 0;
93 }
94
95 status = acpi_get_handle(handle, "_EJ0", &tmp);
96 if (ACPI_FAILURE(status)) {
97 return 0;
98 }
99
100 return 1;
101}
102
103
104/* callback routine to check the existence of ejectable slots */
105static acpi_status
106is_ejectable_slot(acpi_handle handle, u32 lvl, void *context, void **rv)
107{
108 int *count = (int *)context;
109
110 if (is_ejectable(handle)) {
111 (*count)++;
112 /* only one ejectable slot is enough */
113 return AE_CTRL_TERMINATE;
114 } else {
115 return AE_OK;
116 }
117}
118
119
120/* callback routine to register each ACPI PCI slot object */
121static acpi_status
122register_slot(acpi_handle handle, u32 lvl, void *context, void **rv)
123{
124 struct acpiphp_bridge *bridge = (struct acpiphp_bridge *)context;
125 struct acpiphp_slot *slot;
126 struct acpiphp_func *newfunc;
Kristen Accardi20416ea2006-02-23 17:56:03 -0800127 struct dependent_device *dd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 acpi_handle tmp;
129 acpi_status status = AE_OK;
130 unsigned long adr, sun;
MUNEDA Takahiroe27da382006-02-23 17:56:08 -0800131 int device, function, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
133 status = acpi_evaluate_integer(handle, "_ADR", NULL, &adr);
134
135 if (ACPI_FAILURE(status))
136 return AE_OK;
137
138 status = acpi_get_handle(handle, "_EJ0", &tmp);
139
Kristen Accardi20416ea2006-02-23 17:56:03 -0800140 if (ACPI_FAILURE(status) && !(is_dependent_device(handle)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 return AE_OK;
142
143 device = (adr >> 16) & 0xffff;
144 function = adr & 0xffff;
145
Eric Sesterhennf5afe802006-02-28 15:34:49 +0100146 newfunc = kzalloc(sizeof(struct acpiphp_func), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 if (!newfunc)
148 return AE_NO_MEMORY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
150 INIT_LIST_HEAD(&newfunc->sibling);
151 newfunc->handle = handle;
152 newfunc->function = function;
Kristen Accardi20416ea2006-02-23 17:56:03 -0800153 if (ACPI_SUCCESS(status))
154 newfunc->flags = FUNC_HAS_EJ0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
156 if (ACPI_SUCCESS(acpi_get_handle(handle, "_STA", &tmp)))
157 newfunc->flags |= FUNC_HAS_STA;
158
159 if (ACPI_SUCCESS(acpi_get_handle(handle, "_PS0", &tmp)))
160 newfunc->flags |= FUNC_HAS_PS0;
161
162 if (ACPI_SUCCESS(acpi_get_handle(handle, "_PS3", &tmp)))
163 newfunc->flags |= FUNC_HAS_PS3;
164
Kristen Accardi20416ea2006-02-23 17:56:03 -0800165 if (ACPI_SUCCESS(acpi_get_handle(handle, "_DCK", &tmp))) {
166 newfunc->flags |= FUNC_HAS_DCK;
167 /* add to devices dependent on dock station,
168 * because this may actually be the dock bridge
169 */
170 dd = alloc_dependent_device(handle);
171 if (!dd)
172 err("Can't allocate memory for "
173 "new dependent device!\n");
174 else
175 add_dependent_device(dd);
176 }
177
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 status = acpi_evaluate_integer(handle, "_SUN", NULL, &sun);
179 if (ACPI_FAILURE(status))
180 sun = -1;
181
182 /* search for objects that share the same slot */
183 for (slot = bridge->slots; slot; slot = slot->next)
184 if (slot->device == device) {
185 if (slot->sun != sun)
186 warn("sibling found, but _SUN doesn't match!\n");
187 break;
188 }
189
190 if (!slot) {
Eric Sesterhennf5afe802006-02-28 15:34:49 +0100191 slot = kzalloc(sizeof(struct acpiphp_slot), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 if (!slot) {
193 kfree(newfunc);
194 return AE_NO_MEMORY;
195 }
196
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 slot->bridge = bridge;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 slot->device = device;
199 slot->sun = sun;
200 INIT_LIST_HEAD(&slot->funcs);
Ingo Molnar6aa4cdd2006-01-13 16:02:15 +0100201 mutex_init(&slot->crit_sect);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
203 slot->next = bridge->slots;
204 bridge->slots = slot;
205
206 bridge->nr_slots++;
207
Rajesh Shah42f49a62005-04-28 00:25:53 -0700208 dbg("found ACPI PCI Hotplug slot %d at PCI %04x:%02x:%02x\n",
209 slot->sun, pci_domain_nr(bridge->pci_bus),
210 bridge->pci_bus->number, slot->device);
MUNEDA Takahiroe27da382006-02-23 17:56:08 -0800211 retval = acpiphp_register_hotplug_slot(slot);
212 if (retval) {
213 warn("acpiphp_register_hotplug_slot failed(err code = 0x%x)\n", retval);
214 goto err_exit;
215 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 }
217
218 newfunc->slot = slot;
219 list_add_tail(&newfunc->sibling, &slot->funcs);
220
221 /* associate corresponding pci_dev */
Rajesh Shah42f49a62005-04-28 00:25:53 -0700222 newfunc->pci_dev = pci_get_slot(bridge->pci_bus,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 PCI_DEVFN(device, function));
224 if (newfunc->pci_dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 slot->flags |= (SLOT_ENABLED | SLOT_POWEREDON);
226 }
227
Kristen Accardi20416ea2006-02-23 17:56:03 -0800228 /* if this is a device dependent on a dock station,
229 * associate the acpiphp_func to the dependent_device
230 * struct.
231 */
232 if ((dd = get_dependent_device(handle))) {
233 newfunc->flags |= FUNC_IS_DD;
234 /*
235 * we don't want any devices which is dependent
236 * on the dock to have it's _EJ0 method executed.
237 * because we need to run _DCK first.
238 */
239 newfunc->flags &= ~FUNC_HAS_EJ0;
240 dd->func = newfunc;
241 add_pci_dependent_device(dd);
242 }
243
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 /* install notify handler */
Kristen Accardi20416ea2006-02-23 17:56:03 -0800245 if (!(newfunc->flags & FUNC_HAS_DCK)) {
246 status = acpi_install_notify_handler(handle,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 ACPI_SYSTEM_NOTIFY,
248 handle_hotplug_event_func,
249 newfunc);
250
Kristen Accardi20416ea2006-02-23 17:56:03 -0800251 if (ACPI_FAILURE(status))
252 err("failed to register interrupt notify handler\n");
253 } else
254 status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Kristen Accardi20416ea2006-02-23 17:56:03 -0800256 return status;
MUNEDA Takahiroe27da382006-02-23 17:56:08 -0800257
258 err_exit:
259 bridge->nr_slots--;
260 bridge->slots = slot->next;
261 kfree(slot);
262 kfree(newfunc);
263
264 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265}
266
267
268/* see if it's worth looking at this bridge */
269static int detect_ejectable_slots(acpi_handle *bridge_handle)
270{
271 acpi_status status;
272 int count;
273
274 count = 0;
275
276 /* only check slots defined directly below bridge object */
277 status = acpi_walk_namespace(ACPI_TYPE_DEVICE, bridge_handle, (u32)1,
278 is_ejectable_slot, (void *)&count, NULL);
279
280 return count;
281}
282
283
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284/* decode ACPI 2.0 _HPP hot plug parameters */
285static void decode_hpp(struct acpiphp_bridge *bridge)
286{
287 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
Kristen Accardi783c49f2006-03-03 10:16:05 -0800289 status = acpi_get_hp_params_from_firmware(bridge->pci_dev, &bridge->hpp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 if (ACPI_FAILURE(status)) {
Kristen Accardi783c49f2006-03-03 10:16:05 -0800291 /* use default numbers */
292 bridge->hpp.cache_line_size = 0x10;
293 bridge->hpp.latency_timer = 0x40;
294 bridge->hpp.enable_serr = 0;
295 bridge->hpp.enable_perr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297}
298
299
Kristen Accardi783c49f2006-03-03 10:16:05 -0800300
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301/* initialize miscellaneous stuff for both root and PCI-to-PCI bridge */
302static void init_bridge_misc(struct acpiphp_bridge *bridge)
303{
304 acpi_status status;
305
306 /* decode ACPI 2.0 _HPP (hot plug parameters) */
307 decode_hpp(bridge);
308
MUNEDA Takahiroe27da382006-02-23 17:56:08 -0800309 /* must be added to the list prior to calling register_slot */
310 list_add(&bridge->list, &bridge_list);
311
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 /* register all slot objects under this bridge */
313 status = acpi_walk_namespace(ACPI_TYPE_DEVICE, bridge->handle, (u32)1,
314 register_slot, bridge, NULL);
MUNEDA Takahiroe27da382006-02-23 17:56:08 -0800315 if (ACPI_FAILURE(status)) {
316 list_del(&bridge->list);
317 return;
318 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
320 /* install notify handler */
Rajesh Shah8e7561c2005-04-28 00:25:56 -0700321 if (bridge->type != BRIDGE_TYPE_HOST) {
322 status = acpi_install_notify_handler(bridge->handle,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 ACPI_SYSTEM_NOTIFY,
324 handle_hotplug_event_bridge,
325 bridge);
326
Rajesh Shah8e7561c2005-04-28 00:25:56 -0700327 if (ACPI_FAILURE(status)) {
328 err("failed to register interrupt notify handler\n");
329 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331}
332
333
334/* allocate and initialize host bridge data structure */
Rajesh Shah42f49a62005-04-28 00:25:53 -0700335static void add_host_bridge(acpi_handle *handle, struct pci_bus *pci_bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 struct acpiphp_bridge *bridge;
338
Eric Sesterhennf5afe802006-02-28 15:34:49 +0100339 bridge = kzalloc(sizeof(struct acpiphp_bridge), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 if (bridge == NULL)
341 return;
342
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 bridge->type = BRIDGE_TYPE_HOST;
344 bridge->handle = handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
Rajesh Shah42f49a62005-04-28 00:25:53 -0700346 bridge->pci_bus = pci_bus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
348 spin_lock_init(&bridge->res_lock);
349
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 init_bridge_misc(bridge);
351}
352
353
354/* allocate and initialize PCI-to-PCI bridge data structure */
Rajesh Shah42f49a62005-04-28 00:25:53 -0700355static void add_p2p_bridge(acpi_handle *handle, struct pci_dev *pci_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356{
357 struct acpiphp_bridge *bridge;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
Eric Sesterhennf5afe802006-02-28 15:34:49 +0100359 bridge = kzalloc(sizeof(struct acpiphp_bridge), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 if (bridge == NULL) {
361 err("out of memory\n");
362 return;
363 }
364
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 bridge->type = BRIDGE_TYPE_P2P;
366 bridge->handle = handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
Rajesh Shah42f49a62005-04-28 00:25:53 -0700368 bridge->pci_dev = pci_dev_get(pci_dev);
369 bridge->pci_bus = pci_dev->subordinate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 if (!bridge->pci_bus) {
371 err("This is not a PCI-to-PCI bridge!\n");
Rajesh Shah42f49a62005-04-28 00:25:53 -0700372 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 }
374
375 spin_lock_init(&bridge->res_lock);
376
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 init_bridge_misc(bridge);
Rajesh Shah42f49a62005-04-28 00:25:53 -0700378 return;
379 err:
380 pci_dev_put(pci_dev);
381 kfree(bridge);
382 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383}
384
385
386/* callback routine to find P2P bridges */
387static acpi_status
388find_p2p_bridge(acpi_handle handle, u32 lvl, void *context, void **rv)
389{
390 acpi_status status;
391 acpi_handle dummy_handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 unsigned long tmp;
Rajesh Shah42f49a62005-04-28 00:25:53 -0700393 int device, function;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 struct pci_dev *dev;
Rajesh Shah42f49a62005-04-28 00:25:53 -0700395 struct pci_bus *pci_bus = context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
397 status = acpi_get_handle(handle, "_ADR", &dummy_handle);
398 if (ACPI_FAILURE(status))
399 return AE_OK; /* continue */
400
401 status = acpi_evaluate_integer(handle, "_ADR", NULL, &tmp);
402 if (ACPI_FAILURE(status)) {
403 dbg("%s: _ADR evaluation failure\n", __FUNCTION__);
404 return AE_OK;
405 }
406
407 device = (tmp >> 16) & 0xffff;
408 function = tmp & 0xffff;
409
Rajesh Shah42f49a62005-04-28 00:25:53 -0700410 dev = pci_get_slot(pci_bus, PCI_DEVFN(device, function));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
Rajesh Shah42f49a62005-04-28 00:25:53 -0700412 if (!dev || !dev->subordinate)
413 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
415 /* check if this bridge has ejectable slots */
Kristen Accardi20416ea2006-02-23 17:56:03 -0800416 if ((detect_ejectable_slots(handle) > 0) ||
417 (detect_dependent_devices(handle) > 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 dbg("found PCI-to-PCI bridge at PCI %s\n", pci_name(dev));
Rajesh Shah42f49a62005-04-28 00:25:53 -0700419 add_p2p_bridge(handle, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 }
421
Kenji Kaneshige7c8f25d2006-02-27 22:15:49 +0900422 /* search P2P bridges under this p2p bridge */
423 status = acpi_walk_namespace(ACPI_TYPE_DEVICE, handle, (u32)1,
424 find_p2p_bridge, dev->subordinate, NULL);
425 if (ACPI_FAILURE(status))
426 warn("find_p2p_bridge faied (error code = 0x%x)\n", status);
427
Rajesh Shah42f49a62005-04-28 00:25:53 -0700428 out:
429 pci_dev_put(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 return AE_OK;
431}
432
433
434/* find hot-pluggable slots, and then find P2P bridge */
435static int add_bridge(acpi_handle handle)
436{
437 acpi_status status;
438 unsigned long tmp;
439 int seg, bus;
440 acpi_handle dummy_handle;
Rajesh Shah42f49a62005-04-28 00:25:53 -0700441 struct pci_bus *pci_bus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
443 /* if the bridge doesn't have _STA, we assume it is always there */
444 status = acpi_get_handle(handle, "_STA", &dummy_handle);
445 if (ACPI_SUCCESS(status)) {
446 status = acpi_evaluate_integer(handle, "_STA", NULL, &tmp);
447 if (ACPI_FAILURE(status)) {
448 dbg("%s: _STA evaluation failure\n", __FUNCTION__);
449 return 0;
450 }
451 if ((tmp & ACPI_STA_FUNCTIONING) == 0)
452 /* don't register this object */
453 return 0;
454 }
455
456 /* get PCI segment number */
457 status = acpi_evaluate_integer(handle, "_SEG", NULL, &tmp);
458
459 seg = ACPI_SUCCESS(status) ? tmp : 0;
460
461 /* get PCI bus number */
462 status = acpi_evaluate_integer(handle, "_BBN", NULL, &tmp);
463
464 if (ACPI_SUCCESS(status)) {
465 bus = tmp;
466 } else {
467 warn("can't get bus number, assuming 0\n");
468 bus = 0;
469 }
470
Rajesh Shah42f49a62005-04-28 00:25:53 -0700471 pci_bus = pci_find_bus(seg, bus);
472 if (!pci_bus) {
473 err("Can't find bus %04x:%02x\n", seg, bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 return 0;
475 }
476
Rajesh Shah42f49a62005-04-28 00:25:53 -0700477 /* check if this bridge has ejectable slots */
478 if (detect_ejectable_slots(handle) > 0) {
479 dbg("found PCI host-bus bridge with hot-pluggable slots\n");
480 add_host_bridge(handle, pci_bus);
481 return 0;
482 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
484 /* search P2P bridges under this host bridge */
485 status = acpi_walk_namespace(ACPI_TYPE_DEVICE, handle, (u32)1,
Rajesh Shah42f49a62005-04-28 00:25:53 -0700486 find_p2p_bridge, pci_bus, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
488 if (ACPI_FAILURE(status))
489 warn("find_p2p_bridge faied (error code = 0x%x)\n",status);
490
491 return 0;
492}
493
Rajesh Shah42f49a62005-04-28 00:25:53 -0700494static struct acpiphp_bridge *acpiphp_handle_to_bridge(acpi_handle handle)
495{
496 struct list_head *head;
497 list_for_each(head, &bridge_list) {
498 struct acpiphp_bridge *bridge = list_entry(head,
499 struct acpiphp_bridge, list);
500 if (bridge->handle == handle)
501 return bridge;
502 }
503
504 return NULL;
505}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506
Rajesh Shah364d5092005-04-28 00:25:54 -0700507static void cleanup_bridge(struct acpiphp_bridge *bridge)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508{
Rajesh Shah42f49a62005-04-28 00:25:53 -0700509 struct list_head *list, *tmp;
Rajesh Shah42f49a62005-04-28 00:25:53 -0700510 struct acpiphp_slot *slot;
511 acpi_status status;
Rajesh Shah364d5092005-04-28 00:25:54 -0700512 acpi_handle handle = bridge->handle;
Rajesh Shah42f49a62005-04-28 00:25:53 -0700513
514 status = acpi_remove_notify_handler(handle, ACPI_SYSTEM_NOTIFY,
515 handle_hotplug_event_bridge);
516 if (ACPI_FAILURE(status))
517 err("failed to remove notify handler\n");
518
519 slot = bridge->slots;
520 while (slot) {
521 struct acpiphp_slot *next = slot->next;
522 list_for_each_safe (list, tmp, &slot->funcs) {
523 struct acpiphp_func *func;
524 func = list_entry(list, struct acpiphp_func, sibling);
Kristen Accardi20416ea2006-02-23 17:56:03 -0800525 if (!(func->flags & FUNC_HAS_DCK)) {
526 status = acpi_remove_notify_handler(func->handle,
Rajesh Shah42f49a62005-04-28 00:25:53 -0700527 ACPI_SYSTEM_NOTIFY,
528 handle_hotplug_event_func);
Kristen Accardi20416ea2006-02-23 17:56:03 -0800529 if (ACPI_FAILURE(status))
530 err("failed to remove notify handler\n");
531 }
Rajesh Shah42f49a62005-04-28 00:25:53 -0700532 pci_dev_put(func->pci_dev);
533 list_del(list);
534 kfree(func);
535 }
MUNEDA Takahiroe27da382006-02-23 17:56:08 -0800536 acpiphp_unregister_hotplug_slot(slot);
537 list_del(&slot->funcs);
Rajesh Shah42f49a62005-04-28 00:25:53 -0700538 kfree(slot);
539 slot = next;
540 }
541
542 pci_dev_put(bridge->pci_dev);
543 list_del(&bridge->list);
544 kfree(bridge);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545}
546
Rajesh Shah364d5092005-04-28 00:25:54 -0700547static acpi_status
548cleanup_p2p_bridge(acpi_handle handle, u32 lvl, void *context, void **rv)
549{
550 struct acpiphp_bridge *bridge;
551
552 if (!(bridge = acpiphp_handle_to_bridge(handle)))
553 return AE_OK;
554 cleanup_bridge(bridge);
555 return AE_OK;
556}
557
558static void remove_bridge(acpi_handle handle)
559{
560 struct acpiphp_bridge *bridge;
561
562 bridge = acpiphp_handle_to_bridge(handle);
563 if (bridge) {
564 cleanup_bridge(bridge);
565 } else {
566 /* clean-up p2p bridges under this host bridge */
567 acpi_walk_namespace(ACPI_TYPE_DEVICE, handle,
Kenji Kaneshige7c8f25d2006-02-27 22:15:49 +0900568 ACPI_UINT32_MAX, cleanup_p2p_bridge,
569 NULL, NULL);
Rajesh Shah364d5092005-04-28 00:25:54 -0700570 }
571}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
Kenji Kaneshigea0d399a2005-04-28 00:25:59 -0700573static struct pci_dev * get_apic_pci_info(acpi_handle handle)
574{
575 struct acpi_pci_id id;
576 struct pci_bus *bus;
577 struct pci_dev *dev;
578
579 if (ACPI_FAILURE(acpi_get_pci_id(handle, &id)))
580 return NULL;
581
582 bus = pci_find_bus(id.segment, id.bus);
583 if (!bus)
584 return NULL;
585
586 dev = pci_get_slot(bus, PCI_DEVFN(id.device, id.function));
587 if (!dev)
588 return NULL;
589
590 if ((dev->class != PCI_CLASS_SYSTEM_PIC_IOAPIC) &&
591 (dev->class != PCI_CLASS_SYSTEM_PIC_IOXAPIC))
592 {
593 pci_dev_put(dev);
594 return NULL;
595 }
596
597 return dev;
598}
599
600static int get_gsi_base(acpi_handle handle, u32 *gsi_base)
601{
602 acpi_status status;
603 int result = -1;
604 unsigned long gsb;
605 struct acpi_buffer buffer = {ACPI_ALLOCATE_BUFFER, NULL};
606 union acpi_object *obj;
607 void *table;
608
609 status = acpi_evaluate_integer(handle, "_GSB", NULL, &gsb);
610 if (ACPI_SUCCESS(status)) {
611 *gsi_base = (u32)gsb;
612 return 0;
613 }
614
615 status = acpi_evaluate_object(handle, "_MAT", NULL, &buffer);
616 if (ACPI_FAILURE(status) || !buffer.length || !buffer.pointer)
617 return -1;
618
619 obj = buffer.pointer;
620 if (obj->type != ACPI_TYPE_BUFFER)
621 goto out;
622
623 table = obj->buffer.pointer;
624 switch (((acpi_table_entry_header *)table)->type) {
625 case ACPI_MADT_IOSAPIC:
626 *gsi_base = ((struct acpi_table_iosapic *)table)->global_irq_base;
627 result = 0;
628 break;
629 case ACPI_MADT_IOAPIC:
630 *gsi_base = ((struct acpi_table_ioapic *)table)->global_irq_base;
631 result = 0;
632 break;
633 default:
634 break;
635 }
636 out:
637 acpi_os_free(buffer.pointer);
638 return result;
639}
640
641static acpi_status
642ioapic_add(acpi_handle handle, u32 lvl, void *context, void **rv)
643{
644 acpi_status status;
645 unsigned long sta;
646 acpi_handle tmp;
647 struct pci_dev *pdev;
648 u32 gsi_base;
649 u64 phys_addr;
650
651 /* Evaluate _STA if present */
652 status = acpi_evaluate_integer(handle, "_STA", NULL, &sta);
653 if (ACPI_SUCCESS(status) && sta != ACPI_STA_ALL)
654 return AE_CTRL_DEPTH;
655
656 /* Scan only PCI bus scope */
657 status = acpi_get_handle(handle, "_HID", &tmp);
658 if (ACPI_SUCCESS(status))
659 return AE_CTRL_DEPTH;
660
661 if (get_gsi_base(handle, &gsi_base))
662 return AE_OK;
663
664 pdev = get_apic_pci_info(handle);
665 if (!pdev)
666 return AE_OK;
667
668 if (pci_enable_device(pdev)) {
669 pci_dev_put(pdev);
670 return AE_OK;
671 }
672
673 pci_set_master(pdev);
674
675 if (pci_request_region(pdev, 0, "I/O APIC(acpiphp)")) {
676 pci_disable_device(pdev);
677 pci_dev_put(pdev);
678 return AE_OK;
679 }
680
681 phys_addr = pci_resource_start(pdev, 0);
682 if (acpi_register_ioapic(handle, phys_addr, gsi_base)) {
683 pci_release_region(pdev, 0);
684 pci_disable_device(pdev);
685 pci_dev_put(pdev);
686 return AE_OK;
687 }
688
689 return AE_OK;
690}
691
692static int acpiphp_configure_ioapics(acpi_handle handle)
693{
694 acpi_walk_namespace(ACPI_TYPE_DEVICE, handle,
695 ACPI_UINT32_MAX, ioapic_add, NULL, NULL);
696 return 0;
697}
698
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699static int power_on_slot(struct acpiphp_slot *slot)
700{
701 acpi_status status;
702 struct acpiphp_func *func;
703 struct list_head *l;
704 int retval = 0;
705
706 /* if already enabled, just skip */
707 if (slot->flags & SLOT_POWEREDON)
708 goto err_exit;
709
710 list_for_each (l, &slot->funcs) {
711 func = list_entry(l, struct acpiphp_func, sibling);
712
713 if (func->flags & FUNC_HAS_PS0) {
714 dbg("%s: executing _PS0\n", __FUNCTION__);
715 status = acpi_evaluate_object(func->handle, "_PS0", NULL, NULL);
716 if (ACPI_FAILURE(status)) {
717 warn("%s: _PS0 failed\n", __FUNCTION__);
718 retval = -1;
719 goto err_exit;
720 } else
721 break;
722 }
723 }
724
725 /* TBD: evaluate _STA to check if the slot is enabled */
726
727 slot->flags |= SLOT_POWEREDON;
728
729 err_exit:
730 return retval;
731}
732
733
734static int power_off_slot(struct acpiphp_slot *slot)
735{
736 acpi_status status;
737 struct acpiphp_func *func;
738 struct list_head *l;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739
740 int retval = 0;
741
742 /* if already disabled, just skip */
743 if ((slot->flags & SLOT_POWEREDON) == 0)
744 goto err_exit;
745
746 list_for_each (l, &slot->funcs) {
747 func = list_entry(l, struct acpiphp_func, sibling);
748
Rajesh Shah2f523b12005-04-28 00:25:55 -0700749 if (func->flags & FUNC_HAS_PS3) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 status = acpi_evaluate_object(func->handle, "_PS3", NULL, NULL);
751 if (ACPI_FAILURE(status)) {
752 warn("%s: _PS3 failed\n", __FUNCTION__);
753 retval = -1;
754 goto err_exit;
755 } else
756 break;
757 }
758 }
759
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 /* TBD: evaluate _STA to check if the slot is disabled */
761
762 slot->flags &= (~SLOT_POWEREDON);
763
764 err_exit:
765 return retval;
766}
767
768
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800769
770/**
771 * acpiphp_max_busnr - return the highest reserved bus number under
772 * the given bus.
773 * @bus: bus to start search with
774 *
775 */
776static unsigned char acpiphp_max_busnr(struct pci_bus *bus)
777{
778 struct list_head *tmp;
779 unsigned char max, n;
780
781 /*
782 * pci_bus_max_busnr will return the highest
783 * reserved busnr for all these children.
784 * that is equivalent to the bus->subordinate
785 * value. We don't want to use the parent's
786 * bus->subordinate value because it could have
787 * padding in it.
788 */
789 max = bus->secondary;
790
791 list_for_each(tmp, &bus->children) {
792 n = pci_bus_max_busnr(pci_bus_b(tmp));
793 if (n > max)
794 max = n;
795 }
796 return max;
797}
798
799
800
801/**
802 * get_func - get a pointer to acpiphp_func given a slot, device
803 * @slot: slot to search
804 * @dev: pci_dev struct to match.
805 *
806 * This function will increase the reference count of pci_dev,
807 * so callers should call pci_dev_put when complete.
808 *
809 */
810static struct acpiphp_func *
811get_func(struct acpiphp_slot *slot, struct pci_dev *dev)
812{
813 struct acpiphp_func *func = NULL;
814 struct pci_bus *bus = slot->bridge->pci_bus;
815 struct pci_dev *pdev;
816
817 list_for_each_entry(func, &slot->funcs, sibling) {
818 pdev = pci_get_slot(bus, PCI_DEVFN(slot->device,
819 func->function));
820 if (pdev) {
821 if (pdev == dev)
822 break;
823 pci_dev_put(pdev);
824 }
825 }
826 return func;
827}
828
829
830/**
831 * acpiphp_bus_add - add a new bus to acpi subsystem
832 * @func: acpiphp_func of the bridge
833 *
834 */
835static int acpiphp_bus_add(struct acpiphp_func *func)
836{
837 acpi_handle phandle;
838 struct acpi_device *device, *pdevice;
839 int ret_val;
840
841 acpi_get_parent(func->handle, &phandle);
842 if (acpi_bus_get_device(phandle, &pdevice)) {
843 dbg("no parent device, assuming NULL\n");
844 pdevice = NULL;
845 }
Kristen Accardi20416ea2006-02-23 17:56:03 -0800846 if (!acpi_bus_get_device(func->handle, &device)) {
847 dbg("bus exists... trim\n");
848 /* this shouldn't be in here, so remove
849 * the bus then re-add it...
850 */
851 ret_val = acpi_bus_trim(device, 1);
852 dbg("acpi_bus_trim return %x\n", ret_val);
853 }
854
855 ret_val = acpi_bus_add(&device, pdevice, func->handle,
856 ACPI_BUS_TYPE_DEVICE);
857 if (ret_val) {
858 dbg("error adding bus, %x\n",
859 -ret_val);
860 goto acpiphp_bus_add_out;
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800861 }
862 /*
863 * try to start anyway. We could have failed to add
864 * simply because this bus had previously been added
865 * on another add. Don't bother with the return value
866 * we just keep going.
867 */
868 ret_val = acpi_bus_start(device);
869
870acpiphp_bus_add_out:
871 return ret_val;
872}
873
874
875
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876/**
877 * enable_device - enable, configure a slot
878 * @slot: slot to be enabled
879 *
880 * This function should be called per *physical slot*,
881 * not per each slot object in ACPI namespace.
882 *
883 */
884static int enable_device(struct acpiphp_slot *slot)
885{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 struct pci_dev *dev;
Rajesh Shah42f49a62005-04-28 00:25:53 -0700887 struct pci_bus *bus = slot->bridge->pci_bus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 struct list_head *l;
889 struct acpiphp_func *func;
890 int retval = 0;
Rajesh Shah42f49a62005-04-28 00:25:53 -0700891 int num, max, pass;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892
893 if (slot->flags & SLOT_ENABLED)
894 goto err_exit;
895
896 /* sanity check: dev should be NULL when hot-plugged in */
Rajesh Shah42f49a62005-04-28 00:25:53 -0700897 dev = pci_get_slot(bus, PCI_DEVFN(slot->device, 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 if (dev) {
899 /* This case shouldn't happen */
900 err("pci_dev structure already exists.\n");
Rajesh Shah42f49a62005-04-28 00:25:53 -0700901 pci_dev_put(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 retval = -1;
903 goto err_exit;
904 }
905
Rajesh Shah42f49a62005-04-28 00:25:53 -0700906 num = pci_scan_slot(bus, PCI_DEVFN(slot->device, 0));
907 if (num == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 err("No new device found\n");
909 retval = -1;
910 goto err_exit;
911 }
912
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800913 max = acpiphp_max_busnr(bus);
Rajesh Shah42f49a62005-04-28 00:25:53 -0700914 for (pass = 0; pass < 2; pass++) {
915 list_for_each_entry(dev, &bus->devices, bus_list) {
916 if (PCI_SLOT(dev->devfn) != slot->device)
917 continue;
918 if (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE ||
Kristen Accardic64b5ee2005-12-14 09:37:26 -0800919 dev->hdr_type == PCI_HEADER_TYPE_CARDBUS) {
Rajesh Shah42f49a62005-04-28 00:25:53 -0700920 max = pci_scan_bridge(bus, dev, max, pass);
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800921 if (pass && dev->subordinate) {
Kristen Accardic64b5ee2005-12-14 09:37:26 -0800922 pci_bus_size_bridges(dev->subordinate);
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800923 func = get_func(slot, dev);
924 if (func) {
925 acpiphp_bus_add(func);
926 /* side effect of get_func */
927 pci_dev_put(dev);
928 }
929 }
Kristen Accardic64b5ee2005-12-14 09:37:26 -0800930 }
Rajesh Shah42f49a62005-04-28 00:25:53 -0700931 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 }
933
Rajesh Shah42f49a62005-04-28 00:25:53 -0700934 pci_bus_assign_resources(bus);
Kristen Accardi8e5dce32005-10-18 17:21:40 -0700935 acpiphp_sanitize_bus(bus);
936 pci_enable_bridges(bus);
Rajesh Shah42f49a62005-04-28 00:25:53 -0700937 pci_bus_add_devices(bus);
MUNEDA Takahiro0cccd0c2006-02-24 17:46:04 +0900938 acpiphp_set_hpp_values(slot->bridge->handle, bus);
939 acpiphp_configure_ioapics(slot->bridge->handle);
Rajesh Shah42f49a62005-04-28 00:25:53 -0700940
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 /* associate pci_dev to our representation */
942 list_for_each (l, &slot->funcs) {
943 func = list_entry(l, struct acpiphp_func, sibling);
Rajesh Shah42f49a62005-04-28 00:25:53 -0700944 func->pci_dev = pci_get_slot(bus, PCI_DEVFN(slot->device,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 func->function));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 }
947
948 slot->flags |= SLOT_ENABLED;
949
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 err_exit:
951 return retval;
952}
953
954
955/**
956 * disable_device - disable a slot
957 */
958static int disable_device(struct acpiphp_slot *slot)
959{
960 int retval = 0;
961 struct acpiphp_func *func;
962 struct list_head *l;
963
964 /* is this slot already disabled? */
965 if (!(slot->flags & SLOT_ENABLED))
966 goto err_exit;
967
968 list_for_each (l, &slot->funcs) {
969 func = list_entry(l, struct acpiphp_func, sibling);
Rajesh Shah42f49a62005-04-28 00:25:53 -0700970 if (!func->pci_dev)
971 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972
Rajesh Shah42f49a62005-04-28 00:25:53 -0700973 pci_remove_bus_device(func->pci_dev);
974 pci_dev_put(func->pci_dev);
975 func->pci_dev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 }
977
978 slot->flags &= (~SLOT_ENABLED);
979
980 err_exit:
981 return retval;
982}
983
984
985/**
986 * get_slot_status - get ACPI slot status
987 *
988 * if a slot has _STA for each function and if any one of them
989 * returned non-zero status, return it
990 *
991 * if a slot doesn't have _STA and if any one of its functions'
992 * configuration space is configured, return 0x0f as a _STA
993 *
994 * otherwise return 0
995 */
996static unsigned int get_slot_status(struct acpiphp_slot *slot)
997{
998 acpi_status status;
999 unsigned long sta = 0;
1000 u32 dvid;
1001 struct list_head *l;
1002 struct acpiphp_func *func;
1003
1004 list_for_each (l, &slot->funcs) {
1005 func = list_entry(l, struct acpiphp_func, sibling);
1006
1007 if (func->flags & FUNC_HAS_STA) {
1008 status = acpi_evaluate_integer(func->handle, "_STA", NULL, &sta);
1009 if (ACPI_SUCCESS(status) && sta)
1010 break;
1011 } else {
1012 pci_bus_read_config_dword(slot->bridge->pci_bus,
1013 PCI_DEVFN(slot->device,
1014 func->function),
1015 PCI_VENDOR_ID, &dvid);
1016 if (dvid != 0xffffffff) {
1017 sta = ACPI_STA_ALL;
1018 break;
1019 }
1020 }
1021 }
1022
1023 return (unsigned int)sta;
1024}
1025
1026/**
Rajesh Shah8d50e332005-04-28 00:25:57 -07001027 * acpiphp_eject_slot - physically eject the slot
1028 */
1029static int acpiphp_eject_slot(struct acpiphp_slot *slot)
1030{
1031 acpi_status status;
1032 struct acpiphp_func *func;
1033 struct list_head *l;
1034 struct acpi_object_list arg_list;
1035 union acpi_object arg;
1036
1037 list_for_each (l, &slot->funcs) {
1038 func = list_entry(l, struct acpiphp_func, sibling);
1039
1040 /* We don't want to call _EJ0 on non-existing functions. */
1041 if ((func->flags & FUNC_HAS_EJ0)) {
1042 /* _EJ0 method take one argument */
1043 arg_list.count = 1;
1044 arg_list.pointer = &arg;
1045 arg.type = ACPI_TYPE_INTEGER;
1046 arg.integer.value = 1;
1047
1048 status = acpi_evaluate_object(func->handle, "_EJ0", &arg_list, NULL);
1049 if (ACPI_FAILURE(status)) {
1050 warn("%s: _EJ0 failed\n", __FUNCTION__);
1051 return -1;
1052 } else
1053 break;
1054 }
1055 }
1056 return 0;
1057}
1058
1059/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 * acpiphp_check_bridge - re-enumerate devices
1061 *
1062 * Iterate over all slots under this bridge and make sure that if a
1063 * card is present they are enabled, and if not they are disabled.
1064 */
1065static int acpiphp_check_bridge(struct acpiphp_bridge *bridge)
1066{
1067 struct acpiphp_slot *slot;
1068 int retval = 0;
1069 int enabled, disabled;
1070
1071 enabled = disabled = 0;
1072
1073 for (slot = bridge->slots; slot; slot = slot->next) {
1074 unsigned int status = get_slot_status(slot);
1075 if (slot->flags & SLOT_ENABLED) {
1076 if (status == ACPI_STA_ALL)
1077 continue;
1078 retval = acpiphp_disable_slot(slot);
1079 if (retval) {
1080 err("Error occurred in disabling\n");
1081 goto err_exit;
Rajesh Shah8d50e332005-04-28 00:25:57 -07001082 } else {
1083 acpiphp_eject_slot(slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 }
1085 disabled++;
1086 } else {
1087 if (status != ACPI_STA_ALL)
1088 continue;
1089 retval = acpiphp_enable_slot(slot);
1090 if (retval) {
1091 err("Error occurred in enabling\n");
1092 goto err_exit;
1093 }
1094 enabled++;
1095 }
1096 }
1097
1098 dbg("%s: %d enabled, %d disabled\n", __FUNCTION__, enabled, disabled);
1099
1100 err_exit:
1101 return retval;
1102}
1103
Rajesh Shah8e7561c2005-04-28 00:25:56 -07001104static void program_hpp(struct pci_dev *dev, struct acpiphp_bridge *bridge)
1105{
1106 u16 pci_cmd, pci_bctl;
1107 struct pci_dev *cdev;
1108
1109 /* Program hpp values for this device */
1110 if (!(dev->hdr_type == PCI_HEADER_TYPE_NORMAL ||
1111 (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE &&
1112 (dev->class >> 8) == PCI_CLASS_BRIDGE_PCI)))
1113 return;
1114 pci_write_config_byte(dev, PCI_CACHE_LINE_SIZE,
1115 bridge->hpp.cache_line_size);
1116 pci_write_config_byte(dev, PCI_LATENCY_TIMER,
1117 bridge->hpp.latency_timer);
1118 pci_read_config_word(dev, PCI_COMMAND, &pci_cmd);
Kristen Accardi783c49f2006-03-03 10:16:05 -08001119 if (bridge->hpp.enable_serr)
Rajesh Shah8e7561c2005-04-28 00:25:56 -07001120 pci_cmd |= PCI_COMMAND_SERR;
1121 else
1122 pci_cmd &= ~PCI_COMMAND_SERR;
Kristen Accardi783c49f2006-03-03 10:16:05 -08001123 if (bridge->hpp.enable_perr)
Rajesh Shah8e7561c2005-04-28 00:25:56 -07001124 pci_cmd |= PCI_COMMAND_PARITY;
1125 else
1126 pci_cmd &= ~PCI_COMMAND_PARITY;
1127 pci_write_config_word(dev, PCI_COMMAND, pci_cmd);
1128
1129 /* Program bridge control value and child devices */
1130 if ((dev->class >> 8) == PCI_CLASS_BRIDGE_PCI) {
1131 pci_write_config_byte(dev, PCI_SEC_LATENCY_TIMER,
1132 bridge->hpp.latency_timer);
1133 pci_read_config_word(dev, PCI_BRIDGE_CONTROL, &pci_bctl);
Kristen Accardi783c49f2006-03-03 10:16:05 -08001134 if (bridge->hpp.enable_serr)
Rajesh Shah8e7561c2005-04-28 00:25:56 -07001135 pci_bctl |= PCI_BRIDGE_CTL_SERR;
1136 else
1137 pci_bctl &= ~PCI_BRIDGE_CTL_SERR;
Kristen Accardi783c49f2006-03-03 10:16:05 -08001138 if (bridge->hpp.enable_perr)
Rajesh Shah8e7561c2005-04-28 00:25:56 -07001139 pci_bctl |= PCI_BRIDGE_CTL_PARITY;
1140 else
1141 pci_bctl &= ~PCI_BRIDGE_CTL_PARITY;
1142 pci_write_config_word(dev, PCI_BRIDGE_CONTROL, pci_bctl);
1143 if (dev->subordinate) {
1144 list_for_each_entry(cdev, &dev->subordinate->devices,
1145 bus_list)
1146 program_hpp(cdev, bridge);
1147 }
1148 }
1149}
1150
1151static void acpiphp_set_hpp_values(acpi_handle handle, struct pci_bus *bus)
1152{
1153 struct acpiphp_bridge bridge;
1154 struct pci_dev *dev;
1155
1156 memset(&bridge, 0, sizeof(bridge));
1157 bridge.handle = handle;
Kristen Accardi783c49f2006-03-03 10:16:05 -08001158 bridge.pci_dev = bus->self;
Rajesh Shah8e7561c2005-04-28 00:25:56 -07001159 decode_hpp(&bridge);
1160 list_for_each_entry(dev, &bus->devices, bus_list)
1161 program_hpp(dev, &bridge);
1162
1163}
1164
1165/*
1166 * Remove devices for which we could not assign resources, call
1167 * arch specific code to fix-up the bus
1168 */
1169static void acpiphp_sanitize_bus(struct pci_bus *bus)
1170{
1171 struct pci_dev *dev;
1172 int i;
1173 unsigned long type_mask = IORESOURCE_IO | IORESOURCE_MEM;
1174
1175 list_for_each_entry(dev, &bus->devices, bus_list) {
1176 for (i=0; i<PCI_BRIDGE_RESOURCES; i++) {
1177 struct resource *res = &dev->resource[i];
1178 if ((res->flags & type_mask) && !res->start &&
1179 res->end) {
1180 /* Could not assign a required resources
1181 * for this device, remove it */
1182 pci_remove_bus_device(dev);
1183 break;
1184 }
1185 }
1186 }
1187}
1188
1189/* Program resources in newly inserted bridge */
1190static int acpiphp_configure_bridge (acpi_handle handle)
1191{
1192 struct acpi_pci_id pci_id;
1193 struct pci_bus *bus;
1194
1195 if (ACPI_FAILURE(acpi_get_pci_id(handle, &pci_id))) {
1196 err("cannot get PCI domain and bus number for bridge\n");
1197 return -EINVAL;
1198 }
1199 bus = pci_find_bus(pci_id.segment, pci_id.bus);
1200 if (!bus) {
1201 err("cannot find bus %d:%d\n",
1202 pci_id.segment, pci_id.bus);
1203 return -EINVAL;
1204 }
1205
1206 pci_bus_size_bridges(bus);
1207 pci_bus_assign_resources(bus);
1208 acpiphp_sanitize_bus(bus);
1209 acpiphp_set_hpp_values(handle, bus);
1210 pci_enable_bridges(bus);
Kenji Kaneshigea0d399a2005-04-28 00:25:59 -07001211 acpiphp_configure_ioapics(handle);
Rajesh Shah8e7561c2005-04-28 00:25:56 -07001212 return 0;
1213}
1214
1215static void handle_bridge_insertion(acpi_handle handle, u32 type)
1216{
1217 struct acpi_device *device, *pdevice;
1218 acpi_handle phandle;
1219
1220 if ((type != ACPI_NOTIFY_BUS_CHECK) &&
1221 (type != ACPI_NOTIFY_DEVICE_CHECK)) {
1222 err("unexpected notification type %d\n", type);
1223 return;
1224 }
1225
1226 acpi_get_parent(handle, &phandle);
1227 if (acpi_bus_get_device(phandle, &pdevice)) {
1228 dbg("no parent device, assuming NULL\n");
1229 pdevice = NULL;
1230 }
1231 if (acpi_bus_add(&device, pdevice, handle, ACPI_BUS_TYPE_DEVICE)) {
1232 err("cannot add bridge to acpi list\n");
1233 return;
1234 }
1235 if (!acpiphp_configure_bridge(handle) &&
1236 !acpi_bus_start(device))
1237 add_bridge(handle);
1238 else
1239 err("cannot configure and start bridge\n");
1240
1241}
1242
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243/*
1244 * ACPI event handlers
1245 */
1246
1247/**
1248 * handle_hotplug_event_bridge - handle ACPI event on bridges
1249 *
1250 * @handle: Notify()'ed acpi_handle
1251 * @type: Notify code
1252 * @context: pointer to acpiphp_bridge structure
1253 *
1254 * handles ACPI event notification on {host,p2p} bridges
1255 *
1256 */
1257static void handle_hotplug_event_bridge(acpi_handle handle, u32 type, void *context)
1258{
1259 struct acpiphp_bridge *bridge;
1260 char objname[64];
1261 struct acpi_buffer buffer = { .length = sizeof(objname),
1262 .pointer = objname };
Rajesh Shah8e7561c2005-04-28 00:25:56 -07001263 struct acpi_device *device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264
Rajesh Shah8e7561c2005-04-28 00:25:56 -07001265 if (acpi_bus_get_device(handle, &device)) {
1266 /* This bridge must have just been physically inserted */
1267 handle_bridge_insertion(handle, type);
1268 return;
1269 }
1270
1271 bridge = acpiphp_handle_to_bridge(handle);
1272 if (!bridge) {
1273 err("cannot get bridge info\n");
1274 return;
1275 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276
1277 acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer);
1278
1279 switch (type) {
1280 case ACPI_NOTIFY_BUS_CHECK:
1281 /* bus re-enumerate */
1282 dbg("%s: Bus check notify on %s\n", __FUNCTION__, objname);
1283 acpiphp_check_bridge(bridge);
1284 break;
1285
1286 case ACPI_NOTIFY_DEVICE_CHECK:
1287 /* device check */
1288 dbg("%s: Device check notify on %s\n", __FUNCTION__, objname);
1289 acpiphp_check_bridge(bridge);
1290 break;
1291
1292 case ACPI_NOTIFY_DEVICE_WAKE:
1293 /* wake event */
1294 dbg("%s: Device wake notify on %s\n", __FUNCTION__, objname);
1295 break;
1296
1297 case ACPI_NOTIFY_EJECT_REQUEST:
1298 /* request device eject */
1299 dbg("%s: Device eject notify on %s\n", __FUNCTION__, objname);
1300 break;
1301
1302 case ACPI_NOTIFY_FREQUENCY_MISMATCH:
1303 printk(KERN_ERR "Device %s cannot be configured due"
1304 " to a frequency mismatch\n", objname);
1305 break;
1306
1307 case ACPI_NOTIFY_BUS_MODE_MISMATCH:
1308 printk(KERN_ERR "Device %s cannot be configured due"
1309 " to a bus mode mismatch\n", objname);
1310 break;
1311
1312 case ACPI_NOTIFY_POWER_FAULT:
1313 printk(KERN_ERR "Device %s has suffered a power fault\n",
1314 objname);
1315 break;
1316
1317 default:
1318 warn("notify_handler: unknown event type 0x%x for %s\n", type, objname);
1319 break;
1320 }
1321}
1322
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323/**
1324 * handle_hotplug_event_func - handle ACPI event on functions (i.e. slots)
1325 *
1326 * @handle: Notify()'ed acpi_handle
1327 * @type: Notify code
1328 * @context: pointer to acpiphp_func structure
1329 *
1330 * handles ACPI event notification on slots
1331 *
1332 */
Kristen Accardi20416ea2006-02-23 17:56:03 -08001333void handle_hotplug_event_func(acpi_handle handle, u32 type, void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334{
1335 struct acpiphp_func *func;
1336 char objname[64];
1337 struct acpi_buffer buffer = { .length = sizeof(objname),
1338 .pointer = objname };
1339
1340 acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer);
1341
1342 func = (struct acpiphp_func *)context;
1343
1344 switch (type) {
1345 case ACPI_NOTIFY_BUS_CHECK:
1346 /* bus re-enumerate */
1347 dbg("%s: Bus check notify on %s\n", __FUNCTION__, objname);
1348 acpiphp_enable_slot(func->slot);
1349 break;
1350
1351 case ACPI_NOTIFY_DEVICE_CHECK:
1352 /* device check : re-enumerate from parent bus */
1353 dbg("%s: Device check notify on %s\n", __FUNCTION__, objname);
1354 acpiphp_check_bridge(func->slot->bridge);
1355 break;
1356
1357 case ACPI_NOTIFY_DEVICE_WAKE:
1358 /* wake event */
1359 dbg("%s: Device wake notify on %s\n", __FUNCTION__, objname);
1360 break;
1361
1362 case ACPI_NOTIFY_EJECT_REQUEST:
1363 /* request device eject */
1364 dbg("%s: Device eject notify on %s\n", __FUNCTION__, objname);
Rajesh Shah8d50e332005-04-28 00:25:57 -07001365 if (!(acpiphp_disable_slot(func->slot)))
1366 acpiphp_eject_slot(func->slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 break;
1368
1369 default:
1370 warn("notify_handler: unknown event type 0x%x for %s\n", type, objname);
1371 break;
1372 }
1373}
1374
Rajesh Shah8e7561c2005-04-28 00:25:56 -07001375
1376static acpi_status
1377find_root_bridges(acpi_handle handle, u32 lvl, void *context, void **rv)
1378{
1379 int *count = (int *)context;
1380
Kristen Accardi783c49f2006-03-03 10:16:05 -08001381 if (acpi_root_bridge(handle)) {
Rajesh Shah8e7561c2005-04-28 00:25:56 -07001382 acpi_install_notify_handler(handle, ACPI_SYSTEM_NOTIFY,
1383 handle_hotplug_event_bridge, NULL);
1384 (*count)++;
1385 }
1386 return AE_OK ;
1387}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388
1389static struct acpi_pci_driver acpi_pci_hp_driver = {
1390 .add = add_bridge,
1391 .remove = remove_bridge,
1392};
1393
1394/**
1395 * acpiphp_glue_init - initializes all PCI hotplug - ACPI glue data structures
1396 *
1397 */
1398int __init acpiphp_glue_init(void)
1399{
Rajesh Shah8e7561c2005-04-28 00:25:56 -07001400 int num = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401
Rajesh Shah8e7561c2005-04-28 00:25:56 -07001402 acpi_walk_namespace(ACPI_TYPE_DEVICE, ACPI_ROOT_OBJECT,
1403 ACPI_UINT32_MAX, find_root_bridges, &num, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404
1405 if (num <= 0)
1406 return -1;
Rajesh Shah8e7561c2005-04-28 00:25:56 -07001407 else
1408 acpi_pci_register_driver(&acpi_pci_hp_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409
1410 return 0;
1411}
1412
1413
1414/**
1415 * acpiphp_glue_exit - terminates all PCI hotplug - ACPI glue data structures
1416 *
1417 * This function frees all data allocated in acpiphp_glue_init()
1418 */
1419void __exit acpiphp_glue_exit(void)
1420{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 acpi_pci_unregister_driver(&acpi_pci_hp_driver);
1422}
1423
1424
1425/**
1426 * acpiphp_get_num_slots - count number of slots in a system
1427 */
1428int __init acpiphp_get_num_slots(void)
1429{
1430 struct list_head *node;
1431 struct acpiphp_bridge *bridge;
1432 int num_slots;
1433
1434 num_slots = 0;
1435
1436 list_for_each (node, &bridge_list) {
1437 bridge = (struct acpiphp_bridge *)node;
Rajesh Shah42f49a62005-04-28 00:25:53 -07001438 dbg("Bus %04x:%02x has %d slot%s\n",
1439 pci_domain_nr(bridge->pci_bus),
1440 bridge->pci_bus->number, bridge->nr_slots,
1441 bridge->nr_slots == 1 ? "" : "s");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 num_slots += bridge->nr_slots;
1443 }
1444
Rajesh Shah42f49a62005-04-28 00:25:53 -07001445 dbg("Total %d slots\n", num_slots);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 return num_slots;
1447}
1448
1449
1450#if 0
1451/**
1452 * acpiphp_for_each_slot - call function for each slot
1453 * @fn: callback function
1454 * @data: context to be passed to callback function
1455 *
1456 */
1457static int acpiphp_for_each_slot(acpiphp_callback fn, void *data)
1458{
1459 struct list_head *node;
1460 struct acpiphp_bridge *bridge;
1461 struct acpiphp_slot *slot;
1462 int retval = 0;
1463
1464 list_for_each (node, &bridge_list) {
1465 bridge = (struct acpiphp_bridge *)node;
1466 for (slot = bridge->slots; slot; slot = slot->next) {
1467 retval = fn(slot, data);
1468 if (!retval)
1469 goto err_exit;
1470 }
1471 }
1472
1473 err_exit:
1474 return retval;
1475}
1476#endif
1477
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478
1479/**
1480 * acpiphp_enable_slot - power on slot
1481 */
1482int acpiphp_enable_slot(struct acpiphp_slot *slot)
1483{
1484 int retval;
1485
Ingo Molnar6aa4cdd2006-01-13 16:02:15 +01001486 mutex_lock(&slot->crit_sect);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487
1488 /* wake up all functions */
1489 retval = power_on_slot(slot);
1490 if (retval)
1491 goto err_exit;
1492
1493 if (get_slot_status(slot) == ACPI_STA_ALL)
1494 /* configure all functions */
1495 retval = enable_device(slot);
1496
1497 err_exit:
Ingo Molnar6aa4cdd2006-01-13 16:02:15 +01001498 mutex_unlock(&slot->crit_sect);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 return retval;
1500}
1501
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502/**
1503 * acpiphp_disable_slot - power off slot
1504 */
1505int acpiphp_disable_slot(struct acpiphp_slot *slot)
1506{
1507 int retval = 0;
1508
Ingo Molnar6aa4cdd2006-01-13 16:02:15 +01001509 mutex_lock(&slot->crit_sect);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510
1511 /* unconfigure all functions */
1512 retval = disable_device(slot);
1513 if (retval)
1514 goto err_exit;
1515
1516 /* power off all functions */
1517 retval = power_off_slot(slot);
1518 if (retval)
1519 goto err_exit;
1520
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 err_exit:
Ingo Molnar6aa4cdd2006-01-13 16:02:15 +01001522 mutex_unlock(&slot->crit_sect);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 return retval;
1524}
1525
1526
1527/*
1528 * slot enabled: 1
1529 * slot disabled: 0
1530 */
1531u8 acpiphp_get_power_status(struct acpiphp_slot *slot)
1532{
Rajesh Shah8d50e332005-04-28 00:25:57 -07001533 return (slot->flags & SLOT_POWEREDON);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534}
1535
1536
1537/*
1538 * latch closed: 1
1539 * latch open: 0
1540 */
1541u8 acpiphp_get_latch_status(struct acpiphp_slot *slot)
1542{
1543 unsigned int sta;
1544
1545 sta = get_slot_status(slot);
1546
1547 return (sta & ACPI_STA_SHOW_IN_UI) ? 1 : 0;
1548}
1549
1550
1551/*
1552 * adapter presence : 1
1553 * absence : 0
1554 */
1555u8 acpiphp_get_adapter_status(struct acpiphp_slot *slot)
1556{
1557 unsigned int sta;
1558
1559 sta = get_slot_status(slot);
1560
1561 return (sta == 0) ? 0 : 1;
1562}
1563
1564
1565/*
1566 * pci address (seg/bus/dev)
1567 */
1568u32 acpiphp_get_address(struct acpiphp_slot *slot)
1569{
1570 u32 address;
Rajesh Shah42f49a62005-04-28 00:25:53 -07001571 struct pci_bus *pci_bus = slot->bridge->pci_bus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572
Rajesh Shah42f49a62005-04-28 00:25:53 -07001573 address = (pci_domain_nr(pci_bus) << 16) |
1574 (pci_bus->number << 8) |
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 slot->device;
1576
1577 return address;
1578}