]> git.karo-electronics.de Git - karo-tx-uboot.git/blobdiff - include/usb/mv_udc.h
usb: mv_udc: Add bounce buffer
[karo-tx-uboot.git] / include / usb / mv_udc.h
index c1761b07246d823892a6c41ba87c3c677e536c7f..c71516cf6daa01f56c6bbea77e7bbf221fd603a6 100644 (file)
@@ -66,9 +66,13 @@ struct mv_udc {
 
 struct mv_ep {
        struct usb_ep ep;
-       struct usb_request req;
        struct list_head queue;
        const struct usb_endpoint_descriptor *desc;
+
+       struct usb_request req;
+       uint8_t *b_buf;
+       uint32_t b_len;
+       uint8_t b_fast[64] __aligned(ARCH_DMA_MINALIGN);
 };
 
 struct mv_drv {