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>
This commit is contained in:
parent
e4ebc86a3b
commit
f2f785dbbe
|
@ -1,3 +1,11 @@
|
||||||
|
fw_config
|
||||||
|
field STORAGE 30 31
|
||||||
|
option STORAGE_EMMC 0
|
||||||
|
option STORAGE_NVME 1
|
||||||
|
option STORAGE_UFS 2
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
chip soc/intel/alderlake
|
chip soc/intel/alderlake
|
||||||
|
|
||||||
# GPE configuration
|
# GPE configuration
|
||||||
|
|
|
@ -56,10 +56,48 @@ static const struct pad_config wfc_disable_pads[] = {
|
||||||
PAD_NC(GPP_R7, NONE),
|
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)
|
static void fw_config_handle(void *unused)
|
||||||
{
|
{
|
||||||
if (!fw_config_probe(FW_CONFIG(DB_USB, DB_1C_LTE))) {
|
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");
|
printk(BIOS_INFO, "Disable LTE-related GPIO pins on nirwen.\n");
|
||||||
gpio_configure_pads(
|
gpio_configure_pads(
|
||||||
lte_disable_pads_nirwen,
|
lte_disable_pads_nirwen,
|
||||||
|
@ -83,5 +121,15 @@ static void fw_config_handle(void *unused)
|
||||||
printk(BIOS_INFO, "Disable MIPI WFC GPIO pins.\n");
|
printk(BIOS_INFO, "Disable MIPI WFC GPIO pins.\n");
|
||||||
gpio_configure_pads(wfc_disable_pads, ARRAY_SIZE(wfc_disable_pads));
|
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);
|
BOOT_STATE_INIT_ENTRY(BS_DEV_ENABLE, BS_ON_ENTRY, fw_config_handle, NULL);
|
||||||
|
|
|
@ -32,10 +32,16 @@ static const struct pad_config board_id0_overrides[] = {
|
||||||
|
|
||||||
/* Pad configuration in ramstage for nirwen */
|
/* Pad configuration in ramstage for nirwen */
|
||||||
static const struct pad_config override_gpio_table_nirwen[] = {
|
static const struct pad_config override_gpio_table_nirwen[] = {
|
||||||
|
/* B4 : SSD_PERST_L */
|
||||||
|
PAD_CFG_GPO(GPP_B4, 1, DEEP),
|
||||||
/* D6 : SRCCLKREQ1# ==> SSD_CLKREQ_ODL */
|
/* D6 : SRCCLKREQ1# ==> SSD_CLKREQ_ODL */
|
||||||
PAD_CFG_NF(GPP_D6, NONE, DEEP, NF1),
|
PAD_CFG_NF(GPP_D6, NONE, DEEP, NF1),
|
||||||
|
/* D11 : EN_PP3300_SSD */
|
||||||
|
PAD_CFG_GPO(GPP_D11, 1, DEEP),
|
||||||
/* E13 : SRCCLKREQ1# ==> WWAN_EN */
|
/* E13 : SRCCLKREQ1# ==> WWAN_EN */
|
||||||
PAD_CFG_GPO(GPP_E13, 1, DEEP),
|
PAD_CFG_GPO(GPP_E13, 1, DEEP),
|
||||||
|
/* E17 : SSD_PLN_L */
|
||||||
|
PAD_CFG_GPO(GPP_E17, 1, PLTRST),
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Early pad configuration in bootblock for nivviks */
|
/* Early pad configuration in bootblock for nivviks */
|
||||||
|
@ -66,6 +72,8 @@ static const struct pad_config early_gpio_table[] = {
|
||||||
|
|
||||||
/* Early pad configuration in bootblock for nirwen */
|
/* Early pad configuration in bootblock for nirwen */
|
||||||
static const struct pad_config early_gpio_table_nirwen[] = {
|
static const struct pad_config early_gpio_table_nirwen[] = {
|
||||||
|
/* B4 : SSD_PERST_L */
|
||||||
|
PAD_CFG_GPO(GPP_B4, 0, DEEP),
|
||||||
/* F12 : GSXDOUT ==> WWAN_RST_L */
|
/* F12 : GSXDOUT ==> WWAN_RST_L */
|
||||||
PAD_CFG_GPO(GPP_F12, 0, DEEP),
|
PAD_CFG_GPO(GPP_F12, 0, DEEP),
|
||||||
/* H12 : UART0_RTS# ==> SD_PERST_L */
|
/* H12 : UART0_RTS# ==> SD_PERST_L */
|
||||||
|
@ -86,11 +94,15 @@ static const struct pad_config early_gpio_table_nirwen[] = {
|
||||||
PAD_CFG_NF(GPP_H10, NONE, DEEP, NF2),
|
PAD_CFG_NF(GPP_H10, NONE, DEEP, NF2),
|
||||||
/* H11 : UART0_TXD ==> UART_SOC_TX_DBG_RX */
|
/* H11 : UART0_TXD ==> UART_SOC_TX_DBG_RX */
|
||||||
PAD_CFG_NF(GPP_H11, NONE, DEEP, NF2),
|
PAD_CFG_NF(GPP_H11, NONE, DEEP, NF2),
|
||||||
|
/* D11 : EN_PP3300_SSD */
|
||||||
|
PAD_CFG_GPO(GPP_D11, 1, DEEP),
|
||||||
/* H13 : UART0_CTS# ==> EN_PP3300_SD_X */
|
/* H13 : UART0_CTS# ==> EN_PP3300_SD_X */
|
||||||
PAD_CFG_GPO(GPP_H13, 1, DEEP),
|
PAD_CFG_GPO(GPP_H13, 1, DEEP),
|
||||||
};
|
};
|
||||||
|
|
||||||
static const struct pad_config romstage_gpio_table[] = {
|
static const struct pad_config romstage_gpio_table[] = {
|
||||||
|
/* B4 : SSD_PERST_L */
|
||||||
|
PAD_CFG_GPO(GPP_B4, 1, DEEP),
|
||||||
/* H12 : UART0_RTS# ==> SD_PERST_L */
|
/* H12 : UART0_RTS# ==> SD_PERST_L */
|
||||||
PAD_CFG_GPO(GPP_H12, 1, DEEP),
|
PAD_CFG_GPO(GPP_H12, 1, DEEP),
|
||||||
};
|
};
|
||||||
|
|
|
@ -267,6 +267,21 @@ chip soc/intel/alderlake
|
||||||
end
|
end
|
||||||
probe SD_CARD SD_GL9750S
|
probe SD_CARD SD_GL9750S
|
||||||
end
|
end
|
||||||
|
device ref pcie_rp9 on
|
||||||
|
# Enable NVMe SSD PCIe 9-12 using clk 1
|
||||||
|
register "pch_pcie_rp[PCH_RP(9)]" = "{
|
||||||
|
.clk_src = 1,
|
||||||
|
.clk_req = 1,
|
||||||
|
.flags = PCIE_RP_LTR | PCIE_RP_AER,
|
||||||
|
}"
|
||||||
|
probe STORAGE STORAGE_NVME
|
||||||
|
end
|
||||||
|
device ref emmc on
|
||||||
|
probe STORAGE STORAGE_EMMC
|
||||||
|
end
|
||||||
|
device ref ufs on
|
||||||
|
probe STORAGE STORAGE_UFS
|
||||||
|
end
|
||||||
device ref pch_espi on
|
device ref pch_espi on
|
||||||
chip ec/google/chromeec
|
chip ec/google/chromeec
|
||||||
use conn0 as mux_conn[0]
|
use conn0 as mux_conn[0]
|
||||||
|
|
Loading…
Reference in New Issue