blob: 19b8aa7ffb642ad3ac00ad22c340abd42515d83d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
From db562e1eaed352231730eebcdc22b5c305e42338 Mon Sep 17 00:00:00 2001
From: Serge Schneider <serge@raspberrypi.org>
Date: Tue, 2 Oct 2018 17:13:48 +0100
Subject: [PATCH 175/725] overlays: add overrides for PoE HAT fan control
Signed-off-by: Serge Schneider <serge@raspberrypi.org>
---
arch/arm/boot/dts/overlays/README | 13 ++++++++++---
arch/arm/boot/dts/overlays/rpi-poe-overlay.dts | 10 ++++++++++
2 files changed, 20 insertions(+), 3 deletions(-)
--- a/arch/arm/boot/dts/overlays/README
+++ b/arch/arm/boot/dts/overlays/README
@@ -1565,9 +1565,16 @@ Params: touchscreen-size-x Touchscr
Name: rpi-poe
-Info: Raspberry Pi POE HAT
-Load: dtoverlay=rpi-poe
-Params: <None>
+Info: Raspberry Pi PoE HAT fan
+Load: dtoverlay=rpi-poe,<param>[=<val>]
+Params: poe_fan_temp0 Temperature (in millicelcius) at which the fan
+ turns on (default 50000)
+ poe_fan_temp0_hyst Temperature delta (in millicelcius) at which
+ the fan turns off (default 5000)
+ poe_fan_temp1 Temperature (in millicelcius) at which the fan
+ speeds up (default 55000)
+ poe_fan_temp1_hyst Temperature delta (in millicelcius) at which
+ the fan slows down (default 5000)
Name: rpi-proto
--- a/arch/arm/boot/dts/overlays/rpi-poe-overlay.dts
+++ b/arch/arm/boot/dts/overlays/rpi-poe-overlay.dts
@@ -50,4 +50,14 @@
};
};
};
+
+ fragment@2 {
+ target-path = "/__overrides__";
+ __overlay__ {
+ poe_fan_temp0 = <&trip0>,"temperature:0";
+ poe_fan_temp0_hyst = <&trip0>,"hysteresis:0";
+ poe_fan_temp1 = <&trip1>,"temperature:0";
+ poe_fan_temp1_hyst = <&trip1>,"hysteresis:0";
+ };
+ };
};
|