ACPI: EC: lower interrupt storm treshold
[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>
37#include <linux/proc_fs.h>
38#include <linux/seq_file.h>
451566f4 39#include <linux/interrupt.h>
837012ed 40#include <linux/list.h>
7c6db4e0 41#include <linux/spinlock.h>
1da177e4
LT
42#include <asm/io.h>
43#include <acpi/acpi_bus.h>
44#include <acpi/acpi_drivers.h>
45#include <acpi/actypes.h>
46
1da177e4 47#define ACPI_EC_CLASS "embedded_controller"
1da177e4
LT
48#define ACPI_EC_DEVICE_NAME "Embedded Controller"
49#define ACPI_EC_FILE_INFO "info"
837012ed 50
af3fd140
AS
51#undef PREFIX
52#define PREFIX "ACPI: EC: "
4350933a 53
703959d4 54/* EC status register */
1da177e4
LT
55#define ACPI_EC_FLAG_OBF 0x01 /* Output buffer full */
56#define ACPI_EC_FLAG_IBF 0x02 /* Input buffer full */
451566f4 57#define ACPI_EC_FLAG_BURST 0x10 /* burst mode */
1da177e4 58#define ACPI_EC_FLAG_SCI 0x20 /* EC-SCI occurred */
4350933a 59
703959d4 60/* EC commands */
3261ff4d 61enum ec_command {
6ccedb10
AS
62 ACPI_EC_COMMAND_READ = 0x80,
63 ACPI_EC_COMMAND_WRITE = 0x81,
64 ACPI_EC_BURST_ENABLE = 0x82,
65 ACPI_EC_BURST_DISABLE = 0x83,
66 ACPI_EC_COMMAND_QUERY = 0x84,
3261ff4d 67};
837012ed 68
5c406412 69#define ACPI_EC_DELAY 500 /* Wait 500ms max. during EC ops */
703959d4 70#define ACPI_EC_UDELAY_GLK 1000 /* Wait 1ms max. to get global lock */
e6e82a30 71#define ACPI_EC_UDELAY 100 /* Wait 100us before polling EC again */
703959d4 72
06cf7d3c 73#define ACPI_EC_STORM_THRESHOLD 8 /* number of false interrupts
7c6db4e0
AS
74 per one transaction */
75
080e412c 76enum {
080e412c 77 EC_FLAGS_QUERY_PENDING, /* Query is pending */
7c6db4e0
AS
78 EC_FLAGS_GPE_MODE, /* Expect GPE to be sent
79 * for status change */
b77d81b2 80 EC_FLAGS_NO_GPE, /* Don't use GPE mode */
7c6db4e0
AS
81 EC_FLAGS_GPE_STORM, /* GPE storm detected */
82 EC_FLAGS_HANDLERS_INSTALLED /* Handlers for GPE and
83 * OpReg are installed */
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
a854e08a 110static struct acpi_ec {
703959d4 111 acpi_handle handle;
a86e2772 112 unsigned long gpe;
6ffb221a
DS
113 unsigned long command_addr;
114 unsigned long data_addr;
703959d4 115 unsigned long global_lock;
080e412c 116 unsigned long flags;
c787a855 117 struct mutex lock;
703959d4 118 wait_queue_head_t wait;
837012ed 119 struct list_head list;
8463200a
AS
120 struct transaction *curr;
121 spinlock_t curr_lock;
d033879c 122} *boot_ec, *first_ec;
703959d4 123
2500822b
ZY
124/*
125 * Some Asus system have exchanged ECDT data/command IO addresses.
126 */
127static int print_ecdt_error(const struct dmi_system_id *id)
128{
129 printk(KERN_NOTICE PREFIX "%s detected - "
130 "ECDT has exchanged control/data I/O address\n",
131 id->ident);
132 return 0;
133}
134
135static struct dmi_system_id __cpuinitdata ec_dmi_table[] = {
136 {
137 print_ecdt_error, "Asus L4R", {
138 DMI_MATCH(DMI_BIOS_VERSION, "1008.006"),
139 DMI_MATCH(DMI_PRODUCT_NAME, "L4R"),
140 DMI_MATCH(DMI_BOARD_NAME, "L4R") }, NULL},
141 {
142 print_ecdt_error, "Asus M6R", {
143 DMI_MATCH(DMI_BIOS_VERSION, "0207"),
144 DMI_MATCH(DMI_PRODUCT_NAME, "M6R"),
145 DMI_MATCH(DMI_BOARD_NAME, "M6R") }, NULL},
146 {},
147};
148
1da177e4
LT
149/* --------------------------------------------------------------------------
150 Transaction Management
151 -------------------------------------------------------------------------- */
152
6ffb221a 153static inline u8 acpi_ec_read_status(struct acpi_ec *ec)
1da177e4 154{
3ebe08a7 155 u8 x = inb(ec->command_addr);
86dae015 156 pr_debug(PREFIX "---> status = 0x%2.2x\n", x);
3ebe08a7 157 return x;
451566f4
DT
158}
159
6ffb221a 160static inline u8 acpi_ec_read_data(struct acpi_ec *ec)
703959d4 161{
3ebe08a7 162 u8 x = inb(ec->data_addr);
86dae015 163 pr_debug(PREFIX "---> data = 0x%2.2x\n", x);
7c6db4e0 164 return x;
7c6db5e5
DS
165}
166
6ffb221a 167static inline void acpi_ec_write_cmd(struct acpi_ec *ec, u8 command)
45bea155 168{
86dae015 169 pr_debug(PREFIX "<--- command = 0x%2.2x\n", command);
6ffb221a 170 outb(command, ec->command_addr);
45bea155
LY
171}
172
6ffb221a 173static inline void acpi_ec_write_data(struct acpi_ec *ec, u8 data)
45bea155 174{
86dae015 175 pr_debug(PREFIX "<--- data = 0x%2.2x\n", data);
6ffb221a 176 outb(data, ec->data_addr);
703959d4 177}
45bea155 178
7c6db4e0 179static int ec_transaction_done(struct acpi_ec *ec)
6ffb221a 180{
7c6db4e0
AS
181 unsigned long flags;
182 int ret = 0;
8463200a 183 spin_lock_irqsave(&ec->curr_lock, flags);
dd15f8c4 184 if (!ec->curr || ec->curr->done)
7c6db4e0 185 ret = 1;
8463200a 186 spin_unlock_irqrestore(&ec->curr_lock, flags);
7c6db4e0 187 return ret;
45bea155 188}
451566f4 189
a2f93aea
AS
190static void start_transaction(struct acpi_ec *ec)
191{
192 ec->curr->irq_count = ec->curr->wi = ec->curr->ri = 0;
193 ec->curr->done = false;
194 acpi_ec_write_cmd(ec, ec->curr->command);
195}
196
7c6db4e0 197static void gpe_transaction(struct acpi_ec *ec, u8 status)
7c6db5e5 198{
7c6db4e0 199 unsigned long flags;
8463200a
AS
200 spin_lock_irqsave(&ec->curr_lock, flags);
201 if (!ec->curr)
7c6db4e0 202 goto unlock;
a2f93aea
AS
203 if (ec->curr->wlen > ec->curr->wi) {
204 if ((status & ACPI_EC_FLAG_IBF) == 0)
205 acpi_ec_write_data(ec,
206 ec->curr->wdata[ec->curr->wi++]);
207 else
dd15f8c4 208 goto err;
a2f93aea 209 } else if (ec->curr->rlen > ec->curr->ri) {
7c6db4e0 210 if ((status & ACPI_EC_FLAG_OBF) == 1) {
a2f93aea
AS
211 ec->curr->rdata[ec->curr->ri++] = acpi_ec_read_data(ec);
212 if (ec->curr->rlen == ec->curr->ri)
dd15f8c4 213 ec->curr->done = true;
7c6db4e0 214 } else
dd15f8c4 215 goto err;
a2f93aea
AS
216 } else if (ec->curr->wlen == ec->curr->wi &&
217 (status & ACPI_EC_FLAG_IBF) == 0)
dd15f8c4
AS
218 ec->curr->done = true;
219 goto unlock;
220err:
221 /* false interrupt, state didn't change */
222 ++ec->curr->irq_count;
7c6db4e0 223unlock:
8463200a 224 spin_unlock_irqrestore(&ec->curr_lock, flags);
845625cd 225}
03d1d99c 226
7c6db4e0 227static int acpi_ec_wait(struct acpi_ec *ec)
845625cd 228{
7c6db4e0
AS
229 if (wait_event_timeout(ec->wait, ec_transaction_done(ec),
230 msecs_to_jiffies(ACPI_EC_DELAY)))
231 return 0;
a2f93aea
AS
232 /* try restart command if we get any false interrupts */
233 if (ec->curr->irq_count &&
234 (acpi_ec_read_status(ec) & ACPI_EC_FLAG_IBF) == 0) {
235 pr_debug(PREFIX "controller reset, restart transaction\n");
236 start_transaction(ec);
237 if (wait_event_timeout(ec->wait, ec_transaction_done(ec),
238 msecs_to_jiffies(ACPI_EC_DELAY)))
239 return 0;
240 }
7c6db4e0
AS
241 /* missing GPEs, switch back to poll mode */
242 if (printk_ratelimit())
243 pr_info(PREFIX "missing confirmations, "
244 "switch off interrupt mode.\n");
b77d81b2 245 set_bit(EC_FLAGS_NO_GPE, &ec->flags);
845625cd 246 clear_bit(EC_FLAGS_GPE_MODE, &ec->flags);
7c6db4e0 247 return 1;
845625cd
AS
248}
249
7c6db4e0
AS
250static void acpi_ec_gpe_query(void *ec_cxt);
251
252static int ec_check_sci(struct acpi_ec *ec, u8 state)
7c6db5e5 253{
7c6db4e0
AS
254 if (state & ACPI_EC_FLAG_SCI) {
255 if (!test_and_set_bit(EC_FLAGS_QUERY_PENDING, &ec->flags))
256 return acpi_os_execute(OSL_EC_BURST_HANDLER,
257 acpi_ec_gpe_query, ec);
258 }
259 return 0;
260}
261
262static int ec_poll(struct acpi_ec *ec)
263{
264 unsigned long delay = jiffies + msecs_to_jiffies(ACPI_EC_DELAY);
1cfe62c8 265 udelay(ACPI_EC_UDELAY);
7c6db4e0
AS
266 while (time_before(jiffies, delay)) {
267 gpe_transaction(ec, acpi_ec_read_status(ec));
1cfe62c8 268 udelay(ACPI_EC_UDELAY);
7c6db4e0 269 if (ec_transaction_done(ec))
9d699ed9 270 return 0;
af3fd140 271 }
b77d81b2 272 return -ETIME;
1da177e4
LT
273}
274
8463200a
AS
275static int acpi_ec_transaction_unlocked(struct acpi_ec *ec,
276 struct transaction *t,
00eb43a1 277 int force_poll)
45bea155 278{
7c6db4e0 279 unsigned long tmp;
7c6db4e0 280 int ret = 0;
3ebe08a7 281 pr_debug(PREFIX "transaction start\n");
7c6db4e0
AS
282 /* disable GPE during transaction if storm is detected */
283 if (test_bit(EC_FLAGS_GPE_STORM, &ec->flags)) {
284 clear_bit(EC_FLAGS_GPE_MODE, &ec->flags);
0b7084ac 285 acpi_disable_gpe(NULL, ec->gpe);
3576cf61 286 }
7c6db4e0 287 /* start transaction */
8463200a 288 spin_lock_irqsave(&ec->curr_lock, tmp);
7c6db4e0 289 /* following two actions should be kept atomic */
8463200a 290 ec->curr = t;
a2f93aea 291 start_transaction(ec);
8463200a 292 if (ec->curr->command == ACPI_EC_COMMAND_QUERY)
080e412c 293 clear_bit(EC_FLAGS_QUERY_PENDING, &ec->flags);
8463200a 294 spin_unlock_irqrestore(&ec->curr_lock, tmp);
7c6db4e0
AS
295 /* if we selected poll mode or failed in GPE-mode do a poll loop */
296 if (force_poll ||
297 !test_bit(EC_FLAGS_GPE_MODE, &ec->flags) ||
298 acpi_ec_wait(ec))
299 ret = ec_poll(ec);
3ebe08a7 300 pr_debug(PREFIX "transaction end\n");
8463200a
AS
301 spin_lock_irqsave(&ec->curr_lock, tmp);
302 ec->curr = NULL;
303 spin_unlock_irqrestore(&ec->curr_lock, tmp);
7c6db4e0
AS
304 if (test_bit(EC_FLAGS_GPE_STORM, &ec->flags)) {
305 /* check if we received SCI during transaction */
306 ec_check_sci(ec, acpi_ec_read_status(ec));
307 /* it is safe to enable GPE outside of transaction */
0b7084ac 308 acpi_enable_gpe(NULL, ec->gpe);
7c6db4e0 309 } else if (test_bit(EC_FLAGS_GPE_MODE, &ec->flags) &&
8463200a 310 t->irq_count > ACPI_EC_STORM_THRESHOLD) {
f8248434
AJ
311 pr_info(PREFIX "GPE storm detected, "
312 "transactions will use polling mode\n");
7c6db4e0
AS
313 set_bit(EC_FLAGS_GPE_STORM, &ec->flags);
314 }
315 return ret;
316}
317
318static int ec_check_ibf0(struct acpi_ec *ec)
319{
320 u8 status = acpi_ec_read_status(ec);
321 return (status & ACPI_EC_FLAG_IBF) == 0;
45bea155
LY
322}
323
c0ff1772
AS
324static int ec_wait_ibf0(struct acpi_ec *ec)
325{
326 unsigned long delay = jiffies + msecs_to_jiffies(ACPI_EC_DELAY);
327 /* interrupt wait manually if GPE mode is not active */
328 unsigned long timeout = test_bit(EC_FLAGS_GPE_MODE, &ec->flags) ?
329 msecs_to_jiffies(ACPI_EC_DELAY) : msecs_to_jiffies(1);
330 while (time_before(jiffies, delay))
331 if (wait_event_timeout(ec->wait, ec_check_ibf0(ec), timeout))
332 return 0;
333 return -ETIME;
45bea155
LY
334}
335
8463200a 336static int acpi_ec_transaction(struct acpi_ec *ec, struct transaction *t,
00eb43a1 337 int force_poll)
1da177e4 338{
d7a76e4c 339 int status;
50526df6 340 u32 glk;
8463200a 341 if (!ec || (!t) || (t->wlen && !t->wdata) || (t->rlen && !t->rdata))
d550d98d 342 return -EINVAL;
8463200a
AS
343 if (t->rdata)
344 memset(t->rdata, 0, t->rlen);
523953b4 345 mutex_lock(&ec->lock);
703959d4 346 if (ec->global_lock) {
1da177e4 347 status = acpi_acquire_global_lock(ACPI_EC_UDELAY_GLK, &glk);
c24e912b 348 if (ACPI_FAILURE(status)) {
7c6db4e0
AS
349 status = -ENODEV;
350 goto unlock;
c24e912b 351 }
1da177e4 352 }
c0ff1772 353 if (ec_wait_ibf0(ec)) {
3ebe08a7
MN
354 pr_err(PREFIX "input buffer is not empty, "
355 "aborting transaction\n");
7c6db4e0 356 status = -ETIME;
451566f4 357 goto end;
716e084e 358 }
8463200a 359 status = acpi_ec_transaction_unlocked(ec, t, force_poll);
7c6db4e0 360end:
703959d4 361 if (ec->global_lock)
1da177e4 362 acpi_release_global_lock(glk);
7c6db4e0 363unlock:
523953b4 364 mutex_unlock(&ec->lock);
d550d98d 365 return status;
1da177e4
LT
366}
367
c45aac43
AS
368/*
369 * Note: samsung nv5000 doesn't work with ec burst mode.
370 * http://bugzilla.kernel.org/show_bug.cgi?id=4980
371 */
372int acpi_ec_burst_enable(struct acpi_ec *ec)
373{
374 u8 d;
8463200a
AS
375 struct transaction t = {.command = ACPI_EC_BURST_ENABLE,
376 .wdata = NULL, .rdata = &d,
377 .wlen = 0, .rlen = 1};
378
379 return acpi_ec_transaction(ec, &t, 0);
c45aac43
AS
380}
381
382int acpi_ec_burst_disable(struct acpi_ec *ec)
383{
8463200a
AS
384 struct transaction t = {.command = ACPI_EC_BURST_DISABLE,
385 .wdata = NULL, .rdata = NULL,
386 .wlen = 0, .rlen = 0};
387
7c6db4e0 388 return (acpi_ec_read_status(ec) & ACPI_EC_FLAG_BURST) ?
8463200a 389 acpi_ec_transaction(ec, &t, 0) : 0;
c45aac43
AS
390}
391
6ccedb10 392static int acpi_ec_read(struct acpi_ec *ec, u8 address, u8 * data)
3576cf61
DS
393{
394 int result;
395 u8 d;
8463200a
AS
396 struct transaction t = {.command = ACPI_EC_COMMAND_READ,
397 .wdata = &address, .rdata = &d,
398 .wlen = 1, .rlen = 1};
3576cf61 399
8463200a 400 result = acpi_ec_transaction(ec, &t, 0);
3576cf61
DS
401 *data = d;
402 return result;
403}
6ffb221a 404
3576cf61
DS
405static int acpi_ec_write(struct acpi_ec *ec, u8 address, u8 data)
406{
6ccedb10 407 u8 wdata[2] = { address, data };
8463200a
AS
408 struct transaction t = {.command = ACPI_EC_COMMAND_WRITE,
409 .wdata = wdata, .rdata = NULL,
410 .wlen = 2, .rlen = 0};
411
412 return acpi_ec_transaction(ec, &t, 0);
3576cf61
DS
413}
414
1da177e4
LT
415/*
416 * Externally callable EC access functions. For now, assume 1 EC only
417 */
c45aac43
AS
418int ec_burst_enable(void)
419{
c45aac43
AS
420 if (!first_ec)
421 return -ENODEV;
d033879c 422 return acpi_ec_burst_enable(first_ec);
c45aac43
AS
423}
424
425EXPORT_SYMBOL(ec_burst_enable);
426
427int ec_burst_disable(void)
428{
c45aac43
AS
429 if (!first_ec)
430 return -ENODEV;
d033879c 431 return acpi_ec_burst_disable(first_ec);
c45aac43
AS
432}
433
434EXPORT_SYMBOL(ec_burst_disable);
435
6ccedb10 436int ec_read(u8 addr, u8 * val)
1da177e4 437{
1da177e4 438 int err;
6ffb221a 439 u8 temp_data;
1da177e4
LT
440
441 if (!first_ec)
442 return -ENODEV;
443
d033879c 444 err = acpi_ec_read(first_ec, addr, &temp_data);
1da177e4
LT
445
446 if (!err) {
447 *val = temp_data;
448 return 0;
50526df6 449 } else
1da177e4
LT
450 return err;
451}
50526df6 452
1da177e4
LT
453EXPORT_SYMBOL(ec_read);
454
50526df6 455int ec_write(u8 addr, u8 val)
1da177e4 456{
1da177e4
LT
457 int err;
458
459 if (!first_ec)
460 return -ENODEV;
461
d033879c 462 err = acpi_ec_write(first_ec, addr, val);
1da177e4
LT
463
464 return err;
465}
50526df6 466
1da177e4
LT
467EXPORT_SYMBOL(ec_write);
468
616362de 469int ec_transaction(u8 command,
9e197219 470 const u8 * wdata, unsigned wdata_len,
00eb43a1
LP
471 u8 * rdata, unsigned rdata_len,
472 int force_poll)
45bea155 473{
8463200a
AS
474 struct transaction t = {.command = command,
475 .wdata = wdata, .rdata = rdata,
476 .wlen = wdata_len, .rlen = rdata_len};
d7a76e4c
LP
477 if (!first_ec)
478 return -ENODEV;
45bea155 479
8463200a 480 return acpi_ec_transaction(first_ec, &t, force_poll);
45bea155 481}
1da177e4 482
ab9e43c6
LP
483EXPORT_SYMBOL(ec_transaction);
484
6ccedb10 485static int acpi_ec_query(struct acpi_ec *ec, u8 * data)
3576cf61
DS
486{
487 int result;
6ccedb10 488 u8 d;
8463200a
AS
489 struct transaction t = {.command = ACPI_EC_COMMAND_QUERY,
490 .wdata = NULL, .rdata = &d,
491 .wlen = 0, .rlen = 1};
6ccedb10
AS
492 if (!ec || !data)
493 return -EINVAL;
1da177e4 494
6ccedb10
AS
495 /*
496 * Query the EC to find out which _Qxx method we need to evaluate.
497 * Note that successful completion of the query causes the ACPI_EC_SCI
498 * bit to be cleared (and thus clearing the interrupt source).
499 */
716e084e 500
8463200a 501 result = acpi_ec_transaction(ec, &t, 0);
6ccedb10
AS
502 if (result)
503 return result;
1da177e4 504
6ccedb10
AS
505 if (!d)
506 return -ENODATA;
1da177e4 507
6ccedb10
AS
508 *data = d;
509 return 0;
1da177e4
LT
510}
511
1da177e4
LT
512/* --------------------------------------------------------------------------
513 Event Management
514 -------------------------------------------------------------------------- */
837012ed
AS
515int acpi_ec_add_query_handler(struct acpi_ec *ec, u8 query_bit,
516 acpi_handle handle, acpi_ec_query_func func,
517 void *data)
518{
519 struct acpi_ec_query_handler *handler =
520 kzalloc(sizeof(struct acpi_ec_query_handler), GFP_KERNEL);
521 if (!handler)
522 return -ENOMEM;
523
524 handler->query_bit = query_bit;
525 handler->handle = handle;
526 handler->func = func;
527 handler->data = data;
528 mutex_lock(&ec->lock);
30c08574 529 list_add(&handler->node, &ec->list);
837012ed
AS
530 mutex_unlock(&ec->lock);
531 return 0;
532}
533
534EXPORT_SYMBOL_GPL(acpi_ec_add_query_handler);
535
536void acpi_ec_remove_query_handler(struct acpi_ec *ec, u8 query_bit)
537{
1544fdbc 538 struct acpi_ec_query_handler *handler, *tmp;
837012ed 539 mutex_lock(&ec->lock);
1544fdbc 540 list_for_each_entry_safe(handler, tmp, &ec->list, node) {
837012ed
AS
541 if (query_bit == handler->query_bit) {
542 list_del(&handler->node);
543 kfree(handler);
837012ed
AS
544 }
545 }
546 mutex_unlock(&ec->lock);
547}
548
549EXPORT_SYMBOL_GPL(acpi_ec_remove_query_handler);
1da177e4 550
50526df6 551static void acpi_ec_gpe_query(void *ec_cxt)
45bea155 552{
3d02b90b 553 struct acpi_ec *ec = ec_cxt;
6ffb221a 554 u8 value = 0;
837012ed 555 struct acpi_ec_query_handler *handler, copy;
45bea155 556
5d0c288b 557 if (!ec || acpi_ec_query(ec, &value))
e41334c0 558 return;
837012ed
AS
559 mutex_lock(&ec->lock);
560 list_for_each_entry(handler, &ec->list, node) {
561 if (value == handler->query_bit) {
562 /* have custom handler for this bit */
563 memcpy(&copy, handler, sizeof(copy));
564 mutex_unlock(&ec->lock);
565 if (copy.func) {
566 copy.func(copy.data);
567 } else if (copy.handle) {
568 acpi_evaluate_object(copy.handle, NULL, NULL, NULL);
569 }
570 return;
571 }
572 }
573 mutex_unlock(&ec->lock);
45bea155 574}
1da177e4 575
50526df6 576static u32 acpi_ec_gpe_handler(void *data)
1da177e4 577{
3d02b90b 578 struct acpi_ec *ec = data;
7c6db4e0 579 u8 status;
00eb43a1 580
3ebe08a7 581 pr_debug(PREFIX "~~~> interrupt\n");
7c6db4e0
AS
582 status = acpi_ec_read_status(ec);
583
584 gpe_transaction(ec, status);
585 if (ec_transaction_done(ec) && (status & ACPI_EC_FLAG_IBF) == 0)
af3fd140 586 wake_up(&ec->wait);
451566f4 587
7c6db4e0
AS
588 ec_check_sci(ec, status);
589 if (!test_bit(EC_FLAGS_GPE_MODE, &ec->flags) &&
590 !test_bit(EC_FLAGS_NO_GPE, &ec->flags)) {
95b937e3 591 /* this is non-query, must be confirmation */
f8248434
AJ
592 if (!test_bit(EC_FLAGS_GPE_STORM, &ec->flags)) {
593 if (printk_ratelimit())
594 pr_info(PREFIX "non-query interrupt received,"
595 " switching to interrupt mode\n");
596 } else {
597 /* hush, STORM switches the mode every transaction */
598 pr_debug(PREFIX "non-query interrupt received,"
3ebe08a7 599 " switching to interrupt mode\n");
f8248434 600 }
7843932a 601 set_bit(EC_FLAGS_GPE_MODE, &ec->flags);
95b937e3 602 }
7c6db4e0 603 return ACPI_INTERRUPT_HANDLED;
845625cd
AS
604}
605
1da177e4
LT
606/* --------------------------------------------------------------------------
607 Address Space Management
608 -------------------------------------------------------------------------- */
609
1da177e4 610static acpi_status
5b7734b4
AS
611acpi_ec_space_handler(u32 function, acpi_physical_address address,
612 u32 bits, acpi_integer *value,
50526df6 613 void *handler_context, void *region_context)
1da177e4 614{
3d02b90b 615 struct acpi_ec *ec = handler_context;
3e71a87d 616 int result = 0, i;
5b7734b4 617 u8 temp = 0;
1da177e4 618
1da177e4 619 if ((address > 0xFF) || !value || !handler_context)
d550d98d 620 return AE_BAD_PARAMETER;
1da177e4 621
5b7734b4 622 if (function != ACPI_READ && function != ACPI_WRITE)
d550d98d 623 return AE_BAD_PARAMETER;
1da177e4 624
5b7734b4
AS
625 if (bits != 8 && acpi_strict)
626 return AE_BAD_PARAMETER;
1da177e4 627
b3b233c7
AS
628 acpi_ec_burst_enable(ec);
629
3e71a87d
AS
630 if (function == ACPI_READ) {
631 result = acpi_ec_read(ec, address, &temp);
632 *value = temp;
633 } else {
634 temp = 0xff & (*value);
635 result = acpi_ec_write(ec, address, temp);
636 }
637
638 for (i = 8; unlikely(bits - i > 0); i += 8) {
639 ++address;
5b7734b4
AS
640 if (function == ACPI_READ) {
641 result = acpi_ec_read(ec, address, &temp);
642 (*value) |= ((acpi_integer)temp) << i;
643 } else {
644 temp = 0xff & ((*value) >> i);
645 result = acpi_ec_write(ec, address, temp);
646 }
1da177e4
LT
647 }
648
b3b233c7
AS
649 acpi_ec_burst_disable(ec);
650
1da177e4
LT
651 switch (result) {
652 case -EINVAL:
d550d98d 653 return AE_BAD_PARAMETER;
1da177e4
LT
654 break;
655 case -ENODEV:
d550d98d 656 return AE_NOT_FOUND;
1da177e4
LT
657 break;
658 case -ETIME:
d550d98d 659 return AE_TIME;
1da177e4
LT
660 break;
661 default:
d550d98d 662 return AE_OK;
1da177e4 663 }
1da177e4
LT
664}
665
1da177e4
LT
666/* --------------------------------------------------------------------------
667 FS Interface (/proc)
668 -------------------------------------------------------------------------- */
669
50526df6 670static struct proc_dir_entry *acpi_ec_dir;
1da177e4 671
50526df6 672static int acpi_ec_read_info(struct seq_file *seq, void *offset)
1da177e4 673{
3d02b90b 674 struct acpi_ec *ec = seq->private;
1da177e4 675
1da177e4
LT
676 if (!ec)
677 goto end;
678
01f22462
AS
679 seq_printf(seq, "gpe:\t\t\t0x%02x\n", (u32) ec->gpe);
680 seq_printf(seq, "ports:\t\t\t0x%02x, 0x%02x\n",
681 (unsigned)ec->command_addr, (unsigned)ec->data_addr);
682 seq_printf(seq, "use global lock:\t%s\n",
703959d4 683 ec->global_lock ? "yes" : "no");
50526df6 684 end:
d550d98d 685 return 0;
1da177e4
LT
686}
687
688static int acpi_ec_info_open_fs(struct inode *inode, struct file *file)
689{
690 return single_open(file, acpi_ec_read_info, PDE(inode)->data);
691}
692
703959d4 693static struct file_operations acpi_ec_info_ops = {
50526df6
LB
694 .open = acpi_ec_info_open_fs,
695 .read = seq_read,
696 .llseek = seq_lseek,
697 .release = single_release,
1da177e4
LT
698 .owner = THIS_MODULE,
699};
700
50526df6 701static int acpi_ec_add_fs(struct acpi_device *device)
1da177e4 702{
50526df6 703 struct proc_dir_entry *entry = NULL;
1da177e4 704
1da177e4
LT
705 if (!acpi_device_dir(device)) {
706 acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device),
50526df6 707 acpi_ec_dir);
1da177e4 708 if (!acpi_device_dir(device))
d550d98d 709 return -ENODEV;
1da177e4
LT
710 }
711
cf7acfab
DL
712 entry = proc_create_data(ACPI_EC_FILE_INFO, S_IRUGO,
713 acpi_device_dir(device),
714 &acpi_ec_info_ops, acpi_driver_data(device));
1da177e4 715 if (!entry)
d550d98d 716 return -ENODEV;
d550d98d 717 return 0;
1da177e4
LT
718}
719
50526df6 720static int acpi_ec_remove_fs(struct acpi_device *device)
1da177e4 721{
1da177e4
LT
722
723 if (acpi_device_dir(device)) {
724 remove_proc_entry(ACPI_EC_FILE_INFO, acpi_device_dir(device));
725 remove_proc_entry(acpi_device_bid(device), acpi_ec_dir);
726 acpi_device_dir(device) = NULL;
727 }
728
d550d98d 729 return 0;
1da177e4
LT
730}
731
1da177e4
LT
732/* --------------------------------------------------------------------------
733 Driver Interface
734 -------------------------------------------------------------------------- */
c0900c35
AS
735static acpi_status
736ec_parse_io_ports(struct acpi_resource *resource, void *context);
737
c0900c35
AS
738static struct acpi_ec *make_acpi_ec(void)
739{
740 struct acpi_ec *ec = kzalloc(sizeof(struct acpi_ec), GFP_KERNEL);
741 if (!ec)
742 return NULL;
080e412c 743 ec->flags = 1 << EC_FLAGS_QUERY_PENDING;
c0900c35
AS
744 mutex_init(&ec->lock);
745 init_waitqueue_head(&ec->wait);
837012ed 746 INIT_LIST_HEAD(&ec->list);
8463200a 747 spin_lock_init(&ec->curr_lock);
c0900c35
AS
748 return ec;
749}
837012ed 750
c019b193
AS
751static acpi_status
752acpi_ec_register_query_methods(acpi_handle handle, u32 level,
753 void *context, void **return_value)
754{
755 struct acpi_namespace_node *node = handle;
756 struct acpi_ec *ec = context;
757 int value = 0;
758 if (sscanf(node->name.ascii, "_Q%x", &value) == 1) {
759 acpi_ec_add_query_handler(ec, value, handle, NULL, NULL);
760 }
761 return AE_OK;
762}
763
cd8c93a4
AS
764static acpi_status
765ec_parse_device(acpi_handle handle, u32 Level, void *context, void **retval)
837012ed 766{
cd8c93a4 767 acpi_status status;
27663c58 768 unsigned long long tmp;
cd8c93a4
AS
769
770 struct acpi_ec *ec = context;
771 status = acpi_walk_resources(handle, METHOD_NAME__CRS,
772 ec_parse_io_ports, ec);
773 if (ACPI_FAILURE(status))
774 return status;
837012ed
AS
775
776 /* Get GPE bit assignment (EC events). */
777 /* TODO: Add support for _GPE returning a package */
27663c58 778 status = acpi_evaluate_integer(handle, "_GPE", NULL, &tmp);
cd8c93a4
AS
779 if (ACPI_FAILURE(status))
780 return status;
27663c58 781 ec->gpe = tmp;
837012ed 782 /* Use the global lock for all EC transactions? */
27663c58
MW
783 acpi_evaluate_integer(handle, "_GLK", NULL, &tmp);
784 ec->global_lock = tmp;
837012ed 785 ec->handle = handle;
cd8c93a4 786 return AE_CTRL_TERMINATE;
837012ed
AS
787}
788
4c611060
AS
789static void ec_remove_handlers(struct acpi_ec *ec)
790{
791 if (ACPI_FAILURE(acpi_remove_address_space_handler(ec->handle,
792 ACPI_ADR_SPACE_EC, &acpi_ec_space_handler)))
3ebe08a7 793 pr_err(PREFIX "failed to remove space handler\n");
4c611060
AS
794 if (ACPI_FAILURE(acpi_remove_gpe_handler(NULL, ec->gpe,
795 &acpi_ec_gpe_handler)))
3ebe08a7 796 pr_err(PREFIX "failed to remove gpe handler\n");
7c6db4e0 797 clear_bit(EC_FLAGS_HANDLERS_INSTALLED, &ec->flags);
4c611060
AS
798}
799
703959d4 800static int acpi_ec_add(struct acpi_device *device)
1da177e4 801{
703959d4 802 struct acpi_ec *ec = NULL;
45bea155 803
45bea155 804 if (!device)
d550d98d 805 return -EINVAL;
c0900c35
AS
806 strcpy(acpi_device_name(device), ACPI_EC_DEVICE_NAME);
807 strcpy(acpi_device_class(device), ACPI_EC_CLASS);
808
4c611060 809 /* Check for boot EC */
ce52ddf5
AS
810 if (boot_ec &&
811 (boot_ec->handle == device->handle ||
812 boot_ec->handle == ACPI_ROOT_OBJECT)) {
813 ec = boot_ec;
814 boot_ec = NULL;
815 } else {
816 ec = make_acpi_ec();
817 if (!ec)
818 return -ENOMEM;
819 if (ec_parse_device(device->handle, 0, ec, NULL) !=
820 AE_CTRL_TERMINATE) {
821 kfree(ec);
822 return -EINVAL;
4c611060
AS
823 }
824 }
825
c0900c35 826 ec->handle = device->handle;
ce52ddf5
AS
827
828 /* Find and register all query methods */
829 acpi_walk_namespace(ACPI_TYPE_METHOD, ec->handle, 1,
830 acpi_ec_register_query_methods, ec, NULL);
831
4c611060
AS
832 if (!first_ec)
833 first_ec = ec;
db89b4f0 834 device->driver_data = ec;
c0900c35 835 acpi_ec_add_fs(device);
3ebe08a7 836 pr_info(PREFIX "GPE = 0x%lx, I/O: command/status = 0x%lx, data = 0x%lx\n",
4c611060 837 ec->gpe, ec->command_addr, ec->data_addr);
3ebe08a7 838 pr_info(PREFIX "driver started in %s mode\n",
95b937e3 839 (test_bit(EC_FLAGS_GPE_MODE, &ec->flags))?"interrupt":"poll");
c0900c35 840 return 0;
1da177e4
LT
841}
842
50526df6 843static int acpi_ec_remove(struct acpi_device *device, int type)
1da177e4 844{
01f22462 845 struct acpi_ec *ec;
07ddf768 846 struct acpi_ec_query_handler *handler, *tmp;
1da177e4 847
1da177e4 848 if (!device)
d550d98d 849 return -EINVAL;
1da177e4
LT
850
851 ec = acpi_driver_data(device);
837012ed 852 mutex_lock(&ec->lock);
07ddf768 853 list_for_each_entry_safe(handler, tmp, &ec->list, node) {
837012ed
AS
854 list_del(&handler->node);
855 kfree(handler);
856 }
857 mutex_unlock(&ec->lock);
1da177e4 858 acpi_ec_remove_fs(device);
db89b4f0 859 device->driver_data = NULL;
d033879c 860 if (ec == first_ec)
c0900c35 861 first_ec = NULL;
4c611060 862 kfree(ec);
d550d98d 863 return 0;
1da177e4
LT
864}
865
1da177e4 866static acpi_status
c0900c35 867ec_parse_io_ports(struct acpi_resource *resource, void *context)
1da177e4 868{
3d02b90b 869 struct acpi_ec *ec = context;
1da177e4 870
01f22462 871 if (resource->type != ACPI_RESOURCE_TYPE_IO)
1da177e4 872 return AE_OK;
1da177e4
LT
873
874 /*
875 * The first address region returned is the data port, and
876 * the second address region returned is the status/command
877 * port.
878 */
01f22462 879 if (ec->data_addr == 0)
6ffb221a 880 ec->data_addr = resource->data.io.minimum;
01f22462 881 else if (ec->command_addr == 0)
6ffb221a 882 ec->command_addr = resource->data.io.minimum;
01f22462 883 else
1da177e4 884 return AE_CTRL_TERMINATE;
1da177e4 885
1da177e4
LT
886 return AE_OK;
887}
888
e8284321
AS
889static int ec_install_handlers(struct acpi_ec *ec)
890{
c0900c35 891 acpi_status status;
7c6db4e0 892 if (test_bit(EC_FLAGS_HANDLERS_INSTALLED, &ec->flags))
4c611060 893 return 0;
c0900c35 894 status = acpi_install_gpe_handler(NULL, ec->gpe,
7c6db4e0
AS
895 ACPI_GPE_EDGE_TRIGGERED,
896 &acpi_ec_gpe_handler, ec);
e8284321
AS
897 if (ACPI_FAILURE(status))
898 return -ENODEV;
899 acpi_set_gpe_type(NULL, ec->gpe, ACPI_GPE_TYPE_RUNTIME);
0b7084ac 900 acpi_enable_gpe(NULL, ec->gpe);
e8284321
AS
901 status = acpi_install_address_space_handler(ec->handle,
902 ACPI_ADR_SPACE_EC,
903 &acpi_ec_space_handler,
6d9e1120 904 NULL, ec);
e8284321 905 if (ACPI_FAILURE(status)) {
20edd74f
ZY
906 if (status == AE_NOT_FOUND) {
907 /*
908 * Maybe OS fails in evaluating the _REG object.
909 * The AE_NOT_FOUND error will be ignored and OS
910 * continue to initialize EC.
911 */
912 printk(KERN_ERR "Fail in evaluating the _REG object"
913 " of EC device. Broken bios is suspected.\n");
914 } else {
915 acpi_remove_gpe_handler(NULL, ec->gpe,
916 &acpi_ec_gpe_handler);
917 return -ENODEV;
918 }
e8284321
AS
919 }
920
7c6db4e0 921 set_bit(EC_FLAGS_HANDLERS_INSTALLED, &ec->flags);
e8284321
AS
922 return 0;
923}
924
50526df6 925static int acpi_ec_start(struct acpi_device *device)
1da177e4 926{
c0900c35 927 struct acpi_ec *ec;
837012ed 928 int ret = 0;
1da177e4 929
1da177e4 930 if (!device)
d550d98d 931 return -EINVAL;
1da177e4
LT
932
933 ec = acpi_driver_data(device);
934
935 if (!ec)
d550d98d 936 return -EINVAL;
1da177e4 937
4c611060 938 ret = ec_install_handlers(ec);
837012ed
AS
939
940 /* EC is fully operational, allow queries */
080e412c 941 clear_bit(EC_FLAGS_QUERY_PENDING, &ec->flags);
837012ed 942 return ret;
1da177e4
LT
943}
944
50526df6 945static int acpi_ec_stop(struct acpi_device *device, int type)
1da177e4 946{
c0900c35 947 struct acpi_ec *ec;
1da177e4 948 if (!device)
d550d98d 949 return -EINVAL;
1da177e4 950 ec = acpi_driver_data(device);
c0900c35
AS
951 if (!ec)
952 return -EINVAL;
4c611060 953 ec_remove_handlers(ec);
f9319f90 954
d550d98d 955 return 0;
1da177e4
LT
956}
957
c04209a7
AS
958int __init acpi_boot_ec_enable(void)
959{
7c6db4e0 960 if (!boot_ec || test_bit(EC_FLAGS_HANDLERS_INSTALLED, &boot_ec->flags))
c04209a7
AS
961 return 0;
962 if (!ec_install_handlers(boot_ec)) {
963 first_ec = boot_ec;
964 return 0;
965 }
966 return -EFAULT;
967}
968
223883b7
AS
969static const struct acpi_device_id ec_device_ids[] = {
970 {"PNP0C09", 0},
971 {"", 0},
972};
973
c0900c35
AS
974int __init acpi_ec_ecdt_probe(void)
975{
976 int ret;
977 acpi_status status;
50526df6 978 struct acpi_table_ecdt *ecdt_ptr;
45bea155 979
d66d969d
AS
980 boot_ec = make_acpi_ec();
981 if (!boot_ec)
c0900c35
AS
982 return -ENOMEM;
983 /*
984 * Generate a boot ec context
985 */
15a58ed1
AS
986 status = acpi_get_table(ACPI_SIG_ECDT, 1,
987 (struct acpi_table_header **)&ecdt_ptr);
cd8c93a4 988 if (ACPI_SUCCESS(status)) {
3ebe08a7 989 pr_info(PREFIX "EC description table is found, configuring boot EC\n");
cd8c93a4
AS
990 boot_ec->command_addr = ecdt_ptr->control.address;
991 boot_ec->data_addr = ecdt_ptr->data.address;
2500822b
ZY
992 if (dmi_check_system(ec_dmi_table)) {
993 /*
994 * If the board falls into ec_dmi_table, it means
995 * that ECDT table gives the incorrect command/status
996 * & data I/O address. Just fix it.
997 */
998 boot_ec->data_addr = ecdt_ptr->control.address;
999 boot_ec->command_addr = ecdt_ptr->data.address;
1000 }
cd8c93a4 1001 boot_ec->gpe = ecdt_ptr->gpe;
4af8e10a 1002 boot_ec->handle = ACPI_ROOT_OBJECT;
ce52ddf5 1003 acpi_get_handle(ACPI_ROOT_OBJECT, ecdt_ptr->id, &boot_ec->handle);
cd8c93a4 1004 } else {
5870a8cd
AS
1005 /* This workaround is needed only on some broken machines,
1006 * which require early EC, but fail to provide ECDT */
1007 acpi_handle x;
cd8c93a4
AS
1008 printk(KERN_DEBUG PREFIX "Look up EC in DSDT\n");
1009 status = acpi_get_devices(ec_device_ids[0].id, ec_parse_device,
1010 boot_ec, NULL);
2d8348b4
AS
1011 /* Check that acpi_get_devices actually find something */
1012 if (ACPI_FAILURE(status) || !boot_ec->handle)
cd8c93a4 1013 goto error;
5870a8cd
AS
1014 /* We really need to limit this workaround, the only ASUS,
1015 * which needs it, has fake EC._INI method, so use it as flag.
c04209a7 1016 * Keep boot_ec struct as it will be needed soon.
5870a8cd
AS
1017 */
1018 if (ACPI_FAILURE(acpi_get_handle(boot_ec->handle, "_INI", &x)))
c04209a7 1019 return -ENODEV;
cd8c93a4 1020 }
1da177e4 1021
d66d969d 1022 ret = ec_install_handlers(boot_ec);
d033879c
AS
1023 if (!ret) {
1024 first_ec = boot_ec;
e8284321 1025 return 0;
d033879c 1026 }
c0900c35 1027 error:
d66d969d
AS
1028 kfree(boot_ec);
1029 boot_ec = NULL;
1da177e4
LT
1030 return -ENODEV;
1031}
1032
223883b7
AS
1033static int acpi_ec_suspend(struct acpi_device *device, pm_message_t state)
1034{
1035 struct acpi_ec *ec = acpi_driver_data(device);
1036 /* Stop using GPE */
1037 set_bit(EC_FLAGS_NO_GPE, &ec->flags);
1038 clear_bit(EC_FLAGS_GPE_MODE, &ec->flags);
0b7084ac 1039 acpi_disable_gpe(NULL, ec->gpe);
223883b7
AS
1040 return 0;
1041}
1042
1043static int acpi_ec_resume(struct acpi_device *device)
1044{
1045 struct acpi_ec *ec = acpi_driver_data(device);
1046 /* Enable use of GPE back */
1047 clear_bit(EC_FLAGS_NO_GPE, &ec->flags);
0b7084ac 1048 acpi_enable_gpe(NULL, ec->gpe);
223883b7
AS
1049 return 0;
1050}
1051
1052static struct acpi_driver acpi_ec_driver = {
1053 .name = "ec",
1054 .class = ACPI_EC_CLASS,
1055 .ids = ec_device_ids,
1056 .ops = {
1057 .add = acpi_ec_add,
1058 .remove = acpi_ec_remove,
1059 .start = acpi_ec_start,
1060 .stop = acpi_ec_stop,
1061 .suspend = acpi_ec_suspend,
1062 .resume = acpi_ec_resume,
1063 },
1064};
1065
50526df6 1066static int __init acpi_ec_init(void)
1da177e4 1067{
50526df6 1068 int result = 0;
1da177e4 1069
1da177e4 1070 if (acpi_disabled)
d550d98d 1071 return 0;
1da177e4
LT
1072
1073 acpi_ec_dir = proc_mkdir(ACPI_EC_CLASS, acpi_root_dir);
1074 if (!acpi_ec_dir)
d550d98d 1075 return -ENODEV;
1da177e4
LT
1076
1077 /* Now register the driver for the EC */
1078 result = acpi_bus_register_driver(&acpi_ec_driver);
1079 if (result < 0) {
1080 remove_proc_entry(ACPI_EC_CLASS, acpi_root_dir);
d550d98d 1081 return -ENODEV;
1da177e4
LT
1082 }
1083
d550d98d 1084 return result;
1da177e4
LT
1085}
1086
1087subsys_initcall(acpi_ec_init);
1088
1089/* EC driver currently not unloadable */
1090#if 0
50526df6 1091static void __exit acpi_ec_exit(void)
1da177e4 1092{
1da177e4
LT
1093
1094 acpi_bus_unregister_driver(&acpi_ec_driver);
1095
1096 remove_proc_entry(ACPI_EC_CLASS, acpi_root_dir);
1097
d550d98d 1098 return;
1da177e4 1099}
7843932a 1100#endif /* 0 */