pci-acpi.h 870 字节
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10
/*
 * File		pci-acpi.h
 *
 * Copyright (C) 2004 Intel
 * Copyright (C) Tom Long Nguyen (tom.l.nguyen@intel.com)
 */

#ifndef _PCI_ACPI_H_
#define _PCI_ACPI_H_

11 12
#include <linux/acpi.h>

L
Linus Torvalds 已提交
13
#ifdef CONFIG_ACPI
14 15 16 17 18 19 20 21 22
static inline acpi_handle acpi_find_root_bridge_handle(struct pci_dev *pdev)
{
	/* Find root host bridge */
	while (pdev->bus->self)
		pdev = pdev->bus->self;

	return acpi_get_pci_rootbridge_handle(pci_domain_nr(pdev->bus),
			pdev->bus->number);
}
23 24 25 26 27 28 29 30 31

static inline acpi_handle acpi_pci_get_bridge_handle(struct pci_bus *pbus)
{
	int seg = pci_domain_nr(pbus), busnr = pbus->number;
	struct pci_dev *bridge = pbus->self;
	if (bridge)
		return DEVICE_ACPI_HANDLE(&(bridge->dev));
	return acpi_get_pci_rootbridge_handle(seg, busnr);
}
L
Linus Torvalds 已提交
32
#else
33 34
static inline acpi_handle acpi_find_root_bridge_handle(struct pci_dev *pdev)
{ return NULL; }
L
Linus Torvalds 已提交
35 36 37
#endif

#endif	/* _PCI_ACPI_H_ */