Misc cleanups to take care of GCC3.x warnings. Missing 'U' and 'LL'
[dragonfly.git] / sys / dev / acpica / acpica_support.c
1 /*-
2  * Copyright (c) 2001 Mitsuru IWASAKI
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24  * SUCH DAMAGE.
25  *
26  * $FreeBSD: src/sys/dev/acpica/acpica_support.c,v 1.6.6.1 2003/08/22 20:49:20 jhb Exp $
27  *      $DragonFly: src/sys/dev/acpica/Attic/acpica_support.c,v 1.1 2003/09/24 03:32:16 drhodus Exp $ 
28  */
29
30 #include "acpi.h"
31 #include <machine/cpufunc.h>
32 #include <dev/acpica/acpica_support.h>
33
34 ACPI_MODULE_NAME("SUPPORT")
35
36 /*
37  * Implement support code temporary here until officially merged into
38  * Intel ACPI CA release.
39  */
40
41 #undef _COMPONENT
42 #define _COMPONENT      ACPI_HARDWARE
43
44 /******************************************************************************
45  *
46  * FUNCTION:    AcpiEnterSleepStateS4Bios
47  *
48  * PARAMETERS:  None
49  *
50  * RETURN:      Status
51  *
52  * DESCRIPTION: Enter a system sleep state S4BIOS
53  *
54  ******************************************************************************/
55         
56 ACPI_STATUS
57 AcpiEnterSleepStateS4Bios (
58     void)
59 {
60     ACPI_OBJECT_LIST    ArgList;
61     ACPI_OBJECT         Arg;
62     UINT32              Value;
63
64
65     ACPI_FUNCTION_TRACE ("AcpiEnterSleepStateS4Bios");
66
67     /* run the _PTS and _GTS methods */
68
69     ACPI_MEMSET(&ArgList, 0, sizeof(ArgList));
70     ArgList.Count = 1;
71     ArgList.Pointer = &Arg;
72
73     ACPI_MEMSET(&Arg, 0, sizeof(Arg));
74     Arg.Type = ACPI_TYPE_INTEGER;
75     Arg.Integer.Value = ACPI_STATE_S4;
76
77     AcpiEvaluateObject (NULL, "\\_PTS", &ArgList, NULL);
78     AcpiEvaluateObject (NULL, "\\_GTS", &ArgList, NULL);
79
80     /* clear wake status */
81
82     AcpiSetRegister (ACPI_BITREG_WAKE_STATUS, 1, ACPI_MTX_LOCK);
83
84     ACPI_DISABLE_IRQS ();
85
86     AcpiHwDisableNonWakeupGpes();
87
88     /* flush caches */
89
90     ACPI_FLUSH_CPU_CACHE ();
91
92     /* write the value to command port and wait until we enter sleep state */
93     do
94     {
95         AcpiOsStall(1000000);
96         AcpiOsWritePort (AcpiGbl_FADT->SmiCmd, AcpiGbl_FADT->S4BiosReq, 8);
97         AcpiGetRegister (ACPI_BITREG_WAKE_STATUS, &Value, ACPI_MTX_LOCK);
98     }
99     while (!Value);
100
101     AcpiHwEnableNonWakeupGpes();
102
103     ACPI_ENABLE_IRQS ();
104
105     return_ACPI_STATUS (AE_OK);
106 }
107