diff options
author | Norman James <njames@us.ibm.com> | 2014-10-08 13:32:39 -0500 |
---|---|---|
committer | A. Patrick Williams III <iawillia@us.ibm.com> | 2015-02-04 08:49:31 -0600 |
commit | 465c97f5e63126bcec69a8708a23d7d9318eab7a (patch) | |
tree | 24c560caf059c89d62c57ea627cc6178d7347270 /src/usr/hwpf/fapi | |
parent | 9a02b48ae586fb4633f369e4ddc406c40643fbbe (diff) | |
download | talos-hostboot-465c97f5e63126bcec69a8708a23d7d9318eab7a.tar.gz talos-hostboot-465c97f5e63126bcec69a8708a23d7d9318eab7a.zip |
Added special callouts to FAPI
examples are SBE, PNOR, LPC slave
Change-Id: Ibd7dc7eab15236cf68501592ebb11b0e05815052
RTC: 116619
Reviewed-on: http://gfw160.aus.stglabs.ibm.com:8080/gerrit/13888
Tested-by: Jenkins Server
Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/usr/hwpf/fapi')
-rwxr-xr-x | src/usr/hwpf/fapi/fapiParseErrorInfo.pl | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/src/usr/hwpf/fapi/fapiParseErrorInfo.pl b/src/usr/hwpf/fapi/fapiParseErrorInfo.pl index b08bbeeb7..3cdb26612 100755 --- a/src/usr/hwpf/fapi/fapiParseErrorInfo.pl +++ b/src/usr/hwpf/fapi/fapiParseErrorInfo.pl @@ -6,7 +6,7 @@ # # OpenPOWER HostBoot Project # -# Contributors Listed Below - COPYRIGHT 2011,2014 +# Contributors Listed Below - COPYRIGHT 2011,2015 # [+] International Business Machines Corp. # # @@ -23,7 +23,8 @@ # permissions and limitations under the License. # # IBM_PROLOG_END_TAG -# $Id: fapiParseErrorInfo.pl,v 1.30 2014/07/25 00:36:41 jmcgill Exp $ + +# $Id: fapiParseErrorInfo.pl,v 1.32 2015-02-02 18:57:30 dcrowell Exp $ # Purpose: This perl script will parse HWP Error XML files and create required # FAPI code. # @@ -565,7 +566,14 @@ foreach my $argnum (1 .. $#ARGV) if (($callout->{hw}->{hwid} eq "TOD_CLOCK") || ($callout->{hw}->{hwid} eq "MEM_REF_CLOCK") || ($callout->{hw}->{hwid} eq "PROC_REF_CLOCK") || - ($callout->{hw}->{hwid} eq "PCI_REF_CLOCK")) + ($callout->{hw}->{hwid} eq "PCI_REF_CLOCK") || + ($callout->{hw}->{hwid} eq "FLASH_CONTROLLER_PART") || + ($callout->{hw}->{hwid} eq "PNOR_PART") || + ($callout->{hw}->{hwid} eq "SBE_SEEPROM_PART") || + ($callout->{hw}->{hwid} eq "VPD_PART") || + ($callout->{hw}->{hwid} eq "LPC_SLAVE_PART") || + ($callout->{hw}->{hwid} eq "GPIO_EXPANDER_PART") || + ($callout->{hw}->{hwid} eq "SPIVID_SLAVE_PART")) { if (! exists $callout->{hw}->{refTarget}) { |