| 1 | [ACPID] | 
|---|
| 2 | ; this is comment | 
|---|
| 3 | # this is comment | 
|---|
| 4 | % this is comment | 
|---|
| 5 | ##################################################################### | 
|---|
| 6 | ; What to do when you close the lid of your notebook | 
|---|
| 7 | ; Variants: | 
|---|
| 8 | ; off     = power off | 
|---|
| 9 | ; suspend = suspend to state defined in SleepState | 
|---|
| 10 | ; None    = don't stop working | 
|---|
| 11 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | 
|---|
| 12 | LID = None | 
|---|
| 13 |  | 
|---|
| 14 | ##################################################################### | 
|---|
| 15 | ; What to do when user presses Power button | 
|---|
| 16 | ; Variants: | 
|---|
| 17 | ; off     = power off | 
|---|
| 18 | ; suspend = suspend to state defined in SleepState | 
|---|
| 19 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | 
|---|
| 20 | ;PowerButton = Off | 
|---|
| 21 | PowerButton = suspend | 
|---|
| 22 |  | 
|---|
| 23 | ##################################################################### | 
|---|
| 24 | ; Which sleep state to use | 
|---|
| 25 | ; Variants: | 
|---|
| 26 | ; S1  - very easy | 
|---|
| 27 | ; S2  - easy | 
|---|
| 28 | ; S3  - hard | 
|---|
| 29 | ; S4  - very hard | 
|---|
| 30 | ; default - not use sleep | 
|---|
| 31 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | 
|---|
| 32 | ;SleepState = S1 | 
|---|
| 33 | SleepState = S3 | 
|---|
| 34 |  | 
|---|
| 35 | ##################################################################### | 
|---|
| 36 | ; Where place log file, full path | 
|---|
| 37 | ; default - current directory (where is run), AcpiDaemon.log | 
|---|
| 38 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | 
|---|
| 39 | LogFile = AcpiDaemon.log | 
|---|
| 40 | ##################################################################### | 
|---|
| 41 | ; What is the CPU idle stage in use | 
|---|
| 42 | ; HLT - usially for OS/2 w/o ACPI | 
|---|
| 43 | ; C2  - better idle than HLT | 
|---|
| 44 | ; C3  - deep idle | 
|---|
| 45 | ; default - C2 if possible, else HLT | 
|---|
| 46 | ; | 
|---|
| 47 | ; How to understand that your notebook supports C2 or C3? | 
|---|
| 48 | ; acpi.log -> search for "latency" and "C3" or "C2". | 
|---|
| 49 | ; if C2 is not supported then you see "not support" | 
|---|
| 50 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | 
|---|
| 51 | ;IdleState = HLT | 
|---|
| 52 | IdleState = C2 | 
|---|
| 53 |  | 
|---|
| 54 | ##################################################################### | 
|---|
| 55 | ; Parameters for throttling at SMP kernel Idle (IdleState | 
|---|
| 56 | ; field not work in SMP) in percent. 0 mean off. 100 mean maximum | 
|---|
| 57 | ; default - off | 
|---|
| 58 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | 
|---|
| 59 | MaxThrl = 0 | 
|---|
| 60 | ; | 
|---|
| 61 | MinThrl = 0 | 
|---|
| 62 | ##################################################################### | 
|---|
| 63 | ; Need print to sreen or no | 
|---|
| 64 | ; 1,Y,y - yes | 
|---|
| 65 | ; 0,N,n - no (default no) | 
|---|
| 66 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | 
|---|
| 67 | LogScreen = 0 | 
|---|
| 68 | ; | 
|---|
| 69 | ##################################################################### | 
|---|
| 70 | ; ******************* Experimental ************************* | 
|---|
| 71 | ; Use HLT/Cx Idle call in SMP kernel, according to IdleState | 
|---|
| 72 | ; 1,Y,y - yes | 
|---|
| 73 | ; 0,N,n - no ( default ) | 
|---|
| 74 | ; !!! You need special version of SMP kernel to use this feature !!! | 
|---|
| 75 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | 
|---|
| 76 | ;ExtraKernelHLT = No | 
|---|
| 77 | ExtraKernelHLT = Y | 
|---|
| 78 | ; | 
|---|
| 79 | ##################################################################### | 
|---|
| 80 | ; Where place acpica$ log file, full path | 
|---|
| 81 | ; default - don't create | 
|---|
| 82 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | 
|---|
| 83 | ;AcpiLog = c:\AcpiCA.log | 
|---|
| 84 | ; | 
|---|
| 85 | ##################################################################### | 
|---|
| 86 | ; How many tics CPU (1...n) will be wait in HLT | 
|---|
| 87 | ; defult - tics in 500nsec interval | 
|---|
| 88 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | 
|---|
| 89 | HLTTime = 700 | 
|---|
| 90 | ##################################################################### | 
|---|
| 91 | ; Save Video for suspend, experiments to wakeup video | 
|---|
| 92 | ; 0 - don't use this feature | 
|---|
| 93 | ; possible 1,3,7,0xf (read VESA BIOS standard) | 
|---|
| 94 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | 
|---|
| 95 | VBESave = 7 | 
|---|
| 96 |  | 
|---|