Lines Matching refs:cfgchip2
47 u32 cfgchip2; in phy_on() local
49 cfgchip2 = readl(&davinci_syscfg_regs->cfgchip2); in phy_on()
51 cfgchip2 &= ~(CFGCHIP2_RESET | CFGCHIP2_PHYPWRDN | CFGCHIP2_OTGPWRDN | in phy_on()
53 cfgchip2 |= CFGCHIP2_SESENDEN | CFGCHIP2_VBDTCTEN | CFGCHIP2_PHY_PLLON | in phy_on()
56 writel(cfgchip2, &davinci_syscfg_regs->cfgchip2); in phy_on()
61 if (readl(&davinci_syscfg_regs->cfgchip2) & CFGCHIP2_PHYCLKGD) in phy_on()
73 u32 cfgchip2; in phy_off() local
78 cfgchip2 = readl(&davinci_syscfg_regs->cfgchip2); in phy_off()
79 cfgchip2 &= ~CFGCHIP2_PHY_PLLON; in phy_off()
80 cfgchip2 |= CFGCHIP2_PHYPWRDN | CFGCHIP2_OTGPWRDN; in phy_off()
81 writel(cfgchip2, &davinci_syscfg_regs->cfgchip2); in phy_off()