blob: 61a019217bdb0e4e5fb3357d09c9b2a48d9ebcaf [file] [log] [blame]
Brad Bishopbfb81602017-06-14 21:14:32 -04001/**
2 * Copyright © 2017 IBM 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 */
Brad Bishopbfb81602017-06-14 21:14:32 -040016#include "fallback.hpp"
Matthew Barth2d2caa32020-05-26 11:07:24 -050017
18#include "fan.hpp"
Brad Bishopbfb81602017-06-14 21:14:32 -040019#include "psensor.hpp"
20
Anwaar Hadiebead9a2025-03-19 20:35:57 +000021#include <phosphor-logging/lg2.hpp>
Matthew Barth2d2caa32020-05-26 11:07:24 -050022
23#include <algorithm>
24
Brad Bishopbfb81602017-06-14 21:14:32 -040025namespace phosphor
26{
27namespace fan
28{
29namespace presence
30{
31
Mike Capps808d7fe2022-06-13 10:12:16 -040032void Fallback::stateChanged(bool present, PresenceSensor& /*sensor*/)
Brad Bishopbfb81602017-06-14 21:14:32 -040033{
34 if (!present)
35 {
36 // Starting with the first backup, find the first
37 // sensor that reports the fan as present, if any.
Matthew Barth2d2caa32020-05-26 11:07:24 -050038 auto it = std::find_if(std::next(activeSensor), sensors.end(),
39 [](auto& s) { return s.get().present(); });
Brad Bishopbfb81602017-06-14 21:14:32 -040040
41 if (it != sensors.end())
42 {
43 // A backup sensor disagrees with the active sensor.
44 // Switch to the backup.
45 activeSensor->get().stop();
46 present = it->get().start();
47
48 while (activeSensor != it)
49 {
50 // Callout the broken sensors.
51 activeSensor->get().fail();
52 ++activeSensor;
53 }
Anwaar Hadiebead9a2025-03-19 20:35:57 +000054 lg2::info("Using backup presence sensor for fan {FAN}", "FAN",
55 std::get<1>(fan));
Brad Bishopbfb81602017-06-14 21:14:32 -040056 activeSensor = it;
57 }
58 }
59
60 setPresence(fan, present);
Matt Spinlerbc4179e2022-10-04 15:15:06 -050061
62 if (eepromDevice)
63 {
64 if (present)
65 {
66 eepromDevice->bind();
67 }
68 else
69 {
70 eepromDevice->unbind();
71 }
72 }
Brad Bishopbfb81602017-06-14 21:14:32 -040073}
74
75void Fallback::monitor()
76{
77 // Find the first sensor that says the fan is present
78 // and set it as the active sensor.
Patrick Williamsdfddd642024-08-16 15:21:51 -040079 activeSensor = std::find_if(sensors.begin(), sensors.end(), [](auto& s) {
80 return s.get().present();
81 });
Brad Bishopbfb81602017-06-14 21:14:32 -040082 if (activeSensor == sensors.end())
83 {
84 // The first sensor is working or all sensors
85 // agree the fan isn't present. Use the first sensor.
86 activeSensor = sensors.begin();
87 }
88
89 if (activeSensor != sensors.begin())
90 {
Anwaar Hadiebead9a2025-03-19 20:35:57 +000091 lg2::info("Using backup presence sensor for fan {FAN}", "FAN",
92 std::get<1>(fan));
Brad Bishopbfb81602017-06-14 21:14:32 -040093 }
94
95 // Callout the broken sensors.
96 auto it = sensors.begin();
97 while (it != activeSensor)
98 {
99 it->get().fail();
100 ++it;
101 }
102
103 // Start the active sensor and set the initial state.
104 setPresence(fan, activeSensor->get().start());
105}
106
107} // namespace presence
108} // namespace fan
109} // namespace phosphor