2 * devfreq-event: a framework to provide raw data and events of devfreq devices
4 * Copyright (C) 2015 Samsung Electronics
5 * Author: Chanwoo Choi <cw00.choi@samsung.com>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
11 * This driver is based on drivers/devfreq/devfreq.c.
14 #include <linux/devfreq-event.h>
15 #include <linux/kernel.h>
16 #include <linux/err.h>
17 #include <linux/init.h>
18 #include <linux/module.h>
19 #include <linux/slab.h>
20 #include <linux/list.h>
23 static struct class *devfreq_event_class;
25 /* The list of all devfreq event list */
26 static LIST_HEAD(devfreq_event_list);
27 static DEFINE_MUTEX(devfreq_event_list_lock);
29 #define to_devfreq_event(DEV) container_of(DEV, struct devfreq_event_dev, dev)
32 * devfreq_event_enable_edev() - Enable the devfreq-event dev and increase
33 * the enable_count of devfreq-event dev.
34 * @edev : the devfreq-event device
36 * Note that this function increase the enable_count and enable the
37 * devfreq-event device. The devfreq-event device should be enabled before
38 * using it by devfreq device.
40 int devfreq_event_enable_edev(struct devfreq_event_dev *edev)
44 if (!edev || !edev->desc)
47 mutex_lock(&edev->lock);
48 if (edev->desc->ops && edev->desc->ops->enable
49 && edev->enable_count == 0) {
50 ret = edev->desc->ops->enable(edev);
56 mutex_unlock(&edev->lock);
60 EXPORT_SYMBOL_GPL(devfreq_event_enable_edev);
63 * devfreq_event_disable_edev() - Disable the devfreq-event dev and decrease
64 * the enable_count of the devfreq-event dev.
65 * @edev : the devfreq-event device
67 * Note that this function decrease the enable_count and disable the
68 * devfreq-event device. After the devfreq-event device is disabled,
69 * devfreq device can't use the devfreq-event device for get/set/reset
72 int devfreq_event_disable_edev(struct devfreq_event_dev *edev)
76 if (!edev || !edev->desc)
79 mutex_lock(&edev->lock);
80 if (edev->enable_count <= 0) {
81 dev_warn(&edev->dev, "unbalanced enable_count\n");
86 if (edev->desc->ops && edev->desc->ops->disable
87 && edev->enable_count == 1) {
88 ret = edev->desc->ops->disable(edev);
94 mutex_unlock(&edev->lock);
98 EXPORT_SYMBOL_GPL(devfreq_event_disable_edev);
101 * devfreq_event_is_enabled() - Check whether devfreq-event dev is enabled or
103 * @edev : the devfreq-event device
105 * Note that this function check whether devfreq-event dev is enabled or not.
106 * If return true, the devfreq-event dev is enabeld. If return false, the
107 * devfreq-event dev is disabled.
109 bool devfreq_event_is_enabled(struct devfreq_event_dev *edev)
111 bool enabled = false;
113 if (!edev || !edev->desc)
116 mutex_lock(&edev->lock);
118 if (edev->enable_count > 0)
121 mutex_unlock(&edev->lock);
125 EXPORT_SYMBOL_GPL(devfreq_event_is_enabled);
128 * devfreq_event_set_event() - Set event to devfreq-event dev to start.
129 * @edev : the devfreq-event device
131 * Note that this function set the event to the devfreq-event device to start
132 * for getting the event data which could be various event type.
134 int devfreq_event_set_event(struct devfreq_event_dev *edev)
138 if (!edev || !edev->desc)
141 if (!edev->desc->ops || !edev->desc->ops->set_event)
144 if (!devfreq_event_is_enabled(edev))
147 mutex_lock(&edev->lock);
148 ret = edev->desc->ops->set_event(edev);
149 mutex_unlock(&edev->lock);
153 EXPORT_SYMBOL_GPL(devfreq_event_set_event);
156 * devfreq_event_get_event() - Get {load|total}_count from devfreq-event dev.
157 * @edev : the devfreq-event device
158 * @edata : the calculated data of devfreq-event device
160 * Note that this function get the calculated event data from devfreq-event dev
161 * after stoping the progress of whole sequence of devfreq-event dev.
163 int devfreq_event_get_event(struct devfreq_event_dev *edev,
164 struct devfreq_event_data *edata)
168 if (!edev || !edev->desc)
171 if (!edev->desc->ops || !edev->desc->ops->get_event)
174 if (!devfreq_event_is_enabled(edev))
177 edata->total_count = edata->load_count = 0;
179 mutex_lock(&edev->lock);
180 ret = edev->desc->ops->get_event(edev, edata);
182 edata->total_count = edata->load_count = 0;
183 mutex_unlock(&edev->lock);
187 EXPORT_SYMBOL_GPL(devfreq_event_get_event);
190 * devfreq_event_reset_event() - Reset all opeations of devfreq-event dev.
191 * @edev : the devfreq-event device
193 * Note that this function stop all operations of devfreq-event dev and reset
194 * the current event data to make the devfreq-event device into initial state.
196 int devfreq_event_reset_event(struct devfreq_event_dev *edev)
200 if (!edev || !edev->desc)
203 if (!devfreq_event_is_enabled(edev))
206 mutex_lock(&edev->lock);
207 if (edev->desc->ops && edev->desc->ops->reset)
208 ret = edev->desc->ops->reset(edev);
209 mutex_unlock(&edev->lock);
213 EXPORT_SYMBOL_GPL(devfreq_event_reset_event);
216 * devfreq_event_get_edev_by_phandle() - Get the devfreq-event dev from
218 * @dev : the pointer to the given device
219 * @index : the index into list of devfreq-event device
221 * Note that this function return the pointer of devfreq-event device.
223 struct devfreq_event_dev *devfreq_event_get_edev_by_phandle(struct device *dev,
226 struct device_node *node;
227 struct devfreq_event_dev *edev;
230 dev_err(dev, "device does not have a device node entry\n");
231 return ERR_PTR(-EINVAL);
234 node = of_parse_phandle(dev->of_node, "devfreq-events", index);
236 dev_err(dev, "failed to get phandle in %s node\n",
237 dev->of_node->full_name);
238 return ERR_PTR(-ENODEV);
241 mutex_lock(&devfreq_event_list_lock);
242 list_for_each_entry(edev, &devfreq_event_list, node) {
243 if (!strcmp(edev->desc->name, node->name))
248 mutex_unlock(&devfreq_event_list_lock);
251 dev_err(dev, "unable to get devfreq-event device : %s\n",
254 return ERR_PTR(-ENODEV);
261 EXPORT_SYMBOL_GPL(devfreq_event_get_edev_by_phandle);
264 * devfreq_event_get_edev_count() - Get the count of devfreq-event dev
265 * @dev : the pointer to the given device
267 * Note that this function return the count of devfreq-event devices.
269 int devfreq_event_get_edev_count(struct device *dev)
274 dev_err(dev, "device does not have a device node entry\n");
278 count = of_property_count_elems_of_size(dev->of_node, "devfreq-events",
282 "failed to get the count of devfreq-event in %s node\n",
283 dev->of_node->full_name);
289 EXPORT_SYMBOL_GPL(devfreq_event_get_edev_count);
291 static void devfreq_event_release_edev(struct device *dev)
293 struct devfreq_event_dev *edev = to_devfreq_event(dev);
299 * devfreq_event_add_edev() - Add new devfreq-event device.
300 * @dev : the device owning the devfreq-event device being created
301 * @desc : the devfreq-event device's decriptor which include essential
302 * data for devfreq-event device.
304 * Note that this function add new devfreq-event device to devfreq-event class
305 * list and register the device of the devfreq-event device.
307 struct devfreq_event_dev *devfreq_event_add_edev(struct device *dev,
308 struct devfreq_event_desc *desc)
310 struct devfreq_event_dev *edev;
311 static atomic_t event_no = ATOMIC_INIT(0);
315 return ERR_PTR(-EINVAL);
317 if (!desc->name || !desc->ops)
318 return ERR_PTR(-EINVAL);
320 if (!desc->ops->set_event || !desc->ops->get_event)
321 return ERR_PTR(-EINVAL);
323 edev = kzalloc(sizeof(struct devfreq_event_dev), GFP_KERNEL);
325 return ERR_PTR(-ENOMEM);
327 mutex_init(&edev->lock);
329 edev->enable_count = 0;
330 edev->dev.parent = dev;
331 edev->dev.class = devfreq_event_class;
332 edev->dev.release = devfreq_event_release_edev;
334 dev_set_name(&edev->dev, "event.%d", atomic_inc_return(&event_no) - 1);
335 ret = device_register(&edev->dev);
337 put_device(&edev->dev);
340 dev_set_drvdata(&edev->dev, edev);
342 INIT_LIST_HEAD(&edev->node);
344 mutex_lock(&devfreq_event_list_lock);
345 list_add(&edev->node, &devfreq_event_list);
346 mutex_unlock(&devfreq_event_list_lock);
350 EXPORT_SYMBOL_GPL(devfreq_event_add_edev);
353 * devfreq_event_remove_edev() - Remove the devfreq-event device registered.
354 * @dev : the devfreq-event device
356 * Note that this function remove the registered devfreq-event device.
358 int devfreq_event_remove_edev(struct devfreq_event_dev *edev)
363 WARN_ON(edev->enable_count);
365 mutex_lock(&devfreq_event_list_lock);
366 list_del(&edev->node);
367 mutex_unlock(&devfreq_event_list_lock);
369 device_unregister(&edev->dev);
373 EXPORT_SYMBOL_GPL(devfreq_event_remove_edev);
375 static int devm_devfreq_event_match(struct device *dev, void *res, void *data)
377 struct devfreq_event_dev **r = res;
379 if (WARN_ON(!r || !*r))
385 static void devm_devfreq_event_release(struct device *dev, void *res)
387 devfreq_event_remove_edev(*(struct devfreq_event_dev **)res);
391 * devm_devfreq_event_add_edev() - Resource-managed devfreq_event_add_edev()
392 * @dev : the device owning the devfreq-event device being created
393 * @desc : the devfreq-event device's decriptor which include essential
394 * data for devfreq-event device.
396 * Note that this function manages automatically the memory of devfreq-event
397 * device using device resource management and simplify the free operation
398 * for memory of devfreq-event device.
400 struct devfreq_event_dev *devm_devfreq_event_add_edev(struct device *dev,
401 struct devfreq_event_desc *desc)
403 struct devfreq_event_dev **ptr, *edev;
405 ptr = devres_alloc(devm_devfreq_event_release, sizeof(*ptr), GFP_KERNEL);
407 return ERR_PTR(-ENOMEM);
409 edev = devfreq_event_add_edev(dev, desc);
412 return ERR_PTR(-ENOMEM);
416 devres_add(dev, ptr);
420 EXPORT_SYMBOL_GPL(devm_devfreq_event_add_edev);
423 * devm_devfreq_event_remove_edev()- Resource-managed devfreq_event_remove_edev()
424 * @dev : the device owning the devfreq-event device being created
425 * @edev : the devfreq-event device
427 * Note that this function manages automatically the memory of devfreq-event
428 * device using device resource management.
430 void devm_devfreq_event_remove_edev(struct device *dev,
431 struct devfreq_event_dev *edev)
433 WARN_ON(devres_release(dev, devm_devfreq_event_release,
434 devm_devfreq_event_match, edev));
436 EXPORT_SYMBOL_GPL(devm_devfreq_event_remove_edev);
439 * Device attributes for devfreq-event class.
441 static ssize_t name_show(struct device *dev, struct device_attribute *attr,
444 struct devfreq_event_dev *edev = to_devfreq_event(dev);
446 if (!edev || !edev->desc)
449 return sprintf(buf, "%s\n", edev->desc->name);
451 static DEVICE_ATTR_RO(name);
453 static ssize_t enable_count_show(struct device *dev,
454 struct device_attribute *attr, char *buf)
456 struct devfreq_event_dev *edev = to_devfreq_event(dev);
458 if (!edev || !edev->desc)
461 return sprintf(buf, "%d\n", edev->enable_count);
463 static DEVICE_ATTR_RO(enable_count);
465 static struct attribute *devfreq_event_attrs[] = {
467 &dev_attr_enable_count.attr,
470 ATTRIBUTE_GROUPS(devfreq_event);
472 static int __init devfreq_event_init(void)
474 devfreq_event_class = class_create(THIS_MODULE, "devfreq-event");
475 if (IS_ERR(devfreq_event_class)) {
476 pr_err("%s: couldn't create class\n", __FILE__);
477 return PTR_ERR(devfreq_event_class);
480 devfreq_event_class->dev_groups = devfreq_event_groups;
484 subsys_initcall(devfreq_event_init);
486 static void __exit devfreq_event_exit(void)
488 class_destroy(devfreq_event_class);
490 module_exit(devfreq_event_exit);
492 MODULE_AUTHOR("Chanwoo Choi <cw00.choi@samsung.com>");
493 MODULE_DESCRIPTION("DEVFREQ-Event class support");
494 MODULE_LICENSE("GPL");