Add Rainier system power-on GPIO support

Add Rainer power-on configuration support and remove unused GPIOs.

Signed-off-by: Jim Wright <jlwright@us.ibm.com>
Change-Id: I61dd371c0dff8cd36020cfc23e98b0b9c2e9b8a1
diff --git a/meta-witherspoon/recipes-phosphor/skeleton/obmc-libobmc-intf/rainier/gpio_defs.json b/meta-witherspoon/recipes-phosphor/skeleton/obmc-libobmc-intf/rainier/gpio_defs.json
new file mode 100644
index 0000000..828c35b
--- /dev/null
+++ b/meta-witherspoon/recipes-phosphor/skeleton/obmc-libobmc-intf/rainier/gpio_defs.json
@@ -0,0 +1,38 @@
+{
+    "gpio_configs": {
+
+        "power_config": {
+            "power_good_in": "SYS_PWROK_BUFF",
+            "power_up_outs": [
+                {"name": "SOFTWARE_PGOOD", "polarity": true},
+                {"name": "BMC_POWER_UP", "polarity": true}
+            ],
+            "reset_outs": [
+                {"name": "BMC_DCM_ALL_RESET_N", "polarity": false}
+            ]
+        }
+    },
+
+    "gpio_definitions": [
+        {
+            "name": "BMC_POWER_UP",
+            "pin": "R1",
+            "direction": "out"
+        },
+        {
+            "name": "SOFTWARE_PGOOD",
+            "pin": "F1",
+            "direction": "out"
+        },
+        {
+            "name": "SYS_PWROK_BUFF",
+            "pin": "R2",
+            "direction": "in"
+        },
+        {
+            "name": "BMC_DCM_ALL_RESET_N",
+            "pin": "Q0",
+            "direction": "out"
+        }
+    ]
+}