blob: b8880c7f8be1c6c47b5ebf94663c79e47098c65f [file] [log] [blame]
Viresh Kumarf59d3ee2015-09-04 13:47:26 +05301/*
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>
Viresh Kumardeaa5142015-11-11 07:59:01 +053020#include <linux/limits.h>
Viresh Kumarf59d3ee2015-09-04 13:47:26 +053021#include <linux/pm_opp.h>
22#include <linux/rculist.h>
23#include <linux/rcupdate.h>
24
Viresh Kumar87b41152015-11-05 14:21:19 +053025/* Lock to allow exclusive modification to the device and opp lists */
26extern struct mutex dev_opp_list_lock;
27
Viresh Kumarf59d3ee2015-09-04 13:47:26 +053028/*
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.
Viresh Kumarf59d3ee2015-09-04 13:47:26 +053054 * @available: true/false - marks if this OPP as available or not
Viresh Kumardc4e7b12015-11-19 09:13:56 +053055 * @dynamic: not-created from static DT entries.
Viresh Kumarf59d3ee2015-09-04 13:47:26 +053056 * @turbo: true if turbo (boost) OPP
Viresh Kumardeaa5142015-11-11 07:59:01 +053057 * @suspend: true if suspend OPP
Viresh Kumarf59d3ee2015-09-04 13:47:26 +053058 * @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.
Viresh Kumardeaa5142015-11-11 07:59:01 +053068 * @dentry: debugfs dentry pointer (per opp)
Viresh Kumarf59d3ee2015-09-04 13:47:26 +053069 *
70 * This structure stores the OPP information for a given device.
71 */
72struct dev_pm_opp {
73 struct list_head node;
74
75 bool available;
76 bool dynamic;
77 bool turbo;
Viresh Kumardeaa5142015-11-11 07:59:01 +053078 bool suspend;
Viresh Kumarf59d3ee2015-09-04 13:47:26 +053079 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;
Viresh Kumardeaa5142015-11-11 07:59:01 +053091
92#ifdef CONFIG_DEBUG_FS
93 struct dentry *dentry;
94#endif
Viresh Kumarf59d3ee2015-09-04 13:47:26 +053095};
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
Viresh Kumardeaa5142015-11-11 07:59:01 +0530102 * @dentry: debugfs dentry pointer (per device)
Viresh Kumarf59d3ee2015-09-04 13:47:26 +0530103 *
104 * This is an internal data structure maintaining the list of devices that are
105 * managed by 'struct device_opp'.
106 */
107struct device_list_opp {
108 struct list_head node;
109 const struct device *dev;
110 struct rcu_head rcu_head;
Viresh Kumardeaa5142015-11-11 07:59:01 +0530111
112#ifdef CONFIG_DEBUG_FS
113 struct dentry *dentry;
114#endif
Viresh Kumarf59d3ee2015-09-04 13:47:26 +0530115};
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.
Viresh Kumardc4e7b12015-11-19 09:13:56 +0530129 * @clock_latency_ns_max: Max clock latency in nanoseconds.
Viresh Kumarf59d3ee2015-09-04 13:47:26 +0530130 * @shared_opp: OPP is shared between multiple devices.
Viresh Kumardc4e7b12015-11-19 09:13:56 +0530131 * @suspend_opp: Pointer to OPP to be used during device suspend.
Viresh Kumardeaa5142015-11-11 07:59:01 +0530132 * @dentry: debugfs dentry pointer of the real device directory (not links).
133 * @dentry_name: Name of the real dentry.
Viresh Kumarf59d3ee2015-09-04 13:47:26 +0530134 *
135 * This is an internal data structure maintaining the link to opps attached to
136 * a device. This structure is not meant to be shared to users as it is
137 * meant for book keeping and private to OPP library.
138 *
139 * Because the opp structures can be used from both rcu and srcu readers, we
140 * need to wait for the grace period of both of them before freeing any
141 * resources. And so we have used kfree_rcu() from within call_srcu() handlers.
142 */
143struct device_opp {
144 struct list_head node;
145
146 struct srcu_notifier_head srcu_head;
147 struct rcu_head rcu_head;
148 struct list_head dev_list;
149 struct list_head opp_list;
150
151 struct device_node *np;
152 unsigned long clock_latency_ns_max;
153 bool shared_opp;
154 struct dev_pm_opp *suspend_opp;
Viresh Kumardeaa5142015-11-11 07:59:01 +0530155
156#ifdef CONFIG_DEBUG_FS
157 struct dentry *dentry;
158 char dentry_name[NAME_MAX];
159#endif
Viresh Kumarf59d3ee2015-09-04 13:47:26 +0530160};
161
162/* Routines internal to opp core */
163struct device_opp *_find_device_opp(struct device *dev);
164struct device_list_opp *_add_list_dev(const struct device *dev,
165 struct device_opp *dev_opp);
166struct device_node *_of_get_opp_desc_node(struct device *dev);
167
Viresh Kumardeaa5142015-11-11 07:59:01 +0530168#ifdef CONFIG_DEBUG_FS
169void opp_debug_remove_one(struct dev_pm_opp *opp);
170int opp_debug_create_one(struct dev_pm_opp *opp, struct device_opp *dev_opp);
171int opp_debug_register(struct device_list_opp *list_dev,
172 struct device_opp *dev_opp);
173void opp_debug_unregister(struct device_list_opp *list_dev,
174 struct device_opp *dev_opp);
175#else
176static inline void opp_debug_remove_one(struct dev_pm_opp *opp) {}
177
178static inline int opp_debug_create_one(struct dev_pm_opp *opp,
179 struct device_opp *dev_opp)
180{ return 0; }
181static inline int opp_debug_register(struct device_list_opp *list_dev,
182 struct device_opp *dev_opp)
183{ return 0; }
184
185static inline void opp_debug_unregister(struct device_list_opp *list_dev,
186 struct device_opp *dev_opp)
187{ }
188#endif /* DEBUG_FS */
189
Viresh Kumarf59d3ee2015-09-04 13:47:26 +0530190#endif /* __DRIVER_OPP_H__ */