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