drm/ssd130x: Set SPI .id_table to prevent an SPI core warning
[drm/drm-misc.git] / arch / csky / mm / syscache.c
blobcd847ad62c7ee4ccd45207473d118846afe432f3
1 // SPDX-License-Identifier: GPL-2.0
2 // Copyright (C) 2018 Hangzhou C-SKY Microsystems co.,ltd.
4 #include <linux/syscalls.h>
5 #include <asm/page.h>
6 #include <asm/cacheflush.h>
7 #include <asm/cachectl.h>
9 SYSCALL_DEFINE3(cacheflush,
10 void __user *, addr,
11 unsigned long, bytes,
12 int, cache)
14 switch (cache) {
15 case BCACHE:
16 case DCACHE:
17 dcache_wb_range((unsigned long)addr,
18 (unsigned long)addr + bytes);
19 if (cache != BCACHE)
20 break;
21 fallthrough;
22 case ICACHE:
23 flush_icache_mm_range(current->mm,
24 (unsigned long)addr,
25 (unsigned long)addr + bytes);
26 break;
27 default:
28 return -EINVAL;
31 return 0;