commit | 69e9930aa2012ff5f3016fa602e3cca6978fdb02 | [log] [tgz] |
---|---|---|
author | Patrick Williams <patrick@stwcx.xyz> | Wed Aug 09 14:45:28 2023 -0500 |
committer | Patrick Williams <patrick@stwcx.xyz> | Wed Aug 09 14:47:52 2023 -0500 |
tree | d471f4e54fa9c1c73a9c10cec02127128bc7799e | |
parent | 835461822bf3743321fd57751f01903734659d40 [diff] |
phosphor-gpio-monitor: ignore extra args The phosphor-gpio-monitor@.service template has an EXTRA_ARGS which in some configs can be empty. systemd will end up launching the process with an extra, empty argument. CLI11 fails on this unless we give an explicit `allow_extra` call. Observed in hardware testing: ``` Aug 09 19:28:46 witherspoon-Y230UF71K03T phosphor-gpio-monitor[632]: The following argument was not expected: Aug 09 19:28:46 witherspoon-Y230UF71K03T phosphor-gpio-monitor[632]: Run with --help for more information. ``` Signed-off-by: Patrick Williams <patrick@stwcx.xyz> Change-Id: I42ae7e0e67f424bd1ae894a2a6a84b99ee32b723
phosphor-gpio-monitor
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.
phosphor-multi-gpio-monitor
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": "FALLING", "Target": "PowerButtonDown.service", "Continue": true }, { "Name": "PowerGood", "LineName": "PS_PWROK", "EventMon": "BOTH", "Targets": { "FALLING": ["PowerGoodFalling.service", "PowerOff.service"], "RISING": ["PowerGoodRising.service", "PowerOn.service"] }, "Continue": false }, { "Name": "SystemReset", "GpioNum": 46, "ChipId": "0" } ]