2 * acpi_ec.c - ACPI Embedded Controller Driver ($Revision: 38 $)
4 * Copyright (C) 2004 Luming Yu <luming.yu@intel.com>
5 * Copyright (C) 2001, 2002 Andy Grover <andrew.grover@intel.com>
6 * Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>
8 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or (at
13 * your option) any later version.
15 * This program is distributed in the hope that it will be useful, but
16 * WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details.
20 * You should have received a copy of the GNU General Public License along
21 * with this program; if not, write to the Free Software Foundation, Inc.,
22 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
24 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
27 #include <linux/kernel.h>
28 #include <linux/module.h>
29 #include <linux/init.h>
30 #include <linux/types.h>
31 #include <linux/delay.h>
32 #include <linux/proc_fs.h>
33 #include <linux/seq_file.h>
34 #include <linux/interrupt.h>
36 #include <acpi/acpi_bus.h>
37 #include <acpi/acpi_drivers.h>
38 #include <acpi/actypes.h>
40 #define _COMPONENT ACPI_EC_COMPONENT
41 ACPI_MODULE_NAME("acpi_ec")
42 #define ACPI_EC_COMPONENT 0x00100000
43 #define ACPI_EC_CLASS "embedded_controller"
44 #define ACPI_EC_HID "PNP0C09"
45 #define ACPI_EC_DRIVER_NAME "ACPI Embedded Controller Driver"
46 #define ACPI_EC_DEVICE_NAME "Embedded Controller"
47 #define ACPI_EC_FILE_INFO "info"
48 #define ACPI_EC_FLAG_OBF 0x01 /* Output buffer full */
49 #define ACPI_EC_FLAG_IBF 0x02 /* Input buffer full */
50 #define ACPI_EC_FLAG_BURST 0x10 /* burst mode */
51 #define ACPI_EC_FLAG_SCI 0x20 /* EC-SCI occurred */
52 #define ACPI_EC_EVENT_OBF 0x01 /* Output buffer full */
53 #define ACPI_EC_EVENT_IBE 0x02 /* Input buffer empty */
54 #define ACPI_EC_DELAY 50 /* Wait 50ms max. during EC ops */
55 #define ACPI_EC_UDELAY_GLK 1000 /* Wait 1ms max. to get global lock */
56 #define ACPI_EC_UDELAY 100 /* Poll @ 100us increments */
57 #define ACPI_EC_UDELAY_COUNT 1000 /* Wait 10ms max. during EC ops */
58 #define ACPI_EC_COMMAND_READ 0x80
59 #define ACPI_EC_COMMAND_WRITE 0x81
60 #define ACPI_EC_BURST_ENABLE 0x82
61 #define ACPI_EC_BURST_DISABLE 0x83
62 #define ACPI_EC_COMMAND_QUERY 0x84
65 static int acpi_ec_remove(struct acpi_device *device, int type);
66 static int acpi_ec_start(struct acpi_device *device);
67 static int acpi_ec_stop(struct acpi_device *device, int type);
68 static int acpi_ec_intr_add(struct acpi_device *device);
69 static int acpi_ec_poll_add(struct acpi_device *device);
71 static struct acpi_driver acpi_ec_driver = {
72 .name = ACPI_EC_DRIVER_NAME,
73 .class = ACPI_EC_CLASS,
76 .add = acpi_ec_intr_add,
77 .remove = acpi_ec_remove,
78 .start = acpi_ec_start,
87 unsigned long gpe_bit;
88 struct acpi_generic_address status_addr;
89 struct acpi_generic_address command_addr;
90 struct acpi_generic_address data_addr;
91 unsigned long global_lock;
98 unsigned long gpe_bit;
99 struct acpi_generic_address status_addr;
100 struct acpi_generic_address command_addr;
101 struct acpi_generic_address data_addr;
102 unsigned long global_lock;
103 unsigned int expect_event;
104 atomic_t leaving_burst; /* 0 : No, 1 : Yes, 2: abort */
105 atomic_t pending_gpe;
106 struct semaphore sem;
107 wait_queue_head_t wait;
114 unsigned long gpe_bit;
115 struct acpi_generic_address status_addr;
116 struct acpi_generic_address command_addr;
117 struct acpi_generic_address data_addr;
118 unsigned long global_lock;
119 struct semaphore sem;
123 static int acpi_ec_poll_wait(union acpi_ec *ec, u8 event);
124 static int acpi_ec_intr_wait(union acpi_ec *ec, unsigned int event);
125 static int acpi_ec_poll_read(union acpi_ec *ec, u8 address, u32 * data);
126 static int acpi_ec_intr_read(union acpi_ec *ec, u8 address, u32 * data);
127 static int acpi_ec_poll_write(union acpi_ec *ec, u8 address, u8 data);
128 static int acpi_ec_intr_write(union acpi_ec *ec, u8 address, u8 data);
129 static int acpi_ec_poll_query(union acpi_ec *ec, u32 * data);
130 static int acpi_ec_intr_query(union acpi_ec *ec, u32 * data);
131 static void acpi_ec_gpe_poll_query(void *ec_cxt);
132 static void acpi_ec_gpe_intr_query(void *ec_cxt);
133 static u32 acpi_ec_gpe_poll_handler(void *data);
134 static u32 acpi_ec_gpe_intr_handler(void *data);
135 static acpi_status __init
136 acpi_fake_ecdt_poll_callback(acpi_handle handle,
137 u32 Level, void *context, void **retval);
139 static acpi_status __init
140 acpi_fake_ecdt_intr_callback(acpi_handle handle,
141 u32 Level, void *context, void **retval);
143 static int __init acpi_ec_poll_get_real_ecdt(void);
144 static int __init acpi_ec_intr_get_real_ecdt(void);
145 /* If we find an EC via the ECDT, we need to keep a ptr to its context */
146 static union acpi_ec *ec_ecdt;
148 /* External interfaces use first EC only, so remember */
149 static struct acpi_device *first_ec;
150 static int acpi_ec_poll_mode = EC_INTR;
152 /* --------------------------------------------------------------------------
153 Transaction Management
154 -------------------------------------------------------------------------- */
156 static u32 acpi_ec_read_status(union acpi_ec *ec)
160 acpi_hw_low_level_read(8, &status, &ec->common.status_addr);
164 static int acpi_ec_wait(union acpi_ec *ec, u8 event)
166 if (acpi_ec_poll_mode)
167 return acpi_ec_poll_wait(ec, event);
169 return acpi_ec_intr_wait(ec, event);
172 static int acpi_ec_poll_wait(union acpi_ec *ec, u8 event)
174 u32 acpi_ec_status = 0;
175 u32 i = ACPI_EC_UDELAY_COUNT;
180 /* Poll the EC status register waiting for the event to occur. */
182 case ACPI_EC_EVENT_OBF:
184 acpi_hw_low_level_read(8, &acpi_ec_status,
185 &ec->common.status_addr);
186 if (acpi_ec_status & ACPI_EC_FLAG_OBF)
188 udelay(ACPI_EC_UDELAY);
191 case ACPI_EC_EVENT_IBE:
193 acpi_hw_low_level_read(8, &acpi_ec_status,
194 &ec->common.status_addr);
195 if (!(acpi_ec_status & ACPI_EC_FLAG_IBF))
197 udelay(ACPI_EC_UDELAY);
206 static int acpi_ec_intr_wait(union acpi_ec *ec, unsigned int event)
210 ACPI_FUNCTION_TRACE("acpi_ec_wait");
212 ec->intr.expect_event = event;
216 case ACPI_EC_EVENT_IBE:
217 if (~acpi_ec_read_status(ec) & event) {
218 ec->intr.expect_event = 0;
226 result = wait_event_timeout(ec->intr.wait,
227 !ec->intr.expect_event,
228 msecs_to_jiffies(ACPI_EC_DELAY));
230 ec->intr.expect_event = 0;
234 * Verify that the event in question has actually happened by
235 * querying EC status. Do the check even if operation timed-out
236 * to make sure that we did not miss interrupt.
239 case ACPI_EC_EVENT_OBF:
240 if (acpi_ec_read_status(ec) & ACPI_EC_FLAG_OBF)
244 case ACPI_EC_EVENT_IBE:
245 if (~acpi_ec_read_status(ec) & ACPI_EC_FLAG_IBF)
250 return_VALUE(-ETIME);
253 #ifdef ACPI_FUTURE_USAGE
255 * Note: samsung nv5000 doesn't work with ec burst mode.
256 * http://bugzilla.kernel.org/show_bug.cgi?id=4980
258 int acpi_ec_enter_burst_mode(union acpi_ec *ec)
263 ACPI_FUNCTION_TRACE("acpi_ec_enter_burst_mode");
265 status = acpi_ec_read_status(ec);
266 if (status != -EINVAL && !(status & ACPI_EC_FLAG_BURST)) {
267 status = acpi_ec_wait(ec, ACPI_EC_EVENT_IBE);
270 acpi_hw_low_level_write(8, ACPI_EC_BURST_ENABLE,
271 &ec->common.command_addr);
272 status = acpi_ec_wait(ec, ACPI_EC_EVENT_OBF);
273 acpi_hw_low_level_read(8, &tmp, &ec->common.data_addr);
274 if (tmp != 0x90) { /* Burst ACK byte */
275 return_VALUE(-EINVAL);
279 atomic_set(&ec->intr.leaving_burst, 0);
282 ACPI_EXCEPTION ((AE_INFO, status, "EC wait, burst mode");
286 int acpi_ec_leave_burst_mode(union acpi_ec *ec)
290 ACPI_FUNCTION_TRACE("acpi_ec_leave_burst_mode");
292 status = acpi_ec_read_status(ec);
293 if (status != -EINVAL && (status & ACPI_EC_FLAG_BURST)){
294 status = acpi_ec_wait(ec, ACPI_EC_FLAG_IBF);
297 acpi_hw_low_level_write(8, ACPI_EC_BURST_DISABLE, &ec->common.command_addr);
298 acpi_ec_wait(ec, ACPI_EC_FLAG_IBF);
300 atomic_set(&ec->intr.leaving_burst, 1);
303 ACPI_EXCEPTION((AE_INFO, status, "EC leave burst mode");
306 #endif /* ACPI_FUTURE_USAGE */
308 static int acpi_ec_read(union acpi_ec *ec, u8 address, u32 * data)
310 if (acpi_ec_poll_mode)
311 return acpi_ec_poll_read(ec, address, data);
313 return acpi_ec_intr_read(ec, address, data);
315 static int acpi_ec_write(union acpi_ec *ec, u8 address, u8 data)
317 if (acpi_ec_poll_mode)
318 return acpi_ec_poll_write(ec, address, data);
320 return acpi_ec_intr_write(ec, address, data);
322 static int acpi_ec_poll_read(union acpi_ec *ec, u8 address, u32 * data)
324 acpi_status status = AE_OK;
328 ACPI_FUNCTION_TRACE("acpi_ec_read");
331 return_VALUE(-EINVAL);
335 if (ec->common.global_lock) {
336 status = acpi_acquire_global_lock(ACPI_EC_UDELAY_GLK, &glk);
337 if (ACPI_FAILURE(status))
338 return_VALUE(-ENODEV);
341 if (down_interruptible(&ec->poll.sem)) {
342 result = -ERESTARTSYS;
346 acpi_hw_low_level_write(8, ACPI_EC_COMMAND_READ,
347 &ec->common.command_addr);
348 result = acpi_ec_wait(ec, ACPI_EC_EVENT_IBE);
352 acpi_hw_low_level_write(8, address, &ec->common.data_addr);
353 result = acpi_ec_wait(ec, ACPI_EC_EVENT_OBF);
357 acpi_hw_low_level_read(8, data, &ec->common.data_addr);
359 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Read [%02x] from address [%02x]\n",
365 if (ec->common.global_lock)
366 acpi_release_global_lock(glk);
368 return_VALUE(result);
371 static int acpi_ec_poll_write(union acpi_ec *ec, u8 address, u8 data)
374 acpi_status status = AE_OK;
377 ACPI_FUNCTION_TRACE("acpi_ec_write");
380 return_VALUE(-EINVAL);
382 if (ec->common.global_lock) {
383 status = acpi_acquire_global_lock(ACPI_EC_UDELAY_GLK, &glk);
384 if (ACPI_FAILURE(status))
385 return_VALUE(-ENODEV);
388 if (down_interruptible(&ec->poll.sem)) {
389 result = -ERESTARTSYS;
393 acpi_hw_low_level_write(8, ACPI_EC_COMMAND_WRITE,
394 &ec->common.command_addr);
395 result = acpi_ec_wait(ec, ACPI_EC_EVENT_IBE);
399 acpi_hw_low_level_write(8, address, &ec->common.data_addr);
400 result = acpi_ec_wait(ec, ACPI_EC_EVENT_IBE);
404 acpi_hw_low_level_write(8, data, &ec->common.data_addr);
405 result = acpi_ec_wait(ec, ACPI_EC_EVENT_IBE);
409 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Wrote [%02x] to address [%02x]\n",
415 if (ec->common.global_lock)
416 acpi_release_global_lock(glk);
418 return_VALUE(result);
421 static int acpi_ec_intr_read(union acpi_ec *ec, u8 address, u32 * data)
426 ACPI_FUNCTION_TRACE("acpi_ec_read");
429 return_VALUE(-EINVAL);
433 if (ec->common.global_lock) {
434 status = acpi_acquire_global_lock(ACPI_EC_UDELAY_GLK, &glk);
435 if (ACPI_FAILURE(status))
436 return_VALUE(-ENODEV);
439 WARN_ON(in_interrupt());
442 status = acpi_ec_wait(ec, ACPI_EC_EVENT_IBE);
444 printk(KERN_DEBUG PREFIX "read EC, IB not empty\n");
447 acpi_hw_low_level_write(8, ACPI_EC_COMMAND_READ,
448 &ec->common.command_addr);
449 status = acpi_ec_wait(ec, ACPI_EC_EVENT_IBE);
451 printk(KERN_DEBUG PREFIX "read EC, IB not empty\n");
454 acpi_hw_low_level_write(8, address, &ec->common.data_addr);
455 status = acpi_ec_wait(ec, ACPI_EC_EVENT_OBF);
457 printk(KERN_DEBUG PREFIX "read EC, OB not full\n");
460 acpi_hw_low_level_read(8, data, &ec->common.data_addr);
461 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Read [%02x] from address [%02x]\n",
467 if (ec->common.global_lock)
468 acpi_release_global_lock(glk);
470 return_VALUE(status);
473 static int acpi_ec_intr_write(union acpi_ec *ec, u8 address, u8 data)
478 ACPI_FUNCTION_TRACE("acpi_ec_write");
481 return_VALUE(-EINVAL);
483 if (ec->common.global_lock) {
484 status = acpi_acquire_global_lock(ACPI_EC_UDELAY_GLK, &glk);
485 if (ACPI_FAILURE(status))
486 return_VALUE(-ENODEV);
489 WARN_ON(in_interrupt());
492 status = acpi_ec_wait(ec, ACPI_EC_EVENT_IBE);
494 printk(KERN_DEBUG PREFIX "write EC, IB not empty\n");
496 acpi_hw_low_level_write(8, ACPI_EC_COMMAND_WRITE,
497 &ec->common.command_addr);
498 status = acpi_ec_wait(ec, ACPI_EC_EVENT_IBE);
500 printk(KERN_DEBUG PREFIX "write EC, IB not empty\n");
503 acpi_hw_low_level_write(8, address, &ec->common.data_addr);
504 status = acpi_ec_wait(ec, ACPI_EC_EVENT_IBE);
506 printk(KERN_DEBUG PREFIX "write EC, IB not empty\n");
509 acpi_hw_low_level_write(8, data, &ec->common.data_addr);
511 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Wrote [%02x] to address [%02x]\n",
516 if (ec->common.global_lock)
517 acpi_release_global_lock(glk);
519 return_VALUE(status);
523 * Externally callable EC access functions. For now, assume 1 EC only
525 int ec_read(u8 addr, u8 * val)
534 ec = acpi_driver_data(first_ec);
536 err = acpi_ec_read(ec, addr, &temp_data);
545 EXPORT_SYMBOL(ec_read);
547 int ec_write(u8 addr, u8 val)
555 ec = acpi_driver_data(first_ec);
557 err = acpi_ec_write(ec, addr, val);
562 EXPORT_SYMBOL(ec_write);
564 static int acpi_ec_query(union acpi_ec *ec, u32 * data)
566 if (acpi_ec_poll_mode)
567 return acpi_ec_poll_query(ec, data);
569 return acpi_ec_intr_query(ec, data);
571 static int acpi_ec_poll_query(union acpi_ec *ec, u32 * data)
574 acpi_status status = AE_OK;
577 ACPI_FUNCTION_TRACE("acpi_ec_query");
580 return_VALUE(-EINVAL);
584 if (ec->common.global_lock) {
585 status = acpi_acquire_global_lock(ACPI_EC_UDELAY_GLK, &glk);
586 if (ACPI_FAILURE(status))
587 return_VALUE(-ENODEV);
591 * Query the EC to find out which _Qxx method we need to evaluate.
592 * Note that successful completion of the query causes the ACPI_EC_SCI
593 * bit to be cleared (and thus clearing the interrupt source).
595 if (down_interruptible(&ec->poll.sem)) {
596 result = -ERESTARTSYS;
600 acpi_hw_low_level_write(8, ACPI_EC_COMMAND_QUERY,
601 &ec->common.command_addr);
602 result = acpi_ec_wait(ec, ACPI_EC_EVENT_OBF);
606 acpi_hw_low_level_read(8, data, &ec->common.data_addr);
613 if (ec->common.global_lock)
614 acpi_release_global_lock(glk);
616 return_VALUE(result);
618 static int acpi_ec_intr_query(union acpi_ec *ec, u32 * data)
623 ACPI_FUNCTION_TRACE("acpi_ec_query");
626 return_VALUE(-EINVAL);
629 if (ec->common.global_lock) {
630 status = acpi_acquire_global_lock(ACPI_EC_UDELAY_GLK, &glk);
631 if (ACPI_FAILURE(status))
632 return_VALUE(-ENODEV);
637 status = acpi_ec_wait(ec, ACPI_EC_EVENT_IBE);
639 printk(KERN_DEBUG PREFIX "query EC, IB not empty\n");
643 * Query the EC to find out which _Qxx method we need to evaluate.
644 * Note that successful completion of the query causes the ACPI_EC_SCI
645 * bit to be cleared (and thus clearing the interrupt source).
647 acpi_hw_low_level_write(8, ACPI_EC_COMMAND_QUERY,
648 &ec->common.command_addr);
649 status = acpi_ec_wait(ec, ACPI_EC_EVENT_OBF);
651 printk(KERN_DEBUG PREFIX "query EC, OB not full\n");
655 acpi_hw_low_level_read(8, data, &ec->common.data_addr);
662 if (ec->common.global_lock)
663 acpi_release_global_lock(glk);
665 return_VALUE(status);
668 /* --------------------------------------------------------------------------
670 -------------------------------------------------------------------------- */
672 union acpi_ec_query_data {
677 static void acpi_ec_gpe_query(void *ec_cxt)
679 if (acpi_ec_poll_mode)
680 acpi_ec_gpe_poll_query(ec_cxt);
682 acpi_ec_gpe_intr_query(ec_cxt);
685 static void acpi_ec_gpe_poll_query(void *ec_cxt)
687 union acpi_ec *ec = (union acpi_ec *)ec_cxt;
689 static char object_name[5] = { '_', 'Q', '0', '0', '\0' };
690 const char hex[] = { '0', '1', '2', '3', '4', '5', '6', '7',
691 '8', '9', 'A', 'B', 'C', 'D', 'E', 'F'
694 ACPI_FUNCTION_TRACE("acpi_ec_gpe_query");
699 if (down_interruptible (&ec->poll.sem)) {
702 acpi_hw_low_level_read(8, &value, &ec->common.command_addr);
705 /* TBD: Implement asynch events!
706 * NOTE: All we care about are EC-SCI's. Other EC events are
707 * handled via polling (yuck!). This is because some systems
708 * treat EC-SCIs as level (versus EDGE!) triggered, preventing
709 * a purely interrupt-driven approach (grumble, grumble).
711 if (!(value & ACPI_EC_FLAG_SCI))
714 if (acpi_ec_query(ec, &value))
717 object_name[2] = hex[((value >> 4) & 0x0F)];
718 object_name[3] = hex[(value & 0x0F)];
720 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Evaluating %s\n", object_name));
722 acpi_evaluate_object(ec->common.handle, object_name, NULL, NULL);
725 acpi_enable_gpe(NULL, ec->common.gpe_bit, ACPI_NOT_ISR);
727 static void acpi_ec_gpe_intr_query(void *ec_cxt)
729 union acpi_ec *ec = (union acpi_ec *)ec_cxt;
731 int result = -ENODATA;
732 static char object_name[5] = { '_', 'Q', '0', '0', '\0' };
733 const char hex[] = { '0', '1', '2', '3', '4', '5', '6', '7',
734 '8', '9', 'A', 'B', 'C', 'D', 'E', 'F'
737 ACPI_FUNCTION_TRACE("acpi_ec_gpe_query");
739 if (acpi_ec_read_status(ec) & ACPI_EC_FLAG_SCI)
740 result = acpi_ec_query(ec, &value);
745 object_name[2] = hex[((value >> 4) & 0x0F)];
746 object_name[3] = hex[(value & 0x0F)];
748 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Evaluating %s\n", object_name));
750 acpi_evaluate_object(ec->common.handle, object_name, NULL, NULL);
752 atomic_dec(&ec->intr.pending_gpe);
756 static u32 acpi_ec_gpe_handler(void *data)
758 if (acpi_ec_poll_mode)
759 return acpi_ec_gpe_poll_handler(data);
761 return acpi_ec_gpe_intr_handler(data);
763 static u32 acpi_ec_gpe_poll_handler(void *data)
765 acpi_status status = AE_OK;
766 union acpi_ec *ec = (union acpi_ec *)data;
769 return ACPI_INTERRUPT_NOT_HANDLED;
771 acpi_disable_gpe(NULL, ec->common.gpe_bit, ACPI_ISR);
773 status = acpi_os_execute(OSL_EC_POLL_HANDLER, acpi_ec_gpe_query, ec);
776 return ACPI_INTERRUPT_HANDLED;
778 return ACPI_INTERRUPT_NOT_HANDLED;
780 static u32 acpi_ec_gpe_intr_handler(void *data)
782 acpi_status status = AE_OK;
784 union acpi_ec *ec = (union acpi_ec *)data;
787 return ACPI_INTERRUPT_NOT_HANDLED;
789 acpi_clear_gpe(NULL, ec->common.gpe_bit, ACPI_ISR);
790 value = acpi_ec_read_status(ec);
792 switch (ec->intr.expect_event) {
793 case ACPI_EC_EVENT_OBF:
794 if (!(value & ACPI_EC_FLAG_OBF))
796 case ACPI_EC_EVENT_IBE:
797 if ((value & ACPI_EC_FLAG_IBF))
799 ec->intr.expect_event = 0;
800 wake_up(&ec->intr.wait);
801 return ACPI_INTERRUPT_HANDLED;
806 if (value & ACPI_EC_FLAG_SCI) {
807 atomic_add(1, &ec->intr.pending_gpe);
808 status = acpi_os_execute(OSL_EC_BURST_HANDLER,
809 acpi_ec_gpe_query, ec);
810 return status == AE_OK ?
811 ACPI_INTERRUPT_HANDLED : ACPI_INTERRUPT_NOT_HANDLED;
813 acpi_enable_gpe(NULL, ec->common.gpe_bit, ACPI_ISR);
814 return status == AE_OK ?
815 ACPI_INTERRUPT_HANDLED : ACPI_INTERRUPT_NOT_HANDLED;
818 /* --------------------------------------------------------------------------
819 Address Space Management
820 -------------------------------------------------------------------------- */
823 acpi_ec_space_setup(acpi_handle region_handle,
824 u32 function, void *handler_context, void **return_context)
827 * The EC object is in the handler context and is needed
828 * when calling the acpi_ec_space_handler.
830 *return_context = (function != ACPI_REGION_DEACTIVATE) ?
831 handler_context : NULL;
837 acpi_ec_space_handler(u32 function,
838 acpi_physical_address address,
840 acpi_integer * value,
841 void *handler_context, void *region_context)
844 union acpi_ec *ec = NULL;
846 acpi_integer f_v = 0;
849 ACPI_FUNCTION_TRACE("acpi_ec_space_handler");
851 if ((address > 0xFF) || !value || !handler_context)
852 return_VALUE(AE_BAD_PARAMETER);
854 if (bit_width != 8 && acpi_strict) {
855 printk(KERN_WARNING PREFIX
856 "acpi_ec_space_handler: bit_width should be 8\n");
857 return_VALUE(AE_BAD_PARAMETER);
860 ec = (union acpi_ec *)handler_context;
866 result = acpi_ec_read(ec, (u8) address, (u32 *) & temp);
869 result = acpi_ec_write(ec, (u8) address, (u8) temp);
879 if (function == ACPI_READ)
880 f_v |= temp << 8 * i;
881 if (function == ACPI_WRITE)
888 if (function == ACPI_READ) {
889 f_v |= temp << 8 * i;
896 return_VALUE(AE_BAD_PARAMETER);
899 return_VALUE(AE_NOT_FOUND);
902 return_VALUE(AE_TIME);
909 /* --------------------------------------------------------------------------
911 -------------------------------------------------------------------------- */
913 static struct proc_dir_entry *acpi_ec_dir;
915 static int acpi_ec_read_info(struct seq_file *seq, void *offset)
917 union acpi_ec *ec = (union acpi_ec *)seq->private;
919 ACPI_FUNCTION_TRACE("acpi_ec_read_info");
924 seq_printf(seq, "gpe bit: 0x%02x\n",
925 (u32) ec->common.gpe_bit);
926 seq_printf(seq, "ports: 0x%02x, 0x%02x\n",
927 (u32) ec->common.status_addr.address,
928 (u32) ec->common.data_addr.address);
929 seq_printf(seq, "use global lock: %s\n",
930 ec->common.global_lock ? "yes" : "no");
931 acpi_enable_gpe(NULL, ec->common.gpe_bit, ACPI_NOT_ISR);
937 static int acpi_ec_info_open_fs(struct inode *inode, struct file *file)
939 return single_open(file, acpi_ec_read_info, PDE(inode)->data);
942 static struct file_operations acpi_ec_info_ops = {
943 .open = acpi_ec_info_open_fs,
946 .release = single_release,
947 .owner = THIS_MODULE,
950 static int acpi_ec_add_fs(struct acpi_device *device)
952 struct proc_dir_entry *entry = NULL;
954 ACPI_FUNCTION_TRACE("acpi_ec_add_fs");
956 if (!acpi_device_dir(device)) {
957 acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device),
959 if (!acpi_device_dir(device))
960 return_VALUE(-ENODEV);
963 entry = create_proc_entry(ACPI_EC_FILE_INFO, S_IRUGO,
964 acpi_device_dir(device));
966 return_VALUE(-ENODEV);
968 entry->proc_fops = &acpi_ec_info_ops;
969 entry->data = acpi_driver_data(device);
970 entry->owner = THIS_MODULE;
976 static int acpi_ec_remove_fs(struct acpi_device *device)
978 ACPI_FUNCTION_TRACE("acpi_ec_remove_fs");
980 if (acpi_device_dir(device)) {
981 remove_proc_entry(ACPI_EC_FILE_INFO, acpi_device_dir(device));
982 remove_proc_entry(acpi_device_bid(device), acpi_ec_dir);
983 acpi_device_dir(device) = NULL;
989 /* --------------------------------------------------------------------------
991 -------------------------------------------------------------------------- */
993 static int acpi_ec_poll_add(struct acpi_device *device)
996 acpi_status status = AE_OK;
997 union acpi_ec *ec = NULL;
999 ACPI_FUNCTION_TRACE("acpi_ec_add");
1002 return_VALUE(-EINVAL);
1004 ec = kmalloc(sizeof(union acpi_ec), GFP_KERNEL);
1006 return_VALUE(-ENOMEM);
1007 memset(ec, 0, sizeof(union acpi_ec));
1009 ec->common.handle = device->handle;
1010 ec->common.uid = -1;
1011 init_MUTEX(&ec->poll.sem);
1012 strcpy(acpi_device_name(device), ACPI_EC_DEVICE_NAME);
1013 strcpy(acpi_device_class(device), ACPI_EC_CLASS);
1014 acpi_driver_data(device) = ec;
1016 /* Use the global lock for all EC transactions? */
1017 acpi_evaluate_integer(ec->common.handle, "_GLK", NULL,
1018 &ec->common.global_lock);
1020 /* XXX we don't test uids, because on some boxes ecdt uid = 0, see:
1021 http://bugzilla.kernel.org/show_bug.cgi?id=6111 */
1023 acpi_remove_address_space_handler(ACPI_ROOT_OBJECT,
1025 &acpi_ec_space_handler);
1027 acpi_remove_gpe_handler(NULL, ec_ecdt->common.gpe_bit,
1028 &acpi_ec_gpe_handler);
1033 /* Get GPE bit assignment (EC events). */
1034 /* TODO: Add support for _GPE returning a package */
1036 acpi_evaluate_integer(ec->common.handle, "_GPE", NULL,
1037 &ec->common.gpe_bit);
1038 if (ACPI_FAILURE(status)) {
1039 ACPI_EXCEPTION((AE_INFO, status, "Obtaining GPE bit"));
1044 result = acpi_ec_add_fs(device);
1048 printk(KERN_INFO PREFIX "%s [%s] (gpe %d) polling mode.\n",
1049 acpi_device_name(device), acpi_device_bid(device),
1050 (u32) ec->common.gpe_bit);
1059 return_VALUE(result);
1061 static int acpi_ec_intr_add(struct acpi_device *device)
1064 acpi_status status = AE_OK;
1065 union acpi_ec *ec = NULL;
1067 ACPI_FUNCTION_TRACE("acpi_ec_add");
1070 return_VALUE(-EINVAL);
1072 ec = kmalloc(sizeof(union acpi_ec), GFP_KERNEL);
1074 return_VALUE(-ENOMEM);
1075 memset(ec, 0, sizeof(union acpi_ec));
1077 ec->common.handle = device->handle;
1078 ec->common.uid = -1;
1079 atomic_set(&ec->intr.pending_gpe, 0);
1080 atomic_set(&ec->intr.leaving_burst, 1);
1081 init_MUTEX(&ec->intr.sem);
1082 init_waitqueue_head(&ec->intr.wait);
1083 strcpy(acpi_device_name(device), ACPI_EC_DEVICE_NAME);
1084 strcpy(acpi_device_class(device), ACPI_EC_CLASS);
1085 acpi_driver_data(device) = ec;
1087 /* Use the global lock for all EC transactions? */
1088 acpi_evaluate_integer(ec->common.handle, "_GLK", NULL,
1089 &ec->common.global_lock);
1091 /* XXX we don't test uids, because on some boxes ecdt uid = 0, see:
1092 http://bugzilla.kernel.org/show_bug.cgi?id=6111 */
1094 acpi_remove_address_space_handler(ACPI_ROOT_OBJECT,
1096 &acpi_ec_space_handler);
1098 acpi_remove_gpe_handler(NULL, ec_ecdt->common.gpe_bit,
1099 &acpi_ec_gpe_handler);
1104 /* Get GPE bit assignment (EC events). */
1105 /* TODO: Add support for _GPE returning a package */
1107 acpi_evaluate_integer(ec->common.handle, "_GPE", NULL,
1108 &ec->common.gpe_bit);
1109 if (ACPI_FAILURE(status)) {
1110 printk(KERN_ERR PREFIX "Obtaining GPE bit assignment\n");
1115 result = acpi_ec_add_fs(device);
1119 printk(KERN_INFO PREFIX "%s [%s] (gpe %d) interrupt mode.\n",
1120 acpi_device_name(device), acpi_device_bid(device),
1121 (u32) ec->common.gpe_bit);
1130 return_VALUE(result);
1133 static int acpi_ec_remove(struct acpi_device *device, int type)
1135 union acpi_ec *ec = NULL;
1137 ACPI_FUNCTION_TRACE("acpi_ec_remove");
1140 return_VALUE(-EINVAL);
1142 ec = acpi_driver_data(device);
1144 acpi_ec_remove_fs(device);
1152 acpi_ec_io_ports(struct acpi_resource *resource, void *context)
1154 union acpi_ec *ec = (union acpi_ec *)context;
1155 struct acpi_generic_address *addr;
1157 if (resource->type != ACPI_RESOURCE_TYPE_IO) {
1162 * The first address region returned is the data port, and
1163 * the second address region returned is the status/command
1166 if (ec->common.data_addr.register_bit_width == 0) {
1167 addr = &ec->common.data_addr;
1168 } else if (ec->common.command_addr.register_bit_width == 0) {
1169 addr = &ec->common.command_addr;
1171 return AE_CTRL_TERMINATE;
1174 addr->address_space_id = ACPI_ADR_SPACE_SYSTEM_IO;
1175 addr->register_bit_width = 8;
1176 addr->register_bit_offset = 0;
1177 addr->address = resource->data.io.minimum;
1182 static int acpi_ec_start(struct acpi_device *device)
1184 acpi_status status = AE_OK;
1185 union acpi_ec *ec = NULL;
1187 ACPI_FUNCTION_TRACE("acpi_ec_start");
1190 return_VALUE(-EINVAL);
1192 ec = acpi_driver_data(device);
1195 return_VALUE(-EINVAL);
1198 * Get I/O port addresses. Convert to GAS format.
1200 status = acpi_walk_resources(ec->common.handle, METHOD_NAME__CRS,
1201 acpi_ec_io_ports, ec);
1202 if (ACPI_FAILURE(status)
1203 || ec->common.command_addr.register_bit_width == 0) {
1204 printk(KERN_ERR PREFIX "Error getting I/O port addresses\n");
1205 return_VALUE(-ENODEV);
1208 ec->common.status_addr = ec->common.command_addr;
1210 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "gpe=0x%02x, ports=0x%2x,0x%2x\n",
1211 (u32) ec->common.gpe_bit,
1212 (u32) ec->common.command_addr.address,
1213 (u32) ec->common.data_addr.address));
1216 * Install GPE handler
1218 status = acpi_install_gpe_handler(NULL, ec->common.gpe_bit,
1219 ACPI_GPE_EDGE_TRIGGERED,
1220 &acpi_ec_gpe_handler, ec);
1221 if (ACPI_FAILURE(status)) {
1222 return_VALUE(-ENODEV);
1224 acpi_set_gpe_type(NULL, ec->common.gpe_bit, ACPI_GPE_TYPE_RUNTIME);
1225 acpi_enable_gpe(NULL, ec->common.gpe_bit, ACPI_NOT_ISR);
1227 status = acpi_install_address_space_handler(ec->common.handle,
1229 &acpi_ec_space_handler,
1230 &acpi_ec_space_setup, ec);
1231 if (ACPI_FAILURE(status)) {
1232 acpi_remove_gpe_handler(NULL, ec->common.gpe_bit,
1233 &acpi_ec_gpe_handler);
1234 return_VALUE(-ENODEV);
1237 return_VALUE(AE_OK);
1240 static int acpi_ec_stop(struct acpi_device *device, int type)
1242 acpi_status status = AE_OK;
1243 union acpi_ec *ec = NULL;
1245 ACPI_FUNCTION_TRACE("acpi_ec_stop");
1248 return_VALUE(-EINVAL);
1250 ec = acpi_driver_data(device);
1252 status = acpi_remove_address_space_handler(ec->common.handle,
1254 &acpi_ec_space_handler);
1255 if (ACPI_FAILURE(status))
1256 return_VALUE(-ENODEV);
1259 acpi_remove_gpe_handler(NULL, ec->common.gpe_bit,
1260 &acpi_ec_gpe_handler);
1261 if (ACPI_FAILURE(status))
1262 return_VALUE(-ENODEV);
1267 static acpi_status __init
1268 acpi_fake_ecdt_callback(acpi_handle handle,
1269 u32 Level, void *context, void **retval)
1272 if (acpi_ec_poll_mode)
1273 return acpi_fake_ecdt_poll_callback(handle,
1274 Level, context, retval);
1276 return acpi_fake_ecdt_intr_callback(handle,
1277 Level, context, retval);
1280 static acpi_status __init
1281 acpi_fake_ecdt_poll_callback(acpi_handle handle,
1282 u32 Level, void *context, void **retval)
1286 status = acpi_walk_resources(handle, METHOD_NAME__CRS,
1287 acpi_ec_io_ports, ec_ecdt);
1288 if (ACPI_FAILURE(status))
1290 ec_ecdt->common.status_addr = ec_ecdt->common.command_addr;
1292 ec_ecdt->common.uid = -1;
1293 acpi_evaluate_integer(handle, "_UID", NULL, &ec_ecdt->common.uid);
1296 acpi_evaluate_integer(handle, "_GPE", NULL,
1297 &ec_ecdt->common.gpe_bit);
1298 if (ACPI_FAILURE(status))
1300 init_MUTEX(&ec_ecdt->poll.sem);
1301 ec_ecdt->common.global_lock = TRUE;
1302 ec_ecdt->common.handle = handle;
1304 printk(KERN_INFO PREFIX "GPE=0x%02x, ports=0x%2x, 0x%2x\n",
1305 (u32) ec_ecdt->common.gpe_bit,
1306 (u32) ec_ecdt->common.command_addr.address,
1307 (u32) ec_ecdt->common.data_addr.address);
1309 return AE_CTRL_TERMINATE;
1312 static acpi_status __init
1313 acpi_fake_ecdt_intr_callback(acpi_handle handle,
1314 u32 Level, void *context, void **retval)
1318 init_MUTEX(&ec_ecdt->intr.sem);
1319 init_waitqueue_head(&ec_ecdt->intr.wait);
1320 status = acpi_walk_resources(handle, METHOD_NAME__CRS,
1321 acpi_ec_io_ports, ec_ecdt);
1322 if (ACPI_FAILURE(status))
1324 ec_ecdt->common.status_addr = ec_ecdt->common.command_addr;
1326 ec_ecdt->common.uid = -1;
1327 acpi_evaluate_integer(handle, "_UID", NULL, &ec_ecdt->common.uid);
1330 acpi_evaluate_integer(handle, "_GPE", NULL,
1331 &ec_ecdt->common.gpe_bit);
1332 if (ACPI_FAILURE(status))
1334 ec_ecdt->common.global_lock = TRUE;
1335 ec_ecdt->common.handle = handle;
1337 printk(KERN_INFO PREFIX "GPE=0x%02x, ports=0x%2x, 0x%2x\n",
1338 (u32) ec_ecdt->common.gpe_bit,
1339 (u32) ec_ecdt->common.command_addr.address,
1340 (u32) ec_ecdt->common.data_addr.address);
1342 return AE_CTRL_TERMINATE;
1346 * Some BIOS (such as some from Gateway laptops) access EC region very early
1347 * such as in BAT0._INI or EC._INI before an EC device is found and
1348 * do not provide an ECDT. According to ACPI spec, ECDT isn't mandatorily
1349 * required, but if EC regison is accessed early, it is required.
1350 * The routine tries to workaround the BIOS bug by pre-scan EC device
1351 * It assumes that _CRS, _HID, _GPE, _UID methods of EC don't touch any
1352 * op region (since _REG isn't invoked yet). The assumption is true for
1353 * all systems found.
1355 static int __init acpi_ec_fake_ecdt(void)
1360 printk(KERN_INFO PREFIX "Try to make an fake ECDT\n");
1362 ec_ecdt = kmalloc(sizeof(union acpi_ec), GFP_KERNEL);
1367 memset(ec_ecdt, 0, sizeof(union acpi_ec));
1369 status = acpi_get_devices(ACPI_EC_HID,
1370 acpi_fake_ecdt_callback, NULL, NULL);
1371 if (ACPI_FAILURE(status)) {
1379 printk(KERN_ERR PREFIX "Can't make an fake ECDT\n");
1383 static int __init acpi_ec_get_real_ecdt(void)
1385 if (acpi_ec_poll_mode)
1386 return acpi_ec_poll_get_real_ecdt();
1388 return acpi_ec_intr_get_real_ecdt();
1391 static int __init acpi_ec_poll_get_real_ecdt(void)
1394 struct acpi_table_ecdt *ecdt_ptr;
1396 status = acpi_get_firmware_table("ECDT", 1, ACPI_LOGICAL_ADDRESSING,
1397 (struct acpi_table_header **)
1399 if (ACPI_FAILURE(status))
1402 printk(KERN_INFO PREFIX "Found ECDT\n");
1405 * Generate a temporary ec context to use until the namespace is scanned
1407 ec_ecdt = kmalloc(sizeof(union acpi_ec), GFP_KERNEL);
1410 memset(ec_ecdt, 0, sizeof(union acpi_ec));
1412 ec_ecdt->common.command_addr = ecdt_ptr->ec_control;
1413 ec_ecdt->common.status_addr = ecdt_ptr->ec_control;
1414 ec_ecdt->common.data_addr = ecdt_ptr->ec_data;
1415 ec_ecdt->common.gpe_bit = ecdt_ptr->gpe_bit;
1416 init_MUTEX(&ec_ecdt->poll.sem);
1417 /* use the GL just to be safe */
1418 ec_ecdt->common.global_lock = TRUE;
1419 ec_ecdt->common.uid = ecdt_ptr->uid;
1422 acpi_get_handle(NULL, ecdt_ptr->ec_id, &ec_ecdt->common.handle);
1423 if (ACPI_FAILURE(status)) {
1429 printk(KERN_ERR PREFIX "Could not use ECDT\n");
1436 static int __init acpi_ec_intr_get_real_ecdt(void)
1439 struct acpi_table_ecdt *ecdt_ptr;
1441 status = acpi_get_firmware_table("ECDT", 1, ACPI_LOGICAL_ADDRESSING,
1442 (struct acpi_table_header **)
1444 if (ACPI_FAILURE(status))
1447 printk(KERN_INFO PREFIX "Found ECDT\n");
1450 * Generate a temporary ec context to use until the namespace is scanned
1452 ec_ecdt = kmalloc(sizeof(union acpi_ec), GFP_KERNEL);
1455 memset(ec_ecdt, 0, sizeof(union acpi_ec));
1457 init_MUTEX(&ec_ecdt->intr.sem);
1458 init_waitqueue_head(&ec_ecdt->intr.wait);
1459 ec_ecdt->common.command_addr = ecdt_ptr->ec_control;
1460 ec_ecdt->common.status_addr = ecdt_ptr->ec_control;
1461 ec_ecdt->common.data_addr = ecdt_ptr->ec_data;
1462 ec_ecdt->common.gpe_bit = ecdt_ptr->gpe_bit;
1463 /* use the GL just to be safe */
1464 ec_ecdt->common.global_lock = TRUE;
1465 ec_ecdt->common.uid = ecdt_ptr->uid;
1468 acpi_get_handle(NULL, ecdt_ptr->ec_id, &ec_ecdt->common.handle);
1469 if (ACPI_FAILURE(status)) {
1475 printk(KERN_ERR PREFIX "Could not use ECDT\n");
1482 static int __initdata acpi_fake_ecdt_enabled;
1483 int __init acpi_ec_ecdt_probe(void)
1488 ret = acpi_ec_get_real_ecdt();
1489 /* Try to make a fake ECDT */
1490 if (ret && acpi_fake_ecdt_enabled) {
1491 ret = acpi_ec_fake_ecdt();
1498 * Install GPE handler
1500 status = acpi_install_gpe_handler(NULL, ec_ecdt->common.gpe_bit,
1501 ACPI_GPE_EDGE_TRIGGERED,
1502 &acpi_ec_gpe_handler, ec_ecdt);
1503 if (ACPI_FAILURE(status)) {
1506 acpi_set_gpe_type(NULL, ec_ecdt->common.gpe_bit, ACPI_GPE_TYPE_RUNTIME);
1507 acpi_enable_gpe(NULL, ec_ecdt->common.gpe_bit, ACPI_NOT_ISR);
1509 status = acpi_install_address_space_handler(ACPI_ROOT_OBJECT,
1511 &acpi_ec_space_handler,
1512 &acpi_ec_space_setup,
1514 if (ACPI_FAILURE(status)) {
1515 acpi_remove_gpe_handler(NULL, ec_ecdt->common.gpe_bit,
1516 &acpi_ec_gpe_handler);
1523 printk(KERN_ERR PREFIX "Could not use ECDT\n");
1530 static int __init acpi_ec_init(void)
1534 ACPI_FUNCTION_TRACE("acpi_ec_init");
1539 acpi_ec_dir = proc_mkdir(ACPI_EC_CLASS, acpi_root_dir);
1541 return_VALUE(-ENODEV);
1543 /* Now register the driver for the EC */
1544 result = acpi_bus_register_driver(&acpi_ec_driver);
1546 remove_proc_entry(ACPI_EC_CLASS, acpi_root_dir);
1547 return_VALUE(-ENODEV);
1550 return_VALUE(result);
1553 subsys_initcall(acpi_ec_init);
1555 /* EC driver currently not unloadable */
1557 static void __exit acpi_ec_exit(void)
1559 ACPI_FUNCTION_TRACE("acpi_ec_exit");
1561 acpi_bus_unregister_driver(&acpi_ec_driver);
1563 remove_proc_entry(ACPI_EC_CLASS, acpi_root_dir);
1569 static int __init acpi_fake_ecdt_setup(char *str)
1571 acpi_fake_ecdt_enabled = 1;
1575 __setup("acpi_fake_ecdt", acpi_fake_ecdt_setup);
1576 static int __init acpi_ec_set_intr_mode(char *str)
1580 if (!get_option(&str, &intr))
1584 acpi_ec_poll_mode = EC_INTR;
1585 acpi_ec_driver.ops.add = acpi_ec_intr_add;
1587 acpi_ec_poll_mode = EC_POLL;
1588 acpi_ec_driver.ops.add = acpi_ec_poll_add;
1590 printk(KERN_INFO PREFIX "EC %s mode.\n", intr ? "interrupt" : "polling");
1594 __setup("ec_intr=", acpi_ec_set_intr_mode);