]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - rpmsg/rpmsg.git/blob - arch/nds32/include/asm/nds32.h
Merge tag 'devicetree-fixes-for-4.19-3' of git://git.kernel.org/pub/scm/linux/kernel...
[rpmsg/rpmsg.git] / arch / nds32 / include / asm / nds32.h
1 // SPDX-License-Identifier: GPL-2.0
2 // Copyright (C) 2005-2017 Andes Technology Corporation
4 #ifndef _ASM_NDS32_NDS32_H_
5 #define _ASM_NDS32_NDS32_H_
7 #include <asm/bitfield.h>
8 #include <asm/cachectl.h>
10 #ifndef __ASSEMBLY__
11 #include <linux/init.h>
12 #include <asm/barrier.h>
13 #include <nds32_intrinsic.h>
15 #ifdef CONFIG_CC_OPTIMIZE_FOR_SIZE
16 #define FP_OFFSET (-3)
17 #else
18 #define FP_OFFSET (-2)
19 #endif
20 #define LP_OFFSET (-1)
22 extern void __init early_trap_init(void);
23 static inline void GIE_ENABLE(void)
24 {
25         mb();
26         __nds32__gie_en();
27 }
29 static inline void GIE_DISABLE(void)
30 {
31         mb();
32         __nds32__gie_dis();
33 }
35 static inline unsigned long CACHE_SET(unsigned char cache)
36 {
38         if (cache == ICACHE)
39                 return 64 << ((__nds32__mfsr(NDS32_SR_ICM_CFG) & ICM_CFG_mskISET) >>
40                               ICM_CFG_offISET);
41         else
42                 return 64 << ((__nds32__mfsr(NDS32_SR_DCM_CFG) & DCM_CFG_mskDSET) >>
43                               DCM_CFG_offDSET);
44 }
46 static inline unsigned long CACHE_WAY(unsigned char cache)
47 {
49         if (cache == ICACHE)
50                 return 1 +
51                     ((__nds32__mfsr(NDS32_SR_ICM_CFG) & ICM_CFG_mskIWAY) >> ICM_CFG_offIWAY);
52         else
53                 return 1 +
54                     ((__nds32__mfsr(NDS32_SR_DCM_CFG) & DCM_CFG_mskDWAY) >> DCM_CFG_offDWAY);
55 }
57 static inline unsigned long CACHE_LINE_SIZE(unsigned char cache)
58 {
60         if (cache == ICACHE)
61                 return 8 <<
62                     (((__nds32__mfsr(NDS32_SR_ICM_CFG) & ICM_CFG_mskISZ) >> ICM_CFG_offISZ) - 1);
63         else
64                 return 8 <<
65                     (((__nds32__mfsr(NDS32_SR_DCM_CFG) & DCM_CFG_mskDSZ) >> DCM_CFG_offDSZ) - 1);
66 }
68 #endif /* __ASSEMBLY__ */
70 #define IVB_BASE                PHYS_OFFSET     /* in user space for intr/exc/trap/break table base, 64KB aligned
71                                                  * We defined at the start of the physical memory */
73 /* dispatched sub-entry exception handler numbering */
74 #define RD_PROT                 0       /* read protrection */
75 #define WRT_PROT                1       /* write protection */
76 #define NOEXEC                  2       /* non executable */
77 #define PAGE_MODIFY             3       /* page modified */
78 #define ACC_BIT                 4       /* access bit */
79 #define RESVED_PTE              5       /* reserved PTE attribute */
80 /* reserved 6 ~ 16 */
82 #endif /* _ASM_NDS32_NDS32_H_ */