From 9a0245a84dcdeb3f0cad6ddaa9cd1c56393d6ece Mon Sep 17 00:00:00 2001 From: Subrata Banik Date: Wed, 22 Feb 2017 14:22:44 +0530 Subject: soc/intel/common: Make infrastructure ready for Intel common code Select all Kconfig belongs into Intel SoC Family block/ips common code model and include required header.h file. Change-Id: Idbce59a57533dbeb9ccfadca966c3d7560537fa0 Signed-off-by: Subrata Banik Reviewed-on: https://review.coreboot.org/18377 Tested-by: build bot (Jenkins) Reviewed-by: Aaron Durbin --- src/soc/intel/common/block/Kconfig | 11 +++++++++++ src/soc/intel/common/block/Makefile.inc | 7 +++++++ 2 files changed, 18 insertions(+) create mode 100644 src/soc/intel/common/block/Kconfig create mode 100644 src/soc/intel/common/block/Makefile.inc (limited to 'src/soc/intel/common/block') diff --git a/src/soc/intel/common/block/Kconfig b/src/soc/intel/common/block/Kconfig new file mode 100644 index 0000000000..e5375d2f7c --- /dev/null +++ b/src/soc/intel/common/block/Kconfig @@ -0,0 +1,11 @@ +config SOC_INTEL_COMMON_BLOCK + bool + help + SoC driver for intel common IP code + +if SOC_INTEL_COMMON_BLOCK + +comment "Intel SoC Common IP Code" +source "src/soc/intel/common/block/*/Kconfig" + +endif diff --git a/src/soc/intel/common/block/Makefile.inc b/src/soc/intel/common/block/Makefile.inc new file mode 100644 index 0000000000..d6f53c8ba6 --- /dev/null +++ b/src/soc/intel/common/block/Makefile.inc @@ -0,0 +1,7 @@ +ifeq ($(CONFIG_SOC_INTEL_COMMON_BLOCK),y) + +subdirs-y += ./* + +CPPFLAGS_common += -I$(src)/soc/intel/common/block/include/ + +endif -- cgit v1.2.3