Home
last modified time | relevance | path

Searched refs:cpenable (Results 1 – 7 of 7) sorted by relevance

/linux-4.1.27/arch/xtensa/kernel/
Dprocess.c60 unsigned long cpenable; in coprocessor_release_all() local
69 cpenable = ti->cpenable; in coprocessor_release_all()
74 cpenable &= ~(1 << i); in coprocessor_release_all()
78 ti->cpenable = cpenable; in coprocessor_release_all()
86 unsigned long cpenable; in coprocessor_flush_all() local
91 cpenable = ti->cpenable; in coprocessor_flush_all()
94 if ((cpenable & 1) != 0 && coprocessor_owner[i] == ti) in coprocessor_flush_all()
96 cpenable >>= 1; in coprocessor_flush_all()
273 ti->cpenable = 0; in copy_thread()
Dcoprocessor.S273 rsr a0, cpenable
276 wsr a0, cpenable
Dasm-offsets.c91 DEFINE(THREAD_CPENABLE, offsetof (struct thread_info, cpenable)); in main()
Dhead.S164 wsr a0, cpenable
Dentry.S1877 xsr a3, cpenable
/linux-4.1.27/drivers/gpio/
Dgpio-xtensa.c45 static inline unsigned long enable_cp(unsigned long *cpenable) in enable_cp() argument
50 RSR_CPENABLE(*cpenable); in enable_cp()
51 WSR_CPENABLE(*cpenable | BIT(XCHAL_CP_ID_XTIOP)); in enable_cp()
56 static inline void disable_cp(unsigned long flags, unsigned long cpenable) in disable_cp() argument
58 WSR_CPENABLE(cpenable); in disable_cp()
64 static inline unsigned long enable_cp(unsigned long *cpenable) in enable_cp() argument
66 *cpenable = 0; /* avoid uninitialized value warning */ in enable_cp()
70 static inline void disable_cp(unsigned long flags, unsigned long cpenable) in disable_cp() argument
/linux-4.1.27/arch/xtensa/include/asm/
Dthread_info.h54 unsigned long cpenable; member