]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/dev/acpica/acpica_support.c
This commit was generated by cvs2svn to compensate for changes in r95421,
[FreeBSD/FreeBSD.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$
27  */
28
29 #include "acpi.h"
30 #include <machine/cpufunc.h>
31 #include <dev/acpica/acpica_support.h>
32
33 ACPI_MODULE_NAME("SUPPORT")
34
35 /*
36  * Implement support code temporary here until officially merged into
37  * Intel ACPI CA release.
38  */
39
40 #undef _COMPONENT
41 #define _COMPONENT      ACPI_HARDWARE
42
43 /******************************************************************************
44  *
45  * FUNCTION:    AcpiEnterSleepStateS4Bios
46  *
47  * PARAMETERS:  None
48  *
49  * RETURN:      Status
50  *
51  * DESCRIPTION: Enter a system sleep state S4BIOS
52  *
53  ******************************************************************************/
54         
55 ACPI_STATUS
56 AcpiEnterSleepStateS4Bios (
57     void)
58 {
59     ACPI_OBJECT_LIST    ArgList;
60     ACPI_OBJECT         Arg;
61
62
63     ACPI_FUNCTION_TRACE ("AcpiEnterSleepStateS4Bios");
64
65     /* run the _PTS and _GTS methods */
66
67     ACPI_MEMSET(&ArgList, 0, sizeof(ArgList));
68     ArgList.Count = 1;
69     ArgList.Pointer = &Arg;
70
71     ACPI_MEMSET(&Arg, 0, sizeof(Arg));
72     Arg.Type = ACPI_TYPE_INTEGER;
73     Arg.Integer.Value = ACPI_STATE_S4;
74
75     AcpiEvaluateObject (NULL, "\\_PTS", &ArgList, NULL);
76     AcpiEvaluateObject (NULL, "\\_GTS", &ArgList, NULL);
77
78     /* clear wake status */
79
80     AcpiHwBitRegisterWrite (ACPI_BITREG_WAKE_STATUS, 1, ACPI_MTX_LOCK);
81
82     acpi_disable_irqs ();
83
84     AcpiHwDisableNonWakeupGpes();
85
86     /* flush caches */
87
88 #ifdef __i386__
89     wbinvd();
90 #endif
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     }
98     while (!AcpiHwBitRegisterRead (ACPI_BITREG_WAKE_STATUS, ACPI_MTX_LOCK));
99
100     AcpiHwEnableNonWakeupGpes();
101
102     acpi_enable_irqs ();
103
104     return_ACPI_STATUS (AE_OK);
105 }
106
107
108 #undef _COMPONENT
109 #define _COMPONENT      ACPI_TABLES
110
111 /*******************************************************************************
112  *
113  * FUNCTION:    AcpiSetDsdtTablePtr
114  *
115  * PARAMETERS:  TablePtr        - pointer to a buffer containing the entire
116  *                                DSDT table to override
117  *
118  * RETURN:      Status
119  *
120  * DESCRIPTION: Set DSDT table ptr for DSDT overriding.  This function should
121  *              be called perior than AcpiLoadTables(). 
122  *
123  ******************************************************************************/
124
125 ACPI_STATUS
126 AcpiSetDsdtTablePtr(
127     ACPI_TABLE_HEADER   *TablePtr)
128 {
129     ACPI_FUNCTION_TRACE ("AcpiSetDsdtTablePtr");
130
131     if (!TablePtr)
132     {
133         return_ACPI_STATUS (AE_BAD_PARAMETER);
134     }
135
136     if (AcpiGbl_AcpiTables[ACPI_TABLE_DSDT].LoadedIntoNamespace)
137     {
138         return_ACPI_STATUS (AE_ALREADY_EXISTS);
139     }
140
141     AcpiGbl_DSDT = TablePtr;
142
143     return_ACPI_STATUS (AE_OK);
144 }
145