All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ARM: dts: stm32: Configure Buck3 voltage per PMIC NVM on Avenger96
@ 2022-05-11 21:09 Marek Vasut
  2022-05-17 12:39 ` Patrick DELAUNAY
  0 siblings, 1 reply; 11+ messages in thread
From: Marek Vasut @ 2022-05-11 21:09 UTC (permalink / raw)
  To: u-boot; +Cc: Marek Vasut, Patrice Chotard, Patrick Delaunay

The Avenger96 board comes in multiple regulator configurations.
 - rev.100 or rev.200 have Buck3 preconfigured to 3V3 operation on
   boot and contains extra Enpirion EP53A8LQI DCDC converter which
   supplies the IO. Reduce Buck3 voltage to 2V9 to not waste power.
 - rev.200L have Buck3 preconfigured to 1V8 operation and have no
   Enpirion EP53A8LQI DCDC anymore, the IO is supplied from Buck3.

Configure the Buck3 voltage on this board per PMIC NVM settings and
update buck3 voltage limits in DT passed to OS before booting OS to
prevent potential hardware damage.

Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Patrice Chotard <patrice.chotard@foss.st.com>
Cc: Patrick Delaunay <patrick.delaunay@foss.st.com>
---
 arch/arm/dts/stm32mp15xx-dhcor-io1v8.dtsi |   2 +-
 board/dhelectronics/dh_stm32mp1/board.c   | 109 +++++++++++++++++++++-
 2 files changed, 107 insertions(+), 4 deletions(-)

diff --git a/arch/arm/dts/stm32mp15xx-dhcor-io1v8.dtsi b/arch/arm/dts/stm32mp15xx-dhcor-io1v8.dtsi
index 9937b28548c..e20917824bf 100644
--- a/arch/arm/dts/stm32mp15xx-dhcor-io1v8.dtsi
+++ b/arch/arm/dts/stm32mp15xx-dhcor-io1v8.dtsi
@@ -19,7 +19,7 @@
 };
 
 &vdd {
-	regulator-min-microvolt = <2900000>;
+	regulator-min-microvolt = <1800000>;
 	regulator-max-microvolt = <2900000>;
 };
 
diff --git a/board/dhelectronics/dh_stm32mp1/board.c b/board/dhelectronics/dh_stm32mp1/board.c
index 67273f90992..d407f0bf592 100644
--- a/board/dhelectronics/dh_stm32mp1/board.c
+++ b/board/dhelectronics/dh_stm32mp1/board.c
@@ -594,14 +594,98 @@ static void board_init_fmc2(void)
 	setbits_le32(STM32_FMC2_BASE + STM32_FMC2_BCR1, STM32_FMC2_BCRx_FMCEN);
 }
 
+#ifdef CONFIG_DM_REGULATOR
+#define STPMIC_NVM_BUCKS_VOUT_SHR			0xfc
+#define STPMIC_NVM_BUCKS_VOUT_SHR_BUCK_1V2		0
+#define STPMIC_NVM_BUCKS_VOUT_SHR_BUCK_1V8		1
+#define STPMIC_NVM_BUCKS_VOUT_SHR_BUCK_3V0		2
+#define STPMIC_NVM_BUCKS_VOUT_SHR_BUCK_3V3		3
+#define STPMIC_NVM_BUCKS_VOUT_SHR_BUCK_MASK		GENMASK(1, 0)
+#define STPMIC_NVM_BUCKS_VOUT_SHR_BUCK_OFFSET(n)	((((n) - 1) & 3) * 2)
+static int board_get_regulator_buck3_nvm_uv_av96(int *uv)
+{
+	const void *fdt = gd->fdt_blob;
+	struct udevice *dev;
+	u8 bucks_vout = 0;
+	const char *prop;
+	int len, ret;
+
+	/* Check whether this is Avenger96 board. */
+	prop = fdt_getprop(fdt, 0, "compatible", &len);
+	if (!prop || !len)
+		return -ENODEV;
+
+	if (!strstr(prop, "avenger96"))
+		return -EINVAL;
+
+	/* Read out STPMIC1 NVM and determine default Buck3 voltage. */
+	ret = uclass_get_device_by_driver(UCLASS_MISC,
+					  DM_DRIVER_GET(stpmic1_nvm),
+					  &dev);
+	if (ret)
+		return ret;
+
+	ret = misc_read(dev, STPMIC_NVM_BUCKS_VOUT_SHR, &bucks_vout, 1);
+	if (ret != 1)
+		return -EINVAL;
+
+	bucks_vout >>= STPMIC_NVM_BUCKS_VOUT_SHR_BUCK_OFFSET(3);
+	bucks_vout &= STPMIC_NVM_BUCKS_VOUT_SHR_BUCK_MASK;
+
+	/*
+	 * Avenger96 board comes in multiple regulator configurations:
+	 * - rev.100 or rev.200 have Buck3 preconfigured to 3V3 operation on
+	 *   boot and contains extra Enpirion EP53A8LQI DCDC converter which
+	 *   supplies the IO. Reduce Buck3 voltage to 2V9 to not waste power.
+	 * - rev.200L have Buck3 preconfigured to 1V8 operation and have no
+	 *   Enpirion EP53A8LQI DCDC anymore, the IO is supplied from Buck3.
+	 */
+	if (bucks_vout == STPMIC_NVM_BUCKS_VOUT_SHR_BUCK_3V3)
+		*uv = 2900000;
+	else
+		*uv = 1800000;
+
+	return 0;
+}
+
+static void board_init_regulator_av96(void)
+{
+	struct udevice *rdev;
+	int ret, uv;
+
+	ret = board_get_regulator_buck3_nvm_uv_av96(&uv);
+	if (ret)	/* Not Avenger96 board. */
+		return;
+
+	ret = regulator_get_by_devname("buck3", &rdev);
+	if (ret)
+		return;
+
+	/* Adjust Buck3 per preconfigured PMIC voltage from NVM. */
+	regulator_set_value(rdev, uv);
+}
+
+static void board_init_regulator(void)
+{
+	board_init_regulator_av96();
+
+	regulators_enable_boot_on(_DEBUG);
+}
+#else
+static inline int board_get_regulator_buck3_nvm_uv_av96(int *uv)
+{
+	return -EINVAL;
+}
+
+static inline void board_init_regulator(void) {}
+#endif
+
 /* board dependent setup after realloc */
 int board_init(void)
 {
 	board_key_check();
 
-#ifdef CONFIG_DM_REGULATOR
-	regulators_enable_boot_on(_DEBUG);
-#endif
+	board_init_regulator();
 
 	sysconf_init();
 
@@ -721,6 +805,25 @@ int board_interface_eth_init(struct udevice *dev,
 #if defined(CONFIG_OF_BOARD_SETUP)
 int ft_board_setup(void *blob, struct bd_info *bd)
 {
+	const char *buck3path = "/soc/i2c@5c002000/stpmic@33/regulators/buck3";
+	int buck3off, ret, uv;
+
+	ret = board_get_regulator_buck3_nvm_uv_av96(&uv);
+	if (ret)	/* Not Avenger96 board, do not patch Buck3 in DT. */
+		return 0;
+
+	buck3off = fdt_path_offset(blob, buck3path);
+	if (buck3off < 0)	/* No Buck3 regulator found. */
+		return 0;
+
+	ret = fdt_setprop_u32(blob, buck3off, "regulator-min-microvolt", uv);
+	if (ret < 0)
+		return ret;
+
+	ret = fdt_setprop_u32(blob, buck3off, "regulator-max-microvolt", uv);
+	if (ret < 0)
+		return ret;
+
 	return 0;
 }
 #endif
-- 
2.35.1


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

* Re: [PATCH] ARM: dts: stm32: Configure Buck3 voltage per PMIC NVM on Avenger96
  2022-05-11 21:09 [PATCH] ARM: dts: stm32: Configure Buck3 voltage per PMIC NVM on Avenger96 Marek Vasut
@ 2022-05-17 12:39 ` Patrick DELAUNAY
  2022-05-17 12:53   ` Marek Vasut
  2022-05-20  7:20   ` Patrick DELAUNAY
  0 siblings, 2 replies; 11+ messages in thread
From: Patrick DELAUNAY @ 2022-05-17 12:39 UTC (permalink / raw)
  To: Marek Vasut, u-boot; +Cc: Patrice Chotard

Hi,

On 5/11/22 23:09, Marek Vasut wrote:
> The Avenger96 board comes in multiple regulator configurations.
>   - rev.100 or rev.200 have Buck3 preconfigured to 3V3 operation on
>     boot and contains extra Enpirion EP53A8LQI DCDC converter which
>     supplies the IO. Reduce Buck3 voltage to 2V9 to not waste power.
>   - rev.200L have Buck3 preconfigured to 1V8 operation and have no
>     Enpirion EP53A8LQI DCDC anymore, the IO is supplied from Buck3.
>
> Configure the Buck3 voltage on this board per PMIC NVM settings and
> update buck3 voltage limits in DT passed to OS before booting OS to
> prevent potential hardware damage.
>
> Signed-off-by: Marek Vasut <marex@denx.de>
> Cc: Patrice Chotard <patrice.chotard@foss.st.com>
> Cc: Patrick Delaunay <patrick.delaunay@foss.st.com>
> ---
>   arch/arm/dts/stm32mp15xx-dhcor-io1v8.dtsi |   2 +-
>   board/dhelectronics/dh_stm32mp1/board.c   | 109 +++++++++++++++++++++-
>   2 files changed, 107 insertions(+), 4 deletions(-)
>
> diff --git a/arch/arm/dts/stm32mp15xx-dhcor-io1v8.dtsi b/arch/arm/dts/stm32mp15xx-dhcor-io1v8.dtsi
> index 9937b28548c..e20917824bf 100644
> --- a/arch/arm/dts/stm32mp15xx-dhcor-io1v8.dtsi
> +++ b/arch/arm/dts/stm32mp15xx-dhcor-io1v8.dtsi
> @@ -19,7 +19,7 @@
>   };
>   
>   &vdd {http://patchwork.ozlabs.org/project/uboot/patch/20220517143655.1.I4d61d5a725e965f1476b26412ed1e8329aa9ba98@changeid/
> -	regulator-min-microvolt = <2900000>;
> +	regulator-min-microvolt = <1800000>;
>   	regulator-max-microvolt = <2900000>;
>   };
>   
> diff --git a/board/dhelectronics/dh_stm32mp1/board.c b/board/dhelectronics/dh_stm32mp1/board.c
> index 67273f90992..d407f0bf592 100644
> --- a/board/dhelectronics/dh_stm32mp1/board.c
> +++ b/board/dhelectronics/dh_stm32mp1/board.c
> @@ -594,14 +594,98 @@ static void board_init_fmc2(void)
>   	setbits_le32(STM32_FMC2_BASE + STM32_FMC2_BCR1, STM32_FMC2_BCRx_FMCEN);
>   }
>   
> +#ifdef CONFIG_DM_REGULATOR
> +#define STPMIC_NVM_BUCKS_VOUT_SHR		http://patchwork.ozlabs.org/project/uboot/patch/20220517143655.1.I4d61d5a725e965f1476b26412ed1e8329aa9ba98@changeid/	0xfc
> +#define STPMIC_NVM_BUCKS_VOUT_SHR_BUCK_1V2		0
> +#define STPMIC_NVM_BUCKS_VOUT_SHR_BUCK_1V8		1
> +#define STPMIC_NVM_BUCKS_VOUT_SHR_BUCK_3V0		2
> +#define STPMIC_NVM_BUCKS_VOUT_SHR_BUCK_3V3		3
> +#define STPMIC_NVM_BUCKS_VOUT_SHR_BUCK_MASK		GENMASK(1, 0)
> +#define STPMIC_NVM_BUCKS_VOUT_SHR_BUCK_OFFSET(n)	((((n) - 1) & 3) * 2)
> +static int board_get_regulator_buck3_nvm_uv_av96(int *uv)
> +{
> +	const void *fdt = gd->fdt_blob;
> +	struct udevice *dev;
> +	u8 bucks_vout = 0;
> +	const char *prop;
> +	int len, ret;
> +
> +	/* Check whether this is Avenger96 board. */
> +	prop = fdt_getprop(fdt, 0, "compatible", &len);


This API is not compatible with CONFIG_OF_LIVE

consider replacement with ofnode_read_prop or with 
of_machine_is_compatible, for example

if (!of_machine_is_compatible(prop, "arrow,stm32mp15xx-avenger96"))
	return -EINVAL;

See also
http://patchwork.ozlabs.org/project/uboot/patch/20220517143655.1.I4d61d5a725e965f1476b26412ed1e8329aa9ba98@changeid/

> +	if (!prop || !len)
> +		return -ENODEV;
> +
> +	if (!strstr(prop, "avenger96"))
> +		return -EINVAL;
> +
> +	/* Read out STPMIC1 NVM and determine default Buck3 voltage. */
> +	ret = uclass_get_device_by_driver(UCLASS_MISC,
> +					  DM_DRIVER_GET(stpmic1_nvm),
> +					  &dev);
> +	if (ret)
> +		return ret;
> +
> +	ret = misc_read(dev, STPMIC_NVM_BUCKS_VOUT_SHR, &bucks_vout, 1);
> +	if (ret != 1)
> +		return -EINVAL;
> +
> +	bucks_vout >>= STPMIC_NVM_BUCKS_VOUT_SHR_BUCK_OFFSET(3);
> +	bucks_vout &= STPMIC_NVM_BUCKS_VOUT_SHR_BUCK_MASK;
> +
> +	/*
> +	 * Avenger96 board comes in multiple regulator configurations:
> +	 * - rev.100 or rev.200 have Buck3 preconfigured to 3V3 operation on
> +	 *   boot and contains extra Enpirion EP53A8LQI DCDC converter which
> +	 *   supplies the IO. Reduce Buck3 voltage to 2V9 to not waste power.
> +	 * - rev.200L have Buck3 preconfigured to 1V8 operation and have no
> +	 *   Enpirion EP53A8LQI DCDC anymore, http://patchwork.ozlabs.org/project/uboot/patch/20220517143655.1.I4d61d5a725e965f1476b26412ed1e8329aa9ba98@changeid/the IO is supplied from Buck3.
> +	 */
> +	if (bucks_vout == STPMIC_NVM_BUCKS_VOUT_SHR_BUCK_3V3)
> +		*uv = 2900000;
> +	else
> +		*uv = 1800000;
> +
> +	return 0;
> +}
> +
> +static void board_init_regulator_av96(void)
> +{
> +	struct udevice *rdev;
> +	int ret, uv;
> +
> +	ret = board_get_regulator_buck3_nvm_uv_av96(&uv);
> +	if (ret)	/* Not Avenger96 board. */
> +		return;
> +
> +	ret = regulator_get_by_devname("buck3", &rdev);
> +	if (ret)
> +		return;
> +
> +	/* Adjust Buck3 per preconfigured PMIC voltage from NVM. */
> +	regulator_set_value(rdev, uv);
> +}
> +
> +static void board_init_regulator(void)
> +{
> +	board_init_regulator_av96();
> +
> +	regulators_enable_boot_on(_DEBUG);http://patchwork.ozlabs.org/project/uboot/patch/20220517143655.1.I4d61d5a725e965f1476b26412ed1e8329aa9ba98@changeid/
> +}
> +#else
> +static inline int board_get_regulator_buck3_nvm_uv_av96(int *uv)
> +{
> +	return -EINVAL;
> +}
> +
> +static inline void board_init_regulator(void) {}
> +#endif
> +
>   /* board dependent setup after realloc */
>   int board_init(void)
>   {
>   	board_key_check();
>   http://patchwork.ozlabs.org/project/uboot/patch/20220517143655.1.I4d61d5a725e965f1476b26412ed1e8329aa9ba98@changeid/
> -#ifdef CONFIG_DM_REGULATOR
> -	regulators_enable_boot_on(_DEBUG);
> -#endif
> +	board_init_regulator();
>   
>   	sysconf_init();
>   
> @@ -721,6 +805,25 @@ int board_interface_eth_init(struct udevice *dev,
>   #if defined(CONFIG_OF_BOARD_SETUP)
>   int ft_board_setup(void *blob, struct bd_info *bd)
>   {
> +	const char *buck3path = "/soc/i2c@5c002000/stpmic@33/regulators/buck3";
> +	int buck3off, ret, uv;
> +
> +	ret = board_get_regulator_buck3_nvm_uvhttp://patchwork.ozlabs.org/project/uboot/patch/20220517143655.1.I4d61d5a725e965f1476b26412ed1e8329aa9ba98@changeid/_av96(&uv);
> +	if (ret)	/* Not Avenger96 board, do not patch Buck3 in DT. */
> +		return 0;
> +
> +	buck3off = fdt_path_offset(blob, buck3path);
> +	if (buck3off < 0)	/* No Buck3 regulator found. */
> +		return 0;
> +
> +	ret = fdt_setprop_u32(blob, buck3off, "regulator-min-microvolt", uv);
> +	if (ret < 0)
> +		return ret;
> +
> +	ret = fdt_setprop_u32(blob, buck3off, "regulator-max-microvolt", uv);
> +	if (ret < 0)
> +		return ret;
> +http://patchwork.ozlabs.org/project/uboot/patch/20220517143655.1.I4d61d5a725e965f1476b26412ed1e8329aa9ba98@changeid/
>   	return 0;
>   }
>   #endif


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

Thanks
Patrick


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

* Re: [PATCH] ARM: dts: stm32: Configure Buck3 voltage per PMIC NVM on Avenger96
  2022-05-17 12:39 ` Patrick DELAUNAY
@ 2022-05-17 12:53   ` Marek Vasut
  2022-05-17 13:43     ` Patrick DELAUNAY
  2022-05-20  7:20   ` Patrick DELAUNAY
  1 sibling, 1 reply; 11+ messages in thread
From: Marek Vasut @ 2022-05-17 12:53 UTC (permalink / raw)
  To: Patrick DELAUNAY, u-boot; +Cc: Patrice Chotard

On 5/17/22 14:39, Patrick DELAUNAY wrote:

Hi,

[...]

>> +static int board_get_regulator_buck3_nvm_uv_av96(int *uv)
>> +{
>> +    const void *fdt = gd->fdt_blob;
>> +    struct udevice *dev;
>> +    u8 bucks_vout = 0;
>> +    const char *prop;
>> +    int len, ret;
>> +
>> +    /* Check whether this is Avenger96 board. */
>> +    prop = fdt_getprop(fdt, 0, "compatible", &len);
> 
> 
> This API is not compatible with CONFIG_OF_LIVE
> 
> consider replacement with ofnode_read_prop or with 
> of_machine_is_compatible, for example
> 
> if (!of_machine_is_compatible(prop, "arrow,stm32mp15xx-avenger96"))
>      return -EINVAL;

I explicitly don't want to use of_machine_is_compatible, I need to 
search for the avenger96 substring in the machine compatible, since the 
stm32mp15xx can be anything (15{1,3,7}{a,d}) and it might not even have 
the arrow prefix.

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

* Re: [PATCH] ARM: dts: stm32: Configure Buck3 voltage per PMIC NVM on Avenger96
  2022-05-17 12:53   ` Marek Vasut
@ 2022-05-17 13:43     ` Patrick DELAUNAY
  2022-05-17 14:32       ` Marek Vasut
  0 siblings, 1 reply; 11+ messages in thread
From: Patrick DELAUNAY @ 2022-05-17 13:43 UTC (permalink / raw)
  To: Marek Vasut, u-boot; +Cc: Patrice Chotard

Hi,

On 5/17/22 14:53, Marek Vasut wrote:
> On 5/17/22 14:39, Patrick DELAUNAY wrote:
>
> Hi,
>
> [...]
>
>>> +static int board_get_regulator_buck3_nvm_uv_av96(int *uv)
>>> +{
>>> +    const void *fdt = gd->fdt_blob;
>>> +    struct udevice *dev;
>>> +    u8 bucks_vout = 0;
>>> +    const char *prop;
>>> +    int len, ret;
>>> +
>>> +    /* Check whether this is Avenger96 board. */
>>> +    prop = fdt_getprop(fdt, 0, "compatible", &len);
>>
>>
>> This API is not compatible with CONFIG_OF_LIVE
>>
>> consider replacement with ofnode_read_prop or with 
>> of_machine_is_compatible, for example
>>
>> if (!of_machine_is_compatible(prop, "arrow,stm32mp15xx-avenger96"))
>>      return -EINVAL;
>
> I explicitly don't want to use of_machine_is_compatible, I need to 
> search for the avenger96 substring in the machine compatible, since 
> the stm32mp15xx can be anything (15{1,3,7}{a,d}) and it might not even 
> have the arrow prefix.


Ok, I check on existing DT and I found only on compatible with 
"avenger96" string.

arch/arm/dts/stm32mp15xx-dhcor-avenger96.dts:15:

     compatible = "arrow,stm32mp15xx-avenger96", "st,stm32mp15x";

But you can forget my proposal with of_machine_is_compatible, consider:

    prop = ofnode_read_prop(ofnode_root(), "compatible", &len);


But it is just minor remark.


Do you expect this patch for next pull-request for v2022.07 or for next ?


Patrick




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

* Re: [PATCH] ARM: dts: stm32: Configure Buck3 voltage per PMIC NVM on Avenger96
  2022-05-17 13:43     ` Patrick DELAUNAY
@ 2022-05-17 14:32       ` Marek Vasut
  2022-05-17 15:32         ` Patrick DELAUNAY
  0 siblings, 1 reply; 11+ messages in thread
From: Marek Vasut @ 2022-05-17 14:32 UTC (permalink / raw)
  To: Patrick DELAUNAY, u-boot; +Cc: Patrice Chotard

On 5/17/22 15:43, Patrick DELAUNAY wrote:
> Hi,

Hi,

>>>> +static int board_get_regulator_buck3_nvm_uv_av96(int *uv)
>>>> +{
>>>> +    const void *fdt = gd->fdt_blob;
>>>> +    struct udevice *dev;
>>>> +    u8 bucks_vout = 0;
>>>> +    const char *prop;
>>>> +    int len, ret;
>>>> +
>>>> +    /* Check whether this is Avenger96 board. */
>>>> +    prop = fdt_getprop(fdt, 0, "compatible", &len);
>>>
>>>
>>> This API is not compatible with CONFIG_OF_LIVE
>>>
>>> consider replacement with ofnode_read_prop or with 
>>> of_machine_is_compatible, for example
>>>
>>> if (!of_machine_is_compatible(prop, "arrow,stm32mp15xx-avenger96"))
>>>      return -EINVAL;
>>
>> I explicitly don't want to use of_machine_is_compatible, I need to 
>> search for the avenger96 substring in the machine compatible, since 
>> the stm32mp15xx can be anything (15{1,3,7}{a,d}) and it might not even 
>> have the arrow prefix.
> 
> 
> Ok, I check on existing DT and I found only on compatible with 
> "avenger96" string.
> 
> arch/arm/dts/stm32mp15xx-dhcor-avenger96.dts:15:
> 
>      compatible = "arrow,stm32mp15xx-avenger96", "st,stm32mp15x";
> 
> But you can forget my proposal with of_machine_is_compatible, consider:
> 
>     prop = ofnode_read_prop(ofnode_root(), "compatible", &len);
> 
> 
> But it is just minor remark.

There are multiple other fdt_getprop() calls in both board/st/ and 
board/dh , maybe if you want to do OF_LIVE enablement (do you?), let's 
convert them all at once ?

> Do you expect this patch for next pull-request for v2022.07 or for next ?

Ideally 2022.07.

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

* Re: [PATCH] ARM: dts: stm32: Configure Buck3 voltage per PMIC NVM on Avenger96
  2022-05-17 14:32       ` Marek Vasut
@ 2022-05-17 15:32         ` Patrick DELAUNAY
  2022-05-17 15:52           ` Marek Vasut
  0 siblings, 1 reply; 11+ messages in thread
From: Patrick DELAUNAY @ 2022-05-17 15:32 UTC (permalink / raw)
  To: Marek Vasut, u-boot; +Cc: Patrice Chotard


On 5/17/22 16:32, Marek Vasut wrote:
> On 5/17/22 15:43, Patrick DELAUNAY wrote:
>> Hi,
>
> Hi,
>
>>>>> +static int board_get_regulator_buck3_nvm_uv_av96(int *uv)
>>>>> +{
>>>>> +    const void *fdt = gd->fdt_blob;
>>>>> +    struct udevice *dev;
>>>>> +    u8 bucks_vout = 0;
>>>>> +    const char *prop;
>>>>> +    int len, ret;
>>>>> +
>>>>> +    /* Check whether this is Avenger96 board. */
>>>>> +    prop = fdt_getprop(fdt, 0, "compatible", &len);
>>>>
>>>>
>>>> This API is not compatible with CONFIG_OF_LIVE
>>>>
>>>> consider replacement with ofnode_read_prop or with 
>>>> of_machine_is_compatible, for example
>>>>
>>>> if (!of_machine_is_compatible(prop, "arrow,stm32mp15xx-avenger96"))
>>>>      return -EINVAL;
>>>
>>> I explicitly don't want to use of_machine_is_compatible, I need to 
>>> search for the avenger96 substring in the machine compatible, since 
>>> the stm32mp15xx can be anything (15{1,3,7}{a,d}) and it might not 
>>> even have the arrow prefix.
>>
>>
>> Ok, I check on existing DT and I found only on compatible with 
>> "avenger96" string.
>>
>> arch/arm/dts/stm32mp15xx-dhcor-avenger96.dts:15:
>>
>>      compatible = "arrow,stm32mp15xx-avenger96", "st,stm32mp15x";
>>
>> But you can forget my proposal with of_machine_is_compatible, consider:
>>
>>     prop = ofnode_read_prop(ofnode_root(), "compatible", &len);
>>
>>
>> But it is just minor remark.
>
> There are multiple other fdt_getprop() calls in both board/st/ and 
> board/dh , maybe if you want to do OF_LIVE enablement (do you?), let's 
> convert them all at once ?


Ok. It is more a minor remark linked to checkpatch warning for all the 
added code:

"Use the livetree API (dev_read_...)"


I let you handle OF_LIVE  for your boards (code & defconfig),

FYI: it is already enable for STMicroelectronics boards (defconfig and 
in driver, mach-stm32mp and board code).


>
>> Do you expect this patch for next pull-request for v2022.07 or for 
>> next ?
>
> Ideally 2022.07.


Ok, I plan that.


Patrick


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

* Re: [PATCH] ARM: dts: stm32: Configure Buck3 voltage per PMIC NVM on Avenger96
  2022-05-17 15:32         ` Patrick DELAUNAY
@ 2022-05-17 15:52           ` Marek Vasut
  2022-05-18 16:53             ` Patrick DELAUNAY
  0 siblings, 1 reply; 11+ messages in thread
From: Marek Vasut @ 2022-05-17 15:52 UTC (permalink / raw)
  To: Patrick DELAUNAY, u-boot; +Cc: Patrice Chotard

On 5/17/22 17:32, Patrick DELAUNAY wrote:

Hi,

>>>>>> +static int board_get_regulator_buck3_nvm_uv_av96(int *uv)
>>>>>> +{
>>>>>> +    const void *fdt = gd->fdt_blob;
>>>>>> +    struct udevice *dev;
>>>>>> +    u8 bucks_vout = 0;
>>>>>> +    const char *prop;
>>>>>> +    int len, ret;
>>>>>> +
>>>>>> +    /* Check whether this is Avenger96 board. */
>>>>>> +    prop = fdt_getprop(fdt, 0, "compatible", &len);
>>>>>
>>>>>
>>>>> This API is not compatible with CONFIG_OF_LIVE
>>>>>
>>>>> consider replacement with ofnode_read_prop or with 
>>>>> of_machine_is_compatible, for example
>>>>>
>>>>> if (!of_machine_is_compatible(prop, "arrow,stm32mp15xx-avenger96"))
>>>>>      return -EINVAL;
>>>>
>>>> I explicitly don't want to use of_machine_is_compatible, I need to 
>>>> search for the avenger96 substring in the machine compatible, since 
>>>> the stm32mp15xx can be anything (15{1,3,7}{a,d}) and it might not 
>>>> even have the arrow prefix.
>>>
>>>
>>> Ok, I check on existing DT and I found only on compatible with 
>>> "avenger96" string.
>>>
>>> arch/arm/dts/stm32mp15xx-dhcor-avenger96.dts:15:
>>>
>>>      compatible = "arrow,stm32mp15xx-avenger96", "st,stm32mp15x";
>>>
>>> But you can forget my proposal with of_machine_is_compatible, consider:
>>>
>>>     prop = ofnode_read_prop(ofnode_root(), "compatible", &len);
>>>
>>>
>>> But it is just minor remark.
>>
>> There are multiple other fdt_getprop() calls in both board/st/ and 
>> board/dh , maybe if you want to do OF_LIVE enablement (do you?), let's 
>> convert them all at once ?
> 
> 
> Ok. It is more a minor remark linked to checkpatch warning for all the 
> added code:
> 
> "Use the livetree API (dev_read_...)"
> 
> 
> I let you handle OF_LIVE  for your boards (code & defconfig),
> 
> FYI: it is already enable for STMicroelectronics boards (defconfig and 
> in driver, mach-stm32mp and board code).

But look:

c387e626147 ("Merge branch '2022-05-11-Kconfig-cleanups-etc'")
with this patch:

u-boot$ git grep fdt_getprop.*comp board/dhelectronics/dh_stm32mp1/*c 
board/st/stm32mp1/*c
board/dhelectronics/dh_stm32mp1/board.c:        fdt_compat = 
fdt_getprop(gd->fdt_blob, 0, "compatible",
board/dhelectronics/dh_stm32mp1/board.c:        compat = 
fdt_getprop(gd->fdt_blob, 0, "compatible", NULL);
board/dhelectronics/dh_stm32mp1/board.c:        fdt_compat = 
fdt_getprop(gd->fdt_blob, 0, "compatible",

board/st/stm32mp1/stm32mp1.c:   fdt_compat = fdt_getprop(gd->fdt_blob, 
0, "compatible",
board/st/stm32mp1/stm32mp1.c:           fdt_compat = 
fdt_getprop(gd->fdt_blob, 0, "compatible",

Am I missing a patch or something ?

>>> Do you expect this patch for next pull-request for v2022.07 or for 
>>> next ?
>>
>> Ideally 2022.07.
> 
> 
> Ok, I plan that.

Thank you

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

* Re: [PATCH] ARM: dts: stm32: Configure Buck3 voltage per PMIC NVM on Avenger96
  2022-05-17 15:52           ` Marek Vasut
@ 2022-05-18 16:53             ` Patrick DELAUNAY
  2022-05-18 17:03               ` Marek Vasut
  0 siblings, 1 reply; 11+ messages in thread
From: Patrick DELAUNAY @ 2022-05-18 16:53 UTC (permalink / raw)
  To: Marek Vasut, u-boot; +Cc: Patrice Chotard

Hi,

On 5/17/22 17:52, Marek Vasut wrote:
> On 5/17/22 17:32, Patrick DELAUNAY wrote:
>
> Hi,
>
>>>>>>> +static int board_get_regulator_buck3_nvm_uv_av96(int *uv)
>>>>>>> +{
>>>>>>> +    const void *fdt = gd->fdt_blob;
>>>>>>> +    struct udevice *dev;
>>>>>>> +    u8 bucks_vout = 0;
>>>>>>> +    const char *prop;
>>>>>>> +    int len, ret;
>>>>>>> +
>>>>>>> +    /* Check whether this is Avenger96 board. */
>>>>>>> +    prop = fdt_getprop(fdt, 0, "compatible", &len);
>>>>>>
>>>>>>
>>>>>> This API is not compatible with CONFIG_OF_LIVE
>>>>>>
>>>>>> consider replacement with ofnode_read_prop or with 
>>>>>> of_machine_is_compatible, for example
>>>>>>
>>>>>> if (!of_machine_is_compatible(prop, "arrow,stm32mp15xx-avenger96"))
>>>>>>      return -EINVAL;
>>>>>
>>>>> I explicitly don't want to use of_machine_is_compatible, I need to 
>>>>> search for the avenger96 substring in the machine compatible, 
>>>>> since the stm32mp15xx can be anything (15{1,3,7}{a,d}) and it 
>>>>> might not even have the arrow prefix.
>>>>
>>>>
>>>> Ok, I check on existing DT and I found only on compatible with 
>>>> "avenger96" string.
>>>>
>>>> arch/arm/dts/stm32mp15xx-dhcor-avenger96.dts:15:
>>>>
>>>>      compatible = "arrow,stm32mp15xx-avenger96", "st,stm32mp15x";
>>>>
>>>> But you can forget my proposal with of_machine_is_compatible, 
>>>> consider:
>>>>
>>>>     prop = ofnode_read_prop(ofnode_root(), "compatible", &len);
>>>>
>>>>
>>>> But it is just minor remark.
>>>
>>> There are multiple other fdt_getprop() calls in both board/st/ and 
>>> board/dh , maybe if you want to do OF_LIVE enablement (do you?), 
>>> let's convert them all at once ?
>>
>>
>> Ok. It is more a minor remark linked to checkpatch warning for all 
>> the added code:
>>
>> "Use the livetree API (dev_read_...)"
>>
>>
>> I let you handle OF_LIVE  for your boards (code & defconfig),
>>
>> FYI: it is already enable for STMicroelectronics boards (defconfig 
>> and in driver, mach-stm32mp and board code).
>
> But look:
>
> c387e626147 ("Merge branch '2022-05-11-Kconfig-cleanups-etc'")
> with this patch:
>
> u-boot$ git grep fdt_getprop.*comp board/dhelectronics/dh_stm32mp1/*c 
> board/st/stm32mp1/*c
> board/dhelectronics/dh_stm32mp1/board.c:        fdt_compat = 
> fdt_getprop(gd->fdt_blob, 0, "compatible",
> board/dhelectronics/dh_stm32mp1/board.c:        compat = 
> fdt_getprop(gd->fdt_blob, 0, "compatible", NULL);
> board/dhelectronics/dh_stm32mp1/board.c:        fdt_compat = 
> fdt_getprop(gd->fdt_blob, 0, "compatible",
>
> board/st/stm32mp1/stm32mp1.c:   fdt_compat = fdt_getprop(gd->fdt_blob, 
> 0, "compatible",
> board/st/stm32mp1/stm32mp1.c:           fdt_compat = 
> fdt_getprop(gd->fdt_blob, 0, "compatible",
>
> Am I missing a patch or something ?


No, it is my fault, I forget these references....

I prepare a serie to solve this issue in STMicroelectronics Boards code.

>
>>>> Do you expect this patch for next pull-request for v2022.07 or for 
>>>> next ?
>>>
>>> Ideally 2022.07.
>>
>>
>> Ok, I plan that.
>
> Thank you


regards

Patrick


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

* Re: [PATCH] ARM: dts: stm32: Configure Buck3 voltage per PMIC NVM on Avenger96
  2022-05-18 16:53             ` Patrick DELAUNAY
@ 2022-05-18 17:03               ` Marek Vasut
  2022-05-19 16:59                 ` Patrick DELAUNAY
  0 siblings, 1 reply; 11+ messages in thread
From: Marek Vasut @ 2022-05-18 17:03 UTC (permalink / raw)
  To: Patrick DELAUNAY, u-boot; +Cc: Patrice Chotard

On 5/18/22 18:53, Patrick DELAUNAY wrote:
> Hi,

Hi,

[...]

>>> I let you handle OF_LIVE  for your boards (code & defconfig),
>>>
>>> FYI: it is already enable for STMicroelectronics boards (defconfig 
>>> and in driver, mach-stm32mp and board code).
>>
>> But look:
>>
>> c387e626147 ("Merge branch '2022-05-11-Kconfig-cleanups-etc'")
>> with this patch:
>>
>> u-boot$ git grep fdt_getprop.*comp board/dhelectronics/dh_stm32mp1/*c 
>> board/st/stm32mp1/*c
>> board/dhelectronics/dh_stm32mp1/board.c:        fdt_compat = 
>> fdt_getprop(gd->fdt_blob, 0, "compatible",
>> board/dhelectronics/dh_stm32mp1/board.c:        compat = 
>> fdt_getprop(gd->fdt_blob, 0, "compatible", NULL);
>> board/dhelectronics/dh_stm32mp1/board.c:        fdt_compat = 
>> fdt_getprop(gd->fdt_blob, 0, "compatible",
>>
>> board/st/stm32mp1/stm32mp1.c:   fdt_compat = fdt_getprop(gd->fdt_blob, 
>> 0, "compatible",
>> board/st/stm32mp1/stm32mp1.c:           fdt_compat = 
>> fdt_getprop(gd->fdt_blob, 0, "compatible",
>>
>> Am I missing a patch or something ?
> 
> 
> No, it is my fault, I forget these references....
> 
> I prepare a serie to solve this issue in STMicroelectronics Boards code.

Hehe, glad I could help you spot it.

You can prepare very much identical series for DH and CC me on it, the 
changes will be very much the same and I can test the result just fine.

[...]

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

* Re: [PATCH] ARM: dts: stm32: Configure Buck3 voltage per PMIC NVM on Avenger96
  2022-05-18 17:03               ` Marek Vasut
@ 2022-05-19 16:59                 ` Patrick DELAUNAY
  0 siblings, 0 replies; 11+ messages in thread
From: Patrick DELAUNAY @ 2022-05-19 16:59 UTC (permalink / raw)
  To: Marek Vasut, u-boot; +Cc: Patrice Chotard

Hi

On 5/18/22 19:03, Marek Vasut wrote:
> On 5/18/22 18:53, Patrick DELAUNAY wrote:
>> Hi,
>
> Hi,
>
> [...]
>
>>>> I let you handle OF_LIVE  for your boards (code & defconfig),
>>>>
>>>> FYI: it is already enable for STMicroelectronics boards (defconfig 
>>>> and in driver, mach-stm32mp and board code).
>>>
>>> But look:
>>>
>>> c387e626147 ("Merge branch '2022-05-11-Kconfig-cleanups-etc'")
>>> with this patch:
>>>
>>> u-boot$ git grep fdt_getprop.*comp 
>>> board/dhelectronics/dh_stm32mp1/*c board/st/stm32mp1/*c
>>> board/dhelectronics/dh_stm32mp1/board.c:        fdt_compat = 
>>> fdt_getprop(gd->fdt_blob, 0, "compatible",
>>> board/dhelectronics/dh_stm32mp1/board.c:        compat = 
>>> fdt_getprop(gd->fdt_blob, 0, "compatible", NULL);
>>> board/dhelectronics/dh_stm32mp1/board.c:        fdt_compat = 
>>> fdt_getprop(gd->fdt_blob, 0, "compatible",
>>>
>>> board/st/stm32mp1/stm32mp1.c:   fdt_compat = 
>>> fdt_getprop(gd->fdt_blob, 0, "compatible",
>>> board/st/stm32mp1/stm32mp1.c:           fdt_compat = 
>>> fdt_getprop(gd->fdt_blob, 0, "compatible",
>>>
>>> Am I missing a patch or something ?
>>
>>
>> No, it is my fault, I forget these references....
>>
>> I prepare a serie to solve this issue in STMicroelectronics Boards code.
>
> Hehe, glad I could help you spot it.
>
> You can prepare very much identical series for DH and CC me on it, the 
> changes will be very much the same and I can test the result just fine.
>
> [...]


Applied to u-boot-stm/master, thanks!


And RFC serie to activate OF_LIVE is:

http://patchwork.ozlabs.org/project/uboot/list/?series=301157&state=*

[RFC,1/2] board: dhelectronics: stm32mp1: convert to livetree

[RFC,2/2] ARM: stm32: activate OF_LIVE for DHSOM


Regards
Patrick



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

* Re: [PATCH] ARM: dts: stm32: Configure Buck3 voltage per PMIC NVM on Avenger96
  2022-05-17 12:39 ` Patrick DELAUNAY
  2022-05-17 12:53   ` Marek Vasut
@ 2022-05-20  7:20   ` Patrick DELAUNAY
  1 sibling, 0 replies; 11+ messages in thread
From: Patrick DELAUNAY @ 2022-05-20  7:20 UTC (permalink / raw)
  To: u-boot

Hi,

On 5/17/22 14:39, Patrick DELAUNAY wrote:
> Hi,
>
> On 5/11/22 23:09, Marek Vasut wrote:
>> The Avenger96 board comes in multiple regulator configurations.
>>   - rev.100 or rev.200 have Buck3 preconfigured to 3V3 operation on
>>     boot and contains extra Enpirion EP53A8LQI DCDC converter which
>>     supplies the IO. Reduce Buck3 voltage to 2V9 to not waste power.
>>   - rev.200L have Buck3 preconfigured to 1V8 operation and have no
>>     Enpirion EP53A8LQI DCDC anymore, the IO is supplied from Buck3.
>>
>> Configure the Buck3 voltage on this board per PMIC NVM settings and
>> update buck3 voltage limits in DT passed to OS before booting OS to
>> prevent potential hardware damage.
>>
>> Signed-off-by: Marek Vasut <marex@denx.de>
>> Cc: Patrice Chotard <patrice.chotard@foss.st.com>
>> Cc: Patrick Delaunay <patrick.delaunay@foss.st.com>
>> ---
>>   arch/arm/dts/stm32mp15xx-dhcor-io1v8.dtsi |   2 +-
>>   board/dhelectronics/dh_stm32mp1/board.c   | 109 +++++++++++++++++++++-
>>   2 files changed, 107 insertions(+), 4 deletions(-)
>>
>> diff --git a/arch/arm/dts/stm32mp15xx-dhcor-io1v8.dtsi 
>> b/arch/arm/dts/stm32mp15xx-dhcor-io1v8.dtsi
>> index 9937b28548c..e20917824bf 100644
>> --- a/arch/arm/dts/stm32mp15xx-dhcor-io1v8.dtsi
>> +++ b/arch/arm/dts/stm32mp15xx-dhcor-io1v8.dtsi
>> @@ -19,7 +19,7 @@
>>   };
>>     &vdd 
>> {http://patchwork.ozlabs.org/project/uboot/patch/20220517143655.1.I4d61d5a725e965f1476b26412ed1e8329aa9ba98@changeid/
>> -    regulator-min-microvolt = <2900000>;
>> +    regulator-min-microvolt = <1800000>;
>>       regulator-max-microvolt = <2900000>;
>>   };
>>   diff --git a/board/dhelectronics/dh_stm32mp1/board.c 
>> b/board/dhelectronics/dh_stm32mp1/board.c
>> index 67273f90992..d407f0bf592 100644
>> --- a/board/dhelectronics/dh_stm32mp1/board.c
>> +++ b/board/dhelectronics/dh_stm32mp1/board.c
>> @@ -594,14 +594,98 @@ static void board_init_fmc2(void)
>>       setbits_le32(STM32_FMC2_BASE + STM32_FMC2_BCR1, 
>> STM32_FMC2_BCRx_FMCEN);
>>   }
>>   +#ifdef CONFIG_DM_REGULATOR
>> +#define STPMIC_NVM_BUCKS_VOUT_SHR 
>> http://patchwork.ozlabs.org/project/uboot/patch/20220517143655.1.I4d61d5a725e965f1476b26412ed1e8329aa9ba98@changeid/ 
>> 0xfc
>> +#define STPMIC_NVM_BUCKS_VOUT_SHR_BUCK_1V2        0
>> +#define STPMIC_NVM_BUCKS_VOUT_SHR_BUCK_1V8        1
>> +#define STPMIC_NVM_BUCKS_VOUT_SHR_BUCK_3V0        2
>> +#define STPMIC_NVM_BUCKS_VOUT_SHR_BUCK_3V3        3
>> +#define STPMIC_NVM_BUCKS_VOUT_SHR_BUCK_MASK        GENMASK(1, 0)
>> +#define STPMIC_NVM_BUCKS_VOUT_SHR_BUCK_OFFSET(n)    ((((n) - 1) & 3) 
>> * 2)
>> +static int board_get_regulator_buck3_nvm_uv_av96(int *uv)
>> +{
>> +    const void *fdt = gd->fdt_blob;
>> +    struct udevice *dev;
>> +    u8 bucks_vout = 0;
>> +    const char *prop;
>> +    int len, ret;
>> +
>> +    /* Check whether this is Avenger96 board. */
>> +    prop = fdt_getprop(fdt, 0, "compatible", &len);
>
>
> This API is not compatible with CONFIG_OF_LIVE
>
> consider replacement with ofnode_read_prop or with 
> of_machine_is_compatible, for example
>
> if (!of_machine_is_compatible(prop, "arrow,stm32mp15xx-avenger96"))
>     return -EINVAL;
>
> See also
> http://patchwork.ozlabs.org/project/uboot/patch/20220517143655.1.I4d61d5a725e965f1476b26412ed1e8329aa9ba98@changeid/ 
>
>
>> +    if (!prop || !len)
>> +        return -ENODEV;
>> +
>> +    if (!strstr(prop, "avenger96"))
>> +        return -EINVAL;
>> +
>> +    /* Read out STPMIC1 NVM and determine default Buck3 voltage. */
>> +    ret = uclass_get_device_by_driver(UCLASS_MISC,
>> +                      DM_DRIVER_GET(stpmic1_nvm),
>> +                      &dev);
>> +    if (ret)
>> +        return ret;
>> +
>> +    ret = misc_read(dev, STPMIC_NVM_BUCKS_VOUT_SHR, &bucks_vout, 1);
>> +    if (ret != 1)
>> +        return -EINVAL;
>> +
>> +    bucks_vout >>= STPMIC_NVM_BUCKS_VOUT_SHR_BUCK_OFFSET(3);
>> +    bucks_vout &= STPMIC_NVM_BUCKS_VOUT_SHR_BUCK_MASK;
>> +
>> +    /*
>> +     * Avenger96 board comes in multiple regulator configurations:
>> +     * - rev.100 or rev.200 have Buck3 preconfigured to 3V3 
>> operation on
>> +     *   boot and contains extra Enpirion EP53A8LQI DCDC converter 
>> which
>> +     *   supplies the IO. Reduce Buck3 voltage to 2V9 to not waste 
>> power.
>> +     * - rev.200L have Buck3 preconfigured to 1V8 operation and have no
>> +     *   Enpirion EP53A8LQI DCDC anymore, 
>> http://patchwork.ozlabs.org/project/uboot/patch/20220517143655.1.I4d61d5a725e965f1476b26412ed1e8329aa9ba98@changeid/the 
>> IO is supplied from Buck3.
>> +     */
>> +    if (bucks_vout == STPMIC_NVM_BUCKS_VOUT_SHR_BUCK_3V3)
>> +        *uv = 2900000;
>> +    else
>> +        *uv = 1800000;
>> +
>> +    return 0;
>> +}
>> +
>> +static void board_init_regulator_av96(void)
>> +{
>> +    struct udevice *rdev;
>> +    int ret, uv;
>> +
>> +    ret = board_get_regulator_buck3_nvm_uv_av96(&uv);
>> +    if (ret)    /* Not Avenger96 board. */
>> +        return;
>> +
>> +    ret = regulator_get_by_devname("buck3", &rdev);
>> +    if (ret)
>> +        return;
>> +
>> +    /* Adjust Buck3 per preconfigured PMIC voltage from NVM. */
>> +    regulator_set_value(rdev, uv);
>> +}
>> +
>> +static void board_init_regulator(void)
>> +{
>> +    board_init_regulator_av96();
>> +
>> + 
>> regulators_enable_boot_on(_DEBUG);http://patchwork.ozlabs.org/project/uboot/patch/20220517143655.1.I4d61d5a725e965f1476b26412ed1e8329aa9ba98@changeid/
>> +}
>> +#else
>> +static inline int board_get_regulator_buck3_nvm_uv_av96(int *uv)
>> +{
>> +    return -EINVAL;
>> +}
>> +
>> +static inline void board_init_regulator(void) {}
>> +#endif
>> +
>>   /* board dependent setup after realloc */
>>   int board_init(void)
>>   {
>>       board_key_check();
>> http://patchwork.ozlabs.org/project/uboot/patch/20220517143655.1.I4d61d5a725e965f1476b26412ed1e8329aa9ba98@changeid/
>> -#ifdef CONFIG_DM_REGULATOR
>> -    regulators_enable_boot_on(_DEBUG);
>> -#endif
>> +    board_init_regulator();
>>         sysconf_init();
>>   @@ -721,6 +805,25 @@ int board_interface_eth_init(struct udevice *dev,
>>   #if defined(CONFIG_OF_BOARD_SETUP)
>>   int ft_board_setup(void *blob, struct bd_info *bd)
>>   {
>> +    const char *buck3path = 
>> "/soc/i2c@5c002000/stpmic@33/regulators/buck3";
>> +    int buck3off, ret, uv;
>> +
>> +    ret = 
>> board_get_regulator_buck3_nvm_uvhttp://patchwork.ozlabs.org/project/uboot/patch/20220517143655.1.I4d61d5a725e965f1476b26412ed1e8329aa9ba98@changeid/_av96(&uv);
>> +    if (ret)    /* Not Avenger96 board, do not patch Buck3 in DT. */
>> +        return 0;
>> +
>> +    buck3off = fdt_path_offset(blob, buck3path);
>> +    if (buck3off < 0)    /* No Buck3 regulator found. */
>> +        return 0;
>> +
>> +    ret = fdt_setprop_u32(blob, buck3off, "regulator-min-microvolt", 
>> uv);
>> +    if (ret < 0)
>> +        return ret;
>> +
>> +    ret = fdt_setprop_u32(blob, buck3off, "regulator-max-microvolt", 
>> uv);
>> +    if (ret < 0)
>> +        return ret;
>> +http://patchwork.ozlabs.org/project/uboot/patch/20220517143655.1.I4d61d5a725e965f1476b26412ed1e8329aa9ba98@changeid/ 
>>
>>       return 0;
>>   }
>>   #endif
>
>
> Reviewed-by: Patrick Delaunay <patrick.delaunay@foss.st.com>
>
> Thanks
> Patrick
>


Applied to u-boot-stm/master, thanks!

Regards
Patrick


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

end of thread, other threads:[~2022-05-20  7:20 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-11 21:09 [PATCH] ARM: dts: stm32: Configure Buck3 voltage per PMIC NVM on Avenger96 Marek Vasut
2022-05-17 12:39 ` Patrick DELAUNAY
2022-05-17 12:53   ` Marek Vasut
2022-05-17 13:43     ` Patrick DELAUNAY
2022-05-17 14:32       ` Marek Vasut
2022-05-17 15:32         ` Patrick DELAUNAY
2022-05-17 15:52           ` Marek Vasut
2022-05-18 16:53             ` Patrick DELAUNAY
2022-05-18 17:03               ` Marek Vasut
2022-05-19 16:59                 ` Patrick DELAUNAY
2022-05-20  7:20   ` 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.