mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2026-01-09 09:01:35 +00:00
Fizz has two power sources: barrel jack and type-c port. It selects a power source at boot and does not dynamicall switch to the other ports after that. Fizz initializes all power suppliers of all ports to zero then initialize the source supplier (barrel jack or type-c port). When both sources are provided, it prefers a barrel jack. This detection is done by reading the voltage on PPVAR_PWR_IN. If barrel jack is detected as a sink, type-c port works as a source only. If type-c port is detected as a sink, type-c port works as a sink only. Fizz does not have a battery. So, battery module is removed. BUG=b:37573548,b:37316498 BRANCH=none TEST=Boot on both type-c & barrel jack. Change-Id: If4f5ff0c6019d06ac9dacb5dd365f5aa96bffef3 Signed-off-by: Daisuke Nojiri <dnojiri@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/499547
430 lines
10 KiB
C
430 lines
10 KiB
C
/* Copyright 2016 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.
|
|
*/
|
|
|
|
/* Intel X86 chipset power control module for Chrome EC */
|
|
|
|
#include "board_config.h"
|
|
#include "charge_state.h"
|
|
#include "chipset.h"
|
|
#include "console.h"
|
|
#include "ec_commands.h"
|
|
#include "espi.h"
|
|
#include "gpio.h"
|
|
#include "hooks.h"
|
|
#include "intel_x86.h"
|
|
#include "lpc.h"
|
|
#include "power.h"
|
|
#include "power_button.h"
|
|
#include "system.h"
|
|
#include "task.h"
|
|
#include "util.h"
|
|
#include "wireless.h"
|
|
|
|
/* Chipset specific header files */
|
|
#ifdef CONFIG_CHIPSET_APOLLOLAKE
|
|
#include "apollolake.h"
|
|
#elif defined(CONFIG_CHIPSET_SKYLAKE)
|
|
#include "skylake.h"
|
|
#endif
|
|
|
|
/* Console output macros */
|
|
#define CPRINTS(format, args...) cprints(CC_CHIPSET, format, ## args)
|
|
|
|
enum sys_sleep_state {
|
|
SYS_SLEEP_S3,
|
|
SYS_SLEEP_S4
|
|
};
|
|
|
|
#ifdef CONFIG_ESPI_VW_SIGNALS
|
|
static const enum espi_vw_signal espi_vm_sig[] = {
|
|
[SYS_SLEEP_S3] = VW_SLP_S3_L,
|
|
[SYS_SLEEP_S4] = VW_SLP_S4_L,
|
|
};
|
|
#else
|
|
static const enum gpio_signal gpio_sig[] = {
|
|
[SYS_SLEEP_S3] = GPIO_PCH_SLP_S3_L,
|
|
[SYS_SLEEP_S4] = GPIO_PCH_SLP_S4_L,
|
|
};
|
|
#endif
|
|
|
|
static int power_s5_up; /* Chipset is sequencing up or down */
|
|
|
|
/* Get system sleep state through GPIOs or VWs */
|
|
static inline int chipset_get_sleep_signal(enum sys_sleep_state state)
|
|
{
|
|
#ifdef CONFIG_ESPI_VW_SIGNALS
|
|
return espi_vw_get_wire(espi_vm_sig[state]);
|
|
#else
|
|
return gpio_get_level(gpio_sig[state]);
|
|
#endif
|
|
}
|
|
|
|
#ifdef CONFIG_BOARD_HAS_RTC_RESET
|
|
static enum power_state power_wait_s5_rtc_reset(void)
|
|
{
|
|
static int s5_exit_tries;
|
|
|
|
/* Wait for S5 exit and then attempt RTC reset */
|
|
while ((power_get_signals() & IN_PCH_SLP_S4_DEASSERTED) == 0) {
|
|
/* Handle RSMRST passthru event while waiting */
|
|
common_intel_x86_handle_rsmrst(POWER_S5);
|
|
if (task_wait_event(SECOND*4) == TASK_EVENT_TIMER) {
|
|
CPRINTS("timeout waiting for S5 exit");
|
|
chipset_force_g3();
|
|
|
|
/* Assert RTCRST# and retry 5 times */
|
|
board_rtc_reset();
|
|
|
|
if (++s5_exit_tries > 4) {
|
|
s5_exit_tries = 0;
|
|
return POWER_G3; /* Stay off */
|
|
}
|
|
|
|
udelay(10 * MSEC);
|
|
return POWER_G3S5; /* Power up again */
|
|
}
|
|
}
|
|
|
|
s5_exit_tries = 0;
|
|
return POWER_S5S3; /* Power up to next state */
|
|
}
|
|
#endif
|
|
|
|
#ifdef CONFIG_POWER_S0IX
|
|
/*
|
|
* In AP S0 -> S3 & S0ix transitions,
|
|
* the chipset_suspend is called.
|
|
*
|
|
* The chipset_in_state(CHIPSET_STATE_STANDBY | CHIPSET_STATE_ON)
|
|
* is used to detect the S0ix transiton.
|
|
*
|
|
* During S0ix entry, the wake mask for lid open and tablet mode is enabled.
|
|
*/
|
|
static void s0ix_lpc_enable_wake_mask(void)
|
|
{
|
|
if (chipset_in_state(CHIPSET_STATE_STANDBY | CHIPSET_STATE_ON)) {
|
|
uint32_t mask;
|
|
|
|
mask = lpc_get_host_event_mask(LPC_HOST_EVENT_WAKE) |
|
|
EC_HOST_EVENT_MASK(EC_HOST_EVENT_LID_OPEN) |
|
|
EC_HOST_EVENT_MASK(EC_HOST_EVENT_MODE_CHANGE);
|
|
|
|
lpc_set_host_event_mask(LPC_HOST_EVENT_WAKE, mask);
|
|
}
|
|
}
|
|
|
|
/*
|
|
* In AP S0ix & S3 -> S0 transitions,
|
|
* the chipset_resume hook is called.
|
|
*
|
|
* During S0ix exit, the wake mask for lid open and tablet mode is disabled.
|
|
* All pending events are cleared
|
|
*/
|
|
static void s0ix_lpc_disable_wake_mask(void)
|
|
{
|
|
if (chipset_in_state(CHIPSET_STATE_STANDBY | CHIPSET_STATE_ON)) {
|
|
uint32_t mask;
|
|
|
|
mask = lpc_get_host_event_mask(LPC_HOST_EVENT_WAKE) &
|
|
~EC_HOST_EVENT_MASK(EC_HOST_EVENT_LID_OPEN) &
|
|
~EC_HOST_EVENT_MASK(EC_HOST_EVENT_MODE_CHANGE);
|
|
|
|
lpc_set_host_event_mask(LPC_HOST_EVENT_WAKE, mask);
|
|
|
|
/* clear host events */
|
|
while (lpc_query_host_event_state() != 0)
|
|
;
|
|
}
|
|
}
|
|
|
|
static void handle_chipset_reset(void)
|
|
{
|
|
if (chipset_in_state(CHIPSET_STATE_STANDBY)) {
|
|
CPRINTS("chipset reset: exit s0ix");
|
|
power_reset_host_sleep_state(HOST_SLEEP_EVENT_S0IX_RESUME);
|
|
task_wake(TASK_ID_CHIPSET);
|
|
}
|
|
}
|
|
DECLARE_HOOK(HOOK_CHIPSET_RESET, handle_chipset_reset, HOOK_PRIO_FIRST);
|
|
#endif
|
|
|
|
void chipset_throttle_cpu(int throttle)
|
|
{
|
|
if (chipset_in_state(CHIPSET_STATE_ON))
|
|
gpio_set_level(GPIO_CPU_PROCHOT, throttle);
|
|
}
|
|
|
|
enum power_state power_chipset_init(void)
|
|
{
|
|
/*
|
|
* If we're switching between images without rebooting, see if the x86
|
|
* is already powered on; if so, leave it there instead of cycling
|
|
* through G3.
|
|
*/
|
|
if (system_jumped_to_this_image()) {
|
|
if ((power_get_signals() & IN_ALL_S0) == IN_ALL_S0) {
|
|
/* Disable idle task deep sleep when in S0. */
|
|
disable_sleep(SLEEP_MASK_AP_RUN);
|
|
CPRINTS("already in S0");
|
|
return POWER_S0;
|
|
}
|
|
|
|
/* Force all signals to their G3 states */
|
|
chipset_force_g3();
|
|
}
|
|
|
|
return POWER_G3;
|
|
}
|
|
|
|
enum power_state common_intel_x86_power_handle_state(enum power_state state)
|
|
{
|
|
|
|
switch (state) {
|
|
case POWER_G3:
|
|
break;
|
|
|
|
case POWER_S5:
|
|
#ifdef CONFIG_BOARD_HAS_RTC_RESET
|
|
/* Wait for S5 exit and attempt RTC reset it supported */
|
|
if (power_s5_up)
|
|
return power_wait_s5_rtc_reset();
|
|
#endif
|
|
|
|
if (chipset_get_sleep_signal(SYS_SLEEP_S4) == 1)
|
|
return POWER_S5S3; /* Power up to next state */
|
|
break;
|
|
|
|
case POWER_S3:
|
|
if (!power_has_signals(IN_PGOOD_ALL_CORE)) {
|
|
/* Required rail went away */
|
|
chipset_force_shutdown();
|
|
return POWER_S3S5;
|
|
} else if (chipset_get_sleep_signal(SYS_SLEEP_S3) == 1) {
|
|
/* Power up to next state */
|
|
return POWER_S3S0;
|
|
} else if (chipset_get_sleep_signal(SYS_SLEEP_S4) == 0) {
|
|
/* Power down to next state */
|
|
return POWER_S3S5;
|
|
}
|
|
break;
|
|
|
|
case POWER_S0:
|
|
if (!power_has_signals(IN_PGOOD_ALL_CORE)) {
|
|
chipset_force_shutdown();
|
|
return POWER_S0S3;
|
|
} else if (chipset_get_sleep_signal(SYS_SLEEP_S3) == 0) {
|
|
/* Power down to next state */
|
|
return POWER_S0S3;
|
|
#ifdef CONFIG_POWER_S0IX
|
|
} else if (power_get_host_sleep_state() ==
|
|
HOST_SLEEP_EVENT_S0IX_SUSPEND) {
|
|
return POWER_S0S0ix;
|
|
#endif
|
|
}
|
|
|
|
break;
|
|
|
|
#ifdef CONFIG_POWER_S0IX
|
|
case POWER_S0ix:
|
|
if ((power_get_host_sleep_state() ==
|
|
HOST_SLEEP_EVENT_S0IX_RESUME) &&
|
|
(chipset_get_sleep_signal(SYS_SLEEP_S3) == 1)) {
|
|
return POWER_S0ixS0;
|
|
} else if (!power_has_signals(IN_PGOOD_ALL_CORE)) {
|
|
return POWER_S0;
|
|
}
|
|
|
|
break;
|
|
#endif
|
|
|
|
case POWER_G3S5:
|
|
#ifdef CONFIG_CHARGER
|
|
{
|
|
int tries = 0;
|
|
/*
|
|
* Allow charger to be initialized for upto defined tries,
|
|
* in case we're trying to boot the AP with no battery.
|
|
*/
|
|
while (charge_prevent_power_on(0) &&
|
|
tries++ < CHARGER_INITIALIZED_TRIES) {
|
|
msleep(CHARGER_INITIALIZED_DELAY_MS);
|
|
}
|
|
|
|
/* Return to G3 if battery level is too low */
|
|
if (charge_want_shutdown() ||
|
|
tries > CHARGER_INITIALIZED_TRIES) {
|
|
CPRINTS("power-up inhibited");
|
|
chipset_force_shutdown();
|
|
return POWER_G3;
|
|
}
|
|
}
|
|
#endif
|
|
|
|
/* Call hooks to initialize PMIC */
|
|
hook_notify(HOOK_CHIPSET_PRE_INIT);
|
|
|
|
if (power_wait_signals(CHIPSET_G3S5_POWERUP_SIGNAL)) {
|
|
chipset_force_shutdown();
|
|
return POWER_G3;
|
|
}
|
|
|
|
power_s5_up = 1;
|
|
return POWER_S5;
|
|
|
|
case POWER_S5S3:
|
|
if (!power_has_signals(IN_PGOOD_ALL_CORE)) {
|
|
/* Required rail went away */
|
|
chipset_force_shutdown();
|
|
return POWER_S5G3;
|
|
}
|
|
|
|
/* Call hooks now that rails are up */
|
|
hook_notify(HOOK_CHIPSET_STARTUP);
|
|
|
|
#ifdef CONFIG_POWER_S0IX
|
|
/*
|
|
* Clearing the S0ix flag on the path to S0
|
|
* to handle any reset conditions.
|
|
*/
|
|
power_reset_host_sleep_state(HOST_SLEEP_EVENT_S0IX_RESUME);
|
|
#endif
|
|
return POWER_S3;
|
|
|
|
case POWER_S3S0:
|
|
if (!power_has_signals(IN_PGOOD_ALL_CORE)) {
|
|
/* Required rail went away */
|
|
chipset_force_shutdown();
|
|
return POWER_S3S5;
|
|
}
|
|
|
|
/* Enable wireless */
|
|
wireless_set_state(WIRELESS_ON);
|
|
|
|
/* Call hooks now that rails are up */
|
|
hook_notify(HOOK_CHIPSET_RESUME);
|
|
|
|
/*
|
|
* Disable idle task deep sleep. This means that the low
|
|
* power idle task will not go into deep sleep while in S0.
|
|
*/
|
|
disable_sleep(SLEEP_MASK_AP_RUN);
|
|
|
|
/*
|
|
* Throttle CPU if necessary. This should only be asserted
|
|
* when +VCCP is powered (it is by now).
|
|
*/
|
|
gpio_set_level(GPIO_CPU_PROCHOT, 0);
|
|
|
|
return POWER_S0;
|
|
|
|
case POWER_S0S3:
|
|
/* Call hooks before we remove power rails */
|
|
hook_notify(HOOK_CHIPSET_SUSPEND);
|
|
|
|
/* Suspend wireless */
|
|
wireless_set_state(WIRELESS_SUSPEND);
|
|
|
|
/*
|
|
* Enable idle task deep sleep. Allow the low power idle task
|
|
* to go into deep sleep in S3 or lower.
|
|
*/
|
|
enable_sleep(SLEEP_MASK_AP_RUN);
|
|
|
|
#ifdef CONFIG_POWER_S0IX
|
|
/* re-init S0ix flag */
|
|
power_reset_host_sleep_state(HOST_SLEEP_EVENT_S0IX_RESUME);
|
|
#endif
|
|
return POWER_S3;
|
|
|
|
#ifdef CONFIG_POWER_S0IX
|
|
case POWER_S0S0ix:
|
|
/* call hooks before standby */
|
|
hook_notify(HOOK_CHIPSET_SUSPEND);
|
|
|
|
s0ix_lpc_enable_wake_mask();
|
|
|
|
/*
|
|
* Enable idle task deep sleep. Allow the low power idle task
|
|
* to go into deep sleep in S0ix.
|
|
*/
|
|
enable_sleep(SLEEP_MASK_AP_RUN);
|
|
|
|
return POWER_S0ix;
|
|
|
|
|
|
case POWER_S0ixS0:
|
|
s0ix_lpc_disable_wake_mask();
|
|
|
|
/* Call hooks now that rails are up */
|
|
hook_notify(HOOK_CHIPSET_RESUME);
|
|
|
|
/*
|
|
* Disable idle task deep sleep. This means that the low
|
|
* power idle task will not go into deep sleep while in S0.
|
|
*/
|
|
disable_sleep(SLEEP_MASK_AP_RUN);
|
|
|
|
return POWER_S0;
|
|
#endif
|
|
|
|
case POWER_S3S5:
|
|
/* Call hooks before we remove power rails */
|
|
hook_notify(HOOK_CHIPSET_SHUTDOWN);
|
|
|
|
/* Disable wireless */
|
|
wireless_set_state(WIRELESS_OFF);
|
|
|
|
/* Always enter into S5 state. The S5 state is required to
|
|
* correctly handle global resets which have a bit of delay
|
|
* while the SLP_Sx_L signals are asserted then deasserted.
|
|
*/
|
|
power_s5_up = 0;
|
|
return POWER_S5;
|
|
|
|
case POWER_S5G3:
|
|
return chipset_force_g3();
|
|
|
|
default:
|
|
break;
|
|
}
|
|
|
|
return state;
|
|
}
|
|
|
|
void common_intel_x86_handle_rsmrst(enum power_state state)
|
|
{
|
|
/*
|
|
* Pass through RSMRST asynchronously, as PCH may not react
|
|
* immediately to power changes.
|
|
*/
|
|
int rsmrst_in = gpio_get_level(GPIO_RSMRST_L_PGOOD);
|
|
int rsmrst_out = gpio_get_level(GPIO_PCH_RSMRST_L);
|
|
|
|
/* Nothing to do. */
|
|
if (rsmrst_in == rsmrst_out)
|
|
return;
|
|
|
|
#ifdef CONFIG_BOARD_HAS_BEFORE_RSMRST
|
|
board_before_rsmrst(rsmrst_in);
|
|
#endif
|
|
|
|
#ifdef CONFIG_CHIPSET_APOLLOLAKE
|
|
/* Only passthrough RSMRST_L de-assertion on power up */
|
|
if (rsmrst_in && !power_s5_up)
|
|
return;
|
|
#elif defined(CONFIG_CHIPSET_SKYLAKE)
|
|
/*
|
|
* Wait at least 10ms between power signals going high
|
|
* and deasserting RSMRST to PCH.
|
|
*/
|
|
if (rsmrst_in)
|
|
msleep(10);
|
|
#endif
|
|
|
|
gpio_set_level(GPIO_PCH_RSMRST_L, rsmrst_in);
|
|
|
|
CPRINTS("Pass through GPIO_RSMRST_L_PGOOD: %d", rsmrst_in);
|
|
}
|