blob: 5877bc0b5d38fae7b9e8c996ca3d74f73a557335 [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) :
Patrick Williamsf5402192024-08-16 15:20:53 -040064 id{id}, configuration{std::move(configuration)},
Patrick Williams48781ae2023-05-10 07:50:50 -050065 sensorMonitoring{std::move(sensorMonitoring)}
Adriana Kobylak0c9a33d2021-09-13 18:05:09 +000066 {}
Shawn McCarneya2461b32019-10-24 18:53:01 -050067
68 /**
Shawn McCarney2ccf9612021-05-14 11:09:17 -050069 * Clears all error history.
70 *
71 * All data on previously logged errors will be deleted. If errors occur
72 * again in the future they will be logged again.
73 *
74 * This method is normally called when the system is being powered on.
75 */
76 void clearErrorHistory();
77
78 /**
Shawn McCarney779b9562020-04-13 17:05:45 -050079 * Configure this rail.
80 *
81 * Applies the configuration changes that are defined for this rail, if any.
82 *
83 * This method should be called during the boot before regulators are
84 * enabled.
85 *
Bob King23243f82020-07-29 10:38:57 +080086 * @param services system services like error logging and the journal
Shawn McCarney779b9562020-04-13 17:05:45 -050087 * @param system system that contains the chassis
88 * @param chassis chassis that contains the device
89 * @param device device that contains this rail
90 */
Bob King23243f82020-07-29 10:38:57 +080091 void configure(Services& services, System& system, Chassis& chassis,
92 Device& device);
Shawn McCarney779b9562020-04-13 17:05:45 -050093
94 /**
Shawn McCarney4bf310e2020-03-10 17:48:11 -050095 * Returns the configuration changes to apply to this rail, if any.
96 *
97 * @return Pointer to Configuration object. Will equal nullptr if no
98 * configuration changes are defined for this rail.
99 */
100 const std::unique_ptr<Configuration>& getConfiguration() const
101 {
102 return configuration;
103 }
104
105 /**
Shawn McCarneya2461b32019-10-24 18:53:01 -0500106 * Returns the unique ID of this rail.
107 *
108 * @return rail ID
109 */
Shawn McCarney4afb2852019-10-27 18:28:53 -0500110 const std::string& getID() const
Shawn McCarneya2461b32019-10-24 18:53:01 -0500111 {
112 return id;
113 }
114
Shawn McCarney4bf310e2020-03-10 17:48:11 -0500115 /**
Bob King7b743432020-06-22 17:35:04 +0800116 * Monitor the sensors for this rail.
117 *
118 * Sensor monitoring is optional. If sensor monitoring is defined for this
119 * rail, the sensor values are read.
120 *
Shawn McCarney54b3ab92021-09-14 17:28:56 -0500121 * This method should be called repeatedly based on a timer.
Bob King7b743432020-06-22 17:35:04 +0800122 *
Bob King8a552922020-08-05 17:02:31 +0800123 * @param services system services like error logging and the journal
Bob King7b743432020-06-22 17:35:04 +0800124 * @param system system that contains the chassis
125 * @param chassis chassis that contains the device
126 * @param device device that contains this rail
127 */
Bob King8a552922020-08-05 17:02:31 +0800128 void monitorSensors(Services& services, System& system, Chassis& chassis,
129 Device& device);
Bob King7b743432020-06-22 17:35:04 +0800130
131 /**
Shawn McCarney4bf310e2020-03-10 17:48:11 -0500132 * Returns the sensor monitoring for this rail, if any.
133 *
134 * @return Pointer to SensorMonitoring object. Will equal nullptr if no
135 * sensor monitoring is defined for this rail.
136 */
137 const std::unique_ptr<SensorMonitoring>& getSensorMonitoring() const
138 {
139 return sensorMonitoring;
140 }
141
Shawn McCarneya2461b32019-10-24 18:53:01 -0500142 private:
143 /**
144 * Unique ID of this rail.
145 */
146 const std::string id{};
Shawn McCarney4bf310e2020-03-10 17:48:11 -0500147
148 /**
149 * Configuration changes to apply to this rail, if any. Set to nullptr if
150 * no configuration changes are defined for this rail.
151 */
152 std::unique_ptr<Configuration> configuration{};
153
154 /**
155 * Sensor monitoring for this rail, if any. Set to nullptr if no sensor
156 * monitoring is defined for this rail.
157 */
158 std::unique_ptr<SensorMonitoring> sensorMonitoring{};
Shawn McCarneya2461b32019-10-24 18:53:01 -0500159};
160
Shawn McCarneyea7385b2019-11-07 12:19:32 -0600161} // namespace phosphor::power::regulators