aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBiwen Li <biwen.li@nxp.com>2019-09-25 18:40:42 +0800
committerPriyanka Jain <priyanka.jain@nxp.com>2019-10-21 15:34:18 +0530
commit1936841b11759957f78ed1c30e9d728aa9bb6c0c (patch)
tree15a3e060dcf0d6322651c31bcfa317875f9fbf96
parente93a7caf86cd23ab2cc8d0b138b3634896f8909a (diff)
downloadu-boot-1936841b11759957f78ed1c30e9d728aa9bb6c0c.zip
u-boot-1936841b11759957f78ed1c30e9d728aa9bb6c0c.tar.gz
u-boot-1936841b11759957f78ed1c30e9d728aa9bb6c0c.tar.bz2
armv7: ls102xa: add errata ID A-008646 for workaround
The patch adds an errata ID A-008646 for workaround to provide more information by errata ID. Signed-off-by: Biwen Li <biwen.li@nxp.com> Signed-off-by: Priyanka Jain <priyanka.jain@nxp.com>
-rw-r--r--arch/arm/cpu/armv7/ls102xa/ls102xa_psci.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/arch/arm/cpu/armv7/ls102xa/ls102xa_psci.c b/arch/arm/cpu/armv7/ls102xa/ls102xa_psci.c
index 00b6ad4..86693ed 100644
--- a/arch/arm/cpu/armv7/ls102xa/ls102xa_psci.c
+++ b/arch/arm/cpu/armv7/ls102xa/ls102xa_psci.c
@@ -68,9 +68,10 @@ static void __secure ls1_deepsleep_irq_cfg(void)
ippdexpcr0 = in_be32(&rcpm->ippdexpcr0);
/*
- * Workaround: There is bug of register ippdexpcr1, when read it always
- * returns zero, so its value is saved to a scrachpad register to be
- * read, that is why we don't read it from register ippdexpcr1 itself.
+ * Workaround of errata A-008646
+ * Errata states that read to register ippdexpcr1 always returns
+ * zero irrespective of what value is written into it. So its value
+ * is first saved to a spare register and then read from it
*/
ippdexpcr1 = in_be32(&scfg->sparecr[7]);
out_be32(&rcpm->ippdexpcr1, ippdexpcr1);