diff options
author | David Wu <david_wu@quanta.corp-partner.google.com> | 2024-07-10 19:36:15 +0800 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2024-07-12 11:43:28 +0000 |
commit | 04937a9a20e7cb9d020c74a942b9894c5bc5556a (patch) | |
tree | 6a56b76befe0e577835d7eb26396aefdf308a900 /src/mainboard/google/brya/variants/riven/overridetree.cb | |
parent | 4e279e5971702613a160b1912af467a3c4213211 (diff) |
mb/google/nissa/var/riven: add fw_config probe for storage devices
1. Add STORAGE_UNKNOWN fw_config to enable all storage devices,
this is used for the first boot in factory.
2. Add fw_config probe to enable/disable devices in devicetree
instead of variant.c, it can avoid suspend(s0ix) fail issue.
BUG=b:328580882
TEST=On riven eMMC and UFS SKUs, boot to OS and run
`suspend_stress_test -c 10` pass.
Change-Id: I518f1a5955fb88f304663112f1e3d4c744bde183
Signed-off-by: David Wu <david_wu@quanta.corp-partner.google.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/83405
Reviewed-by: Subrata Banik <subratabanik@google.com>
Reviewed-by: Eric Lai <ericllai@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/google/brya/variants/riven/overridetree.cb')
-rw-r--r-- | src/mainboard/google/brya/variants/riven/overridetree.cb | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/src/mainboard/google/brya/variants/riven/overridetree.cb b/src/mainboard/google/brya/variants/riven/overridetree.cb index 796a79c708..301d72a966 100644 --- a/src/mainboard/google/brya/variants/riven/overridetree.cb +++ b/src/mainboard/google/brya/variants/riven/overridetree.cb @@ -478,14 +478,22 @@ chip soc/intel/alderlake end end device ref pcie_rp7 off end # PCIE7 no SD card - device ref emmc on end + device ref emmc on + probe STORAGE STORAGE_UNKNOWN + probe STORAGE STORAGE_EMMC + end device ref ish on chip drivers/intel/ish register "add_acpi_dma_property" = "true" device generic 0 on end end + probe STORAGE STORAGE_UNKNOWN + probe STORAGE STORAGE_UFS + end + device ref ufs on + probe STORAGE STORAGE_UNKNOWN + probe STORAGE STORAGE_UFS end - device ref ufs on end device ref pch_espi on chip ec/google/chromeec use conn0 as mux_conn[0] |