diff options
author | Krishna Prasad Bhat <krishna.p.bhat.d@intel.com> | 2022-01-16 23:16:24 +0530 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2022-02-21 15:17:26 +0000 |
commit | a6d642fa8da4c723a41ad96b317edd9d8e193460 (patch) | |
tree | 4a86b3fda696062a7c824a648e8ec47edf48cb9d /src/soc/intel/alderlake/chip.c | |
parent | d2ca5be61a9bcf3e246546aa9eaaf87361a0a4ed (diff) |
soc/intel/alderlake: Enable eMMC based on dev enabled
1. Add eMMC device function in pci_devs.h.
2. Enable eMMC device and configuration based on dev enabled.
3. Add SOC acpi name for eMMC.
Change-Id: I44f17420f7a2a1ca0fbb6cfb1886b1617c5a5064
Signed-off-by: Krishna Prasad Bhat <krishna.p.bhat.d@intel.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/61129
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Rizwan Qureshi <rizwan.qureshi@intel.com>
Reviewed-by: Tim Wawrzynczak <twawrzynczak@chromium.org>
Diffstat (limited to 'src/soc/intel/alderlake/chip.c')
-rw-r--r-- | src/soc/intel/alderlake/chip.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/soc/intel/alderlake/chip.c b/src/soc/intel/alderlake/chip.c index 3f5c36597a..b42322684f 100644 --- a/src/soc/intel/alderlake/chip.c +++ b/src/soc/intel/alderlake/chip.c @@ -110,6 +110,9 @@ const char *soc_acpi_name(const struct device *dev) case PCH_DEVFN_HDA: return "HDAS"; case PCH_DEVFN_SMBUS: return "SBUS"; case PCH_DEVFN_GBE: return "GLAN"; +#if CONFIG(SOC_INTEL_ALDERLAKE_PCH_N) + case PCH_DEVFN_EMMC: return "EMMC"; +#endif } return NULL; |