1*f126890aSEmmanuel Vadot// SPDX-License-Identifier: GPL-2.0 2*f126890aSEmmanuel Vadot 3*f126890aSEmmanuel Vadot/ { 4*f126890aSEmmanuel Vadot core_opp_table: opp-table-core { 5*f126890aSEmmanuel Vadot compatible = "operating-points-v2"; 6*f126890aSEmmanuel Vadot opp-shared; 7*f126890aSEmmanuel Vadot 8*f126890aSEmmanuel Vadot core_opp_950: opp-950000 { 9*f126890aSEmmanuel Vadot opp-microvolt = <950000 950000 1350000>; 10*f126890aSEmmanuel Vadot opp-level = <950000>; 11*f126890aSEmmanuel Vadot }; 12*f126890aSEmmanuel Vadot 13*f126890aSEmmanuel Vadot core_opp_1000: opp-1000000 { 14*f126890aSEmmanuel Vadot opp-microvolt = <1000000 1000000 1350000>; 15*f126890aSEmmanuel Vadot opp-level = <1000000>; 16*f126890aSEmmanuel Vadot }; 17*f126890aSEmmanuel Vadot 18*f126890aSEmmanuel Vadot core_opp_1050: opp-1050000 { 19*f126890aSEmmanuel Vadot opp-microvolt = <1050000 1050000 1350000>; 20*f126890aSEmmanuel Vadot opp-level = <1050000>; 21*f126890aSEmmanuel Vadot }; 22*f126890aSEmmanuel Vadot 23*f126890aSEmmanuel Vadot core_opp_1100: opp-1100000 { 24*f126890aSEmmanuel Vadot opp-microvolt = <1100000 1100000 1350000>; 25*f126890aSEmmanuel Vadot opp-level = <1100000>; 26*f126890aSEmmanuel Vadot }; 27*f126890aSEmmanuel Vadot 28*f126890aSEmmanuel Vadot core_opp_1150: opp-1150000 { 29*f126890aSEmmanuel Vadot opp-microvolt = <1150000 1150000 1350000>; 30*f126890aSEmmanuel Vadot opp-level = <1150000>; 31*f126890aSEmmanuel Vadot }; 32*f126890aSEmmanuel Vadot 33*f126890aSEmmanuel Vadot core_opp_1200: opp-1200000 { 34*f126890aSEmmanuel Vadot opp-microvolt = <1200000 1200000 1350000>; 35*f126890aSEmmanuel Vadot opp-level = <1200000>; 36*f126890aSEmmanuel Vadot }; 37*f126890aSEmmanuel Vadot 38*f126890aSEmmanuel Vadot core_opp_1250: opp-1250000 { 39*f126890aSEmmanuel Vadot opp-microvolt = <1250000 1250000 1350000>; 40*f126890aSEmmanuel Vadot opp-level = <1250000>; 41*f126890aSEmmanuel Vadot }; 42*f126890aSEmmanuel Vadot 43*f126890aSEmmanuel Vadot core_opp_1300: opp-1300000 { 44*f126890aSEmmanuel Vadot opp-microvolt = <1300000 1300000 1350000>; 45*f126890aSEmmanuel Vadot opp-level = <1300000>; 46*f126890aSEmmanuel Vadot }; 47*f126890aSEmmanuel Vadot 48*f126890aSEmmanuel Vadot core_opp_1350: opp-1350000 { 49*f126890aSEmmanuel Vadot opp-microvolt = <1350000 1350000 1350000>; 50*f126890aSEmmanuel Vadot opp-level = <1350000>; 51*f126890aSEmmanuel Vadot }; 52*f126890aSEmmanuel Vadot }; 53*f126890aSEmmanuel Vadot 54*f126890aSEmmanuel Vadot emc_icc_dvfs_opp_table: opp-table-emc { 55*f126890aSEmmanuel Vadot compatible = "operating-points-v2"; 56*f126890aSEmmanuel Vadot 57*f126890aSEmmanuel Vadot opp-12750000-950 { 58*f126890aSEmmanuel Vadot opp-microvolt = <950000 950000 1350000>; 59*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <12750000>; 60*f126890aSEmmanuel Vadot opp-supported-hw = <0x0006>; 61*f126890aSEmmanuel Vadot required-opps = <&core_opp_950>; 62*f126890aSEmmanuel Vadot }; 63*f126890aSEmmanuel Vadot 64*f126890aSEmmanuel Vadot opp-12750000-1000 { 65*f126890aSEmmanuel Vadot opp-microvolt = <1000000 1000000 1350000>; 66*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <12750000>; 67*f126890aSEmmanuel Vadot opp-supported-hw = <0x0001>; 68*f126890aSEmmanuel Vadot required-opps = <&core_opp_1000>; 69*f126890aSEmmanuel Vadot }; 70*f126890aSEmmanuel Vadot 71*f126890aSEmmanuel Vadot opp-12750000-1250 { 72*f126890aSEmmanuel Vadot opp-microvolt = <1250000 1250000 1350000>; 73*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <12750000>; 74*f126890aSEmmanuel Vadot opp-supported-hw = <0x0008>; 75*f126890aSEmmanuel Vadot required-opps = <&core_opp_1250>; 76*f126890aSEmmanuel Vadot }; 77*f126890aSEmmanuel Vadot 78*f126890aSEmmanuel Vadot opp-25500000-950 { 79*f126890aSEmmanuel Vadot opp-microvolt = <950000 950000 1350000>; 80*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <25500000>; 81*f126890aSEmmanuel Vadot opp-supported-hw = <0x0006>; 82*f126890aSEmmanuel Vadot required-opps = <&core_opp_950>; 83*f126890aSEmmanuel Vadot }; 84*f126890aSEmmanuel Vadot 85*f126890aSEmmanuel Vadot opp-25500000-1000 { 86*f126890aSEmmanuel Vadot opp-microvolt = <1000000 1000000 1350000>; 87*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <25500000>; 88*f126890aSEmmanuel Vadot opp-supported-hw = <0x0001>; 89*f126890aSEmmanuel Vadot required-opps = <&core_opp_1000>; 90*f126890aSEmmanuel Vadot }; 91*f126890aSEmmanuel Vadot 92*f126890aSEmmanuel Vadot opp-25500000-1250 { 93*f126890aSEmmanuel Vadot opp-microvolt = <1250000 1250000 1350000>; 94*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <25500000>; 95*f126890aSEmmanuel Vadot opp-supported-hw = <0x0008>; 96*f126890aSEmmanuel Vadot required-opps = <&core_opp_1250>; 97*f126890aSEmmanuel Vadot }; 98*f126890aSEmmanuel Vadot 99*f126890aSEmmanuel Vadot opp-27000000-950 { 100*f126890aSEmmanuel Vadot opp-microvolt = <950000 950000 1350000>; 101*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <27000000>; 102*f126890aSEmmanuel Vadot opp-supported-hw = <0x0006>; 103*f126890aSEmmanuel Vadot required-opps = <&core_opp_950>; 104*f126890aSEmmanuel Vadot }; 105*f126890aSEmmanuel Vadot 106*f126890aSEmmanuel Vadot opp-27000000-1000 { 107*f126890aSEmmanuel Vadot opp-microvolt = <1000000 1000000 1350000>; 108*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <27000000>; 109*f126890aSEmmanuel Vadot opp-supported-hw = <0x0001>; 110*f126890aSEmmanuel Vadot required-opps = <&core_opp_1000>; 111*f126890aSEmmanuel Vadot }; 112*f126890aSEmmanuel Vadot 113*f126890aSEmmanuel Vadot opp-27000000-1250 { 114*f126890aSEmmanuel Vadot opp-microvolt = <1250000 1250000 1350000>; 115*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <27000000>; 116*f126890aSEmmanuel Vadot opp-supported-hw = <0x0008>; 117*f126890aSEmmanuel Vadot required-opps = <&core_opp_1250>; 118*f126890aSEmmanuel Vadot }; 119*f126890aSEmmanuel Vadot 120*f126890aSEmmanuel Vadot opp-51000000-950 { 121*f126890aSEmmanuel Vadot opp-microvolt = <950000 950000 1350000>; 122*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <51000000>; 123*f126890aSEmmanuel Vadot opp-supported-hw = <0x0006>; 124*f126890aSEmmanuel Vadot required-opps = <&core_opp_950>; 125*f126890aSEmmanuel Vadot }; 126*f126890aSEmmanuel Vadot 127*f126890aSEmmanuel Vadot opp-51000000-1000 { 128*f126890aSEmmanuel Vadot opp-microvolt = <1000000 1000000 1350000>; 129*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <51000000>; 130*f126890aSEmmanuel Vadot opp-supported-hw = <0x0001>; 131*f126890aSEmmanuel Vadot required-opps = <&core_opp_1000>; 132*f126890aSEmmanuel Vadot }; 133*f126890aSEmmanuel Vadot 134*f126890aSEmmanuel Vadot opp-51000000-1250 { 135*f126890aSEmmanuel Vadot opp-microvolt = <1250000 1250000 1350000>; 136*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <51000000>; 137*f126890aSEmmanuel Vadot opp-supported-hw = <0x0008>; 138*f126890aSEmmanuel Vadot required-opps = <&core_opp_1250>; 139*f126890aSEmmanuel Vadot }; 140*f126890aSEmmanuel Vadot 141*f126890aSEmmanuel Vadot opp-54000000-950 { 142*f126890aSEmmanuel Vadot opp-microvolt = <950000 950000 1350000>; 143*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <54000000>; 144*f126890aSEmmanuel Vadot opp-supported-hw = <0x0006>; 145*f126890aSEmmanuel Vadot required-opps = <&core_opp_950>; 146*f126890aSEmmanuel Vadot }; 147*f126890aSEmmanuel Vadot 148*f126890aSEmmanuel Vadot opp-54000000-1000 { 149*f126890aSEmmanuel Vadot opp-microvolt = <1000000 1000000 1350000>; 150*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <54000000>; 151*f126890aSEmmanuel Vadot opp-supported-hw = <0x0001>; 152*f126890aSEmmanuel Vadot required-opps = <&core_opp_1000>; 153*f126890aSEmmanuel Vadot }; 154*f126890aSEmmanuel Vadot 155*f126890aSEmmanuel Vadot opp-54000000-1250 { 156*f126890aSEmmanuel Vadot opp-microvolt = <1250000 1250000 1350000>; 157*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <54000000>; 158*f126890aSEmmanuel Vadot opp-supported-hw = <0x0008>; 159*f126890aSEmmanuel Vadot required-opps = <&core_opp_1250>; 160*f126890aSEmmanuel Vadot }; 161*f126890aSEmmanuel Vadot 162*f126890aSEmmanuel Vadot opp-102000000-950 { 163*f126890aSEmmanuel Vadot opp-microvolt = <950000 950000 1350000>; 164*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <102000000>; 165*f126890aSEmmanuel Vadot opp-supported-hw = <0x0006>; 166*f126890aSEmmanuel Vadot required-opps = <&core_opp_950>; 167*f126890aSEmmanuel Vadot }; 168*f126890aSEmmanuel Vadot 169*f126890aSEmmanuel Vadot opp-102000000-1000 { 170*f126890aSEmmanuel Vadot opp-microvolt = <1000000 1000000 1350000>; 171*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <102000000>; 172*f126890aSEmmanuel Vadot opp-supported-hw = <0x0001>; 173*f126890aSEmmanuel Vadot required-opps = <&core_opp_1000>; 174*f126890aSEmmanuel Vadot }; 175*f126890aSEmmanuel Vadot 176*f126890aSEmmanuel Vadot opp-102000000-1250 { 177*f126890aSEmmanuel Vadot opp-microvolt = <1250000 1250000 1350000>; 178*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <102000000>; 179*f126890aSEmmanuel Vadot opp-supported-hw = <0x0008>; 180*f126890aSEmmanuel Vadot required-opps = <&core_opp_1250>; 181*f126890aSEmmanuel Vadot }; 182*f126890aSEmmanuel Vadot 183*f126890aSEmmanuel Vadot opp-108000000-1000 { 184*f126890aSEmmanuel Vadot opp-microvolt = <1000000 1000000 1350000>; 185*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <108000000>; 186*f126890aSEmmanuel Vadot opp-supported-hw = <0x0007>; 187*f126890aSEmmanuel Vadot required-opps = <&core_opp_1000>; 188*f126890aSEmmanuel Vadot }; 189*f126890aSEmmanuel Vadot 190*f126890aSEmmanuel Vadot opp-108000000-1250 { 191*f126890aSEmmanuel Vadot opp-microvolt = <1250000 1250000 1350000>; 192*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <108000000>; 193*f126890aSEmmanuel Vadot opp-supported-hw = <0x0008>; 194*f126890aSEmmanuel Vadot required-opps = <&core_opp_1250>; 195*f126890aSEmmanuel Vadot }; 196*f126890aSEmmanuel Vadot 197*f126890aSEmmanuel Vadot opp-204000000-1000 { 198*f126890aSEmmanuel Vadot opp-microvolt = <1000000 1000000 1350000>; 199*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <204000000>; 200*f126890aSEmmanuel Vadot opp-supported-hw = <0x0007>; 201*f126890aSEmmanuel Vadot required-opps = <&core_opp_1000>; 202*f126890aSEmmanuel Vadot opp-suspend; 203*f126890aSEmmanuel Vadot }; 204*f126890aSEmmanuel Vadot 205*f126890aSEmmanuel Vadot opp-204000000-1250 { 206*f126890aSEmmanuel Vadot opp-microvolt = <1250000 1250000 1350000>; 207*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <204000000>; 208*f126890aSEmmanuel Vadot opp-supported-hw = <0x0008>; 209*f126890aSEmmanuel Vadot required-opps = <&core_opp_1250>; 210*f126890aSEmmanuel Vadot opp-suspend; 211*f126890aSEmmanuel Vadot }; 212*f126890aSEmmanuel Vadot 213*f126890aSEmmanuel Vadot opp-266500000-1000 { 214*f126890aSEmmanuel Vadot opp-microvolt = <1000000 1000000 1350000>; 215*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <266500000>; 216*f126890aSEmmanuel Vadot opp-supported-hw = <0x0007>; 217*f126890aSEmmanuel Vadot required-opps = <&core_opp_1000>; 218*f126890aSEmmanuel Vadot }; 219*f126890aSEmmanuel Vadot 220*f126890aSEmmanuel Vadot opp-266500000-1250 { 221*f126890aSEmmanuel Vadot opp-microvolt = <1250000 1250000 1350000>; 222*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <266500000>; 223*f126890aSEmmanuel Vadot opp-supported-hw = <0x0008>; 224*f126890aSEmmanuel Vadot required-opps = <&core_opp_1250>; 225*f126890aSEmmanuel Vadot }; 226*f126890aSEmmanuel Vadot 227*f126890aSEmmanuel Vadot opp-333500000-1000 { 228*f126890aSEmmanuel Vadot opp-microvolt = <1000000 1000000 1350000>; 229*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <333500000>; 230*f126890aSEmmanuel Vadot opp-supported-hw = <0x0006>; 231*f126890aSEmmanuel Vadot required-opps = <&core_opp_1000>; 232*f126890aSEmmanuel Vadot }; 233*f126890aSEmmanuel Vadot 234*f126890aSEmmanuel Vadot opp-333500000-1200 { 235*f126890aSEmmanuel Vadot opp-microvolt = <1200000 1200000 1350000>; 236*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <333500000>; 237*f126890aSEmmanuel Vadot opp-supported-hw = <0x0001>; 238*f126890aSEmmanuel Vadot required-opps = <&core_opp_1200>; 239*f126890aSEmmanuel Vadot }; 240*f126890aSEmmanuel Vadot 241*f126890aSEmmanuel Vadot opp-333500000-1250 { 242*f126890aSEmmanuel Vadot opp-microvolt = <1250000 1250000 1350000>; 243*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <333500000>; 244*f126890aSEmmanuel Vadot opp-supported-hw = <0x0008>; 245*f126890aSEmmanuel Vadot required-opps = <&core_opp_1250>; 246*f126890aSEmmanuel Vadot }; 247*f126890aSEmmanuel Vadot 248*f126890aSEmmanuel Vadot opp-375000000-1000 { 249*f126890aSEmmanuel Vadot opp-microvolt = <1000000 1000000 1350000>; 250*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <375000000>; 251*f126890aSEmmanuel Vadot opp-supported-hw = <0x0006>; 252*f126890aSEmmanuel Vadot required-opps = <&core_opp_1000>; 253*f126890aSEmmanuel Vadot }; 254*f126890aSEmmanuel Vadot 255*f126890aSEmmanuel Vadot opp-375000000-1200 { 256*f126890aSEmmanuel Vadot opp-microvolt = <1200000 1200000 1350000>; 257*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <375000000>; 258*f126890aSEmmanuel Vadot opp-supported-hw = <0x0001>; 259*f126890aSEmmanuel Vadot required-opps = <&core_opp_1200>; 260*f126890aSEmmanuel Vadot }; 261*f126890aSEmmanuel Vadot 262*f126890aSEmmanuel Vadot opp-375000000-1250 { 263*f126890aSEmmanuel Vadot opp-microvolt = <1250000 1250000 1350000>; 264*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <375000000>; 265*f126890aSEmmanuel Vadot opp-supported-hw = <0x0008>; 266*f126890aSEmmanuel Vadot required-opps = <&core_opp_1250>; 267*f126890aSEmmanuel Vadot }; 268*f126890aSEmmanuel Vadot 269*f126890aSEmmanuel Vadot opp-400000000-1000 { 270*f126890aSEmmanuel Vadot opp-microvolt = <1000000 1000000 1350000>; 271*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <400000000>; 272*f126890aSEmmanuel Vadot opp-supported-hw = <0x0006>; 273*f126890aSEmmanuel Vadot required-opps = <&core_opp_1000>; 274*f126890aSEmmanuel Vadot }; 275*f126890aSEmmanuel Vadot 276*f126890aSEmmanuel Vadot opp-400000000-1200 { 277*f126890aSEmmanuel Vadot opp-microvolt = <1200000 1200000 1350000>; 278*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <400000000>; 279*f126890aSEmmanuel Vadot opp-supported-hw = <0x0001>; 280*f126890aSEmmanuel Vadot required-opps = <&core_opp_1200>; 281*f126890aSEmmanuel Vadot }; 282*f126890aSEmmanuel Vadot 283*f126890aSEmmanuel Vadot opp-400000000-1250 { 284*f126890aSEmmanuel Vadot opp-microvolt = <1250000 1250000 1350000>; 285*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <400000000>; 286*f126890aSEmmanuel Vadot opp-supported-hw = <0x0008>; 287*f126890aSEmmanuel Vadot required-opps = <&core_opp_1250>; 288*f126890aSEmmanuel Vadot }; 289*f126890aSEmmanuel Vadot 290*f126890aSEmmanuel Vadot opp-416000000-1200 { 291*f126890aSEmmanuel Vadot opp-microvolt = <1200000 1200000 1350000>; 292*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <416000000>; 293*f126890aSEmmanuel Vadot opp-supported-hw = <0x0007>; 294*f126890aSEmmanuel Vadot required-opps = <&core_opp_1200>; 295*f126890aSEmmanuel Vadot }; 296*f126890aSEmmanuel Vadot 297*f126890aSEmmanuel Vadot opp-416000000-1250 { 298*f126890aSEmmanuel Vadot opp-microvolt = <1250000 1250000 1350000>; 299*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <416000000>; 300*f126890aSEmmanuel Vadot opp-supported-hw = <0x0008>; 301*f126890aSEmmanuel Vadot required-opps = <&core_opp_1250>; 302*f126890aSEmmanuel Vadot }; 303*f126890aSEmmanuel Vadot 304*f126890aSEmmanuel Vadot opp-450000000-1200 { 305*f126890aSEmmanuel Vadot opp-microvolt = <1200000 1200000 1350000>; 306*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <450000000>; 307*f126890aSEmmanuel Vadot opp-supported-hw = <0x0007>; 308*f126890aSEmmanuel Vadot required-opps = <&core_opp_1200>; 309*f126890aSEmmanuel Vadot }; 310*f126890aSEmmanuel Vadot 311*f126890aSEmmanuel Vadot opp-450000000-1250 { 312*f126890aSEmmanuel Vadot opp-microvolt = <1250000 1250000 1350000>; 313*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <450000000>; 314*f126890aSEmmanuel Vadot opp-supported-hw = <0x0008>; 315*f126890aSEmmanuel Vadot required-opps = <&core_opp_1250>; 316*f126890aSEmmanuel Vadot }; 317*f126890aSEmmanuel Vadot 318*f126890aSEmmanuel Vadot opp-500000000-1200 { 319*f126890aSEmmanuel Vadot opp-microvolt = <1200000 1200000 1350000>; 320*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <500000000>; 321*f126890aSEmmanuel Vadot opp-supported-hw = <0x0007>; 322*f126890aSEmmanuel Vadot required-opps = <&core_opp_1200>; 323*f126890aSEmmanuel Vadot }; 324*f126890aSEmmanuel Vadot 325*f126890aSEmmanuel Vadot opp-500000000-1250 { 326*f126890aSEmmanuel Vadot opp-microvolt = <1250000 1250000 1350000>; 327*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <500000000>; 328*f126890aSEmmanuel Vadot opp-supported-hw = <0x0008>; 329*f126890aSEmmanuel Vadot required-opps = <&core_opp_1250>; 330*f126890aSEmmanuel Vadot }; 331*f126890aSEmmanuel Vadot 332*f126890aSEmmanuel Vadot opp-533000000-1200 { 333*f126890aSEmmanuel Vadot opp-microvolt = <1200000 1200000 1350000>; 334*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <533000000>; 335*f126890aSEmmanuel Vadot opp-supported-hw = <0x0007>; 336*f126890aSEmmanuel Vadot required-opps = <&core_opp_1200>; 337*f126890aSEmmanuel Vadot }; 338*f126890aSEmmanuel Vadot 339*f126890aSEmmanuel Vadot opp-533000000-1250 { 340*f126890aSEmmanuel Vadot opp-microvolt = <1250000 1250000 1350000>; 341*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <533000000>; 342*f126890aSEmmanuel Vadot opp-supported-hw = <0x0008>; 343*f126890aSEmmanuel Vadot required-opps = <&core_opp_1250>; 344*f126890aSEmmanuel Vadot }; 345*f126890aSEmmanuel Vadot 346*f126890aSEmmanuel Vadot opp-625000000-1200 { 347*f126890aSEmmanuel Vadot opp-microvolt = <1200000 1200000 1350000>; 348*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <625000000>; 349*f126890aSEmmanuel Vadot opp-supported-hw = <0x0006>; 350*f126890aSEmmanuel Vadot required-opps = <&core_opp_1200>; 351*f126890aSEmmanuel Vadot }; 352*f126890aSEmmanuel Vadot 353*f126890aSEmmanuel Vadot opp-625000000-1250 { 354*f126890aSEmmanuel Vadot opp-microvolt = <1250000 1250000 1350000>; 355*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <625000000>; 356*f126890aSEmmanuel Vadot opp-supported-hw = <0x0008>; 357*f126890aSEmmanuel Vadot required-opps = <&core_opp_1250>; 358*f126890aSEmmanuel Vadot }; 359*f126890aSEmmanuel Vadot 360*f126890aSEmmanuel Vadot opp-667000000-1200 { 361*f126890aSEmmanuel Vadot opp-microvolt = <1200000 1200000 1350000>; 362*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <667000000>; 363*f126890aSEmmanuel Vadot opp-supported-hw = <0x0006>; 364*f126890aSEmmanuel Vadot required-opps = <&core_opp_1200>; 365*f126890aSEmmanuel Vadot }; 366*f126890aSEmmanuel Vadot 367*f126890aSEmmanuel Vadot opp-750000000-1300 { 368*f126890aSEmmanuel Vadot opp-microvolt = <1300000 1300000 1350000>; 369*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <750000000>; 370*f126890aSEmmanuel Vadot opp-supported-hw = <0x0004>; 371*f126890aSEmmanuel Vadot required-opps = <&core_opp_1300>; 372*f126890aSEmmanuel Vadot }; 373*f126890aSEmmanuel Vadot 374*f126890aSEmmanuel Vadot opp-800000000-1300 { 375*f126890aSEmmanuel Vadot opp-microvolt = <1300000 1300000 1350000>; 376*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <800000000>; 377*f126890aSEmmanuel Vadot opp-supported-hw = <0x0004>; 378*f126890aSEmmanuel Vadot required-opps = <&core_opp_1300>; 379*f126890aSEmmanuel Vadot }; 380*f126890aSEmmanuel Vadot 381*f126890aSEmmanuel Vadot opp-900000000-1350 { 382*f126890aSEmmanuel Vadot opp-microvolt = <1350000 1350000 1350000>; 383*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <900000000>; 384*f126890aSEmmanuel Vadot opp-supported-hw = <0x0004>; 385*f126890aSEmmanuel Vadot required-opps = <&core_opp_1350>; 386*f126890aSEmmanuel Vadot }; 387*f126890aSEmmanuel Vadot }; 388*f126890aSEmmanuel Vadot 389*f126890aSEmmanuel Vadot emc_bw_dfs_opp_table: opp-table-actmon { 390*f126890aSEmmanuel Vadot compatible = "operating-points-v2"; 391*f126890aSEmmanuel Vadot 392*f126890aSEmmanuel Vadot opp-12750000 { 393*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <12750000>; 394*f126890aSEmmanuel Vadot opp-supported-hw = <0x000F>; 395*f126890aSEmmanuel Vadot opp-peak-kBps = <102000>; 396*f126890aSEmmanuel Vadot }; 397*f126890aSEmmanuel Vadot 398*f126890aSEmmanuel Vadot opp-25500000 { 399*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <25500000>; 400*f126890aSEmmanuel Vadot opp-supported-hw = <0x000F>; 401*f126890aSEmmanuel Vadot opp-peak-kBps = <204000>; 402*f126890aSEmmanuel Vadot }; 403*f126890aSEmmanuel Vadot 404*f126890aSEmmanuel Vadot opp-27000000 { 405*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <27000000>; 406*f126890aSEmmanuel Vadot opp-supported-hw = <0x000F>; 407*f126890aSEmmanuel Vadot opp-peak-kBps = <216000>; 408*f126890aSEmmanuel Vadot }; 409*f126890aSEmmanuel Vadot 410*f126890aSEmmanuel Vadot opp-51000000 { 411*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <51000000>; 412*f126890aSEmmanuel Vadot opp-supported-hw = <0x000F>; 413*f126890aSEmmanuel Vadot opp-peak-kBps = <408000>; 414*f126890aSEmmanuel Vadot }; 415*f126890aSEmmanuel Vadot 416*f126890aSEmmanuel Vadot opp-54000000 { 417*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <54000000>; 418*f126890aSEmmanuel Vadot opp-supported-hw = <0x000F>; 419*f126890aSEmmanuel Vadot opp-peak-kBps = <432000>; 420*f126890aSEmmanuel Vadot }; 421*f126890aSEmmanuel Vadot 422*f126890aSEmmanuel Vadot opp-102000000 { 423*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <102000000>; 424*f126890aSEmmanuel Vadot opp-supported-hw = <0x000F>; 425*f126890aSEmmanuel Vadot opp-peak-kBps = <816000>; 426*f126890aSEmmanuel Vadot }; 427*f126890aSEmmanuel Vadot 428*f126890aSEmmanuel Vadot opp-108000000 { 429*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <108000000>; 430*f126890aSEmmanuel Vadot opp-supported-hw = <0x000F>; 431*f126890aSEmmanuel Vadot opp-peak-kBps = <864000>; 432*f126890aSEmmanuel Vadot }; 433*f126890aSEmmanuel Vadot 434*f126890aSEmmanuel Vadot opp-204000000 { 435*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <204000000>; 436*f126890aSEmmanuel Vadot opp-supported-hw = <0x000F>; 437*f126890aSEmmanuel Vadot opp-peak-kBps = <1632000>; 438*f126890aSEmmanuel Vadot opp-suspend; 439*f126890aSEmmanuel Vadot }; 440*f126890aSEmmanuel Vadot 441*f126890aSEmmanuel Vadot opp-266500000 { 442*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <266500000>; 443*f126890aSEmmanuel Vadot opp-supported-hw = <0x000F>; 444*f126890aSEmmanuel Vadot opp-peak-kBps = <2132000>; 445*f126890aSEmmanuel Vadot }; 446*f126890aSEmmanuel Vadot 447*f126890aSEmmanuel Vadot opp-333500000 { 448*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <333500000>; 449*f126890aSEmmanuel Vadot opp-supported-hw = <0x000F>; 450*f126890aSEmmanuel Vadot opp-peak-kBps = <2668000>; 451*f126890aSEmmanuel Vadot }; 452*f126890aSEmmanuel Vadot 453*f126890aSEmmanuel Vadot opp-375000000 { 454*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <375000000>; 455*f126890aSEmmanuel Vadot opp-supported-hw = <0x000F>; 456*f126890aSEmmanuel Vadot opp-peak-kBps = <3000000>; 457*f126890aSEmmanuel Vadot }; 458*f126890aSEmmanuel Vadot 459*f126890aSEmmanuel Vadot opp-400000000 { 460*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <400000000>; 461*f126890aSEmmanuel Vadot opp-supported-hw = <0x000F>; 462*f126890aSEmmanuel Vadot opp-peak-kBps = <3200000>; 463*f126890aSEmmanuel Vadot }; 464*f126890aSEmmanuel Vadot 465*f126890aSEmmanuel Vadot opp-416000000 { 466*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <416000000>; 467*f126890aSEmmanuel Vadot opp-supported-hw = <0x000F>; 468*f126890aSEmmanuel Vadot opp-peak-kBps = <3328000>; 469*f126890aSEmmanuel Vadot }; 470*f126890aSEmmanuel Vadot 471*f126890aSEmmanuel Vadot opp-450000000 { 472*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <450000000>; 473*f126890aSEmmanuel Vadot opp-supported-hw = <0x000F>; 474*f126890aSEmmanuel Vadot opp-peak-kBps = <3600000>; 475*f126890aSEmmanuel Vadot }; 476*f126890aSEmmanuel Vadot 477*f126890aSEmmanuel Vadot opp-500000000 { 478*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <500000000>; 479*f126890aSEmmanuel Vadot opp-supported-hw = <0x000F>; 480*f126890aSEmmanuel Vadot opp-peak-kBps = <4000000>; 481*f126890aSEmmanuel Vadot }; 482*f126890aSEmmanuel Vadot 483*f126890aSEmmanuel Vadot opp-533000000 { 484*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <533000000>; 485*f126890aSEmmanuel Vadot opp-supported-hw = <0x000F>; 486*f126890aSEmmanuel Vadot opp-peak-kBps = <4264000>; 487*f126890aSEmmanuel Vadot }; 488*f126890aSEmmanuel Vadot 489*f126890aSEmmanuel Vadot opp-625000000 { 490*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <625000000>; 491*f126890aSEmmanuel Vadot opp-supported-hw = <0x000E>; 492*f126890aSEmmanuel Vadot opp-peak-kBps = <5000000>; 493*f126890aSEmmanuel Vadot }; 494*f126890aSEmmanuel Vadot 495*f126890aSEmmanuel Vadot opp-667000000 { 496*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <667000000>; 497*f126890aSEmmanuel Vadot opp-supported-hw = <0x0006>; 498*f126890aSEmmanuel Vadot opp-peak-kBps = <5336000>; 499*f126890aSEmmanuel Vadot }; 500*f126890aSEmmanuel Vadot 501*f126890aSEmmanuel Vadot opp-750000000 { 502*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <750000000>; 503*f126890aSEmmanuel Vadot opp-supported-hw = <0x0004>; 504*f126890aSEmmanuel Vadot opp-peak-kBps = <6000000>; 505*f126890aSEmmanuel Vadot }; 506*f126890aSEmmanuel Vadot 507*f126890aSEmmanuel Vadot opp-800000000 { 508*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <800000000>; 509*f126890aSEmmanuel Vadot opp-supported-hw = <0x0004>; 510*f126890aSEmmanuel Vadot opp-peak-kBps = <6400000>; 511*f126890aSEmmanuel Vadot }; 512*f126890aSEmmanuel Vadot 513*f126890aSEmmanuel Vadot opp-900000000 { 514*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <900000000>; 515*f126890aSEmmanuel Vadot opp-supported-hw = <0x0004>; 516*f126890aSEmmanuel Vadot opp-peak-kBps = <7200000>; 517*f126890aSEmmanuel Vadot }; 518*f126890aSEmmanuel Vadot }; 519*f126890aSEmmanuel Vadot 520*f126890aSEmmanuel Vadot pcie_dvfs_opp_table: opp-table-pcie { 521*f126890aSEmmanuel Vadot compatible = "operating-points-v2"; 522*f126890aSEmmanuel Vadot 523*f126890aSEmmanuel Vadot opp-250000000-1000 { 524*f126890aSEmmanuel Vadot opp-microvolt = <1000000 1000000 1350000>; 525*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <250000000>; 526*f126890aSEmmanuel Vadot opp-supported-hw = <0x000F>; 527*f126890aSEmmanuel Vadot required-opps = <&core_opp_1000>; 528*f126890aSEmmanuel Vadot }; 529*f126890aSEmmanuel Vadot }; 530*f126890aSEmmanuel Vadot 531*f126890aSEmmanuel Vadot host1x_dvfs_opp_table: opp-table-host1x { 532*f126890aSEmmanuel Vadot compatible = "operating-points-v2"; 533*f126890aSEmmanuel Vadot 534*f126890aSEmmanuel Vadot opp-152000000-1000 { 535*f126890aSEmmanuel Vadot opp-microvolt = <1000000 1000000 1350000>; 536*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <152000000>; 537*f126890aSEmmanuel Vadot opp-supported-hw = <0x0007>; 538*f126890aSEmmanuel Vadot required-opps = <&core_opp_1000>; 539*f126890aSEmmanuel Vadot }; 540*f126890aSEmmanuel Vadot 541*f126890aSEmmanuel Vadot opp-188000000-1050 { 542*f126890aSEmmanuel Vadot opp-microvolt = <1050000 1050000 1350000>; 543*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <188000000>; 544*f126890aSEmmanuel Vadot opp-supported-hw = <0x0007>; 545*f126890aSEmmanuel Vadot required-opps = <&core_opp_1050>; 546*f126890aSEmmanuel Vadot }; 547*f126890aSEmmanuel Vadot 548*f126890aSEmmanuel Vadot opp-222000000-1100 { 549*f126890aSEmmanuel Vadot opp-microvolt = <1100000 1100000 1350000>; 550*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <222000000>; 551*f126890aSEmmanuel Vadot opp-supported-hw = <0x0007>; 552*f126890aSEmmanuel Vadot required-opps = <&core_opp_1100>; 553*f126890aSEmmanuel Vadot }; 554*f126890aSEmmanuel Vadot 555*f126890aSEmmanuel Vadot opp-242000000-1250 { 556*f126890aSEmmanuel Vadot opp-microvolt = <1250000 1250000 1350000>; 557*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <242000000>; 558*f126890aSEmmanuel Vadot opp-supported-hw = <0x0008>; 559*f126890aSEmmanuel Vadot required-opps = <&core_opp_1250>; 560*f126890aSEmmanuel Vadot }; 561*f126890aSEmmanuel Vadot 562*f126890aSEmmanuel Vadot opp-254000000-1150 { 563*f126890aSEmmanuel Vadot opp-microvolt = <1150000 1150000 1350000>; 564*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <254000000>; 565*f126890aSEmmanuel Vadot opp-supported-hw = <0x0007>; 566*f126890aSEmmanuel Vadot required-opps = <&core_opp_1150>; 567*f126890aSEmmanuel Vadot }; 568*f126890aSEmmanuel Vadot 569*f126890aSEmmanuel Vadot opp-267000000-1200 { 570*f126890aSEmmanuel Vadot opp-microvolt = <1200000 1200000 1350000>; 571*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <267000000>; 572*f126890aSEmmanuel Vadot opp-supported-hw = <0x0007>; 573*f126890aSEmmanuel Vadot required-opps = <&core_opp_1200>; 574*f126890aSEmmanuel Vadot }; 575*f126890aSEmmanuel Vadot 576*f126890aSEmmanuel Vadot opp-300000000-1350 { 577*f126890aSEmmanuel Vadot opp-microvolt = <1350000 1350000 1350000>; 578*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <300000000>; 579*f126890aSEmmanuel Vadot opp-supported-hw = <0x0004>; 580*f126890aSEmmanuel Vadot required-opps = <&core_opp_1350>; 581*f126890aSEmmanuel Vadot }; 582*f126890aSEmmanuel Vadot }; 583*f126890aSEmmanuel Vadot 584*f126890aSEmmanuel Vadot mpe_dvfs_opp_table: opp-table-mpe { 585*f126890aSEmmanuel Vadot compatible = "operating-points-v2"; 586*f126890aSEmmanuel Vadot 587*f126890aSEmmanuel Vadot opp-234000000-1000 { 588*f126890aSEmmanuel Vadot opp-microvolt = <1000000 1000000 1350000>; 589*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <234000000>; 590*f126890aSEmmanuel Vadot opp-supported-hw = <0x0003>; 591*f126890aSEmmanuel Vadot required-opps = <&core_opp_1000>; 592*f126890aSEmmanuel Vadot }; 593*f126890aSEmmanuel Vadot 594*f126890aSEmmanuel Vadot opp-247000000-1000 { 595*f126890aSEmmanuel Vadot opp-microvolt = <1000000 1000000 1350000>; 596*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <247000000>; 597*f126890aSEmmanuel Vadot opp-supported-hw = <0x0004>; 598*f126890aSEmmanuel Vadot required-opps = <&core_opp_1000>; 599*f126890aSEmmanuel Vadot }; 600*f126890aSEmmanuel Vadot 601*f126890aSEmmanuel Vadot opp-285000000-1050 { 602*f126890aSEmmanuel Vadot opp-microvolt = <1050000 1050000 1350000>; 603*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <285000000>; 604*f126890aSEmmanuel Vadot opp-supported-hw = <0x0003>; 605*f126890aSEmmanuel Vadot required-opps = <&core_opp_1050>; 606*f126890aSEmmanuel Vadot }; 607*f126890aSEmmanuel Vadot 608*f126890aSEmmanuel Vadot opp-304000000-1050 { 609*f126890aSEmmanuel Vadot opp-microvolt = <1050000 1050000 1350000>; 610*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <304000000>; 611*f126890aSEmmanuel Vadot opp-supported-hw = <0x0004>; 612*f126890aSEmmanuel Vadot required-opps = <&core_opp_1050>; 613*f126890aSEmmanuel Vadot }; 614*f126890aSEmmanuel Vadot 615*f126890aSEmmanuel Vadot opp-332000000-1100 { 616*f126890aSEmmanuel Vadot opp-microvolt = <1100000 1100000 1350000>; 617*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <332000000>; 618*f126890aSEmmanuel Vadot opp-supported-hw = <0x0003>; 619*f126890aSEmmanuel Vadot required-opps = <&core_opp_1100>; 620*f126890aSEmmanuel Vadot }; 621*f126890aSEmmanuel Vadot 622*f126890aSEmmanuel Vadot opp-361000000-1100 { 623*f126890aSEmmanuel Vadot opp-microvolt = <1100000 1100000 1350000>; 624*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <361000000>; 625*f126890aSEmmanuel Vadot opp-supported-hw = <0x0004>; 626*f126890aSEmmanuel Vadot required-opps = <&core_opp_1100>; 627*f126890aSEmmanuel Vadot }; 628*f126890aSEmmanuel Vadot 629*f126890aSEmmanuel Vadot opp-380000000-1150 { 630*f126890aSEmmanuel Vadot opp-microvolt = <1150000 1150000 1350000>; 631*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <380000000>; 632*f126890aSEmmanuel Vadot opp-supported-hw = <0x0003>; 633*f126890aSEmmanuel Vadot required-opps = <&core_opp_1150>; 634*f126890aSEmmanuel Vadot }; 635*f126890aSEmmanuel Vadot 636*f126890aSEmmanuel Vadot opp-408000000-1150 { 637*f126890aSEmmanuel Vadot opp-microvolt = <1150000 1150000 1350000>; 638*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <408000000>; 639*f126890aSEmmanuel Vadot opp-supported-hw = <0x0004>; 640*f126890aSEmmanuel Vadot required-opps = <&core_opp_1150>; 641*f126890aSEmmanuel Vadot }; 642*f126890aSEmmanuel Vadot 643*f126890aSEmmanuel Vadot opp-416000000-1200 { 644*f126890aSEmmanuel Vadot opp-microvolt = <1200000 1200000 1350000>; 645*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <416000000>; 646*f126890aSEmmanuel Vadot opp-supported-hw = <0x0003>; 647*f126890aSEmmanuel Vadot required-opps = <&core_opp_1200>; 648*f126890aSEmmanuel Vadot }; 649*f126890aSEmmanuel Vadot 650*f126890aSEmmanuel Vadot opp-446000000-1200 { 651*f126890aSEmmanuel Vadot opp-microvolt = <1200000 1200000 1350000>; 652*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <446000000>; 653*f126890aSEmmanuel Vadot opp-supported-hw = <0x0004>; 654*f126890aSEmmanuel Vadot required-opps = <&core_opp_1200>; 655*f126890aSEmmanuel Vadot }; 656*f126890aSEmmanuel Vadot 657*f126890aSEmmanuel Vadot opp-484000000-1250 { 658*f126890aSEmmanuel Vadot opp-microvolt = <1250000 1250000 1350000>; 659*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <484000000>; 660*f126890aSEmmanuel Vadot opp-supported-hw = <0x000C>; 661*f126890aSEmmanuel Vadot required-opps = <&core_opp_1250>; 662*f126890aSEmmanuel Vadot }; 663*f126890aSEmmanuel Vadot 664*f126890aSEmmanuel Vadot opp-520000000-1300 { 665*f126890aSEmmanuel Vadot opp-microvolt = <1300000 1300000 1350000>; 666*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <520000000>; 667*f126890aSEmmanuel Vadot opp-supported-hw = <0x0004>; 668*f126890aSEmmanuel Vadot required-opps = <&core_opp_1300>; 669*f126890aSEmmanuel Vadot }; 670*f126890aSEmmanuel Vadot 671*f126890aSEmmanuel Vadot opp-600000000-1350 { 672*f126890aSEmmanuel Vadot opp-microvolt = <1350000 1350000 1350000>; 673*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <600000000>; 674*f126890aSEmmanuel Vadot opp-supported-hw = <0x0004>; 675*f126890aSEmmanuel Vadot required-opps = <&core_opp_1350>; 676*f126890aSEmmanuel Vadot }; 677*f126890aSEmmanuel Vadot }; 678*f126890aSEmmanuel Vadot 679*f126890aSEmmanuel Vadot vi_dvfs_opp_table: opp-table-vi { 680*f126890aSEmmanuel Vadot compatible = "operating-points-v2"; 681*f126890aSEmmanuel Vadot 682*f126890aSEmmanuel Vadot opp-216000000-1000 { 683*f126890aSEmmanuel Vadot opp-microvolt = <1000000 1000000 1350000>; 684*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <216000000>; 685*f126890aSEmmanuel Vadot opp-supported-hw = <0x0003>; 686*f126890aSEmmanuel Vadot required-opps = <&core_opp_1000>; 687*f126890aSEmmanuel Vadot }; 688*f126890aSEmmanuel Vadot 689*f126890aSEmmanuel Vadot opp-219000000-1000 { 690*f126890aSEmmanuel Vadot opp-microvolt = <1000000 1000000 1350000>; 691*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <219000000>; 692*f126890aSEmmanuel Vadot opp-supported-hw = <0x0004>; 693*f126890aSEmmanuel Vadot required-opps = <&core_opp_1000>; 694*f126890aSEmmanuel Vadot }; 695*f126890aSEmmanuel Vadot 696*f126890aSEmmanuel Vadot opp-267000000-1050 { 697*f126890aSEmmanuel Vadot opp-microvolt = <1050000 1050000 1350000>; 698*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <267000000>; 699*f126890aSEmmanuel Vadot opp-supported-hw = <0x0006>; 700*f126890aSEmmanuel Vadot required-opps = <&core_opp_1050>; 701*f126890aSEmmanuel Vadot }; 702*f126890aSEmmanuel Vadot 703*f126890aSEmmanuel Vadot opp-285000000-1050 { 704*f126890aSEmmanuel Vadot opp-microvolt = <1050000 1050000 1350000>; 705*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <285000000>; 706*f126890aSEmmanuel Vadot opp-supported-hw = <0x0001>; 707*f126890aSEmmanuel Vadot required-opps = <&core_opp_1050>; 708*f126890aSEmmanuel Vadot }; 709*f126890aSEmmanuel Vadot 710*f126890aSEmmanuel Vadot opp-300000000-1100 { 711*f126890aSEmmanuel Vadot opp-microvolt = <1100000 1100000 1350000>; 712*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <300000000>; 713*f126890aSEmmanuel Vadot opp-supported-hw = <0x0007>; 714*f126890aSEmmanuel Vadot required-opps = <&core_opp_1100>; 715*f126890aSEmmanuel Vadot }; 716*f126890aSEmmanuel Vadot 717*f126890aSEmmanuel Vadot opp-371000000-1150 { 718*f126890aSEmmanuel Vadot opp-microvolt = <1150000 1150000 1350000>; 719*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <371000000>; 720*f126890aSEmmanuel Vadot opp-supported-hw = <0x0006>; 721*f126890aSEmmanuel Vadot required-opps = <&core_opp_1150>; 722*f126890aSEmmanuel Vadot }; 723*f126890aSEmmanuel Vadot 724*f126890aSEmmanuel Vadot opp-409000000-1200 { 725*f126890aSEmmanuel Vadot opp-microvolt = <1200000 1200000 1350000>; 726*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <409000000>; 727*f126890aSEmmanuel Vadot opp-supported-hw = <0x0006>; 728*f126890aSEmmanuel Vadot required-opps = <&core_opp_1200>; 729*f126890aSEmmanuel Vadot }; 730*f126890aSEmmanuel Vadot 731*f126890aSEmmanuel Vadot opp-425000000-1250 { 732*f126890aSEmmanuel Vadot opp-microvolt = <1250000 1250000 1350000>; 733*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <425000000>; 734*f126890aSEmmanuel Vadot opp-supported-hw = <0x0004>; 735*f126890aSEmmanuel Vadot required-opps = <&core_opp_1250>; 736*f126890aSEmmanuel Vadot }; 737*f126890aSEmmanuel Vadot 738*f126890aSEmmanuel Vadot opp-470000000-1250 { 739*f126890aSEmmanuel Vadot opp-microvolt = <1250000 1250000 1350000>; 740*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <470000000>; 741*f126890aSEmmanuel Vadot opp-supported-hw = <0x0008>; 742*f126890aSEmmanuel Vadot required-opps = <&core_opp_1250>; 743*f126890aSEmmanuel Vadot }; 744*f126890aSEmmanuel Vadot }; 745*f126890aSEmmanuel Vadot 746*f126890aSEmmanuel Vadot epp_dvfs_opp_table: opp-table-epp { 747*f126890aSEmmanuel Vadot compatible = "operating-points-v2"; 748*f126890aSEmmanuel Vadot 749*f126890aSEmmanuel Vadot opp-267000000-1000 { 750*f126890aSEmmanuel Vadot opp-microvolt = <1000000 1000000 1350000>; 751*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <267000000>; 752*f126890aSEmmanuel Vadot opp-supported-hw = <0x0007>; 753*f126890aSEmmanuel Vadot required-opps = <&core_opp_1000>; 754*f126890aSEmmanuel Vadot }; 755*f126890aSEmmanuel Vadot 756*f126890aSEmmanuel Vadot opp-285000000-1050 { 757*f126890aSEmmanuel Vadot opp-microvolt = <1050000 1050000 1350000>; 758*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <285000000>; 759*f126890aSEmmanuel Vadot opp-supported-hw = <0x0003>; 760*f126890aSEmmanuel Vadot required-opps = <&core_opp_1050>; 761*f126890aSEmmanuel Vadot }; 762*f126890aSEmmanuel Vadot 763*f126890aSEmmanuel Vadot opp-304000000-1050 { 764*f126890aSEmmanuel Vadot opp-microvolt = <1050000 1050000 1350000>; 765*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <304000000>; 766*f126890aSEmmanuel Vadot opp-supported-hw = <0x0004>; 767*f126890aSEmmanuel Vadot required-opps = <&core_opp_1050>; 768*f126890aSEmmanuel Vadot }; 769*f126890aSEmmanuel Vadot 770*f126890aSEmmanuel Vadot opp-332000000-1100 { 771*f126890aSEmmanuel Vadot opp-microvolt = <1100000 1100000 1350000>; 772*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <332000000>; 773*f126890aSEmmanuel Vadot opp-supported-hw = <0x0003>; 774*f126890aSEmmanuel Vadot required-opps = <&core_opp_1100>; 775*f126890aSEmmanuel Vadot }; 776*f126890aSEmmanuel Vadot 777*f126890aSEmmanuel Vadot opp-361000000-1100 { 778*f126890aSEmmanuel Vadot opp-microvolt = <1100000 1100000 1350000>; 779*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <361000000>; 780*f126890aSEmmanuel Vadot opp-supported-hw = <0x0004>; 781*f126890aSEmmanuel Vadot required-opps = <&core_opp_1100>; 782*f126890aSEmmanuel Vadot }; 783*f126890aSEmmanuel Vadot 784*f126890aSEmmanuel Vadot opp-380000000-1150 { 785*f126890aSEmmanuel Vadot opp-microvolt = <1150000 1150000 1350000>; 786*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <380000000>; 787*f126890aSEmmanuel Vadot opp-supported-hw = <0x0003>; 788*f126890aSEmmanuel Vadot required-opps = <&core_opp_1150>; 789*f126890aSEmmanuel Vadot }; 790*f126890aSEmmanuel Vadot 791*f126890aSEmmanuel Vadot opp-408000000-1150 { 792*f126890aSEmmanuel Vadot opp-microvolt = <1150000 1150000 1350000>; 793*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <408000000>; 794*f126890aSEmmanuel Vadot opp-supported-hw = <0x0004>; 795*f126890aSEmmanuel Vadot required-opps = <&core_opp_1150>; 796*f126890aSEmmanuel Vadot }; 797*f126890aSEmmanuel Vadot 798*f126890aSEmmanuel Vadot opp-416000000-1200 { 799*f126890aSEmmanuel Vadot opp-microvolt = <1200000 1200000 1350000>; 800*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <416000000>; 801*f126890aSEmmanuel Vadot opp-supported-hw = <0x0003>; 802*f126890aSEmmanuel Vadot required-opps = <&core_opp_1200>; 803*f126890aSEmmanuel Vadot }; 804*f126890aSEmmanuel Vadot 805*f126890aSEmmanuel Vadot opp-446000000-1200 { 806*f126890aSEmmanuel Vadot opp-microvolt = <1200000 1200000 1350000>; 807*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <446000000>; 808*f126890aSEmmanuel Vadot opp-supported-hw = <0x0004>; 809*f126890aSEmmanuel Vadot required-opps = <&core_opp_1200>; 810*f126890aSEmmanuel Vadot }; 811*f126890aSEmmanuel Vadot 812*f126890aSEmmanuel Vadot opp-484000000-1250 { 813*f126890aSEmmanuel Vadot opp-microvolt = <1250000 1250000 1350000>; 814*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <484000000>; 815*f126890aSEmmanuel Vadot opp-supported-hw = <0x000C>; 816*f126890aSEmmanuel Vadot required-opps = <&core_opp_1250>; 817*f126890aSEmmanuel Vadot }; 818*f126890aSEmmanuel Vadot 819*f126890aSEmmanuel Vadot opp-520000000-1300 { 820*f126890aSEmmanuel Vadot opp-microvolt = <1300000 1300000 1350000>; 821*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <520000000>; 822*f126890aSEmmanuel Vadot opp-supported-hw = <0x0004>; 823*f126890aSEmmanuel Vadot required-opps = <&core_opp_1300>; 824*f126890aSEmmanuel Vadot }; 825*f126890aSEmmanuel Vadot 826*f126890aSEmmanuel Vadot opp-600000000-1350 { 827*f126890aSEmmanuel Vadot opp-microvolt = <1350000 1350000 1350000>; 828*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <600000000>; 829*f126890aSEmmanuel Vadot opp-supported-hw = <0x0004>; 830*f126890aSEmmanuel Vadot required-opps = <&core_opp_1350>; 831*f126890aSEmmanuel Vadot }; 832*f126890aSEmmanuel Vadot }; 833*f126890aSEmmanuel Vadot 834*f126890aSEmmanuel Vadot gr2d_dvfs_opp_table: opp-table-gr2d { 835*f126890aSEmmanuel Vadot compatible = "operating-points-v2"; 836*f126890aSEmmanuel Vadot 837*f126890aSEmmanuel Vadot opp-267000000-1000 { 838*f126890aSEmmanuel Vadot opp-microvolt = <1000000 1000000 1350000>; 839*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <267000000>; 840*f126890aSEmmanuel Vadot opp-supported-hw = <0x0007>; 841*f126890aSEmmanuel Vadot required-opps = <&core_opp_1000>; 842*f126890aSEmmanuel Vadot }; 843*f126890aSEmmanuel Vadot 844*f126890aSEmmanuel Vadot opp-285000000-1050 { 845*f126890aSEmmanuel Vadot opp-microvolt = <1050000 1050000 1350000>; 846*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <285000000>; 847*f126890aSEmmanuel Vadot opp-supported-hw = <0x0003>; 848*f126890aSEmmanuel Vadot required-opps = <&core_opp_1050>; 849*f126890aSEmmanuel Vadot }; 850*f126890aSEmmanuel Vadot 851*f126890aSEmmanuel Vadot opp-304000000-1050 { 852*f126890aSEmmanuel Vadot opp-microvolt = <1050000 1050000 1350000>; 853*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <304000000>; 854*f126890aSEmmanuel Vadot opp-supported-hw = <0x0004>; 855*f126890aSEmmanuel Vadot required-opps = <&core_opp_1050>; 856*f126890aSEmmanuel Vadot }; 857*f126890aSEmmanuel Vadot 858*f126890aSEmmanuel Vadot opp-332000000-1100 { 859*f126890aSEmmanuel Vadot opp-microvolt = <1100000 1100000 1350000>; 860*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <332000000>; 861*f126890aSEmmanuel Vadot opp-supported-hw = <0x0003>; 862*f126890aSEmmanuel Vadot required-opps = <&core_opp_1100>; 863*f126890aSEmmanuel Vadot }; 864*f126890aSEmmanuel Vadot 865*f126890aSEmmanuel Vadot opp-361000000-1100 { 866*f126890aSEmmanuel Vadot opp-microvolt = <1100000 1100000 1350000>; 867*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <361000000>; 868*f126890aSEmmanuel Vadot opp-supported-hw = <0x0004>; 869*f126890aSEmmanuel Vadot required-opps = <&core_opp_1100>; 870*f126890aSEmmanuel Vadot }; 871*f126890aSEmmanuel Vadot 872*f126890aSEmmanuel Vadot opp-380000000-1150 { 873*f126890aSEmmanuel Vadot opp-microvolt = <1150000 1150000 1350000>; 874*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <380000000>; 875*f126890aSEmmanuel Vadot opp-supported-hw = <0x0003>; 876*f126890aSEmmanuel Vadot required-opps = <&core_opp_1150>; 877*f126890aSEmmanuel Vadot }; 878*f126890aSEmmanuel Vadot 879*f126890aSEmmanuel Vadot opp-408000000-1150 { 880*f126890aSEmmanuel Vadot opp-microvolt = <1150000 1150000 1350000>; 881*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <408000000>; 882*f126890aSEmmanuel Vadot opp-supported-hw = <0x0004>; 883*f126890aSEmmanuel Vadot required-opps = <&core_opp_1150>; 884*f126890aSEmmanuel Vadot }; 885*f126890aSEmmanuel Vadot 886*f126890aSEmmanuel Vadot opp-416000000-1200 { 887*f126890aSEmmanuel Vadot opp-microvolt = <1200000 1200000 1350000>; 888*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <416000000>; 889*f126890aSEmmanuel Vadot opp-supported-hw = <0x0003>; 890*f126890aSEmmanuel Vadot required-opps = <&core_opp_1200>; 891*f126890aSEmmanuel Vadot }; 892*f126890aSEmmanuel Vadot 893*f126890aSEmmanuel Vadot opp-446000000-1200 { 894*f126890aSEmmanuel Vadot opp-microvolt = <1200000 1200000 1350000>; 895*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <446000000>; 896*f126890aSEmmanuel Vadot opp-supported-hw = <0x0004>; 897*f126890aSEmmanuel Vadot required-opps = <&core_opp_1200>; 898*f126890aSEmmanuel Vadot }; 899*f126890aSEmmanuel Vadot 900*f126890aSEmmanuel Vadot opp-484000000-1250 { 901*f126890aSEmmanuel Vadot opp-microvolt = <1250000 1250000 1350000>; 902*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <484000000>; 903*f126890aSEmmanuel Vadot opp-supported-hw = <0x000C>; 904*f126890aSEmmanuel Vadot required-opps = <&core_opp_1250>; 905*f126890aSEmmanuel Vadot }; 906*f126890aSEmmanuel Vadot 907*f126890aSEmmanuel Vadot opp-520000000-1300 { 908*f126890aSEmmanuel Vadot opp-microvolt = <1300000 1300000 1350000>; 909*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <520000000>; 910*f126890aSEmmanuel Vadot opp-supported-hw = <0x0004>; 911*f126890aSEmmanuel Vadot required-opps = <&core_opp_1300>; 912*f126890aSEmmanuel Vadot }; 913*f126890aSEmmanuel Vadot 914*f126890aSEmmanuel Vadot opp-600000000-1350 { 915*f126890aSEmmanuel Vadot opp-microvolt = <1350000 1350000 1350000>; 916*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <600000000>; 917*f126890aSEmmanuel Vadot opp-supported-hw = <0x0004>; 918*f126890aSEmmanuel Vadot required-opps = <&core_opp_1350>; 919*f126890aSEmmanuel Vadot }; 920*f126890aSEmmanuel Vadot }; 921*f126890aSEmmanuel Vadot 922*f126890aSEmmanuel Vadot gr3d_dvfs_opp_table: opp-table-gr3d { 923*f126890aSEmmanuel Vadot compatible = "operating-points-v2"; 924*f126890aSEmmanuel Vadot 925*f126890aSEmmanuel Vadot opp-234000000-1000 { 926*f126890aSEmmanuel Vadot opp-microvolt = <1000000 1000000 1350000>; 927*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <234000000>; 928*f126890aSEmmanuel Vadot opp-supported-hw = <0x0003>; 929*f126890aSEmmanuel Vadot required-opps = <&core_opp_1000>, <&core_opp_1000>; 930*f126890aSEmmanuel Vadot }; 931*f126890aSEmmanuel Vadot 932*f126890aSEmmanuel Vadot opp-247000000-1000 { 933*f126890aSEmmanuel Vadot opp-microvolt = <1000000 1000000 1350000>; 934*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <247000000>; 935*f126890aSEmmanuel Vadot opp-supported-hw = <0x0004>; 936*f126890aSEmmanuel Vadot required-opps = <&core_opp_1000>, <&core_opp_1000>; 937*f126890aSEmmanuel Vadot }; 938*f126890aSEmmanuel Vadot 939*f126890aSEmmanuel Vadot opp-285000000-1050 { 940*f126890aSEmmanuel Vadot opp-microvolt = <1050000 1050000 1350000>; 941*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <285000000>; 942*f126890aSEmmanuel Vadot opp-supported-hw = <0x0003>; 943*f126890aSEmmanuel Vadot required-opps = <&core_opp_1050>, <&core_opp_1050>; 944*f126890aSEmmanuel Vadot }; 945*f126890aSEmmanuel Vadot 946*f126890aSEmmanuel Vadot opp-304000000-1050 { 947*f126890aSEmmanuel Vadot opp-microvolt = <1050000 1050000 1350000>; 948*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <304000000>; 949*f126890aSEmmanuel Vadot opp-supported-hw = <0x0004>; 950*f126890aSEmmanuel Vadot required-opps = <&core_opp_1050>, <&core_opp_1050>; 951*f126890aSEmmanuel Vadot }; 952*f126890aSEmmanuel Vadot 953*f126890aSEmmanuel Vadot opp-332000000-1100 { 954*f126890aSEmmanuel Vadot opp-microvolt = <1100000 1100000 1350000>; 955*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <332000000>; 956*f126890aSEmmanuel Vadot opp-supported-hw = <0x0003>; 957*f126890aSEmmanuel Vadot required-opps = <&core_opp_1100>, <&core_opp_1100>; 958*f126890aSEmmanuel Vadot }; 959*f126890aSEmmanuel Vadot 960*f126890aSEmmanuel Vadot opp-361000000-1100 { 961*f126890aSEmmanuel Vadot opp-microvolt = <1100000 1100000 1350000>; 962*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <361000000>; 963*f126890aSEmmanuel Vadot opp-supported-hw = <0x0004>; 964*f126890aSEmmanuel Vadot required-opps = <&core_opp_1100>, <&core_opp_1100>; 965*f126890aSEmmanuel Vadot }; 966*f126890aSEmmanuel Vadot 967*f126890aSEmmanuel Vadot opp-380000000-1150 { 968*f126890aSEmmanuel Vadot opp-microvolt = <1150000 1150000 1350000>; 969*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <380000000>; 970*f126890aSEmmanuel Vadot opp-supported-hw = <0x0003>; 971*f126890aSEmmanuel Vadot required-opps = <&core_opp_1150>, <&core_opp_1150>; 972*f126890aSEmmanuel Vadot }; 973*f126890aSEmmanuel Vadot 974*f126890aSEmmanuel Vadot opp-408000000-1150 { 975*f126890aSEmmanuel Vadot opp-microvolt = <1150000 1150000 1350000>; 976*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <408000000>; 977*f126890aSEmmanuel Vadot opp-supported-hw = <0x0004>; 978*f126890aSEmmanuel Vadot required-opps = <&core_opp_1150>, <&core_opp_1150>; 979*f126890aSEmmanuel Vadot }; 980*f126890aSEmmanuel Vadot 981*f126890aSEmmanuel Vadot opp-416000000-1200 { 982*f126890aSEmmanuel Vadot opp-microvolt = <1200000 1200000 1350000>; 983*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <416000000>; 984*f126890aSEmmanuel Vadot opp-supported-hw = <0x0003>; 985*f126890aSEmmanuel Vadot required-opps = <&core_opp_1200>, <&core_opp_1200>; 986*f126890aSEmmanuel Vadot }; 987*f126890aSEmmanuel Vadot 988*f126890aSEmmanuel Vadot opp-446000000-1200 { 989*f126890aSEmmanuel Vadot opp-microvolt = <1200000 1200000 1350000>; 990*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <446000000>; 991*f126890aSEmmanuel Vadot opp-supported-hw = <0x0004>; 992*f126890aSEmmanuel Vadot required-opps = <&core_opp_1200>, <&core_opp_1200>; 993*f126890aSEmmanuel Vadot }; 994*f126890aSEmmanuel Vadot 995*f126890aSEmmanuel Vadot opp-484000000-1250 { 996*f126890aSEmmanuel Vadot opp-microvolt = <1250000 1250000 1350000>; 997*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <484000000>; 998*f126890aSEmmanuel Vadot opp-supported-hw = <0x000C>; 999*f126890aSEmmanuel Vadot required-opps = <&core_opp_1250>, <&core_opp_1250>; 1000*f126890aSEmmanuel Vadot }; 1001*f126890aSEmmanuel Vadot 1002*f126890aSEmmanuel Vadot opp-520000000-1300 { 1003*f126890aSEmmanuel Vadot opp-microvolt = <1300000 1300000 1350000>; 1004*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <520000000>; 1005*f126890aSEmmanuel Vadot opp-supported-hw = <0x0004>; 1006*f126890aSEmmanuel Vadot required-opps = <&core_opp_1300>, <&core_opp_1300>; 1007*f126890aSEmmanuel Vadot }; 1008*f126890aSEmmanuel Vadot 1009*f126890aSEmmanuel Vadot opp-600000000-1350 { 1010*f126890aSEmmanuel Vadot opp-microvolt = <1350000 1350000 1350000>; 1011*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <600000000>; 1012*f126890aSEmmanuel Vadot opp-supported-hw = <0x0004>; 1013*f126890aSEmmanuel Vadot required-opps = <&core_opp_1350>, <&core_opp_1350>; 1014*f126890aSEmmanuel Vadot }; 1015*f126890aSEmmanuel Vadot }; 1016*f126890aSEmmanuel Vadot 1017*f126890aSEmmanuel Vadot disp1_dvfs_opp_table: opp-table-disp1 { 1018*f126890aSEmmanuel Vadot compatible = "operating-points-v2"; 1019*f126890aSEmmanuel Vadot 1020*f126890aSEmmanuel Vadot opp-120000000-1000 { 1021*f126890aSEmmanuel Vadot opp-microvolt = <1000000 1000000 1350000>; 1022*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <120000000>; 1023*f126890aSEmmanuel Vadot opp-supported-hw = <0x0009>; 1024*f126890aSEmmanuel Vadot required-opps = <&core_opp_1000>; 1025*f126890aSEmmanuel Vadot }; 1026*f126890aSEmmanuel Vadot 1027*f126890aSEmmanuel Vadot opp-155000000-1000 { 1028*f126890aSEmmanuel Vadot opp-microvolt = <1000000 1000000 1350000>; 1029*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <155000000>; 1030*f126890aSEmmanuel Vadot opp-supported-hw = <0x0006>; 1031*f126890aSEmmanuel Vadot required-opps = <&core_opp_1000>; 1032*f126890aSEmmanuel Vadot }; 1033*f126890aSEmmanuel Vadot 1034*f126890aSEmmanuel Vadot opp-190000000-1200 { 1035*f126890aSEmmanuel Vadot opp-microvolt = <1200000 1200000 1350000>; 1036*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <190000000>; 1037*f126890aSEmmanuel Vadot opp-supported-hw = <0x0009>; 1038*f126890aSEmmanuel Vadot required-opps = <&core_opp_1200>; 1039*f126890aSEmmanuel Vadot }; 1040*f126890aSEmmanuel Vadot 1041*f126890aSEmmanuel Vadot opp-268000000-1050 { 1042*f126890aSEmmanuel Vadot opp-microvolt = <1050000 1050000 1350000>; 1043*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <268000000>; 1044*f126890aSEmmanuel Vadot opp-supported-hw = <0x0006>; 1045*f126890aSEmmanuel Vadot required-opps = <&core_opp_1050>; 1046*f126890aSEmmanuel Vadot }; 1047*f126890aSEmmanuel Vadot }; 1048*f126890aSEmmanuel Vadot 1049*f126890aSEmmanuel Vadot disp2_dvfs_opp_table: opp-table-disp2 { 1050*f126890aSEmmanuel Vadot compatible = "operating-points-v2"; 1051*f126890aSEmmanuel Vadot 1052*f126890aSEmmanuel Vadot opp-120000000-1000 { 1053*f126890aSEmmanuel Vadot opp-microvolt = <1000000 1000000 1350000>; 1054*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <120000000>; 1055*f126890aSEmmanuel Vadot opp-supported-hw = <0x0009>; 1056*f126890aSEmmanuel Vadot required-opps = <&core_opp_1000>; 1057*f126890aSEmmanuel Vadot }; 1058*f126890aSEmmanuel Vadot 1059*f126890aSEmmanuel Vadot opp-155000000-1000 { 1060*f126890aSEmmanuel Vadot opp-microvolt = <1000000 1000000 1350000>; 1061*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <155000000>; 1062*f126890aSEmmanuel Vadot opp-supported-hw = <0x0006>; 1063*f126890aSEmmanuel Vadot required-opps = <&core_opp_1000>; 1064*f126890aSEmmanuel Vadot }; 1065*f126890aSEmmanuel Vadot 1066*f126890aSEmmanuel Vadot opp-190000000-1200 { 1067*f126890aSEmmanuel Vadot opp-microvolt = <1200000 1200000 1350000>; 1068*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <190000000>; 1069*f126890aSEmmanuel Vadot opp-supported-hw = <0x0009>; 1070*f126890aSEmmanuel Vadot required-opps = <&core_opp_1200>; 1071*f126890aSEmmanuel Vadot }; 1072*f126890aSEmmanuel Vadot 1073*f126890aSEmmanuel Vadot opp-268000000-1050 { 1074*f126890aSEmmanuel Vadot opp-microvolt = <1050000 1050000 1350000>; 1075*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <268000000>; 1076*f126890aSEmmanuel Vadot opp-supported-hw = <0x0006>; 1077*f126890aSEmmanuel Vadot required-opps = <&core_opp_1050>; 1078*f126890aSEmmanuel Vadot }; 1079*f126890aSEmmanuel Vadot }; 1080*f126890aSEmmanuel Vadot 1081*f126890aSEmmanuel Vadot hdmi_dvfs_opp_table: opp-table-hdmi { 1082*f126890aSEmmanuel Vadot compatible = "operating-points-v2"; 1083*f126890aSEmmanuel Vadot 1084*f126890aSEmmanuel Vadot opp-148500000-1000 { 1085*f126890aSEmmanuel Vadot opp-microvolt = <1000000 1000000 1350000>; 1086*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <148500000>; 1087*f126890aSEmmanuel Vadot opp-supported-hw = <0x000F>; 1088*f126890aSEmmanuel Vadot required-opps = <&core_opp_1000>; 1089*f126890aSEmmanuel Vadot }; 1090*f126890aSEmmanuel Vadot }; 1091*f126890aSEmmanuel Vadot 1092*f126890aSEmmanuel Vadot tvo_dvfs_opp_table: opp-table-tvo { 1093*f126890aSEmmanuel Vadot compatible = "operating-points-v2"; 1094*f126890aSEmmanuel Vadot 1095*f126890aSEmmanuel Vadot opp-297000000-1050 { 1096*f126890aSEmmanuel Vadot opp-microvolt = <1050000 1050000 1350000>; 1097*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <297000000>; 1098*f126890aSEmmanuel Vadot opp-supported-hw = <0x000F>; 1099*f126890aSEmmanuel Vadot required-opps = <&core_opp_1050>; 1100*f126890aSEmmanuel Vadot }; 1101*f126890aSEmmanuel Vadot }; 1102*f126890aSEmmanuel Vadot 1103*f126890aSEmmanuel Vadot dsia_dvfs_opp_table: opp-table-dsia { 1104*f126890aSEmmanuel Vadot compatible = "operating-points-v2"; 1105*f126890aSEmmanuel Vadot 1106*f126890aSEmmanuel Vadot opp-275000000-1000 { 1107*f126890aSEmmanuel Vadot opp-microvolt = <1000000 1000000 1350000>; 1108*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <275000000>; 1109*f126890aSEmmanuel Vadot opp-supported-hw = <0x000F>; 1110*f126890aSEmmanuel Vadot required-opps = <&core_opp_1000>; 1111*f126890aSEmmanuel Vadot }; 1112*f126890aSEmmanuel Vadot }; 1113*f126890aSEmmanuel Vadot 1114*f126890aSEmmanuel Vadot dsib_dvfs_opp_table: opp-table-dsib { 1115*f126890aSEmmanuel Vadot compatible = "operating-points-v2"; 1116*f126890aSEmmanuel Vadot 1117*f126890aSEmmanuel Vadot opp-275000000-1000 { 1118*f126890aSEmmanuel Vadot opp-microvolt = <1000000 1000000 1350000>; 1119*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <275000000>; 1120*f126890aSEmmanuel Vadot opp-supported-hw = <0x000F>; 1121*f126890aSEmmanuel Vadot required-opps = <&core_opp_1000>; 1122*f126890aSEmmanuel Vadot }; 1123*f126890aSEmmanuel Vadot }; 1124*f126890aSEmmanuel Vadot 1125*f126890aSEmmanuel Vadot sclk_dvfs_opp_table: opp-table-sclk { 1126*f126890aSEmmanuel Vadot compatible = "operating-points-v2"; 1127*f126890aSEmmanuel Vadot 1128*f126890aSEmmanuel Vadot opp-51000000-950 { 1129*f126890aSEmmanuel Vadot opp-microvolt = <950000 950000 1350000>; 1130*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <51000000>; 1131*f126890aSEmmanuel Vadot opp-supported-hw = <0x0006>; 1132*f126890aSEmmanuel Vadot required-opps = <&core_opp_950>; 1133*f126890aSEmmanuel Vadot }; 1134*f126890aSEmmanuel Vadot 1135*f126890aSEmmanuel Vadot opp-136000000-1000 { 1136*f126890aSEmmanuel Vadot opp-microvolt = <1000000 1000000 1350000>; 1137*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <136000000>; 1138*f126890aSEmmanuel Vadot opp-supported-hw = <0x0001>; 1139*f126890aSEmmanuel Vadot required-opps = <&core_opp_1000>; 1140*f126890aSEmmanuel Vadot }; 1141*f126890aSEmmanuel Vadot 1142*f126890aSEmmanuel Vadot opp-164000000-1050 { 1143*f126890aSEmmanuel Vadot opp-microvolt = <1050000 1050000 1350000>; 1144*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <164000000>; 1145*f126890aSEmmanuel Vadot opp-supported-hw = <0x0001>; 1146*f126890aSEmmanuel Vadot required-opps = <&core_opp_1050>; 1147*f126890aSEmmanuel Vadot }; 1148*f126890aSEmmanuel Vadot 1149*f126890aSEmmanuel Vadot opp-191000000-1100 { 1150*f126890aSEmmanuel Vadot opp-microvolt = <1100000 1100000 1350000>; 1151*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <191000000>; 1152*f126890aSEmmanuel Vadot opp-supported-hw = <0x0001>; 1153*f126890aSEmmanuel Vadot required-opps = <&core_opp_1100>; 1154*f126890aSEmmanuel Vadot }; 1155*f126890aSEmmanuel Vadot 1156*f126890aSEmmanuel Vadot opp-205000000-1000 { 1157*f126890aSEmmanuel Vadot opp-microvolt = <1000000 1000000 1350000>; 1158*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <205000000>; 1159*f126890aSEmmanuel Vadot opp-supported-hw = <0x0006>; 1160*f126890aSEmmanuel Vadot required-opps = <&core_opp_1000>; 1161*f126890aSEmmanuel Vadot }; 1162*f126890aSEmmanuel Vadot 1163*f126890aSEmmanuel Vadot opp-216000000-1150 { 1164*f126890aSEmmanuel Vadot opp-microvolt = <1150000 1150000 1350000>; 1165*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <216000000>; 1166*f126890aSEmmanuel Vadot opp-supported-hw = <0x0001>; 1167*f126890aSEmmanuel Vadot required-opps = <&core_opp_1150>; 1168*f126890aSEmmanuel Vadot }; 1169*f126890aSEmmanuel Vadot 1170*f126890aSEmmanuel Vadot opp-227000000-1100 { 1171*f126890aSEmmanuel Vadot opp-microvolt = <1100000 1100000 1350000>; 1172*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <227000000>; 1173*f126890aSEmmanuel Vadot opp-supported-hw = <0x0006>; 1174*f126890aSEmmanuel Vadot required-opps = <&core_opp_1100>; 1175*f126890aSEmmanuel Vadot }; 1176*f126890aSEmmanuel Vadot 1177*f126890aSEmmanuel Vadot opp-267000000-1200 { 1178*f126890aSEmmanuel Vadot opp-microvolt = <1200000 1200000 1350000>; 1179*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <267000000>; 1180*f126890aSEmmanuel Vadot opp-supported-hw = <0x0006>; 1181*f126890aSEmmanuel Vadot required-opps = <&core_opp_1200>; 1182*f126890aSEmmanuel Vadot }; 1183*f126890aSEmmanuel Vadot 1184*f126890aSEmmanuel Vadot opp-334000000-1250 { 1185*f126890aSEmmanuel Vadot opp-microvolt = <1250000 1250000 1350000>; 1186*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <334000000>; 1187*f126890aSEmmanuel Vadot opp-supported-hw = <0x0004>; 1188*f126890aSEmmanuel Vadot required-opps = <&core_opp_1250>; 1189*f126890aSEmmanuel Vadot }; 1190*f126890aSEmmanuel Vadot 1191*f126890aSEmmanuel Vadot opp-378000000-1250 { 1192*f126890aSEmmanuel Vadot opp-microvolt = <1250000 1250000 1350000>; 1193*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <378000000>; 1194*f126890aSEmmanuel Vadot opp-supported-hw = <0x0008>; 1195*f126890aSEmmanuel Vadot required-opps = <&core_opp_1250>; 1196*f126890aSEmmanuel Vadot }; 1197*f126890aSEmmanuel Vadot }; 1198*f126890aSEmmanuel Vadot 1199*f126890aSEmmanuel Vadot pll_c_dvfs_opp_table: opp-table-pllc { 1200*f126890aSEmmanuel Vadot compatible = "operating-points-v2"; 1201*f126890aSEmmanuel Vadot 1202*f126890aSEmmanuel Vadot opp-533000000-950 { 1203*f126890aSEmmanuel Vadot opp-microvolt = <950000 950000 1350000>; 1204*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <533000000>; 1205*f126890aSEmmanuel Vadot opp-supported-hw = <0x000F>; 1206*f126890aSEmmanuel Vadot required-opps = <&core_opp_950>; 1207*f126890aSEmmanuel Vadot }; 1208*f126890aSEmmanuel Vadot 1209*f126890aSEmmanuel Vadot opp-667000000-1000 { 1210*f126890aSEmmanuel Vadot opp-microvolt = <1000000 1000000 1350000>; 1211*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <667000000>; 1212*f126890aSEmmanuel Vadot opp-supported-hw = <0x000F>; 1213*f126890aSEmmanuel Vadot required-opps = <&core_opp_1000>; 1214*f126890aSEmmanuel Vadot }; 1215*f126890aSEmmanuel Vadot 1216*f126890aSEmmanuel Vadot opp-800000000-1100 { 1217*f126890aSEmmanuel Vadot opp-microvolt = <1100000 1100000 1350000>; 1218*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <800000000>; 1219*f126890aSEmmanuel Vadot opp-supported-hw = <0x000F>; 1220*f126890aSEmmanuel Vadot required-opps = <&core_opp_1100>; 1221*f126890aSEmmanuel Vadot }; 1222*f126890aSEmmanuel Vadot 1223*f126890aSEmmanuel Vadot opp-1066000000-1200 { 1224*f126890aSEmmanuel Vadot opp-microvolt = <1200000 1200000 1350000>; 1225*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <1066000000>; 1226*f126890aSEmmanuel Vadot opp-supported-hw = <0x000F>; 1227*f126890aSEmmanuel Vadot required-opps = <&core_opp_1200>; 1228*f126890aSEmmanuel Vadot }; 1229*f126890aSEmmanuel Vadot 1230*f126890aSEmmanuel Vadot opp-1200000000-1350 { 1231*f126890aSEmmanuel Vadot opp-microvolt = <1350000 1350000 1350000>; 1232*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <1200000000>; 1233*f126890aSEmmanuel Vadot opp-supported-hw = <0x000F>; 1234*f126890aSEmmanuel Vadot required-opps = <&core_opp_1350>; 1235*f126890aSEmmanuel Vadot }; 1236*f126890aSEmmanuel Vadot }; 1237*f126890aSEmmanuel Vadot 1238*f126890aSEmmanuel Vadot pll_e_dvfs_opp_table: opp-table-plle { 1239*f126890aSEmmanuel Vadot compatible = "operating-points-v2"; 1240*f126890aSEmmanuel Vadot 1241*f126890aSEmmanuel Vadot opp-100000000-1000 { 1242*f126890aSEmmanuel Vadot opp-microvolt = <1000000 1000000 1350000>; 1243*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <100000000>; 1244*f126890aSEmmanuel Vadot opp-supported-hw = <0x000F>; 1245*f126890aSEmmanuel Vadot required-opps = <&core_opp_1000>; 1246*f126890aSEmmanuel Vadot }; 1247*f126890aSEmmanuel Vadot }; 1248*f126890aSEmmanuel Vadot 1249*f126890aSEmmanuel Vadot pll_m_dvfs_opp_table: opp-table-pllm { 1250*f126890aSEmmanuel Vadot compatible = "operating-points-v2"; 1251*f126890aSEmmanuel Vadot 1252*f126890aSEmmanuel Vadot opp-533000000-950 { 1253*f126890aSEmmanuel Vadot opp-microvolt = <950000 950000 1350000>; 1254*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <533000000>; 1255*f126890aSEmmanuel Vadot opp-supported-hw = <0x000F>; 1256*f126890aSEmmanuel Vadot required-opps = <&core_opp_950>; 1257*f126890aSEmmanuel Vadot }; 1258*f126890aSEmmanuel Vadot 1259*f126890aSEmmanuel Vadot opp-667000000-1000 { 1260*f126890aSEmmanuel Vadot opp-microvolt = <1000000 1000000 1350000>; 1261*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <667000000>; 1262*f126890aSEmmanuel Vadot opp-supported-hw = <0x000F>; 1263*f126890aSEmmanuel Vadot required-opps = <&core_opp_1000>; 1264*f126890aSEmmanuel Vadot }; 1265*f126890aSEmmanuel Vadot 1266*f126890aSEmmanuel Vadot opp-800000000-1100 { 1267*f126890aSEmmanuel Vadot opp-microvolt = <1100000 1100000 1350000>; 1268*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <800000000>; 1269*f126890aSEmmanuel Vadot opp-supported-hw = <0x000F>; 1270*f126890aSEmmanuel Vadot required-opps = <&core_opp_1100>; 1271*f126890aSEmmanuel Vadot }; 1272*f126890aSEmmanuel Vadot 1273*f126890aSEmmanuel Vadot opp-1066000000-1200 { 1274*f126890aSEmmanuel Vadot opp-microvolt = <1200000 1200000 1350000>; 1275*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <1066000000>; 1276*f126890aSEmmanuel Vadot opp-supported-hw = <0x000F>; 1277*f126890aSEmmanuel Vadot required-opps = <&core_opp_1200>; 1278*f126890aSEmmanuel Vadot }; 1279*f126890aSEmmanuel Vadot }; 1280*f126890aSEmmanuel Vadot 1281*f126890aSEmmanuel Vadot vde_dvfs_opp_table: opp-table-vde { 1282*f126890aSEmmanuel Vadot compatible = "operating-points-v2"; 1283*f126890aSEmmanuel Vadot 1284*f126890aSEmmanuel Vadot opp-228000000-1000 { 1285*f126890aSEmmanuel Vadot opp-microvolt = <1000000 1000000 1350000>; 1286*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <228000000>; 1287*f126890aSEmmanuel Vadot opp-supported-hw = <0x0003>; 1288*f126890aSEmmanuel Vadot required-opps = <&core_opp_1000>; 1289*f126890aSEmmanuel Vadot }; 1290*f126890aSEmmanuel Vadot 1291*f126890aSEmmanuel Vadot opp-247000000-1000 { 1292*f126890aSEmmanuel Vadot opp-microvolt = <1000000 1000000 1350000>; 1293*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <247000000>; 1294*f126890aSEmmanuel Vadot opp-supported-hw = <0x0004>; 1295*f126890aSEmmanuel Vadot required-opps = <&core_opp_1000>; 1296*f126890aSEmmanuel Vadot }; 1297*f126890aSEmmanuel Vadot 1298*f126890aSEmmanuel Vadot opp-275000000-1050 { 1299*f126890aSEmmanuel Vadot opp-microvolt = <1050000 1050000 1350000>; 1300*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <275000000>; 1301*f126890aSEmmanuel Vadot opp-supported-hw = <0x0003>; 1302*f126890aSEmmanuel Vadot required-opps = <&core_opp_1050>; 1303*f126890aSEmmanuel Vadot }; 1304*f126890aSEmmanuel Vadot 1305*f126890aSEmmanuel Vadot opp-304000000-1050 { 1306*f126890aSEmmanuel Vadot opp-microvolt = <1050000 1050000 1350000>; 1307*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <304000000>; 1308*f126890aSEmmanuel Vadot opp-supported-hw = <0x0004>; 1309*f126890aSEmmanuel Vadot required-opps = <&core_opp_1050>; 1310*f126890aSEmmanuel Vadot }; 1311*f126890aSEmmanuel Vadot 1312*f126890aSEmmanuel Vadot opp-332000000-1100 { 1313*f126890aSEmmanuel Vadot opp-microvolt = <1100000 1100000 1350000>; 1314*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <332000000>; 1315*f126890aSEmmanuel Vadot opp-supported-hw = <0x0003>; 1316*f126890aSEmmanuel Vadot required-opps = <&core_opp_1100>; 1317*f126890aSEmmanuel Vadot }; 1318*f126890aSEmmanuel Vadot 1319*f126890aSEmmanuel Vadot opp-352000000-1100 { 1320*f126890aSEmmanuel Vadot opp-microvolt = <1100000 1100000 1350000>; 1321*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <352000000>; 1322*f126890aSEmmanuel Vadot opp-supported-hw = <0x0004>; 1323*f126890aSEmmanuel Vadot required-opps = <&core_opp_1100>; 1324*f126890aSEmmanuel Vadot }; 1325*f126890aSEmmanuel Vadot 1326*f126890aSEmmanuel Vadot opp-380000000-1150 { 1327*f126890aSEmmanuel Vadot opp-microvolt = <1150000 1150000 1350000>; 1328*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <380000000>; 1329*f126890aSEmmanuel Vadot opp-supported-hw = <0x0003>; 1330*f126890aSEmmanuel Vadot required-opps = <&core_opp_1150>; 1331*f126890aSEmmanuel Vadot }; 1332*f126890aSEmmanuel Vadot 1333*f126890aSEmmanuel Vadot opp-400000000-1150 { 1334*f126890aSEmmanuel Vadot opp-microvolt = <1150000 1150000 1350000>; 1335*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <400000000>; 1336*f126890aSEmmanuel Vadot opp-supported-hw = <0x0004>; 1337*f126890aSEmmanuel Vadot required-opps = <&core_opp_1150>; 1338*f126890aSEmmanuel Vadot }; 1339*f126890aSEmmanuel Vadot 1340*f126890aSEmmanuel Vadot opp-416000000-1200 { 1341*f126890aSEmmanuel Vadot opp-microvolt = <1200000 1200000 1350000>; 1342*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <416000000>; 1343*f126890aSEmmanuel Vadot opp-supported-hw = <0x0003>; 1344*f126890aSEmmanuel Vadot required-opps = <&core_opp_1200>; 1345*f126890aSEmmanuel Vadot }; 1346*f126890aSEmmanuel Vadot 1347*f126890aSEmmanuel Vadot opp-437000000-1200 { 1348*f126890aSEmmanuel Vadot opp-microvolt = <1200000 1200000 1350000>; 1349*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <437000000>; 1350*f126890aSEmmanuel Vadot opp-supported-hw = <0x0004>; 1351*f126890aSEmmanuel Vadot required-opps = <&core_opp_1200>; 1352*f126890aSEmmanuel Vadot }; 1353*f126890aSEmmanuel Vadot 1354*f126890aSEmmanuel Vadot opp-484000000-1250 { 1355*f126890aSEmmanuel Vadot opp-microvolt = <1250000 1250000 1350000>; 1356*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <484000000>; 1357*f126890aSEmmanuel Vadot opp-supported-hw = <0x000C>; 1358*f126890aSEmmanuel Vadot required-opps = <&core_opp_1250>; 1359*f126890aSEmmanuel Vadot }; 1360*f126890aSEmmanuel Vadot 1361*f126890aSEmmanuel Vadot opp-520000000-1300 { 1362*f126890aSEmmanuel Vadot opp-microvolt = <1300000 1300000 1350000>; 1363*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <520000000>; 1364*f126890aSEmmanuel Vadot opp-supported-hw = <0x0004>; 1365*f126890aSEmmanuel Vadot required-opps = <&core_opp_1300>; 1366*f126890aSEmmanuel Vadot }; 1367*f126890aSEmmanuel Vadot 1368*f126890aSEmmanuel Vadot opp-600000000-1350 { 1369*f126890aSEmmanuel Vadot opp-microvolt = <1350000 1350000 1350000>; 1370*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <600000000>; 1371*f126890aSEmmanuel Vadot opp-supported-hw = <0x0004>; 1372*f126890aSEmmanuel Vadot required-opps = <&core_opp_1350>; 1373*f126890aSEmmanuel Vadot }; 1374*f126890aSEmmanuel Vadot }; 1375*f126890aSEmmanuel Vadot 1376*f126890aSEmmanuel Vadot fuse_burn_dvfs_opp_table: opp-table-fuseburn { 1377*f126890aSEmmanuel Vadot compatible = "operating-points-v2"; 1378*f126890aSEmmanuel Vadot 1379*f126890aSEmmanuel Vadot opp-26000000-1150 { 1380*f126890aSEmmanuel Vadot opp-microvolt = <1150000 1150000 1350000>; 1381*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <26000000>; 1382*f126890aSEmmanuel Vadot opp-supported-hw = <0x000F>; 1383*f126890aSEmmanuel Vadot required-opps = <&core_opp_1150>; 1384*f126890aSEmmanuel Vadot }; 1385*f126890aSEmmanuel Vadot }; 1386*f126890aSEmmanuel Vadot 1387*f126890aSEmmanuel Vadot nor_dvfs_opp_table: opp-table-nor { 1388*f126890aSEmmanuel Vadot compatible = "operating-points-v2"; 1389*f126890aSEmmanuel Vadot 1390*f126890aSEmmanuel Vadot opp-108000000-1250 { 1391*f126890aSEmmanuel Vadot opp-microvolt = <1250000 1250000 1350000>; 1392*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <108000000>; 1393*f126890aSEmmanuel Vadot opp-supported-hw = <0x0008>; 1394*f126890aSEmmanuel Vadot required-opps = <&core_opp_1250>; 1395*f126890aSEmmanuel Vadot }; 1396*f126890aSEmmanuel Vadot 1397*f126890aSEmmanuel Vadot opp-115000000-1000 { 1398*f126890aSEmmanuel Vadot opp-microvolt = <1000000 1000000 1350000>; 1399*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <115000000>; 1400*f126890aSEmmanuel Vadot opp-supported-hw = <0x0007>; 1401*f126890aSEmmanuel Vadot required-opps = <&core_opp_1000>; 1402*f126890aSEmmanuel Vadot }; 1403*f126890aSEmmanuel Vadot 1404*f126890aSEmmanuel Vadot opp-130000000-1050 { 1405*f126890aSEmmanuel Vadot opp-microvolt = <1050000 1050000 1350000>; 1406*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <130000000>; 1407*f126890aSEmmanuel Vadot opp-supported-hw = <0x0007>; 1408*f126890aSEmmanuel Vadot required-opps = <&core_opp_1050>; 1409*f126890aSEmmanuel Vadot }; 1410*f126890aSEmmanuel Vadot 1411*f126890aSEmmanuel Vadot opp-133000000-1150 { 1412*f126890aSEmmanuel Vadot opp-microvolt = <1150000 1150000 1350000>; 1413*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <133000000>; 1414*f126890aSEmmanuel Vadot opp-supported-hw = <0x0007>; 1415*f126890aSEmmanuel Vadot required-opps = <&core_opp_1150>; 1416*f126890aSEmmanuel Vadot }; 1417*f126890aSEmmanuel Vadot }; 1418*f126890aSEmmanuel Vadot 1419*f126890aSEmmanuel Vadot pwm_dvfs_opp_table: opp-table-pwm { 1420*f126890aSEmmanuel Vadot compatible = "operating-points-v2"; 1421*f126890aSEmmanuel Vadot 1422*f126890aSEmmanuel Vadot opp-408000000-1000 { 1423*f126890aSEmmanuel Vadot opp-microvolt = <1000000 1000000 1350000>; 1424*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <408000000>; 1425*f126890aSEmmanuel Vadot opp-supported-hw = <0x000F>; 1426*f126890aSEmmanuel Vadot required-opps = <&core_opp_1000>; 1427*f126890aSEmmanuel Vadot }; 1428*f126890aSEmmanuel Vadot }; 1429*f126890aSEmmanuel Vadot 1430*f126890aSEmmanuel Vadot sbc1_dvfs_opp_table: opp-table-sbc1 { 1431*f126890aSEmmanuel Vadot compatible = "operating-points-v2"; 1432*f126890aSEmmanuel Vadot 1433*f126890aSEmmanuel Vadot opp-52000000-1000 { 1434*f126890aSEmmanuel Vadot opp-microvolt = <1000000 1000000 1350000>; 1435*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <52000000>; 1436*f126890aSEmmanuel Vadot opp-supported-hw = <0x000F>; 1437*f126890aSEmmanuel Vadot required-opps = <&core_opp_1000>; 1438*f126890aSEmmanuel Vadot }; 1439*f126890aSEmmanuel Vadot 1440*f126890aSEmmanuel Vadot opp-60000000-1050 { 1441*f126890aSEmmanuel Vadot opp-microvolt = <1050000 1050000 1350000>; 1442*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <60000000>; 1443*f126890aSEmmanuel Vadot opp-supported-hw = <0x000F>; 1444*f126890aSEmmanuel Vadot required-opps = <&core_opp_1050>; 1445*f126890aSEmmanuel Vadot }; 1446*f126890aSEmmanuel Vadot 1447*f126890aSEmmanuel Vadot opp-100000000-1200 { 1448*f126890aSEmmanuel Vadot opp-microvolt = <1200000 1200000 1350000>; 1449*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <100000000>; 1450*f126890aSEmmanuel Vadot opp-supported-hw = <0x000F>; 1451*f126890aSEmmanuel Vadot required-opps = <&core_opp_1200>; 1452*f126890aSEmmanuel Vadot }; 1453*f126890aSEmmanuel Vadot }; 1454*f126890aSEmmanuel Vadot 1455*f126890aSEmmanuel Vadot sbc2_dvfs_opp_table: opp-table-sbc2 { 1456*f126890aSEmmanuel Vadot compatible = "operating-points-v2"; 1457*f126890aSEmmanuel Vadot 1458*f126890aSEmmanuel Vadot opp-52000000-1000 { 1459*f126890aSEmmanuel Vadot opp-microvolt = <1000000 1000000 1350000>; 1460*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <52000000>; 1461*f126890aSEmmanuel Vadot opp-supported-hw = <0x000F>; 1462*f126890aSEmmanuel Vadot required-opps = <&core_opp_1000>; 1463*f126890aSEmmanuel Vadot }; 1464*f126890aSEmmanuel Vadot 1465*f126890aSEmmanuel Vadot opp-60000000-1050 { 1466*f126890aSEmmanuel Vadot opp-microvolt = <1050000 1050000 1350000>; 1467*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <60000000>; 1468*f126890aSEmmanuel Vadot opp-supported-hw = <0x000F>; 1469*f126890aSEmmanuel Vadot required-opps = <&core_opp_1050>; 1470*f126890aSEmmanuel Vadot }; 1471*f126890aSEmmanuel Vadot 1472*f126890aSEmmanuel Vadot opp-100000000-1200 { 1473*f126890aSEmmanuel Vadot opp-microvolt = <1200000 1200000 1350000>; 1474*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <100000000>; 1475*f126890aSEmmanuel Vadot opp-supported-hw = <0x000F>; 1476*f126890aSEmmanuel Vadot required-opps = <&core_opp_1200>; 1477*f126890aSEmmanuel Vadot }; 1478*f126890aSEmmanuel Vadot }; 1479*f126890aSEmmanuel Vadot 1480*f126890aSEmmanuel Vadot sbc3_dvfs_opp_table: opp-table-sbc3 { 1481*f126890aSEmmanuel Vadot compatible = "operating-points-v2"; 1482*f126890aSEmmanuel Vadot 1483*f126890aSEmmanuel Vadot opp-52000000-1000 { 1484*f126890aSEmmanuel Vadot opp-microvolt = <1000000 1000000 1350000>; 1485*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <52000000>; 1486*f126890aSEmmanuel Vadot opp-supported-hw = <0x000F>; 1487*f126890aSEmmanuel Vadot required-opps = <&core_opp_1000>; 1488*f126890aSEmmanuel Vadot }; 1489*f126890aSEmmanuel Vadot 1490*f126890aSEmmanuel Vadot opp-60000000-1050 { 1491*f126890aSEmmanuel Vadot opp-microvolt = <1050000 1050000 1350000>; 1492*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <60000000>; 1493*f126890aSEmmanuel Vadot opp-supported-hw = <0x000F>; 1494*f126890aSEmmanuel Vadot required-opps = <&core_opp_1050>; 1495*f126890aSEmmanuel Vadot }; 1496*f126890aSEmmanuel Vadot 1497*f126890aSEmmanuel Vadot opp-100000000-1200 { 1498*f126890aSEmmanuel Vadot opp-microvolt = <1200000 1200000 1350000>; 1499*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <100000000>; 1500*f126890aSEmmanuel Vadot opp-supported-hw = <0x000F>; 1501*f126890aSEmmanuel Vadot required-opps = <&core_opp_1200>; 1502*f126890aSEmmanuel Vadot }; 1503*f126890aSEmmanuel Vadot }; 1504*f126890aSEmmanuel Vadot 1505*f126890aSEmmanuel Vadot sbc4_dvfs_opp_table: opp-table-sbc4 { 1506*f126890aSEmmanuel Vadot compatible = "operating-points-v2"; 1507*f126890aSEmmanuel Vadot 1508*f126890aSEmmanuel Vadot opp-52000000-1000 { 1509*f126890aSEmmanuel Vadot opp-microvolt = <1000000 1000000 1350000>; 1510*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <52000000>; 1511*f126890aSEmmanuel Vadot opp-supported-hw = <0x000F>; 1512*f126890aSEmmanuel Vadot required-opps = <&core_opp_1000>; 1513*f126890aSEmmanuel Vadot }; 1514*f126890aSEmmanuel Vadot 1515*f126890aSEmmanuel Vadot opp-60000000-1050 { 1516*f126890aSEmmanuel Vadot opp-microvolt = <1050000 1050000 1350000>; 1517*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <60000000>; 1518*f126890aSEmmanuel Vadot opp-supported-hw = <0x000F>; 1519*f126890aSEmmanuel Vadot required-opps = <&core_opp_1050>; 1520*f126890aSEmmanuel Vadot }; 1521*f126890aSEmmanuel Vadot 1522*f126890aSEmmanuel Vadot opp-100000000-1200 { 1523*f126890aSEmmanuel Vadot opp-microvolt = <1200000 1200000 1350000>; 1524*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <100000000>; 1525*f126890aSEmmanuel Vadot opp-supported-hw = <0x000F>; 1526*f126890aSEmmanuel Vadot required-opps = <&core_opp_1200>; 1527*f126890aSEmmanuel Vadot }; 1528*f126890aSEmmanuel Vadot }; 1529*f126890aSEmmanuel Vadot 1530*f126890aSEmmanuel Vadot sbc5_dvfs_opp_table: opp-table-sbc5 { 1531*f126890aSEmmanuel Vadot compatible = "operating-points-v2"; 1532*f126890aSEmmanuel Vadot 1533*f126890aSEmmanuel Vadot opp-52000000-1000 { 1534*f126890aSEmmanuel Vadot opp-microvolt = <1000000 1000000 1350000>; 1535*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <52000000>; 1536*f126890aSEmmanuel Vadot opp-supported-hw = <0x000F>; 1537*f126890aSEmmanuel Vadot required-opps = <&core_opp_1000>; 1538*f126890aSEmmanuel Vadot }; 1539*f126890aSEmmanuel Vadot 1540*f126890aSEmmanuel Vadot opp-60000000-1050 { 1541*f126890aSEmmanuel Vadot opp-microvolt = <1050000 1050000 1350000>; 1542*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <60000000>; 1543*f126890aSEmmanuel Vadot opp-supported-hw = <0x000F>; 1544*f126890aSEmmanuel Vadot required-opps = <&core_opp_1050>; 1545*f126890aSEmmanuel Vadot }; 1546*f126890aSEmmanuel Vadot 1547*f126890aSEmmanuel Vadot opp-100000000-1200 { 1548*f126890aSEmmanuel Vadot opp-microvolt = <1200000 1200000 1350000>; 1549*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <100000000>; 1550*f126890aSEmmanuel Vadot opp-supported-hw = <0x000F>; 1551*f126890aSEmmanuel Vadot required-opps = <&core_opp_1200>; 1552*f126890aSEmmanuel Vadot }; 1553*f126890aSEmmanuel Vadot }; 1554*f126890aSEmmanuel Vadot 1555*f126890aSEmmanuel Vadot sbc6_dvfs_opp_table: opp-table-sbc6 { 1556*f126890aSEmmanuel Vadot compatible = "operating-points-v2"; 1557*f126890aSEmmanuel Vadot 1558*f126890aSEmmanuel Vadot opp-52000000-1000 { 1559*f126890aSEmmanuel Vadot opp-microvolt = <1000000 1000000 1350000>; 1560*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <52000000>; 1561*f126890aSEmmanuel Vadot opp-supported-hw = <0x000F>; 1562*f126890aSEmmanuel Vadot required-opps = <&core_opp_1000>; 1563*f126890aSEmmanuel Vadot }; 1564*f126890aSEmmanuel Vadot 1565*f126890aSEmmanuel Vadot opp-60000000-1050 { 1566*f126890aSEmmanuel Vadot opp-microvolt = <1050000 1050000 1350000>; 1567*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <60000000>; 1568*f126890aSEmmanuel Vadot opp-supported-hw = <0x000F>; 1569*f126890aSEmmanuel Vadot required-opps = <&core_opp_1050>; 1570*f126890aSEmmanuel Vadot }; 1571*f126890aSEmmanuel Vadot 1572*f126890aSEmmanuel Vadot opp-100000000-1200 { 1573*f126890aSEmmanuel Vadot opp-microvolt = <1200000 1200000 1350000>; 1574*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <100000000>; 1575*f126890aSEmmanuel Vadot opp-supported-hw = <0x000F>; 1576*f126890aSEmmanuel Vadot required-opps = <&core_opp_1200>; 1577*f126890aSEmmanuel Vadot }; 1578*f126890aSEmmanuel Vadot }; 1579*f126890aSEmmanuel Vadot 1580*f126890aSEmmanuel Vadot sdmmc1_dvfs_opp_table: opp-table-sdmmc1 { 1581*f126890aSEmmanuel Vadot compatible = "operating-points-v2"; 1582*f126890aSEmmanuel Vadot 1583*f126890aSEmmanuel Vadot opp-104000000-950 { 1584*f126890aSEmmanuel Vadot opp-microvolt = <950000 950000 1350000>; 1585*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <104000000>; 1586*f126890aSEmmanuel Vadot opp-supported-hw = <0x000F>; 1587*f126890aSEmmanuel Vadot required-opps = <&core_opp_950>; 1588*f126890aSEmmanuel Vadot }; 1589*f126890aSEmmanuel Vadot 1590*f126890aSEmmanuel Vadot opp-208000000-1200 { 1591*f126890aSEmmanuel Vadot opp-microvolt = <1200000 1200000 1350000>; 1592*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <208000000>; 1593*f126890aSEmmanuel Vadot opp-supported-hw = <0x000F>; 1594*f126890aSEmmanuel Vadot required-opps = <&core_opp_1200>; 1595*f126890aSEmmanuel Vadot }; 1596*f126890aSEmmanuel Vadot }; 1597*f126890aSEmmanuel Vadot 1598*f126890aSEmmanuel Vadot sdmmc3_dvfs_opp_table: opp-table-sdmmc3 { 1599*f126890aSEmmanuel Vadot compatible = "operating-points-v2"; 1600*f126890aSEmmanuel Vadot 1601*f126890aSEmmanuel Vadot opp-104000000-950 { 1602*f126890aSEmmanuel Vadot opp-microvolt = <950000 950000 1350000>; 1603*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <104000000>; 1604*f126890aSEmmanuel Vadot opp-supported-hw = <0x000F>; 1605*f126890aSEmmanuel Vadot required-opps = <&core_opp_950>; 1606*f126890aSEmmanuel Vadot }; 1607*f126890aSEmmanuel Vadot 1608*f126890aSEmmanuel Vadot opp-208000000-1200 { 1609*f126890aSEmmanuel Vadot opp-microvolt = <1200000 1200000 1350000>; 1610*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <208000000>; 1611*f126890aSEmmanuel Vadot opp-supported-hw = <0x000F>; 1612*f126890aSEmmanuel Vadot required-opps = <&core_opp_1200>; 1613*f126890aSEmmanuel Vadot }; 1614*f126890aSEmmanuel Vadot }; 1615*f126890aSEmmanuel Vadot 1616*f126890aSEmmanuel Vadot usbd_dvfs_opp_table: opp-table-usbd { 1617*f126890aSEmmanuel Vadot compatible = "operating-points-v2"; 1618*f126890aSEmmanuel Vadot 1619*f126890aSEmmanuel Vadot opp-480000000-1000 { 1620*f126890aSEmmanuel Vadot opp-microvolt = <1000000 1000000 1350000>; 1621*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <480000000>; 1622*f126890aSEmmanuel Vadot opp-supported-hw = <0x000F>; 1623*f126890aSEmmanuel Vadot required-opps = <&core_opp_1000>; 1624*f126890aSEmmanuel Vadot }; 1625*f126890aSEmmanuel Vadot }; 1626*f126890aSEmmanuel Vadot 1627*f126890aSEmmanuel Vadot usb2_dvfs_opp_table: opp-table-usb2 { 1628*f126890aSEmmanuel Vadot compatible = "operating-points-v2"; 1629*f126890aSEmmanuel Vadot 1630*f126890aSEmmanuel Vadot opp-480000000-1000 { 1631*f126890aSEmmanuel Vadot opp-microvolt = <1000000 1000000 1350000>; 1632*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <480000000>; 1633*f126890aSEmmanuel Vadot opp-supported-hw = <0x000F>; 1634*f126890aSEmmanuel Vadot required-opps = <&core_opp_1000>; 1635*f126890aSEmmanuel Vadot }; 1636*f126890aSEmmanuel Vadot }; 1637*f126890aSEmmanuel Vadot 1638*f126890aSEmmanuel Vadot usb3_dvfs_opp_table: opp-table-usb3 { 1639*f126890aSEmmanuel Vadot compatible = "operating-points-v2"; 1640*f126890aSEmmanuel Vadot 1641*f126890aSEmmanuel Vadot opp-480000000-1000 { 1642*f126890aSEmmanuel Vadot opp-microvolt = <1000000 1000000 1350000>; 1643*f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <480000000>; 1644*f126890aSEmmanuel Vadot opp-supported-hw = <0x000F>; 1645*f126890aSEmmanuel Vadot required-opps = <&core_opp_1000>; 1646*f126890aSEmmanuel Vadot }; 1647*f126890aSEmmanuel Vadot }; 1648*f126890aSEmmanuel Vadot}; 1649