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

ARM: UniPhier: fix IECTRL set code for PH1-Pro4


For PH1-Pro4, the bit 6 of the IECTRL must be set.  It is the only
available bit in this register.  There is no effect of the write
access to the other bits.

Signed-off-by: default avatarMasahiro Yamada <yamada.m@jp.panasonic.com>
parent 061ae4c0
No related branches found
No related tags found
No related merge requests found
......@@ -23,6 +23,6 @@ void sg_init(void)
/* Input ports must be enabled before deasserting reset of cores */
tmp = readl(SG_IECTRL);
tmp |= 0x1;
tmp |= 1 << 6;
writel(tmp, SG_IECTRL);
}
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