Lines Matching full:bus

3  * Generic Exynos Bus frequency driver with DEVFREQ Framework
8 * This driver support Exynos Bus frequency feature by using
42 * Control the devfreq-event device to get the current state of bus
45 static int exynos_bus_##ops(struct exynos_bus *bus) \
49 for (i = 0; i < bus->edev_count; i++) { \
50 if (!bus->edev[i]) \
52 ret = devfreq_event_##ops(bus->edev[i]); \
63 static int exynos_bus_get_event(struct exynos_bus *bus, in exynos_bus_get_event() argument
70 for (i = 0; i < bus->edev_count; i++) { in exynos_bus_get_event()
71 if (!bus->edev[i]) in exynos_bus_get_event()
74 ret = devfreq_event_get_event(bus->edev[i], &event_data); in exynos_bus_get_event()
95 struct exynos_bus *bus = dev_get_drvdata(dev); in exynos_bus_target() local
99 /* Get correct frequency for bus. */ in exynos_bus_target()
109 mutex_lock(&bus->lock); in exynos_bus_target()
112 bus->curr_freq = *freq; in exynos_bus_target()
114 mutex_unlock(&bus->lock); in exynos_bus_target()
122 struct exynos_bus *bus = dev_get_drvdata(dev); in exynos_bus_get_dev_status() local
126 stat->current_frequency = bus->curr_freq; in exynos_bus_get_dev_status()
128 ret = exynos_bus_get_event(bus, &edata); in exynos_bus_get_dev_status()
135 stat->busy_time = (edata.load_count * 100) / bus->ratio; in exynos_bus_get_dev_status()
142 ret = exynos_bus_set_event(bus); in exynos_bus_get_dev_status()
153 struct exynos_bus *bus = dev_get_drvdata(dev); in exynos_bus_exit() local
156 ret = exynos_bus_disable_edev(bus); in exynos_bus_exit()
160 platform_device_unregister(bus->icc_pdev); in exynos_bus_exit()
163 dev_pm_opp_put_regulators(bus->opp_token); in exynos_bus_exit()
168 struct exynos_bus *bus = dev_get_drvdata(dev); in exynos_bus_passive_exit() local
170 platform_device_unregister(bus->icc_pdev); in exynos_bus_passive_exit()
176 struct exynos_bus *bus) in exynos_bus_parent_parse_of() argument
178 struct device *dev = bus->dev; in exynos_bus_parent_parse_of()
188 bus->opp_token = ret; in exynos_bus_parent_parse_of()
200 bus->edev_count = count; in exynos_bus_parent_parse_of()
202 size = sizeof(*bus->edev) * count; in exynos_bus_parent_parse_of()
203 bus->edev = devm_kzalloc(dev, size, GFP_KERNEL); in exynos_bus_parent_parse_of()
204 if (!bus->edev) { in exynos_bus_parent_parse_of()
210 bus->edev[i] = devfreq_event_get_edev_by_phandle(dev, in exynos_bus_parent_parse_of()
212 if (IS_ERR(bus->edev[i])) { in exynos_bus_parent_parse_of()
220 * When measuring the utilization of each AXI bus with devfreq-event in exynos_bus_parent_parse_of()
222 * total cycle of bus during sampling rate. In result, the devfreq in exynos_bus_parent_parse_of()
228 if (of_property_read_u32(np, "exynos,saturation-ratio", &bus->ratio)) in exynos_bus_parent_parse_of()
229 bus->ratio = DEFAULT_SATURATION_RATIO; in exynos_bus_parent_parse_of()
234 dev_pm_opp_put_regulators(bus->opp_token); in exynos_bus_parent_parse_of()
240 struct exynos_bus *bus) in exynos_bus_parse_of() argument
242 struct device *dev = bus->dev; in exynos_bus_parse_of()
247 /* Get the clock to provide each bus with source clock */ in exynos_bus_parse_of()
248 bus->clk = devm_clk_get_enabled(dev, "bus"); in exynos_bus_parse_of()
249 if (IS_ERR(bus->clk)) in exynos_bus_parse_of()
250 return dev_err_probe(dev, PTR_ERR(bus->clk), in exynos_bus_parse_of()
251 "failed to get bus clock\n"); in exynos_bus_parse_of()
253 /* Get the freq and voltage from OPP table to scale the bus freq */ in exynos_bus_parse_of()
260 rate = clk_get_rate(bus->clk); in exynos_bus_parse_of()
268 bus->curr_freq = dev_pm_opp_get_freq(opp); in exynos_bus_parse_of()
279 static int exynos_bus_profile_init(struct exynos_bus *bus, in exynos_bus_profile_init() argument
282 struct device *dev = bus->dev; in exynos_bus_profile_init()
299 /* Add devfreq device to monitor and handle the exynos bus */ in exynos_bus_profile_init()
300 bus->devfreq = devm_devfreq_add_device(dev, profile, in exynos_bus_profile_init()
303 if (IS_ERR(bus->devfreq)) { in exynos_bus_profile_init()
305 return PTR_ERR(bus->devfreq); in exynos_bus_profile_init()
309 ret = devm_devfreq_register_opp_notifier(dev, bus->devfreq); in exynos_bus_profile_init()
317 * current bus load. in exynos_bus_profile_init()
319 ret = exynos_bus_enable_edev(bus); in exynos_bus_profile_init()
325 ret = exynos_bus_set_event(bus); in exynos_bus_profile_init()
334 if (exynos_bus_disable_edev(bus)) in exynos_bus_profile_init()
340 static int exynos_bus_profile_init_passive(struct exynos_bus *bus, in exynos_bus_profile_init_passive() argument
343 struct device *dev = bus->dev; in exynos_bus_profile_init_passive()
362 /* Add devfreq device for exynos bus with passive governor */ in exynos_bus_profile_init_passive()
363 bus->devfreq = devm_devfreq_add_device(dev, profile, DEVFREQ_GOV_PASSIVE, in exynos_bus_profile_init_passive()
365 if (IS_ERR(bus->devfreq)) { in exynos_bus_profile_init_passive()
368 return PTR_ERR(bus->devfreq); in exynos_bus_profile_init_passive()
379 struct exynos_bus *bus; in exynos_bus_probe() local
389 bus = devm_kzalloc(&pdev->dev, sizeof(*bus), GFP_KERNEL); in exynos_bus_probe()
390 if (!bus) in exynos_bus_probe()
392 mutex_init(&bus->lock); in exynos_bus_probe()
393 bus->dev = &pdev->dev; in exynos_bus_probe()
394 platform_set_drvdata(pdev, bus); in exynos_bus_probe()
405 ret = exynos_bus_parent_parse_of(np, bus); in exynos_bus_probe()
411 ret = exynos_bus_parse_of(np, bus); in exynos_bus_probe()
416 ret = exynos_bus_profile_init_passive(bus, profile); in exynos_bus_probe()
418 ret = exynos_bus_profile_init(bus, profile); in exynos_bus_probe()
425 bus->icc_pdev = platform_device_register_data( in exynos_bus_probe()
429 if (IS_ERR(bus->icc_pdev)) { in exynos_bus_probe()
430 ret = PTR_ERR(bus->icc_pdev); in exynos_bus_probe()
435 max_state = bus->devfreq->max_state; in exynos_bus_probe()
436 min_freq = (bus->devfreq->freq_table[0] / 1000); in exynos_bus_probe()
437 max_freq = (bus->devfreq->freq_table[max_state - 1] / 1000); in exynos_bus_probe()
438 pr_info("exynos-bus: new bus device registered: %s (%6ld KHz ~ %6ld KHz)\n", in exynos_bus_probe()
446 dev_pm_opp_put_regulators(bus->opp_token); in exynos_bus_probe()
453 struct exynos_bus *bus = dev_get_drvdata(&pdev->dev); in exynos_bus_shutdown() local
455 devfreq_suspend_device(bus->devfreq); in exynos_bus_shutdown()
460 struct exynos_bus *bus = dev_get_drvdata(dev); in exynos_bus_resume() local
463 ret = exynos_bus_enable_edev(bus); in exynos_bus_resume()
474 struct exynos_bus *bus = dev_get_drvdata(dev); in exynos_bus_suspend() local
477 ret = exynos_bus_disable_edev(bus); in exynos_bus_suspend()
490 { .compatible = "samsung,exynos-bus", },
499 .name = "exynos-bus",
507 MODULE_DESCRIPTION("Generic Exynos Bus frequency driver");