Path: blob/master/Documentation/devicetree/bindings/cpufreq/imx-cpufreq-dt.txt
26308 views
i.MX CPUFreq-DT OPP bindings1================================23Certain i.MX SoCs support different OPPs depending on the "market segment" and4"speed grading" value which are written in fuses. These bits are combined with5the opp-supported-hw values for each OPP to check if the OPP is allowed.67Required properties:8--------------------910For each opp entry in 'operating-points-v2' table:11- opp-supported-hw: Two bitmaps indicating:12- Supported speed grade mask13- Supported market segment mask140: Consumer151: Extended Consumer162: Industrial173: Automotive1819Example:20--------2122opp_table {23compatible = "operating-points-v2";24opp-1000000000 {25opp-hz = /bits/ 64 <1000000000>;26/* grade >= 0, consumer only */27opp-supported-hw = <0xf>, <0x3>;28};2930opp-1300000000 {31opp-hz = /bits/ 64 <1300000000>;32opp-microvolt = <1000000>;33/* grade >= 1, all segments */34opp-supported-hw = <0xe>, <0x7>;35};36}373839