diff options
Diffstat (limited to 'include/asm-parisc/pci.h')
-rw-r--r-- | include/asm-parisc/pci.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/include/asm-parisc/pci.h b/include/asm-parisc/pci.h index 0763c2982fb0..f9f5bf90111d 100644 --- a/include/asm-parisc/pci.h +++ b/include/asm-parisc/pci.h | |||
@@ -230,6 +230,23 @@ extern inline void pcibios_register_hba(struct pci_hba_data *x) | |||
230 | /* export the pci_ DMA API in terms of the dma_ one */ | 230 | /* export the pci_ DMA API in terms of the dma_ one */ |
231 | #include <asm-generic/pci-dma-compat.h> | 231 | #include <asm-generic/pci-dma-compat.h> |
232 | 232 | ||
233 | static inline void pci_dma_burst_advice(struct pci_dev *pdev, | ||
234 | enum pci_dma_burst_strategy *strat, | ||
235 | unsigned long *strategy_parameter) | ||
236 | { | ||
237 | unsigned long cacheline_size; | ||
238 | u8 byte; | ||
239 | |||
240 | pci_read_config_byte(pdev, PCI_CACHE_LINE_SIZE, &byte); | ||
241 | if (byte == 0) | ||
242 | cacheline_size = 1024; | ||
243 | else | ||
244 | cacheline_size = (int) byte * 4; | ||
245 | |||
246 | *strat = PCI_DMA_BURST_MULTIPLE; | ||
247 | *strategy_parameter = cacheline_size; | ||
248 | } | ||
249 | |||
233 | extern void | 250 | extern void |
234 | pcibios_resource_to_bus(struct pci_dev *dev, struct pci_bus_region *region, | 251 | pcibios_resource_to_bus(struct pci_dev *dev, struct pci_bus_region *region, |
235 | struct resource *res); | 252 | struct resource *res); |