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 */
31 #define pr_fmt(fmt) "ACPI : EC: " fmt
33 #include <linux/kernel.h>
34 #include <linux/module.h>
35 #include <linux/init.h>
36 #include <linux/types.h>
37 #include <linux/delay.h>
38 #include <linux/interrupt.h>
39 #include <linux/list.h>
40 #include <linux/spinlock.h>
41 #include <linux/slab.h>
42 #include <linux/acpi.h>
43 #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"
52 /* EC status register */
53 #define ACPI_EC_FLAG_OBF 0x01 /* Output buffer full */
54 #define ACPI_EC_FLAG_IBF 0x02 /* Input buffer full */
55 #define ACPI_EC_FLAG_BURST 0x10 /* burst mode */
56 #define ACPI_EC_FLAG_SCI 0x20 /* EC-SCI occurred */
60 ACPI_EC_COMMAND_READ
= 0x80,
61 ACPI_EC_COMMAND_WRITE
= 0x81,
62 ACPI_EC_BURST_ENABLE
= 0x82,
63 ACPI_EC_BURST_DISABLE
= 0x83,
64 ACPI_EC_COMMAND_QUERY
= 0x84,
67 #define ACPI_EC_DELAY 500 /* Wait 500ms max. during EC ops */
68 #define ACPI_EC_UDELAY_GLK 1000 /* Wait 1ms max. to get global lock */
69 #define ACPI_EC_MSI_UDELAY 550 /* Wait 550us for MSI EC */
72 EC_FLAGS_QUERY_PENDING
, /* Query is pending */
73 EC_FLAGS_GPE_STORM
, /* GPE storm detected */
74 EC_FLAGS_HANDLERS_INSTALLED
, /* Handlers for GPE and
75 * OpReg are installed */
76 EC_FLAGS_BLOCKED
, /* Transactions are blocked */
79 /* ec.c is compiled in acpi namespace so this shows up as acpi.ec_delay param */
80 static unsigned int ec_delay __read_mostly
= ACPI_EC_DELAY
;
81 module_param(ec_delay
, uint
, 0644);
82 MODULE_PARM_DESC(ec_delay
, "Timeout(ms) waited until an EC command completes");
85 * If the number of false interrupts per one transaction exceeds
86 * this threshold, will think there is a GPE storm happened and
87 * will disable the GPE for normal transaction.
89 static unsigned int ec_storm_threshold __read_mostly
= 8;
90 module_param(ec_storm_threshold
, uint
, 0644);
91 MODULE_PARM_DESC(ec_storm_threshold
, "Maxim false GPE numbers not considered as GPE storm");
93 struct acpi_ec_query_handler
{
94 struct list_head node
;
95 acpi_ec_query_func func
;
104 unsigned short irq_count
;
113 struct acpi_ec
*boot_ec
, *first_ec
;
114 EXPORT_SYMBOL(first_ec
);
116 static int EC_FLAGS_MSI
; /* Out-of-spec MSI controller */
117 static int EC_FLAGS_VALIDATE_ECDT
; /* ASUStec ECDTs need to be validated */
118 static int EC_FLAGS_SKIP_DSDT_SCAN
; /* Not all BIOS survive early DSDT scan */
120 /* --------------------------------------------------------------------------
121 Transaction Management
122 -------------------------------------------------------------------------- */
124 static inline u8
acpi_ec_read_status(struct acpi_ec
*ec
)
126 u8 x
= inb(ec
->command_addr
);
127 pr_debug("---> status = 0x%2.2x\n", x
);
131 static inline u8
acpi_ec_read_data(struct acpi_ec
*ec
)
133 u8 x
= inb(ec
->data_addr
);
134 pr_debug("---> data = 0x%2.2x\n", x
);
138 static inline void acpi_ec_write_cmd(struct acpi_ec
*ec
, u8 command
)
140 pr_debug("<--- command = 0x%2.2x\n", command
);
141 outb(command
, ec
->command_addr
);
144 static inline void acpi_ec_write_data(struct acpi_ec
*ec
, u8 data
)
146 pr_debug("<--- data = 0x%2.2x\n", data
);
147 outb(data
, ec
->data_addr
);
150 static int ec_transaction_done(struct acpi_ec
*ec
)
154 spin_lock_irqsave(&ec
->lock
, flags
);
155 if (!ec
->curr
|| ec
->curr
->done
)
157 spin_unlock_irqrestore(&ec
->lock
, flags
);
161 static void start_transaction(struct acpi_ec
*ec
)
163 ec
->curr
->irq_count
= ec
->curr
->wi
= ec
->curr
->ri
= 0;
164 ec
->curr
->done
= false;
165 acpi_ec_write_cmd(ec
, ec
->curr
->command
);
168 static void advance_transaction(struct acpi_ec
*ec
, u8 status
)
171 struct transaction
*t
;
173 spin_lock_irqsave(&ec
->lock
, flags
);
177 if (t
->wlen
> t
->wi
) {
178 if ((status
& ACPI_EC_FLAG_IBF
) == 0)
179 acpi_ec_write_data(ec
,
183 } else if (t
->rlen
> t
->ri
) {
184 if ((status
& ACPI_EC_FLAG_OBF
) == 1) {
185 t
->rdata
[t
->ri
++] = acpi_ec_read_data(ec
);
186 if (t
->rlen
== t
->ri
)
190 } else if (t
->wlen
== t
->wi
&&
191 (status
& ACPI_EC_FLAG_IBF
) == 0)
196 * If SCI bit is set, then don't think it's a false IRQ
197 * otherwise will take a not handled IRQ as a false one.
199 if (in_interrupt() && !(status
& ACPI_EC_FLAG_SCI
))
203 spin_unlock_irqrestore(&ec
->lock
, flags
);
206 static int acpi_ec_sync_query(struct acpi_ec
*ec
);
208 static int ec_check_sci_sync(struct acpi_ec
*ec
, u8 state
)
210 if (state
& ACPI_EC_FLAG_SCI
) {
211 if (!test_and_set_bit(EC_FLAGS_QUERY_PENDING
, &ec
->flags
))
212 return acpi_ec_sync_query(ec
);
217 static int ec_poll(struct acpi_ec
*ec
)
220 int repeat
= 5; /* number of command restarts */
222 unsigned long delay
= jiffies
+
223 msecs_to_jiffies(ec_delay
);
225 /* don't sleep with disabled interrupts */
226 if (EC_FLAGS_MSI
|| irqs_disabled()) {
227 udelay(ACPI_EC_MSI_UDELAY
);
228 if (ec_transaction_done(ec
))
231 if (wait_event_timeout(ec
->wait
,
232 ec_transaction_done(ec
),
233 msecs_to_jiffies(1)))
236 advance_transaction(ec
, acpi_ec_read_status(ec
));
237 } while (time_before(jiffies
, delay
));
238 pr_debug("controller reset, restart transaction\n");
239 spin_lock_irqsave(&ec
->lock
, flags
);
240 start_transaction(ec
);
241 spin_unlock_irqrestore(&ec
->lock
, flags
);
246 static int acpi_ec_transaction_unlocked(struct acpi_ec
*ec
,
247 struct transaction
*t
)
252 udelay(ACPI_EC_MSI_UDELAY
);
253 /* start transaction */
254 spin_lock_irqsave(&ec
->lock
, tmp
);
255 /* following two actions should be kept atomic */
257 start_transaction(ec
);
258 if (ec
->curr
->command
== ACPI_EC_COMMAND_QUERY
)
259 clear_bit(EC_FLAGS_QUERY_PENDING
, &ec
->flags
);
260 spin_unlock_irqrestore(&ec
->lock
, tmp
);
262 spin_lock_irqsave(&ec
->lock
, tmp
);
264 spin_unlock_irqrestore(&ec
->lock
, tmp
);
268 static int ec_check_ibf0(struct acpi_ec
*ec
)
270 u8 status
= acpi_ec_read_status(ec
);
271 return (status
& ACPI_EC_FLAG_IBF
) == 0;
274 static int ec_wait_ibf0(struct acpi_ec
*ec
)
276 unsigned long delay
= jiffies
+ msecs_to_jiffies(ec_delay
);
277 /* interrupt wait manually if GPE mode is not active */
278 while (time_before(jiffies
, delay
))
279 if (wait_event_timeout(ec
->wait
, ec_check_ibf0(ec
),
280 msecs_to_jiffies(1)))
285 static int acpi_ec_transaction(struct acpi_ec
*ec
, struct transaction
*t
)
289 if (!ec
|| (!t
) || (t
->wlen
&& !t
->wdata
) || (t
->rlen
&& !t
->rdata
))
292 memset(t
->rdata
, 0, t
->rlen
);
293 mutex_lock(&ec
->mutex
);
294 if (test_bit(EC_FLAGS_BLOCKED
, &ec
->flags
)) {
298 if (ec
->global_lock
) {
299 status
= acpi_acquire_global_lock(ACPI_EC_UDELAY_GLK
, &glk
);
300 if (ACPI_FAILURE(status
)) {
305 if (ec_wait_ibf0(ec
)) {
306 pr_err("input buffer is not empty, "
307 "aborting transaction\n");
311 pr_debug("transaction start (cmd=0x%02x, addr=0x%02x)\n",
312 t
->command
, t
->wdata
? t
->wdata
[0] : 0);
313 /* disable GPE during transaction if storm is detected */
314 if (test_bit(EC_FLAGS_GPE_STORM
, &ec
->flags
)) {
315 /* It has to be disabled, so that it doesn't trigger. */
316 acpi_disable_gpe(NULL
, ec
->gpe
);
319 status
= acpi_ec_transaction_unlocked(ec
, t
);
321 /* check if we received SCI during transaction */
322 ec_check_sci_sync(ec
, acpi_ec_read_status(ec
));
323 if (test_bit(EC_FLAGS_GPE_STORM
, &ec
->flags
)) {
325 /* It is safe to enable the GPE outside of the transaction. */
326 acpi_enable_gpe(NULL
, ec
->gpe
);
327 } else if (t
->irq_count
> ec_storm_threshold
) {
328 pr_info("GPE storm detected(%d GPEs), "
329 "transactions will use polling mode\n",
331 set_bit(EC_FLAGS_GPE_STORM
, &ec
->flags
);
333 pr_debug("transaction end\n");
336 acpi_release_global_lock(glk
);
338 mutex_unlock(&ec
->mutex
);
342 static int acpi_ec_burst_enable(struct acpi_ec
*ec
)
345 struct transaction t
= {.command
= ACPI_EC_BURST_ENABLE
,
346 .wdata
= NULL
, .rdata
= &d
,
347 .wlen
= 0, .rlen
= 1};
349 return acpi_ec_transaction(ec
, &t
);
352 static int acpi_ec_burst_disable(struct acpi_ec
*ec
)
354 struct transaction t
= {.command
= ACPI_EC_BURST_DISABLE
,
355 .wdata
= NULL
, .rdata
= NULL
,
356 .wlen
= 0, .rlen
= 0};
358 return (acpi_ec_read_status(ec
) & ACPI_EC_FLAG_BURST
) ?
359 acpi_ec_transaction(ec
, &t
) : 0;
362 static int acpi_ec_read(struct acpi_ec
*ec
, u8 address
, u8
* data
)
366 struct transaction t
= {.command
= ACPI_EC_COMMAND_READ
,
367 .wdata
= &address
, .rdata
= &d
,
368 .wlen
= 1, .rlen
= 1};
370 result
= acpi_ec_transaction(ec
, &t
);
375 static int acpi_ec_write(struct acpi_ec
*ec
, u8 address
, u8 data
)
377 u8 wdata
[2] = { address
, data
};
378 struct transaction t
= {.command
= ACPI_EC_COMMAND_WRITE
,
379 .wdata
= wdata
, .rdata
= NULL
,
380 .wlen
= 2, .rlen
= 0};
382 return acpi_ec_transaction(ec
, &t
);
385 int ec_read(u8 addr
, u8
*val
)
393 err
= acpi_ec_read(first_ec
, addr
, &temp_data
);
402 EXPORT_SYMBOL(ec_read
);
404 int ec_write(u8 addr
, u8 val
)
411 err
= acpi_ec_write(first_ec
, addr
, val
);
416 EXPORT_SYMBOL(ec_write
);
418 int ec_transaction(u8 command
,
419 const u8
* wdata
, unsigned wdata_len
,
420 u8
* rdata
, unsigned rdata_len
)
422 struct transaction t
= {.command
= command
,
423 .wdata
= wdata
, .rdata
= rdata
,
424 .wlen
= wdata_len
, .rlen
= rdata_len
};
428 return acpi_ec_transaction(first_ec
, &t
);
431 EXPORT_SYMBOL(ec_transaction
);
433 /* Get the handle to the EC device */
434 acpi_handle
ec_get_handle(void)
438 return first_ec
->handle
;
441 EXPORT_SYMBOL(ec_get_handle
);
443 void acpi_ec_block_transactions(void)
445 struct acpi_ec
*ec
= first_ec
;
450 mutex_lock(&ec
->mutex
);
451 /* Prevent transactions from being carried out */
452 set_bit(EC_FLAGS_BLOCKED
, &ec
->flags
);
453 mutex_unlock(&ec
->mutex
);
456 void acpi_ec_unblock_transactions(void)
458 struct acpi_ec
*ec
= first_ec
;
463 mutex_lock(&ec
->mutex
);
464 /* Allow transactions to be carried out again */
465 clear_bit(EC_FLAGS_BLOCKED
, &ec
->flags
);
466 mutex_unlock(&ec
->mutex
);
469 void acpi_ec_unblock_transactions_early(void)
472 * Allow transactions to happen again (this function is called from
473 * atomic context during wakeup, so we don't need to acquire the mutex).
476 clear_bit(EC_FLAGS_BLOCKED
, &first_ec
->flags
);
479 static int acpi_ec_query_unlocked(struct acpi_ec
*ec
, u8
* data
)
483 struct transaction t
= {.command
= ACPI_EC_COMMAND_QUERY
,
484 .wdata
= NULL
, .rdata
= &d
,
485 .wlen
= 0, .rlen
= 1};
489 * Query the EC to find out which _Qxx method we need to evaluate.
490 * Note that successful completion of the query causes the ACPI_EC_SCI
491 * bit to be cleared (and thus clearing the interrupt source).
493 result
= acpi_ec_transaction_unlocked(ec
, &t
);
502 /* --------------------------------------------------------------------------
504 -------------------------------------------------------------------------- */
505 int acpi_ec_add_query_handler(struct acpi_ec
*ec
, u8 query_bit
,
506 acpi_handle handle
, acpi_ec_query_func func
,
509 struct acpi_ec_query_handler
*handler
=
510 kzalloc(sizeof(struct acpi_ec_query_handler
), GFP_KERNEL
);
514 handler
->query_bit
= query_bit
;
515 handler
->handle
= handle
;
516 handler
->func
= func
;
517 handler
->data
= data
;
518 mutex_lock(&ec
->mutex
);
519 list_add(&handler
->node
, &ec
->list
);
520 mutex_unlock(&ec
->mutex
);
524 EXPORT_SYMBOL_GPL(acpi_ec_add_query_handler
);
526 void acpi_ec_remove_query_handler(struct acpi_ec
*ec
, u8 query_bit
)
528 struct acpi_ec_query_handler
*handler
, *tmp
;
529 mutex_lock(&ec
->mutex
);
530 list_for_each_entry_safe(handler
, tmp
, &ec
->list
, node
) {
531 if (query_bit
== handler
->query_bit
) {
532 list_del(&handler
->node
);
536 mutex_unlock(&ec
->mutex
);
539 EXPORT_SYMBOL_GPL(acpi_ec_remove_query_handler
);
541 static void acpi_ec_run(void *cxt
)
543 struct acpi_ec_query_handler
*handler
= cxt
;
546 pr_debug("start query execution\n");
548 handler
->func(handler
->data
);
549 else if (handler
->handle
)
550 acpi_evaluate_object(handler
->handle
, NULL
, NULL
, NULL
);
551 pr_debug("stop query execution\n");
555 static int acpi_ec_sync_query(struct acpi_ec
*ec
)
559 struct acpi_ec_query_handler
*handler
, *copy
;
560 if ((status
= acpi_ec_query_unlocked(ec
, &value
)))
562 list_for_each_entry(handler
, &ec
->list
, node
) {
563 if (value
== handler
->query_bit
) {
564 /* have custom handler for this bit */
565 copy
= kmalloc(sizeof(*handler
), GFP_KERNEL
);
568 memcpy(copy
, handler
, sizeof(*copy
));
569 pr_debug("push query execution (0x%2x) on queue\n",
571 return acpi_os_execute((copy
->func
) ?
572 OSL_NOTIFY_HANDLER
: OSL_GPE_HANDLER
,
579 static void acpi_ec_gpe_query(void *ec_cxt
)
581 struct acpi_ec
*ec
= ec_cxt
;
584 mutex_lock(&ec
->mutex
);
585 acpi_ec_sync_query(ec
);
586 mutex_unlock(&ec
->mutex
);
589 static int ec_check_sci(struct acpi_ec
*ec
, u8 state
)
591 if (state
& ACPI_EC_FLAG_SCI
) {
592 if (!test_and_set_bit(EC_FLAGS_QUERY_PENDING
, &ec
->flags
)) {
593 pr_debug("push gpe query to the queue\n");
594 return acpi_os_execute(OSL_NOTIFY_HANDLER
,
595 acpi_ec_gpe_query
, ec
);
601 static u32
acpi_ec_gpe_handler(acpi_handle gpe_device
,
602 u32 gpe_number
, void *data
)
604 struct acpi_ec
*ec
= data
;
605 u8 status
= acpi_ec_read_status(ec
);
607 pr_debug("~~~> interrupt, status:0x%02x\n", status
);
609 advance_transaction(ec
, status
);
610 if (ec_transaction_done(ec
) &&
611 (acpi_ec_read_status(ec
) & ACPI_EC_FLAG_IBF
) == 0) {
613 ec_check_sci(ec
, acpi_ec_read_status(ec
));
615 return ACPI_INTERRUPT_HANDLED
| ACPI_REENABLE_GPE
;
618 /* --------------------------------------------------------------------------
619 Address Space Management
620 -------------------------------------------------------------------------- */
623 acpi_ec_space_handler(u32 function
, acpi_physical_address address
,
624 u32 bits
, u64
*value64
,
625 void *handler_context
, void *region_context
)
627 struct acpi_ec
*ec
= handler_context
;
628 int result
= 0, i
, bytes
= bits
/ 8;
629 u8
*value
= (u8
*)value64
;
631 if ((address
> 0xFF) || !value
|| !handler_context
)
632 return AE_BAD_PARAMETER
;
634 if (function
!= ACPI_READ
&& function
!= ACPI_WRITE
)
635 return AE_BAD_PARAMETER
;
637 if (EC_FLAGS_MSI
|| bits
> 8)
638 acpi_ec_burst_enable(ec
);
640 for (i
= 0; i
< bytes
; ++i
, ++address
, ++value
)
641 result
= (function
== ACPI_READ
) ?
642 acpi_ec_read(ec
, address
, value
) :
643 acpi_ec_write(ec
, address
, *value
);
645 if (EC_FLAGS_MSI
|| bits
> 8)
646 acpi_ec_burst_disable(ec
);
650 return AE_BAD_PARAMETER
;
663 /* --------------------------------------------------------------------------
665 -------------------------------------------------------------------------- */
667 ec_parse_io_ports(struct acpi_resource
*resource
, void *context
);
669 static struct acpi_ec
*make_acpi_ec(void)
671 struct acpi_ec
*ec
= kzalloc(sizeof(struct acpi_ec
), GFP_KERNEL
);
674 ec
->flags
= 1 << EC_FLAGS_QUERY_PENDING
;
675 mutex_init(&ec
->mutex
);
676 init_waitqueue_head(&ec
->wait
);
677 INIT_LIST_HEAD(&ec
->list
);
678 spin_lock_init(&ec
->lock
);
683 acpi_ec_register_query_methods(acpi_handle handle
, u32 level
,
684 void *context
, void **return_value
)
687 struct acpi_buffer buffer
= { sizeof(node_name
), node_name
};
688 struct acpi_ec
*ec
= context
;
692 status
= acpi_get_name(handle
, ACPI_SINGLE_NAME
, &buffer
);
694 if (ACPI_SUCCESS(status
) && sscanf(node_name
, "_Q%x", &value
) == 1) {
695 acpi_ec_add_query_handler(ec
, value
, handle
, NULL
, NULL
);
701 ec_parse_device(acpi_handle handle
, u32 Level
, void *context
, void **retval
)
704 unsigned long long tmp
= 0;
706 struct acpi_ec
*ec
= context
;
708 /* clear addr values, ec_parse_io_ports depend on it */
709 ec
->command_addr
= ec
->data_addr
= 0;
711 status
= acpi_walk_resources(handle
, METHOD_NAME__CRS
,
712 ec_parse_io_ports
, ec
);
713 if (ACPI_FAILURE(status
))
716 /* Get GPE bit assignment (EC events). */
717 /* TODO: Add support for _GPE returning a package */
718 status
= acpi_evaluate_integer(handle
, "_GPE", NULL
, &tmp
);
719 if (ACPI_FAILURE(status
))
722 /* Use the global lock for all EC transactions? */
724 acpi_evaluate_integer(handle
, "_GLK", NULL
, &tmp
);
725 ec
->global_lock
= tmp
;
727 return AE_CTRL_TERMINATE
;
730 static int ec_install_handlers(struct acpi_ec
*ec
)
733 if (test_bit(EC_FLAGS_HANDLERS_INSTALLED
, &ec
->flags
))
735 status
= acpi_install_gpe_handler(NULL
, ec
->gpe
,
736 ACPI_GPE_EDGE_TRIGGERED
,
737 &acpi_ec_gpe_handler
, ec
);
738 if (ACPI_FAILURE(status
))
741 acpi_enable_gpe(NULL
, ec
->gpe
);
742 status
= acpi_install_address_space_handler(ec
->handle
,
744 &acpi_ec_space_handler
,
746 if (ACPI_FAILURE(status
)) {
747 if (status
== AE_NOT_FOUND
) {
749 * Maybe OS fails in evaluating the _REG object.
750 * The AE_NOT_FOUND error will be ignored and OS
751 * continue to initialize EC.
753 pr_err("Fail in evaluating the _REG object"
754 " of EC device. Broken bios is suspected.\n");
756 acpi_disable_gpe(NULL
, ec
->gpe
);
757 acpi_remove_gpe_handler(NULL
, ec
->gpe
,
758 &acpi_ec_gpe_handler
);
763 set_bit(EC_FLAGS_HANDLERS_INSTALLED
, &ec
->flags
);
767 static void ec_remove_handlers(struct acpi_ec
*ec
)
769 acpi_disable_gpe(NULL
, ec
->gpe
);
770 if (ACPI_FAILURE(acpi_remove_address_space_handler(ec
->handle
,
771 ACPI_ADR_SPACE_EC
, &acpi_ec_space_handler
)))
772 pr_err("failed to remove space handler\n");
773 if (ACPI_FAILURE(acpi_remove_gpe_handler(NULL
, ec
->gpe
,
774 &acpi_ec_gpe_handler
)))
775 pr_err("failed to remove gpe handler\n");
776 clear_bit(EC_FLAGS_HANDLERS_INSTALLED
, &ec
->flags
);
779 static int acpi_ec_add(struct acpi_device
*device
)
781 struct acpi_ec
*ec
= NULL
;
784 strcpy(acpi_device_name(device
), ACPI_EC_DEVICE_NAME
);
785 strcpy(acpi_device_class(device
), ACPI_EC_CLASS
);
787 /* Check for boot EC */
789 (boot_ec
->handle
== device
->handle
||
790 boot_ec
->handle
== ACPI_ROOT_OBJECT
)) {
798 if (ec_parse_device(device
->handle
, 0, ec
, NULL
) !=
804 /* Find and register all query methods */
805 acpi_walk_namespace(ACPI_TYPE_METHOD
, ec
->handle
, 1,
806 acpi_ec_register_query_methods
, NULL
, ec
, NULL
);
810 device
->driver_data
= ec
;
812 ret
= !!request_region(ec
->data_addr
, 1, "EC data");
813 WARN(!ret
, "Could not request EC data io port 0x%lx", ec
->data_addr
);
814 ret
= !!request_region(ec
->command_addr
, 1, "EC cmd");
815 WARN(!ret
, "Could not request EC cmd io port 0x%lx", ec
->command_addr
);
817 pr_info("GPE = 0x%lx, I/O: command/status = 0x%lx, data = 0x%lx\n",
818 ec
->gpe
, ec
->command_addr
, ec
->data_addr
);
820 ret
= ec_install_handlers(ec
);
822 /* EC is fully operational, allow queries */
823 clear_bit(EC_FLAGS_QUERY_PENDING
, &ec
->flags
);
827 static int acpi_ec_remove(struct acpi_device
*device
)
830 struct acpi_ec_query_handler
*handler
, *tmp
;
835 ec
= acpi_driver_data(device
);
836 ec_remove_handlers(ec
);
837 mutex_lock(&ec
->mutex
);
838 list_for_each_entry_safe(handler
, tmp
, &ec
->list
, node
) {
839 list_del(&handler
->node
);
842 mutex_unlock(&ec
->mutex
);
843 release_region(ec
->data_addr
, 1);
844 release_region(ec
->command_addr
, 1);
845 device
->driver_data
= NULL
;
853 ec_parse_io_ports(struct acpi_resource
*resource
, void *context
)
855 struct acpi_ec
*ec
= context
;
857 if (resource
->type
!= ACPI_RESOURCE_TYPE_IO
)
861 * The first address region returned is the data port, and
862 * the second address region returned is the status/command
865 if (ec
->data_addr
== 0)
866 ec
->data_addr
= resource
->data
.io
.minimum
;
867 else if (ec
->command_addr
== 0)
868 ec
->command_addr
= resource
->data
.io
.minimum
;
870 return AE_CTRL_TERMINATE
;
875 int __init
acpi_boot_ec_enable(void)
877 if (!boot_ec
|| test_bit(EC_FLAGS_HANDLERS_INSTALLED
, &boot_ec
->flags
))
879 if (!ec_install_handlers(boot_ec
)) {
886 static const struct acpi_device_id ec_device_ids
[] = {
891 /* Some BIOS do not survive early DSDT scan, skip it */
892 static int ec_skip_dsdt_scan(const struct dmi_system_id
*id
)
894 EC_FLAGS_SKIP_DSDT_SCAN
= 1;
898 /* ASUStek often supplies us with broken ECDT, validate it */
899 static int ec_validate_ecdt(const struct dmi_system_id
*id
)
901 EC_FLAGS_VALIDATE_ECDT
= 1;
905 /* MSI EC needs special treatment, enable it */
906 static int ec_flag_msi(const struct dmi_system_id
*id
)
908 pr_debug("Detected MSI hardware, enabling workarounds.\n");
910 EC_FLAGS_VALIDATE_ECDT
= 1;
915 * Clevo M720 notebook actually works ok with IRQ mode, if we lifted
916 * the GPE storm threshold back to 20
918 static int ec_enlarge_storm_threshold(const struct dmi_system_id
*id
)
920 pr_debug("Setting the EC GPE storm threshold to 20\n");
921 ec_storm_threshold
= 20;
925 static struct dmi_system_id ec_dmi_table
[] __initdata
= {
927 ec_skip_dsdt_scan
, "Compal JFL92", {
928 DMI_MATCH(DMI_BIOS_VENDOR
, "COMPAL"),
929 DMI_MATCH(DMI_BOARD_NAME
, "JFL92") }, NULL
},
931 ec_flag_msi
, "MSI hardware", {
932 DMI_MATCH(DMI_BIOS_VENDOR
, "Micro-Star")}, NULL
},
934 ec_flag_msi
, "MSI hardware", {
935 DMI_MATCH(DMI_SYS_VENDOR
, "Micro-Star")}, NULL
},
937 ec_flag_msi
, "MSI hardware", {
938 DMI_MATCH(DMI_CHASSIS_VENDOR
, "MICRO-Star")}, NULL
},
940 ec_flag_msi
, "MSI hardware", {
941 DMI_MATCH(DMI_CHASSIS_VENDOR
, "MICRO-STAR")}, NULL
},
943 ec_flag_msi
, "Quanta hardware", {
944 DMI_MATCH(DMI_SYS_VENDOR
, "Quanta"),
945 DMI_MATCH(DMI_PRODUCT_NAME
, "TW8/SW8/DW8"),}, NULL
},
947 ec_flag_msi
, "Quanta hardware", {
948 DMI_MATCH(DMI_SYS_VENDOR
, "Quanta"),
949 DMI_MATCH(DMI_PRODUCT_NAME
, "TW9/SW9"),}, NULL
},
951 ec_validate_ecdt
, "ASUS hardware", {
952 DMI_MATCH(DMI_BIOS_VENDOR
, "ASUS") }, NULL
},
954 ec_validate_ecdt
, "ASUS hardware", {
955 DMI_MATCH(DMI_BOARD_VENDOR
, "ASUSTeK Computer Inc.") }, NULL
},
957 ec_enlarge_storm_threshold
, "CLEVO hardware", {
958 DMI_MATCH(DMI_SYS_VENDOR
, "CLEVO Co."),
959 DMI_MATCH(DMI_PRODUCT_NAME
, "M720T/M730T"),}, NULL
},
961 ec_skip_dsdt_scan
, "HP Folio 13", {
962 DMI_MATCH(DMI_SYS_VENDOR
, "Hewlett-Packard"),
963 DMI_MATCH(DMI_PRODUCT_NAME
, "HP Folio 13"),}, NULL
},
965 ec_validate_ecdt
, "ASUS hardware", {
966 DMI_MATCH(DMI_SYS_VENDOR
, "ASUSTek Computer Inc."),
967 DMI_MATCH(DMI_PRODUCT_NAME
, "L4R"),}, NULL
},
971 int __init
acpi_ec_ecdt_probe(void)
974 struct acpi_ec
*saved_ec
= NULL
;
975 struct acpi_table_ecdt
*ecdt_ptr
;
977 boot_ec
= make_acpi_ec();
981 * Generate a boot ec context
983 dmi_check_system(ec_dmi_table
);
984 status
= acpi_get_table(ACPI_SIG_ECDT
, 1,
985 (struct acpi_table_header
**)&ecdt_ptr
);
986 if (ACPI_SUCCESS(status
)) {
987 pr_info("EC description table is found, configuring boot EC\n");
988 boot_ec
->command_addr
= ecdt_ptr
->control
.address
;
989 boot_ec
->data_addr
= ecdt_ptr
->data
.address
;
990 boot_ec
->gpe
= ecdt_ptr
->gpe
;
991 boot_ec
->handle
= ACPI_ROOT_OBJECT
;
992 acpi_get_handle(ACPI_ROOT_OBJECT
, ecdt_ptr
->id
, &boot_ec
->handle
);
993 /* Don't trust ECDT, which comes from ASUSTek */
994 if (!EC_FLAGS_VALIDATE_ECDT
)
996 saved_ec
= kmemdup(boot_ec
, sizeof(struct acpi_ec
), GFP_KERNEL
);
1002 if (EC_FLAGS_SKIP_DSDT_SCAN
)
1005 /* This workaround is needed only on some broken machines,
1006 * which require early EC, but fail to provide ECDT */
1007 pr_debug("Look up EC in DSDT\n");
1008 status
= acpi_get_devices(ec_device_ids
[0].id
, ec_parse_device
,
1010 /* Check that acpi_get_devices actually find something */
1011 if (ACPI_FAILURE(status
) || !boot_ec
->handle
)
1014 /* try to find good ECDT from ASUSTek */
1015 if (saved_ec
->command_addr
!= boot_ec
->command_addr
||
1016 saved_ec
->data_addr
!= boot_ec
->data_addr
||
1017 saved_ec
->gpe
!= boot_ec
->gpe
||
1018 saved_ec
->handle
!= boot_ec
->handle
)
1019 pr_info("ASUSTek keeps feeding us with broken "
1020 "ECDT tables, which are very hard to workaround. "
1021 "Trying to use DSDT EC info instead. Please send "
1022 "output of acpidump to linux-acpi@vger.kernel.org\n");
1026 /* We really need to limit this workaround, the only ASUS,
1027 * which needs it, has fake EC._INI method, so use it as flag.
1028 * Keep boot_ec struct as it will be needed soon.
1030 if (!dmi_name_in_vendors("ASUS") ||
1031 !acpi_has_method(boot_ec
->handle
, "_INI"))
1035 if (!ec_install_handlers(boot_ec
)) {
1045 static struct acpi_driver acpi_ec_driver
= {
1047 .class = ACPI_EC_CLASS
,
1048 .ids
= ec_device_ids
,
1051 .remove
= acpi_ec_remove
,
1055 int __init
acpi_ec_init(void)
1059 /* Now register the driver for the EC */
1060 result
= acpi_bus_register_driver(&acpi_ec_driver
);
1067 /* EC driver currently not unloadable */
1069 static void __exit
acpi_ec_exit(void)
1072 acpi_bus_unregister_driver(&acpi_ec_driver
);