Linux Kernel
3.7.1
|
Data Fields | |
struct list_head | node |
bool | available |
unsigned long | rate |
unsigned long | u_volt |
struct device_opp * | dev_opp |
struct opp - Generic OPP description structure : opp list node. The nodes are maintained throughout the lifetime of boot. It is expected only an optimal set of OPPs are added to the library by the SoC framework. RCU usage: opp list is traversed with RCU locks. node modification is possible realtime, hence the modifications are protected by the dev_opp_list_lock for integrity. IMPORTANT: the opp nodes should be maintained in increasing order. : true/false - marks if this OPP as available or not : Frequency in hertz : Nominal voltage in microvolts corresponding to this OPP : points back to the device_opp struct this opp belongs to
This structure stores the OPP information for a given device.
struct device_opp* dev_opp |