[coreboot-gerrit] Patch set updated for coreboot: soc/intel/common: Make infrastructure ready for Intel common code

Subrata Banik (subrata.banik@intel.com) gerrit at coreboot.org
Fri Mar 3 21:41:44 CET 2017


Subrata Banik (subrata.banik at intel.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/18377

-gerrit

commit 4b3faaf0096cfa1eb0686a7c38037d9ba7aa0ed1
Author: Subrata Banik <subrata.banik at intel.com>
Date:   Wed Feb 22 14:22:44 2017 +0530

    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 <subrata.banik at intel.com>
---
 src/soc/intel/common/Kconfig            |  4 ++++
 src/soc/intel/common/Makefile.inc       |  3 +++
 src/soc/intel/common/block/Kconfig      | 11 +++++++++++
 src/soc/intel/common/block/Makefile.inc |  7 +++++++
 4 files changed, 25 insertions(+)

diff --git a/src/soc/intel/common/Kconfig b/src/soc/intel/common/Kconfig
index 68bb38a..3d2ced9 100644
--- a/src/soc/intel/common/Kconfig
+++ b/src/soc/intel/common/Kconfig
@@ -5,6 +5,10 @@ config SOC_INTEL_COMMON
 
 if SOC_INTEL_COMMON
 
+comment "Intel SoC Common Code"
+source "src/soc/intel/common/basecode/Kconfig"
+source "src/soc/intel/common/block/Kconfig"
+
 config CACHE_MRC_SETTINGS
 	bool "Save cached MRC settings"
 	default n
diff --git a/src/soc/intel/common/Makefile.inc b/src/soc/intel/common/Makefile.inc
index d6e1e75..77639ce 100644
--- a/src/soc/intel/common/Makefile.inc
+++ b/src/soc/intel/common/Makefile.inc
@@ -1,5 +1,8 @@
 ifeq ($(CONFIG_SOC_INTEL_COMMON),y)
 
+subdirs-y += basecode/
+subdirs-y += block/
+
 bootblock-y += util.c
 
 verstage-$(CONFIG_SOC_INTEL_COMMON_LPSS_I2C) += lpss_i2c.c
diff --git a/src/soc/intel/common/block/Kconfig b/src/soc/intel/common/block/Kconfig
new file mode 100644
index 0000000..e5375d2
--- /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 0000000..d6f53c8
--- /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



More information about the coreboot-gerrit mailing list