Received: by 2002:a05:6a10:a841:0:0:0:0 with SMTP id d1csp1165948pxy; Thu, 29 Apr 2021 00:49:57 -0700 (PDT) X-Google-Smtp-Source: ABdhPJzmgXyO/YUUNMAqEGgomBPSlLqG41uZZmZLvUWVbi6Q0fGSmv2ZxnozeQsKfMKHrfXzxdlZ X-Received: by 2002:a17:906:a06:: with SMTP id w6mr10687332ejf.32.1619682597484; Thu, 29 Apr 2021 00:49:57 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1619682597; cv=none; d=google.com; s=arc-20160816; b=P8vR/1A0cMkvN9NcEBlwdvPnwCIpUKGxQI15L8cG739O9fTwLCFWCaiT9dIYR46jM4 sLLFAHl08eA0//GJTG91jt/z1357p7yWupvo9FvlMBvZ8Kf9vjvqtIn2b3RFkAij5DYI 0ymHAzTSutEAmUYY1USELYplxwbwJR/64UJfPA3A+a7o2wku1P/e+d6XtltAMsPC6MQE AvQVKN8Op9A6h5g/LY+0G8WUVKlxoBjeCM2Is4yiEahmkWjeU0lEfpDFwj1KW5S4XWow vRNCZsVQ1pgIPXZo/3qYGaz93e8oV0XFLVp6nzDe8LcoWO8/d5XuSyWJjpqh2+vOSCx+ xSCg== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:content-transfer-encoding:mime-version :message-id:date:subject:cc:to:from; bh=mKPcWRefyBtkbAWiDnkXR28/3+vMtg7dwdZrJeC/SKM=; b=TELmX282iIlLlwaAoxaJfCgRdDL2o7kh9nXHfmAKXkLcPPtAbyeKZPjXrDlEnmyhpu y/v6p0DK1bSAsHpF1zfVF++nG3j2QWhkgWMPqgfvxaDku0+niGPredlSQ5LKuvlcd18o tDAxrcrEsCYXksVQmHGQM2GKt5ocoPCNHVqeuKtwx7wX7bR4FsVFUTCZpyFy9dbo1nNB kdiUpp8qMDGzvou1X/P/3rEmiI9CxDXRHlbkRzsrbYF9yHsnSYUSDCqKFDGpW8tMWu1y fzUUw4pY72JUTgfSSKcprl1LGWNYSpSxYALkn9EFfL5e5zrxpfafN8rP0zuF6REYlrxX gV7Q== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id zg23si2479461ejb.163.2021.04.29.00.49.33; Thu, 29 Apr 2021 00:49:57 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S239347AbhD2Hq0 (ORCPT + 99 others); Thu, 29 Apr 2021 03:46:26 -0400 Received: from muru.com ([72.249.23.125]:49792 "EHLO muru.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S238725AbhD2HqZ (ORCPT ); Thu, 29 Apr 2021 03:46:25 -0400 Received: from hillo.muru.com (localhost [127.0.0.1]) by muru.com (Postfix) with ESMTP id 0A3BF804D; Thu, 29 Apr 2021 07:45:38 +0000 (UTC) From: Tony Lindgren To: linux-omap@vger.kernel.org Cc: Dave Gerlach , Faiz Abbas , Greg Kroah-Hartman , Grygorii Strashko , Keerthy , Nishanth Menon , Suman Anna , linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org Subject: [PATCH] bus: ti-sysc: Fix am335x resume hang for usb otg module Date: Thu, 29 Apr 2021 10:45:33 +0300 Message-Id: <20210429074533.33355-1-tony@atomide.com> X-Mailer: git-send-email 2.31.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On am335x, suspend and resume only works once, and the system hangs if suspend is attempted again. However, turns out suspend and resume works fine multiple times if the USB OTG driver for musb controller is loaded. The issue is caused my the interconnect target module losing context during suspend, and it needs a restore on resume to be reconfigure again as debugged earlier by Dave Gerlach . There are also other modules that need a restore on resume, like gpmc as noted by Dave. So let's add a common way to restore an interconnect target module based on a quirk flag. For now, let's enable the quirk for am335x otg only to fix the suspend and resume issue. As gpmc is not causing hangs based on tests with BeagleBone, let's patch gpmc separately. For gpmc, we also need a hardware reset done before restore according to Dave. To reinit the modules, we decouple system suspend from PM runtime. We replace calls to pm_runtime_force_suspend() and pm_runtime_force_resume() with direct calls to internal functions and rely on the driver internal state. There no point trying to handle complex system suspend and resume quirks via PM runtime. This is issue should have already been noticed with commit 1819ef2e2d12 ("bus: ti-sysc: Use swsup quirks also for am335x musb") when quirk handling was added for am335x otg for swsup. But the issue went unnoticed as having musb driver loaded hides the issue, and suspend and resume works once without the driver loaded. Fixes: 1819ef2e2d12 ("bus: ti-sysc: Use swsup quirks also for am335x musb") Suggested-by: Dave Gerlach Signed-off-by: Tony Lindgren --- drivers/bus/ti-sysc.c | 29 ++++++++++++++++++++++++--- include/linux/platform_data/ti-sysc.h | 1 + 2 files changed, 27 insertions(+), 3 deletions(-) diff --git a/drivers/bus/ti-sysc.c b/drivers/bus/ti-sysc.c --- a/drivers/bus/ti-sysc.c +++ b/drivers/bus/ti-sysc.c @@ -1295,12 +1295,18 @@ static int __maybe_unused sysc_noirq_suspend(struct device *dev) (SYSC_QUIRK_LEGACY_IDLE | SYSC_QUIRK_NO_IDLE)) return 0; - return pm_runtime_force_suspend(dev); + if (!ddata->enabled) + return 0; + + ddata->needs_resume = 1; + + return sysc_runtime_suspend(dev); } static int __maybe_unused sysc_noirq_resume(struct device *dev) { struct sysc *ddata; + int error; ddata = dev_get_drvdata(dev); @@ -1308,7 +1314,23 @@ static int __maybe_unused sysc_noirq_resume(struct device *dev) (SYSC_QUIRK_LEGACY_IDLE | SYSC_QUIRK_NO_IDLE)) return 0; - return pm_runtime_force_resume(dev); + /* Only enable module if it was on, or needs to be reinitialized */ + if (ddata->needs_resume || + ddata->cfg.quirks & SYSC_QUIRK_REINIT_ON_RESUME) { + error = sysc_runtime_resume(dev); + if (error) + dev_warn(dev, "noirq_resume failed: %i\n", error); + } + + /* Idle quirky module again if it was not on before suspend */ + if (ddata->cfg.quirks & SYSC_QUIRK_REINIT_ON_RESUME && + !ddata->needs_resume) { + error = sysc_runtime_suspend(dev); + } + + ddata->needs_resume = 0; + + return error; } static const struct dev_pm_ops sysc_pm_ops = { @@ -1417,7 +1439,8 @@ static const struct sysc_revision_quirk sysc_revision_quirks[] = { SYSC_QUIRK("usb_otg_hs", 0, 0x400, 0x404, 0x408, 0x00000050, 0xffffffff, SYSC_QUIRK_SWSUP_SIDLE | SYSC_QUIRK_SWSUP_MSTANDBY), SYSC_QUIRK("usb_otg_hs", 0, 0, 0x10, -ENODEV, 0x4ea2080d, 0xffffffff, - SYSC_QUIRK_SWSUP_SIDLE | SYSC_QUIRK_SWSUP_MSTANDBY), + SYSC_QUIRK_SWSUP_SIDLE | SYSC_QUIRK_SWSUP_MSTANDBY | + SYSC_QUIRK_REINIT_ON_RESUME), SYSC_QUIRK("wdt", 0, 0, 0x10, 0x14, 0x502a0500, 0xfffff0f0, SYSC_MODULE_QUIRK_WDT), /* PRUSS on am3, am4 and am5 */ diff --git a/include/linux/platform_data/ti-sysc.h b/include/linux/platform_data/ti-sysc.h --- a/include/linux/platform_data/ti-sysc.h +++ b/include/linux/platform_data/ti-sysc.h @@ -50,6 +50,7 @@ struct sysc_regbits { s8 emufree_shift; }; +#define SYSC_QUIRK_REINIT_ON_RESUME BIT(27) #define SYSC_QUIRK_GPMC_DEBUG BIT(26) #define SYSC_MODULE_QUIRK_ENA_RESETDONE BIT(25) #define SYSC_MODULE_QUIRK_PRUSS BIT(24) -- 2.31.1