]> git.baikalelectronics.ru Git - kernel.git/commit
ARM: mvebu: fix suspend to RAM on big-endian configurations
authorThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Tue, 16 Jun 2015 12:12:57 +0000 (14:12 +0200)
committerGregory CLEMENT <gregory.clement@free-electrons.com>
Wed, 17 Jun 2015 15:23:36 +0000 (17:23 +0200)
commit1b93c14d67af5411c9c6b389e3e6db8ce9a7ad1e
treecb54687d81888c61ef79d83bf4b9f1fb7e19d549
parent967f4add8e91874923431f6f62f251fa37082ced
ARM: mvebu: fix suspend to RAM on big-endian configurations

The current Armada XP suspend to RAM implementation, as added in
commit f03c972df9b01 ("ARM: mvebu: Armada XP GP specific
suspend/resume code") does not handle big-endian configurations
properly: the small bit of assembly code putting the DRAM in
self-refresh and toggling the GPIOs to turn off power forgets to
convert the values to little-endian.

This commit fixes that by making sure the two values we will write to
the DRAM controller register and GPIO register are already in
little-endian before entering the critical assembly code.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Cc: <stable@vger.kernel.org> # v3.19+
Fixes: f03c972df9b01 ("ARM: mvebu: Armada XP GP specific suspend/resume code")
arch/arm/mach-mvebu/pm-board.c