projects
/
platform
/
kernel
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3b9ac54
)
imx: i.MX8MQ: clear ocotp error bit
author
Peng Fan
<peng.fan@nxp.com>
Wed, 17 Apr 2019 09:41:16 +0000
(09:41 +0000)
committer
Stefano Babic
<sbabic@denx.de>
Thu, 25 Apr 2019 17:16:24 +0000
(19:16 +0200)
In case ocotp error bit is set, clear it.
Signed-off-by: Peng Fan <peng.fan@nxp.com>
arch/arm/mach-imx/imx8m/soc.c
patch
|
blob
|
history
diff --git
a/arch/arm/mach-imx/imx8m/soc.c
b/arch/arm/mach-imx/imx8m/soc.c
index
11251c5
..
7ec39b3
100644
(file)
--- a/
arch/arm/mach-imx/imx8m/soc.c
+++ b/
arch/arm/mach-imx/imx8m/soc.c
@@
-169,6
+169,7
@@
static void imx_set_wdog_powerdown(bool enable)
int arch_cpu_init(void)
{
+ struct ocotp_regs *ocotp = (struct ocotp_regs *)OCOTP_BASE_ADDR;
/*
* Init timer at very early state, because sscg pll setting
* will use it
@@
-180,6
+181,12
@@
int arch_cpu_init(void)
imx_set_wdog_powerdown(false);
}
+ if (is_imx8mq()) {
+ clock_enable(CCGR_OCOTP, 1);
+ if (readl(&ocotp->ctrl) & 0x200)
+ writel(0x200, &ocotp->ctrl_clr);
+ }
+
return 0;
}