commit | 98fd7642ba5d6c9d21b5e25da839875520c546a3 | [log] [tgz] |
---|---|---|
author | Patrick Williams <patrick@stwcx.xyz> | Wed Oct 12 09:40:13 2022 -0500 |
committer | Patrick Williams <patrick@stwcx.xyz> | Wed Oct 12 09:40:15 2022 -0500 |
tree | cf2ac7895b44ee3dc7e7831b3ba09043bc9b7ef9 | |
parent | f2dda6e40748a32874d738936c5dd4d9a157cc0e [diff] |
OWNERS: add Matt and Patrick The last OWNER was removed from this repo. Add Matt and Patrick as OWNERS based on the most recent activity in the last 3 years to ensure this repository continues to have coverage. Signed-off-by: Patrick Williams <patrick@stwcx.xyz> Change-Id: Id8f34029a4717363da679a6f172f4f8309dce4cf
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" } ]