commit | 7abda62ca1712083c9b2cc2e70d44c06602bd0c8 | [log] [tgz] |
---|---|---|
author | George Liu <liuxiwei@inspur.com> | Tue Aug 01 13:54:11 2023 +0800 |
committer | George Liu <liuxiwei@inspur.com> | Wed Aug 02 11:12:41 2023 +0800 |
tree | f8062d40fad88262cfe898f27728bfca3ee98b0a | |
parent | 97a5b24e2282d7d1d8d40cd92fbff095d8924f42 [diff] |
Remove is_method_error method Remove the usage of is_method_error()[1], and add try-catch to handle D-Bus exceptions around mapper call. [1]https://github.com/openbmc/sdbusplus/commit/079fb85a398d90800935e3985bb1266a7530a26e#diff-945669e8bd9cab4ecc83a574a732921281b2c79eb8bba65efff11736ad18f92bR237-R240 Signed-off-by: George Liu <liuxiwei@inspur.com> Change-Id: I8bbd5396e69dfa343936a9275c8d6ff2cf76c8a9
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" } ]