blob: 30f3ef236ecb1b354548c5bb2570866eaa8ec6be [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 Starikovskiy06cf7d32008-11-09 19:01:06 +030073#define ACPI_EC_STORM_THRESHOLD 8 /* number of false interrupts
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +040074 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 Starikovskiya2f93ae2008-11-12 01:40:19 +0300103 u8 wi;
104 u8 ri;
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400105 u8 wlen;
106 u8 rlen;
Alexey Starikovskiydd15f8c2008-11-08 21:42:30 +0300107 bool done;
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400108};
109
Adrian Bunka854e082006-12-19 12:56:12 -0800110static struct acpi_ec {
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400111 acpi_handle handle;
Alexey Starikovskiya86e2772006-12-07 18:42:16 +0300112 unsigned long gpe;
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400113 unsigned long command_addr;
114 unsigned long data_addr;
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400115 unsigned long global_lock;
Alexey Starikovskiy080e4122007-10-22 14:18:30 +0400116 unsigned long flags;
Alexey Starikovskiyc787a852006-12-07 18:42:16 +0300117 struct mutex lock;
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400118 wait_queue_head_t wait;
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400119 struct list_head list;
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400120 struct transaction *curr;
121 spinlock_t curr_lock;
Alexey Starikovskiyd0338792007-03-07 22:28:00 +0300122} *boot_ec, *first_ec;
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400123
Zhao Yakui25008222008-08-12 10:40:10 +0800124/*
125 * Some Asus system have exchanged ECDT data/command IO addresses.
126 */
127static int print_ecdt_error(const struct dmi_system_id *id)
128{
129 printk(KERN_NOTICE PREFIX "%s detected - "
130 "ECDT has exchanged control/data I/O address\n",
131 id->ident);
132 return 0;
133}
134
135static struct dmi_system_id __cpuinitdata ec_dmi_table[] = {
136 {
137 print_ecdt_error, "Asus L4R", {
138 DMI_MATCH(DMI_BIOS_VERSION, "1008.006"),
139 DMI_MATCH(DMI_PRODUCT_NAME, "L4R"),
140 DMI_MATCH(DMI_BOARD_NAME, "L4R") }, NULL},
141 {
142 print_ecdt_error, "Asus M6R", {
143 DMI_MATCH(DMI_BIOS_VERSION, "0207"),
144 DMI_MATCH(DMI_PRODUCT_NAME, "M6R"),
145 DMI_MATCH(DMI_BOARD_NAME, "M6R") }, NULL},
146 {},
147};
148
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149/* --------------------------------------------------------------------------
150 Transaction Management
151 -------------------------------------------------------------------------- */
152
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400153static inline u8 acpi_ec_read_status(struct acpi_ec *ec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154{
Márton Németh3ebe08a2007-11-21 03:23:26 +0300155 u8 x = inb(ec->command_addr);
Márton Németh86dae012008-01-23 22:33:06 -0500156 pr_debug(PREFIX "---> status = 0x%2.2x\n", x);
Márton Németh3ebe08a2007-11-21 03:23:26 +0300157 return x;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158}
159
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400160static inline u8 acpi_ec_read_data(struct acpi_ec *ec)
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400161{
Márton Németh3ebe08a2007-11-21 03:23:26 +0300162 u8 x = inb(ec->data_addr);
Márton Németh86dae012008-01-23 22:33:06 -0500163 pr_debug(PREFIX "---> data = 0x%2.2x\n", x);
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400164 return x;
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400165}
166
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400167static inline void acpi_ec_write_cmd(struct acpi_ec *ec, u8 command)
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400168{
Márton Németh86dae012008-01-23 22:33:06 -0500169 pr_debug(PREFIX "<--- command = 0x%2.2x\n", command);
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400170 outb(command, ec->command_addr);
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400171}
172
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400173static inline void acpi_ec_write_data(struct acpi_ec *ec, u8 data)
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400174{
Márton Németh86dae012008-01-23 22:33:06 -0500175 pr_debug(PREFIX "<--- data = 0x%2.2x\n", data);
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400176 outb(data, ec->data_addr);
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400177}
178
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400179static int ec_transaction_done(struct acpi_ec *ec)
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400180{
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400181 unsigned long flags;
182 int ret = 0;
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400183 spin_lock_irqsave(&ec->curr_lock, flags);
Alexey Starikovskiydd15f8c2008-11-08 21:42:30 +0300184 if (!ec->curr || ec->curr->done)
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400185 ret = 1;
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400186 spin_unlock_irqrestore(&ec->curr_lock, flags);
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400187 return ret;
188}
Denis M. Sadykov7c6db5e2006-09-26 19:50:33 +0400189
Alexey Starikovskiya2f93ae2008-11-12 01:40:19 +0300190static void start_transaction(struct acpi_ec *ec)
191{
192 ec->curr->irq_count = ec->curr->wi = ec->curr->ri = 0;
193 ec->curr->done = false;
194 acpi_ec_write_cmd(ec, ec->curr->command);
195}
196
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400197static void gpe_transaction(struct acpi_ec *ec, u8 status)
198{
199 unsigned long flags;
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400200 spin_lock_irqsave(&ec->curr_lock, flags);
201 if (!ec->curr)
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400202 goto unlock;
Alexey Starikovskiya2f93ae2008-11-12 01:40:19 +0300203 if (ec->curr->wlen > ec->curr->wi) {
204 if ((status & ACPI_EC_FLAG_IBF) == 0)
205 acpi_ec_write_data(ec,
206 ec->curr->wdata[ec->curr->wi++]);
207 else
Alexey Starikovskiydd15f8c2008-11-08 21:42:30 +0300208 goto err;
Alexey Starikovskiya2f93ae2008-11-12 01:40:19 +0300209 } else if (ec->curr->rlen > ec->curr->ri) {
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400210 if ((status & ACPI_EC_FLAG_OBF) == 1) {
Alexey Starikovskiya2f93ae2008-11-12 01:40:19 +0300211 ec->curr->rdata[ec->curr->ri++] = acpi_ec_read_data(ec);
212 if (ec->curr->rlen == ec->curr->ri)
Alexey Starikovskiydd15f8c2008-11-08 21:42:30 +0300213 ec->curr->done = true;
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400214 } else
Alexey Starikovskiydd15f8c2008-11-08 21:42:30 +0300215 goto err;
Alexey Starikovskiya2f93ae2008-11-12 01:40:19 +0300216 } else if (ec->curr->wlen == ec->curr->wi &&
217 (status & ACPI_EC_FLAG_IBF) == 0)
Alexey Starikovskiydd15f8c2008-11-08 21:42:30 +0300218 ec->curr->done = true;
219 goto unlock;
220err:
221 /* false interrupt, state didn't change */
Alexey Starikovskiy7b4d4692008-11-13 12:00:03 +0300222 if (in_interrupt())
223 ++ec->curr->irq_count;
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400224unlock:
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400225 spin_unlock_irqrestore(&ec->curr_lock, flags);
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400226}
227
228static int acpi_ec_wait(struct acpi_ec *ec)
229{
230 if (wait_event_timeout(ec->wait, ec_transaction_done(ec),
231 msecs_to_jiffies(ACPI_EC_DELAY)))
232 return 0;
Alexey Starikovskiya2f93ae2008-11-12 01:40:19 +0300233 /* try restart command if we get any false interrupts */
234 if (ec->curr->irq_count &&
235 (acpi_ec_read_status(ec) & ACPI_EC_FLAG_IBF) == 0) {
236 pr_debug(PREFIX "controller reset, restart transaction\n");
237 start_transaction(ec);
238 if (wait_event_timeout(ec->wait, ec_transaction_done(ec),
239 msecs_to_jiffies(ACPI_EC_DELAY)))
240 return 0;
241 }
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400242 /* missing GPEs, switch back to poll mode */
243 if (printk_ratelimit())
244 pr_info(PREFIX "missing confirmations, "
245 "switch off interrupt mode.\n");
246 set_bit(EC_FLAGS_NO_GPE, &ec->flags);
247 clear_bit(EC_FLAGS_GPE_MODE, &ec->flags);
248 return 1;
249}
250
251static void acpi_ec_gpe_query(void *ec_cxt);
252
253static int ec_check_sci(struct acpi_ec *ec, u8 state)
254{
255 if (state & ACPI_EC_FLAG_SCI) {
256 if (!test_and_set_bit(EC_FLAGS_QUERY_PENDING, &ec->flags))
257 return acpi_os_execute(OSL_EC_BURST_HANDLER,
258 acpi_ec_gpe_query, ec);
259 }
Denis M. Sadykov7c6db5e2006-09-26 19:50:33 +0400260 return 0;
261}
262
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400263static int ec_poll(struct acpi_ec *ec)
Alexey Starikovskiy845625c2008-03-21 17:07:03 +0300264{
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400265 unsigned long delay = jiffies + msecs_to_jiffies(ACPI_EC_DELAY);
Alexey Starikovskiy1cfe62c2008-10-28 00:35:30 +0300266 udelay(ACPI_EC_UDELAY);
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400267 while (time_before(jiffies, delay)) {
268 gpe_transaction(ec, acpi_ec_read_status(ec));
Alexey Starikovskiy1cfe62c2008-10-28 00:35:30 +0300269 udelay(ACPI_EC_UDELAY);
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400270 if (ec_transaction_done(ec))
Zhao Yakui9d699ed2008-08-11 10:33:31 +0800271 return 0;
Alexey Starikovskiyaf3fd142006-12-07 18:42:16 +0300272 }
Alexey Starikovskiyb77d81b2008-03-21 17:07:15 +0300273 return -ETIME;
Dmitry Torokhov451566f2005-03-19 01:10:05 -0500274}
275
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400276static int acpi_ec_transaction_unlocked(struct acpi_ec *ec,
277 struct transaction *t,
Lennart Poettering00eb43a2007-05-04 14:16:19 +0200278 int force_poll)
Lennart Poetteringd7a76e42006-09-05 12:12:24 -0400279{
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400280 unsigned long tmp;
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400281 int ret = 0;
Márton Németh3ebe08a2007-11-21 03:23:26 +0300282 pr_debug(PREFIX "transaction start\n");
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400283 /* disable GPE during transaction if storm is detected */
284 if (test_bit(EC_FLAGS_GPE_STORM, &ec->flags)) {
285 clear_bit(EC_FLAGS_GPE_MODE, &ec->flags);
Alexey Starikovskiy0b7084a2008-10-25 21:48:46 +0400286 acpi_disable_gpe(NULL, ec->gpe);
Denis M. Sadykov3576cf62006-09-26 19:50:33 +0400287 }
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400288 /* start transaction */
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400289 spin_lock_irqsave(&ec->curr_lock, tmp);
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400290 /* following two actions should be kept atomic */
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400291 ec->curr = t;
Alexey Starikovskiya2f93ae2008-11-12 01:40:19 +0300292 start_transaction(ec);
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400293 if (ec->curr->command == ACPI_EC_COMMAND_QUERY)
Alexey Starikovskiy080e4122007-10-22 14:18:30 +0400294 clear_bit(EC_FLAGS_QUERY_PENDING, &ec->flags);
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400295 spin_unlock_irqrestore(&ec->curr_lock, tmp);
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400296 /* if we selected poll mode or failed in GPE-mode do a poll loop */
297 if (force_poll ||
298 !test_bit(EC_FLAGS_GPE_MODE, &ec->flags) ||
299 acpi_ec_wait(ec))
300 ret = ec_poll(ec);
Márton Németh3ebe08a2007-11-21 03:23:26 +0300301 pr_debug(PREFIX "transaction end\n");
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400302 spin_lock_irqsave(&ec->curr_lock, tmp);
303 ec->curr = NULL;
304 spin_unlock_irqrestore(&ec->curr_lock, tmp);
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400305 if (test_bit(EC_FLAGS_GPE_STORM, &ec->flags)) {
306 /* check if we received SCI during transaction */
307 ec_check_sci(ec, acpi_ec_read_status(ec));
308 /* it is safe to enable GPE outside of transaction */
Alexey Starikovskiy0b7084a2008-10-25 21:48:46 +0400309 acpi_enable_gpe(NULL, ec->gpe);
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400310 } else if (test_bit(EC_FLAGS_GPE_MODE, &ec->flags) &&
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400311 t->irq_count > ACPI_EC_STORM_THRESHOLD) {
Alan Jenkinsf8248432008-11-01 11:05:26 +0000312 pr_info(PREFIX "GPE storm detected, "
313 "transactions will use polling mode\n");
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400314 set_bit(EC_FLAGS_GPE_STORM, &ec->flags);
315 }
316 return ret;
Lennart Poetteringd7a76e42006-09-05 12:12:24 -0400317}
318
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400319static int ec_check_ibf0(struct acpi_ec *ec)
320{
321 u8 status = acpi_ec_read_status(ec);
322 return (status & ACPI_EC_FLAG_IBF) == 0;
Lennart Poetteringd7a76e42006-09-05 12:12:24 -0400323}
324
Alexey Starikovskiyc0ff1772008-10-16 02:02:33 +0400325static int ec_wait_ibf0(struct acpi_ec *ec)
326{
327 unsigned long delay = jiffies + msecs_to_jiffies(ACPI_EC_DELAY);
328 /* interrupt wait manually if GPE mode is not active */
329 unsigned long timeout = test_bit(EC_FLAGS_GPE_MODE, &ec->flags) ?
330 msecs_to_jiffies(ACPI_EC_DELAY) : msecs_to_jiffies(1);
331 while (time_before(jiffies, delay))
332 if (wait_event_timeout(ec->wait, ec_check_ibf0(ec), timeout))
333 return 0;
334 return -ETIME;
335}
336
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400337static int acpi_ec_transaction(struct acpi_ec *ec, struct transaction *t,
Lennart Poettering00eb43a2007-05-04 14:16:19 +0200338 int force_poll)
Luming Yu45bea152005-07-23 04:08:00 -0400339{
Lennart Poetteringd7a76e42006-09-05 12:12:24 -0400340 int status;
Len Brown50526df2005-08-11 17:32:05 -0400341 u32 glk;
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400342 if (!ec || (!t) || (t->wlen && !t->wdata) || (t->rlen && !t->rdata))
Patrick Mocheld550d982006-06-27 00:41:40 -0400343 return -EINVAL;
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400344 if (t->rdata)
345 memset(t->rdata, 0, t->rlen);
Alexey Starikovskiy523953b2006-12-07 18:42:17 +0300346 mutex_lock(&ec->lock);
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400347 if (ec->global_lock) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 status = acpi_acquire_global_lock(ACPI_EC_UDELAY_GLK, &glk);
Alexey Starikovskiyc24e9122007-02-15 23:16:18 +0300349 if (ACPI_FAILURE(status)) {
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400350 status = -ENODEV;
351 goto unlock;
Alexey Starikovskiyc24e9122007-02-15 23:16:18 +0300352 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 }
Alexey Starikovskiyc0ff1772008-10-16 02:02:33 +0400354 if (ec_wait_ibf0(ec)) {
Márton Németh3ebe08a2007-11-21 03:23:26 +0300355 pr_err(PREFIX "input buffer is not empty, "
356 "aborting transaction\n");
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400357 status = -ETIME;
Dmitry Torokhov451566f2005-03-19 01:10:05 -0500358 goto end;
Luming Yu716e0842005-08-10 01:40:00 -0400359 }
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400360 status = acpi_ec_transaction_unlocked(ec, t, force_poll);
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400361end:
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400362 if (ec->global_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 acpi_release_global_lock(glk);
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400364unlock:
Alexey Starikovskiy523953b2006-12-07 18:42:17 +0300365 mutex_unlock(&ec->lock);
Patrick Mocheld550d982006-06-27 00:41:40 -0400366 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367}
368
Alexey Starikovskiyc45aac42007-03-07 22:28:00 +0300369/*
370 * Note: samsung nv5000 doesn't work with ec burst mode.
371 * http://bugzilla.kernel.org/show_bug.cgi?id=4980
372 */
373int acpi_ec_burst_enable(struct acpi_ec *ec)
374{
375 u8 d;
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400376 struct transaction t = {.command = ACPI_EC_BURST_ENABLE,
377 .wdata = NULL, .rdata = &d,
378 .wlen = 0, .rlen = 1};
379
380 return acpi_ec_transaction(ec, &t, 0);
Alexey Starikovskiyc45aac42007-03-07 22:28:00 +0300381}
382
383int acpi_ec_burst_disable(struct acpi_ec *ec)
384{
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400385 struct transaction t = {.command = ACPI_EC_BURST_DISABLE,
386 .wdata = NULL, .rdata = NULL,
387 .wlen = 0, .rlen = 0};
388
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400389 return (acpi_ec_read_status(ec) & ACPI_EC_FLAG_BURST) ?
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400390 acpi_ec_transaction(ec, &t, 0) : 0;
Alexey Starikovskiyc45aac42007-03-07 22:28:00 +0300391}
392
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300393static int acpi_ec_read(struct acpi_ec *ec, u8 address, u8 * data)
Denis M. Sadykov3576cf62006-09-26 19:50:33 +0400394{
395 int result;
396 u8 d;
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400397 struct transaction t = {.command = ACPI_EC_COMMAND_READ,
398 .wdata = &address, .rdata = &d,
399 .wlen = 1, .rlen = 1};
Denis M. Sadykov3576cf62006-09-26 19:50:33 +0400400
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400401 result = acpi_ec_transaction(ec, &t, 0);
Denis M. Sadykov3576cf62006-09-26 19:50:33 +0400402 *data = d;
403 return result;
404}
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400405
Denis M. Sadykov3576cf62006-09-26 19:50:33 +0400406static int acpi_ec_write(struct acpi_ec *ec, u8 address, u8 data)
407{
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300408 u8 wdata[2] = { address, data };
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400409 struct transaction t = {.command = ACPI_EC_COMMAND_WRITE,
410 .wdata = wdata, .rdata = NULL,
411 .wlen = 2, .rlen = 0};
412
413 return acpi_ec_transaction(ec, &t, 0);
Denis M. Sadykov3576cf62006-09-26 19:50:33 +0400414}
415
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416/*
417 * Externally callable EC access functions. For now, assume 1 EC only
418 */
Alexey Starikovskiyc45aac42007-03-07 22:28:00 +0300419int ec_burst_enable(void)
420{
Alexey Starikovskiyc45aac42007-03-07 22:28:00 +0300421 if (!first_ec)
422 return -ENODEV;
Alexey Starikovskiyd0338792007-03-07 22:28:00 +0300423 return acpi_ec_burst_enable(first_ec);
Alexey Starikovskiyc45aac42007-03-07 22:28:00 +0300424}
425
426EXPORT_SYMBOL(ec_burst_enable);
427
428int ec_burst_disable(void)
429{
Alexey Starikovskiyc45aac42007-03-07 22:28:00 +0300430 if (!first_ec)
431 return -ENODEV;
Alexey Starikovskiyd0338792007-03-07 22:28:00 +0300432 return acpi_ec_burst_disable(first_ec);
Alexey Starikovskiyc45aac42007-03-07 22:28:00 +0300433}
434
435EXPORT_SYMBOL(ec_burst_disable);
436
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300437int ec_read(u8 addr, u8 * val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 int err;
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400440 u8 temp_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
442 if (!first_ec)
443 return -ENODEV;
444
Alexey Starikovskiyd0338792007-03-07 22:28:00 +0300445 err = acpi_ec_read(first_ec, addr, &temp_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
447 if (!err) {
448 *val = temp_data;
449 return 0;
Len Brown50526df2005-08-11 17:32:05 -0400450 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 return err;
452}
Len Brown50526df2005-08-11 17:32:05 -0400453
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454EXPORT_SYMBOL(ec_read);
455
Len Brown50526df2005-08-11 17:32:05 -0400456int ec_write(u8 addr, u8 val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 int err;
459
460 if (!first_ec)
461 return -ENODEV;
462
Alexey Starikovskiyd0338792007-03-07 22:28:00 +0300463 err = acpi_ec_write(first_ec, addr, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
465 return err;
466}
Len Brown50526df2005-08-11 17:32:05 -0400467
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468EXPORT_SYMBOL(ec_write);
469
Randy Dunlap616362d2006-10-27 01:47:34 -0400470int ec_transaction(u8 command,
Alexey Starikovskiy9e197212007-03-07 18:29:35 -0500471 const u8 * wdata, unsigned wdata_len,
Lennart Poettering00eb43a2007-05-04 14:16:19 +0200472 u8 * rdata, unsigned rdata_len,
473 int force_poll)
Luming Yu45bea152005-07-23 04:08:00 -0400474{
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400475 struct transaction t = {.command = command,
476 .wdata = wdata, .rdata = rdata,
477 .wlen = wdata_len, .rlen = rdata_len};
Lennart Poetteringd7a76e42006-09-05 12:12:24 -0400478 if (!first_ec)
479 return -ENODEV;
480
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400481 return acpi_ec_transaction(first_ec, &t, force_poll);
Luming Yu45bea152005-07-23 04:08:00 -0400482}
Luming Yu45bea152005-07-23 04:08:00 -0400483
Lennart Poetteringab9e43c2006-10-03 22:49:00 -0400484EXPORT_SYMBOL(ec_transaction);
485
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300486static int acpi_ec_query(struct acpi_ec *ec, u8 * data)
Denis M. Sadykov3576cf62006-09-26 19:50:33 +0400487{
488 int result;
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300489 u8 d;
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400490 struct transaction t = {.command = ACPI_EC_COMMAND_QUERY,
491 .wdata = NULL, .rdata = &d,
492 .wlen = 0, .rlen = 1};
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300493 if (!ec || !data)
494 return -EINVAL;
Luming Yu45bea152005-07-23 04:08:00 -0400495
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300496 /*
497 * Query the EC to find out which _Qxx method we need to evaluate.
498 * Note that successful completion of the query causes the ACPI_EC_SCI
499 * bit to be cleared (and thus clearing the interrupt source).
500 */
Luming Yu45bea152005-07-23 04:08:00 -0400501
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400502 result = acpi_ec_transaction(ec, &t, 0);
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300503 if (result)
504 return result;
Luming Yu45bea152005-07-23 04:08:00 -0400505
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300506 if (!d)
507 return -ENODATA;
Luming Yu45bea152005-07-23 04:08:00 -0400508
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300509 *data = d;
510 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511}
512
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513/* --------------------------------------------------------------------------
514 Event Management
515 -------------------------------------------------------------------------- */
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400516int acpi_ec_add_query_handler(struct acpi_ec *ec, u8 query_bit,
517 acpi_handle handle, acpi_ec_query_func func,
518 void *data)
519{
520 struct acpi_ec_query_handler *handler =
521 kzalloc(sizeof(struct acpi_ec_query_handler), GFP_KERNEL);
522 if (!handler)
523 return -ENOMEM;
524
525 handler->query_bit = query_bit;
526 handler->handle = handle;
527 handler->func = func;
528 handler->data = data;
529 mutex_lock(&ec->lock);
Alexey Starikovskiy30c08572007-09-26 19:43:22 +0400530 list_add(&handler->node, &ec->list);
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400531 mutex_unlock(&ec->lock);
532 return 0;
533}
534
535EXPORT_SYMBOL_GPL(acpi_ec_add_query_handler);
536
537void acpi_ec_remove_query_handler(struct acpi_ec *ec, u8 query_bit)
538{
Adrian Bunk1544fdb2007-10-24 18:26:00 +0200539 struct acpi_ec_query_handler *handler, *tmp;
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400540 mutex_lock(&ec->lock);
Adrian Bunk1544fdb2007-10-24 18:26:00 +0200541 list_for_each_entry_safe(handler, tmp, &ec->list, node) {
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400542 if (query_bit == handler->query_bit) {
543 list_del(&handler->node);
544 kfree(handler);
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400545 }
546 }
547 mutex_unlock(&ec->lock);
548}
549
550EXPORT_SYMBOL_GPL(acpi_ec_remove_query_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551
Len Brown50526df2005-08-11 17:32:05 -0400552static void acpi_ec_gpe_query(void *ec_cxt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553{
Alexey Starikovskiy3d02b902007-03-07 22:28:00 +0300554 struct acpi_ec *ec = ec_cxt;
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400555 u8 value = 0;
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400556 struct acpi_ec_query_handler *handler, copy;
Luming Yu45bea152005-07-23 04:08:00 -0400557
Alexey Starikovskiy5d0c2882006-12-07 18:42:16 +0300558 if (!ec || acpi_ec_query(ec, &value))
Alexey Starikovskiye41334c2006-12-07 18:42:16 +0300559 return;
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400560 mutex_lock(&ec->lock);
561 list_for_each_entry(handler, &ec->list, node) {
562 if (value == handler->query_bit) {
563 /* have custom handler for this bit */
564 memcpy(&copy, handler, sizeof(copy));
565 mutex_unlock(&ec->lock);
566 if (copy.func) {
567 copy.func(copy.data);
568 } else if (copy.handle) {
569 acpi_evaluate_object(copy.handle, NULL, NULL, NULL);
570 }
571 return;
572 }
573 }
574 mutex_unlock(&ec->lock);
Luming Yu45bea152005-07-23 04:08:00 -0400575}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
Len Brown50526df2005-08-11 17:32:05 -0400577static u32 acpi_ec_gpe_handler(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578{
Alexey Starikovskiy3d02b902007-03-07 22:28:00 +0300579 struct acpi_ec *ec = data;
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400580 u8 status;
Lennart Poettering00eb43a2007-05-04 14:16:19 +0200581
Márton Németh3ebe08a2007-11-21 03:23:26 +0300582 pr_debug(PREFIX "~~~> interrupt\n");
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400583 status = acpi_ec_read_status(ec);
584
Alexey Starikovskiy85179342008-11-11 12:54:11 +0300585 if (test_bit(EC_FLAGS_GPE_MODE, &ec->flags)) {
586 gpe_transaction(ec, status);
587 if (ec_transaction_done(ec) &&
588 (status & ACPI_EC_FLAG_IBF) == 0)
589 wake_up(&ec->wait);
590 }
Dmitry Torokhov451566f2005-03-19 01:10:05 -0500591
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400592 ec_check_sci(ec, status);
593 if (!test_bit(EC_FLAGS_GPE_MODE, &ec->flags) &&
594 !test_bit(EC_FLAGS_NO_GPE, &ec->flags)) {
Alexey Starikovskiy95b937e2007-10-22 14:19:03 +0400595 /* this is non-query, must be confirmation */
Alan Jenkinsf8248432008-11-01 11:05:26 +0000596 if (!test_bit(EC_FLAGS_GPE_STORM, &ec->flags)) {
597 if (printk_ratelimit())
598 pr_info(PREFIX "non-query interrupt received,"
599 " switching to interrupt mode\n");
600 } else {
601 /* hush, STORM switches the mode every transaction */
602 pr_debug(PREFIX "non-query interrupt received,"
Márton Németh3ebe08a2007-11-21 03:23:26 +0300603 " switching to interrupt mode\n");
Alan Jenkinsf8248432008-11-01 11:05:26 +0000604 }
Alexey Starikovskiy78439322007-10-22 14:18:43 +0400605 set_bit(EC_FLAGS_GPE_MODE, &ec->flags);
Alexey Starikovskiy95b937e2007-10-22 14:19:03 +0400606 }
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400607 return ACPI_INTERRUPT_HANDLED;
Alexey Starikovskiy845625c2008-03-21 17:07:03 +0300608}
609
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610/* --------------------------------------------------------------------------
611 Address Space Management
612 -------------------------------------------------------------------------- */
613
614static acpi_status
Alexey Starikovskiy5b7734b2007-05-29 16:42:52 +0400615acpi_ec_space_handler(u32 function, acpi_physical_address address,
616 u32 bits, acpi_integer *value,
Len Brown50526df2005-08-11 17:32:05 -0400617 void *handler_context, void *region_context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618{
Alexey Starikovskiy3d02b902007-03-07 22:28:00 +0300619 struct acpi_ec *ec = handler_context;
Alexey Starikovskiy3e71a872008-01-11 02:42:51 +0300620 int result = 0, i;
Alexey Starikovskiy5b7734b2007-05-29 16:42:52 +0400621 u8 temp = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 if ((address > 0xFF) || !value || !handler_context)
Patrick Mocheld550d982006-06-27 00:41:40 -0400624 return AE_BAD_PARAMETER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
Alexey Starikovskiy5b7734b2007-05-29 16:42:52 +0400626 if (function != ACPI_READ && function != ACPI_WRITE)
Patrick Mocheld550d982006-06-27 00:41:40 -0400627 return AE_BAD_PARAMETER;
Alexey Starikovskiy5b7734b2007-05-29 16:42:52 +0400628
629 if (bits != 8 && acpi_strict)
630 return AE_BAD_PARAMETER;
631
Alexey Starikovskiyb3b233c2008-01-11 02:42:57 +0300632 acpi_ec_burst_enable(ec);
633
Alexey Starikovskiy3e71a872008-01-11 02:42:51 +0300634 if (function == ACPI_READ) {
635 result = acpi_ec_read(ec, address, &temp);
636 *value = temp;
637 } else {
638 temp = 0xff & (*value);
639 result = acpi_ec_write(ec, address, temp);
640 }
641
642 for (i = 8; unlikely(bits - i > 0); i += 8) {
643 ++address;
Alexey Starikovskiy5b7734b2007-05-29 16:42:52 +0400644 if (function == ACPI_READ) {
645 result = acpi_ec_read(ec, address, &temp);
646 (*value) |= ((acpi_integer)temp) << i;
647 } else {
648 temp = 0xff & ((*value) >> i);
649 result = acpi_ec_write(ec, address, temp);
650 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 }
652
Alexey Starikovskiyb3b233c2008-01-11 02:42:57 +0300653 acpi_ec_burst_disable(ec);
654
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 switch (result) {
656 case -EINVAL:
Patrick Mocheld550d982006-06-27 00:41:40 -0400657 return AE_BAD_PARAMETER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 break;
659 case -ENODEV:
Patrick Mocheld550d982006-06-27 00:41:40 -0400660 return AE_NOT_FOUND;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 break;
662 case -ETIME:
Patrick Mocheld550d982006-06-27 00:41:40 -0400663 return AE_TIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 break;
665 default:
Patrick Mocheld550d982006-06-27 00:41:40 -0400666 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668}
669
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670/* --------------------------------------------------------------------------
671 FS Interface (/proc)
672 -------------------------------------------------------------------------- */
673
Len Brown50526df2005-08-11 17:32:05 -0400674static struct proc_dir_entry *acpi_ec_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
Len Brown50526df2005-08-11 17:32:05 -0400676static int acpi_ec_read_info(struct seq_file *seq, void *offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677{
Alexey Starikovskiy3d02b902007-03-07 22:28:00 +0300678 struct acpi_ec *ec = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 if (!ec)
681 goto end;
682
Alexey Starikovskiy01f22462007-03-07 22:28:00 +0300683 seq_printf(seq, "gpe:\t\t\t0x%02x\n", (u32) ec->gpe);
684 seq_printf(seq, "ports:\t\t\t0x%02x, 0x%02x\n",
685 (unsigned)ec->command_addr, (unsigned)ec->data_addr);
686 seq_printf(seq, "use global lock:\t%s\n",
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400687 ec->global_lock ? "yes" : "no");
Len Brown50526df2005-08-11 17:32:05 -0400688 end:
Patrick Mocheld550d982006-06-27 00:41:40 -0400689 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690}
691
692static int acpi_ec_info_open_fs(struct inode *inode, struct file *file)
693{
694 return single_open(file, acpi_ec_read_info, PDE(inode)->data);
695}
696
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400697static struct file_operations acpi_ec_info_ops = {
Len Brown50526df2005-08-11 17:32:05 -0400698 .open = acpi_ec_info_open_fs,
699 .read = seq_read,
700 .llseek = seq_lseek,
701 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 .owner = THIS_MODULE,
703};
704
Len Brown50526df2005-08-11 17:32:05 -0400705static int acpi_ec_add_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706{
Len Brown50526df2005-08-11 17:32:05 -0400707 struct proc_dir_entry *entry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 if (!acpi_device_dir(device)) {
710 acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device),
Len Brown50526df2005-08-11 17:32:05 -0400711 acpi_ec_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 if (!acpi_device_dir(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400713 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 }
715
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700716 entry = proc_create_data(ACPI_EC_FILE_INFO, S_IRUGO,
717 acpi_device_dir(device),
718 &acpi_ec_info_ops, acpi_driver_data(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -0400720 return -ENODEV;
Patrick Mocheld550d982006-06-27 00:41:40 -0400721 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722}
723
Len Brown50526df2005-08-11 17:32:05 -0400724static int acpi_ec_remove_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
727 if (acpi_device_dir(device)) {
728 remove_proc_entry(ACPI_EC_FILE_INFO, acpi_device_dir(device));
729 remove_proc_entry(acpi_device_bid(device), acpi_ec_dir);
730 acpi_device_dir(device) = NULL;
731 }
732
Patrick Mocheld550d982006-06-27 00:41:40 -0400733 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734}
735
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736/* --------------------------------------------------------------------------
737 Driver Interface
738 -------------------------------------------------------------------------- */
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300739static acpi_status
740ec_parse_io_ports(struct acpi_resource *resource, void *context);
741
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300742static struct acpi_ec *make_acpi_ec(void)
743{
744 struct acpi_ec *ec = kzalloc(sizeof(struct acpi_ec), GFP_KERNEL);
745 if (!ec)
746 return NULL;
Alexey Starikovskiy080e4122007-10-22 14:18:30 +0400747 ec->flags = 1 << EC_FLAGS_QUERY_PENDING;
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300748 mutex_init(&ec->lock);
749 init_waitqueue_head(&ec->wait);
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400750 INIT_LIST_HEAD(&ec->list);
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400751 spin_lock_init(&ec->curr_lock);
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300752 return ec;
753}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400755static acpi_status
Alexey Starikovskiyc019b192007-08-14 01:03:42 -0400756acpi_ec_register_query_methods(acpi_handle handle, u32 level,
757 void *context, void **return_value)
758{
759 struct acpi_namespace_node *node = handle;
760 struct acpi_ec *ec = context;
761 int value = 0;
762 if (sscanf(node->name.ascii, "_Q%x", &value) == 1) {
763 acpi_ec_add_query_handler(ec, value, handle, NULL, NULL);
764 }
765 return AE_OK;
766}
767
768static acpi_status
Alexey Starikovskiycd8c93a2007-08-03 17:52:48 -0400769ec_parse_device(acpi_handle handle, u32 Level, void *context, void **retval)
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400770{
Alexey Starikovskiycd8c93a2007-08-03 17:52:48 -0400771 acpi_status status;
Alexey Starikovskiyd21cf3c2008-11-03 14:26:40 -0500772 unsigned long long tmp = 0;
Alexey Starikovskiycd8c93a2007-08-03 17:52:48 -0400773
774 struct acpi_ec *ec = context;
775 status = acpi_walk_resources(handle, METHOD_NAME__CRS,
776 ec_parse_io_ports, ec);
777 if (ACPI_FAILURE(status))
778 return status;
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400779
780 /* Get GPE bit assignment (EC events). */
781 /* TODO: Add support for _GPE returning a package */
Matthew Wilcox27663c52008-10-10 02:22:59 -0400782 status = acpi_evaluate_integer(handle, "_GPE", NULL, &tmp);
Alexey Starikovskiycd8c93a2007-08-03 17:52:48 -0400783 if (ACPI_FAILURE(status))
784 return status;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400785 ec->gpe = tmp;
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400786 /* Use the global lock for all EC transactions? */
Alexey Starikovskiyd21cf3c2008-11-03 14:26:40 -0500787 tmp = 0;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400788 acpi_evaluate_integer(handle, "_GLK", NULL, &tmp);
789 ec->global_lock = tmp;
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400790 ec->handle = handle;
Alexey Starikovskiycd8c93a2007-08-03 17:52:48 -0400791 return AE_CTRL_TERMINATE;
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400792}
793
Alexey Starikovskiy4c611062007-09-05 19:56:38 -0400794static void ec_remove_handlers(struct acpi_ec *ec)
795{
796 if (ACPI_FAILURE(acpi_remove_address_space_handler(ec->handle,
797 ACPI_ADR_SPACE_EC, &acpi_ec_space_handler)))
Márton Németh3ebe08a2007-11-21 03:23:26 +0300798 pr_err(PREFIX "failed to remove space handler\n");
Alexey Starikovskiy4c611062007-09-05 19:56:38 -0400799 if (ACPI_FAILURE(acpi_remove_gpe_handler(NULL, ec->gpe,
800 &acpi_ec_gpe_handler)))
Márton Németh3ebe08a2007-11-21 03:23:26 +0300801 pr_err(PREFIX "failed to remove gpe handler\n");
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400802 clear_bit(EC_FLAGS_HANDLERS_INSTALLED, &ec->flags);
Alexey Starikovskiy4c611062007-09-05 19:56:38 -0400803}
804
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400805static int acpi_ec_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806{
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400807 struct acpi_ec *ec = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400810 return -EINVAL;
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300811 strcpy(acpi_device_name(device), ACPI_EC_DEVICE_NAME);
812 strcpy(acpi_device_class(device), ACPI_EC_CLASS);
813
Alexey Starikovskiy4c611062007-09-05 19:56:38 -0400814 /* Check for boot EC */
Alexey Starikovskiyce52ddf2008-03-24 23:22:36 +0300815 if (boot_ec &&
816 (boot_ec->handle == device->handle ||
817 boot_ec->handle == ACPI_ROOT_OBJECT)) {
818 ec = boot_ec;
819 boot_ec = NULL;
820 } else {
821 ec = make_acpi_ec();
822 if (!ec)
823 return -ENOMEM;
824 if (ec_parse_device(device->handle, 0, ec, NULL) !=
825 AE_CTRL_TERMINATE) {
826 kfree(ec);
827 return -EINVAL;
Alexey Starikovskiy4c611062007-09-05 19:56:38 -0400828 }
829 }
830
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300831 ec->handle = device->handle;
Alexey Starikovskiyce52ddf2008-03-24 23:22:36 +0300832
833 /* Find and register all query methods */
834 acpi_walk_namespace(ACPI_TYPE_METHOD, ec->handle, 1,
835 acpi_ec_register_query_methods, ec, NULL);
836
Alexey Starikovskiy4c611062007-09-05 19:56:38 -0400837 if (!first_ec)
838 first_ec = ec;
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700839 device->driver_data = ec;
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300840 acpi_ec_add_fs(device);
Márton Németh3ebe08a2007-11-21 03:23:26 +0300841 pr_info(PREFIX "GPE = 0x%lx, I/O: command/status = 0x%lx, data = 0x%lx\n",
Alexey Starikovskiy4c611062007-09-05 19:56:38 -0400842 ec->gpe, ec->command_addr, ec->data_addr);
Márton Németh3ebe08a2007-11-21 03:23:26 +0300843 pr_info(PREFIX "driver started in %s mode\n",
Alexey Starikovskiy95b937e2007-10-22 14:19:03 +0400844 (test_bit(EC_FLAGS_GPE_MODE, &ec->flags))?"interrupt":"poll");
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300845 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846}
847
Len Brown50526df2005-08-11 17:32:05 -0400848static int acpi_ec_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849{
Alexey Starikovskiy01f22462007-03-07 22:28:00 +0300850 struct acpi_ec *ec;
Adrian Bunk07ddf762007-07-29 17:00:37 +0200851 struct acpi_ec_query_handler *handler, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400854 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855
856 ec = acpi_driver_data(device);
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400857 mutex_lock(&ec->lock);
Adrian Bunk07ddf762007-07-29 17:00:37 +0200858 list_for_each_entry_safe(handler, tmp, &ec->list, node) {
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400859 list_del(&handler->node);
860 kfree(handler);
861 }
862 mutex_unlock(&ec->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 acpi_ec_remove_fs(device);
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700864 device->driver_data = NULL;
Alexey Starikovskiyd0338792007-03-07 22:28:00 +0300865 if (ec == first_ec)
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300866 first_ec = NULL;
Alexey Starikovskiy4c611062007-09-05 19:56:38 -0400867 kfree(ec);
Patrick Mocheld550d982006-06-27 00:41:40 -0400868 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869}
870
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871static acpi_status
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300872ec_parse_io_ports(struct acpi_resource *resource, void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873{
Alexey Starikovskiy3d02b902007-03-07 22:28:00 +0300874 struct acpi_ec *ec = context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875
Alexey Starikovskiy01f22462007-03-07 22:28:00 +0300876 if (resource->type != ACPI_RESOURCE_TYPE_IO)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878
879 /*
880 * The first address region returned is the data port, and
881 * the second address region returned is the status/command
882 * port.
883 */
Alexey Starikovskiy01f22462007-03-07 22:28:00 +0300884 if (ec->data_addr == 0)
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400885 ec->data_addr = resource->data.io.minimum;
Alexey Starikovskiy01f22462007-03-07 22:28:00 +0300886 else if (ec->command_addr == 0)
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400887 ec->command_addr = resource->data.io.minimum;
Alexey Starikovskiy01f22462007-03-07 22:28:00 +0300888 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 return AE_CTRL_TERMINATE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 return AE_OK;
892}
893
Alexey Starikovskiye8284322007-03-07 22:28:00 +0300894static int ec_install_handlers(struct acpi_ec *ec)
895{
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300896 acpi_status status;
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400897 if (test_bit(EC_FLAGS_HANDLERS_INSTALLED, &ec->flags))
Alexey Starikovskiy4c611062007-09-05 19:56:38 -0400898 return 0;
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300899 status = acpi_install_gpe_handler(NULL, ec->gpe,
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400900 ACPI_GPE_EDGE_TRIGGERED,
901 &acpi_ec_gpe_handler, ec);
Alexey Starikovskiye8284322007-03-07 22:28:00 +0300902 if (ACPI_FAILURE(status))
903 return -ENODEV;
904 acpi_set_gpe_type(NULL, ec->gpe, ACPI_GPE_TYPE_RUNTIME);
Alexey Starikovskiy0b7084a2008-10-25 21:48:46 +0400905 acpi_enable_gpe(NULL, ec->gpe);
Alexey Starikovskiye8284322007-03-07 22:28:00 +0300906 status = acpi_install_address_space_handler(ec->handle,
907 ACPI_ADR_SPACE_EC,
908 &acpi_ec_space_handler,
Alexey Starikovskiy6d9e1122008-03-24 23:22:29 +0300909 NULL, ec);
Alexey Starikovskiye8284322007-03-07 22:28:00 +0300910 if (ACPI_FAILURE(status)) {
Zhao Yakui20edd742008-10-17 02:02:44 -0400911 if (status == AE_NOT_FOUND) {
912 /*
913 * Maybe OS fails in evaluating the _REG object.
914 * The AE_NOT_FOUND error will be ignored and OS
915 * continue to initialize EC.
916 */
917 printk(KERN_ERR "Fail in evaluating the _REG object"
918 " of EC device. Broken bios is suspected.\n");
919 } else {
920 acpi_remove_gpe_handler(NULL, ec->gpe,
921 &acpi_ec_gpe_handler);
922 return -ENODEV;
923 }
Alexey Starikovskiye8284322007-03-07 22:28:00 +0300924 }
925
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400926 set_bit(EC_FLAGS_HANDLERS_INSTALLED, &ec->flags);
Alexey Starikovskiye8284322007-03-07 22:28:00 +0300927 return 0;
928}
929
Len Brown50526df2005-08-11 17:32:05 -0400930static int acpi_ec_start(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931{
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300932 struct acpi_ec *ec;
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400933 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400936 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937
938 ec = acpi_driver_data(device);
939
940 if (!ec)
Patrick Mocheld550d982006-06-27 00:41:40 -0400941 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942
Alexey Starikovskiy4c611062007-09-05 19:56:38 -0400943 ret = ec_install_handlers(ec);
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300944
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400945 /* EC is fully operational, allow queries */
Alexey Starikovskiy080e4122007-10-22 14:18:30 +0400946 clear_bit(EC_FLAGS_QUERY_PENDING, &ec->flags);
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400947 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948}
949
Len Brown50526df2005-08-11 17:32:05 -0400950static int acpi_ec_stop(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951{
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300952 struct acpi_ec *ec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400954 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 ec = acpi_driver_data(device);
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300956 if (!ec)
957 return -EINVAL;
Alexey Starikovskiy4c611062007-09-05 19:56:38 -0400958 ec_remove_handlers(ec);
Alexey Starikovskiyf9319f92007-08-24 08:10:11 +0400959
Patrick Mocheld550d982006-06-27 00:41:40 -0400960 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961}
962
Alexey Starikovskiyc04209a2008-01-01 14:12:55 -0500963int __init acpi_boot_ec_enable(void)
964{
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400965 if (!boot_ec || test_bit(EC_FLAGS_HANDLERS_INSTALLED, &boot_ec->flags))
Alexey Starikovskiyc04209a2008-01-01 14:12:55 -0500966 return 0;
967 if (!ec_install_handlers(boot_ec)) {
968 first_ec = boot_ec;
969 return 0;
970 }
971 return -EFAULT;
972}
973
Alexey Starikovskiy223883b2008-03-21 17:07:21 +0300974static const struct acpi_device_id ec_device_ids[] = {
975 {"PNP0C09", 0},
976 {"", 0},
977};
978
Len Brown50526df2005-08-11 17:32:05 -0400979int __init acpi_ec_ecdt_probe(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980{
Len Brown50526df2005-08-11 17:32:05 -0400981 int ret;
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300982 acpi_status status;
983 struct acpi_table_ecdt *ecdt_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984
Alexey Starikovskiyd66d9692007-03-07 22:28:00 +0300985 boot_ec = make_acpi_ec();
986 if (!boot_ec)
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300987 return -ENOMEM;
988 /*
989 * Generate a boot ec context
990 */
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300991 status = acpi_get_table(ACPI_SIG_ECDT, 1,
992 (struct acpi_table_header **)&ecdt_ptr);
Alexey Starikovskiycd8c93a2007-08-03 17:52:48 -0400993 if (ACPI_SUCCESS(status)) {
Márton Németh3ebe08a2007-11-21 03:23:26 +0300994 pr_info(PREFIX "EC description table is found, configuring boot EC\n");
Alexey Starikovskiycd8c93a2007-08-03 17:52:48 -0400995 boot_ec->command_addr = ecdt_ptr->control.address;
996 boot_ec->data_addr = ecdt_ptr->data.address;
Zhao Yakui25008222008-08-12 10:40:10 +0800997 if (dmi_check_system(ec_dmi_table)) {
998 /*
999 * If the board falls into ec_dmi_table, it means
1000 * that ECDT table gives the incorrect command/status
1001 * & data I/O address. Just fix it.
1002 */
1003 boot_ec->data_addr = ecdt_ptr->control.address;
1004 boot_ec->command_addr = ecdt_ptr->data.address;
1005 }
Alexey Starikovskiycd8c93a2007-08-03 17:52:48 -04001006 boot_ec->gpe = ecdt_ptr->gpe;
Len Brown4af8e102008-03-11 00:27:16 -04001007 boot_ec->handle = ACPI_ROOT_OBJECT;
Alexey Starikovskiyce52ddf2008-03-24 23:22:36 +03001008 acpi_get_handle(ACPI_ROOT_OBJECT, ecdt_ptr->id, &boot_ec->handle);
Alexey Starikovskiycd8c93a2007-08-03 17:52:48 -04001009 } else {
Alexey Starikovskiy5870a8c2007-11-15 21:52:47 +03001010 /* This workaround is needed only on some broken machines,
1011 * which require early EC, but fail to provide ECDT */
1012 acpi_handle x;
Alexey Starikovskiycd8c93a2007-08-03 17:52:48 -04001013 printk(KERN_DEBUG PREFIX "Look up EC in DSDT\n");
1014 status = acpi_get_devices(ec_device_ids[0].id, ec_parse_device,
1015 boot_ec, NULL);
Alexey Starikovskiy2d8348b2007-08-31 09:05:26 +04001016 /* Check that acpi_get_devices actually find something */
1017 if (ACPI_FAILURE(status) || !boot_ec->handle)
Alexey Starikovskiycd8c93a2007-08-03 17:52:48 -04001018 goto error;
Alexey Starikovskiy5870a8c2007-11-15 21:52:47 +03001019 /* We really need to limit this workaround, the only ASUS,
1020 * which needs it, has fake EC._INI method, so use it as flag.
Alexey Starikovskiyc04209a2008-01-01 14:12:55 -05001021 * Keep boot_ec struct as it will be needed soon.
Alexey Starikovskiy5870a8c2007-11-15 21:52:47 +03001022 */
1023 if (ACPI_FAILURE(acpi_get_handle(boot_ec->handle, "_INI", &x)))
Alexey Starikovskiyc04209a2008-01-01 14:12:55 -05001024 return -ENODEV;
Alexey Starikovskiycd8c93a2007-08-03 17:52:48 -04001025 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026
Alexey Starikovskiyd66d9692007-03-07 22:28:00 +03001027 ret = ec_install_handlers(boot_ec);
Alexey Starikovskiyd0338792007-03-07 22:28:00 +03001028 if (!ret) {
1029 first_ec = boot_ec;
Alexey Starikovskiye8284322007-03-07 22:28:00 +03001030 return 0;
Alexey Starikovskiyd0338792007-03-07 22:28:00 +03001031 }
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +03001032 error:
Alexey Starikovskiyd66d9692007-03-07 22:28:00 +03001033 kfree(boot_ec);
1034 boot_ec = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 return -ENODEV;
1036}
1037
Alexey Starikovskiy223883b2008-03-21 17:07:21 +03001038static int acpi_ec_suspend(struct acpi_device *device, pm_message_t state)
1039{
1040 struct acpi_ec *ec = acpi_driver_data(device);
1041 /* Stop using GPE */
1042 set_bit(EC_FLAGS_NO_GPE, &ec->flags);
1043 clear_bit(EC_FLAGS_GPE_MODE, &ec->flags);
Alexey Starikovskiy0b7084a2008-10-25 21:48:46 +04001044 acpi_disable_gpe(NULL, ec->gpe);
Alexey Starikovskiy223883b2008-03-21 17:07:21 +03001045 return 0;
1046}
1047
1048static int acpi_ec_resume(struct acpi_device *device)
1049{
1050 struct acpi_ec *ec = acpi_driver_data(device);
1051 /* Enable use of GPE back */
1052 clear_bit(EC_FLAGS_NO_GPE, &ec->flags);
Alexey Starikovskiy0b7084a2008-10-25 21:48:46 +04001053 acpi_enable_gpe(NULL, ec->gpe);
Alexey Starikovskiy223883b2008-03-21 17:07:21 +03001054 return 0;
1055}
1056
1057static struct acpi_driver acpi_ec_driver = {
1058 .name = "ec",
1059 .class = ACPI_EC_CLASS,
1060 .ids = ec_device_ids,
1061 .ops = {
1062 .add = acpi_ec_add,
1063 .remove = acpi_ec_remove,
1064 .start = acpi_ec_start,
1065 .stop = acpi_ec_stop,
1066 .suspend = acpi_ec_suspend,
1067 .resume = acpi_ec_resume,
1068 },
1069};
1070
Len Brown50526df2005-08-11 17:32:05 -04001071static int __init acpi_ec_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072{
Len Brown50526df2005-08-11 17:32:05 -04001073 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 if (acpi_disabled)
Patrick Mocheld550d982006-06-27 00:41:40 -04001076 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077
1078 acpi_ec_dir = proc_mkdir(ACPI_EC_CLASS, acpi_root_dir);
1079 if (!acpi_ec_dir)
Patrick Mocheld550d982006-06-27 00:41:40 -04001080 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081
1082 /* Now register the driver for the EC */
1083 result = acpi_bus_register_driver(&acpi_ec_driver);
1084 if (result < 0) {
1085 remove_proc_entry(ACPI_EC_CLASS, acpi_root_dir);
Patrick Mocheld550d982006-06-27 00:41:40 -04001086 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 }
1088
Patrick Mocheld550d982006-06-27 00:41:40 -04001089 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090}
1091
1092subsys_initcall(acpi_ec_init);
1093
1094/* EC driver currently not unloadable */
1095#if 0
Len Brown50526df2005-08-11 17:32:05 -04001096static void __exit acpi_ec_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098
1099 acpi_bus_unregister_driver(&acpi_ec_driver);
1100
1101 remove_proc_entry(ACPI_EC_CLASS, acpi_root_dir);
1102
Patrick Mocheld550d982006-06-27 00:41:40 -04001103 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104}
Alexey Starikovskiy78439322007-10-22 14:18:43 +04001105#endif /* 0 */