Lines Matching refs:dotpll
126 u64 dotpll, sys_rstpll; in gx_set_dclk_frequency() local
150 rdmsrl(MSR_GLCP_DOTPLL, dotpll); in gx_set_dclk_frequency()
153 dotpll &= 0x00000000ffffffffull; in gx_set_dclk_frequency()
154 dotpll |= (u64)pll_table[best_i].dotpll_value << 32; in gx_set_dclk_frequency()
155 dotpll |= MSR_GLCP_DOTPLL_DOTRESET; in gx_set_dclk_frequency()
156 dotpll &= ~MSR_GLCP_DOTPLL_BYPASS; in gx_set_dclk_frequency()
158 wrmsrl(MSR_GLCP_DOTPLL, dotpll); in gx_set_dclk_frequency()
169 dotpll &= ~(MSR_GLCP_DOTPLL_DOTRESET); in gx_set_dclk_frequency()
170 wrmsrl(MSR_GLCP_DOTPLL, dotpll); in gx_set_dclk_frequency()
174 rdmsrl(MSR_GLCP_DOTPLL, dotpll); in gx_set_dclk_frequency()
175 } while (timeout-- && !(dotpll & MSR_GLCP_DOTPLL_LOCK)); in gx_set_dclk_frequency()