From: Peng Fan <[email protected]>
Add i.MX95 LPSPI compatible string, same as i.MX93 compatible with
i.MX7ULP
Signed-off-by: Peng Fan <[email protected]>
---
Documentation/devicetree/bindings/spi/spi-fsl-lpspi.yaml | 1 +
1 file changed, 1 insertion(+)
diff --git a/Documentation/devicetree/bindings/spi/spi-fsl-lpspi.yaml b/Documentation/devicetree/bindings/spi/spi-fsl-lpspi.yaml
index 727c5346b8ce..2ff174244795 100644
--- a/Documentation/devicetree/bindings/spi/spi-fsl-lpspi.yaml
+++ b/Documentation/devicetree/bindings/spi/spi-fsl-lpspi.yaml
@@ -22,6 +22,7 @@ properties:
- enum:
- fsl,imx8ulp-spi
- fsl,imx93-spi
+ - fsl,imx95-spi
- const: fsl,imx7ulp-spi
reg:
maxItems: 1
--
2.37.1
From: Peng Fan <[email protected]>
Add i.MX93/95 flexspi compatible strings, which are compatible with
i.MX8MM
Signed-off-by: Peng Fan <[email protected]>
---
.../devicetree/bindings/spi/spi-nxp-fspi.yaml | 18 ++++++++++++------
1 file changed, 12 insertions(+), 6 deletions(-)
diff --git a/Documentation/devicetree/bindings/spi/spi-nxp-fspi.yaml b/Documentation/devicetree/bindings/spi/spi-nxp-fspi.yaml
index 7fd591145480..4a5f41bde00f 100644
--- a/Documentation/devicetree/bindings/spi/spi-nxp-fspi.yaml
+++ b/Documentation/devicetree/bindings/spi/spi-nxp-fspi.yaml
@@ -15,12 +15,18 @@ allOf:
properties:
compatible:
- enum:
- - nxp,imx8dxl-fspi
- - nxp,imx8mm-fspi
- - nxp,imx8mp-fspi
- - nxp,imx8qxp-fspi
- - nxp,lx2160a-fspi
+ oneOf:
+ - enum:
+ - nxp,imx8dxl-fspi
+ - nxp,imx8mm-fspi
+ - nxp,imx8mp-fspi
+ - nxp,imx8qxp-fspi
+ - nxp,lx2160a-fspi
+ - items:
+ - enum:
+ - nxp,imx93-fspi
+ - nxp,imx95-fspi
+ - const: nxp,imx8mm-fspi
reg:
items:
--
2.37.1
On Mon, Jan 22, 2024 at 05:15:09PM +0800, Peng Fan (OSS) wrote:
> From: Peng Fan <[email protected]>
>
> Add i.MX95 LPSPI compatible string, same as i.MX93 compatible with
> i.MX7ULP
>
> Signed-off-by: Peng Fan <[email protected]>
Acked-by: Conor Dooley <[email protected]>
Cheers,
Conor.
> ---
> Documentation/devicetree/bindings/spi/spi-fsl-lpspi.yaml | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/Documentation/devicetree/bindings/spi/spi-fsl-lpspi.yaml b/Documentation/devicetree/bindings/spi/spi-fsl-lpspi.yaml
> index 727c5346b8ce..2ff174244795 100644
> --- a/Documentation/devicetree/bindings/spi/spi-fsl-lpspi.yaml
> +++ b/Documentation/devicetree/bindings/spi/spi-fsl-lpspi.yaml
> @@ -22,6 +22,7 @@ properties:
> - enum:
> - fsl,imx8ulp-spi
> - fsl,imx93-spi
> + - fsl,imx95-spi
> - const: fsl,imx7ulp-spi
> reg:
> maxItems: 1
> --
> 2.37.1
>
On Mon, Jan 22, 2024 at 05:15:10PM +0800, Peng Fan (OSS) wrote:
> From: Peng Fan <[email protected]>
>
> Add i.MX93/95 flexspi compatible strings, which are compatible with
> i.MX8MM
>
> Signed-off-by: Peng Fan <[email protected]>
Acked-by: Conor Dooley <[email protected]>
Cheers,
Conor.
> ---
> .../devicetree/bindings/spi/spi-nxp-fspi.yaml | 18 ++++++++++++------
> 1 file changed, 12 insertions(+), 6 deletions(-)
>
> diff --git a/Documentation/devicetree/bindings/spi/spi-nxp-fspi.yaml b/Documentation/devicetree/bindings/spi/spi-nxp-fspi.yaml
> index 7fd591145480..4a5f41bde00f 100644
> --- a/Documentation/devicetree/bindings/spi/spi-nxp-fspi.yaml
> +++ b/Documentation/devicetree/bindings/spi/spi-nxp-fspi.yaml
> @@ -15,12 +15,18 @@ allOf:
>
> properties:
> compatible:
> - enum:
> - - nxp,imx8dxl-fspi
> - - nxp,imx8mm-fspi
> - - nxp,imx8mp-fspi
> - - nxp,imx8qxp-fspi
> - - nxp,lx2160a-fspi
> + oneOf:
> + - enum:
> + - nxp,imx8dxl-fspi
> + - nxp,imx8mm-fspi
> + - nxp,imx8mp-fspi
> + - nxp,imx8qxp-fspi
> + - nxp,lx2160a-fspi
> + - items:
> + - enum:
> + - nxp,imx93-fspi
> + - nxp,imx95-fspi
> + - const: nxp,imx8mm-fspi
>
> reg:
> items:
> --
> 2.37.1
>
> -----Original Message-----
> From: Peng Fan (OSS) <[email protected]>
> Sent: Monday, January 22, 2024 3:15 AM
> To: [email protected]; [email protected]; [email protected];
> [email protected]; Han Xu <[email protected]>; Bough Chen
> <[email protected]>
> Cc: [email protected]; [email protected];
> [email protected]; [email protected]; Peng Fan
> <[email protected]>
> Subject: [PATCH 2/2] dt-bindings: spi: nxp-fspi: support i.MX93 and i.MX95
>
> From: Peng Fan <[email protected]>
Acked-by: Han Xu <[email protected]>
>
> Add i.MX93/95 flexspi compatible strings, which are compatible with
> i.MX8MM
>
> Signed-off-by: Peng Fan <[email protected]>
> ---
> .../devicetree/bindings/spi/spi-nxp-fspi.yaml | 18 ++++++++++++------
> 1 file changed, 12 insertions(+), 6 deletions(-)
>
> diff --git a/Documentation/devicetree/bindings/spi/spi-nxp-fspi.yaml
> b/Documentation/devicetree/bindings/spi/spi-nxp-fspi.yaml
> index 7fd591145480..4a5f41bde00f 100644
> --- a/Documentation/devicetree/bindings/spi/spi-nxp-fspi.yaml
> +++ b/Documentation/devicetree/bindings/spi/spi-nxp-fspi.yaml
> @@ -15,12 +15,18 @@ allOf:
>
> properties:
> compatible:
> - enum:
> - - nxp,imx8dxl-fspi
> - - nxp,imx8mm-fspi
> - - nxp,imx8mp-fspi
> - - nxp,imx8qxp-fspi
> - - nxp,lx2160a-fspi
> + oneOf:
> + - enum:
> + - nxp,imx8dxl-fspi
> + - nxp,imx8mm-fspi
> + - nxp,imx8mp-fspi
> + - nxp,imx8qxp-fspi
> + - nxp,lx2160a-fspi
> + - items:
> + - enum:
> + - nxp,imx93-fspi
> + - nxp,imx95-fspi
> + - const: nxp,imx8mm-fspi
>
> reg:
> items:
> --
> 2.37.1
On Mon, 22 Jan 2024 17:15:09 +0800, Peng Fan (OSS) wrote:
> Add i.MX95 LPSPI compatible string, same as i.MX93 compatible with
> i.MX7ULP
>
>
Applied to
https://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git for-next
Thanks!
[1/2] dt-bindings: spi: fsl-lpspi: support i.MX95 LPSPI
commit: 6685d552a0cc3a86e10dbe6d98e1b51717a27a63
[2/2] dt-bindings: spi: nxp-fspi: support i.MX93 and i.MX95
commit: 18ab9e9e8889ecba23a5e8b7f8924f09284e33d8
All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.
You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.
If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.
Please add any relevant lists and maintainers to the CCs when replying
to this mail.
Thanks,
Mark