Home
last modified time | relevance | path

Searched refs:otgsc (Results 1 – 9 of 9) sorted by relevance

/drivers/usb/phy/
Dphy-mv-usb.c167 u32 otgsc; in mv_otg_init_irq() local
186 otgsc = readl(&mvotg->op_regs->otgsc); in mv_otg_init_irq()
187 otgsc |= mvotg->irq_en; in mv_otg_init_irq()
188 writel(otgsc, &mvotg->op_regs->otgsc); in mv_otg_init_irq()
291 u32 otgsc; in mv_otg_update_inputs() local
293 otgsc = readl(&mvotg->op_regs->otgsc); in mv_otg_update_inputs()
304 otg_ctrl->b_sess_vld = !!(otgsc & OTGSC_STS_B_SESSION_VALID); in mv_otg_update_inputs()
305 otg_ctrl->b_sess_end = !!(otgsc & OTGSC_STS_B_SESSION_END); in mv_otg_update_inputs()
311 otg_ctrl->id = !!(otgsc & OTGSC_STS_USB_ID); in mv_otg_update_inputs()
316 otg_ctrl->a_sess_vld = !!(otgsc & OTGSC_STS_A_SESSION_VALID); in mv_otg_update_inputs()
[all …]
Dphy-fsl-usb.c121 tmp = fsl_readl(&usb_dr_regs->otgsc) & ~OTGSC_INTSTS_MASK; in fsl_otg_chrg_vbus()
131 fsl_writel(tmp, &usb_dr_regs->otgsc); in fsl_otg_chrg_vbus()
139 tmp = fsl_readl(&usb_dr_regs->otgsc) & ~OTGSC_INTSTS_MASK; in fsl_otg_dischrg_vbus()
149 fsl_writel(tmp, &usb_dr_regs->otgsc); in fsl_otg_dischrg_vbus()
175 tmp = fsl_readl(&usb_dr_regs->otgsc) & ~OTGSC_INTSTS_MASK; in fsl_otg_loc_conn()
182 fsl_writel(tmp, &usb_dr_regs->otgsc); in fsl_otg_loc_conn()
211 tmp = fsl_readl(&usb_dr_regs->otgsc) & ~OTGSC_INTSTS_MASK; in fsl_otg_start_pulse()
213 fsl_writel(tmp, &usb_dr_regs->otgsc); in fsl_otg_start_pulse()
474 !!(fsl_readl(&usb_dr_regs->otgsc) & OTGSC_STS_A_VBUS_VALID); in fsl_otg_start_host()
581 if (!(fsl_readl(&otg_dev->dr_mem_map->otgsc) & in fsl_otg_set_host()
[all …]
Dphy-mv-usb.h121 u32 otgsc; member
Dphy-fsl-usb.h317 u32 otgsc; /* On-The-Go Status and Control */ member
/drivers/usb/chipidea/
Dotg_fsm.c737 u32 otgsc, otg_int_src = 0; in ci_otg_fsm_irq() local
740 otgsc = hw_read_otgsc(ci, ~0); in ci_otg_fsm_irq()
741 otg_int_src = otgsc & OTGSC_INT_STATUS_BITS & (otgsc >> 8); in ci_otg_fsm_irq()
742 fsm->id = (otgsc & OTGSC_ID) ? 1 : 0; in ci_otg_fsm_irq()
758 if (otgsc & OTGSC_BSV) { in ci_otg_fsm_irq()
770 if (otgsc & OTGSC_AVV) { in ci_otg_fsm_irq()
Dcore.c516 u32 otgsc = 0; in ci_irq_handler() local
533 otgsc = hw_read_otgsc(ci, ~0); in ci_irq_handler()
545 if (ci->is_otg && (otgsc & OTGSC_IDIE) && (otgsc & OTGSC_IDIS)) { in ci_irq_handler()
557 if (ci->is_otg && (otgsc & OTGSC_BSVIE) && (otgsc & OTGSC_BSVIS)) { in ci_irq_handler()
1308 u32 otgsc = hw_read_otgsc(ci, ~0); in ci_extcon_wakeup_int() local
1314 (otgsc & OTGSC_IDIE) && (otgsc & OTGSC_IDIS)) in ci_extcon_wakeup_int()
1318 (otgsc & OTGSC_BSVIE) && (otgsc & OTGSC_BSVIS)) in ci_extcon_wakeup_int()
/drivers/usb/gadget/udc/
Dfsl_usb2_udc.h46 u32 otgsc; /* On-The-Go Status and Control */ member
83 u32 otgsc; /* On-The-Go Status and Control */ member
Dmv_udc.h156 u32 otgsc; member
Dfsl_udc_core.c387 if (!(fsl_readl(&dr_regs->otgsc) & OTGSC_STS_USB_ID)) { in dr_controller_stop()