pci.h 810 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /*
  2. * linux/include/asm-generic/pci.h
  3. *
  4. * Copyright (C) 2003 Russell King
  5. */
  6. #ifndef _ASM_GENERIC_PCI_H
  7. #define _ASM_GENERIC_PCI_H
  8. static inline struct resource *
  9. pcibios_select_root(struct pci_dev *pdev, struct resource *res)
  10. {
  11. struct resource *root = NULL;
  12. if (res->flags & IORESOURCE_IO)
  13. root = &ioport_resource;
  14. if (res->flags & IORESOURCE_MEM)
  15. root = &iomem_resource;
  16. return root;
  17. }
  18. #ifndef HAVE_ARCH_PCI_GET_LEGACY_IDE_IRQ
  19. static inline int pci_get_legacy_ide_irq(struct pci_dev *dev, int channel)
  20. {
  21. return channel ? 15 : 14;
  22. }
  23. #endif /* HAVE_ARCH_PCI_GET_LEGACY_IDE_IRQ */
  24. /*
  25. * By default, assume that no iommu is in use and that the PCI
  26. * space is mapped to address physical 0.
  27. */
  28. #ifndef PCI_DMA_BUS_IS_PHYS
  29. #define PCI_DMA_BUS_IS_PHYS (1)
  30. #endif
  31. #endif /* _ASM_GENERIC_PCI_H */