* [PATCH] dts: add exynos arm64 vendor support for OF_UPSTREAM_BUILD_VENDOR
@ 2026-01-23 18:11 Kaustabh Chakraborty
2026-01-23 18:20 ` Tom Rini
0 siblings, 1 reply; 4+ messages in thread
From: Kaustabh Chakraborty @ 2026-01-23 18:11 UTC (permalink / raw)
To: u-boot; +Cc: Tom Rini, Kaustabh Chakraborty
Set OF_UPSTREAM_BUILD_VENDOR to build all devicetrees in "exynos/" for
Exynos-based 64-bit ARM platforms (32-bit ARM uses "samsung/").
Signed-off-by: Kaustabh Chakraborty <kauschluss@disroot.org>
---
dts/Kconfig | 1 +
1 file changed, 1 insertion(+)
diff --git a/dts/Kconfig b/dts/Kconfig
index 870f75ad3ec..e0f6f03a343 100644
--- a/dts/Kconfig
+++ b/dts/Kconfig
@@ -124,6 +124,7 @@ config OF_UPSTREAM_VENDOR
default "marvell" if ARCH_MVEBU || ARCH_KIRKWOOD
default "xilinx" if ARCH_VERSAL || ARCH_ZYNQ
default "nvidia" if ARCH_TEGRA
+ default "exynos" if ARCH_EXYNOS && ARCH_ARM64
help
Select the vendor to build all devicetree files for.
---
base-commit: 6cdd7597a2fbfc1572c1b0af23d3daf1cefa2de7
change-id: 20260123-dts-exynos-vendor-09aa1731b1ce
Best regards,
--
Kaustabh Chakraborty <kauschluss@disroot.org>
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] dts: add exynos arm64 vendor support for OF_UPSTREAM_BUILD_VENDOR
2026-01-23 18:11 [PATCH] dts: add exynos arm64 vendor support for OF_UPSTREAM_BUILD_VENDOR Kaustabh Chakraborty
@ 2026-01-23 18:20 ` Tom Rini
2026-01-24 7:14 ` Kaustabh Chakraborty
0 siblings, 1 reply; 4+ messages in thread
From: Tom Rini @ 2026-01-23 18:20 UTC (permalink / raw)
To: Kaustabh Chakraborty; +Cc: u-boot
[-- Attachment #1: Type: text/plain, Size: 966 bytes --]
On Fri, Jan 23, 2026 at 11:41:41PM +0530, Kaustabh Chakraborty wrote:
> Set OF_UPSTREAM_BUILD_VENDOR to build all devicetrees in "exynos/" for
> Exynos-based 64-bit ARM platforms (32-bit ARM uses "samsung/").
>
> Signed-off-by: Kaustabh Chakraborty <kauschluss@disroot.org>
> ---
> dts/Kconfig | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/dts/Kconfig b/dts/Kconfig
> index 870f75ad3ec..e0f6f03a343 100644
> --- a/dts/Kconfig
> +++ b/dts/Kconfig
> @@ -124,6 +124,7 @@ config OF_UPSTREAM_VENDOR
> default "marvell" if ARCH_MVEBU || ARCH_KIRKWOOD
> default "xilinx" if ARCH_VERSAL || ARCH_ZYNQ
> default "nvidia" if ARCH_TEGRA
> + default "exynos" if ARCH_EXYNOS && ARCH_ARM64
> help
> Select the vendor to build all devicetree files for.
Two things. First, it's "ARM64" and not "ARCH_ARM64". Second, since we
know what the 32bit one is and it's not the same, we might as well do
both while we're here?
--
Tom
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] dts: add exynos arm64 vendor support for OF_UPSTREAM_BUILD_VENDOR
2026-01-23 18:20 ` Tom Rini
@ 2026-01-24 7:14 ` Kaustabh Chakraborty
2026-01-24 16:05 ` Tom Rini
0 siblings, 1 reply; 4+ messages in thread
From: Kaustabh Chakraborty @ 2026-01-24 7:14 UTC (permalink / raw)
To: Tom Rini, Kaustabh Chakraborty; +Cc: u-boot
On 2026-01-23 12:20 -06:00, Tom Rini wrote:
> On Fri, Jan 23, 2026 at 11:41:41PM +0530, Kaustabh Chakraborty wrote:
>
>> Set OF_UPSTREAM_BUILD_VENDOR to build all devicetrees in "exynos/" for
>> Exynos-based 64-bit ARM platforms (32-bit ARM uses "samsung/").
>>
>> Signed-off-by: Kaustabh Chakraborty <kauschluss@disroot.org>
>> ---
>> dts/Kconfig | 1 +
>> 1 file changed, 1 insertion(+)
>>
>> diff --git a/dts/Kconfig b/dts/Kconfig
>> index 870f75ad3ec..e0f6f03a343 100644
>> --- a/dts/Kconfig
>> +++ b/dts/Kconfig
>> @@ -124,6 +124,7 @@ config OF_UPSTREAM_VENDOR
>> default "marvell" if ARCH_MVEBU || ARCH_KIRKWOOD
>> default "xilinx" if ARCH_VERSAL || ARCH_ZYNQ
>> default "nvidia" if ARCH_TEGRA
>> + default "exynos" if ARCH_EXYNOS && ARCH_ARM64
>> help
>> Select the vendor to build all devicetree files for.
>
> Two things. First, it's "ARM64" and not "ARCH_ARM64". Second, since we
> know what the 32bit one is and it's not the same, we might as well do
> both while we're here?
Sure, I can add it. However "samsung/" in ARM also includes pre-Exynos
SoCs, I assume that's not a problem here.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] dts: add exynos arm64 vendor support for OF_UPSTREAM_BUILD_VENDOR
2026-01-24 7:14 ` Kaustabh Chakraborty
@ 2026-01-24 16:05 ` Tom Rini
0 siblings, 0 replies; 4+ messages in thread
From: Tom Rini @ 2026-01-24 16:05 UTC (permalink / raw)
To: Kaustabh Chakraborty; +Cc: u-boot
[-- Attachment #1: Type: text/plain, Size: 1353 bytes --]
On Sat, Jan 24, 2026 at 12:44:17PM +0530, Kaustabh Chakraborty wrote:
> On 2026-01-23 12:20 -06:00, Tom Rini wrote:
> > On Fri, Jan 23, 2026 at 11:41:41PM +0530, Kaustabh Chakraborty wrote:
> >
> >> Set OF_UPSTREAM_BUILD_VENDOR to build all devicetrees in "exynos/" for
> >> Exynos-based 64-bit ARM platforms (32-bit ARM uses "samsung/").
> >>
> >> Signed-off-by: Kaustabh Chakraborty <kauschluss@disroot.org>
> >> ---
> >> dts/Kconfig | 1 +
> >> 1 file changed, 1 insertion(+)
> >>
> >> diff --git a/dts/Kconfig b/dts/Kconfig
> >> index 870f75ad3ec..e0f6f03a343 100644
> >> --- a/dts/Kconfig
> >> +++ b/dts/Kconfig
> >> @@ -124,6 +124,7 @@ config OF_UPSTREAM_VENDOR
> >> default "marvell" if ARCH_MVEBU || ARCH_KIRKWOOD
> >> default "xilinx" if ARCH_VERSAL || ARCH_ZYNQ
> >> default "nvidia" if ARCH_TEGRA
> >> + default "exynos" if ARCH_EXYNOS && ARCH_ARM64
> >> help
> >> Select the vendor to build all devicetree files for.
> >
> > Two things. First, it's "ARM64" and not "ARCH_ARM64". Second, since we
> > know what the 32bit one is and it's not the same, we might as well do
> > both while we're here?
>
> Sure, I can add it. However "samsung/" in ARM also includes pre-Exynos
> SoCs, I assume that's not a problem here.
Yes, that's fine, we can always add on the other targets later.
--
Tom
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2026-01-24 16:05 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-01-23 18:11 [PATCH] dts: add exynos arm64 vendor support for OF_UPSTREAM_BUILD_VENDOR Kaustabh Chakraborty
2026-01-23 18:20 ` Tom Rini
2026-01-24 7:14 ` Kaustabh Chakraborty
2026-01-24 16:05 ` Tom Rini
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.