* [PATCH v4] thermal: imx8mm: Allow reboot after critical temperature
@ 2023-08-24 14:36 Fabio Estevam
2023-08-24 15:25 ` Fabio Estevam
0 siblings, 1 reply; 2+ messages in thread
From: Fabio Estevam @ 2023-08-24 14:36 UTC (permalink / raw)
To: daniel.lezcano
Cc: linux-pm, rafael, amitk, rui.zhang, linux-kernel, Fabio Estevam
From: Fabio Estevam <festevam@denx.de>
Currently, after the SoC reaches the critical temperature, the board
goes through a poweroff mechanism.
In some cases, such behavior does not suit well, as the board may be
unattended in the field and rebooting may be a better approach.
The bootloader may also check the temperature and only allow the boot to
proceed when the temperature is below a certain threshold.
Introduce a 'reboot_on_crit' sysfs entry to indicate that the board
will go through a reboot after the critical temperature is reached.
By default, the original shutdown behavior is preserved.
Tested on a imx8mm-evk board by issuing the command below:
echo 1 > /sys/devices/platform/soc@0/30000000.bus/30260000.tmu/reboot_on_crit
Confirmed that it goes through a reboot after the critical temperature
is reached.
Signed-off-by: Fabio Estevam <festevam@denx.de>
---
Changes since v3:
- Add a sysfs entry.
drivers/thermal/imx8mm_thermal.c | 57 ++++++++++++++++++++++++++++++++
1 file changed, 57 insertions(+)
diff --git a/drivers/thermal/imx8mm_thermal.c b/drivers/thermal/imx8mm_thermal.c
index e89b11b3f2b9..07c6d21147ba 100644
--- a/drivers/thermal/imx8mm_thermal.c
+++ b/drivers/thermal/imx8mm_thermal.c
@@ -15,6 +15,7 @@
#include <linux/platform_device.h>
#include <linux/slab.h>
#include <linux/thermal.h>
+#include <linux/reboot.h>
#include "thermal_hwmon.h"
@@ -91,6 +92,7 @@ struct imx8mm_tmu {
void __iomem *base;
struct clk *clk;
const struct thermal_soc_data *socdata;
+ bool reboot;
struct tmu_sensor sensors[];
};
@@ -146,8 +148,58 @@ static int tmu_get_temp(struct thermal_zone_device *tz, int *temp)
return tmu->socdata->get_temp(sensor, temp);
}
+static ssize_t reboot_on_crit_show(struct device *dev,
+ struct device_attribute *attr, char *buf)
+{
+ struct imx8mm_tmu *tmu = dev_get_drvdata(dev);
+
+ return sysfs_emit(buf, "%d\n", tmu->reboot);
+}
+
+static ssize_t reboot_on_crit_store(struct device *dev,
+ struct device_attribute *attr,
+ const char *buf, size_t size)
+{
+ struct imx8mm_tmu *tmu = dev_get_drvdata(dev);
+ int ret, reboot;
+
+ ret = kstrtoint(buf, 0, &reboot);
+ if (ret < 0)
+ return ret;
+
+ tmu->reboot = reboot;
+
+ return size;
+}
+
+static DEVICE_ATTR_RW(reboot_on_crit);
+
+static struct attribute *reboot_on_crit_attrs[] = {
+ &dev_attr_reboot_on_crit.attr,
+ NULL
+};
+
+static const struct attribute_group reboot_attribute_group = {
+ .attrs = reboot_on_crit_attrs,
+};
+
+static void tmu_critical(struct thermal_zone_device *tz)
+{
+ struct tmu_sensor *sensor = thermal_zone_device_priv(tz);
+ struct imx8mm_tmu *tmu = sensor->priv;
+
+ if (tmu->reboot) {
+ dev_emerg(thermal_zone_device(tz), "%s: critical temperature reached\n",
+ thermal_zone_device_type(tz));
+ kernel_restart(NULL);
+ } else {
+ thermal_zone_device_critical(tz);
+ }
+}
+
static const struct thermal_zone_device_ops tmu_tz_ops = {
.get_temp = tmu_get_temp,
+ .critical = tmu_critical,
};
static void imx8mm_tmu_enable(struct imx8mm_tmu *tmu, bool enable)
@@ -355,6 +407,10 @@ static int imx8mm_tmu_probe(struct platform_device *pdev)
if (tmu->socdata->version == TMU_VER2)
imx8mm_tmu_probe_sel_all(tmu);
+ ret = sysfs_create_group(&pdev->dev.kobj, &reboot_attribute_group);
+ if (ret)
+ goto disable_clk;
+
/* enable the monitor */
imx8mm_tmu_enable(tmu, true);
@@ -372,6 +428,7 @@ static int imx8mm_tmu_remove(struct platform_device *pdev)
/* disable TMU */
imx8mm_tmu_enable(tmu, false);
+ sysfs_remove_group(&pdev->dev.kobj, &reboot_attribute_group);
clk_disable_unprepare(tmu->clk);
platform_set_drvdata(pdev, NULL);
--
2.34.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH v4] thermal: imx8mm: Allow reboot after critical temperature
2023-08-24 14:36 [PATCH v4] thermal: imx8mm: Allow reboot after critical temperature Fabio Estevam
@ 2023-08-24 15:25 ` Fabio Estevam
0 siblings, 0 replies; 2+ messages in thread
From: Fabio Estevam @ 2023-08-24 15:25 UTC (permalink / raw)
To: Fabio Estevam
Cc: daniel.lezcano, linux-pm, rafael, amitk, rui.zhang, linux-kernel
Hi Daniel,
On 24/08/2023 11:36, Fabio Estevam wrote:
> From: Fabio Estevam <festevam@denx.de>
>
> Currently, after the SoC reaches the critical temperature, the board
> goes through a poweroff mechanism.
>
> In some cases, such behavior does not suit well, as the board may be
> unattended in the field and rebooting may be a better approach.
>
> The bootloader may also check the temperature and only allow the boot
> to
> proceed when the temperature is below a certain threshold.
>
> Introduce a 'reboot_on_crit' sysfs entry to indicate that the board
> will go through a reboot after the critical temperature is reached.
>
> By default, the original shutdown behavior is preserved.
>
> Tested on a imx8mm-evk board by issuing the command below:
>
> echo 1 >
> /sys/devices/platform/soc@0/30000000.bus/30260000.tmu/reboot_on_crit
>
> Confirmed that it goes through a reboot after the critical temperature
> is reached.
>
> Signed-off-by: Fabio Estevam <festevam@denx.de>
> ---
> Changes since v3:
> - Add a sysfs entry.
After thinking more about this, I am happier with the previous v3.
The decision to reboot or shutdown is not something that needs to be
changed in runtime.
If the module_param() approach from v3 could be accepted, I think it
would be
a better solution.
Thanks
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2023-08-24 15:26 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-08-24 14:36 [PATCH v4] thermal: imx8mm: Allow reboot after critical temperature Fabio Estevam
2023-08-24 15:25 ` Fabio Estevam
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox