• Bo Shen's avatar
    usb: gadget: udc: atmel: fix possible IN hang issue · 6785a103
    Bo Shen authored
    When receive data, the RXRDY in status register set by hardware
    after a new packet has been stored in the endpoint FIFO. When it
    is copied from FIFO, this bit is cleared which make the FIFO can
    be accessed again.
    
    In the receive_data() function, this bit RXRDY has been cleared.
    So, after the receive_data() function return, this bit should
    not be cleared again, or else it may cause the accessing FIFO
    corrupt, which will make the data loss.
    
    Fixes: 914a3f3b (USB: add atmel_usba_udc driver)
    Cc: <stable@vger.kernel.org> # 2.6.24+
    Acked-by: default avatarNicolas Ferre <nicolas.ferre@atmel.com>
    Signed-off-by: default avatarBo Shen <voice.shen@atmel.com>
    Signed-off-by: default avatarFelipe Balbi <balbi@ti.com>
    6785a103
atmel_usba_udc.c 50.3 KB