summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorReka Norman <rekanorman@chromium.org>2023-09-21 13:36:05 +1000
committerFelix Held <felix-coreboot@felixheld.de>2023-09-22 15:48:08 +0000
commitc377345659674834ac1a9dfc20ff266093023c7d (patch)
treed65bd1a484c8ba5afc12cde7de33696167d1229a /src
parent8d357b521ea927906019ac749b830f34fc029560 (diff)
soc/intel/Makefile.inc: Add comment where CONFIG_CSE_*_FILE are used
commit 06cb756f0202d7 ("soc/intel/common/block/cse/Kconfig: Remove unused symbols") removed these Kconfigs since it's not obvious where they're used. Add a comment to make it easier to grep for their uses. Change-Id: I27d94e8a558d6e73004d45cd2aedd94678d29b94 Signed-off-by: Reka Norman <rekanorman@chromium.org> Reviewed-on: https://review.coreboot.org/c/coreboot/+/78041 Reviewed-by: Yu-Ping Wu <yupingso@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src')
-rw-r--r--src/soc/intel/Makefile.inc12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/soc/intel/Makefile.inc b/src/soc/intel/Makefile.inc
index 9a7ad7499e..b50fca20df 100644
--- a/src/soc/intel/Makefile.inc
+++ b/src/soc/intel/Makefile.inc
@@ -33,6 +33,18 @@ $(call cse_add_decomp,bp1,$(1))
$(call cse_add_decomp,bp2,$(1))
endef
+# (Comment to help with greping for uses)
+#
+# This uses the following Kconfigs:
+# CSE_PMCP_FILE
+# CSE_IOMP_FILE
+# CSE_TBTP_FILE
+# CSE_NPHY_FILE
+# CSE_PCHC_FILE
+# CSE_IUNP_FILE
+# CSE_OEMP_FILE
+#
+# For example `$(call cse_add_input_to_bp1_bp2,PMCP)` will process CONFIG_CSE_PMCP_FILE
define cse_add_input
$(call cse_add_file,cse_input_files,$(call cse_input_path,$(CONFIG_CSE_$(2)_FILE)),$(1),$(2))
endef