Skip to content
Snippets Groups Projects
Commit baaafaaa authored by Masahiro Yamada's avatar Masahiro Yamada
Browse files

ARM: uniphier: add work-around for VBO noise problem


Raise the VDD09 voltage line to 1.0V to suppress VBO noise.
This errata work-around code is needed only for ES1.

Signed-off-by: default avatarMasahiro Yamada <yamada.masahiro@socionext.com>
parent c89638a0
No related branches found
No related tags found
No related merge requests found
...@@ -134,6 +134,13 @@ int board_init(void) ...@@ -134,6 +134,13 @@ int board_init(void)
#endif #endif
#if defined(CONFIG_ARCH_UNIPHIER_LD20) #if defined(CONFIG_ARCH_UNIPHIER_LD20)
case SOC_UNIPHIER_LD20: case SOC_UNIPHIER_LD20:
/* ES1 errata: increase VDD09 supply to suppress VBO noise */
if (uniphier_get_soc_revision() == 1) {
writel(0x00000003, 0x6184e004);
writel(0x00000100, 0x6184e040);
writel(0x0000b500, 0x6184e024);
writel(0x00000001, 0x6184e000);
}
uniphier_nand_pin_init(false); uniphier_nand_pin_init(false);
sg_set_pinsel(149, 14, 8, 4); /* XIRQ0 -> XIRQ0 */ sg_set_pinsel(149, 14, 8, 4); /* XIRQ0 -> XIRQ0 */
sg_set_iectrl(149); sg_set_iectrl(149);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment