aboutsummaryrefslogtreecommitdiff
path: root/src/drivers
diff options
context:
space:
mode:
authorMarc Jones <marc.jones@se-eng.com>2015-04-22 23:16:31 -0600
committerStefan Reinauer <stefan.reinauer@coreboot.org>2015-04-24 00:37:37 +0200
commit786879777a70cb82c94588e6d14c8fdd18ab4345 (patch)
treea3dea1ee11739a00b63ffead17d7cd29078a70b8 /src/drivers
parentbe34797e4c2a5b74bb8fcbbe9e4301b471d185e5 (diff)
fsp: Move fsp to fsp1_0
Prepare for FSP 1.1 integration by moving the FSP to a FSP 1.0 specific directory. See follow-on patches for sharing of common code. Change-Id: Ic58cb4074c65b91d119909132a012876d7ee7b74 Signed-off-by: Marc Jones <marc.jones@se-eng.com> Reviewed-on: http://review.coreboot.org/9970 Tested-by: build bot (Jenkins) Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Diffstat (limited to 'src/drivers')
-rw-r--r--src/drivers/intel/Makefile.inc2
-rw-r--r--src/drivers/intel/fsp1_0/Kconfig (renamed from src/drivers/intel/fsp/Kconfig)4
-rw-r--r--src/drivers/intel/fsp1_0/Makefile.inc (renamed from src/drivers/intel/fsp/Makefile.inc)4
-rw-r--r--src/drivers/intel/fsp1_0/cache_as_ram.inc (renamed from src/drivers/intel/fsp/cache_as_ram.inc)0
-rw-r--r--src/drivers/intel/fsp1_0/fastboot_cache.c (renamed from src/drivers/intel/fsp/fastboot_cache.c)0
-rw-r--r--src/drivers/intel/fsp1_0/fsp_util.c (renamed from src/drivers/intel/fsp/fsp_util.c)0
-rw-r--r--src/drivers/intel/fsp1_0/fsp_util.h (renamed from src/drivers/intel/fsp/fsp_util.h)0
-rw-r--r--src/drivers/intel/fsp1_0/fsp_values.h (renamed from src/drivers/intel/fsp/fsp_values.h)0
-rw-r--r--src/drivers/intel/fsp1_0/hob.c (renamed from src/drivers/intel/fsp/hob.c)0
9 files changed, 5 insertions, 5 deletions
diff --git a/src/drivers/intel/Makefile.inc b/src/drivers/intel/Makefile.inc
index dba81b553d..dc947ff4f0 100644
--- a/src/drivers/intel/Makefile.inc
+++ b/src/drivers/intel/Makefile.inc
@@ -1,4 +1,4 @@
subdirs-y += gma
subdirs-y += wifi
-subdirs-$(CONFIG_PLATFORM_USES_FSP) += fsp
+subdirs-$(CONFIG_PLATFORM_USES_FSP1_0) += fsp1_0
subdirs-$(CONFIG_DRIVER_INTEL_I210) += i210
diff --git a/src/drivers/intel/fsp/Kconfig b/src/drivers/intel/fsp1_0/Kconfig
index 2d41365320..2492298a81 100644
--- a/src/drivers/intel/fsp/Kconfig
+++ b/src/drivers/intel/fsp1_0/Kconfig
@@ -17,7 +17,7 @@
## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
##
-if PLATFORM_USES_FSP
+if PLATFORM_USES_FSP1_0
comment "Intel FSP"
@@ -142,4 +142,4 @@ config FSP_USES_UPD
default n
help
If this FSP uses UPD/VPD data regions, select this in the chipset Kconfig.
-endif #PLATFORM_USES_FSP
+endif #PLATFORM_USES_FSP1_0
diff --git a/src/drivers/intel/fsp/Makefile.inc b/src/drivers/intel/fsp1_0/Makefile.inc
index 71d676d759..4931cb7a7e 100644
--- a/src/drivers/intel/fsp/Makefile.inc
+++ b/src/drivers/intel/fsp1_0/Makefile.inc
@@ -23,10 +23,10 @@ romstage-y += fsp_util.c hob.c
ramstage-$(CONFIG_ENABLE_MRC_CACHE) += fastboot_cache.c
romstage-$(CONFIG_ENABLE_MRC_CACHE) += fastboot_cache.c
-CPPFLAGS_common += -Isrc/drivers/intel/fsp
+CPPFLAGS_common += -Isrc/drivers/intel/fsp1_0
ifeq ($(CONFIG_USE_GENERIC_FSP_CAR_INC),y)
-cpu_incs += $(src)/drivers/intel/fsp/cache_as_ram.inc
+cpu_incs += $(src)/drivers/intel/fsp1_0/cache_as_ram.inc
endif
ifeq ($(CONFIG_HAVE_FSP_BIN),y)
diff --git a/src/drivers/intel/fsp/cache_as_ram.inc b/src/drivers/intel/fsp1_0/cache_as_ram.inc
index 8604c3b0b0..8604c3b0b0 100644
--- a/src/drivers/intel/fsp/cache_as_ram.inc
+++ b/src/drivers/intel/fsp1_0/cache_as_ram.inc
diff --git a/src/drivers/intel/fsp/fastboot_cache.c b/src/drivers/intel/fsp1_0/fastboot_cache.c
index bcf39abc7b..bcf39abc7b 100644
--- a/src/drivers/intel/fsp/fastboot_cache.c
+++ b/src/drivers/intel/fsp1_0/fastboot_cache.c
diff --git a/src/drivers/intel/fsp/fsp_util.c b/src/drivers/intel/fsp1_0/fsp_util.c
index a00cb81d64..a00cb81d64 100644
--- a/src/drivers/intel/fsp/fsp_util.c
+++ b/src/drivers/intel/fsp1_0/fsp_util.c
diff --git a/src/drivers/intel/fsp/fsp_util.h b/src/drivers/intel/fsp1_0/fsp_util.h
index d65b842c56..d65b842c56 100644
--- a/src/drivers/intel/fsp/fsp_util.h
+++ b/src/drivers/intel/fsp1_0/fsp_util.h
diff --git a/src/drivers/intel/fsp/fsp_values.h b/src/drivers/intel/fsp1_0/fsp_values.h
index e5098bb9ee..e5098bb9ee 100644
--- a/src/drivers/intel/fsp/fsp_values.h
+++ b/src/drivers/intel/fsp1_0/fsp_values.h
diff --git a/src/drivers/intel/fsp/hob.c b/src/drivers/intel/fsp1_0/hob.c
index 99c4ba16fb..99c4ba16fb 100644
--- a/src/drivers/intel/fsp/hob.c
+++ b/src/drivers/intel/fsp1_0/hob.c