]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - include/asm-ppc64/pci.h
[PATCH] PCI: DMA bursting advice
[linux-2.6-omap-h63xx.git] / include / asm-ppc64 / pci.h
index 411bf5dee3943c691dcf9b58ca974cc0477e9217..20beb10c0902ddb29fc5afdd4e2b7ac314a709df 100644 (file)
@@ -78,6 +78,23 @@ static inline int pci_dac_dma_supported(struct pci_dev *hwdev,u64 mask)
        return 0;
 }
 
+static inline void pci_dma_burst_advice(struct pci_dev *pdev,
+                                       enum pci_dma_burst_strategy *strat,
+                                       unsigned long *strategy_parameter)
+{
+       unsigned long cacheline_size;
+       u8 byte;
+
+       pci_read_config_byte(pdev, PCI_CACHE_LINE_SIZE, &byte);
+       if (byte == 0)
+               cacheline_size = 1024;
+       else
+               cacheline_size = (int) byte * 4;
+
+       *strat = PCI_DMA_BURST_MULTIPLE;
+       *strategy_parameter = cacheline_size;
+}
+
 extern int pci_domain_nr(struct pci_bus *bus);
 
 /* Decide whether to display the domain number in /proc */