Symbol: ST0_CU2
arch/mips/cavium-octeon/cpu.c
33
KSTK_STATUS(current) |= ST0_CU2;
arch/mips/cavium-octeon/cpu.c
35
write_c0_status(status | ST0_CU2);
arch/mips/cavium-octeon/cpu.c
37
write_c0_status(status & ~ST0_CU2);
arch/mips/cavium-octeon/octeon-crypto.c
34
write_c0_status(status | ST0_CU2);
arch/mips/cavium-octeon/octeon-crypto.c
35
if (KSTK_STATUS(current) & ST0_CU2) {
arch/mips/cavium-octeon/octeon-crypto.c
37
KSTK_STATUS(current) &= ~ST0_CU2;
arch/mips/cavium-octeon/octeon-crypto.c
38
status &= ~ST0_CU2;
arch/mips/cavium-octeon/octeon-crypto.c
39
} else if (status & ST0_CU2) {
arch/mips/cavium-octeon/octeon-crypto.c
43
return status & ST0_CU2;
arch/mips/cavium-octeon/octeon-crypto.c
61
if (crypto_flags & ST0_CU2)
arch/mips/cavium-octeon/octeon-crypto.c
64
write_c0_status(read_c0_status() & ~ST0_CU2);
arch/mips/include/asm/mipsregs.h
524
#define ST0_KERNEL_CUMASK (ST0_CU0 | ST0_CU2)
arch/mips/include/asm/switch_to.h
122
set_c0_status(ST0_CU2); \
arch/mips/include/asm/switch_to.h
123
if ((KSTK_STATUS(prev) & ST0_CU2)) { \
arch/mips/include/asm/switch_to.h
125
KSTK_STATUS(prev) &= ~ST0_CU2; \
arch/mips/include/asm/switch_to.h
128
if (KSTK_STATUS(next) & ST0_CU2 && \
arch/mips/kernel/process.c
123
p->thread.cp0_status = (read_c0_status() & ~(ST0_CU2|ST0_CU1)) | ST0_KERNEL_CUMASK;
arch/mips/kernel/process.c
165
childregs->cp0_status &= ~(ST0_CU2|ST0_CU1);
arch/mips/kernel/process.c
57
status = regs->cp0_status & ~(ST0_CU0|ST0_CU1|ST0_CU2|ST0_FR|KU_MASK);
arch/mips/loongson64/cop2-ex.c
47
set_c0_status(ST0_CU1 | ST0_CU2);
arch/mips/loongson64/cop2-ex.c
49
set_c0_status(ST0_CU1 | ST0_CU2 | ST0_FR);
arch/mips/loongson64/cop2-ex.c
51
KSTK_STATUS(current) |= (ST0_CU1 | ST0_CU2);