Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 | /***************************************************************************** * * Module Name: ecgpe.c * $Revision: 28 $ * *****************************************************************************/ /* * Copyright (C) 2000, 2001 Andrew Grover * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #include <acpi.h> #include "ec.h" #define _COMPONENT ACPI_EC MODULE_NAME ("ecgpe") /**************************************************************************** * * FUNCTION: ec_query_handler * * PARAMETERS: * * RETURN: * * DESCRIPTION: * ****************************************************************************/ void ec_query_handler ( void *context) { EC_CONTEXT *ec = (EC_CONTEXT*)context; static char object_name[5] = {'_','Q','0','0','\0'}; const char hex[] = {'0','1','2','3','4','5','6','7','8', '9','A','B','C','D','E','F'}; FUNCTION_TRACE("ec_query_handler"); if (!ec) { ACPI_DEBUG_PRINT ((ACPI_DB_ERROR, "Invalid (NULL) context.\n")); return_VOID; } /* * Evaluate _Qxx: * -------------- * Evaluate corresponding _Qxx method. Note that a zero query value * indicates a spurious EC_SCI (no such thing as _Q00). */ object_name[2] = hex[((ec->query_data >> 4) & 0x0F)]; object_name[3] = hex[(ec->query_data & 0x0F)]; ACPI_DEBUG_PRINT ((ACPI_DB_INFO, "Evaluating [%s] for ec [%02x].\n", object_name, ec->device_handle)); bm_evaluate_object(ec->acpi_handle, object_name, NULL, NULL); return_VOID; } /**************************************************************************** * * FUNCTION: ec_gpe_handler * * PARAMETERS: * * RETURN: * * DESCRIPTION: * ****************************************************************************/ void ec_gpe_handler ( void *context) { acpi_status status = AE_OK; EC_CONTEXT *ec = (EC_CONTEXT*)context; EC_STATUS ec_status = 0; FUNCTION_TRACE("ec_gpe_handler"); if (!ec) { ACPI_DEBUG_PRINT ((ACPI_DB_ERROR, "Invalid (NULL) context.\n")); return_VOID; } /* TBD: synchronize w/ transaction (ectransx). */ /* * EC_SCI? * ------- * Check the EC_SCI bit to see if this is an EC_SCI event. If not (e.g. * OBF/IBE) just return, as we already poll to detect these events. */ acpi_os_read_port(ec->status_port, &ec_status, 8); if (!(ec_status & EC_FLAG_SCI)) { return_VOID; } ACPI_DEBUG_PRINT ((ACPI_DB_INFO, "EC_SCI event detected on ec [%02x] - running query.\n", ec->device_handle)); /* * Run Query: * ---------- * Query the EC to find out which _Qxx method we need to evaluate. * Note that successful completion of the query causes the EC_SCI * bit to be cleared (and thus clearing the interrupt source). */ status = ec_io_write(ec, ec->command_port, EC_COMMAND_QUERY, EC_EVENT_OUTPUT_BUFFER_FULL); if (ACPI_FAILURE(status)) { ACPI_DEBUG_PRINT ((ACPI_DB_WARN, "Unable to send 'query command' to EC.\n")); return_VOID; } status = ec_io_read(ec, ec->data_port, &(ec->query_data), EC_EVENT_NONE); if (ACPI_FAILURE(status)) { ACPI_DEBUG_PRINT ((ACPI_DB_WARN, "Error reading query data.\n")); return_VOID; } /* TBD: un-synchronize w/ transaction (ectransx). */ /* * Spurious EC_SCI? * ---------------- */ if (!ec->query_data) { ACPI_DEBUG_PRINT ((ACPI_DB_INFO, "Spurious EC SCI detected.\n")); return_VOID; } /* * Defer _Qxx Execution: * --------------------- * Can't evaluate this method now 'cause we're at interrupt-level. */ status = acpi_os_queue_for_execution(OSD_PRIORITY_GPE, ec_query_handler, ec); if (ACPI_FAILURE(status)) { ACPI_DEBUG_PRINT ((ACPI_DB_WARN, "Unable to defer _Qxx method evaluation.\n")); return_VOID; } return_VOID; } /**************************************************************************** * * FUNCTION: ec_install_gpe_handler * * PARAMETERS: * * RETURN: * * DESCRIPTION: * ****************************************************************************/ acpi_status ec_install_gpe_handler ( EC_CONTEXT *ec) { acpi_status status = AE_OK; FUNCTION_TRACE("ec_install_gpe_handler"); if (!ec) { return_ACPI_STATUS(AE_BAD_PARAMETER); } /* * Evaluate _GPE: * -------------- * Evaluate the "_GPE" object (required) to find out which GPE bit * is used by this EC to signal events (SCIs). */ status = bm_evaluate_simple_integer(ec->acpi_handle, "_GPE", &(ec->gpe_bit)); if (ACPI_FAILURE(status)) { return_ACPI_STATUS(status); } /* * Install GPE Handler: * -------------------- * Install a handler for this EC's GPE bit. */ status = acpi_install_gpe_handler(ec->gpe_bit, ACPI_EVENT_EDGE_TRIGGERED, &ec_gpe_handler, ec); if (ACPI_FAILURE(status)) { ACPI_DEBUG_PRINT ((ACPI_DB_ERROR, "acpi_install_gpe_handler() failed for GPE bit [%02x] with status [%08x].\n", ec->gpe_bit, status)); ec->gpe_bit = EC_GPE_UNKNOWN; return_ACPI_STATUS(status); } return_ACPI_STATUS(status); } /**************************************************************************** * * FUNCTION: ec_remove_gpe_handler * * PARAMETERS: * * RETURN: * * DESCRIPTION: * ****************************************************************************/ acpi_status ec_remove_gpe_handler ( EC_CONTEXT *ec) { acpi_status status = AE_OK; FUNCTION_TRACE("ec_remove_gpe_handler"); if (!ec) { return_ACPI_STATUS(AE_BAD_PARAMETER); } status = acpi_remove_gpe_handler(ec->gpe_bit, &ec_gpe_handler); return_ACPI_STATUS(status); } |