diff options
| author | Ye Li <[email protected]> | 2026-06-03 13:51:56 +0800 |
|---|---|---|
| committer | Peng Fan <[email protected]> | 2026-06-10 00:06:33 +0800 |
| commit | 5a9512fb38dfb0afc10b887bce244dc4e2ef6cdc (patch) | |
| tree | f956448e0c1d4e34ae8200b072676a80c864e43f | |
| parent | 846f5fd2d17f695477659d5d0866bc1aa8fd3cce (diff) | |
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 <[email protected]>
Acked-by: Peng Fan <[email protected]>
Signed-off-by: Peng Fan <[email protected]>
| -rw-r--r-- | arch/arm/mach-imx/imx9/scmi/soc.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/arch/arm/mach-imx/imx9/scmi/soc.c b/arch/arm/mach-imx/imx9/scmi/soc.c index 8a295baf5a2..3f3722a7ce9 100644 --- a/arch/arm/mach-imx/imx9/scmi/soc.c +++ b/arch/arm/mach-imx/imx9/scmi/soc.c @@ -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; |
