1 // SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0
2 /******************************************************************************
4 * Module Name: evxfregn - External Interfaces, ACPI Operation Regions and
7 * Copyright (C) 2000 - 2023, Intel Corp.
9 *****************************************************************************/
11 #define EXPORT_ACPI_INTERFACES
13 #include <acpi/acpi.h>
18 #define _COMPONENT ACPI_EVENTS
19 ACPI_MODULE_NAME("evxfregn")
21 /*******************************************************************************
23 * FUNCTION: acpi_install_address_space_handler_internal
25 * PARAMETERS: device - Handle for the device
26 * space_id - The address space ID
27 * handler - Address of the handler
28 * setup - Address of the setup function
29 * context - Value passed to the handler on each access
30 * Run_reg - Run _REG methods for this address space?
34 * DESCRIPTION: Install a handler for all op_regions of a given space_id.
36 * NOTE: This function should only be called after acpi_enable_subsystem has
37 * been called. This is because any _REG methods associated with the Space ID
38 * are executed here, and these methods can only be safely executed after
39 * the default handlers have been installed and the hardware has been
40 * initialized (via acpi_enable_subsystem.)
41 * To avoid this problem pass FALSE for Run_Reg and later on call
42 * acpi_execute_reg_methods() to execute _REG.
44 ******************************************************************************/
46 acpi_install_address_space_handler_internal(acpi_handle device,
47 acpi_adr_space_type space_id,
48 acpi_adr_space_handler handler,
49 acpi_adr_space_setup setup,
50 void *context, u8 run_reg)
52 struct acpi_namespace_node *node;
55 ACPI_FUNCTION_TRACE(acpi_install_address_space_handler);
57 /* Parameter validation */
60 return_ACPI_STATUS(AE_BAD_PARAMETER);
63 status = acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE);
64 if (ACPI_FAILURE(status)) {
65 return_ACPI_STATUS(status);
68 /* Convert and validate the device handle */
70 node = acpi_ns_validate_handle(device);
72 status = AE_BAD_PARAMETER;
76 /* Install the handler for all Regions for this Space ID */
79 acpi_ev_install_space_handler(node, space_id, handler, setup,
81 if (ACPI_FAILURE(status)) {
85 /* Run all _REG methods for this address space */
88 acpi_ev_execute_reg_methods(node, ACPI_UINT32_MAX, space_id,
93 (void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE);
94 return_ACPI_STATUS(status);
98 acpi_install_address_space_handler(acpi_handle device,
99 acpi_adr_space_type space_id,
100 acpi_adr_space_handler handler,
101 acpi_adr_space_setup setup, void *context)
103 return acpi_install_address_space_handler_internal(device, space_id,
108 ACPI_EXPORT_SYMBOL(acpi_install_address_space_handler)
110 acpi_install_address_space_handler_no_reg(acpi_handle device,
111 acpi_adr_space_type space_id,
112 acpi_adr_space_handler handler,
113 acpi_adr_space_setup setup,
116 return acpi_install_address_space_handler_internal(device, space_id,
121 ACPI_EXPORT_SYMBOL(acpi_install_address_space_handler_no_reg)
123 /*******************************************************************************
125 * FUNCTION: acpi_remove_address_space_handler
127 * PARAMETERS: device - Handle for the device
128 * space_id - The address space ID
129 * handler - Address of the handler
133 * DESCRIPTION: Remove a previously installed handler.
135 ******************************************************************************/
137 acpi_remove_address_space_handler(acpi_handle device,
138 acpi_adr_space_type space_id,
139 acpi_adr_space_handler handler)
141 union acpi_operand_object *obj_desc;
142 union acpi_operand_object *handler_obj;
143 union acpi_operand_object *region_obj;
144 union acpi_operand_object **last_obj_ptr;
145 struct acpi_namespace_node *node;
148 ACPI_FUNCTION_TRACE(acpi_remove_address_space_handler);
150 /* Parameter validation */
153 return_ACPI_STATUS(AE_BAD_PARAMETER);
156 status = acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE);
157 if (ACPI_FAILURE(status)) {
158 return_ACPI_STATUS(status);
161 /* Convert and validate the device handle */
163 node = acpi_ns_validate_handle(device);
165 ((node->type != ACPI_TYPE_DEVICE) &&
166 (node->type != ACPI_TYPE_PROCESSOR) &&
167 (node->type != ACPI_TYPE_THERMAL) &&
168 (node != acpi_gbl_root_node))) {
169 status = AE_BAD_PARAMETER;
170 goto unlock_and_exit;
173 /* Make sure the internal object exists */
175 obj_desc = acpi_ns_get_attached_object(node);
177 status = AE_NOT_EXIST;
178 goto unlock_and_exit;
181 /* Find the address handler the user requested */
183 handler_obj = obj_desc->common_notify.handler;
184 last_obj_ptr = &obj_desc->common_notify.handler;
185 while (handler_obj) {
187 /* We have a handler, see if user requested this one */
189 if (handler_obj->address_space.space_id == space_id) {
191 /* Handler must be the same as the installed handler */
193 if (handler_obj->address_space.handler != handler) {
194 status = AE_BAD_PARAMETER;
195 goto unlock_and_exit;
198 /* Matched space_id, first dereference this in the Regions */
200 ACPI_DEBUG_PRINT((ACPI_DB_OPREGION,
201 "Removing address handler %p(%p) for region %s "
202 "on Device %p(%p)\n",
203 handler_obj, handler,
204 acpi_ut_get_region_name(space_id),
207 region_obj = handler_obj->address_space.region_list;
209 /* Walk the handler's region list */
213 * First disassociate the handler from the region.
215 * NOTE: this doesn't mean that the region goes away
216 * The region is just inaccessible as indicated to
219 acpi_ev_detach_region(region_obj, TRUE);
222 * Walk the list: Just grab the head because the
223 * detach_region removed the previous head.
226 handler_obj->address_space.region_list;
229 /* Remove this Handler object from the list */
231 *last_obj_ptr = handler_obj->address_space.next;
233 /* Now we can delete the handler object */
235 acpi_ut_remove_reference(handler_obj);
236 goto unlock_and_exit;
239 /* Walk the linked list of handlers */
241 last_obj_ptr = &handler_obj->address_space.next;
242 handler_obj = handler_obj->address_space.next;
245 /* The handler does not exist */
247 ACPI_DEBUG_PRINT((ACPI_DB_OPREGION,
248 "Unable to remove address handler %p for %s(%X), DevNode %p, obj %p\n",
249 handler, acpi_ut_get_region_name(space_id), space_id,
252 status = AE_NOT_EXIST;
255 (void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE);
256 return_ACPI_STATUS(status);
259 ACPI_EXPORT_SYMBOL(acpi_remove_address_space_handler)
260 /*******************************************************************************
262 * FUNCTION: acpi_execute_reg_methods
264 * PARAMETERS: device - Handle for the device
265 * max_depth - Depth to which search for _REG
266 * space_id - The address space ID
270 * DESCRIPTION: Execute _REG for all op_regions of a given space_id.
272 ******************************************************************************/
274 acpi_execute_reg_methods(acpi_handle device, u32 max_depth,
275 acpi_adr_space_type space_id)
277 struct acpi_namespace_node *node;
280 ACPI_FUNCTION_TRACE(acpi_execute_reg_methods);
282 /* Parameter validation */
285 return_ACPI_STATUS(AE_BAD_PARAMETER);
288 status = acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE);
289 if (ACPI_FAILURE(status)) {
290 return_ACPI_STATUS(status);
293 /* Convert and validate the device handle */
295 node = acpi_ns_validate_handle(device);
298 /* Run all _REG methods for this address space */
300 acpi_ev_execute_reg_methods(node, max_depth, space_id,
303 status = AE_BAD_PARAMETER;
306 (void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE);
307 return_ACPI_STATUS(status);
310 ACPI_EXPORT_SYMBOL(acpi_execute_reg_methods)