cpu_dev = get_cpu_device(0); if (!cpu_dev) {
pr_err("Cannot get CPU for cpufreq driver\n"); return -ENODEV;
}
clk = clk_get(cpu_dev, NULL); if (IS_ERR(clk)) {
dev_err(cpu_dev, "Cannot get clock for CPU0\n"); return PTR_ERR(clk);
}
/* * The max and min frequencies are configurable in the Raspberry Pi * firmware, so we query them at runtime.
*/
min = roundup(clk_round_rate(clk, 0), RASPBERRYPI_FREQ_INTERVAL);
max = roundup(clk_round_rate(clk, ULONG_MAX), RASPBERRYPI_FREQ_INTERVAL);
clk_put(clk);
for (rate = min; rate <= max; rate += RASPBERRYPI_FREQ_INTERVAL) {
ret = dev_pm_opp_add(cpu_dev, rate, 0); if (ret) goto remove_opp;
}
cpufreq_dt = platform_device_register_simple("cpufreq-dt", -1, NULL, 0);
ret = PTR_ERR_OR_ZERO(cpufreq_dt); if (ret) {
dev_err(cpu_dev, "Failed to create platform device, %d\n", ret); goto remove_opp;
}
cpu_dev = get_cpu_device(0); if (cpu_dev)
dev_pm_opp_remove_all_dynamic(cpu_dev);
platform_device_unregister(cpufreq_dt);
}
/* * Since the driver depends on clk-raspberrypi, which may return EPROBE_DEFER, * all the activity is performed in the probe, which may be defered as well.
*/ staticstruct platform_driver raspberrypi_cpufreq_driver = {
.driver = {
.name = "raspberrypi-cpufreq",
},
.probe = raspberrypi_cpufreq_probe,
.remove = raspberrypi_cpufreq_remove,
};
module_platform_driver(raspberrypi_cpufreq_driver);
MODULE_AUTHOR("Nicolas Saenz Julienne );
MODULE_DESCRIPTION("Raspberry Pi cpufreq driver");
MODULE_LICENSE("GPL");
MODULE_ALIAS("platform:raspberrypi-cpufreq");
Messung V0.5
¤ Dauer der Verarbeitung: 0.17 Sekunden
(vorverarbeitet)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.