Home
last modified time | relevance | path

Searched refs:set_cr (Results 1 – 14 of 14) sorted by relevance

/OK3568_Linux_fs/kernel/arch/arm/mm/
H A Dcache-feroceon-l2.c251 set_cr(cr & ~CR_C); in flush_and_disable_dcache()
263 set_cr(cr | CR_C); in enable_dcache()
277 set_cr(cr & ~CR_I); in invalidate_and_disable_icache()
289 set_cr(cr | CR_I); in enable_icache()
H A Dnommu.c46 set_cr(reg | CR_V); in setup_vectors_base()
73 set_cr(reg & ~CR_V); in setup_vectors_base()
H A Dalignment.c997 set_cr(cr_no_alignment); in do_alignment()
1005 set_cr(__clear_cr(CR_A)); in noalign_setup()
1028 set_cr(__clear_cr(CR_A)); in alignment_init()
H A Dmmu.c174 set_cr(cr); in early_cachepolicy()
1574 set_cr(cr & ~(CR_I | CR_C)); in early_paging_init()
1590 set_cr(cr); in early_paging_init()
/OK3568_Linux_fs/u-boot/arch/arm/lib/
H A Dcache-cp15.c216 set_cr(reg | CR_M); in mmu_setup()
233 set_cr(reg | cache_bit); in cache_enable()
254 set_cr(reg & ~cache_bit); in cache_disable()
/OK3568_Linux_fs/u-boot/arch/arm/cpu/armv7/ls102xa/
H A Dcpu.c200 set_cr(reg | CR_M); in mmu_setup()
217 set_cr(get_cr() | CR_C); in enable_caches()
/OK3568_Linux_fs/kernel/arch/arm/include/asm/
H A Dcp15.h64 static inline void set_cr(unsigned long val) in set_cr() function
/OK3568_Linux_fs/u-boot/arch/arm/mach-kirkwood/
H A Dcpu.c298 set_cr(temp & ~CR_V); in arch_misc_init()
/OK3568_Linux_fs/u-boot/arch/arm/mach-orion5x/
H A Dcpu.c273 set_cr(temp & ~CR_V); in arch_misc_init()
/OK3568_Linux_fs/u-boot/arch/arm/mach-exynos/
H A Dspl_boot.c58 set_cr(set_cr_z ? cr | CR_Z : cr & ~CR_Z); in config_branch_prediction()
/OK3568_Linux_fs/u-boot/arch/arm/include/asm/
H A Dsystem.h414 static inline void set_cr(unsigned int val) in set_cr() function
/OK3568_Linux_fs/kernel/arch/x86/kvm/
H A Demulate.c2505 bad = ctxt->ops->set_cr(ctxt, 3, cr3); in rsm_enter_protected_mode()
2514 bad = ctxt->ops->set_cr(ctxt, 4, cr4 & ~X86_CR4_PCIDE); in rsm_enter_protected_mode()
2518 bad = ctxt->ops->set_cr(ctxt, 0, cr0); in rsm_enter_protected_mode()
2523 bad = ctxt->ops->set_cr(ctxt, 4, cr4); in rsm_enter_protected_mode()
2527 bad = ctxt->ops->set_cr(ctxt, 3, cr3 | pcid); in rsm_enter_protected_mode()
2702 ctxt->ops->set_cr(ctxt, 4, cr4 & ~X86_CR4_PCIDE); in em_rsm()
2714 ctxt->ops->set_cr(ctxt, 0, cr0 & ~(X86_CR0_PG | X86_CR0_PE)); in em_rsm()
2720 ctxt->ops->set_cr(ctxt, 4, cr4 & ~X86_CR4_PAE); in em_rsm()
3231 if (ctxt->ops->set_cr(ctxt, 3, tss->cr3)) in load_state_from_tss32()
3431 ops->set_cr(ctxt, 0, ops->get_cr(ctxt, 0) | X86_CR0_TS); in emulator_do_task_switch()
[all …]
H A Dkvm_emulate.h206 int (*set_cr)(struct x86_emulate_ctxt *ctxt, int cr, ulong val); member
H A Dx86.c7047 .set_cr = emulator_set_cr,