meta-hpe: dl360-g11 power sequencing

Signed-off-by: Andrew Neyland <andrew.neyland@hpe.com>
Change-Id: I991a2519850214a547b8129281d043a5f8af9d9e
diff --git a/meta-hpe/meta-dl360-g11/recipes-hpe/power-sequencing/files/dl360Start.sh b/meta-hpe/meta-dl360-g11/recipes-hpe/power-sequencing/files/dl360Start.sh
new file mode 100644
index 0000000..df560e0
--- /dev/null
+++ b/meta-hpe/meta-dl360-g11/recipes-hpe/power-sequencing/files/dl360Start.sh
@@ -0,0 +1,12 @@
+#!/bin/sh
+# A power up request has been made we must setup the system properly
+# the machine needs to get out of Hold too
+
+# We need to enable UART PortA
+devmem 0x80fc0230 8 0x1
+# clear previous reset reason
+devmem 0x80000074 16 0x0
+# Release the Soc
+currentVal=$(devmem 0xD100011A 8)
+currentVal=$(( currentVal | 1 << 3 ))
+devmem 0xD100011A 8 "0x""${currentVal}"