Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/linville/wirel...
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / acpi / ec.c
CommitLineData
1da177e4 1/*
7c6db4e0 2 * ec.c - ACPI Embedded Controller Driver (v2.1)
1da177e4 3 *
7c6db4e0 4 * Copyright (C) 2006-2008 Alexey Starikovskiy <astarikovskiy@suse.de>
01f22462 5 * Copyright (C) 2006 Denis Sadykov <denis.m.sadykov@intel.com>
1da177e4
LT
6 * Copyright (C) 2004 Luming Yu <luming.yu@intel.com>
7 * Copyright (C) 2001, 2002 Andy Grover <andrew.grover@intel.com>
8 * Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>
9 *
10 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or (at
15 * your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful, but
18 * WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License along
23 * with this program; if not, write to the Free Software Foundation, Inc.,
24 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
25 *
26 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
27 */
28
7c6db4e0 29/* Uncomment next line to get verbose printout */
d772b3b3
MN
30/* #define DEBUG */
31
1da177e4
LT
32#include <linux/kernel.h>
33#include <linux/module.h>
34#include <linux/init.h>
35#include <linux/types.h>
36#include <linux/delay.h>
451566f4 37#include <linux/interrupt.h>
837012ed 38#include <linux/list.h>
7c6db4e0 39#include <linux/spinlock.h>
5a0e3ad6 40#include <linux/slab.h>
1da177e4
LT
41#include <asm/io.h>
42#include <acpi/acpi_bus.h>
43#include <acpi/acpi_drivers.h>
eb27cae8 44#include <linux/dmi.h>
1da177e4 45
1195a098
TR
46#include "internal.h"
47
1da177e4 48#define ACPI_EC_CLASS "embedded_controller"
1da177e4
LT
49#define ACPI_EC_DEVICE_NAME "Embedded Controller"
50#define ACPI_EC_FILE_INFO "info"
837012ed 51
1195a098 52#undef PREFIX
af3fd140 53#define PREFIX "ACPI: EC: "
4350933a 54
703959d4 55/* EC status register */
1da177e4
LT
56#define ACPI_EC_FLAG_OBF 0x01 /* Output buffer full */
57#define ACPI_EC_FLAG_IBF 0x02 /* Input buffer full */
451566f4 58#define ACPI_EC_FLAG_BURST 0x10 /* burst mode */
1da177e4 59#define ACPI_EC_FLAG_SCI 0x20 /* EC-SCI occurred */
4350933a 60
703959d4 61/* EC commands */
3261ff4d 62enum ec_command {
6ccedb10
AS
63 ACPI_EC_COMMAND_READ = 0x80,
64 ACPI_EC_COMMAND_WRITE = 0x81,
65 ACPI_EC_BURST_ENABLE = 0x82,
66 ACPI_EC_BURST_DISABLE = 0x83,
67 ACPI_EC_COMMAND_QUERY = 0x84,
3261ff4d 68};
837012ed 69
5c406412 70#define ACPI_EC_DELAY 500 /* Wait 500ms max. during EC ops */
703959d4 71#define ACPI_EC_UDELAY_GLK 1000 /* Wait 1ms max. to get global lock */
34ff4dbc 72#define ACPI_EC_CDELAY 10 /* Wait 10us before polling EC */
2a84cb98 73#define ACPI_EC_MSI_UDELAY 550 /* Wait 550us for MSI EC */
703959d4 74
06cf7d3c 75#define ACPI_EC_STORM_THRESHOLD 8 /* number of false interrupts
7c6db4e0
AS
76 per one transaction */
77
080e412c 78enum {
080e412c 79 EC_FLAGS_QUERY_PENDING, /* Query is pending */
7c6db4e0 80 EC_FLAGS_GPE_STORM, /* GPE storm detected */
f6bb13aa 81 EC_FLAGS_HANDLERS_INSTALLED, /* Handlers for GPE and
7c6db4e0 82 * OpReg are installed */
fe955682 83 EC_FLAGS_BLOCKED, /* Transactions are blocked */
1da177e4 84};
6ffb221a
DS
85
86/* If we find an EC via the ECDT, we need to keep a ptr to its context */
d033879c 87/* External interfaces use first EC only, so remember */
837012ed
AS
88typedef int (*acpi_ec_query_func) (void *data);
89
90struct acpi_ec_query_handler {
91 struct list_head node;
92 acpi_ec_query_func func;
93 acpi_handle handle;
94 void *data;
95 u8 query_bit;
96};
97
8463200a 98struct transaction {
7c6db4e0
AS
99 const u8 *wdata;
100 u8 *rdata;
101 unsigned short irq_count;
8463200a 102 u8 command;
a2f93aea
AS
103 u8 wi;
104 u8 ri;
7c6db4e0
AS
105 u8 wlen;
106 u8 rlen;
dd15f8c4 107 bool done;
7c6db4e0
AS
108};
109
1195a098
TR
110struct acpi_ec *boot_ec, *first_ec;
111EXPORT_SYMBOL(first_ec);
703959d4 112
5423a0cb 113static int EC_FLAGS_MSI; /* Out-of-spec MSI controller */
0adf3c74 114static int EC_FLAGS_VALIDATE_ECDT; /* ASUStec ECDTs need to be validated */
478fa03b 115static int EC_FLAGS_SKIP_DSDT_SCAN; /* Not all BIOS survive early DSDT scan */
5423a0cb 116
1da177e4
LT
117/* --------------------------------------------------------------------------
118 Transaction Management
119 -------------------------------------------------------------------------- */
120
6ffb221a 121static inline u8 acpi_ec_read_status(struct acpi_ec *ec)
1da177e4 122{
3ebe08a7 123 u8 x = inb(ec->command_addr);
86dae015 124 pr_debug(PREFIX "---> status = 0x%2.2x\n", x);
3ebe08a7 125 return x;
451566f4
DT
126}
127
6ffb221a 128static inline u8 acpi_ec_read_data(struct acpi_ec *ec)
703959d4 129{
3ebe08a7 130 u8 x = inb(ec->data_addr);
86dae015 131 pr_debug(PREFIX "---> data = 0x%2.2x\n", x);
7c6db4e0 132 return x;
7c6db5e5
DS
133}
134
6ffb221a 135static inline void acpi_ec_write_cmd(struct acpi_ec *ec, u8 command)
45bea155 136{
86dae015 137 pr_debug(PREFIX "<--- command = 0x%2.2x\n", command);
6ffb221a 138 outb(command, ec->command_addr);
45bea155
LY
139}
140
6ffb221a 141static inline void acpi_ec_write_data(struct acpi_ec *ec, u8 data)
45bea155 142{
86dae015 143 pr_debug(PREFIX "<--- data = 0x%2.2x\n", data);
6ffb221a 144 outb(data, ec->data_addr);
703959d4 145}
45bea155 146
7c6db4e0 147static int ec_transaction_done(struct acpi_ec *ec)
6ffb221a 148{
7c6db4e0
AS
149 unsigned long flags;
150 int ret = 0;
8463200a 151 spin_lock_irqsave(&ec->curr_lock, flags);
dd15f8c4 152 if (!ec->curr || ec->curr->done)
7c6db4e0 153 ret = 1;
8463200a 154 spin_unlock_irqrestore(&ec->curr_lock, flags);
7c6db4e0 155 return ret;
45bea155 156}
451566f4 157
a2f93aea
AS
158static void start_transaction(struct acpi_ec *ec)
159{
160 ec->curr->irq_count = ec->curr->wi = ec->curr->ri = 0;
161 ec->curr->done = false;
162 acpi_ec_write_cmd(ec, ec->curr->command);
163}
164
2a84cb98 165static void advance_transaction(struct acpi_ec *ec, u8 status)
7c6db5e5 166{
7c6db4e0 167 unsigned long flags;
8463200a
AS
168 spin_lock_irqsave(&ec->curr_lock, flags);
169 if (!ec->curr)
7c6db4e0 170 goto unlock;
a2f93aea
AS
171 if (ec->curr->wlen > ec->curr->wi) {
172 if ((status & ACPI_EC_FLAG_IBF) == 0)
173 acpi_ec_write_data(ec,
174 ec->curr->wdata[ec->curr->wi++]);
175 else
dd15f8c4 176 goto err;
a2f93aea 177 } else if (ec->curr->rlen > ec->curr->ri) {
7c6db4e0 178 if ((status & ACPI_EC_FLAG_OBF) == 1) {
a2f93aea
AS
179 ec->curr->rdata[ec->curr->ri++] = acpi_ec_read_data(ec);
180 if (ec->curr->rlen == ec->curr->ri)
dd15f8c4 181 ec->curr->done = true;
7c6db4e0 182 } else
dd15f8c4 183 goto err;
a2f93aea
AS
184 } else if (ec->curr->wlen == ec->curr->wi &&
185 (status & ACPI_EC_FLAG_IBF) == 0)
dd15f8c4
AS
186 ec->curr->done = true;
187 goto unlock;
188err:
189 /* false interrupt, state didn't change */
7b4d4692
AS
190 if (in_interrupt())
191 ++ec->curr->irq_count;
7c6db4e0 192unlock:
8463200a 193 spin_unlock_irqrestore(&ec->curr_lock, flags);
845625cd 194}
03d1d99c 195
a62e8f19 196static int acpi_ec_sync_query(struct acpi_ec *ec);
7c6db4e0 197
a62e8f19 198static int ec_check_sci_sync(struct acpi_ec *ec, u8 state)
7c6db5e5 199{
7c6db4e0
AS
200 if (state & ACPI_EC_FLAG_SCI) {
201 if (!test_and_set_bit(EC_FLAGS_QUERY_PENDING, &ec->flags))
a62e8f19 202 return acpi_ec_sync_query(ec);
7c6db4e0
AS
203 }
204 return 0;
205}
206
207static int ec_poll(struct acpi_ec *ec)
208{
2a84cb98
AS
209 unsigned long flags;
210 int repeat = 2; /* number of command restarts */
211 while (repeat--) {
212 unsigned long delay = jiffies +
213 msecs_to_jiffies(ACPI_EC_DELAY);
214 do {
215 /* don't sleep with disabled interrupts */
216 if (EC_FLAGS_MSI || irqs_disabled()) {
217 udelay(ACPI_EC_MSI_UDELAY);
218 if (ec_transaction_done(ec))
219 return 0;
220 } else {
221 if (wait_event_timeout(ec->wait,
222 ec_transaction_done(ec),
223 msecs_to_jiffies(1)))
224 return 0;
225 }
226 advance_transaction(ec, acpi_ec_read_status(ec));
227 } while (time_before(jiffies, delay));
e12ac3d0 228 if (acpi_ec_read_status(ec) & ACPI_EC_FLAG_IBF)
2a84cb98 229 break;
2a84cb98
AS
230 pr_debug(PREFIX "controller reset, restart transaction\n");
231 spin_lock_irqsave(&ec->curr_lock, flags);
232 start_transaction(ec);
233 spin_unlock_irqrestore(&ec->curr_lock, flags);
af3fd140 234 }
b77d81b2 235 return -ETIME;
1da177e4
LT
236}
237
8463200a 238static int acpi_ec_transaction_unlocked(struct acpi_ec *ec,
2a84cb98 239 struct transaction *t)
45bea155 240{
7c6db4e0 241 unsigned long tmp;
7c6db4e0 242 int ret = 0;
5423a0cb 243 if (EC_FLAGS_MSI)
2a84cb98 244 udelay(ACPI_EC_MSI_UDELAY);
7c6db4e0 245 /* start transaction */
8463200a 246 spin_lock_irqsave(&ec->curr_lock, tmp);
7c6db4e0 247 /* following two actions should be kept atomic */
8463200a 248 ec->curr = t;
a2f93aea 249 start_transaction(ec);
8463200a 250 if (ec->curr->command == ACPI_EC_COMMAND_QUERY)
080e412c 251 clear_bit(EC_FLAGS_QUERY_PENDING, &ec->flags);
8463200a 252 spin_unlock_irqrestore(&ec->curr_lock, tmp);
2a84cb98 253 ret = ec_poll(ec);
8463200a
AS
254 spin_lock_irqsave(&ec->curr_lock, tmp);
255 ec->curr = NULL;
256 spin_unlock_irqrestore(&ec->curr_lock, tmp);
7c6db4e0
AS
257 return ret;
258}
259
260static int ec_check_ibf0(struct acpi_ec *ec)
261{
262 u8 status = acpi_ec_read_status(ec);
263 return (status & ACPI_EC_FLAG_IBF) == 0;
45bea155
LY
264}
265
c0ff1772
AS
266static int ec_wait_ibf0(struct acpi_ec *ec)
267{
268 unsigned long delay = jiffies + msecs_to_jiffies(ACPI_EC_DELAY);
269 /* interrupt wait manually if GPE mode is not active */
c0ff1772 270 while (time_before(jiffies, delay))
2a84cb98
AS
271 if (wait_event_timeout(ec->wait, ec_check_ibf0(ec),
272 msecs_to_jiffies(1)))
c0ff1772
AS
273 return 0;
274 return -ETIME;
45bea155
LY
275}
276
2a84cb98 277static int acpi_ec_transaction(struct acpi_ec *ec, struct transaction *t)
1da177e4 278{
d7a76e4c 279 int status;
50526df6 280 u32 glk;
8463200a 281 if (!ec || (!t) || (t->wlen && !t->wdata) || (t->rlen && !t->rdata))
d550d98d 282 return -EINVAL;
8463200a
AS
283 if (t->rdata)
284 memset(t->rdata, 0, t->rlen);
523953b4 285 mutex_lock(&ec->lock);
fe955682 286 if (test_bit(EC_FLAGS_BLOCKED, &ec->flags)) {
f6bb13aa
RW
287 status = -EINVAL;
288 goto unlock;
289 }
703959d4 290 if (ec->global_lock) {
1da177e4 291 status = acpi_acquire_global_lock(ACPI_EC_UDELAY_GLK, &glk);
c24e912b 292 if (ACPI_FAILURE(status)) {
7c6db4e0
AS
293 status = -ENODEV;
294 goto unlock;
c24e912b 295 }
1da177e4 296 }
c0ff1772 297 if (ec_wait_ibf0(ec)) {
3ebe08a7
MN
298 pr_err(PREFIX "input buffer is not empty, "
299 "aborting transaction\n");
7c6db4e0 300 status = -ETIME;
451566f4 301 goto end;
716e084e 302 }
a62e8f19
AS
303 pr_debug(PREFIX "transaction start\n");
304 /* disable GPE during transaction if storm is detected */
305 if (test_bit(EC_FLAGS_GPE_STORM, &ec->flags)) {
3784730b
RW
306 /* It has to be disabled, so that it doesn't trigger. */
307 acpi_disable_gpe(NULL, ec->gpe);
a62e8f19
AS
308 }
309
2a84cb98 310 status = acpi_ec_transaction_unlocked(ec, t);
a62e8f19
AS
311
312 /* check if we received SCI during transaction */
313 ec_check_sci_sync(ec, acpi_ec_read_status(ec));
314 if (test_bit(EC_FLAGS_GPE_STORM, &ec->flags)) {
54070101 315 msleep(1);
3784730b
RW
316 /* It is safe to enable the GPE outside of the transaction. */
317 acpi_enable_gpe(NULL, ec->gpe);
a62e8f19
AS
318 } else if (t->irq_count > ACPI_EC_STORM_THRESHOLD) {
319 pr_info(PREFIX "GPE storm detected, "
320 "transactions will use polling mode\n");
321 set_bit(EC_FLAGS_GPE_STORM, &ec->flags);
322 }
54070101 323 pr_debug(PREFIX "transaction end\n");
7c6db4e0 324end:
703959d4 325 if (ec->global_lock)
1da177e4 326 acpi_release_global_lock(glk);
7c6db4e0 327unlock:
523953b4 328 mutex_unlock(&ec->lock);
d550d98d 329 return status;
1da177e4
LT
330}
331
8a383ef0 332static int acpi_ec_burst_enable(struct acpi_ec *ec)
c45aac43
AS
333{
334 u8 d;
8463200a
AS
335 struct transaction t = {.command = ACPI_EC_BURST_ENABLE,
336 .wdata = NULL, .rdata = &d,
337 .wlen = 0, .rlen = 1};
338
2a84cb98 339 return acpi_ec_transaction(ec, &t);
c45aac43
AS
340}
341
8a383ef0 342static int acpi_ec_burst_disable(struct acpi_ec *ec)
c45aac43 343{
8463200a
AS
344 struct transaction t = {.command = ACPI_EC_BURST_DISABLE,
345 .wdata = NULL, .rdata = NULL,
346 .wlen = 0, .rlen = 0};
347
7c6db4e0 348 return (acpi_ec_read_status(ec) & ACPI_EC_FLAG_BURST) ?
2a84cb98 349 acpi_ec_transaction(ec, &t) : 0;
c45aac43
AS
350}
351
6ccedb10 352static int acpi_ec_read(struct acpi_ec *ec, u8 address, u8 * data)
3576cf61
DS
353{
354 int result;
355 u8 d;
8463200a
AS
356 struct transaction t = {.command = ACPI_EC_COMMAND_READ,
357 .wdata = &address, .rdata = &d,
358 .wlen = 1, .rlen = 1};
3576cf61 359
2a84cb98 360 result = acpi_ec_transaction(ec, &t);
3576cf61
DS
361 *data = d;
362 return result;
363}
6ffb221a 364
3576cf61
DS
365static int acpi_ec_write(struct acpi_ec *ec, u8 address, u8 data)
366{
6ccedb10 367 u8 wdata[2] = { address, data };
8463200a
AS
368 struct transaction t = {.command = ACPI_EC_COMMAND_WRITE,
369 .wdata = wdata, .rdata = NULL,
370 .wlen = 2, .rlen = 0};
371
2a84cb98 372 return acpi_ec_transaction(ec, &t);
3576cf61
DS
373}
374
1da177e4
LT
375/*
376 * Externally callable EC access functions. For now, assume 1 EC only
377 */
c45aac43
AS
378int ec_burst_enable(void)
379{
c45aac43
AS
380 if (!first_ec)
381 return -ENODEV;
d033879c 382 return acpi_ec_burst_enable(first_ec);
c45aac43
AS
383}
384
385EXPORT_SYMBOL(ec_burst_enable);
386
387int ec_burst_disable(void)
388{
c45aac43
AS
389 if (!first_ec)
390 return -ENODEV;
d033879c 391 return acpi_ec_burst_disable(first_ec);
c45aac43
AS
392}
393
394EXPORT_SYMBOL(ec_burst_disable);
395
6ccedb10 396int ec_read(u8 addr, u8 * val)
1da177e4 397{
1da177e4 398 int err;
6ffb221a 399 u8 temp_data;
1da177e4
LT
400
401 if (!first_ec)
402 return -ENODEV;
403
d033879c 404 err = acpi_ec_read(first_ec, addr, &temp_data);
1da177e4
LT
405
406 if (!err) {
407 *val = temp_data;
408 return 0;
50526df6 409 } else
1da177e4
LT
410 return err;
411}
50526df6 412
1da177e4
LT
413EXPORT_SYMBOL(ec_read);
414
50526df6 415int ec_write(u8 addr, u8 val)
1da177e4 416{
1da177e4
LT
417 int err;
418
419 if (!first_ec)
420 return -ENODEV;
421
d033879c 422 err = acpi_ec_write(first_ec, addr, val);
1da177e4
LT
423
424 return err;
425}
50526df6 426
1da177e4
LT
427EXPORT_SYMBOL(ec_write);
428
616362de 429int ec_transaction(u8 command,
9e197219 430 const u8 * wdata, unsigned wdata_len,
00eb43a1
LP
431 u8 * rdata, unsigned rdata_len,
432 int force_poll)
45bea155 433{
8463200a
AS
434 struct transaction t = {.command = command,
435 .wdata = wdata, .rdata = rdata,
436 .wlen = wdata_len, .rlen = rdata_len};
d7a76e4c
LP
437 if (!first_ec)
438 return -ENODEV;
45bea155 439
2a84cb98 440 return acpi_ec_transaction(first_ec, &t);
45bea155 441}
1da177e4 442
ab9e43c6
LP
443EXPORT_SYMBOL(ec_transaction);
444
fe955682 445void acpi_ec_block_transactions(void)
f6bb13aa
RW
446{
447 struct acpi_ec *ec = first_ec;
448
449 if (!ec)
450 return;
451
452 mutex_lock(&ec->lock);
453 /* Prevent transactions from being carried out */
fe955682 454 set_bit(EC_FLAGS_BLOCKED, &ec->flags);
f6bb13aa
RW
455 mutex_unlock(&ec->lock);
456}
457
fe955682 458void acpi_ec_unblock_transactions(void)
f6bb13aa
RW
459{
460 struct acpi_ec *ec = first_ec;
461
462 if (!ec)
463 return;
464
465 mutex_lock(&ec->lock);
466 /* Allow transactions to be carried out again */
fe955682 467 clear_bit(EC_FLAGS_BLOCKED, &ec->flags);
f6bb13aa
RW
468 mutex_unlock(&ec->lock);
469}
470
fe955682 471void acpi_ec_unblock_transactions_early(void)
d5a64513
RW
472{
473 /*
474 * Allow transactions to happen again (this function is called from
475 * atomic context during wakeup, so we don't need to acquire the mutex).
476 */
477 if (first_ec)
fe955682 478 clear_bit(EC_FLAGS_BLOCKED, &first_ec->flags);
d5a64513
RW
479}
480
a62e8f19 481static int acpi_ec_query_unlocked(struct acpi_ec *ec, u8 * data)
3576cf61
DS
482{
483 int result;
6ccedb10 484 u8 d;
8463200a
AS
485 struct transaction t = {.command = ACPI_EC_COMMAND_QUERY,
486 .wdata = NULL, .rdata = &d,
487 .wlen = 0, .rlen = 1};
6ccedb10
AS
488 if (!ec || !data)
489 return -EINVAL;
6ccedb10
AS
490 /*
491 * Query the EC to find out which _Qxx method we need to evaluate.
492 * Note that successful completion of the query causes the ACPI_EC_SCI
493 * bit to be cleared (and thus clearing the interrupt source).
494 */
a62e8f19 495 result = acpi_ec_transaction_unlocked(ec, &t);
6ccedb10
AS
496 if (result)
497 return result;
6ccedb10
AS
498 if (!d)
499 return -ENODATA;
6ccedb10
AS
500 *data = d;
501 return 0;
1da177e4
LT
502}
503
1da177e4
LT
504/* --------------------------------------------------------------------------
505 Event Management
506 -------------------------------------------------------------------------- */
837012ed
AS
507int acpi_ec_add_query_handler(struct acpi_ec *ec, u8 query_bit,
508 acpi_handle handle, acpi_ec_query_func func,
509 void *data)
510{
511 struct acpi_ec_query_handler *handler =
512 kzalloc(sizeof(struct acpi_ec_query_handler), GFP_KERNEL);
513 if (!handler)
514 return -ENOMEM;
515
516 handler->query_bit = query_bit;
517 handler->handle = handle;
518 handler->func = func;
519 handler->data = data;
520 mutex_lock(&ec->lock);
30c08574 521 list_add(&handler->node, &ec->list);
837012ed
AS
522 mutex_unlock(&ec->lock);
523 return 0;
524}
525
526EXPORT_SYMBOL_GPL(acpi_ec_add_query_handler);
527
528void acpi_ec_remove_query_handler(struct acpi_ec *ec, u8 query_bit)
529{
1544fdbc 530 struct acpi_ec_query_handler *handler, *tmp;
837012ed 531 mutex_lock(&ec->lock);
1544fdbc 532 list_for_each_entry_safe(handler, tmp, &ec->list, node) {
837012ed
AS
533 if (query_bit == handler->query_bit) {
534 list_del(&handler->node);
535 kfree(handler);
837012ed
AS
536 }
537 }
538 mutex_unlock(&ec->lock);
539}
540
541EXPORT_SYMBOL_GPL(acpi_ec_remove_query_handler);
1da177e4 542
a62e8f19 543static void acpi_ec_run(void *cxt)
45bea155 544{
a62e8f19
AS
545 struct acpi_ec_query_handler *handler = cxt;
546 if (!handler)
e41334c0 547 return;
a62e8f19
AS
548 pr_debug(PREFIX "start query execution\n");
549 if (handler->func)
550 handler->func(handler->data);
551 else if (handler->handle)
552 acpi_evaluate_object(handler->handle, NULL, NULL, NULL);
553 pr_debug(PREFIX "stop query execution\n");
554 kfree(handler);
555}
556
557static int acpi_ec_sync_query(struct acpi_ec *ec)
558{
559 u8 value = 0;
560 int status;
561 struct acpi_ec_query_handler *handler, *copy;
562 if ((status = acpi_ec_query_unlocked(ec, &value)))
563 return status;
837012ed
AS
564 list_for_each_entry(handler, &ec->list, node) {
565 if (value == handler->query_bit) {
566 /* have custom handler for this bit */
a62e8f19
AS
567 copy = kmalloc(sizeof(*handler), GFP_KERNEL);
568 if (!copy)
569 return -ENOMEM;
570 memcpy(copy, handler, sizeof(*copy));
571 pr_debug(PREFIX "push query execution (0x%2x) on queue\n", value);
f5347867
AS
572 return acpi_os_execute((copy->func) ?
573 OSL_NOTIFY_HANDLER : OSL_GPE_HANDLER,
a62e8f19 574 acpi_ec_run, copy);
837012ed
AS
575 }
576 }
a62e8f19
AS
577 return 0;
578}
579
580static void acpi_ec_gpe_query(void *ec_cxt)
581{
582 struct acpi_ec *ec = ec_cxt;
583 if (!ec)
584 return;
585 mutex_lock(&ec->lock);
586 acpi_ec_sync_query(ec);
837012ed 587 mutex_unlock(&ec->lock);
45bea155 588}
1da177e4 589
a62e8f19
AS
590static void acpi_ec_gpe_query(void *ec_cxt);
591
592static int ec_check_sci(struct acpi_ec *ec, u8 state)
593{
594 if (state & ACPI_EC_FLAG_SCI) {
595 if (!test_and_set_bit(EC_FLAGS_QUERY_PENDING, &ec->flags)) {
596 pr_debug(PREFIX "push gpe query to the queue\n");
597 return acpi_os_execute(OSL_NOTIFY_HANDLER,
598 acpi_ec_gpe_query, ec);
599 }
600 }
601 return 0;
602}
603
50526df6 604static u32 acpi_ec_gpe_handler(void *data)
1da177e4 605{
3d02b90b 606 struct acpi_ec *ec = data;
00eb43a1 607
3ebe08a7 608 pr_debug(PREFIX "~~~> interrupt\n");
7c6db4e0 609
a62e8f19
AS
610 advance_transaction(ec, acpi_ec_read_status(ec));
611 if (ec_transaction_done(ec) &&
612 (acpi_ec_read_status(ec) & ACPI_EC_FLAG_IBF) == 0) {
2a84cb98 613 wake_up(&ec->wait);
a62e8f19
AS
614 ec_check_sci(ec, acpi_ec_read_status(ec));
615 }
7c6db4e0 616 return ACPI_INTERRUPT_HANDLED;
845625cd
AS
617}
618
1da177e4
LT
619/* --------------------------------------------------------------------------
620 Address Space Management
621 -------------------------------------------------------------------------- */
622
1da177e4 623static acpi_status
5b7734b4 624acpi_ec_space_handler(u32 function, acpi_physical_address address,
dadf28a1 625 u32 bits, u64 *value64,
50526df6 626 void *handler_context, void *region_context)
1da177e4 627{
3d02b90b 628 struct acpi_ec *ec = handler_context;
dadf28a1
AS
629 int result = 0, i, bytes = bits / 8;
630 u8 *value = (u8 *)value64;
1da177e4 631
1da177e4 632 if ((address > 0xFF) || !value || !handler_context)
d550d98d 633 return AE_BAD_PARAMETER;
1da177e4 634
5b7734b4 635 if (function != ACPI_READ && function != ACPI_WRITE)
d550d98d 636 return AE_BAD_PARAMETER;
1da177e4 637
dadf28a1 638 if (EC_FLAGS_MSI || bits > 8)
6a63b06f 639 acpi_ec_burst_enable(ec);
b3b233c7 640
dadf28a1
AS
641 for (i = 0; i < bytes; ++i, ++address, ++value)
642 result = (function == ACPI_READ) ?
643 acpi_ec_read(ec, address, value) :
644 acpi_ec_write(ec, address, *value);
1da177e4 645
dadf28a1 646 if (EC_FLAGS_MSI || bits > 8)
6a63b06f 647 acpi_ec_burst_disable(ec);
b3b233c7 648
1da177e4
LT
649 switch (result) {
650 case -EINVAL:
d550d98d 651 return AE_BAD_PARAMETER;
1da177e4
LT
652 break;
653 case -ENODEV:
d550d98d 654 return AE_NOT_FOUND;
1da177e4
LT
655 break;
656 case -ETIME:
d550d98d 657 return AE_TIME;
1da177e4
LT
658 break;
659 default:
d550d98d 660 return AE_OK;
1da177e4 661 }
1da177e4
LT
662}
663
1da177e4
LT
664/* --------------------------------------------------------------------------
665 Driver Interface
666 -------------------------------------------------------------------------- */
c0900c35
AS
667static acpi_status
668ec_parse_io_ports(struct acpi_resource *resource, void *context);
669
c0900c35
AS
670static struct acpi_ec *make_acpi_ec(void)
671{
672 struct acpi_ec *ec = kzalloc(sizeof(struct acpi_ec), GFP_KERNEL);
673 if (!ec)
674 return NULL;
080e412c 675 ec->flags = 1 << EC_FLAGS_QUERY_PENDING;
c0900c35
AS
676 mutex_init(&ec->lock);
677 init_waitqueue_head(&ec->wait);
837012ed 678 INIT_LIST_HEAD(&ec->list);
8463200a 679 spin_lock_init(&ec->curr_lock);
c0900c35
AS
680 return ec;
681}
837012ed 682
c019b193
AS
683static acpi_status
684acpi_ec_register_query_methods(acpi_handle handle, u32 level,
685 void *context, void **return_value)
686{
0175d562
LM
687 char node_name[5];
688 struct acpi_buffer buffer = { sizeof(node_name), node_name };
c019b193
AS
689 struct acpi_ec *ec = context;
690 int value = 0;
0175d562
LM
691 acpi_status status;
692
693 status = acpi_get_name(handle, ACPI_SINGLE_NAME, &buffer);
694
695 if (ACPI_SUCCESS(status) && sscanf(node_name, "_Q%x", &value) == 1) {
c019b193
AS
696 acpi_ec_add_query_handler(ec, value, handle, NULL, NULL);
697 }
698 return AE_OK;
699}
700
cd8c93a4
AS
701static acpi_status
702ec_parse_device(acpi_handle handle, u32 Level, void *context, void **retval)
837012ed 703{
cd8c93a4 704 acpi_status status;
d21cf3c1 705 unsigned long long tmp = 0;
cd8c93a4
AS
706
707 struct acpi_ec *ec = context;
a5032bfd
AS
708
709 /* clear addr values, ec_parse_io_ports depend on it */
710 ec->command_addr = ec->data_addr = 0;
711
cd8c93a4
AS
712 status = acpi_walk_resources(handle, METHOD_NAME__CRS,
713 ec_parse_io_ports, ec);
714 if (ACPI_FAILURE(status))
715 return status;
837012ed
AS
716
717 /* Get GPE bit assignment (EC events). */
718 /* TODO: Add support for _GPE returning a package */
27663c58 719 status = acpi_evaluate_integer(handle, "_GPE", NULL, &tmp);
cd8c93a4
AS
720 if (ACPI_FAILURE(status))
721 return status;
27663c58 722 ec->gpe = tmp;
837012ed 723 /* Use the global lock for all EC transactions? */
d21cf3c1 724 tmp = 0;
27663c58
MW
725 acpi_evaluate_integer(handle, "_GLK", NULL, &tmp);
726 ec->global_lock = tmp;
837012ed 727 ec->handle = handle;
cd8c93a4 728 return AE_CTRL_TERMINATE;
837012ed
AS
729}
730
5efc5476
BH
731static int ec_install_handlers(struct acpi_ec *ec)
732{
733 acpi_status status;
734 if (test_bit(EC_FLAGS_HANDLERS_INSTALLED, &ec->flags))
735 return 0;
736 status = acpi_install_gpe_handler(NULL, ec->gpe,
737 ACPI_GPE_EDGE_TRIGGERED,
738 &acpi_ec_gpe_handler, ec);
739 if (ACPI_FAILURE(status))
740 return -ENODEV;
9630bdd9 741
a44061aa 742 acpi_enable_gpe(NULL, ec->gpe);
5efc5476
BH
743 status = acpi_install_address_space_handler(ec->handle,
744 ACPI_ADR_SPACE_EC,
745 &acpi_ec_space_handler,
746 NULL, ec);
747 if (ACPI_FAILURE(status)) {
748 if (status == AE_NOT_FOUND) {
749 /*
750 * Maybe OS fails in evaluating the _REG object.
751 * The AE_NOT_FOUND error will be ignored and OS
752 * continue to initialize EC.
753 */
754 printk(KERN_ERR "Fail in evaluating the _REG object"
755 " of EC device. Broken bios is suspected.\n");
756 } else {
757 acpi_remove_gpe_handler(NULL, ec->gpe,
758 &acpi_ec_gpe_handler);
a44061aa 759 acpi_disable_gpe(NULL, ec->gpe);
5efc5476
BH
760 return -ENODEV;
761 }
762 }
763
764 set_bit(EC_FLAGS_HANDLERS_INSTALLED, &ec->flags);
765 return 0;
766}
767
4c611060
AS
768static void ec_remove_handlers(struct acpi_ec *ec)
769{
a44061aa 770 acpi_disable_gpe(NULL, ec->gpe);
4c611060
AS
771 if (ACPI_FAILURE(acpi_remove_address_space_handler(ec->handle,
772 ACPI_ADR_SPACE_EC, &acpi_ec_space_handler)))
3ebe08a7 773 pr_err(PREFIX "failed to remove space handler\n");
4c611060
AS
774 if (ACPI_FAILURE(acpi_remove_gpe_handler(NULL, ec->gpe,
775 &acpi_ec_gpe_handler)))
3ebe08a7 776 pr_err(PREFIX "failed to remove gpe handler\n");
7c6db4e0 777 clear_bit(EC_FLAGS_HANDLERS_INSTALLED, &ec->flags);
4c611060
AS
778}
779
703959d4 780static int acpi_ec_add(struct acpi_device *device)
1da177e4 781{
703959d4 782 struct acpi_ec *ec = NULL;
d02be047 783 int ret;
45bea155 784
c0900c35
AS
785 strcpy(acpi_device_name(device), ACPI_EC_DEVICE_NAME);
786 strcpy(acpi_device_class(device), ACPI_EC_CLASS);
787
4c611060 788 /* Check for boot EC */
ce52ddf5
AS
789 if (boot_ec &&
790 (boot_ec->handle == device->handle ||
791 boot_ec->handle == ACPI_ROOT_OBJECT)) {
792 ec = boot_ec;
793 boot_ec = NULL;
794 } else {
795 ec = make_acpi_ec();
796 if (!ec)
797 return -ENOMEM;
a5032bfd
AS
798 }
799 if (ec_parse_device(device->handle, 0, ec, NULL) !=
800 AE_CTRL_TERMINATE) {
ce52ddf5
AS
801 kfree(ec);
802 return -EINVAL;
4c611060
AS
803 }
804
c0900c35 805 ec->handle = device->handle;
ce52ddf5
AS
806
807 /* Find and register all query methods */
808 acpi_walk_namespace(ACPI_TYPE_METHOD, ec->handle, 1,
2263576c 809 acpi_ec_register_query_methods, NULL, ec, NULL);
ce52ddf5 810
4c611060
AS
811 if (!first_ec)
812 first_ec = ec;
db89b4f0 813 device->driver_data = ec;
de4f1046
TR
814
815 WARN(!request_region(ec->data_addr, 1, "EC data"),
816 "Could not request EC data io port 0x%lx", ec->data_addr);
817 WARN(!request_region(ec->command_addr, 1, "EC cmd"),
818 "Could not request EC cmd io port 0x%lx", ec->command_addr);
819
3ebe08a7 820 pr_info(PREFIX "GPE = 0x%lx, I/O: command/status = 0x%lx, data = 0x%lx\n",
4c611060 821 ec->gpe, ec->command_addr, ec->data_addr);
5efc5476
BH
822
823 ret = ec_install_handlers(ec);
824
825 /* EC is fully operational, allow queries */
826 clear_bit(EC_FLAGS_QUERY_PENDING, &ec->flags);
827 return ret;
1da177e4
LT
828}
829
50526df6 830static int acpi_ec_remove(struct acpi_device *device, int type)
1da177e4 831{
01f22462 832 struct acpi_ec *ec;
07ddf768 833 struct acpi_ec_query_handler *handler, *tmp;
1da177e4 834
1da177e4 835 if (!device)
d550d98d 836 return -EINVAL;
1da177e4
LT
837
838 ec = acpi_driver_data(device);
cf745ec7 839 ec_remove_handlers(ec);
837012ed 840 mutex_lock(&ec->lock);
07ddf768 841 list_for_each_entry_safe(handler, tmp, &ec->list, node) {
837012ed
AS
842 list_del(&handler->node);
843 kfree(handler);
844 }
845 mutex_unlock(&ec->lock);
de4f1046
TR
846 release_region(ec->data_addr, 1);
847 release_region(ec->command_addr, 1);
db89b4f0 848 device->driver_data = NULL;
d033879c 849 if (ec == first_ec)
c0900c35 850 first_ec = NULL;
4c611060 851 kfree(ec);
d550d98d 852 return 0;
1da177e4
LT
853}
854
1da177e4 855static acpi_status
c0900c35 856ec_parse_io_ports(struct acpi_resource *resource, void *context)
1da177e4 857{
3d02b90b 858 struct acpi_ec *ec = context;
1da177e4 859
01f22462 860 if (resource->type != ACPI_RESOURCE_TYPE_IO)
1da177e4 861 return AE_OK;
1da177e4
LT
862
863 /*
864 * The first address region returned is the data port, and
865 * the second address region returned is the status/command
866 * port.
867 */
de4f1046 868 if (ec->data_addr == 0)
6ffb221a 869 ec->data_addr = resource->data.io.minimum;
de4f1046 870 else if (ec->command_addr == 0)
6ffb221a 871 ec->command_addr = resource->data.io.minimum;
01f22462 872 else
1da177e4 873 return AE_CTRL_TERMINATE;
1da177e4 874
1da177e4
LT
875 return AE_OK;
876}
877
c04209a7
AS
878int __init acpi_boot_ec_enable(void)
879{
7c6db4e0 880 if (!boot_ec || test_bit(EC_FLAGS_HANDLERS_INSTALLED, &boot_ec->flags))
c04209a7
AS
881 return 0;
882 if (!ec_install_handlers(boot_ec)) {
883 first_ec = boot_ec;
884 return 0;
885 }
886 return -EFAULT;
887}
888
223883b7
AS
889static const struct acpi_device_id ec_device_ids[] = {
890 {"PNP0C09", 0},
891 {"", 0},
892};
893
478fa03b
AS
894/* Some BIOS do not survive early DSDT scan, skip it */
895static int ec_skip_dsdt_scan(const struct dmi_system_id *id)
896{
897 EC_FLAGS_SKIP_DSDT_SCAN = 1;
898 return 0;
899}
900
0adf3c74
AS
901/* ASUStek often supplies us with broken ECDT, validate it */
902static int ec_validate_ecdt(const struct dmi_system_id *id)
903{
904 EC_FLAGS_VALIDATE_ECDT = 1;
905 return 0;
906}
907
908/* MSI EC needs special treatment, enable it */
909static int ec_flag_msi(const struct dmi_system_id *id)
910{
55b313f2 911 printk(KERN_DEBUG PREFIX "Detected MSI hardware, enabling workarounds.\n");
0adf3c74
AS
912 EC_FLAGS_MSI = 1;
913 EC_FLAGS_VALIDATE_ECDT = 1;
914 return 0;
915}
916
917static struct dmi_system_id __initdata ec_dmi_table[] = {
478fa03b
AS
918 {
919 ec_skip_dsdt_scan, "Compal JFL92", {
920 DMI_MATCH(DMI_BIOS_VENDOR, "COMPAL"),
921 DMI_MATCH(DMI_BOARD_NAME, "JFL92") }, NULL},
0adf3c74
AS
922 {
923 ec_flag_msi, "MSI hardware", {
55b313f2
AS
924 DMI_MATCH(DMI_BIOS_VENDOR, "Micro-Star")}, NULL},
925 {
926 ec_flag_msi, "MSI hardware", {
927 DMI_MATCH(DMI_SYS_VENDOR, "Micro-Star")}, NULL},
928 {
929 ec_flag_msi, "MSI hardware", {
930 DMI_MATCH(DMI_CHASSIS_VENDOR, "MICRO-Star")}, NULL},
0adf3c74
AS
931 {
932 ec_validate_ecdt, "ASUS hardware", {
933 DMI_MATCH(DMI_BIOS_VENDOR, "ASUS") }, NULL},
934 {},
935};
936
937
c0900c35
AS
938int __init acpi_ec_ecdt_probe(void)
939{
c0900c35 940 acpi_status status;
c6cb0e87 941 struct acpi_ec *saved_ec = NULL;
50526df6 942 struct acpi_table_ecdt *ecdt_ptr;
45bea155 943
d66d969d
AS
944 boot_ec = make_acpi_ec();
945 if (!boot_ec)
c0900c35
AS
946 return -ENOMEM;
947 /*
948 * Generate a boot ec context
949 */
0adf3c74 950 dmi_check_system(ec_dmi_table);
15a58ed1
AS
951 status = acpi_get_table(ACPI_SIG_ECDT, 1,
952 (struct acpi_table_header **)&ecdt_ptr);
cd8c93a4 953 if (ACPI_SUCCESS(status)) {
3ebe08a7 954 pr_info(PREFIX "EC description table is found, configuring boot EC\n");
cd8c93a4
AS
955 boot_ec->command_addr = ecdt_ptr->control.address;
956 boot_ec->data_addr = ecdt_ptr->data.address;
957 boot_ec->gpe = ecdt_ptr->gpe;
4af8e10a 958 boot_ec->handle = ACPI_ROOT_OBJECT;
ce52ddf5 959 acpi_get_handle(ACPI_ROOT_OBJECT, ecdt_ptr->id, &boot_ec->handle);
c6cb0e87 960 /* Don't trust ECDT, which comes from ASUSTek */
0adf3c74 961 if (!EC_FLAGS_VALIDATE_ECDT)
c5279dee 962 goto install;
d6bd535d 963 saved_ec = kmemdup(boot_ec, sizeof(struct acpi_ec), GFP_KERNEL);
c6cb0e87
AS
964 if (!saved_ec)
965 return -ENOMEM;
c5279dee 966 /* fall through */
cd8c93a4 967 }
0adf3c74 968
478fa03b
AS
969 if (EC_FLAGS_SKIP_DSDT_SCAN)
970 return -ENODEV;
971
c5279dee
AS
972 /* This workaround is needed only on some broken machines,
973 * which require early EC, but fail to provide ECDT */
c5279dee
AS
974 printk(KERN_DEBUG PREFIX "Look up EC in DSDT\n");
975 status = acpi_get_devices(ec_device_ids[0].id, ec_parse_device,
976 boot_ec, NULL);
977 /* Check that acpi_get_devices actually find something */
978 if (ACPI_FAILURE(status) || !boot_ec->handle)
979 goto error;
c6cb0e87
AS
980 if (saved_ec) {
981 /* try to find good ECDT from ASUSTek */
982 if (saved_ec->command_addr != boot_ec->command_addr ||
983 saved_ec->data_addr != boot_ec->data_addr ||
984 saved_ec->gpe != boot_ec->gpe ||
985 saved_ec->handle != boot_ec->handle)
986 pr_info(PREFIX "ASUSTek keeps feeding us with broken "
987 "ECDT tables, which are very hard to workaround. "
988 "Trying to use DSDT EC info instead. Please send "
989 "output of acpidump to linux-acpi@vger.kernel.org\n");
990 kfree(saved_ec);
991 saved_ec = NULL;
992 } else {
993 /* We really need to limit this workaround, the only ASUS,
994 * which needs it, has fake EC._INI method, so use it as flag.
995 * Keep boot_ec struct as it will be needed soon.
996 */
997 acpi_handle dummy;
998 if (!dmi_name_in_vendors("ASUS") ||
999 ACPI_FAILURE(acpi_get_handle(boot_ec->handle, "_INI",
1000 &dummy)))
1001 return -ENODEV;
1002 }
c5279dee
AS
1003install:
1004 if (!ec_install_handlers(boot_ec)) {
d033879c 1005 first_ec = boot_ec;
e8284321 1006 return 0;
d033879c 1007 }
c5279dee 1008error:
d66d969d
AS
1009 kfree(boot_ec);
1010 boot_ec = NULL;
1da177e4
LT
1011 return -ENODEV;
1012}
1013
223883b7
AS
1014static struct acpi_driver acpi_ec_driver = {
1015 .name = "ec",
1016 .class = ACPI_EC_CLASS,
1017 .ids = ec_device_ids,
1018 .ops = {
1019 .add = acpi_ec_add,
1020 .remove = acpi_ec_remove,
223883b7
AS
1021 },
1022};
1023
a5f820fe 1024int __init acpi_ec_init(void)
1da177e4 1025{
50526df6 1026 int result = 0;
1da177e4 1027
1da177e4
LT
1028 /* Now register the driver for the EC */
1029 result = acpi_bus_register_driver(&acpi_ec_driver);
49c6c5ff 1030 if (result < 0)
d550d98d 1031 return -ENODEV;
1da177e4 1032
d550d98d 1033 return result;
1da177e4
LT
1034}
1035
1da177e4
LT
1036/* EC driver currently not unloadable */
1037#if 0
50526df6 1038static void __exit acpi_ec_exit(void)
1da177e4 1039{
1da177e4
LT
1040
1041 acpi_bus_unregister_driver(&acpi_ec_driver);
d550d98d 1042 return;
1da177e4 1043}
7843932a 1044#endif /* 0 */