PM / OPP: Add debugfs support
[firefly-linux-kernel-4.4.55.git] / drivers / base / power / opp / opp.h
1 /*
2  * Generic OPP Interface
3  *
4  * Copyright (C) 2009-2010 Texas Instruments Incorporated.
5  *      Nishanth Menon
6  *      Romit Dasgupta
7  *      Kevin Hilman
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License version 2 as
11  * published by the Free Software Foundation.
12  */
13
14 #ifndef __DRIVER_OPP_H__
15 #define __DRIVER_OPP_H__
16
17 #include <linux/device.h>
18 #include <linux/kernel.h>
19 #include <linux/list.h>
20 #include <linux/limits.h>
21 #include <linux/pm_opp.h>
22 #include <linux/rculist.h>
23 #include <linux/rcupdate.h>
24
25 /* Lock to allow exclusive modification to the device and opp lists */
26 extern struct mutex dev_opp_list_lock;
27
28 /*
29  * Internal data structure organization with the OPP layer library is as
30  * follows:
31  * dev_opp_list (root)
32  *      |- device 1 (represents voltage domain 1)
33  *      |       |- opp 1 (availability, freq, voltage)
34  *      |       |- opp 2 ..
35  *      ...     ...
36  *      |       `- opp n ..
37  *      |- device 2 (represents the next voltage domain)
38  *      ...
39  *      `- device m (represents mth voltage domain)
40  * device 1, 2.. are represented by dev_opp structure while each opp
41  * is represented by the opp structure.
42  */
43
44 /**
45  * struct dev_pm_opp - Generic OPP description structure
46  * @node:       opp list node. The nodes are maintained throughout the lifetime
47  *              of boot. It is expected only an optimal set of OPPs are
48  *              added to the library by the SoC framework.
49  *              RCU usage: opp list is traversed with RCU locks. node
50  *              modification is possible realtime, hence the modifications
51  *              are protected by the dev_opp_list_lock for integrity.
52  *              IMPORTANT: the opp nodes should be maintained in increasing
53  *              order.
54  * @dynamic:    not-created from static DT entries.
55  * @available:  true/false - marks if this OPP as available or not
56  * @turbo:      true if turbo (boost) OPP
57  * @suspend:    true if suspend OPP
58  * @rate:       Frequency in hertz
59  * @u_volt:     Target voltage in microvolts corresponding to this OPP
60  * @u_volt_min: Minimum voltage in microvolts corresponding to this OPP
61  * @u_volt_max: Maximum voltage in microvolts corresponding to this OPP
62  * @u_amp:      Maximum current drawn by the device in microamperes
63  * @clock_latency_ns: Latency (in nanoseconds) of switching to this OPP's
64  *              frequency from any other OPP's frequency.
65  * @dev_opp:    points back to the device_opp struct this opp belongs to
66  * @rcu_head:   RCU callback head used for deferred freeing
67  * @np:         OPP's device node.
68  * @dentry:     debugfs dentry pointer (per opp)
69  *
70  * This structure stores the OPP information for a given device.
71  */
72 struct dev_pm_opp {
73         struct list_head node;
74
75         bool available;
76         bool dynamic;
77         bool turbo;
78         bool suspend;
79         unsigned long rate;
80
81         unsigned long u_volt;
82         unsigned long u_volt_min;
83         unsigned long u_volt_max;
84         unsigned long u_amp;
85         unsigned long clock_latency_ns;
86
87         struct device_opp *dev_opp;
88         struct rcu_head rcu_head;
89
90         struct device_node *np;
91
92 #ifdef CONFIG_DEBUG_FS
93         struct dentry *dentry;
94 #endif
95 };
96
97 /**
98  * struct device_list_opp - devices managed by 'struct device_opp'
99  * @node:       list node
100  * @dev:        device to which the struct object belongs
101  * @rcu_head:   RCU callback head used for deferred freeing
102  * @dentry:     debugfs dentry pointer (per device)
103  *
104  * This is an internal data structure maintaining the list of devices that are
105  * managed by 'struct device_opp'.
106  */
107 struct device_list_opp {
108         struct list_head node;
109         const struct device *dev;
110         struct rcu_head rcu_head;
111
112 #ifdef CONFIG_DEBUG_FS
113         struct dentry *dentry;
114 #endif
115 };
116
117 /**
118  * struct device_opp - Device opp structure
119  * @node:       list node - contains the devices with OPPs that
120  *              have been registered. Nodes once added are not modified in this
121  *              list.
122  *              RCU usage: nodes are not modified in the list of device_opp,
123  *              however addition is possible and is secured by dev_opp_list_lock
124  * @srcu_head:  notifier head to notify the OPP availability changes.
125  * @rcu_head:   RCU callback head used for deferred freeing
126  * @dev_list:   list of devices that share these OPPs
127  * @opp_list:   list of opps
128  * @np:         struct device_node pointer for opp's DT node.
129  * @shared_opp: OPP is shared between multiple devices.
130  * @dentry:     debugfs dentry pointer of the real device directory (not links).
131  * @dentry_name: Name of the real dentry.
132  *
133  * This is an internal data structure maintaining the link to opps attached to
134  * a device. This structure is not meant to be shared to users as it is
135  * meant for book keeping and private to OPP library.
136  *
137  * Because the opp structures can be used from both rcu and srcu readers, we
138  * need to wait for the grace period of both of them before freeing any
139  * resources. And so we have used kfree_rcu() from within call_srcu() handlers.
140  */
141 struct device_opp {
142         struct list_head node;
143
144         struct srcu_notifier_head srcu_head;
145         struct rcu_head rcu_head;
146         struct list_head dev_list;
147         struct list_head opp_list;
148
149         struct device_node *np;
150         unsigned long clock_latency_ns_max;
151         bool shared_opp;
152         struct dev_pm_opp *suspend_opp;
153
154 #ifdef CONFIG_DEBUG_FS
155         struct dentry *dentry;
156         char dentry_name[NAME_MAX];
157 #endif
158 };
159
160 /* Routines internal to opp core */
161 struct device_opp *_find_device_opp(struct device *dev);
162 struct device_list_opp *_add_list_dev(const struct device *dev,
163                                       struct device_opp *dev_opp);
164 struct device_node *_of_get_opp_desc_node(struct device *dev);
165
166 #ifdef CONFIG_DEBUG_FS
167 void opp_debug_remove_one(struct dev_pm_opp *opp);
168 int opp_debug_create_one(struct dev_pm_opp *opp, struct device_opp *dev_opp);
169 int opp_debug_register(struct device_list_opp *list_dev,
170                        struct device_opp *dev_opp);
171 void opp_debug_unregister(struct device_list_opp *list_dev,
172                           struct device_opp *dev_opp);
173 #else
174 static inline void opp_debug_remove_one(struct dev_pm_opp *opp) {}
175
176 static inline int opp_debug_create_one(struct dev_pm_opp *opp,
177                                        struct device_opp *dev_opp)
178 { return 0; }
179 static inline int opp_debug_register(struct device_list_opp *list_dev,
180                                      struct device_opp *dev_opp)
181 { return 0; }
182
183 static inline void opp_debug_unregister(struct device_list_opp *list_dev,
184                                         struct device_opp *dev_opp)
185 { }
186 #endif          /* DEBUG_FS */
187
188 #endif          /* __DRIVER_OPP_H__ */