kohaku: mb/hatch/gpio: Scrub Kohaku GPIOs.

Ensure Kohaku GPIO pins are configured correctly w/r/t Hatch. Implement the
base/override model for GPIOs (regular and early).  The 'hatch' baseboard
contains the base GPIOs, and variants can override individual pads.

BUG=b:129707481
BRANCH=none
TEST=Compiles for all variants.

Change-Id: Ie5c83a0538d367ea11e9499f21cea41891d7a78e
Signed-off-by: Tim Wawrzynczak <twawrzynczak@chromium.org>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/32326
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Paul Fagerburg <pfagerburg@chromium.org>
Reviewed-by: Furquan Shaikh <furquan@google.com>
This commit is contained in:
Tim Wawrzynczak 2019-04-16 15:21:09 -06:00 committed by Furquan Shaikh
parent 395f1e328d
commit 64a6bcaa4e
6 changed files with 154 additions and 19 deletions

View File

@ -19,11 +19,18 @@
static void early_config_gpio(void) static void early_config_gpio(void)
{ {
const struct pad_config *early_gpio_table; const struct pad_config *base_early_table;
size_t num_gpios = 0; const struct pad_config *override_early_table;
size_t base_gpios;
size_t override_gpios;
early_gpio_table = variant_early_gpio_table(&num_gpios); base_early_table = base_early_gpio_table(&base_gpios);
gpio_configure_pads(early_gpio_table, num_gpios); override_early_table = override_early_gpio_table(&override_gpios);
gpio_configure_pads_with_override(base_early_table,
base_gpios,
override_early_table,
override_gpios);
} }
void bootblock_mainboard_init(void) void bootblock_mainboard_init(void)

View File

@ -23,11 +23,18 @@
void mainboard_silicon_init_params(FSP_S_CONFIG *params) void mainboard_silicon_init_params(FSP_S_CONFIG *params)
{ {
const struct pad_config *gpio_table; const struct pad_config *base_table;
size_t num_gpios; const struct pad_config *override_table;
size_t base_gpios;
size_t override_gpios;
gpio_table = variant_gpio_table(&num_gpios); base_table = base_gpio_table(&base_gpios);
cnl_configure_pads(gpio_table, num_gpios); override_table = override_gpio_table(&override_gpios);
gpio_configure_pads_with_override(base_table,
base_gpios,
override_table,
override_gpios);
} }
static void mainboard_enable(struct device *dev) static void mainboard_enable(struct device *dev)

View File

@ -232,7 +232,7 @@ static const struct pad_config gpio_table[] = {
/* E0 : GPP_E0 ==> NC */ /* E0 : GPP_E0 ==> NC */
PAD_NC(GPP_E0, NONE), PAD_NC(GPP_E0, NONE),
/* E1 : SATAPCIE1 */ /* E1 : M2_SSD_PEDET */
PAD_CFG_NF(GPP_E1, NONE, DEEP, NF1), PAD_CFG_NF(GPP_E1, NONE, DEEP, NF1),
/* E2 : GPP_E2 ==> NC */ /* E2 : GPP_E2 ==> NC */
PAD_NC(GPP_E2, NONE), PAD_NC(GPP_E2, NONE),
@ -344,7 +344,6 @@ static const struct pad_config gpio_table[] = {
PAD_CFG_NF(GPP_G6, NONE, DEEP, NF1), PAD_CFG_NF(GPP_G6, NONE, DEEP, NF1),
/* G7 : SD_WP => NC */ /* G7 : SD_WP => NC */
PAD_NC(GPP_G7, DN_20K), PAD_NC(GPP_G7, DN_20K),
/* /*
* H0 : HP_INT_L * H0 : HP_INT_L
* TODO Configure it back to invert mode, when * TODO Configure it back to invert mode, when
@ -405,7 +404,7 @@ static const struct pad_config gpio_table[] = {
PAD_CFG_GPI_GPIO_DRIVER(vSD3_CD_B, NONE, DEEP), PAD_CFG_GPI_GPIO_DRIVER(vSD3_CD_B, NONE, DEEP),
}; };
const struct pad_config *__weak variant_gpio_table(size_t *num) const struct pad_config *base_gpio_table(size_t *num)
{ {
*num = ARRAY_SIZE(gpio_table); *num = ARRAY_SIZE(gpio_table);
return gpio_table; return gpio_table;
@ -429,8 +428,8 @@ static const struct pad_config s5_sleep_gpio_table[] = {
PAD_CFG_GPO(GPP_A18, 0, DEEP), /* EN_PP3300_WWAN */ PAD_CFG_GPO(GPP_A18, 0, DEEP), /* EN_PP3300_WWAN */
}; };
const struct pad_config * __weak const struct pad_config * __weak variant_sleep_gpio_table(
variant_sleep_gpio_table(u8 slp_typ, size_t *num) u8 slp_typ, size_t *num)
{ {
if (slp_typ == ACPI_S5) { if (slp_typ == ACPI_S5) {
*num = ARRAY_SIZE(s5_sleep_gpio_table); *num = ARRAY_SIZE(s5_sleep_gpio_table);
@ -470,10 +469,9 @@ static const struct pad_config early_gpio_table[] = {
PAD_CFG_GPI(GPP_F21, NONE, PLTRST), PAD_CFG_GPI(GPP_F21, NONE, PLTRST),
/* F22 : PCH_MEM_STRAP3 */ /* F22 : PCH_MEM_STRAP3 */
PAD_CFG_GPI(GPP_F22, NONE, PLTRST), PAD_CFG_GPI(GPP_F22, NONE, PLTRST),
}; };
const struct pad_config *__weak variant_early_gpio_table(size_t *num) const struct pad_config *base_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;
@ -489,3 +487,16 @@ const struct cros_gpio *__weak variant_cros_gpios(size_t *num)
*num = ARRAY_SIZE(cros_gpios); *num = ARRAY_SIZE(cros_gpios);
return cros_gpios; return cros_gpios;
} }
/* Weak implementation of overrides */
const struct pad_config *__weak override_gpio_table(size_t *num)
{
*num = 0;
return NULL;
}
const struct pad_config *__weak override_early_gpio_table(size_t *num)
{
*num = 0;
return NULL;
}

View File

@ -21,10 +21,15 @@
#include <stdint.h> #include <stdint.h>
#include <vendorcode/google/chromeos/chromeos.h> #include <vendorcode/google/chromeos/chromeos.h>
/* The next set of functions return the gpio table and fill in the number of /*
* entries for each table. */ * The next set of functions return the gpio table and fill in the number of
const struct pad_config *variant_gpio_table(size_t *num); * entries for each table. The "base" GPIOs live in the "hatch" variant, and
const struct pad_config *variant_early_gpio_table(size_t *num); * the overrides live with the specific board (kohaku, kled, etc.).
*/
const struct pad_config *base_gpio_table(size_t *num);
const struct pad_config *base_early_gpio_table(size_t *num);
const struct pad_config *override_gpio_table(size_t *num);
const struct pad_config *override_early_gpio_table(size_t *num);
/* Return memory SKU for the board. */ /* Return memory SKU for the board. */
int variant_memory_sku(void); int variant_memory_sku(void);

View File

@ -18,3 +18,6 @@ SPD_SOURCES += 8G_2400 # 0b010
SPD_SOURCES += 8G_2666 # 0b011 SPD_SOURCES += 8G_2666 # 0b011
SPD_SOURCES += 16G_2400 # 0b100 SPD_SOURCES += 16G_2400 # 0b100
SPD_SOURCES += 16G_2666 # 0b101 SPD_SOURCES += 16G_2666 # 0b101
bootblock-y += gpio.c
ramstage-y += gpio.c

View File

@ -0,0 +1,102 @@
/*
* 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 <arch/acpi.h>
#include <baseboard/gpio.h>
#include <baseboard/variants.h>
#include <commonlib/helpers.h>
static const struct pad_config gpio_table[] = {
/* A0 : RCIN# ==> NC */
PAD_NC(GPP_A0, NONE),
/* A6 : SERIRQ ==> NC */
PAD_NC(GPP_A6, NONE),
/* A10 : PEN_RESET_ODL */
PAD_CFG_GPO(GPP_A10, 0, DEEP),
/* A17 : PIRQA# ==> NC */
PAD_NC(GPP_A17, NONE),
/* A18 : ISH_GP0 ==> NC */
PAD_NC(GPP_A18, NONE),
/* A19 : ISH_GP1 ==> NC */
PAD_NC(GPP_A19, NONE),
/* A20 : ISH_GP2 ==> NC */
PAD_NC(GPP_A20, NONE),
/* A22 : ISH_GP4 ==> NC */
PAD_NC(GPP_A22, NONE),
/* B8 : SRCCLKREQ3#: NC */
PAD_NC(GPP_B8, NONE),
/* C1 : SMBDATA: NC */
PAD_NC(GPP_C1, NONE),
/*
* C12 : EMR_GARAGE_INT
* The same signal is routed to both A8 and C12. Currently C12
* is the interrupt source, and A8 is the wake source.
* Hoping that GPP_A8 can be used for both interrupt (SCI) and wake
* (GPIO). Keeping as GPI for now.
*/
PAD_CFG_GPI_SCI(GPP_C12, NONE, DEEP, EDGE_SINGLE, INVERT),
/* C15 : EN_PP3300_TSP_DIG_DX */
PAD_CFG_GPO(GPP_C15, 0, DEEP),
/* C23 : UART2_CTS# ==> NC */
PAD_NC(GPP_C23, NONE),
/* E23 : GPP_E23 ==> NC */
PAD_NC(GPP_E23, NONE),
/* F1 : GPP_F1 ==> NC */
PAD_NC(GPP_F1, NONE),
/* G0 : GPP_G0 ==> NC */
PAD_NC(GPP_G0, NONE),
/* G1 : GPP_G1 ==> NC */
PAD_NC(GPP_G1, NONE),
/* G2 : GPP_G2 ==> NC */
PAD_NC(GPP_G2, NONE),
/* G3 : GPP_G3 ==> NC */
PAD_NC(GPP_G3, NONE),
/* G4 : GPP_G4 ==> NC */
PAD_NC(GPP_G4, NONE),
/* G5 : GPP_G5 ==> NC */
PAD_NC(GPP_G5, NONE),
/* G6 : GPP_G6 ==> NC */
PAD_NC(GPP_G6, NONE),
};
const struct pad_config *override_gpio_table(size_t *num)
{
*num = ARRAY_SIZE(gpio_table);
return gpio_table;
}
/* GPIOs configured before ramstage */
static const struct pad_config early_gpio_table[] = {
PAD_NC(GPP_C23, NONE),
};
const struct pad_config *override_early_gpio_table(size_t *num)
{
*num = ARRAY_SIZE(early_gpio_table);
return early_gpio_table;
}
/*
* GPIO settings before entering all sleep states
*/
static const struct pad_config sleep_gpio_table[] = {
PAD_CFG_GPO(GPP_A12, 1, DEEP), /* FPMCU_RST_ODL */
};
const struct pad_config *variant_sleep_gpio_table(u8 slp_typ, size_t *num)
{
*num = ARRAY_SIZE(sleep_gpio_table);
return sleep_gpio_table;
}