blob: 63d80eb18db0e3547b5c7f8e04b68f84cf191bc3 [file] [log] [blame]
Shawn McCarneya2461b32019-10-24 18:53:01 -05001/**
2 * Copyright © 2019 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#pragma once
17
Shawn McCarney4bf310e2020-03-10 17:48:11 -050018#include "configuration.hpp"
19#include "sensor_monitoring.hpp"
Bob King23243f82020-07-29 10:38:57 +080020#include "services.hpp"
Shawn McCarney4bf310e2020-03-10 17:48:11 -050021
22#include <memory>
Shawn McCarneya2461b32019-10-24 18:53:01 -050023#include <string>
Shawn McCarney4bf310e2020-03-10 17:48:11 -050024#include <utility>
Shawn McCarneya2461b32019-10-24 18:53:01 -050025
Shawn McCarneyea7385b2019-11-07 12:19:32 -060026namespace phosphor::power::regulators
Shawn McCarneya2461b32019-10-24 18:53:01 -050027{
28
Shawn McCarney779b9562020-04-13 17:05:45 -050029// Forward declarations to avoid circular dependencies
30class Chassis;
31class Device;
32class System;
33
Shawn McCarneya2461b32019-10-24 18:53:01 -050034/**
35 * @class Rail
36 *
37 * A voltage rail produced by a voltage regulator.
38 *
39 * Voltage regulators produce one or more rails. Each rail typically provides a
40 * different output voltage level, such as 1.1V.
41 */
42class Rail
43{
44 public:
45 // Specify which compiler-generated methods we want
46 Rail() = delete;
47 Rail(const Rail&) = delete;
48 Rail(Rail&&) = delete;
49 Rail& operator=(const Rail&) = delete;
50 Rail& operator=(Rail&&) = delete;
51 ~Rail() = default;
52
53 /**
54 * Constructor.
55 *
56 * @param id unique rail ID
Shawn McCarney4bf310e2020-03-10 17:48:11 -050057 * @param configuration configuration changes to apply to this rail, if any
58 * @param sensorMonitoring sensor monitoring for this rail, if any
Shawn McCarneya2461b32019-10-24 18:53:01 -050059 */
Shawn McCarney4bf310e2020-03-10 17:48:11 -050060 explicit Rail(
61 const std::string& id,
62 std::unique_ptr<Configuration> configuration = nullptr,
63 std::unique_ptr<SensorMonitoring> sensorMonitoring = nullptr) :
64 id{id},
65 configuration{std::move(configuration)}, sensorMonitoring{std::move(
66 sensorMonitoring)}
Adriana Kobylak0c9a33d2021-09-13 18:05:09 +000067 {}
Shawn McCarneya2461b32019-10-24 18:53:01 -050068
69 /**
Shawn McCarney2ccf9612021-05-14 11:09:17 -050070 * Clears all error history.
71 *
72 * All data on previously logged errors will be deleted. If errors occur
73 * again in the future they will be logged again.
74 *
75 * This method is normally called when the system is being powered on.
76 */
77 void clearErrorHistory();
78
79 /**
Shawn McCarney779b9562020-04-13 17:05:45 -050080 * Configure this rail.
81 *
82 * Applies the configuration changes that are defined for this rail, if any.
83 *
84 * This method should be called during the boot before regulators are
85 * enabled.
86 *
Bob King23243f82020-07-29 10:38:57 +080087 * @param services system services like error logging and the journal
Shawn McCarney779b9562020-04-13 17:05:45 -050088 * @param system system that contains the chassis
89 * @param chassis chassis that contains the device
90 * @param device device that contains this rail
91 */
Bob King23243f82020-07-29 10:38:57 +080092 void configure(Services& services, System& system, Chassis& chassis,
93 Device& device);
Shawn McCarney779b9562020-04-13 17:05:45 -050094
95 /**
Shawn McCarney4bf310e2020-03-10 17:48:11 -050096 * Returns the configuration changes to apply to this rail, if any.
97 *
98 * @return Pointer to Configuration object. Will equal nullptr if no
99 * configuration changes are defined for this rail.
100 */
101 const std::unique_ptr<Configuration>& getConfiguration() const
102 {
103 return configuration;
104 }
105
106 /**
Shawn McCarneya2461b32019-10-24 18:53:01 -0500107 * Returns the unique ID of this rail.
108 *
109 * @return rail ID
110 */
Shawn McCarney4afb2852019-10-27 18:28:53 -0500111 const std::string& getID() const
Shawn McCarneya2461b32019-10-24 18:53:01 -0500112 {
113 return id;
114 }
115
Shawn McCarney4bf310e2020-03-10 17:48:11 -0500116 /**
Bob King7b743432020-06-22 17:35:04 +0800117 * Monitor the sensors for this rail.
118 *
119 * Sensor monitoring is optional. If sensor monitoring is defined for this
120 * rail, the sensor values are read.
121 *
Shawn McCarney54b3ab92021-09-14 17:28:56 -0500122 * This method should be called repeatedly based on a timer.
Bob King7b743432020-06-22 17:35:04 +0800123 *
Bob King8a552922020-08-05 17:02:31 +0800124 * @param services system services like error logging and the journal
Bob King7b743432020-06-22 17:35:04 +0800125 * @param system system that contains the chassis
126 * @param chassis chassis that contains the device
127 * @param device device that contains this rail
128 */
Bob King8a552922020-08-05 17:02:31 +0800129 void monitorSensors(Services& services, System& system, Chassis& chassis,
130 Device& device);
Bob King7b743432020-06-22 17:35:04 +0800131
132 /**
Shawn McCarney4bf310e2020-03-10 17:48:11 -0500133 * Returns the sensor monitoring for this rail, if any.
134 *
135 * @return Pointer to SensorMonitoring object. Will equal nullptr if no
136 * sensor monitoring is defined for this rail.
137 */
138 const std::unique_ptr<SensorMonitoring>& getSensorMonitoring() const
139 {
140 return sensorMonitoring;
141 }
142
Shawn McCarneya2461b32019-10-24 18:53:01 -0500143 private:
144 /**
145 * Unique ID of this rail.
146 */
147 const std::string id{};
Shawn McCarney4bf310e2020-03-10 17:48:11 -0500148
149 /**
150 * Configuration changes to apply to this rail, if any. Set to nullptr if
151 * no configuration changes are defined for this rail.
152 */
153 std::unique_ptr<Configuration> configuration{};
154
155 /**
156 * Sensor monitoring for this rail, if any. Set to nullptr if no sensor
157 * monitoring is defined for this rail.
158 */
159 std::unique_ptr<SensorMonitoring> sensorMonitoring{};
Shawn McCarneya2461b32019-10-24 18:53:01 -0500160};
161
Shawn McCarneyea7385b2019-11-07 12:19:32 -0600162} // namespace phosphor::power::regulators