This commit adds support for the Broadcom STB S2/S3/S5 suspend states on ARM based SoCs. This requires quite a lot of code in order to deal with the different HW blocks that need to be quiesced during suspend: - DDR PHY SHIM - DDR memory controller and sequencer - control processor The final steps of the suspend execute in an on-chip SRAM and there is a little bit of assembly code in order to shut down the DDR PHY PLL and then go into a wfi loop until a wake-up even occurs. Conversely the resume part involves waiting for the DDR PHY PLL to come back up and resume executions where we left. For S3, because of our memory hashing (actual hashing code not included for simplicity, and is bypassed) we need to relocate the writable variables (stack) into SRAM shortly before suspending in order to leave the DRAM untouched and create a reliable hash of its contents. This code has been contributed by Brian Norris initially and has been incrementally fixed and updated to support new chips by a lot of people. Signed-off-by: Brian Norris <computersforpeace@gmail.com> Signed-off-by: Markus Mayer <mmayer@broadcom.com> Signed-off-by: Justin Chen <justinpopo6@gmail.com> Signed-off-by: Gareth Powell <gpowell@broadcom.com> Signed-off-by: Doug Berger <opendmb@gmail.com> Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
77 lines
1.7 KiB
ArmAsm
77 lines
1.7 KiB
ArmAsm
/*
|
|
* Copyright © 2014-2017 Broadcom
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
* published by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*/
|
|
|
|
#include <linux/linkage.h>
|
|
#include <asm/assembler.h>
|
|
|
|
#include "pm.h"
|
|
|
|
.text
|
|
.align 3
|
|
|
|
#define AON_CTRL_REG r10
|
|
#define DDR_PHY_STATUS_REG r11
|
|
|
|
/*
|
|
* r0: AON_CTRL base address
|
|
* r1: DDRY PHY PLL status register address
|
|
*/
|
|
ENTRY(brcmstb_pm_do_s2)
|
|
stmfd sp!, {r4-r11, lr}
|
|
mov AON_CTRL_REG, r0
|
|
mov DDR_PHY_STATUS_REG, r1
|
|
|
|
/* Flush memory transactions */
|
|
dsb
|
|
|
|
/* Cache DDR_PHY_STATUS_REG translation */
|
|
ldr r0, [DDR_PHY_STATUS_REG]
|
|
|
|
/* power down request */
|
|
ldr r0, =PM_S2_COMMAND
|
|
ldr r1, =0
|
|
str r1, [AON_CTRL_REG, #AON_CTRL_PM_CTRL]
|
|
ldr r1, [AON_CTRL_REG, #AON_CTRL_PM_CTRL]
|
|
str r0, [AON_CTRL_REG, #AON_CTRL_PM_CTRL]
|
|
ldr r0, [AON_CTRL_REG, #AON_CTRL_PM_CTRL]
|
|
|
|
/* Wait for interrupt */
|
|
wfi
|
|
nop
|
|
|
|
/* Bring MEMC back up */
|
|
1: ldr r0, [DDR_PHY_STATUS_REG]
|
|
ands r0, #1
|
|
beq 1b
|
|
|
|
/* Power-up handshake */
|
|
ldr r0, =1
|
|
str r0, [AON_CTRL_REG, #AON_CTRL_HOST_MISC_CMDS]
|
|
ldr r0, [AON_CTRL_REG, #AON_CTRL_HOST_MISC_CMDS]
|
|
|
|
ldr r0, =0
|
|
str r0, [AON_CTRL_REG, #AON_CTRL_PM_CTRL]
|
|
ldr r0, [AON_CTRL_REG, #AON_CTRL_PM_CTRL]
|
|
|
|
/* Return to caller */
|
|
ldr r0, =0
|
|
ldmfd sp!, {r4-r11, pc}
|
|
|
|
ENDPROC(brcmstb_pm_do_s2)
|
|
|
|
/* Place literal pool here */
|
|
.ltorg
|
|
|
|
ENTRY(brcmstb_pm_do_s2_sz)
|
|
.word . - brcmstb_pm_do_s2
|