commit | 43dd2d8a025ca9f3df4dd58dd7e4ecf6fa1b6634 | [log] [tgz] |
---|---|---|
author | Matt Spinler <spinler@us.ibm.com> | Mon Nov 18 15:08:01 2019 -0600 |
committer | Brad Bishop <bradleyb@fuzziesquirrel.com> | Tue Nov 19 18:28:56 2019 +0000 |
tree | 99b417964c72ea88afec72dedeff373e26744b7c | |
parent | 58dc277a9df27cc79565b20f48d42c95a877d3c2 [diff] |
Fix "Add device dependency for services" Not all systems use gpio-keys-polled, so adding a hard requirement on that in the service files will cause the services to fail on those systems. Signed-off-by: Matt Spinler <spinler@us.ibm.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com> Change-Id: I62ab4ebc496bc1fb3ed7f2fc258930f2e509a189 Fixes: 58dc277a9df27cc79565b20f48d42c95a877d3c2.
This daemon accepts a command line parameter for monitoring single gpio line and take action if requested. This implementation uses GPIO keys and only supports monitoring single GPIO line, for multiple lines, user has to run this daemon seperately for each gpio line.
This daemon accepts command line parameter as a well-defined GPIO configuration file in json format to monitor list of gpios from config file and take action defined in config based on gpio state change. It uses libgpiod library.
New implementation (phosphor-multi-gpio-monitor) provides multiple gpio line monitoring in single instance of phosphor-multi-gpio-monitor running. It is very easy to add list of gpios into JSON config file and it also supports of GPIO line by name defined in kernel.
There is a phosphor-multi-gpio-monitor.json file that defines details of GPIOs which is required to be monitored. This file can be replaced with a platform specific configuration file via bbappend.
Following are fields in json file
[ { "Name": "PowerButton", "LineName": "POWER_BUTTON", "GpioNum": 34, "ChipId": "gpiochip0", "EventMon": "BOTH", "Continue": true }, { "Name": "PowerGood", "LineName": "PS_PWROK", "EventMon": "FALLING", "Continue": false }, { "Name": "SystemReset", "GpioNum": 46, "ChipId": "0" } ]