From: Sergey Ryazanov <ryazanov.s.a@gmail.com>
To: Jinjian Song <jinjian.song@fibocom.com>,
chandrashekar.devegowda@intel.com,
chiranjeevi.rapolu@linux.intel.com, haijun.liu@mediatek.com,
m.chetan.kumar@linux.intel.com, ricardo.martinez@linux.intel.com,
loic.poulain@linaro.org, johannes@sipsolutions.net,
davem@davemloft.net, edumazet@google.com, kuba@kernel.org,
pabeni@redhat.com
Cc: angelogioacchino.delregno@collabora.com, corbet@lwn.net,
danielwinkler@google.com, helgaas@kernel.org, korneld@google.com,
linux-arm-kernel@lists.infradead.org, linux-doc@vger.kernel.org,
linux-kernel@vger.kernel.org, linux-mediatek@lists.infradead.org,
matthias.bgg@gmail.com, netdev@vger.kernel.org,
Linas Vepstas <linasvepstas@gmail.com>,
Bjorn Helgaas <bhelgaas@google.com>
Subject: Re: [net-next v2] net: wwan: t7xx: reset device if suspend fails
Date: Wed, 30 Oct 2024 20:33:26 +0200 [thread overview]
Message-ID: <e37b9baa-51e5-48f9-a15d-521f29ce5f9c@gmail.com> (raw)
In-Reply-To: <20241029034657.6937-1-jinjian.song@fibocom.com>
Hi Jinjian,
On 29.10.2024 05:46, Jinjian Song wrote:
> From: Sergey Ryazanov <ryazanov.s.a@gmail.com>
>> On 22.10.2024 11:43, Jinjian Song wrote:
>>> If driver fails to set the device to suspend, it means that the
>>> device is abnormal. In this case, reset the device to recover
>>> when PCIe device is offline.
>>
>> Is it a reproducible or a speculative issue? Does the fix recover
>> modem from a problematic state?
>>
>> Anyway we need someone more familiar with this hardware (Intel or
>> MediaTek engineer) to Ack the change to make sure we are not going to
>> put a system in a more complicated state.
>
> Hi Sergey,
>
> This is a very difficult issue to replicate onece occured and fixed.
>
> The issue occured when driver and device lost the connection. I have
> encountered this problem twice so far:
> 1. During suspend/resume stress test, there was a probabilistic D3L2
> time sequence issue with the BIOS, result in PCIe link down, driver
> read and write the register of device invalid, so suspend failed.
> This issue was eventually fixed in the BIOS and I was able to restore
> it through the reset module after reproducing the problem.
>
> 2. During idle test, the modem probabilistic hang up, result in PCIe
> link down, driver read and write the register of device invalid, so
> suspend failed. This issue was eventually fiex in device modem firmware
> by adjust a certain power supply voltage, and reset modem as a workround
> to restore when the MBIM port command timeout in userspace applycations.
>
> Hardware reset modem to recover was discussed with MTK, and they said
> that if we don't want to keep the on-site problem location in case of
> suspend failure, we can use the recover solution.
> Both the ocurred issues result in the PCIe link issue, driver can't read
> and writer the register of WWAN device, so I want to add this path
> to restore, hardware reset modem can recover modem, but using the
> pci_channle_offline() as the judgment is my inference.
Thank you for the clarification. Let me summarize what I've understood
from the explanation:
a) there were hardware (firmware) issues,
b) issues already were solved,
c) issues were not directly related to the device suspension procedure,
d) you want to implement a backup plan to make the modem support robust.
If got it right, then I would like to recommend to implement a generic
error handling solution for the PCIe interface. You can check this
document: Documentation/PCI/pci-error-recovery.rst
Suddenly, I am not an expert in the PCIe link recovery procedure, so
I've CCed this message to PCI subsystem maintainers. I hope they can
suggest a conceptually correct way to handle these cases.
>>> Signed-off-by: Jinjian Song <jinjian.song@fibocom.com>
>>> ---
>>> V2:
>>> * Add judgment, reset when device is offline
>>> ---
>>> drivers/net/wwan/t7xx/t7xx_pci.c | 4 ++++
>>> 1 file changed, 4 insertions(+)
>>>
>>> diff --git a/drivers/net/wwan/t7xx/t7xx_pci.c b/drivers/net/wwan/
>>> t7xx/t7xx_pci.c
>>> index e556e5bd49ab..4f89a353588b 100644
>>> --- a/drivers/net/wwan/t7xx/t7xx_pci.c
>>> +++ b/drivers/net/wwan/t7xx/t7xx_pci.c
>>> @@ -427,6 +427,10 @@ static int __t7xx_pci_pm_suspend(struct pci_dev
>>> *pdev)
>>> iowrite32(T7XX_L1_BIT(0), IREG_BASE(t7xx_dev) +
>>> ENABLE_ASPM_LOWPWR);
>>> atomic_set(&t7xx_dev->md_pm_state, MTK_PM_RESUMED);
>>> t7xx_pcie_mac_set_int(t7xx_dev, SAP_RGU_INT);
>>> + if (pci_channel_offline(pdev)) {
>>> + dev_err(&pdev->dev, "Device offline, reset to recover\n");
>>> + t7xx_reset_device(t7xx_dev, PLDR);
>>> + }
>>> return ret;
>>> }
--
Sergey
next prev parent reply other threads:[~2024-10-30 18:35 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-10-22 8:43 [net-next v2] net: wwan: t7xx: reset device if suspend fails Jinjian Song
2024-10-29 0:58 ` Sergey Ryazanov
2024-10-29 3:46 ` Jinjian Song
2024-10-30 18:33 ` Sergey Ryazanov [this message]
2024-10-31 13:09 ` Jinjian Song
2024-10-31 17:04 ` Bjorn Helgaas
2024-11-03 1:24 ` Linas Vepstas
2024-11-03 22:02 ` Sergey Ryazanov
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=e37b9baa-51e5-48f9-a15d-521f29ce5f9c@gmail.com \
--to=ryazanov.s.a@gmail.com \
--cc=angelogioacchino.delregno@collabora.com \
--cc=bhelgaas@google.com \
--cc=chandrashekar.devegowda@intel.com \
--cc=chiranjeevi.rapolu@linux.intel.com \
--cc=corbet@lwn.net \
--cc=danielwinkler@google.com \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=haijun.liu@mediatek.com \
--cc=helgaas@kernel.org \
--cc=jinjian.song@fibocom.com \
--cc=johannes@sipsolutions.net \
--cc=korneld@google.com \
--cc=kuba@kernel.org \
--cc=linasvepstas@gmail.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-doc@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mediatek@lists.infradead.org \
--cc=loic.poulain@linaro.org \
--cc=m.chetan.kumar@linux.intel.com \
--cc=matthias.bgg@gmail.com \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=ricardo.martinez@linux.intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox