projects
/
oweals
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
98f686c
)
usb:udc:s3c: Reduce dcache invalidate range for UDC receive buffer
author
Lukasz Majewski
<l.majewski@samsung.com>
Tue, 8 Oct 2013 12:30:37 +0000
(14:30 +0200)
committer
Marek Vasut
<marex@denx.de>
Sun, 20 Oct 2013 21:42:40 +0000
(23:42 +0200)
The s3c udc driver sends data in a max packet size. Therefore the dcache
invalidate range shall be equal to max packet, not the entire
DMA_BUFFER_SIZE.
Signed-off-by: Lukasz Majewski <l.majewski@samsung.com>
Cc: Marek Vasut <marex@denx.de>
drivers/usb/gadget/s3c_udc_otg_xfer_dma.c
patch
|
blob
|
history
diff --git
a/drivers/usb/gadget/s3c_udc_otg_xfer_dma.c
b/drivers/usb/gadget/s3c_udc_otg_xfer_dma.c
index d7af5e9034d18ce13ac5453da8c283cb5b2c57b7..1cbf8f60a7ace1877f569eb23217d7bf3f7b6df7 100644
(file)
--- a/
drivers/usb/gadget/s3c_udc_otg_xfer_dma.c
+++ b/
drivers/usb/gadget/s3c_udc_otg_xfer_dma.c
@@
-117,7
+117,8
@@
static int setdma_rx(struct s3c_ep *ep, struct s3c_request *req)
invalidate_dcache_range((unsigned long) ep->dev->dma_buf[ep_num],
(unsigned long) ep->dev->dma_buf[ep_num]
- + DMA_BUFFER_SIZE);
+ + ROUND(ep->ep.maxpacket,
+ CONFIG_SYS_CACHELINE_SIZE));
if (length == 0)
pktcnt = 1;