1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * DMA coherent memory allocation.
5 * Copyright (C) 2002 - 2005 Tensilica Inc.
6 * Copyright (C) 2015 Cadence Design Systems Inc.
8 * Based on version for i386.
10 * Chris Zankel <chris@zankel.net>
11 * Joe Taylor <joe@tensilica.com, joetylr@yahoo.com>
14 #include <linux/dma-contiguous.h>
15 #include <linux/dma-noncoherent.h>
16 #include <linux/dma-direct.h>
17 #include <linux/gfp.h>
18 #include <linux/highmem.h>
20 #include <linux/types.h>
21 #include <asm/cacheflush.h>
23 #include <asm/platform.h>
25 static void do_cache_op(phys_addr_t paddr
, size_t size
,
26 void (*fn
)(unsigned long, unsigned long))
28 unsigned long off
= paddr
& (PAGE_SIZE
- 1);
29 unsigned long pfn
= PFN_DOWN(paddr
);
30 struct page
*page
= pfn_to_page(pfn
);
32 if (!PageHighMem(page
))
33 fn((unsigned long)phys_to_virt(paddr
), size
);
36 size_t sz
= min_t(size_t, size
, PAGE_SIZE
- off
);
37 void *vaddr
= kmap_atomic(page
);
39 fn((unsigned long)vaddr
+ off
, sz
);
47 void arch_sync_dma_for_cpu(phys_addr_t paddr
, size_t size
,
48 enum dma_data_direction dir
)
51 case DMA_BIDIRECTIONAL
:
53 do_cache_op(paddr
, size
, __invalidate_dcache_range
);
65 void arch_sync_dma_for_device(phys_addr_t paddr
, size_t size
,
66 enum dma_data_direction dir
)
69 case DMA_BIDIRECTIONAL
:
71 if (XCHAL_DCACHE_IS_WRITEBACK
)
72 do_cache_op(paddr
, size
, __flush_dcache_range
);
84 void arch_dma_prep_coherent(struct page
*page
, size_t size
)
86 __invalidate_dcache_range((unsigned long)page_address(page
), size
);
90 * Memory caching is platform-dependent in noMMU xtensa configurations.
91 * The following two functions should be implemented in platform code
92 * in order to enable coherent DMA memory operations when CONFIG_MMU is not
96 void *uncached_kernel_address(void *p
)
98 return p
+ XCHAL_KSEG_BYPASS_VADDR
- XCHAL_KSEG_CACHED_VADDR
;
101 void *cached_kernel_address(void *p
)
103 return p
+ XCHAL_KSEG_CACHED_VADDR
- XCHAL_KSEG_BYPASS_VADDR
;
105 #endif /* CONFIG_MMU */