Home
last modified time | relevance | path

Searched refs:CP0SC_AM (Results 1 – 3 of 3) sorted by relevance

/openbmc/qemu/target/mips/
H A Dcpu.c362 env->CP0_SegCtl0 = (CP0SC_AM_MK << CP0SC_AM); in mips_cpu_reset_hold()
364 env->CP0_SegCtl0 |= ((CP0SC_AM_MSK << CP0SC_AM)) << 16; in mips_cpu_reset_hold()
366 env->CP0_SegCtl1 = (0 << CP0SC_PA) | (CP0SC_AM_UK << CP0SC_AM) | in mips_cpu_reset_hold()
369 env->CP0_SegCtl1 |= ((0 << CP0SC_PA) | (CP0SC_AM_UK << CP0SC_AM) | in mips_cpu_reset_hold()
372 env->CP0_SegCtl2 = (2 << CP0SC_PA) | (CP0SC_AM_MUSK << CP0SC_AM) | in mips_cpu_reset_hold()
375 env->CP0_SegCtl2 |= ((0 << CP0SC_PA) | (CP0SC_AM_MUSK << CP0SC_AM) | in mips_cpu_reset_hold()
H A Dcpu.h638 #define CP0SC_AM 4 macro
639 #define CP0SC_AM_MASK (0x7ULL << CP0SC_AM)
/openbmc/qemu/target/mips/sysemu/
H A Dphysaddr.c107 unsigned int am = (segctl & CP0SC_AM_MASK) >> CP0SC_AM; in get_segctl_physical_address()