summaryrefslogtreecommitdiffstats
path: root/include/mc13892.h
diff options
context:
space:
mode:
authorShawn Guo <shawn.gsc@gmail.com>2010-10-27 23:36:04 +0800
committerStefano Babic <sbabic@denx.de>2010-10-28 11:42:34 +0200
commit888b4f435f74ae8ba7a5df552b119ba25c7438dc (patch)
treeefed308acd3d23639ca17e9a17be481943989e41 /include/mc13892.h
parent9a0044183a148ab553e296848cbfa4338fc83323 (diff)
downloadblackbird-obmc-uboot-888b4f435f74ae8ba7a5df552b119ba25c7438dc.tar.gz
blackbird-obmc-uboot-888b4f435f74ae8ba7a5df552b119ba25c7438dc.zip
mx51evk: Fix 2 hours reset issue
The mx51evk u-boot has an issue that system will get reset every 2 hours. MC13892 has an inside charge timer which expires in 120 minutes. If ICHRG and CHGAUTOB are not set properly, this timer expiration will get system power recycled. Since mx51evk has no Li-Ion battery on board, the patch sets ICHRG in externally powered mode and sets CHGAUTOB bit to avoid automatic charging, so that system will not get reset by this timer expiration. The patch also corrects the bit field definition of register 48 (Charger 0) per latest MC13892 Reference Manual. Signed-off-by: Shawn Guo <shawn.gsc@gmail.com>
Diffstat (limited to 'include/mc13892.h')
-rw-r--r--include/mc13892.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/include/mc13892.h b/include/mc13892.h
index 791e3ec878..61c3e6e621 100644
--- a/include/mc13892.h
+++ b/include/mc13892.h
@@ -29,24 +29,24 @@
/* REG_CHARGE */
-#define VCHRG0 0
+#define VCHRG0 (1 << 0)
#define VCHRG1 (1 << 1)
#define VCHRG2 (1 << 2)
#define ICHRG0 (1 << 3)
#define ICHRG1 (1 << 4)
#define ICHRG2 (1 << 5)
#define ICHRG3 (1 << 6)
-#define ICHRGTR0 (1 << 7)
-#define ICHRGTR1 (1 << 8)
-#define ICHRGTR2 (1 << 9)
+#define TREN (1 << 7)
+#define ACKLPB (1 << 8)
+#define THCHKB (1 << 9)
#define FETOVRD (1 << 10)
#define FETCTRL (1 << 11)
#define RVRSMODE (1 << 13)
-#define OVCTRL0 (1 << 15)
-#define OVCTRL1 (1 << 16)
-#define UCHEN (1 << 17)
+#define PLIM0 (1 << 15)
+#define PLIM1 (1 << 16)
+#define PLIMDIS (1 << 17)
#define CHRGLEDEN (1 << 18)
-#define CHRGRAWPDEN (1 << 19)
+#define CHGTMRRST (1 << 19)
#define CHGRESTART (1 << 20)
#define CHGAUTOB (1 << 21)
#define CYCLB (1 << 22)
OpenPOWER on IntegriCloud