blob: 092e82e0048c969e7b54b17dbd6dcd548969bb6c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * File pci-acpi.h
3 *
4 * Copyright (C) 2004 Intel
5 * Copyright (C) Tom Long Nguyen (tom.l.nguyen@intel.com)
6 */
7
8#ifndef _PCI_ACPI_H_
9#define _PCI_ACPI_H_
10
Andrew Patterson8b620912008-11-10 15:30:40 -070011#include <linux/acpi.h>
12
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#ifdef CONFIG_ACPI
Jiri Slaby056c58e2008-08-18 20:22:54 +020014static inline acpi_handle acpi_find_root_bridge_handle(struct pci_dev *pdev)
15{
Kenji Kaneshiged18690a2009-02-17 14:12:36 +090016 struct pci_bus *pbus = pdev->bus;
17 /* Find a PCI root bus */
18 while (pbus->parent)
19 pbus = pbus->parent;
20 return acpi_get_pci_rootbridge_handle(pci_domain_nr(pbus),
21 pbus->number);
Jiri Slaby056c58e2008-08-18 20:22:54 +020022}
Kenji Kaneshigee8c331e2008-12-17 12:09:12 +090023
24static inline acpi_handle acpi_pci_get_bridge_handle(struct pci_bus *pbus)
25{
Kenji Kaneshige0747aaf2009-02-17 14:11:56 +090026 if (pbus->parent)
27 return DEVICE_ACPI_HANDLE(&(pbus->self->dev));
28 return acpi_get_pci_rootbridge_handle(pci_domain_nr(pbus),
29 pbus->number);
Kenji Kaneshigee8c331e2008-12-17 12:09:12 +090030}
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#else
Jiri Slaby056c58e2008-08-18 20:22:54 +020032static inline acpi_handle acpi_find_root_bridge_handle(struct pci_dev *pdev)
33{ return NULL; }
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#endif
35
36#endif /* _PCI_ACPI_H_ */