Lines Matching refs:slottime
595 u32 slottime;
650 /* Do some sanity checks on the slottime register. */
658 slottime = MS(slottime_reg, WAVE1_PCU_GBL_IFS_SLOT);
659 slottime = slottime / phyclk;
660 if (slottime != 9 && slottime != 20) {
663 slottime);
672 slottime = MS(slottime_reg, WAVE1_PCU_GBL_IFS_SLOT);
673 slottime += value * 3 * phyclk;
674 slottime = min_t(u32, slottime, WAVE1_PCU_GBL_IFS_SLOT_MAX);
675 slottime = SM(slottime, WAVE1_PCU_GBL_IFS_SLOT);
676 slottime_reg = (slottime_reg & ~WAVE1_PCU_GBL_IFS_SLOT_MASK) | slottime;