blob: f31291ba94d092ec3a9cc9b6a51fc0383ee1d56a [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>
Dmitry Torokhov451566f2005-03-19 01:10:05 -050037#include <linux/interrupt.h>
Alexey Starikovskiy837012e2007-05-29 16:43:02 +040038#include <linux/list.h>
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +040039#include <linux/spinlock.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090040#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <asm/io.h>
42#include <acpi/acpi_bus.h>
43#include <acpi/acpi_drivers.h>
Len Browneb27cae2009-07-06 23:40:19 -040044#include <linux/dmi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Thomas Renninger1195a092010-07-16 13:11:31 +020046#include "internal.h"
47
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#define ACPI_EC_CLASS "embedded_controller"
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#define ACPI_EC_DEVICE_NAME "Embedded Controller"
50#define ACPI_EC_FILE_INFO "info"
Alexey Starikovskiy837012e2007-05-29 16:43:02 +040051
Thomas Renninger1195a092010-07-16 13:11:31 +020052#undef PREFIX
Alexey Starikovskiyaf3fd142006-12-07 18:42:16 +030053#define PREFIX "ACPI: EC: "
Alexey Starikovskiy43509332007-05-29 16:42:57 +040054
Denis M. Sadykov703959d2006-09-26 19:50:33 +040055/* EC status register */
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#define ACPI_EC_FLAG_OBF 0x01 /* Output buffer full */
57#define ACPI_EC_FLAG_IBF 0x02 /* Input buffer full */
Dmitry Torokhov451566f2005-03-19 01:10:05 -050058#define ACPI_EC_FLAG_BURST 0x10 /* burst mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#define ACPI_EC_FLAG_SCI 0x20 /* EC-SCI occurred */
Alexey Starikovskiy43509332007-05-29 16:42:57 +040060
Denis M. Sadykov703959d2006-09-26 19:50:33 +040061/* EC commands */
Alexey Starikovskiy3261ff42006-12-07 18:42:17 +030062enum ec_command {
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +030063 ACPI_EC_COMMAND_READ = 0x80,
64 ACPI_EC_COMMAND_WRITE = 0x81,
65 ACPI_EC_BURST_ENABLE = 0x82,
66 ACPI_EC_BURST_DISABLE = 0x83,
67 ACPI_EC_COMMAND_QUERY = 0x84,
Alexey Starikovskiy3261ff42006-12-07 18:42:17 +030068};
Alexey Starikovskiy837012e2007-05-29 16:43:02 +040069
Alexey Starikovskiy5c406412006-12-07 18:42:16 +030070#define ACPI_EC_DELAY 500 /* Wait 500ms max. during EC ops */
Denis M. Sadykov703959d2006-09-26 19:50:33 +040071#define ACPI_EC_UDELAY_GLK 1000 /* Wait 1ms max. to get global lock */
Alexey Starikovskiy34ff4db2009-04-01 00:25:10 -040072#define ACPI_EC_CDELAY 10 /* Wait 10us before polling EC */
Alexey Starikovskiy2a84cb92009-08-30 03:06:14 +040073#define ACPI_EC_MSI_UDELAY 550 /* Wait 550us for MSI EC */
Denis M. Sadykov703959d2006-09-26 19:50:33 +040074
Alexey Starikovskiy06cf7d32008-11-09 19:01:06 +030075#define ACPI_EC_STORM_THRESHOLD 8 /* number of false interrupts
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +040076 per one transaction */
77
Alexey Starikovskiy080e4122007-10-22 14:18:30 +040078enum {
Alexey Starikovskiy080e4122007-10-22 14:18:30 +040079 EC_FLAGS_QUERY_PENDING, /* Query is pending */
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +040080 EC_FLAGS_GPE_STORM, /* GPE storm detected */
Rafael J. Wysockif6bb13a2010-03-04 01:52:58 +010081 EC_FLAGS_HANDLERS_INSTALLED, /* Handlers for GPE and
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +040082 * OpReg are installed */
Rafael J. Wysockife955682010-04-09 01:40:38 +020083 EC_FLAGS_BLOCKED, /* Transactions are blocked */
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
Thomas Renninger1195a092010-07-16 13:11:31 +0200110struct acpi_ec *boot_ec, *first_ec;
111EXPORT_SYMBOL(first_ec);
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400112
Alexey Starikovskiy5423a0c2009-02-21 12:18:13 -0500113static int EC_FLAGS_MSI; /* Out-of-spec MSI controller */
Alexey Starikovskiy0adf3c72009-10-02 20:21:33 +0400114static int EC_FLAGS_VALIDATE_ECDT; /* ASUStec ECDTs need to be validated */
Alexey Starikovskiy478fa032009-10-02 20:21:40 +0400115static int EC_FLAGS_SKIP_DSDT_SCAN; /* Not all BIOS survive early DSDT scan */
Alexey Starikovskiy5423a0c2009-02-21 12:18:13 -0500116
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117/* --------------------------------------------------------------------------
118 Transaction Management
119 -------------------------------------------------------------------------- */
120
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400121static inline u8 acpi_ec_read_status(struct acpi_ec *ec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122{
Márton Németh3ebe08a2007-11-21 03:23:26 +0300123 u8 x = inb(ec->command_addr);
Márton Németh86dae012008-01-23 22:33:06 -0500124 pr_debug(PREFIX "---> status = 0x%2.2x\n", x);
Márton Németh3ebe08a2007-11-21 03:23:26 +0300125 return x;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126}
127
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400128static inline u8 acpi_ec_read_data(struct acpi_ec *ec)
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400129{
Márton Németh3ebe08a2007-11-21 03:23:26 +0300130 u8 x = inb(ec->data_addr);
Márton Németh86dae012008-01-23 22:33:06 -0500131 pr_debug(PREFIX "---> data = 0x%2.2x\n", x);
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400132 return x;
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400133}
134
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400135static inline void acpi_ec_write_cmd(struct acpi_ec *ec, u8 command)
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400136{
Márton Németh86dae012008-01-23 22:33:06 -0500137 pr_debug(PREFIX "<--- command = 0x%2.2x\n", command);
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400138 outb(command, ec->command_addr);
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400139}
140
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400141static inline void acpi_ec_write_data(struct acpi_ec *ec, u8 data)
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400142{
Márton Németh86dae012008-01-23 22:33:06 -0500143 pr_debug(PREFIX "<--- data = 0x%2.2x\n", data);
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400144 outb(data, ec->data_addr);
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400145}
146
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400147static int ec_transaction_done(struct acpi_ec *ec)
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400148{
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400149 unsigned long flags;
150 int ret = 0;
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400151 spin_lock_irqsave(&ec->curr_lock, flags);
Alexey Starikovskiydd15f8c2008-11-08 21:42:30 +0300152 if (!ec->curr || ec->curr->done)
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400153 ret = 1;
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400154 spin_unlock_irqrestore(&ec->curr_lock, flags);
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400155 return ret;
156}
Denis M. Sadykov7c6db5e2006-09-26 19:50:33 +0400157
Alexey Starikovskiya2f93ae2008-11-12 01:40:19 +0300158static void start_transaction(struct acpi_ec *ec)
159{
160 ec->curr->irq_count = ec->curr->wi = ec->curr->ri = 0;
161 ec->curr->done = false;
162 acpi_ec_write_cmd(ec, ec->curr->command);
163}
164
Alexey Starikovskiy2a84cb92009-08-30 03:06:14 +0400165static void advance_transaction(struct acpi_ec *ec, u8 status)
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400166{
167 unsigned long flags;
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400168 spin_lock_irqsave(&ec->curr_lock, flags);
169 if (!ec->curr)
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400170 goto unlock;
Alexey Starikovskiya2f93ae2008-11-12 01:40:19 +0300171 if (ec->curr->wlen > ec->curr->wi) {
172 if ((status & ACPI_EC_FLAG_IBF) == 0)
173 acpi_ec_write_data(ec,
174 ec->curr->wdata[ec->curr->wi++]);
175 else
Alexey Starikovskiydd15f8c2008-11-08 21:42:30 +0300176 goto err;
Alexey Starikovskiya2f93ae2008-11-12 01:40:19 +0300177 } else if (ec->curr->rlen > ec->curr->ri) {
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400178 if ((status & ACPI_EC_FLAG_OBF) == 1) {
Alexey Starikovskiya2f93ae2008-11-12 01:40:19 +0300179 ec->curr->rdata[ec->curr->ri++] = acpi_ec_read_data(ec);
180 if (ec->curr->rlen == ec->curr->ri)
Alexey Starikovskiydd15f8c2008-11-08 21:42:30 +0300181 ec->curr->done = true;
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400182 } else
Alexey Starikovskiydd15f8c2008-11-08 21:42:30 +0300183 goto err;
Alexey Starikovskiya2f93ae2008-11-12 01:40:19 +0300184 } else if (ec->curr->wlen == ec->curr->wi &&
185 (status & ACPI_EC_FLAG_IBF) == 0)
Alexey Starikovskiydd15f8c2008-11-08 21:42:30 +0300186 ec->curr->done = true;
187 goto unlock;
188err:
189 /* false interrupt, state didn't change */
Alexey Starikovskiy7b4d4692008-11-13 12:00:03 +0300190 if (in_interrupt())
191 ++ec->curr->irq_count;
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400192unlock:
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400193 spin_unlock_irqrestore(&ec->curr_lock, flags);
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400194}
195
Alexey Starikovskiya62e8f12009-12-24 11:34:16 +0300196static int acpi_ec_sync_query(struct acpi_ec *ec);
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400197
Alexey Starikovskiya62e8f12009-12-24 11:34:16 +0300198static int ec_check_sci_sync(struct acpi_ec *ec, u8 state)
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400199{
200 if (state & ACPI_EC_FLAG_SCI) {
201 if (!test_and_set_bit(EC_FLAGS_QUERY_PENDING, &ec->flags))
Alexey Starikovskiya62e8f12009-12-24 11:34:16 +0300202 return acpi_ec_sync_query(ec);
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400203 }
Denis M. Sadykov7c6db5e2006-09-26 19:50:33 +0400204 return 0;
205}
206
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400207static int ec_poll(struct acpi_ec *ec)
Alexey Starikovskiy845625c2008-03-21 17:07:03 +0300208{
Alexey Starikovskiy2a84cb92009-08-30 03:06:14 +0400209 unsigned long flags;
210 int repeat = 2; /* number of command restarts */
211 while (repeat--) {
212 unsigned long delay = jiffies +
213 msecs_to_jiffies(ACPI_EC_DELAY);
214 do {
215 /* don't sleep with disabled interrupts */
216 if (EC_FLAGS_MSI || irqs_disabled()) {
217 udelay(ACPI_EC_MSI_UDELAY);
218 if (ec_transaction_done(ec))
219 return 0;
220 } else {
221 if (wait_event_timeout(ec->wait,
222 ec_transaction_done(ec),
223 msecs_to_jiffies(1)))
224 return 0;
225 }
226 advance_transaction(ec, acpi_ec_read_status(ec));
227 } while (time_before(jiffies, delay));
Alexey Starikovskiye12ac3d2009-10-02 02:53:15 +0400228 if (acpi_ec_read_status(ec) & ACPI_EC_FLAG_IBF)
Alexey Starikovskiy2a84cb92009-08-30 03:06:14 +0400229 break;
Alexey Starikovskiy2a84cb92009-08-30 03:06:14 +0400230 pr_debug(PREFIX "controller reset, restart transaction\n");
231 spin_lock_irqsave(&ec->curr_lock, flags);
232 start_transaction(ec);
233 spin_unlock_irqrestore(&ec->curr_lock, flags);
Alexey Starikovskiyaf3fd142006-12-07 18:42:16 +0300234 }
Alexey Starikovskiyb77d81b2008-03-21 17:07:15 +0300235 return -ETIME;
Dmitry Torokhov451566f2005-03-19 01:10:05 -0500236}
237
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400238static int acpi_ec_transaction_unlocked(struct acpi_ec *ec,
Alexey Starikovskiy2a84cb92009-08-30 03:06:14 +0400239 struct transaction *t)
Lennart Poetteringd7a76e42006-09-05 12:12:24 -0400240{
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400241 unsigned long tmp;
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400242 int ret = 0;
Alexey Starikovskiy5423a0c2009-02-21 12:18:13 -0500243 if (EC_FLAGS_MSI)
Alexey Starikovskiy2a84cb92009-08-30 03:06:14 +0400244 udelay(ACPI_EC_MSI_UDELAY);
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400245 /* start transaction */
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400246 spin_lock_irqsave(&ec->curr_lock, tmp);
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400247 /* following two actions should be kept atomic */
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400248 ec->curr = t;
Alexey Starikovskiya2f93ae2008-11-12 01:40:19 +0300249 start_transaction(ec);
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400250 if (ec->curr->command == ACPI_EC_COMMAND_QUERY)
Alexey Starikovskiy080e4122007-10-22 14:18:30 +0400251 clear_bit(EC_FLAGS_QUERY_PENDING, &ec->flags);
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400252 spin_unlock_irqrestore(&ec->curr_lock, tmp);
Alexey Starikovskiy2a84cb92009-08-30 03:06:14 +0400253 ret = ec_poll(ec);
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400254 spin_lock_irqsave(&ec->curr_lock, tmp);
255 ec->curr = NULL;
256 spin_unlock_irqrestore(&ec->curr_lock, tmp);
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400257 return ret;
Lennart Poetteringd7a76e42006-09-05 12:12:24 -0400258}
259
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400260static int ec_check_ibf0(struct acpi_ec *ec)
261{
262 u8 status = acpi_ec_read_status(ec);
263 return (status & ACPI_EC_FLAG_IBF) == 0;
Lennart Poetteringd7a76e42006-09-05 12:12:24 -0400264}
265
Alexey Starikovskiyc0ff1772008-10-16 02:02:33 +0400266static int ec_wait_ibf0(struct acpi_ec *ec)
267{
268 unsigned long delay = jiffies + msecs_to_jiffies(ACPI_EC_DELAY);
269 /* interrupt wait manually if GPE mode is not active */
Alexey Starikovskiyc0ff1772008-10-16 02:02:33 +0400270 while (time_before(jiffies, delay))
Alexey Starikovskiy2a84cb92009-08-30 03:06:14 +0400271 if (wait_event_timeout(ec->wait, ec_check_ibf0(ec),
272 msecs_to_jiffies(1)))
Alexey Starikovskiyc0ff1772008-10-16 02:02:33 +0400273 return 0;
274 return -ETIME;
275}
276
Alexey Starikovskiy2a84cb92009-08-30 03:06:14 +0400277static int acpi_ec_transaction(struct acpi_ec *ec, struct transaction *t)
Luming Yu45bea152005-07-23 04:08:00 -0400278{
Lennart Poetteringd7a76e42006-09-05 12:12:24 -0400279 int status;
Len Brown50526df2005-08-11 17:32:05 -0400280 u32 glk;
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400281 if (!ec || (!t) || (t->wlen && !t->wdata) || (t->rlen && !t->rdata))
Patrick Mocheld550d982006-06-27 00:41:40 -0400282 return -EINVAL;
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400283 if (t->rdata)
284 memset(t->rdata, 0, t->rlen);
Alexey Starikovskiy523953b2006-12-07 18:42:17 +0300285 mutex_lock(&ec->lock);
Rafael J. Wysockife955682010-04-09 01:40:38 +0200286 if (test_bit(EC_FLAGS_BLOCKED, &ec->flags)) {
Rafael J. Wysockif6bb13a2010-03-04 01:52:58 +0100287 status = -EINVAL;
288 goto unlock;
289 }
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400290 if (ec->global_lock) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 status = acpi_acquire_global_lock(ACPI_EC_UDELAY_GLK, &glk);
Alexey Starikovskiyc24e9122007-02-15 23:16:18 +0300292 if (ACPI_FAILURE(status)) {
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400293 status = -ENODEV;
294 goto unlock;
Alexey Starikovskiyc24e9122007-02-15 23:16:18 +0300295 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 }
Alexey Starikovskiyc0ff1772008-10-16 02:02:33 +0400297 if (ec_wait_ibf0(ec)) {
Márton Németh3ebe08a2007-11-21 03:23:26 +0300298 pr_err(PREFIX "input buffer is not empty, "
299 "aborting transaction\n");
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400300 status = -ETIME;
Dmitry Torokhov451566f2005-03-19 01:10:05 -0500301 goto end;
Luming Yu716e0842005-08-10 01:40:00 -0400302 }
Alexey Starikovskiya62e8f12009-12-24 11:34:16 +0300303 pr_debug(PREFIX "transaction start\n");
304 /* disable GPE during transaction if storm is detected */
305 if (test_bit(EC_FLAGS_GPE_STORM, &ec->flags)) {
Rafael J. Wysocki37847302010-06-25 01:21:42 +0200306 /* It has to be disabled, so that it doesn't trigger. */
307 acpi_disable_gpe(NULL, ec->gpe);
Alexey Starikovskiya62e8f12009-12-24 11:34:16 +0300308 }
309
Alexey Starikovskiy2a84cb92009-08-30 03:06:14 +0400310 status = acpi_ec_transaction_unlocked(ec, t);
Alexey Starikovskiya62e8f12009-12-24 11:34:16 +0300311
312 /* check if we received SCI during transaction */
313 ec_check_sci_sync(ec, acpi_ec_read_status(ec));
314 if (test_bit(EC_FLAGS_GPE_STORM, &ec->flags)) {
Alexey Starikovskiy54070102009-12-30 15:53:10 +0300315 msleep(1);
Rafael J. Wysocki37847302010-06-25 01:21:42 +0200316 /* It is safe to enable the GPE outside of the transaction. */
317 acpi_enable_gpe(NULL, ec->gpe);
Alexey Starikovskiya62e8f12009-12-24 11:34:16 +0300318 } else if (t->irq_count > ACPI_EC_STORM_THRESHOLD) {
319 pr_info(PREFIX "GPE storm detected, "
320 "transactions will use polling mode\n");
321 set_bit(EC_FLAGS_GPE_STORM, &ec->flags);
322 }
Alexey Starikovskiy54070102009-12-30 15:53:10 +0300323 pr_debug(PREFIX "transaction end\n");
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400324end:
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400325 if (ec->global_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 acpi_release_global_lock(glk);
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400327unlock:
Alexey Starikovskiy523953b2006-12-07 18:42:17 +0300328 mutex_unlock(&ec->lock);
Patrick Mocheld550d982006-06-27 00:41:40 -0400329 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330}
331
Roel Kluin8a383ef2008-12-09 20:45:30 +0100332static int acpi_ec_burst_enable(struct acpi_ec *ec)
Alexey Starikovskiyc45aac42007-03-07 22:28:00 +0300333{
334 u8 d;
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400335 struct transaction t = {.command = ACPI_EC_BURST_ENABLE,
336 .wdata = NULL, .rdata = &d,
337 .wlen = 0, .rlen = 1};
338
Alexey Starikovskiy2a84cb92009-08-30 03:06:14 +0400339 return acpi_ec_transaction(ec, &t);
Alexey Starikovskiyc45aac42007-03-07 22:28:00 +0300340}
341
Roel Kluin8a383ef2008-12-09 20:45:30 +0100342static int acpi_ec_burst_disable(struct acpi_ec *ec)
Alexey Starikovskiyc45aac42007-03-07 22:28:00 +0300343{
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400344 struct transaction t = {.command = ACPI_EC_BURST_DISABLE,
345 .wdata = NULL, .rdata = NULL,
346 .wlen = 0, .rlen = 0};
347
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400348 return (acpi_ec_read_status(ec) & ACPI_EC_FLAG_BURST) ?
Alexey Starikovskiy2a84cb92009-08-30 03:06:14 +0400349 acpi_ec_transaction(ec, &t) : 0;
Alexey Starikovskiyc45aac42007-03-07 22:28:00 +0300350}
351
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300352static int acpi_ec_read(struct acpi_ec *ec, u8 address, u8 * data)
Denis M. Sadykov3576cf62006-09-26 19:50:33 +0400353{
354 int result;
355 u8 d;
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400356 struct transaction t = {.command = ACPI_EC_COMMAND_READ,
357 .wdata = &address, .rdata = &d,
358 .wlen = 1, .rlen = 1};
Denis M. Sadykov3576cf62006-09-26 19:50:33 +0400359
Alexey Starikovskiy2a84cb92009-08-30 03:06:14 +0400360 result = acpi_ec_transaction(ec, &t);
Denis M. Sadykov3576cf62006-09-26 19:50:33 +0400361 *data = d;
362 return result;
363}
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400364
Denis M. Sadykov3576cf62006-09-26 19:50:33 +0400365static int acpi_ec_write(struct acpi_ec *ec, u8 address, u8 data)
366{
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300367 u8 wdata[2] = { address, data };
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400368 struct transaction t = {.command = ACPI_EC_COMMAND_WRITE,
369 .wdata = wdata, .rdata = NULL,
370 .wlen = 2, .rlen = 0};
371
Alexey Starikovskiy2a84cb92009-08-30 03:06:14 +0400372 return acpi_ec_transaction(ec, &t);
Denis M. Sadykov3576cf62006-09-26 19:50:33 +0400373}
374
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375/*
376 * Externally callable EC access functions. For now, assume 1 EC only
377 */
Alexey Starikovskiyc45aac42007-03-07 22:28:00 +0300378int ec_burst_enable(void)
379{
Alexey Starikovskiyc45aac42007-03-07 22:28:00 +0300380 if (!first_ec)
381 return -ENODEV;
Alexey Starikovskiyd0338792007-03-07 22:28:00 +0300382 return acpi_ec_burst_enable(first_ec);
Alexey Starikovskiyc45aac42007-03-07 22:28:00 +0300383}
384
385EXPORT_SYMBOL(ec_burst_enable);
386
387int ec_burst_disable(void)
388{
Alexey Starikovskiyc45aac42007-03-07 22:28:00 +0300389 if (!first_ec)
390 return -ENODEV;
Alexey Starikovskiyd0338792007-03-07 22:28:00 +0300391 return acpi_ec_burst_disable(first_ec);
Alexey Starikovskiyc45aac42007-03-07 22:28:00 +0300392}
393
394EXPORT_SYMBOL(ec_burst_disable);
395
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300396int ec_read(u8 addr, u8 * val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 int err;
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400399 u8 temp_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
401 if (!first_ec)
402 return -ENODEV;
403
Alexey Starikovskiyd0338792007-03-07 22:28:00 +0300404 err = acpi_ec_read(first_ec, addr, &temp_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
406 if (!err) {
407 *val = temp_data;
408 return 0;
Len Brown50526df2005-08-11 17:32:05 -0400409 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 return err;
411}
Len Brown50526df2005-08-11 17:32:05 -0400412
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413EXPORT_SYMBOL(ec_read);
414
Len Brown50526df2005-08-11 17:32:05 -0400415int ec_write(u8 addr, u8 val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 int err;
418
419 if (!first_ec)
420 return -ENODEV;
421
Alexey Starikovskiyd0338792007-03-07 22:28:00 +0300422 err = acpi_ec_write(first_ec, addr, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
424 return err;
425}
Len Brown50526df2005-08-11 17:32:05 -0400426
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427EXPORT_SYMBOL(ec_write);
428
Randy Dunlap616362d2006-10-27 01:47:34 -0400429int ec_transaction(u8 command,
Alexey Starikovskiy9e197212007-03-07 18:29:35 -0500430 const u8 * wdata, unsigned wdata_len,
Lennart Poettering00eb43a2007-05-04 14:16:19 +0200431 u8 * rdata, unsigned rdata_len,
432 int force_poll)
Luming Yu45bea152005-07-23 04:08:00 -0400433{
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400434 struct transaction t = {.command = command,
435 .wdata = wdata, .rdata = rdata,
436 .wlen = wdata_len, .rlen = rdata_len};
Lennart Poetteringd7a76e42006-09-05 12:12:24 -0400437 if (!first_ec)
438 return -ENODEV;
439
Alexey Starikovskiy2a84cb92009-08-30 03:06:14 +0400440 return acpi_ec_transaction(first_ec, &t);
Luming Yu45bea152005-07-23 04:08:00 -0400441}
Luming Yu45bea152005-07-23 04:08:00 -0400442
Lennart Poetteringab9e43c2006-10-03 22:49:00 -0400443EXPORT_SYMBOL(ec_transaction);
444
Rafael J. Wysockife955682010-04-09 01:40:38 +0200445void acpi_ec_block_transactions(void)
Rafael J. Wysockif6bb13a2010-03-04 01:52:58 +0100446{
447 struct acpi_ec *ec = first_ec;
448
449 if (!ec)
450 return;
451
452 mutex_lock(&ec->lock);
453 /* Prevent transactions from being carried out */
Rafael J. Wysockife955682010-04-09 01:40:38 +0200454 set_bit(EC_FLAGS_BLOCKED, &ec->flags);
Rafael J. Wysockif6bb13a2010-03-04 01:52:58 +0100455 mutex_unlock(&ec->lock);
456}
457
Rafael J. Wysockife955682010-04-09 01:40:38 +0200458void acpi_ec_unblock_transactions(void)
Rafael J. Wysockif6bb13a2010-03-04 01:52:58 +0100459{
460 struct acpi_ec *ec = first_ec;
461
462 if (!ec)
463 return;
464
465 mutex_lock(&ec->lock);
466 /* Allow transactions to be carried out again */
Rafael J. Wysockife955682010-04-09 01:40:38 +0200467 clear_bit(EC_FLAGS_BLOCKED, &ec->flags);
Rafael J. Wysockif6bb13a2010-03-04 01:52:58 +0100468 mutex_unlock(&ec->lock);
469}
470
Rafael J. Wysockife955682010-04-09 01:40:38 +0200471void acpi_ec_unblock_transactions_early(void)
Rafael J. Wysockid5a64512010-04-09 01:39:40 +0200472{
473 /*
474 * Allow transactions to happen again (this function is called from
475 * atomic context during wakeup, so we don't need to acquire the mutex).
476 */
477 if (first_ec)
Rafael J. Wysockife955682010-04-09 01:40:38 +0200478 clear_bit(EC_FLAGS_BLOCKED, &first_ec->flags);
Rafael J. Wysockid5a64512010-04-09 01:39:40 +0200479}
480
Alexey Starikovskiya62e8f12009-12-24 11:34:16 +0300481static int acpi_ec_query_unlocked(struct acpi_ec *ec, u8 * data)
Denis M. Sadykov3576cf62006-09-26 19:50:33 +0400482{
483 int result;
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300484 u8 d;
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400485 struct transaction t = {.command = ACPI_EC_COMMAND_QUERY,
486 .wdata = NULL, .rdata = &d,
487 .wlen = 0, .rlen = 1};
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300488 if (!ec || !data)
489 return -EINVAL;
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300490 /*
491 * Query the EC to find out which _Qxx method we need to evaluate.
492 * Note that successful completion of the query causes the ACPI_EC_SCI
493 * bit to be cleared (and thus clearing the interrupt source).
494 */
Alexey Starikovskiya62e8f12009-12-24 11:34:16 +0300495 result = acpi_ec_transaction_unlocked(ec, &t);
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300496 if (result)
497 return result;
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300498 if (!d)
499 return -ENODATA;
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300500 *data = d;
501 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502}
503
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504/* --------------------------------------------------------------------------
505 Event Management
506 -------------------------------------------------------------------------- */
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400507int acpi_ec_add_query_handler(struct acpi_ec *ec, u8 query_bit,
508 acpi_handle handle, acpi_ec_query_func func,
509 void *data)
510{
511 struct acpi_ec_query_handler *handler =
512 kzalloc(sizeof(struct acpi_ec_query_handler), GFP_KERNEL);
513 if (!handler)
514 return -ENOMEM;
515
516 handler->query_bit = query_bit;
517 handler->handle = handle;
518 handler->func = func;
519 handler->data = data;
520 mutex_lock(&ec->lock);
Alexey Starikovskiy30c08572007-09-26 19:43:22 +0400521 list_add(&handler->node, &ec->list);
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400522 mutex_unlock(&ec->lock);
523 return 0;
524}
525
526EXPORT_SYMBOL_GPL(acpi_ec_add_query_handler);
527
528void acpi_ec_remove_query_handler(struct acpi_ec *ec, u8 query_bit)
529{
Adrian Bunk1544fdb2007-10-24 18:26:00 +0200530 struct acpi_ec_query_handler *handler, *tmp;
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400531 mutex_lock(&ec->lock);
Adrian Bunk1544fdb2007-10-24 18:26:00 +0200532 list_for_each_entry_safe(handler, tmp, &ec->list, node) {
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400533 if (query_bit == handler->query_bit) {
534 list_del(&handler->node);
535 kfree(handler);
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400536 }
537 }
538 mutex_unlock(&ec->lock);
539}
540
541EXPORT_SYMBOL_GPL(acpi_ec_remove_query_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
Alexey Starikovskiya62e8f12009-12-24 11:34:16 +0300543static void acpi_ec_run(void *cxt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544{
Alexey Starikovskiya62e8f12009-12-24 11:34:16 +0300545 struct acpi_ec_query_handler *handler = cxt;
546 if (!handler)
Alexey Starikovskiye41334c2006-12-07 18:42:16 +0300547 return;
Alexey Starikovskiya62e8f12009-12-24 11:34:16 +0300548 pr_debug(PREFIX "start query execution\n");
549 if (handler->func)
550 handler->func(handler->data);
551 else if (handler->handle)
552 acpi_evaluate_object(handler->handle, NULL, NULL, NULL);
553 pr_debug(PREFIX "stop query execution\n");
554 kfree(handler);
555}
556
557static int acpi_ec_sync_query(struct acpi_ec *ec)
558{
559 u8 value = 0;
560 int status;
561 struct acpi_ec_query_handler *handler, *copy;
562 if ((status = acpi_ec_query_unlocked(ec, &value)))
563 return status;
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400564 list_for_each_entry(handler, &ec->list, node) {
565 if (value == handler->query_bit) {
566 /* have custom handler for this bit */
Alexey Starikovskiya62e8f12009-12-24 11:34:16 +0300567 copy = kmalloc(sizeof(*handler), GFP_KERNEL);
568 if (!copy)
569 return -ENOMEM;
570 memcpy(copy, handler, sizeof(*copy));
571 pr_debug(PREFIX "push query execution (0x%2x) on queue\n", value);
Alexey Starikovskiyf5347862009-12-30 15:53:03 +0300572 return acpi_os_execute((copy->func) ?
573 OSL_NOTIFY_HANDLER : OSL_GPE_HANDLER,
Alexey Starikovskiya62e8f12009-12-24 11:34:16 +0300574 acpi_ec_run, copy);
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400575 }
576 }
Alexey Starikovskiya62e8f12009-12-24 11:34:16 +0300577 return 0;
578}
579
580static void acpi_ec_gpe_query(void *ec_cxt)
581{
582 struct acpi_ec *ec = ec_cxt;
583 if (!ec)
584 return;
585 mutex_lock(&ec->lock);
586 acpi_ec_sync_query(ec);
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400587 mutex_unlock(&ec->lock);
Luming Yu45bea152005-07-23 04:08:00 -0400588}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
Alexey Starikovskiya62e8f12009-12-24 11:34:16 +0300590static void acpi_ec_gpe_query(void *ec_cxt);
591
592static int ec_check_sci(struct acpi_ec *ec, u8 state)
593{
594 if (state & ACPI_EC_FLAG_SCI) {
595 if (!test_and_set_bit(EC_FLAGS_QUERY_PENDING, &ec->flags)) {
596 pr_debug(PREFIX "push gpe query to the queue\n");
597 return acpi_os_execute(OSL_NOTIFY_HANDLER,
598 acpi_ec_gpe_query, ec);
599 }
600 }
601 return 0;
602}
603
Len Brown50526df2005-08-11 17:32:05 -0400604static u32 acpi_ec_gpe_handler(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605{
Alexey Starikovskiy3d02b902007-03-07 22:28:00 +0300606 struct acpi_ec *ec = data;
Lennart Poettering00eb43a2007-05-04 14:16:19 +0200607
Márton Németh3ebe08a2007-11-21 03:23:26 +0300608 pr_debug(PREFIX "~~~> interrupt\n");
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400609
Alexey Starikovskiya62e8f12009-12-24 11:34:16 +0300610 advance_transaction(ec, acpi_ec_read_status(ec));
611 if (ec_transaction_done(ec) &&
612 (acpi_ec_read_status(ec) & ACPI_EC_FLAG_IBF) == 0) {
Alexey Starikovskiy2a84cb92009-08-30 03:06:14 +0400613 wake_up(&ec->wait);
Alexey Starikovskiya62e8f12009-12-24 11:34:16 +0300614 ec_check_sci(ec, acpi_ec_read_status(ec));
615 }
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400616 return ACPI_INTERRUPT_HANDLED;
Alexey Starikovskiy845625c2008-03-21 17:07:03 +0300617}
618
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619/* --------------------------------------------------------------------------
620 Address Space Management
621 -------------------------------------------------------------------------- */
622
623static acpi_status
Alexey Starikovskiy5b7734b2007-05-29 16:42:52 +0400624acpi_ec_space_handler(u32 function, acpi_physical_address address,
Alexey Starikovskiydadf28a2010-03-17 13:14:13 -0400625 u32 bits, u64 *value64,
Len Brown50526df2005-08-11 17:32:05 -0400626 void *handler_context, void *region_context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627{
Alexey Starikovskiy3d02b902007-03-07 22:28:00 +0300628 struct acpi_ec *ec = handler_context;
Alexey Starikovskiydadf28a2010-03-17 13:14:13 -0400629 int result = 0, i, bytes = bits / 8;
630 u8 *value = (u8 *)value64;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 if ((address > 0xFF) || !value || !handler_context)
Patrick Mocheld550d982006-06-27 00:41:40 -0400633 return AE_BAD_PARAMETER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634
Alexey Starikovskiy5b7734b2007-05-29 16:42:52 +0400635 if (function != ACPI_READ && function != ACPI_WRITE)
Patrick Mocheld550d982006-06-27 00:41:40 -0400636 return AE_BAD_PARAMETER;
Alexey Starikovskiy5b7734b2007-05-29 16:42:52 +0400637
Alexey Starikovskiydadf28a2010-03-17 13:14:13 -0400638 if (EC_FLAGS_MSI || bits > 8)
Alexey Starikovskiy6a63b06f2009-08-28 23:29:44 +0400639 acpi_ec_burst_enable(ec);
Alexey Starikovskiyb3b233c2008-01-11 02:42:57 +0300640
Alexey Starikovskiydadf28a2010-03-17 13:14:13 -0400641 for (i = 0; i < bytes; ++i, ++address, ++value)
642 result = (function == ACPI_READ) ?
643 acpi_ec_read(ec, address, value) :
644 acpi_ec_write(ec, address, *value);
Alexey Starikovskiy3e71a872008-01-11 02:42:51 +0300645
Alexey Starikovskiydadf28a2010-03-17 13:14:13 -0400646 if (EC_FLAGS_MSI || bits > 8)
Alexey Starikovskiy6a63b06f2009-08-28 23:29:44 +0400647 acpi_ec_burst_disable(ec);
Alexey Starikovskiyb3b233c2008-01-11 02:42:57 +0300648
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 switch (result) {
650 case -EINVAL:
Patrick Mocheld550d982006-06-27 00:41:40 -0400651 return AE_BAD_PARAMETER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 break;
653 case -ENODEV:
Patrick Mocheld550d982006-06-27 00:41:40 -0400654 return AE_NOT_FOUND;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 break;
656 case -ETIME:
Patrick Mocheld550d982006-06-27 00:41:40 -0400657 return AE_TIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 break;
659 default:
Patrick Mocheld550d982006-06-27 00:41:40 -0400660 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662}
663
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664/* --------------------------------------------------------------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 Driver Interface
666 -------------------------------------------------------------------------- */
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300667static acpi_status
668ec_parse_io_ports(struct acpi_resource *resource, void *context);
669
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300670static struct acpi_ec *make_acpi_ec(void)
671{
672 struct acpi_ec *ec = kzalloc(sizeof(struct acpi_ec), GFP_KERNEL);
673 if (!ec)
674 return NULL;
Alexey Starikovskiy080e4122007-10-22 14:18:30 +0400675 ec->flags = 1 << EC_FLAGS_QUERY_PENDING;
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300676 mutex_init(&ec->lock);
677 init_waitqueue_head(&ec->wait);
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400678 INIT_LIST_HEAD(&ec->list);
Alexey Starikovskiy84632002008-09-26 00:54:28 +0400679 spin_lock_init(&ec->curr_lock);
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300680 return ec;
681}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400683static acpi_status
Alexey Starikovskiyc019b192007-08-14 01:03:42 -0400684acpi_ec_register_query_methods(acpi_handle handle, u32 level,
685 void *context, void **return_value)
686{
Lin Ming0175d562008-12-16 16:46:12 +0800687 char node_name[5];
688 struct acpi_buffer buffer = { sizeof(node_name), node_name };
Alexey Starikovskiyc019b192007-08-14 01:03:42 -0400689 struct acpi_ec *ec = context;
690 int value = 0;
Lin Ming0175d562008-12-16 16:46:12 +0800691 acpi_status status;
692
693 status = acpi_get_name(handle, ACPI_SINGLE_NAME, &buffer);
694
695 if (ACPI_SUCCESS(status) && sscanf(node_name, "_Q%x", &value) == 1) {
Alexey Starikovskiyc019b192007-08-14 01:03:42 -0400696 acpi_ec_add_query_handler(ec, value, handle, NULL, NULL);
697 }
698 return AE_OK;
699}
700
701static acpi_status
Alexey Starikovskiycd8c93a2007-08-03 17:52:48 -0400702ec_parse_device(acpi_handle handle, u32 Level, void *context, void **retval)
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400703{
Alexey Starikovskiycd8c93a2007-08-03 17:52:48 -0400704 acpi_status status;
Alexey Starikovskiyd21cf3c2008-11-03 14:26:40 -0500705 unsigned long long tmp = 0;
Alexey Starikovskiycd8c93a2007-08-03 17:52:48 -0400706
707 struct acpi_ec *ec = context;
Alexey Starikovskiya5032bf2009-04-01 01:33:15 -0400708
709 /* clear addr values, ec_parse_io_ports depend on it */
710 ec->command_addr = ec->data_addr = 0;
711
Alexey Starikovskiycd8c93a2007-08-03 17:52:48 -0400712 status = acpi_walk_resources(handle, METHOD_NAME__CRS,
713 ec_parse_io_ports, ec);
714 if (ACPI_FAILURE(status))
715 return status;
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400716
717 /* Get GPE bit assignment (EC events). */
718 /* TODO: Add support for _GPE returning a package */
Matthew Wilcox27663c52008-10-10 02:22:59 -0400719 status = acpi_evaluate_integer(handle, "_GPE", NULL, &tmp);
Alexey Starikovskiycd8c93a2007-08-03 17:52:48 -0400720 if (ACPI_FAILURE(status))
721 return status;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400722 ec->gpe = tmp;
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400723 /* Use the global lock for all EC transactions? */
Alexey Starikovskiyd21cf3c2008-11-03 14:26:40 -0500724 tmp = 0;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400725 acpi_evaluate_integer(handle, "_GLK", NULL, &tmp);
726 ec->global_lock = tmp;
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400727 ec->handle = handle;
Alexey Starikovskiycd8c93a2007-08-03 17:52:48 -0400728 return AE_CTRL_TERMINATE;
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400729}
730
Alexey Starikovskiye8284322007-03-07 22:28:00 +0300731static int ec_install_handlers(struct acpi_ec *ec)
732{
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300733 acpi_status status;
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400734 if (test_bit(EC_FLAGS_HANDLERS_INSTALLED, &ec->flags))
Alexey Starikovskiy4c611062007-09-05 19:56:38 -0400735 return 0;
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300736 status = acpi_install_gpe_handler(NULL, ec->gpe,
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400737 ACPI_GPE_EDGE_TRIGGERED,
738 &acpi_ec_gpe_handler, ec);
Alexey Starikovskiye8284322007-03-07 22:28:00 +0300739 if (ACPI_FAILURE(status))
740 return -ENODEV;
Rafael J. Wysocki9630bdd2010-02-17 23:41:07 +0100741
Rafael J. Wysockia44061a2010-07-01 10:11:45 +0800742 acpi_enable_gpe(NULL, ec->gpe);
Alexey Starikovskiye8284322007-03-07 22:28:00 +0300743 status = acpi_install_address_space_handler(ec->handle,
744 ACPI_ADR_SPACE_EC,
745 &acpi_ec_space_handler,
Alexey Starikovskiy6d9e1122008-03-24 23:22:29 +0300746 NULL, ec);
Alexey Starikovskiye8284322007-03-07 22:28:00 +0300747 if (ACPI_FAILURE(status)) {
Zhao Yakui20edd742008-10-17 02:02:44 -0400748 if (status == AE_NOT_FOUND) {
749 /*
750 * Maybe OS fails in evaluating the _REG object.
751 * The AE_NOT_FOUND error will be ignored and OS
752 * continue to initialize EC.
753 */
754 printk(KERN_ERR "Fail in evaluating the _REG object"
755 " of EC device. Broken bios is suspected.\n");
756 } else {
757 acpi_remove_gpe_handler(NULL, ec->gpe,
758 &acpi_ec_gpe_handler);
Rafael J. Wysockia44061a2010-07-01 10:11:45 +0800759 acpi_disable_gpe(NULL, ec->gpe);
Zhao Yakui20edd742008-10-17 02:02:44 -0400760 return -ENODEV;
761 }
Alexey Starikovskiye8284322007-03-07 22:28:00 +0300762 }
763
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400764 set_bit(EC_FLAGS_HANDLERS_INSTALLED, &ec->flags);
Alexey Starikovskiye8284322007-03-07 22:28:00 +0300765 return 0;
766}
767
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768static void ec_remove_handlers(struct acpi_ec *ec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769{
Rafael J. Wysockia44061a2010-07-01 10:11:45 +0800770 acpi_disable_gpe(NULL, ec->gpe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 if (ACPI_FAILURE(acpi_remove_address_space_handler(ec->handle,
772 ACPI_ADR_SPACE_EC, &acpi_ec_space_handler)))
773 pr_err(PREFIX "failed to remove space handler\n");
774 if (ACPI_FAILURE(acpi_remove_gpe_handler(NULL, ec->gpe,
775 &acpi_ec_gpe_handler)))
776 pr_err(PREFIX "failed to remove gpe handler\n");
777 clear_bit(EC_FLAGS_HANDLERS_INSTALLED, &ec->flags);
778}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780static int acpi_ec_add(struct acpi_device *device)
781{
782 struct acpi_ec *ec = NULL;
Bjorn Helgaasd02be042009-06-22 20:41:35 +0000783 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 strcpy(acpi_device_name(device), ACPI_EC_DEVICE_NAME);
786 strcpy(acpi_device_class(device), ACPI_EC_CLASS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 /* Check for boot EC */
789 if (boot_ec &&
790 (boot_ec->handle == device->handle ||
791 boot_ec->handle == ACPI_ROOT_OBJECT)) {
792 ec = boot_ec;
793 boot_ec = NULL;
794 } else {
795 ec = make_acpi_ec();
796 if (!ec)
797 return -ENOMEM;
798 }
799 if (ec_parse_device(device->handle, 0, ec, NULL) !=
800 AE_CTRL_TERMINATE) {
801 kfree(ec);
802 return -EINVAL;
803 }
804
805 ec->handle = device->handle;
806
807 /* Find and register all query methods */
808 acpi_walk_namespace(ACPI_TYPE_METHOD, ec->handle, 1,
Lin Ming22635762009-11-13 10:06:08 +0800809 acpi_ec_register_query_methods, NULL, ec, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810
811 if (!first_ec)
812 first_ec = ec;
813 device->driver_data = ec;
Thomas Renningerde4f1042010-07-29 22:08:44 +0200814
815 WARN(!request_region(ec->data_addr, 1, "EC data"),
816 "Could not request EC data io port 0x%lx", ec->data_addr);
817 WARN(!request_region(ec->command_addr, 1, "EC cmd"),
818 "Could not request EC cmd io port 0x%lx", ec->command_addr);
819
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 pr_info(PREFIX "GPE = 0x%lx, I/O: command/status = 0x%lx, data = 0x%lx\n",
821 ec->gpe, ec->command_addr, ec->data_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822
Alexey Starikovskiy4c611062007-09-05 19:56:38 -0400823 ret = ec_install_handlers(ec);
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300824
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400825 /* EC is fully operational, allow queries */
Alexey Starikovskiy080e4122007-10-22 14:18:30 +0400826 clear_bit(EC_FLAGS_QUERY_PENDING, &ec->flags);
Alexey Starikovskiy837012e2007-05-29 16:43:02 +0400827 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828}
829
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830static int acpi_ec_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831{
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300832 struct acpi_ec *ec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 struct acpi_ec_query_handler *handler, *tmp;
834
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400836 return -EINVAL;
Alexey Starikovskiyf9319f92007-08-24 08:10:11 +0400837
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 ec = acpi_driver_data(device);
Bjorn Helgaascf745ec2009-06-22 20:41:40 +0000839 ec_remove_handlers(ec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 mutex_lock(&ec->lock);
841 list_for_each_entry_safe(handler, tmp, &ec->list, node) {
842 list_del(&handler->node);
843 kfree(handler);
844 }
845 mutex_unlock(&ec->lock);
Thomas Renningerde4f1042010-07-29 22:08:44 +0200846 release_region(ec->data_addr, 1);
847 release_region(ec->command_addr, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 device->driver_data = NULL;
849 if (ec == first_ec)
850 first_ec = NULL;
851 kfree(ec);
Patrick Mocheld550d982006-06-27 00:41:40 -0400852 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853}
854
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855static acpi_status
856ec_parse_io_ports(struct acpi_resource *resource, void *context)
857{
858 struct acpi_ec *ec = context;
859
860 if (resource->type != ACPI_RESOURCE_TYPE_IO)
861 return AE_OK;
862
863 /*
864 * The first address region returned is the data port, and
865 * the second address region returned is the status/command
866 * port.
867 */
Thomas Renningerde4f1042010-07-29 22:08:44 +0200868 if (ec->data_addr == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 ec->data_addr = resource->data.io.minimum;
Thomas Renningerde4f1042010-07-29 22:08:44 +0200870 else if (ec->command_addr == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 ec->command_addr = resource->data.io.minimum;
872 else
873 return AE_CTRL_TERMINATE;
874
875 return AE_OK;
876}
877
Alexey Starikovskiyc04209a2008-01-01 14:12:55 -0500878int __init acpi_boot_ec_enable(void)
879{
Alexey Starikovskiy7c6db4e2008-09-25 21:00:31 +0400880 if (!boot_ec || test_bit(EC_FLAGS_HANDLERS_INSTALLED, &boot_ec->flags))
Alexey Starikovskiyc04209a2008-01-01 14:12:55 -0500881 return 0;
882 if (!ec_install_handlers(boot_ec)) {
883 first_ec = boot_ec;
884 return 0;
885 }
886 return -EFAULT;
887}
888
Alexey Starikovskiy223883b2008-03-21 17:07:21 +0300889static const struct acpi_device_id ec_device_ids[] = {
890 {"PNP0C09", 0},
891 {"", 0},
892};
893
Alexey Starikovskiy478fa032009-10-02 20:21:40 +0400894/* Some BIOS do not survive early DSDT scan, skip it */
895static int ec_skip_dsdt_scan(const struct dmi_system_id *id)
896{
897 EC_FLAGS_SKIP_DSDT_SCAN = 1;
898 return 0;
899}
900
Alexey Starikovskiy0adf3c72009-10-02 20:21:33 +0400901/* ASUStek often supplies us with broken ECDT, validate it */
902static int ec_validate_ecdt(const struct dmi_system_id *id)
903{
904 EC_FLAGS_VALIDATE_ECDT = 1;
905 return 0;
906}
907
908/* MSI EC needs special treatment, enable it */
909static int ec_flag_msi(const struct dmi_system_id *id)
910{
Alexey Starikovskiy55b313f2009-12-22 02:42:52 -0500911 printk(KERN_DEBUG PREFIX "Detected MSI hardware, enabling workarounds.\n");
Alexey Starikovskiy0adf3c72009-10-02 20:21:33 +0400912 EC_FLAGS_MSI = 1;
913 EC_FLAGS_VALIDATE_ECDT = 1;
914 return 0;
915}
916
917static struct dmi_system_id __initdata ec_dmi_table[] = {
918 {
Alexey Starikovskiy478fa032009-10-02 20:21:40 +0400919 ec_skip_dsdt_scan, "Compal JFL92", {
920 DMI_MATCH(DMI_BIOS_VENDOR, "COMPAL"),
921 DMI_MATCH(DMI_BOARD_NAME, "JFL92") }, NULL},
922 {
Alexey Starikovskiy0adf3c72009-10-02 20:21:33 +0400923 ec_flag_msi, "MSI hardware", {
Alexey Starikovskiy55b313f2009-12-22 02:42:52 -0500924 DMI_MATCH(DMI_BIOS_VENDOR, "Micro-Star")}, NULL},
925 {
926 ec_flag_msi, "MSI hardware", {
927 DMI_MATCH(DMI_SYS_VENDOR, "Micro-Star")}, NULL},
928 {
929 ec_flag_msi, "MSI hardware", {
930 DMI_MATCH(DMI_CHASSIS_VENDOR, "MICRO-Star")}, NULL},
Alexey Starikovskiy0adf3c72009-10-02 20:21:33 +0400931 {
932 ec_validate_ecdt, "ASUS hardware", {
933 DMI_MATCH(DMI_BIOS_VENDOR, "ASUS") }, NULL},
934 {},
935};
936
937
Len Brown50526df2005-08-11 17:32:05 -0400938int __init acpi_ec_ecdt_probe(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939{
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300940 acpi_status status;
Alexey Starikovskiyc6cb0e82009-01-14 02:57:53 +0300941 struct acpi_ec *saved_ec = NULL;
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300942 struct acpi_table_ecdt *ecdt_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943
Alexey Starikovskiyd66d9692007-03-07 22:28:00 +0300944 boot_ec = make_acpi_ec();
945 if (!boot_ec)
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300946 return -ENOMEM;
947 /*
948 * Generate a boot ec context
949 */
Alexey Starikovskiy0adf3c72009-10-02 20:21:33 +0400950 dmi_check_system(ec_dmi_table);
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300951 status = acpi_get_table(ACPI_SIG_ECDT, 1,
952 (struct acpi_table_header **)&ecdt_ptr);
Alexey Starikovskiycd8c93a2007-08-03 17:52:48 -0400953 if (ACPI_SUCCESS(status)) {
Márton Németh3ebe08a2007-11-21 03:23:26 +0300954 pr_info(PREFIX "EC description table is found, configuring boot EC\n");
Alexey Starikovskiycd8c93a2007-08-03 17:52:48 -0400955 boot_ec->command_addr = ecdt_ptr->control.address;
956 boot_ec->data_addr = ecdt_ptr->data.address;
957 boot_ec->gpe = ecdt_ptr->gpe;
Len Brown4af8e102008-03-11 00:27:16 -0400958 boot_ec->handle = ACPI_ROOT_OBJECT;
Alexey Starikovskiyce52ddf2008-03-24 23:22:36 +0300959 acpi_get_handle(ACPI_ROOT_OBJECT, ecdt_ptr->id, &boot_ec->handle);
Alexey Starikovskiyc6cb0e82009-01-14 02:57:53 +0300960 /* Don't trust ECDT, which comes from ASUSTek */
Alexey Starikovskiy0adf3c72009-10-02 20:21:33 +0400961 if (!EC_FLAGS_VALIDATE_ECDT)
Alexey Starikovskiyc5279de2008-11-26 17:11:53 -0500962 goto install;
Julia Lawalld6bd5352010-05-15 23:16:21 +0200963 saved_ec = kmemdup(boot_ec, sizeof(struct acpi_ec), GFP_KERNEL);
Alexey Starikovskiyc6cb0e82009-01-14 02:57:53 +0300964 if (!saved_ec)
965 return -ENOMEM;
Alexey Starikovskiyc5279de2008-11-26 17:11:53 -0500966 /* fall through */
Alexey Starikovskiycd8c93a2007-08-03 17:52:48 -0400967 }
Alexey Starikovskiy0adf3c72009-10-02 20:21:33 +0400968
Alexey Starikovskiy478fa032009-10-02 20:21:40 +0400969 if (EC_FLAGS_SKIP_DSDT_SCAN)
970 return -ENODEV;
971
Alexey Starikovskiyc5279de2008-11-26 17:11:53 -0500972 /* This workaround is needed only on some broken machines,
973 * which require early EC, but fail to provide ECDT */
Alexey Starikovskiyc5279de2008-11-26 17:11:53 -0500974 printk(KERN_DEBUG PREFIX "Look up EC in DSDT\n");
975 status = acpi_get_devices(ec_device_ids[0].id, ec_parse_device,
976 boot_ec, NULL);
977 /* Check that acpi_get_devices actually find something */
978 if (ACPI_FAILURE(status) || !boot_ec->handle)
979 goto error;
Alexey Starikovskiyc6cb0e82009-01-14 02:57:53 +0300980 if (saved_ec) {
981 /* try to find good ECDT from ASUSTek */
982 if (saved_ec->command_addr != boot_ec->command_addr ||
983 saved_ec->data_addr != boot_ec->data_addr ||
984 saved_ec->gpe != boot_ec->gpe ||
985 saved_ec->handle != boot_ec->handle)
986 pr_info(PREFIX "ASUSTek keeps feeding us with broken "
987 "ECDT tables, which are very hard to workaround. "
988 "Trying to use DSDT EC info instead. Please send "
989 "output of acpidump to linux-acpi@vger.kernel.org\n");
990 kfree(saved_ec);
991 saved_ec = NULL;
992 } else {
993 /* We really need to limit this workaround, the only ASUS,
994 * which needs it, has fake EC._INI method, so use it as flag.
995 * Keep boot_ec struct as it will be needed soon.
996 */
997 acpi_handle dummy;
998 if (!dmi_name_in_vendors("ASUS") ||
999 ACPI_FAILURE(acpi_get_handle(boot_ec->handle, "_INI",
1000 &dummy)))
1001 return -ENODEV;
1002 }
Alexey Starikovskiyc5279de2008-11-26 17:11:53 -05001003install:
1004 if (!ec_install_handlers(boot_ec)) {
Alexey Starikovskiyd0338792007-03-07 22:28:00 +03001005 first_ec = boot_ec;
Alexey Starikovskiye8284322007-03-07 22:28:00 +03001006 return 0;
Alexey Starikovskiyd0338792007-03-07 22:28:00 +03001007 }
Alexey Starikovskiyc5279de2008-11-26 17:11:53 -05001008error:
Alexey Starikovskiyd66d9692007-03-07 22:28:00 +03001009 kfree(boot_ec);
1010 boot_ec = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 return -ENODEV;
1012}
1013
Alexey Starikovskiy223883b2008-03-21 17:07:21 +03001014static struct acpi_driver acpi_ec_driver = {
1015 .name = "ec",
1016 .class = ACPI_EC_CLASS,
1017 .ids = ec_device_ids,
1018 .ops = {
1019 .add = acpi_ec_add,
1020 .remove = acpi_ec_remove,
Alexey Starikovskiy223883b2008-03-21 17:07:21 +03001021 },
1022};
1023
Bjorn Helgaasa5f820f2009-03-24 16:49:48 -06001024int __init acpi_ec_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025{
Len Brown50526df2005-08-11 17:32:05 -04001026 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 /* Now register the driver for the EC */
1029 result = acpi_bus_register_driver(&acpi_ec_driver);
Thomas Renninger49c6c5f2010-07-16 13:11:34 +02001030 if (result < 0)
Patrick Mocheld550d982006-06-27 00:41:40 -04001031 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032
Patrick Mocheld550d982006-06-27 00:41:40 -04001033 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034}
1035
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036/* EC driver currently not unloadable */
1037#if 0
Len Brown50526df2005-08-11 17:32:05 -04001038static void __exit acpi_ec_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040
1041 acpi_bus_unregister_driver(&acpi_ec_driver);
Patrick Mocheld550d982006-06-27 00:41:40 -04001042 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043}
Alexey Starikovskiy78439322007-10-22 14:18:43 +04001044#endif /* 0 */