Skip to content

Commit 131a6ab

Browse files
XECDesignpelwell
authored andcommitted
overlays: Add rpi-poe-plus overlay
Signed-off-by: Serge Schneider <[email protected]>
1 parent 6a8c13d commit 131a6ab

File tree

3 files changed

+41
-0
lines changed

3 files changed

+41
-0
lines changed

arch/arm/boot/dts/overlays/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,7 @@ dtbo-$(CONFIG_ARCH_BCM2835) += \
156156
rpi-display.dtbo \
157157
rpi-ft5406.dtbo \
158158
rpi-poe.dtbo \
159+
rpi-poe-plus.dtbo \
159160
rpi-proto.dtbo \
160161
rpi-sense.dtbo \
161162
rpi-tv.dtbo \

arch/arm/boot/dts/overlays/README

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2505,6 +2505,27 @@ Params: poe_fan_temp0 Temperature (in millicelcius) at which the fan
25052505
the fan slows down (default 5000)
25062506

25072507

2508+
Name: rpi-poe-plus
2509+
Info: Raspberry Pi PoE+ HAT fan
2510+
Load: dtoverlay=rpi-poe-plus,<param>[=<val>]
2511+
Params: poe_fan_temp0 Temperature (in millicelcius) at which the fan
2512+
turns on (default 40000)
2513+
poe_fan_temp0_hyst Temperature delta (in millicelcius) at which
2514+
the fan turns off (default 2000)
2515+
poe_fan_temp1 Temperature (in millicelcius) at which the fan
2516+
speeds up (default 45000)
2517+
poe_fan_temp1_hyst Temperature delta (in millicelcius) at which
2518+
the fan slows down (default 2000)
2519+
poe_fan_temp2 Temperature (in millicelcius) at which the fan
2520+
speeds up (default 50000)
2521+
poe_fan_temp2_hyst Temperature delta (in millicelcius) at which
2522+
the fan slows down (default 2000)
2523+
poe_fan_temp3 Temperature (in millicelcius) at which the fan
2524+
speeds up (default 55000)
2525+
poe_fan_temp3_hyst Temperature delta (in millicelcius) at which
2526+
the fan slows down (default 5000)
2527+
2528+
25082529
Name: rpi-proto
25092530
Info: Configures the RPi Proto audio card
25102531
Load: dtoverlay=rpi-proto
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
// SPDX-License-Identifier: (GPL-2.0 OR MIT)
2+
// Overlay for the Raspberry Pi PoE+ HAT.
3+
4+
#include "rpi-poe-overlay.dts"
5+
6+
/ {
7+
compatible = "brcm,bcm2835";
8+
9+
fragment@3 {
10+
target-path = "/";
11+
__overlay__ {
12+
rpi_poe_power_supply: rpi-poe-power-supply@0 {
13+
compatible = "raspberrypi,rpi-poe-power-supply";
14+
firmware = <&firmware>;
15+
status = "okay";
16+
};
17+
};
18+
};
19+
};

0 commit comments

Comments
 (0)