pci.h 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. #ifndef ASMARM_PCI_H
  2. #define ASMARM_PCI_H
  3. #ifdef __KERNEL__
  4. #include <asm-generic/pci-dma-compat.h>
  5. #include <mach/hardware.h> /* for PCIBIOS_MIN_* */
  6. #ifdef CONFIG_PCI_HOST_ITE8152
  7. /* ITE bridge requires setting latency timer to avoid early bus access
  8. termination by PIC bus mater devices
  9. */
  10. extern void pcibios_set_master(struct pci_dev *dev);
  11. #else
  12. static inline void pcibios_set_master(struct pci_dev *dev)
  13. {
  14. /* No special bus mastering setup handling */
  15. }
  16. #endif
  17. static inline void pcibios_penalize_isa_irq(int irq, int active)
  18. {
  19. /* We don't do dynamic PCI IRQ allocation */
  20. }
  21. /*
  22. * The PCI address space does equal the physical memory address space.
  23. * The networking and block device layers use this boolean for bounce
  24. * buffer decisions.
  25. */
  26. #define PCI_DMA_BUS_IS_PHYS (1)
  27. #ifdef CONFIG_PCI
  28. static inline void pci_dma_burst_advice(struct pci_dev *pdev,
  29. enum pci_dma_burst_strategy *strat,
  30. unsigned long *strategy_parameter)
  31. {
  32. *strat = PCI_DMA_BURST_INFINITY;
  33. *strategy_parameter = ~0UL;
  34. }
  35. #endif
  36. #define HAVE_PCI_MMAP
  37. extern int pci_mmap_page_range(struct pci_dev *dev, struct vm_area_struct *vma,
  38. enum pci_mmap_state mmap_state, int write_combine);
  39. extern void
  40. pcibios_resource_to_bus(struct pci_dev *dev, struct pci_bus_region *region,
  41. struct resource *res);
  42. extern void
  43. pcibios_bus_to_resource(struct pci_dev *dev, struct resource *res,
  44. struct pci_bus_region *region);
  45. /*
  46. * Dummy implementation; always return 0.
  47. */
  48. static inline int pci_get_legacy_ide_irq(struct pci_dev *dev, int channel)
  49. {
  50. return 0;
  51. }
  52. #endif /* __KERNEL__ */
  53. #endif