usb: musb: use is_host_active() to distinguish between host and gadget mode
authorDaniel Mack <zonque@gmail.com>
Mon, 26 May 2014 12:52:36 +0000 (14:52 +0200)
committerFelipe Balbi <balbi@ti.com>
Mon, 30 Jun 2014 19:26:22 +0000 (14:26 -0500)
commitc03da38d5d4b28f6ab559c4df8646dbda536b674
tree2d957ae28494a31fbb84c96455b31a403e93d67b
parent9c547699cce1f9da38af525b692fefb50d96158d
usb: musb: use is_host_active() to distinguish between host and gadget mode

On AM33xx platforms, unplugging a device in the middle of an active
transfer leads to a drop of MUSB_DEVCTL_HM in MUSB_DEVCTL before the
system is informed about a disconnect. This consequently makes the musb
core call the gadget code to handle the interrupt request, which then
crashes the kernel because the relevant pointers haven't been set up
for gadget mode.

To fix this, use is_host_active() rather than (devctl & MUSB_DEVCTL_HM)
in musb_interrupt() and musb_dma_completion() to detect whether the
controller is in host or peripheral mode. This information is provided
by the driver logic and does not rely on register contents.

Signed-off-by: Daniel Mack <zonque@gmail.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
drivers/usb/musb/musb_core.c