presence:ibm,bonnell: Add config file

The Bonnell system has 2 dual rotor fans with their presence detect
GPIOs wired directly to the BMC using GPIOs F4 and F5.  The device tree
has these configured as GPIO keys 6 and 7.

The 'physpath' values are only used by the 'Fallback' presence
redundancy policy, which we are not using because we're using 'AnyOf'
instead.  On other systems that would be the I2C device path of the IO
expander the presence detects are wired to.  In this case they're wired
to the BMC so an I2C path doesn't apply, so I just chose 'BMC' to have
something there, which again isn't used anyway but the code requires
it.

Signed-off-by: Matt Spinler <spinler@us.ibm.com>
Change-Id: I4b1753bb110b3668e86ab4fa46624e0afc6f46a5
diff --git a/presence/config_files/p10bmc/ibm,bonnell/config.json b/presence/config_files/p10bmc/ibm,bonnell/config.json
new file mode 100644
index 0000000..4fed0ca
--- /dev/null
+++ b/presence/config_files/p10bmc/ibm,bonnell/config.json
@@ -0,0 +1,46 @@
+[
+   {
+      "name": "fan0",
+      "path": "/system/chassis/motherboard/fan0",
+      "methods": [
+         {
+            "type": "gpio",
+            "key": 6,
+            "physpath": "BMC",
+            "devpath": "/dev/input/by-path/platform-gpio-keys-polled-event"
+         },
+         {
+            "type": "tach",
+            "sensors": [
+               "fan0_0",
+               "fan0_1"
+            ]
+         }
+      ],
+      "rpolicy": {
+         "type": "anyof"
+      }
+   },
+   {
+      "name": "fan1",
+      "path": "/system/chassis/motherboard/fan1",
+      "methods": [
+         {
+            "type": "gpio",
+            "key": 7,
+            "physpath": "BMC",
+            "devpath": "/dev/input/by-path/platform-gpio-keys-polled-event"
+         },
+         {
+            "type": "tach",
+            "sensors": [
+               "fan1_0",
+               "fan1_1"
+            ]
+         }
+      ],
+      "rpolicy": {
+         "type": "anyof"
+      }
+   }
+]