All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] soc: fsl: select FSL_GUTS driver for DPIO
@ 2022-06-20  4:32 ` Mathew McBride
  0 siblings, 0 replies; 9+ messages in thread
From: Mathew McBride @ 2022-06-20  4:32 UTC (permalink / raw)
  To: Ioana Ciornei, Li Yang, linux-arm-kernel; +Cc: Mathew McBride, stable

The soc/fsl/dpio driver will perform a soc_device_match()
to determine the optimal cache settings for a given CPU core.

If FSL_GUTS is not enabled, this search will fail and
the driver will not configure cache stashing for the given
DPIO, and a string of "unknown SoC" messages will appear:

fsl_mc_dpio dpio.7: unknown SoC version
fsl_mc_dpio dpio.6: unknown SoC version
fsl_mc_dpio dpio.5: unknown SoC version

Signed-off-by: Mathew McBride <matt@traverse.com.au>
Fixes: 51da14e96e9b ("soc: fsl: dpio: configure cache stashing destination")
Cc: stable@vger.kernel.org
---
 drivers/soc/fsl/Kconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/soc/fsl/Kconfig b/drivers/soc/fsl/Kconfig
index 07d52cafbb31..fcec6ed83d5e 100644
--- a/drivers/soc/fsl/Kconfig
+++ b/drivers/soc/fsl/Kconfig
@@ -24,6 +24,7 @@ config FSL_MC_DPIO
         tristate "QorIQ DPAA2 DPIO driver"
         depends on FSL_MC_BUS
         select SOC_BUS
+        select FSL_GUTS
         select DIMLIB
         help
 	  Driver for the DPAA2 DPIO object.  A DPIO provides queue and
-- 
2.30.1


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

* [PATCH] soc: fsl: select FSL_GUTS driver for DPIO
@ 2022-06-20  4:32 ` Mathew McBride
  0 siblings, 0 replies; 9+ messages in thread
From: Mathew McBride @ 2022-06-20  4:32 UTC (permalink / raw)
  To: Ioana Ciornei, Li Yang, linux-arm-kernel; +Cc: Mathew McBride, stable

The soc/fsl/dpio driver will perform a soc_device_match()
to determine the optimal cache settings for a given CPU core.

If FSL_GUTS is not enabled, this search will fail and
the driver will not configure cache stashing for the given
DPIO, and a string of "unknown SoC" messages will appear:

fsl_mc_dpio dpio.7: unknown SoC version
fsl_mc_dpio dpio.6: unknown SoC version
fsl_mc_dpio dpio.5: unknown SoC version

Signed-off-by: Mathew McBride <matt@traverse.com.au>
Fixes: 51da14e96e9b ("soc: fsl: dpio: configure cache stashing destination")
Cc: stable@vger.kernel.org
---
 drivers/soc/fsl/Kconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/soc/fsl/Kconfig b/drivers/soc/fsl/Kconfig
index 07d52cafbb31..fcec6ed83d5e 100644
--- a/drivers/soc/fsl/Kconfig
+++ b/drivers/soc/fsl/Kconfig
@@ -24,6 +24,7 @@ config FSL_MC_DPIO
         tristate "QorIQ DPAA2 DPIO driver"
         depends on FSL_MC_BUS
         select SOC_BUS
+        select FSL_GUTS
         select DIMLIB
         help
 	  Driver for the DPAA2 DPIO object.  A DPIO provides queue and
-- 
2.30.1


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [PATCH] soc: fsl: select FSL_GUTS driver for DPIO
  2022-06-20  4:32 ` Mathew McBride
@ 2022-06-23 15:24   ` Ioana Ciornei
  -1 siblings, 0 replies; 9+ messages in thread
From: Ioana Ciornei @ 2022-06-23 15:24 UTC (permalink / raw)
  To: Mathew McBride; +Cc: Leo Li, linux-arm-kernel, stable

On Mon, Jun 20, 2022 at 04:32:43AM +0000, Mathew McBride wrote:
> The soc/fsl/dpio driver will perform a soc_device_match()
> to determine the optimal cache settings for a given CPU core.
> 
> If FSL_GUTS is not enabled, this search will fail and
> the driver will not configure cache stashing for the given
> DPIO, and a string of "unknown SoC" messages will appear:
> 
> fsl_mc_dpio dpio.7: unknown SoC version
> fsl_mc_dpio dpio.6: unknown SoC version
> fsl_mc_dpio dpio.5: unknown SoC version
> 
> Signed-off-by: Mathew McBride <matt@traverse.com.au>
> Fixes: 51da14e96e9b ("soc: fsl: dpio: configure cache stashing destination")
> Cc: stable@vger.kernel.org

Reviewed-by: Ioana Ciornei <ioana.ciornei@nxp.com>

Thanks!

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

* Re: [PATCH] soc: fsl: select FSL_GUTS driver for DPIO
@ 2022-06-23 15:24   ` Ioana Ciornei
  0 siblings, 0 replies; 9+ messages in thread
From: Ioana Ciornei @ 2022-06-23 15:24 UTC (permalink / raw)
  To: Mathew McBride; +Cc: Leo Li, linux-arm-kernel, stable

On Mon, Jun 20, 2022 at 04:32:43AM +0000, Mathew McBride wrote:
> The soc/fsl/dpio driver will perform a soc_device_match()
> to determine the optimal cache settings for a given CPU core.
> 
> If FSL_GUTS is not enabled, this search will fail and
> the driver will not configure cache stashing for the given
> DPIO, and a string of "unknown SoC" messages will appear:
> 
> fsl_mc_dpio dpio.7: unknown SoC version
> fsl_mc_dpio dpio.6: unknown SoC version
> fsl_mc_dpio dpio.5: unknown SoC version
> 
> Signed-off-by: Mathew McBride <matt@traverse.com.au>
> Fixes: 51da14e96e9b ("soc: fsl: dpio: configure cache stashing destination")
> Cc: stable@vger.kernel.org

Reviewed-by: Ioana Ciornei <ioana.ciornei@nxp.com>

Thanks!

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* [PATCH 0/1 RESEND] update Kconfig for DPIO to select FSL_GUTS
  2022-06-20  4:32 ` Mathew McBride
@ 2022-09-01  5:21   ` Mathew McBride
  -1 siblings, 0 replies; 9+ messages in thread
From: Mathew McBride @ 2022-09-01  5:21 UTC (permalink / raw)
  To: Li Yang, Ioana Ciornei, soc, linux-arm-kernel, linux-kernel
  Cc: Mathew McBride

This is a resend of a patch from June, it has already been reviewed.

I was missing the soc list in To: so it may have not been noticed.

Mathew McBride (1):
  soc: fsl: select FSL_GUTS driver for DPIO

 drivers/soc/fsl/Kconfig | 1 +
 1 file changed, 1 insertion(+)

-- 
2.30.1


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

* [PATCH 0/1 RESEND] update Kconfig for DPIO to select FSL_GUTS
@ 2022-09-01  5:21   ` Mathew McBride
  0 siblings, 0 replies; 9+ messages in thread
From: Mathew McBride @ 2022-09-01  5:21 UTC (permalink / raw)
  To: Li Yang, Ioana Ciornei, soc, linux-arm-kernel, linux-kernel
  Cc: Mathew McBride

This is a resend of a patch from June, it has already been reviewed.

I was missing the soc list in To: so it may have not been noticed.

Mathew McBride (1):
  soc: fsl: select FSL_GUTS driver for DPIO

 drivers/soc/fsl/Kconfig | 1 +
 1 file changed, 1 insertion(+)

-- 
2.30.1


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* [PATCH 1/1 RESEND] soc: fsl: select FSL_GUTS driver for DPIO
  2022-09-01  5:21   ` Mathew McBride
@ 2022-09-01  5:21     ` Mathew McBride
  -1 siblings, 0 replies; 9+ messages in thread
From: Mathew McBride @ 2022-09-01  5:21 UTC (permalink / raw)
  To: Li Yang, Ioana Ciornei, soc, linux-arm-kernel, linux-kernel
  Cc: Mathew McBride, stable

The soc/fsl/dpio driver will perform a soc_device_match()
to determine the optimal cache settings for a given CPU core.

If FSL_GUTS is not enabled, this search will fail and
the driver will not configure cache stashing for the given
DPIO, and a string of "unknown SoC" messages will appear:

fsl_mc_dpio dpio.7: unknown SoC version
fsl_mc_dpio dpio.6: unknown SoC version
fsl_mc_dpio dpio.5: unknown SoC version

Signed-off-by: Mathew McBride <matt@traverse.com.au>
Fixes: 51da14e96e9b ("soc: fsl: dpio: configure cache stashing destination")
Cc: stable@vger.kernel.org
Reviewed-by: Ioana Ciornei <ioana.ciornei@nxp.com>
---
 drivers/soc/fsl/Kconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/soc/fsl/Kconfig b/drivers/soc/fsl/Kconfig
index 07d52cafbb31..fcec6ed83d5e 100644
--- a/drivers/soc/fsl/Kconfig
+++ b/drivers/soc/fsl/Kconfig
@@ -24,6 +24,7 @@ config FSL_MC_DPIO
         tristate "QorIQ DPAA2 DPIO driver"
         depends on FSL_MC_BUS
         select SOC_BUS
+        select FSL_GUTS
         select DIMLIB
         help
 	  Driver for the DPAA2 DPIO object.  A DPIO provides queue and
-- 
2.30.1


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

* [PATCH 1/1 RESEND] soc: fsl: select FSL_GUTS driver for DPIO
@ 2022-09-01  5:21     ` Mathew McBride
  0 siblings, 0 replies; 9+ messages in thread
From: Mathew McBride @ 2022-09-01  5:21 UTC (permalink / raw)
  To: Li Yang, Ioana Ciornei, soc, linux-arm-kernel, linux-kernel
  Cc: Mathew McBride, stable

The soc/fsl/dpio driver will perform a soc_device_match()
to determine the optimal cache settings for a given CPU core.

If FSL_GUTS is not enabled, this search will fail and
the driver will not configure cache stashing for the given
DPIO, and a string of "unknown SoC" messages will appear:

fsl_mc_dpio dpio.7: unknown SoC version
fsl_mc_dpio dpio.6: unknown SoC version
fsl_mc_dpio dpio.5: unknown SoC version

Signed-off-by: Mathew McBride <matt@traverse.com.au>
Fixes: 51da14e96e9b ("soc: fsl: dpio: configure cache stashing destination")
Cc: stable@vger.kernel.org
Reviewed-by: Ioana Ciornei <ioana.ciornei@nxp.com>
---
 drivers/soc/fsl/Kconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/soc/fsl/Kconfig b/drivers/soc/fsl/Kconfig
index 07d52cafbb31..fcec6ed83d5e 100644
--- a/drivers/soc/fsl/Kconfig
+++ b/drivers/soc/fsl/Kconfig
@@ -24,6 +24,7 @@ config FSL_MC_DPIO
         tristate "QorIQ DPAA2 DPIO driver"
         depends on FSL_MC_BUS
         select SOC_BUS
+        select FSL_GUTS
         select DIMLIB
         help
 	  Driver for the DPAA2 DPIO object.  A DPIO provides queue and
-- 
2.30.1


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [PATCH 1/1 RESEND] soc: fsl: select FSL_GUTS driver for DPIO
  2022-09-01  5:21     ` Mathew McBride
  (?)
@ 2022-09-02 11:00     ` patchwork-bot+linux-soc
  -1 siblings, 0 replies; 9+ messages in thread
From: patchwork-bot+linux-soc @ 2022-09-02 11:00 UTC (permalink / raw)
  To: Mathew McBride; +Cc: soc

Hello:

This patch was applied to soc/soc.git (arm/fixes)
by Arnd Bergmann <arnd@arndb.de>:

On Thu,  1 Sep 2022 05:21:49 +0000 you wrote:
> The soc/fsl/dpio driver will perform a soc_device_match()
> to determine the optimal cache settings for a given CPU core.
> 
> If FSL_GUTS is not enabled, this search will fail and
> the driver will not configure cache stashing for the given
> DPIO, and a string of "unknown SoC" messages will appear:
> 
> [...]

Here is the summary with links:
  - [1/1,RESEND] soc: fsl: select FSL_GUTS driver for DPIO
    https://git.kernel.org/soc/soc/c/9a472613f5bc

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



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

end of thread, other threads:[~2022-09-02 11:00 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-06-20  4:32 [PATCH] soc: fsl: select FSL_GUTS driver for DPIO Mathew McBride
2022-06-20  4:32 ` Mathew McBride
2022-06-23 15:24 ` Ioana Ciornei
2022-06-23 15:24   ` Ioana Ciornei
2022-09-01  5:21 ` [PATCH 0/1 RESEND] update Kconfig for DPIO to select FSL_GUTS Mathew McBride
2022-09-01  5:21   ` Mathew McBride
2022-09-01  5:21   ` [PATCH 1/1 RESEND] soc: fsl: select FSL_GUTS driver for DPIO Mathew McBride
2022-09-01  5:21     ` Mathew McBride
2022-09-02 11:00     ` patchwork-bot+linux-soc

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.