2 * ec.c - ACPI Embedded Controller Driver (v2.1)
4 * Copyright (C) 2006-2008 Alexey Starikovskiy <astarikovskiy@suse.de>
5 * Copyright (C) 2006 Denis Sadykov <denis.m.sadykov@intel.com>
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>
10 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
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.
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.
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.
26 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
29 /* Uncomment next line to get verbose printout */
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>
39 #include <linux/interrupt.h>
40 #include <linux/list.h>
41 #include <linux/spinlock.h>
43 #include <acpi/acpi_bus.h>
44 #include <acpi/acpi_drivers.h>
46 #define ACPI_EC_CLASS "embedded_controller"
47 #define ACPI_EC_DEVICE_NAME "Embedded Controller"
48 #define ACPI_EC_FILE_INFO "info"
51 #define PREFIX "ACPI: EC: "
53 /* EC status register */
54 #define ACPI_EC_FLAG_OBF 0x01 /* Output buffer full */
55 #define ACPI_EC_FLAG_IBF 0x02 /* Input buffer full */
56 #define ACPI_EC_FLAG_BURST 0x10 /* burst mode */
57 #define ACPI_EC_FLAG_SCI 0x20 /* EC-SCI occurred */
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,
68 #define ACPI_EC_DELAY 500 /* Wait 500ms max. during EC ops */
69 #define ACPI_EC_UDELAY_GLK 1000 /* Wait 1ms max. to get global lock */
70 #define ACPI_EC_CDELAY 10 /* Wait 10us before polling EC */
72 #define ACPI_EC_STORM_THRESHOLD 8 /* number of false interrupts
73 per one transaction */
76 EC_FLAGS_QUERY_PENDING
, /* Query is pending */
77 EC_FLAGS_GPE_MODE
, /* Expect GPE to be sent
78 * for status change */
79 EC_FLAGS_NO_GPE
, /* Don't use GPE mode */
80 EC_FLAGS_GPE_STORM
, /* GPE storm detected */
81 EC_FLAGS_HANDLERS_INSTALLED
/* Handlers for GPE and
82 * OpReg are installed */
85 /* If we find an EC via the ECDT, we need to keep a ptr to its context */
86 /* External interfaces use first EC only, so remember */
87 typedef int (*acpi_ec_query_func
) (void *data
);
89 struct acpi_ec_query_handler
{
90 struct list_head node
;
91 acpi_ec_query_func func
;
100 unsigned short irq_count
;
109 static struct acpi_ec
{
112 unsigned long command_addr
;
113 unsigned long data_addr
;
114 unsigned long global_lock
;
117 wait_queue_head_t wait
;
118 struct list_head list
;
119 struct transaction
*curr
;
120 spinlock_t curr_lock
;
121 } *boot_ec
, *first_ec
;
123 static int EC_FLAGS_MSI
; /* Out-of-spec MSI controller */
125 /* --------------------------------------------------------------------------
126 Transaction Management
127 -------------------------------------------------------------------------- */
129 static inline u8
acpi_ec_read_status(struct acpi_ec
*ec
)
131 u8 x
= inb(ec
->command_addr
);
132 pr_debug(PREFIX
"---> status = 0x%2.2x\n", x
);
136 static inline u8
acpi_ec_read_data(struct acpi_ec
*ec
)
138 u8 x
= inb(ec
->data_addr
);
139 pr_debug(PREFIX
"---> data = 0x%2.2x\n", x
);
143 static inline void acpi_ec_write_cmd(struct acpi_ec
*ec
, u8 command
)
145 pr_debug(PREFIX
"<--- command = 0x%2.2x\n", command
);
146 outb(command
, ec
->command_addr
);
149 static inline void acpi_ec_write_data(struct acpi_ec
*ec
, u8 data
)
151 pr_debug(PREFIX
"<--- data = 0x%2.2x\n", data
);
152 outb(data
, ec
->data_addr
);
155 static int ec_transaction_done(struct acpi_ec
*ec
)
159 spin_lock_irqsave(&ec
->curr_lock
, flags
);
160 if (!ec
->curr
|| ec
->curr
->done
)
162 spin_unlock_irqrestore(&ec
->curr_lock
, flags
);
166 static void start_transaction(struct acpi_ec
*ec
)
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
);
173 static void gpe_transaction(struct acpi_ec
*ec
, u8 status
)
176 spin_lock_irqsave(&ec
->curr_lock
, flags
);
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
++]);
185 } else if (ec
->curr
->rlen
> ec
->curr
->ri
) {
186 if ((status
& ACPI_EC_FLAG_OBF
) == 1) {
187 ec
->curr
->rdata
[ec
->curr
->ri
++] = acpi_ec_read_data(ec
);
188 if (ec
->curr
->rlen
== ec
->curr
->ri
)
189 ec
->curr
->done
= true;
192 } else if (ec
->curr
->wlen
== ec
->curr
->wi
&&
193 (status
& ACPI_EC_FLAG_IBF
) == 0)
194 ec
->curr
->done
= true;
197 /* false interrupt, state didn't change */
199 ++ec
->curr
->irq_count
;
201 spin_unlock_irqrestore(&ec
->curr_lock
, flags
);
204 static int acpi_ec_wait(struct acpi_ec
*ec
)
206 if (wait_event_timeout(ec
->wait
, ec_transaction_done(ec
),
207 msecs_to_jiffies(ACPI_EC_DELAY
)))
209 /* try restart command if we get any false interrupts */
210 if (ec
->curr
->irq_count
&&
211 (acpi_ec_read_status(ec
) & ACPI_EC_FLAG_IBF
) == 0) {
212 pr_debug(PREFIX
"controller reset, restart transaction\n");
213 start_transaction(ec
);
214 if (wait_event_timeout(ec
->wait
, ec_transaction_done(ec
),
215 msecs_to_jiffies(ACPI_EC_DELAY
)))
218 /* missing GPEs, switch back to poll mode */
219 if (printk_ratelimit())
220 pr_info(PREFIX
"missing confirmations, "
221 "switch off interrupt mode.\n");
222 set_bit(EC_FLAGS_NO_GPE
, &ec
->flags
);
223 clear_bit(EC_FLAGS_GPE_MODE
, &ec
->flags
);
227 static void acpi_ec_gpe_query(void *ec_cxt
);
229 static int ec_check_sci(struct acpi_ec
*ec
, u8 state
)
231 if (state
& ACPI_EC_FLAG_SCI
) {
232 if (!test_and_set_bit(EC_FLAGS_QUERY_PENDING
, &ec
->flags
))
233 return acpi_os_execute(OSL_EC_BURST_HANDLER
,
234 acpi_ec_gpe_query
, ec
);
239 static void ec_delay(void)
241 /* EC in MSI notebooks don't tolerate delays other than 550 usec */
243 udelay(ACPI_EC_DELAY
);
245 /* Use shortest sleep available */
249 static int ec_poll(struct acpi_ec
*ec
)
251 unsigned long delay
= jiffies
+ msecs_to_jiffies(ACPI_EC_DELAY
);
252 udelay(ACPI_EC_CDELAY
);
253 while (time_before(jiffies
, delay
)) {
254 gpe_transaction(ec
, acpi_ec_read_status(ec
));
256 if (ec_transaction_done(ec
))
262 static int acpi_ec_transaction_unlocked(struct acpi_ec
*ec
,
263 struct transaction
*t
,
268 pr_debug(PREFIX
"transaction start\n");
269 /* disable GPE during transaction if storm is detected */
270 if (test_bit(EC_FLAGS_GPE_STORM
, &ec
->flags
)) {
271 clear_bit(EC_FLAGS_GPE_MODE
, &ec
->flags
);
272 acpi_disable_gpe(NULL
, ec
->gpe
);
275 udelay(ACPI_EC_DELAY
);
276 /* start transaction */
277 spin_lock_irqsave(&ec
->curr_lock
, tmp
);
278 /* following two actions should be kept atomic */
280 start_transaction(ec
);
281 if (ec
->curr
->command
== ACPI_EC_COMMAND_QUERY
)
282 clear_bit(EC_FLAGS_QUERY_PENDING
, &ec
->flags
);
283 spin_unlock_irqrestore(&ec
->curr_lock
, tmp
);
284 /* if we selected poll mode or failed in GPE-mode do a poll loop */
286 !test_bit(EC_FLAGS_GPE_MODE
, &ec
->flags
) ||
289 pr_debug(PREFIX
"transaction end\n");
290 spin_lock_irqsave(&ec
->curr_lock
, tmp
);
292 spin_unlock_irqrestore(&ec
->curr_lock
, tmp
);
293 if (test_bit(EC_FLAGS_GPE_STORM
, &ec
->flags
)) {
294 /* check if we received SCI during transaction */
295 ec_check_sci(ec
, acpi_ec_read_status(ec
));
296 /* it is safe to enable GPE outside of transaction */
297 acpi_enable_gpe(NULL
, ec
->gpe
);
298 } else if (test_bit(EC_FLAGS_GPE_MODE
, &ec
->flags
) &&
299 t
->irq_count
> ACPI_EC_STORM_THRESHOLD
) {
300 pr_info(PREFIX
"GPE storm detected, "
301 "transactions will use polling mode\n");
302 set_bit(EC_FLAGS_GPE_STORM
, &ec
->flags
);
307 static int ec_check_ibf0(struct acpi_ec
*ec
)
309 u8 status
= acpi_ec_read_status(ec
);
310 return (status
& ACPI_EC_FLAG_IBF
) == 0;
313 static int ec_wait_ibf0(struct acpi_ec
*ec
)
315 unsigned long delay
= jiffies
+ msecs_to_jiffies(ACPI_EC_DELAY
);
316 /* interrupt wait manually if GPE mode is not active */
317 unsigned long timeout
= test_bit(EC_FLAGS_GPE_MODE
, &ec
->flags
) ?
318 msecs_to_jiffies(ACPI_EC_DELAY
) : msecs_to_jiffies(1);
319 while (time_before(jiffies
, delay
))
320 if (wait_event_timeout(ec
->wait
, ec_check_ibf0(ec
), timeout
))
325 static int acpi_ec_transaction(struct acpi_ec
*ec
, struct transaction
*t
,
330 if (!ec
|| (!t
) || (t
->wlen
&& !t
->wdata
) || (t
->rlen
&& !t
->rdata
))
333 memset(t
->rdata
, 0, t
->rlen
);
334 mutex_lock(&ec
->lock
);
335 if (ec
->global_lock
) {
336 status
= acpi_acquire_global_lock(ACPI_EC_UDELAY_GLK
, &glk
);
337 if (ACPI_FAILURE(status
)) {
342 if (ec_wait_ibf0(ec
)) {
343 pr_err(PREFIX
"input buffer is not empty, "
344 "aborting transaction\n");
348 status
= acpi_ec_transaction_unlocked(ec
, t
, force_poll
);
351 acpi_release_global_lock(glk
);
353 mutex_unlock(&ec
->lock
);
358 * Note: samsung nv5000 doesn't work with ec burst mode.
359 * http://bugzilla.kernel.org/show_bug.cgi?id=4980
361 static int acpi_ec_burst_enable(struct acpi_ec
*ec
)
364 struct transaction t
= {.command
= ACPI_EC_BURST_ENABLE
,
365 .wdata
= NULL
, .rdata
= &d
,
366 .wlen
= 0, .rlen
= 1};
368 return acpi_ec_transaction(ec
, &t
, 0);
371 static int acpi_ec_burst_disable(struct acpi_ec
*ec
)
373 struct transaction t
= {.command
= ACPI_EC_BURST_DISABLE
,
374 .wdata
= NULL
, .rdata
= NULL
,
375 .wlen
= 0, .rlen
= 0};
377 return (acpi_ec_read_status(ec
) & ACPI_EC_FLAG_BURST
) ?
378 acpi_ec_transaction(ec
, &t
, 0) : 0;
381 static int acpi_ec_read(struct acpi_ec
*ec
, u8 address
, u8
* data
)
385 struct transaction t
= {.command
= ACPI_EC_COMMAND_READ
,
386 .wdata
= &address
, .rdata
= &d
,
387 .wlen
= 1, .rlen
= 1};
389 result
= acpi_ec_transaction(ec
, &t
, 0);
394 static int acpi_ec_write(struct acpi_ec
*ec
, u8 address
, u8 data
)
396 u8 wdata
[2] = { address
, data
};
397 struct transaction t
= {.command
= ACPI_EC_COMMAND_WRITE
,
398 .wdata
= wdata
, .rdata
= NULL
,
399 .wlen
= 2, .rlen
= 0};
401 return acpi_ec_transaction(ec
, &t
, 0);
405 * Externally callable EC access functions. For now, assume 1 EC only
407 int ec_burst_enable(void)
411 return acpi_ec_burst_enable(first_ec
);
414 EXPORT_SYMBOL(ec_burst_enable
);
416 int ec_burst_disable(void)
420 return acpi_ec_burst_disable(first_ec
);
423 EXPORT_SYMBOL(ec_burst_disable
);
425 int ec_read(u8 addr
, u8
* val
)
433 err
= acpi_ec_read(first_ec
, addr
, &temp_data
);
442 EXPORT_SYMBOL(ec_read
);
444 int ec_write(u8 addr
, u8 val
)
451 err
= acpi_ec_write(first_ec
, addr
, val
);
456 EXPORT_SYMBOL(ec_write
);
458 int ec_transaction(u8 command
,
459 const u8
* wdata
, unsigned wdata_len
,
460 u8
* rdata
, unsigned rdata_len
,
463 struct transaction t
= {.command
= command
,
464 .wdata
= wdata
, .rdata
= rdata
,
465 .wlen
= wdata_len
, .rlen
= rdata_len
};
469 return acpi_ec_transaction(first_ec
, &t
, force_poll
);
472 EXPORT_SYMBOL(ec_transaction
);
474 static int acpi_ec_query(struct acpi_ec
*ec
, u8
* data
)
478 struct transaction t
= {.command
= ACPI_EC_COMMAND_QUERY
,
479 .wdata
= NULL
, .rdata
= &d
,
480 .wlen
= 0, .rlen
= 1};
485 * Query the EC to find out which _Qxx method we need to evaluate.
486 * Note that successful completion of the query causes the ACPI_EC_SCI
487 * bit to be cleared (and thus clearing the interrupt source).
490 result
= acpi_ec_transaction(ec
, &t
, 0);
501 /* --------------------------------------------------------------------------
503 -------------------------------------------------------------------------- */
504 int acpi_ec_add_query_handler(struct acpi_ec
*ec
, u8 query_bit
,
505 acpi_handle handle
, acpi_ec_query_func func
,
508 struct acpi_ec_query_handler
*handler
=
509 kzalloc(sizeof(struct acpi_ec_query_handler
), GFP_KERNEL
);
513 handler
->query_bit
= query_bit
;
514 handler
->handle
= handle
;
515 handler
->func
= func
;
516 handler
->data
= data
;
517 mutex_lock(&ec
->lock
);
518 list_add(&handler
->node
, &ec
->list
);
519 mutex_unlock(&ec
->lock
);
523 EXPORT_SYMBOL_GPL(acpi_ec_add_query_handler
);
525 void acpi_ec_remove_query_handler(struct acpi_ec
*ec
, u8 query_bit
)
527 struct acpi_ec_query_handler
*handler
, *tmp
;
528 mutex_lock(&ec
->lock
);
529 list_for_each_entry_safe(handler
, tmp
, &ec
->list
, node
) {
530 if (query_bit
== handler
->query_bit
) {
531 list_del(&handler
->node
);
535 mutex_unlock(&ec
->lock
);
538 EXPORT_SYMBOL_GPL(acpi_ec_remove_query_handler
);
540 static void acpi_ec_gpe_query(void *ec_cxt
)
542 struct acpi_ec
*ec
= ec_cxt
;
544 struct acpi_ec_query_handler
*handler
, copy
;
546 if (!ec
|| acpi_ec_query(ec
, &value
))
548 mutex_lock(&ec
->lock
);
549 list_for_each_entry(handler
, &ec
->list
, node
) {
550 if (value
== handler
->query_bit
) {
551 /* have custom handler for this bit */
552 memcpy(©
, handler
, sizeof(copy
));
553 mutex_unlock(&ec
->lock
);
555 copy
.func(copy
.data
);
556 } else if (copy
.handle
) {
557 acpi_evaluate_object(copy
.handle
, NULL
, NULL
, NULL
);
562 mutex_unlock(&ec
->lock
);
565 static u32
acpi_ec_gpe_handler(void *data
)
567 struct acpi_ec
*ec
= data
;
570 pr_debug(PREFIX
"~~~> interrupt\n");
571 status
= acpi_ec_read_status(ec
);
573 if (test_bit(EC_FLAGS_GPE_MODE
, &ec
->flags
)) {
574 gpe_transaction(ec
, status
);
575 if (ec_transaction_done(ec
) &&
576 (status
& ACPI_EC_FLAG_IBF
) == 0)
580 ec_check_sci(ec
, status
);
581 if (!test_bit(EC_FLAGS_GPE_MODE
, &ec
->flags
) &&
582 !test_bit(EC_FLAGS_NO_GPE
, &ec
->flags
)) {
583 /* this is non-query, must be confirmation */
584 if (!test_bit(EC_FLAGS_GPE_STORM
, &ec
->flags
)) {
585 if (printk_ratelimit())
586 pr_info(PREFIX
"non-query interrupt received,"
587 " switching to interrupt mode\n");
589 /* hush, STORM switches the mode every transaction */
590 pr_debug(PREFIX
"non-query interrupt received,"
591 " switching to interrupt mode\n");
593 set_bit(EC_FLAGS_GPE_MODE
, &ec
->flags
);
595 return ACPI_INTERRUPT_HANDLED
;
598 /* --------------------------------------------------------------------------
599 Address Space Management
600 -------------------------------------------------------------------------- */
603 acpi_ec_space_handler(u32 function
, acpi_physical_address address
,
604 u32 bits
, acpi_integer
*value
,
605 void *handler_context
, void *region_context
)
607 struct acpi_ec
*ec
= handler_context
;
611 if ((address
> 0xFF) || !value
|| !handler_context
)
612 return AE_BAD_PARAMETER
;
614 if (function
!= ACPI_READ
&& function
!= ACPI_WRITE
)
615 return AE_BAD_PARAMETER
;
617 if (bits
!= 8 && acpi_strict
)
618 return AE_BAD_PARAMETER
;
620 acpi_ec_burst_enable(ec
);
622 if (function
== ACPI_READ
) {
623 result
= acpi_ec_read(ec
, address
, &temp
);
626 temp
= 0xff & (*value
);
627 result
= acpi_ec_write(ec
, address
, temp
);
630 for (i
= 8; unlikely(bits
- i
> 0); i
+= 8) {
632 if (function
== ACPI_READ
) {
633 result
= acpi_ec_read(ec
, address
, &temp
);
634 (*value
) |= ((acpi_integer
)temp
) << i
;
636 temp
= 0xff & ((*value
) >> i
);
637 result
= acpi_ec_write(ec
, address
, temp
);
641 acpi_ec_burst_disable(ec
);
645 return AE_BAD_PARAMETER
;
658 /* --------------------------------------------------------------------------
660 -------------------------------------------------------------------------- */
662 static struct proc_dir_entry
*acpi_ec_dir
;
664 static int acpi_ec_read_info(struct seq_file
*seq
, void *offset
)
666 struct acpi_ec
*ec
= seq
->private;
671 seq_printf(seq
, "gpe:\t\t\t0x%02x\n", (u32
) ec
->gpe
);
672 seq_printf(seq
, "ports:\t\t\t0x%02x, 0x%02x\n",
673 (unsigned)ec
->command_addr
, (unsigned)ec
->data_addr
);
674 seq_printf(seq
, "use global lock:\t%s\n",
675 ec
->global_lock
? "yes" : "no");
680 static int acpi_ec_info_open_fs(struct inode
*inode
, struct file
*file
)
682 return single_open(file
, acpi_ec_read_info
, PDE(inode
)->data
);
685 static const struct file_operations acpi_ec_info_ops
= {
686 .open
= acpi_ec_info_open_fs
,
689 .release
= single_release
,
690 .owner
= THIS_MODULE
,
693 static int acpi_ec_add_fs(struct acpi_device
*device
)
695 struct proc_dir_entry
*entry
= NULL
;
697 if (!acpi_device_dir(device
)) {
698 acpi_device_dir(device
) = proc_mkdir(acpi_device_bid(device
),
700 if (!acpi_device_dir(device
))
704 entry
= proc_create_data(ACPI_EC_FILE_INFO
, S_IRUGO
,
705 acpi_device_dir(device
),
706 &acpi_ec_info_ops
, acpi_driver_data(device
));
712 static int acpi_ec_remove_fs(struct acpi_device
*device
)
715 if (acpi_device_dir(device
)) {
716 remove_proc_entry(ACPI_EC_FILE_INFO
, acpi_device_dir(device
));
717 remove_proc_entry(acpi_device_bid(device
), acpi_ec_dir
);
718 acpi_device_dir(device
) = NULL
;
724 /* --------------------------------------------------------------------------
726 -------------------------------------------------------------------------- */
728 ec_parse_io_ports(struct acpi_resource
*resource
, void *context
);
730 static struct acpi_ec
*make_acpi_ec(void)
732 struct acpi_ec
*ec
= kzalloc(sizeof(struct acpi_ec
), GFP_KERNEL
);
735 ec
->flags
= 1 << EC_FLAGS_QUERY_PENDING
;
736 mutex_init(&ec
->lock
);
737 init_waitqueue_head(&ec
->wait
);
738 INIT_LIST_HEAD(&ec
->list
);
739 spin_lock_init(&ec
->curr_lock
);
744 acpi_ec_register_query_methods(acpi_handle handle
, u32 level
,
745 void *context
, void **return_value
)
748 struct acpi_buffer buffer
= { sizeof(node_name
), node_name
};
749 struct acpi_ec
*ec
= context
;
753 status
= acpi_get_name(handle
, ACPI_SINGLE_NAME
, &buffer
);
755 if (ACPI_SUCCESS(status
) && sscanf(node_name
, "_Q%x", &value
) == 1) {
756 acpi_ec_add_query_handler(ec
, value
, handle
, NULL
, NULL
);
762 ec_parse_device(acpi_handle handle
, u32 Level
, void *context
, void **retval
)
765 unsigned long long tmp
= 0;
767 struct acpi_ec
*ec
= context
;
769 /* clear addr values, ec_parse_io_ports depend on it */
770 ec
->command_addr
= ec
->data_addr
= 0;
772 status
= acpi_walk_resources(handle
, METHOD_NAME__CRS
,
773 ec_parse_io_ports
, ec
);
774 if (ACPI_FAILURE(status
))
777 /* Get GPE bit assignment (EC events). */
778 /* TODO: Add support for _GPE returning a package */
779 status
= acpi_evaluate_integer(handle
, "_GPE", NULL
, &tmp
);
780 if (ACPI_FAILURE(status
))
783 /* Use the global lock for all EC transactions? */
785 acpi_evaluate_integer(handle
, "_GLK", NULL
, &tmp
);
786 ec
->global_lock
= tmp
;
788 return AE_CTRL_TERMINATE
;
791 static void ec_remove_handlers(struct acpi_ec
*ec
)
793 if (ACPI_FAILURE(acpi_remove_address_space_handler(ec
->handle
,
794 ACPI_ADR_SPACE_EC
, &acpi_ec_space_handler
)))
795 pr_err(PREFIX
"failed to remove space handler\n");
796 if (ACPI_FAILURE(acpi_remove_gpe_handler(NULL
, ec
->gpe
,
797 &acpi_ec_gpe_handler
)))
798 pr_err(PREFIX
"failed to remove gpe handler\n");
799 clear_bit(EC_FLAGS_HANDLERS_INSTALLED
, &ec
->flags
);
802 static int acpi_ec_add(struct acpi_device
*device
)
804 struct acpi_ec
*ec
= NULL
;
808 strcpy(acpi_device_name(device
), ACPI_EC_DEVICE_NAME
);
809 strcpy(acpi_device_class(device
), ACPI_EC_CLASS
);
811 /* Check for boot EC */
813 (boot_ec
->handle
== device
->handle
||
814 boot_ec
->handle
== ACPI_ROOT_OBJECT
)) {
822 if (ec_parse_device(device
->handle
, 0, ec
, NULL
) !=
828 ec
->handle
= device
->handle
;
830 /* Find and register all query methods */
831 acpi_walk_namespace(ACPI_TYPE_METHOD
, ec
->handle
, 1,
832 acpi_ec_register_query_methods
, ec
, NULL
);
836 device
->driver_data
= ec
;
837 acpi_ec_add_fs(device
);
838 pr_info(PREFIX
"GPE = 0x%lx, I/O: command/status = 0x%lx, data = 0x%lx\n",
839 ec
->gpe
, ec
->command_addr
, ec
->data_addr
);
840 pr_info(PREFIX
"driver started in %s mode\n",
841 (test_bit(EC_FLAGS_GPE_MODE
, &ec
->flags
))?"interrupt":"poll");
845 static int acpi_ec_remove(struct acpi_device
*device
, int type
)
848 struct acpi_ec_query_handler
*handler
, *tmp
;
853 ec
= acpi_driver_data(device
);
854 mutex_lock(&ec
->lock
);
855 list_for_each_entry_safe(handler
, tmp
, &ec
->list
, node
) {
856 list_del(&handler
->node
);
859 mutex_unlock(&ec
->lock
);
860 acpi_ec_remove_fs(device
);
861 device
->driver_data
= NULL
;
869 ec_parse_io_ports(struct acpi_resource
*resource
, void *context
)
871 struct acpi_ec
*ec
= context
;
873 if (resource
->type
!= ACPI_RESOURCE_TYPE_IO
)
877 * The first address region returned is the data port, and
878 * the second address region returned is the status/command
881 if (ec
->data_addr
== 0)
882 ec
->data_addr
= resource
->data
.io
.minimum
;
883 else if (ec
->command_addr
== 0)
884 ec
->command_addr
= resource
->data
.io
.minimum
;
886 return AE_CTRL_TERMINATE
;
891 static int ec_install_handlers(struct acpi_ec
*ec
)
894 if (test_bit(EC_FLAGS_HANDLERS_INSTALLED
, &ec
->flags
))
896 status
= acpi_install_gpe_handler(NULL
, ec
->gpe
,
897 ACPI_GPE_EDGE_TRIGGERED
,
898 &acpi_ec_gpe_handler
, ec
);
899 if (ACPI_FAILURE(status
))
901 acpi_set_gpe_type(NULL
, ec
->gpe
, ACPI_GPE_TYPE_RUNTIME
);
902 acpi_enable_gpe(NULL
, ec
->gpe
);
903 status
= acpi_install_address_space_handler(ec
->handle
,
905 &acpi_ec_space_handler
,
907 if (ACPI_FAILURE(status
)) {
908 if (status
== AE_NOT_FOUND
) {
910 * Maybe OS fails in evaluating the _REG object.
911 * The AE_NOT_FOUND error will be ignored and OS
912 * continue to initialize EC.
914 printk(KERN_ERR
"Fail in evaluating the _REG object"
915 " of EC device. Broken bios is suspected.\n");
917 acpi_remove_gpe_handler(NULL
, ec
->gpe
,
918 &acpi_ec_gpe_handler
);
923 set_bit(EC_FLAGS_HANDLERS_INSTALLED
, &ec
->flags
);
927 static int acpi_ec_start(struct acpi_device
*device
)
935 ec
= acpi_driver_data(device
);
940 ret
= ec_install_handlers(ec
);
942 /* EC is fully operational, allow queries */
943 clear_bit(EC_FLAGS_QUERY_PENDING
, &ec
->flags
);
947 static int acpi_ec_stop(struct acpi_device
*device
, int type
)
952 ec
= acpi_driver_data(device
);
955 ec_remove_handlers(ec
);
960 int __init
acpi_boot_ec_enable(void)
962 if (!boot_ec
|| test_bit(EC_FLAGS_HANDLERS_INSTALLED
, &boot_ec
->flags
))
964 if (!ec_install_handlers(boot_ec
)) {
971 static const struct acpi_device_id ec_device_ids
[] = {
976 int __init
acpi_ec_ecdt_probe(void)
979 struct acpi_ec
*saved_ec
= NULL
;
980 struct acpi_table_ecdt
*ecdt_ptr
;
982 boot_ec
= make_acpi_ec();
986 * Generate a boot ec context
988 if (dmi_name_in_vendors("Micro-Star") ||
989 dmi_name_in_vendors("Notebook")) {
990 pr_info(PREFIX
"Enabling special treatment for EC from MSI.\n");
993 status
= acpi_get_table(ACPI_SIG_ECDT
, 1,
994 (struct acpi_table_header
**)&ecdt_ptr
);
995 if (ACPI_SUCCESS(status
)) {
996 pr_info(PREFIX
"EC description table is found, configuring boot EC\n");
997 boot_ec
->command_addr
= ecdt_ptr
->control
.address
;
998 boot_ec
->data_addr
= ecdt_ptr
->data
.address
;
999 boot_ec
->gpe
= ecdt_ptr
->gpe
;
1000 boot_ec
->handle
= ACPI_ROOT_OBJECT
;
1001 acpi_get_handle(ACPI_ROOT_OBJECT
, ecdt_ptr
->id
, &boot_ec
->handle
);
1002 /* Don't trust ECDT, which comes from ASUSTek */
1003 if (!dmi_name_in_vendors("ASUS") && EC_FLAGS_MSI
== 0)
1005 saved_ec
= kmalloc(sizeof(struct acpi_ec
), GFP_KERNEL
);
1008 memcpy(saved_ec
, boot_ec
, sizeof(struct acpi_ec
));
1011 /* This workaround is needed only on some broken machines,
1012 * which require early EC, but fail to provide ECDT */
1013 printk(KERN_DEBUG PREFIX
"Look up EC in DSDT\n");
1014 status
= acpi_get_devices(ec_device_ids
[0].id
, ec_parse_device
,
1016 /* Check that acpi_get_devices actually find something */
1017 if (ACPI_FAILURE(status
) || !boot_ec
->handle
)
1020 /* try to find good ECDT from ASUSTek */
1021 if (saved_ec
->command_addr
!= boot_ec
->command_addr
||
1022 saved_ec
->data_addr
!= boot_ec
->data_addr
||
1023 saved_ec
->gpe
!= boot_ec
->gpe
||
1024 saved_ec
->handle
!= boot_ec
->handle
)
1025 pr_info(PREFIX
"ASUSTek keeps feeding us with broken "
1026 "ECDT tables, which are very hard to workaround. "
1027 "Trying to use DSDT EC info instead. Please send "
1028 "output of acpidump to linux-acpi@vger.kernel.org\n");
1032 /* We really need to limit this workaround, the only ASUS,
1033 * which needs it, has fake EC._INI method, so use it as flag.
1034 * Keep boot_ec struct as it will be needed soon.
1037 if (!dmi_name_in_vendors("ASUS") ||
1038 ACPI_FAILURE(acpi_get_handle(boot_ec
->handle
, "_INI",
1043 if (!ec_install_handlers(boot_ec
)) {
1053 static int acpi_ec_suspend(struct acpi_device
*device
, pm_message_t state
)
1055 struct acpi_ec
*ec
= acpi_driver_data(device
);
1056 /* Stop using GPE */
1057 set_bit(EC_FLAGS_NO_GPE
, &ec
->flags
);
1058 clear_bit(EC_FLAGS_GPE_MODE
, &ec
->flags
);
1059 acpi_disable_gpe(NULL
, ec
->gpe
);
1063 static int acpi_ec_resume(struct acpi_device
*device
)
1065 struct acpi_ec
*ec
= acpi_driver_data(device
);
1066 /* Enable use of GPE back */
1067 clear_bit(EC_FLAGS_NO_GPE
, &ec
->flags
);
1068 acpi_enable_gpe(NULL
, ec
->gpe
);
1072 static struct acpi_driver acpi_ec_driver
= {
1074 .class = ACPI_EC_CLASS
,
1075 .ids
= ec_device_ids
,
1078 .remove
= acpi_ec_remove
,
1079 .start
= acpi_ec_start
,
1080 .stop
= acpi_ec_stop
,
1081 .suspend
= acpi_ec_suspend
,
1082 .resume
= acpi_ec_resume
,
1086 int __init
acpi_ec_init(void)
1090 acpi_ec_dir
= proc_mkdir(ACPI_EC_CLASS
, acpi_root_dir
);
1094 /* Now register the driver for the EC */
1095 result
= acpi_bus_register_driver(&acpi_ec_driver
);
1097 remove_proc_entry(ACPI_EC_CLASS
, acpi_root_dir
);
1104 /* EC driver currently not unloadable */
1106 static void __exit
acpi_ec_exit(void)
1109 acpi_bus_unregister_driver(&acpi_ec_driver
);
1111 remove_proc_entry(ACPI_EC_CLASS
, acpi_root_dir
);