Replies: 6 comments
-
You are right that bits within CoreFreq are not updated when registers are externally altered. EDIT: Exception of This was an implementation choice in favor of less CoreFreq CPU overhead. CoreFreq UI is an all in one tool where you are supposed to tweak bits straight from it, and not externally ( Meanwhile, a special shortcut exists to request a full refresh: press the star key However if some indicators like |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
Line 3331 in 20426b6 Line 86 in 20426b6 |
Beta Was this translation helpful? Give feedback.
-
Changing them via the software works just fine and the status is reflected correctly.
I see.
The star key does not seem to do anything on my keyboard, but your description sounds exactly like the thing I am expecting opening a window to do. |
Beta Was this translation helpful? Give feedback.
-
Are these issues still with your processor If not, please post the output of |
Beta Was this translation helpful? Give feedback.
-
In fact CoreFreq model is not a pull model but a push model. List of registers are collected by driver. CLI has no control over the chosen list of MSRs, CSRs, and other low level means. Which means that Driver is continually collecting whatever the state of Deamon, CLI and/or GUI. What I understand from your needs seems a code refactoring to me. But I tends to stabilize CoreFreq: bug fix only. |
Beta Was this translation helpful? Give feedback.
-
Hello there,
thank you for this great program! :)
I have come across another minor bug that I would like to point out.
When opening sub-windows, e.g. Technologies, CoreFreq will show the values:
![image](https://user-images.githubusercontent.com/1180151/182017152-8c762dcd-5247-4213-abe3-dd809e53bf65.png)
The values as they are shown are partially stored as a value of 4005e in MSR 0x1FC:
Switching the values like so (as an example), i.e. the lower 3 ONs are now OFFs:
![image](https://user-images.githubusercontent.com/1180151/182017285-4b170abf-4411-4e3f-b491-34ae0ad9a61d.png)
causes the MSR to change to 1c005e:
The bug happens, when I manually set the MSR 0x1FC back to 4005e:
The values take effect / are written correctly, as can be seen via:
The bug, in my opinion, is that CoreFreq still shows:
![image](https://user-images.githubusercontent.com/1180151/182017365-df35a117-6dda-40b2-86d3-0b5cd723b2c1.png)
(I understand that reading the various MSRs once per second, or whatever refresh interval is set, would cause issues.)
This display does not change, however, even when the Technologies window is closed and opened back up.
I am only able to get CoreFreq to refresh the values, when I change one value stored inside the same MSR.
For example, changing Turbo Boost back to ON causes the refresh only for fields where the value is stored in the same MSR as Turbo Boost.
As the other two values (R2H and EEO) are not stored in this MSR, they continue being shown as OFF despite being ON.
Changing either of them via CoreFreq causes the MSR to be read and will update the other values.
My proposal is to refresh / read all the values of MSRs contained in a window, each time the window is opened.
A full refresh while the window is open seems excessive to me, but having an up to date status of the values when re-opening the window would be great.
Thank you for your time and consideration.
PS: I have started messing about with the MSRs as I would like to have some settings applied on boot and have not found a way for CoreFreq to do so.
Due to this, I am changing the MSRs via a script on boot and have tried to check them via CoreFreq when I came across this bug.
Beta Was this translation helpful? Give feedback.
All reactions