blob: a2b82c90a6838eaff23a83cd30e741e0c3422e2a [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#define ACPI_EC_CLASS "embedded_controller"
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#define ACPI_EC_DEVICE_NAME "Embedded Controller"
48#define ACPI_EC_FILE_INFO "info"
Alexey Starikovskiy837012e2007-05-29 16:43:02 +040049
Alexey Starikovskiyaf3fd142006-12-07 18:42:16 +030050#undef PREFIX
51#define PREFIX "ACPI: EC: "
Alexey Starikovskiy43509332007-05-29 16:42:57 +040052
Denis M. Sadykov703959d2006-09-26 19:50:33 +040053/* EC status register */
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#define ACPI_EC_FLAG_OBF 0x01 /* Output buffer full */
55#define ACPI_EC_FLAG_IBF 0x02 /* Input buffer full */
Dmitry Torokhov451566f2005-03-19 01:10:05 -050056#define ACPI_EC_FLAG_BURST 0x10 /* burst mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#define ACPI_EC_FLAG_SCI 0x20 /* EC-SCI occurred */
Alexey Starikovskiy43509332007-05-29 16:42:57 +040058
Denis M. Sadykov703959d2006-09-26 19:50:33 +040059/* EC commands */
Alexey Starikovskiy3261ff42006-12-07 18:42:17 +030060enum ec_command {
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +030061 ACPI_EC_COMMAND_READ = 0x80,
62 ACPI_EC_COMMAND_WRITE = 0x81,
63 ACPI_EC_BURST_ENABLE = 0x82,
64 ACPI_EC_BURST_DISABLE = 0x83,
65 ACPI_EC_COMMAND_QUERY = 0x84,
Alexey Starikovskiy3261ff42006-12-07 18:42:17 +030066};
Alexey Starikovskiy837012e2007-05-29 16:43:02 +040067
Alexey Starikovskiy5c406412006-12-07 18:42:16 +030068#define ACPI_EC_DELAY 500 /* Wait 500ms max. during EC ops */
Denis M. Sadykov703959d2006-09-26 19:50:33 +040069#define ACPI_EC_UDELAY_GLK 1000 /* Wait 1ms max. to get global lock */
Alexey Starikovskiye6e82a32008-03-21 17:06:57 +030070#define ACPI_EC_UDELAY 100 /* Wait 100us before polling EC again */
Denis M. Sadykov703959d2006-09-26 19:50:33 +040071
Alexey Starikovskiy06cf7d32008-11-09 19:01:06 +030072#define ACPI_EC_STORM_THRESHOLD 8 /* number of false interrupts
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +040073 per one transaction */
74
Alexey Starikovskiy080e4122007-10-22 14:18:30 +040075enum {
Alexey Starikovskiy080e4122007-10-22 14:18:30 +040076 EC_FLAGS_QUERY_PENDING, /* Query is pending */
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +040077 EC_FLAGS_GPE_MODE, /* Expect GPE to be sent
78 * for status change */
Alexey Starikovskiyb77d81b2008-03-21 17:07:15 +030079 EC_FLAGS_NO_GPE, /* Don't use GPE mode */
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +040080 EC_FLAGS_GPE_STORM, /* GPE storm detected */
81 EC_FLAGS_HANDLERS_INSTALLED /* Handlers for GPE and
82 * OpReg are installed */
Linus Torvalds1da177e2005-04-16 15:20:36 -070083};
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +040084
85/* If we find an EC via the ECDT, we need to keep a ptr to its context */
Alexey Starikovskiyd0338792007-03-07 22:28:00 +030086/* External interfaces use first EC only, so remember */
Alexey Starikovskiy837012e2007-05-29 16:43:02 +040087typedef int (*acpi_ec_query_func) (void *data);
88
89struct acpi_ec_query_handler {
90 struct list_head node;
91 acpi_ec_query_func func;
92 acpi_handle handle;
93 void *data;
94 u8 query_bit;
95};
96
Alexey Starikovskiy84632002008-09-26 00:54:28 +040097struct transaction {
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +040098 const u8 *wdata;
99 u8 *rdata;
100 unsigned short irq_count;
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400101 u8 command;
Alexey Starikovskiya2f93ae2008-11-12 01:40:19 +0300102 u8 wi;
103 u8 ri;
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400104 u8 wlen;
105 u8 rlen;
Alexey Starikovskiydd15f8c2008-11-08 21:42:30 +0300106 bool done;
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400107};
108
Adrian Bunka854e082006-12-19 12:56:12 -0800109static struct acpi_ec {
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400110 acpi_handle handle;
Alexey Starikovskiya86e2772006-12-07 18:42:16 +0300111 unsigned long gpe;
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400112 unsigned long command_addr;
113 unsigned long data_addr;
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400114 unsigned long global_lock;
Alexey Starikovskiy080e4122007-10-22 14:18:30 +0400115 unsigned long flags;
Alexey Starikovskiyc787a852006-12-07 18:42:16 +0300116 struct mutex lock;
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400117 wait_queue_head_t wait;
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400118 struct list_head list;
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400119 struct transaction *curr;
120 spinlock_t curr_lock;
Alexey Starikovskiyd0338792007-03-07 22:28:00 +0300121} *boot_ec, *first_ec;
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400122
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123/* --------------------------------------------------------------------------
124 Transaction Management
125 -------------------------------------------------------------------------- */
126
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400127static inline u8 acpi_ec_read_status(struct acpi_ec *ec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128{
Márton Németh3ebe08a2007-11-21 03:23:26 +0300129 u8 x = inb(ec->command_addr);
Márton Németh86dae012008-01-23 22:33:06 -0500130 pr_debug(PREFIX "---> status = 0x%2.2x\n", x);
Márton Németh3ebe08a2007-11-21 03:23:26 +0300131 return x;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132}
133
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400134static inline u8 acpi_ec_read_data(struct acpi_ec *ec)
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400135{
Márton Németh3ebe08a2007-11-21 03:23:26 +0300136 u8 x = inb(ec->data_addr);
Márton Németh86dae012008-01-23 22:33:06 -0500137 pr_debug(PREFIX "---> data = 0x%2.2x\n", x);
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400138 return x;
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400139}
140
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400141static inline void acpi_ec_write_cmd(struct acpi_ec *ec, u8 command)
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400142{
Márton Németh86dae012008-01-23 22:33:06 -0500143 pr_debug(PREFIX "<--- command = 0x%2.2x\n", command);
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400144 outb(command, ec->command_addr);
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400145}
146
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400147static inline void acpi_ec_write_data(struct acpi_ec *ec, u8 data)
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400148{
Márton Németh86dae012008-01-23 22:33:06 -0500149 pr_debug(PREFIX "<--- data = 0x%2.2x\n", data);
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400150 outb(data, ec->data_addr);
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400151}
152
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400153static int ec_transaction_done(struct acpi_ec *ec)
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400154{
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400155 unsigned long flags;
156 int ret = 0;
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400157 spin_lock_irqsave(&ec->curr_lock, flags);
Alexey Starikovskiydd15f8c2008-11-08 21:42:30 +0300158 if (!ec->curr || ec->curr->done)
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400159 ret = 1;
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400160 spin_unlock_irqrestore(&ec->curr_lock, flags);
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400161 return ret;
162}
Denis M. Sadykov7c6db5e2006-09-26 19:50:33 +0400163
Alexey Starikovskiya2f93ae2008-11-12 01:40:19 +0300164static void start_transaction(struct acpi_ec *ec)
165{
166 ec->curr->irq_count = ec->curr->wi = ec->curr->ri = 0;
167 ec->curr->done = false;
168 acpi_ec_write_cmd(ec, ec->curr->command);
169}
170
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400171static void gpe_transaction(struct acpi_ec *ec, u8 status)
172{
173 unsigned long flags;
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400174 spin_lock_irqsave(&ec->curr_lock, flags);
175 if (!ec->curr)
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400176 goto unlock;
Alexey Starikovskiya2f93ae2008-11-12 01:40:19 +0300177 if (ec->curr->wlen > ec->curr->wi) {
178 if ((status & ACPI_EC_FLAG_IBF) == 0)
179 acpi_ec_write_data(ec,
180 ec->curr->wdata[ec->curr->wi++]);
181 else
Alexey Starikovskiydd15f8c2008-11-08 21:42:30 +0300182 goto err;
Alexey Starikovskiya2f93ae2008-11-12 01:40:19 +0300183 } else if (ec->curr->rlen > ec->curr->ri) {
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400184 if ((status & ACPI_EC_FLAG_OBF) == 1) {
Alexey Starikovskiya2f93ae2008-11-12 01:40:19 +0300185 ec->curr->rdata[ec->curr->ri++] = acpi_ec_read_data(ec);
186 if (ec->curr->rlen == ec->curr->ri)
Alexey Starikovskiydd15f8c2008-11-08 21:42:30 +0300187 ec->curr->done = true;
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400188 } else
Alexey Starikovskiydd15f8c2008-11-08 21:42:30 +0300189 goto err;
Alexey Starikovskiya2f93ae2008-11-12 01:40:19 +0300190 } else if (ec->curr->wlen == ec->curr->wi &&
191 (status & ACPI_EC_FLAG_IBF) == 0)
Alexey Starikovskiydd15f8c2008-11-08 21:42:30 +0300192 ec->curr->done = true;
193 goto unlock;
194err:
195 /* false interrupt, state didn't change */
Alexey Starikovskiy7b4d4692008-11-13 12:00:03 +0300196 if (in_interrupt())
197 ++ec->curr->irq_count;
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400198unlock:
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400199 spin_unlock_irqrestore(&ec->curr_lock, flags);
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400200}
201
202static int acpi_ec_wait(struct acpi_ec *ec)
203{
204 if (wait_event_timeout(ec->wait, ec_transaction_done(ec),
205 msecs_to_jiffies(ACPI_EC_DELAY)))
206 return 0;
Alexey Starikovskiya2f93ae2008-11-12 01:40:19 +0300207 /* try restart command if we get any false interrupts */
208 if (ec->curr->irq_count &&
209 (acpi_ec_read_status(ec) & ACPI_EC_FLAG_IBF) == 0) {
210 pr_debug(PREFIX "controller reset, restart transaction\n");
211 start_transaction(ec);
212 if (wait_event_timeout(ec->wait, ec_transaction_done(ec),
213 msecs_to_jiffies(ACPI_EC_DELAY)))
214 return 0;
215 }
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400216 /* missing GPEs, switch back to poll mode */
217 if (printk_ratelimit())
218 pr_info(PREFIX "missing confirmations, "
219 "switch off interrupt mode.\n");
220 set_bit(EC_FLAGS_NO_GPE, &ec->flags);
221 clear_bit(EC_FLAGS_GPE_MODE, &ec->flags);
222 return 1;
223}
224
225static void acpi_ec_gpe_query(void *ec_cxt);
226
227static int ec_check_sci(struct acpi_ec *ec, u8 state)
228{
229 if (state & ACPI_EC_FLAG_SCI) {
230 if (!test_and_set_bit(EC_FLAGS_QUERY_PENDING, &ec->flags))
231 return acpi_os_execute(OSL_EC_BURST_HANDLER,
232 acpi_ec_gpe_query, ec);
233 }
Denis M. Sadykov7c6db5e2006-09-26 19:50:33 +0400234 return 0;
235}
236
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400237static int ec_poll(struct acpi_ec *ec)
Alexey Starikovskiy845625c2008-03-21 17:07:03 +0300238{
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400239 unsigned long delay = jiffies + msecs_to_jiffies(ACPI_EC_DELAY);
Alexey Starikovskiy1cfe62c2008-10-28 00:35:30 +0300240 udelay(ACPI_EC_UDELAY);
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400241 while (time_before(jiffies, delay)) {
242 gpe_transaction(ec, acpi_ec_read_status(ec));
Alexey Starikovskiy1cfe62c2008-10-28 00:35:30 +0300243 udelay(ACPI_EC_UDELAY);
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400244 if (ec_transaction_done(ec))
Zhao Yakui9d699ed2008-08-11 10:33:31 +0800245 return 0;
Alexey Starikovskiyaf3fd142006-12-07 18:42:16 +0300246 }
Alexey Starikovskiyb77d81b2008-03-21 17:07:15 +0300247 return -ETIME;
Dmitry Torokhov451566f2005-03-19 01:10:05 -0500248}
249
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400250static int acpi_ec_transaction_unlocked(struct acpi_ec *ec,
251 struct transaction *t,
Lennart Poettering00eb43a2007-05-04 14:16:19 +0200252 int force_poll)
Lennart Poetteringd7a76e42006-09-05 12:12:24 -0400253{
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400254 unsigned long tmp;
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400255 int ret = 0;
Márton Németh3ebe08a2007-11-21 03:23:26 +0300256 pr_debug(PREFIX "transaction start\n");
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400257 /* disable GPE during transaction if storm is detected */
258 if (test_bit(EC_FLAGS_GPE_STORM, &ec->flags)) {
259 clear_bit(EC_FLAGS_GPE_MODE, &ec->flags);
Alexey Starikovskiy0b7084a2008-10-25 21:48:46 +0400260 acpi_disable_gpe(NULL, ec->gpe);
Denis M. Sadykov3576cf62006-09-26 19:50:33 +0400261 }
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400262 /* start transaction */
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400263 spin_lock_irqsave(&ec->curr_lock, tmp);
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400264 /* following two actions should be kept atomic */
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400265 ec->curr = t;
Alexey Starikovskiya2f93ae2008-11-12 01:40:19 +0300266 start_transaction(ec);
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400267 if (ec->curr->command == ACPI_EC_COMMAND_QUERY)
Alexey Starikovskiy080e4122007-10-22 14:18:30 +0400268 clear_bit(EC_FLAGS_QUERY_PENDING, &ec->flags);
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400269 spin_unlock_irqrestore(&ec->curr_lock, tmp);
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400270 /* if we selected poll mode or failed in GPE-mode do a poll loop */
271 if (force_poll ||
272 !test_bit(EC_FLAGS_GPE_MODE, &ec->flags) ||
273 acpi_ec_wait(ec))
274 ret = ec_poll(ec);
Márton Németh3ebe08a2007-11-21 03:23:26 +0300275 pr_debug(PREFIX "transaction end\n");
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400276 spin_lock_irqsave(&ec->curr_lock, tmp);
277 ec->curr = NULL;
278 spin_unlock_irqrestore(&ec->curr_lock, tmp);
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400279 if (test_bit(EC_FLAGS_GPE_STORM, &ec->flags)) {
280 /* check if we received SCI during transaction */
281 ec_check_sci(ec, acpi_ec_read_status(ec));
282 /* it is safe to enable GPE outside of transaction */
Alexey Starikovskiy0b7084a2008-10-25 21:48:46 +0400283 acpi_enable_gpe(NULL, ec->gpe);
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400284 } else if (test_bit(EC_FLAGS_GPE_MODE, &ec->flags) &&
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400285 t->irq_count > ACPI_EC_STORM_THRESHOLD) {
Alan Jenkinsf8248432008-11-01 11:05:26 +0000286 pr_info(PREFIX "GPE storm detected, "
287 "transactions will use polling mode\n");
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400288 set_bit(EC_FLAGS_GPE_STORM, &ec->flags);
289 }
290 return ret;
Lennart Poetteringd7a76e42006-09-05 12:12:24 -0400291}
292
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400293static int ec_check_ibf0(struct acpi_ec *ec)
294{
295 u8 status = acpi_ec_read_status(ec);
296 return (status & ACPI_EC_FLAG_IBF) == 0;
Lennart Poetteringd7a76e42006-09-05 12:12:24 -0400297}
298
Alexey Starikovskiyc0ff1772008-10-16 02:02:33 +0400299static int ec_wait_ibf0(struct acpi_ec *ec)
300{
301 unsigned long delay = jiffies + msecs_to_jiffies(ACPI_EC_DELAY);
302 /* interrupt wait manually if GPE mode is not active */
303 unsigned long timeout = test_bit(EC_FLAGS_GPE_MODE, &ec->flags) ?
304 msecs_to_jiffies(ACPI_EC_DELAY) : msecs_to_jiffies(1);
305 while (time_before(jiffies, delay))
306 if (wait_event_timeout(ec->wait, ec_check_ibf0(ec), timeout))
307 return 0;
308 return -ETIME;
309}
310
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400311static int acpi_ec_transaction(struct acpi_ec *ec, struct transaction *t,
Lennart Poettering00eb43a2007-05-04 14:16:19 +0200312 int force_poll)
Luming Yu45bea152005-07-23 04:08:00 -0400313{
Lennart Poetteringd7a76e42006-09-05 12:12:24 -0400314 int status;
Len Brown50526df2005-08-11 17:32:05 -0400315 u32 glk;
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400316 if (!ec || (!t) || (t->wlen && !t->wdata) || (t->rlen && !t->rdata))
Patrick Mocheld550d982006-06-27 00:41:40 -0400317 return -EINVAL;
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400318 if (t->rdata)
319 memset(t->rdata, 0, t->rlen);
Alexey Starikovskiy523953b2006-12-07 18:42:17 +0300320 mutex_lock(&ec->lock);
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400321 if (ec->global_lock) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 status = acpi_acquire_global_lock(ACPI_EC_UDELAY_GLK, &glk);
Alexey Starikovskiyc24e9122007-02-15 23:16:18 +0300323 if (ACPI_FAILURE(status)) {
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400324 status = -ENODEV;
325 goto unlock;
Alexey Starikovskiyc24e9122007-02-15 23:16:18 +0300326 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 }
Alexey Starikovskiyc0ff1772008-10-16 02:02:33 +0400328 if (ec_wait_ibf0(ec)) {
Márton Németh3ebe08a2007-11-21 03:23:26 +0300329 pr_err(PREFIX "input buffer is not empty, "
330 "aborting transaction\n");
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400331 status = -ETIME;
Dmitry Torokhov451566f2005-03-19 01:10:05 -0500332 goto end;
Luming Yu716e0842005-08-10 01:40:00 -0400333 }
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400334 status = acpi_ec_transaction_unlocked(ec, t, force_poll);
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400335end:
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400336 if (ec->global_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 acpi_release_global_lock(glk);
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400338unlock:
Alexey Starikovskiy523953b2006-12-07 18:42:17 +0300339 mutex_unlock(&ec->lock);
Patrick Mocheld550d982006-06-27 00:41:40 -0400340 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341}
342
Alexey Starikovskiyc45aac42007-03-07 22:28:00 +0300343/*
344 * Note: samsung nv5000 doesn't work with ec burst mode.
345 * http://bugzilla.kernel.org/show_bug.cgi?id=4980
346 */
Roel Kluin8a383ef2008-12-09 20:45:30 +0100347static int acpi_ec_burst_enable(struct acpi_ec *ec)
Alexey Starikovskiyc45aac42007-03-07 22:28:00 +0300348{
349 u8 d;
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400350 struct transaction t = {.command = ACPI_EC_BURST_ENABLE,
351 .wdata = NULL, .rdata = &d,
352 .wlen = 0, .rlen = 1};
353
354 return acpi_ec_transaction(ec, &t, 0);
Alexey Starikovskiyc45aac42007-03-07 22:28:00 +0300355}
356
Roel Kluin8a383ef2008-12-09 20:45:30 +0100357static int acpi_ec_burst_disable(struct acpi_ec *ec)
Alexey Starikovskiyc45aac42007-03-07 22:28:00 +0300358{
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400359 struct transaction t = {.command = ACPI_EC_BURST_DISABLE,
360 .wdata = NULL, .rdata = NULL,
361 .wlen = 0, .rlen = 0};
362
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400363 return (acpi_ec_read_status(ec) & ACPI_EC_FLAG_BURST) ?
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400364 acpi_ec_transaction(ec, &t, 0) : 0;
Alexey Starikovskiyc45aac42007-03-07 22:28:00 +0300365}
366
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300367static int acpi_ec_read(struct acpi_ec *ec, u8 address, u8 * data)
Denis M. Sadykov3576cf62006-09-26 19:50:33 +0400368{
369 int result;
370 u8 d;
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400371 struct transaction t = {.command = ACPI_EC_COMMAND_READ,
372 .wdata = &address, .rdata = &d,
373 .wlen = 1, .rlen = 1};
Denis M. Sadykov3576cf62006-09-26 19:50:33 +0400374
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400375 result = acpi_ec_transaction(ec, &t, 0);
Denis M. Sadykov3576cf62006-09-26 19:50:33 +0400376 *data = d;
377 return result;
378}
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400379
Denis M. Sadykov3576cf62006-09-26 19:50:33 +0400380static int acpi_ec_write(struct acpi_ec *ec, u8 address, u8 data)
381{
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300382 u8 wdata[2] = { address, data };
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400383 struct transaction t = {.command = ACPI_EC_COMMAND_WRITE,
384 .wdata = wdata, .rdata = NULL,
385 .wlen = 2, .rlen = 0};
386
387 return acpi_ec_transaction(ec, &t, 0);
Denis M. Sadykov3576cf62006-09-26 19:50:33 +0400388}
389
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390/*
391 * Externally callable EC access functions. For now, assume 1 EC only
392 */
Alexey Starikovskiyc45aac42007-03-07 22:28:00 +0300393int ec_burst_enable(void)
394{
Alexey Starikovskiyc45aac42007-03-07 22:28:00 +0300395 if (!first_ec)
396 return -ENODEV;
Alexey Starikovskiyd0338792007-03-07 22:28:00 +0300397 return acpi_ec_burst_enable(first_ec);
Alexey Starikovskiyc45aac42007-03-07 22:28:00 +0300398}
399
400EXPORT_SYMBOL(ec_burst_enable);
401
402int ec_burst_disable(void)
403{
Alexey Starikovskiyc45aac42007-03-07 22:28:00 +0300404 if (!first_ec)
405 return -ENODEV;
Alexey Starikovskiyd0338792007-03-07 22:28:00 +0300406 return acpi_ec_burst_disable(first_ec);
Alexey Starikovskiyc45aac42007-03-07 22:28:00 +0300407}
408
409EXPORT_SYMBOL(ec_burst_disable);
410
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300411int ec_read(u8 addr, u8 * val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 int err;
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400414 u8 temp_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
416 if (!first_ec)
417 return -ENODEV;
418
Alexey Starikovskiyd0338792007-03-07 22:28:00 +0300419 err = acpi_ec_read(first_ec, addr, &temp_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
421 if (!err) {
422 *val = temp_data;
423 return 0;
Len Brown50526df2005-08-11 17:32:05 -0400424 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 return err;
426}
Len Brown50526df2005-08-11 17:32:05 -0400427
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428EXPORT_SYMBOL(ec_read);
429
Len Brown50526df2005-08-11 17:32:05 -0400430int ec_write(u8 addr, u8 val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 int err;
433
434 if (!first_ec)
435 return -ENODEV;
436
Alexey Starikovskiyd0338792007-03-07 22:28:00 +0300437 err = acpi_ec_write(first_ec, addr, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
439 return err;
440}
Len Brown50526df2005-08-11 17:32:05 -0400441
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442EXPORT_SYMBOL(ec_write);
443
Randy Dunlap616362d2006-10-27 01:47:34 -0400444int ec_transaction(u8 command,
Alexey Starikovskiy9e197212007-03-07 18:29:35 -0500445 const u8 * wdata, unsigned wdata_len,
Lennart Poettering00eb43a2007-05-04 14:16:19 +0200446 u8 * rdata, unsigned rdata_len,
447 int force_poll)
Luming Yu45bea152005-07-23 04:08:00 -0400448{
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400449 struct transaction t = {.command = command,
450 .wdata = wdata, .rdata = rdata,
451 .wlen = wdata_len, .rlen = rdata_len};
Lennart Poetteringd7a76e42006-09-05 12:12:24 -0400452 if (!first_ec)
453 return -ENODEV;
454
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400455 return acpi_ec_transaction(first_ec, &t, force_poll);
Luming Yu45bea152005-07-23 04:08:00 -0400456}
Luming Yu45bea152005-07-23 04:08:00 -0400457
Lennart Poetteringab9e43c2006-10-03 22:49:00 -0400458EXPORT_SYMBOL(ec_transaction);
459
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300460static int acpi_ec_query(struct acpi_ec *ec, u8 * data)
Denis M. Sadykov3576cf62006-09-26 19:50:33 +0400461{
462 int result;
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300463 u8 d;
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400464 struct transaction t = {.command = ACPI_EC_COMMAND_QUERY,
465 .wdata = NULL, .rdata = &d,
466 .wlen = 0, .rlen = 1};
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300467 if (!ec || !data)
468 return -EINVAL;
Luming Yu45bea152005-07-23 04:08:00 -0400469
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300470 /*
471 * Query the EC to find out which _Qxx method we need to evaluate.
472 * Note that successful completion of the query causes the ACPI_EC_SCI
473 * bit to be cleared (and thus clearing the interrupt source).
474 */
Luming Yu45bea152005-07-23 04:08:00 -0400475
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400476 result = acpi_ec_transaction(ec, &t, 0);
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300477 if (result)
478 return result;
Luming Yu45bea152005-07-23 04:08:00 -0400479
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300480 if (!d)
481 return -ENODATA;
Luming Yu45bea152005-07-23 04:08:00 -0400482
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300483 *data = d;
484 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485}
486
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487/* --------------------------------------------------------------------------
488 Event Management
489 -------------------------------------------------------------------------- */
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400490int acpi_ec_add_query_handler(struct acpi_ec *ec, u8 query_bit,
491 acpi_handle handle, acpi_ec_query_func func,
492 void *data)
493{
494 struct acpi_ec_query_handler *handler =
495 kzalloc(sizeof(struct acpi_ec_query_handler), GFP_KERNEL);
496 if (!handler)
497 return -ENOMEM;
498
499 handler->query_bit = query_bit;
500 handler->handle = handle;
501 handler->func = func;
502 handler->data = data;
503 mutex_lock(&ec->lock);
Alexey Starikovskiy30c08572007-09-26 19:43:22 +0400504 list_add(&handler->node, &ec->list);
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400505 mutex_unlock(&ec->lock);
506 return 0;
507}
508
509EXPORT_SYMBOL_GPL(acpi_ec_add_query_handler);
510
511void acpi_ec_remove_query_handler(struct acpi_ec *ec, u8 query_bit)
512{
Adrian Bunk1544fdb2007-10-24 18:26:00 +0200513 struct acpi_ec_query_handler *handler, *tmp;
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400514 mutex_lock(&ec->lock);
Adrian Bunk1544fdb2007-10-24 18:26:00 +0200515 list_for_each_entry_safe(handler, tmp, &ec->list, node) {
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400516 if (query_bit == handler->query_bit) {
517 list_del(&handler->node);
518 kfree(handler);
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400519 }
520 }
521 mutex_unlock(&ec->lock);
522}
523
524EXPORT_SYMBOL_GPL(acpi_ec_remove_query_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525
Len Brown50526df2005-08-11 17:32:05 -0400526static void acpi_ec_gpe_query(void *ec_cxt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527{
Alexey Starikovskiy3d02b902007-03-07 22:28:00 +0300528 struct acpi_ec *ec = ec_cxt;
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400529 u8 value = 0;
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400530 struct acpi_ec_query_handler *handler, copy;
Luming Yu45bea152005-07-23 04:08:00 -0400531
Alexey Starikovskiy5d0c2882006-12-07 18:42:16 +0300532 if (!ec || acpi_ec_query(ec, &value))
Alexey Starikovskiye41334c2006-12-07 18:42:16 +0300533 return;
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400534 mutex_lock(&ec->lock);
535 list_for_each_entry(handler, &ec->list, node) {
536 if (value == handler->query_bit) {
537 /* have custom handler for this bit */
538 memcpy(&copy, handler, sizeof(copy));
539 mutex_unlock(&ec->lock);
540 if (copy.func) {
541 copy.func(copy.data);
542 } else if (copy.handle) {
543 acpi_evaluate_object(copy.handle, NULL, NULL, NULL);
544 }
545 return;
546 }
547 }
548 mutex_unlock(&ec->lock);
Luming Yu45bea152005-07-23 04:08:00 -0400549}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
Len Brown50526df2005-08-11 17:32:05 -0400551static u32 acpi_ec_gpe_handler(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552{
Alexey Starikovskiy3d02b902007-03-07 22:28:00 +0300553 struct acpi_ec *ec = data;
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400554 u8 status;
Lennart Poettering00eb43a2007-05-04 14:16:19 +0200555
Márton Németh3ebe08a2007-11-21 03:23:26 +0300556 pr_debug(PREFIX "~~~> interrupt\n");
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400557 status = acpi_ec_read_status(ec);
558
Alexey Starikovskiy85179342008-11-11 12:54:11 +0300559 if (test_bit(EC_FLAGS_GPE_MODE, &ec->flags)) {
560 gpe_transaction(ec, status);
561 if (ec_transaction_done(ec) &&
562 (status & ACPI_EC_FLAG_IBF) == 0)
563 wake_up(&ec->wait);
564 }
Dmitry Torokhov451566f2005-03-19 01:10:05 -0500565
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400566 ec_check_sci(ec, status);
567 if (!test_bit(EC_FLAGS_GPE_MODE, &ec->flags) &&
568 !test_bit(EC_FLAGS_NO_GPE, &ec->flags)) {
Alexey Starikovskiy95b937e2007-10-22 14:19:03 +0400569 /* this is non-query, must be confirmation */
Alan Jenkinsf8248432008-11-01 11:05:26 +0000570 if (!test_bit(EC_FLAGS_GPE_STORM, &ec->flags)) {
571 if (printk_ratelimit())
572 pr_info(PREFIX "non-query interrupt received,"
573 " switching to interrupt mode\n");
574 } else {
575 /* hush, STORM switches the mode every transaction */
576 pr_debug(PREFIX "non-query interrupt received,"
Márton Németh3ebe08a2007-11-21 03:23:26 +0300577 " switching to interrupt mode\n");
Alan Jenkinsf8248432008-11-01 11:05:26 +0000578 }
Alexey Starikovskiy78439322007-10-22 14:18:43 +0400579 set_bit(EC_FLAGS_GPE_MODE, &ec->flags);
Alexey Starikovskiy95b937e2007-10-22 14:19:03 +0400580 }
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400581 return ACPI_INTERRUPT_HANDLED;
Alexey Starikovskiy845625c2008-03-21 17:07:03 +0300582}
583
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584/* --------------------------------------------------------------------------
585 Address Space Management
586 -------------------------------------------------------------------------- */
587
588static acpi_status
Alexey Starikovskiy5b7734b2007-05-29 16:42:52 +0400589acpi_ec_space_handler(u32 function, acpi_physical_address address,
590 u32 bits, acpi_integer *value,
Len Brown50526df2005-08-11 17:32:05 -0400591 void *handler_context, void *region_context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592{
Alexey Starikovskiy3d02b902007-03-07 22:28:00 +0300593 struct acpi_ec *ec = handler_context;
Alexey Starikovskiy3e71a872008-01-11 02:42:51 +0300594 int result = 0, i;
Alexey Starikovskiy5b7734b2007-05-29 16:42:52 +0400595 u8 temp = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 if ((address > 0xFF) || !value || !handler_context)
Patrick Mocheld550d982006-06-27 00:41:40 -0400598 return AE_BAD_PARAMETER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
Alexey Starikovskiy5b7734b2007-05-29 16:42:52 +0400600 if (function != ACPI_READ && function != ACPI_WRITE)
Patrick Mocheld550d982006-06-27 00:41:40 -0400601 return AE_BAD_PARAMETER;
Alexey Starikovskiy5b7734b2007-05-29 16:42:52 +0400602
603 if (bits != 8 && acpi_strict)
604 return AE_BAD_PARAMETER;
605
Alexey Starikovskiyb3b233c2008-01-11 02:42:57 +0300606 acpi_ec_burst_enable(ec);
607
Alexey Starikovskiy3e71a872008-01-11 02:42:51 +0300608 if (function == ACPI_READ) {
609 result = acpi_ec_read(ec, address, &temp);
610 *value = temp;
611 } else {
612 temp = 0xff & (*value);
613 result = acpi_ec_write(ec, address, temp);
614 }
615
616 for (i = 8; unlikely(bits - i > 0); i += 8) {
617 ++address;
Alexey Starikovskiy5b7734b2007-05-29 16:42:52 +0400618 if (function == ACPI_READ) {
619 result = acpi_ec_read(ec, address, &temp);
620 (*value) |= ((acpi_integer)temp) << i;
621 } else {
622 temp = 0xff & ((*value) >> i);
623 result = acpi_ec_write(ec, address, temp);
624 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 }
626
Alexey Starikovskiyb3b233c2008-01-11 02:42:57 +0300627 acpi_ec_burst_disable(ec);
628
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 switch (result) {
630 case -EINVAL:
Patrick Mocheld550d982006-06-27 00:41:40 -0400631 return AE_BAD_PARAMETER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 break;
633 case -ENODEV:
Patrick Mocheld550d982006-06-27 00:41:40 -0400634 return AE_NOT_FOUND;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 break;
636 case -ETIME:
Patrick Mocheld550d982006-06-27 00:41:40 -0400637 return AE_TIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 break;
639 default:
Patrick Mocheld550d982006-06-27 00:41:40 -0400640 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642}
643
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644/* --------------------------------------------------------------------------
645 FS Interface (/proc)
646 -------------------------------------------------------------------------- */
647
Len Brown50526df2005-08-11 17:32:05 -0400648static struct proc_dir_entry *acpi_ec_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
Len Brown50526df2005-08-11 17:32:05 -0400650static int acpi_ec_read_info(struct seq_file *seq, void *offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651{
Alexey Starikovskiy3d02b902007-03-07 22:28:00 +0300652 struct acpi_ec *ec = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 if (!ec)
655 goto end;
656
Alexey Starikovskiy01f22462007-03-07 22:28:00 +0300657 seq_printf(seq, "gpe:\t\t\t0x%02x\n", (u32) ec->gpe);
658 seq_printf(seq, "ports:\t\t\t0x%02x, 0x%02x\n",
659 (unsigned)ec->command_addr, (unsigned)ec->data_addr);
660 seq_printf(seq, "use global lock:\t%s\n",
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400661 ec->global_lock ? "yes" : "no");
Len Brown50526df2005-08-11 17:32:05 -0400662 end:
Patrick Mocheld550d982006-06-27 00:41:40 -0400663 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664}
665
666static int acpi_ec_info_open_fs(struct inode *inode, struct file *file)
667{
668 return single_open(file, acpi_ec_read_info, PDE(inode)->data);
669}
670
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400671static struct file_operations acpi_ec_info_ops = {
Len Brown50526df2005-08-11 17:32:05 -0400672 .open = acpi_ec_info_open_fs,
673 .read = seq_read,
674 .llseek = seq_lseek,
675 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 .owner = THIS_MODULE,
677};
678
Len Brown50526df2005-08-11 17:32:05 -0400679static int acpi_ec_add_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680{
Len Brown50526df2005-08-11 17:32:05 -0400681 struct proc_dir_entry *entry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 if (!acpi_device_dir(device)) {
684 acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device),
Len Brown50526df2005-08-11 17:32:05 -0400685 acpi_ec_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 if (!acpi_device_dir(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400687 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 }
689
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700690 entry = proc_create_data(ACPI_EC_FILE_INFO, S_IRUGO,
691 acpi_device_dir(device),
692 &acpi_ec_info_ops, acpi_driver_data(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -0400694 return -ENODEV;
Patrick Mocheld550d982006-06-27 00:41:40 -0400695 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696}
697
Len Brown50526df2005-08-11 17:32:05 -0400698static int acpi_ec_remove_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
701 if (acpi_device_dir(device)) {
702 remove_proc_entry(ACPI_EC_FILE_INFO, acpi_device_dir(device));
703 remove_proc_entry(acpi_device_bid(device), acpi_ec_dir);
704 acpi_device_dir(device) = NULL;
705 }
706
Patrick Mocheld550d982006-06-27 00:41:40 -0400707 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708}
709
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710/* --------------------------------------------------------------------------
711 Driver Interface
712 -------------------------------------------------------------------------- */
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300713static acpi_status
714ec_parse_io_ports(struct acpi_resource *resource, void *context);
715
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300716static struct acpi_ec *make_acpi_ec(void)
717{
718 struct acpi_ec *ec = kzalloc(sizeof(struct acpi_ec), GFP_KERNEL);
719 if (!ec)
720 return NULL;
Alexey Starikovskiy080e4122007-10-22 14:18:30 +0400721 ec->flags = 1 << EC_FLAGS_QUERY_PENDING;
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300722 mutex_init(&ec->lock);
723 init_waitqueue_head(&ec->wait);
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400724 INIT_LIST_HEAD(&ec->list);
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400725 spin_lock_init(&ec->curr_lock);
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300726 return ec;
727}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400729static acpi_status
Alexey Starikovskiyc019b192007-08-14 01:03:42 -0400730acpi_ec_register_query_methods(acpi_handle handle, u32 level,
731 void *context, void **return_value)
732{
Lin Ming0175d562008-12-16 16:46:12 +0800733 char node_name[5];
734 struct acpi_buffer buffer = { sizeof(node_name), node_name };
Alexey Starikovskiyc019b192007-08-14 01:03:42 -0400735 struct acpi_ec *ec = context;
736 int value = 0;
Lin Ming0175d562008-12-16 16:46:12 +0800737 acpi_status status;
738
739 status = acpi_get_name(handle, ACPI_SINGLE_NAME, &buffer);
740
741 if (ACPI_SUCCESS(status) && sscanf(node_name, "_Q%x", &value) == 1) {
Alexey Starikovskiyc019b192007-08-14 01:03:42 -0400742 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;
Alexey Starikovskiyd21cf3c2008-11-03 14:26:40 -0500751 unsigned long long tmp = 0;
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? */
Alexey Starikovskiyd21cf3c2008-11-03 14:26:40 -0500766 tmp = 0;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400767 acpi_evaluate_integer(handle, "_GLK", NULL, &tmp);
768 ec->global_lock = tmp;
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400769 ec->handle = handle;
Alexey Starikovskiycd8c93a2007-08-03 17:52:48 -0400770 return AE_CTRL_TERMINATE;
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400771}
772
Alexey Starikovskiy4c611062007-09-05 19:56:38 -0400773static void ec_remove_handlers(struct acpi_ec *ec)
774{
775 if (ACPI_FAILURE(acpi_remove_address_space_handler(ec->handle,
776 ACPI_ADR_SPACE_EC, &acpi_ec_space_handler)))
Márton Németh3ebe08a2007-11-21 03:23:26 +0300777 pr_err(PREFIX "failed to remove space handler\n");
Alexey Starikovskiy4c611062007-09-05 19:56:38 -0400778 if (ACPI_FAILURE(acpi_remove_gpe_handler(NULL, ec->gpe,
779 &acpi_ec_gpe_handler)))
Márton Németh3ebe08a2007-11-21 03:23:26 +0300780 pr_err(PREFIX "failed to remove gpe handler\n");
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400781 clear_bit(EC_FLAGS_HANDLERS_INSTALLED, &ec->flags);
Alexey Starikovskiy4c611062007-09-05 19:56:38 -0400782}
783
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400784static int acpi_ec_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785{
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400786 struct acpi_ec *ec = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400789 return -EINVAL;
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300790 strcpy(acpi_device_name(device), ACPI_EC_DEVICE_NAME);
791 strcpy(acpi_device_class(device), ACPI_EC_CLASS);
792
Alexey Starikovskiy4c611062007-09-05 19:56:38 -0400793 /* Check for boot EC */
Alexey Starikovskiyce52ddf2008-03-24 23:22:36 +0300794 if (boot_ec &&
795 (boot_ec->handle == device->handle ||
796 boot_ec->handle == ACPI_ROOT_OBJECT)) {
797 ec = boot_ec;
798 boot_ec = NULL;
799 } else {
800 ec = make_acpi_ec();
801 if (!ec)
802 return -ENOMEM;
803 if (ec_parse_device(device->handle, 0, ec, NULL) !=
804 AE_CTRL_TERMINATE) {
805 kfree(ec);
806 return -EINVAL;
Alexey Starikovskiy4c611062007-09-05 19:56:38 -0400807 }
808 }
809
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300810 ec->handle = device->handle;
Alexey Starikovskiyce52ddf2008-03-24 23:22:36 +0300811
812 /* Find and register all query methods */
813 acpi_walk_namespace(ACPI_TYPE_METHOD, ec->handle, 1,
814 acpi_ec_register_query_methods, ec, NULL);
815
Alexey Starikovskiy4c611062007-09-05 19:56:38 -0400816 if (!first_ec)
817 first_ec = ec;
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700818 device->driver_data = ec;
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300819 acpi_ec_add_fs(device);
Márton Németh3ebe08a2007-11-21 03:23:26 +0300820 pr_info(PREFIX "GPE = 0x%lx, I/O: command/status = 0x%lx, data = 0x%lx\n",
Alexey Starikovskiy4c611062007-09-05 19:56:38 -0400821 ec->gpe, ec->command_addr, ec->data_addr);
Márton Németh3ebe08a2007-11-21 03:23:26 +0300822 pr_info(PREFIX "driver started in %s mode\n",
Alexey Starikovskiy95b937e2007-10-22 14:19:03 +0400823 (test_bit(EC_FLAGS_GPE_MODE, &ec->flags))?"interrupt":"poll");
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300824 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825}
826
Len Brown50526df2005-08-11 17:32:05 -0400827static int acpi_ec_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828{
Alexey Starikovskiy01f22462007-03-07 22:28:00 +0300829 struct acpi_ec *ec;
Adrian Bunk07ddf762007-07-29 17:00:37 +0200830 struct acpi_ec_query_handler *handler, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400833 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834
835 ec = acpi_driver_data(device);
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400836 mutex_lock(&ec->lock);
Adrian Bunk07ddf762007-07-29 17:00:37 +0200837 list_for_each_entry_safe(handler, tmp, &ec->list, node) {
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400838 list_del(&handler->node);
839 kfree(handler);
840 }
841 mutex_unlock(&ec->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 acpi_ec_remove_fs(device);
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700843 device->driver_data = NULL;
Alexey Starikovskiyd0338792007-03-07 22:28:00 +0300844 if (ec == first_ec)
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300845 first_ec = NULL;
Alexey Starikovskiy4c611062007-09-05 19:56:38 -0400846 kfree(ec);
Patrick Mocheld550d982006-06-27 00:41:40 -0400847 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848}
849
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850static acpi_status
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300851ec_parse_io_ports(struct acpi_resource *resource, void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852{
Alexey Starikovskiy3d02b902007-03-07 22:28:00 +0300853 struct acpi_ec *ec = context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854
Alexey Starikovskiy01f22462007-03-07 22:28:00 +0300855 if (resource->type != ACPI_RESOURCE_TYPE_IO)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
858 /*
859 * The first address region returned is the data port, and
860 * the second address region returned is the status/command
861 * port.
862 */
Alexey Starikovskiy01f22462007-03-07 22:28:00 +0300863 if (ec->data_addr == 0)
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400864 ec->data_addr = resource->data.io.minimum;
Alexey Starikovskiy01f22462007-03-07 22:28:00 +0300865 else if (ec->command_addr == 0)
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400866 ec->command_addr = resource->data.io.minimum;
Alexey Starikovskiy01f22462007-03-07 22:28:00 +0300867 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 return AE_CTRL_TERMINATE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 return AE_OK;
871}
872
Alexey Starikovskiye8284322007-03-07 22:28:00 +0300873static int ec_install_handlers(struct acpi_ec *ec)
874{
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300875 acpi_status status;
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400876 if (test_bit(EC_FLAGS_HANDLERS_INSTALLED, &ec->flags))
Alexey Starikovskiy4c611062007-09-05 19:56:38 -0400877 return 0;
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300878 status = acpi_install_gpe_handler(NULL, ec->gpe,
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400879 ACPI_GPE_EDGE_TRIGGERED,
880 &acpi_ec_gpe_handler, ec);
Alexey Starikovskiye8284322007-03-07 22:28:00 +0300881 if (ACPI_FAILURE(status))
882 return -ENODEV;
883 acpi_set_gpe_type(NULL, ec->gpe, ACPI_GPE_TYPE_RUNTIME);
Alexey Starikovskiy0b7084a2008-10-25 21:48:46 +0400884 acpi_enable_gpe(NULL, ec->gpe);
Alexey Starikovskiye8284322007-03-07 22:28:00 +0300885 status = acpi_install_address_space_handler(ec->handle,
886 ACPI_ADR_SPACE_EC,
887 &acpi_ec_space_handler,
Alexey Starikovskiy6d9e1122008-03-24 23:22:29 +0300888 NULL, ec);
Alexey Starikovskiye8284322007-03-07 22:28:00 +0300889 if (ACPI_FAILURE(status)) {
Zhao Yakui20edd742008-10-17 02:02:44 -0400890 if (status == AE_NOT_FOUND) {
891 /*
892 * Maybe OS fails in evaluating the _REG object.
893 * The AE_NOT_FOUND error will be ignored and OS
894 * continue to initialize EC.
895 */
896 printk(KERN_ERR "Fail in evaluating the _REG object"
897 " of EC device. Broken bios is suspected.\n");
898 } else {
899 acpi_remove_gpe_handler(NULL, ec->gpe,
900 &acpi_ec_gpe_handler);
901 return -ENODEV;
902 }
Alexey Starikovskiye8284322007-03-07 22:28:00 +0300903 }
904
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400905 set_bit(EC_FLAGS_HANDLERS_INSTALLED, &ec->flags);
Alexey Starikovskiye8284322007-03-07 22:28:00 +0300906 return 0;
907}
908
Len Brown50526df2005-08-11 17:32:05 -0400909static int acpi_ec_start(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910{
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300911 struct acpi_ec *ec;
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400912 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400915 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916
917 ec = acpi_driver_data(device);
918
919 if (!ec)
Patrick Mocheld550d982006-06-27 00:41:40 -0400920 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921
Alexey Starikovskiy4c611062007-09-05 19:56:38 -0400922 ret = ec_install_handlers(ec);
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300923
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400924 /* EC is fully operational, allow queries */
Alexey Starikovskiy080e4122007-10-22 14:18:30 +0400925 clear_bit(EC_FLAGS_QUERY_PENDING, &ec->flags);
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400926 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927}
928
Len Brown50526df2005-08-11 17:32:05 -0400929static int acpi_ec_stop(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930{
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300931 struct acpi_ec *ec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400933 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 ec = acpi_driver_data(device);
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300935 if (!ec)
936 return -EINVAL;
Alexey Starikovskiy4c611062007-09-05 19:56:38 -0400937 ec_remove_handlers(ec);
Alexey Starikovskiyf9319f92007-08-24 08:10:11 +0400938
Patrick Mocheld550d982006-06-27 00:41:40 -0400939 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940}
941
Alexey Starikovskiyc04209a2008-01-01 14:12:55 -0500942int __init acpi_boot_ec_enable(void)
943{
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400944 if (!boot_ec || test_bit(EC_FLAGS_HANDLERS_INSTALLED, &boot_ec->flags))
Alexey Starikovskiyc04209a2008-01-01 14:12:55 -0500945 return 0;
946 if (!ec_install_handlers(boot_ec)) {
947 first_ec = boot_ec;
948 return 0;
949 }
950 return -EFAULT;
951}
952
Alexey Starikovskiy223883b2008-03-21 17:07:21 +0300953static const struct acpi_device_id ec_device_ids[] = {
954 {"PNP0C09", 0},
955 {"", 0},
956};
957
Len Brown50526df2005-08-11 17:32:05 -0400958int __init acpi_ec_ecdt_probe(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959{
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300960 acpi_status status;
Alexey Starikovskiyc6cb0e82009-01-14 02:57:53 +0300961 struct acpi_ec *saved_ec = NULL;
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300962 struct acpi_table_ecdt *ecdt_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963
Alexey Starikovskiyd66d9692007-03-07 22:28:00 +0300964 boot_ec = make_acpi_ec();
965 if (!boot_ec)
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300966 return -ENOMEM;
967 /*
968 * Generate a boot ec context
969 */
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300970 status = acpi_get_table(ACPI_SIG_ECDT, 1,
971 (struct acpi_table_header **)&ecdt_ptr);
Alexey Starikovskiycd8c93a2007-08-03 17:52:48 -0400972 if (ACPI_SUCCESS(status)) {
Márton Németh3ebe08a2007-11-21 03:23:26 +0300973 pr_info(PREFIX "EC description table is found, configuring boot EC\n");
Alexey Starikovskiycd8c93a2007-08-03 17:52:48 -0400974 boot_ec->command_addr = ecdt_ptr->control.address;
975 boot_ec->data_addr = ecdt_ptr->data.address;
976 boot_ec->gpe = ecdt_ptr->gpe;
Len Brown4af8e102008-03-11 00:27:16 -0400977 boot_ec->handle = ACPI_ROOT_OBJECT;
Alexey Starikovskiyce52ddf2008-03-24 23:22:36 +0300978 acpi_get_handle(ACPI_ROOT_OBJECT, ecdt_ptr->id, &boot_ec->handle);
Alexey Starikovskiyc6cb0e82009-01-14 02:57:53 +0300979 /* Don't trust ECDT, which comes from ASUSTek */
980 if (!dmi_name_in_vendors("ASUS"))
Alexey Starikovskiyc5279de2008-11-26 17:11:53 -0500981 goto install;
Alexey Starikovskiyc6cb0e82009-01-14 02:57:53 +0300982 saved_ec = kmalloc(sizeof(struct acpi_ec), GFP_KERNEL);
983 if (!saved_ec)
984 return -ENOMEM;
985 memcpy(&saved_ec, boot_ec, sizeof(saved_ec));
Alexey Starikovskiyc5279de2008-11-26 17:11:53 -0500986 /* fall through */
Alexey Starikovskiycd8c93a2007-08-03 17:52:48 -0400987 }
Alexey Starikovskiyc5279de2008-11-26 17:11:53 -0500988 /* This workaround is needed only on some broken machines,
989 * which require early EC, but fail to provide ECDT */
Alexey Starikovskiyc5279de2008-11-26 17:11:53 -0500990 printk(KERN_DEBUG PREFIX "Look up EC in DSDT\n");
991 status = acpi_get_devices(ec_device_ids[0].id, ec_parse_device,
992 boot_ec, NULL);
993 /* Check that acpi_get_devices actually find something */
994 if (ACPI_FAILURE(status) || !boot_ec->handle)
995 goto error;
Alexey Starikovskiyc6cb0e82009-01-14 02:57:53 +0300996 if (saved_ec) {
997 /* try to find good ECDT from ASUSTek */
998 if (saved_ec->command_addr != boot_ec->command_addr ||
999 saved_ec->data_addr != boot_ec->data_addr ||
1000 saved_ec->gpe != boot_ec->gpe ||
1001 saved_ec->handle != boot_ec->handle)
1002 pr_info(PREFIX "ASUSTek keeps feeding us with broken "
1003 "ECDT tables, which are very hard to workaround. "
1004 "Trying to use DSDT EC info instead. Please send "
1005 "output of acpidump to linux-acpi@vger.kernel.org\n");
1006 kfree(saved_ec);
1007 saved_ec = NULL;
1008 } else {
1009 /* We really need to limit this workaround, the only ASUS,
1010 * which needs it, has fake EC._INI method, so use it as flag.
1011 * Keep boot_ec struct as it will be needed soon.
1012 */
1013 acpi_handle dummy;
1014 if (!dmi_name_in_vendors("ASUS") ||
1015 ACPI_FAILURE(acpi_get_handle(boot_ec->handle, "_INI",
1016 &dummy)))
1017 return -ENODEV;
1018 }
Alexey Starikovskiyc5279de2008-11-26 17:11:53 -05001019install:
1020 if (!ec_install_handlers(boot_ec)) {
Alexey Starikovskiyd0338792007-03-07 22:28:00 +03001021 first_ec = boot_ec;
Alexey Starikovskiye8284322007-03-07 22:28:00 +03001022 return 0;
Alexey Starikovskiyd0338792007-03-07 22:28:00 +03001023 }
Alexey Starikovskiyc5279de2008-11-26 17:11:53 -05001024error:
Alexey Starikovskiyd66d9692007-03-07 22:28:00 +03001025 kfree(boot_ec);
1026 boot_ec = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 return -ENODEV;
1028}
1029
Alexey Starikovskiy223883b2008-03-21 17:07:21 +03001030static int acpi_ec_suspend(struct acpi_device *device, pm_message_t state)
1031{
1032 struct acpi_ec *ec = acpi_driver_data(device);
1033 /* Stop using GPE */
1034 set_bit(EC_FLAGS_NO_GPE, &ec->flags);
1035 clear_bit(EC_FLAGS_GPE_MODE, &ec->flags);
Alexey Starikovskiy0b7084a2008-10-25 21:48:46 +04001036 acpi_disable_gpe(NULL, ec->gpe);
Alexey Starikovskiy223883b2008-03-21 17:07:21 +03001037 return 0;
1038}
1039
1040static int acpi_ec_resume(struct acpi_device *device)
1041{
1042 struct acpi_ec *ec = acpi_driver_data(device);
1043 /* Enable use of GPE back */
1044 clear_bit(EC_FLAGS_NO_GPE, &ec->flags);
Alexey Starikovskiy0b7084a2008-10-25 21:48:46 +04001045 acpi_enable_gpe(NULL, ec->gpe);
Alexey Starikovskiy223883b2008-03-21 17:07:21 +03001046 return 0;
1047}
1048
1049static struct acpi_driver acpi_ec_driver = {
1050 .name = "ec",
1051 .class = ACPI_EC_CLASS,
1052 .ids = ec_device_ids,
1053 .ops = {
1054 .add = acpi_ec_add,
1055 .remove = acpi_ec_remove,
1056 .start = acpi_ec_start,
1057 .stop = acpi_ec_stop,
1058 .suspend = acpi_ec_suspend,
1059 .resume = acpi_ec_resume,
1060 },
1061};
1062
Len Brown50526df2005-08-11 17:32:05 -04001063static int __init acpi_ec_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064{
Len Brown50526df2005-08-11 17:32:05 -04001065 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 if (acpi_disabled)
Patrick Mocheld550d982006-06-27 00:41:40 -04001068 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069
1070 acpi_ec_dir = proc_mkdir(ACPI_EC_CLASS, acpi_root_dir);
1071 if (!acpi_ec_dir)
Patrick Mocheld550d982006-06-27 00:41:40 -04001072 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073
1074 /* Now register the driver for the EC */
1075 result = acpi_bus_register_driver(&acpi_ec_driver);
1076 if (result < 0) {
1077 remove_proc_entry(ACPI_EC_CLASS, acpi_root_dir);
Patrick Mocheld550d982006-06-27 00:41:40 -04001078 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 }
1080
Patrick Mocheld550d982006-06-27 00:41:40 -04001081 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082}
1083
1084subsys_initcall(acpi_ec_init);
1085
1086/* EC driver currently not unloadable */
1087#if 0
Len Brown50526df2005-08-11 17:32:05 -04001088static void __exit acpi_ec_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090
1091 acpi_bus_unregister_driver(&acpi_ec_driver);
1092
1093 remove_proc_entry(ACPI_EC_CLASS, acpi_root_dir);
1094
Patrick Mocheld550d982006-06-27 00:41:40 -04001095 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096}
Alexey Starikovskiy78439322007-10-22 14:18:43 +04001097#endif /* 0 */