mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH v2 0/5] Fix MEI command timeout issue following warm reboot
@ 2024-06-24  1:42 Wentong Wu
  2024-06-24  1:42 ` [PATCH v2 1/5] mei: vsc: Enhance IVSC chipset stability during " Wentong Wu
                   ` (4 more replies)
  0 siblings, 5 replies; 8+ messages in thread
From: Wentong Wu @ 2024-06-24  1:42 UTC (permalink / raw)
  To: sakari.ailus, tomas.winkler, gregkh; +Cc: linux-kernel, Wentong Wu

While enabling the IVSC on certain recent commercial products, the chipset
may occasionally enter an unknown state following a warm reboot. This issue
can cause the firmware to fail in responding to the MEI command from the
host, despite the firmware being re-downloaded. To resolve this, the current
patch set incorporates reset logic during system shutdown to ensure that the
IVSC chipset remains in a valid state after a warm reboot.

Furthermore, after the firmware download is complete, the firmware requires
some time to become operational. To enhance this, additional sleep time has
been introduced before the initial read operation to prevent a confusing
timeout error in vsc_tp_xfer().

Additionally, this patch set includes several enhancements as well:
1) utilizing the appropriate byte order swap function for data received
from the ROM;
2) correcting a spelling error in a comment;
3) Constructing the SPI transfer command as per the specific request.

---
v1 -> v2:
 - remove cc spelling fix to stable
 - remove the reset toggling enhancement

Wentong Wu (5):
  mei: vsc: Enhance IVSC chipset stability during warm reboot
  mei: vsc: Enhance SPI transfer of IVSC rom
  mei: vsc: Utilize the appropriate byte order swap function
  mei: vsc: Prevent timeout error with added delay post-firmware
    download
  mei: vsc: Fix spelling error

 drivers/misc/mei/platform-vsc.c  |  4 ++--
 drivers/misc/mei/vsc-fw-loader.c |  2 +-
 drivers/misc/mei/vsc-tp.c        | 18 ++++++++++++++++--
 3 files changed, 19 insertions(+), 5 deletions(-)

-- 
2.34.1


^ permalink raw reply	[flat|nested] 8+ messages in thread

* [PATCH v2 1/5] mei: vsc: Enhance IVSC chipset stability during warm reboot
  2024-06-24  1:42 [PATCH v2 0/5] Fix MEI command timeout issue following warm reboot Wentong Wu
@ 2024-06-24  1:42 ` Wentong Wu
  2024-06-24  1:42 ` [PATCH v2 2/5] mei: vsc: Enhance SPI transfer of IVSC rom Wentong Wu
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 8+ messages in thread
From: Wentong Wu @ 2024-06-24  1:42 UTC (permalink / raw)
  To: sakari.ailus, tomas.winkler, gregkh
  Cc: linux-kernel, Wentong Wu, stable, Jason Chen

During system shutdown, incorporate reset logic to ensure the IVSC
chipset remains in a valid state. This adjustment guarantees that
the IVSC chipset operates in a known state following a warm reboot.

Fixes: 566f5ca97680 ("mei: Add transport driver for IVSC device")
Cc: stable@vger.kernel.org # for 6.8+
Signed-off-by: Wentong Wu <wentong.wu@intel.com>
Tested-by: Jason Chen <jason.z.chen@intel.com>
---
 drivers/misc/mei/vsc-tp.c | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/drivers/misc/mei/vsc-tp.c b/drivers/misc/mei/vsc-tp.c
index e6a98dba8a73..5f3195636e53 100644
--- a/drivers/misc/mei/vsc-tp.c
+++ b/drivers/misc/mei/vsc-tp.c
@@ -568,6 +568,19 @@ static void vsc_tp_remove(struct spi_device *spi)
 	free_irq(spi->irq, tp);
 }
 
+static void vsc_tp_shutdown(struct spi_device *spi)
+{
+	struct vsc_tp *tp = spi_get_drvdata(spi);
+
+	platform_device_unregister(tp->pdev);
+
+	mutex_destroy(&tp->mutex);
+
+	vsc_tp_reset(tp);
+
+	free_irq(spi->irq, tp);
+}
+
 static const struct acpi_device_id vsc_tp_acpi_ids[] = {
 	{ "INTC1009" }, /* Raptor Lake */
 	{ "INTC1058" }, /* Tiger Lake */
@@ -580,6 +593,7 @@ MODULE_DEVICE_TABLE(acpi, vsc_tp_acpi_ids);
 static struct spi_driver vsc_tp_driver = {
 	.probe = vsc_tp_probe,
 	.remove = vsc_tp_remove,
+	.shutdown = vsc_tp_shutdown,
 	.driver = {
 		.name = "vsc-tp",
 		.acpi_match_table = vsc_tp_acpi_ids,
-- 
2.34.1


^ permalink raw reply	[flat|nested] 8+ messages in thread

* [PATCH v2 2/5] mei: vsc: Enhance SPI transfer of IVSC rom
  2024-06-24  1:42 [PATCH v2 0/5] Fix MEI command timeout issue following warm reboot Wentong Wu
  2024-06-24  1:42 ` [PATCH v2 1/5] mei: vsc: Enhance IVSC chipset stability during " Wentong Wu
@ 2024-06-24  1:42 ` Wentong Wu
  2024-06-24  8:07   ` Sakari Ailus
  2024-06-24  1:42 ` [PATCH v2 3/5] mei: vsc: Utilize the appropriate byte order swap function Wentong Wu
                   ` (2 subsequent siblings)
  4 siblings, 1 reply; 8+ messages in thread
From: Wentong Wu @ 2024-06-24  1:42 UTC (permalink / raw)
  To: sakari.ailus, tomas.winkler, gregkh
  Cc: linux-kernel, Wentong Wu, stable, Jason Chen

Constructing the SPI transfer command as per the specific request.

Fixes: 566f5ca97680 ("mei: Add transport driver for IVSC device")
Cc: stable@vger.kernel.org # for 6.8+
Signed-off-by: Wentong Wu <wentong.wu@intel.com>
Tested-by: Jason Chen <jason.z.chen@intel.com>
---
 drivers/misc/mei/vsc-tp.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/misc/mei/vsc-tp.c b/drivers/misc/mei/vsc-tp.c
index 5f3195636e53..fed156919fda 100644
--- a/drivers/misc/mei/vsc-tp.c
+++ b/drivers/misc/mei/vsc-tp.c
@@ -331,7 +331,7 @@ int vsc_tp_rom_xfer(struct vsc_tp *tp, const void *obuf, void *ibuf, size_t len)
 		return ret;
 	}
 
-	ret = vsc_tp_dev_xfer(tp, tp->tx_buf, tp->rx_buf, len);
+	ret = vsc_tp_dev_xfer(tp, tp->tx_buf, ibuf ? tp->rx_buf : ibuf, len);
 	if (ret)
 		return ret;
 
-- 
2.34.1


^ permalink raw reply	[flat|nested] 8+ messages in thread

* [PATCH v2 3/5] mei: vsc: Utilize the appropriate byte order swap function
  2024-06-24  1:42 [PATCH v2 0/5] Fix MEI command timeout issue following warm reboot Wentong Wu
  2024-06-24  1:42 ` [PATCH v2 1/5] mei: vsc: Enhance IVSC chipset stability during " Wentong Wu
  2024-06-24  1:42 ` [PATCH v2 2/5] mei: vsc: Enhance SPI transfer of IVSC rom Wentong Wu
@ 2024-06-24  1:42 ` Wentong Wu
  2024-06-24  1:42 ` [PATCH v2 4/5] mei: vsc: Prevent timeout error with added delay post-firmware download Wentong Wu
  2024-06-24  1:42 ` [PATCH v2 5/5] mei: vsc: Fix spelling error Wentong Wu
  4 siblings, 0 replies; 8+ messages in thread
From: Wentong Wu @ 2024-06-24  1:42 UTC (permalink / raw)
  To: sakari.ailus, tomas.winkler, gregkh
  Cc: linux-kernel, Wentong Wu, stable, Jason Chen

Switch from cpu_to_be32_array() to be32_to_cpu_array() for the
received rom data.

Fixes: 566f5ca97680 ("mei: Add transport driver for IVSC device")
Cc: stable@vger.kernel.org # for 6.8+
Signed-off-by: Wentong Wu <wentong.wu@intel.com>
Tested-by: Jason Chen <jason.z.chen@intel.com>
---
 drivers/misc/mei/vsc-tp.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/misc/mei/vsc-tp.c b/drivers/misc/mei/vsc-tp.c
index fed156919fda..12236599649e 100644
--- a/drivers/misc/mei/vsc-tp.c
+++ b/drivers/misc/mei/vsc-tp.c
@@ -336,7 +336,7 @@ int vsc_tp_rom_xfer(struct vsc_tp *tp, const void *obuf, void *ibuf, size_t len)
 		return ret;
 
 	if (ibuf)
-		cpu_to_be32_array(ibuf, tp->rx_buf, words);
+		be32_to_cpu_array(ibuf, tp->rx_buf, words);
 
 	return ret;
 }
-- 
2.34.1


^ permalink raw reply	[flat|nested] 8+ messages in thread

* [PATCH v2 4/5] mei: vsc: Prevent timeout error with added delay post-firmware download
  2024-06-24  1:42 [PATCH v2 0/5] Fix MEI command timeout issue following warm reboot Wentong Wu
                   ` (2 preceding siblings ...)
  2024-06-24  1:42 ` [PATCH v2 3/5] mei: vsc: Utilize the appropriate byte order swap function Wentong Wu
@ 2024-06-24  1:42 ` Wentong Wu
  2024-06-24  1:42 ` [PATCH v2 5/5] mei: vsc: Fix spelling error Wentong Wu
  4 siblings, 0 replies; 8+ messages in thread
From: Wentong Wu @ 2024-06-24  1:42 UTC (permalink / raw)
  To: sakari.ailus, tomas.winkler, gregkh
  Cc: linux-kernel, Wentong Wu, stable, Jason Chen

After completing the firmware download, the firmware requires some
time to become functional. This change introduces additional sleep
time before the first read operation to prevent a confusing timeout
error in vsc_tp_xfer().

Fixes: 566f5ca97680 ("mei: Add transport driver for IVSC device")
Cc: stable@vger.kernel.org # for 6.8+
Signed-off-by: Wentong Wu <wentong.wu@intel.com>
Tested-by: Jason Chen <jason.z.chen@intel.com>
---
 drivers/misc/mei/platform-vsc.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/misc/mei/platform-vsc.c b/drivers/misc/mei/platform-vsc.c
index 1ec65d87488a..d02f6e881139 100644
--- a/drivers/misc/mei/platform-vsc.c
+++ b/drivers/misc/mei/platform-vsc.c
@@ -28,8 +28,8 @@
 
 #define MEI_VSC_MAX_MSG_SIZE		512
 
-#define MEI_VSC_POLL_DELAY_US		(50 * USEC_PER_MSEC)
-#define MEI_VSC_POLL_TIMEOUT_US		(200 * USEC_PER_MSEC)
+#define MEI_VSC_POLL_DELAY_US		(100 * USEC_PER_MSEC)
+#define MEI_VSC_POLL_TIMEOUT_US		(400 * USEC_PER_MSEC)
 
 #define mei_dev_to_vsc_hw(dev)		((struct mei_vsc_hw *)((dev)->hw))
 
-- 
2.34.1


^ permalink raw reply	[flat|nested] 8+ messages in thread

* [PATCH v2 5/5] mei: vsc: Fix spelling error
  2024-06-24  1:42 [PATCH v2 0/5] Fix MEI command timeout issue following warm reboot Wentong Wu
                   ` (3 preceding siblings ...)
  2024-06-24  1:42 ` [PATCH v2 4/5] mei: vsc: Prevent timeout error with added delay post-firmware download Wentong Wu
@ 2024-06-24  1:42 ` Wentong Wu
  4 siblings, 0 replies; 8+ messages in thread
From: Wentong Wu @ 2024-06-24  1:42 UTC (permalink / raw)
  To: sakari.ailus, tomas.winkler, gregkh; +Cc: linux-kernel, Wentong Wu, Jason Chen

Fix a spelling error in a comment.

Fixes: 566f5ca97680 ("mei: Add transport driver for IVSC device")
Signed-off-by: Wentong Wu <wentong.wu@intel.com>
Tested-by: Jason Chen <jason.z.chen@intel.com>
---
 drivers/misc/mei/vsc-fw-loader.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/misc/mei/vsc-fw-loader.c b/drivers/misc/mei/vsc-fw-loader.c
index 596a9d695dfc..084d0205f97d 100644
--- a/drivers/misc/mei/vsc-fw-loader.c
+++ b/drivers/misc/mei/vsc-fw-loader.c
@@ -204,7 +204,7 @@ struct vsc_img_frag {
 
 /**
  * struct vsc_fw_loader - represent vsc firmware loader
- * @dev: device used to request fimware
+ * @dev: device used to request firmware
  * @tp: transport layer used with the firmware loader
  * @csi: CSI image
  * @ace: ACE image
-- 
2.34.1


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH v2 2/5] mei: vsc: Enhance SPI transfer of IVSC rom
  2024-06-24  1:42 ` [PATCH v2 2/5] mei: vsc: Enhance SPI transfer of IVSC rom Wentong Wu
@ 2024-06-24  8:07   ` Sakari Ailus
  2024-06-24 11:19     ` Wu, Wentong
  0 siblings, 1 reply; 8+ messages in thread
From: Sakari Ailus @ 2024-06-24  8:07 UTC (permalink / raw)
  To: Wentong Wu; +Cc: tomas.winkler, gregkh, linux-kernel, stable, Jason Chen

Hi Wentong,

On Mon, Jun 24, 2024 at 09:42:20AM +0800, Wentong Wu wrote:
> Constructing the SPI transfer command as per the specific request.
> 
> Fixes: 566f5ca97680 ("mei: Add transport driver for IVSC device")
> Cc: stable@vger.kernel.org # for 6.8+
> Signed-off-by: Wentong Wu <wentong.wu@intel.com>
> Tested-by: Jason Chen <jason.z.chen@intel.com>
> ---
>  drivers/misc/mei/vsc-tp.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/misc/mei/vsc-tp.c b/drivers/misc/mei/vsc-tp.c
> index 5f3195636e53..fed156919fda 100644
> --- a/drivers/misc/mei/vsc-tp.c
> +++ b/drivers/misc/mei/vsc-tp.c
> @@ -331,7 +331,7 @@ int vsc_tp_rom_xfer(struct vsc_tp *tp, const void *obuf, void *ibuf, size_t len)
>  		return ret;
>  	}
>  
> -	ret = vsc_tp_dev_xfer(tp, tp->tx_buf, tp->rx_buf, len);
> +	ret = vsc_tp_dev_xfer(tp, tp->tx_buf, ibuf ? tp->rx_buf : ibuf, len);

The latter ibuf should be NULL explicitly.

>  	if (ret)
>  		return ret;
>  

-- 
Kind regards,

Sakari Ailus

^ permalink raw reply	[flat|nested] 8+ messages in thread

* RE: [PATCH v2 2/5] mei: vsc: Enhance SPI transfer of IVSC rom
  2024-06-24  8:07   ` Sakari Ailus
@ 2024-06-24 11:19     ` Wu, Wentong
  0 siblings, 0 replies; 8+ messages in thread
From: Wu, Wentong @ 2024-06-24 11:19 UTC (permalink / raw)
  To: Sakari Ailus; +Cc: Winkler, Tomas, gregkh, linux-kernel, stable, Chen, Jason Z

> From: Sakari Ailus <sakari.ailus@linux.intel.com>
> 
> Hi Wentong,
> 
> On Mon, Jun 24, 2024 at 09:42:20AM +0800, Wentong Wu wrote:
> > Constructing the SPI transfer command as per the specific request.
> >
> > Fixes: 566f5ca97680 ("mei: Add transport driver for IVSC device")
> > Cc: stable@vger.kernel.org # for 6.8+
> > Signed-off-by: Wentong Wu <wentong.wu@intel.com>
> > Tested-by: Jason Chen <jason.z.chen@intel.com>
> > ---
> >  drivers/misc/mei/vsc-tp.c | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/drivers/misc/mei/vsc-tp.c b/drivers/misc/mei/vsc-tp.c
> > index 5f3195636e53..fed156919fda 100644
> > --- a/drivers/misc/mei/vsc-tp.c
> > +++ b/drivers/misc/mei/vsc-tp.c
> > @@ -331,7 +331,7 @@ int vsc_tp_rom_xfer(struct vsc_tp *tp, const void
> *obuf, void *ibuf, size_t len)
> >  		return ret;
> >  	}
> >
> > -	ret = vsc_tp_dev_xfer(tp, tp->tx_buf, tp->rx_buf, len);
> > +	ret = vsc_tp_dev_xfer(tp, tp->tx_buf, ibuf ? tp->rx_buf : ibuf,
> > +len);
> 
> The latter ibuf should be NULL explicitly.

Ack, thanks, that will be fixed in v3 patch set.

BR,
Wentong
> 
> >  	if (ret)
> >  		return ret;
> >
> 
> --
> Kind regards,
> 
> Sakari Ailus

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2024-06-24 11:19 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-06-24  1:42 [PATCH v2 0/5] Fix MEI command timeout issue following warm reboot Wentong Wu
2024-06-24  1:42 ` [PATCH v2 1/5] mei: vsc: Enhance IVSC chipset stability during " Wentong Wu
2024-06-24  1:42 ` [PATCH v2 2/5] mei: vsc: Enhance SPI transfer of IVSC rom Wentong Wu
2024-06-24  8:07   ` Sakari Ailus
2024-06-24 11:19     ` Wu, Wentong
2024-06-24  1:42 ` [PATCH v2 3/5] mei: vsc: Utilize the appropriate byte order swap function Wentong Wu
2024-06-24  1:42 ` [PATCH v2 4/5] mei: vsc: Prevent timeout error with added delay post-firmware download Wentong Wu
2024-06-24  1:42 ` [PATCH v2 5/5] mei: vsc: Fix spelling error Wentong Wu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®