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 /* If we find an EC via the ECDT, we need to keep a ptr to its context */
87 /* External interfaces use first EC only, so remember */
88 typedef int (*acpi_ec_query_func
) (void *data
);
90 struct acpi_ec_query_handler
{
91 struct list_head node
;
92 acpi_ec_query_func func
;
101 unsigned short irq_count
;
110 struct acpi_ec
*boot_ec
, *first_ec
;
111 EXPORT_SYMBOL(first_ec
);
113 static int EC_FLAGS_MSI
; /* Out-of-spec MSI controller */
114 static int EC_FLAGS_VALIDATE_ECDT
; /* ASUStec ECDTs need to be validated */
115 static int EC_FLAGS_SKIP_DSDT_SCAN
; /* Not all BIOS survive early DSDT scan */
117 /* --------------------------------------------------------------------------
118 Transaction Management
119 -------------------------------------------------------------------------- */
121 static inline u8
acpi_ec_read_status(struct acpi_ec
*ec
)
123 u8 x
= inb(ec
->command_addr
);
124 pr_debug(PREFIX
"---> status = 0x%2.2x\n", x
);
128 static inline u8
acpi_ec_read_data(struct acpi_ec
*ec
)
130 u8 x
= inb(ec
->data_addr
);
131 pr_debug(PREFIX
"---> data = 0x%2.2x\n", x
);
135 static inline void acpi_ec_write_cmd(struct acpi_ec
*ec
, u8 command
)
137 pr_debug(PREFIX
"<--- command = 0x%2.2x\n", command
);
138 outb(command
, ec
->command_addr
);
141 static inline void acpi_ec_write_data(struct acpi_ec
*ec
, u8 data
)
143 pr_debug(PREFIX
"<--- data = 0x%2.2x\n", data
);
144 outb(data
, ec
->data_addr
);
147 static int ec_transaction_done(struct acpi_ec
*ec
)
151 spin_lock_irqsave(&ec
->curr_lock
, flags
);
152 if (!ec
->curr
|| ec
->curr
->done
)
154 spin_unlock_irqrestore(&ec
->curr_lock
, flags
);
158 static void start_transaction(struct acpi_ec
*ec
)
160 ec
->curr
->irq_count
= ec
->curr
->wi
= ec
->curr
->ri
= 0;
161 ec
->curr
->done
= false;
162 acpi_ec_write_cmd(ec
, ec
->curr
->command
);
165 static void advance_transaction(struct acpi_ec
*ec
, u8 status
)
168 spin_lock_irqsave(&ec
->curr_lock
, flags
);
171 if (ec
->curr
->wlen
> ec
->curr
->wi
) {
172 if ((status
& ACPI_EC_FLAG_IBF
) == 0)
173 acpi_ec_write_data(ec
,
174 ec
->curr
->wdata
[ec
->curr
->wi
++]);
177 } else if (ec
->curr
->rlen
> ec
->curr
->ri
) {
178 if ((status
& ACPI_EC_FLAG_OBF
) == 1) {
179 ec
->curr
->rdata
[ec
->curr
->ri
++] = acpi_ec_read_data(ec
);
180 if (ec
->curr
->rlen
== ec
->curr
->ri
)
181 ec
->curr
->done
= true;
184 } else if (ec
->curr
->wlen
== ec
->curr
->wi
&&
185 (status
& ACPI_EC_FLAG_IBF
) == 0)
186 ec
->curr
->done
= true;
189 /* false interrupt, state didn't change */
191 ++ec
->curr
->irq_count
;
193 spin_unlock_irqrestore(&ec
->curr_lock
, flags
);
196 static int acpi_ec_sync_query(struct acpi_ec
*ec
);
198 static int ec_check_sci_sync(struct acpi_ec
*ec
, u8 state
)
200 if (state
& ACPI_EC_FLAG_SCI
) {
201 if (!test_and_set_bit(EC_FLAGS_QUERY_PENDING
, &ec
->flags
))
202 return acpi_ec_sync_query(ec
);
207 static int ec_poll(struct acpi_ec
*ec
)
210 int repeat
= 2; /* number of command restarts */
212 unsigned long delay
= jiffies
+
213 msecs_to_jiffies(ACPI_EC_DELAY
);
215 /* don't sleep with disabled interrupts */
216 if (EC_FLAGS_MSI
|| irqs_disabled()) {
217 udelay(ACPI_EC_MSI_UDELAY
);
218 if (ec_transaction_done(ec
))
221 if (wait_event_timeout(ec
->wait
,
222 ec_transaction_done(ec
),
223 msecs_to_jiffies(1)))
226 advance_transaction(ec
, acpi_ec_read_status(ec
));
227 } while (time_before(jiffies
, delay
));
228 if (acpi_ec_read_status(ec
) & ACPI_EC_FLAG_IBF
)
230 pr_debug(PREFIX
"controller reset, restart transaction\n");
231 spin_lock_irqsave(&ec
->curr_lock
, flags
);
232 start_transaction(ec
);
233 spin_unlock_irqrestore(&ec
->curr_lock
, flags
);
238 static int acpi_ec_transaction_unlocked(struct acpi_ec
*ec
,
239 struct transaction
*t
)
244 udelay(ACPI_EC_MSI_UDELAY
);
245 /* start transaction */
246 spin_lock_irqsave(&ec
->curr_lock
, tmp
);
247 /* following two actions should be kept atomic */
249 start_transaction(ec
);
250 if (ec
->curr
->command
== ACPI_EC_COMMAND_QUERY
)
251 clear_bit(EC_FLAGS_QUERY_PENDING
, &ec
->flags
);
252 spin_unlock_irqrestore(&ec
->curr_lock
, tmp
);
254 spin_lock_irqsave(&ec
->curr_lock
, tmp
);
256 spin_unlock_irqrestore(&ec
->curr_lock
, tmp
);
260 static int ec_check_ibf0(struct acpi_ec
*ec
)
262 u8 status
= acpi_ec_read_status(ec
);
263 return (status
& ACPI_EC_FLAG_IBF
) == 0;
266 static int ec_wait_ibf0(struct acpi_ec
*ec
)
268 unsigned long delay
= jiffies
+ msecs_to_jiffies(ACPI_EC_DELAY
);
269 /* interrupt wait manually if GPE mode is not active */
270 while (time_before(jiffies
, delay
))
271 if (wait_event_timeout(ec
->wait
, ec_check_ibf0(ec
),
272 msecs_to_jiffies(1)))
277 static int acpi_ec_transaction(struct acpi_ec
*ec
, struct transaction
*t
)
281 if (!ec
|| (!t
) || (t
->wlen
&& !t
->wdata
) || (t
->rlen
&& !t
->rdata
))
284 memset(t
->rdata
, 0, t
->rlen
);
285 mutex_lock(&ec
->lock
);
286 if (test_bit(EC_FLAGS_BLOCKED
, &ec
->flags
)) {
290 if (ec
->global_lock
) {
291 status
= acpi_acquire_global_lock(ACPI_EC_UDELAY_GLK
, &glk
);
292 if (ACPI_FAILURE(status
)) {
297 if (ec_wait_ibf0(ec
)) {
298 pr_err(PREFIX
"input buffer is not empty, "
299 "aborting transaction\n");
303 pr_debug(PREFIX
"transaction start\n");
304 /* disable GPE during transaction if storm is detected */
305 if (test_bit(EC_FLAGS_GPE_STORM
, &ec
->flags
)) {
306 /* It has to be disabled, so that it doesn't trigger. */
307 acpi_disable_gpe(NULL
, ec
->gpe
);
310 status
= acpi_ec_transaction_unlocked(ec
, t
);
312 /* check if we received SCI during transaction */
313 ec_check_sci_sync(ec
, acpi_ec_read_status(ec
));
314 if (test_bit(EC_FLAGS_GPE_STORM
, &ec
->flags
)) {
316 /* It is safe to enable the GPE outside of the transaction. */
317 acpi_enable_gpe(NULL
, ec
->gpe
);
318 } else if (t
->irq_count
> ACPI_EC_STORM_THRESHOLD
) {
319 pr_info(PREFIX
"GPE storm detected, "
320 "transactions will use polling mode\n");
321 set_bit(EC_FLAGS_GPE_STORM
, &ec
->flags
);
323 pr_debug(PREFIX
"transaction end\n");
326 acpi_release_global_lock(glk
);
328 mutex_unlock(&ec
->lock
);
332 static int acpi_ec_burst_enable(struct acpi_ec
*ec
)
335 struct transaction t
= {.command
= ACPI_EC_BURST_ENABLE
,
336 .wdata
= NULL
, .rdata
= &d
,
337 .wlen
= 0, .rlen
= 1};
339 return acpi_ec_transaction(ec
, &t
);
342 static int acpi_ec_burst_disable(struct acpi_ec
*ec
)
344 struct transaction t
= {.command
= ACPI_EC_BURST_DISABLE
,
345 .wdata
= NULL
, .rdata
= NULL
,
346 .wlen
= 0, .rlen
= 0};
348 return (acpi_ec_read_status(ec
) & ACPI_EC_FLAG_BURST
) ?
349 acpi_ec_transaction(ec
, &t
) : 0;
352 static int acpi_ec_read(struct acpi_ec
*ec
, u8 address
, u8
* data
)
356 struct transaction t
= {.command
= ACPI_EC_COMMAND_READ
,
357 .wdata
= &address
, .rdata
= &d
,
358 .wlen
= 1, .rlen
= 1};
360 result
= acpi_ec_transaction(ec
, &t
);
365 static int acpi_ec_write(struct acpi_ec
*ec
, u8 address
, u8 data
)
367 u8 wdata
[2] = { address
, data
};
368 struct transaction t
= {.command
= ACPI_EC_COMMAND_WRITE
,
369 .wdata
= wdata
, .rdata
= NULL
,
370 .wlen
= 2, .rlen
= 0};
372 return acpi_ec_transaction(ec
, &t
);
376 * Externally callable EC access functions. For now, assume 1 EC only
378 int ec_burst_enable(void)
382 return acpi_ec_burst_enable(first_ec
);
385 EXPORT_SYMBOL(ec_burst_enable
);
387 int ec_burst_disable(void)
391 return acpi_ec_burst_disable(first_ec
);
394 EXPORT_SYMBOL(ec_burst_disable
);
396 int ec_read(u8 addr
, u8
* val
)
404 err
= acpi_ec_read(first_ec
, addr
, &temp_data
);
413 EXPORT_SYMBOL(ec_read
);
415 int ec_write(u8 addr
, u8 val
)
422 err
= acpi_ec_write(first_ec
, addr
, val
);
427 EXPORT_SYMBOL(ec_write
);
429 int ec_transaction(u8 command
,
430 const u8
* wdata
, unsigned wdata_len
,
431 u8
* rdata
, unsigned rdata_len
,
434 struct transaction t
= {.command
= command
,
435 .wdata
= wdata
, .rdata
= rdata
,
436 .wlen
= wdata_len
, .rlen
= rdata_len
};
440 return acpi_ec_transaction(first_ec
, &t
);
443 EXPORT_SYMBOL(ec_transaction
);
445 void acpi_ec_block_transactions(void)
447 struct acpi_ec
*ec
= first_ec
;
452 mutex_lock(&ec
->lock
);
453 /* Prevent transactions from being carried out */
454 set_bit(EC_FLAGS_BLOCKED
, &ec
->flags
);
455 mutex_unlock(&ec
->lock
);
458 void acpi_ec_unblock_transactions(void)
460 struct acpi_ec
*ec
= first_ec
;
465 mutex_lock(&ec
->lock
);
466 /* Allow transactions to be carried out again */
467 clear_bit(EC_FLAGS_BLOCKED
, &ec
->flags
);
468 mutex_unlock(&ec
->lock
);
471 void acpi_ec_unblock_transactions_early(void)
474 * Allow transactions to happen again (this function is called from
475 * atomic context during wakeup, so we don't need to acquire the mutex).
478 clear_bit(EC_FLAGS_BLOCKED
, &first_ec
->flags
);
481 static int acpi_ec_query_unlocked(struct acpi_ec
*ec
, u8
* data
)
485 struct transaction t
= {.command
= ACPI_EC_COMMAND_QUERY
,
486 .wdata
= NULL
, .rdata
= &d
,
487 .wlen
= 0, .rlen
= 1};
491 * Query the EC to find out which _Qxx method we need to evaluate.
492 * Note that successful completion of the query causes the ACPI_EC_SCI
493 * bit to be cleared (and thus clearing the interrupt source).
495 result
= acpi_ec_transaction_unlocked(ec
, &t
);
504 /* --------------------------------------------------------------------------
506 -------------------------------------------------------------------------- */
507 int acpi_ec_add_query_handler(struct acpi_ec
*ec
, u8 query_bit
,
508 acpi_handle handle
, acpi_ec_query_func func
,
511 struct acpi_ec_query_handler
*handler
=
512 kzalloc(sizeof(struct acpi_ec_query_handler
), GFP_KERNEL
);
516 handler
->query_bit
= query_bit
;
517 handler
->handle
= handle
;
518 handler
->func
= func
;
519 handler
->data
= data
;
520 mutex_lock(&ec
->lock
);
521 list_add(&handler
->node
, &ec
->list
);
522 mutex_unlock(&ec
->lock
);
526 EXPORT_SYMBOL_GPL(acpi_ec_add_query_handler
);
528 void acpi_ec_remove_query_handler(struct acpi_ec
*ec
, u8 query_bit
)
530 struct acpi_ec_query_handler
*handler
, *tmp
;
531 mutex_lock(&ec
->lock
);
532 list_for_each_entry_safe(handler
, tmp
, &ec
->list
, node
) {
533 if (query_bit
== handler
->query_bit
) {
534 list_del(&handler
->node
);
538 mutex_unlock(&ec
->lock
);
541 EXPORT_SYMBOL_GPL(acpi_ec_remove_query_handler
);
543 static void acpi_ec_run(void *cxt
)
545 struct acpi_ec_query_handler
*handler
= cxt
;
548 pr_debug(PREFIX
"start query execution\n");
550 handler
->func(handler
->data
);
551 else if (handler
->handle
)
552 acpi_evaluate_object(handler
->handle
, NULL
, NULL
, NULL
);
553 pr_debug(PREFIX
"stop query execution\n");
557 static int acpi_ec_sync_query(struct acpi_ec
*ec
)
561 struct acpi_ec_query_handler
*handler
, *copy
;
562 if ((status
= acpi_ec_query_unlocked(ec
, &value
)))
564 list_for_each_entry(handler
, &ec
->list
, node
) {
565 if (value
== handler
->query_bit
) {
566 /* have custom handler for this bit */
567 copy
= kmalloc(sizeof(*handler
), GFP_KERNEL
);
570 memcpy(copy
, handler
, sizeof(*copy
));
571 pr_debug(PREFIX
"push query execution (0x%2x) on queue\n", value
);
572 return acpi_os_execute((copy
->func
) ?
573 OSL_NOTIFY_HANDLER
: OSL_GPE_HANDLER
,
580 static void acpi_ec_gpe_query(void *ec_cxt
)
582 struct acpi_ec
*ec
= ec_cxt
;
585 mutex_lock(&ec
->lock
);
586 acpi_ec_sync_query(ec
);
587 mutex_unlock(&ec
->lock
);
590 static void acpi_ec_gpe_query(void *ec_cxt
);
592 static int ec_check_sci(struct acpi_ec
*ec
, u8 state
)
594 if (state
& ACPI_EC_FLAG_SCI
) {
595 if (!test_and_set_bit(EC_FLAGS_QUERY_PENDING
, &ec
->flags
)) {
596 pr_debug(PREFIX
"push gpe query to the queue\n");
597 return acpi_os_execute(OSL_NOTIFY_HANDLER
,
598 acpi_ec_gpe_query
, ec
);
604 static u32
acpi_ec_gpe_handler(void *data
)
606 struct acpi_ec
*ec
= data
;
608 pr_debug(PREFIX
"~~~> interrupt\n");
610 advance_transaction(ec
, acpi_ec_read_status(ec
));
611 if (ec_transaction_done(ec
) &&
612 (acpi_ec_read_status(ec
) & ACPI_EC_FLAG_IBF
) == 0) {
614 ec_check_sci(ec
, acpi_ec_read_status(ec
));
616 return ACPI_INTERRUPT_HANDLED
;
619 /* --------------------------------------------------------------------------
620 Address Space Management
621 -------------------------------------------------------------------------- */
624 acpi_ec_space_handler(u32 function
, acpi_physical_address address
,
625 u32 bits
, u64
*value64
,
626 void *handler_context
, void *region_context
)
628 struct acpi_ec
*ec
= handler_context
;
629 int result
= 0, i
, bytes
= bits
/ 8;
630 u8
*value
= (u8
*)value64
;
632 if ((address
> 0xFF) || !value
|| !handler_context
)
633 return AE_BAD_PARAMETER
;
635 if (function
!= ACPI_READ
&& function
!= ACPI_WRITE
)
636 return AE_BAD_PARAMETER
;
638 if (EC_FLAGS_MSI
|| bits
> 8)
639 acpi_ec_burst_enable(ec
);
641 for (i
= 0; i
< bytes
; ++i
, ++address
, ++value
)
642 result
= (function
== ACPI_READ
) ?
643 acpi_ec_read(ec
, address
, value
) :
644 acpi_ec_write(ec
, address
, *value
);
646 if (EC_FLAGS_MSI
|| bits
> 8)
647 acpi_ec_burst_disable(ec
);
651 return AE_BAD_PARAMETER
;
664 /* --------------------------------------------------------------------------
666 -------------------------------------------------------------------------- */
668 ec_parse_io_ports(struct acpi_resource
*resource
, void *context
);
670 static struct acpi_ec
*make_acpi_ec(void)
672 struct acpi_ec
*ec
= kzalloc(sizeof(struct acpi_ec
), GFP_KERNEL
);
675 ec
->flags
= 1 << EC_FLAGS_QUERY_PENDING
;
676 mutex_init(&ec
->lock
);
677 init_waitqueue_head(&ec
->wait
);
678 INIT_LIST_HEAD(&ec
->list
);
679 spin_lock_init(&ec
->curr_lock
);
684 acpi_ec_register_query_methods(acpi_handle handle
, u32 level
,
685 void *context
, void **return_value
)
688 struct acpi_buffer buffer
= { sizeof(node_name
), node_name
};
689 struct acpi_ec
*ec
= context
;
693 status
= acpi_get_name(handle
, ACPI_SINGLE_NAME
, &buffer
);
695 if (ACPI_SUCCESS(status
) && sscanf(node_name
, "_Q%x", &value
) == 1) {
696 acpi_ec_add_query_handler(ec
, value
, handle
, NULL
, NULL
);
702 ec_parse_device(acpi_handle handle
, u32 Level
, void *context
, void **retval
)
705 unsigned long long tmp
= 0;
707 struct acpi_ec
*ec
= context
;
709 /* clear addr values, ec_parse_io_ports depend on it */
710 ec
->command_addr
= ec
->data_addr
= 0;
712 status
= acpi_walk_resources(handle
, METHOD_NAME__CRS
,
713 ec_parse_io_ports
, ec
);
714 if (ACPI_FAILURE(status
))
717 /* Get GPE bit assignment (EC events). */
718 /* TODO: Add support for _GPE returning a package */
719 status
= acpi_evaluate_integer(handle
, "_GPE", NULL
, &tmp
);
720 if (ACPI_FAILURE(status
))
723 /* Use the global lock for all EC transactions? */
725 acpi_evaluate_integer(handle
, "_GLK", NULL
, &tmp
);
726 ec
->global_lock
= tmp
;
728 return AE_CTRL_TERMINATE
;
731 static int ec_install_handlers(struct acpi_ec
*ec
)
734 if (test_bit(EC_FLAGS_HANDLERS_INSTALLED
, &ec
->flags
))
736 status
= acpi_install_gpe_handler(NULL
, ec
->gpe
,
737 ACPI_GPE_EDGE_TRIGGERED
,
738 &acpi_ec_gpe_handler
, ec
);
739 if (ACPI_FAILURE(status
))
742 acpi_enable_gpe(NULL
, ec
->gpe
);
743 status
= acpi_install_address_space_handler(ec
->handle
,
745 &acpi_ec_space_handler
,
747 if (ACPI_FAILURE(status
)) {
748 if (status
== AE_NOT_FOUND
) {
750 * Maybe OS fails in evaluating the _REG object.
751 * The AE_NOT_FOUND error will be ignored and OS
752 * continue to initialize EC.
754 printk(KERN_ERR
"Fail in evaluating the _REG object"
755 " of EC device. Broken bios is suspected.\n");
757 acpi_remove_gpe_handler(NULL
, ec
->gpe
,
758 &acpi_ec_gpe_handler
);
759 acpi_disable_gpe(NULL
, ec
->gpe
);
764 set_bit(EC_FLAGS_HANDLERS_INSTALLED
, &ec
->flags
);
768 static void ec_remove_handlers(struct acpi_ec
*ec
)
770 acpi_disable_gpe(NULL
, ec
->gpe
);
771 if (ACPI_FAILURE(acpi_remove_address_space_handler(ec
->handle
,
772 ACPI_ADR_SPACE_EC
, &acpi_ec_space_handler
)))
773 pr_err(PREFIX
"failed to remove space handler\n");
774 if (ACPI_FAILURE(acpi_remove_gpe_handler(NULL
, ec
->gpe
,
775 &acpi_ec_gpe_handler
)))
776 pr_err(PREFIX
"failed to remove gpe handler\n");
777 clear_bit(EC_FLAGS_HANDLERS_INSTALLED
, &ec
->flags
);
780 static int acpi_ec_add(struct acpi_device
*device
)
782 struct acpi_ec
*ec
= NULL
;
785 strcpy(acpi_device_name(device
), ACPI_EC_DEVICE_NAME
);
786 strcpy(acpi_device_class(device
), ACPI_EC_CLASS
);
788 /* Check for boot EC */
790 (boot_ec
->handle
== device
->handle
||
791 boot_ec
->handle
== ACPI_ROOT_OBJECT
)) {
799 if (ec_parse_device(device
->handle
, 0, ec
, NULL
) !=
805 ec
->handle
= device
->handle
;
807 /* Find and register all query methods */
808 acpi_walk_namespace(ACPI_TYPE_METHOD
, ec
->handle
, 1,
809 acpi_ec_register_query_methods
, NULL
, ec
, NULL
);
813 device
->driver_data
= ec
;
815 WARN(!request_region(ec
->data_addr
, 1, "EC data"),
816 "Could not request EC data io port 0x%lx", ec
->data_addr
);
817 WARN(!request_region(ec
->command_addr
, 1, "EC cmd"),
818 "Could not request EC cmd io port 0x%lx", ec
->command_addr
);
820 pr_info(PREFIX
"GPE = 0x%lx, I/O: command/status = 0x%lx, data = 0x%lx\n",
821 ec
->gpe
, ec
->command_addr
, ec
->data_addr
);
823 ret
= ec_install_handlers(ec
);
825 /* EC is fully operational, allow queries */
826 clear_bit(EC_FLAGS_QUERY_PENDING
, &ec
->flags
);
830 static int acpi_ec_remove(struct acpi_device
*device
, int type
)
833 struct acpi_ec_query_handler
*handler
, *tmp
;
838 ec
= acpi_driver_data(device
);
839 ec_remove_handlers(ec
);
840 mutex_lock(&ec
->lock
);
841 list_for_each_entry_safe(handler
, tmp
, &ec
->list
, node
) {
842 list_del(&handler
->node
);
845 mutex_unlock(&ec
->lock
);
846 release_region(ec
->data_addr
, 1);
847 release_region(ec
->command_addr
, 1);
848 device
->driver_data
= NULL
;
856 ec_parse_io_ports(struct acpi_resource
*resource
, void *context
)
858 struct acpi_ec
*ec
= context
;
860 if (resource
->type
!= ACPI_RESOURCE_TYPE_IO
)
864 * The first address region returned is the data port, and
865 * the second address region returned is the status/command
868 if (ec
->data_addr
== 0)
869 ec
->data_addr
= resource
->data
.io
.minimum
;
870 else if (ec
->command_addr
== 0)
871 ec
->command_addr
= resource
->data
.io
.minimum
;
873 return AE_CTRL_TERMINATE
;
878 int __init
acpi_boot_ec_enable(void)
880 if (!boot_ec
|| test_bit(EC_FLAGS_HANDLERS_INSTALLED
, &boot_ec
->flags
))
882 if (!ec_install_handlers(boot_ec
)) {
889 static const struct acpi_device_id ec_device_ids
[] = {
894 /* Some BIOS do not survive early DSDT scan, skip it */
895 static int ec_skip_dsdt_scan(const struct dmi_system_id
*id
)
897 EC_FLAGS_SKIP_DSDT_SCAN
= 1;
901 /* ASUStek often supplies us with broken ECDT, validate it */
902 static int ec_validate_ecdt(const struct dmi_system_id
*id
)
904 EC_FLAGS_VALIDATE_ECDT
= 1;
908 /* MSI EC needs special treatment, enable it */
909 static int ec_flag_msi(const struct dmi_system_id
*id
)
911 printk(KERN_DEBUG PREFIX
"Detected MSI hardware, enabling workarounds.\n");
913 EC_FLAGS_VALIDATE_ECDT
= 1;
917 static struct dmi_system_id __initdata ec_dmi_table
[] = {
919 ec_skip_dsdt_scan
, "Compal JFL92", {
920 DMI_MATCH(DMI_BIOS_VENDOR
, "COMPAL"),
921 DMI_MATCH(DMI_BOARD_NAME
, "JFL92") }, NULL
},
923 ec_flag_msi
, "MSI hardware", {
924 DMI_MATCH(DMI_BIOS_VENDOR
, "Micro-Star")}, NULL
},
926 ec_flag_msi
, "MSI hardware", {
927 DMI_MATCH(DMI_SYS_VENDOR
, "Micro-Star")}, NULL
},
929 ec_flag_msi
, "MSI hardware", {
930 DMI_MATCH(DMI_CHASSIS_VENDOR
, "MICRO-Star")}, NULL
},
932 ec_validate_ecdt
, "ASUS hardware", {
933 DMI_MATCH(DMI_BIOS_VENDOR
, "ASUS") }, NULL
},
938 int __init
acpi_ec_ecdt_probe(void)
941 struct acpi_ec
*saved_ec
= NULL
;
942 struct acpi_table_ecdt
*ecdt_ptr
;
944 boot_ec
= make_acpi_ec();
948 * Generate a boot ec context
950 dmi_check_system(ec_dmi_table
);
951 status
= acpi_get_table(ACPI_SIG_ECDT
, 1,
952 (struct acpi_table_header
**)&ecdt_ptr
);
953 if (ACPI_SUCCESS(status
)) {
954 pr_info(PREFIX
"EC description table is found, configuring boot EC\n");
955 boot_ec
->command_addr
= ecdt_ptr
->control
.address
;
956 boot_ec
->data_addr
= ecdt_ptr
->data
.address
;
957 boot_ec
->gpe
= ecdt_ptr
->gpe
;
958 boot_ec
->handle
= ACPI_ROOT_OBJECT
;
959 acpi_get_handle(ACPI_ROOT_OBJECT
, ecdt_ptr
->id
, &boot_ec
->handle
);
960 /* Don't trust ECDT, which comes from ASUSTek */
961 if (!EC_FLAGS_VALIDATE_ECDT
)
963 saved_ec
= kmemdup(boot_ec
, sizeof(struct acpi_ec
), GFP_KERNEL
);
969 if (EC_FLAGS_SKIP_DSDT_SCAN
)
972 /* This workaround is needed only on some broken machines,
973 * which require early EC, but fail to provide ECDT */
974 printk(KERN_DEBUG PREFIX
"Look up EC in DSDT\n");
975 status
= acpi_get_devices(ec_device_ids
[0].id
, ec_parse_device
,
977 /* Check that acpi_get_devices actually find something */
978 if (ACPI_FAILURE(status
) || !boot_ec
->handle
)
981 /* try to find good ECDT from ASUSTek */
982 if (saved_ec
->command_addr
!= boot_ec
->command_addr
||
983 saved_ec
->data_addr
!= boot_ec
->data_addr
||
984 saved_ec
->gpe
!= boot_ec
->gpe
||
985 saved_ec
->handle
!= boot_ec
->handle
)
986 pr_info(PREFIX
"ASUSTek keeps feeding us with broken "
987 "ECDT tables, which are very hard to workaround. "
988 "Trying to use DSDT EC info instead. Please send "
989 "output of acpidump to linux-acpi@vger.kernel.org\n");
993 /* We really need to limit this workaround, the only ASUS,
994 * which needs it, has fake EC._INI method, so use it as flag.
995 * Keep boot_ec struct as it will be needed soon.
998 if (!dmi_name_in_vendors("ASUS") ||
999 ACPI_FAILURE(acpi_get_handle(boot_ec
->handle
, "_INI",
1004 if (!ec_install_handlers(boot_ec
)) {
1014 static struct acpi_driver acpi_ec_driver
= {
1016 .class = ACPI_EC_CLASS
,
1017 .ids
= ec_device_ids
,
1020 .remove
= acpi_ec_remove
,
1024 int __init
acpi_ec_init(void)
1028 /* Now register the driver for the EC */
1029 result
= acpi_bus_register_driver(&acpi_ec_driver
);
1036 /* EC driver currently not unloadable */
1038 static void __exit
acpi_ec_exit(void)
1041 acpi_bus_unregister_driver(&acpi_ec_driver
);