summaryrefslogtreecommitdiffstats
path: root/src/mainboard/google/brya/variants/nivviks/fw_config.c
diff options
context:
space:
mode:
authorReka Norman <rekanorman@google.com>2022-05-06 20:22:21 +1000
committerWerner Zeh <werner.zeh@siemens.com>2022-05-16 05:11:07 +0000
commitf2f785dbbee7db2b6cd30bc5eaa5bfabff4f82ef (patch)
tree31a58714f4f3316e0ad170a642fdfd123269bc2a /src/mainboard/google/brya/variants/nivviks/fw_config.c
parente4ebc86a3b9bed085fd13c028db99edf9e20977d (diff)
downloadcoreboot-f2f785dbbee7db2b6cd30bc5eaa5bfabff4f82ef.tar.gz
coreboot-f2f785dbbee7db2b6cd30bc5eaa5bfabff4f82ef.tar.bz2
coreboot-f2f785dbbee7db2b6cd30bc5eaa5bfabff4f82ef.zip
mb/google/nissa/var/nivviks: Add support for NVMe and UFS
Enable either eMMC, NVMe or UFS based on fw_config. NVMe and UFS are only supported on nirwen, an additional nissa variant based on nivviks and sharing the nivviks coreboot target. BUG=b:218929856 TEST=Boot to OS on nivviks to check that eMMC still works. NVMe and UFS will be tested once nirwen boards are available. Change-Id: Ibdb122ef35920c962d7bd9f3f238a5d548112282 Signed-off-by: Reka Norman <rekanorman@chromium.org> Reviewed-on: https://review.coreboot.org/c/coreboot/+/64211 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
Diffstat (limited to 'src/mainboard/google/brya/variants/nivviks/fw_config.c')
-rw-r--r--src/mainboard/google/brya/variants/nivviks/fw_config.c50
1 files changed, 49 insertions, 1 deletions
diff --git a/src/mainboard/google/brya/variants/nivviks/fw_config.c b/src/mainboard/google/brya/variants/nivviks/fw_config.c
index 6d8bab3ea827..4c7c626b9ee5 100644
--- a/src/mainboard/google/brya/variants/nivviks/fw_config.c
+++ b/src/mainboard/google/brya/variants/nivviks/fw_config.c
@@ -56,10 +56,48 @@ static const struct pad_config wfc_disable_pads[] = {
PAD_NC(GPP_R7, NONE),
};
+static const struct pad_config emmc_disable_pads[] = {
+ /* I7 : EMMC_CMD */
+ PAD_NC(GPP_I7, NONE),
+ /* I8 : EMMC_D0 */
+ PAD_NC(GPP_I8, NONE),
+ /* I9 : EMMC_D1 */
+ PAD_NC(GPP_I9, NONE),
+ /* I10 : EMMC_D2 */
+ PAD_NC(GPP_I10, NONE),
+ /* I11 : EMMC_D3 */
+ PAD_NC(GPP_I11, NONE),
+ /* I12 : EMMC_D4 */
+ PAD_NC(GPP_I12, NONE),
+ /* I13 : EMMC_D5 */
+ PAD_NC(GPP_I13, NONE),
+ /* I14 : EMMC_D6 */
+ PAD_NC(GPP_I14, NONE),
+ /* I15 : EMMC_D7 */
+ PAD_NC(GPP_I15, NONE),
+ /* I16 : EMMC_RCLK */
+ PAD_NC(GPP_I16, NONE),
+ /* I17 : EMMC_CLK */
+ PAD_NC(GPP_I17, NONE),
+ /* I18 : EMMC_RST_L */
+ PAD_NC(GPP_I18, NONE),
+};
+
+static const struct pad_config nvme_disable_pads[] = {
+ /* B4 : SSD_PERST_L */
+ PAD_NC(GPP_B4, NONE),
+ /* D6 : SSD_CLKREQ_ODL */
+ PAD_NC(GPP_D6, NONE),
+ /* D11 : EN_PP3300_SSD */
+ PAD_NC(GPP_D11, NONE),
+ /* E17 : SSD_PLN_L */
+ PAD_NC(GPP_E17, NONE),
+};
+
static void fw_config_handle(void *unused)
{
if (!fw_config_probe(FW_CONFIG(DB_USB, DB_1C_LTE))) {
- if (board_id() == 2) {
+ if (board_id() >= 2) {
printk(BIOS_INFO, "Disable LTE-related GPIO pins on nirwen.\n");
gpio_configure_pads(
lte_disable_pads_nirwen,
@@ -83,5 +121,15 @@ static void fw_config_handle(void *unused)
printk(BIOS_INFO, "Disable MIPI WFC GPIO pins.\n");
gpio_configure_pads(wfc_disable_pads, ARRAY_SIZE(wfc_disable_pads));
}
+
+ if (!fw_config_probe(FW_CONFIG(STORAGE, STORAGE_EMMC))) {
+ printk(BIOS_INFO, "Disable eMMC SSD GPIO pins.\n");
+ gpio_configure_pads(emmc_disable_pads, ARRAY_SIZE(emmc_disable_pads));
+ }
+
+ if (board_id() >= 2 && !fw_config_probe(FW_CONFIG(STORAGE, STORAGE_NVME))) {
+ printk(BIOS_INFO, "Disable NVMe SSD GPIO pins.\n");
+ gpio_configure_pads(nvme_disable_pads, ARRAY_SIZE(nvme_disable_pads));
+ }
}
BOOT_STATE_INIT_ENTRY(BS_DEV_ENABLE, BS_ON_ENTRY, fw_config_handle, NULL);