Patrick Venture | 5e92909 | 2018-06-08 10:55:23 -0700 | [diff] [blame] | 1 | /** |
| 2 | * Copyright 2017 Google Inc. |
| 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 | |
| 17 | #include <iostream> |
Patrick Venture | fe75b19 | 2018-06-08 11:19:43 -0700 | [diff] [blame] | 18 | #include <map> |
Patrick Venture | 8729eb9 | 2020-08-10 10:38:44 -0700 | [diff] [blame] | 19 | #include <memory> |
Patrick Venture | fe75b19 | 2018-06-08 11:19:43 -0700 | [diff] [blame] | 20 | #include <string> |
Ed Tanous | f8b6e55 | 2025-06-27 13:27:50 -0700 | [diff] [blame^] | 21 | #include <utility> |
Patrick Venture | 5e92909 | 2018-06-08 10:55:23 -0700 | [diff] [blame] | 22 | |
| 23 | /* Configuration. */ |
| 24 | #include "conf.hpp" |
Patrick Venture | aadb30d | 2020-08-10 09:17:11 -0700 | [diff] [blame] | 25 | #include "dbus/dbushelper.hpp" |
Patrick Venture | 5e92909 | 2018-06-08 10:55:23 -0700 | [diff] [blame] | 26 | #include "dbus/dbuspassive.hpp" |
James Feist | 7136a5a | 2018-07-19 09:52:05 -0700 | [diff] [blame] | 27 | #include "dbus/dbuswrite.hpp" |
Ed Tanous | f8b6e55 | 2025-06-27 13:27:50 -0700 | [diff] [blame^] | 28 | #include "dbuspassiveredundancy.hpp" |
Patrick Venture | c404b3e | 2018-10-30 14:17:49 -0700 | [diff] [blame] | 29 | #include "errors/exception.hpp" |
Patrick Venture | 5e92909 | 2018-06-08 10:55:23 -0700 | [diff] [blame] | 30 | #include "interfaces.hpp" |
| 31 | #include "notimpl/readonly.hpp" |
| 32 | #include "notimpl/writeonly.hpp" |
Patrick Venture | cdd6134 | 2020-08-07 15:49:56 -0700 | [diff] [blame] | 33 | #include "sensors/build_utils.hpp" |
Patrick Venture | 5e92909 | 2018-06-08 10:55:23 -0700 | [diff] [blame] | 34 | #include "sensors/builder.hpp" |
Patrick Venture | 5e92909 | 2018-06-08 10:55:23 -0700 | [diff] [blame] | 35 | #include "sensors/host.hpp" |
Patrick Venture | da4a5dd | 2018-08-31 09:42:48 -0700 | [diff] [blame] | 36 | #include "sensors/manager.hpp" |
Patrick Venture | 5e92909 | 2018-06-08 10:55:23 -0700 | [diff] [blame] | 37 | #include "sensors/pluggable.hpp" |
| 38 | #include "sysfs/sysfsread.hpp" |
| 39 | #include "sysfs/sysfswrite.hpp" |
Ed Tanous | f8b6e55 | 2025-06-27 13:27:50 -0700 | [diff] [blame^] | 40 | |
| 41 | #include <sdbusplus/bus.hpp> |
Patrick Venture | 5e92909 | 2018-06-08 10:55:23 -0700 | [diff] [blame] | 42 | |
Patrick Venture | a076487 | 2020-08-08 07:48:43 -0700 | [diff] [blame] | 43 | namespace pid_control |
| 44 | { |
| 45 | |
Patrick Venture | 5e92909 | 2018-06-08 10:55:23 -0700 | [diff] [blame] | 46 | static constexpr bool deferSignals = true; |
| 47 | |
Patrick Williams | 1930027 | 2025-02-01 08:22:48 -0500 | [diff] [blame] | 48 | SensorManager buildSensors( |
| 49 | const std::map<std::string, conf::SensorConfig>& config, |
| 50 | sdbusplus::bus_t& passive, sdbusplus::bus_t& host) |
Patrick Venture | 5e92909 | 2018-06-08 10:55:23 -0700 | [diff] [blame] | 51 | { |
Patrick Williams | e3c6077 | 2025-04-07 17:53:42 -0400 | [diff] [blame] | 52 | SensorManager mgmr{passive, host}; |
Patrick Venture | c179d40 | 2018-10-30 19:51:55 -0700 | [diff] [blame] | 53 | auto& hostSensorBus = mgmr.getHostBus(); |
| 54 | auto& passiveListeningBus = mgmr.getPassiveBus(); |
Patrick Venture | 5e92909 | 2018-06-08 10:55:23 -0700 | [diff] [blame] | 55 | |
Patrick Venture | 4a2dc4d | 2018-10-23 09:02:55 -0700 | [diff] [blame] | 56 | for (const auto& it : config) |
Patrick Venture | 5e92909 | 2018-06-08 10:55:23 -0700 | [diff] [blame] | 57 | { |
| 58 | std::unique_ptr<ReadInterface> ri; |
| 59 | std::unique_ptr<WriteInterface> wi; |
| 60 | |
| 61 | std::string name = it.first; |
Patrick Venture | 1df9e87 | 2020-10-08 15:35:01 -0700 | [diff] [blame] | 62 | const conf::SensorConfig* info = &it.second; |
Patrick Venture | 5e92909 | 2018-06-08 10:55:23 -0700 | [diff] [blame] | 63 | |
| 64 | std::cerr << "Sensor: " << name << " " << info->type << " "; |
Patrick Venture | 69c5106 | 2019-02-11 09:46:03 -0800 | [diff] [blame] | 65 | std::cerr << info->readPath << " " << info->writePath << "\n"; |
Patrick Venture | 5e92909 | 2018-06-08 10:55:23 -0700 | [diff] [blame] | 66 | |
Patrick Venture | 69c5106 | 2019-02-11 09:46:03 -0800 | [diff] [blame] | 67 | IOInterfaceType rtype = getReadInterfaceType(info->readPath); |
| 68 | IOInterfaceType wtype = getWriteInterfaceType(info->writePath); |
Patrick Venture | 5e92909 | 2018-06-08 10:55:23 -0700 | [diff] [blame] | 69 | |
| 70 | // fan sensors can be ready any way and written others. |
| 71 | // fan sensors are the only sensors this is designed to write. |
Patrick Venture | da4a5dd | 2018-08-31 09:42:48 -0700 | [diff] [blame] | 72 | // Nothing here should be write-only, although, in theory a fan could |
| 73 | // be. I'm just not sure how that would fit together. |
Patrick Venture | 5e92909 | 2018-06-08 10:55:23 -0700 | [diff] [blame] | 74 | // TODO(venture): It should check with the ObjectMapper to check if |
| 75 | // that sensor exists on the Dbus. |
| 76 | switch (rtype) |
| 77 | { |
| 78 | case IOInterfaceType::DBUSPASSIVE: |
James Feist | 98b704e | 2019-06-03 16:24:53 -0700 | [diff] [blame] | 79 | // we only need to make one match based on the dbus object |
| 80 | static std::shared_ptr<DbusPassiveRedundancy> redundancy = |
| 81 | std::make_shared<DbusPassiveRedundancy>( |
| 82 | passiveListeningBus); |
| 83 | |
| 84 | if (info->type == "fan") |
| 85 | { |
| 86 | ri = DbusPassive::createDbusPassive( |
Patrick Venture | 8729eb9 | 2020-08-10 10:38:44 -0700 | [diff] [blame] | 87 | passiveListeningBus, info->type, name, |
Patrick Williams | cd1e78a | 2025-04-07 17:21:05 -0400 | [diff] [blame] | 88 | std::make_unique<DbusHelper>(passiveListeningBus), info, |
| 89 | redundancy); |
James Feist | 98b704e | 2019-06-03 16:24:53 -0700 | [diff] [blame] | 90 | } |
| 91 | else |
| 92 | { |
Patrick Venture | 8729eb9 | 2020-08-10 10:38:44 -0700 | [diff] [blame] | 93 | ri = DbusPassive::createDbusPassive( |
| 94 | passiveListeningBus, info->type, name, |
Patrick Williams | cd1e78a | 2025-04-07 17:21:05 -0400 | [diff] [blame] | 95 | std::make_unique<DbusHelper>(passiveListeningBus), info, |
| 96 | nullptr); |
James Feist | 98b704e | 2019-06-03 16:24:53 -0700 | [diff] [blame] | 97 | } |
Patrick Venture | e725286 | 2018-10-30 14:23:32 -0700 | [diff] [blame] | 98 | if (ri == nullptr) |
| 99 | { |
| 100 | throw SensorBuildException( |
| 101 | "Failed to create dbus passive sensor: " + name + |
| 102 | " of type: " + info->type); |
| 103 | } |
Patrick Venture | 5e92909 | 2018-06-08 10:55:23 -0700 | [diff] [blame] | 104 | break; |
| 105 | case IOInterfaceType::EXTERNAL: |
| 106 | // These are a special case for read-only. |
| 107 | break; |
| 108 | case IOInterfaceType::SYSFS: |
Patrick Venture | 69c5106 | 2019-02-11 09:46:03 -0800 | [diff] [blame] | 109 | ri = std::make_unique<SysFsRead>(info->readPath); |
Patrick Venture | 5e92909 | 2018-06-08 10:55:23 -0700 | [diff] [blame] | 110 | break; |
| 111 | default: |
| 112 | ri = std::make_unique<WriteOnly>(); |
| 113 | break; |
| 114 | } |
| 115 | |
| 116 | if (info->type == "fan") |
| 117 | { |
| 118 | switch (wtype) |
| 119 | { |
| 120 | case IOInterfaceType::SYSFS: |
| 121 | if (info->max > 0) |
| 122 | { |
| 123 | wi = std::make_unique<SysFsWritePercent>( |
Patrick Venture | 69c5106 | 2019-02-11 09:46:03 -0800 | [diff] [blame] | 124 | info->writePath, info->min, info->max); |
Patrick Venture | 5e92909 | 2018-06-08 10:55:23 -0700 | [diff] [blame] | 125 | } |
| 126 | else |
| 127 | { |
Patrick Venture | 69c5106 | 2019-02-11 09:46:03 -0800 | [diff] [blame] | 128 | wi = std::make_unique<SysFsWrite>(info->writePath, |
Patrick Venture | da4a5dd | 2018-08-31 09:42:48 -0700 | [diff] [blame] | 129 | info->min, info->max); |
Patrick Venture | 5e92909 | 2018-06-08 10:55:23 -0700 | [diff] [blame] | 130 | } |
| 131 | |
| 132 | break; |
James Feist | 7136a5a | 2018-07-19 09:52:05 -0700 | [diff] [blame] | 133 | case IOInterfaceType::DBUSACTIVE: |
| 134 | if (info->max > 0) |
| 135 | { |
Patrick Venture | f5e770b | 2018-10-30 12:28:53 -0700 | [diff] [blame] | 136 | wi = DbusWritePercent::createDbusWrite( |
Patrick Venture | 8729eb9 | 2020-08-10 10:38:44 -0700 | [diff] [blame] | 137 | info->writePath, info->min, info->max, |
Patrick Williams | cd1e78a | 2025-04-07 17:21:05 -0400 | [diff] [blame] | 138 | std::make_unique<DbusHelper>(passiveListeningBus)); |
James Feist | 7136a5a | 2018-07-19 09:52:05 -0700 | [diff] [blame] | 139 | } |
| 140 | else |
| 141 | { |
Patrick Venture | f5e770b | 2018-10-30 12:28:53 -0700 | [diff] [blame] | 142 | wi = DbusWrite::createDbusWrite( |
Patrick Venture | 8729eb9 | 2020-08-10 10:38:44 -0700 | [diff] [blame] | 143 | info->writePath, info->min, info->max, |
Patrick Williams | cd1e78a | 2025-04-07 17:21:05 -0400 | [diff] [blame] | 144 | std::make_unique<DbusHelper>(passiveListeningBus)); |
Patrick Venture | e725286 | 2018-10-30 14:23:32 -0700 | [diff] [blame] | 145 | } |
| 146 | |
| 147 | if (wi == nullptr) |
| 148 | { |
| 149 | throw SensorBuildException( |
| 150 | "Unable to create write dbus interface for path: " + |
Patrick Venture | 69c5106 | 2019-02-11 09:46:03 -0800 | [diff] [blame] | 151 | info->writePath); |
James Feist | 7136a5a | 2018-07-19 09:52:05 -0700 | [diff] [blame] | 152 | } |
| 153 | |
| 154 | break; |
Patrick Venture | 5e92909 | 2018-06-08 10:55:23 -0700 | [diff] [blame] | 155 | default: |
| 156 | wi = std::make_unique<ReadOnlyNoExcept>(); |
| 157 | break; |
| 158 | } |
| 159 | |
| 160 | auto sensor = std::make_unique<PluggableSensor>( |
Patrick Venture | da4a5dd | 2018-08-31 09:42:48 -0700 | [diff] [blame] | 161 | name, info->timeout, std::move(ri), std::move(wi)); |
Patrick Venture | fe75b19 | 2018-06-08 11:19:43 -0700 | [diff] [blame] | 162 | mgmr.addSensor(info->type, name, std::move(sensor)); |
Patrick Venture | 5e92909 | 2018-06-08 10:55:23 -0700 | [diff] [blame] | 163 | } |
Josh Lehan | 23e22b9 | 2022-11-12 22:37:58 -0800 | [diff] [blame] | 164 | else if (info->type == "temp" || info->type == "margin" || |
| 165 | info->type == "power" || info->type == "powersum") |
Patrick Venture | 5e92909 | 2018-06-08 10:55:23 -0700 | [diff] [blame] | 166 | { |
| 167 | // These sensors are read-only, but only for this application |
| 168 | // which only writes to fan sensors. |
Patrick Venture | 69c5106 | 2019-02-11 09:46:03 -0800 | [diff] [blame] | 169 | std::cerr << info->type << " readPath: " << info->readPath << "\n"; |
Patrick Venture | 5e92909 | 2018-06-08 10:55:23 -0700 | [diff] [blame] | 170 | |
| 171 | if (IOInterfaceType::EXTERNAL == rtype) |
| 172 | { |
| 173 | std::cerr << "Creating HostSensor: " << name |
Patrick Venture | 69c5106 | 2019-02-11 09:46:03 -0800 | [diff] [blame] | 174 | << " path: " << info->readPath << "\n"; |
Patrick Venture | 5e92909 | 2018-06-08 10:55:23 -0700 | [diff] [blame] | 175 | |
| 176 | /* |
| 177 | * The reason we handle this as a HostSensor is because it's |
| 178 | * not quite pluggable; but maybe it could be. |
| 179 | */ |
Patrick Venture | 563a356 | 2018-10-30 09:31:26 -0700 | [diff] [blame] | 180 | auto sensor = HostSensor::createTemp( |
Patrick Venture | 69c5106 | 2019-02-11 09:46:03 -0800 | [diff] [blame] | 181 | name, info->timeout, hostSensorBus, info->readPath.c_str(), |
Patrick Venture | da4a5dd | 2018-08-31 09:42:48 -0700 | [diff] [blame] | 182 | deferSignals); |
Patrick Venture | fe75b19 | 2018-06-08 11:19:43 -0700 | [diff] [blame] | 183 | mgmr.addSensor(info->type, name, std::move(sensor)); |
Patrick Venture | 5e92909 | 2018-06-08 10:55:23 -0700 | [diff] [blame] | 184 | } |
| 185 | else |
| 186 | { |
| 187 | wi = std::make_unique<ReadOnlyNoExcept>(); |
| 188 | auto sensor = std::make_unique<PluggableSensor>( |
Patrick Venture | da4a5dd | 2018-08-31 09:42:48 -0700 | [diff] [blame] | 189 | name, info->timeout, std::move(ri), std::move(wi)); |
Patrick Venture | fe75b19 | 2018-06-08 11:19:43 -0700 | [diff] [blame] | 190 | mgmr.addSensor(info->type, name, std::move(sensor)); |
Patrick Venture | 5e92909 | 2018-06-08 10:55:23 -0700 | [diff] [blame] | 191 | } |
| 192 | } |
| 193 | } |
| 194 | |
| 195 | return mgmr; |
| 196 | } |
Patrick Venture | a076487 | 2020-08-08 07:48:43 -0700 | [diff] [blame] | 197 | |
| 198 | } // namespace pid_control |