Lines Matching +full:dt +full:- +full:node
1 /* SPDX-License-Identifier: GPL-2.0-only */
5 * Copyright (C) 2009-2010 Texas Instruments Incorporated.
40 * struct opp_config_data - data for set config operations
55 * struct dev_pm_opp_icc_bw - Interconnect bandwidth values
70 * |- device 1 (represents voltage domain 1)
71 * | |- opp 1 (availability, freq, voltage)
72 * | |- opp 2 ..
74 * | `- opp n ..
75 * |- device 2 (represents the next voltage domain)
77 * `- device m (represents mth voltage domain)
83 * struct dev_pm_opp - Generic OPP description structure
84 * @node: opp table node. The nodes are maintained throughout the lifetime
90 * @available: true/false - marks if this OPP as available or not
91 * @dynamic: not-created from static DT entries.
103 * @np: OPP's device node.
109 struct list_head node; member
137 * struct opp_device - devices managed by 'struct opp_table'
138 * @node: list node
146 struct list_head node; member
161 * struct opp_table - Device opp structure
162 * @node: table node - contains the devices with OPPs that
170 * @np: struct device_node pointer for opp's DT node.
172 * @parsed_static_opps: Count of devices for which OPPs are initialized from DT.
183 * @prop_name: A name to postfix to many DT properties, while parsing them.
190 * @regulator_count: Number of power supply regulators. Its value can be -1
191 * (uninitialized), 0 (no opp-microvolt property) or > 0 (has opp-microvolt
207 struct list_head node, lazy; member
268 return unlikely(!list_empty(&opp_table->lazy)); in lazy_linking_pending()