Lines Matching +full:dynamic +full:- +full:power +full:- +full:switching
1 /* SPDX-License-Identifier: GPL-2.0-only */
5 * Copyright (C) 2009-2010 Texas Instruments Incorporated.
35 * |- device 1 (represents voltage domain 1)
36 * | |- opp 1 (availability, freq, voltage)
37 * | |- opp 2 ..
39 * | `- opp n ..
40 * |- device 2 (represents the next voltage domain)
42 * `- device m (represents mth voltage domain)
48 * struct dev_pm_opp - Generic OPP description structure
55 * @available: true/false - marks if this OPP as available or not
56 * @dynamic: not-created from static DT entries.
59 * @pstate: Device's power domain's performance state.
62 * @supplies: Power supplies voltage/current values
64 * @clock_latency_ns: Latency (in nanoseconds) of switching to this OPP's
78 bool dynamic; member
101 * struct opp_device - devices managed by 'struct opp_table'
125 * struct opp_table - Device opp structure
126 * @node: table node - contains the devices with OPPs that
149 * @regulator_count: Number of power supply regulators. Its value can be -1
150 * (uninitialized), 0 (no opp-microvolt property) or > 0 (has opp-microvolt
155 * @genpd_performance_state: Device's power domain support performance state.
224 …v1(struct opp_table *opp_table, struct device *dev, unsigned long freq, long u_volt, bool dynamic);