aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/include/linux/dma-noncoherent.h
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@lst.de>2019-06-03 08:43:51 +0200
committerChristoph Hellwig <hch@lst.de>2019-06-03 16:00:08 +0200
commitc30700db9eaabb35e0b123301df35a6846e6b6b4 (patch)
tree96e4e6018c0b6e92289aee5093082c6322ab7abf /include/linux/dma-noncoherent.h
parentau1100fb: fix DMA API abuse (diff)
downloadwireguard-linux-c30700db9eaabb35e0b123301df35a6846e6b6b4.tar.xz
wireguard-linux-c30700db9eaabb35e0b123301df35a6846e6b6b4.zip
dma-direct: provide generic support for uncached kernel segments
A few architectures support uncached kernel segments. In that case we get an uncached mapping for a given physica address by using an offset in the uncached segement. Implement support for this scheme in the generic dma-direct code instead of duplicating it in arch hooks. Signed-off-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'include/linux/dma-noncoherent.h')
-rw-r--r--include/linux/dma-noncoherent.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/linux/dma-noncoherent.h b/include/linux/dma-noncoherent.h
index 9741767e400f..7e0126a04e02 100644
--- a/include/linux/dma-noncoherent.h
+++ b/include/linux/dma-noncoherent.h
@@ -80,4 +80,7 @@ static inline void arch_dma_prep_coherent(struct page *page, size_t size)
}
#endif /* CONFIG_ARCH_HAS_DMA_PREP_COHERENT */
+void *uncached_kernel_address(void *addr);
+void *cached_kernel_address(void *addr);
+
#endif /* _LINUX_DMA_NONCOHERENT_H */