dts: stm32wba: split temperature calibration address between socs

The temperature calibration addresses of ts-cal1-addr and ts-cal2-addr
are not shared between stm32wba5 and stm32wba6 these addresses are now
separated to the dedicated device-tree

Signed-off-by: Romain Jayles <romain.jayles@st.com>
This commit is contained in:
Romain Jayles 2025-06-06 11:54:09 +02:00 committed by Benjamin Cabé
commit 778b2dfc40
3 changed files with 10 additions and 2 deletions

View file

@ -484,8 +484,6 @@
die_temp: dietemp { die_temp: dietemp {
compatible = "st,stm32-temp-cal"; compatible = "st,stm32-temp-cal";
ts-cal1-addr = <0x0BF90710>;
ts-cal2-addr = <0x0BF90742>;
ts-cal1-temp = <30>; ts-cal1-temp = <30>;
ts-cal2-temp = <130>; ts-cal2-temp = <130>;
ts-cal-vrefanalog = <3000>; ts-cal-vrefanalog = <3000>;

View file

@ -9,4 +9,9 @@
soc { soc {
compatible = "st,stm32wba52", "st,stm32wba", "simple-bus"; compatible = "st,stm32wba52", "st,stm32wba", "simple-bus";
}; };
die_temp: dietemp {
ts-cal1-addr = <0x0BF90710>;
ts-cal2-addr = <0x0BF90742>;
};
}; };

View file

@ -77,4 +77,9 @@
}; };
}; };
}; };
die_temp: dietemp {
ts-cal1-addr = <0x0BFA0710>;
ts-cal2-addr = <0x0BFA0742>;
};
}; };