OpenPOWER: Add PCIInit also as host running state

PCI init starts once the host is started and the resource dump or
system dump can be initiated at this stage. There are usecase
where host is stuck at this stage so collecting a system dump
or resource dump is critical for the debug.

Signed-off-by: Dhruvaraj Subhashchandran <dhruvaraj@in.ibm.com>
Change-Id: I8ba7246fe84c146c104644b18507cd217db42d18
diff --git a/dump_utils.cpp b/dump_utils.cpp
index a0ada8a..f5e12bd 100644
--- a/dump_utils.cpp
+++ b/dump_utils.cpp
@@ -113,7 +113,8 @@
     BootProgress bootProgressStatus = phosphor::dump::getBootProgress();
     if ((bootProgressStatus == BootProgress::SystemInitComplete) ||
         (bootProgressStatus == BootProgress::OSStart) ||
-        (bootProgressStatus == BootProgress::OSRunning))
+        (bootProgressStatus == BootProgress::OSRunning) ||
+        (bootProgressStatus == BootProgress::PCIInit))
     {
         return true;
     }