Commit aee5500f authored by Mian Yousaf Kaukab's avatar Mian Yousaf Kaukab Committed by Felipe Balbi

usb: musb: enable ux500 host side dma support

Host side dma support for ux500 is enabled by piggybacking on Inventra
dma support.
Acked-by: default avatarLinus Walleij <linus.walleij@linaro.org>
Signed-off-by: default avatarMian Yousaf Kaukab <mian.yousaf.kaukab@stericsson.com>
Signed-off-by: default avatarFabio Baltieri <fabio.baltieri@linaro.org>
Signed-off-by: default avatarFelipe Balbi <balbi@ti.com>
parent dbbafe66
...@@ -629,7 +629,7 @@ static bool musb_tx_dma_program(struct dma_controller *dma, ...@@ -629,7 +629,7 @@ static bool musb_tx_dma_program(struct dma_controller *dma,
u16 csr; u16 csr;
u8 mode; u8 mode;
#ifdef CONFIG_USB_INVENTRA_DMA #if defined(CONFIG_USB_INVENTRA_DMA) || defined(CONFIG_USB_UX500_DMA)
if (length > channel->max_len) if (length > channel->max_len)
length = channel->max_len; length = channel->max_len;
...@@ -1663,7 +1663,7 @@ void musb_host_rx(struct musb *musb, u8 epnum) ...@@ -1663,7 +1663,7 @@ void musb_host_rx(struct musb *musb, u8 epnum)
/* FIXME this is _way_ too much in-line logic for Mentor DMA */ /* FIXME this is _way_ too much in-line logic for Mentor DMA */
#ifndef CONFIG_USB_INVENTRA_DMA #if !defined(CONFIG_USB_INVENTRA_DMA) && !defined(CONFIG_USB_UX500_DMA)
if (rx_csr & MUSB_RXCSR_H_REQPKT) { if (rx_csr & MUSB_RXCSR_H_REQPKT) {
/* REVISIT this happened for a while on some short reads... /* REVISIT this happened for a while on some short reads...
* the cleanup still needs investigation... looks bad... * the cleanup still needs investigation... looks bad...
...@@ -1695,7 +1695,7 @@ void musb_host_rx(struct musb *musb, u8 epnum) ...@@ -1695,7 +1695,7 @@ void musb_host_rx(struct musb *musb, u8 epnum)
| MUSB_RXCSR_RXPKTRDY); | MUSB_RXCSR_RXPKTRDY);
musb_writew(hw_ep->regs, MUSB_RXCSR, val); musb_writew(hw_ep->regs, MUSB_RXCSR, val);
#ifdef CONFIG_USB_INVENTRA_DMA #if defined(CONFIG_USB_INVENTRA_DMA) || defined(CONFIG_USB_UX500_DMA)
if (usb_pipeisoc(pipe)) { if (usb_pipeisoc(pipe)) {
struct usb_iso_packet_descriptor *d; struct usb_iso_packet_descriptor *d;
...@@ -1751,7 +1751,7 @@ void musb_host_rx(struct musb *musb, u8 epnum) ...@@ -1751,7 +1751,7 @@ void musb_host_rx(struct musb *musb, u8 epnum)
} }
/* we are expecting IN packets */ /* we are expecting IN packets */
#ifdef CONFIG_USB_INVENTRA_DMA #if defined(CONFIG_USB_INVENTRA_DMA) || defined(CONFIG_USB_UX500_DMA)
if (dma) { if (dma) {
struct dma_controller *c; struct dma_controller *c;
u16 rx_count; u16 rx_count;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment