ACPI: autoload modules - Create __mod_acpi_device_table symbol for all ACPI drivers
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / acpi / ec.c
CommitLineData
1da177e4 1/*
01f22462 2 * ec.c - ACPI Embedded Controller Driver (v2.0)
1da177e4 3 *
01f22462
AS
4 * Copyright (C) 2006, 2007 Alexey Starikovskiy <alexey.y.starikovskiy@intel.com>
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
29#include <linux/kernel.h>
30#include <linux/module.h>
31#include <linux/init.h>
32#include <linux/types.h>
33#include <linux/delay.h>
34#include <linux/proc_fs.h>
35#include <linux/seq_file.h>
451566f4 36#include <linux/interrupt.h>
837012ed 37#include <linux/list.h>
1da177e4
LT
38#include <asm/io.h>
39#include <acpi/acpi_bus.h>
40#include <acpi/acpi_drivers.h>
41#include <acpi/actypes.h>
42
1da177e4 43#define ACPI_EC_CLASS "embedded_controller"
1da177e4
LT
44#define ACPI_EC_DEVICE_NAME "Embedded Controller"
45#define ACPI_EC_FILE_INFO "info"
837012ed 46
af3fd140
AS
47#undef PREFIX
48#define PREFIX "ACPI: EC: "
4350933a 49
703959d4 50/* EC status register */
1da177e4
LT
51#define ACPI_EC_FLAG_OBF 0x01 /* Output buffer full */
52#define ACPI_EC_FLAG_IBF 0x02 /* Input buffer full */
451566f4 53#define ACPI_EC_FLAG_BURST 0x10 /* burst mode */
1da177e4 54#define ACPI_EC_FLAG_SCI 0x20 /* EC-SCI occurred */
4350933a 55
703959d4 56/* EC commands */
3261ff4d 57enum ec_command {
6ccedb10
AS
58 ACPI_EC_COMMAND_READ = 0x80,
59 ACPI_EC_COMMAND_WRITE = 0x81,
60 ACPI_EC_BURST_ENABLE = 0x82,
61 ACPI_EC_BURST_DISABLE = 0x83,
62 ACPI_EC_COMMAND_QUERY = 0x84,
3261ff4d 63};
837012ed 64
703959d4 65/* EC events */
3261ff4d 66enum ec_event {
703959d4 67 ACPI_EC_EVENT_OBF_1 = 1, /* Output buffer full */
6ccedb10 68 ACPI_EC_EVENT_IBF_0, /* Input buffer empty */
703959d4
DS
69};
70
5c406412 71#define ACPI_EC_DELAY 500 /* Wait 500ms max. during EC ops */
703959d4 72#define ACPI_EC_UDELAY_GLK 1000 /* Wait 1ms max. to get global lock */
703959d4 73
3261ff4d 74static enum ec_mode {
6ccedb10
AS
75 EC_INTR = 1, /* Output buffer full */
76 EC_POLL, /* Input buffer empty */
3261ff4d 77} acpi_ec_mode = EC_INTR;
703959d4 78
50526df6
LB
79static int acpi_ec_remove(struct acpi_device *device, int type);
80static int acpi_ec_start(struct acpi_device *device);
81static int acpi_ec_stop(struct acpi_device *device, int type);
703959d4 82static int acpi_ec_add(struct acpi_device *device);
1da177e4 83
1ba90e3a
TR
84static const struct acpi_device_id ec_device_ids[] = {
85 {"PNP0C09", 0},
86 {"", 0},
87};
88
1da177e4 89static struct acpi_driver acpi_ec_driver = {
c2b6705b 90 .name = "ec",
50526df6 91 .class = ACPI_EC_CLASS,
1ba90e3a 92 .ids = ec_device_ids,
50526df6 93 .ops = {
703959d4 94 .add = acpi_ec_add,
50526df6
LB
95 .remove = acpi_ec_remove,
96 .start = acpi_ec_start,
97 .stop = acpi_ec_stop,
98 },
1da177e4 99};
6ffb221a
DS
100
101/* If we find an EC via the ECDT, we need to keep a ptr to its context */
d033879c 102/* External interfaces use first EC only, so remember */
837012ed
AS
103typedef int (*acpi_ec_query_func) (void *data);
104
105struct acpi_ec_query_handler {
106 struct list_head node;
107 acpi_ec_query_func func;
108 acpi_handle handle;
109 void *data;
110 u8 query_bit;
111};
112
a854e08a 113static struct acpi_ec {
703959d4 114 acpi_handle handle;
a86e2772 115 unsigned long gpe;
6ffb221a
DS
116 unsigned long command_addr;
117 unsigned long data_addr;
703959d4 118 unsigned long global_lock;
c787a855 119 struct mutex lock;
5d0c288b 120 atomic_t query_pending;
9e197219 121 atomic_t event_count;
703959d4 122 wait_queue_head_t wait;
837012ed 123 struct list_head list;
d033879c 124} *boot_ec, *first_ec;
703959d4 125
1da177e4
LT
126/* --------------------------------------------------------------------------
127 Transaction Management
128 -------------------------------------------------------------------------- */
129
6ffb221a 130static inline u8 acpi_ec_read_status(struct acpi_ec *ec)
1da177e4 131{
6ffb221a 132 return inb(ec->command_addr);
451566f4
DT
133}
134
6ffb221a 135static inline u8 acpi_ec_read_data(struct acpi_ec *ec)
703959d4 136{
6ffb221a 137 return inb(ec->data_addr);
7c6db5e5
DS
138}
139
6ffb221a 140static inline void acpi_ec_write_cmd(struct acpi_ec *ec, u8 command)
45bea155 141{
6ffb221a 142 outb(command, ec->command_addr);
45bea155
LY
143}
144
6ffb221a 145static inline void acpi_ec_write_data(struct acpi_ec *ec, u8 data)
45bea155 146{
6ffb221a 147 outb(data, ec->data_addr);
703959d4 148}
45bea155 149
9e197219
AS
150static inline int acpi_ec_check_status(struct acpi_ec *ec, enum ec_event event,
151 unsigned old_count)
6ffb221a 152{
bec5a1e0 153 u8 status = acpi_ec_read_status(ec);
9e197219
AS
154 if (old_count == atomic_read(&ec->event_count))
155 return 0;
78d0af33 156 if (event == ACPI_EC_EVENT_OBF_1) {
703959d4
DS
157 if (status & ACPI_EC_FLAG_OBF)
158 return 1;
78d0af33 159 } else if (event == ACPI_EC_EVENT_IBF_0) {
703959d4
DS
160 if (!(status & ACPI_EC_FLAG_IBF))
161 return 1;
45bea155
LY
162 }
163
703959d4 164 return 0;
45bea155 165}
451566f4 166
00eb43a1
LP
167static int acpi_ec_wait(struct acpi_ec *ec, enum ec_event event,
168 unsigned count, int force_poll)
7c6db5e5 169{
00eb43a1 170 if (unlikely(force_poll) || acpi_ec_mode == EC_POLL) {
50c1e113
AS
171 unsigned long delay = jiffies + msecs_to_jiffies(ACPI_EC_DELAY);
172 while (time_before(jiffies, delay)) {
9e197219 173 if (acpi_ec_check_status(ec, event, 0))
7c6db5e5
DS
174 return 0;
175 }
af3fd140
AS
176 } else {
177 if (wait_event_timeout(ec->wait,
9e197219 178 acpi_ec_check_status(ec, event, count),
af3fd140 179 msecs_to_jiffies(ACPI_EC_DELAY)) ||
9e197219 180 acpi_ec_check_status(ec, event, 0)) {
703959d4 181 return 0;
af3fd140
AS
182 } else {
183 printk(KERN_ERR PREFIX "acpi_ec_wait timeout,"
184 " status = %d, expect_event = %d\n",
6ccedb10 185 acpi_ec_read_status(ec), event);
703959d4 186 }
af3fd140 187 }
1da177e4 188
d550d98d 189 return -ETIME;
1da177e4
LT
190}
191
703959d4 192static int acpi_ec_transaction_unlocked(struct acpi_ec *ec, u8 command,
6ccedb10 193 const u8 * wdata, unsigned wdata_len,
00eb43a1
LP
194 u8 * rdata, unsigned rdata_len,
195 int force_poll)
45bea155 196{
af3fd140 197 int result = 0;
9e197219 198 unsigned count = atomic_read(&ec->event_count);
703959d4 199 acpi_ec_write_cmd(ec, command);
45bea155 200
78d0af33 201 for (; wdata_len > 0; --wdata_len) {
00eb43a1 202 result = acpi_ec_wait(ec, ACPI_EC_EVENT_IBF_0, count, force_poll);
af3fd140 203 if (result) {
6ccedb10
AS
204 printk(KERN_ERR PREFIX
205 "write_cmd timeout, command = %d\n", command);
af3fd140
AS
206 goto end;
207 }
9e197219 208 count = atomic_read(&ec->event_count);
703959d4 209 acpi_ec_write_data(ec, *(wdata++));
3576cf61 210 }
45bea155 211
d91df1aa 212 if (!rdata_len) {
00eb43a1 213 result = acpi_ec_wait(ec, ACPI_EC_EVENT_IBF_0, count, force_poll);
af3fd140 214 if (result) {
6ccedb10
AS
215 printk(KERN_ERR PREFIX
216 "finish-write timeout, command = %d\n", command);
af3fd140
AS
217 goto end;
218 }
5d0c288b
AS
219 } else if (command == ACPI_EC_COMMAND_QUERY) {
220 atomic_set(&ec->query_pending, 0);
7c6db5e5 221 }
45bea155 222
78d0af33 223 for (; rdata_len > 0; --rdata_len) {
00eb43a1 224 result = acpi_ec_wait(ec, ACPI_EC_EVENT_OBF_1, count, force_poll);
af3fd140
AS
225 if (result) {
226 printk(KERN_ERR PREFIX "read timeout, command = %d\n",
6ccedb10 227 command);
af3fd140
AS
228 goto end;
229 }
9e197219 230 count = atomic_read(&ec->event_count);
6ffb221a 231 *(rdata++) = acpi_ec_read_data(ec);
7c6db5e5 232 }
af3fd140
AS
233 end:
234 return result;
45bea155
LY
235}
236
3576cf61 237static int acpi_ec_transaction(struct acpi_ec *ec, u8 command,
6ccedb10 238 const u8 * wdata, unsigned wdata_len,
00eb43a1
LP
239 u8 * rdata, unsigned rdata_len,
240 int force_poll)
1da177e4 241{
d7a76e4c 242 int status;
50526df6 243 u32 glk;
1da177e4 244
d7a76e4c 245 if (!ec || (wdata_len && !wdata) || (rdata_len && !rdata))
d550d98d 246 return -EINVAL;
1da177e4 247
6ccedb10
AS
248 if (rdata)
249 memset(rdata, 0, rdata_len);
1da177e4 250
523953b4 251 mutex_lock(&ec->lock);
703959d4 252 if (ec->global_lock) {
1da177e4 253 status = acpi_acquire_global_lock(ACPI_EC_UDELAY_GLK, &glk);
c24e912b
AS
254 if (ACPI_FAILURE(status)) {
255 mutex_unlock(&ec->lock);
d550d98d 256 return -ENODEV;
c24e912b 257 }
1da177e4 258 }
451566f4 259
5d57a6a5 260 /* Make sure GPE is enabled before doing transaction */
a86e2772 261 acpi_enable_gpe(NULL, ec->gpe, ACPI_NOT_ISR);
5d57a6a5 262
00eb43a1 263 status = acpi_ec_wait(ec, ACPI_EC_EVENT_IBF_0, 0, 0);
716e084e 264 if (status) {
4350933a 265 printk(KERN_ERR PREFIX
6ccedb10 266 "input buffer is not empty, aborting transaction\n");
451566f4 267 goto end;
716e084e 268 }
1da177e4 269
6ccedb10
AS
270 status = acpi_ec_transaction_unlocked(ec, command,
271 wdata, wdata_len,
00eb43a1
LP
272 rdata, rdata_len,
273 force_poll);
1da177e4 274
6ccedb10 275 end:
1da177e4 276
703959d4 277 if (ec->global_lock)
1da177e4 278 acpi_release_global_lock(glk);
523953b4 279 mutex_unlock(&ec->lock);
1da177e4 280
d550d98d 281 return status;
1da177e4
LT
282}
283
c45aac43
AS
284/*
285 * Note: samsung nv5000 doesn't work with ec burst mode.
286 * http://bugzilla.kernel.org/show_bug.cgi?id=4980
287 */
288int acpi_ec_burst_enable(struct acpi_ec *ec)
289{
290 u8 d;
00eb43a1 291 return acpi_ec_transaction(ec, ACPI_EC_BURST_ENABLE, NULL, 0, &d, 1, 0);
c45aac43
AS
292}
293
294int acpi_ec_burst_disable(struct acpi_ec *ec)
295{
00eb43a1 296 return acpi_ec_transaction(ec, ACPI_EC_BURST_DISABLE, NULL, 0, NULL, 0, 0);
c45aac43
AS
297}
298
6ccedb10 299static int acpi_ec_read(struct acpi_ec *ec, u8 address, u8 * data)
3576cf61
DS
300{
301 int result;
302 u8 d;
303
304 result = acpi_ec_transaction(ec, ACPI_EC_COMMAND_READ,
00eb43a1 305 &address, 1, &d, 1, 0);
3576cf61
DS
306 *data = d;
307 return result;
308}
6ffb221a 309
3576cf61
DS
310static int acpi_ec_write(struct acpi_ec *ec, u8 address, u8 data)
311{
6ccedb10
AS
312 u8 wdata[2] = { address, data };
313 return acpi_ec_transaction(ec, ACPI_EC_COMMAND_WRITE,
00eb43a1 314 wdata, 2, NULL, 0, 0);
3576cf61
DS
315}
316
1da177e4
LT
317/*
318 * Externally callable EC access functions. For now, assume 1 EC only
319 */
c45aac43
AS
320int ec_burst_enable(void)
321{
c45aac43
AS
322 if (!first_ec)
323 return -ENODEV;
d033879c 324 return acpi_ec_burst_enable(first_ec);
c45aac43
AS
325}
326
327EXPORT_SYMBOL(ec_burst_enable);
328
329int ec_burst_disable(void)
330{
c45aac43
AS
331 if (!first_ec)
332 return -ENODEV;
d033879c 333 return acpi_ec_burst_disable(first_ec);
c45aac43
AS
334}
335
336EXPORT_SYMBOL(ec_burst_disable);
337
6ccedb10 338int ec_read(u8 addr, u8 * val)
1da177e4 339{
1da177e4 340 int err;
6ffb221a 341 u8 temp_data;
1da177e4
LT
342
343 if (!first_ec)
344 return -ENODEV;
345
d033879c 346 err = acpi_ec_read(first_ec, addr, &temp_data);
1da177e4
LT
347
348 if (!err) {
349 *val = temp_data;
350 return 0;
50526df6 351 } else
1da177e4
LT
352 return err;
353}
50526df6 354
1da177e4
LT
355EXPORT_SYMBOL(ec_read);
356
50526df6 357int ec_write(u8 addr, u8 val)
1da177e4 358{
1da177e4
LT
359 int err;
360
361 if (!first_ec)
362 return -ENODEV;
363
d033879c 364 err = acpi_ec_write(first_ec, addr, val);
1da177e4
LT
365
366 return err;
367}
50526df6 368
1da177e4
LT
369EXPORT_SYMBOL(ec_write);
370
616362de 371int ec_transaction(u8 command,
9e197219 372 const u8 * wdata, unsigned wdata_len,
00eb43a1
LP
373 u8 * rdata, unsigned rdata_len,
374 int force_poll)
45bea155 375{
d7a76e4c
LP
376 if (!first_ec)
377 return -ENODEV;
45bea155 378
d033879c 379 return acpi_ec_transaction(first_ec, command, wdata,
00eb43a1
LP
380 wdata_len, rdata, rdata_len,
381 force_poll);
45bea155 382}
1da177e4 383
ab9e43c6
LP
384EXPORT_SYMBOL(ec_transaction);
385
6ccedb10 386static int acpi_ec_query(struct acpi_ec *ec, u8 * data)
3576cf61
DS
387{
388 int result;
6ccedb10 389 u8 d;
1da177e4 390
6ccedb10
AS
391 if (!ec || !data)
392 return -EINVAL;
1da177e4 393
6ccedb10
AS
394 /*
395 * Query the EC to find out which _Qxx method we need to evaluate.
396 * Note that successful completion of the query causes the ACPI_EC_SCI
397 * bit to be cleared (and thus clearing the interrupt source).
398 */
716e084e 399
00eb43a1 400 result = acpi_ec_transaction(ec, ACPI_EC_COMMAND_QUERY, NULL, 0, &d, 1, 0);
6ccedb10
AS
401 if (result)
402 return result;
1da177e4 403
6ccedb10
AS
404 if (!d)
405 return -ENODATA;
1da177e4 406
6ccedb10
AS
407 *data = d;
408 return 0;
1da177e4
LT
409}
410
1da177e4
LT
411/* --------------------------------------------------------------------------
412 Event Management
413 -------------------------------------------------------------------------- */
837012ed
AS
414int acpi_ec_add_query_handler(struct acpi_ec *ec, u8 query_bit,
415 acpi_handle handle, acpi_ec_query_func func,
416 void *data)
417{
418 struct acpi_ec_query_handler *handler =
419 kzalloc(sizeof(struct acpi_ec_query_handler), GFP_KERNEL);
420 if (!handler)
421 return -ENOMEM;
422
423 handler->query_bit = query_bit;
424 handler->handle = handle;
425 handler->func = func;
426 handler->data = data;
427 mutex_lock(&ec->lock);
428 list_add_tail(&handler->node, &ec->list);
429 mutex_unlock(&ec->lock);
430 return 0;
431}
432
433EXPORT_SYMBOL_GPL(acpi_ec_add_query_handler);
434
435void acpi_ec_remove_query_handler(struct acpi_ec *ec, u8 query_bit)
436{
437 struct acpi_ec_query_handler *handler;
438 mutex_lock(&ec->lock);
439 list_for_each_entry(handler, &ec->list, node) {
440 if (query_bit == handler->query_bit) {
441 list_del(&handler->node);
442 kfree(handler);
443 break;
444 }
445 }
446 mutex_unlock(&ec->lock);
447}
448
449EXPORT_SYMBOL_GPL(acpi_ec_remove_query_handler);
1da177e4 450
50526df6 451static void acpi_ec_gpe_query(void *ec_cxt)
45bea155 452{
3d02b90b 453 struct acpi_ec *ec = ec_cxt;
6ffb221a 454 u8 value = 0;
837012ed 455 struct acpi_ec_query_handler *handler, copy;
45bea155 456
5d0c288b 457 if (!ec || acpi_ec_query(ec, &value))
e41334c0 458 return;
837012ed
AS
459 mutex_lock(&ec->lock);
460 list_for_each_entry(handler, &ec->list, node) {
461 if (value == handler->query_bit) {
462 /* have custom handler for this bit */
463 memcpy(&copy, handler, sizeof(copy));
464 mutex_unlock(&ec->lock);
465 if (copy.func) {
466 copy.func(copy.data);
467 } else if (copy.handle) {
468 acpi_evaluate_object(copy.handle, NULL, NULL, NULL);
469 }
470 return;
471 }
472 }
473 mutex_unlock(&ec->lock);
474 printk(KERN_ERR PREFIX "Handler for query 0x%x is not found!\n", value);
45bea155 475}
1da177e4 476
50526df6 477static u32 acpi_ec_gpe_handler(void *data)
1da177e4 478{
50526df6 479 acpi_status status = AE_OK;
6ffb221a 480 u8 value;
3d02b90b 481 struct acpi_ec *ec = data;
00eb43a1 482
9e197219 483 atomic_inc(&ec->event_count);
3d02b90b 484
8e0341ba 485 if (acpi_ec_mode == EC_INTR) {
af3fd140 486 wake_up(&ec->wait);
451566f4
DT
487 }
488
bec5a1e0 489 value = acpi_ec_read_status(ec);
5d0c288b
AS
490 if ((value & ACPI_EC_FLAG_SCI) && !atomic_read(&ec->query_pending)) {
491 atomic_set(&ec->query_pending, 1);
6ccedb10 492 status =
837012ed 493 acpi_os_execute(OSL_EC_BURST_HANDLER, acpi_ec_gpe_query, ec);
50526df6 494 }
e41334c0 495
451566f4 496 return status == AE_OK ?
50526df6 497 ACPI_INTERRUPT_HANDLED : ACPI_INTERRUPT_NOT_HANDLED;
1da177e4
LT
498}
499
500/* --------------------------------------------------------------------------
501 Address Space Management
502 -------------------------------------------------------------------------- */
503
504static acpi_status
50526df6
LB
505acpi_ec_space_setup(acpi_handle region_handle,
506 u32 function, void *handler_context, void **return_context)
1da177e4
LT
507{
508 /*
509 * The EC object is in the handler context and is needed
510 * when calling the acpi_ec_space_handler.
511 */
50526df6
LB
512 *return_context = (function != ACPI_REGION_DEACTIVATE) ?
513 handler_context : NULL;
1da177e4
LT
514
515 return AE_OK;
516}
517
1da177e4 518static acpi_status
5b7734b4
AS
519acpi_ec_space_handler(u32 function, acpi_physical_address address,
520 u32 bits, acpi_integer *value,
50526df6 521 void *handler_context, void *region_context)
1da177e4 522{
3d02b90b 523 struct acpi_ec *ec = handler_context;
5b7734b4
AS
524 int result = 0, i = 0;
525 u8 temp = 0;
1da177e4 526
1da177e4 527 if ((address > 0xFF) || !value || !handler_context)
d550d98d 528 return AE_BAD_PARAMETER;
1da177e4 529
5b7734b4 530 if (function != ACPI_READ && function != ACPI_WRITE)
d550d98d 531 return AE_BAD_PARAMETER;
1da177e4 532
5b7734b4
AS
533 if (bits != 8 && acpi_strict)
534 return AE_BAD_PARAMETER;
1da177e4 535
5b7734b4
AS
536 while (bits - i > 0) {
537 if (function == ACPI_READ) {
538 result = acpi_ec_read(ec, address, &temp);
539 (*value) |= ((acpi_integer)temp) << i;
540 } else {
541 temp = 0xff & ((*value) >> i);
542 result = acpi_ec_write(ec, address, temp);
543 }
544 i += 8;
545 ++address;
1da177e4
LT
546 }
547
1da177e4
LT
548 switch (result) {
549 case -EINVAL:
d550d98d 550 return AE_BAD_PARAMETER;
1da177e4
LT
551 break;
552 case -ENODEV:
d550d98d 553 return AE_NOT_FOUND;
1da177e4
LT
554 break;
555 case -ETIME:
d550d98d 556 return AE_TIME;
1da177e4
LT
557 break;
558 default:
d550d98d 559 return AE_OK;
1da177e4 560 }
1da177e4
LT
561}
562
1da177e4
LT
563/* --------------------------------------------------------------------------
564 FS Interface (/proc)
565 -------------------------------------------------------------------------- */
566
50526df6 567static struct proc_dir_entry *acpi_ec_dir;
1da177e4 568
50526df6 569static int acpi_ec_read_info(struct seq_file *seq, void *offset)
1da177e4 570{
3d02b90b 571 struct acpi_ec *ec = seq->private;
1da177e4 572
1da177e4
LT
573 if (!ec)
574 goto end;
575
01f22462
AS
576 seq_printf(seq, "gpe:\t\t\t0x%02x\n", (u32) ec->gpe);
577 seq_printf(seq, "ports:\t\t\t0x%02x, 0x%02x\n",
578 (unsigned)ec->command_addr, (unsigned)ec->data_addr);
579 seq_printf(seq, "use global lock:\t%s\n",
703959d4 580 ec->global_lock ? "yes" : "no");
50526df6 581 end:
d550d98d 582 return 0;
1da177e4
LT
583}
584
585static int acpi_ec_info_open_fs(struct inode *inode, struct file *file)
586{
587 return single_open(file, acpi_ec_read_info, PDE(inode)->data);
588}
589
703959d4 590static struct file_operations acpi_ec_info_ops = {
50526df6
LB
591 .open = acpi_ec_info_open_fs,
592 .read = seq_read,
593 .llseek = seq_lseek,
594 .release = single_release,
1da177e4
LT
595 .owner = THIS_MODULE,
596};
597
50526df6 598static int acpi_ec_add_fs(struct acpi_device *device)
1da177e4 599{
50526df6 600 struct proc_dir_entry *entry = NULL;
1da177e4 601
1da177e4
LT
602 if (!acpi_device_dir(device)) {
603 acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device),
50526df6 604 acpi_ec_dir);
1da177e4 605 if (!acpi_device_dir(device))
d550d98d 606 return -ENODEV;
1da177e4
LT
607 }
608
609 entry = create_proc_entry(ACPI_EC_FILE_INFO, S_IRUGO,
50526df6 610 acpi_device_dir(device));
1da177e4 611 if (!entry)
d550d98d 612 return -ENODEV;
1da177e4
LT
613 else {
614 entry->proc_fops = &acpi_ec_info_ops;
615 entry->data = acpi_driver_data(device);
616 entry->owner = THIS_MODULE;
617 }
618
d550d98d 619 return 0;
1da177e4
LT
620}
621
50526df6 622static int acpi_ec_remove_fs(struct acpi_device *device)
1da177e4 623{
1da177e4
LT
624
625 if (acpi_device_dir(device)) {
626 remove_proc_entry(ACPI_EC_FILE_INFO, acpi_device_dir(device));
627 remove_proc_entry(acpi_device_bid(device), acpi_ec_dir);
628 acpi_device_dir(device) = NULL;
629 }
630
d550d98d 631 return 0;
1da177e4
LT
632}
633
1da177e4
LT
634/* --------------------------------------------------------------------------
635 Driver Interface
636 -------------------------------------------------------------------------- */
c0900c35
AS
637static acpi_status
638ec_parse_io_ports(struct acpi_resource *resource, void *context);
639
c0900c35
AS
640static struct acpi_ec *make_acpi_ec(void)
641{
642 struct acpi_ec *ec = kzalloc(sizeof(struct acpi_ec), GFP_KERNEL);
643 if (!ec)
644 return NULL;
645
9fd9f8e8 646 atomic_set(&ec->query_pending, 1);
c0900c35
AS
647 atomic_set(&ec->event_count, 1);
648 mutex_init(&ec->lock);
649 init_waitqueue_head(&ec->wait);
837012ed 650 INIT_LIST_HEAD(&ec->list);
c0900c35
AS
651
652 return ec;
653}
1da177e4 654
837012ed
AS
655static acpi_status
656acpi_ec_register_query_methods(acpi_handle handle, u32 level,
657 void *context, void **return_value)
658{
659 struct acpi_namespace_node *node = handle;
660 struct acpi_ec *ec = context;
661 int value = 0;
662 if (sscanf(node->name.ascii, "_Q%x", &value) == 1) {
663 acpi_ec_add_query_handler(ec, value, handle, NULL, NULL);
664 }
665 return AE_OK;
666}
667
668static int ec_parse_device(struct acpi_ec *ec, acpi_handle handle)
669{
670 if (ACPI_FAILURE(acpi_walk_resources(handle, METHOD_NAME__CRS,
671 ec_parse_io_ports, ec)))
672 return -EINVAL;
673
674 /* Get GPE bit assignment (EC events). */
675 /* TODO: Add support for _GPE returning a package */
676 if (ACPI_FAILURE(acpi_evaluate_integer(handle, "_GPE", NULL, &ec->gpe)))
677 return -EINVAL;
678
679 /* Use the global lock for all EC transactions? */
680 acpi_evaluate_integer(handle, "_GLK", NULL, &ec->global_lock);
681
682 /* Find and register all query methods */
683 acpi_walk_namespace(ACPI_TYPE_METHOD, handle, 1,
684 acpi_ec_register_query_methods, ec, NULL);
685
686 ec->handle = handle;
687
688 printk(KERN_INFO PREFIX "GPE = 0x%lx, I/O: command/status = 0x%lx, data = 0x%lx",
689 ec->gpe, ec->command_addr, ec->data_addr);
690
691 return 0;
692}
693
703959d4 694static int acpi_ec_add(struct acpi_device *device)
1da177e4 695{
703959d4 696 struct acpi_ec *ec = NULL;
45bea155 697
45bea155 698 if (!device)
d550d98d 699 return -EINVAL;
45bea155 700
c0900c35
AS
701 strcpy(acpi_device_name(device), ACPI_EC_DEVICE_NAME);
702 strcpy(acpi_device_class(device), ACPI_EC_CLASS);
703
704 ec = make_acpi_ec();
45bea155 705 if (!ec)
d550d98d 706 return -ENOMEM;
703959d4 707
837012ed 708 if (ec_parse_device(ec, device->handle)) {
c0900c35
AS
709 kfree(ec);
710 return -EINVAL;
45bea155 711 }
1da177e4 712
c0900c35 713 /* Check if we found the boot EC */
d66d969d
AS
714 if (boot_ec) {
715 if (boot_ec->gpe == ec->gpe) {
c0900c35 716 /* We might have incorrect info for GL at boot time */
d66d969d
AS
717 mutex_lock(&boot_ec->lock);
718 boot_ec->global_lock = ec->global_lock;
837012ed
AS
719 /* Copy handlers from new ec into boot ec */
720 list_splice(&ec->list, &boot_ec->list);
d66d969d 721 mutex_unlock(&boot_ec->lock);
c0900c35 722 kfree(ec);
d66d969d 723 ec = boot_ec;
c0900c35 724 }
d033879c
AS
725 } else
726 first_ec = ec;
c0900c35 727 ec->handle = device->handle;
c0900c35 728 acpi_driver_data(device) = ec;
1da177e4 729
c0900c35 730 acpi_ec_add_fs(device);
c0900c35 731 return 0;
1da177e4
LT
732}
733
50526df6 734static int acpi_ec_remove(struct acpi_device *device, int type)
1da177e4 735{
01f22462 736 struct acpi_ec *ec;
837012ed 737 struct acpi_ec_query_handler *handler;
1da177e4 738
1da177e4 739 if (!device)
d550d98d 740 return -EINVAL;
1da177e4
LT
741
742 ec = acpi_driver_data(device);
837012ed
AS
743 mutex_lock(&ec->lock);
744 list_for_each_entry(handler, &ec->list, node) {
745 list_del(&handler->node);
746 kfree(handler);
747 }
748 mutex_unlock(&ec->lock);
1da177e4 749 acpi_ec_remove_fs(device);
c0900c35 750 acpi_driver_data(device) = NULL;
d033879c 751 if (ec == first_ec)
c0900c35
AS
752 first_ec = NULL;
753
754 /* Don't touch boot EC */
d66d969d 755 if (boot_ec != ec)
c0900c35 756 kfree(ec);
d550d98d 757 return 0;
1da177e4
LT
758}
759
1da177e4 760static acpi_status
c0900c35 761ec_parse_io_ports(struct acpi_resource *resource, void *context)
1da177e4 762{
3d02b90b 763 struct acpi_ec *ec = context;
1da177e4 764
01f22462 765 if (resource->type != ACPI_RESOURCE_TYPE_IO)
1da177e4 766 return AE_OK;
1da177e4
LT
767
768 /*
769 * The first address region returned is the data port, and
770 * the second address region returned is the status/command
771 * port.
772 */
01f22462 773 if (ec->data_addr == 0)
6ffb221a 774 ec->data_addr = resource->data.io.minimum;
01f22462 775 else if (ec->command_addr == 0)
6ffb221a 776 ec->command_addr = resource->data.io.minimum;
01f22462 777 else
1da177e4 778 return AE_CTRL_TERMINATE;
1da177e4 779
1da177e4
LT
780 return AE_OK;
781}
782
e8284321
AS
783static int ec_install_handlers(struct acpi_ec *ec)
784{
c0900c35
AS
785 acpi_status status;
786 status = acpi_install_gpe_handler(NULL, ec->gpe,
787 ACPI_GPE_EDGE_TRIGGERED,
788 &acpi_ec_gpe_handler, ec);
e8284321
AS
789 if (ACPI_FAILURE(status))
790 return -ENODEV;
01f22462 791
e8284321
AS
792 acpi_set_gpe_type(NULL, ec->gpe, ACPI_GPE_TYPE_RUNTIME);
793 acpi_enable_gpe(NULL, ec->gpe, ACPI_NOT_ISR);
794
795 status = acpi_install_address_space_handler(ec->handle,
796 ACPI_ADR_SPACE_EC,
797 &acpi_ec_space_handler,
798 &acpi_ec_space_setup, ec);
799 if (ACPI_FAILURE(status)) {
800 acpi_remove_gpe_handler(NULL, ec->gpe, &acpi_ec_gpe_handler);
801 return -ENODEV;
802 }
803
804 return 0;
805}
806
50526df6 807static int acpi_ec_start(struct acpi_device *device)
1da177e4 808{
c0900c35 809 struct acpi_ec *ec;
837012ed 810 int ret = 0;
1da177e4 811
1da177e4 812 if (!device)
d550d98d 813 return -EINVAL;
1da177e4
LT
814
815 ec = acpi_driver_data(device);
816
817 if (!ec)
d550d98d 818 return -EINVAL;
1da177e4 819
c0900c35 820 /* Boot EC is already working */
837012ed
AS
821 if (ec != boot_ec)
822 ret = ec_install_handlers(ec);
823
824 /* EC is fully operational, allow queries */
825 atomic_set(&ec->query_pending, 0);
c0900c35 826
837012ed 827 return ret;
1da177e4
LT
828}
829
50526df6 830static int acpi_ec_stop(struct acpi_device *device, int type)
1da177e4 831{
c0900c35
AS
832 acpi_status status;
833 struct acpi_ec *ec;
1da177e4 834
1da177e4 835 if (!device)
d550d98d 836 return -EINVAL;
1da177e4
LT
837
838 ec = acpi_driver_data(device);
c0900c35
AS
839 if (!ec)
840 return -EINVAL;
841
842 /* Don't touch boot EC */
d66d969d 843 if (ec == boot_ec)
c0900c35 844 return 0;
1da177e4 845
703959d4 846 status = acpi_remove_address_space_handler(ec->handle,
50526df6
LB
847 ACPI_ADR_SPACE_EC,
848 &acpi_ec_space_handler);
1da177e4 849 if (ACPI_FAILURE(status))
d550d98d 850 return -ENODEV;
1da177e4 851
6ccedb10 852 status = acpi_remove_gpe_handler(NULL, ec->gpe, &acpi_ec_gpe_handler);
1da177e4 853 if (ACPI_FAILURE(status))
d550d98d 854 return -ENODEV;
1da177e4 855
d550d98d 856 return 0;
1da177e4
LT
857}
858
c0900c35
AS
859int __init acpi_ec_ecdt_probe(void)
860{
861 int ret;
862 acpi_status status;
50526df6 863 struct acpi_table_ecdt *ecdt_ptr;
45bea155 864
d66d969d
AS
865 boot_ec = make_acpi_ec();
866 if (!boot_ec)
c0900c35
AS
867 return -ENOMEM;
868 /*
869 * Generate a boot ec context
870 */
871
15a58ed1
AS
872 status = acpi_get_table(ACPI_SIG_ECDT, 1,
873 (struct acpi_table_header **)&ecdt_ptr);
45bea155 874 if (ACPI_FAILURE(status))
c0900c35 875 goto error;
45bea155 876
4350933a 877 printk(KERN_INFO PREFIX "EC description table is found, configuring boot EC\n");
45bea155 878
d66d969d
AS
879 boot_ec->command_addr = ecdt_ptr->control.address;
880 boot_ec->data_addr = ecdt_ptr->data.address;
881 boot_ec->gpe = ecdt_ptr->gpe;
d66d969d 882 boot_ec->handle = ACPI_ROOT_OBJECT;
1da177e4 883
d66d969d 884 ret = ec_install_handlers(boot_ec);
d033879c
AS
885 if (!ret) {
886 first_ec = boot_ec;
e8284321 887 return 0;
d033879c 888 }
c0900c35 889 error:
d66d969d
AS
890 kfree(boot_ec);
891 boot_ec = NULL;
1da177e4
LT
892
893 return -ENODEV;
894}
895
50526df6 896static int __init acpi_ec_init(void)
1da177e4 897{
50526df6 898 int result = 0;
1da177e4 899
1da177e4 900 if (acpi_disabled)
d550d98d 901 return 0;
1da177e4
LT
902
903 acpi_ec_dir = proc_mkdir(ACPI_EC_CLASS, acpi_root_dir);
904 if (!acpi_ec_dir)
d550d98d 905 return -ENODEV;
1da177e4
LT
906
907 /* Now register the driver for the EC */
908 result = acpi_bus_register_driver(&acpi_ec_driver);
909 if (result < 0) {
910 remove_proc_entry(ACPI_EC_CLASS, acpi_root_dir);
d550d98d 911 return -ENODEV;
1da177e4
LT
912 }
913
d550d98d 914 return result;
1da177e4
LT
915}
916
917subsys_initcall(acpi_ec_init);
918
919/* EC driver currently not unloadable */
920#if 0
50526df6 921static void __exit acpi_ec_exit(void)
1da177e4 922{
1da177e4
LT
923
924 acpi_bus_unregister_driver(&acpi_ec_driver);
925
926 remove_proc_entry(ACPI_EC_CLASS, acpi_root_dir);
927
d550d98d 928 return;
1da177e4 929}
50526df6 930#endif /* 0 */
1da177e4 931
02b28a33 932static int __init acpi_ec_set_intr_mode(char *str)
45bea155 933{
02b28a33 934 int intr;
7b15f5e7 935
02b28a33 936 if (!get_option(&str, &intr))
7b15f5e7
LY
937 return 0;
938
c0900c35
AS
939 acpi_ec_mode = (intr) ? EC_INTR : EC_POLL;
940
9e197219 941 printk(KERN_NOTICE PREFIX "%s mode.\n", intr ? "interrupt" : "polling");
703959d4 942
9b41046c 943 return 1;
45bea155 944}
50526df6 945
53f11d4f 946__setup("ec_intr=", acpi_ec_set_intr_mode);