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