blob: 2d2c4a3aeaae4a0a08bf85e961192a825c92b0d7 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/******************************************************************************
2 *
3 * Module Name: utinit - Common ACPI subsystem initialization
4 *
5 *****************************************************************************/
6
7/*
Bob Moore4a90c7e2006-01-13 16:22:00 -05008 * Copyright (C) 2000 - 2006, R. Byron Moore
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * All rights reserved.
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions, and the following disclaimer,
16 * without modification.
17 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
18 * substantially similar to the "NO WARRANTY" disclaimer below
19 * ("Disclaimer") and any redistribution must be conditioned upon
20 * including a substantially similar Disclaimer requirement for further
21 * binary redistribution.
22 * 3. Neither the names of the above-listed copyright holders nor the names
23 * of any contributors may be used to endorse or promote products derived
24 * from this software without specific prior written permission.
25 *
26 * Alternatively, this software may be distributed under the terms of the
27 * GNU General Public License ("GPL") version 2 as published by the Free
28 * Software Foundation.
29 *
30 * NO WARRANTY
31 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
32 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
33 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
34 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
35 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
36 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
37 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
38 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
39 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
40 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
41 * POSSIBILITY OF SUCH DAMAGES.
42 */
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <acpi/acpi.h>
45#include <acpi/acnamesp.h>
46#include <acpi/acevents.h>
Bob Mooref3d2e782007-02-02 19:48:18 +030047#include <acpi/actables.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49#define _COMPONENT ACPI_UTILITIES
Len Brown4be44fc2005-08-05 00:44:28 -040050ACPI_MODULE_NAME("utinit")
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Robert Moore44f6c012005-04-18 22:49:35 -040052/* Local prototypes */
Robert Moore44f6c012005-04-18 22:49:35 -040053static void
Bob Moore793c2382006-03-31 00:00:00 -050054acpi_ut_fadt_register_error(char *register_name, u32 value, u8 offset);
Robert Moore44f6c012005-04-18 22:49:35 -040055
Len Brown4be44fc2005-08-05 00:44:28 -040056static void acpi_ut_terminate(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58/*******************************************************************************
59 *
60 * FUNCTION: acpi_ut_fadt_register_error
61 *
Robert Moore44f6c012005-04-18 22:49:35 -040062 * PARAMETERS: register_name - Pointer to string identifying register
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 * Value - Actual register contents value
Robert Moore44f6c012005-04-18 22:49:35 -040064 * Offset - Byte offset in the FADT
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 *
66 * RETURN: AE_BAD_VALUE
67 *
Robert Moore44f6c012005-04-18 22:49:35 -040068 * DESCRIPTION: Display failure message
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 *
70 ******************************************************************************/
71
72static void
Bob Moore793c2382006-03-31 00:00:00 -050073acpi_ut_fadt_register_error(char *register_name, u32 value, u8 offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -070074{
75
Bob Mooreb8e4d892006-01-27 16:43:00 -050076 ACPI_WARNING((AE_INFO,
Bob Mooref3d2e782007-02-02 19:48:18 +030077 "Invalid FADT value %s=%X at offset %X in FADT=%p",
78 register_name, value, offset, &acpi_gbl_FADT));
Linus Torvalds1da177e2005-04-16 15:20:36 -070079}
80
Linus Torvalds1da177e2005-04-16 15:20:36 -070081/******************************************************************************
82 *
83 * FUNCTION: acpi_ut_validate_fadt
84 *
85 * PARAMETERS: None
86 *
87 * RETURN: Status
88 *
89 * DESCRIPTION: Validate various ACPI registers in the FADT
90 *
91 ******************************************************************************/
92
Len Brown4be44fc2005-08-05 00:44:28 -040093acpi_status acpi_ut_validate_fadt(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070094{
95
96 /*
97 * Verify Fixed ACPI Description Table fields,
98 * but don't abort on any problems, just display error
99 */
Bob Mooref3d2e782007-02-02 19:48:18 +0300100 if (acpi_gbl_FADT.pm1_event_length < 4) {
Len Brown4be44fc2005-08-05 00:44:28 -0400101 acpi_ut_fadt_register_error("PM1_EVT_LEN",
Bob Mooref3d2e782007-02-02 19:48:18 +0300102 (u32) acpi_gbl_FADT.
103 pm1_event_length,
104 ACPI_FADT_OFFSET(pm1_event_length));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 }
106
Bob Mooref3d2e782007-02-02 19:48:18 +0300107 if (!acpi_gbl_FADT.pm1_control_length) {
Len Brown4be44fc2005-08-05 00:44:28 -0400108 acpi_ut_fadt_register_error("PM1_CNT_LEN", 0,
Bob Mooref3d2e782007-02-02 19:48:18 +0300109 ACPI_FADT_OFFSET
110 (pm1_control_length));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 }
112
Bob Mooref3d2e782007-02-02 19:48:18 +0300113 if (!acpi_gbl_FADT.xpm1a_event_block.address) {
Len Brown4be44fc2005-08-05 00:44:28 -0400114 acpi_ut_fadt_register_error("X_PM1a_EVT_BLK", 0,
Bob Mooref3d2e782007-02-02 19:48:18 +0300115 ACPI_FADT_OFFSET(xpm1a_event_block.
Len Brown4be44fc2005-08-05 00:44:28 -0400116 address));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 }
118
Bob Mooref3d2e782007-02-02 19:48:18 +0300119 if (!acpi_gbl_FADT.xpm1a_control_block.address) {
Len Brown4be44fc2005-08-05 00:44:28 -0400120 acpi_ut_fadt_register_error("X_PM1a_CNT_BLK", 0,
Bob Mooref3d2e782007-02-02 19:48:18 +0300121 ACPI_FADT_OFFSET
122 (xpm1a_control_block.address));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 }
124
Bob Mooref3d2e782007-02-02 19:48:18 +0300125 if (!acpi_gbl_FADT.xpm_timer_block.address) {
Len Brown4be44fc2005-08-05 00:44:28 -0400126 acpi_ut_fadt_register_error("X_PM_TMR_BLK", 0,
Bob Mooref3d2e782007-02-02 19:48:18 +0300127 ACPI_FADT_OFFSET(xpm_timer_block.
Len Brown4be44fc2005-08-05 00:44:28 -0400128 address));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 }
130
Bob Mooref3d2e782007-02-02 19:48:18 +0300131 if ((acpi_gbl_FADT.xpm2_control_block.address &&
132 !acpi_gbl_FADT.pm2_control_length)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400133 acpi_ut_fadt_register_error("PM2_CNT_LEN",
Bob Mooref3d2e782007-02-02 19:48:18 +0300134 (u32) acpi_gbl_FADT.
135 pm2_control_length,
136 ACPI_FADT_OFFSET
137 (pm2_control_length));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 }
139
Bob Mooref3d2e782007-02-02 19:48:18 +0300140 if (acpi_gbl_FADT.pm_timer_length < 4) {
Len Brown4be44fc2005-08-05 00:44:28 -0400141 acpi_ut_fadt_register_error("PM_TM_LEN",
Bob Mooref3d2e782007-02-02 19:48:18 +0300142 (u32) acpi_gbl_FADT.pm_timer_length,
143 ACPI_FADT_OFFSET(pm_timer_length));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 }
145
146 /* Length of GPE blocks must be a multiple of 2 */
147
Bob Mooref3d2e782007-02-02 19:48:18 +0300148 if (acpi_gbl_FADT.xgpe0_block.address &&
149 (acpi_gbl_FADT.gpe0_block_length & 1)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400150 acpi_ut_fadt_register_error("(x)GPE0_BLK_LEN",
Bob Mooref3d2e782007-02-02 19:48:18 +0300151 (u32) acpi_gbl_FADT.
152 gpe0_block_length,
153 ACPI_FADT_OFFSET
154 (gpe0_block_length));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 }
156
Bob Mooref3d2e782007-02-02 19:48:18 +0300157 if (acpi_gbl_FADT.xgpe1_block.address &&
158 (acpi_gbl_FADT.gpe1_block_length & 1)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400159 acpi_ut_fadt_register_error("(x)GPE1_BLK_LEN",
Bob Mooref3d2e782007-02-02 19:48:18 +0300160 (u32) acpi_gbl_FADT.
161 gpe1_block_length,
162 ACPI_FADT_OFFSET
163 (gpe1_block_length));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 }
165
166 return (AE_OK);
167}
168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169/******************************************************************************
170 *
171 * FUNCTION: acpi_ut_terminate
172 *
173 * PARAMETERS: none
174 *
175 * RETURN: none
176 *
Robert Moore44f6c012005-04-18 22:49:35 -0400177 * DESCRIPTION: Free global memory
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 *
179 ******************************************************************************/
180
Len Brown4be44fc2005-08-05 00:44:28 -0400181static void acpi_ut_terminate(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182{
Len Brown4be44fc2005-08-05 00:44:28 -0400183 struct acpi_gpe_block_info *gpe_block;
184 struct acpi_gpe_block_info *next_gpe_block;
185 struct acpi_gpe_xrupt_info *gpe_xrupt_info;
186 struct acpi_gpe_xrupt_info *next_gpe_xrupt_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
Bob Mooreb229cf92006-04-21 17:15:00 -0400188 ACPI_FUNCTION_TRACE(ut_terminate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 /* Free global GPE blocks and related info structures */
191
192 gpe_xrupt_info = acpi_gbl_gpe_xrupt_list_head;
193 while (gpe_xrupt_info) {
194 gpe_block = gpe_xrupt_info->gpe_block_list_head;
195 while (gpe_block) {
196 next_gpe_block = gpe_block->next;
Bob Moore83135242006-10-03 00:00:00 -0400197 ACPI_FREE(gpe_block->event_info);
198 ACPI_FREE(gpe_block->register_info);
199 ACPI_FREE(gpe_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
201 gpe_block = next_gpe_block;
202 }
203 next_gpe_xrupt_info = gpe_xrupt_info->next;
Bob Moore83135242006-10-03 00:00:00 -0400204 ACPI_FREE(gpe_xrupt_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 gpe_xrupt_info = next_gpe_xrupt_info;
206 }
207
208 return_VOID;
209}
210
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211/*******************************************************************************
212 *
213 * FUNCTION: acpi_ut_subsystem_shutdown
214 *
215 * PARAMETERS: none
216 *
217 * RETURN: none
218 *
219 * DESCRIPTION: Shutdown the various subsystems. Don't delete the mutex
220 * objects here -- because the AML debugger may be still running.
221 *
222 ******************************************************************************/
223
Len Brown4be44fc2005-08-05 00:44:28 -0400224void acpi_ut_subsystem_shutdown(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225{
226
Bob Mooreb229cf92006-04-21 17:15:00 -0400227 ACPI_FUNCTION_TRACE(ut_subsystem_shutdown);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
229 /* Just exit if subsystem is already shutdown */
230
231 if (acpi_gbl_shutdown) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500232 ACPI_ERROR((AE_INFO, "ACPI Subsystem is already terminated"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 return_VOID;
234 }
235
236 /* Subsystem appears active, go ahead and shut it down */
237
238 acpi_gbl_shutdown = TRUE;
Bob Moore41195322006-05-26 16:36:00 -0400239 acpi_gbl_startup_flags = 0;
Bob Moore4a90c7e2006-01-13 16:22:00 -0500240 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Shutting down ACPI Subsystem\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
242 /* Close the acpi_event Handling */
243
Len Brown4be44fc2005-08-05 00:44:28 -0400244 acpi_ev_terminate();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
246 /* Close the Namespace */
247
Len Brown4be44fc2005-08-05 00:44:28 -0400248 acpi_ns_terminate();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
Bob Mooref3d2e782007-02-02 19:48:18 +0300250 /* Delete the ACPI tables */
251
252 acpi_tb_terminate();
253
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 /* Close the globals */
255
Len Brown4be44fc2005-08-05 00:44:28 -0400256 acpi_ut_terminate();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
258 /* Purge the local caches */
259
Len Brown4be44fc2005-08-05 00:44:28 -0400260 (void)acpi_ut_delete_caches();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 return_VOID;
262}