hwsleep.c revision 129684
1
2/******************************************************************************
3 *
4 * Name: hwsleep.c - ACPI Hardware Sleep/Wake Interface
5 *              $Revision: 69 $
6 *
7 *****************************************************************************/
8
9/******************************************************************************
10 *
11 * 1. Copyright Notice
12 *
13 * Some or all of this work - Copyright (c) 1999 - 2004, Intel Corp.
14 * All rights reserved.
15 *
16 * 2. License
17 *
18 * 2.1. This is your license from Intel Corp. under its intellectual property
19 * rights.  You may have additional license terms from the party that provided
20 * you this software, covering your right to use that party's intellectual
21 * property rights.
22 *
23 * 2.2. Intel grants, free of charge, to any person ("Licensee") obtaining a
24 * copy of the source code appearing in this file ("Covered Code") an
25 * irrevocable, perpetual, worldwide license under Intel's copyrights in the
26 * base code distributed originally by Intel ("Original Intel Code") to copy,
27 * make derivatives, distribute, use and display any portion of the Covered
28 * Code in any form, with the right to sublicense such rights; and
29 *
30 * 2.3. Intel grants Licensee a non-exclusive and non-transferable patent
31 * license (with the right to sublicense), under only those claims of Intel
32 * patents that are infringed by the Original Intel Code, to make, use, sell,
33 * offer to sell, and import the Covered Code and derivative works thereof
34 * solely to the minimum extent necessary to exercise the above copyright
35 * license, and in no event shall the patent license extend to any additions
36 * to or modifications of the Original Intel Code.  No other license or right
37 * is granted directly or by implication, estoppel or otherwise;
38 *
39 * The above copyright and patent license is granted only if the following
40 * conditions are met:
41 *
42 * 3. Conditions
43 *
44 * 3.1. Redistribution of Source with Rights to Further Distribute Source.
45 * Redistribution of source code of any substantial portion of the Covered
46 * Code or modification with rights to further distribute source must include
47 * the above Copyright Notice, the above License, this list of Conditions,
48 * and the following Disclaimer and Export Compliance provision.  In addition,
49 * Licensee must cause all Covered Code to which Licensee contributes to
50 * contain a file documenting the changes Licensee made to create that Covered
51 * Code and the date of any change.  Licensee must include in that file the
52 * documentation of any changes made by any predecessor Licensee.  Licensee
53 * must include a prominent statement that the modification is derived,
54 * directly or indirectly, from Original Intel Code.
55 *
56 * 3.2. Redistribution of Source with no Rights to Further Distribute Source.
57 * Redistribution of source code of any substantial portion of the Covered
58 * Code or modification without rights to further distribute source must
59 * include the following Disclaimer and Export Compliance provision in the
60 * documentation and/or other materials provided with distribution.  In
61 * addition, Licensee may not authorize further sublicense of source of any
62 * portion of the Covered Code, and must include terms to the effect that the
63 * license from Licensee to its licensee is limited to the intellectual
64 * property embodied in the software Licensee provides to its licensee, and
65 * not to intellectual property embodied in modifications its licensee may
66 * make.
67 *
68 * 3.3. Redistribution of Executable. Redistribution in executable form of any
69 * substantial portion of the Covered Code or modification must reproduce the
70 * above Copyright Notice, and the following Disclaimer and Export Compliance
71 * provision in the documentation and/or other materials provided with the
72 * distribution.
73 *
74 * 3.4. Intel retains all right, title, and interest in and to the Original
75 * Intel Code.
76 *
77 * 3.5. Neither the name Intel nor any other trademark owned or controlled by
78 * Intel shall be used in advertising or otherwise to promote the sale, use or
79 * other dealings in products derived from or relating to the Covered Code
80 * without prior written authorization from Intel.
81 *
82 * 4. Disclaimer and Export Compliance
83 *
84 * 4.1. INTEL MAKES NO WARRANTY OF ANY KIND REGARDING ANY SOFTWARE PROVIDED
85 * HERE.  ANY SOFTWARE ORIGINATING FROM INTEL OR DERIVED FROM INTEL SOFTWARE
86 * IS PROVIDED "AS IS," AND INTEL WILL NOT PROVIDE ANY SUPPORT,  ASSISTANCE,
87 * INSTALLATION, TRAINING OR OTHER SERVICES.  INTEL WILL NOT PROVIDE ANY
88 * UPDATES, ENHANCEMENTS OR EXTENSIONS.  INTEL SPECIFICALLY DISCLAIMS ANY
89 * IMPLIED WARRANTIES OF MERCHANTABILITY, NONINFRINGEMENT AND FITNESS FOR A
90 * PARTICULAR PURPOSE.
91 *
92 * 4.2. IN NO EVENT SHALL INTEL HAVE ANY LIABILITY TO LICENSEE, ITS LICENSEES
93 * OR ANY OTHER THIRD PARTY, FOR ANY LOST PROFITS, LOST DATA, LOSS OF USE OR
94 * COSTS OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, OR FOR ANY INDIRECT,
95 * SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THIS AGREEMENT, UNDER ANY
96 * CAUSE OF ACTION OR THEORY OF LIABILITY, AND IRRESPECTIVE OF WHETHER INTEL
97 * HAS ADVANCE NOTICE OF THE POSSIBILITY OF SUCH DAMAGES.  THESE LIMITATIONS
98 * SHALL APPLY NOTWITHSTANDING THE FAILURE OF THE ESSENTIAL PURPOSE OF ANY
99 * LIMITED REMEDY.
100 *
101 * 4.3. Licensee shall not export, either directly or indirectly, any of this
102 * software or system incorporating such software without first obtaining any
103 * required license or other approval from the U. S. Department of Commerce or
104 * any other agency or department of the United States Government.  In the
105 * event Licensee exports any such software from the United States or
106 * re-exports any such software from a foreign destination, Licensee shall
107 * ensure that the distribution and export/re-export of the software is in
108 * compliance with all laws, regulations, orders, or other restrictions of the
109 * U.S. Export Administration Regulations. Licensee agrees that neither it nor
110 * any of its subsidiaries will export/re-export any technical data, process,
111 * software, or service, directly or indirectly, to any country for which the
112 * United States government or any agency thereof requires an export license,
113 * other governmental approval, or letter of assurance, without first obtaining
114 * such license, approval or letter.
115 *
116 *****************************************************************************/
117
118#include "acpi.h"
119
120#define _COMPONENT          ACPI_HARDWARE
121        ACPI_MODULE_NAME    ("hwsleep")
122
123
124#define METHOD_NAME__BFS        "\\_BFS"
125#define METHOD_NAME__GTS        "\\_GTS"
126#define METHOD_NAME__PTS        "\\_PTS"
127#define METHOD_NAME__SST        "\\_SI._SST"
128#define METHOD_NAME__WAK        "\\_WAK"
129
130#define ACPI_SST_INDICATOR_OFF  0
131#define ACPI_SST_WORKING        1
132#define ACPI_SST_WAKING         2
133#define ACPI_SST_SLEEPING       3
134#define ACPI_SST_SLEEP_CONTEXT  4
135
136
137/******************************************************************************
138 *
139 * FUNCTION:    AcpiSetFirmwareWakingVector
140 *
141 * PARAMETERS:  PhysicalAddress     - Physical address of ACPI real mode
142 *                                    entry point.
143 *
144 * RETURN:      Status
145 *
146 * DESCRIPTION: Access function for dFirmwareWakingVector field in FACS
147 *
148 ******************************************************************************/
149
150ACPI_STATUS
151AcpiSetFirmwareWakingVector (
152    ACPI_PHYSICAL_ADDRESS PhysicalAddress)
153{
154
155    ACPI_FUNCTION_TRACE ("AcpiSetFirmwareWakingVector");
156
157
158    /* Set the vector */
159
160    if (AcpiGbl_CommonFACS.VectorWidth == 32)
161    {
162        *(ACPI_CAST_PTR (UINT32, AcpiGbl_CommonFACS.FirmwareWakingVector))
163                = (UINT32) PhysicalAddress;
164    }
165    else
166    {
167        *AcpiGbl_CommonFACS.FirmwareWakingVector
168                = PhysicalAddress;
169    }
170
171    return_ACPI_STATUS (AE_OK);
172}
173
174
175/******************************************************************************
176 *
177 * FUNCTION:    AcpiGetFirmwareWakingVector
178 *
179 * PARAMETERS:  *PhysicalAddress    - Output buffer where contents of
180 *                                    the FirmwareWakingVector field of
181 *                                    the FACS will be stored.
182 *
183 * RETURN:      Status
184 *
185 * DESCRIPTION: Access function for FirmwareWakingVector field in FACS
186 *
187 ******************************************************************************/
188
189ACPI_STATUS
190AcpiGetFirmwareWakingVector (
191    ACPI_PHYSICAL_ADDRESS *PhysicalAddress)
192{
193
194    ACPI_FUNCTION_TRACE ("AcpiGetFirmwareWakingVector");
195
196
197    if (!PhysicalAddress)
198    {
199        return_ACPI_STATUS (AE_BAD_PARAMETER);
200    }
201
202    /* Get the vector */
203
204    if (AcpiGbl_CommonFACS.VectorWidth == 32)
205    {
206        *PhysicalAddress = (ACPI_PHYSICAL_ADDRESS)
207            *(ACPI_CAST_PTR (UINT32, AcpiGbl_CommonFACS.FirmwareWakingVector));
208    }
209    else
210    {
211        *PhysicalAddress =
212            *AcpiGbl_CommonFACS.FirmwareWakingVector;
213    }
214
215    return_ACPI_STATUS (AE_OK);
216}
217
218
219/******************************************************************************
220 *
221 * FUNCTION:    AcpiEnterSleepStatePrep
222 *
223 * PARAMETERS:  SleepState          - Which sleep state to enter
224 *
225 * RETURN:      Status
226 *
227 * DESCRIPTION: Prepare to enter a system sleep state (see ACPI 2.0 spec p 231)
228 *              This function must execute with interrupts enabled.
229 *              We break sleeping into 2 stages so that OSPM can handle
230 *              various OS-specific tasks between the two steps.
231 *
232 ******************************************************************************/
233
234ACPI_STATUS
235AcpiEnterSleepStatePrep (
236    UINT8               SleepState)
237{
238    ACPI_STATUS         Status;
239    ACPI_OBJECT_LIST    ArgList;
240    ACPI_OBJECT         Arg;
241
242
243    ACPI_FUNCTION_TRACE ("AcpiEnterSleepStatePrep");
244
245
246    /*
247     * _PSW methods could be run here to enable wake-on keyboard, LAN, etc.
248     */
249    Status = AcpiGetSleepTypeData (SleepState,
250                    &AcpiGbl_SleepTypeA, &AcpiGbl_SleepTypeB);
251    if (ACPI_FAILURE (Status))
252    {
253        return_ACPI_STATUS (Status);
254    }
255
256    /* Setup parameter object */
257
258    ArgList.Count = 1;
259    ArgList.Pointer = &Arg;
260
261    Arg.Type = ACPI_TYPE_INTEGER;
262    Arg.Integer.Value = SleepState;
263
264    /* Run the _PTS and _GTS methods */
265
266    Status = AcpiEvaluateObject (NULL, METHOD_NAME__PTS, &ArgList, NULL);
267    if (ACPI_FAILURE (Status) && Status != AE_NOT_FOUND)
268    {
269        return_ACPI_STATUS (Status);
270    }
271
272    Status = AcpiEvaluateObject (NULL, METHOD_NAME__GTS, &ArgList, NULL);
273    if (ACPI_FAILURE (Status) && Status != AE_NOT_FOUND)
274    {
275        return_ACPI_STATUS (Status);
276    }
277
278    /* Setup the argument to _SST */
279
280    switch (SleepState)
281    {
282    case ACPI_STATE_S0:
283        Arg.Integer.Value = ACPI_SST_WORKING;
284        break;
285
286    case ACPI_STATE_S1:
287    case ACPI_STATE_S2:
288    case ACPI_STATE_S3:
289        Arg.Integer.Value = ACPI_SST_SLEEPING;
290        break;
291
292    case ACPI_STATE_S4:
293        Arg.Integer.Value = ACPI_SST_SLEEP_CONTEXT;
294        break;
295
296    default:
297        Arg.Integer.Value = ACPI_SST_INDICATOR_OFF; /* Default is indicator off */
298        break;
299    }
300
301    /* Set the system indicators to show the desired sleep state. */
302
303    Status = AcpiEvaluateObject (NULL, METHOD_NAME__SST, &ArgList, NULL);
304    if (ACPI_FAILURE (Status) && Status != AE_NOT_FOUND)
305    {
306         ACPI_REPORT_ERROR (("Method _SST failed, %s\n", AcpiFormatException (Status)));
307    }
308
309    return_ACPI_STATUS (AE_OK);
310}
311
312
313/******************************************************************************
314 *
315 * FUNCTION:    AcpiEnterSleepState
316 *
317 * PARAMETERS:  SleepState          - Which sleep state to enter
318 *
319 * RETURN:      Status
320 *
321 * DESCRIPTION: Enter a system sleep state (see ACPI 2.0 spec p 231)
322 *              THIS FUNCTION MUST BE CALLED WITH INTERRUPTS DISABLED
323 *
324 ******************************************************************************/
325
326ACPI_STATUS
327AcpiEnterSleepState (
328    UINT8                   SleepState)
329{
330    UINT32                  PM1AControl;
331    UINT32                  PM1BControl;
332    ACPI_BIT_REGISTER_INFO  *SleepTypeRegInfo;
333    ACPI_BIT_REGISTER_INFO  *SleepEnableRegInfo;
334    UINT32                  InValue;
335    ACPI_STATUS             Status;
336
337
338    ACPI_FUNCTION_TRACE ("AcpiEnterSleepState");
339
340
341    if ((AcpiGbl_SleepTypeA > ACPI_SLEEP_TYPE_MAX) ||
342        (AcpiGbl_SleepTypeB > ACPI_SLEEP_TYPE_MAX))
343    {
344        ACPI_REPORT_ERROR (("Sleep values out of range: A=%X B=%X\n",
345            AcpiGbl_SleepTypeA, AcpiGbl_SleepTypeB));
346        return_ACPI_STATUS (AE_AML_OPERAND_VALUE);
347    }
348
349    SleepTypeRegInfo   = AcpiHwGetBitRegisterInfo (ACPI_BITREG_SLEEP_TYPE_A);
350    SleepEnableRegInfo = AcpiHwGetBitRegisterInfo (ACPI_BITREG_SLEEP_ENABLE);
351
352    /* Clear wake status */
353
354    Status = AcpiSetRegister (ACPI_BITREG_WAKE_STATUS, 1, ACPI_MTX_DO_NOT_LOCK);
355    if (ACPI_FAILURE (Status))
356    {
357        return_ACPI_STATUS (Status);
358    }
359
360    /* Clear all fixed and general purpose status bits */
361
362    Status = AcpiHwClearAcpiStatus (ACPI_MTX_DO_NOT_LOCK);
363    if (ACPI_FAILURE (Status))
364    {
365        return_ACPI_STATUS (Status);
366    }
367
368    if (SleepState != ACPI_STATE_S5)
369    {
370        /* Disable BM arbitration */
371
372        Status = AcpiSetRegister (ACPI_BITREG_ARB_DISABLE, 1, ACPI_MTX_DO_NOT_LOCK);
373        if (ACPI_FAILURE (Status))
374        {
375            return_ACPI_STATUS (Status);
376        }
377    }
378
379    /*
380     * 1) Disable/Clear all GPEs
381     * 2) Enable all wakeup GPEs
382     */
383    Status = AcpiHwDisableAllGpes ();
384    if (ACPI_FAILURE (Status))
385    {
386        return_ACPI_STATUS (Status);
387    }
388    AcpiGbl_SystemAwakeAndRunning = FALSE;
389
390    Status = AcpiHwEnableAllWakeupGpes ();
391    if (ACPI_FAILURE (Status))
392    {
393        return_ACPI_STATUS (Status);
394    }
395
396    /* Get current value of PM1A control */
397
398    Status = AcpiHwRegisterRead (ACPI_MTX_DO_NOT_LOCK, ACPI_REGISTER_PM1_CONTROL, &PM1AControl);
399    if (ACPI_FAILURE (Status))
400    {
401        return_ACPI_STATUS (Status);
402    }
403    ACPI_DEBUG_PRINT ((ACPI_DB_INIT, "Entering sleep state [S%d]\n", SleepState));
404
405    /* Clear SLP_EN and SLP_TYP fields */
406
407    PM1AControl &= ~(SleepTypeRegInfo->AccessBitMask | SleepEnableRegInfo->AccessBitMask);
408    PM1BControl = PM1AControl;
409
410    /* Insert SLP_TYP bits */
411
412    PM1AControl |= (AcpiGbl_SleepTypeA << SleepTypeRegInfo->BitPosition);
413    PM1BControl |= (AcpiGbl_SleepTypeB << SleepTypeRegInfo->BitPosition);
414
415    /*
416     * We split the writes of SLP_TYP and SLP_EN to workaround
417     * poorly implemented hardware.
418     */
419
420    /* Write #1: fill in SLP_TYP data */
421
422    Status = AcpiHwRegisterWrite (ACPI_MTX_DO_NOT_LOCK, ACPI_REGISTER_PM1A_CONTROL, PM1AControl);
423    if (ACPI_FAILURE (Status))
424    {
425        return_ACPI_STATUS (Status);
426    }
427
428    Status = AcpiHwRegisterWrite (ACPI_MTX_DO_NOT_LOCK, ACPI_REGISTER_PM1B_CONTROL, PM1BControl);
429    if (ACPI_FAILURE (Status))
430    {
431        return_ACPI_STATUS (Status);
432    }
433
434    /* Insert SLP_ENABLE bit */
435
436    PM1AControl |= SleepEnableRegInfo->AccessBitMask;
437    PM1BControl |= SleepEnableRegInfo->AccessBitMask;
438
439    /* Write #2: SLP_TYP + SLP_EN */
440
441    ACPI_FLUSH_CPU_CACHE ();
442
443    Status = AcpiHwRegisterWrite (ACPI_MTX_DO_NOT_LOCK, ACPI_REGISTER_PM1A_CONTROL, PM1AControl);
444    if (ACPI_FAILURE (Status))
445    {
446        return_ACPI_STATUS (Status);
447    }
448
449    Status = AcpiHwRegisterWrite (ACPI_MTX_DO_NOT_LOCK, ACPI_REGISTER_PM1B_CONTROL, PM1BControl);
450    if (ACPI_FAILURE (Status))
451    {
452        return_ACPI_STATUS (Status);
453    }
454
455    if (SleepState > ACPI_STATE_S3)
456    {
457        /*
458         * We wanted to sleep > S3, but it didn't happen (by virtue of the fact that
459         * we are still executing!)
460         *
461         * Wait ten seconds, then try again. This is to get S4/S5 to work on all machines.
462         *
463         * We wait so long to allow chipsets that poll this reg very slowly to
464         * still read the right value. Ideally, this block would go
465         * away entirely.
466         */
467        AcpiOsStall (10000000);
468
469        Status = AcpiHwRegisterWrite (ACPI_MTX_DO_NOT_LOCK, ACPI_REGISTER_PM1_CONTROL,
470                    SleepEnableRegInfo->AccessBitMask);
471        if (ACPI_FAILURE (Status))
472        {
473            return_ACPI_STATUS (Status);
474        }
475    }
476
477    /* Wait until we enter sleep state */
478
479    do
480    {
481        Status = AcpiGetRegister (ACPI_BITREG_WAKE_STATUS, &InValue, ACPI_MTX_DO_NOT_LOCK);
482        if (ACPI_FAILURE (Status))
483        {
484            return_ACPI_STATUS (Status);
485        }
486
487        /* Spin until we wake */
488
489    } while (!InValue);
490
491    return_ACPI_STATUS (AE_OK);
492}
493
494
495/******************************************************************************
496 *
497 * FUNCTION:    AcpiEnterSleepStateS4bios
498 *
499 * PARAMETERS:  None
500 *
501 * RETURN:      Status
502 *
503 * DESCRIPTION: Perform a S4 bios request.
504 *              THIS FUNCTION MUST BE CALLED WITH INTERRUPTS DISABLED
505 *
506 ******************************************************************************/
507
508ACPI_STATUS
509AcpiEnterSleepStateS4bios (
510    void)
511{
512    UINT32                  InValue;
513    ACPI_STATUS             Status;
514
515
516    ACPI_FUNCTION_TRACE ("AcpiEnterSleepStateS4bios");
517
518
519    Status = AcpiSetRegister (ACPI_BITREG_WAKE_STATUS, 1, ACPI_MTX_DO_NOT_LOCK);
520    if (ACPI_FAILURE (Status))
521    {
522        return_ACPI_STATUS (Status);
523    }
524
525    Status = AcpiHwClearAcpiStatus (ACPI_MTX_DO_NOT_LOCK);
526    if (ACPI_FAILURE (Status))
527    {
528        return_ACPI_STATUS (Status);
529    }
530
531    /*
532     * 1) Disable/Clear all GPEs
533     * 2) Enable all wakeup GPEs
534     */
535    Status = AcpiHwDisableAllGpes ();
536    if (ACPI_FAILURE (Status))
537    {
538        return_ACPI_STATUS (Status);
539    }
540    AcpiGbl_SystemAwakeAndRunning = FALSE;
541
542    Status = AcpiHwEnableAllWakeupGpes ();
543    if (ACPI_FAILURE (Status))
544    {
545        return_ACPI_STATUS (Status);
546    }
547
548    ACPI_FLUSH_CPU_CACHE ();
549
550    Status = AcpiOsWritePort (AcpiGbl_FADT->SmiCmd, (UINT32) AcpiGbl_FADT->S4BiosReq, 8);
551
552    do {
553        AcpiOsStall(1000);
554        Status = AcpiGetRegister (ACPI_BITREG_WAKE_STATUS, &InValue, ACPI_MTX_DO_NOT_LOCK);
555        if (ACPI_FAILURE (Status))
556        {
557            return_ACPI_STATUS (Status);
558        }
559    } while (!InValue);
560
561    return_ACPI_STATUS (AE_OK);
562}
563
564
565/******************************************************************************
566 *
567 * FUNCTION:    AcpiLeaveSleepState
568 *
569 * PARAMETERS:  SleepState          - Which sleep state we just exited
570 *
571 * RETURN:      Status
572 *
573 * DESCRIPTION: Perform OS-independent ACPI cleanup after a sleep
574 *
575 ******************************************************************************/
576
577ACPI_STATUS
578AcpiLeaveSleepState (
579    UINT8                   SleepState)
580{
581    ACPI_OBJECT_LIST        ArgList;
582    ACPI_OBJECT             Arg;
583    ACPI_STATUS             Status;
584    ACPI_BIT_REGISTER_INFO  *SleepTypeRegInfo;
585    ACPI_BIT_REGISTER_INFO  *SleepEnableRegInfo;
586    UINT32                  PM1AControl;
587    UINT32                  PM1BControl;
588
589
590    ACPI_FUNCTION_TRACE ("AcpiLeaveSleepState");
591
592
593    /*
594     * Set SLP_TYPE and SLP_EN to state S0.
595     * This is unclear from the ACPI Spec, but it is required
596     * by some machines.
597     */
598    Status = AcpiGetSleepTypeData (ACPI_STATE_S0,
599                    &AcpiGbl_SleepTypeA, &AcpiGbl_SleepTypeB);
600    if (ACPI_SUCCESS (Status))
601    {
602        SleepTypeRegInfo   = AcpiHwGetBitRegisterInfo (ACPI_BITREG_SLEEP_TYPE_A);
603        SleepEnableRegInfo = AcpiHwGetBitRegisterInfo (ACPI_BITREG_SLEEP_ENABLE);
604
605        /* Get current value of PM1A control */
606
607        Status = AcpiHwRegisterRead (ACPI_MTX_DO_NOT_LOCK,
608                    ACPI_REGISTER_PM1_CONTROL, &PM1AControl);
609        if (ACPI_SUCCESS (Status))
610        {
611            /* Clear SLP_EN and SLP_TYP fields */
612
613            PM1AControl &= ~(SleepTypeRegInfo->AccessBitMask |
614                             SleepEnableRegInfo->AccessBitMask);
615            PM1BControl = PM1AControl;
616
617            /* Insert SLP_TYP bits */
618
619            PM1AControl |= (AcpiGbl_SleepTypeA << SleepTypeRegInfo->BitPosition);
620            PM1BControl |= (AcpiGbl_SleepTypeB << SleepTypeRegInfo->BitPosition);
621
622            /* Just ignore any errors */
623
624            (void) AcpiHwRegisterWrite (ACPI_MTX_DO_NOT_LOCK,
625                            ACPI_REGISTER_PM1A_CONTROL, PM1AControl);
626            (void) AcpiHwRegisterWrite (ACPI_MTX_DO_NOT_LOCK,
627                            ACPI_REGISTER_PM1B_CONTROL, PM1BControl);
628        }
629    }
630
631    /* Ensure EnterSleepStatePrep -> EnterSleepState ordering */
632
633    AcpiGbl_SleepTypeA = ACPI_SLEEP_TYPE_INVALID;
634
635    /* Setup parameter object */
636
637    ArgList.Count = 1;
638    ArgList.Pointer = &Arg;
639    Arg.Type = ACPI_TYPE_INTEGER;
640
641    /* Ignore any errors from these methods */
642
643    Arg.Integer.Value = ACPI_SST_WAKING;
644    Status = AcpiEvaluateObject (NULL, METHOD_NAME__SST, &ArgList, NULL);
645    if (ACPI_FAILURE (Status) && Status != AE_NOT_FOUND)
646    {
647        ACPI_REPORT_ERROR (("Method _SST failed, %s\n", AcpiFormatException (Status)));
648    }
649
650    Arg.Integer.Value = SleepState;
651    Status = AcpiEvaluateObject (NULL, METHOD_NAME__BFS, &ArgList, NULL);
652    if (ACPI_FAILURE (Status) && Status != AE_NOT_FOUND)
653    {
654        ACPI_REPORT_ERROR (("Method _BFS failed, %s\n", AcpiFormatException (Status)));
655    }
656
657    Status = AcpiEvaluateObject (NULL, METHOD_NAME__WAK, &ArgList, NULL);
658    if (ACPI_FAILURE (Status) && Status != AE_NOT_FOUND)
659    {
660        ACPI_REPORT_ERROR (("Method _WAK failed, %s\n", AcpiFormatException (Status)));
661    }
662    /* TBD: _WAK "sometimes" returns stuff - do we want to look at it? */
663
664    /*
665     * Restore the GPEs:
666     * 1) Disable/Clear all GPEs
667     * 2) Enable all runtime GPEs
668     */
669    Status = AcpiHwDisableAllGpes ();
670    if (ACPI_FAILURE (Status))
671    {
672        return_ACPI_STATUS (Status);
673    }
674    AcpiGbl_SystemAwakeAndRunning = TRUE;
675
676    Status = AcpiHwEnableAllRuntimeGpes ();
677    if (ACPI_FAILURE (Status))
678    {
679        return_ACPI_STATUS (Status);
680    }
681
682    /* Enable power button */
683
684    (void) AcpiSetRegister(AcpiGbl_FixedEventInfo[ACPI_EVENT_POWER_BUTTON].EnableRegisterId,
685            1, ACPI_MTX_DO_NOT_LOCK);
686    (void) AcpiSetRegister(AcpiGbl_FixedEventInfo[ACPI_EVENT_POWER_BUTTON].StatusRegisterId,
687            1, ACPI_MTX_DO_NOT_LOCK);
688
689    /* Enable BM arbitration */
690
691    Status = AcpiSetRegister (ACPI_BITREG_ARB_DISABLE, 0, ACPI_MTX_LOCK);
692    if (ACPI_FAILURE (Status))
693    {
694        return_ACPI_STATUS (Status);
695    }
696
697    Arg.Integer.Value = ACPI_SST_WORKING;
698    Status = AcpiEvaluateObject (NULL, METHOD_NAME__SST, &ArgList, NULL);
699    if (ACPI_FAILURE (Status) && Status != AE_NOT_FOUND)
700    {
701        ACPI_REPORT_ERROR (("Method _SST failed, %s\n", AcpiFormatException (Status)));
702    }
703
704    return_ACPI_STATUS (Status);
705}
706