Searched refs:dotpll_lo (Results 1 – 2 of 2) sorted by relevance
/linux-6.1.9/drivers/video/fbdev/geode/ |
D | suspend_gx.c | 43 uint32_t dotpll_lo; in gx_set_dotpll() local 46 rdmsrl(MSR_GLCP_DOTPLL, dotpll_lo); in gx_set_dotpll() 47 dotpll_lo |= MSR_GLCP_DOTPLL_DOTRESET; in gx_set_dotpll() 48 dotpll_lo &= ~MSR_GLCP_DOTPLL_BYPASS; in gx_set_dotpll() 49 wrmsr(MSR_GLCP_DOTPLL, dotpll_lo, dotpll_hi); in gx_set_dotpll() 53 rdmsrl(MSR_GLCP_DOTPLL, dotpll_lo); in gx_set_dotpll() 54 if (dotpll_lo & MSR_GLCP_DOTPLL_LOCK) in gx_set_dotpll() 60 dotpll_lo &= ~MSR_GLCP_DOTPLL_DOTRESET; in gx_set_dotpll() 61 wrmsr(MSR_GLCP_DOTPLL, dotpll_lo, dotpll_hi); in gx_set_dotpll()
|
D | lxfb_ops.c | 126 u32 dotpll_lo, dotpll_hi; in lx_set_dotpll() local 129 rdmsr(MSR_GLCP_DOTPLL, dotpll_lo, dotpll_hi); in lx_set_dotpll() 131 if ((dotpll_lo & MSR_GLCP_DOTPLL_LOCK) && (dotpll_hi == pllval)) in lx_set_dotpll() 135 dotpll_lo &= ~(MSR_GLCP_DOTPLL_BYPASS | MSR_GLCP_DOTPLL_HALFPIX); in lx_set_dotpll() 136 dotpll_lo |= MSR_GLCP_DOTPLL_DOTRESET; in lx_set_dotpll() 138 wrmsr(MSR_GLCP_DOTPLL, dotpll_lo, dotpll_hi); in lx_set_dotpll() 147 rdmsr(MSR_GLCP_DOTPLL, dotpll_lo, dotpll_hi); in lx_set_dotpll() 148 if (dotpll_lo & MSR_GLCP_DOTPLL_LOCK) in lx_set_dotpll() 154 dotpll_lo &= ~MSR_GLCP_DOTPLL_DOTRESET; in lx_set_dotpll() 155 wrmsr(MSR_GLCP_DOTPLL, dotpll_lo, dotpll_hi); in lx_set_dotpll()
|