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