blob: ef42316f89f52452f69192d89894ca9ba64f46ee [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +04002 * ec.c - ACPI Embedded Controller Driver (v2.1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +04004 * Copyright (C) 2006-2008 Alexey Starikovskiy <astarikovskiy@suse.de>
Alexey Starikovskiy01f22462007-03-07 22:28:00 +03005 * Copyright (C) 2006 Denis Sadykov <denis.m.sadykov@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * 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>
9 *
10 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
11 *
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.
16 *
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.
21 *
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.
25 *
26 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
27 */
28
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +040029/* Uncomment next line to get verbose printout */
Márton Némethd772b3b2008-01-23 22:34:09 -050030/* #define DEBUG */
31
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/kernel.h>
33#include <linux/module.h>
34#include <linux/init.h>
35#include <linux/types.h>
36#include <linux/delay.h>
37#include <linux/proc_fs.h>
38#include <linux/seq_file.h>
Dmitry Torokhov451566f2005-03-19 01:10:05 -050039#include <linux/interrupt.h>
Alexey Starikovskiy837012e2007-05-29 16:43:02 +040040#include <linux/list.h>
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +040041#include <linux/spinlock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <asm/io.h>
43#include <acpi/acpi_bus.h>
44#include <acpi/acpi_drivers.h>
45#include <acpi/actypes.h>
46
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#define ACPI_EC_CLASS "embedded_controller"
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#define ACPI_EC_DEVICE_NAME "Embedded Controller"
49#define ACPI_EC_FILE_INFO "info"
Alexey Starikovskiy837012e2007-05-29 16:43:02 +040050
Alexey Starikovskiyaf3fd142006-12-07 18:42:16 +030051#undef PREFIX
52#define PREFIX "ACPI: EC: "
Alexey Starikovskiy43509332007-05-29 16:42:57 +040053
Denis M. Sadykov703959d2006-09-26 19:50:33 +040054/* EC status register */
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#define ACPI_EC_FLAG_OBF 0x01 /* Output buffer full */
56#define ACPI_EC_FLAG_IBF 0x02 /* Input buffer full */
Dmitry Torokhov451566f2005-03-19 01:10:05 -050057#define ACPI_EC_FLAG_BURST 0x10 /* burst mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#define ACPI_EC_FLAG_SCI 0x20 /* EC-SCI occurred */
Alexey Starikovskiy43509332007-05-29 16:42:57 +040059
Denis M. Sadykov703959d2006-09-26 19:50:33 +040060/* EC commands */
Alexey Starikovskiy3261ff42006-12-07 18:42:17 +030061enum ec_command {
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +030062 ACPI_EC_COMMAND_READ = 0x80,
63 ACPI_EC_COMMAND_WRITE = 0x81,
64 ACPI_EC_BURST_ENABLE = 0x82,
65 ACPI_EC_BURST_DISABLE = 0x83,
66 ACPI_EC_COMMAND_QUERY = 0x84,
Alexey Starikovskiy3261ff42006-12-07 18:42:17 +030067};
Alexey Starikovskiy837012e2007-05-29 16:43:02 +040068
Alexey Starikovskiy5c406412006-12-07 18:42:16 +030069#define ACPI_EC_DELAY 500 /* Wait 500ms max. during EC ops */
Denis M. Sadykov703959d2006-09-26 19:50:33 +040070#define ACPI_EC_UDELAY_GLK 1000 /* Wait 1ms max. to get global lock */
Alexey Starikovskiye6e82a32008-03-21 17:06:57 +030071#define ACPI_EC_UDELAY 100 /* Wait 100us before polling EC again */
Denis M. Sadykov703959d2006-09-26 19:50:33 +040072
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +040073#define ACPI_EC_STORM_THRESHOLD 20 /* number of false interrupts
74 per one transaction */
75
Alexey Starikovskiy080e4122007-10-22 14:18:30 +040076enum {
Alexey Starikovskiy080e4122007-10-22 14:18:30 +040077 EC_FLAGS_QUERY_PENDING, /* Query is pending */
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +040078 EC_FLAGS_GPE_MODE, /* Expect GPE to be sent
79 * for status change */
Alexey Starikovskiyb77d81b2008-03-21 17:07:15 +030080 EC_FLAGS_NO_GPE, /* Don't use GPE mode */
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +040081 EC_FLAGS_GPE_STORM, /* GPE storm detected */
82 EC_FLAGS_HANDLERS_INSTALLED /* Handlers for GPE and
83 * OpReg are installed */
Linus Torvalds1da177e2005-04-16 15:20:36 -070084};
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +040085
86/* If we find an EC via the ECDT, we need to keep a ptr to its context */
Alexey Starikovskiyd0338792007-03-07 22:28:00 +030087/* External interfaces use first EC only, so remember */
Alexey Starikovskiy837012e2007-05-29 16:43:02 +040088typedef int (*acpi_ec_query_func) (void *data);
89
90struct acpi_ec_query_handler {
91 struct list_head node;
92 acpi_ec_query_func func;
93 acpi_handle handle;
94 void *data;
95 u8 query_bit;
96};
97
Alexey Starikovskiy84632002008-09-26 00:54:28 +040098struct transaction {
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +040099 const u8 *wdata;
100 u8 *rdata;
101 unsigned short irq_count;
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400102 u8 command;
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400103 u8 wlen;
104 u8 rlen;
105};
106
Adrian Bunka854e082006-12-19 12:56:12 -0800107static struct acpi_ec {
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400108 acpi_handle handle;
Alexey Starikovskiya86e2772006-12-07 18:42:16 +0300109 unsigned long gpe;
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400110 unsigned long command_addr;
111 unsigned long data_addr;
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400112 unsigned long global_lock;
Alexey Starikovskiy080e4122007-10-22 14:18:30 +0400113 unsigned long flags;
Alexey Starikovskiyc787a852006-12-07 18:42:16 +0300114 struct mutex lock;
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400115 wait_queue_head_t wait;
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400116 struct list_head list;
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400117 struct transaction *curr;
118 spinlock_t curr_lock;
Alexey Starikovskiyd0338792007-03-07 22:28:00 +0300119} *boot_ec, *first_ec;
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400120
Zhao Yakui25008222008-08-12 10:40:10 +0800121/*
122 * Some Asus system have exchanged ECDT data/command IO addresses.
123 */
124static int print_ecdt_error(const struct dmi_system_id *id)
125{
126 printk(KERN_NOTICE PREFIX "%s detected - "
127 "ECDT has exchanged control/data I/O address\n",
128 id->ident);
129 return 0;
130}
131
132static struct dmi_system_id __cpuinitdata ec_dmi_table[] = {
133 {
134 print_ecdt_error, "Asus L4R", {
135 DMI_MATCH(DMI_BIOS_VERSION, "1008.006"),
136 DMI_MATCH(DMI_PRODUCT_NAME, "L4R"),
137 DMI_MATCH(DMI_BOARD_NAME, "L4R") }, NULL},
138 {
139 print_ecdt_error, "Asus M6R", {
140 DMI_MATCH(DMI_BIOS_VERSION, "0207"),
141 DMI_MATCH(DMI_PRODUCT_NAME, "M6R"),
142 DMI_MATCH(DMI_BOARD_NAME, "M6R") }, NULL},
143 {},
144};
145
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146/* --------------------------------------------------------------------------
147 Transaction Management
148 -------------------------------------------------------------------------- */
149
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400150static inline u8 acpi_ec_read_status(struct acpi_ec *ec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151{
Márton Németh3ebe08a2007-11-21 03:23:26 +0300152 u8 x = inb(ec->command_addr);
Márton Németh86dae012008-01-23 22:33:06 -0500153 pr_debug(PREFIX "---> status = 0x%2.2x\n", x);
Márton Németh3ebe08a2007-11-21 03:23:26 +0300154 return x;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155}
156
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400157static inline u8 acpi_ec_read_data(struct acpi_ec *ec)
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400158{
Márton Németh3ebe08a2007-11-21 03:23:26 +0300159 u8 x = inb(ec->data_addr);
Márton Németh86dae012008-01-23 22:33:06 -0500160 pr_debug(PREFIX "---> data = 0x%2.2x\n", x);
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400161 return x;
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400162}
163
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400164static inline void acpi_ec_write_cmd(struct acpi_ec *ec, u8 command)
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400165{
Márton Németh86dae012008-01-23 22:33:06 -0500166 pr_debug(PREFIX "<--- command = 0x%2.2x\n", command);
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400167 outb(command, ec->command_addr);
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400168}
169
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400170static inline void acpi_ec_write_data(struct acpi_ec *ec, u8 data)
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400171{
Márton Németh86dae012008-01-23 22:33:06 -0500172 pr_debug(PREFIX "<--- data = 0x%2.2x\n", data);
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400173 outb(data, ec->data_addr);
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400174}
175
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400176static int ec_transaction_done(struct acpi_ec *ec)
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400177{
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400178 unsigned long flags;
179 int ret = 0;
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400180 spin_lock_irqsave(&ec->curr_lock, flags);
181 if (!ec->curr || (!ec->curr->wlen && !ec->curr->rlen))
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400182 ret = 1;
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400183 spin_unlock_irqrestore(&ec->curr_lock, flags);
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400184 return ret;
185}
Denis M. Sadykov7c6db5e2006-09-26 19:50:33 +0400186
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400187static void gpe_transaction(struct acpi_ec *ec, u8 status)
188{
189 unsigned long flags;
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400190 spin_lock_irqsave(&ec->curr_lock, flags);
191 if (!ec->curr)
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400192 goto unlock;
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400193 if (ec->curr->wlen > 0) {
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400194 if ((status & ACPI_EC_FLAG_IBF) == 0) {
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400195 acpi_ec_write_data(ec, *(ec->curr->wdata++));
196 --ec->curr->wlen;
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400197 } else
198 /* false interrupt, state didn't change */
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400199 ++ec->curr->irq_count;
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400200
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400201 } else if (ec->curr->rlen > 0) {
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400202 if ((status & ACPI_EC_FLAG_OBF) == 1) {
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400203 *(ec->curr->rdata++) = acpi_ec_read_data(ec);
204 --ec->curr->rlen;
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400205 } else
206 /* false interrupt, state didn't change */
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400207 ++ec->curr->irq_count;
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400208 }
209unlock:
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400210 spin_unlock_irqrestore(&ec->curr_lock, flags);
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400211}
212
213static int acpi_ec_wait(struct acpi_ec *ec)
214{
215 if (wait_event_timeout(ec->wait, ec_transaction_done(ec),
216 msecs_to_jiffies(ACPI_EC_DELAY)))
217 return 0;
218 /* missing GPEs, switch back to poll mode */
219 if (printk_ratelimit())
220 pr_info(PREFIX "missing confirmations, "
221 "switch off interrupt mode.\n");
222 set_bit(EC_FLAGS_NO_GPE, &ec->flags);
223 clear_bit(EC_FLAGS_GPE_MODE, &ec->flags);
224 return 1;
225}
226
227static void acpi_ec_gpe_query(void *ec_cxt);
228
229static int ec_check_sci(struct acpi_ec *ec, u8 state)
230{
231 if (state & ACPI_EC_FLAG_SCI) {
232 if (!test_and_set_bit(EC_FLAGS_QUERY_PENDING, &ec->flags))
233 return acpi_os_execute(OSL_EC_BURST_HANDLER,
234 acpi_ec_gpe_query, ec);
235 }
Denis M. Sadykov7c6db5e2006-09-26 19:50:33 +0400236 return 0;
237}
238
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400239static int ec_poll(struct acpi_ec *ec)
Alexey Starikovskiy845625c2008-03-21 17:07:03 +0300240{
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400241 unsigned long delay = jiffies + msecs_to_jiffies(ACPI_EC_DELAY);
242 msleep(1);
243 while (time_before(jiffies, delay)) {
244 gpe_transaction(ec, acpi_ec_read_status(ec));
245 msleep(1);
246 if (ec_transaction_done(ec))
Zhao Yakui9d699ed2008-08-11 10:33:31 +0800247 return 0;
Alexey Starikovskiyaf3fd142006-12-07 18:42:16 +0300248 }
Alexey Starikovskiyb77d81b2008-03-21 17:07:15 +0300249 return -ETIME;
Dmitry Torokhov451566f2005-03-19 01:10:05 -0500250}
251
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400252static int acpi_ec_transaction_unlocked(struct acpi_ec *ec,
253 struct transaction *t,
Lennart Poettering00eb43a2007-05-04 14:16:19 +0200254 int force_poll)
Lennart Poetteringd7a76e42006-09-05 12:12:24 -0400255{
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400256 unsigned long tmp;
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400257 int ret = 0;
Márton Németh3ebe08a2007-11-21 03:23:26 +0300258 pr_debug(PREFIX "transaction start\n");
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400259 /* disable GPE during transaction if storm is detected */
260 if (test_bit(EC_FLAGS_GPE_STORM, &ec->flags)) {
261 clear_bit(EC_FLAGS_GPE_MODE, &ec->flags);
262 acpi_disable_gpe(NULL, ec->gpe, ACPI_NOT_ISR);
Denis M. Sadykov3576cf62006-09-26 19:50:33 +0400263 }
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400264 /* start transaction */
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400265 spin_lock_irqsave(&ec->curr_lock, tmp);
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400266 /* following two actions should be kept atomic */
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400267 t->irq_count = 0;
268 ec->curr = t;
269 acpi_ec_write_cmd(ec, ec->curr->command);
270 if (ec->curr->command == ACPI_EC_COMMAND_QUERY)
Alexey Starikovskiy080e4122007-10-22 14:18:30 +0400271 clear_bit(EC_FLAGS_QUERY_PENDING, &ec->flags);
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400272 spin_unlock_irqrestore(&ec->curr_lock, tmp);
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400273 /* if we selected poll mode or failed in GPE-mode do a poll loop */
274 if (force_poll ||
275 !test_bit(EC_FLAGS_GPE_MODE, &ec->flags) ||
276 acpi_ec_wait(ec))
277 ret = ec_poll(ec);
Márton Németh3ebe08a2007-11-21 03:23:26 +0300278 pr_debug(PREFIX "transaction end\n");
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400279 spin_lock_irqsave(&ec->curr_lock, tmp);
280 ec->curr = NULL;
281 spin_unlock_irqrestore(&ec->curr_lock, tmp);
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400282 if (test_bit(EC_FLAGS_GPE_STORM, &ec->flags)) {
283 /* check if we received SCI during transaction */
284 ec_check_sci(ec, acpi_ec_read_status(ec));
285 /* it is safe to enable GPE outside of transaction */
286 acpi_enable_gpe(NULL, ec->gpe, ACPI_NOT_ISR);
287 } else if (test_bit(EC_FLAGS_GPE_MODE, &ec->flags) &&
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400288 t->irq_count > ACPI_EC_STORM_THRESHOLD) {
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400289 pr_debug(PREFIX "GPE storm detected\n");
290 set_bit(EC_FLAGS_GPE_STORM, &ec->flags);
291 }
292 return ret;
Lennart Poetteringd7a76e42006-09-05 12:12:24 -0400293}
294
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400295static int ec_check_ibf0(struct acpi_ec *ec)
296{
297 u8 status = acpi_ec_read_status(ec);
298 return (status & ACPI_EC_FLAG_IBF) == 0;
Lennart Poetteringd7a76e42006-09-05 12:12:24 -0400299}
300
Alexey Starikovskiyc0ff1772008-10-16 02:02:33 +0400301static int ec_wait_ibf0(struct acpi_ec *ec)
302{
303 unsigned long delay = jiffies + msecs_to_jiffies(ACPI_EC_DELAY);
304 /* interrupt wait manually if GPE mode is not active */
305 unsigned long timeout = test_bit(EC_FLAGS_GPE_MODE, &ec->flags) ?
306 msecs_to_jiffies(ACPI_EC_DELAY) : msecs_to_jiffies(1);
307 while (time_before(jiffies, delay))
308 if (wait_event_timeout(ec->wait, ec_check_ibf0(ec), timeout))
309 return 0;
310 return -ETIME;
311}
312
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400313static int acpi_ec_transaction(struct acpi_ec *ec, struct transaction *t,
Lennart Poettering00eb43a2007-05-04 14:16:19 +0200314 int force_poll)
Luming Yu45bea152005-07-23 04:08:00 -0400315{
Lennart Poetteringd7a76e42006-09-05 12:12:24 -0400316 int status;
Len Brown50526df2005-08-11 17:32:05 -0400317 u32 glk;
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400318 if (!ec || (!t) || (t->wlen && !t->wdata) || (t->rlen && !t->rdata))
Patrick Mocheld550d982006-06-27 00:41:40 -0400319 return -EINVAL;
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400320 if (t->rdata)
321 memset(t->rdata, 0, t->rlen);
Alexey Starikovskiy523953b2006-12-07 18:42:17 +0300322 mutex_lock(&ec->lock);
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400323 if (ec->global_lock) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 status = acpi_acquire_global_lock(ACPI_EC_UDELAY_GLK, &glk);
Alexey Starikovskiyc24e9122007-02-15 23:16:18 +0300325 if (ACPI_FAILURE(status)) {
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400326 status = -ENODEV;
327 goto unlock;
Alexey Starikovskiyc24e9122007-02-15 23:16:18 +0300328 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 }
Alexey Starikovskiyc0ff1772008-10-16 02:02:33 +0400330 if (ec_wait_ibf0(ec)) {
Márton Németh3ebe08a2007-11-21 03:23:26 +0300331 pr_err(PREFIX "input buffer is not empty, "
332 "aborting transaction\n");
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400333 status = -ETIME;
Dmitry Torokhov451566f2005-03-19 01:10:05 -0500334 goto end;
Luming Yu716e0842005-08-10 01:40:00 -0400335 }
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400336 status = acpi_ec_transaction_unlocked(ec, t, force_poll);
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400337end:
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400338 if (ec->global_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 acpi_release_global_lock(glk);
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400340unlock:
Alexey Starikovskiy523953b2006-12-07 18:42:17 +0300341 mutex_unlock(&ec->lock);
Patrick Mocheld550d982006-06-27 00:41:40 -0400342 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343}
344
Alexey Starikovskiyc45aac42007-03-07 22:28:00 +0300345/*
346 * Note: samsung nv5000 doesn't work with ec burst mode.
347 * http://bugzilla.kernel.org/show_bug.cgi?id=4980
348 */
349int acpi_ec_burst_enable(struct acpi_ec *ec)
350{
351 u8 d;
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400352 struct transaction t = {.command = ACPI_EC_BURST_ENABLE,
353 .wdata = NULL, .rdata = &d,
354 .wlen = 0, .rlen = 1};
355
356 return acpi_ec_transaction(ec, &t, 0);
Alexey Starikovskiyc45aac42007-03-07 22:28:00 +0300357}
358
359int acpi_ec_burst_disable(struct acpi_ec *ec)
360{
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400361 struct transaction t = {.command = ACPI_EC_BURST_DISABLE,
362 .wdata = NULL, .rdata = NULL,
363 .wlen = 0, .rlen = 0};
364
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400365 return (acpi_ec_read_status(ec) & ACPI_EC_FLAG_BURST) ?
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400366 acpi_ec_transaction(ec, &t, 0) : 0;
Alexey Starikovskiyc45aac42007-03-07 22:28:00 +0300367}
368
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300369static int acpi_ec_read(struct acpi_ec *ec, u8 address, u8 * data)
Denis M. Sadykov3576cf62006-09-26 19:50:33 +0400370{
371 int result;
372 u8 d;
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400373 struct transaction t = {.command = ACPI_EC_COMMAND_READ,
374 .wdata = &address, .rdata = &d,
375 .wlen = 1, .rlen = 1};
Denis M. Sadykov3576cf62006-09-26 19:50:33 +0400376
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400377 result = acpi_ec_transaction(ec, &t, 0);
Denis M. Sadykov3576cf62006-09-26 19:50:33 +0400378 *data = d;
379 return result;
380}
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400381
Denis M. Sadykov3576cf62006-09-26 19:50:33 +0400382static int acpi_ec_write(struct acpi_ec *ec, u8 address, u8 data)
383{
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300384 u8 wdata[2] = { address, data };
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400385 struct transaction t = {.command = ACPI_EC_COMMAND_WRITE,
386 .wdata = wdata, .rdata = NULL,
387 .wlen = 2, .rlen = 0};
388
389 return acpi_ec_transaction(ec, &t, 0);
Denis M. Sadykov3576cf62006-09-26 19:50:33 +0400390}
391
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392/*
393 * Externally callable EC access functions. For now, assume 1 EC only
394 */
Alexey Starikovskiyc45aac42007-03-07 22:28:00 +0300395int ec_burst_enable(void)
396{
Alexey Starikovskiyc45aac42007-03-07 22:28:00 +0300397 if (!first_ec)
398 return -ENODEV;
Alexey Starikovskiyd0338792007-03-07 22:28:00 +0300399 return acpi_ec_burst_enable(first_ec);
Alexey Starikovskiyc45aac42007-03-07 22:28:00 +0300400}
401
402EXPORT_SYMBOL(ec_burst_enable);
403
404int ec_burst_disable(void)
405{
Alexey Starikovskiyc45aac42007-03-07 22:28:00 +0300406 if (!first_ec)
407 return -ENODEV;
Alexey Starikovskiyd0338792007-03-07 22:28:00 +0300408 return acpi_ec_burst_disable(first_ec);
Alexey Starikovskiyc45aac42007-03-07 22:28:00 +0300409}
410
411EXPORT_SYMBOL(ec_burst_disable);
412
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300413int ec_read(u8 addr, u8 * val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 int err;
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400416 u8 temp_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
418 if (!first_ec)
419 return -ENODEV;
420
Alexey Starikovskiyd0338792007-03-07 22:28:00 +0300421 err = acpi_ec_read(first_ec, addr, &temp_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422
423 if (!err) {
424 *val = temp_data;
425 return 0;
Len Brown50526df2005-08-11 17:32:05 -0400426 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 return err;
428}
Len Brown50526df2005-08-11 17:32:05 -0400429
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430EXPORT_SYMBOL(ec_read);
431
Len Brown50526df2005-08-11 17:32:05 -0400432int ec_write(u8 addr, u8 val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 int err;
435
436 if (!first_ec)
437 return -ENODEV;
438
Alexey Starikovskiyd0338792007-03-07 22:28:00 +0300439 err = acpi_ec_write(first_ec, addr, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
441 return err;
442}
Len Brown50526df2005-08-11 17:32:05 -0400443
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444EXPORT_SYMBOL(ec_write);
445
Randy Dunlap616362d2006-10-27 01:47:34 -0400446int ec_transaction(u8 command,
Alexey Starikovskiy9e197212007-03-07 18:29:35 -0500447 const u8 * wdata, unsigned wdata_len,
Lennart Poettering00eb43a2007-05-04 14:16:19 +0200448 u8 * rdata, unsigned rdata_len,
449 int force_poll)
Luming Yu45bea152005-07-23 04:08:00 -0400450{
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400451 struct transaction t = {.command = command,
452 .wdata = wdata, .rdata = rdata,
453 .wlen = wdata_len, .rlen = rdata_len};
Lennart Poetteringd7a76e42006-09-05 12:12:24 -0400454 if (!first_ec)
455 return -ENODEV;
456
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400457 return acpi_ec_transaction(first_ec, &t, force_poll);
Luming Yu45bea152005-07-23 04:08:00 -0400458}
Luming Yu45bea152005-07-23 04:08:00 -0400459
Lennart Poetteringab9e43c2006-10-03 22:49:00 -0400460EXPORT_SYMBOL(ec_transaction);
461
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300462static int acpi_ec_query(struct acpi_ec *ec, u8 * data)
Denis M. Sadykov3576cf62006-09-26 19:50:33 +0400463{
464 int result;
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300465 u8 d;
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400466 struct transaction t = {.command = ACPI_EC_COMMAND_QUERY,
467 .wdata = NULL, .rdata = &d,
468 .wlen = 0, .rlen = 1};
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300469 if (!ec || !data)
470 return -EINVAL;
Luming Yu45bea152005-07-23 04:08:00 -0400471
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300472 /*
473 * Query the EC to find out which _Qxx method we need to evaluate.
474 * Note that successful completion of the query causes the ACPI_EC_SCI
475 * bit to be cleared (and thus clearing the interrupt source).
476 */
Luming Yu45bea152005-07-23 04:08:00 -0400477
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400478 result = acpi_ec_transaction(ec, &t, 0);
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300479 if (result)
480 return result;
Luming Yu45bea152005-07-23 04:08:00 -0400481
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300482 if (!d)
483 return -ENODATA;
Luming Yu45bea152005-07-23 04:08:00 -0400484
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300485 *data = d;
486 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487}
488
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489/* --------------------------------------------------------------------------
490 Event Management
491 -------------------------------------------------------------------------- */
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400492int acpi_ec_add_query_handler(struct acpi_ec *ec, u8 query_bit,
493 acpi_handle handle, acpi_ec_query_func func,
494 void *data)
495{
496 struct acpi_ec_query_handler *handler =
497 kzalloc(sizeof(struct acpi_ec_query_handler), GFP_KERNEL);
498 if (!handler)
499 return -ENOMEM;
500
501 handler->query_bit = query_bit;
502 handler->handle = handle;
503 handler->func = func;
504 handler->data = data;
505 mutex_lock(&ec->lock);
Alexey Starikovskiy30c08572007-09-26 19:43:22 +0400506 list_add(&handler->node, &ec->list);
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400507 mutex_unlock(&ec->lock);
508 return 0;
509}
510
511EXPORT_SYMBOL_GPL(acpi_ec_add_query_handler);
512
513void acpi_ec_remove_query_handler(struct acpi_ec *ec, u8 query_bit)
514{
Adrian Bunk1544fdb2007-10-24 18:26:00 +0200515 struct acpi_ec_query_handler *handler, *tmp;
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400516 mutex_lock(&ec->lock);
Adrian Bunk1544fdb2007-10-24 18:26:00 +0200517 list_for_each_entry_safe(handler, tmp, &ec->list, node) {
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400518 if (query_bit == handler->query_bit) {
519 list_del(&handler->node);
520 kfree(handler);
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400521 }
522 }
523 mutex_unlock(&ec->lock);
524}
525
526EXPORT_SYMBOL_GPL(acpi_ec_remove_query_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
Len Brown50526df2005-08-11 17:32:05 -0400528static void acpi_ec_gpe_query(void *ec_cxt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529{
Alexey Starikovskiy3d02b902007-03-07 22:28:00 +0300530 struct acpi_ec *ec = ec_cxt;
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400531 u8 value = 0;
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400532 struct acpi_ec_query_handler *handler, copy;
Luming Yu45bea152005-07-23 04:08:00 -0400533
Alexey Starikovskiy5d0c2882006-12-07 18:42:16 +0300534 if (!ec || acpi_ec_query(ec, &value))
Alexey Starikovskiye41334c2006-12-07 18:42:16 +0300535 return;
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400536 mutex_lock(&ec->lock);
537 list_for_each_entry(handler, &ec->list, node) {
538 if (value == handler->query_bit) {
539 /* have custom handler for this bit */
540 memcpy(&copy, handler, sizeof(copy));
541 mutex_unlock(&ec->lock);
542 if (copy.func) {
543 copy.func(copy.data);
544 } else if (copy.handle) {
545 acpi_evaluate_object(copy.handle, NULL, NULL, NULL);
546 }
547 return;
548 }
549 }
550 mutex_unlock(&ec->lock);
Luming Yu45bea152005-07-23 04:08:00 -0400551}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
Len Brown50526df2005-08-11 17:32:05 -0400553static u32 acpi_ec_gpe_handler(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554{
Alexey Starikovskiy3d02b902007-03-07 22:28:00 +0300555 struct acpi_ec *ec = data;
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400556 u8 status;
Lennart Poettering00eb43a2007-05-04 14:16:19 +0200557
Márton Németh3ebe08a2007-11-21 03:23:26 +0300558 pr_debug(PREFIX "~~~> interrupt\n");
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400559 status = acpi_ec_read_status(ec);
560
561 gpe_transaction(ec, status);
562 if (ec_transaction_done(ec) && (status & ACPI_EC_FLAG_IBF) == 0)
Alexey Starikovskiyaf3fd142006-12-07 18:42:16 +0300563 wake_up(&ec->wait);
Dmitry Torokhov451566f2005-03-19 01:10:05 -0500564
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400565 ec_check_sci(ec, status);
566 if (!test_bit(EC_FLAGS_GPE_MODE, &ec->flags) &&
567 !test_bit(EC_FLAGS_NO_GPE, &ec->flags)) {
Alexey Starikovskiy95b937e2007-10-22 14:19:03 +0400568 /* this is non-query, must be confirmation */
Márton Németh3ebe08a2007-11-21 03:23:26 +0300569 if (printk_ratelimit())
570 pr_info(PREFIX "non-query interrupt received,"
571 " switching to interrupt mode\n");
Alexey Starikovskiy78439322007-10-22 14:18:43 +0400572 set_bit(EC_FLAGS_GPE_MODE, &ec->flags);
Alexey Starikovskiy95b937e2007-10-22 14:19:03 +0400573 }
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400574 return ACPI_INTERRUPT_HANDLED;
Alexey Starikovskiy845625c2008-03-21 17:07:03 +0300575}
576
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577/* --------------------------------------------------------------------------
578 Address Space Management
579 -------------------------------------------------------------------------- */
580
581static acpi_status
Alexey Starikovskiy5b7734b2007-05-29 16:42:52 +0400582acpi_ec_space_handler(u32 function, acpi_physical_address address,
583 u32 bits, acpi_integer *value,
Len Brown50526df2005-08-11 17:32:05 -0400584 void *handler_context, void *region_context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585{
Alexey Starikovskiy3d02b902007-03-07 22:28:00 +0300586 struct acpi_ec *ec = handler_context;
Alexey Starikovskiy3e71a872008-01-11 02:42:51 +0300587 int result = 0, i;
Alexey Starikovskiy5b7734b2007-05-29 16:42:52 +0400588 u8 temp = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 if ((address > 0xFF) || !value || !handler_context)
Patrick Mocheld550d982006-06-27 00:41:40 -0400591 return AE_BAD_PARAMETER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
Alexey Starikovskiy5b7734b2007-05-29 16:42:52 +0400593 if (function != ACPI_READ && function != ACPI_WRITE)
Patrick Mocheld550d982006-06-27 00:41:40 -0400594 return AE_BAD_PARAMETER;
Alexey Starikovskiy5b7734b2007-05-29 16:42:52 +0400595
596 if (bits != 8 && acpi_strict)
597 return AE_BAD_PARAMETER;
598
Alexey Starikovskiyb3b233c2008-01-11 02:42:57 +0300599 acpi_ec_burst_enable(ec);
600
Alexey Starikovskiy3e71a872008-01-11 02:42:51 +0300601 if (function == ACPI_READ) {
602 result = acpi_ec_read(ec, address, &temp);
603 *value = temp;
604 } else {
605 temp = 0xff & (*value);
606 result = acpi_ec_write(ec, address, temp);
607 }
608
609 for (i = 8; unlikely(bits - i > 0); i += 8) {
610 ++address;
Alexey Starikovskiy5b7734b2007-05-29 16:42:52 +0400611 if (function == ACPI_READ) {
612 result = acpi_ec_read(ec, address, &temp);
613 (*value) |= ((acpi_integer)temp) << i;
614 } else {
615 temp = 0xff & ((*value) >> i);
616 result = acpi_ec_write(ec, address, temp);
617 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 }
619
Alexey Starikovskiyb3b233c2008-01-11 02:42:57 +0300620 acpi_ec_burst_disable(ec);
621
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 switch (result) {
623 case -EINVAL:
Patrick Mocheld550d982006-06-27 00:41:40 -0400624 return AE_BAD_PARAMETER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 break;
626 case -ENODEV:
Patrick Mocheld550d982006-06-27 00:41:40 -0400627 return AE_NOT_FOUND;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 break;
629 case -ETIME:
Patrick Mocheld550d982006-06-27 00:41:40 -0400630 return AE_TIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 break;
632 default:
Patrick Mocheld550d982006-06-27 00:41:40 -0400633 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635}
636
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637/* --------------------------------------------------------------------------
638 FS Interface (/proc)
639 -------------------------------------------------------------------------- */
640
Len Brown50526df2005-08-11 17:32:05 -0400641static struct proc_dir_entry *acpi_ec_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
Len Brown50526df2005-08-11 17:32:05 -0400643static int acpi_ec_read_info(struct seq_file *seq, void *offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644{
Alexey Starikovskiy3d02b902007-03-07 22:28:00 +0300645 struct acpi_ec *ec = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 if (!ec)
648 goto end;
649
Alexey Starikovskiy01f22462007-03-07 22:28:00 +0300650 seq_printf(seq, "gpe:\t\t\t0x%02x\n", (u32) ec->gpe);
651 seq_printf(seq, "ports:\t\t\t0x%02x, 0x%02x\n",
652 (unsigned)ec->command_addr, (unsigned)ec->data_addr);
653 seq_printf(seq, "use global lock:\t%s\n",
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400654 ec->global_lock ? "yes" : "no");
Len Brown50526df2005-08-11 17:32:05 -0400655 end:
Patrick Mocheld550d982006-06-27 00:41:40 -0400656 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657}
658
659static int acpi_ec_info_open_fs(struct inode *inode, struct file *file)
660{
661 return single_open(file, acpi_ec_read_info, PDE(inode)->data);
662}
663
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400664static struct file_operations acpi_ec_info_ops = {
Len Brown50526df2005-08-11 17:32:05 -0400665 .open = acpi_ec_info_open_fs,
666 .read = seq_read,
667 .llseek = seq_lseek,
668 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 .owner = THIS_MODULE,
670};
671
Len Brown50526df2005-08-11 17:32:05 -0400672static int acpi_ec_add_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673{
Len Brown50526df2005-08-11 17:32:05 -0400674 struct proc_dir_entry *entry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 if (!acpi_device_dir(device)) {
677 acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device),
Len Brown50526df2005-08-11 17:32:05 -0400678 acpi_ec_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 if (!acpi_device_dir(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400680 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 }
682
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700683 entry = proc_create_data(ACPI_EC_FILE_INFO, S_IRUGO,
684 acpi_device_dir(device),
685 &acpi_ec_info_ops, acpi_driver_data(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -0400687 return -ENODEV;
Patrick Mocheld550d982006-06-27 00:41:40 -0400688 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689}
690
Len Brown50526df2005-08-11 17:32:05 -0400691static int acpi_ec_remove_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
694 if (acpi_device_dir(device)) {
695 remove_proc_entry(ACPI_EC_FILE_INFO, acpi_device_dir(device));
696 remove_proc_entry(acpi_device_bid(device), acpi_ec_dir);
697 acpi_device_dir(device) = NULL;
698 }
699
Patrick Mocheld550d982006-06-27 00:41:40 -0400700 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701}
702
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703/* --------------------------------------------------------------------------
704 Driver Interface
705 -------------------------------------------------------------------------- */
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300706static acpi_status
707ec_parse_io_ports(struct acpi_resource *resource, void *context);
708
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300709static struct acpi_ec *make_acpi_ec(void)
710{
711 struct acpi_ec *ec = kzalloc(sizeof(struct acpi_ec), GFP_KERNEL);
712 if (!ec)
713 return NULL;
Alexey Starikovskiy080e4122007-10-22 14:18:30 +0400714 ec->flags = 1 << EC_FLAGS_QUERY_PENDING;
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300715 mutex_init(&ec->lock);
716 init_waitqueue_head(&ec->wait);
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400717 INIT_LIST_HEAD(&ec->list);
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400718 spin_lock_init(&ec->curr_lock);
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300719 return ec;
720}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400722static acpi_status
Alexey Starikovskiyc019b192007-08-14 01:03:42 -0400723acpi_ec_register_query_methods(acpi_handle handle, u32 level,
724 void *context, void **return_value)
725{
726 struct acpi_namespace_node *node = handle;
727 struct acpi_ec *ec = context;
728 int value = 0;
729 if (sscanf(node->name.ascii, "_Q%x", &value) == 1) {
730 acpi_ec_add_query_handler(ec, value, handle, NULL, NULL);
731 }
732 return AE_OK;
733}
734
735static acpi_status
Alexey Starikovskiycd8c93a2007-08-03 17:52:48 -0400736ec_parse_device(acpi_handle handle, u32 Level, void *context, void **retval)
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400737{
Alexey Starikovskiycd8c93a2007-08-03 17:52:48 -0400738 acpi_status status;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400739 unsigned long long tmp;
Alexey Starikovskiycd8c93a2007-08-03 17:52:48 -0400740
741 struct acpi_ec *ec = context;
742 status = acpi_walk_resources(handle, METHOD_NAME__CRS,
743 ec_parse_io_ports, ec);
744 if (ACPI_FAILURE(status))
745 return status;
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400746
747 /* Get GPE bit assignment (EC events). */
748 /* TODO: Add support for _GPE returning a package */
Matthew Wilcox27663c52008-10-10 02:22:59 -0400749 status = acpi_evaluate_integer(handle, "_GPE", NULL, &tmp);
Alexey Starikovskiycd8c93a2007-08-03 17:52:48 -0400750 if (ACPI_FAILURE(status))
751 return status;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400752 ec->gpe = tmp;
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400753 /* Use the global lock for all EC transactions? */
Matthew Wilcox27663c52008-10-10 02:22:59 -0400754 acpi_evaluate_integer(handle, "_GLK", NULL, &tmp);
755 ec->global_lock = tmp;
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400756 ec->handle = handle;
Alexey Starikovskiycd8c93a2007-08-03 17:52:48 -0400757 return AE_CTRL_TERMINATE;
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400758}
759
Alexey Starikovskiy4c611062007-09-05 19:56:38 -0400760static void ec_remove_handlers(struct acpi_ec *ec)
761{
762 if (ACPI_FAILURE(acpi_remove_address_space_handler(ec->handle,
763 ACPI_ADR_SPACE_EC, &acpi_ec_space_handler)))
Márton Németh3ebe08a2007-11-21 03:23:26 +0300764 pr_err(PREFIX "failed to remove space handler\n");
Alexey Starikovskiy4c611062007-09-05 19:56:38 -0400765 if (ACPI_FAILURE(acpi_remove_gpe_handler(NULL, ec->gpe,
766 &acpi_ec_gpe_handler)))
Márton Németh3ebe08a2007-11-21 03:23:26 +0300767 pr_err(PREFIX "failed to remove gpe handler\n");
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400768 clear_bit(EC_FLAGS_HANDLERS_INSTALLED, &ec->flags);
Alexey Starikovskiy4c611062007-09-05 19:56:38 -0400769}
770
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400771static int acpi_ec_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772{
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400773 struct acpi_ec *ec = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400776 return -EINVAL;
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300777 strcpy(acpi_device_name(device), ACPI_EC_DEVICE_NAME);
778 strcpy(acpi_device_class(device), ACPI_EC_CLASS);
779
Alexey Starikovskiy4c611062007-09-05 19:56:38 -0400780 /* Check for boot EC */
Alexey Starikovskiyce52ddf2008-03-24 23:22:36 +0300781 if (boot_ec &&
782 (boot_ec->handle == device->handle ||
783 boot_ec->handle == ACPI_ROOT_OBJECT)) {
784 ec = boot_ec;
785 boot_ec = NULL;
786 } else {
787 ec = make_acpi_ec();
788 if (!ec)
789 return -ENOMEM;
790 if (ec_parse_device(device->handle, 0, ec, NULL) !=
791 AE_CTRL_TERMINATE) {
792 kfree(ec);
793 return -EINVAL;
Alexey Starikovskiy4c611062007-09-05 19:56:38 -0400794 }
795 }
796
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300797 ec->handle = device->handle;
Alexey Starikovskiyce52ddf2008-03-24 23:22:36 +0300798
799 /* Find and register all query methods */
800 acpi_walk_namespace(ACPI_TYPE_METHOD, ec->handle, 1,
801 acpi_ec_register_query_methods, ec, NULL);
802
Alexey Starikovskiy4c611062007-09-05 19:56:38 -0400803 if (!first_ec)
804 first_ec = ec;
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700805 device->driver_data = ec;
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300806 acpi_ec_add_fs(device);
Márton Németh3ebe08a2007-11-21 03:23:26 +0300807 pr_info(PREFIX "GPE = 0x%lx, I/O: command/status = 0x%lx, data = 0x%lx\n",
Alexey Starikovskiy4c611062007-09-05 19:56:38 -0400808 ec->gpe, ec->command_addr, ec->data_addr);
Márton Németh3ebe08a2007-11-21 03:23:26 +0300809 pr_info(PREFIX "driver started in %s mode\n",
Alexey Starikovskiy95b937e2007-10-22 14:19:03 +0400810 (test_bit(EC_FLAGS_GPE_MODE, &ec->flags))?"interrupt":"poll");
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300811 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812}
813
Len Brown50526df2005-08-11 17:32:05 -0400814static int acpi_ec_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815{
Alexey Starikovskiy01f22462007-03-07 22:28:00 +0300816 struct acpi_ec *ec;
Adrian Bunk07ddf762007-07-29 17:00:37 +0200817 struct acpi_ec_query_handler *handler, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400820 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821
822 ec = acpi_driver_data(device);
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400823 mutex_lock(&ec->lock);
Adrian Bunk07ddf762007-07-29 17:00:37 +0200824 list_for_each_entry_safe(handler, tmp, &ec->list, node) {
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400825 list_del(&handler->node);
826 kfree(handler);
827 }
828 mutex_unlock(&ec->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 acpi_ec_remove_fs(device);
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700830 device->driver_data = NULL;
Alexey Starikovskiyd0338792007-03-07 22:28:00 +0300831 if (ec == first_ec)
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300832 first_ec = NULL;
Alexey Starikovskiy4c611062007-09-05 19:56:38 -0400833 kfree(ec);
Patrick Mocheld550d982006-06-27 00:41:40 -0400834 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835}
836
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837static acpi_status
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300838ec_parse_io_ports(struct acpi_resource *resource, void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839{
Alexey Starikovskiy3d02b902007-03-07 22:28:00 +0300840 struct acpi_ec *ec = context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841
Alexey Starikovskiy01f22462007-03-07 22:28:00 +0300842 if (resource->type != ACPI_RESOURCE_TYPE_IO)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844
845 /*
846 * The first address region returned is the data port, and
847 * the second address region returned is the status/command
848 * port.
849 */
Alexey Starikovskiy01f22462007-03-07 22:28:00 +0300850 if (ec->data_addr == 0)
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400851 ec->data_addr = resource->data.io.minimum;
Alexey Starikovskiy01f22462007-03-07 22:28:00 +0300852 else if (ec->command_addr == 0)
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400853 ec->command_addr = resource->data.io.minimum;
Alexey Starikovskiy01f22462007-03-07 22:28:00 +0300854 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 return AE_CTRL_TERMINATE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 return AE_OK;
858}
859
Alexey Starikovskiye8284322007-03-07 22:28:00 +0300860static int ec_install_handlers(struct acpi_ec *ec)
861{
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300862 acpi_status status;
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400863 if (test_bit(EC_FLAGS_HANDLERS_INSTALLED, &ec->flags))
Alexey Starikovskiy4c611062007-09-05 19:56:38 -0400864 return 0;
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300865 status = acpi_install_gpe_handler(NULL, ec->gpe,
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400866 ACPI_GPE_EDGE_TRIGGERED,
867 &acpi_ec_gpe_handler, ec);
Alexey Starikovskiye8284322007-03-07 22:28:00 +0300868 if (ACPI_FAILURE(status))
869 return -ENODEV;
870 acpi_set_gpe_type(NULL, ec->gpe, ACPI_GPE_TYPE_RUNTIME);
871 acpi_enable_gpe(NULL, ec->gpe, ACPI_NOT_ISR);
Alexey Starikovskiye8284322007-03-07 22:28:00 +0300872 status = acpi_install_address_space_handler(ec->handle,
873 ACPI_ADR_SPACE_EC,
874 &acpi_ec_space_handler,
Alexey Starikovskiy6d9e1122008-03-24 23:22:29 +0300875 NULL, ec);
Alexey Starikovskiye8284322007-03-07 22:28:00 +0300876 if (ACPI_FAILURE(status)) {
Zhao Yakui20edd742008-10-17 02:02:44 -0400877 if (status == AE_NOT_FOUND) {
878 /*
879 * Maybe OS fails in evaluating the _REG object.
880 * The AE_NOT_FOUND error will be ignored and OS
881 * continue to initialize EC.
882 */
883 printk(KERN_ERR "Fail in evaluating the _REG object"
884 " of EC device. Broken bios is suspected.\n");
885 } else {
886 acpi_remove_gpe_handler(NULL, ec->gpe,
887 &acpi_ec_gpe_handler);
888 return -ENODEV;
889 }
Alexey Starikovskiye8284322007-03-07 22:28:00 +0300890 }
891
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400892 set_bit(EC_FLAGS_HANDLERS_INSTALLED, &ec->flags);
Alexey Starikovskiye8284322007-03-07 22:28:00 +0300893 return 0;
894}
895
Len Brown50526df2005-08-11 17:32:05 -0400896static int acpi_ec_start(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897{
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300898 struct acpi_ec *ec;
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400899 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400902 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903
904 ec = acpi_driver_data(device);
905
906 if (!ec)
Patrick Mocheld550d982006-06-27 00:41:40 -0400907 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908
Alexey Starikovskiy4c611062007-09-05 19:56:38 -0400909 ret = ec_install_handlers(ec);
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300910
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400911 /* EC is fully operational, allow queries */
Alexey Starikovskiy080e4122007-10-22 14:18:30 +0400912 clear_bit(EC_FLAGS_QUERY_PENDING, &ec->flags);
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400913 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914}
915
Len Brown50526df2005-08-11 17:32:05 -0400916static int acpi_ec_stop(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917{
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300918 struct acpi_ec *ec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400920 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 ec = acpi_driver_data(device);
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300922 if (!ec)
923 return -EINVAL;
Alexey Starikovskiy4c611062007-09-05 19:56:38 -0400924 ec_remove_handlers(ec);
Alexey Starikovskiyf9319f92007-08-24 08:10:11 +0400925
Patrick Mocheld550d982006-06-27 00:41:40 -0400926 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927}
928
Alexey Starikovskiyc04209a2008-01-01 14:12:55 -0500929int __init acpi_boot_ec_enable(void)
930{
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400931 if (!boot_ec || test_bit(EC_FLAGS_HANDLERS_INSTALLED, &boot_ec->flags))
Alexey Starikovskiyc04209a2008-01-01 14:12:55 -0500932 return 0;
933 if (!ec_install_handlers(boot_ec)) {
934 first_ec = boot_ec;
935 return 0;
936 }
937 return -EFAULT;
938}
939
Alexey Starikovskiy223883b2008-03-21 17:07:21 +0300940static const struct acpi_device_id ec_device_ids[] = {
941 {"PNP0C09", 0},
942 {"", 0},
943};
944
Len Brown50526df2005-08-11 17:32:05 -0400945int __init acpi_ec_ecdt_probe(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946{
Len Brown50526df2005-08-11 17:32:05 -0400947 int ret;
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300948 acpi_status status;
949 struct acpi_table_ecdt *ecdt_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950
Alexey Starikovskiyd66d9692007-03-07 22:28:00 +0300951 boot_ec = make_acpi_ec();
952 if (!boot_ec)
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300953 return -ENOMEM;
954 /*
955 * Generate a boot ec context
956 */
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300957 status = acpi_get_table(ACPI_SIG_ECDT, 1,
958 (struct acpi_table_header **)&ecdt_ptr);
Alexey Starikovskiycd8c93a2007-08-03 17:52:48 -0400959 if (ACPI_SUCCESS(status)) {
Márton Németh3ebe08a2007-11-21 03:23:26 +0300960 pr_info(PREFIX "EC description table is found, configuring boot EC\n");
Alexey Starikovskiycd8c93a2007-08-03 17:52:48 -0400961 boot_ec->command_addr = ecdt_ptr->control.address;
962 boot_ec->data_addr = ecdt_ptr->data.address;
Zhao Yakui25008222008-08-12 10:40:10 +0800963 if (dmi_check_system(ec_dmi_table)) {
964 /*
965 * If the board falls into ec_dmi_table, it means
966 * that ECDT table gives the incorrect command/status
967 * & data I/O address. Just fix it.
968 */
969 boot_ec->data_addr = ecdt_ptr->control.address;
970 boot_ec->command_addr = ecdt_ptr->data.address;
971 }
Alexey Starikovskiycd8c93a2007-08-03 17:52:48 -0400972 boot_ec->gpe = ecdt_ptr->gpe;
Len Brown4af8e102008-03-11 00:27:16 -0400973 boot_ec->handle = ACPI_ROOT_OBJECT;
Alexey Starikovskiyce52ddf2008-03-24 23:22:36 +0300974 acpi_get_handle(ACPI_ROOT_OBJECT, ecdt_ptr->id, &boot_ec->handle);
Alexey Starikovskiycd8c93a2007-08-03 17:52:48 -0400975 } else {
Alexey Starikovskiy5870a8c2007-11-15 21:52:47 +0300976 /* This workaround is needed only on some broken machines,
977 * which require early EC, but fail to provide ECDT */
978 acpi_handle x;
Alexey Starikovskiycd8c93a2007-08-03 17:52:48 -0400979 printk(KERN_DEBUG PREFIX "Look up EC in DSDT\n");
980 status = acpi_get_devices(ec_device_ids[0].id, ec_parse_device,
981 boot_ec, NULL);
Alexey Starikovskiy2d8348b2007-08-31 09:05:26 +0400982 /* Check that acpi_get_devices actually find something */
983 if (ACPI_FAILURE(status) || !boot_ec->handle)
Alexey Starikovskiycd8c93a2007-08-03 17:52:48 -0400984 goto error;
Alexey Starikovskiy5870a8c2007-11-15 21:52:47 +0300985 /* We really need to limit this workaround, the only ASUS,
986 * which needs it, has fake EC._INI method, so use it as flag.
Alexey Starikovskiyc04209a2008-01-01 14:12:55 -0500987 * Keep boot_ec struct as it will be needed soon.
Alexey Starikovskiy5870a8c2007-11-15 21:52:47 +0300988 */
989 if (ACPI_FAILURE(acpi_get_handle(boot_ec->handle, "_INI", &x)))
Alexey Starikovskiyc04209a2008-01-01 14:12:55 -0500990 return -ENODEV;
Alexey Starikovskiycd8c93a2007-08-03 17:52:48 -0400991 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992
Alexey Starikovskiyd66d9692007-03-07 22:28:00 +0300993 ret = ec_install_handlers(boot_ec);
Alexey Starikovskiyd0338792007-03-07 22:28:00 +0300994 if (!ret) {
995 first_ec = boot_ec;
Alexey Starikovskiye8284322007-03-07 22:28:00 +0300996 return 0;
Alexey Starikovskiyd0338792007-03-07 22:28:00 +0300997 }
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300998 error:
Alexey Starikovskiyd66d9692007-03-07 22:28:00 +0300999 kfree(boot_ec);
1000 boot_ec = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 return -ENODEV;
1002}
1003
Alexey Starikovskiy223883b2008-03-21 17:07:21 +03001004static int acpi_ec_suspend(struct acpi_device *device, pm_message_t state)
1005{
1006 struct acpi_ec *ec = acpi_driver_data(device);
1007 /* Stop using GPE */
1008 set_bit(EC_FLAGS_NO_GPE, &ec->flags);
1009 clear_bit(EC_FLAGS_GPE_MODE, &ec->flags);
1010 acpi_disable_gpe(NULL, ec->gpe, ACPI_NOT_ISR);
1011 return 0;
1012}
1013
1014static int acpi_ec_resume(struct acpi_device *device)
1015{
1016 struct acpi_ec *ec = acpi_driver_data(device);
1017 /* Enable use of GPE back */
1018 clear_bit(EC_FLAGS_NO_GPE, &ec->flags);
1019 acpi_enable_gpe(NULL, ec->gpe, ACPI_NOT_ISR);
1020 return 0;
1021}
1022
1023static struct acpi_driver acpi_ec_driver = {
1024 .name = "ec",
1025 .class = ACPI_EC_CLASS,
1026 .ids = ec_device_ids,
1027 .ops = {
1028 .add = acpi_ec_add,
1029 .remove = acpi_ec_remove,
1030 .start = acpi_ec_start,
1031 .stop = acpi_ec_stop,
1032 .suspend = acpi_ec_suspend,
1033 .resume = acpi_ec_resume,
1034 },
1035};
1036
Len Brown50526df2005-08-11 17:32:05 -04001037static int __init acpi_ec_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038{
Len Brown50526df2005-08-11 17:32:05 -04001039 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 if (acpi_disabled)
Patrick Mocheld550d982006-06-27 00:41:40 -04001042 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043
1044 acpi_ec_dir = proc_mkdir(ACPI_EC_CLASS, acpi_root_dir);
1045 if (!acpi_ec_dir)
Patrick Mocheld550d982006-06-27 00:41:40 -04001046 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047
1048 /* Now register the driver for the EC */
1049 result = acpi_bus_register_driver(&acpi_ec_driver);
1050 if (result < 0) {
1051 remove_proc_entry(ACPI_EC_CLASS, acpi_root_dir);
Patrick Mocheld550d982006-06-27 00:41:40 -04001052 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 }
1054
Patrick Mocheld550d982006-06-27 00:41:40 -04001055 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056}
1057
1058subsys_initcall(acpi_ec_init);
1059
1060/* EC driver currently not unloadable */
1061#if 0
Len Brown50526df2005-08-11 17:32:05 -04001062static void __exit acpi_ec_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064
1065 acpi_bus_unregister_driver(&acpi_ec_driver);
1066
1067 remove_proc_entry(ACPI_EC_CLASS, acpi_root_dir);
1068
Patrick Mocheld550d982006-06-27 00:41:40 -04001069 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070}
Alexey Starikovskiy78439322007-10-22 14:18:43 +04001071#endif /* 0 */