aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/drivers/usb/chipidea/ci.h
diff options
context:
space:
mode:
authorXu Yang <xu.yang_2@nxp.com>2023-03-17 14:15:16 +0800
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2023-03-23 18:17:32 +0100
commit451b15ed138ec15bffbebb58a00ebdd884c3e659 (patch)
treed9851e7a88ff31d1b962fbec2b319e00bda5a76c /drivers/usb/chipidea/ci.h
parentusb: chipdea: core: fix return -EINVAL if request role is the same with current role (diff)
downloadwireguard-linux-451b15ed138ec15bffbebb58a00ebdd884c3e659.tar.xz
wireguard-linux-451b15ed138ec15bffbebb58a00ebdd884c3e659.zip
usb: chipidea: core: fix possible concurrent when switch role
The user may call role_store() when driver is handling ci_handle_id_switch() which is triggerred by otg event or power lost event. Unfortunately, the controller may go into chaos in this case. Fix this by protecting it with mutex lock. Fixes: a932a8041ff9 ("usb: chipidea: core: add sysfs group") cc: <stable@vger.kernel.org> Acked-by: Peter Chen <peter.chen@kernel.org> Signed-off-by: Xu Yang <xu.yang_2@nxp.com> Link: https://lore.kernel.org/r/20230317061516.2451728-2-xu.yang_2@nxp.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/chipidea/ci.h')
-rw-r--r--drivers/usb/chipidea/ci.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/usb/chipidea/ci.h b/drivers/usb/chipidea/ci.h
index 005c67cb3afb..f210b7489fd5 100644
--- a/drivers/usb/chipidea/ci.h
+++ b/drivers/usb/chipidea/ci.h
@@ -208,6 +208,7 @@ struct hw_bank {
* @in_lpm: if the core in low power mode
* @wakeup_int: if wakeup interrupt occur
* @rev: The revision number for controller
+ * @mutex: protect code from concorrent running when doing role switch
*/
struct ci_hdrc {
struct device *dev;
@@ -260,6 +261,7 @@ struct ci_hdrc {
bool in_lpm;
bool wakeup_int;
enum ci_revision rev;
+ struct mutex mutex;
};
static inline struct ci_role_driver *ci_role(struct ci_hdrc *ci)