HomeSort by: relevance | last modified time | path
    Searched defs:hid0 (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/arch/powerpc/oea/
cpu_subr.c 340 register_t hid0 = mfspr(SPR_HID0); local in function:cpu_features_enable
343 const register_t ohid0 = hid0;
346 hid0 |= HID0_HIGH_BAT_EN;
350 hid0 |= HID0_XBSEN;
353 if (hid0 != ohid0) {
354 mtspr(SPR_HID0, hid0);
581 register_t hid0 = 0, hid0_save = 0; local in function:cpu_setup
603 hid0_save = hid0 = mfspr(SPR_HID0);
618 * Do not have HID0 support settings, but can support
633 hid0 &= ~(HID0_DOZE | HID0_NAP | HID0_SLEEP)
    [all...]
  /src/sys/arch/evbppc/mpc85xx/
machdep.c 1068 register_t msr, hid0; local in function:e500_ipi_halt
1072 hid0 = mfspr(SPR_HID0);
1073 hid0 = (hid0 & ~(HID0_TBEN|HID0_NAP|HID0_SLEEP)) | HID0_DOZE;
1074 mtspr(SPR_HID0, hid0);
1150 const register_t hid0 = mfspr(SPR_HID0); local in function:initppc
1152 (hid0 & ~(HID0_NAP | HID0_SLEEP)) | HID0_TBEN | HID0_EMCP | HID0_DOZE);
1251 printf(" hid0=%#lx/%#jx", hid0, (uintmax_t)mfspr(SPR_HID0));

Completed in 13 milliseconds