]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
omap4: fix boot issue on ES2.0 Panda
authorAneesh V <aneesh@ti.com>
Thu, 29 Dec 2011 08:47:17 +0000 (08:47 +0000)
committerAlbert ARIBAUD <albert.u.boot@aribaud.net>
Mon, 16 Jan 2012 07:40:11 +0000 (08:40 +0100)
Fix boot issue on ES2.0 Panda by tuning some
IO settings. The CONTROL_EFUSE_2 register has
to be over-ridden in software for 4430 boards.

Commit 23e9f0723e48615332119de4f4ec7a833a282628
wrongly did this for CONTROL_EFUSE_1. Reverting
this and doing it for CONTROL_EFUSE_2.

Signed-off-by: Aneesh V <aneesh@ti.com>
Tested-by: Raúl Porcel <armin76@gentoo.org>
arch/arm/cpu/armv7/omap4/hwinit.c
arch/arm/include/asm/arch-omap4/omap.h

index 37a86b4c2f942b90a436c329648adce536a55580..91f83205edf161de242b680c2f24bfcefb440111 100644 (file)
@@ -110,10 +110,10 @@ void do_io_settings(void)
         *      i. unconditionally for all 4430
         *      ii. only if un-trimmed for 4460
         */
-       if ((omap4_rev < OMAP4460_ES1_0) || !readl(&ctrl->control_efuse_1))
+       if (!readl(&ctrl->control_efuse_1))
                writel(CONTROL_EFUSE_1_OVERRIDE, &ctrl->control_efuse_1);
 
-       if (!readl(&ctrl->control_efuse_2))
+       if ((omap4_rev < OMAP4460_ES1_0) || !readl(&ctrl->control_efuse_2))
                writel(CONTROL_EFUSE_2_OVERRIDE, &ctrl->control_efuse_2);
 }
 #endif
index 4d8c89ffbdff1450cc882d54f4840319aa91817a..416c6de31432ea407406a92798ea0d0502ad3819 100644 (file)
 #define LDOSRAM_ACTMODE_VSET_IN_MASK   (0x1F << 5)
 #define LDOSRAM_VOLT_CTRL_OVERRIDE     0x0401040f
 #define CONTROL_EFUSE_1_OVERRIDE       0x1C4D0110
-#define CONTROL_EFUSE_2_OVERRIDE       0x00084000
+#define CONTROL_EFUSE_2_OVERRIDE       0x99084000
 
 /* LPDDR2 IO regs */
 #define CONTROL_LPDDR2IO_SLEW_125PS_DRV8_PULL_DOWN     0x1C1C1C1C