WIP FPC-III support
[linux/fpc-iii.git] / arch / arm64 / lib / uaccess_flushcache.c
blobc83bb5a4aad2c53ed2cc32029f34d50fdd97e1ed
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3 * Copyright (C) 2017 ARM Ltd.
4 */
6 #include <linux/uaccess.h>
7 #include <asm/barrier.h>
8 #include <asm/cacheflush.h>
10 void memcpy_flushcache(void *dst, const void *src, size_t cnt)
13 * We assume this should not be called with @dst pointing to
14 * non-cacheable memory, such that we don't need an explicit
15 * barrier to order the cache maintenance against the memcpy.
17 memcpy(dst, src, cnt);
18 __clean_dcache_area_pop(dst, cnt);
20 EXPORT_SYMBOL_GPL(memcpy_flushcache);
22 void memcpy_page_flushcache(char *to, struct page *page, size_t offset,
23 size_t len)
25 memcpy_flushcache(to, page_address(page) + offset, len);
28 unsigned long __copy_user_flushcache(void *to, const void __user *from,
29 unsigned long n)
31 unsigned long rc;
33 rc = raw_copy_from_user(to, from, n);
35 /* See above */
36 __clean_dcache_area_pop(to, n - rc);
37 return rc;