Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0c278fb4 authored by Simon Horman's avatar Simon Horman Committed by Sasha Levin
Browse files

ARM: shmobile: r8a7790: Correct SYSCIER value



[ Upstream commit ee72f6adfdd95b53432eb60b6944c6fe2790dd13 ]

Set the SYSCIER as per the values indicated in the documentation.
The value previously used appears to been copied from the r8a7779
implementation but on closer inspection is not correct for the r8a7790.

Fixes: a48f1655 ("ARM: shmobile: r8a7790 SYSC setup code")
Reported-by: default avatarGeert Uytterhoeven <geert@linux-m68k.org>
Acked-by: default avatarGeert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: default avatarSimon Horman <horms+renesas@verge.net.au>
Signed-off-by: default avatarSasha Levin <sasha.levin@oracle.com>
parent 6b33b647
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -38,7 +38,7 @@ static void __init r8a7790_sysc_init(void)
	void __iomem *base = rcar_sysc_init(0xe6180000);

	/* enable all interrupt sources, but do not use interrupt handler */
	iowrite32(0x0131000e, base + SYSCIER);
	iowrite32(0x013111ef, base + SYSCIER);
	iowrite32(0, base + SYSCIMR);
}