1
2
3
4
5
6#include <linux/device.h>
7#include <linux/list.h>
8#include <linux/module.h>
9#include <linux/of.h>
10#include <linux/slab.h>
11#include <linux/soc/qcom/smem_state.h>
12
13static LIST_HEAD(smem_states);
14static DEFINE_MUTEX(list_lock);
15
16
17
18
19
20
21
22
23
24
25struct qcom_smem_state {
26 struct kref refcount;
27 bool orphan;
28
29 struct list_head list;
30 struct device_node *of_node;
31
32 void *priv;
33
34 struct qcom_smem_state_ops ops;
35};
36
37
38
39
40
41
42
43
44
45int qcom_smem_state_update_bits(struct qcom_smem_state *state,
46 u32 mask,
47 u32 value)
48{
49 if (state->orphan)
50 return -ENXIO;
51
52 if (!state->ops.update_bits)
53 return -ENOTSUPP;
54
55 return state->ops.update_bits(state->priv, mask, value);
56}
57EXPORT_SYMBOL_GPL(qcom_smem_state_update_bits);
58
59static struct qcom_smem_state *of_node_to_state(struct device_node *np)
60{
61 struct qcom_smem_state *state;
62
63 mutex_lock(&list_lock);
64
65 list_for_each_entry(state, &smem_states, list) {
66 if (state->of_node == np) {
67 kref_get(&state->refcount);
68 goto unlock;
69 }
70 }
71 state = ERR_PTR(-EPROBE_DEFER);
72
73unlock:
74 mutex_unlock(&list_lock);
75
76 return state;
77}
78
79
80
81
82
83
84
85
86
87
88struct qcom_smem_state *qcom_smem_state_get(struct device *dev,
89 const char *con_id,
90 unsigned *bit)
91{
92 struct qcom_smem_state *state;
93 struct of_phandle_args args;
94 int index = 0;
95 int ret;
96
97 if (con_id) {
98 index = of_property_match_string(dev->of_node,
99 "qcom,smem-state-names",
100 con_id);
101 if (index < 0) {
102 dev_err(dev, "missing qcom,smem-state-names\n");
103 return ERR_PTR(index);
104 }
105 }
106
107 ret = of_parse_phandle_with_args(dev->of_node,
108 "qcom,smem-states",
109 "#qcom,smem-state-cells",
110 index,
111 &args);
112 if (ret) {
113 dev_err(dev, "failed to parse qcom,smem-states property\n");
114 return ERR_PTR(ret);
115 }
116
117 if (args.args_count != 1) {
118 dev_err(dev, "invalid #qcom,smem-state-cells\n");
119 return ERR_PTR(-EINVAL);
120 }
121
122 state = of_node_to_state(args.np);
123 if (IS_ERR(state))
124 goto put;
125
126 *bit = args.args[0];
127
128put:
129 of_node_put(args.np);
130 return state;
131}
132EXPORT_SYMBOL_GPL(qcom_smem_state_get);
133
134static void qcom_smem_state_release(struct kref *ref)
135{
136 struct qcom_smem_state *state = container_of(ref, struct qcom_smem_state, refcount);
137
138 list_del(&state->list);
139 kfree(state);
140}
141
142
143
144
145
146void qcom_smem_state_put(struct qcom_smem_state *state)
147{
148 mutex_lock(&list_lock);
149 kref_put(&state->refcount, qcom_smem_state_release);
150 mutex_unlock(&list_lock);
151}
152EXPORT_SYMBOL_GPL(qcom_smem_state_put);
153
154
155
156
157
158
159
160struct qcom_smem_state *qcom_smem_state_register(struct device_node *of_node,
161 const struct qcom_smem_state_ops *ops,
162 void *priv)
163{
164 struct qcom_smem_state *state;
165
166 state = kzalloc(sizeof(*state), GFP_KERNEL);
167 if (!state)
168 return ERR_PTR(-ENOMEM);
169
170 kref_init(&state->refcount);
171
172 state->of_node = of_node;
173 state->ops = *ops;
174 state->priv = priv;
175
176 mutex_lock(&list_lock);
177 list_add(&state->list, &smem_states);
178 mutex_unlock(&list_lock);
179
180 return state;
181}
182EXPORT_SYMBOL_GPL(qcom_smem_state_register);
183
184
185
186
187
188void qcom_smem_state_unregister(struct qcom_smem_state *state)
189{
190 state->orphan = true;
191 qcom_smem_state_put(state);
192}
193EXPORT_SYMBOL_GPL(qcom_smem_state_unregister);
194