Home
last modified time | relevance | path

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

/external/u-boot/drivers/usb/gadget/
Dpxa27x_udc.c195 writel(UDCCSR0_OPC | UDCCSR0_IPR, UDCCSR0); in udc_read_urb_ep0()
226 if ((udccsr0 & (UDCCSR0_OPC | UDCCSR0_SA | UDCCSR0_RNE)) in udc_handle_ep0()
227 == (UDCCSR0_OPC | UDCCSR0_SA | UDCCSR0_RNE)) { in udc_handle_ep0()
241 writel(readl(UDCCSR0) | UDCCSR0_OPC | UDCCSR0_SA, UDCCSR0); in udc_handle_ep0()
286 UDCCSR0_OPC | UDCCSR0_FST | in udc_handle_ep0()
302 } else if ((udccsr0 & (UDCCSR0_OPC | UDCCSR0_SA)) in udc_handle_ep0()
303 == (UDCCSR0_OPC|UDCCSR0_SA)) { in udc_handle_ep0()
313 writel(udccsr0 & (UDCCSR0_SA | UDCCSR0_OPC), UDCCSR0); in udc_handle_ep0()
319 if ((udccsr0 & UDCCSR0_OPC) && !(udccsr0 & UDCCSR0_SA)) { in udc_handle_ep0()
333 } else if (!(udccsr0 & UDCCSR0_OPC) && in udc_handle_ep0()
[all …]
/external/u-boot/arch/arm/include/asm/arch-pxa/
Dpxa-regs.h658 #define UDCCSR0_OPC (1 << 0) /* OUT Packet Complete */ macro