hatch: Fix FPMCU pwr/rst gpio handling for dratini/jinlon
In https://review.coreboot.org/c/coreboot/+/37459
(commit fcd8c9e99e
) which moves power/reset
pin control of FPMCU to var/board/ramstage, but does not implement it for
dratini/jinlon. So, add it in dratini/jinlon.
BUG=b:146366921
TEST=emerge-hatch coreboot
Change-Id: I1b6dbe4ba0a1242aa64346410beed4152b4f457f
Signed-off-by: Wisley Chen <wisley.chen@quantatw.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/37833
Reviewed-by: Tim Wawrzynczak <twawrzynczak@chromium.org>
Reviewed-by: Paul Fagerburg <pfagerburg@chromium.org>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
e150876910
commit
a8a7374e84
|
@ -26,3 +26,4 @@ SPD_SOURCES += 16G_3200_4bg # 0b1001
|
||||||
bootblock-y += gpio.c
|
bootblock-y += gpio.c
|
||||||
ramstage-y += gpio.c
|
ramstage-y += gpio.c
|
||||||
ramstage-y += variant.c
|
ramstage-y += variant.c
|
||||||
|
ramstage-y += ramstage.c
|
||||||
|
|
|
@ -134,3 +134,32 @@ const struct pad_config *variant_early_gpio_table(size_t *num)
|
||||||
*num = ARRAY_SIZE(early_gpio_table);
|
*num = ARRAY_SIZE(early_gpio_table);
|
||||||
return early_gpio_table;
|
return early_gpio_table;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Default GPIO settings before entering non-S5 sleep states.
|
||||||
|
* Configure A12: FPMCU_RST_ODL as GPO before entering sleep.
|
||||||
|
* This guarantees that A12's native3 function is disabled.
|
||||||
|
* See commit c41b0e8ea3b2714bf6d6d88a6b66c333c6919f07.
|
||||||
|
*/
|
||||||
|
static const struct pad_config default_sleep_gpio_table[] = {
|
||||||
|
PAD_CFG_GPO(GPP_A12, 1, DEEP), /* FPMCU_RST_ODL */
|
||||||
|
};
|
||||||
|
|
||||||
|
/*
|
||||||
|
* GPIO settings before entering S5, which are same as default_sleep_gpio_table
|
||||||
|
* but also, turn off FPMCU.
|
||||||
|
*/
|
||||||
|
static const struct pad_config s5_sleep_gpio_table[] = {
|
||||||
|
PAD_CFG_GPO(GPP_A12, 0, DEEP), /* FPMCU_RST_ODL */
|
||||||
|
PAD_CFG_GPO(GPP_C11, 0, DEEP), /* PCH_FP_PWR_EN */
|
||||||
|
};
|
||||||
|
|
||||||
|
const struct pad_config *variant_sleep_gpio_table(u8 slp_typ, size_t *num)
|
||||||
|
{
|
||||||
|
if (slp_typ == ACPI_S5) {
|
||||||
|
*num = ARRAY_SIZE(s5_sleep_gpio_table);
|
||||||
|
return s5_sleep_gpio_table;
|
||||||
|
}
|
||||||
|
*num = ARRAY_SIZE(default_sleep_gpio_table);
|
||||||
|
return default_sleep_gpio_table;
|
||||||
|
}
|
||||||
|
|
|
@ -0,0 +1,32 @@
|
||||||
|
/*
|
||||||
|
* This file is part of the coreboot project.
|
||||||
|
*
|
||||||
|
* Copyright 2019 Google LLC
|
||||||
|
*
|
||||||
|
* This program is free software; you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation; version 2 of the License.
|
||||||
|
*
|
||||||
|
* 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 <delay.h>
|
||||||
|
#include <gpio.h>
|
||||||
|
#include <baseboard/variants.h>
|
||||||
|
#include <soc/gpio.h>
|
||||||
|
|
||||||
|
void variant_ramstage_init(void)
|
||||||
|
{
|
||||||
|
/*
|
||||||
|
* Enable power to FPMCU, wait for power rail to stabilize,
|
||||||
|
* and then deassert FPMCU reset.
|
||||||
|
* Waiting for the power rail to stabilize can take a while,
|
||||||
|
* a minimum of 400us on Kohaku.
|
||||||
|
*/
|
||||||
|
gpio_output(GPP_C11, 1);
|
||||||
|
mdelay(1);
|
||||||
|
gpio_output(GPP_A12, 1);
|
||||||
|
}
|
|
@ -25,3 +25,4 @@ SPD_SOURCES += 16G_3200_4bg # 0b1001
|
||||||
|
|
||||||
bootblock-y += gpio.c
|
bootblock-y += gpio.c
|
||||||
ramstage-y += gpio.c
|
ramstage-y += gpio.c
|
||||||
|
ramstage-y += ramstage.c
|
||||||
|
|
|
@ -110,3 +110,32 @@ const struct pad_config *variant_early_gpio_table(size_t *num)
|
||||||
*num = ARRAY_SIZE(early_gpio_table);
|
*num = ARRAY_SIZE(early_gpio_table);
|
||||||
return early_gpio_table;
|
return early_gpio_table;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Default GPIO settings before entering non-S5 sleep states.
|
||||||
|
* Configure A12: FPMCU_RST_ODL as GPO before entering sleep.
|
||||||
|
* This guarantees that A12's native3 function is disabled.
|
||||||
|
* See commit c41b0e8ea3b2714bf6d6d88a6b66c333c6919f07.
|
||||||
|
*/
|
||||||
|
static const struct pad_config default_sleep_gpio_table[] = {
|
||||||
|
PAD_CFG_GPO(GPP_A12, 1, DEEP), /* FPMCU_RST_ODL */
|
||||||
|
};
|
||||||
|
|
||||||
|
/*
|
||||||
|
* GPIO settings before entering S5, which are same as default_sleep_gpio_table
|
||||||
|
* but also, turn off FPMCU.
|
||||||
|
*/
|
||||||
|
static const struct pad_config s5_sleep_gpio_table[] = {
|
||||||
|
PAD_CFG_GPO(GPP_A12, 0, DEEP), /* FPMCU_RST_ODL */
|
||||||
|
PAD_CFG_GPO(GPP_C11, 0, DEEP), /* PCH_FP_PWR_EN */
|
||||||
|
};
|
||||||
|
|
||||||
|
const struct pad_config *variant_sleep_gpio_table(u8 slp_typ, size_t *num)
|
||||||
|
{
|
||||||
|
if (slp_typ == ACPI_S5) {
|
||||||
|
*num = ARRAY_SIZE(s5_sleep_gpio_table);
|
||||||
|
return s5_sleep_gpio_table;
|
||||||
|
}
|
||||||
|
*num = ARRAY_SIZE(default_sleep_gpio_table);
|
||||||
|
return default_sleep_gpio_table;
|
||||||
|
}
|
||||||
|
|
|
@ -0,0 +1,32 @@
|
||||||
|
/*
|
||||||
|
* This file is part of the coreboot project.
|
||||||
|
*
|
||||||
|
* Copyright 2019 Google LLC
|
||||||
|
*
|
||||||
|
* This program is free software; you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation; version 2 of the License.
|
||||||
|
*
|
||||||
|
* 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 <delay.h>
|
||||||
|
#include <gpio.h>
|
||||||
|
#include <baseboard/variants.h>
|
||||||
|
#include <soc/gpio.h>
|
||||||
|
|
||||||
|
void variant_ramstage_init(void)
|
||||||
|
{
|
||||||
|
/*
|
||||||
|
* Enable power to FPMCU, wait for power rail to stabilize,
|
||||||
|
* and then deassert FPMCU reset.
|
||||||
|
* Waiting for the power rail to stabilize can take a while,
|
||||||
|
* a minimum of 400us on Kohaku.
|
||||||
|
*/
|
||||||
|
gpio_output(GPP_C11, 1);
|
||||||
|
mdelay(1);
|
||||||
|
gpio_output(GPP_A12, 1);
|
||||||
|
}
|
Loading…
Reference in New Issue