* [U-Boot] [PATCH] ARM: mx6: pmu: Expose PMU LDO configuration interface
@ 2019-11-26 8:35 Marek Vasut
2019-11-26 16:28 ` Eric Nelson
0 siblings, 1 reply; 2+ messages in thread
From: Marek Vasut @ 2019-11-26 8:35 UTC (permalink / raw)
To: u-boot
Make the PMU LDO configuration interface available to board code,
so that board code can reconfigure the internal LDOs of the SoC.
Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Eric Nelson <eric@nelint.com>
Cc: Fabio Estevam <fabio.estevam@nxp.com>
Cc: Stefano Babic <sbabic@denx.de>
---
arch/arm/include/asm/arch-mx6/sys_proto.h | 8 ++++++++
arch/arm/mach-imx/mx6/soc.c | 8 +-------
2 files changed, 9 insertions(+), 7 deletions(-)
diff --git a/arch/arm/include/asm/arch-mx6/sys_proto.h b/arch/arm/include/asm/arch-mx6/sys_proto.h
index 4bf7dff8b4..1e5fa1a75e 100644
--- a/arch/arm/include/asm/arch-mx6/sys_proto.h
+++ b/arch/arm/include/asm/arch-mx6/sys_proto.h
@@ -20,6 +20,14 @@
int imx6_pcie_toggle_power(void);
int imx6_pcie_toggle_reset(void);
+enum ldo_reg {
+ LDO_ARM,
+ LDO_SOC,
+ LDO_PU,
+};
+
+int set_ldo_voltage(enum ldo_reg ldo, u32 mv);
+
/**
* iomuxc_set_rgmii_io_voltage - set voltage level of RGMII/USB pins
*
diff --git a/arch/arm/mach-imx/mx6/soc.c b/arch/arm/mach-imx/mx6/soc.c
index 6dccee484c..3560dd7ee7 100644
--- a/arch/arm/mach-imx/mx6/soc.c
+++ b/arch/arm/mach-imx/mx6/soc.c
@@ -23,12 +23,6 @@
#include <imx_thermal.h>
#include <mmc.h>
-enum ldo_reg {
- LDO_ARM,
- LDO_SOC,
- LDO_PU,
-};
-
struct scu_regs {
u32 ctrl;
u32 config;
@@ -254,7 +248,7 @@ static void clear_ldo_ramp(void)
* Possible values are from 0.725V to 1.450V in steps of
* 0.025V (25mV).
*/
-static int set_ldo_voltage(enum ldo_reg ldo, u32 mv)
+int set_ldo_voltage(enum ldo_reg ldo, u32 mv)
{
struct anatop_regs *anatop = (struct anatop_regs *)ANATOP_BASE_ADDR;
u32 val, step, old, reg = readl(&anatop->reg_core);
--
2.24.0
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [U-Boot] [PATCH] ARM: mx6: pmu: Expose PMU LDO configuration interface
2019-11-26 8:35 [U-Boot] [PATCH] ARM: mx6: pmu: Expose PMU LDO configuration interface Marek Vasut
@ 2019-11-26 16:28 ` Eric Nelson
0 siblings, 0 replies; 2+ messages in thread
From: Eric Nelson @ 2019-11-26 16:28 UTC (permalink / raw)
To: u-boot
Hi Marek,
On 11/26/19 1:35 AM, Marek Vasut wrote:
> Make the PMU LDO configuration interface available to board code,
> so that board code can reconfigure the internal LDOs of the SoC.
>
> Signed-off-by: Marek Vasut <marex@denx.de>
> Cc: Eric Nelson <eric@nelint.com>
> Cc: Fabio Estevam <fabio.estevam@nxp.com>
> Cc: Stefano Babic <sbabic@denx.de>
> ---
> arch/arm/include/asm/arch-mx6/sys_proto.h | 8 ++++++++
> arch/arm/mach-imx/mx6/soc.c | 8 +-------
> 2 files changed, 9 insertions(+), 7 deletions(-)
>
> diff --git a/arch/arm/include/asm/arch-mx6/sys_proto.h b/arch/arm/include/asm/arch-mx6/sys_proto.h
> index 4bf7dff8b4..1e5fa1a75e 100644
> --- a/arch/arm/include/asm/arch-mx6/sys_proto.h
> +++ b/arch/arm/include/asm/arch-mx6/sys_proto.h
> @@ -20,6 +20,14 @@
> int imx6_pcie_toggle_power(void);
> int imx6_pcie_toggle_reset(void);
>
> +enum ldo_reg {
> + LDO_ARM,
> + LDO_SOC,
> + LDO_PU,
> +};
> +
> +int set_ldo_voltage(enum ldo_reg ldo, u32 mv);
> +
> /**
> * iomuxc_set_rgmii_io_voltage - set voltage level of RGMII/USB pins
> *
> diff --git a/arch/arm/mach-imx/mx6/soc.c b/arch/arm/mach-imx/mx6/soc.c
> index 6dccee484c..3560dd7ee7 100644
> --- a/arch/arm/mach-imx/mx6/soc.c
> +++ b/arch/arm/mach-imx/mx6/soc.c
> @@ -23,12 +23,6 @@
> #include <imx_thermal.h>
> #include <mmc.h>
>
> -enum ldo_reg {
> - LDO_ARM,
> - LDO_SOC,
> - LDO_PU,
> -};
> -
> struct scu_regs {
> u32 ctrl;
> u32 config;
> @@ -254,7 +248,7 @@ static void clear_ldo_ramp(void)
> * Possible values are from 0.725V to 1.450V in steps of
> * 0.025V (25mV).
> */
> -static int set_ldo_voltage(enum ldo_reg ldo, u32 mv)
> +int set_ldo_voltage(enum ldo_reg ldo, u32 mv)
> {
> struct anatop_regs *anatop = (struct anatop_regs *)ANATOP_BASE_ADDR;
> u32 val, step, old, reg = readl(&anatop->reg_core);
>
Reviewed-by: Eric Nelson <eric@nelint.com>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2019-11-26 16:28 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-11-26 8:35 [U-Boot] [PATCH] ARM: mx6: pmu: Expose PMU LDO configuration interface Marek Vasut
2019-11-26 16:28 ` Eric Nelson
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox