linux-spi.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/2] enable flexspi support on imx8mp
@ 2021-03-16  5:04 Heiko Schocher
  2021-03-16  5:04 ` [PATCH 1/2] spi: fspi: enable fspi driver for " Heiko Schocher
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Heiko Schocher @ 2021-03-16  5:04 UTC (permalink / raw)
  To: linux-spi
  Cc: Heiko Schocher, linux-arm-kernel, Ashish Kumar, Kuldeep Singh,
	Mark Brown, Rob Herring, Shawn Guo, Yogesh Gaur, devicetree,
	linux-kernel

add compatible entry in nxp_fspi driver for imx8mp

new in v3:
seperate spi changes from series:
http://lists.infradead.org/pipermail/linux-arm-kernel/2021-March/643289.html

into own series as Kuldeep suggested and rebased against
git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git for-next
144c79ef33536 ("Merge tag 'perf-tools-fixes-for-v5.12-2020-03-07' of git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux")

@Shawn: If this series is accepted, can you apply the DTS patches from
series v2?
http://lists.infradead.org/pipermail/linux-arm-kernel/2021-March/643292.html
http://lists.infradead.org/pipermail/linux-arm-kernel/2021-March/643293.html


Changes in v3:
- seperate spi changes from series:
  http://lists.infradead.org/pipermail/linux-arm-kernel/2021-March/643289.html
- no changes, rebased against
  git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git for-next
  144c79ef33536 Merge tag 'perf-tools-fixes-for-v5.12-2020-03-07' of git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux

Changes in v2:
- work in comments from Marco
  add own compatible entry for imx8mp

Heiko Schocher (2):
  spi: fspi: enable fspi driver for on imx8mp
  dt-bindings: spi: add compatible entry for imx8mp in FlexSPI
    controller

 Documentation/devicetree/bindings/spi/spi-nxp-fspi.txt | 1 +
 drivers/spi/spi-nxp-fspi.c                             | 1 +
 2 files changed, 2 insertions(+)

-- 
2.29.2


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

* [PATCH 1/2] spi: fspi: enable fspi driver for on imx8mp
  2021-03-16  5:04 [PATCH 0/2] enable flexspi support on imx8mp Heiko Schocher
@ 2021-03-16  5:04 ` Heiko Schocher
  2021-03-16  5:04 ` [PATCH 2/2] dt-bindings: spi: add compatible entry for imx8mp in FlexSPI controller Heiko Schocher
  2021-03-16  6:42 ` [EXT] [PATCH 0/2] enable flexspi support on imx8mp Kuldeep Singh
  2 siblings, 0 replies; 5+ messages in thread
From: Heiko Schocher @ 2021-03-16  5:04 UTC (permalink / raw)
  To: linux-spi
  Cc: Heiko Schocher, linux-arm-kernel, Ashish Kumar, Kuldeep Singh,
	Mark Brown, Shawn Guo, Yogesh Gaur, devicetree, linux-kernel

add compatible entry in nxp_fspi driver for imx8mp.

Signed-off-by: Heiko Schocher <hs@denx.de>
  into own series as Kuldeep suggested and rebased against
  git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git for-next
  144c79ef33536 ("Merge tag 'perf-tools-fixes-for-v5.12-2020-03-07' of git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux")

---

Changes in v3:
- seperate spi changes from series:
  http://lists.infradead.org/pipermail/linux-arm-kernel/2021-March/643289.html

Changes in v2:
- work in comments from Marco
  add own compatible entry for imx8mp

 drivers/spi/spi-nxp-fspi.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/spi/spi-nxp-fspi.c b/drivers/spi/spi-nxp-fspi.c
index ab9035662717a..19ce4a854cc97 100644
--- a/drivers/spi/spi-nxp-fspi.c
+++ b/drivers/spi/spi-nxp-fspi.c
@@ -1151,6 +1151,7 @@ static int nxp_fspi_resume(struct device *dev)
 static const struct of_device_id nxp_fspi_dt_ids[] = {
 	{ .compatible = "nxp,lx2160a-fspi", .data = (void *)&lx2160a_data, },
 	{ .compatible = "nxp,imx8mm-fspi", .data = (void *)&imx8mm_data, },
+	{ .compatible = "nxp,imx8mp-fspi", .data = (void *)&imx8mm_data, },
 	{ .compatible = "nxp,imx8qxp-fspi", .data = (void *)&imx8qxp_data, },
 	{ /* sentinel */ }
 };
-- 
2.29.2


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

* [PATCH 2/2] dt-bindings: spi: add compatible entry for imx8mp in FlexSPI controller
  2021-03-16  5:04 [PATCH 0/2] enable flexspi support on imx8mp Heiko Schocher
  2021-03-16  5:04 ` [PATCH 1/2] spi: fspi: enable fspi driver for " Heiko Schocher
@ 2021-03-16  5:04 ` Heiko Schocher
  2021-03-16  6:42 ` [EXT] [PATCH 0/2] enable flexspi support on imx8mp Kuldeep Singh
  2 siblings, 0 replies; 5+ messages in thread
From: Heiko Schocher @ 2021-03-16  5:04 UTC (permalink / raw)
  To: linux-spi
  Cc: Heiko Schocher, linux-arm-kernel, Ashish Kumar, Kuldeep Singh,
	Mark Brown, Rob Herring, Shawn Guo, Yogesh Gaur, devicetree,
	linux-kernel

add compatible entry "nxp,imx8mp-fspi" in NXP FlexSPI controller

Signed-off-by: Heiko Schocher <hs@denx.de>
---

Changes in v3:
- no changes, rebased against
  git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git for-next
  144c79ef33536 Merge tag 'perf-tools-fixes-for-v5.12-2020-03-07' of git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux

 Documentation/devicetree/bindings/spi/spi-nxp-fspi.txt | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/devicetree/bindings/spi/spi-nxp-fspi.txt b/Documentation/devicetree/bindings/spi/spi-nxp-fspi.txt
index 7ac60d9fe3571..fd5f081f6d91b 100644
--- a/Documentation/devicetree/bindings/spi/spi-nxp-fspi.txt
+++ b/Documentation/devicetree/bindings/spi/spi-nxp-fspi.txt
@@ -4,6 +4,7 @@ Required properties:
   - compatible : Should be "nxp,lx2160a-fspi"
 			    "nxp,imx8qxp-fspi"
 			    "nxp,imx8mm-fspi"
+			    "nxp,imx8mp-fspi"
 
   - reg :        First contains the register location and length,
                  Second contains the memory mapping address and length
-- 
2.29.2


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

* RE: [EXT] [PATCH 0/2] enable flexspi support on imx8mp
  2021-03-16  5:04 [PATCH 0/2] enable flexspi support on imx8mp Heiko Schocher
  2021-03-16  5:04 ` [PATCH 1/2] spi: fspi: enable fspi driver for " Heiko Schocher
  2021-03-16  5:04 ` [PATCH 2/2] dt-bindings: spi: add compatible entry for imx8mp in FlexSPI controller Heiko Schocher
@ 2021-03-16  6:42 ` Kuldeep Singh
  2021-03-16  7:31   ` Heiko Schocher
  2 siblings, 1 reply; 5+ messages in thread
From: Kuldeep Singh @ 2021-03-16  6:42 UTC (permalink / raw)
  To: Heiko Schocher, linux-spi
  Cc: linux-arm-kernel, Ashish Kumar, Mark Brown, Rob Herring,
	Shawn Guo, Yogesh Gaur, devicetree, linux-kernel

Hi Heiko,

> -----Original Message-----
> From: Heiko Schocher <hs@denx.de>
> Sent: Tuesday, March 16, 2021 10:34 AM
> To: linux-spi@vger.kernel.org
> Cc: Heiko Schocher <hs@denx.de>; linux-arm-kernel@lists.infradead.org;
> Ashish Kumar <ashish.kumar@nxp.com>; Kuldeep Singh
> <kuldeep.singh@nxp.com>; Mark Brown <broonie@kernel.org>; Rob Herring
> <robh+dt@kernel.org>; Shawn Guo <shawnguo@kernel.org>; Yogesh Gaur
> <yogeshgaur.83@gmail.com>; devicetree@vger.kernel.org; linux-
> kernel@vger.kernel.org
> Subject: [EXT] [PATCH 0/2] enable flexspi support on imx8mp
> 
> Caution: EXT Email
> 
> add compatible entry in nxp_fspi driver for imx8mp
> 
> new in v3:
> seperate spi changes from series:
> https://eur01.safelinks.protection.outlook.com/?url=http%3A%2F%2Flists.inf
> radead.org%2Fpipermail%2Flinux-arm-kernel%2F2021-
> March%2F643289.html&amp;data=04%7C01%7Ckuldeep.singh%40nxp.com%
> 7C5da0c3da3dbe410baaf508d8e83903f4%7C686ea1d3bc2b4c6fa92cd99c5c3
> 01635%7C0%7C0%7C637514678868305498%7CUnknown%7CTWFpbGZsb3d8
> eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3
> D%7C1000&amp;sdata=2uy0EKUh4Nt0BceSQbIkCZDfakid3wx5uwebw0DhEIQ
> %3D&amp;reserved=0
> 
> into own series as Kuldeep suggested and rebased against
> git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git for-next
> 144c79ef33536 ("Merge tag 'perf-tools-fixes-for-v5.12-2020-03-07' of
> git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux")

The changes are not on on top of spi tree
git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git for-next
and therefore may not apply seamlessly.

I recently added driver support for imx8dxl which is accepted in spi tree
And these patches will cause conflict with it.

Kindly rebase these patches on top of the tree.

Regards
Kuldeep

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

* Re: [EXT] [PATCH 0/2] enable flexspi support on imx8mp
  2021-03-16  6:42 ` [EXT] [PATCH 0/2] enable flexspi support on imx8mp Kuldeep Singh
@ 2021-03-16  7:31   ` Heiko Schocher
  0 siblings, 0 replies; 5+ messages in thread
From: Heiko Schocher @ 2021-03-16  7:31 UTC (permalink / raw)
  To: Kuldeep Singh, linux-spi
  Cc: linux-arm-kernel, Ashish Kumar, Mark Brown, Rob Herring,
	Shawn Guo, Yogesh Gaur, devicetree, linux-kernel

Hello Kuldeep,

On 16.03.21 07:42, Kuldeep Singh wrote:
> Hi Heiko,
> 
>> -----Original Message-----
>> From: Heiko Schocher <hs@denx.de>
>> Sent: Tuesday, March 16, 2021 10:34 AM
>> To: linux-spi@vger.kernel.org
>> Cc: Heiko Schocher <hs@denx.de>; linux-arm-kernel@lists.infradead.org;
>> Ashish Kumar <ashish.kumar@nxp.com>; Kuldeep Singh
>> <kuldeep.singh@nxp.com>; Mark Brown <broonie@kernel.org>; Rob Herring
>> <robh+dt@kernel.org>; Shawn Guo <shawnguo@kernel.org>; Yogesh Gaur
>> <yogeshgaur.83@gmail.com>; devicetree@vger.kernel.org; linux-
>> kernel@vger.kernel.org
>> Subject: [EXT] [PATCH 0/2] enable flexspi support on imx8mp
>>
>> Caution: EXT Email
>>
>> add compatible entry in nxp_fspi driver for imx8mp
>>
>> new in v3:
>> seperate spi changes from series:
>> https://eur01.safelinks.protection.outlook.com/?url=http%3A%2F%2Flists.inf
>> radead.org%2Fpipermail%2Flinux-arm-kernel%2F2021-
>> March%2F643289.html&amp;data=04%7C01%7Ckuldeep.singh%40nxp.com%
>> 7C5da0c3da3dbe410baaf508d8e83903f4%7C686ea1d3bc2b4c6fa92cd99c5c3
>> 01635%7C0%7C0%7C637514678868305498%7CUnknown%7CTWFpbGZsb3d8
>> eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3
>> D%7C1000&amp;sdata=2uy0EKUh4Nt0BceSQbIkCZDfakid3wx5uwebw0DhEIQ
>> %3D&amp;reserved=0
>>
>> into own series as Kuldeep suggested and rebased against
>> git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git for-next
>> 144c79ef33536 ("Merge tag 'perf-tools-fixes-for-v5.12-2020-03-07' of
>> git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux")
> 
> The changes are not on on top of spi tree
> git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git for-next
> and therefore may not apply seamlessly.
> 
> I recently added driver support for imx8dxl which is accepted in spi tree
> And these patches will cause conflict with it.
> 
> Kindly rebase these patches on top of the tree.

Sorry, my fault. I thought the patches go into for-next ... 3 days
old ...

Ah, I had the wrong base ... I used "144c79ef33536" but it should
be "a43e89624baea"

Sorry and thanks for detecting!

I sent a new version soon...

bye,
Heiko
-- 
DENX Software Engineering GmbH,      Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-52   Fax: +49-8142-66989-80   Email: hs@denx.de

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

end of thread, other threads:[~2021-03-16  7:31 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-16  5:04 [PATCH 0/2] enable flexspi support on imx8mp Heiko Schocher
2021-03-16  5:04 ` [PATCH 1/2] spi: fspi: enable fspi driver for " Heiko Schocher
2021-03-16  5:04 ` [PATCH 2/2] dt-bindings: spi: add compatible entry for imx8mp in FlexSPI controller Heiko Schocher
2021-03-16  6:42 ` [EXT] [PATCH 0/2] enable flexspi support on imx8mp Kuldeep Singh
2021-03-16  7:31   ` Heiko Schocher

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).