blob: 325caa3f1bd34775006016014653772a54f7202e [file] [log] [blame]
George Liub6151622020-11-23 18:16:18 +08001#include "config.h"
2
Patrick Venture91ac8d32018-11-01 17:03:22 -07003#include "manager.hpp"
4
George Liue9fb5c62021-07-01 14:05:32 +08005#include <phosphor-logging/lg2.hpp>
William A. Kennington III151122a2018-05-15 12:00:32 -07006#include <sdbusplus/exception.hpp>
Vishwanatha Subbanna4fa92482017-03-10 14:39:20 +05307#include <xyz/openbmc_project/Led/Physical/server.hpp>
George Liua6c18f82020-06-22 10:50:04 +08008
9#include <algorithm>
10#include <iostream>
11#include <string>
Vishwanatha Subbanna4c8c72b2016-11-29 23:02:06 +053012namespace phosphor
13{
14namespace led
15{
16
Alexander Hansena6f9a412024-07-24 12:27:42 +020017// apply the led action to the map
18static void applyGroupAction(std::map<LedName, Layout::LedAction>& newState,
19 Layout::LedAction action)
20{
21 if (!newState.contains(action.name))
22 {
23 newState[action.name] = action;
24 return;
25 }
26
27 auto currentAction = newState[action.name];
28
Alexander Hansen55badf72024-07-24 14:35:13 +020029 const bool hasPriority = currentAction.priority.has_value();
30
31 if (hasPriority && currentAction.action == action.priority)
Alexander Hansena6f9a412024-07-24 12:27:42 +020032 {
33 // if the current action is already the priority action,
34 // we cannot override it
35 return;
36 }
37
38 newState[action.name] = action;
39}
40
41// create the resulting new map from all currently asserted groups
Alexander Hansen7ba70c82024-07-23 13:46:25 +020042static auto getNewMapWithGroupPriorities(
43 std::set<const Layout::GroupLayout*, Layout::CompareGroupLayout> sorted)
Alexander Hansena6f9a412024-07-24 12:27:42 +020044 -> std::map<LedName, Layout::LedAction>
45{
46 std::map<LedName, Layout::LedAction> newState;
47
48 // update the new map with the desired state
George Liu3d487512024-08-23 09:19:57 +080049 for (const auto* it : sorted)
Alexander Hansena6f9a412024-07-24 12:27:42 +020050 {
51 // apply all led actions of that group to the map
George Liu112821c2024-08-22 19:00:24 +080052 for (const Layout::LedAction& action : it->actionSet)
Alexander Hansen7ba70c82024-07-23 13:46:25 +020053 {
54 newState[action.name] = action;
55 }
56 }
57 return newState;
58}
59
60static std::map<LedName, Layout::LedAction> getNewMapWithLEDPriorities(
61 std::set<const Layout::GroupLayout*> assertedGroups)
62{
63 std::map<LedName, Layout::LedAction> newState;
64 // update the new map with the desired state
65 for (const Layout::GroupLayout* it : assertedGroups)
66 {
67 // apply all led actions of that group to the map
George Liu112821c2024-08-22 19:00:24 +080068 for (const Layout::LedAction& action : it->actionSet)
Alexander Hansena6f9a412024-07-24 12:27:42 +020069 {
70 applyGroupAction(newState, action);
71 }
72 }
73 return newState;
74}
75
Alexander Hansen7ba70c82024-07-23 13:46:25 +020076// create the resulting new map from all currently asserted groups
77std::map<LedName, Layout::LedAction>
78 Manager::getNewMap(std::set<const Layout::GroupLayout*> assertedGroups)
79{
80 std::map<LedName, Layout::LedAction> newState;
81
82 std::set<const Layout::GroupLayout*, Layout::CompareGroupLayout> sorted;
83
84 bool groupPriorities = false;
85
86 for (const Layout::GroupLayout* it : assertedGroups)
87 {
88 sorted.insert(it);
89
90 if (it->priority != 0)
91 {
92 groupPriorities = true;
93 }
94 }
95
96 if (groupPriorities)
97 {
98 newState = getNewMapWithGroupPriorities(sorted);
99 }
100 else
101 {
102 newState = getNewMapWithLEDPriorities(assertedGroups);
103 }
104
105 return newState;
106}
107
Vishwanatha Subbanna4c8c72b2016-11-29 23:02:06 +0530108// Assert -or- De-assert
Vishwanatha Subbannaed490732016-12-20 15:59:29 +0530109bool Manager::setGroupState(const std::string& path, bool assert,
Patrick Williams158b2c12022-03-17 05:57:44 -0500110 ActionSet& ledsAssert, ActionSet& ledsDeAssert)
Vishwanatha Subbanna4c8c72b2016-11-29 23:02:06 +0530111{
112 if (assert)
113 {
114 assertedGroups.insert(&ledMap.at(path));
115 }
116 else
117 {
George Liu7f53a032021-05-04 11:18:21 +0800118 if (assertedGroups.contains(&ledMap.at(path)))
Vishwanatha Subbanna4c8c72b2016-11-29 23:02:06 +0530119 {
120 assertedGroups.erase(&ledMap.at(path));
121 }
122 }
Vishwanatha Subbanna4c8c72b2016-11-29 23:02:06 +0530123
Alexander Hansena6f9a412024-07-24 12:27:42 +0200124 // create the new map from the asserted groups
125 auto newState = getNewMap(assertedGroups);
126
127 // the ledsAssert are those that are in the new map and change state
128 // + those in the new map and not in the old map
129 for (const auto& [name, action] : newState)
Vishwanatha Subbanna4c8c72b2016-11-29 23:02:06 +0530130 {
Alexander Hansena6f9a412024-07-24 12:27:42 +0200131 if (ledStateMap.contains(name))
132 {
133 // check if the led action has changed
134 auto& currentAction = ledStateMap[name];
135
136 if (currentAction.action == action.action)
George Liu9e104152024-08-23 09:38:20 +0800137 {
Alexander Hansena6f9a412024-07-24 12:27:42 +0200138 continue;
George Liu9e104152024-08-23 09:38:20 +0800139 }
Alexander Hansena6f9a412024-07-24 12:27:42 +0200140 }
141
142 ledsAssert.insert(action);
Vishwanatha Subbanna4c8c72b2016-11-29 23:02:06 +0530143 }
144
Alexander Hansena6f9a412024-07-24 12:27:42 +0200145 // the ledsDeAssert are those in the old map but not in the new map
146 for (const auto& [name, action] : ledStateMap)
Vishwanatha Subbanna4c8c72b2016-11-29 23:02:06 +0530147 {
Alexander Hansena6f9a412024-07-24 12:27:42 +0200148 if (!newState.contains(name))
Vishwanatha Subbanna4b000d82017-05-03 18:44:16 +0530149 {
Alexander Hansena6f9a412024-07-24 12:27:42 +0200150 ledsDeAssert.insert(action);
Vishwanatha Subbanna4b000d82017-05-03 18:44:16 +0530151 }
Vishwanatha Subbanna4c8c72b2016-11-29 23:02:06 +0530152 }
153
Alexander Hansena6f9a412024-07-24 12:27:42 +0200154 ledStateMap = newState;
Vishwanatha Subbannaed490732016-12-20 15:59:29 +0530155
156 // If we survive, then set the state accordingly.
157 return assert;
158}
159
George Liub6151622020-11-23 18:16:18 +0800160void Manager::setLampTestCallBack(
Patrick Williams158b2c12022-03-17 05:57:44 -0500161 std::function<bool(ActionSet& ledsAssert, ActionSet& ledsDeAssert)>
162 callBack)
George Liub6151622020-11-23 18:16:18 +0800163{
164 lampTestCallBack = callBack;
165}
166
Vishwanatha Subbannaed490732016-12-20 15:59:29 +0530167/** @brief Run through the map and apply action on the LEDs */
Patrick Williams158b2c12022-03-17 05:57:44 -0500168void Manager::driveLEDs(ActionSet& ledsAssert, ActionSet& ledsDeAssert)
Vishwanatha Subbannaed490732016-12-20 15:59:29 +0530169{
George Liub6151622020-11-23 18:16:18 +0800170#ifdef USE_LAMP_TEST
171 // Use the lampTestCallBack method and trigger the callback method in the
172 // lamp test(processLEDUpdates), in this way, all lamp test operations
173 // are performed in the lamp test class.
174 if (lampTestCallBack(ledsAssert, ledsDeAssert))
175 {
176 return;
177 }
178#endif
Potin Laif1ed4792023-07-13 18:45:14 +0800179 ActionSet newReqChangedLeds;
180 std::vector<std::pair<ActionSet&, ActionSet&>> actionsVec = {
181 {reqLedsAssert, ledsAssert}, {reqLedsDeAssert, ledsDeAssert}};
182
183 timer.setEnabled(false);
184 std::set_union(ledsAssert.begin(), ledsAssert.end(), ledsDeAssert.begin(),
185 ledsDeAssert.end(),
186 std::inserter(newReqChangedLeds, newReqChangedLeds.begin()),
187 ledLess);
188
189 // prepare reqLedsAssert & reqLedsDeAssert
190 for (auto pair : actionsVec)
Vishwanatha Subbannaed490732016-12-20 15:59:29 +0530191 {
Potin Laif1ed4792023-07-13 18:45:14 +0800192 ActionSet tmpSet;
193
194 // Discard current required LED actions, if these LEDs have new actions
195 // in newReqChangedLeds.
196 std::set_difference(pair.first.begin(), pair.first.end(),
197 newReqChangedLeds.begin(), newReqChangedLeds.end(),
198 std::inserter(tmpSet, tmpSet.begin()), ledLess);
199
200 // Union the remaining LED actions with new LED actions.
201 pair.first.clear();
202 std::set_union(tmpSet.begin(), tmpSet.end(), pair.second.begin(),
203 pair.second.end(),
204 std::inserter(pair.first, pair.first.begin()), ledLess);
Vishwanatha Subbannaed490732016-12-20 15:59:29 +0530205 }
206
Potin Laif1ed4792023-07-13 18:45:14 +0800207 driveLedsHandler();
Vishwanatha Subbanna4c8c72b2016-11-29 23:02:06 +0530208 return;
209}
210
Vishwanatha Subbanna11ca8f92017-02-27 19:33:45 +0530211// Calls into driving physical LED post choosing the action
Potin Laif1ed4792023-07-13 18:45:14 +0800212int Manager::drivePhysicalLED(const std::string& objPath, Layout::Action action,
George Liu80f51bb2024-08-22 20:17:36 +0800213 uint8_t dutyOn, uint16_t period)
Vishwanatha Subbanna11ca8f92017-02-27 19:33:45 +0530214{
George Liu1c737af2020-10-16 09:07:02 +0800215 try
Vishwanatha Subbanna11ca8f92017-02-27 19:33:45 +0530216 {
George Liu1c737af2020-10-16 09:07:02 +0800217 // If Blink, set its property
218 if (action == Layout::Action::Blink)
219 {
220 PropertyValue dutyOnValue{dutyOn};
221 PropertyValue periodValue{period};
222
George Liuf0592552024-08-23 09:46:17 +0800223 phosphor::led::utils::DBusHandler::setProperty(
224 objPath, phyLedIntf, "DutyOn", dutyOnValue);
225 phosphor::led::utils::DBusHandler::setProperty(
226 objPath, phyLedIntf, "Period", periodValue);
George Liu1c737af2020-10-16 09:07:02 +0800227 }
228
229 PropertyValue actionValue{getPhysicalAction(action)};
George Liuf0592552024-08-23 09:46:17 +0800230 phosphor::led::utils::DBusHandler::setProperty(objPath, phyLedIntf,
231 "State", actionValue);
George Liu1c737af2020-10-16 09:07:02 +0800232 }
George Liu829c0b32023-07-18 10:00:47 +0800233 catch (const sdbusplus::exception_t& e)
George Liu1c737af2020-10-16 09:07:02 +0800234 {
George Liue9fb5c62021-07-01 14:05:32 +0800235 lg2::error(
236 "Error setting property for physical LED, ERROR = {ERROR}, OBJECT_PATH = {PATH}",
237 "ERROR", e, "PATH", objPath);
Potin Laif1ed4792023-07-13 18:45:14 +0800238 return -1;
Vishwanatha Subbanna11ca8f92017-02-27 19:33:45 +0530239 }
Vishwanatha Subbannadcc3f382017-03-24 20:15:02 +0530240
Potin Laif1ed4792023-07-13 18:45:14 +0800241 return 0;
Vishwanatha Subbanna11ca8f92017-02-27 19:33:45 +0530242}
243
244/** @brief Returns action string based on enum */
Vishwanatha Subbanna4fa92482017-03-10 14:39:20 +0530245std::string Manager::getPhysicalAction(Layout::Action action)
Vishwanatha Subbanna11ca8f92017-02-27 19:33:45 +0530246{
Vishwanatha Subbanna4fa92482017-03-10 14:39:20 +0530247 namespace server = sdbusplus::xyz::openbmc_project::Led::server;
248
249 // TODO: openbmc/phosphor-led-manager#5
250 // Somehow need to use the generated Action enum than giving one
251 // in ledlayout.
Patrick Venture91ac8d32018-11-01 17:03:22 -0700252 if (action == Layout::Action::On)
Vishwanatha Subbanna11ca8f92017-02-27 19:33:45 +0530253 {
Vishwanatha Subbanna4fa92482017-03-10 14:39:20 +0530254 return server::convertForMessage(server::Physical::Action::On);
Vishwanatha Subbanna11ca8f92017-02-27 19:33:45 +0530255 }
Patrick Venture91ac8d32018-11-01 17:03:22 -0700256 else if (action == Layout::Action::Blink)
Vishwanatha Subbanna11ca8f92017-02-27 19:33:45 +0530257 {
Vishwanatha Subbanna4fa92482017-03-10 14:39:20 +0530258 return server::convertForMessage(server::Physical::Action::Blink);
Vishwanatha Subbanna11ca8f92017-02-27 19:33:45 +0530259 }
260 else
261 {
Vishwanatha Subbanna4fa92482017-03-10 14:39:20 +0530262 return server::convertForMessage(server::Physical::Action::Off);
Vishwanatha Subbanna11ca8f92017-02-27 19:33:45 +0530263 }
264}
265
Potin Laif1ed4792023-07-13 18:45:14 +0800266void Manager::driveLedsHandler(void)
267{
268 ActionSet failedLedsAssert;
269 ActionSet failedLedsDeAssert;
270
271 // This order of LED operation is important.
Alexander Hansenfe476e12024-07-23 15:45:22 +0200272 for (const auto& it : reqLedsDeAssert)
Potin Laif1ed4792023-07-13 18:45:14 +0800273 {
Alexander Hansenfe476e12024-07-23 15:45:22 +0200274 std::string objPath = std::string(phyLedPath) + it.name;
275 lg2::debug("De-Asserting LED, NAME = {NAME}, ACTION = {ACTION}", "NAME",
276 it.name, "ACTION", it.action);
277 if (drivePhysicalLED(objPath, Layout::Action::Off, it.dutyOn,
George Liu49875a22024-08-23 08:58:59 +0800278 it.period) != 0)
Potin Laif1ed4792023-07-13 18:45:14 +0800279 {
Alexander Hansenfe476e12024-07-23 15:45:22 +0200280 failedLedsDeAssert.insert(it);
Potin Laif1ed4792023-07-13 18:45:14 +0800281 }
282 }
283
Alexander Hansenfe476e12024-07-23 15:45:22 +0200284 for (const auto& it : reqLedsAssert)
Potin Laif1ed4792023-07-13 18:45:14 +0800285 {
Alexander Hansenfe476e12024-07-23 15:45:22 +0200286 std::string objPath = std::string(phyLedPath) + it.name;
287 lg2::debug("Asserting LED, NAME = {NAME}, ACTION = {ACTION}", "NAME",
288 it.name, "ACTION", it.action);
George Liu49875a22024-08-23 08:58:59 +0800289 if (drivePhysicalLED(objPath, it.action, it.dutyOn, it.period) != 0)
Potin Laif1ed4792023-07-13 18:45:14 +0800290 {
Alexander Hansenfe476e12024-07-23 15:45:22 +0200291 failedLedsAssert.insert(it);
Potin Laif1ed4792023-07-13 18:45:14 +0800292 }
293 }
294
295 reqLedsAssert = failedLedsAssert;
296 reqLedsDeAssert = failedLedsDeAssert;
297
298 if (reqLedsDeAssert.empty() && reqLedsAssert.empty())
299 {
300 timer.setEnabled(false);
301 }
302 else
303 {
304 timer.restartOnce(std::chrono::seconds(1));
305 }
306
307 return;
308}
309
Vishwanatha Subbanna4c8c72b2016-11-29 23:02:06 +0530310} // namespace led
311} // namespace phosphor