imx9: scmi: Fix temperature range for Extended industrial parts

The value '01' in MARKET_SEGMENT fuse is Extended industrial on
iMX95/952/94. Fix its temperature range to -40C to 125C

01` - Ext. Industrial -40C to 125C

Signed-off-by: Ye Li <ye.li@nxp.com>
Acked-by: Peng Fan <peng.fan@nxp.com>
Signed-off-by: Peng Fan <peng.fan@nxp.com>
This commit is contained in:
Ye Li
2026-06-03 13:51:56 +08:00
committed by Peng Fan
parent 846f5fd2d1
commit 5a9512fb38

View File

@@ -186,8 +186,9 @@ u32 get_cpu_temp_grade(int *minc, int *maxc)
*minc = -40;
*maxc = 105;
} else if (val == TEMP_EXTCOMMERCIAL) {
*minc = -20;
*maxc = 105;
/* Map to Ext industrial */
*minc = -40;
*maxc = 125;
} else {
*minc = 0;
*maxc = 95;