1 // SPDX-License-Identifier: GPL-2.0-only
3 * devfreq-event: a framework to provide raw data and events of devfreq devices
5 * Copyright (C) 2015 Samsung Electronics
6 * Author: Chanwoo Choi <cw00.choi@samsung.com>
8 * This driver is based on drivers/devfreq/devfreq.c.
11 #include <linux/devfreq-event.h>
12 #include <linux/kernel.h>
13 #include <linux/err.h>
14 #include <linux/init.h>
15 #include <linux/export.h>
16 #include <linux/slab.h>
17 #include <linux/list.h>
20 static struct class *devfreq_event_class
;
22 /* The list of all devfreq event list */
23 static LIST_HEAD(devfreq_event_list
);
24 static DEFINE_MUTEX(devfreq_event_list_lock
);
26 #define to_devfreq_event(DEV) container_of(DEV, struct devfreq_event_dev, dev)
29 * devfreq_event_enable_edev() - Enable the devfreq-event dev and increase
30 * the enable_count of devfreq-event dev.
31 * @edev : the devfreq-event device
33 * Note that this function increase the enable_count and enable the
34 * devfreq-event device. The devfreq-event device should be enabled before
35 * using it by devfreq device.
37 int devfreq_event_enable_edev(struct devfreq_event_dev
*edev
)
41 if (!edev
|| !edev
->desc
)
44 mutex_lock(&edev
->lock
);
45 if (edev
->desc
->ops
&& edev
->desc
->ops
->enable
46 && edev
->enable_count
== 0) {
47 ret
= edev
->desc
->ops
->enable(edev
);
53 mutex_unlock(&edev
->lock
);
57 EXPORT_SYMBOL_GPL(devfreq_event_enable_edev
);
60 * devfreq_event_disable_edev() - Disable the devfreq-event dev and decrease
61 * the enable_count of the devfreq-event dev.
62 * @edev : the devfreq-event device
64 * Note that this function decrease the enable_count and disable the
65 * devfreq-event device. After the devfreq-event device is disabled,
66 * devfreq device can't use the devfreq-event device for get/set/reset
69 int devfreq_event_disable_edev(struct devfreq_event_dev
*edev
)
73 if (!edev
|| !edev
->desc
)
76 mutex_lock(&edev
->lock
);
77 if (edev
->enable_count
<= 0) {
78 dev_warn(&edev
->dev
, "unbalanced enable_count\n");
83 if (edev
->desc
->ops
&& edev
->desc
->ops
->disable
84 && edev
->enable_count
== 1) {
85 ret
= edev
->desc
->ops
->disable(edev
);
91 mutex_unlock(&edev
->lock
);
95 EXPORT_SYMBOL_GPL(devfreq_event_disable_edev
);
98 * devfreq_event_is_enabled() - Check whether devfreq-event dev is enabled or
100 * @edev : the devfreq-event device
102 * Note that this function check whether devfreq-event dev is enabled or not.
103 * If return true, the devfreq-event dev is enabeld. If return false, the
104 * devfreq-event dev is disabled.
106 bool devfreq_event_is_enabled(struct devfreq_event_dev
*edev
)
108 bool enabled
= false;
110 if (!edev
|| !edev
->desc
)
113 mutex_lock(&edev
->lock
);
115 if (edev
->enable_count
> 0)
118 mutex_unlock(&edev
->lock
);
122 EXPORT_SYMBOL_GPL(devfreq_event_is_enabled
);
125 * devfreq_event_set_event() - Set event to devfreq-event dev to start.
126 * @edev : the devfreq-event device
128 * Note that this function set the event to the devfreq-event device to start
129 * for getting the event data which could be various event type.
131 int devfreq_event_set_event(struct devfreq_event_dev
*edev
)
135 if (!edev
|| !edev
->desc
)
138 if (!edev
->desc
->ops
|| !edev
->desc
->ops
->set_event
)
141 if (!devfreq_event_is_enabled(edev
))
144 mutex_lock(&edev
->lock
);
145 ret
= edev
->desc
->ops
->set_event(edev
);
146 mutex_unlock(&edev
->lock
);
150 EXPORT_SYMBOL_GPL(devfreq_event_set_event
);
153 * devfreq_event_get_event() - Get {load|total}_count from devfreq-event dev.
154 * @edev : the devfreq-event device
155 * @edata : the calculated data of devfreq-event device
157 * Note that this function get the calculated event data from devfreq-event dev
158 * after stoping the progress of whole sequence of devfreq-event dev.
160 int devfreq_event_get_event(struct devfreq_event_dev
*edev
,
161 struct devfreq_event_data
*edata
)
165 if (!edev
|| !edev
->desc
)
168 if (!edev
->desc
->ops
|| !edev
->desc
->ops
->get_event
)
171 if (!devfreq_event_is_enabled(edev
))
174 edata
->total_count
= edata
->load_count
= 0;
176 mutex_lock(&edev
->lock
);
177 ret
= edev
->desc
->ops
->get_event(edev
, edata
);
179 edata
->total_count
= edata
->load_count
= 0;
180 mutex_unlock(&edev
->lock
);
184 EXPORT_SYMBOL_GPL(devfreq_event_get_event
);
187 * devfreq_event_reset_event() - Reset all opeations of devfreq-event dev.
188 * @edev : the devfreq-event device
190 * Note that this function stop all operations of devfreq-event dev and reset
191 * the current event data to make the devfreq-event device into initial state.
193 int devfreq_event_reset_event(struct devfreq_event_dev
*edev
)
197 if (!edev
|| !edev
->desc
)
200 if (!devfreq_event_is_enabled(edev
))
203 mutex_lock(&edev
->lock
);
204 if (edev
->desc
->ops
&& edev
->desc
->ops
->reset
)
205 ret
= edev
->desc
->ops
->reset(edev
);
206 mutex_unlock(&edev
->lock
);
210 EXPORT_SYMBOL_GPL(devfreq_event_reset_event
);
213 * devfreq_event_get_edev_by_phandle() - Get the devfreq-event dev from
215 * @dev : the pointer to the given device
216 * @index : the index into list of devfreq-event device
218 * Note that this function return the pointer of devfreq-event device.
220 struct devfreq_event_dev
*devfreq_event_get_edev_by_phandle(struct device
*dev
,
223 struct device_node
*node
;
224 struct devfreq_event_dev
*edev
;
227 return ERR_PTR(-EINVAL
);
229 node
= of_parse_phandle(dev
->of_node
, "devfreq-events", index
);
231 return ERR_PTR(-ENODEV
);
233 mutex_lock(&devfreq_event_list_lock
);
234 list_for_each_entry(edev
, &devfreq_event_list
, node
) {
235 if (edev
->dev
.parent
&& edev
->dev
.parent
->of_node
== node
)
239 list_for_each_entry(edev
, &devfreq_event_list
, node
) {
240 if (of_node_name_eq(node
, edev
->desc
->name
))
245 mutex_unlock(&devfreq_event_list_lock
);
249 return ERR_PTR(-ENODEV
);
256 EXPORT_SYMBOL_GPL(devfreq_event_get_edev_by_phandle
);
259 * devfreq_event_get_edev_count() - Get the count of devfreq-event dev
260 * @dev : the pointer to the given device
262 * Note that this function return the count of devfreq-event devices.
264 int devfreq_event_get_edev_count(struct device
*dev
)
269 dev_err(dev
, "device does not have a device node entry\n");
273 count
= of_property_count_elems_of_size(dev
->of_node
, "devfreq-events",
277 "failed to get the count of devfreq-event in %pOF node\n",
284 EXPORT_SYMBOL_GPL(devfreq_event_get_edev_count
);
286 static void devfreq_event_release_edev(struct device
*dev
)
288 struct devfreq_event_dev
*edev
= to_devfreq_event(dev
);
294 * devfreq_event_add_edev() - Add new devfreq-event device.
295 * @dev : the device owning the devfreq-event device being created
296 * @desc : the devfreq-event device's decriptor which include essential
297 * data for devfreq-event device.
299 * Note that this function add new devfreq-event device to devfreq-event class
300 * list and register the device of the devfreq-event device.
302 struct devfreq_event_dev
*devfreq_event_add_edev(struct device
*dev
,
303 struct devfreq_event_desc
*desc
)
305 struct devfreq_event_dev
*edev
;
306 static atomic_t event_no
= ATOMIC_INIT(-1);
310 return ERR_PTR(-EINVAL
);
312 if (!desc
->name
|| !desc
->ops
)
313 return ERR_PTR(-EINVAL
);
315 if (!desc
->ops
->set_event
|| !desc
->ops
->get_event
)
316 return ERR_PTR(-EINVAL
);
318 edev
= kzalloc(sizeof(struct devfreq_event_dev
), GFP_KERNEL
);
320 return ERR_PTR(-ENOMEM
);
322 mutex_init(&edev
->lock
);
324 edev
->enable_count
= 0;
325 edev
->dev
.parent
= dev
;
326 edev
->dev
.class = devfreq_event_class
;
327 edev
->dev
.release
= devfreq_event_release_edev
;
329 dev_set_name(&edev
->dev
, "event%d", atomic_inc_return(&event_no
));
330 ret
= device_register(&edev
->dev
);
332 put_device(&edev
->dev
);
335 dev_set_drvdata(&edev
->dev
, edev
);
337 INIT_LIST_HEAD(&edev
->node
);
339 mutex_lock(&devfreq_event_list_lock
);
340 list_add(&edev
->node
, &devfreq_event_list
);
341 mutex_unlock(&devfreq_event_list_lock
);
345 EXPORT_SYMBOL_GPL(devfreq_event_add_edev
);
348 * devfreq_event_remove_edev() - Remove the devfreq-event device registered.
349 * @edev : the devfreq-event device
351 * Note that this function removes the registered devfreq-event device.
353 int devfreq_event_remove_edev(struct devfreq_event_dev
*edev
)
358 WARN_ON(edev
->enable_count
);
360 mutex_lock(&devfreq_event_list_lock
);
361 list_del(&edev
->node
);
362 mutex_unlock(&devfreq_event_list_lock
);
364 device_unregister(&edev
->dev
);
368 EXPORT_SYMBOL_GPL(devfreq_event_remove_edev
);
370 static int devm_devfreq_event_match(struct device
*dev
, void *res
, void *data
)
372 struct devfreq_event_dev
**r
= res
;
374 if (WARN_ON(!r
|| !*r
))
380 static void devm_devfreq_event_release(struct device
*dev
, void *res
)
382 devfreq_event_remove_edev(*(struct devfreq_event_dev
**)res
);
386 * devm_devfreq_event_add_edev() - Resource-managed devfreq_event_add_edev()
387 * @dev : the device owning the devfreq-event device being created
388 * @desc : the devfreq-event device's decriptor which include essential
389 * data for devfreq-event device.
391 * Note that this function manages automatically the memory of devfreq-event
392 * device using device resource management and simplify the free operation
393 * for memory of devfreq-event device.
395 struct devfreq_event_dev
*devm_devfreq_event_add_edev(struct device
*dev
,
396 struct devfreq_event_desc
*desc
)
398 struct devfreq_event_dev
**ptr
, *edev
;
400 ptr
= devres_alloc(devm_devfreq_event_release
, sizeof(*ptr
),
403 return ERR_PTR(-ENOMEM
);
405 edev
= devfreq_event_add_edev(dev
, desc
);
408 return ERR_PTR(-ENOMEM
);
412 devres_add(dev
, ptr
);
416 EXPORT_SYMBOL_GPL(devm_devfreq_event_add_edev
);
419 * devm_devfreq_event_remove_edev()- Resource-managed devfreq_event_remove_edev()
420 * @dev : the device owning the devfreq-event device being created
421 * @edev : the devfreq-event device
423 * Note that this function manages automatically the memory of devfreq-event
424 * device using device resource management.
426 void devm_devfreq_event_remove_edev(struct device
*dev
,
427 struct devfreq_event_dev
*edev
)
429 WARN_ON(devres_release(dev
, devm_devfreq_event_release
,
430 devm_devfreq_event_match
, edev
));
432 EXPORT_SYMBOL_GPL(devm_devfreq_event_remove_edev
);
435 * Device attributes for devfreq-event class.
437 static ssize_t
name_show(struct device
*dev
, struct device_attribute
*attr
,
440 struct devfreq_event_dev
*edev
= to_devfreq_event(dev
);
442 if (!edev
|| !edev
->desc
)
445 return sprintf(buf
, "%s\n", edev
->desc
->name
);
447 static DEVICE_ATTR_RO(name
);
449 static ssize_t
enable_count_show(struct device
*dev
,
450 struct device_attribute
*attr
, char *buf
)
452 struct devfreq_event_dev
*edev
= to_devfreq_event(dev
);
454 if (!edev
|| !edev
->desc
)
457 return sprintf(buf
, "%d\n", edev
->enable_count
);
459 static DEVICE_ATTR_RO(enable_count
);
461 static struct attribute
*devfreq_event_attrs
[] = {
463 &dev_attr_enable_count
.attr
,
466 ATTRIBUTE_GROUPS(devfreq_event
);
468 static int __init
devfreq_event_init(void)
470 devfreq_event_class
= class_create(THIS_MODULE
, "devfreq-event");
471 if (IS_ERR(devfreq_event_class
)) {
472 pr_err("%s: couldn't create class\n", __FILE__
);
473 return PTR_ERR(devfreq_event_class
);
476 devfreq_event_class
->dev_groups
= devfreq_event_groups
;
480 subsys_initcall(devfreq_event_init
);