Add the rt linux 4.1.3-rt3 as base
[kvmfornfv.git] / kernel / arch / sh / include / asm / cache_insns_32.h
1 #ifndef __ASM_SH_CACHE_INSNS_32_H
2 #define __ASM_SH_CACHE_INSNS_32_H
3
4 #include <linux/types.h>
5
6 #if defined(CONFIG_CPU_SH4A)
7 #define __icbi(addr)    __asm__ __volatile__ ( "icbi @%0\n\t" : : "r" (addr))
8 #else
9 #define __icbi(addr)    mb()
10 #endif
11
12 #define __ocbp(addr)    __asm__ __volatile__ ( "ocbp @%0\n\t" : : "r" (addr))
13 #define __ocbi(addr)    __asm__ __volatile__ ( "ocbi @%0\n\t" : : "r" (addr))
14 #define __ocbwb(addr)   __asm__ __volatile__ ( "ocbwb @%0\n\t" : : "r" (addr))
15
16 static inline reg_size_t register_align(void *val)
17 {
18         return (unsigned long)(signed long)val;
19 }
20
21 #endif /* __ASM_SH_CACHE_INSNS_32_H */