Lines Matching defs:dotpll
122 u64 dotpll, sys_rstpll;
146 rdmsrl(MSR_GLCP_DOTPLL, dotpll);
149 dotpll &= 0x00000000ffffffffull;
150 dotpll |= (u64)pll_table[best_i].dotpll_value << 32;
151 dotpll |= MSR_GLCP_DOTPLL_DOTRESET;
152 dotpll &= ~MSR_GLCP_DOTPLL_BYPASS;
154 wrmsrl(MSR_GLCP_DOTPLL, dotpll);
165 dotpll &= ~(MSR_GLCP_DOTPLL_DOTRESET);
166 wrmsrl(MSR_GLCP_DOTPLL, dotpll);
170 rdmsrl(MSR_GLCP_DOTPLL, dotpll);
171 } while (timeout-- && !(dotpll & MSR_GLCP_DOTPLL_LOCK));