Home
last modified time | relevance | path

Searched refs:UDCCSR0_SA (Results 1 – 2 of 2) sorted by relevance

/rk3399_rockchip-uboot/drivers/usb/gadget/
H A Dpxa27x_udc.c219 if ((udccsr0 & UDCCSR0_SA) != 0 && ep0state != EP0_IDLE) in udc_handle_ep0()
227 if ((udccsr0 & (UDCCSR0_OPC | UDCCSR0_SA | UDCCSR0_RNE)) in udc_handle_ep0()
228 == (UDCCSR0_OPC | UDCCSR0_SA | UDCCSR0_RNE)) { in udc_handle_ep0()
242 writel(readl(UDCCSR0) | UDCCSR0_OPC | UDCCSR0_SA, UDCCSR0); in udc_handle_ep0()
286 writel(UDCCSR0_SA | in udc_handle_ep0()
303 } else if ((udccsr0 & (UDCCSR0_OPC | UDCCSR0_SA)) in udc_handle_ep0()
304 == (UDCCSR0_OPC|UDCCSR0_SA)) { in udc_handle_ep0()
314 writel(udccsr0 & (UDCCSR0_SA | UDCCSR0_OPC), UDCCSR0); in udc_handle_ep0()
320 if ((udccsr0 & UDCCSR0_OPC) && !(udccsr0 & UDCCSR0_SA)) { in udc_handle_ep0()
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-pxa/
H A Dpxa-regs.h651 #define UDCCSR0_SA (1 << 7) /* Setup Active */ macro