blob: a6bd8d2c2b47f7d4db64a97d52b354058643f4eb [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.
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
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.
129 * @shared_opp: OPP is shared between multiple devices.
Viresh Kumardeaa5142015-11-11 07:59:01 +0530130 * @dentry: debugfs dentry pointer of the real device directory (not links).
131 * @dentry_name: Name of the real dentry.
Viresh Kumarf59d3ee2015-09-04 13:47:26 +0530132 *
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 */
141struct 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;
Viresh Kumardeaa5142015-11-11 07:59:01 +0530153
154#ifdef CONFIG_DEBUG_FS
155 struct dentry *dentry;
156 char dentry_name[NAME_MAX];
157#endif
Viresh Kumarf59d3ee2015-09-04 13:47:26 +0530158};
159
160/* Routines internal to opp core */
161struct device_opp *_find_device_opp(struct device *dev);
162struct device_list_opp *_add_list_dev(const struct device *dev,
163 struct device_opp *dev_opp);
164struct device_node *_of_get_opp_desc_node(struct device *dev);
165
Viresh Kumardeaa5142015-11-11 07:59:01 +0530166#ifdef CONFIG_DEBUG_FS
167void opp_debug_remove_one(struct dev_pm_opp *opp);
168int opp_debug_create_one(struct dev_pm_opp *opp, struct device_opp *dev_opp);
169int opp_debug_register(struct device_list_opp *list_dev,
170 struct device_opp *dev_opp);
171void opp_debug_unregister(struct device_list_opp *list_dev,
172 struct device_opp *dev_opp);
173#else
174static inline void opp_debug_remove_one(struct dev_pm_opp *opp) {}
175
176static inline int opp_debug_create_one(struct dev_pm_opp *opp,
177 struct device_opp *dev_opp)
178{ return 0; }
179static inline int opp_debug_register(struct device_list_opp *list_dev,
180 struct device_opp *dev_opp)
181{ return 0; }
182
183static inline void opp_debug_unregister(struct device_list_opp *list_dev,
184 struct device_opp *dev_opp)
185{ }
186#endif /* DEBUG_FS */
187
Viresh Kumarf59d3ee2015-09-04 13:47:26 +0530188#endif /* __DRIVER_OPP_H__ */