2 * Generic Exynos Bus frequency driver with DEVFREQ Framework
4 * Copyright (c) 2016 Samsung Electronics Co., Ltd.
7 * This driver support Exynos Bus frequency feature by using
8 * DEVFREQ framework and is based on drivers/devfreq/exynos/exynos4_bus.c.
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
15 #include <linux/clk.h>
16 #include <linux/devfreq.h>
17 #include <linux/devfreq-event.h>
18 #include <linux/device.h>
19 #include <linux/export.h>
20 #include <linux/module.h>
21 #include <linux/of_device.h>
22 #include <linux/pm_opp.h>
23 #include <linux/platform_device.h>
24 #include <linux/regulator/consumer.h>
25 #include <linux/slab.h>
27 #define DEFAULT_SATURATION_RATIO 40
28 #define DEFAULT_VOLTAGE_TOLERANCE 2
33 struct devfreq *devfreq;
34 struct devfreq_event_dev **edev;
35 unsigned int edev_count;
38 unsigned long curr_freq;
40 struct regulator *regulator;
42 unsigned int voltage_tolerance;
47 * Control the devfreq-event device to get the current state of bus
49 #define exynos_bus_ops_edev(ops) \
50 static int exynos_bus_##ops(struct exynos_bus *bus) \
54 for (i = 0; i < bus->edev_count; i++) { \
57 ret = devfreq_event_##ops(bus->edev[i]); \
64 exynos_bus_ops_edev(enable_edev);
65 exynos_bus_ops_edev(disable_edev);
66 exynos_bus_ops_edev(set_event);
68 static int exynos_bus_get_event(struct exynos_bus *bus,
69 struct devfreq_event_data *edata)
71 struct devfreq_event_data event_data;
72 unsigned long load_count = 0, total_count = 0;
75 for (i = 0; i < bus->edev_count; i++) {
79 ret = devfreq_event_get_event(bus->edev[i], &event_data);
83 if (i == 0 || event_data.load_count > load_count) {
84 load_count = event_data.load_count;
85 total_count = event_data.total_count;
89 edata->load_count = load_count;
90 edata->total_count = total_count;
96 * Must necessary function for devfreq simple-ondemand governor
98 static int exynos_bus_target(struct device *dev, unsigned long *freq, u32 flags)
100 struct exynos_bus *bus = dev_get_drvdata(dev);
101 struct dev_pm_opp *new_opp;
102 unsigned long old_freq, new_freq, new_volt, tol;
105 /* Get new opp-bus instance according to new bus clock */
106 new_opp = devfreq_recommended_opp(dev, freq, flags);
107 if (IS_ERR(new_opp)) {
108 dev_err(dev, "failed to get recommended opp instance\n");
109 return PTR_ERR(new_opp);
112 new_freq = dev_pm_opp_get_freq(new_opp);
113 new_volt = dev_pm_opp_get_voltage(new_opp);
114 dev_pm_opp_put(new_opp);
116 old_freq = bus->curr_freq;
118 if (old_freq == new_freq)
120 tol = new_volt * bus->voltage_tolerance / 100;
122 /* Change voltage and frequency according to new OPP level */
123 mutex_lock(&bus->lock);
125 if (old_freq < new_freq) {
126 ret = regulator_set_voltage_tol(bus->regulator, new_volt, tol);
128 dev_err(bus->dev, "failed to set voltage\n");
133 ret = clk_set_rate(bus->clk, new_freq);
135 dev_err(dev, "failed to change clock of bus\n");
136 clk_set_rate(bus->clk, old_freq);
140 if (old_freq > new_freq) {
141 ret = regulator_set_voltage_tol(bus->regulator, new_volt, tol);
143 dev_err(bus->dev, "failed to set voltage\n");
147 bus->curr_freq = new_freq;
149 dev_dbg(dev, "Set the frequency of bus (%luHz -> %luHz, %luHz)\n",
150 old_freq, new_freq, clk_get_rate(bus->clk));
152 mutex_unlock(&bus->lock);
157 static int exynos_bus_get_dev_status(struct device *dev,
158 struct devfreq_dev_status *stat)
160 struct exynos_bus *bus = dev_get_drvdata(dev);
161 struct devfreq_event_data edata;
164 stat->current_frequency = bus->curr_freq;
166 ret = exynos_bus_get_event(bus, &edata);
168 stat->total_time = stat->busy_time = 0;
172 stat->busy_time = (edata.load_count * 100) / bus->ratio;
173 stat->total_time = edata.total_count;
175 dev_dbg(dev, "Usage of devfreq-event : %lu/%lu\n", stat->busy_time,
179 ret = exynos_bus_set_event(bus);
181 dev_err(dev, "failed to set event to devfreq-event devices\n");
188 static void exynos_bus_exit(struct device *dev)
190 struct exynos_bus *bus = dev_get_drvdata(dev);
193 ret = exynos_bus_disable_edev(bus);
195 dev_warn(dev, "failed to disable the devfreq-event devices\n");
198 regulator_disable(bus->regulator);
200 dev_pm_opp_of_remove_table(dev);
201 clk_disable_unprepare(bus->clk);
205 * Must necessary function for devfreq passive governor
207 static int exynos_bus_passive_target(struct device *dev, unsigned long *freq,
210 struct exynos_bus *bus = dev_get_drvdata(dev);
211 struct dev_pm_opp *new_opp;
212 unsigned long old_freq, new_freq;
215 /* Get new opp-bus instance according to new bus clock */
216 new_opp = devfreq_recommended_opp(dev, freq, flags);
217 if (IS_ERR(new_opp)) {
218 dev_err(dev, "failed to get recommended opp instance\n");
219 return PTR_ERR(new_opp);
222 new_freq = dev_pm_opp_get_freq(new_opp);
223 dev_pm_opp_put(new_opp);
225 old_freq = bus->curr_freq;
227 if (old_freq == new_freq)
230 /* Change the frequency according to new OPP level */
231 mutex_lock(&bus->lock);
233 ret = clk_set_rate(bus->clk, new_freq);
235 dev_err(dev, "failed to set the clock of bus\n");
240 bus->curr_freq = new_freq;
242 dev_dbg(dev, "Set the frequency of bus (%luHz -> %luHz, %luHz)\n",
243 old_freq, new_freq, clk_get_rate(bus->clk));
245 mutex_unlock(&bus->lock);
250 static void exynos_bus_passive_exit(struct device *dev)
252 struct exynos_bus *bus = dev_get_drvdata(dev);
254 dev_pm_opp_of_remove_table(dev);
255 clk_disable_unprepare(bus->clk);
258 static int exynos_bus_parent_parse_of(struct device_node *np,
259 struct exynos_bus *bus)
261 struct device *dev = bus->dev;
262 int i, ret, count, size;
264 /* Get the regulator to provide each bus with the power */
265 bus->regulator = devm_regulator_get(dev, "vdd");
266 if (IS_ERR(bus->regulator)) {
267 dev_err(dev, "failed to get VDD regulator\n");
268 return PTR_ERR(bus->regulator);
271 ret = regulator_enable(bus->regulator);
273 dev_err(dev, "failed to enable VDD regulator\n");
278 * Get the devfreq-event devices to get the current utilization of
279 * buses. This raw data will be used in devfreq ondemand governor.
281 count = devfreq_event_get_edev_count(dev);
283 dev_err(dev, "failed to get the count of devfreq-event dev\n");
287 bus->edev_count = count;
289 size = sizeof(*bus->edev) * count;
290 bus->edev = devm_kzalloc(dev, size, GFP_KERNEL);
296 for (i = 0; i < count; i++) {
297 bus->edev[i] = devfreq_event_get_edev_by_phandle(dev, i);
298 if (IS_ERR(bus->edev[i])) {
305 * Optionally, Get the saturation ratio according to Exynos SoC
306 * When measuring the utilization of each AXI bus with devfreq-event
307 * devices, the measured real cycle might be much lower than the
308 * total cycle of bus during sampling rate. In result, the devfreq
309 * simple-ondemand governor might not decide to change the current
310 * frequency due to too utilization (= real cycle/total cycle).
311 * So, this property is used to adjust the utilization when calculating
312 * the busy_time in exynos_bus_get_dev_status().
314 if (of_property_read_u32(np, "exynos,saturation-ratio", &bus->ratio))
315 bus->ratio = DEFAULT_SATURATION_RATIO;
317 if (of_property_read_u32(np, "exynos,voltage-tolerance",
318 &bus->voltage_tolerance))
319 bus->voltage_tolerance = DEFAULT_VOLTAGE_TOLERANCE;
324 regulator_disable(bus->regulator);
329 static int exynos_bus_parse_of(struct device_node *np,
330 struct exynos_bus *bus)
332 struct device *dev = bus->dev;
333 struct dev_pm_opp *opp;
337 /* Get the clock to provide each bus with source clock */
338 bus->clk = devm_clk_get(dev, "bus");
339 if (IS_ERR(bus->clk)) {
340 dev_err(dev, "failed to get bus clock\n");
341 return PTR_ERR(bus->clk);
344 ret = clk_prepare_enable(bus->clk);
346 dev_err(dev, "failed to get enable clock\n");
350 /* Get the freq and voltage from OPP table to scale the bus freq */
351 ret = dev_pm_opp_of_add_table(dev);
353 dev_err(dev, "failed to get OPP table\n");
357 rate = clk_get_rate(bus->clk);
359 opp = devfreq_recommended_opp(dev, &rate, 0);
361 dev_err(dev, "failed to find dev_pm_opp\n");
365 bus->curr_freq = dev_pm_opp_get_freq(opp);
371 dev_pm_opp_of_remove_table(dev);
373 clk_disable_unprepare(bus->clk);
378 static int exynos_bus_probe(struct platform_device *pdev)
380 struct device *dev = &pdev->dev;
381 struct device_node *np = dev->of_node, *node;
382 struct devfreq_dev_profile *profile;
383 struct devfreq_simple_ondemand_data *ondemand_data;
384 struct devfreq_passive_data *passive_data;
385 struct devfreq *parent_devfreq;
386 struct exynos_bus *bus;
388 unsigned long min_freq, max_freq;
391 dev_err(dev, "failed to find devicetree node\n");
395 bus = devm_kzalloc(&pdev->dev, sizeof(*bus), GFP_KERNEL);
398 mutex_init(&bus->lock);
399 bus->dev = &pdev->dev;
400 platform_set_drvdata(pdev, bus);
402 /* Parse the device-tree to get the resource information */
403 ret = exynos_bus_parse_of(np, bus);
407 profile = devm_kzalloc(dev, sizeof(*profile), GFP_KERNEL);
413 node = of_parse_phandle(dev->of_node, "devfreq", 0);
418 ret = exynos_bus_parent_parse_of(np, bus);
424 /* Initialize the struct profile and governor data for parent device */
425 profile->polling_ms = 50;
426 profile->target = exynos_bus_target;
427 profile->get_dev_status = exynos_bus_get_dev_status;
428 profile->exit = exynos_bus_exit;
430 ondemand_data = devm_kzalloc(dev, sizeof(*ondemand_data), GFP_KERNEL);
431 if (!ondemand_data) {
435 ondemand_data->upthreshold = 40;
436 ondemand_data->downdifferential = 5;
438 /* Add devfreq device to monitor and handle the exynos bus */
439 bus->devfreq = devm_devfreq_add_device(dev, profile, "simple_ondemand",
441 if (IS_ERR(bus->devfreq)) {
442 dev_err(dev, "failed to add devfreq device\n");
443 ret = PTR_ERR(bus->devfreq);
447 /* Register opp_notifier to catch the change of OPP */
448 ret = devm_devfreq_register_opp_notifier(dev, bus->devfreq);
450 dev_err(dev, "failed to register opp notifier\n");
455 * Enable devfreq-event to get raw data which is used to determine
458 ret = exynos_bus_enable_edev(bus);
460 dev_err(dev, "failed to enable devfreq-event devices\n");
464 ret = exynos_bus_set_event(bus);
466 dev_err(dev, "failed to set event to devfreq-event devices\n");
472 /* Initialize the struct profile and governor data for passive device */
473 profile->target = exynos_bus_passive_target;
474 profile->exit = exynos_bus_passive_exit;
476 /* Get the instance of parent devfreq device */
477 parent_devfreq = devfreq_get_devfreq_by_phandle(dev, 0);
478 if (IS_ERR(parent_devfreq)) {
483 passive_data = devm_kzalloc(dev, sizeof(*passive_data), GFP_KERNEL);
488 passive_data->parent = parent_devfreq;
490 /* Add devfreq device for exynos bus with passive governor */
491 bus->devfreq = devm_devfreq_add_device(dev, profile, "passive",
493 if (IS_ERR(bus->devfreq)) {
495 "failed to add devfreq dev with passive governor\n");
496 ret = PTR_ERR(bus->devfreq);
501 max_state = bus->devfreq->profile->max_state;
502 min_freq = (bus->devfreq->profile->freq_table[0] / 1000);
503 max_freq = (bus->devfreq->profile->freq_table[max_state - 1] / 1000);
504 pr_info("exynos-bus: new bus device registered: %s (%6ld KHz ~ %6ld KHz)\n",
505 dev_name(dev), min_freq, max_freq);
510 dev_pm_opp_of_remove_table(dev);
511 clk_disable_unprepare(bus->clk);
516 #ifdef CONFIG_PM_SLEEP
517 static int exynos_bus_resume(struct device *dev)
519 struct exynos_bus *bus = dev_get_drvdata(dev);
522 ret = exynos_bus_enable_edev(bus);
524 dev_err(dev, "failed to enable the devfreq-event devices\n");
531 static int exynos_bus_suspend(struct device *dev)
533 struct exynos_bus *bus = dev_get_drvdata(dev);
536 ret = exynos_bus_disable_edev(bus);
538 dev_err(dev, "failed to disable the devfreq-event devices\n");
546 static const struct dev_pm_ops exynos_bus_pm = {
547 SET_SYSTEM_SLEEP_PM_OPS(exynos_bus_suspend, exynos_bus_resume)
550 static const struct of_device_id exynos_bus_of_match[] = {
551 { .compatible = "samsung,exynos-bus", },
554 MODULE_DEVICE_TABLE(of, exynos_bus_of_match);
556 static struct platform_driver exynos_bus_platdrv = {
557 .probe = exynos_bus_probe,
559 .name = "exynos-bus",
560 .pm = &exynos_bus_pm,
561 .of_match_table = of_match_ptr(exynos_bus_of_match),
564 module_platform_driver(exynos_bus_platdrv);
566 MODULE_DESCRIPTION("Generic Exynos Bus frequency driver");
568 MODULE_LICENSE("GPL v2");