On 28.06.2019 06:37, Anson.Huang@xxxxxxx wrote: > From: Anson Huang <Anson.Huang@xxxxxxx> > > According to latest datasheet (Rev.1, 10/2018) from below links, > in the consumer datasheet, 1.5GHz is mentioned as highest opp but > depends on speed grading fuse, and in the industrial datasheet, > 1.3GHz is mentioned as highest opp but depends on speed grading > fuse. 1.5GHz and 1.3GHz opp use same voltage, so no need for > consumer part to support 1.3GHz opp, with same voltage, CPU should > run at highest frequency in order to go into idle as quick as > possible, this can save power. I looked at the same datasheets and it's not clear to me that 1.3 Ghz should be disallowed for consumer parts. Power consumption increases with both voltage and frequency so having two OPPs with same voltage does make sense. > opp-hz = /bits/ 64 <1300000000>; > opp-microvolt = <1000000>; > - opp-supported-hw = <0xc>, <0x7>; > + /* Industrial only but rely on speed grading */ > + opp-supported-hw = <0xc>, <0x4>; Comment is false, you're explicitly excluding consumer parts via the second element. > opp-hz = /bits/ 64 <1500000000>; > opp-microvolt = <1000000>; > /* Consumer only but rely on speed grading */ > - opp-supported-hw = <0x8>, <0x7>; > + opp-supported-hw = <0x8>, <0x3>; If you don't want to rely on the fact that only consumer parts should be fused for 1.5 Ghz then please delete the comment.