[Uboot-stm32] [PATCH 06/10] stm32mp: stm32prog: correctly handle DM_PMIC
Patrice CHOTARD
patrice.chotard at foss.st.com
Fri Jun 18 09:57:07 CEST 2021
On 5/28/21 2:54 PM, Patrice CHOTARD wrote:
> Hi Patrick
>
> On 5/18/21 3:12 PM, Patrick Delaunay wrote:
>> Correctly handle number of alternate when DM_PMIC is not activated.
>> This patch remove the last UNKNOWN partition in this case.
>>
>> Signed-off-by: Patrick Delaunay <patrick.delaunay at foss.st.com>
>> ---
>>
>> arch/arm/mach-stm32mp/cmd_stm32prog/stm32prog.c | 5 ++++-
>> 1 file changed, 4 insertions(+), 1 deletion(-)
>>
>> diff --git a/arch/arm/mach-stm32mp/cmd_stm32prog/stm32prog.c b/arch/arm/mach-stm32mp/cmd_stm32prog/stm32prog.c
>> index ea69d5dd16..ab687c272d 100644
>> --- a/arch/arm/mach-stm32mp/cmd_stm32prog/stm32prog.c
>> +++ b/arch/arm/mach-stm32mp/cmd_stm32prog/stm32prog.c
>> @@ -1150,7 +1150,10 @@ static int dfu_init_entities(struct stm32prog_data *data)
>> struct dfu_entity *dfu;
>> int alt_nb;
>>
>> - alt_nb = 3; /* number of virtual = CMD, OTP, PMIC*/
>> + alt_nb = 2; /* number of virtual = CMD, OTP*/
>> + if (CONFIG_IS_ENABLED(DM_PMIC))
>> + alt_nb++; /* PMIC NVMEM*/
>> +
>> if (data->part_nb == 0)
>> alt_nb++; /* +1 for FlashLayout */
>> else
>>
>
> Reviewed-by: Patrice Chotard <patrice.chotard at foss.st.com>
>
> Thanks
> Patrice
> _______________________________________________
> Uboot-stm32 mailing list
> Uboot-stm32 at st-md-mailman.stormreply.com
> https://st-md-mailman.stormreply.com/mailman/listinfo/uboot-stm32
>
Applied on u-boot-stm32/next
Thanks
More information about the U-Boot
mailing list