James Feist | 7136a5a | 2018-07-19 09:52:05 -0700 | [diff] [blame] | 1 | /* |
| 2 | // Copyright (c) 2018 Intel Corporation |
| 3 | // |
| 4 | // Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | // you may not use this file except in compliance with the License. |
| 6 | // You may obtain a copy of the License at |
| 7 | // |
| 8 | // http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | // |
| 10 | // Unless required by applicable law or agreed to in writing, software |
| 11 | // distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | // See the License for the specific language governing permissions and |
| 14 | // limitations under the License. |
| 15 | */ |
| 16 | |
Patrick Venture | aadb30d | 2020-08-10 09:17:11 -0700 | [diff] [blame] | 17 | #include "dbuswrite.hpp" |
| 18 | |
| 19 | #include "dbushelper_interface.hpp" |
Patrick Venture | da4a5dd | 2018-08-31 09:42:48 -0700 | [diff] [blame] | 20 | |
Patrick Venture | 76ce5d7 | 2018-10-30 18:39:50 -0700 | [diff] [blame] | 21 | #include <phosphor-logging/log.hpp> |
James Feist | 7136a5a | 2018-07-19 09:52:05 -0700 | [diff] [blame] | 22 | #include <sdbusplus/bus.hpp> |
Patrick Venture | a83a3ec | 2020-08-04 09:52:05 -0700 | [diff] [blame] | 23 | |
Patrick Venture | 8729eb9 | 2020-08-10 10:38:44 -0700 | [diff] [blame] | 24 | #include <exception> |
Patrick Venture | a83a3ec | 2020-08-04 09:52:05 -0700 | [diff] [blame] | 25 | #include <iostream> |
| 26 | #include <memory> |
Patrick Venture | f5e770b | 2018-10-30 12:28:53 -0700 | [diff] [blame] | 27 | #include <string> |
James Feist | 1f802f5 | 2019-02-08 13:51:43 -0800 | [diff] [blame] | 28 | #include <variant> |
Patrick Venture | f5e770b | 2018-10-30 12:28:53 -0700 | [diff] [blame] | 29 | |
Patrick Venture | a076487 | 2020-08-08 07:48:43 -0700 | [diff] [blame] | 30 | namespace pid_control |
| 31 | { |
| 32 | |
Patrick Venture | f5e770b | 2018-10-30 12:28:53 -0700 | [diff] [blame] | 33 | constexpr const char* pwmInterface = "xyz.openbmc_project.Control.FanPwm"; |
James Feist | 7136a5a | 2018-07-19 09:52:05 -0700 | [diff] [blame] | 34 | |
Patrick Venture | 76ce5d7 | 2018-10-30 18:39:50 -0700 | [diff] [blame] | 35 | using namespace phosphor::logging; |
| 36 | |
Patrick Venture | 8729eb9 | 2020-08-10 10:38:44 -0700 | [diff] [blame] | 37 | std::unique_ptr<WriteInterface> DbusWritePercent::createDbusWrite( |
| 38 | const std::string& path, int64_t min, int64_t max, |
| 39 | std::unique_ptr<DbusHelperInterface> helper) |
Patrick Venture | f5e770b | 2018-10-30 12:28:53 -0700 | [diff] [blame] | 40 | { |
Patrick Venture | f5e770b | 2018-10-30 12:28:53 -0700 | [diff] [blame] | 41 | std::string connectionName; |
| 42 | |
| 43 | try |
| 44 | { |
Patrick Venture | 9b93692 | 2020-08-10 11:28:39 -0700 | [diff] [blame] | 45 | connectionName = helper->getService(pwmInterface, path); |
Patrick Venture | f5e770b | 2018-10-30 12:28:53 -0700 | [diff] [blame] | 46 | } |
| 47 | catch (const std::exception& e) |
| 48 | { |
| 49 | return nullptr; |
| 50 | } |
| 51 | |
| 52 | return std::make_unique<DbusWritePercent>(path, min, max, connectionName); |
| 53 | } |
| 54 | |
James Feist | 7136a5a | 2018-07-19 09:52:05 -0700 | [diff] [blame] | 55 | void DbusWritePercent::write(double value) |
| 56 | { |
Patrick Venture | 5f59c0f | 2018-11-11 12:55:14 -0800 | [diff] [blame] | 57 | double minimum = getMin(); |
| 58 | double maximum = getMax(); |
James Feist | 7136a5a | 2018-07-19 09:52:05 -0700 | [diff] [blame] | 59 | |
Patrick Venture | 5f59c0f | 2018-11-11 12:55:14 -0800 | [diff] [blame] | 60 | double range = maximum - minimum; |
| 61 | double offset = range * value; |
| 62 | double ovalue = offset + minimum; |
James Feist | cd9e109 | 2018-10-08 13:06:41 -0700 | [diff] [blame] | 63 | |
| 64 | if (oldValue == static_cast<int64_t>(ovalue)) |
| 65 | { |
| 66 | return; |
| 67 | } |
James Feist | 80b5d9a | 2019-01-15 12:51:09 -0800 | [diff] [blame] | 68 | auto writeBus = sdbusplus::bus::new_default(); |
James Feist | 7136a5a | 2018-07-19 09:52:05 -0700 | [diff] [blame] | 69 | auto mesg = |
James Feist | 80b5d9a | 2019-01-15 12:51:09 -0800 | [diff] [blame] | 70 | writeBus.new_method_call(connectionName.c_str(), path.c_str(), |
| 71 | "org.freedesktop.DBus.Properties", "Set"); |
Andrew Geissler | 77ac856 | 2020-05-20 21:09:23 -0500 | [diff] [blame] | 72 | mesg.append(pwmInterface, "Target", |
| 73 | std::variant<uint64_t>(static_cast<uint64_t>(ovalue))); |
Patrick Venture | 76ce5d7 | 2018-10-30 18:39:50 -0700 | [diff] [blame] | 74 | |
| 75 | try |
James Feist | 7136a5a | 2018-07-19 09:52:05 -0700 | [diff] [blame] | 76 | { |
Patrick Venture | 76ce5d7 | 2018-10-30 18:39:50 -0700 | [diff] [blame] | 77 | // TODO: if we don't use the reply, call_noreply() |
James Feist | 80b5d9a | 2019-01-15 12:51:09 -0800 | [diff] [blame] | 78 | auto resp = writeBus.call(mesg); |
James Feist | 7136a5a | 2018-07-19 09:52:05 -0700 | [diff] [blame] | 79 | } |
Patrick Venture | 76ce5d7 | 2018-10-30 18:39:50 -0700 | [diff] [blame] | 80 | catch (const sdbusplus::exception::SdBusError& ex) |
| 81 | { |
| 82 | log<level::ERR>("Dbus Call Failure", entry("PATH=%s", path.c_str()), |
| 83 | entry("WHAT=%s", ex.what())); |
| 84 | } |
| 85 | |
James Feist | cd9e109 | 2018-10-08 13:06:41 -0700 | [diff] [blame] | 86 | oldValue = static_cast<int64_t>(ovalue); |
James Feist | 7136a5a | 2018-07-19 09:52:05 -0700 | [diff] [blame] | 87 | return; |
| 88 | } |
| 89 | |
Patrick Venture | f5e770b | 2018-10-30 12:28:53 -0700 | [diff] [blame] | 90 | std::unique_ptr<WriteInterface> |
| 91 | DbusWrite::createDbusWrite(const std::string& path, int64_t min, |
Patrick Venture | 8729eb9 | 2020-08-10 10:38:44 -0700 | [diff] [blame] | 92 | int64_t max, |
| 93 | std::unique_ptr<DbusHelperInterface> helper) |
Patrick Venture | f5e770b | 2018-10-30 12:28:53 -0700 | [diff] [blame] | 94 | { |
Patrick Venture | f5e770b | 2018-10-30 12:28:53 -0700 | [diff] [blame] | 95 | std::string connectionName; |
| 96 | |
| 97 | try |
| 98 | { |
Patrick Venture | 9b93692 | 2020-08-10 11:28:39 -0700 | [diff] [blame] | 99 | connectionName = helper->getService(pwmInterface, path); |
Patrick Venture | f5e770b | 2018-10-30 12:28:53 -0700 | [diff] [blame] | 100 | } |
| 101 | catch (const std::exception& e) |
| 102 | { |
| 103 | return nullptr; |
| 104 | } |
| 105 | |
| 106 | return std::make_unique<DbusWrite>(path, min, max, connectionName); |
| 107 | } |
| 108 | |
James Feist | 7136a5a | 2018-07-19 09:52:05 -0700 | [diff] [blame] | 109 | void DbusWrite::write(double value) |
| 110 | { |
James Feist | cd9e109 | 2018-10-08 13:06:41 -0700 | [diff] [blame] | 111 | if (oldValue == static_cast<int64_t>(value)) |
| 112 | { |
| 113 | return; |
| 114 | } |
James Feist | 80b5d9a | 2019-01-15 12:51:09 -0800 | [diff] [blame] | 115 | auto writeBus = sdbusplus::bus::new_default(); |
James Feist | 7136a5a | 2018-07-19 09:52:05 -0700 | [diff] [blame] | 116 | auto mesg = |
James Feist | 80b5d9a | 2019-01-15 12:51:09 -0800 | [diff] [blame] | 117 | writeBus.new_method_call(connectionName.c_str(), path.c_str(), |
| 118 | "org.freedesktop.DBus.Properties", "Set"); |
Andrew Geissler | 77ac856 | 2020-05-20 21:09:23 -0500 | [diff] [blame] | 119 | mesg.append(pwmInterface, "Target", |
| 120 | std::variant<uint64_t>(static_cast<uint64_t>(value))); |
Patrick Venture | 76ce5d7 | 2018-10-30 18:39:50 -0700 | [diff] [blame] | 121 | |
| 122 | try |
James Feist | 7136a5a | 2018-07-19 09:52:05 -0700 | [diff] [blame] | 123 | { |
Patrick Venture | 76ce5d7 | 2018-10-30 18:39:50 -0700 | [diff] [blame] | 124 | // TODO: consider call_noreplly |
James Feist | 80b5d9a | 2019-01-15 12:51:09 -0800 | [diff] [blame] | 125 | auto resp = writeBus.call(mesg); |
James Feist | 7136a5a | 2018-07-19 09:52:05 -0700 | [diff] [blame] | 126 | } |
Patrick Venture | 76ce5d7 | 2018-10-30 18:39:50 -0700 | [diff] [blame] | 127 | catch (const sdbusplus::exception::SdBusError& ex) |
| 128 | { |
| 129 | log<level::ERR>("Dbus Call Failure", entry("PATH=%s", path.c_str()), |
| 130 | entry("WHAT=%s", ex.what())); |
| 131 | } |
| 132 | |
James Feist | cd9e109 | 2018-10-08 13:06:41 -0700 | [diff] [blame] | 133 | oldValue = static_cast<int64_t>(value); |
James Feist | 7136a5a | 2018-07-19 09:52:05 -0700 | [diff] [blame] | 134 | return; |
| 135 | } |
Patrick Venture | a076487 | 2020-08-08 07:48:43 -0700 | [diff] [blame] | 136 | |
| 137 | } // namespace pid_control |