public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/2] arm64: dts: intel: set alias for i3c controllers for agilex5 variants and derivatives
@ 2026-05-04  7:07 Adrian Ng Ho Yin
  2026-05-04  7:07 ` [PATCH 1/2] arm64: dts: agilex5: set alias for i3c controllers for agilex5 variants Adrian Ng Ho Yin
  2026-05-04  7:07 ` [PATCH 2/2] arm64: dts: agilex3: set alias for i3c controllers for agilex3 Adrian Ng Ho Yin
  0 siblings, 2 replies; 5+ messages in thread
From: Adrian Ng Ho Yin @ 2026-05-04  7:07 UTC (permalink / raw)
  To: Dinh Nguyen, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
	devicetree, linux-kernel
  Cc: Adrian Ng Ho Yin

Agilex5 SoCFPGA variants and derivatives have 2 i3c controllers, a main
master and a secondary master. Setting the alias for both i3c controllers
to prevent bus id contention when both controllers are enabled which
results in driver probe failures.

Adrian Ng Ho Yin (2):
  arm64: dts: agilex5: set alias for i3c controllers for agilex5
    variants
  arm64: dts: agilex3: set alias for i3c controllers for agilex3

 arch/arm64/boot/dts/intel/socfpga_agilex3_socdk.dts         | 2 ++
 arch/arm64/boot/dts/intel/socfpga_agilex5_socdk.dts         | 2 ++
 arch/arm64/boot/dts/intel/socfpga_agilex5_socdk_013b.dts    | 2 ++
 arch/arm64/boot/dts/intel/socfpga_agilex5_socdk_modular.dts | 2 ++
 arch/arm64/boot/dts/intel/socfpga_agilex5_socdk_nand.dts    | 2 ++
 5 files changed, 10 insertions(+)

-- 
2.49.GIT


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

* [PATCH 1/2] arm64: dts: agilex5: set alias for i3c controllers for agilex5 variants
  2026-05-04  7:07 [PATCH 0/2] arm64: dts: intel: set alias for i3c controllers for agilex5 variants and derivatives Adrian Ng Ho Yin
@ 2026-05-04  7:07 ` Adrian Ng Ho Yin
  2026-05-04 13:29   ` Dinh Nguyen
  2026-05-04  7:07 ` [PATCH 2/2] arm64: dts: agilex3: set alias for i3c controllers for agilex3 Adrian Ng Ho Yin
  1 sibling, 1 reply; 5+ messages in thread
From: Adrian Ng Ho Yin @ 2026-05-04  7:07 UTC (permalink / raw)
  To: Dinh Nguyen, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
	devicetree, linux-kernel
  Cc: Adrian Ng Ho Yin, Adrian Ng Ho Yin

From: Adrian Ng Ho Yin <adrianhoyin.ng@altera.com>

Agilex5 SoCFPGA variants and derivities have 2 i3c controllers, a main
master and a secondary master. Setting the alias for both i3c controllers
to prevent bus id contention when both controllers are enabled which
results in driver probe failures.

Signed-off-by: Adrian Ng Ho Yin <adrian.ho.yin.ng@altera.com>
---
 arch/arm64/boot/dts/intel/socfpga_agilex5_socdk.dts         | 2 ++
 arch/arm64/boot/dts/intel/socfpga_agilex5_socdk_013b.dts    | 2 ++
 arch/arm64/boot/dts/intel/socfpga_agilex5_socdk_modular.dts | 2 ++
 arch/arm64/boot/dts/intel/socfpga_agilex5_socdk_nand.dts    | 2 ++
 4 files changed, 8 insertions(+)

diff --git a/arch/arm64/boot/dts/intel/socfpga_agilex5_socdk.dts b/arch/arm64/boot/dts/intel/socfpga_agilex5_socdk.dts
index 262bb3e8e5c7..dae0db9f8819 100644
--- a/arch/arm64/boot/dts/intel/socfpga_agilex5_socdk.dts
+++ b/arch/arm64/boot/dts/intel/socfpga_agilex5_socdk.dts
@@ -13,6 +13,8 @@ aliases {
 		ethernet0 = &gmac0;
 		ethernet1 = &gmac1;
 		ethernet2 = &gmac2;
+		i3c0 = &i3c0;
+		i3c1 = &i3c1;
 	};
 
 	chosen {
diff --git a/arch/arm64/boot/dts/intel/socfpga_agilex5_socdk_013b.dts b/arch/arm64/boot/dts/intel/socfpga_agilex5_socdk_013b.dts
index f71e1280c778..86137380df04 100644
--- a/arch/arm64/boot/dts/intel/socfpga_agilex5_socdk_013b.dts
+++ b/arch/arm64/boot/dts/intel/socfpga_agilex5_socdk_013b.dts
@@ -11,6 +11,8 @@ / {
 	aliases {
 		serial0 = &uart0;
 		ethernet2 = &gmac2;
+		i3c0 = &i3c0;
+		i3c1 = &i3c1;
 	};
 
 	chosen {
diff --git a/arch/arm64/boot/dts/intel/socfpga_agilex5_socdk_modular.dts b/arch/arm64/boot/dts/intel/socfpga_agilex5_socdk_modular.dts
index 1831402d8808..e728cedb4cbd 100644
--- a/arch/arm64/boot/dts/intel/socfpga_agilex5_socdk_modular.dts
+++ b/arch/arm64/boot/dts/intel/socfpga_agilex5_socdk_modular.dts
@@ -11,6 +11,8 @@ / {
 	aliases {
 		serial0 = &uart0;
 		ethernet2 = &gmac2;
+		i3c0 = &i3c0;
+		i3c1 = &i3c1;
 	};
 
 	chosen {
diff --git a/arch/arm64/boot/dts/intel/socfpga_agilex5_socdk_nand.dts b/arch/arm64/boot/dts/intel/socfpga_agilex5_socdk_nand.dts
index ec4541d44c9b..21faa47681fa 100644
--- a/arch/arm64/boot/dts/intel/socfpga_agilex5_socdk_nand.dts
+++ b/arch/arm64/boot/dts/intel/socfpga_agilex5_socdk_nand.dts
@@ -11,6 +11,8 @@ / {
 	aliases {
 		serial0 = &uart0;
 		ethernet0 = &gmac0;
+		i3c0 = &i3c0;
+		i3c1 = &i3c1;
 	};
 
 	chosen {
-- 
2.49.GIT


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

* [PATCH 2/2] arm64: dts: agilex3: set alias for i3c controllers for agilex3
  2026-05-04  7:07 [PATCH 0/2] arm64: dts: intel: set alias for i3c controllers for agilex5 variants and derivatives Adrian Ng Ho Yin
  2026-05-04  7:07 ` [PATCH 1/2] arm64: dts: agilex5: set alias for i3c controllers for agilex5 variants Adrian Ng Ho Yin
@ 2026-05-04  7:07 ` Adrian Ng Ho Yin
  2026-05-04 13:31   ` Dinh Nguyen
  1 sibling, 1 reply; 5+ messages in thread
From: Adrian Ng Ho Yin @ 2026-05-04  7:07 UTC (permalink / raw)
  To: Dinh Nguyen, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
	devicetree, linux-kernel
  Cc: Adrian Ng Ho Yin, Adrian Ng Ho Yin

From: Adrian Ng Ho Yin <adrianhoyin.ng@altera.com>

Agilex3 SoCFPGA have 2 i3c controllers, a main master and a secondary
master. Setting the alias for both i3c controllers to prevent bus id
contention when both controllers are enabled which results in driver
probe failures.

Signed-off-by: Adrian Ng Ho Yin <adrian.ho.yin.ng@altera.com>
---
 arch/arm64/boot/dts/intel/socfpga_agilex3_socdk.dts | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/arch/arm64/boot/dts/intel/socfpga_agilex3_socdk.dts b/arch/arm64/boot/dts/intel/socfpga_agilex3_socdk.dts
index 14b299f19f3a..25e17df0cbdb 100644
--- a/arch/arm64/boot/dts/intel/socfpga_agilex3_socdk.dts
+++ b/arch/arm64/boot/dts/intel/socfpga_agilex3_socdk.dts
@@ -12,6 +12,8 @@ / {
 	aliases {
 		serial0 = &uart0;
 		ethernet2 = &gmac2;
+		i3c0 = &i3c0;
+		i3c1 = &i3c1;
 	};
 
 	chosen {
-- 
2.49.GIT


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

* Re: [PATCH 1/2] arm64: dts: agilex5: set alias for i3c controllers for agilex5 variants
  2026-05-04  7:07 ` [PATCH 1/2] arm64: dts: agilex5: set alias for i3c controllers for agilex5 variants Adrian Ng Ho Yin
@ 2026-05-04 13:29   ` Dinh Nguyen
  0 siblings, 0 replies; 5+ messages in thread
From: Dinh Nguyen @ 2026-05-04 13:29 UTC (permalink / raw)
  To: Adrian Ng Ho Yin, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
	devicetree, linux-kernel
  Cc: Adrian Ng Ho Yin

Hi Adrian,

Please simplify the commit header a bit, no need to use "agilex5" twice.


On 5/4/26 02:07, Adrian Ng Ho Yin wrote:
> From: Adrian Ng Ho Yin <adrianhoyin.ng@altera.com>
> 
> Agilex5 SoCFPGA variants and derivities have 2 i3c controllers, a main

s/derivities/derivatives

Dinh

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

* Re: [PATCH 2/2] arm64: dts: agilex3: set alias for i3c controllers for agilex3
  2026-05-04  7:07 ` [PATCH 2/2] arm64: dts: agilex3: set alias for i3c controllers for agilex3 Adrian Ng Ho Yin
@ 2026-05-04 13:31   ` Dinh Nguyen
  0 siblings, 0 replies; 5+ messages in thread
From: Dinh Nguyen @ 2026-05-04 13:31 UTC (permalink / raw)
  To: Adrian Ng Ho Yin, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
	devicetree, linux-kernel
  Cc: Adrian Ng Ho Yin

Hi Adrian,

Please simplify the commit header a bit. No need to mention "agilex3" twice.


On 5/4/26 02:07, Adrian Ng Ho Yin wrote:
> From: Adrian Ng Ho Yin <adrianhoyin.ng@altera.com>
> 
> Agilex3 SoCFPGA have 2 i3c controllers, a main master and a secondary
> master. Setting the alias for both i3c controllers to prevent bus id
> contention when both controllers are enabled which results in driver
> probe failures.
> 
> Signed-off-by: Adrian Ng Ho Yin <adrian.ho.yin.ng@altera.com>
> ---
>   arch/arm64/boot/dts/intel/socfpga_agilex3_socdk.dts | 2 ++
>   1 file changed, 2 insertions(+)


Dinh


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

end of thread, other threads:[~2026-05-04 13:31 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-05-04  7:07 [PATCH 0/2] arm64: dts: intel: set alias for i3c controllers for agilex5 variants and derivatives Adrian Ng Ho Yin
2026-05-04  7:07 ` [PATCH 1/2] arm64: dts: agilex5: set alias for i3c controllers for agilex5 variants Adrian Ng Ho Yin
2026-05-04 13:29   ` Dinh Nguyen
2026-05-04  7:07 ` [PATCH 2/2] arm64: dts: agilex3: set alias for i3c controllers for agilex3 Adrian Ng Ho Yin
2026-05-04 13:31   ` Dinh Nguyen

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