Lines Matching refs:plug_st
546 u32 plug_st; in udc_init() local
557 plug_st = readl(&plug_regs_p->plug_state); in udc_init()
558 writel(plug_st | PLUG_STATUS_EN, &plug_regs_p->plug_state); in udc_init()
721 u32 plug_st, dev_cntl; in udc_connect() local
733 plug_st = readl(&plug_regs_p->plug_state); in udc_connect()
734 plug_st &= ~(PLUG_STATUS_PHY_RESET | PLUG_STATUS_PHY_MODE); in udc_connect()
735 writel(plug_st, &plug_regs_p->plug_state); in udc_connect()
741 u32 plug_st; in udc_disconnect() local
745 plug_st = readl(&plug_regs_p->plug_state); in udc_disconnect()
746 plug_st |= (PLUG_STATUS_PHY_RESET | PLUG_STATUS_PHY_MODE); in udc_disconnect()
747 writel(plug_st, &plug_regs_p->plug_state); in udc_disconnect()