Files
OpenCellular/chip/g/idle.c
Mary Ruthven b4a9135ffc g: disable sps as a wake source in deep sleep
Cr50 cant retain the TPM state in deep sleep so it wont be enabled until
it knows that the AP is off. If the AP is off it wont be asserting
SPS_CS_L, but it may be low because the AP isn't pulling it up.
This change disables it as a wake source in deep sleep.

BUG=chrome-os-partner:54796
BRANCH=none
TEST=run 'idle d'. Make sure cr50 goes into deep sleep and only resumes
due to a rdd event or when sys_rst_l is asserted.

Change-Id: Idf3ded6b439b71a27ac7eb4682a65dcdd6342cb9
Signed-off-by: Mary Ruthven <mruthven@chromium.org>
Reviewed-on: https://chromium-review.googlesource.com/364864
Reviewed-by: Bill Richardson <wfrichar@chromium.org>
2016-08-01 20:02:02 -07:00

208 lines
5.3 KiB
C

/* Copyright (c) 2014 The Chromium OS Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include "common.h"
#include "console.h"
#include "rdd.h"
#include "registers.h"
#include "system.h"
#include "task.h"
#include "util.h"
/* What to do when we're just waiting */
static enum {
DONT_KNOW,
IDLE_WFI,
IDLE_SLEEP,
IDLE_DEEP_SLEEP,
NUM_CHOICES
} idle_action;
#define IDLE_DEFAULT IDLE_SLEEP
static const char const *idle_name[] = {
"invalid",
"wfi",
"sleep",
"deep sleep",
};
BUILD_ASSERT(ARRAY_SIZE(idle_name) == NUM_CHOICES);
static int command_idle(int argc, char **argv)
{
int c, i;
if (argc > 1) {
c = tolower(argv[1][0]);
for (i = 1; i < ARRAY_SIZE(idle_name); i++)
if (idle_name[i][0] == c) {
idle_action = i;
break;
}
}
ccprintf("idle action: %s\n", idle_name[idle_action]);
return EC_SUCCESS;
}
DECLARE_CONSOLE_COMMAND(idle, command_idle,
"[w|s|d]",
"Set or show the idle action: wfi, sleep, deep sleep",
NULL);
static int utmi_wakeup_is_enabled(void)
{
#ifdef CONFIG_RDD
return is_utmi_wakeup_allowed();
#endif
return 1;
}
static void prepare_to_sleep(void)
{
/* No task switching! */
interrupt_disable();
/* Enable all possible internal wake sources */
GR_PMU_EXITPD_MASK =
GC_PMU_EXITPD_MASK_PIN_PD_EXIT_MASK |
GC_PMU_EXITPD_MASK_RDD0_PD_EXIT_TIMER_MASK |
GC_PMU_EXITPD_MASK_TIMELS0_PD_EXIT_TIMER0_MASK |
GC_PMU_EXITPD_MASK_TIMELS0_PD_EXIT_TIMER1_MASK;
if (utmi_wakeup_is_enabled())
GR_PMU_EXITPD_MASK |=
GC_PMU_EXITPD_MASK_UTMI_SUSPEND_N_MASK;
/* Which rails should we turn off? */
GR_PMU_LOW_POWER_DIS =
GC_PMU_LOW_POWER_DIS_VDDIOF_MASK |
GC_PMU_LOW_POWER_DIS_VDDXO_MASK |
GC_PMU_LOW_POWER_DIS_JTR_RC_MASK;
/*
* Deep sleep should only be enabled when the AP is off otherwise the
* TPM state will lost.
*
* TODO(crosbug.com/p/55747): Enable deep sleep when the AP is shut
* down. Currently deep sleep is only enabled through the console.
*/
if (idle_action == IDLE_DEEP_SLEEP) {
/*
* Disable the i2c and spi slave wake sources since the TPM is
* not being used and reenable them in their init functions on
* resume.
*/
GWRITE_FIELD(PINMUX, EXITEN0, DIOA12, 0); /* SPS_CS_L */
/* TODO remove i2cs wake event */
/*
* Preserve some state prior to deep sleep. Pretty much all we
* need is the device address, since everything else can be
* reinitialized on resume.
*/
GREG32(PMU, PWRDN_SCRATCH18) = GR_USB_DCFG;
/* And the idle action */
GREG32(PMU, PWRDN_SCRATCH17) = idle_action;
/* Latch the pinmux values */
GREG32(PINMUX, HOLD) = 1;
/* Clamp the USB pins and shut the PHY down. We have to do this
* in three separate steps, or Bad Things happen. */
GWRITE_FIELD(USB, PCGCCTL, PWRCLMP, 1);
GWRITE_FIELD(USB, PCGCCTL, RSTPDWNMODULE, 1);
GWRITE_FIELD(USB, PCGCCTL, STOPPCLK, 1);
/* Shut down one more power rail for deep sleep */
GR_PMU_LOW_POWER_DIS |=
GC_PMU_LOW_POWER_DIS_VDDL_MASK;
}
/* The next "wfi" will trigger it */
GR_PMU_LOW_POWER_DIS |= GC_PMU_LOW_POWER_DIS_START_MASK;
}
/* This is for normal sleep only. Deep sleep resumes with a warm boot. */
static void resume_from_sleep(void)
{
/* Prevent accidental reentry */
GR_PMU_LOW_POWER_DIS = 0;
/* Allow task switching again */
interrupt_enable();
}
/* The time in the future at which sleeping will be allowed. */
static timestamp_t next_sleep_time;
/* Update the future sleep time. */
void delay_sleep_by(uint32_t us)
{
timestamp_t tmp = get_time();
tmp.val += us;
if (tmp.val > next_sleep_time.val)
next_sleep_time = tmp;
}
/* Wait a good long time after any console input, in case there's more. */
void clock_refresh_console_in_use(void)
{
delay_sleep_by(10 * SECOND);
}
/* Custom idle task, executed when no tasks are ready to be scheduled. */
void __idle(void)
{
int sleep_ok, sleep_delay_passed;
/*
* This register is preserved across soft reboots, but not hard. It
* defaults to zero, which is how we can tell whether this is the
* preserved value or not. We only need to remember it because we might
* change it with the console command.
*/
idle_action = GREG32(PMU, PWRDN_SCRATCH17);
if (idle_action == DONT_KNOW || idle_action >= NUM_CHOICES) {
idle_action = IDLE_DEFAULT;
GREG32(PMU, PWRDN_SCRATCH17) = idle_action;
}
while (1) {
/* Anyone still busy? */
sleep_ok = DEEP_SLEEP_ALLOWED;
/* Wait a bit, just in case */
sleep_delay_passed = timestamp_expired(next_sleep_time, 0);
/* If it hasn't yet been long enough, check again when it is */
if (!sleep_delay_passed)
timer_arm(next_sleep_time, TASK_ID_IDLE);
/* We're allowed to sleep now, so set it up. */
if (sleep_ok && sleep_delay_passed)
if (idle_action != IDLE_WFI)
prepare_to_sleep();
/* Wait for the next irq event. This stops the CPU clock and
* may trigger sleep or deep sleep if enabled. */
asm("wfi");
/*
* Note: After resuming from normal sleep we should clear
* PMU_LOW_POWER_DIS to prevent sleeping again by accident.
* Normal sleep eventually resumes here after the waking
* interrupt has been handled, but since all the other tasks
* will get a chance to run first it might be some time before
* that happens. If we find ourselves going back into sleep
* unexpectedly, that might be why.
*/
resume_from_sleep();
}
}