All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ARM: stm32: Fix OF_LIST on DHCOR
@ 2023-05-05  0:11 Tom Rini
  2023-05-05 19:19 ` Marek Vasut
  2023-05-12 13:58 ` Patrick DELAUNAY
  0 siblings, 2 replies; 7+ messages in thread
From: Tom Rini @ 2023-05-05  0:11 UTC (permalink / raw)
  To: u-boot; +Cc: Marek Vasut, Patrick Delaunay, Patrice Chotard

The ITS file used to build the images here lists three dtb files as
being used. Today, these are built by the logic that will over-build dtb
files based on SOC/etc symbols being set. To future proof this platform
and be generally correct, we list all 3 of the device trees used here in
OF_LIST.

Cc: Marek Vasut <marex@denx.de>
Cc: Patrick Delaunay <patrick.delaunay@foss.st.com>
Cc: Patrice Chotard <patrice.chotard@foss.st.com>
Signed-off-by: Tom Rini <trini@konsulko.com>
---
 configs/stm32mp15_dhcor_basic_defconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/configs/stm32mp15_dhcor_basic_defconfig b/configs/stm32mp15_dhcor_basic_defconfig
index b54ff9301461..d4786500271a 100644
--- a/configs/stm32mp15_dhcor_basic_defconfig
+++ b/configs/stm32mp15_dhcor_basic_defconfig
@@ -92,6 +92,7 @@ CONFIG_MTDPARTS_DEFAULT="mtdparts=nor0:256k(fsbl1),256k(fsbl2),1408k(uboot),64k(
 # CONFIG_ISO_PARTITION is not set
 # CONFIG_SPL_PARTITION_UUIDS is not set
 CONFIG_OF_LIVE=y
+CONFIG_OF_LIST="stm32mp15xx-dhcor-avenger96 stm32mp15xx-dhcor-testbench stm32mp15xx-dhcor-drc-compact"
 CONFIG_OF_SPL_REMOVE_PROPS="interrupts interrupt-names interrupts-extended interrupt-controller \\\#interrupt-cells interrupt-parent dmas dma-names assigned-clocks assigned-clock-rates assigned-clock-parents hwlocks"
 CONFIG_ENV_IS_IN_SPI_FLASH=y
 CONFIG_SYS_REDUNDAND_ENVIRONMENT=y
-- 
2.34.1


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

* Re: [PATCH] ARM: stm32: Fix OF_LIST on DHCOR
  2023-05-05  0:11 [PATCH] ARM: stm32: Fix OF_LIST on DHCOR Tom Rini
@ 2023-05-05 19:19 ` Marek Vasut
  2023-05-12 13:58 ` Patrick DELAUNAY
  1 sibling, 0 replies; 7+ messages in thread
From: Marek Vasut @ 2023-05-05 19:19 UTC (permalink / raw)
  To: Tom Rini, u-boot; +Cc: Patrick Delaunay, Patrice Chotard

On 5/5/23 02:11, Tom Rini wrote:
> The ITS file used to build the images here lists three dtb files as
> being used. Today, these are built by the logic that will over-build dtb
> files based on SOC/etc symbols being set. To future proof this platform
> and be generally correct, we list all 3 of the device trees used here in
> OF_LIST.
> 
> Cc: Marek Vasut <marex@denx.de>
> Cc: Patrick Delaunay <patrick.delaunay@foss.st.com>
> Cc: Patrice Chotard <patrice.chotard@foss.st.com>

This ^ should be ...

> Signed-off-by: Tom Rini <trini@konsulko.com>
> ---

... here , followed by one more line of ---

>   configs/stm32mp15_dhcor_basic_defconfig | 1 +
>   1 file changed, 1 insertion(+)
> 
> diff --git a/configs/stm32mp15_dhcor_basic_defconfig b/configs/stm32mp15_dhcor_basic_defconfig
> index b54ff9301461..d4786500271a 100644
> --- a/configs/stm32mp15_dhcor_basic_defconfig
> +++ b/configs/stm32mp15_dhcor_basic_defconfig
> @@ -92,6 +92,7 @@ CONFIG_MTDPARTS_DEFAULT="mtdparts=nor0:256k(fsbl1),256k(fsbl2),1408k(uboot),64k(
>   # CONFIG_ISO_PARTITION is not set
>   # CONFIG_SPL_PARTITION_UUIDS is not set
>   CONFIG_OF_LIVE=y
> +CONFIG_OF_LIST="stm32mp15xx-dhcor-avenger96 stm32mp15xx-dhcor-testbench stm32mp15xx-dhcor-drc-compact"
>   CONFIG_OF_SPL_REMOVE_PROPS="interrupts interrupt-names interrupts-extended interrupt-controller \\\#interrupt-cells interrupt-parent dmas dma-names assigned-clocks assigned-clock-rates assigned-clock-parents hwlocks"
>   CONFIG_ENV_IS_IN_SPI_FLASH=y
>   CONFIG_SYS_REDUNDAND_ENVIRONMENT=y

Reviewed-by: Marek Vasut <marex@denx.de>

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

* Re: [PATCH] ARM: stm32: Fix OF_LIST on DHCOR
  2023-05-05  0:11 [PATCH] ARM: stm32: Fix OF_LIST on DHCOR Tom Rini
  2023-05-05 19:19 ` Marek Vasut
@ 2023-05-12 13:58 ` Patrick DELAUNAY
  2023-06-16 11:44   ` Patrice CHOTARD
  1 sibling, 1 reply; 7+ messages in thread
From: Patrick DELAUNAY @ 2023-05-12 13:58 UTC (permalink / raw)
  To: Tom Rini, u-boot; +Cc: Marek Vasut, Patrice Chotard

Hi,

On 5/5/23 02:11, Tom Rini wrote:
> The ITS file used to build the images here lists three dtb files as
> being used. Today, these are built by the logic that will over-build dtb
> files based on SOC/etc symbols being set. To future proof this platform
> and be generally correct, we list all 3 of the device trees used here in
> OF_LIST.
>
> Cc: Marek Vasut <marex@denx.de>
> Cc: Patrick Delaunay <patrick.delaunay@foss.st.com>
> Cc: Patrice Chotard <patrice.chotard@foss.st.com>
> Signed-off-by: Tom Rini <trini@konsulko.com>
> ---
>   configs/stm32mp15_dhcor_basic_defconfig | 1 +
>   1 file changed, 1 insertion(+)
>
> diff --git a/configs/stm32mp15_dhcor_basic_defconfig b/configs/stm32mp15_dhcor_basic_defconfig
> index b54ff9301461..d4786500271a 100644
> --- a/configs/stm32mp15_dhcor_basic_defconfig
> +++ b/configs/stm32mp15_dhcor_basic_defconfig
> @@ -92,6 +92,7 @@ CONFIG_MTDPARTS_DEFAULT="mtdparts=nor0:256k(fsbl1),256k(fsbl2),1408k(uboot),64k(
>   # CONFIG_ISO_PARTITION is not set
>   # CONFIG_SPL_PARTITION_UUIDS is not set
>   CONFIG_OF_LIVE=y
> +CONFIG_OF_LIST="stm32mp15xx-dhcor-avenger96 stm32mp15xx-dhcor-testbench stm32mp15xx-dhcor-drc-compact"
>   CONFIG_OF_SPL_REMOVE_PROPS="interrupts interrupt-names interrupts-extended interrupt-controller \\\#interrupt-cells interrupt-parent dmas dma-names assigned-clocks assigned-clock-rates assigned-clock-parents hwlocks"
>   CONFIG_ENV_IS_IN_SPI_FLASH=y
>   CONFIG_SYS_REDUNDAND_ENVIRONMENT=y


Reviewed-by: Patrick Delaunay <patrick.delaunay@foss.st.com>

Thanks
Patrick


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

* Re: [PATCH] ARM: stm32: Fix OF_LIST on DHCOR
  2023-05-12 13:58 ` Patrick DELAUNAY
@ 2023-06-16 11:44   ` Patrice CHOTARD
  2023-06-16 12:18     ` Marek Vasut
  0 siblings, 1 reply; 7+ messages in thread
From: Patrice CHOTARD @ 2023-06-16 11:44 UTC (permalink / raw)
  To: Patrick DELAUNAY, Tom Rini, u-boot; +Cc: Marek Vasut



On 5/12/23 15:58, Patrick DELAUNAY wrote:
> Hi,
> 
> On 5/5/23 02:11, Tom Rini wrote:
>> The ITS file used to build the images here lists three dtb files as
>> being used. Today, these are built by the logic that will over-build dtb
>> files based on SOC/etc symbols being set. To future proof this platform
>> and be generally correct, we list all 3 of the device trees used here in
>> OF_LIST.
>>
>> Cc: Marek Vasut <marex@denx.de>
>> Cc: Patrick Delaunay <patrick.delaunay@foss.st.com>
>> Cc: Patrice Chotard <patrice.chotard@foss.st.com>
>> Signed-off-by: Tom Rini <trini@konsulko.com>
>> ---
>>   configs/stm32mp15_dhcor_basic_defconfig | 1 +
>>   1 file changed, 1 insertion(+)
>>
>> diff --git a/configs/stm32mp15_dhcor_basic_defconfig b/configs/stm32mp15_dhcor_basic_defconfig
>> index b54ff9301461..d4786500271a 100644
>> --- a/configs/stm32mp15_dhcor_basic_defconfig
>> +++ b/configs/stm32mp15_dhcor_basic_defconfig
>> @@ -92,6 +92,7 @@ CONFIG_MTDPARTS_DEFAULT="mtdparts=nor0:256k(fsbl1),256k(fsbl2),1408k(uboot),64k(
>>   # CONFIG_ISO_PARTITION is not set
>>   # CONFIG_SPL_PARTITION_UUIDS is not set
>>   CONFIG_OF_LIVE=y
>> +CONFIG_OF_LIST="stm32mp15xx-dhcor-avenger96 stm32mp15xx-dhcor-testbench stm32mp15xx-dhcor-drc-compact"
>>   CONFIG_OF_SPL_REMOVE_PROPS="interrupts interrupt-names interrupts-extended interrupt-controller \\\#interrupt-cells interrupt-parent dmas dma-names assigned-clocks assigned-clock-rates assigned-clock-parents hwlocks"
>>   CONFIG_ENV_IS_IN_SPI_FLASH=y
>>   CONFIG_SYS_REDUNDAND_ENVIRONMENT=y
> 
> 
> Reviewed-by: Patrick Delaunay <patrick.delaunay@foss.st.com>
> 
> Thanks
> Patrick
> 

Applied to u-boot-stm/next

Thanks
Patrice

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

* Re: [PATCH] ARM: stm32: Fix OF_LIST on DHCOR
  2023-06-16 11:44   ` Patrice CHOTARD
@ 2023-06-16 12:18     ` Marek Vasut
  2023-07-10 21:48       ` Marek Vasut
  0 siblings, 1 reply; 7+ messages in thread
From: Marek Vasut @ 2023-06-16 12:18 UTC (permalink / raw)
  To: Patrice CHOTARD, Patrick DELAUNAY, Tom Rini, u-boot

On 6/16/23 13:44, Patrice CHOTARD wrote:
> 
> 
> On 5/12/23 15:58, Patrick DELAUNAY wrote:
>> Hi,
>>
>> On 5/5/23 02:11, Tom Rini wrote:
>>> The ITS file used to build the images here lists three dtb files as
>>> being used. Today, these are built by the logic that will over-build dtb
>>> files based on SOC/etc symbols being set. To future proof this platform
>>> and be generally correct, we list all 3 of the device trees used here in
>>> OF_LIST.
>>>
>>> Cc: Marek Vasut <marex@denx.de>
>>> Cc: Patrick Delaunay <patrick.delaunay@foss.st.com>
>>> Cc: Patrice Chotard <patrice.chotard@foss.st.com>
>>> Signed-off-by: Tom Rini <trini@konsulko.com>
>>> ---
>>>    configs/stm32mp15_dhcor_basic_defconfig | 1 +
>>>    1 file changed, 1 insertion(+)
>>>
>>> diff --git a/configs/stm32mp15_dhcor_basic_defconfig b/configs/stm32mp15_dhcor_basic_defconfig
>>> index b54ff9301461..d4786500271a 100644
>>> --- a/configs/stm32mp15_dhcor_basic_defconfig
>>> +++ b/configs/stm32mp15_dhcor_basic_defconfig
>>> @@ -92,6 +92,7 @@ CONFIG_MTDPARTS_DEFAULT="mtdparts=nor0:256k(fsbl1),256k(fsbl2),1408k(uboot),64k(
>>>    # CONFIG_ISO_PARTITION is not set
>>>    # CONFIG_SPL_PARTITION_UUIDS is not set
>>>    CONFIG_OF_LIVE=y
>>> +CONFIG_OF_LIST="stm32mp15xx-dhcor-avenger96 stm32mp15xx-dhcor-testbench stm32mp15xx-dhcor-drc-compact"
>>>    CONFIG_OF_SPL_REMOVE_PROPS="interrupts interrupt-names interrupts-extended interrupt-controller \\\#interrupt-cells interrupt-parent dmas dma-names assigned-clocks assigned-clock-rates assigned-clock-parents hwlocks"
>>>    CONFIG_ENV_IS_IN_SPI_FLASH=y
>>>    CONFIG_SYS_REDUNDAND_ENVIRONMENT=y
>>
>>
>> Reviewed-by: Patrick Delaunay <patrick.delaunay@foss.st.com>
>>
>> Thanks
>> Patrick
>>
> 
> Applied to u-boot-stm/next

Since this is a bugfix, should be for current.

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

* Re: [PATCH] ARM: stm32: Fix OF_LIST on DHCOR
  2023-06-16 12:18     ` Marek Vasut
@ 2023-07-10 21:48       ` Marek Vasut
  2023-07-11 12:01         ` Patrick DELAUNAY
  0 siblings, 1 reply; 7+ messages in thread
From: Marek Vasut @ 2023-07-10 21:48 UTC (permalink / raw)
  To: Patrice CHOTARD, Patrick DELAUNAY, Tom Rini, u-boot, u-boot

On 6/16/23 14:18, Marek Vasut wrote:
> On 6/16/23 13:44, Patrice CHOTARD wrote:
>>
>>
>> On 5/12/23 15:58, Patrick DELAUNAY wrote:
>>> Hi,
>>>
>>> On 5/5/23 02:11, Tom Rini wrote:
>>>> The ITS file used to build the images here lists three dtb files as
>>>> being used. Today, these are built by the logic that will over-build 
>>>> dtb
>>>> files based on SOC/etc symbols being set. To future proof this platform
>>>> and be generally correct, we list all 3 of the device trees used 
>>>> here in
>>>> OF_LIST.
>>>>
>>>> Cc: Marek Vasut <marex@denx.de>
>>>> Cc: Patrick Delaunay <patrick.delaunay@foss.st.com>
>>>> Cc: Patrice Chotard <patrice.chotard@foss.st.com>
>>>> Signed-off-by: Tom Rini <trini@konsulko.com>
>>>> ---
>>>>    configs/stm32mp15_dhcor_basic_defconfig | 1 +
>>>>    1 file changed, 1 insertion(+)
>>>>
>>>> diff --git a/configs/stm32mp15_dhcor_basic_defconfig 
>>>> b/configs/stm32mp15_dhcor_basic_defconfig
>>>> index b54ff9301461..d4786500271a 100644
>>>> --- a/configs/stm32mp15_dhcor_basic_defconfig
>>>> +++ b/configs/stm32mp15_dhcor_basic_defconfig
>>>> @@ -92,6 +92,7 @@ 
>>>> CONFIG_MTDPARTS_DEFAULT="mtdparts=nor0:256k(fsbl1),256k(fsbl2),1408k(uboot),64k(
>>>>    # CONFIG_ISO_PARTITION is not set
>>>>    # CONFIG_SPL_PARTITION_UUIDS is not set
>>>>    CONFIG_OF_LIVE=y
>>>> +CONFIG_OF_LIST="stm32mp15xx-dhcor-avenger96 
>>>> stm32mp15xx-dhcor-testbench stm32mp15xx-dhcor-drc-compact"
>>>>    CONFIG_OF_SPL_REMOVE_PROPS="interrupts interrupt-names 
>>>> interrupts-extended interrupt-controller \\\#interrupt-cells 
>>>> interrupt-parent dmas dma-names assigned-clocks assigned-clock-rates 
>>>> assigned-clock-parents hwlocks"
>>>>    CONFIG_ENV_IS_IN_SPI_FLASH=y
>>>>    CONFIG_SYS_REDUNDAND_ENVIRONMENT=y
>>>
>>>
>>> Reviewed-by: Patrick Delaunay <patrick.delaunay@foss.st.com>
>>>
>>> Thanks
>>> Patrick
>>>
>>
>> Applied to u-boot-stm/next
> 
> Since this is a bugfix, should be for current.

I do not see this bugfix in u-boot 2023.07 release, even though ST has 
been notified this is a bugfix for that release a month before the 
release. Why ?

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

* Re: [PATCH] ARM: stm32: Fix OF_LIST on DHCOR
  2023-07-10 21:48       ` Marek Vasut
@ 2023-07-11 12:01         ` Patrick DELAUNAY
  0 siblings, 0 replies; 7+ messages in thread
From: Patrick DELAUNAY @ 2023-07-11 12:01 UTC (permalink / raw)
  To: Marek Vasut, Patrice CHOTARD, Tom Rini, u-boot, u-boot

Hi,

On 7/10/23 23:48, Marek Vasut wrote:
> On 6/16/23 14:18, Marek Vasut wrote:
>> On 6/16/23 13:44, Patrice CHOTARD wrote:
>>>
>>>
>>> On 5/12/23 15:58, Patrick DELAUNAY wrote:
>>>> Hi,
>>>>
>>>> On 5/5/23 02:11, Tom Rini wrote:
>>>>> The ITS file used to build the images here lists three dtb files as
>>>>> being used. Today, these are built by the logic that will 
>>>>> over-build dtb
>>>>> files based on SOC/etc symbols being set. To future proof this 
>>>>> platform
>>>>> and be generally correct, we list all 3 of the device trees used 
>>>>> here in
>>>>> OF_LIST.
>>>>>
>>>>> Cc: Marek Vasut <marex@denx.de>
>>>>> Cc: Patrick Delaunay <patrick.delaunay@foss.st.com>
>>>>> Cc: Patrice Chotard <patrice.chotard@foss.st.com>
>>>>> Signed-off-by: Tom Rini <trini@konsulko.com>
>>>>> ---
>>>>>    configs/stm32mp15_dhcor_basic_defconfig | 1 +
>>>>>    1 file changed, 1 insertion(+)
>>>>>
>>>>> diff --git a/configs/stm32mp15_dhcor_basic_defconfig 
>>>>> b/configs/stm32mp15_dhcor_basic_defconfig
>>>>> index b54ff9301461..d4786500271a 100644
>>>>> --- a/configs/stm32mp15_dhcor_basic_defconfig
>>>>> +++ b/configs/stm32mp15_dhcor_basic_defconfig
>>>>> @@ -92,6 +92,7 @@ 
>>>>> CONFIG_MTDPARTS_DEFAULT="mtdparts=nor0:256k(fsbl1),256k(fsbl2),1408k(uboot),64k(
>>>>>    # CONFIG_ISO_PARTITION is not set
>>>>>    # CONFIG_SPL_PARTITION_UUIDS is not set
>>>>>    CONFIG_OF_LIVE=y
>>>>> +CONFIG_OF_LIST="stm32mp15xx-dhcor-avenger96 
>>>>> stm32mp15xx-dhcor-testbench stm32mp15xx-dhcor-drc-compact"
>>>>>    CONFIG_OF_SPL_REMOVE_PROPS="interrupts interrupt-names 
>>>>> interrupts-extended interrupt-controller \\\#interrupt-cells 
>>>>> interrupt-parent dmas dma-names assigned-clocks 
>>>>> assigned-clock-rates assigned-clock-parents hwlocks"
>>>>>    CONFIG_ENV_IS_IN_SPI_FLASH=y
>>>>>    CONFIG_SYS_REDUNDAND_ENVIRONMENT=y
>>>>
>>>>
>>>> Reviewed-by: Patrick Delaunay <patrick.delaunay@foss.st.com>
>>>>
>>>> Thanks
>>>> Patrick
>>>>
>>>
>>> Applied to u-boot-stm/next
>>
>> Since this is a bugfix, should be for current.
>
> I do not see this bugfix in u-boot 2023.07 release, even though ST has 
> been notified this is a bugfix for that release a month before the 
> release. Why ?


Sorry, it is is a mistake.

Patrice miss your previous message

and we don't sent a new pull request for v2023.07 bugfix.


Patrick





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

end of thread, other threads:[~2023-07-11 12:01 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-05-05  0:11 [PATCH] ARM: stm32: Fix OF_LIST on DHCOR Tom Rini
2023-05-05 19:19 ` Marek Vasut
2023-05-12 13:58 ` Patrick DELAUNAY
2023-06-16 11:44   ` Patrice CHOTARD
2023-06-16 12:18     ` Marek Vasut
2023-07-10 21:48       ` Marek Vasut
2023-07-11 12:01         ` Patrick DELAUNAY

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.