Jump to content
NotebookTalk

Aaron44126

Moderator
  • Posts

    2,224
  • Joined

  • Days Won

    31

Everything posted by Aaron44126

  1. Yes, I used a registry trick to disable it and re-enable the old power settings. (You can actually get the power settings back without disabling Modern Standby as well. There's a link in my sig to an article on "Turbo boost toggle" and it is described in there.) I make use of some of those power options. I have two Windows power profiles -- one for "quiet" and one for "performance" -- and I use Process Lasso to automatically switch between them depending on what applications I have open.
  2. There are some things like EUROCOM Sky X7W? https://eurocom.com/ec/configure(2,334,0)SkyX7W Two 2.5" SATA bays + two M.2 + Coffee Lake 9th gen CPUs. (Not really cheap, though... You can lower the default GPU and CPU options to shave some off of the price.)
  3. I feel like I tried this on Precision 7560 when I noticed that the fan control mechanism is different and was not able to get anything from the EC. I just fired it up on the Precision 7770, and when I hit the "EC" button, it just locked up the entire system πŸ˜• I do think the EC is the key to the puzzle here, however, Dell's EC seems to be more sophisticated than most so it's probably a bit more complex than simple memory overwrites that you can do with other manufacturers' ECs. Fan control with prior systems involved sending reverse-engineered commands to the EC to get it to either return data (i.e. fan speeds) or change behaviors. The commands were actually reverse-engineered from an old DOS-based Dell BIOS update tool or diagnostics tool or something like that, and they worked for a long time.
  4. Unfortunately, the BIOS interface for interacting with the system fans does not allow for setting them to a speed that specifically. (I would love it if that were the case...) You can only choose between off / medium / high. The automatic control is more granular. The whole reason I did this "consistency mode" implementation was to be able to "lock" the speed at a lower speed than "medium"... but that will only work if you can get the system to set the fans there with its automatic control first, so that they can be locked.
  5. Yeah, 25325 is in reference to a fan speed sensor if anything (there is a "CPU temp" reference right above, and its in a section that is all about sensors and alerts). 26443 is a text string.
  6. No, you can only pick one of them to use for each trip point. There are only four trip points (passive, active 0, active 1, critical). The "table" is like a drop-down list of options. The values mean nothing other than "here is the value you plug here if you want this temperature to be the trip point". I don't think the fan control in this laptop is implemented with IME so again I think these values are meaningless in the end (for our purposes).
  7. Well. Not a whole lot to look at, there are only seven references to "fan" in the file. Line 25325 β€” I believe this is referring to a fan sensor so it is not interesting. Lines 25366, 25373, 25379 β€” Appear to be toggles to enable/disable each of "FAN1", "FAN2", and "FAN3" devices (...probably lifted from desktop BIOS where there could be more fans) Line 26443 β€” Just a text string which contains the word "fan" The others are settings for "active trip points" 0 and 1, which @MyPC8MyBrain quoted above. They are in the bit from line 25186 through 25328, labeled "Platform Thermal Configuration", which seems to be an interesting part. There are four tables interesting tables labeled "Critical trip point", "Active trip point 0", "Active trip point 1", and "Passive trip point", which have temperatures paired with increasing values. 0xB20DD One Of: Active Trip Point 0, VarStoreInfo (VarOffset/VarName): 0x698, VarStore: 0x1, QuestionId: 0xE84, Size: 1, Min: 0xF, Max 0x7F, Step: 0x0 {05 91 4B 12 4C 12 84 0E 01 00 98 06 10 10 0F 7F 00} 0xB20EE One Of Option: Disabled, Value (8 bit): 0x7F {09 07 04 00 00 00 7F} 0xB20F5 One Of Option: 15 C, Value (8 bit): 0xF {09 07 51 12 00 00 0F} 0xB20FC One Of Option: 23 C, Value (8 bit): 0x17 {09 07 52 12 00 00 17} 0xB2103 One Of Option: 31 C, Value (8 bit): 0x1F {09 07 53 12 00 00 1F} 0xB210A One Of Option: 39 C, Value (8 bit): 0x27 {09 07 54 12 00 00 27} 0xB2111 One Of Option: 47 C, Value (8 bit): 0x2F {09 07 55 12 00 00 2F} 0xB2118 One Of Option: 55 C, Value (8 bit): 0x37 {09 07 56 12 00 00 37} 0xB211F One Of Option: 63 C, Value (8 bit): 0x3F {09 07 57 12 00 00 3F} 0xB2126 One Of Option: 71 C, Value (8 bit): 0x47 (default) {09 07 58 12 30 00 47} 0xB212D One Of Option: 79 C, Value (8 bit): 0x4F {09 07 59 12 00 00 4F} 0xB2134 One Of Option: 87 C, Value (8 bit): 0x57 {09 07 5A 12 00 00 57} 0xB213B One Of Option: 95 C, Value (8 bit): 0x5F {09 07 5B 12 00 00 5F} 0xB2142 One Of Option: 103 C, Value (8 bit): 0x67 {09 07 5D 12 00 00 67} 0xB2149 One Of Option: 111 C, Value (8 bit): 0x6F {09 07 5E 12 00 00 6F} 0xB2150 One Of Option: 119 C (POR), Value (8 bit): 0x77 {09 07 5F 12 00 00 77} 0xB2157 End One Of {29 02} I thought that these might be fan curves, but they are not. It's just a list of options. I Googled around and ran across things like this documentation which clarified things for me a bit. You can select one of these options to use as the value for the various trip points mentioned above. When the system hits one of these trip points then it will set the fan speed to the value configured for that trip point. I.e., when the temperature rises above "Active Trip Point 0", set the fan speed to "Active Trip Point 0 Fan Speed". (This is standard Intel Management Engine stuff and the Dell EC/BIOS is likely completely ignoring it anyway, since it seems that Dell's fan control is a good bit more sophisticated than that.) I didn't see anything else in the dump that looked interesting with regards to fan control, so, dead end ...?
  8. There is definitely a significant change in how Dell systems handle fan control starting with 2021 systems (Tiger Lake). The system-driven control is much more granular than before (adjusting speeds tens of RPM at a time on a curve, rather than hundreds of RPM at a time with just a few discrete values it will ever use) ... and, the established EC interface that allowed for manual control and the less documented "SMBIOS token" control mechanism for manual control have both been removed. They may well have moved the "tables" that define the behaviors to these UEFI NVRAM variables. I'm going to spend some time digging around @MyPC8MyBrain's dump and see if I can make heads or tails of anything.
  9. I don't think Windows active/passive cooling power profile policy has any impact on the thermal/fan behavior in these systems. You can however change Dell's "thermal mode" between Optimized/Cool/Quiet/Ultra Performance, it can be set both from the BIOS and the Dell Power Manager app in Windows, or there are options to change it programmatically / by script (both on Windows and Linux). "Optimized" is the default behavior and the others each prioritize one of low surface temperature, low noise, or high performance (at the expense of the other two). I'd also love a setting to keep the fans at a minimum value, or just to lower the threshold at which they reduce speeds or power off. It looks like there are fan table values that could be mucked with.
  10. Looks like they are gearing up to launch the first new "general" graphics benchmark since Time Spy in 2016. Speed Way will release on Wednesday (October 12, 2022). It's a $4.99 DLC upgrade if you purchased 3DMark on Steam (before October 12). Starting October 12, Speed Way will be included when you buy 3DMark (but they are also hiking the price by $5). https://aws.futuremark.com/news/3dmark-speed-way-launches-on-october-12
  11. My information must be old. I will have to check this out. Agreed. Everyone should make this tweak, it is clearly one of the easiest ways to get a boost to CPU performance. I was pretty shocked when I saw the number pop out. I'm going to make a post with detailed step-by-step and link it somewhere near the top of this thread for easier visibility. And it's not like this is doing anything "risky" β€” as I understand it, it is just putting the "default" value for Alder Lake in there which Dell has set incorrectly in error. Next, I will be trying ThrottleStop to raise the PL1 limit and see what happens... Yes, air comes in from the bottom and goes out both the "back" and "front" sides of the fan, so it actually circulates through the chassis. (I'm not sure how much good this actually does, I think it is more to keep the chassis surface temperature down than to cool off the CPU/GPU. But at least it gives some airflow over the main SSD slot?) Also, despite the hinge sort of in the way, the left fan actually shoves air out of the back of the system as well. In addition to @MyPC8MyBrain's recent posts, look at @win32asmguy's posts on page 5 of this thread. People are still discovering things. At some point we will have more of a comprehensive list of things to try with a sort of feel for benefit vs. difficulty for each.
  12. Well, this is fun. Cinebench multi-core 10 minutes: Stock configuration at system launch -- 15029 After repasting -- 15488 (minor improvement, but it also shifted from thermal throttling to power throttling) I just got around to applying @win32asmguy's IA AC/DC loadline "fix" and the score shot up to 18285. And that was with Windows 11 trying to install updates in the background (didn't realize until later but didn't bother to re-run). Single run was 19323. This is without undervolting, without raising power limits, without even touching ThrottleStop, without repadding, and without replacing the heatsink with the "better" Sunon version (all things I am still considering, just need to find the time to deal with them). @win32asmguy posted the EFI commands on page 5. https://notebooktalk.net/topic/632-dell-precision-7670-dell-precision-7770-owners-thread/?do=findComment&comment=12993 I was put off by the loooong directions in the undervolting guide, but looking at it today I realized that I could basically skip to the part about setting up the EFI USB boot drive since the whole business above that with "discovering" the commands was unnecessary. I took a photo, first two lines are reading the existing variables and last two lines are running the commands to change them.
  13. Yeah, since Dell/Intel have limited undervolting capability because of potential security issues, this is what you have to resort to.
  14. You can undervolt using the established technique ... if you disable the E cores (which will result in lower multi-threaded performance). I don't think ThrottleStop has been updated to properly support hybrid architecture undervolting yet. You can also use the same technique to improve performance by just fixing the IA AC/DC loadline value. I used isopropyl alcohol (been doing that for years) and I had no trouble getting the old paste off.
  15. Yeah that is silly, there is no reason Ubuntu and 3080 can’t get along. Dell probably just doesn’t want to support it.
  16. Yes, the heatsink is a different (smaller) part in the 7670. And also it is pretty normal for the CPU temperature to ramp up very quickly up if you push it up to (nearly) 5 GHz. The fans in this system are pretty slow to react to a change in the CPU load, it might take them almost a minute to crank up to full speed.
  17. Thank you, I will give this a try later ..... but this is the sort of thing that I would expect Ubuntu to automatically configure. (Granted, Ubuntu 22.10 is still beta for another few weeks, and it's also not unusual for non-LTS releases to come out a bit shaky.) Ubuntu doesn't load the proprietary NVIDIA driver by default but there is an option during the install to add it (which I did). So, it would not have been loaded in the "live CD" environment. I did not have this issue with Ubuntu 22.04 (kernel 5.15) but I see from your links that this popped up in maybe 5.18. It also seems like kernel 5.15 is too old for Alder Lake iGPU graphics support, so I think it was just loading a generic VGA driver. I don't see boot messages blaming the graphics driver like some of these logs posted show. It seems to be blaming dell_smm_hwmon, if anything. I was wondering if there is some breaking change with that module in the newer kernel version, and I thought about trying to blacklist it, but that's also not a module that I'm wanting to run without either. I'm actually pretty familiar with that one, as I spent a lot of time digging around that code when working on my own (Windows-based) fan control solutions. You may recall the time I had you helping me dump "tokens" from the BIOS trying to figure out undervolting, and we stumbled across the fan sensor values. The code for that dump was partly derived from the Dell SMBIOS code in the Linux kernel. If I do end up switching to Linux, I'll want to set up similar tooling to what I have now in Windows on the Linux side, and I'll be relying on making calls to the appropriate kernel modules... [Edit] Actually, after refreshing myself on this stuff a bit... Maybe I can blacklist dell_smm_hwmon. I think that one is obsolete with newer Dell systems (Tiger Lake and up), unless something has changed in there recently, and I really just need Dell's libsmbios for my stuff.
  18. That's about normal for stock 7770, assuming you got the original heatsink (with Delta fans), unfortunately. It thermal throttles very quickly. β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€” Installed Ubuntu 22.10 with kernel 5.19. Well, tried to. The live CD environment booted fine, but after the first reboot, I got exactly the same error I did when trying to slap that kernel on 22.04. (Maybe I didn't do anything wrong after all... It's just a bug.) This text appears with timestamps to the left: spi-nor spi0.0: BFPT parsing failed. Please consider using SPI_NOR_SKIP_SFDP when declaring the flash dell_smm_hwmon: unable to get SMM Dell signature (...Then it just hangs there.)
  19. I don't think that it can be assumed that the particulars between the Sunon/Delta versions that we are seeing with Precision 7770 will also apply to Precision 7670.
  20. Yeah, I saw some articles on that, seems like in some cases it was actually able to cause damage to the display panel. Anyway, I don't think that was what happened to me here. It got stuck at the black screen with terminal text at bootup, showing an error (don't remember what), and it wouldn't advance to the login screen. I think it is totally because I tried to wedge a new kernel on and I don't know what I'm doing πŸ™‚ I might install Ubuntu 22.10 (with kernel 5.19) instead temporarily, just to see if the Intel GPU driver seems good (with decent 3D performance + 120Hz available), but I would rather be on a LTS release for any real attempt to use it.
  21. E cores are always listed last. First 16 are P cores and last 8 are E cores.
Γ—
Γ—
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. Terms of Use