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/interrupt.h>
38 #include <linux/list.h>
39 #include <linux/spinlock.h>
40 #include <linux/slab.h>
42 #include <acpi/acpi_bus.h>
43 #include <acpi/acpi_drivers.h>
44 #include <linux/dmi.h>
48 #define ACPI_EC_CLASS "embedded_controller"
49 #define ACPI_EC_DEVICE_NAME "Embedded Controller"
50 #define ACPI_EC_FILE_INFO "info"
53 #define PREFIX "ACPI: EC: "
55 /* EC status register */
56 #define ACPI_EC_FLAG_OBF 0x01 /* Output buffer full */
57 #define ACPI_EC_FLAG_IBF 0x02 /* Input buffer full */
58 #define ACPI_EC_FLAG_BURST 0x10 /* burst mode */
59 #define ACPI_EC_FLAG_SCI 0x20 /* EC-SCI occurred */
63 ACPI_EC_COMMAND_READ
= 0x80,
64 ACPI_EC_COMMAND_WRITE
= 0x81,
65 ACPI_EC_BURST_ENABLE
= 0x82,
66 ACPI_EC_BURST_DISABLE
= 0x83,
67 ACPI_EC_COMMAND_QUERY
= 0x84,
70 #define ACPI_EC_DELAY 500 /* Wait 500ms max. during EC ops */
71 #define ACPI_EC_UDELAY_GLK 1000 /* Wait 1ms max. to get global lock */
72 #define ACPI_EC_CDELAY 10 /* Wait 10us before polling EC */
73 #define ACPI_EC_MSI_UDELAY 550 /* Wait 550us for MSI EC */
75 #define ACPI_EC_STORM_THRESHOLD 8 /* number of false interrupts
76 per one transaction */
79 EC_FLAGS_QUERY_PENDING
, /* Query is pending */
80 EC_FLAGS_GPE_STORM
, /* GPE storm detected */
81 EC_FLAGS_HANDLERS_INSTALLED
, /* Handlers for GPE and
82 * OpReg are installed */
83 EC_FLAGS_BLOCKED
, /* Transactions are blocked */
86 /* ec.c is compiled in acpi namespace so this shows up as acpi.ec_delay param */
87 static unsigned int ec_delay __read_mostly
= ACPI_EC_DELAY
;
88 module_param(ec_delay
, uint
, 0644);
89 MODULE_PARM_DESC(ec_delay
, "Timeout(ms) waited until an EC command completes");
91 /* If we find an EC via the ECDT, we need to keep a ptr to its context */
92 /* External interfaces use first EC only, so remember */
93 typedef int (*acpi_ec_query_func
) (void *data
);
95 struct acpi_ec_query_handler
{
96 struct list_head node
;
97 acpi_ec_query_func func
;
106 unsigned short irq_count
;
115 struct acpi_ec
*boot_ec
, *first_ec
;
116 EXPORT_SYMBOL(first_ec
);
118 static int EC_FLAGS_MSI
; /* Out-of-spec MSI controller */
119 static int EC_FLAGS_VALIDATE_ECDT
; /* ASUStec ECDTs need to be validated */
120 static int EC_FLAGS_SKIP_DSDT_SCAN
; /* Not all BIOS survive early DSDT scan */
122 /* --------------------------------------------------------------------------
123 Transaction Management
124 -------------------------------------------------------------------------- */
126 static inline u8
acpi_ec_read_status(struct acpi_ec
*ec
)
128 u8 x
= inb(ec
->command_addr
);
129 pr_debug(PREFIX
"---> status = 0x%2.2x\n", x
);
133 static inline u8
acpi_ec_read_data(struct acpi_ec
*ec
)
135 u8 x
= inb(ec
->data_addr
);
136 pr_debug(PREFIX
"---> data = 0x%2.2x\n", x
);
140 static inline void acpi_ec_write_cmd(struct acpi_ec
*ec
, u8 command
)
142 pr_debug(PREFIX
"<--- command = 0x%2.2x\n", command
);
143 outb(command
, ec
->command_addr
);
146 static inline void acpi_ec_write_data(struct acpi_ec
*ec
, u8 data
)
148 pr_debug(PREFIX
"<--- data = 0x%2.2x\n", data
);
149 outb(data
, ec
->data_addr
);
152 static int ec_transaction_done(struct acpi_ec
*ec
)
156 spin_lock_irqsave(&ec
->curr_lock
, flags
);
157 if (!ec
->curr
|| ec
->curr
->done
)
159 spin_unlock_irqrestore(&ec
->curr_lock
, flags
);
163 static void start_transaction(struct acpi_ec
*ec
)
165 ec
->curr
->irq_count
= ec
->curr
->wi
= ec
->curr
->ri
= 0;
166 ec
->curr
->done
= false;
167 acpi_ec_write_cmd(ec
, ec
->curr
->command
);
170 static void advance_transaction(struct acpi_ec
*ec
, u8 status
)
173 spin_lock_irqsave(&ec
->curr_lock
, flags
);
176 if (ec
->curr
->wlen
> ec
->curr
->wi
) {
177 if ((status
& ACPI_EC_FLAG_IBF
) == 0)
178 acpi_ec_write_data(ec
,
179 ec
->curr
->wdata
[ec
->curr
->wi
++]);
182 } else if (ec
->curr
->rlen
> ec
->curr
->ri
) {
183 if ((status
& ACPI_EC_FLAG_OBF
) == 1) {
184 ec
->curr
->rdata
[ec
->curr
->ri
++] = acpi_ec_read_data(ec
);
185 if (ec
->curr
->rlen
== ec
->curr
->ri
)
186 ec
->curr
->done
= true;
189 } else if (ec
->curr
->wlen
== ec
->curr
->wi
&&
190 (status
& ACPI_EC_FLAG_IBF
) == 0)
191 ec
->curr
->done
= true;
194 /* false interrupt, state didn't change */
196 ++ec
->curr
->irq_count
;
198 spin_unlock_irqrestore(&ec
->curr_lock
, flags
);
201 static int acpi_ec_sync_query(struct acpi_ec
*ec
);
203 static int ec_check_sci_sync(struct acpi_ec
*ec
, u8 state
)
205 if (state
& ACPI_EC_FLAG_SCI
) {
206 if (!test_and_set_bit(EC_FLAGS_QUERY_PENDING
, &ec
->flags
))
207 return acpi_ec_sync_query(ec
);
212 static int ec_poll(struct acpi_ec
*ec
)
215 int repeat
= 2; /* number of command restarts */
217 unsigned long delay
= jiffies
+
218 msecs_to_jiffies(ec_delay
);
220 /* don't sleep with disabled interrupts */
221 if (EC_FLAGS_MSI
|| irqs_disabled()) {
222 udelay(ACPI_EC_MSI_UDELAY
);
223 if (ec_transaction_done(ec
))
226 if (wait_event_timeout(ec
->wait
,
227 ec_transaction_done(ec
),
228 msecs_to_jiffies(1)))
231 advance_transaction(ec
, acpi_ec_read_status(ec
));
232 } while (time_before(jiffies
, delay
));
233 if (acpi_ec_read_status(ec
) & ACPI_EC_FLAG_IBF
)
235 pr_debug(PREFIX
"controller reset, restart transaction\n");
236 spin_lock_irqsave(&ec
->curr_lock
, flags
);
237 start_transaction(ec
);
238 spin_unlock_irqrestore(&ec
->curr_lock
, flags
);
243 static int acpi_ec_transaction_unlocked(struct acpi_ec
*ec
,
244 struct transaction
*t
)
249 udelay(ACPI_EC_MSI_UDELAY
);
250 /* start transaction */
251 spin_lock_irqsave(&ec
->curr_lock
, tmp
);
252 /* following two actions should be kept atomic */
254 start_transaction(ec
);
255 if (ec
->curr
->command
== ACPI_EC_COMMAND_QUERY
)
256 clear_bit(EC_FLAGS_QUERY_PENDING
, &ec
->flags
);
257 spin_unlock_irqrestore(&ec
->curr_lock
, tmp
);
259 spin_lock_irqsave(&ec
->curr_lock
, tmp
);
261 spin_unlock_irqrestore(&ec
->curr_lock
, tmp
);
265 static int ec_check_ibf0(struct acpi_ec
*ec
)
267 u8 status
= acpi_ec_read_status(ec
);
268 return (status
& ACPI_EC_FLAG_IBF
) == 0;
271 static int ec_wait_ibf0(struct acpi_ec
*ec
)
273 unsigned long delay
= jiffies
+ msecs_to_jiffies(ec_delay
);
274 /* interrupt wait manually if GPE mode is not active */
275 while (time_before(jiffies
, delay
))
276 if (wait_event_timeout(ec
->wait
, ec_check_ibf0(ec
),
277 msecs_to_jiffies(1)))
282 static int acpi_ec_transaction(struct acpi_ec
*ec
, struct transaction
*t
)
286 if (!ec
|| (!t
) || (t
->wlen
&& !t
->wdata
) || (t
->rlen
&& !t
->rdata
))
289 memset(t
->rdata
, 0, t
->rlen
);
290 mutex_lock(&ec
->lock
);
291 if (test_bit(EC_FLAGS_BLOCKED
, &ec
->flags
)) {
295 if (ec
->global_lock
) {
296 status
= acpi_acquire_global_lock(ACPI_EC_UDELAY_GLK
, &glk
);
297 if (ACPI_FAILURE(status
)) {
302 if (ec_wait_ibf0(ec
)) {
303 pr_err(PREFIX
"input buffer is not empty, "
304 "aborting transaction\n");
308 pr_debug(PREFIX
"transaction start\n");
309 /* disable GPE during transaction if storm is detected */
310 if (test_bit(EC_FLAGS_GPE_STORM
, &ec
->flags
)) {
311 /* It has to be disabled, so that it doesn't trigger. */
312 acpi_disable_gpe(NULL
, ec
->gpe
);
315 status
= acpi_ec_transaction_unlocked(ec
, t
);
317 /* check if we received SCI during transaction */
318 ec_check_sci_sync(ec
, acpi_ec_read_status(ec
));
319 if (test_bit(EC_FLAGS_GPE_STORM
, &ec
->flags
)) {
321 /* It is safe to enable the GPE outside of the transaction. */
322 acpi_enable_gpe(NULL
, ec
->gpe
);
323 } else if (t
->irq_count
> ACPI_EC_STORM_THRESHOLD
) {
324 pr_info(PREFIX
"GPE storm detected, "
325 "transactions will use polling mode\n");
326 set_bit(EC_FLAGS_GPE_STORM
, &ec
->flags
);
328 pr_debug(PREFIX
"transaction end\n");
331 acpi_release_global_lock(glk
);
333 mutex_unlock(&ec
->lock
);
337 static int acpi_ec_burst_enable(struct acpi_ec
*ec
)
340 struct transaction t
= {.command
= ACPI_EC_BURST_ENABLE
,
341 .wdata
= NULL
, .rdata
= &d
,
342 .wlen
= 0, .rlen
= 1};
344 return acpi_ec_transaction(ec
, &t
);
347 static int acpi_ec_burst_disable(struct acpi_ec
*ec
)
349 struct transaction t
= {.command
= ACPI_EC_BURST_DISABLE
,
350 .wdata
= NULL
, .rdata
= NULL
,
351 .wlen
= 0, .rlen
= 0};
353 return (acpi_ec_read_status(ec
) & ACPI_EC_FLAG_BURST
) ?
354 acpi_ec_transaction(ec
, &t
) : 0;
357 static int acpi_ec_read(struct acpi_ec
*ec
, u8 address
, u8
* data
)
361 struct transaction t
= {.command
= ACPI_EC_COMMAND_READ
,
362 .wdata
= &address
, .rdata
= &d
,
363 .wlen
= 1, .rlen
= 1};
365 result
= acpi_ec_transaction(ec
, &t
);
370 static int acpi_ec_write(struct acpi_ec
*ec
, u8 address
, u8 data
)
372 u8 wdata
[2] = { address
, data
};
373 struct transaction t
= {.command
= ACPI_EC_COMMAND_WRITE
,
374 .wdata
= wdata
, .rdata
= NULL
,
375 .wlen
= 2, .rlen
= 0};
377 return acpi_ec_transaction(ec
, &t
);
381 * Externally callable EC access functions. For now, assume 1 EC only
383 int ec_burst_enable(void)
387 return acpi_ec_burst_enable(first_ec
);
390 EXPORT_SYMBOL(ec_burst_enable
);
392 int ec_burst_disable(void)
396 return acpi_ec_burst_disable(first_ec
);
399 EXPORT_SYMBOL(ec_burst_disable
);
401 int ec_read(u8 addr
, u8
* val
)
409 err
= acpi_ec_read(first_ec
, addr
, &temp_data
);
418 EXPORT_SYMBOL(ec_read
);
420 int ec_write(u8 addr
, u8 val
)
427 err
= acpi_ec_write(first_ec
, addr
, val
);
432 EXPORT_SYMBOL(ec_write
);
434 int ec_transaction(u8 command
,
435 const u8
* wdata
, unsigned wdata_len
,
436 u8
* rdata
, unsigned rdata_len
,
439 struct transaction t
= {.command
= command
,
440 .wdata
= wdata
, .rdata
= rdata
,
441 .wlen
= wdata_len
, .rlen
= rdata_len
};
445 return acpi_ec_transaction(first_ec
, &t
);
448 EXPORT_SYMBOL(ec_transaction
);
450 void acpi_ec_block_transactions(void)
452 struct acpi_ec
*ec
= first_ec
;
457 mutex_lock(&ec
->lock
);
458 /* Prevent transactions from being carried out */
459 set_bit(EC_FLAGS_BLOCKED
, &ec
->flags
);
460 mutex_unlock(&ec
->lock
);
463 void acpi_ec_unblock_transactions(void)
465 struct acpi_ec
*ec
= first_ec
;
470 mutex_lock(&ec
->lock
);
471 /* Allow transactions to be carried out again */
472 clear_bit(EC_FLAGS_BLOCKED
, &ec
->flags
);
473 mutex_unlock(&ec
->lock
);
476 void acpi_ec_unblock_transactions_early(void)
479 * Allow transactions to happen again (this function is called from
480 * atomic context during wakeup, so we don't need to acquire the mutex).
483 clear_bit(EC_FLAGS_BLOCKED
, &first_ec
->flags
);
486 static int acpi_ec_query_unlocked(struct acpi_ec
*ec
, u8
* data
)
490 struct transaction t
= {.command
= ACPI_EC_COMMAND_QUERY
,
491 .wdata
= NULL
, .rdata
= &d
,
492 .wlen
= 0, .rlen
= 1};
496 * Query the EC to find out which _Qxx method we need to evaluate.
497 * Note that successful completion of the query causes the ACPI_EC_SCI
498 * bit to be cleared (and thus clearing the interrupt source).
500 result
= acpi_ec_transaction_unlocked(ec
, &t
);
509 /* --------------------------------------------------------------------------
511 -------------------------------------------------------------------------- */
512 int acpi_ec_add_query_handler(struct acpi_ec
*ec
, u8 query_bit
,
513 acpi_handle handle
, acpi_ec_query_func func
,
516 struct acpi_ec_query_handler
*handler
=
517 kzalloc(sizeof(struct acpi_ec_query_handler
), GFP_KERNEL
);
521 handler
->query_bit
= query_bit
;
522 handler
->handle
= handle
;
523 handler
->func
= func
;
524 handler
->data
= data
;
525 mutex_lock(&ec
->lock
);
526 list_add(&handler
->node
, &ec
->list
);
527 mutex_unlock(&ec
->lock
);
531 EXPORT_SYMBOL_GPL(acpi_ec_add_query_handler
);
533 void acpi_ec_remove_query_handler(struct acpi_ec
*ec
, u8 query_bit
)
535 struct acpi_ec_query_handler
*handler
, *tmp
;
536 mutex_lock(&ec
->lock
);
537 list_for_each_entry_safe(handler
, tmp
, &ec
->list
, node
) {
538 if (query_bit
== handler
->query_bit
) {
539 list_del(&handler
->node
);
543 mutex_unlock(&ec
->lock
);
546 EXPORT_SYMBOL_GPL(acpi_ec_remove_query_handler
);
548 static void acpi_ec_run(void *cxt
)
550 struct acpi_ec_query_handler
*handler
= cxt
;
553 pr_debug(PREFIX
"start query execution\n");
555 handler
->func(handler
->data
);
556 else if (handler
->handle
)
557 acpi_evaluate_object(handler
->handle
, NULL
, NULL
, NULL
);
558 pr_debug(PREFIX
"stop query execution\n");
562 static int acpi_ec_sync_query(struct acpi_ec
*ec
)
566 struct acpi_ec_query_handler
*handler
, *copy
;
567 if ((status
= acpi_ec_query_unlocked(ec
, &value
)))
569 list_for_each_entry(handler
, &ec
->list
, node
) {
570 if (value
== handler
->query_bit
) {
571 /* have custom handler for this bit */
572 copy
= kmalloc(sizeof(*handler
), GFP_KERNEL
);
575 memcpy(copy
, handler
, sizeof(*copy
));
576 pr_debug(PREFIX
"push query execution (0x%2x) on queue\n", value
);
577 return acpi_os_execute((copy
->func
) ?
578 OSL_NOTIFY_HANDLER
: OSL_GPE_HANDLER
,
585 static void acpi_ec_gpe_query(void *ec_cxt
)
587 struct acpi_ec
*ec
= ec_cxt
;
590 mutex_lock(&ec
->lock
);
591 acpi_ec_sync_query(ec
);
592 mutex_unlock(&ec
->lock
);
595 static void acpi_ec_gpe_query(void *ec_cxt
);
597 static int ec_check_sci(struct acpi_ec
*ec
, u8 state
)
599 if (state
& ACPI_EC_FLAG_SCI
) {
600 if (!test_and_set_bit(EC_FLAGS_QUERY_PENDING
, &ec
->flags
)) {
601 pr_debug(PREFIX
"push gpe query to the queue\n");
602 return acpi_os_execute(OSL_NOTIFY_HANDLER
,
603 acpi_ec_gpe_query
, ec
);
609 static u32
acpi_ec_gpe_handler(acpi_handle gpe_device
,
610 u32 gpe_number
, void *data
)
612 struct acpi_ec
*ec
= data
;
614 pr_debug(PREFIX
"~~~> interrupt\n");
616 advance_transaction(ec
, acpi_ec_read_status(ec
));
617 if (ec_transaction_done(ec
) &&
618 (acpi_ec_read_status(ec
) & ACPI_EC_FLAG_IBF
) == 0) {
620 ec_check_sci(ec
, acpi_ec_read_status(ec
));
622 return ACPI_INTERRUPT_HANDLED
| ACPI_REENABLE_GPE
;
625 /* --------------------------------------------------------------------------
626 Address Space Management
627 -------------------------------------------------------------------------- */
630 acpi_ec_space_handler(u32 function
, acpi_physical_address address
,
631 u32 bits
, u64
*value64
,
632 void *handler_context
, void *region_context
)
634 struct acpi_ec
*ec
= handler_context
;
635 int result
= 0, i
, bytes
= bits
/ 8;
636 u8
*value
= (u8
*)value64
;
638 if ((address
> 0xFF) || !value
|| !handler_context
)
639 return AE_BAD_PARAMETER
;
641 if (function
!= ACPI_READ
&& function
!= ACPI_WRITE
)
642 return AE_BAD_PARAMETER
;
644 if (EC_FLAGS_MSI
|| bits
> 8)
645 acpi_ec_burst_enable(ec
);
647 for (i
= 0; i
< bytes
; ++i
, ++address
, ++value
)
648 result
= (function
== ACPI_READ
) ?
649 acpi_ec_read(ec
, address
, value
) :
650 acpi_ec_write(ec
, address
, *value
);
652 if (EC_FLAGS_MSI
|| bits
> 8)
653 acpi_ec_burst_disable(ec
);
657 return AE_BAD_PARAMETER
;
670 /* --------------------------------------------------------------------------
672 -------------------------------------------------------------------------- */
674 ec_parse_io_ports(struct acpi_resource
*resource
, void *context
);
676 static struct acpi_ec
*make_acpi_ec(void)
678 struct acpi_ec
*ec
= kzalloc(sizeof(struct acpi_ec
), GFP_KERNEL
);
681 ec
->flags
= 1 << EC_FLAGS_QUERY_PENDING
;
682 mutex_init(&ec
->lock
);
683 init_waitqueue_head(&ec
->wait
);
684 INIT_LIST_HEAD(&ec
->list
);
685 spin_lock_init(&ec
->curr_lock
);
690 acpi_ec_register_query_methods(acpi_handle handle
, u32 level
,
691 void *context
, void **return_value
)
694 struct acpi_buffer buffer
= { sizeof(node_name
), node_name
};
695 struct acpi_ec
*ec
= context
;
699 status
= acpi_get_name(handle
, ACPI_SINGLE_NAME
, &buffer
);
701 if (ACPI_SUCCESS(status
) && sscanf(node_name
, "_Q%x", &value
) == 1) {
702 acpi_ec_add_query_handler(ec
, value
, handle
, NULL
, NULL
);
708 ec_parse_device(acpi_handle handle
, u32 Level
, void *context
, void **retval
)
711 unsigned long long tmp
= 0;
713 struct acpi_ec
*ec
= context
;
715 /* clear addr values, ec_parse_io_ports depend on it */
716 ec
->command_addr
= ec
->data_addr
= 0;
718 status
= acpi_walk_resources(handle
, METHOD_NAME__CRS
,
719 ec_parse_io_ports
, ec
);
720 if (ACPI_FAILURE(status
))
723 /* Get GPE bit assignment (EC events). */
724 /* TODO: Add support for _GPE returning a package */
725 status
= acpi_evaluate_integer(handle
, "_GPE", NULL
, &tmp
);
726 if (ACPI_FAILURE(status
))
729 /* Use the global lock for all EC transactions? */
731 acpi_evaluate_integer(handle
, "_GLK", NULL
, &tmp
);
732 ec
->global_lock
= tmp
;
734 return AE_CTRL_TERMINATE
;
737 static int ec_install_handlers(struct acpi_ec
*ec
)
740 if (test_bit(EC_FLAGS_HANDLERS_INSTALLED
, &ec
->flags
))
742 status
= acpi_install_gpe_handler(NULL
, ec
->gpe
,
743 ACPI_GPE_EDGE_TRIGGERED
,
744 &acpi_ec_gpe_handler
, ec
);
745 if (ACPI_FAILURE(status
))
748 acpi_enable_gpe(NULL
, ec
->gpe
);
749 status
= acpi_install_address_space_handler(ec
->handle
,
751 &acpi_ec_space_handler
,
753 if (ACPI_FAILURE(status
)) {
754 if (status
== AE_NOT_FOUND
) {
756 * Maybe OS fails in evaluating the _REG object.
757 * The AE_NOT_FOUND error will be ignored and OS
758 * continue to initialize EC.
760 printk(KERN_ERR
"Fail in evaluating the _REG object"
761 " of EC device. Broken bios is suspected.\n");
763 acpi_remove_gpe_handler(NULL
, ec
->gpe
,
764 &acpi_ec_gpe_handler
);
765 acpi_disable_gpe(NULL
, ec
->gpe
);
770 set_bit(EC_FLAGS_HANDLERS_INSTALLED
, &ec
->flags
);
774 static void ec_remove_handlers(struct acpi_ec
*ec
)
776 acpi_disable_gpe(NULL
, ec
->gpe
);
777 if (ACPI_FAILURE(acpi_remove_address_space_handler(ec
->handle
,
778 ACPI_ADR_SPACE_EC
, &acpi_ec_space_handler
)))
779 pr_err(PREFIX
"failed to remove space handler\n");
780 if (ACPI_FAILURE(acpi_remove_gpe_handler(NULL
, ec
->gpe
,
781 &acpi_ec_gpe_handler
)))
782 pr_err(PREFIX
"failed to remove gpe handler\n");
783 clear_bit(EC_FLAGS_HANDLERS_INSTALLED
, &ec
->flags
);
786 static int acpi_ec_add(struct acpi_device
*device
)
788 struct acpi_ec
*ec
= NULL
;
791 strcpy(acpi_device_name(device
), ACPI_EC_DEVICE_NAME
);
792 strcpy(acpi_device_class(device
), ACPI_EC_CLASS
);
794 /* Check for boot EC */
796 (boot_ec
->handle
== device
->handle
||
797 boot_ec
->handle
== ACPI_ROOT_OBJECT
)) {
805 if (ec_parse_device(device
->handle
, 0, ec
, NULL
) !=
811 ec
->handle
= device
->handle
;
813 /* Find and register all query methods */
814 acpi_walk_namespace(ACPI_TYPE_METHOD
, ec
->handle
, 1,
815 acpi_ec_register_query_methods
, NULL
, ec
, NULL
);
819 device
->driver_data
= ec
;
821 WARN(!request_region(ec
->data_addr
, 1, "EC data"),
822 "Could not request EC data io port 0x%lx", ec
->data_addr
);
823 WARN(!request_region(ec
->command_addr
, 1, "EC cmd"),
824 "Could not request EC cmd io port 0x%lx", ec
->command_addr
);
826 pr_info(PREFIX
"GPE = 0x%lx, I/O: command/status = 0x%lx, data = 0x%lx\n",
827 ec
->gpe
, ec
->command_addr
, ec
->data_addr
);
829 ret
= ec_install_handlers(ec
);
831 /* EC is fully operational, allow queries */
832 clear_bit(EC_FLAGS_QUERY_PENDING
, &ec
->flags
);
836 static int acpi_ec_remove(struct acpi_device
*device
, int type
)
839 struct acpi_ec_query_handler
*handler
, *tmp
;
844 ec
= acpi_driver_data(device
);
845 ec_remove_handlers(ec
);
846 mutex_lock(&ec
->lock
);
847 list_for_each_entry_safe(handler
, tmp
, &ec
->list
, node
) {
848 list_del(&handler
->node
);
851 mutex_unlock(&ec
->lock
);
852 release_region(ec
->data_addr
, 1);
853 release_region(ec
->command_addr
, 1);
854 device
->driver_data
= NULL
;
862 ec_parse_io_ports(struct acpi_resource
*resource
, void *context
)
864 struct acpi_ec
*ec
= context
;
866 if (resource
->type
!= ACPI_RESOURCE_TYPE_IO
)
870 * The first address region returned is the data port, and
871 * the second address region returned is the status/command
874 if (ec
->data_addr
== 0)
875 ec
->data_addr
= resource
->data
.io
.minimum
;
876 else if (ec
->command_addr
== 0)
877 ec
->command_addr
= resource
->data
.io
.minimum
;
879 return AE_CTRL_TERMINATE
;
884 int __init
acpi_boot_ec_enable(void)
886 if (!boot_ec
|| test_bit(EC_FLAGS_HANDLERS_INSTALLED
, &boot_ec
->flags
))
888 if (!ec_install_handlers(boot_ec
)) {
895 static const struct acpi_device_id ec_device_ids
[] = {
900 /* Some BIOS do not survive early DSDT scan, skip it */
901 static int ec_skip_dsdt_scan(const struct dmi_system_id
*id
)
903 EC_FLAGS_SKIP_DSDT_SCAN
= 1;
907 /* ASUStek often supplies us with broken ECDT, validate it */
908 static int ec_validate_ecdt(const struct dmi_system_id
*id
)
910 EC_FLAGS_VALIDATE_ECDT
= 1;
914 /* MSI EC needs special treatment, enable it */
915 static int ec_flag_msi(const struct dmi_system_id
*id
)
917 printk(KERN_DEBUG PREFIX
"Detected MSI hardware, enabling workarounds.\n");
919 EC_FLAGS_VALIDATE_ECDT
= 1;
923 static struct dmi_system_id __initdata ec_dmi_table
[] = {
925 ec_skip_dsdt_scan
, "Compal JFL92", {
926 DMI_MATCH(DMI_BIOS_VENDOR
, "COMPAL"),
927 DMI_MATCH(DMI_BOARD_NAME
, "JFL92") }, NULL
},
929 ec_flag_msi
, "MSI hardware", {
930 DMI_MATCH(DMI_BIOS_VENDOR
, "Micro-Star")}, NULL
},
932 ec_flag_msi
, "MSI hardware", {
933 DMI_MATCH(DMI_SYS_VENDOR
, "Micro-Star")}, NULL
},
935 ec_flag_msi
, "MSI hardware", {
936 DMI_MATCH(DMI_CHASSIS_VENDOR
, "MICRO-Star")}, NULL
},
938 ec_flag_msi
, "MSI hardware", {
939 DMI_MATCH(DMI_CHASSIS_VENDOR
, "MICRO-STAR")}, NULL
},
941 ec_validate_ecdt
, "ASUS hardware", {
942 DMI_MATCH(DMI_BIOS_VENDOR
, "ASUS") }, NULL
},
947 int __init
acpi_ec_ecdt_probe(void)
950 struct acpi_ec
*saved_ec
= NULL
;
951 struct acpi_table_ecdt
*ecdt_ptr
;
953 boot_ec
= make_acpi_ec();
957 * Generate a boot ec context
959 dmi_check_system(ec_dmi_table
);
960 status
= acpi_get_table(ACPI_SIG_ECDT
, 1,
961 (struct acpi_table_header
**)&ecdt_ptr
);
962 if (ACPI_SUCCESS(status
)) {
963 pr_info(PREFIX
"EC description table is found, configuring boot EC\n");
964 boot_ec
->command_addr
= ecdt_ptr
->control
.address
;
965 boot_ec
->data_addr
= ecdt_ptr
->data
.address
;
966 boot_ec
->gpe
= ecdt_ptr
->gpe
;
967 boot_ec
->handle
= ACPI_ROOT_OBJECT
;
968 acpi_get_handle(ACPI_ROOT_OBJECT
, ecdt_ptr
->id
, &boot_ec
->handle
);
969 /* Don't trust ECDT, which comes from ASUSTek */
970 if (!EC_FLAGS_VALIDATE_ECDT
)
972 saved_ec
= kmemdup(boot_ec
, sizeof(struct acpi_ec
), GFP_KERNEL
);
978 if (EC_FLAGS_SKIP_DSDT_SCAN
)
981 /* This workaround is needed only on some broken machines,
982 * which require early EC, but fail to provide ECDT */
983 printk(KERN_DEBUG PREFIX
"Look up EC in DSDT\n");
984 status
= acpi_get_devices(ec_device_ids
[0].id
, ec_parse_device
,
986 /* Check that acpi_get_devices actually find something */
987 if (ACPI_FAILURE(status
) || !boot_ec
->handle
)
990 /* try to find good ECDT from ASUSTek */
991 if (saved_ec
->command_addr
!= boot_ec
->command_addr
||
992 saved_ec
->data_addr
!= boot_ec
->data_addr
||
993 saved_ec
->gpe
!= boot_ec
->gpe
||
994 saved_ec
->handle
!= boot_ec
->handle
)
995 pr_info(PREFIX
"ASUSTek keeps feeding us with broken "
996 "ECDT tables, which are very hard to workaround. "
997 "Trying to use DSDT EC info instead. Please send "
998 "output of acpidump to linux-acpi@vger.kernel.org\n");
1002 /* We really need to limit this workaround, the only ASUS,
1003 * which needs it, has fake EC._INI method, so use it as flag.
1004 * Keep boot_ec struct as it will be needed soon.
1007 if (!dmi_name_in_vendors("ASUS") ||
1008 ACPI_FAILURE(acpi_get_handle(boot_ec
->handle
, "_INI",
1013 if (!ec_install_handlers(boot_ec
)) {
1023 static struct acpi_driver acpi_ec_driver
= {
1025 .class = ACPI_EC_CLASS
,
1026 .ids
= ec_device_ids
,
1029 .remove
= acpi_ec_remove
,
1033 int __init
acpi_ec_init(void)
1037 /* Now register the driver for the EC */
1038 result
= acpi_bus_register_driver(&acpi_ec_driver
);
1045 /* EC driver currently not unloadable */
1047 static void __exit
acpi_ec_exit(void)
1050 acpi_bus_unregister_driver(&acpi_ec_driver
);