Implement minimal PSCI 1.1.

Only the mandatory functions are supported. This required adding
PSCI_FEATURES which is used to discover which PSCI features are
available and PSCI_CPU_SUSPEND which can put CPUs into low power states.
The hypervisor acts as an adapter for lower version of PSCI running in
EL3.

When waking from a powered down suspend, the CPU needs to be reset to
the same state as when it is first turned on. Only the entry point and
context argument should be present.

Change-Id: I088f214258a1cdd429bee63f1846603057769217
diff --git a/src/load.c b/src/load.c
index 60b4ef4..11e5568 100644
--- a/src/load.c
+++ b/src/load.c
@@ -157,7 +157,7 @@
 			return false;
 		}
 
-		vm_start_vcpu(vm, 0, ipa_from_pa(primary_begin), kernel_arg);
+		vcpu_on(&vm->vcpus[0], ipa_from_pa(primary_begin), kernel_arg);
 	}
 
 	return true;