Lines Matching full:rail
35 * @class Rail
37 * A voltage rail produced by a voltage regulator.
39 * Voltage regulators produce one or more rails. Each rail typically provides a
42 class Rail class
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;
56 * @param id unique rail ID
57 * @param configuration configuration changes to apply to this rail, if any
58 * @param sensorMonitoring sensor monitoring for this rail, if any
60 explicit Rail( in Rail() function in phosphor::power::regulators::Rail
79 * Configure this rail.
81 * Applies the configuration changes that are defined for this rail, if any.
89 * @param device device that contains this rail
95 * Returns the configuration changes to apply to this rail, if any.
98 * configuration changes are defined for this rail.
106 * Returns the unique ID of this rail.
108 * @return rail ID
116 * Monitor the sensors for this rail.
119 * rail, the sensor values are read.
126 * @param device device that contains this rail
132 * Returns the sensor monitoring for this rail, if any.
135 * sensor monitoring is defined for this rail.
144 * Unique ID of this rail.
149 * Configuration changes to apply to this rail, if any. Set to nullptr if
150 * no configuration changes are defined for this rail.
155 * Sensor monitoring for this rail, if any. Set to nullptr if no sensor
156 * monitoring is defined for this rail.