-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for x470-f #41
Comments
Hello! Sorry, I could not understand from your message, have you tried to make necessary changes to the driver, and it fails to load, or did you simply tried to load it as is? From the DSDT the board looks very similar to X470 PRO, thus we can try a similar set of sensors. |
I did in fact try to make the changes......my modification were that I added
and
Perhaps I missed something. |
That looks correct. 'modprobe: ERROR: could not insert 'asus_ec_sensors': No such device' means the board name was not found in the dmi_table array. Are you sure the changes you've made reached /lib/modules/6.2.12-1-default/kernel/drivers/hwmon/asus-ec-sensors.ko.zst? I suggest you to clone this repository, apply changes there, call |
your right it worked sensors asus_wmi_sensors-virtual-0 asusec-isa-0000 k10temp-pci-00c3 I'm thinking the MB struct needs some work. ? |
Glad you succeeded! What looks incomplete to you regarding the sensors definition? |
If you look as my reply and compare the output of asus-wmi-sensor to asus-ec-sensors things start to not line up. I'm only seeing the fan speed for one of the two cpu fan headers. Also the list of shown sensors is a bit shorter than the wmi sensor. IE... the chasis fans ; water pump headers. 12v 5v 3.3v: CPU current i've never seen before! |
In these ASUS boards the monitoring info is split between the Super I/O chip and the Embedded Controller. The EC registers are used for non-tunable ones, like temperatures or voltages, or fans without user-tunable qurve. I'm unsure why is the CPU_Opt fan among those. |
Are you suggesting the x470-f is not so easily implemented? |
There are two chips related to hardware monitoring in these boards: the Super I/O one and the EC. Back in the days there was only one, the SIO one, but the number of sensors grows and ASUS moved some of them to the EC. To get reading for the rest of the sensors published by asuswmi, you need to find out which Super I/O chip is installed in the board and use hwmon driver for it. If this sensor does not show up automatically, you might want to check out kernel bug 204807, it mensions X470-F GAMING. |
I find that bug report confusing at best the x470-f has a IT8665e not a nct6775. |
Sorry, I just remember the board was mentioned there, but I have never went into details. IT8665e is a sad story in Linux unfortunately. |
Well it was worth a poke. DOH! |
Hello, I believe x470-f may be supported by this driver. I exhibit similar behavior when using asus-wmi-sensor as mentioned in issue #12.
PNP0C09 show up in dsdt. However; when I try to add support for x470-f loading the modules if fails.
sudo modprobe -v asus-ec-sensors
insmod /lib/modules/6.2.12-1-default/kernel/drivers/hwmon/asus-ec-sensors.ko.zst
modprobe: ERROR: could not insert 'asus_ec_sensors': No such device
dsdt.dsl.txt
/sys/class/dmi/id/board_name:1:ROG STRIX X470-F GAMING
/sys/class/dmi/id/board_vendor:1:ASUSTeK COMPUTER INC.
Let know how I can help you.
Perhaps there is hope this board will be supported someday.
I am using the latest bios (6063).
I appreciate your time.
The text was updated successfully, but these errors were encountered: