Path: blob/master/Documentation/devicetree/bindings/cpufreq/nvidia,tegra124-cpufreq.txt
26308 views
Tegra124 CPU frequency scaling driver bindings1----------------------------------------------23Both required and optional properties listed below must be defined4under node /cpus/cpu@0.56Required properties:7- clocks: Must contain an entry for each entry in clock-names.8See ../clocks/clock-bindings.txt for details.9- clock-names: Must include the following entries:10- cpu_g: Clock mux for the fast CPU cluster.11- pll_x: Fast PLL clocksource.12- pll_p: Auxiliary PLL used during fast PLL rate changes.13- dfll: Fast DFLL clocksource that also automatically scales CPU voltage.1415Optional properties:16- clock-latency: Specify the possible maximum transition latency for clock,17in unit of nanoseconds.1819Example:20--------21cpus {22#address-cells = <1>;23#size-cells = <0>;2425cpu@0 {26device_type = "cpu";27compatible = "arm,cortex-a15";28reg = <0>;2930clocks = <&tegra_car TEGRA124_CLK_CCLK_G>,31<&tegra_car TEGRA124_CLK_PLL_X>,32<&tegra_car TEGRA124_CLK_PLL_P>,33<&dfll>;34clock-names = "cpu_g", "pll_x", "pll_p", "dfll";35clock-latency = <300000>;36};3738<...>39};404142