ACPICA: Cleanup of FADT verification function.
[linux-2.6/cjktty.git] / drivers / acpi / utilities / utinit.c
blob5079f1943a3b60442c7872980430ada5c2c3848f
1 /******************************************************************************
3 * Module Name: utinit - Common ACPI subsystem initialization
5 *****************************************************************************/
7 /*
8 * Copyright (C) 2000 - 2006, R. Byron Moore
9 * All rights reserved.
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.
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.
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.
44 #include <acpi/acpi.h>
45 #include <acpi/acnamesp.h>
46 #include <acpi/acevents.h>
47 #include <acpi/actables.h>
49 #define _COMPONENT ACPI_UTILITIES
50 ACPI_MODULE_NAME("utinit")
52 /* Local prototypes */
53 static void acpi_ut_fadt_register_error(char *register_name, u32 value);
55 static void acpi_ut_terminate(void);
57 /*******************************************************************************
59 * FUNCTION: acpi_ut_fadt_register_error
61 * PARAMETERS: register_name - Pointer to string identifying register
62 * Value - Actual register contents value
64 * RETURN: None
66 * DESCRIPTION: Display failure message
68 ******************************************************************************/
70 static void acpi_ut_fadt_register_error(char *register_name, u32 value)
73 ACPI_WARNING((AE_INFO, "Invalid FADT value %s = %X",
74 register_name, value));
77 /******************************************************************************
79 * FUNCTION: acpi_ut_validate_fadt
81 * PARAMETERS: None
83 * RETURN: Status
85 * DESCRIPTION: Validate various ACPI registers in the FADT
87 ******************************************************************************/
89 acpi_status acpi_ut_validate_fadt(void)
93 * Verify Fixed ACPI Description Table fields,
94 * but don't abort on any problems, just display error
96 if (acpi_gbl_FADT.pm1_event_length < 4) {
97 acpi_ut_fadt_register_error("Pm1EventLength",
98 (u32) acpi_gbl_FADT.
99 pm1_event_length);
102 if (acpi_gbl_FADT.pm_timer_length < 4) {
103 acpi_ut_fadt_register_error("PmTimerLength",
104 (u32) acpi_gbl_FADT.
105 pm_timer_length);
108 if (!acpi_gbl_FADT.pm1_control_length) {
109 acpi_ut_fadt_register_error("Pm1ControlLength", 0);
112 if (!acpi_gbl_FADT.xpm1a_event_block.address) {
113 acpi_ut_fadt_register_error("XPm1aEventBlock.Address", 0);
116 if (!acpi_gbl_FADT.xpm1a_control_block.address) {
117 acpi_ut_fadt_register_error("XPm1aControlBlock.Address", 0);
120 if (!acpi_gbl_FADT.xpm_timer_block.address) {
121 acpi_ut_fadt_register_error("XPmTimerBlock.Address", 0);
124 if ((acpi_gbl_FADT.xpm2_control_block.address &&
125 !acpi_gbl_FADT.pm2_control_length)) {
126 acpi_ut_fadt_register_error("Pm2ControlLength",
127 (u32) acpi_gbl_FADT.
128 pm2_control_length);
131 /* Length of GPE blocks must be a multiple of 2 */
133 if (acpi_gbl_FADT.xgpe0_block.address &&
134 (acpi_gbl_FADT.gpe0_block_length & 1)) {
135 acpi_ut_fadt_register_error("Gpe0BlockLength",
136 (u32) acpi_gbl_FADT.
137 gpe0_block_length);
140 if (acpi_gbl_FADT.xgpe1_block.address &&
141 (acpi_gbl_FADT.gpe1_block_length & 1)) {
142 acpi_ut_fadt_register_error("Gpe1BlockLength",
143 (u32) acpi_gbl_FADT.
144 gpe1_block_length);
147 return (AE_OK);
150 /******************************************************************************
152 * FUNCTION: acpi_ut_terminate
154 * PARAMETERS: none
156 * RETURN: none
158 * DESCRIPTION: Free global memory
160 ******************************************************************************/
162 static void acpi_ut_terminate(void)
164 struct acpi_gpe_block_info *gpe_block;
165 struct acpi_gpe_block_info *next_gpe_block;
166 struct acpi_gpe_xrupt_info *gpe_xrupt_info;
167 struct acpi_gpe_xrupt_info *next_gpe_xrupt_info;
169 ACPI_FUNCTION_TRACE(ut_terminate);
171 /* Free global GPE blocks and related info structures */
173 gpe_xrupt_info = acpi_gbl_gpe_xrupt_list_head;
174 while (gpe_xrupt_info) {
175 gpe_block = gpe_xrupt_info->gpe_block_list_head;
176 while (gpe_block) {
177 next_gpe_block = gpe_block->next;
178 ACPI_FREE(gpe_block->event_info);
179 ACPI_FREE(gpe_block->register_info);
180 ACPI_FREE(gpe_block);
182 gpe_block = next_gpe_block;
184 next_gpe_xrupt_info = gpe_xrupt_info->next;
185 ACPI_FREE(gpe_xrupt_info);
186 gpe_xrupt_info = next_gpe_xrupt_info;
189 return_VOID;
192 /*******************************************************************************
194 * FUNCTION: acpi_ut_subsystem_shutdown
196 * PARAMETERS: none
198 * RETURN: none
200 * DESCRIPTION: Shutdown the various subsystems. Don't delete the mutex
201 * objects here -- because the AML debugger may be still running.
203 ******************************************************************************/
205 void acpi_ut_subsystem_shutdown(void)
208 ACPI_FUNCTION_TRACE(ut_subsystem_shutdown);
210 /* Just exit if subsystem is already shutdown */
212 if (acpi_gbl_shutdown) {
213 ACPI_ERROR((AE_INFO, "ACPI Subsystem is already terminated"));
214 return_VOID;
217 /* Subsystem appears active, go ahead and shut it down */
219 acpi_gbl_shutdown = TRUE;
220 acpi_gbl_startup_flags = 0;
221 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Shutting down ACPI Subsystem\n"));
223 /* Close the acpi_event Handling */
225 acpi_ev_terminate();
227 /* Close the Namespace */
229 acpi_ns_terminate();
231 /* Delete the ACPI tables */
233 acpi_tb_terminate();
235 /* Close the globals */
237 acpi_ut_terminate();
239 /* Purge the local caches */
241 (void)acpi_ut_delete_caches();
242 return_VOID;