mirror of
https://github.com/Stichting-MINIX-Research-Foundation/u-boot.git
synced 2025-09-10 12:39:22 -04:00
omap4: fix boot issue on ES2.0 Panda
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>
This commit is contained in:
parent
6cce55047c
commit
fe7104b307
@ -110,10 +110,10 @@ void do_io_settings(void)
|
|||||||
* i. unconditionally for all 4430
|
* i. unconditionally for all 4430
|
||||||
* ii. only if un-trimmed for 4460
|
* 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);
|
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);
|
writel(CONTROL_EFUSE_2_OVERRIDE, &ctrl->control_efuse_2);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
@ -116,7 +116,7 @@
|
|||||||
#define LDOSRAM_ACTMODE_VSET_IN_MASK (0x1F << 5)
|
#define LDOSRAM_ACTMODE_VSET_IN_MASK (0x1F << 5)
|
||||||
#define LDOSRAM_VOLT_CTRL_OVERRIDE 0x0401040f
|
#define LDOSRAM_VOLT_CTRL_OVERRIDE 0x0401040f
|
||||||
#define CONTROL_EFUSE_1_OVERRIDE 0x1C4D0110
|
#define CONTROL_EFUSE_1_OVERRIDE 0x1C4D0110
|
||||||
#define CONTROL_EFUSE_2_OVERRIDE 0x00084000
|
#define CONTROL_EFUSE_2_OVERRIDE 0x99084000
|
||||||
|
|
||||||
/* LPDDR2 IO regs */
|
/* LPDDR2 IO regs */
|
||||||
#define CONTROL_LPDDR2IO_SLEW_125PS_DRV8_PULL_DOWN 0x1C1C1C1C
|
#define CONTROL_LPDDR2IO_SLEW_125PS_DRV8_PULL_DOWN 0x1C1C1C1C
|
||||||
|
Loading…
x
Reference in New Issue
Block a user