1// SPDX-License-Identifier: (GPL-2.0+ OR MIT) 2 3#include "rk3566-base.dtsi" 4 5/ { 6 cpu0_opp_table: opp-table-0 { 7 compatible = "operating-points-v2"; 8 opp-shared; 9 10 opp-408000000 { 11 opp-hz = /bits/ 64 <408000000>; 12 opp-microvolt = <850000 850000 1150000>; 13 clock-latency-ns = <40000>; 14 }; 15 16 opp-600000000 { 17 opp-hz = /bits/ 64 <600000000>; 18 opp-microvolt = <850000 850000 1150000>; 19 clock-latency-ns = <40000>; 20 }; 21 22 opp-816000000 { 23 opp-hz = /bits/ 64 <816000000>; 24 opp-microvolt = <850000 850000 1150000>; 25 clock-latency-ns = <40000>; 26 opp-suspend; 27 }; 28 29 opp-1104000000 { 30 opp-hz = /bits/ 64 <1104000000>; 31 opp-microvolt = <900000 900000 1150000>; 32 clock-latency-ns = <40000>; 33 }; 34 35 opp-1416000000 { 36 opp-hz = /bits/ 64 <1416000000>; 37 opp-microvolt = <1025000 1025000 1150000>; 38 clock-latency-ns = <40000>; 39 }; 40 }; 41 42 gpu_opp_table: opp-table-1 { 43 compatible = "operating-points-v2"; 44 45 opp-200000000 { 46 opp-hz = /bits/ 64 <200000000>; 47 opp-microvolt = <850000 850000 1000000>; 48 }; 49 50 opp-300000000 { 51 opp-hz = /bits/ 64 <300000000>; 52 opp-microvolt = <850000 850000 1000000>; 53 }; 54 55 opp-400000000 { 56 opp-hz = /bits/ 64 <400000000>; 57 opp-microvolt = <850000 850000 1000000>; 58 }; 59 60 opp-600000000 { 61 opp-hz = /bits/ 64 <600000000>; 62 opp-microvolt = <900000 900000 1000000>; 63 }; 64 65 opp-700000000 { 66 opp-hz = /bits/ 64 <700000000>; 67 opp-microvolt = <950000 950000 1000000>; 68 }; 69 }; 70}; 71 72&cpu0 { 73 operating-points-v2 = <&cpu0_opp_table>; 74}; 75 76&cpu1 { 77 operating-points-v2 = <&cpu0_opp_table>; 78}; 79 80&cpu2 { 81 operating-points-v2 = <&cpu0_opp_table>; 82}; 83 84&cpu3 { 85 operating-points-v2 = <&cpu0_opp_table>; 86}; 87 88&gpu { 89 operating-points-v2 = <&gpu_opp_table>; 90}; 91