Lines Matching refs:dctl
899 int dctl = readl(hsotg->regs + DCTL); in s3c_hsotg_set_test_mode() local
901 dctl &= ~DCTL_TSTCTL_MASK; in s3c_hsotg_set_test_mode()
908 dctl |= testmode << DCTL_TSTCTL_SHIFT; in s3c_hsotg_set_test_mode()
913 writel(dctl, hsotg->regs + DCTL); in s3c_hsotg_set_test_mode()
1994 int dctl = readl(hsotg->regs + DCTL); in s3c_hsotg_epint() local
1996 dctl |= DCTL_CGNPINNAK; in s3c_hsotg_epint()
1997 writel(dctl, hsotg->regs + DCTL); in s3c_hsotg_epint()
3443 int dctl; in testmode_show() local
3446 dctl = readl(hsotg->regs + DCTL); in testmode_show()
3447 dctl &= DCTL_TSTCTL_MASK; in testmode_show()
3448 dctl >>= DCTL_TSTCTL_SHIFT; in testmode_show()
3451 switch (dctl) { in testmode_show()
3471 seq_printf(s, "UNKNOWN %d\n", dctl); in testmode_show()