]> git.baikalelectronics.ru Git - kernel.git/commit
usb: gadget: fsl_udc_core: dTD's next dtd pointer need to be updated once written
authorPeter Chen <peter.chen@freescale.com>
Sun, 1 Apr 2012 07:17:16 +0000 (15:17 +0800)
committerFelipe Balbi <balbi@ti.com>
Fri, 4 May 2012 12:53:06 +0000 (15:53 +0300)
commit57087750043b2e405c59cebe65376c35bbcb6abe
tree3b1dbc71853a24008a47a0346e1cd4e4435bca5f
parent7fdf79788b727bb6496279f01a0c8346f5704fa4
usb: gadget: fsl_udc_core: dTD's next dtd pointer need to be updated once written

dTD's next dtd pointer need to be updated once CPU writes it, or this
request may not be handled by controller, then host will get NAK from
device forever.

This problem occurs when there is a request is handling, we need to add
a new request to dTD list, if this new request is added before the current
one is finished, the new request is intended to added as next dtd pointer
at current dTD, but without wmb(), the dTD's next dtd pointer may not be
updated when the controller reads it. In that case, the controller will
still get Terminate Bit is 1 at dTD's next dtd pointer, that means there is
no next request, then this new request is missed by controller.

CC: <stable@vger.kernel.org>
Signed-off-by: Peter Chen <peter.chen@freescale.com>
Acked-by: Li Yang <leoli@freescale.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
drivers/usb/gadget/fsl_udc_core.c