/arch/x86/include/asm/ |
D | tlbflush.h | 220 unsigned long cr4; member 282 this_cpu_write(cpu_tlbstate.cr4, __read_cr4()); in cr4_init_shadow() 285 static inline void __cr4_set(unsigned long cr4) in __cr4_set() argument 288 this_cpu_write(cpu_tlbstate.cr4, cr4); in __cr4_set() 289 __write_cr4(cr4); in __cr4_set() 295 unsigned long cr4; in cr4_set_bits_irqsoff() local 297 cr4 = this_cpu_read(cpu_tlbstate.cr4); in cr4_set_bits_irqsoff() 298 if ((cr4 | mask) != cr4) in cr4_set_bits_irqsoff() 299 __cr4_set(cr4 | mask); in cr4_set_bits_irqsoff() 305 unsigned long cr4; in cr4_clear_bits_irqsoff() local [all …]
|
D | suspend_32.h | 22 unsigned long cr0, cr2, cr3, cr4; member
|
D | suspend_64.h | 41 unsigned long cr0, cr2, cr3, cr4; member
|
D | realmode.h | 49 u32 cr4;
|
/arch/x86/power/ |
D | hibernate_asm_32.S | 55 jecxz 1f # cr4 Pentium and higher, skip if zero 57 movl %ecx, %cr4; # turn off PGE 89 jecxz 1f # cr4 Pentium and higher, skip if zero 90 movl %ecx, %cr4; # turn PGE back on
|
D | hibernate_asm_64.S | 78 movq %rcx, %cr4; # turn off PGE 81 movq %rbx, %cr4; # turn PGE back on 111 movq %rdx, %cr4; # turn off PGE 114 movq %rax, %cr4; # turn PGE back on
|
D | cpu.c | 127 ctxt->cr4 = __read_cr4(); in __save_processor_state() 205 if (ctxt->cr4) in __restore_processor_state() 206 __write_cr4(ctxt->cr4); in __restore_processor_state() 210 __write_cr4(ctxt->cr4); in __restore_processor_state()
|
/arch/x86/platform/pvh/ |
D | head.S | 74 mov %cr4, %eax 76 mov %eax, %cr4 143 mov %cr4, %eax 145 mov %eax, %cr4
|
/arch/x86/mm/ |
D | mem_encrypt_boot.S | 99 mov %cr4, %rdx 101 mov %rdx, %cr4 103 mov %rdx, %cr4
|
/arch/x86/kernel/cpu/mtrr/ |
D | cyrix.c | 135 static u32 cr4, ccr3; variable 143 cr4 = __read_cr4(); in prepare_set() 144 __write_cr4(cr4 & ~X86_CR4_PGE); in prepare_set() 176 __write_cr4(cr4); in post_set()
|
D | generic.c | 720 static unsigned long cr4; variable 758 cr4 = __read_cr4(); in prepare_set() 759 __write_cr4(cr4 & ~X86_CR4_PGE); in prepare_set() 791 __write_cr4(cr4); in post_set()
|
/arch/x86/kernel/ |
D | process_32.c | 63 unsigned long cr0 = 0L, cr2 = 0L, cr3 = 0L, cr4 = 0L; in __show_regs() local 87 cr4 = __read_cr4(); in __show_regs() 89 cr0, cr2, cr3, cr4); in __show_regs()
|
D | relocate_kernel_64.S | 66 movq %cr4, %rax 137 movq %rax, %cr4 216 movq %rax, %cr4
|
D | relocate_kernel_32.S | 55 movl %cr4, %eax 125 movl %eax, %cr4 197 movl %eax, %cr4
|
D | asm-offsets_64.c | 79 ENTRY(cr4); in main()
|
/arch/x86/platform/olpc/ |
D | xo1-wakeup.S | 30 movl %eax, %cr4 64 movl %cr4, %edx
|
/arch/powerpc/boot/ |
D | ppc_asm.h | 17 #define cr4 4 macro
|
/arch/x86/boot/compressed/ |
D | efi_thunk_64.S | 151 movl %cr4, %eax 153 movl %eax, %cr4
|
D | head_64.S | 129 movl %cr4, %eax 131 movl %eax, %cr4 615 movl %cr4, %eax 621 movl %cr4, %eax 645 movl %eax, %cr4
|
/arch/sh/include/cpu-sh5/cpu/ |
D | registers.h | 26 #define INTEVT cr4
|
/arch/powerpc/kernel/ |
D | cpu_setup_6xx.S | 336 cmplwi cr4,r3,0x8002 /* 7457 */ 344 cror 4*cr0+eq,4*cr0+eq,4*cr4+eq 407 cmplwi cr4,r3,0x8002 /* 7457 */ 415 cror 4*cr0+eq,4*cr0+eq,4*cr4+eq
|
/arch/x86/kvm/vmx/ |
D | vmcs.h | 34 unsigned long cr4; /* May not match real cr4 */ member
|
/arch/x86/realmode/rm/ |
D | wakeup_asm.S | 117 movl %eax, %cr4
|
/arch/x86/realmode/ |
D | init.c | 130 trampoline_cr4_features = &trampoline_header->cr4; in setup_real_mode()
|
/arch/x86/kernel/cpu/ |
D | common.c | 422 unsigned long cr4 = __read_cr4(); in cr4_init() local 425 cr4 |= X86_CR4_PCIDE; in cr4_init() 427 cr4 = (cr4 & ~cr4_pinned_mask) | cr4_pinned_bits; in cr4_init() 429 __write_cr4(cr4); in cr4_init() 432 this_cpu_write(cpu_tlbstate.cr4, cr4); in cr4_init() 442 cr4_pinned_bits = this_cpu_read(cpu_tlbstate.cr4) & cr4_pinned_mask; in setup_cr_pinning()
|