stable.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 6.11 v3 0/3] Fix PPS channel routing
@ 2024-12-02 15:57 Csókás, Bence
  2024-12-02 15:57 ` [PATCH 6.11 v3 1/3] dt-bindings: net: fec: add pps channel property Csókás, Bence
                   ` (2 more replies)
  0 siblings, 3 replies; 13+ messages in thread
From: Csókás, Bence @ 2024-12-02 15:57 UTC (permalink / raw)
  To: stable
  Cc: Csókás, Bence, Sasha Levin, Greg Kroah-Hartman,
	Francesco Dolcini

On certain i.MX8 series parts [1], the PPS channel 0
is routed internally to eDMA, and the external PPS
pin is available on channel 1. In addition, on
certain boards, the PPS may be wired on the PCB to
an EVENTOUTn pin other than 0. On these systems
it is necessary that the PPS channel be able
to be configured from the Device Tree.

[1] https://lore.kernel.org/all/ZrPYOWA3FESx197L@lizhi-Precision-Tower-5810/

Changes in v2:
* add upstream hash (pick -x)
Changes in v3:
* Add S-o-b despite Sasha's complaining bot

Francesco Dolcini (3):
  dt-bindings: net: fec: add pps channel property
  net: fec: refactor PPS channel configuration
  net: fec: make PPS channel configurable

 Documentation/devicetree/bindings/net/fsl,fec.yaml |  7 +++++++
 drivers/net/ethernet/freescale/fec_ptp.c           | 11 ++++++-----
 2 files changed, 13 insertions(+), 5 deletions(-)

-- 
2.34.1



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

* [PATCH 6.11 v3 1/3] dt-bindings: net: fec: add pps channel property
  2024-12-02 15:57 [PATCH 6.11 v3 0/3] Fix PPS channel routing Csókás, Bence
@ 2024-12-02 15:57 ` Csókás, Bence
  2024-12-02 19:16   ` Sasha Levin
  2024-12-03  9:10   ` Greg Kroah-Hartman
  2024-12-02 15:57 ` [PATCH 6.11 v3 2/3] net: fec: refactor PPS channel configuration Csókás, Bence
  2024-12-02 15:57 ` [PATCH 6.11 v3 3/3] net: fec: make PPS channel configurable Csókás, Bence
  2 siblings, 2 replies; 13+ messages in thread
From: Csókás, Bence @ 2024-12-02 15:57 UTC (permalink / raw)
  To: stable
  Cc: Francesco Dolcini, Sasha Levin, Greg Kroah-Hartman,
	Csókás, Bence, Conor Dooley, Paolo Abeni

From: Francesco Dolcini <francesco.dolcini@toradex.com>

Add fsl,pps-channel property to select where to connect the PPS signal.
This depends on the internal SoC routing and on the board, for example
on the i.MX8 SoC it can be connected to an external pin (using channel 1)
or to internal eDMA as DMA request (channel 0).

Signed-off-by: Francesco Dolcini <francesco.dolcini@toradex.com>
Acked-by: Conor Dooley <conor.dooley@microchip.com>
Signed-off-by: Paolo Abeni <pabeni@redhat.com>

(cherry picked from commit 1aa772be0444a2bd06957f6d31865e80e6ae4244)
Signed-off-by: Csókás, Bence <csokas.bence@prolan.hu>
---
 Documentation/devicetree/bindings/net/fsl,fec.yaml | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/Documentation/devicetree/bindings/net/fsl,fec.yaml b/Documentation/devicetree/bindings/net/fsl,fec.yaml
index 5536c06139ca..24e863fdbdab 100644
--- a/Documentation/devicetree/bindings/net/fsl,fec.yaml
+++ b/Documentation/devicetree/bindings/net/fsl,fec.yaml
@@ -183,6 +183,13 @@ properties:
     description:
       Register bits of stop mode control, the format is <&gpr req_gpr req_bit>.
 
+  fsl,pps-channel:
+    $ref: /schemas/types.yaml#/definitions/uint32
+    default: 0
+    description:
+      Specifies to which timer instance the PPS signal is routed.
+    enum: [0, 1, 2, 3]
+
   mdio:
     $ref: mdio.yaml#
     unevaluatedProperties: false
-- 
2.34.1



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

* [PATCH 6.11 v3 2/3] net: fec: refactor PPS channel configuration
  2024-12-02 15:57 [PATCH 6.11 v3 0/3] Fix PPS channel routing Csókás, Bence
  2024-12-02 15:57 ` [PATCH 6.11 v3 1/3] dt-bindings: net: fec: add pps channel property Csókás, Bence
@ 2024-12-02 15:57 ` Csókás, Bence
  2024-12-02 19:16   ` Sasha Levin
  2024-12-03  9:10   ` Greg Kroah-Hartman
  2024-12-02 15:57 ` [PATCH 6.11 v3 3/3] net: fec: make PPS channel configurable Csókás, Bence
  2 siblings, 2 replies; 13+ messages in thread
From: Csókás, Bence @ 2024-12-02 15:57 UTC (permalink / raw)
  To: stable
  Cc: Francesco Dolcini, Sasha Levin, Greg Kroah-Hartman,
	Csókás, Bence, Frank Li, Paolo Abeni

From: Francesco Dolcini <francesco.dolcini@toradex.com>

Preparation patch to allow for PPS channel configuration, no functional
change intended.

Signed-off-by: Francesco Dolcini <francesco.dolcini@toradex.com>
Reviewed-by: Frank Li <Frank.Li@nxp.com>
Reviewed-by: Csókás, Bence <csokas.bence@prolan.hu>
Signed-off-by: Paolo Abeni <pabeni@redhat.com>

(cherry picked from commit bf8ca67e21671e7a56e31da45360480b28f185f1)
Signed-off-by: Csókás, Bence <csokas.bence@prolan.hu>
---
 drivers/net/ethernet/freescale/fec_ptp.c | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/drivers/net/ethernet/freescale/fec_ptp.c b/drivers/net/ethernet/freescale/fec_ptp.c
index a4eb6edb850a..37e1c895f1b8 100644
--- a/drivers/net/ethernet/freescale/fec_ptp.c
+++ b/drivers/net/ethernet/freescale/fec_ptp.c
@@ -84,8 +84,7 @@
 #define FEC_CC_MULT	(1 << 31)
 #define FEC_COUNTER_PERIOD	(1 << 31)
 #define PPS_OUPUT_RELOAD_PERIOD	NSEC_PER_SEC
-#define FEC_CHANNLE_0		0
-#define DEFAULT_PPS_CHANNEL	FEC_CHANNLE_0
+#define DEFAULT_PPS_CHANNEL	0
 
 #define FEC_PTP_MAX_NSEC_PERIOD		4000000000ULL
 #define FEC_PTP_MAX_NSEC_COUNTER	0x80000000ULL
@@ -524,8 +523,9 @@ static int fec_ptp_enable(struct ptp_clock_info *ptp,
 	unsigned long flags;
 	int ret = 0;
 
+	fep->pps_channel = DEFAULT_PPS_CHANNEL;
+
 	if (rq->type == PTP_CLK_REQ_PPS) {
-		fep->pps_channel = DEFAULT_PPS_CHANNEL;
 		fep->reload_period = PPS_OUPUT_RELOAD_PERIOD;
 
 		ret = fec_ptp_enable_pps(fep, on);
@@ -536,10 +536,9 @@ static int fec_ptp_enable(struct ptp_clock_info *ptp,
 		if (rq->perout.flags)
 			return -EOPNOTSUPP;
 
-		if (rq->perout.index != DEFAULT_PPS_CHANNEL)
+		if (rq->perout.index != fep->pps_channel)
 			return -EOPNOTSUPP;
 
-		fep->pps_channel = DEFAULT_PPS_CHANNEL;
 		period.tv_sec = rq->perout.period.sec;
 		period.tv_nsec = rq->perout.period.nsec;
 		period_ns = timespec64_to_ns(&period);
-- 
2.34.1



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

* [PATCH 6.11 v3 3/3] net: fec: make PPS channel configurable
  2024-12-02 15:57 [PATCH 6.11 v3 0/3] Fix PPS channel routing Csókás, Bence
  2024-12-02 15:57 ` [PATCH 6.11 v3 1/3] dt-bindings: net: fec: add pps channel property Csókás, Bence
  2024-12-02 15:57 ` [PATCH 6.11 v3 2/3] net: fec: refactor PPS channel configuration Csókás, Bence
@ 2024-12-02 15:57 ` Csókás, Bence
  2024-12-02 19:16   ` Sasha Levin
  2024-12-03  9:11   ` Greg Kroah-Hartman
  2 siblings, 2 replies; 13+ messages in thread
From: Csókás, Bence @ 2024-12-02 15:57 UTC (permalink / raw)
  To: stable
  Cc: Francesco Dolcini, Sasha Levin, Greg Kroah-Hartman,
	Csókás, Bence, Frank Li, Rafael Beims, Paolo Abeni

From: Francesco Dolcini <francesco.dolcini@toradex.com>

Depending on the SoC where the FEC is integrated into the PPS channel
might be routed to different timer instances. Make this configurable
from the devicetree.

When the related DT property is not present fallback to the previous
default and use channel 0.

Reviewed-by: Frank Li <Frank.Li@nxp.com>
Tested-by: Rafael Beims <rafael.beims@toradex.com>
Signed-off-by: Francesco Dolcini <francesco.dolcini@toradex.com>
Reviewed-by: Csókás, Bence <csokas.bence@prolan.hu>
Signed-off-by: Paolo Abeni <pabeni@redhat.com>

(cherry picked from commit 566c2d83887f0570056833102adc5b88e681b0c7)
Signed-off-by: Csókás, Bence <csokas.bence@prolan.hu>
---
 drivers/net/ethernet/freescale/fec_ptp.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/drivers/net/ethernet/freescale/fec_ptp.c b/drivers/net/ethernet/freescale/fec_ptp.c
index 37e1c895f1b8..7f6b57432071 100644
--- a/drivers/net/ethernet/freescale/fec_ptp.c
+++ b/drivers/net/ethernet/freescale/fec_ptp.c
@@ -523,8 +523,6 @@ static int fec_ptp_enable(struct ptp_clock_info *ptp,
 	unsigned long flags;
 	int ret = 0;
 
-	fep->pps_channel = DEFAULT_PPS_CHANNEL;
-
 	if (rq->type == PTP_CLK_REQ_PPS) {
 		fep->reload_period = PPS_OUPUT_RELOAD_PERIOD;
 
@@ -706,12 +704,16 @@ void fec_ptp_init(struct platform_device *pdev, int irq_idx)
 {
 	struct net_device *ndev = platform_get_drvdata(pdev);
 	struct fec_enet_private *fep = netdev_priv(ndev);
+	struct device_node *np = fep->pdev->dev.of_node;
 	int irq;
 	int ret;
 
 	fep->ptp_caps.owner = THIS_MODULE;
 	strscpy(fep->ptp_caps.name, "fec ptp", sizeof(fep->ptp_caps.name));
 
+	fep->pps_channel = DEFAULT_PPS_CHANNEL;
+	of_property_read_u32(np, "fsl,pps-channel", &fep->pps_channel);
+
 	fep->ptp_caps.max_adj = 250000000;
 	fep->ptp_caps.n_alarm = 0;
 	fep->ptp_caps.n_ext_ts = 0;
-- 
2.34.1



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

* Re: [PATCH 6.11 v3 1/3] dt-bindings: net: fec: add pps channel property
  2024-12-02 15:57 ` [PATCH 6.11 v3 1/3] dt-bindings: net: fec: add pps channel property Csókás, Bence
@ 2024-12-02 19:16   ` Sasha Levin
  2024-12-03 18:13     ` Sasha Levin
  2024-12-03  9:10   ` Greg Kroah-Hartman
  1 sibling, 1 reply; 13+ messages in thread
From: Sasha Levin @ 2024-12-02 19:16 UTC (permalink / raw)
  To: stable; +Cc: Csókás, Bence, Sasha Levin

[ Sasha's backport helper bot ]

Hi,

Found matching upstream commit: 1aa772be0444a2bd06957f6d31865e80e6ae4244

WARNING: Author mismatch between patch and found commit:
Backport author: =?UTF-8?q?Cs=C3=B3k=C3=A1s=2C=20Bence?= <csokas.bence@prolan.hu>
Commit author: Francesco Dolcini <francesco.dolcini@toradex.com>


Status in newer kernel trees:
6.12.y | Not found
6.11.y | Not found

Note: The patch differs from the upstream commit:
---
1:  1aa772be0444a ! 1:  15b5ce86bd18b dt-bindings: net: fec: add pps channel property
    @@ Commit message
         Acked-by: Conor Dooley <conor.dooley@microchip.com>
         Signed-off-by: Paolo Abeni <pabeni@redhat.com>
     
    +    (cherry picked from commit 1aa772be0444a2bd06957f6d31865e80e6ae4244)
    +    Signed-off-by: Csókás, Bence <csokas.bence@prolan.hu>
    +
      ## Documentation/devicetree/bindings/net/fsl,fec.yaml ##
     @@ Documentation/devicetree/bindings/net/fsl,fec.yaml: properties:
          description:
---

Results of testing on various branches:

| Branch                    | Patch Apply | Build Test |
|---------------------------|-------------|------------|
| stable/linux-6.11.y       |  Success    |  Success   |

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

* Re: [PATCH 6.11 v3 2/3] net: fec: refactor PPS channel configuration
  2024-12-02 15:57 ` [PATCH 6.11 v3 2/3] net: fec: refactor PPS channel configuration Csókás, Bence
@ 2024-12-02 19:16   ` Sasha Levin
  2024-12-03 18:13     ` Sasha Levin
  2024-12-03  9:10   ` Greg Kroah-Hartman
  1 sibling, 1 reply; 13+ messages in thread
From: Sasha Levin @ 2024-12-02 19:16 UTC (permalink / raw)
  To: stable; +Cc: Csókás, Bence, Sasha Levin

[ Sasha's backport helper bot ]

Hi,

Found matching upstream commit: bf8ca67e21671e7a56e31da45360480b28f185f1

WARNING: Author mismatch between patch and found commit:
Backport author: =?UTF-8?q?Cs=C3=B3k=C3=A1s=2C=20Bence?= <csokas.bence@prolan.hu>
Commit author: Francesco Dolcini <francesco.dolcini@toradex.com>


Status in newer kernel trees:
6.12.y | Not found
6.11.y | Not found

Note: The patch differs from the upstream commit:
---
1:  bf8ca67e21671 ! 1:  6987e60828e70 net: fec: refactor PPS channel configuration
    @@ Commit message
         Reviewed-by: Csókás, Bence <csokas.bence@prolan.hu>
         Signed-off-by: Paolo Abeni <pabeni@redhat.com>
     
    +    (cherry picked from commit bf8ca67e21671e7a56e31da45360480b28f185f1)
    +    Signed-off-by: Csókás, Bence <csokas.bence@prolan.hu>
    +
      ## drivers/net/ethernet/freescale/fec_ptp.c ##
     @@
      #define FEC_CC_MULT	(1 << 31)
---

Results of testing on various branches:

| Branch                    | Patch Apply | Build Test |
|---------------------------|-------------|------------|
| stable/linux-6.11.y       |  Success    |  Success   |

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

* Re: [PATCH 6.11 v3 3/3] net: fec: make PPS channel configurable
  2024-12-02 15:57 ` [PATCH 6.11 v3 3/3] net: fec: make PPS channel configurable Csókás, Bence
@ 2024-12-02 19:16   ` Sasha Levin
  2024-12-03 18:13     ` Sasha Levin
  2024-12-03  9:11   ` Greg Kroah-Hartman
  1 sibling, 1 reply; 13+ messages in thread
From: Sasha Levin @ 2024-12-02 19:16 UTC (permalink / raw)
  To: stable; +Cc: Csókás, Bence, Sasha Levin

[ Sasha's backport helper bot ]

Hi,

Found matching upstream commit: 566c2d83887f0570056833102adc5b88e681b0c7

WARNING: Author mismatch between patch and found commit:
Backport author: =?UTF-8?q?Cs=C3=B3k=C3=A1s=2C=20Bence?= <csokas.bence@prolan.hu>
Commit author: Francesco Dolcini <francesco.dolcini@toradex.com>


Status in newer kernel trees:
6.12.y | Not found
6.11.y | Not found

Note: The patch differs from the upstream commit:
---
Failed to apply patch cleanly, falling back to interdiff...
---

Results of testing on various branches:

| Branch                    | Patch Apply | Build Test |
|---------------------------|-------------|------------|
| stable/linux-6.11.y       |  Success    |  Success   |

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

* Re: [PATCH 6.11 v3 1/3] dt-bindings: net: fec: add pps channel property
  2024-12-02 15:57 ` [PATCH 6.11 v3 1/3] dt-bindings: net: fec: add pps channel property Csókás, Bence
  2024-12-02 19:16   ` Sasha Levin
@ 2024-12-03  9:10   ` Greg Kroah-Hartman
  1 sibling, 0 replies; 13+ messages in thread
From: Greg Kroah-Hartman @ 2024-12-03  9:10 UTC (permalink / raw)
  To: Csókás, Bence
  Cc: stable, Francesco Dolcini, Sasha Levin, Conor Dooley, Paolo Abeni

On Mon, Dec 02, 2024 at 04:57:11PM +0100, Csókás, Bence wrote:
> From: Francesco Dolcini <francesco.dolcini@toradex.com>
> 
> Add fsl,pps-channel property to select where to connect the PPS signal.
> This depends on the internal SoC routing and on the board, for example
> on the i.MX8 SoC it can be connected to an external pin (using channel 1)
> or to internal eDMA as DMA request (channel 0).
> 
> Signed-off-by: Francesco Dolcini <francesco.dolcini@toradex.com>
> Acked-by: Conor Dooley <conor.dooley@microchip.com>
> Signed-off-by: Paolo Abeni <pabeni@redhat.com>
> 
> (cherry picked from commit 1aa772be0444a2bd06957f6d31865e80e6ae4244)
> Signed-off-by: Csókás, Bence <csokas.bence@prolan.hu>

No blank lines here, please fix up.

thanks,

greg k-h

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

* Re: [PATCH 6.11 v3 2/3] net: fec: refactor PPS channel configuration
  2024-12-02 15:57 ` [PATCH 6.11 v3 2/3] net: fec: refactor PPS channel configuration Csókás, Bence
  2024-12-02 19:16   ` Sasha Levin
@ 2024-12-03  9:10   ` Greg Kroah-Hartman
  1 sibling, 0 replies; 13+ messages in thread
From: Greg Kroah-Hartman @ 2024-12-03  9:10 UTC (permalink / raw)
  To: Csókás, Bence
  Cc: stable, Francesco Dolcini, Sasha Levin, Frank Li, Paolo Abeni

On Mon, Dec 02, 2024 at 04:57:12PM +0100, Csókás, Bence wrote:
> From: Francesco Dolcini <francesco.dolcini@toradex.com>
> 
> Preparation patch to allow for PPS channel configuration, no functional
> change intended.
> 
> Signed-off-by: Francesco Dolcini <francesco.dolcini@toradex.com>
> Reviewed-by: Frank Li <Frank.Li@nxp.com>
> Reviewed-by: Csókás, Bence <csokas.bence@prolan.hu>
> Signed-off-by: Paolo Abeni <pabeni@redhat.com>
> 
> (cherry picked from commit bf8ca67e21671e7a56e31da45360480b28f185f1)
> Signed-off-by: Csókás, Bence <csokas.bence@prolan.hu>

Again, no blank lines please.


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

* Re: [PATCH 6.11 v3 3/3] net: fec: make PPS channel configurable
  2024-12-02 15:57 ` [PATCH 6.11 v3 3/3] net: fec: make PPS channel configurable Csókás, Bence
  2024-12-02 19:16   ` Sasha Levin
@ 2024-12-03  9:11   ` Greg Kroah-Hartman
  1 sibling, 0 replies; 13+ messages in thread
From: Greg Kroah-Hartman @ 2024-12-03  9:11 UTC (permalink / raw)
  To: Csókás, Bence
  Cc: stable, Francesco Dolcini, Sasha Levin, Frank Li, Rafael Beims,
	Paolo Abeni

On Mon, Dec 02, 2024 at 04:57:13PM +0100, Csókás, Bence wrote:
> From: Francesco Dolcini <francesco.dolcini@toradex.com>
> 
> Depending on the SoC where the FEC is integrated into the PPS channel
> might be routed to different timer instances. Make this configurable
> from the devicetree.
> 
> When the related DT property is not present fallback to the previous
> default and use channel 0.
> 
> Reviewed-by: Frank Li <Frank.Li@nxp.com>
> Tested-by: Rafael Beims <rafael.beims@toradex.com>
> Signed-off-by: Francesco Dolcini <francesco.dolcini@toradex.com>
> Reviewed-by: Csókás, Bence <csokas.bence@prolan.hu>
> Signed-off-by: Paolo Abeni <pabeni@redhat.com>
> 
> (cherry picked from commit 566c2d83887f0570056833102adc5b88e681b0c7)
> Signed-off-by: Csókás, Bence <csokas.bence@prolan.hu>

Again, no blank lines.

thanks,

greg k-h

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

* Re: [PATCH 6.11 v3 1/3] dt-bindings: net: fec: add pps channel property
  2024-12-02 19:16   ` Sasha Levin
@ 2024-12-03 18:13     ` Sasha Levin
  0 siblings, 0 replies; 13+ messages in thread
From: Sasha Levin @ 2024-12-03 18:13 UTC (permalink / raw)
  To: stable; +Cc: Csókás, Bence, Sasha Levin

[ Sasha's backport helper bot ]

Hi,

Found matching upstream commit: 1aa772be0444a2bd06957f6d31865e80e6ae4244

WARNING: Author mismatch between patch and found commit:
Backport author: =?UTF-8?q?Cs=C3=B3k=C3=A1s=2C=20Bence?= <csokas.bence@prolan.hu>
Commit author: Francesco Dolcini <francesco.dolcini@toradex.com>


Status in newer kernel trees:
6.12.y | Not found
6.11.y | Not found

Note: The patch differs from the upstream commit:
---
1:  1aa772be0444a ! 1:  15b5ce86bd18b dt-bindings: net: fec: add pps channel property
    @@ Commit message
         Acked-by: Conor Dooley <conor.dooley@microchip.com>
         Signed-off-by: Paolo Abeni <pabeni@redhat.com>
     
    +    (cherry picked from commit 1aa772be0444a2bd06957f6d31865e80e6ae4244)
    +    Signed-off-by: Csókás, Bence <csokas.bence@prolan.hu>
    +
      ## Documentation/devicetree/bindings/net/fsl,fec.yaml ##
     @@ Documentation/devicetree/bindings/net/fsl,fec.yaml: properties:
          description:
---

Results of testing on various branches:

| Branch                    | Patch Apply | Build Test |
|---------------------------|-------------|------------|
| stable/linux-6.11.y       |  Success    |  Success   |

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

* Re: [PATCH 6.11 v3 2/3] net: fec: refactor PPS channel configuration
  2024-12-02 19:16   ` Sasha Levin
@ 2024-12-03 18:13     ` Sasha Levin
  0 siblings, 0 replies; 13+ messages in thread
From: Sasha Levin @ 2024-12-03 18:13 UTC (permalink / raw)
  To: stable; +Cc: Csókás, Bence, Sasha Levin

[ Sasha's backport helper bot ]

Hi,

Found matching upstream commit: bf8ca67e21671e7a56e31da45360480b28f185f1

WARNING: Author mismatch between patch and found commit:
Backport author: =?UTF-8?q?Cs=C3=B3k=C3=A1s=2C=20Bence?= <csokas.bence@prolan.hu>
Commit author: Francesco Dolcini <francesco.dolcini@toradex.com>


Status in newer kernel trees:
6.12.y | Not found
6.11.y | Not found

Note: The patch differs from the upstream commit:
---
1:  bf8ca67e21671 ! 1:  6987e60828e70 net: fec: refactor PPS channel configuration
    @@ Commit message
         Reviewed-by: Csókás, Bence <csokas.bence@prolan.hu>
         Signed-off-by: Paolo Abeni <pabeni@redhat.com>
     
    +    (cherry picked from commit bf8ca67e21671e7a56e31da45360480b28f185f1)
    +    Signed-off-by: Csókás, Bence <csokas.bence@prolan.hu>
    +
      ## drivers/net/ethernet/freescale/fec_ptp.c ##
     @@
      #define FEC_CC_MULT	(1 << 31)
---

Results of testing on various branches:

| Branch                    | Patch Apply | Build Test |
|---------------------------|-------------|------------|
| stable/linux-6.11.y       |  Success    |  Success   |

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

* Re: [PATCH 6.11 v3 3/3] net: fec: make PPS channel configurable
  2024-12-02 19:16   ` Sasha Levin
@ 2024-12-03 18:13     ` Sasha Levin
  0 siblings, 0 replies; 13+ messages in thread
From: Sasha Levin @ 2024-12-03 18:13 UTC (permalink / raw)
  To: stable; +Cc: Csókás, Bence, Sasha Levin

[ Sasha's backport helper bot ]

Hi,

Found matching upstream commit: 566c2d83887f0570056833102adc5b88e681b0c7

WARNING: Author mismatch between patch and found commit:
Backport author: =?UTF-8?q?Cs=C3=B3k=C3=A1s=2C=20Bence?= <csokas.bence@prolan.hu>
Commit author: Francesco Dolcini <francesco.dolcini@toradex.com>


Status in newer kernel trees:
6.12.y | Not found
6.11.y | Not found

Note: The patch differs from the upstream commit:
---
Failed to apply patch cleanly, falling back to interdiff...
---

Results of testing on various branches:

| Branch                    | Patch Apply | Build Test |
|---------------------------|-------------|------------|
| stable/linux-6.11.y       |  Success    |  Success   |

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

end of thread, other threads:[~2024-12-03 18:13 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-12-02 15:57 [PATCH 6.11 v3 0/3] Fix PPS channel routing Csókás, Bence
2024-12-02 15:57 ` [PATCH 6.11 v3 1/3] dt-bindings: net: fec: add pps channel property Csókás, Bence
2024-12-02 19:16   ` Sasha Levin
2024-12-03 18:13     ` Sasha Levin
2024-12-03  9:10   ` Greg Kroah-Hartman
2024-12-02 15:57 ` [PATCH 6.11 v3 2/3] net: fec: refactor PPS channel configuration Csókás, Bence
2024-12-02 19:16   ` Sasha Levin
2024-12-03 18:13     ` Sasha Levin
2024-12-03  9:10   ` Greg Kroah-Hartman
2024-12-02 15:57 ` [PATCH 6.11 v3 3/3] net: fec: make PPS channel configurable Csókás, Bence
2024-12-02 19:16   ` Sasha Levin
2024-12-03 18:13     ` Sasha Levin
2024-12-03  9:11   ` Greg Kroah-Hartman

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).