blob: cebd65d2e2a9be262273576749ec77c93dce108d [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;
Alexey Starikovskiydd15f8c2008-11-08 21:42:30 +0300105 bool done;
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400106};
107
Adrian Bunka854e082006-12-19 12:56:12 -0800108static struct acpi_ec {
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400109 acpi_handle handle;
Alexey Starikovskiya86e2772006-12-07 18:42:16 +0300110 unsigned long gpe;
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400111 unsigned long command_addr;
112 unsigned long data_addr;
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400113 unsigned long global_lock;
Alexey Starikovskiy080e4122007-10-22 14:18:30 +0400114 unsigned long flags;
Alexey Starikovskiyc787a852006-12-07 18:42:16 +0300115 struct mutex lock;
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400116 wait_queue_head_t wait;
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400117 struct list_head list;
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400118 struct transaction *curr;
119 spinlock_t curr_lock;
Alexey Starikovskiyd0338792007-03-07 22:28:00 +0300120} *boot_ec, *first_ec;
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400121
Zhao Yakui25008222008-08-12 10:40:10 +0800122/*
123 * Some Asus system have exchanged ECDT data/command IO addresses.
124 */
125static int print_ecdt_error(const struct dmi_system_id *id)
126{
127 printk(KERN_NOTICE PREFIX "%s detected - "
128 "ECDT has exchanged control/data I/O address\n",
129 id->ident);
130 return 0;
131}
132
133static struct dmi_system_id __cpuinitdata ec_dmi_table[] = {
134 {
135 print_ecdt_error, "Asus L4R", {
136 DMI_MATCH(DMI_BIOS_VERSION, "1008.006"),
137 DMI_MATCH(DMI_PRODUCT_NAME, "L4R"),
138 DMI_MATCH(DMI_BOARD_NAME, "L4R") }, NULL},
139 {
140 print_ecdt_error, "Asus M6R", {
141 DMI_MATCH(DMI_BIOS_VERSION, "0207"),
142 DMI_MATCH(DMI_PRODUCT_NAME, "M6R"),
143 DMI_MATCH(DMI_BOARD_NAME, "M6R") }, NULL},
144 {},
145};
146
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147/* --------------------------------------------------------------------------
148 Transaction Management
149 -------------------------------------------------------------------------- */
150
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400151static inline u8 acpi_ec_read_status(struct acpi_ec *ec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152{
Márton Németh3ebe08a2007-11-21 03:23:26 +0300153 u8 x = inb(ec->command_addr);
Márton Németh86dae012008-01-23 22:33:06 -0500154 pr_debug(PREFIX "---> status = 0x%2.2x\n", x);
Márton Németh3ebe08a2007-11-21 03:23:26 +0300155 return x;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156}
157
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400158static inline u8 acpi_ec_read_data(struct acpi_ec *ec)
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400159{
Márton Németh3ebe08a2007-11-21 03:23:26 +0300160 u8 x = inb(ec->data_addr);
Márton Németh86dae012008-01-23 22:33:06 -0500161 pr_debug(PREFIX "---> data = 0x%2.2x\n", x);
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400162 return x;
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400163}
164
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400165static inline void acpi_ec_write_cmd(struct acpi_ec *ec, u8 command)
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400166{
Márton Németh86dae012008-01-23 22:33:06 -0500167 pr_debug(PREFIX "<--- command = 0x%2.2x\n", command);
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400168 outb(command, ec->command_addr);
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400169}
170
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400171static inline void acpi_ec_write_data(struct acpi_ec *ec, u8 data)
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400172{
Márton Németh86dae012008-01-23 22:33:06 -0500173 pr_debug(PREFIX "<--- data = 0x%2.2x\n", data);
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400174 outb(data, ec->data_addr);
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400175}
176
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400177static int ec_transaction_done(struct acpi_ec *ec)
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400178{
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400179 unsigned long flags;
180 int ret = 0;
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400181 spin_lock_irqsave(&ec->curr_lock, flags);
Alexey Starikovskiydd15f8c2008-11-08 21:42:30 +0300182 if (!ec->curr || ec->curr->done)
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400183 ret = 1;
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400184 spin_unlock_irqrestore(&ec->curr_lock, flags);
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400185 return ret;
186}
Denis M. Sadykov7c6db5e2006-09-26 19:50:33 +0400187
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400188static void gpe_transaction(struct acpi_ec *ec, u8 status)
189{
190 unsigned long flags;
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400191 spin_lock_irqsave(&ec->curr_lock, flags);
192 if (!ec->curr)
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400193 goto unlock;
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400194 if (ec->curr->wlen > 0) {
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400195 if ((status & ACPI_EC_FLAG_IBF) == 0) {
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400196 acpi_ec_write_data(ec, *(ec->curr->wdata++));
197 --ec->curr->wlen;
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400198 } else
Alexey Starikovskiydd15f8c2008-11-08 21:42:30 +0300199 goto err;
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400200 } else if (ec->curr->rlen > 0) {
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400201 if ((status & ACPI_EC_FLAG_OBF) == 1) {
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400202 *(ec->curr->rdata++) = acpi_ec_read_data(ec);
Alexey Starikovskiydd15f8c2008-11-08 21:42:30 +0300203 if (--ec->curr->rlen == 0)
204 ec->curr->done = true;
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400205 } else
Alexey Starikovskiydd15f8c2008-11-08 21:42:30 +0300206 goto err;
207 } else if (ec->curr->wlen == 0 && (status & ACPI_EC_FLAG_IBF) == 0)
208 ec->curr->done = true;
209 goto unlock;
210err:
211 /* false interrupt, state didn't change */
212 ++ec->curr->irq_count;
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400213unlock:
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400214 spin_unlock_irqrestore(&ec->curr_lock, flags);
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400215}
216
217static int acpi_ec_wait(struct acpi_ec *ec)
218{
219 if (wait_event_timeout(ec->wait, ec_transaction_done(ec),
220 msecs_to_jiffies(ACPI_EC_DELAY)))
221 return 0;
222 /* missing GPEs, switch back to poll mode */
223 if (printk_ratelimit())
224 pr_info(PREFIX "missing confirmations, "
225 "switch off interrupt mode.\n");
226 set_bit(EC_FLAGS_NO_GPE, &ec->flags);
227 clear_bit(EC_FLAGS_GPE_MODE, &ec->flags);
228 return 1;
229}
230
231static void acpi_ec_gpe_query(void *ec_cxt);
232
233static int ec_check_sci(struct acpi_ec *ec, u8 state)
234{
235 if (state & ACPI_EC_FLAG_SCI) {
236 if (!test_and_set_bit(EC_FLAGS_QUERY_PENDING, &ec->flags))
237 return acpi_os_execute(OSL_EC_BURST_HANDLER,
238 acpi_ec_gpe_query, ec);
239 }
Denis M. Sadykov7c6db5e2006-09-26 19:50:33 +0400240 return 0;
241}
242
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400243static int ec_poll(struct acpi_ec *ec)
Alexey Starikovskiy845625c2008-03-21 17:07:03 +0300244{
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400245 unsigned long delay = jiffies + msecs_to_jiffies(ACPI_EC_DELAY);
Alexey Starikovskiy1cfe62c2008-10-28 00:35:30 +0300246 udelay(ACPI_EC_UDELAY);
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400247 while (time_before(jiffies, delay)) {
248 gpe_transaction(ec, acpi_ec_read_status(ec));
Alexey Starikovskiy1cfe62c2008-10-28 00:35:30 +0300249 udelay(ACPI_EC_UDELAY);
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400250 if (ec_transaction_done(ec))
Zhao Yakui9d699ed2008-08-11 10:33:31 +0800251 return 0;
Alexey Starikovskiyaf3fd142006-12-07 18:42:16 +0300252 }
Alexey Starikovskiyb77d81b2008-03-21 17:07:15 +0300253 return -ETIME;
Dmitry Torokhov451566f2005-03-19 01:10:05 -0500254}
255
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400256static int acpi_ec_transaction_unlocked(struct acpi_ec *ec,
257 struct transaction *t,
Lennart Poettering00eb43a2007-05-04 14:16:19 +0200258 int force_poll)
Lennart Poetteringd7a76e42006-09-05 12:12:24 -0400259{
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400260 unsigned long tmp;
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400261 int ret = 0;
Márton Németh3ebe08a2007-11-21 03:23:26 +0300262 pr_debug(PREFIX "transaction start\n");
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400263 /* disable GPE during transaction if storm is detected */
264 if (test_bit(EC_FLAGS_GPE_STORM, &ec->flags)) {
265 clear_bit(EC_FLAGS_GPE_MODE, &ec->flags);
266 acpi_disable_gpe(NULL, ec->gpe, ACPI_NOT_ISR);
Denis M. Sadykov3576cf62006-09-26 19:50:33 +0400267 }
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400268 /* start transaction */
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400269 spin_lock_irqsave(&ec->curr_lock, tmp);
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400270 /* following two actions should be kept atomic */
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400271 t->irq_count = 0;
Alexey Starikovskiydd15f8c2008-11-08 21:42:30 +0300272 t->done = false;
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400273 ec->curr = t;
274 acpi_ec_write_cmd(ec, ec->curr->command);
275 if (ec->curr->command == ACPI_EC_COMMAND_QUERY)
Alexey Starikovskiy080e4122007-10-22 14:18:30 +0400276 clear_bit(EC_FLAGS_QUERY_PENDING, &ec->flags);
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400277 spin_unlock_irqrestore(&ec->curr_lock, tmp);
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400278 /* if we selected poll mode or failed in GPE-mode do a poll loop */
279 if (force_poll ||
280 !test_bit(EC_FLAGS_GPE_MODE, &ec->flags) ||
281 acpi_ec_wait(ec))
282 ret = ec_poll(ec);
Márton Németh3ebe08a2007-11-21 03:23:26 +0300283 pr_debug(PREFIX "transaction end\n");
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400284 spin_lock_irqsave(&ec->curr_lock, tmp);
285 ec->curr = NULL;
286 spin_unlock_irqrestore(&ec->curr_lock, tmp);
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400287 if (test_bit(EC_FLAGS_GPE_STORM, &ec->flags)) {
288 /* check if we received SCI during transaction */
289 ec_check_sci(ec, acpi_ec_read_status(ec));
290 /* it is safe to enable GPE outside of transaction */
291 acpi_enable_gpe(NULL, ec->gpe, ACPI_NOT_ISR);
292 } else if (test_bit(EC_FLAGS_GPE_MODE, &ec->flags) &&
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400293 t->irq_count > ACPI_EC_STORM_THRESHOLD) {
Alan Jenkinsf8248432008-11-01 11:05:26 +0000294 pr_info(PREFIX "GPE storm detected, "
295 "transactions will use polling mode\n");
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400296 set_bit(EC_FLAGS_GPE_STORM, &ec->flags);
297 }
298 return ret;
Lennart Poetteringd7a76e42006-09-05 12:12:24 -0400299}
300
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400301static int ec_check_ibf0(struct acpi_ec *ec)
302{
303 u8 status = acpi_ec_read_status(ec);
304 return (status & ACPI_EC_FLAG_IBF) == 0;
Lennart Poetteringd7a76e42006-09-05 12:12:24 -0400305}
306
Alexey Starikovskiyc0ff1772008-10-16 02:02:33 +0400307static int ec_wait_ibf0(struct acpi_ec *ec)
308{
309 unsigned long delay = jiffies + msecs_to_jiffies(ACPI_EC_DELAY);
310 /* interrupt wait manually if GPE mode is not active */
311 unsigned long timeout = test_bit(EC_FLAGS_GPE_MODE, &ec->flags) ?
312 msecs_to_jiffies(ACPI_EC_DELAY) : msecs_to_jiffies(1);
313 while (time_before(jiffies, delay))
314 if (wait_event_timeout(ec->wait, ec_check_ibf0(ec), timeout))
315 return 0;
316 return -ETIME;
317}
318
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400319static int acpi_ec_transaction(struct acpi_ec *ec, struct transaction *t,
Lennart Poettering00eb43a2007-05-04 14:16:19 +0200320 int force_poll)
Luming Yu45bea152005-07-23 04:08:00 -0400321{
Lennart Poetteringd7a76e42006-09-05 12:12:24 -0400322 int status;
Len Brown50526df2005-08-11 17:32:05 -0400323 u32 glk;
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400324 if (!ec || (!t) || (t->wlen && !t->wdata) || (t->rlen && !t->rdata))
Patrick Mocheld550d982006-06-27 00:41:40 -0400325 return -EINVAL;
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400326 if (t->rdata)
327 memset(t->rdata, 0, t->rlen);
Alexey Starikovskiy523953b2006-12-07 18:42:17 +0300328 mutex_lock(&ec->lock);
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400329 if (ec->global_lock) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 status = acpi_acquire_global_lock(ACPI_EC_UDELAY_GLK, &glk);
Alexey Starikovskiyc24e9122007-02-15 23:16:18 +0300331 if (ACPI_FAILURE(status)) {
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400332 status = -ENODEV;
333 goto unlock;
Alexey Starikovskiyc24e9122007-02-15 23:16:18 +0300334 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 }
Alexey Starikovskiyc0ff1772008-10-16 02:02:33 +0400336 if (ec_wait_ibf0(ec)) {
Márton Németh3ebe08a2007-11-21 03:23:26 +0300337 pr_err(PREFIX "input buffer is not empty, "
338 "aborting transaction\n");
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400339 status = -ETIME;
Dmitry Torokhov451566f2005-03-19 01:10:05 -0500340 goto end;
Luming Yu716e0842005-08-10 01:40:00 -0400341 }
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400342 status = acpi_ec_transaction_unlocked(ec, t, force_poll);
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400343end:
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400344 if (ec->global_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 acpi_release_global_lock(glk);
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400346unlock:
Alexey Starikovskiy523953b2006-12-07 18:42:17 +0300347 mutex_unlock(&ec->lock);
Patrick Mocheld550d982006-06-27 00:41:40 -0400348 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349}
350
Alexey Starikovskiyc45aac42007-03-07 22:28:00 +0300351/*
352 * Note: samsung nv5000 doesn't work with ec burst mode.
353 * http://bugzilla.kernel.org/show_bug.cgi?id=4980
354 */
355int acpi_ec_burst_enable(struct acpi_ec *ec)
356{
357 u8 d;
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400358 struct transaction t = {.command = ACPI_EC_BURST_ENABLE,
359 .wdata = NULL, .rdata = &d,
360 .wlen = 0, .rlen = 1};
361
362 return acpi_ec_transaction(ec, &t, 0);
Alexey Starikovskiyc45aac42007-03-07 22:28:00 +0300363}
364
365int acpi_ec_burst_disable(struct acpi_ec *ec)
366{
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400367 struct transaction t = {.command = ACPI_EC_BURST_DISABLE,
368 .wdata = NULL, .rdata = NULL,
369 .wlen = 0, .rlen = 0};
370
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400371 return (acpi_ec_read_status(ec) & ACPI_EC_FLAG_BURST) ?
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400372 acpi_ec_transaction(ec, &t, 0) : 0;
Alexey Starikovskiyc45aac42007-03-07 22:28:00 +0300373}
374
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300375static int acpi_ec_read(struct acpi_ec *ec, u8 address, u8 * data)
Denis M. Sadykov3576cf62006-09-26 19:50:33 +0400376{
377 int result;
378 u8 d;
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400379 struct transaction t = {.command = ACPI_EC_COMMAND_READ,
380 .wdata = &address, .rdata = &d,
381 .wlen = 1, .rlen = 1};
Denis M. Sadykov3576cf62006-09-26 19:50:33 +0400382
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400383 result = acpi_ec_transaction(ec, &t, 0);
Denis M. Sadykov3576cf62006-09-26 19:50:33 +0400384 *data = d;
385 return result;
386}
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400387
Denis M. Sadykov3576cf62006-09-26 19:50:33 +0400388static int acpi_ec_write(struct acpi_ec *ec, u8 address, u8 data)
389{
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300390 u8 wdata[2] = { address, data };
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400391 struct transaction t = {.command = ACPI_EC_COMMAND_WRITE,
392 .wdata = wdata, .rdata = NULL,
393 .wlen = 2, .rlen = 0};
394
395 return acpi_ec_transaction(ec, &t, 0);
Denis M. Sadykov3576cf62006-09-26 19:50:33 +0400396}
397
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398/*
399 * Externally callable EC access functions. For now, assume 1 EC only
400 */
Alexey Starikovskiyc45aac42007-03-07 22:28:00 +0300401int ec_burst_enable(void)
402{
Alexey Starikovskiyc45aac42007-03-07 22:28:00 +0300403 if (!first_ec)
404 return -ENODEV;
Alexey Starikovskiyd0338792007-03-07 22:28:00 +0300405 return acpi_ec_burst_enable(first_ec);
Alexey Starikovskiyc45aac42007-03-07 22:28:00 +0300406}
407
408EXPORT_SYMBOL(ec_burst_enable);
409
410int ec_burst_disable(void)
411{
Alexey Starikovskiyc45aac42007-03-07 22:28:00 +0300412 if (!first_ec)
413 return -ENODEV;
Alexey Starikovskiyd0338792007-03-07 22:28:00 +0300414 return acpi_ec_burst_disable(first_ec);
Alexey Starikovskiyc45aac42007-03-07 22:28:00 +0300415}
416
417EXPORT_SYMBOL(ec_burst_disable);
418
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300419int ec_read(u8 addr, u8 * val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 int err;
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400422 u8 temp_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
424 if (!first_ec)
425 return -ENODEV;
426
Alexey Starikovskiyd0338792007-03-07 22:28:00 +0300427 err = acpi_ec_read(first_ec, addr, &temp_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
429 if (!err) {
430 *val = temp_data;
431 return 0;
Len Brown50526df2005-08-11 17:32:05 -0400432 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 return err;
434}
Len Brown50526df2005-08-11 17:32:05 -0400435
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436EXPORT_SYMBOL(ec_read);
437
Len Brown50526df2005-08-11 17:32:05 -0400438int ec_write(u8 addr, u8 val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 int err;
441
442 if (!first_ec)
443 return -ENODEV;
444
Alexey Starikovskiyd0338792007-03-07 22:28:00 +0300445 err = acpi_ec_write(first_ec, addr, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
447 return err;
448}
Len Brown50526df2005-08-11 17:32:05 -0400449
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450EXPORT_SYMBOL(ec_write);
451
Randy Dunlap616362d2006-10-27 01:47:34 -0400452int ec_transaction(u8 command,
Alexey Starikovskiy9e197212007-03-07 18:29:35 -0500453 const u8 * wdata, unsigned wdata_len,
Lennart Poettering00eb43a2007-05-04 14:16:19 +0200454 u8 * rdata, unsigned rdata_len,
455 int force_poll)
Luming Yu45bea152005-07-23 04:08:00 -0400456{
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400457 struct transaction t = {.command = command,
458 .wdata = wdata, .rdata = rdata,
459 .wlen = wdata_len, .rlen = rdata_len};
Lennart Poetteringd7a76e42006-09-05 12:12:24 -0400460 if (!first_ec)
461 return -ENODEV;
462
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400463 return acpi_ec_transaction(first_ec, &t, force_poll);
Luming Yu45bea152005-07-23 04:08:00 -0400464}
Luming Yu45bea152005-07-23 04:08:00 -0400465
Lennart Poetteringab9e43c2006-10-03 22:49:00 -0400466EXPORT_SYMBOL(ec_transaction);
467
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300468static int acpi_ec_query(struct acpi_ec *ec, u8 * data)
Denis M. Sadykov3576cf62006-09-26 19:50:33 +0400469{
470 int result;
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300471 u8 d;
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400472 struct transaction t = {.command = ACPI_EC_COMMAND_QUERY,
473 .wdata = NULL, .rdata = &d,
474 .wlen = 0, .rlen = 1};
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300475 if (!ec || !data)
476 return -EINVAL;
Luming Yu45bea152005-07-23 04:08:00 -0400477
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300478 /*
479 * Query the EC to find out which _Qxx method we need to evaluate.
480 * Note that successful completion of the query causes the ACPI_EC_SCI
481 * bit to be cleared (and thus clearing the interrupt source).
482 */
Luming Yu45bea152005-07-23 04:08:00 -0400483
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400484 result = acpi_ec_transaction(ec, &t, 0);
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300485 if (result)
486 return result;
Luming Yu45bea152005-07-23 04:08:00 -0400487
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300488 if (!d)
489 return -ENODATA;
Luming Yu45bea152005-07-23 04:08:00 -0400490
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300491 *data = d;
492 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493}
494
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495/* --------------------------------------------------------------------------
496 Event Management
497 -------------------------------------------------------------------------- */
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400498int acpi_ec_add_query_handler(struct acpi_ec *ec, u8 query_bit,
499 acpi_handle handle, acpi_ec_query_func func,
500 void *data)
501{
502 struct acpi_ec_query_handler *handler =
503 kzalloc(sizeof(struct acpi_ec_query_handler), GFP_KERNEL);
504 if (!handler)
505 return -ENOMEM;
506
507 handler->query_bit = query_bit;
508 handler->handle = handle;
509 handler->func = func;
510 handler->data = data;
511 mutex_lock(&ec->lock);
Alexey Starikovskiy30c08572007-09-26 19:43:22 +0400512 list_add(&handler->node, &ec->list);
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400513 mutex_unlock(&ec->lock);
514 return 0;
515}
516
517EXPORT_SYMBOL_GPL(acpi_ec_add_query_handler);
518
519void acpi_ec_remove_query_handler(struct acpi_ec *ec, u8 query_bit)
520{
Adrian Bunk1544fdb2007-10-24 18:26:00 +0200521 struct acpi_ec_query_handler *handler, *tmp;
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400522 mutex_lock(&ec->lock);
Adrian Bunk1544fdb2007-10-24 18:26:00 +0200523 list_for_each_entry_safe(handler, tmp, &ec->list, node) {
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400524 if (query_bit == handler->query_bit) {
525 list_del(&handler->node);
526 kfree(handler);
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400527 }
528 }
529 mutex_unlock(&ec->lock);
530}
531
532EXPORT_SYMBOL_GPL(acpi_ec_remove_query_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
Len Brown50526df2005-08-11 17:32:05 -0400534static void acpi_ec_gpe_query(void *ec_cxt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535{
Alexey Starikovskiy3d02b902007-03-07 22:28:00 +0300536 struct acpi_ec *ec = ec_cxt;
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400537 u8 value = 0;
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400538 struct acpi_ec_query_handler *handler, copy;
Luming Yu45bea152005-07-23 04:08:00 -0400539
Alexey Starikovskiy5d0c2882006-12-07 18:42:16 +0300540 if (!ec || acpi_ec_query(ec, &value))
Alexey Starikovskiye41334c2006-12-07 18:42:16 +0300541 return;
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400542 mutex_lock(&ec->lock);
543 list_for_each_entry(handler, &ec->list, node) {
544 if (value == handler->query_bit) {
545 /* have custom handler for this bit */
546 memcpy(&copy, handler, sizeof(copy));
547 mutex_unlock(&ec->lock);
548 if (copy.func) {
549 copy.func(copy.data);
550 } else if (copy.handle) {
551 acpi_evaluate_object(copy.handle, NULL, NULL, NULL);
552 }
553 return;
554 }
555 }
556 mutex_unlock(&ec->lock);
Luming Yu45bea152005-07-23 04:08:00 -0400557}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
Len Brown50526df2005-08-11 17:32:05 -0400559static u32 acpi_ec_gpe_handler(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560{
Alexey Starikovskiy3d02b902007-03-07 22:28:00 +0300561 struct acpi_ec *ec = data;
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400562 u8 status;
Lennart Poettering00eb43a2007-05-04 14:16:19 +0200563
Márton Németh3ebe08a2007-11-21 03:23:26 +0300564 pr_debug(PREFIX "~~~> interrupt\n");
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400565 status = acpi_ec_read_status(ec);
566
567 gpe_transaction(ec, status);
568 if (ec_transaction_done(ec) && (status & ACPI_EC_FLAG_IBF) == 0)
Alexey Starikovskiyaf3fd142006-12-07 18:42:16 +0300569 wake_up(&ec->wait);
Dmitry Torokhov451566f2005-03-19 01:10:05 -0500570
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400571 ec_check_sci(ec, status);
572 if (!test_bit(EC_FLAGS_GPE_MODE, &ec->flags) &&
573 !test_bit(EC_FLAGS_NO_GPE, &ec->flags)) {
Alexey Starikovskiy95b937e2007-10-22 14:19:03 +0400574 /* this is non-query, must be confirmation */
Alan Jenkinsf8248432008-11-01 11:05:26 +0000575 if (!test_bit(EC_FLAGS_GPE_STORM, &ec->flags)) {
576 if (printk_ratelimit())
577 pr_info(PREFIX "non-query interrupt received,"
578 " switching to interrupt mode\n");
579 } else {
580 /* hush, STORM switches the mode every transaction */
581 pr_debug(PREFIX "non-query interrupt received,"
Márton Németh3ebe08a2007-11-21 03:23:26 +0300582 " switching to interrupt mode\n");
Alan Jenkinsf8248432008-11-01 11:05:26 +0000583 }
Alexey Starikovskiy78439322007-10-22 14:18:43 +0400584 set_bit(EC_FLAGS_GPE_MODE, &ec->flags);
Alexey Starikovskiy95b937e2007-10-22 14:19:03 +0400585 }
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400586 return ACPI_INTERRUPT_HANDLED;
Alexey Starikovskiy845625c2008-03-21 17:07:03 +0300587}
588
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589/* --------------------------------------------------------------------------
590 Address Space Management
591 -------------------------------------------------------------------------- */
592
593static acpi_status
Alexey Starikovskiy5b7734b2007-05-29 16:42:52 +0400594acpi_ec_space_handler(u32 function, acpi_physical_address address,
595 u32 bits, acpi_integer *value,
Len Brown50526df2005-08-11 17:32:05 -0400596 void *handler_context, void *region_context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597{
Alexey Starikovskiy3d02b902007-03-07 22:28:00 +0300598 struct acpi_ec *ec = handler_context;
Alexey Starikovskiy3e71a872008-01-11 02:42:51 +0300599 int result = 0, i;
Alexey Starikovskiy5b7734b2007-05-29 16:42:52 +0400600 u8 temp = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 if ((address > 0xFF) || !value || !handler_context)
Patrick Mocheld550d982006-06-27 00:41:40 -0400603 return AE_BAD_PARAMETER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
Alexey Starikovskiy5b7734b2007-05-29 16:42:52 +0400605 if (function != ACPI_READ && function != ACPI_WRITE)
Patrick Mocheld550d982006-06-27 00:41:40 -0400606 return AE_BAD_PARAMETER;
Alexey Starikovskiy5b7734b2007-05-29 16:42:52 +0400607
608 if (bits != 8 && acpi_strict)
609 return AE_BAD_PARAMETER;
610
Alexey Starikovskiyb3b233c2008-01-11 02:42:57 +0300611 acpi_ec_burst_enable(ec);
612
Alexey Starikovskiy3e71a872008-01-11 02:42:51 +0300613 if (function == ACPI_READ) {
614 result = acpi_ec_read(ec, address, &temp);
615 *value = temp;
616 } else {
617 temp = 0xff & (*value);
618 result = acpi_ec_write(ec, address, temp);
619 }
620
621 for (i = 8; unlikely(bits - i > 0); i += 8) {
622 ++address;
Alexey Starikovskiy5b7734b2007-05-29 16:42:52 +0400623 if (function == ACPI_READ) {
624 result = acpi_ec_read(ec, address, &temp);
625 (*value) |= ((acpi_integer)temp) << i;
626 } else {
627 temp = 0xff & ((*value) >> i);
628 result = acpi_ec_write(ec, address, temp);
629 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 }
631
Alexey Starikovskiyb3b233c2008-01-11 02:42:57 +0300632 acpi_ec_burst_disable(ec);
633
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 switch (result) {
635 case -EINVAL:
Patrick Mocheld550d982006-06-27 00:41:40 -0400636 return AE_BAD_PARAMETER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 break;
638 case -ENODEV:
Patrick Mocheld550d982006-06-27 00:41:40 -0400639 return AE_NOT_FOUND;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 break;
641 case -ETIME:
Patrick Mocheld550d982006-06-27 00:41:40 -0400642 return AE_TIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 break;
644 default:
Patrick Mocheld550d982006-06-27 00:41:40 -0400645 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647}
648
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649/* --------------------------------------------------------------------------
650 FS Interface (/proc)
651 -------------------------------------------------------------------------- */
652
Len Brown50526df2005-08-11 17:32:05 -0400653static struct proc_dir_entry *acpi_ec_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
Len Brown50526df2005-08-11 17:32:05 -0400655static int acpi_ec_read_info(struct seq_file *seq, void *offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656{
Alexey Starikovskiy3d02b902007-03-07 22:28:00 +0300657 struct acpi_ec *ec = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 if (!ec)
660 goto end;
661
Alexey Starikovskiy01f22462007-03-07 22:28:00 +0300662 seq_printf(seq, "gpe:\t\t\t0x%02x\n", (u32) ec->gpe);
663 seq_printf(seq, "ports:\t\t\t0x%02x, 0x%02x\n",
664 (unsigned)ec->command_addr, (unsigned)ec->data_addr);
665 seq_printf(seq, "use global lock:\t%s\n",
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400666 ec->global_lock ? "yes" : "no");
Len Brown50526df2005-08-11 17:32:05 -0400667 end:
Patrick Mocheld550d982006-06-27 00:41:40 -0400668 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669}
670
671static int acpi_ec_info_open_fs(struct inode *inode, struct file *file)
672{
673 return single_open(file, acpi_ec_read_info, PDE(inode)->data);
674}
675
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400676static struct file_operations acpi_ec_info_ops = {
Len Brown50526df2005-08-11 17:32:05 -0400677 .open = acpi_ec_info_open_fs,
678 .read = seq_read,
679 .llseek = seq_lseek,
680 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 .owner = THIS_MODULE,
682};
683
Len Brown50526df2005-08-11 17:32:05 -0400684static int acpi_ec_add_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685{
Len Brown50526df2005-08-11 17:32:05 -0400686 struct proc_dir_entry *entry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 if (!acpi_device_dir(device)) {
689 acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device),
Len Brown50526df2005-08-11 17:32:05 -0400690 acpi_ec_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 if (!acpi_device_dir(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400692 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 }
694
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700695 entry = proc_create_data(ACPI_EC_FILE_INFO, S_IRUGO,
696 acpi_device_dir(device),
697 &acpi_ec_info_ops, acpi_driver_data(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -0400699 return -ENODEV;
Patrick Mocheld550d982006-06-27 00:41:40 -0400700 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701}
702
Len Brown50526df2005-08-11 17:32:05 -0400703static int acpi_ec_remove_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
706 if (acpi_device_dir(device)) {
707 remove_proc_entry(ACPI_EC_FILE_INFO, acpi_device_dir(device));
708 remove_proc_entry(acpi_device_bid(device), acpi_ec_dir);
709 acpi_device_dir(device) = NULL;
710 }
711
Patrick Mocheld550d982006-06-27 00:41:40 -0400712 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713}
714
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715/* --------------------------------------------------------------------------
716 Driver Interface
717 -------------------------------------------------------------------------- */
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300718static acpi_status
719ec_parse_io_ports(struct acpi_resource *resource, void *context);
720
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300721static struct acpi_ec *make_acpi_ec(void)
722{
723 struct acpi_ec *ec = kzalloc(sizeof(struct acpi_ec), GFP_KERNEL);
724 if (!ec)
725 return NULL;
Alexey Starikovskiy080e4122007-10-22 14:18:30 +0400726 ec->flags = 1 << EC_FLAGS_QUERY_PENDING;
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300727 mutex_init(&ec->lock);
728 init_waitqueue_head(&ec->wait);
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400729 INIT_LIST_HEAD(&ec->list);
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400730 spin_lock_init(&ec->curr_lock);
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300731 return ec;
732}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400734static acpi_status
Alexey Starikovskiyc019b192007-08-14 01:03:42 -0400735acpi_ec_register_query_methods(acpi_handle handle, u32 level,
736 void *context, void **return_value)
737{
738 struct acpi_namespace_node *node = handle;
739 struct acpi_ec *ec = context;
740 int value = 0;
741 if (sscanf(node->name.ascii, "_Q%x", &value) == 1) {
742 acpi_ec_add_query_handler(ec, value, handle, NULL, NULL);
743 }
744 return AE_OK;
745}
746
747static acpi_status
Alexey Starikovskiycd8c93a2007-08-03 17:52:48 -0400748ec_parse_device(acpi_handle handle, u32 Level, void *context, void **retval)
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400749{
Alexey Starikovskiycd8c93a2007-08-03 17:52:48 -0400750 acpi_status status;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400751 unsigned long long tmp;
Alexey Starikovskiycd8c93a2007-08-03 17:52:48 -0400752
753 struct acpi_ec *ec = context;
754 status = acpi_walk_resources(handle, METHOD_NAME__CRS,
755 ec_parse_io_ports, ec);
756 if (ACPI_FAILURE(status))
757 return status;
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400758
759 /* Get GPE bit assignment (EC events). */
760 /* TODO: Add support for _GPE returning a package */
Matthew Wilcox27663c52008-10-10 02:22:59 -0400761 status = acpi_evaluate_integer(handle, "_GPE", NULL, &tmp);
Alexey Starikovskiycd8c93a2007-08-03 17:52:48 -0400762 if (ACPI_FAILURE(status))
763 return status;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400764 ec->gpe = tmp;
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400765 /* Use the global lock for all EC transactions? */
Matthew Wilcox27663c52008-10-10 02:22:59 -0400766 acpi_evaluate_integer(handle, "_GLK", NULL, &tmp);
767 ec->global_lock = tmp;
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400768 ec->handle = handle;
Alexey Starikovskiycd8c93a2007-08-03 17:52:48 -0400769 return AE_CTRL_TERMINATE;
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400770}
771
Alexey Starikovskiy4c611062007-09-05 19:56:38 -0400772static void ec_remove_handlers(struct acpi_ec *ec)
773{
774 if (ACPI_FAILURE(acpi_remove_address_space_handler(ec->handle,
775 ACPI_ADR_SPACE_EC, &acpi_ec_space_handler)))
Márton Németh3ebe08a2007-11-21 03:23:26 +0300776 pr_err(PREFIX "failed to remove space handler\n");
Alexey Starikovskiy4c611062007-09-05 19:56:38 -0400777 if (ACPI_FAILURE(acpi_remove_gpe_handler(NULL, ec->gpe,
778 &acpi_ec_gpe_handler)))
Márton Németh3ebe08a2007-11-21 03:23:26 +0300779 pr_err(PREFIX "failed to remove gpe handler\n");
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400780 clear_bit(EC_FLAGS_HANDLERS_INSTALLED, &ec->flags);
Alexey Starikovskiy4c611062007-09-05 19:56:38 -0400781}
782
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400783static int acpi_ec_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784{
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400785 struct acpi_ec *ec = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400788 return -EINVAL;
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300789 strcpy(acpi_device_name(device), ACPI_EC_DEVICE_NAME);
790 strcpy(acpi_device_class(device), ACPI_EC_CLASS);
791
Alexey Starikovskiy4c611062007-09-05 19:56:38 -0400792 /* Check for boot EC */
Alexey Starikovskiyce52ddf2008-03-24 23:22:36 +0300793 if (boot_ec &&
794 (boot_ec->handle == device->handle ||
795 boot_ec->handle == ACPI_ROOT_OBJECT)) {
796 ec = boot_ec;
797 boot_ec = NULL;
798 } else {
799 ec = make_acpi_ec();
800 if (!ec)
801 return -ENOMEM;
802 if (ec_parse_device(device->handle, 0, ec, NULL) !=
803 AE_CTRL_TERMINATE) {
804 kfree(ec);
805 return -EINVAL;
Alexey Starikovskiy4c611062007-09-05 19:56:38 -0400806 }
807 }
808
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300809 ec->handle = device->handle;
Alexey Starikovskiyce52ddf2008-03-24 23:22:36 +0300810
811 /* Find and register all query methods */
812 acpi_walk_namespace(ACPI_TYPE_METHOD, ec->handle, 1,
813 acpi_ec_register_query_methods, ec, NULL);
814
Alexey Starikovskiy4c611062007-09-05 19:56:38 -0400815 if (!first_ec)
816 first_ec = ec;
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700817 device->driver_data = ec;
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300818 acpi_ec_add_fs(device);
Márton Németh3ebe08a2007-11-21 03:23:26 +0300819 pr_info(PREFIX "GPE = 0x%lx, I/O: command/status = 0x%lx, data = 0x%lx\n",
Alexey Starikovskiy4c611062007-09-05 19:56:38 -0400820 ec->gpe, ec->command_addr, ec->data_addr);
Márton Németh3ebe08a2007-11-21 03:23:26 +0300821 pr_info(PREFIX "driver started in %s mode\n",
Alexey Starikovskiy95b937e2007-10-22 14:19:03 +0400822 (test_bit(EC_FLAGS_GPE_MODE, &ec->flags))?"interrupt":"poll");
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300823 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824}
825
Len Brown50526df2005-08-11 17:32:05 -0400826static int acpi_ec_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827{
Alexey Starikovskiy01f22462007-03-07 22:28:00 +0300828 struct acpi_ec *ec;
Adrian Bunk07ddf762007-07-29 17:00:37 +0200829 struct acpi_ec_query_handler *handler, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400832 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833
834 ec = acpi_driver_data(device);
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400835 mutex_lock(&ec->lock);
Adrian Bunk07ddf762007-07-29 17:00:37 +0200836 list_for_each_entry_safe(handler, tmp, &ec->list, node) {
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400837 list_del(&handler->node);
838 kfree(handler);
839 }
840 mutex_unlock(&ec->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 acpi_ec_remove_fs(device);
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700842 device->driver_data = NULL;
Alexey Starikovskiyd0338792007-03-07 22:28:00 +0300843 if (ec == first_ec)
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300844 first_ec = NULL;
Alexey Starikovskiy4c611062007-09-05 19:56:38 -0400845 kfree(ec);
Patrick Mocheld550d982006-06-27 00:41:40 -0400846 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847}
848
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849static acpi_status
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300850ec_parse_io_ports(struct acpi_resource *resource, void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851{
Alexey Starikovskiy3d02b902007-03-07 22:28:00 +0300852 struct acpi_ec *ec = context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853
Alexey Starikovskiy01f22462007-03-07 22:28:00 +0300854 if (resource->type != ACPI_RESOURCE_TYPE_IO)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856
857 /*
858 * The first address region returned is the data port, and
859 * the second address region returned is the status/command
860 * port.
861 */
Alexey Starikovskiy01f22462007-03-07 22:28:00 +0300862 if (ec->data_addr == 0)
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400863 ec->data_addr = resource->data.io.minimum;
Alexey Starikovskiy01f22462007-03-07 22:28:00 +0300864 else if (ec->command_addr == 0)
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400865 ec->command_addr = resource->data.io.minimum;
Alexey Starikovskiy01f22462007-03-07 22:28:00 +0300866 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 return AE_CTRL_TERMINATE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 return AE_OK;
870}
871
Alexey Starikovskiye8284322007-03-07 22:28:00 +0300872static int ec_install_handlers(struct acpi_ec *ec)
873{
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300874 acpi_status status;
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400875 if (test_bit(EC_FLAGS_HANDLERS_INSTALLED, &ec->flags))
Alexey Starikovskiy4c611062007-09-05 19:56:38 -0400876 return 0;
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300877 status = acpi_install_gpe_handler(NULL, ec->gpe,
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400878 ACPI_GPE_EDGE_TRIGGERED,
879 &acpi_ec_gpe_handler, ec);
Alexey Starikovskiye8284322007-03-07 22:28:00 +0300880 if (ACPI_FAILURE(status))
881 return -ENODEV;
882 acpi_set_gpe_type(NULL, ec->gpe, ACPI_GPE_TYPE_RUNTIME);
883 acpi_enable_gpe(NULL, ec->gpe, ACPI_NOT_ISR);
Alexey Starikovskiye8284322007-03-07 22:28:00 +0300884 status = acpi_install_address_space_handler(ec->handle,
885 ACPI_ADR_SPACE_EC,
886 &acpi_ec_space_handler,
Alexey Starikovskiy6d9e1122008-03-24 23:22:29 +0300887 NULL, ec);
Alexey Starikovskiye8284322007-03-07 22:28:00 +0300888 if (ACPI_FAILURE(status)) {
Zhao Yakui20edd742008-10-17 02:02:44 -0400889 if (status == AE_NOT_FOUND) {
890 /*
891 * Maybe OS fails in evaluating the _REG object.
892 * The AE_NOT_FOUND error will be ignored and OS
893 * continue to initialize EC.
894 */
895 printk(KERN_ERR "Fail in evaluating the _REG object"
896 " of EC device. Broken bios is suspected.\n");
897 } else {
898 acpi_remove_gpe_handler(NULL, ec->gpe,
899 &acpi_ec_gpe_handler);
900 return -ENODEV;
901 }
Alexey Starikovskiye8284322007-03-07 22:28:00 +0300902 }
903
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400904 set_bit(EC_FLAGS_HANDLERS_INSTALLED, &ec->flags);
Alexey Starikovskiye8284322007-03-07 22:28:00 +0300905 return 0;
906}
907
Len Brown50526df2005-08-11 17:32:05 -0400908static int acpi_ec_start(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909{
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300910 struct acpi_ec *ec;
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400911 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400914 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915
916 ec = acpi_driver_data(device);
917
918 if (!ec)
Patrick Mocheld550d982006-06-27 00:41:40 -0400919 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920
Alexey Starikovskiy4c611062007-09-05 19:56:38 -0400921 ret = ec_install_handlers(ec);
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300922
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400923 /* EC is fully operational, allow queries */
Alexey Starikovskiy080e4122007-10-22 14:18:30 +0400924 clear_bit(EC_FLAGS_QUERY_PENDING, &ec->flags);
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400925 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926}
927
Len Brown50526df2005-08-11 17:32:05 -0400928static int acpi_ec_stop(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929{
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300930 struct acpi_ec *ec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400932 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 ec = acpi_driver_data(device);
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300934 if (!ec)
935 return -EINVAL;
Alexey Starikovskiy4c611062007-09-05 19:56:38 -0400936 ec_remove_handlers(ec);
Alexey Starikovskiyf9319f92007-08-24 08:10:11 +0400937
Patrick Mocheld550d982006-06-27 00:41:40 -0400938 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939}
940
Alexey Starikovskiyc04209a2008-01-01 14:12:55 -0500941int __init acpi_boot_ec_enable(void)
942{
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400943 if (!boot_ec || test_bit(EC_FLAGS_HANDLERS_INSTALLED, &boot_ec->flags))
Alexey Starikovskiyc04209a2008-01-01 14:12:55 -0500944 return 0;
945 if (!ec_install_handlers(boot_ec)) {
946 first_ec = boot_ec;
947 return 0;
948 }
949 return -EFAULT;
950}
951
Alexey Starikovskiy223883b2008-03-21 17:07:21 +0300952static const struct acpi_device_id ec_device_ids[] = {
953 {"PNP0C09", 0},
954 {"", 0},
955};
956
Len Brown50526df2005-08-11 17:32:05 -0400957int __init acpi_ec_ecdt_probe(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958{
Len Brown50526df2005-08-11 17:32:05 -0400959 int ret;
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300960 acpi_status status;
961 struct acpi_table_ecdt *ecdt_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962
Alexey Starikovskiyd66d9692007-03-07 22:28:00 +0300963 boot_ec = make_acpi_ec();
964 if (!boot_ec)
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300965 return -ENOMEM;
966 /*
967 * Generate a boot ec context
968 */
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300969 status = acpi_get_table(ACPI_SIG_ECDT, 1,
970 (struct acpi_table_header **)&ecdt_ptr);
Alexey Starikovskiycd8c93a2007-08-03 17:52:48 -0400971 if (ACPI_SUCCESS(status)) {
Márton Németh3ebe08a2007-11-21 03:23:26 +0300972 pr_info(PREFIX "EC description table is found, configuring boot EC\n");
Alexey Starikovskiycd8c93a2007-08-03 17:52:48 -0400973 boot_ec->command_addr = ecdt_ptr->control.address;
974 boot_ec->data_addr = ecdt_ptr->data.address;
Zhao Yakui25008222008-08-12 10:40:10 +0800975 if (dmi_check_system(ec_dmi_table)) {
976 /*
977 * If the board falls into ec_dmi_table, it means
978 * that ECDT table gives the incorrect command/status
979 * & data I/O address. Just fix it.
980 */
981 boot_ec->data_addr = ecdt_ptr->control.address;
982 boot_ec->command_addr = ecdt_ptr->data.address;
983 }
Alexey Starikovskiycd8c93a2007-08-03 17:52:48 -0400984 boot_ec->gpe = ecdt_ptr->gpe;
Len Brown4af8e102008-03-11 00:27:16 -0400985 boot_ec->handle = ACPI_ROOT_OBJECT;
Alexey Starikovskiyce52ddf2008-03-24 23:22:36 +0300986 acpi_get_handle(ACPI_ROOT_OBJECT, ecdt_ptr->id, &boot_ec->handle);
Alexey Starikovskiycd8c93a2007-08-03 17:52:48 -0400987 } else {
Alexey Starikovskiy5870a8c2007-11-15 21:52:47 +0300988 /* This workaround is needed only on some broken machines,
989 * which require early EC, but fail to provide ECDT */
990 acpi_handle x;
Alexey Starikovskiycd8c93a2007-08-03 17:52:48 -0400991 printk(KERN_DEBUG PREFIX "Look up EC in DSDT\n");
992 status = acpi_get_devices(ec_device_ids[0].id, ec_parse_device,
993 boot_ec, NULL);
Alexey Starikovskiy2d8348b2007-08-31 09:05:26 +0400994 /* Check that acpi_get_devices actually find something */
995 if (ACPI_FAILURE(status) || !boot_ec->handle)
Alexey Starikovskiycd8c93a2007-08-03 17:52:48 -0400996 goto error;
Alexey Starikovskiy5870a8c2007-11-15 21:52:47 +0300997 /* We really need to limit this workaround, the only ASUS,
998 * which needs it, has fake EC._INI method, so use it as flag.
Alexey Starikovskiyc04209a2008-01-01 14:12:55 -0500999 * Keep boot_ec struct as it will be needed soon.
Alexey Starikovskiy5870a8c2007-11-15 21:52:47 +03001000 */
1001 if (ACPI_FAILURE(acpi_get_handle(boot_ec->handle, "_INI", &x)))
Alexey Starikovskiyc04209a2008-01-01 14:12:55 -05001002 return -ENODEV;
Alexey Starikovskiycd8c93a2007-08-03 17:52:48 -04001003 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004
Alexey Starikovskiyd66d9692007-03-07 22:28:00 +03001005 ret = ec_install_handlers(boot_ec);
Alexey Starikovskiyd0338792007-03-07 22:28:00 +03001006 if (!ret) {
1007 first_ec = boot_ec;
Alexey Starikovskiye8284322007-03-07 22:28:00 +03001008 return 0;
Alexey Starikovskiyd0338792007-03-07 22:28:00 +03001009 }
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +03001010 error:
Alexey Starikovskiyd66d9692007-03-07 22:28:00 +03001011 kfree(boot_ec);
1012 boot_ec = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 return -ENODEV;
1014}
1015
Alexey Starikovskiy223883b2008-03-21 17:07:21 +03001016static int acpi_ec_suspend(struct acpi_device *device, pm_message_t state)
1017{
1018 struct acpi_ec *ec = acpi_driver_data(device);
1019 /* Stop using GPE */
1020 set_bit(EC_FLAGS_NO_GPE, &ec->flags);
1021 clear_bit(EC_FLAGS_GPE_MODE, &ec->flags);
1022 acpi_disable_gpe(NULL, ec->gpe, ACPI_NOT_ISR);
1023 return 0;
1024}
1025
1026static int acpi_ec_resume(struct acpi_device *device)
1027{
1028 struct acpi_ec *ec = acpi_driver_data(device);
1029 /* Enable use of GPE back */
1030 clear_bit(EC_FLAGS_NO_GPE, &ec->flags);
1031 acpi_enable_gpe(NULL, ec->gpe, ACPI_NOT_ISR);
1032 return 0;
1033}
1034
1035static struct acpi_driver acpi_ec_driver = {
1036 .name = "ec",
1037 .class = ACPI_EC_CLASS,
1038 .ids = ec_device_ids,
1039 .ops = {
1040 .add = acpi_ec_add,
1041 .remove = acpi_ec_remove,
1042 .start = acpi_ec_start,
1043 .stop = acpi_ec_stop,
1044 .suspend = acpi_ec_suspend,
1045 .resume = acpi_ec_resume,
1046 },
1047};
1048
Len Brown50526df2005-08-11 17:32:05 -04001049static int __init acpi_ec_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050{
Len Brown50526df2005-08-11 17:32:05 -04001051 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 if (acpi_disabled)
Patrick Mocheld550d982006-06-27 00:41:40 -04001054 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055
1056 acpi_ec_dir = proc_mkdir(ACPI_EC_CLASS, acpi_root_dir);
1057 if (!acpi_ec_dir)
Patrick Mocheld550d982006-06-27 00:41:40 -04001058 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059
1060 /* Now register the driver for the EC */
1061 result = acpi_bus_register_driver(&acpi_ec_driver);
1062 if (result < 0) {
1063 remove_proc_entry(ACPI_EC_CLASS, acpi_root_dir);
Patrick Mocheld550d982006-06-27 00:41:40 -04001064 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 }
1066
Patrick Mocheld550d982006-06-27 00:41:40 -04001067 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068}
1069
1070subsys_initcall(acpi_ec_init);
1071
1072/* EC driver currently not unloadable */
1073#if 0
Len Brown50526df2005-08-11 17:32:05 -04001074static void __exit acpi_ec_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076
1077 acpi_bus_unregister_driver(&acpi_ec_driver);
1078
1079 remove_proc_entry(ACPI_EC_CLASS, acpi_root_dir);
1080
Patrick Mocheld550d982006-06-27 00:41:40 -04001081 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082}
Alexey Starikovskiy78439322007-10-22 14:18:43 +04001083#endif /* 0 */