meta-nuvoton: evb-npcm845: x86-power-control: add power config file

This config file contains the gpio configuration which will be used by
the x86 power control.

Tested:
evb-npcm845 power-control[384]: Start Chassis power control service
evb-npcm845 power-control[384]: NMI_OUT set to 0
evb-npcm845 power-control[384]: POWER_OUT set to 1
evb-npcm845 power-control[384]: RESET_OUT set to 1
evb-npcm845 power-control[384]: PowerControl: power restore policy applied
evb-npcm845 power-control[384]: NMI Source Property Monitor
evb-npcm845 power-control[384]: Initializing power state.

Signed-off-by: Tim Lee <timlee660101@gmail.com>
Change-Id: Id47bc9354ccfaa28a10b93f51af42cbca9595b7e
diff --git a/meta-nuvoton/meta-evb-npcm845/recipes-x86/chassis/x86-power-control/power-config-host0.json b/meta-nuvoton/meta-evb-npcm845/recipes-x86/chassis/x86-power-control/power-config-host0.json
new file mode 100644
index 0000000..b075603
--- /dev/null
+++ b/meta-nuvoton/meta-evb-npcm845/recipes-x86/chassis/x86-power-control/power-config-host0.json
@@ -0,0 +1,52 @@
+{
+    "gpio_configs":[
+      {
+          "Name" : "NMIButton",
+          "LineName" : "NMI_BUTTON",
+          "Type" : "GPIO",
+          "Polarity" : "ActiveLow"
+      },
+      {
+          "Name" : "NMIOut",
+          "LineName" : "NMI_OUT",
+          "Type" : "GPIO",
+          "Polarity" : "ActiveHigh"
+      },
+      {
+          "Name" : "PostComplete",
+          "LineName" : "POST_COMPLETE",
+          "Type" : "GPIO",
+          "Polarity" : "ActiveLow"
+      },
+      {
+          "Name" : "PowerButton",
+          "LineName" : "POWER_BUTTON",
+          "Type" : "GPIO",
+          "Polarity" : "ActiveLow"
+      },
+      {
+          "Name" : "PowerOk",
+          "LineName" : "PS_PWROK",
+          "Type" : "GPIO",
+          "Polarity" : "ActiveHigh"
+      },
+      {
+          "Name" : "PowerOut",
+          "LineName" : "POWER_OUT",
+          "Type" : "GPIO",
+          "Polarity" : "ActiveLow"
+      },
+      {
+          "Name" : "ResetButton",
+          "LineName" : "RESET_BUTTON",
+          "Type" : "GPIO",
+          "Polarity" : "ActiveLow"
+      },
+      {
+          "Name" : "ResetOut",
+          "LineName" : "RESET_OUT",
+          "Type" : "GPIO",
+          "Polarity" : "ActiveLow"
+      }
+    ]
+  }
diff --git a/meta-nuvoton/meta-evb-npcm845/recipes-x86/chassis/x86-power-control_%.bbappend b/meta-nuvoton/meta-evb-npcm845/recipes-x86/chassis/x86-power-control_%.bbappend
new file mode 100644
index 0000000..d4eeb3d
--- /dev/null
+++ b/meta-nuvoton/meta-evb-npcm845/recipes-x86/chassis/x86-power-control_%.bbappend
@@ -0,0 +1,9 @@
+FILESEXTRAPATHS:prepend := "${THISDIR}/${PN}:"
+
+SRC_URI:append = " file://power-config-host0.json"
+
+do_install:append () {
+    install -m 0755 -d ${D}/${datadir}/${BPN}
+    install -m 0644 -D ${WORKDIR}/*.json \
+                   ${D}/${datadir}/${BPN}/
+}