mirror of
https://git.proxmox.com/git/mirror_ubuntu-kernels.git
synced 2025-12-26 20:27:20 +00:00
On several R-Car Gen3(e) SoCs, multiple (up to 4) operating points in the same cluster are marked with the "turbo-mode" property, which is meant only for operating points beyond "Normal Mode". Fix this by dropping the property from all operating points but the "High Performance" one. Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be> Link: https://lore.kernel.org/r/866d06aec09e5a86dba11970f93a728b3e34e9f5.1675335086.git.geert+renesas@glider.be
25 lines
437 B
Plaintext
25 lines
437 B
Plaintext
// SPDX-License-Identifier: (GPL-2.0 or MIT)
|
|
/*
|
|
* Device Tree Source for the R-Car M3e-2G (R8A779M3) SoC
|
|
*
|
|
* Copyright (C) 2021 Glider bv
|
|
*/
|
|
|
|
#include "r8a77961.dtsi"
|
|
|
|
/ {
|
|
compatible = "renesas,r8a779m3", "renesas,r8a77961";
|
|
};
|
|
|
|
&cluster0_opp {
|
|
opp-1800000000 {
|
|
/delete-property/ turbo-mode;
|
|
};
|
|
opp-2000000000 {
|
|
opp-hz = /bits/ 64 <2000000000>;
|
|
opp-microvolt = <960000>;
|
|
clock-latency-ns = <300000>;
|
|
turbo-mode;
|
|
};
|
|
};
|