Re: [U-Boot] [PATCH 3/3] imx: mx7: psci: add system power off support

2018-01-06 Thread Anson Huang


Best Regards!
Anson Huang


> -Original Message-
> From: Troy Kisky [mailto:troy.ki...@boundarydevices.com]
> Sent: 2018-01-06 2:49 AM
> To: Anson Huang <anson.hu...@nxp.com>; sba...@denx.de; Fabio Estevam
> <fabio.este...@nxp.com>; albert.u.b...@aribaud.net;
> christian.gmei...@gmail.com; Peng Fan <peng@nxp.com>; u-
> b...@lists.denx.de
> Subject: Re: [U-Boot] [PATCH 3/3] imx: mx7: psci: add system power off
> support
> 
> On 1/4/2018 10:03 PM, Anson Huang wrote:
> > Add i.MX7 PSCI system power off support, linux kernel can use
> > "poweroff" command to power off system via SNVS, PMIC power will be
> > disabled.
> >
> > Signed-off-by: Anson Huang <anson.hu...@nxp.com>
> > ---
> >  arch/arm/mach-imx/mx7/psci-mx7.c | 18 ++
> >  arch/arm/mach-imx/mx7/psci.S |  7 +++
> >  2 files changed, 25 insertions(+)
> >
> > diff --git a/arch/arm/mach-imx/mx7/psci-mx7.c
> > b/arch/arm/mach-imx/mx7/psci-mx7.c
> > index 66f6db6..0e515f0 100644
> > --- a/arch/arm/mach-imx/mx7/psci-mx7.c
> > +++ b/arch/arm/mach-imx/mx7/psci-mx7.c
> > @@ -26,6 +26,12 @@
> >  #define BP_SRC_A7RCR0_A7_CORE_RESET0   0
> >  #define BP_SRC_A7RCR1_A7_CORE1_ENABLE  1
> >
> > +#define SNVS_LPCR  0x38
> > +#define BP_SNVS_LPCR_DP_EN 0x20
> > +#define BP_SNVS_LPCR_TOP   0x40
> > +
> > +#define CCM_CCGR_SNVS  0x4250
> > +
> >  static inline void imx_gpcv2_set_m_core_pgc(bool enable, u32 offset)
> > {
> > writel(enable, GPC_IPS_BASE_ADDR + offset); @@ -79,3 +85,15 @@
> > __secure void imx_system_reset(void)  {
> > writew(1 << 2, WDOG1_BASE_ADDR);
> >  }
> > +
> > +__secure void imx_system_off(void)
> > +{
> > +   u32 val;
> > +
> > +   /* make sure SNVS clock is enabled */
> > +   writel(0x3, CCM_BASE_ADDR + CCM_CCGR_SNVS);
> > +
> > +   val = readl(SNVS_BASE_ADDR + SNVS_LPCR);
> > +   val |= BP_SNVS_LPCR_DP_EN | BP_SNVS_LPCR_TOP;
> > +   writel(val, SNVS_BASE_ADDR + SNVS_LPCR); }
> > diff --git a/arch/arm/mach-imx/mx7/psci.S
> > b/arch/arm/mach-imx/mx7/psci.S index 59f98cd..3d15016 100644
> > --- a/arch/arm/mach-imx/mx7/psci.S
> > +++ b/arch/arm/mach-imx/mx7/psci.S
> > @@ -50,4 +50,11 @@ psci_system_reset:
> >  2: wfi
> > b 2b
> >
> > +.globl psci_system_off
> > +psci_system_off:
> > +   b   imx_system_off
> 
> 
> Should this be "bl" for this and the previous patch ?


Ah, yes, thanks for your comment. I sent a V2 patch set, please help review.

Anson.

> 
> 
> > +
> > +3: wfi
> > +   b 3b
> > +
> > .popsection
> >

___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


Re: [U-Boot] [PATCH 3/3] imx: mx7: psci: add system power off support

2018-01-05 Thread Troy Kisky
On 1/4/2018 10:03 PM, Anson Huang wrote:
> Add i.MX7 PSCI system power off support, linux
> kernel can use "poweroff" command to power off
> system via SNVS, PMIC power will be disabled.
> 
> Signed-off-by: Anson Huang 
> ---
>  arch/arm/mach-imx/mx7/psci-mx7.c | 18 ++
>  arch/arm/mach-imx/mx7/psci.S |  7 +++
>  2 files changed, 25 insertions(+)
> 
> diff --git a/arch/arm/mach-imx/mx7/psci-mx7.c 
> b/arch/arm/mach-imx/mx7/psci-mx7.c
> index 66f6db6..0e515f0 100644
> --- a/arch/arm/mach-imx/mx7/psci-mx7.c
> +++ b/arch/arm/mach-imx/mx7/psci-mx7.c
> @@ -26,6 +26,12 @@
>  #define BP_SRC_A7RCR0_A7_CORE_RESET0 0
>  #define BP_SRC_A7RCR1_A7_CORE1_ENABLE1
>  
> +#define SNVS_LPCR0x38
> +#define BP_SNVS_LPCR_DP_EN   0x20
> +#define BP_SNVS_LPCR_TOP 0x40
> +
> +#define CCM_CCGR_SNVS0x4250
> +
>  static inline void imx_gpcv2_set_m_core_pgc(bool enable, u32 offset)
>  {
>   writel(enable, GPC_IPS_BASE_ADDR + offset);
> @@ -79,3 +85,15 @@ __secure void imx_system_reset(void)
>  {
>   writew(1 << 2, WDOG1_BASE_ADDR);
>  }
> +
> +__secure void imx_system_off(void)
> +{
> + u32 val;
> +
> + /* make sure SNVS clock is enabled */
> + writel(0x3, CCM_BASE_ADDR + CCM_CCGR_SNVS);
> +
> + val = readl(SNVS_BASE_ADDR + SNVS_LPCR);
> + val |= BP_SNVS_LPCR_DP_EN | BP_SNVS_LPCR_TOP;
> + writel(val, SNVS_BASE_ADDR + SNVS_LPCR);
> +}
> diff --git a/arch/arm/mach-imx/mx7/psci.S b/arch/arm/mach-imx/mx7/psci.S
> index 59f98cd..3d15016 100644
> --- a/arch/arm/mach-imx/mx7/psci.S
> +++ b/arch/arm/mach-imx/mx7/psci.S
> @@ -50,4 +50,11 @@ psci_system_reset:
>  2:   wfi
>   b 2b
>  
> +.globl psci_system_off
> +psci_system_off:
> + b   imx_system_off


Should this be "bl" for this and the previous patch ?


> +
> +3:   wfi
> + b 3b
> +
>   .popsection
> 

___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


[U-Boot] [PATCH 3/3] imx: mx7: psci: add system power off support

2018-01-05 Thread Anson Huang
Add i.MX7 PSCI system power off support, linux
kernel can use "poweroff" command to power off
system via SNVS, PMIC power will be disabled.

Signed-off-by: Anson Huang 
---
 arch/arm/mach-imx/mx7/psci-mx7.c | 18 ++
 arch/arm/mach-imx/mx7/psci.S |  7 +++
 2 files changed, 25 insertions(+)

diff --git a/arch/arm/mach-imx/mx7/psci-mx7.c b/arch/arm/mach-imx/mx7/psci-mx7.c
index 66f6db6..0e515f0 100644
--- a/arch/arm/mach-imx/mx7/psci-mx7.c
+++ b/arch/arm/mach-imx/mx7/psci-mx7.c
@@ -26,6 +26,12 @@
 #define BP_SRC_A7RCR0_A7_CORE_RESET0   0
 #define BP_SRC_A7RCR1_A7_CORE1_ENABLE  1
 
+#define SNVS_LPCR  0x38
+#define BP_SNVS_LPCR_DP_EN 0x20
+#define BP_SNVS_LPCR_TOP   0x40
+
+#define CCM_CCGR_SNVS  0x4250
+
 static inline void imx_gpcv2_set_m_core_pgc(bool enable, u32 offset)
 {
writel(enable, GPC_IPS_BASE_ADDR + offset);
@@ -79,3 +85,15 @@ __secure void imx_system_reset(void)
 {
writew(1 << 2, WDOG1_BASE_ADDR);
 }
+
+__secure void imx_system_off(void)
+{
+   u32 val;
+
+   /* make sure SNVS clock is enabled */
+   writel(0x3, CCM_BASE_ADDR + CCM_CCGR_SNVS);
+
+   val = readl(SNVS_BASE_ADDR + SNVS_LPCR);
+   val |= BP_SNVS_LPCR_DP_EN | BP_SNVS_LPCR_TOP;
+   writel(val, SNVS_BASE_ADDR + SNVS_LPCR);
+}
diff --git a/arch/arm/mach-imx/mx7/psci.S b/arch/arm/mach-imx/mx7/psci.S
index 59f98cd..3d15016 100644
--- a/arch/arm/mach-imx/mx7/psci.S
+++ b/arch/arm/mach-imx/mx7/psci.S
@@ -50,4 +50,11 @@ psci_system_reset:
 2: wfi
b 2b
 
+.globl psci_system_off
+psci_system_off:
+   b   imx_system_off
+
+3: wfi
+   b 3b
+
.popsection
-- 
1.9.1

___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot