-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Description
Is this the right place for my bug report?
This repository contains the GPU firmware used on the Raspberry Pi. This software is the closed source part of the Raspberry Pi system, it includes booting (including network booting and USB booting), low-level power and clock control, FKMS and legacy HDMI control (not full KMS that is in the linux kernel), hardware legacy codecs (MPEG2, H264 and VC1), encode hardware including the ISP (image sensor pipeline) and camera control, audio output (analogue and HDMI audio).
If you believe that the issue you are seeing is within this area, this is the right place. If not, we have other repositories for the linux kernel at github.com/raspberrypi/linux and Raspberry Pi userland applications at github.com/raspberrypi/userland. If you have problems with the Raspbian distribution packages, report them in the github.com/RPi-Distro/repo. If you simply have a question, then the Raspberry Pi forums are the best place to ask it.
Describe the bug
I'm using the official Raspberry Pi PoE Hat (the first gen, not the plus version) with a Raspberry Pi 4 Model B Rev 1.4.
I recently applied an update from my distro and when I rebooted the machine I noticed the fan on the PoE hat started running and didn't turn off. I have added this block to my /boot/config.txt to prevent the fan from running in idle conditions:
dtparam=poe_fan_temp0=65000,poe_fan_temp0_hyst=1000
dtparam=poe_fan_temp1=70000,poe_fan_temp1_hyst=5000
dtparam=poe_fan_temp2=75000,poe_fan_temp2_hyst=5000
dtparam=poe_fan_temp3=80000,poe_fan_temp3_hyst=2000
I checked by the CPU temperature and got this output:
$ vcgencmd measure_temp
temp=55.5'C
The firmware I upgraded to was this version:
Jan 24 2022 18:00:30
Copyright (c) 2012 Broadcom
version 94562b1518ca82ece28042cca1e5cdbbb43c8bda (clean) (release) (start)
So, I downgraded my firmware to this version:
Jan 20 2022 13:56:48
Copyright (c) 2012 Broadcom
version bd88f66f8952d34e4e0613a85c7a6d3da49e13e2 (clean) (release) (start)
And after reboot, the PoE hat turned off as expected.
To reproduce
Note: It's assumed you are indoors in a room at room temperature.
- Install an official PoE hat onto a Raspberry Pi 4 Model B Rev 1.4
- Install firmware version 94562b1518ca82ece28042cca1e5cdbbb43c8bda
- Add the following to /boot/config.txt and reboot
dtparam=poe_fan_temp0=65000,poe_fan_temp0_hyst=1000
dtparam=poe_fan_temp1=70000,poe_fan_temp1_hyst=5000
dtparam=poe_fan_temp2=75000,poe_fan_temp2_hyst=5000
dtparam=poe_fan_temp3=80000,poe_fan_temp3_hyst=2000
Expected behaviour
After reboot, the PoE hat fan should turn off
Actual behaviour
After reboot, the PoE hat fan stays on
System
Copy and paste the results of the raspinfo command in to this section. Alternatively, copy and paste a pastebin link, or add answers to the following questions:
-
Which model of Raspberry Pi? e.g. Pi3B+, PiZeroW
- Raspberry Pi 4 Model B Rev 1.4
-
Which OS and version (
cat /etc/rpi-issue)?- ArchLinux Arm using the following packages:
- linux-rpi
- raspberrypi-bootloader
- ArchLinux Arm using the following packages:
-
Which firmware version (
vcgencmd version)?
$ vcgencmd version
Copyright (c) 2012 Broadcom
version 94562b1518ca82ece28042cca1e5cdbbb43c8bda (clean) (release) (start)
- Which kernel version (
uname -a)?
$ uname -a
Linux 5.10.94-1-rpi-ARCH #1 SMP PREEMPT Thu Jan 27 20:16:30 UTC 2022 aarch64 GNU/Linux
Logs
If applicable, add the relevant output from dmesg or similar.
Additional context
Add any other relevant context for the problem.