blob: 1290077e3033f4e0af65315f004b970164985f9e [file] [log] [blame]
Shawn McCarneydb0b8332020-04-06 14:13:04 -05001/**
2 * Copyright © 2020 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 */
16
17#include "device.hpp"
18
Shawn McCarneyeb7bec42020-04-14 09:38:15 -050019#include "chassis.hpp"
Shawn McCarneyb4d18a42020-06-02 10:27:05 -050020#include "exception_utils.hpp"
Shawn McCarneyeb7bec42020-04-14 09:38:15 -050021#include "system.hpp"
22
Shawn McCarneyb4d18a42020-06-02 10:27:05 -050023#include <exception>
24
Shawn McCarneydb0b8332020-04-06 14:13:04 -050025namespace phosphor::power::regulators
26{
27
28void Device::addToIDMap(IDMap& idMap)
29{
30 // Add this device to the map
31 idMap.addDevice(*this);
32
33 // Add rails to the map
34 for (std::unique_ptr<Rail>& rail : rails)
35 {
36 idMap.addRail(*rail);
37 }
38}
39
Shawn McCarney9bd94d32021-01-25 19:40:42 -060040void Device::clearCache()
41{
42 // If presence detection is defined for this device
43 if (presenceDetection)
44 {
45 // Clear cached presence data
46 presenceDetection->clearCache();
47 }
48}
49
Bob Kingd692d6d2020-09-14 13:42:57 +080050void Device::close(Services& services)
Shawn McCarneyb4d18a42020-06-02 10:27:05 -050051{
52 try
53 {
54 // Close I2C interface if it is open
55 if (i2cInterface->isOpen())
56 {
57 i2cInterface->close();
58 }
59 }
60 catch (const std::exception& e)
61 {
62 // Log error messages in journal
Bob Kingd692d6d2020-09-14 13:42:57 +080063 services.getJournal().logError(exception_utils::getMessages(e));
64 services.getJournal().logError("Unable to close device " + id);
Shawn McCarneyb4d18a42020-06-02 10:27:05 -050065
66 // TODO: Create error log entry
67 }
68}
69
Bob King23243f82020-07-29 10:38:57 +080070void Device::configure(Services& services, System& system, Chassis& chassis)
Shawn McCarneyeb7bec42020-04-14 09:38:15 -050071{
72 // If configuration changes are defined for this device, apply them
73 if (configuration)
74 {
Bob King23243f82020-07-29 10:38:57 +080075 configuration->execute(services, system, chassis, *this);
Shawn McCarneyeb7bec42020-04-14 09:38:15 -050076 }
77
78 // Configure rails
79 for (std::unique_ptr<Rail>& rail : rails)
80 {
Bob King23243f82020-07-29 10:38:57 +080081 rail->configure(services, system, chassis, *this);
Shawn McCarneyeb7bec42020-04-14 09:38:15 -050082 }
83}
84
Bob King8a552922020-08-05 17:02:31 +080085void Device::monitorSensors(Services& services, System& system,
86 Chassis& chassis)
Bob King8e1cd0b2020-07-08 13:30:27 +080087{
88
89 // Monitor sensors in each rail
90 for (std::unique_ptr<Rail>& rail : rails)
91 {
Bob King8a552922020-08-05 17:02:31 +080092 rail->monitorSensors(services, system, chassis, *this);
Bob King8e1cd0b2020-07-08 13:30:27 +080093 }
94}
95
Shawn McCarneydb0b8332020-04-06 14:13:04 -050096} // namespace phosphor::power::regulators