提交 3cf27234 编写于 作者: D David Brownell 提交者: Greg Kroah-Hartman

USB: at91_udc can prefetch data

The at91sam9 chip are ARMv5 so they support preload instructions.
Use preloading to load the FIFO a bit faster.
Signed-off-by: NDavid Brownell <dbrownell@users.sourceforge.net>
Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
上级 a89a2cd3
...@@ -389,6 +389,7 @@ static int write_fifo(struct at91_ep *ep, struct at91_request *req) ...@@ -389,6 +389,7 @@ static int write_fifo(struct at91_ep *ep, struct at91_request *req)
u32 csr = __raw_readl(creg); u32 csr = __raw_readl(creg);
u8 __iomem *dreg = ep->creg + (AT91_UDP_FDR(0) - AT91_UDP_CSR(0)); u8 __iomem *dreg = ep->creg + (AT91_UDP_FDR(0) - AT91_UDP_CSR(0));
unsigned total, count, is_last; unsigned total, count, is_last;
u8 *buf;
/* /*
* TODO: allow for writing two packets to the fifo ... that'll * TODO: allow for writing two packets to the fifo ... that'll
...@@ -413,6 +414,8 @@ static int write_fifo(struct at91_ep *ep, struct at91_request *req) ...@@ -413,6 +414,8 @@ static int write_fifo(struct at91_ep *ep, struct at91_request *req)
return 0; return 0;
} }
buf = req->req.buf + req->req.actual;
prefetch(buf);
total = req->req.length - req->req.actual; total = req->req.length - req->req.actual;
if (ep->ep.maxpacket < total) { if (ep->ep.maxpacket < total) {
count = ep->ep.maxpacket; count = ep->ep.maxpacket;
...@@ -435,7 +438,7 @@ static int write_fifo(struct at91_ep *ep, struct at91_request *req) ...@@ -435,7 +438,7 @@ static int write_fifo(struct at91_ep *ep, struct at91_request *req)
* recover when the actual bytecount matters (e.g. for USB Test * recover when the actual bytecount matters (e.g. for USB Test
* and Measurement Class devices). * and Measurement Class devices).
*/ */
__raw_writesb(dreg, req->req.buf + req->req.actual, count); __raw_writesb(dreg, buf, count);
csr &= ~SET_FX; csr &= ~SET_FX;
csr |= CLR_FX | AT91_UDP_TXPKTRDY; csr |= CLR_FX | AT91_UDP_TXPKTRDY;
__raw_writel(csr, creg); __raw_writel(csr, creg);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册