• Home
  • Raw
  • Download

Lines Matching refs:mreg

1074 	unsigned long mreg = srmmu_get_mmureg();  in poke_hypersparc()  local
1078 mreg &= ~(HYPERSPARC_CWENABLE); in poke_hypersparc()
1079 mreg |= (HYPERSPARC_CENABLE | HYPERSPARC_WBENABLE); in poke_hypersparc()
1080 mreg |= (HYPERSPARC_CMODE); in poke_hypersparc()
1082 srmmu_set_mmureg(mreg); in poke_hypersparc()
1125 unsigned long mreg; in poke_swift() local
1131 mreg = srmmu_get_mmureg(); in poke_swift()
1132 mreg |= (SWIFT_IE | SWIFT_DE); in poke_swift()
1142 mreg &= ~(SWIFT_BF); in poke_swift()
1143 srmmu_set_mmureg(mreg); in poke_swift()
1305 unsigned long mreg = srmmu_get_mmureg(); in poke_turbosparc() local
1311 mreg &= ~(TURBOSPARC_ICENABLE | TURBOSPARC_DCENABLE); in poke_turbosparc()
1312 mreg &= ~(TURBOSPARC_PCENABLE); /* Don't check parity */ in poke_turbosparc()
1313 srmmu_set_mmureg(mreg); in poke_turbosparc()
1339 mreg |= (TURBOSPARC_ICENABLE | TURBOSPARC_DCENABLE); /* I & D caches on */ in poke_turbosparc()
1340 mreg |= (TURBOSPARC_ICSNOOP); /* Icache snooping on */ in poke_turbosparc()
1341 srmmu_set_mmureg(mreg); in poke_turbosparc()
1368 unsigned long mreg = srmmu_get_mmureg(); in poke_tsunami() local
1372 mreg &= ~TSUNAMI_ITD; in poke_tsunami()
1373 mreg |= (TSUNAMI_IENAB | TSUNAMI_DENAB); in poke_tsunami()
1374 srmmu_set_mmureg(mreg); in poke_tsunami()
1409 unsigned long mreg = srmmu_get_mmureg(); in poke_viking() local
1426 mreg |= VIKING_TCENABLE; in poke_viking()
1430 mreg &= ~(VIKING_TCENABLE); in poke_viking()
1442 mreg |= VIKING_SPENABLE; in poke_viking()
1443 mreg |= (VIKING_ICENABLE | VIKING_DCENABLE); in poke_viking()
1444 mreg |= VIKING_SBENABLE; in poke_viking()
1445 mreg &= ~(VIKING_ACENABLE); in poke_viking()
1446 srmmu_set_mmureg(mreg); in poke_viking()
1497 unsigned long mreg = srmmu_get_mmureg(); in init_viking() local
1500 if (mreg & VIKING_MMODE) { in init_viking()
1537 unsigned long mreg, psr; in get_srmmu_type() local
1543 mreg = srmmu_get_mmureg(); psr = get_psr(); in get_srmmu_type()
1544 mod_typ = (mreg & 0xf0000000) >> 28; in get_srmmu_type()
1545 mod_rev = (mreg & 0x0f000000) >> 24; in get_srmmu_type()