kernel: Sync ACPICA with Intel's version 20140627.
[dragonfly.git] / sys / contrib / dev / acpica / source / components / debugger / dbfileio.c
1 /*******************************************************************************
2  *
3  * Module Name: dbfileio - Debugger file I/O commands. These can't usually
4  *              be used when running the debugger in Ring 0 (Kernel mode)
5  *
6  ******************************************************************************/
7
8 /*
9  * Copyright (C) 2000 - 2014, Intel Corp.
10  * All rights reserved.
11  *
12  * Redistribution and use in source and binary forms, with or without
13  * modification, are permitted provided that the following conditions
14  * are met:
15  * 1. Redistributions of source code must retain the above copyright
16  *    notice, this list of conditions, and the following disclaimer,
17  *    without modification.
18  * 2. Redistributions in binary form must reproduce at minimum a disclaimer
19  *    substantially similar to the "NO WARRANTY" disclaimer below
20  *    ("Disclaimer") and any redistribution must be conditioned upon
21  *    including a substantially similar Disclaimer requirement for further
22  *    binary redistribution.
23  * 3. Neither the names of the above-listed copyright holders nor the names
24  *    of any contributors may be used to endorse or promote products derived
25  *    from this software without specific prior written permission.
26  *
27  * Alternatively, this software may be distributed under the terms of the
28  * GNU General Public License ("GPL") version 2 as published by the Free
29  * Software Foundation.
30  *
31  * NO WARRANTY
32  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
33  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
34  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
35  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
36  * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
37  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
38  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
39  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
40  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
41  * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
42  * POSSIBILITY OF SUCH DAMAGES.
43  */
44
45
46 #include "acpi.h"
47 #include "accommon.h"
48 #include "acdebug.h"
49 #include "actables.h"
50
51 #if (defined ACPI_DEBUGGER || defined ACPI_DISASSEMBLER)
52
53 #define _COMPONENT          ACPI_CA_DEBUGGER
54         ACPI_MODULE_NAME    ("dbfileio")
55
56 #ifdef ACPI_DEBUGGER
57
58 /*******************************************************************************
59  *
60  * FUNCTION:    AcpiDbCloseDebugFile
61  *
62  * PARAMETERS:  None
63  *
64  * RETURN:      None
65  *
66  * DESCRIPTION: If open, close the current debug output file
67  *
68  ******************************************************************************/
69
70 void
71 AcpiDbCloseDebugFile (
72     void)
73 {
74
75 #ifdef ACPI_APPLICATION
76
77     if (AcpiGbl_DebugFile)
78     {
79        fclose (AcpiGbl_DebugFile);
80        AcpiGbl_DebugFile = NULL;
81        AcpiGbl_DbOutputToFile = FALSE;
82        AcpiOsPrintf ("Debug output file %s closed\n", AcpiGbl_DbDebugFilename);
83     }
84 #endif
85 }
86
87
88 /*******************************************************************************
89  *
90  * FUNCTION:    AcpiDbOpenDebugFile
91  *
92  * PARAMETERS:  Name                - Filename to open
93  *
94  * RETURN:      None
95  *
96  * DESCRIPTION: Open a file where debug output will be directed.
97  *
98  ******************************************************************************/
99
100 void
101 AcpiDbOpenDebugFile (
102     char                    *Name)
103 {
104
105 #ifdef ACPI_APPLICATION
106
107     AcpiDbCloseDebugFile ();
108     AcpiGbl_DebugFile = fopen (Name, "w+");
109     if (!AcpiGbl_DebugFile)
110     {
111         AcpiOsPrintf ("Could not open debug file %s\n", Name);
112         return;
113     }
114
115     AcpiOsPrintf ("Debug output file %s opened\n", Name);
116     ACPI_STRNCPY (AcpiGbl_DbDebugFilename, Name,
117         sizeof (AcpiGbl_DbDebugFilename));
118     AcpiGbl_DbOutputToFile = TRUE;
119
120 #endif
121 }
122 #endif
123
124
125 #ifdef ACPI_APPLICATION
126 #include "acapps.h"
127
128 /*******************************************************************************
129  *
130  * FUNCTION:    AeLocalLoadTable
131  *
132  * PARAMETERS:  Table           - pointer to a buffer containing the entire
133  *                                table to be loaded
134  *
135  * RETURN:      Status
136  *
137  * DESCRIPTION: This function is called to load a table from the caller's
138  *              buffer. The buffer must contain an entire ACPI Table including
139  *              a valid header. The header fields will be verified, and if it
140  *              is determined that the table is invalid, the call will fail.
141  *
142  ******************************************************************************/
143
144 static ACPI_STATUS
145 AeLocalLoadTable (
146     ACPI_TABLE_HEADER       *Table)
147 {
148     ACPI_STATUS             Status = AE_OK;
149 /*    ACPI_TABLE_DESC         TableInfo; */
150
151
152     ACPI_FUNCTION_TRACE (AeLocalLoadTable);
153 #if 0
154
155
156     if (!Table)
157     {
158         return_ACPI_STATUS (AE_BAD_PARAMETER);
159     }
160
161     TableInfo.Pointer = Table;
162     Status = AcpiTbRecognizeTable (&TableInfo, ACPI_TABLE_ALL);
163     if (ACPI_FAILURE (Status))
164     {
165         return_ACPI_STATUS (Status);
166     }
167
168     /* Install the new table into the local data structures */
169
170     Status = AcpiTbInitTableDescriptor (&TableInfo);
171     if (ACPI_FAILURE (Status))
172     {
173         if (Status == AE_ALREADY_EXISTS)
174         {
175             /* Table already exists, no error */
176
177             Status = AE_OK;
178         }
179
180         /* Free table allocated by AcpiTbGetTable */
181
182         AcpiTbDeleteSingleTable (&TableInfo);
183         return_ACPI_STATUS (Status);
184     }
185
186 #if (!defined (ACPI_NO_METHOD_EXECUTION) && !defined (ACPI_CONSTANT_EVAL_ONLY))
187
188     Status = AcpiNsLoadTable (TableInfo.InstalledDesc, AcpiGbl_RootNode);
189     if (ACPI_FAILURE (Status))
190     {
191         /* Uninstall table and free the buffer */
192
193         AcpiTbDeleteTablesByType (ACPI_TABLE_ID_DSDT);
194         return_ACPI_STATUS (Status);
195     }
196 #endif
197 #endif
198
199     return_ACPI_STATUS (Status);
200 }
201 #endif
202
203
204 /*******************************************************************************
205  *
206  * FUNCTION:    AcpiDbGetTableFromFile
207  *
208  * PARAMETERS:  Filename        - File where table is located
209  *              ReturnTable     - Where a pointer to the table is returned
210  *
211  * RETURN:      Status
212  *
213  * DESCRIPTION: Load an ACPI table from a file
214  *
215  ******************************************************************************/
216
217 ACPI_STATUS
218 AcpiDbGetTableFromFile (
219     char                    *Filename,
220     ACPI_TABLE_HEADER       **ReturnTable)
221 {
222 #ifdef ACPI_APPLICATION
223     ACPI_STATUS             Status;
224     ACPI_TABLE_HEADER       *Table;
225     BOOLEAN                 IsAmlTable = TRUE;
226
227
228     Status = AcpiUtReadTableFromFile (Filename, &Table);
229     if (ACPI_FAILURE (Status))
230     {
231         return (Status);
232     }
233
234 #ifdef ACPI_DATA_TABLE_DISASSEMBLY
235     IsAmlTable = AcpiUtIsAmlTable (Table);
236 #endif
237
238     if (IsAmlTable)
239     {
240         /* Attempt to recognize and install the table */
241
242         Status = AeLocalLoadTable (Table);
243         if (ACPI_FAILURE (Status))
244         {
245             if (Status == AE_ALREADY_EXISTS)
246             {
247                 AcpiOsPrintf ("Table %4.4s is already installed\n",
248                     Table->Signature);
249             }
250             else
251             {
252                 AcpiOsPrintf ("Could not install table, %s\n",
253                     AcpiFormatException (Status));
254             }
255
256             return (Status);
257         }
258
259         AcpiTbPrintTableHeader (0, Table);
260
261         fprintf (stderr,
262             "Acpi table [%4.4s] successfully installed and loaded\n",
263             Table->Signature);
264     }
265
266     AcpiGbl_AcpiHardwarePresent = FALSE;
267     if (ReturnTable)
268     {
269         *ReturnTable = Table;
270     }
271
272
273 #endif  /* ACPI_APPLICATION */
274     return (AE_OK);
275 }
276
277 #endif  /* ACPI_DEBUGGER */