Lines Matching refs:pcgcctl
318 u32 pcgcctl; in dwc2_exit_hibernation() local
324 pcgcctl = dwc2_readl(hsotg->regs + PCGCTL); in dwc2_exit_hibernation()
325 pcgcctl &= ~PCGCTL_STOPPCLK; in dwc2_exit_hibernation()
326 dwc2_writel(pcgcctl, hsotg->regs + PCGCTL); in dwc2_exit_hibernation()
328 pcgcctl = dwc2_readl(hsotg->regs + PCGCTL); in dwc2_exit_hibernation()
329 pcgcctl &= ~PCGCTL_PWRCLMP; in dwc2_exit_hibernation()
330 dwc2_writel(pcgcctl, hsotg->regs + PCGCTL); in dwc2_exit_hibernation()
332 pcgcctl = dwc2_readl(hsotg->regs + PCGCTL); in dwc2_exit_hibernation()
333 pcgcctl &= ~PCGCTL_RSTPDWNMODULE; in dwc2_exit_hibernation()
334 dwc2_writel(pcgcctl, hsotg->regs + PCGCTL); in dwc2_exit_hibernation()
371 u32 pcgcctl; in dwc2_enter_hibernation() local
408 pcgcctl = dwc2_readl(hsotg->regs + PCGCTL); in dwc2_enter_hibernation()
410 pcgcctl |= PCGCTL_PWRCLMP; in dwc2_enter_hibernation()
411 dwc2_writel(pcgcctl, hsotg->regs + PCGCTL); in dwc2_enter_hibernation()
414 pcgcctl |= PCGCTL_RSTPDWNMODULE; in dwc2_enter_hibernation()
415 dwc2_writel(pcgcctl, hsotg->regs + PCGCTL); in dwc2_enter_hibernation()
418 pcgcctl |= PCGCTL_STOPPCLK; in dwc2_enter_hibernation()
419 dwc2_writel(pcgcctl, hsotg->regs + PCGCTL); in dwc2_enter_hibernation()