Lines Matching full:bus
3 * Generic Exynos Bus frequency driver with DEVFREQ Framework
8 * This driver support Exynos Bus frequency feature by using
41 * Control the devfreq-event device to get the current state of bus
44 static int exynos_bus_##ops(struct exynos_bus *bus) \
48 for (i = 0; i < bus->edev_count; i++) { \
49 if (!bus->edev[i]) \
51 ret = devfreq_event_##ops(bus->edev[i]); \
62 static int exynos_bus_get_event(struct exynos_bus *bus, in exynos_bus_get_event() argument
69 for (i = 0; i < bus->edev_count; i++) { in exynos_bus_get_event()
70 if (!bus->edev[i]) in exynos_bus_get_event()
73 ret = devfreq_event_get_event(bus->edev[i], &event_data); in exynos_bus_get_event()
94 struct exynos_bus *bus = dev_get_drvdata(dev); in exynos_bus_target() local
98 /* Get correct frequency for bus. */ in exynos_bus_target()
108 mutex_lock(&bus->lock); in exynos_bus_target()
111 bus->curr_freq = *freq; in exynos_bus_target()
113 mutex_unlock(&bus->lock); in exynos_bus_target()
121 struct exynos_bus *bus = dev_get_drvdata(dev); in exynos_bus_get_dev_status() local
125 stat->current_frequency = bus->curr_freq; in exynos_bus_get_dev_status()
127 ret = exynos_bus_get_event(bus, &edata); in exynos_bus_get_dev_status()
134 stat->busy_time = (edata.load_count * 100) / bus->ratio; in exynos_bus_get_dev_status()
141 ret = exynos_bus_set_event(bus); in exynos_bus_get_dev_status()
152 struct exynos_bus *bus = dev_get_drvdata(dev); in exynos_bus_exit() local
155 ret = exynos_bus_disable_edev(bus); in exynos_bus_exit()
160 clk_disable_unprepare(bus->clk); in exynos_bus_exit()
161 if (bus->opp_table) { in exynos_bus_exit()
162 dev_pm_opp_put_regulators(bus->opp_table); in exynos_bus_exit()
163 bus->opp_table = NULL; in exynos_bus_exit()
169 struct exynos_bus *bus = dev_get_drvdata(dev); in exynos_bus_passive_exit() local
172 clk_disable_unprepare(bus->clk); 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()
190 bus->opp_table = opp_table; in exynos_bus_parent_parse_of()
202 bus->edev_count = count; in exynos_bus_parent_parse_of()
204 size = sizeof(*bus->edev) * count; in exynos_bus_parent_parse_of()
205 bus->edev = devm_kzalloc(dev, size, GFP_KERNEL); in exynos_bus_parent_parse_of()
206 if (!bus->edev) { in exynos_bus_parent_parse_of()
212 bus->edev[i] = devfreq_event_get_edev_by_phandle(dev, in exynos_bus_parent_parse_of()
214 if (IS_ERR(bus->edev[i])) { in exynos_bus_parent_parse_of()
222 * When measuring the utilization of each AXI bus with devfreq-event in exynos_bus_parent_parse_of()
224 * total cycle of bus during sampling rate. In result, the devfreq in exynos_bus_parent_parse_of()
230 if (of_property_read_u32(np, "exynos,saturation-ratio", &bus->ratio)) in exynos_bus_parent_parse_of()
231 bus->ratio = DEFAULT_SATURATION_RATIO; in exynos_bus_parent_parse_of()
236 dev_pm_opp_put_regulators(bus->opp_table); in exynos_bus_parent_parse_of()
237 bus->opp_table = NULL; in exynos_bus_parent_parse_of()
243 struct exynos_bus *bus) in exynos_bus_parse_of() argument
245 struct device *dev = bus->dev; in exynos_bus_parse_of()
250 /* Get the clock to provide each bus with source clock */ in exynos_bus_parse_of()
251 bus->clk = devm_clk_get(dev, "bus"); in exynos_bus_parse_of()
252 if (IS_ERR(bus->clk)) { in exynos_bus_parse_of()
253 dev_err(dev, "failed to get bus clock\n"); in exynos_bus_parse_of()
254 return PTR_ERR(bus->clk); in exynos_bus_parse_of()
257 ret = clk_prepare_enable(bus->clk); in exynos_bus_parse_of()
263 /* Get the freq and voltage from OPP table to scale the bus freq */ in exynos_bus_parse_of()
270 rate = clk_get_rate(bus->clk); in exynos_bus_parse_of()
278 bus->curr_freq = dev_pm_opp_get_freq(opp); in exynos_bus_parse_of()
286 clk_disable_unprepare(bus->clk); in exynos_bus_parse_of()
291 static int exynos_bus_profile_init(struct exynos_bus *bus, in exynos_bus_profile_init() argument
294 struct device *dev = bus->dev; in exynos_bus_profile_init()
311 /* Add devfreq device to monitor and handle the exynos bus */ in exynos_bus_profile_init()
312 bus->devfreq = devm_devfreq_add_device(dev, profile, in exynos_bus_profile_init()
315 if (IS_ERR(bus->devfreq)) { in exynos_bus_profile_init()
317 return PTR_ERR(bus->devfreq); in exynos_bus_profile_init()
321 ret = devm_devfreq_register_opp_notifier(dev, bus->devfreq); in exynos_bus_profile_init()
329 * current bus load. in exynos_bus_profile_init()
331 ret = exynos_bus_enable_edev(bus); in exynos_bus_profile_init()
337 ret = exynos_bus_set_event(bus); in exynos_bus_profile_init()
346 if (exynos_bus_disable_edev(bus)) in exynos_bus_profile_init()
352 static int exynos_bus_profile_init_passive(struct exynos_bus *bus, in exynos_bus_profile_init_passive() argument
355 struct device *dev = bus->dev; in exynos_bus_profile_init_passive()
374 /* Add devfreq device for exynos bus with passive governor */ in exynos_bus_profile_init_passive()
375 bus->devfreq = devm_devfreq_add_device(dev, profile, DEVFREQ_GOV_PASSIVE, in exynos_bus_profile_init_passive()
377 if (IS_ERR(bus->devfreq)) { in exynos_bus_profile_init_passive()
380 return PTR_ERR(bus->devfreq); in exynos_bus_profile_init_passive()
391 struct exynos_bus *bus; in exynos_bus_probe() local
401 bus = devm_kzalloc(&pdev->dev, sizeof(*bus), GFP_KERNEL); in exynos_bus_probe()
402 if (!bus) in exynos_bus_probe()
404 mutex_init(&bus->lock); in exynos_bus_probe()
405 bus->dev = &pdev->dev; in exynos_bus_probe()
406 platform_set_drvdata(pdev, bus); in exynos_bus_probe()
417 ret = exynos_bus_parent_parse_of(np, bus); in exynos_bus_probe()
423 ret = exynos_bus_parse_of(np, bus); in exynos_bus_probe()
428 ret = exynos_bus_profile_init_passive(bus, profile); in exynos_bus_probe()
430 ret = exynos_bus_profile_init(bus, profile); in exynos_bus_probe()
435 max_state = bus->devfreq->profile->max_state; in exynos_bus_probe()
436 min_freq = (bus->devfreq->profile->freq_table[0] / 1000); in exynos_bus_probe()
437 max_freq = (bus->devfreq->profile->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()
445 clk_disable_unprepare(bus->clk); in exynos_bus_probe()
448 dev_pm_opp_put_regulators(bus->opp_table); in exynos_bus_probe()
449 bus->opp_table = NULL; in exynos_bus_probe()
457 struct exynos_bus *bus = dev_get_drvdata(&pdev->dev); in exynos_bus_shutdown() local
459 devfreq_suspend_device(bus->devfreq); in exynos_bus_shutdown()
465 struct exynos_bus *bus = dev_get_drvdata(dev); in exynos_bus_resume() local
468 ret = exynos_bus_enable_edev(bus); in exynos_bus_resume()
479 struct exynos_bus *bus = dev_get_drvdata(dev); in exynos_bus_suspend() local
482 ret = exynos_bus_disable_edev(bus); in exynos_bus_suspend()
497 { .compatible = "samsung,exynos-bus", },
506 .name = "exynos-bus",
513 MODULE_DESCRIPTION("Generic Exynos Bus frequency driver");