Skip to content

Commit

Permalink
usb: gadget: mv_udc: use DMA API for status_req's dma address
Browse files Browse the repository at this point in the history
use DMA API for status_req's dma address, it is needed by dtd.

Signed-off-by: Neil Zhang <zhangwm@marvell.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
  • Loading branch information
Neil Zhang authored and Felipe Balbi committed Oct 13, 2011
1 parent daec765 commit 46e172d
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion drivers/usb/gadget/mv_udc_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -1385,6 +1385,13 @@ udc_prime_status(struct mv_udc *udc, u8 direction, u16 status, bool empty)
req->req.complete = NULL;
req->dtd_count = 0;

if (req->req.dma == DMA_ADDR_INVALID) {
req->req.dma = dma_map_single(ep->udc->gadget.dev.parent,
req->req.buf, req->req.length,
ep_dir(ep) ? DMA_TO_DEVICE : DMA_FROM_DEVICE);
req->mapped = 1;
}

/* prime the data phase */
if (!req_to_dtd(req))
retval = queue_dtd(ep, req);
Expand Down Expand Up @@ -2115,7 +2122,7 @@ static int __devinit mv_udc_probe(struct platform_device *dev)

/* allocate a small amount of memory to get valid address */
udc->status_req->req.buf = kzalloc(8, GFP_KERNEL);
udc->status_req->req.dma = virt_to_phys(udc->status_req->req.buf);
udc->status_req->req.dma = DMA_ADDR_INVALID;

udc->resume_state = USB_STATE_NOTATTACHED;
udc->usb_state = USB_STATE_POWERED;
Expand Down

0 comments on commit 46e172d

Please sign in to comment.