summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKrishna Prasad Bhat <krishna.p.bhat.d@intel.com>2022-01-16 20:05:07 +0530
committerFelix Held <felix-coreboot@felixheld.de>2022-01-18 16:15:06 +0000
commiteed82d181b5ce14ea41b8dfeccb68596cb6d005d (patch)
tree04aa35644724ea82a5fc9beb933119c9ece1ad87
parent9a14fab340b4c8e0afd8bf04746f51ea189fdf5f (diff)
downloadcoreboot-eed82d181b5ce14ea41b8dfeccb68596cb6d005d.tar.gz
coreboot-eed82d181b5ce14ea41b8dfeccb68596cb6d005d.tar.bz2
coreboot-eed82d181b5ce14ea41b8dfeccb68596cb6d005d.zip
soc/intel/common: Add Alder Lake N eMMC device ID
Add eMMC device ID for Alder Lake N SOC. Reference: Alder Lake N Platform EDS Volume 1 (Doc# 645548) Change-Id: Id35ec2d508bec8ff7d6f1c5fbfaf209d42b25c72 Signed-off-by: Krishna Prasad Bhat <krishna.p.bhat.d@intel.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/61124 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Subrata Banik <subratabanik@google.com> Reviewed-by: Paul Menzel <paulepanter@mailbox.org> Reviewed-by: Kangheui Won <khwon@chromium.org> Reviewed-by: Rizwan Qureshi <rizwan.qureshi@intel.com>
-rw-r--r--src/include/device/pci_ids.h1
-rw-r--r--src/soc/intel/common/block/scs/mmc.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/src/include/device/pci_ids.h b/src/include/device/pci_ids.h
index f01fa303a207..30012d94c26d 100644
--- a/src/include/device/pci_ids.h
+++ b/src/include/device/pci_ids.h
@@ -4227,6 +4227,7 @@
#define PCI_DEVICE_ID_INTEL_SKL_EMMC 0x9d2b
#define PCI_DEVICE_ID_INTEL_CMP_EMMC 0x02c4
#define PCI_DEVICE_ID_INTEL_JSP_EMMC 0x4dc4
+#define PCI_DEVICE_ID_INTEL_ADP_EMMC 0x54c4
/* Intel Thunderbolt device Ids */
#define PCI_DEVICE_ID_INTEL_TGL_TBT_RP0 0x9a23
diff --git a/src/soc/intel/common/block/scs/mmc.c b/src/soc/intel/common/block/scs/mmc.c
index 6772f74f161c..7f5519aa1af2 100644
--- a/src/soc/intel/common/block/scs/mmc.c
+++ b/src/soc/intel/common/block/scs/mmc.c
@@ -73,6 +73,7 @@ static struct device_operations dev_ops = {
static const unsigned short pci_device_ids[] = {
PCI_DEVICE_ID_INTEL_CMP_EMMC,
PCI_DEVICE_ID_INTEL_JSP_EMMC,
+ PCI_DEVICE_ID_INTEL_ADP_EMMC,
0
};