2 * ec.c - ACPI Embedded Controller Driver (v2.0)
4 * Copyright (C) 2006, 2007 Alexey Starikovskiy <alexey.y.starikovskiy@intel.com>
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 #include <linux/kernel.h>
30 #include <linux/module.h>
31 #include <linux/init.h>
32 #include <linux/types.h>
33 #include <linux/delay.h>
34 #include <linux/proc_fs.h>
35 #include <linux/seq_file.h>
36 #include <linux/interrupt.h>
37 #include <linux/list.h>
39 #include <acpi/acpi_bus.h>
40 #include <acpi/acpi_drivers.h>
41 #include <acpi/actypes.h>
43 #define ACPI_EC_CLASS "embedded_controller"
44 #define ACPI_EC_DEVICE_NAME "Embedded Controller"
45 #define ACPI_EC_FILE_INFO "info"
48 #define PREFIX "ACPI: EC: "
50 /* EC status register */
51 #define ACPI_EC_FLAG_OBF 0x01 /* Output buffer full */
52 #define ACPI_EC_FLAG_IBF 0x02 /* Input buffer full */
53 #define ACPI_EC_FLAG_BURST 0x10 /* burst mode */
54 #define ACPI_EC_FLAG_SCI 0x20 /* EC-SCI occurred */
58 ACPI_EC_COMMAND_READ = 0x80,
59 ACPI_EC_COMMAND_WRITE = 0x81,
60 ACPI_EC_BURST_ENABLE = 0x82,
61 ACPI_EC_BURST_DISABLE = 0x83,
62 ACPI_EC_COMMAND_QUERY = 0x84,
67 ACPI_EC_EVENT_OBF_1 = 1, /* Output buffer full */
68 ACPI_EC_EVENT_IBF_0, /* Input buffer empty */
71 #define ACPI_EC_DELAY 500 /* Wait 500ms max. during EC ops */
72 #define ACPI_EC_UDELAY_GLK 1000 /* Wait 1ms max. to get global lock */
75 EC_FLAGS_WAIT_GPE = 0, /* Don't check status until GPE arrives */
76 EC_FLAGS_QUERY_PENDING, /* Query is pending */
77 EC_FLAGS_GPE_MODE, /* Expect GPE to be sent for status change */
80 static int acpi_ec_remove(struct acpi_device *device, int type);
81 static int acpi_ec_start(struct acpi_device *device);
82 static int acpi_ec_stop(struct acpi_device *device, int type);
83 static int acpi_ec_add(struct acpi_device *device);
85 static const struct acpi_device_id ec_device_ids[] = {
90 static struct acpi_driver acpi_ec_driver = {
92 .class = ACPI_EC_CLASS,
96 .remove = acpi_ec_remove,
97 .start = acpi_ec_start,
102 /* If we find an EC via the ECDT, we need to keep a ptr to its context */
103 /* External interfaces use first EC only, so remember */
104 typedef int (*acpi_ec_query_func) (void *data);
106 struct acpi_ec_query_handler {
107 struct list_head node;
108 acpi_ec_query_func func;
114 static struct acpi_ec {
117 unsigned long command_addr;
118 unsigned long data_addr;
119 unsigned long global_lock;
122 wait_queue_head_t wait;
123 struct list_head list;
124 u8 handlers_installed;
125 } *boot_ec, *first_ec;
127 /* --------------------------------------------------------------------------
128 Transaction Management
129 -------------------------------------------------------------------------- */
131 static inline u8 acpi_ec_read_status(struct acpi_ec *ec)
133 return inb(ec->command_addr);
136 static inline u8 acpi_ec_read_data(struct acpi_ec *ec)
138 return inb(ec->data_addr);
141 static inline void acpi_ec_write_cmd(struct acpi_ec *ec, u8 command)
143 outb(command, ec->command_addr);
146 static inline void acpi_ec_write_data(struct acpi_ec *ec, u8 data)
148 outb(data, ec->data_addr);
151 static inline int acpi_ec_check_status(struct acpi_ec *ec, enum ec_event event)
153 if (test_bit(EC_FLAGS_WAIT_GPE, &ec->flags))
155 if (event == ACPI_EC_EVENT_OBF_1) {
156 if (acpi_ec_read_status(ec) & ACPI_EC_FLAG_OBF)
158 } else if (event == ACPI_EC_EVENT_IBF_0) {
159 if (!(acpi_ec_read_status(ec) & ACPI_EC_FLAG_IBF))
166 static int acpi_ec_wait(struct acpi_ec *ec, enum ec_event event, int force_poll)
168 if (likely(test_bit(EC_FLAGS_GPE_MODE, &ec->flags)) &&
169 likely(!force_poll)) {
170 if (wait_event_timeout(ec->wait, acpi_ec_check_status(ec, event),
171 msecs_to_jiffies(ACPI_EC_DELAY)))
173 clear_bit(EC_FLAGS_WAIT_GPE, &ec->flags);
174 if (acpi_ec_check_status(ec, event)) {
175 clear_bit(EC_FLAGS_GPE_MODE, &ec->flags);
179 unsigned long delay = jiffies + msecs_to_jiffies(ACPI_EC_DELAY);
180 clear_bit(EC_FLAGS_WAIT_GPE, &ec->flags);
181 while (time_before(jiffies, delay)) {
182 if (acpi_ec_check_status(ec, event))
186 printk(KERN_ERR PREFIX "acpi_ec_wait timeout,"
187 " status = %d, expect_event = %d\n",
188 acpi_ec_read_status(ec), event);
192 static int acpi_ec_transaction_unlocked(struct acpi_ec *ec, u8 command,
193 const u8 * wdata, unsigned wdata_len,
194 u8 * rdata, unsigned rdata_len,
198 set_bit(EC_FLAGS_WAIT_GPE, &ec->flags);
199 acpi_ec_write_cmd(ec, command);
201 for (; wdata_len > 0; --wdata_len) {
202 result = acpi_ec_wait(ec, ACPI_EC_EVENT_IBF_0, force_poll);
204 printk(KERN_ERR PREFIX
205 "write_cmd timeout, command = %d\n", command);
208 set_bit(EC_FLAGS_WAIT_GPE, &ec->flags);
209 acpi_ec_write_data(ec, *(wdata++));
213 result = acpi_ec_wait(ec, ACPI_EC_EVENT_IBF_0, force_poll);
215 printk(KERN_ERR PREFIX
216 "finish-write timeout, command = %d\n", command);
219 } else if (command == ACPI_EC_COMMAND_QUERY)
220 clear_bit(EC_FLAGS_QUERY_PENDING, &ec->flags);
222 for (; rdata_len > 0; --rdata_len) {
223 result = acpi_ec_wait(ec, ACPI_EC_EVENT_OBF_1, force_poll);
225 printk(KERN_ERR PREFIX "read timeout, command = %d\n",
229 /* Don't expect GPE after last read */
231 set_bit(EC_FLAGS_WAIT_GPE, &ec->flags);
232 *(rdata++) = acpi_ec_read_data(ec);
238 static int acpi_ec_transaction(struct acpi_ec *ec, u8 command,
239 const u8 * wdata, unsigned wdata_len,
240 u8 * rdata, unsigned rdata_len,
246 if (!ec || (wdata_len && !wdata) || (rdata_len && !rdata))
250 memset(rdata, 0, rdata_len);
252 mutex_lock(&ec->lock);
253 if (ec->global_lock) {
254 status = acpi_acquire_global_lock(ACPI_EC_UDELAY_GLK, &glk);
255 if (ACPI_FAILURE(status)) {
256 mutex_unlock(&ec->lock);
261 /* Make sure GPE is enabled before doing transaction */
262 acpi_enable_gpe(NULL, ec->gpe, ACPI_NOT_ISR);
264 status = acpi_ec_wait(ec, ACPI_EC_EVENT_IBF_0, 0);
266 printk(KERN_ERR PREFIX
267 "input buffer is not empty, aborting transaction\n");
271 status = acpi_ec_transaction_unlocked(ec, command,
279 acpi_release_global_lock(glk);
280 mutex_unlock(&ec->lock);
286 * Note: samsung nv5000 doesn't work with ec burst mode.
287 * http://bugzilla.kernel.org/show_bug.cgi?id=4980
289 int acpi_ec_burst_enable(struct acpi_ec *ec)
292 return acpi_ec_transaction(ec, ACPI_EC_BURST_ENABLE, NULL, 0, &d, 1, 0);
295 int acpi_ec_burst_disable(struct acpi_ec *ec)
297 return acpi_ec_transaction(ec, ACPI_EC_BURST_DISABLE, NULL, 0, NULL, 0, 0);
300 static int acpi_ec_read(struct acpi_ec *ec, u8 address, u8 * data)
305 result = acpi_ec_transaction(ec, ACPI_EC_COMMAND_READ,
306 &address, 1, &d, 1, 0);
311 static int acpi_ec_write(struct acpi_ec *ec, u8 address, u8 data)
313 u8 wdata[2] = { address, data };
314 return acpi_ec_transaction(ec, ACPI_EC_COMMAND_WRITE,
315 wdata, 2, NULL, 0, 0);
319 * Externally callable EC access functions. For now, assume 1 EC only
321 int ec_burst_enable(void)
325 return acpi_ec_burst_enable(first_ec);
328 EXPORT_SYMBOL(ec_burst_enable);
330 int ec_burst_disable(void)
334 return acpi_ec_burst_disable(first_ec);
337 EXPORT_SYMBOL(ec_burst_disable);
339 int ec_read(u8 addr, u8 * val)
347 err = acpi_ec_read(first_ec, addr, &temp_data);
356 EXPORT_SYMBOL(ec_read);
358 int ec_write(u8 addr, u8 val)
365 err = acpi_ec_write(first_ec, addr, val);
370 EXPORT_SYMBOL(ec_write);
372 int ec_transaction(u8 command,
373 const u8 * wdata, unsigned wdata_len,
374 u8 * rdata, unsigned rdata_len,
380 return acpi_ec_transaction(first_ec, command, wdata,
381 wdata_len, rdata, rdata_len,
385 EXPORT_SYMBOL(ec_transaction);
387 static int acpi_ec_query(struct acpi_ec *ec, u8 * data)
396 * Query the EC to find out which _Qxx method we need to evaluate.
397 * Note that successful completion of the query causes the ACPI_EC_SCI
398 * bit to be cleared (and thus clearing the interrupt source).
401 result = acpi_ec_transaction(ec, ACPI_EC_COMMAND_QUERY, NULL, 0, &d, 1, 0);
412 /* --------------------------------------------------------------------------
414 -------------------------------------------------------------------------- */
415 int acpi_ec_add_query_handler(struct acpi_ec *ec, u8 query_bit,
416 acpi_handle handle, acpi_ec_query_func func,
419 struct acpi_ec_query_handler *handler =
420 kzalloc(sizeof(struct acpi_ec_query_handler), GFP_KERNEL);
424 handler->query_bit = query_bit;
425 handler->handle = handle;
426 handler->func = func;
427 handler->data = data;
428 mutex_lock(&ec->lock);
429 list_add(&handler->node, &ec->list);
430 mutex_unlock(&ec->lock);
434 EXPORT_SYMBOL_GPL(acpi_ec_add_query_handler);
436 void acpi_ec_remove_query_handler(struct acpi_ec *ec, u8 query_bit)
438 struct acpi_ec_query_handler *handler;
439 mutex_lock(&ec->lock);
440 list_for_each_entry(handler, &ec->list, node) {
441 if (query_bit == handler->query_bit) {
442 list_del(&handler->node);
446 mutex_unlock(&ec->lock);
449 EXPORT_SYMBOL_GPL(acpi_ec_remove_query_handler);
451 static void acpi_ec_gpe_query(void *ec_cxt)
453 struct acpi_ec *ec = ec_cxt;
455 struct acpi_ec_query_handler *handler, copy;
457 if (!ec || acpi_ec_query(ec, &value))
459 mutex_lock(&ec->lock);
460 list_for_each_entry(handler, &ec->list, node) {
461 if (value == handler->query_bit) {
462 /* have custom handler for this bit */
463 memcpy(©, handler, sizeof(copy));
464 mutex_unlock(&ec->lock);
466 copy.func(copy.data);
467 } else if (copy.handle) {
468 acpi_evaluate_object(copy.handle, NULL, NULL, NULL);
473 mutex_unlock(&ec->lock);
476 static u32 acpi_ec_gpe_handler(void *data)
478 acpi_status status = AE_OK;
479 struct acpi_ec *ec = data;
481 clear_bit(EC_FLAGS_WAIT_GPE, &ec->flags);
482 if (test_bit(EC_FLAGS_GPE_MODE, &ec->flags))
485 if (acpi_ec_read_status(ec) & ACPI_EC_FLAG_SCI) {
486 if (!test_and_set_bit(EC_FLAGS_QUERY_PENDING, &ec->flags))
487 status = acpi_os_execute(OSL_EC_BURST_HANDLER,
488 acpi_ec_gpe_query, ec);
489 } else if (unlikely(!test_bit(EC_FLAGS_GPE_MODE, &ec->flags)))
490 set_bit(EC_FLAGS_GPE_MODE, &ec->flags);
492 return ACPI_SUCCESS(status) ?
493 ACPI_INTERRUPT_HANDLED : ACPI_INTERRUPT_NOT_HANDLED;
496 /* --------------------------------------------------------------------------
497 Address Space Management
498 -------------------------------------------------------------------------- */
501 acpi_ec_space_setup(acpi_handle region_handle,
502 u32 function, void *handler_context, void **return_context)
505 * The EC object is in the handler context and is needed
506 * when calling the acpi_ec_space_handler.
508 *return_context = (function != ACPI_REGION_DEACTIVATE) ?
509 handler_context : NULL;
515 acpi_ec_space_handler(u32 function, acpi_physical_address address,
516 u32 bits, acpi_integer *value,
517 void *handler_context, void *region_context)
519 struct acpi_ec *ec = handler_context;
520 int result = 0, i = 0;
523 if ((address > 0xFF) || !value || !handler_context)
524 return AE_BAD_PARAMETER;
526 if (function != ACPI_READ && function != ACPI_WRITE)
527 return AE_BAD_PARAMETER;
529 if (bits != 8 && acpi_strict)
530 return AE_BAD_PARAMETER;
532 while (bits - i > 0) {
533 if (function == ACPI_READ) {
534 result = acpi_ec_read(ec, address, &temp);
535 (*value) |= ((acpi_integer)temp) << i;
537 temp = 0xff & ((*value) >> i);
538 result = acpi_ec_write(ec, address, temp);
546 return AE_BAD_PARAMETER;
559 /* --------------------------------------------------------------------------
561 -------------------------------------------------------------------------- */
563 static struct proc_dir_entry *acpi_ec_dir;
565 static int acpi_ec_read_info(struct seq_file *seq, void *offset)
567 struct acpi_ec *ec = seq->private;
572 seq_printf(seq, "gpe:\t\t\t0x%02x\n", (u32) ec->gpe);
573 seq_printf(seq, "ports:\t\t\t0x%02x, 0x%02x\n",
574 (unsigned)ec->command_addr, (unsigned)ec->data_addr);
575 seq_printf(seq, "use global lock:\t%s\n",
576 ec->global_lock ? "yes" : "no");
581 static int acpi_ec_info_open_fs(struct inode *inode, struct file *file)
583 return single_open(file, acpi_ec_read_info, PDE(inode)->data);
586 static struct file_operations acpi_ec_info_ops = {
587 .open = acpi_ec_info_open_fs,
590 .release = single_release,
591 .owner = THIS_MODULE,
594 static int acpi_ec_add_fs(struct acpi_device *device)
596 struct proc_dir_entry *entry = NULL;
598 if (!acpi_device_dir(device)) {
599 acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device),
601 if (!acpi_device_dir(device))
605 entry = create_proc_entry(ACPI_EC_FILE_INFO, S_IRUGO,
606 acpi_device_dir(device));
610 entry->proc_fops = &acpi_ec_info_ops;
611 entry->data = acpi_driver_data(device);
612 entry->owner = THIS_MODULE;
618 static int acpi_ec_remove_fs(struct acpi_device *device)
621 if (acpi_device_dir(device)) {
622 remove_proc_entry(ACPI_EC_FILE_INFO, acpi_device_dir(device));
623 remove_proc_entry(acpi_device_bid(device), acpi_ec_dir);
624 acpi_device_dir(device) = NULL;
630 /* --------------------------------------------------------------------------
632 -------------------------------------------------------------------------- */
634 ec_parse_io_ports(struct acpi_resource *resource, void *context);
636 static struct acpi_ec *make_acpi_ec(void)
638 struct acpi_ec *ec = kzalloc(sizeof(struct acpi_ec), GFP_KERNEL);
642 ec->flags = 1 << EC_FLAGS_QUERY_PENDING;
643 mutex_init(&ec->lock);
644 init_waitqueue_head(&ec->wait);
645 INIT_LIST_HEAD(&ec->list);
651 acpi_ec_register_query_methods(acpi_handle handle, u32 level,
652 void *context, void **return_value)
654 struct acpi_namespace_node *node = handle;
655 struct acpi_ec *ec = context;
657 if (sscanf(node->name.ascii, "_Q%x", &value) == 1) {
658 acpi_ec_add_query_handler(ec, value, handle, NULL, NULL);
664 ec_parse_device(acpi_handle handle, u32 Level, void *context, void **retval)
668 struct acpi_ec *ec = context;
669 status = acpi_walk_resources(handle, METHOD_NAME__CRS,
670 ec_parse_io_ports, ec);
671 if (ACPI_FAILURE(status))
674 /* Get GPE bit assignment (EC events). */
675 /* TODO: Add support for _GPE returning a package */
676 status = acpi_evaluate_integer(handle, "_GPE", NULL, &ec->gpe);
677 if (ACPI_FAILURE(status))
679 /* Find and register all query methods */
680 acpi_walk_namespace(ACPI_TYPE_METHOD, handle, 1,
681 acpi_ec_register_query_methods, ec, NULL);
682 /* Use the global lock for all EC transactions? */
683 acpi_evaluate_integer(handle, "_GLK", NULL, &ec->global_lock);
685 return AE_CTRL_TERMINATE;
688 static void ec_remove_handlers(struct acpi_ec *ec)
690 if (ACPI_FAILURE(acpi_remove_address_space_handler(ec->handle,
691 ACPI_ADR_SPACE_EC, &acpi_ec_space_handler)))
692 printk(KERN_ERR PREFIX "failed to remove space handler\n");
693 if (ACPI_FAILURE(acpi_remove_gpe_handler(NULL, ec->gpe,
694 &acpi_ec_gpe_handler)))
695 printk(KERN_ERR PREFIX "failed to remove gpe handler\n");
696 ec->handlers_installed = 0;
699 static int acpi_ec_add(struct acpi_device *device)
701 struct acpi_ec *ec = NULL;
705 strcpy(acpi_device_name(device), ACPI_EC_DEVICE_NAME);
706 strcpy(acpi_device_class(device), ACPI_EC_CLASS);
708 /* Check for boot EC */
710 if (boot_ec->handle == device->handle) {
711 /* Pre-loaded EC from DSDT, just move pointer */
715 } else if (boot_ec->handle == ACPI_ROOT_OBJECT) {
716 /* ECDT-based EC, time to shut it down */
717 ec_remove_handlers(boot_ec);
719 first_ec = boot_ec = NULL;
727 if (ec_parse_device(device->handle, 0, ec, NULL) !=
732 ec->handle = device->handle;
736 acpi_driver_data(device) = ec;
737 acpi_ec_add_fs(device);
738 printk(KERN_INFO PREFIX "GPE = 0x%lx, I/O: command/status = 0x%lx, data = 0x%lx\n",
739 ec->gpe, ec->command_addr, ec->data_addr);
743 static int acpi_ec_remove(struct acpi_device *device, int type)
746 struct acpi_ec_query_handler *handler, *tmp;
751 ec = acpi_driver_data(device);
752 mutex_lock(&ec->lock);
753 list_for_each_entry_safe(handler, tmp, &ec->list, node) {
754 list_del(&handler->node);
757 mutex_unlock(&ec->lock);
758 acpi_ec_remove_fs(device);
759 acpi_driver_data(device) = NULL;
767 ec_parse_io_ports(struct acpi_resource *resource, void *context)
769 struct acpi_ec *ec = context;
771 if (resource->type != ACPI_RESOURCE_TYPE_IO)
775 * The first address region returned is the data port, and
776 * the second address region returned is the status/command
779 if (ec->data_addr == 0)
780 ec->data_addr = resource->data.io.minimum;
781 else if (ec->command_addr == 0)
782 ec->command_addr = resource->data.io.minimum;
784 return AE_CTRL_TERMINATE;
789 static int ec_install_handlers(struct acpi_ec *ec)
792 if (ec->handlers_installed)
794 status = acpi_install_gpe_handler(NULL, ec->gpe,
795 ACPI_GPE_EDGE_TRIGGERED,
796 &acpi_ec_gpe_handler, ec);
797 if (ACPI_FAILURE(status))
800 acpi_set_gpe_type(NULL, ec->gpe, ACPI_GPE_TYPE_RUNTIME);
801 acpi_enable_gpe(NULL, ec->gpe, ACPI_NOT_ISR);
803 status = acpi_install_address_space_handler(ec->handle,
805 &acpi_ec_space_handler,
806 &acpi_ec_space_setup, ec);
807 if (ACPI_FAILURE(status)) {
808 acpi_remove_gpe_handler(NULL, ec->gpe, &acpi_ec_gpe_handler);
812 ec->handlers_installed = 1;
816 static int acpi_ec_start(struct acpi_device *device)
824 ec = acpi_driver_data(device);
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_stop(struct acpi_device *device, int type)
841 ec = acpi_driver_data(device);
844 ec_remove_handlers(ec);
849 int __init acpi_ec_ecdt_probe(void)
853 struct acpi_table_ecdt *ecdt_ptr;
855 boot_ec = make_acpi_ec();
859 * Generate a boot ec context
861 status = acpi_get_table(ACPI_SIG_ECDT, 1,
862 (struct acpi_table_header **)&ecdt_ptr);
863 if (ACPI_SUCCESS(status)) {
864 printk(KERN_INFO PREFIX "EC description table is found, configuring boot EC\n");
865 boot_ec->command_addr = ecdt_ptr->control.address;
866 boot_ec->data_addr = ecdt_ptr->data.address;
867 boot_ec->gpe = ecdt_ptr->gpe;
868 boot_ec->handle = ACPI_ROOT_OBJECT;
870 printk(KERN_DEBUG PREFIX "Look up EC in DSDT\n");
871 status = acpi_get_devices(ec_device_ids[0].id, ec_parse_device,
873 /* Check that acpi_get_devices actually find something */
874 if (ACPI_FAILURE(status) || !boot_ec->handle)
878 ret = ec_install_handlers(boot_ec);
889 static int __init acpi_ec_init(void)
896 acpi_ec_dir = proc_mkdir(ACPI_EC_CLASS, acpi_root_dir);
900 /* Now register the driver for the EC */
901 result = acpi_bus_register_driver(&acpi_ec_driver);
903 remove_proc_entry(ACPI_EC_CLASS, acpi_root_dir);
910 subsys_initcall(acpi_ec_init);
912 /* EC driver currently not unloadable */
914 static void __exit acpi_ec_exit(void)
917 acpi_bus_unregister_driver(&acpi_ec_driver);
919 remove_proc_entry(ACPI_EC_CLASS, acpi_root_dir);