File tree Expand file tree Collapse file tree 3 files changed +41
-0
lines changed
arch/arm/boot/dts/overlays Expand file tree Collapse file tree 3 files changed +41
-0
lines changed Original file line number Diff line number Diff line change @@ -156,6 +156,7 @@ dtbo-$(CONFIG_ARCH_BCM2835) += \
156
156
rpi-display.dtbo \
157
157
rpi-ft5406.dtbo \
158
158
rpi-poe.dtbo \
159
+ rpi-poe-plus.dtbo \
159
160
rpi-proto.dtbo \
160
161
rpi-sense.dtbo \
161
162
rpi-tv.dtbo \
Original file line number Diff line number Diff line change @@ -2505,6 +2505,27 @@ Params: poe_fan_temp0 Temperature (in millicelcius) at which the fan
2505
2505
the fan slows down (default 5000)
2506
2506
2507
2507
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
+
2508
2529
Name: rpi-proto
2509
2530
Info: Configures the RPi Proto audio card
2510
2531
Load: dtoverlay=rpi-proto
Original file line number Diff line number Diff line change
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
+ };
You can’t perform that action at this time.
0 commit comments