summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnson Huang <Anson.Huang@nxp.com>2016-03-24 17:41:08 +0800
committerAnson Huang <Anson.Huang@nxp.com>2016-03-24 18:53:23 +0800
commit5fd1cb94781926dca4bfdc2804f2550dcd6b65a5 (patch)
tree0d7dc276996fea638402c7f4cb13820cca0d9404
parentb54bb7111af62a19a8aa930f8bbcf03f9515b863 (diff)
downloadu-boot-imx-5fd1cb94781926dca4bfdc2804f2550dcd6b65a5.zip
u-boot-imx-5fd1cb94781926dca4bfdc2804f2550dcd6b65a5.tar.gz
u-boot-imx-5fd1cb94781926dca4bfdc2804f2550dcd6b65a5.tar.bz2
MLK-12576 imx: imx6ul: disable POR_B internal pull up
From TO1.1, SNVS adds internal pull up control for POR_B, the register filed is GPBIT[1:0], after system boot up, it can be set to 2b'01 to disable internal pull up. It can save about 30uA power in SNVS mode. Signed-off-by: Anson Huang <Anson.Huang@nxp.com>
-rw-r--r--arch/arm/cpu/armv7/mx6/soc.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/arch/arm/cpu/armv7/mx6/soc.c b/arch/arm/cpu/armv7/mx6/soc.c
index 4689924..c725fca 100644
--- a/arch/arm/cpu/armv7/mx6/soc.c
+++ b/arch/arm/cpu/armv7/mx6/soc.c
@@ -477,6 +477,15 @@ int arch_cpu_init(void)
* drain 100K (0x0000b8a0).
*/
writel(0x0000b8a0, IOMUXC_BASE_ADDR + 0x29c);
+ } else {
+ /*
+ * From TO1.1, SNVS adds internal pull up control for POR_B,
+ * the register filed is GPBIT[1:0], after system boot up,
+ * it can be set to 2b'01 to disable internal pull up.
+ * It can save about 30uA power in SNVS mode.
+ */
+ writel((readl(SNVS_LP_BASE_ADDR + 0x10) & (~0x1400)) | 0x400,
+ SNVS_LP_BASE_ADDR + 0x10);
}
#endif