Lines Matching refs:pmcfg
224 uint32_t pmcfg; in et_attach() local
305 pmcfg = ET_PM_SYSCLK_GATE | ET_PM_TXCLK_GATE | ET_PM_RXCLK_GATE; in et_attach()
307 pmcfg |= EM_PM_GIGEPHY_ENB; in et_attach()
308 CSR_WRITE_4(sc, ET_PM, pmcfg); in et_attach()
2696 uint32_t pmcfg; in et_suspend() local
2703 pmcfg = CSR_READ_4(sc, ET_PM); in et_suspend()
2704 pmcfg &= ~(EM_PM_GIGEPHY_ENB | ET_PM_SYSCLK_GATE | ET_PM_TXCLK_GATE | in et_suspend()
2706 pmcfg |= ET_PM_PHY_SW_COMA; in et_suspend()
2707 CSR_WRITE_4(sc, ET_PM, pmcfg); in et_suspend()
2716 uint32_t pmcfg; in et_resume() local
2721 pmcfg = ET_PM_SYSCLK_GATE | ET_PM_TXCLK_GATE | ET_PM_RXCLK_GATE; in et_resume()
2723 pmcfg |= EM_PM_GIGEPHY_ENB; in et_resume()
2724 CSR_WRITE_4(sc, ET_PM, pmcfg); in et_resume()