summaryrefslogtreecommitdiffstats
path: root/src/sbefw
diff options
context:
space:
mode:
authorspashabk-in <shakeebbk@in.ibm.com>2017-07-25 01:24:30 -0500
committerSachin Gupta <sgupta2m@in.ibm.com>2017-08-09 04:26:19 -0400
commit170cb42e9a065c8949b38e449457889bbf8bdc82 (patch)
tree9b5bdcffbc9e3bcdba7662016a128b21e522edf5 /src/sbefw
parent86b661b17a9cf64251c21ffdc577bcaf1b59af23 (diff)
downloadtalos-sbe-170cb42e9a065c8949b38e449457889bbf8bdc82.tar.gz
talos-sbe-170cb42e9a065c8949b38e449457889bbf8bdc82.zip
Moving some sbefw functions to seeprom
Change-Id: Ifb4340e52be309897b1b5075b9d7af08ab2ae624 Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/43585 Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com> Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com> Reviewed-by: Sachin Gupta <sgupta2m@in.ibm.com>
Diffstat (limited to 'src/sbefw')
-rw-r--r--src/sbefw/MakefileSeeprom59
-rw-r--r--src/sbefw/sbecmdgeneric.C4
-rw-r--r--src/sbefw/sbefwseepromfiles.mk29
3 files changed, 92 insertions, 0 deletions
diff --git a/src/sbefw/MakefileSeeprom b/src/sbefw/MakefileSeeprom
new file mode 100644
index 00000000..0a29f9f6
--- /dev/null
+++ b/src/sbefw/MakefileSeeprom
@@ -0,0 +1,59 @@
+# IBM_PROLOG_BEGIN_TAG
+# This is an automatically generated prolog.
+#
+# $Source: src/sbefw/Makefile $
+#
+# OpenPOWER sbe Project
+#
+# Contributors Listed Below - COPYRIGHT 2016,2017
+# [+] International Business Machines Corp.
+#
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+# implied. See the License for the specific language governing
+# permissions and limitations under the License.
+#
+# IBM_PROLOG_END_TAG
+#export P2P_ENABLE = 1
+
+export SUB_OBJDIR = /sbefwseeprom
+
+include img_defs.mk
+include sbefwseepromfiles.mk
+
+GCC-CFLAGS += -mlongcall
+GCC-DEFS += -D__SBEFW_SEEPROM__=1
+OBJS := $(addprefix $(OBJDIR)/, $(SBEFWSEEPROM_OBJECTS))
+
+libsbefwseeprom.a: $(OBJS)
+ $(AR) crs $(OBJDIR)/libsbefwseeprom.a $(OBJDIR)/*.o
+
+.PHONY: clean sbefwseeprom
+sbefwseeprom: $(OBJS)
+
+$(OBJS) $(OBJS:.o=.d): | $(OBJDIR)
+
+$(OBJDIR):
+ mkdir -p $(OBJDIR)
+
+
+#clean the kernel directory first, then the application level clean
+clean:
+ rm -fr $(OBJDIR)
+
+ifneq ($(MAKECMDGOALS),clean)
+include $(OBJS:.o=.d)
+endif
+
+
+
+
+
diff --git a/src/sbefw/sbecmdgeneric.C b/src/sbefw/sbecmdgeneric.C
index 49b493c5..baaccbae 100644
--- a/src/sbefw/sbecmdgeneric.C
+++ b/src/sbefw/sbecmdgeneric.C
@@ -48,6 +48,7 @@
using namespace fapi2;
+#ifdef __SBEFW_SEEPROM__
// Forward declaration
sbeCapabilityRespMsg::sbeCapabilityRespMsg()
{
@@ -352,7 +353,9 @@ uint32_t sbePsuQuiesce( uint8_t *i_pArg )
return rc;
#undef SBE_FUNC
}
+#endif //__SBEFW_SEEPROM__
+#ifndef __SBEFW_SEEPROM__
//----------------------------------------------------------------------------
uint32_t sbeSetSystemFabricMap( uint8_t *i_pArg )
{
@@ -391,4 +394,5 @@ uint32_t sbeSetSystemFabricMap( uint8_t *i_pArg )
return l_rc;
#undef SBE_FUNC
}
+#endif //not __SBEFW_SEEPROM__
diff --git a/src/sbefw/sbefwseepromfiles.mk b/src/sbefw/sbefwseepromfiles.mk
new file mode 100644
index 00000000..116c7573
--- /dev/null
+++ b/src/sbefw/sbefwseepromfiles.mk
@@ -0,0 +1,29 @@
+# IBM_PROLOG_BEGIN_TAG
+# This is an automatically generated prolog.
+#
+# $Source: src/sbefw/sbefwseepromfiles.mk $
+#
+# OpenPOWER sbe Project
+#
+# Contributors Listed Below - COPYRIGHT 2015,2017
+#
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+# implied. See the License for the specific language governing
+# permissions and limitations under the License.
+#
+# IBM_PROLOG_END_TAG
+SBEFWSEEPROM-CPP-SOURCES = sbecmdgeneric.C
+
+SBEFWSEEPROM-C-SOURCES =
+SBEFWSEEPROM-S-SOURCES =
+
+SBEFWSEEPROM_OBJECTS = $(SBEFWSEEPROM-C-SOURCES:.c=.o) $(SBEFWSEEPROM-CPP-SOURCES:.C=.o) $(SBEFWSEEPROM-S-SOURCES:.S=.o)
OpenPOWER on IntegriCloud