+ Reply to Thread
Results 121 to 130 of 307
-
12th April 2011, 04:41 PM #121Notebook Consultant
- Join Date
- Aug 2008
- Posts
- 194
- Rep Power
- 12
Re: Acer Aspire TimelineX 3820TG mods/tweaks ONLY!
thanks. Is there a mod bios for this laptop that add features.
-
12th April 2011, 07:36 PM #122Notebook Deity
- Join Date
- May 2010
- Location
- germany
- Posts
- 887
- Rep Power
- 11
Re: Acer Aspire TimelineX 3820TG mods/tweaks ONLY!
Hey,
could the free place U67 on the motherboard between the HDMI port and the Intel chipset be a place for a HDMI switch to witch the HDMI output port between the Intel and AMD graphic card?
-
13th April 2011, 03:21 AM #123Notebook Evangelist
- Join Date
- Sep 2009
- Posts
- 371
- Rep Power
- 10
Re: Acer Aspire TimelineX 3820TG mods/tweaks ONLY!
Last edited by inteks; 13th April 2011 at 03:42 AM.
3820TG i5@3.2Ghz 4GB HyperX 1333CL7@1200CL6 ATI HD5650@700/900
Windows7 On Samsung SSD PM830 256Gig
3820tray --- 3820TG ATI vBios MOD --- 1810t TME MOD --- Acc Sensor Mod
-
14th April 2011, 12:30 PM #124Notebook Evangelist
- Join Date
- Sep 2009
- Posts
- 371
- Rep Power
- 10
Re: Acer Aspire TimelineX 3820TG mods/tweaks ONLY!
btw. i found the bug why reading EC doesnt work....
should be ->Code:public static byte ReadEC(byte iPort) { if (WaitWriteEC()) { ols.WriteIoPortByte(0x66, 0x80); } if (WaitWriteEC()) { ols.WriteIoPortByte(0x62, iPort); } if (WaitReadEC()) { return ols.ReadIoPortByte(0x62); } return 0; }
Code:public static byte ReadEC(byte iPort) { if (WaitWriteEC()) { ols.WriteIoPortByte(0x66, 0x80); } if (WaitWriteEC()) { ols.WriteIoPortByte(0x62, iPort); } if (WaitWriteEC()) { WaitReadEC(); return ols.ReadIoPortByte(0x62); } return 0; }
the Sleep(1) is not a problem (as long as rweverything is not running)
PS:
@_InKr_ and @prikolchik -> any news in KBC modding3820TG i5@3.2Ghz 4GB HyperX 1333CL7@1200CL6 ATI HD5650@700/900
Windows7 On Samsung SSD PM830 256Gig
3820tray --- 3820TG ATI vBios MOD --- 1810t TME MOD --- Acc Sensor Mod
-
14th April 2011, 02:08 PM #125Notebook Guru
- Join Date
- Oct 2010
- Posts
- 72
- Rep Power
- 7
Re: Acer Aspire TimelineX 3820TG mods/tweaks ONLY!
Actually I've stopped with following algorithm:
TZ0<60 - 0% speed
60-66 - fan is running at lowest possible speed F0 (lower that is used in original BIOS)
>66 - not modified.
Fan speed table has next values:
FF FF FF F0 81 6F 6F 6F 6F
I 99% satisfied with this algorithm. Next step on its improvement needs lots of playing with temps thresholds and I don't think it worth it.
Can share modded KBC if anybody interested.
-
14th April 2011, 03:11 PM #126Notebook Evangelist
- Join Date
- Sep 2009
- Posts
- 371
- Rep Power
- 10
Re: Acer Aspire TimelineX 3820TG mods/tweaks ONLY!
3820TG i5@3.2Ghz 4GB HyperX 1333CL7@1200CL6 ATI HD5650@700/900
Windows7 On Samsung SSD PM830 256Gig
3820tray --- 3820TG ATI vBios MOD --- 1810t TME MOD --- Acc Sensor Mod
-
15th April 2011, 01:36 AM #127Notebook Guru
- Join Date
- Oct 2010
- Posts
- 72
- Rep Power
- 7
Re: Acer Aspire TimelineX 3820TG mods/tweaks ONLY!
-
15th April 2011, 04:52 AM #128Notebook Deity
- Join Date
- Jun 2010
- Location
- Edinburgh, Scotland
- Posts
- 942
- Rep Power
- 11
Re: Acer Aspire TimelineX 3820TG mods/tweaks ONLY!
But what is TZ1? In HW Monitor its something like a system board temperature. Its definately not the AMD card. Is the AMD card in the ACPI table? I would be happy to use a more quiet AMD card, as I need to use it for HDMI all the time when docked.
Update:
Or maybe a much easier option: could you update KBC 1.13 with the thermal values from 1.19? The thermal settings in 1.19 are really quiet, but it has a bug which makes my AMD fan go into an infinite loop. I would need to send it into a warranty replacement to have it fixed.Last edited by zsero; 15th April 2011 at 05:02 AM.
Best LCD panels wiki, feel free to contribute!
Thinkpad W520 :-)))))) clean install, 8 battery life, FHD panel upgrade - AUO B156HW01 v4
Acer TimelineX 3820TG | 1.8 kg - 3.9 lbs | 8 hours on 6 cell | 3dmark 11 P1384 (760/960) | BIOS GPU switch | Custom Fan Profiles mod
-
15th April 2011, 08:26 AM #129Notebook Guru
- Join Date
- Oct 2010
- Posts
- 72
- Rep Power
- 7
Re: Acer Aspire TimelineX 3820TG mods/tweaks ONLY!
Actually no. With no other software that reads EC running, works even this code:
But correct code, which is working on Linux is:Code:public static byte ReadEC(byte iPort) { if (WaitWriteEC()) { ols.WriteIoPortByte(0x66, 0x80); } if (WaitWriteEC()) { ols.WriteIoPortByte(0x62, iPort); } if (WaitWriteEC()) { return ols.ReadIoPortByte(0x62); } return 0; }
ec.c in trunk/src/ec/acpi ? coreboot
It corresponds to code which you have mentioned as buggy.
Also note udelay(10) - this couldn't be done on Windows. And this is a root cause.
-
15th April 2011, 08:49 AM #130Notebook Evangelist
- Join Date
- Sep 2009
- Posts
- 371
- Rep Power
- 10
Re: Acer Aspire TimelineX 3820TG mods/tweaks ONLY!
the missing "WaitReadEC();" is the problem (its the step 7.)
6. Wait IBF free ->WaitWriteEC()
7. Wait OBF full -> WaitReadEC()
since i fixed that i doenst have any acpi error in windowslog anymore !!
that it delivers allways 0 if RW.exe is running is maybe simply because the EC chip cant be used by two progs the same time ...
i have implemented in 3820tray if it returns "0" then EC is blocked and i retry later3820TG i5@3.2Ghz 4GB HyperX 1333CL7@1200CL6 ATI HD5650@700/900
Windows7 On Samsung SSD PM830 256Gig
3820tray --- 3820TG ATI vBios MOD --- 1810t TME MOD --- Acc Sensor Mod



LinkBack URL




Reply With Quote


I`m upgrading, are you? (GTX 780M...
Today, 04:43 PM in Gaming (Software and Graphics Cards)