blob: c9dcf9a2a4695b7494a27b712c63db4c515cfdb6 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * acpi_ec.c - ACPI Embedded Controller Driver ($Revision: 38 $)
3 *
4 * Copyright (C) 2004 Luming Yu <luming.yu@intel.com>
5 * Copyright (C) 2001, 2002 Andy Grover <andrew.grover@intel.com>
6 * Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>
7 *
8 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or (at
13 * your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful, but
16 * WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License along
21 * with this program; if not, write to the Free Software Foundation, Inc.,
22 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
23 *
24 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
25 */
26
27#include <linux/kernel.h>
28#include <linux/module.h>
29#include <linux/init.h>
30#include <linux/types.h>
31#include <linux/delay.h>
32#include <linux/proc_fs.h>
33#include <linux/seq_file.h>
Dmitry Torokhov451566f2005-03-19 01:10:05 -050034#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <asm/io.h>
36#include <acpi/acpi_bus.h>
37#include <acpi/acpi_drivers.h>
38#include <acpi/actypes.h>
39
40#define _COMPONENT ACPI_EC_COMPONENT
Len Brownf52fd662007-02-12 22:42:12 -050041ACPI_MODULE_NAME("ec");
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#define ACPI_EC_COMPONENT 0x00100000
43#define ACPI_EC_CLASS "embedded_controller"
44#define ACPI_EC_HID "PNP0C09"
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#define ACPI_EC_DEVICE_NAME "Embedded Controller"
46#define ACPI_EC_FILE_INFO "info"
Alexey Starikovskiyaf3fd142006-12-07 18:42:16 +030047#undef PREFIX
48#define PREFIX "ACPI: EC: "
Denis M. Sadykov703959d2006-09-26 19:50:33 +040049/* EC status register */
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#define ACPI_EC_FLAG_OBF 0x01 /* Output buffer full */
51#define ACPI_EC_FLAG_IBF 0x02 /* Input buffer full */
Dmitry Torokhov451566f2005-03-19 01:10:05 -050052#define ACPI_EC_FLAG_BURST 0x10 /* burst mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#define ACPI_EC_FLAG_SCI 0x20 /* EC-SCI occurred */
Denis M. Sadykov703959d2006-09-26 19:50:33 +040054/* EC commands */
Alexey Starikovskiy3261ff42006-12-07 18:42:17 +030055enum ec_command {
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +030056 ACPI_EC_COMMAND_READ = 0x80,
57 ACPI_EC_COMMAND_WRITE = 0x81,
58 ACPI_EC_BURST_ENABLE = 0x82,
59 ACPI_EC_BURST_DISABLE = 0x83,
60 ACPI_EC_COMMAND_QUERY = 0x84,
Alexey Starikovskiy3261ff42006-12-07 18:42:17 +030061};
Denis M. Sadykov703959d2006-09-26 19:50:33 +040062/* EC events */
Alexey Starikovskiy3261ff42006-12-07 18:42:17 +030063enum ec_event {
Denis M. Sadykov703959d2006-09-26 19:50:33 +040064 ACPI_EC_EVENT_OBF_1 = 1, /* Output buffer full */
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +030065 ACPI_EC_EVENT_IBF_0, /* Input buffer empty */
Denis M. Sadykov703959d2006-09-26 19:50:33 +040066};
67
Alexey Starikovskiy5c406412006-12-07 18:42:16 +030068#define ACPI_EC_DELAY 500 /* Wait 500ms max. during EC ops */
Denis M. Sadykov703959d2006-09-26 19:50:33 +040069#define ACPI_EC_UDELAY_GLK 1000 /* Wait 1ms max. to get global lock */
Denis M. Sadykov703959d2006-09-26 19:50:33 +040070
Alexey Starikovskiy3261ff42006-12-07 18:42:17 +030071static enum ec_mode {
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +030072 EC_INTR = 1, /* Output buffer full */
73 EC_POLL, /* Input buffer empty */
Alexey Starikovskiy3261ff42006-12-07 18:42:17 +030074} acpi_ec_mode = EC_INTR;
Denis M. Sadykov703959d2006-09-26 19:50:33 +040075
Len Brown50526df2005-08-11 17:32:05 -040076static int acpi_ec_remove(struct acpi_device *device, int type);
77static int acpi_ec_start(struct acpi_device *device);
78static int acpi_ec_stop(struct acpi_device *device, int type);
Denis M. Sadykov703959d2006-09-26 19:50:33 +040079static int acpi_ec_add(struct acpi_device *device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
81static struct acpi_driver acpi_ec_driver = {
Len Brownc2b67052007-02-12 23:33:40 -050082 .name = "ec",
Len Brown50526df2005-08-11 17:32:05 -040083 .class = ACPI_EC_CLASS,
84 .ids = ACPI_EC_HID,
85 .ops = {
Denis M. Sadykov703959d2006-09-26 19:50:33 +040086 .add = acpi_ec_add,
Len Brown50526df2005-08-11 17:32:05 -040087 .remove = acpi_ec_remove,
88 .start = acpi_ec_start,
89 .stop = acpi_ec_stop,
90 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070091};
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +040092
93/* If we find an EC via the ECDT, we need to keep a ptr to its context */
Adrian Bunka854e082006-12-19 12:56:12 -080094static struct acpi_ec {
Denis M. Sadykov703959d2006-09-26 19:50:33 +040095 acpi_handle handle;
96 unsigned long uid;
Alexey Starikovskiya86e2772006-12-07 18:42:16 +030097 unsigned long gpe;
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +040098 unsigned long command_addr;
99 unsigned long data_addr;
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400100 unsigned long global_lock;
Alexey Starikovskiyc787a852006-12-07 18:42:16 +0300101 struct mutex lock;
Alexey Starikovskiy5d0c2882006-12-07 18:42:16 +0300102 atomic_t query_pending;
Alexey Starikovskiy9e197212007-03-07 18:29:35 -0500103 atomic_t event_count;
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400104 wait_queue_head_t wait;
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400105} *ec_ecdt;
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400106
107/* External interfaces use first EC only, so remember */
108static struct acpi_device *first_ec;
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400109
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110/* --------------------------------------------------------------------------
111 Transaction Management
112 -------------------------------------------------------------------------- */
113
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400114static inline u8 acpi_ec_read_status(struct acpi_ec *ec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115{
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400116 return inb(ec->command_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117}
118
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400119static inline u8 acpi_ec_read_data(struct acpi_ec *ec)
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400120{
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400121 return inb(ec->data_addr);
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400122}
123
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400124static inline void acpi_ec_write_cmd(struct acpi_ec *ec, u8 command)
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400125{
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400126 outb(command, ec->command_addr);
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400127}
128
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400129static inline void acpi_ec_write_data(struct acpi_ec *ec, u8 data)
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400130{
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400131 outb(data, ec->data_addr);
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400132}
133
Alexey Starikovskiy9e197212007-03-07 18:29:35 -0500134static inline int acpi_ec_check_status(struct acpi_ec *ec, enum ec_event event,
135 unsigned old_count)
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400136{
Alexey Starikovskiybec5a1e2006-12-07 18:42:16 +0300137 u8 status = acpi_ec_read_status(ec);
Alexey Starikovskiy9e197212007-03-07 18:29:35 -0500138 if (old_count == atomic_read(&ec->event_count))
139 return 0;
Alexey Starikovskiy78d0af32006-12-07 18:42:17 +0300140 if (event == ACPI_EC_EVENT_OBF_1) {
Denis M. Sadykov7c6db5e2006-09-26 19:50:33 +0400141 if (status & ACPI_EC_FLAG_OBF)
142 return 1;
Alexey Starikovskiy78d0af32006-12-07 18:42:17 +0300143 } else if (event == ACPI_EC_EVENT_IBF_0) {
Denis M. Sadykov7c6db5e2006-09-26 19:50:33 +0400144 if (!(status & ACPI_EC_FLAG_IBF))
145 return 1;
Denis M. Sadykov7c6db5e2006-09-26 19:50:33 +0400146 }
147
148 return 0;
149}
150
Alexey Starikovskiy9e197212007-03-07 18:29:35 -0500151static int acpi_ec_wait(struct acpi_ec *ec, enum ec_event event, unsigned count)
Luming Yu45bea152005-07-23 04:08:00 -0400152{
Alexey Starikovskiyaf3fd142006-12-07 18:42:16 +0300153 if (acpi_ec_mode == EC_POLL) {
Alexey Starikovskiy50c1e112006-12-07 18:42:17 +0300154 unsigned long delay = jiffies + msecs_to_jiffies(ACPI_EC_DELAY);
155 while (time_before(jiffies, delay)) {
Alexey Starikovskiy9e197212007-03-07 18:29:35 -0500156 if (acpi_ec_check_status(ec, event, 0))
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400157 return 0;
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400158 }
Alexey Starikovskiyaf3fd142006-12-07 18:42:16 +0300159 } else {
160 if (wait_event_timeout(ec->wait,
Alexey Starikovskiy9e197212007-03-07 18:29:35 -0500161 acpi_ec_check_status(ec, event, count),
Alexey Starikovskiyaf3fd142006-12-07 18:42:16 +0300162 msecs_to_jiffies(ACPI_EC_DELAY)) ||
Alexey Starikovskiy9e197212007-03-07 18:29:35 -0500163 acpi_ec_check_status(ec, event, 0)) {
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400164 return 0;
Alexey Starikovskiyaf3fd142006-12-07 18:42:16 +0300165 } else {
166 printk(KERN_ERR PREFIX "acpi_ec_wait timeout,"
167 " status = %d, expect_event = %d\n",
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300168 acpi_ec_read_status(ec), event);
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400169 }
Alexey Starikovskiyaf3fd142006-12-07 18:42:16 +0300170 }
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400171
Patrick Mocheld550d982006-06-27 00:41:40 -0400172 return -ETIME;
Dmitry Torokhov451566f2005-03-19 01:10:05 -0500173}
174
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400175static int acpi_ec_transaction_unlocked(struct acpi_ec *ec, u8 command,
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300176 const u8 * wdata, unsigned wdata_len,
177 u8 * rdata, unsigned rdata_len)
Lennart Poetteringd7a76e42006-09-05 12:12:24 -0400178{
Alexey Starikovskiyaf3fd142006-12-07 18:42:16 +0300179 int result = 0;
Alexey Starikovskiy9e197212007-03-07 18:29:35 -0500180 unsigned count = atomic_read(&ec->event_count);
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400181 acpi_ec_write_cmd(ec, command);
Lennart Poetteringd7a76e42006-09-05 12:12:24 -0400182
Alexey Starikovskiy78d0af32006-12-07 18:42:17 +0300183 for (; wdata_len > 0; --wdata_len) {
Alexey Starikovskiy9e197212007-03-07 18:29:35 -0500184 result = acpi_ec_wait(ec, ACPI_EC_EVENT_IBF_0, count);
Alexey Starikovskiyaf3fd142006-12-07 18:42:16 +0300185 if (result) {
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300186 printk(KERN_ERR PREFIX
187 "write_cmd timeout, command = %d\n", command);
Alexey Starikovskiyaf3fd142006-12-07 18:42:16 +0300188 goto end;
189 }
Alexey Starikovskiy9e197212007-03-07 18:29:35 -0500190 count = atomic_read(&ec->event_count);
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400191 acpi_ec_write_data(ec, *(wdata++));
Denis M. Sadykov3576cf62006-09-26 19:50:33 +0400192 }
Lennart Poetteringd7a76e42006-09-05 12:12:24 -0400193
Alexey Starikovskiyd91df1a2006-12-07 18:42:16 +0300194 if (!rdata_len) {
Alexey Starikovskiy9e197212007-03-07 18:29:35 -0500195 result = acpi_ec_wait(ec, ACPI_EC_EVENT_IBF_0, count);
Alexey Starikovskiyaf3fd142006-12-07 18:42:16 +0300196 if (result) {
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300197 printk(KERN_ERR PREFIX
198 "finish-write timeout, command = %d\n", command);
Alexey Starikovskiyaf3fd142006-12-07 18:42:16 +0300199 goto end;
200 }
Alexey Starikovskiy5d0c2882006-12-07 18:42:16 +0300201 } else if (command == ACPI_EC_COMMAND_QUERY) {
202 atomic_set(&ec->query_pending, 0);
Denis M. Sadykov7c6db5e2006-09-26 19:50:33 +0400203 }
Lennart Poetteringd7a76e42006-09-05 12:12:24 -0400204
Alexey Starikovskiy78d0af32006-12-07 18:42:17 +0300205 for (; rdata_len > 0; --rdata_len) {
Alexey Starikovskiy9e197212007-03-07 18:29:35 -0500206 result = acpi_ec_wait(ec, ACPI_EC_EVENT_OBF_1, count);
Alexey Starikovskiyaf3fd142006-12-07 18:42:16 +0300207 if (result) {
208 printk(KERN_ERR PREFIX "read timeout, command = %d\n",
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300209 command);
Alexey Starikovskiyaf3fd142006-12-07 18:42:16 +0300210 goto end;
211 }
Alexey Starikovskiy9e197212007-03-07 18:29:35 -0500212 count = atomic_read(&ec->event_count);
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400213 *(rdata++) = acpi_ec_read_data(ec);
Denis M. Sadykov7c6db5e2006-09-26 19:50:33 +0400214 }
Alexey Starikovskiyaf3fd142006-12-07 18:42:16 +0300215 end:
216 return result;
Lennart Poetteringd7a76e42006-09-05 12:12:24 -0400217}
218
Denis M. Sadykov3576cf62006-09-26 19:50:33 +0400219static int acpi_ec_transaction(struct acpi_ec *ec, u8 command,
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300220 const u8 * wdata, unsigned wdata_len,
221 u8 * rdata, unsigned rdata_len)
Luming Yu45bea152005-07-23 04:08:00 -0400222{
Lennart Poetteringd7a76e42006-09-05 12:12:24 -0400223 int status;
Len Brown50526df2005-08-11 17:32:05 -0400224 u32 glk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
Lennart Poetteringd7a76e42006-09-05 12:12:24 -0400226 if (!ec || (wdata_len && !wdata) || (rdata_len && !rdata))
Patrick Mocheld550d982006-06-27 00:41:40 -0400227 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300229 if (rdata)
230 memset(rdata, 0, rdata_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
Alexey Starikovskiy523953b2006-12-07 18:42:17 +0300232 mutex_lock(&ec->lock);
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400233 if (ec->global_lock) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 status = acpi_acquire_global_lock(ACPI_EC_UDELAY_GLK, &glk);
Alexey Starikovskiyc24e9122007-02-15 23:16:18 +0300235 if (ACPI_FAILURE(status)) {
236 mutex_unlock(&ec->lock);
Patrick Mocheld550d982006-06-27 00:41:40 -0400237 return -ENODEV;
Alexey Starikovskiyc24e9122007-02-15 23:16:18 +0300238 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 }
Dmitry Torokhov451566f2005-03-19 01:10:05 -0500240
Alexey Starikovskiy5d57a6a2006-12-07 18:42:16 +0300241 /* Make sure GPE is enabled before doing transaction */
Alexey Starikovskiya86e2772006-12-07 18:42:16 +0300242 acpi_enable_gpe(NULL, ec->gpe, ACPI_NOT_ISR);
Alexey Starikovskiy5d57a6a2006-12-07 18:42:16 +0300243
Alexey Starikovskiy9e197212007-03-07 18:29:35 -0500244 status = acpi_ec_wait(ec, ACPI_EC_EVENT_IBF_0, 0);
Luming Yu716e0842005-08-10 01:40:00 -0400245 if (status) {
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300246 printk(KERN_DEBUG PREFIX
247 "input buffer is not empty, aborting transaction\n");
Dmitry Torokhov451566f2005-03-19 01:10:05 -0500248 goto end;
Luming Yu716e0842005-08-10 01:40:00 -0400249 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300251 status = acpi_ec_transaction_unlocked(ec, command,
252 wdata, wdata_len,
253 rdata, rdata_len);
Len Brown50526df2005-08-11 17:32:05 -0400254
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300255 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400257 if (ec->global_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 acpi_release_global_lock(glk);
Alexey Starikovskiy523953b2006-12-07 18:42:17 +0300259 mutex_unlock(&ec->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
Patrick Mocheld550d982006-06-27 00:41:40 -0400261 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262}
263
Alexey Starikovskiyc45aac42007-03-07 22:28:00 +0300264/*
265 * Note: samsung nv5000 doesn't work with ec burst mode.
266 * http://bugzilla.kernel.org/show_bug.cgi?id=4980
267 */
268int acpi_ec_burst_enable(struct acpi_ec *ec)
269{
270 u8 d;
271 return acpi_ec_transaction(ec, ACPI_EC_BURST_ENABLE, NULL, 0, &d, 1);
272}
273
274int acpi_ec_burst_disable(struct acpi_ec *ec)
275{
276 return acpi_ec_transaction(ec, ACPI_EC_BURST_DISABLE, NULL, 0, NULL, 0);
277}
278
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300279static int acpi_ec_read(struct acpi_ec *ec, u8 address, u8 * data)
Denis M. Sadykov3576cf62006-09-26 19:50:33 +0400280{
281 int result;
282 u8 d;
283
284 result = acpi_ec_transaction(ec, ACPI_EC_COMMAND_READ,
285 &address, 1, &d, 1);
286 *data = d;
287 return result;
288}
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400289
Denis M. Sadykov3576cf62006-09-26 19:50:33 +0400290static int acpi_ec_write(struct acpi_ec *ec, u8 address, u8 data)
291{
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300292 u8 wdata[2] = { address, data };
293 return acpi_ec_transaction(ec, ACPI_EC_COMMAND_WRITE,
Denis M. Sadykov3576cf62006-09-26 19:50:33 +0400294 wdata, 2, NULL, 0);
295}
296
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297/*
298 * Externally callable EC access functions. For now, assume 1 EC only
299 */
Alexey Starikovskiyc45aac42007-03-07 22:28:00 +0300300int ec_burst_enable(void)
301{
302 struct acpi_ec *ec;
303 if (!first_ec)
304 return -ENODEV;
305 ec = acpi_driver_data(first_ec);
306 return acpi_ec_burst_enable(ec);
307}
308
309EXPORT_SYMBOL(ec_burst_enable);
310
311int ec_burst_disable(void)
312{
313 struct acpi_ec *ec;
314 if (!first_ec)
315 return -ENODEV;
316 ec = acpi_driver_data(first_ec);
317 return acpi_ec_burst_disable(ec);
318}
319
320EXPORT_SYMBOL(ec_burst_disable);
321
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300322int ec_read(u8 addr, u8 * val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323{
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400324 struct acpi_ec *ec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 int err;
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400326 u8 temp_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
328 if (!first_ec)
329 return -ENODEV;
330
331 ec = acpi_driver_data(first_ec);
332
333 err = acpi_ec_read(ec, addr, &temp_data);
334
335 if (!err) {
336 *val = temp_data;
337 return 0;
Len Brown50526df2005-08-11 17:32:05 -0400338 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 return err;
340}
Len Brown50526df2005-08-11 17:32:05 -0400341
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342EXPORT_SYMBOL(ec_read);
343
Len Brown50526df2005-08-11 17:32:05 -0400344int ec_write(u8 addr, u8 val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345{
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400346 struct acpi_ec *ec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 int err;
348
349 if (!first_ec)
350 return -ENODEV;
351
352 ec = acpi_driver_data(first_ec);
353
354 err = acpi_ec_write(ec, addr, val);
355
356 return err;
357}
Len Brown50526df2005-08-11 17:32:05 -0400358
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359EXPORT_SYMBOL(ec_write);
360
Randy Dunlap616362d2006-10-27 01:47:34 -0400361int ec_transaction(u8 command,
Alexey Starikovskiy9e197212007-03-07 18:29:35 -0500362 const u8 * wdata, unsigned wdata_len,
363 u8 * rdata, unsigned rdata_len)
Luming Yu45bea152005-07-23 04:08:00 -0400364{
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400365 struct acpi_ec *ec;
Lennart Poetteringd7a76e42006-09-05 12:12:24 -0400366
367 if (!first_ec)
368 return -ENODEV;
369
370 ec = acpi_driver_data(first_ec);
371
Denis M. Sadykov3576cf62006-09-26 19:50:33 +0400372 return acpi_ec_transaction(ec, command, wdata,
373 wdata_len, rdata, rdata_len);
Luming Yu45bea152005-07-23 04:08:00 -0400374}
Luming Yu45bea152005-07-23 04:08:00 -0400375
Lennart Poetteringab9e43c2006-10-03 22:49:00 -0400376EXPORT_SYMBOL(ec_transaction);
377
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300378static int acpi_ec_query(struct acpi_ec *ec, u8 * data)
Denis M. Sadykov3576cf62006-09-26 19:50:33 +0400379{
380 int result;
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300381 u8 d;
Luming Yu45bea152005-07-23 04:08:00 -0400382
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300383 if (!ec || !data)
384 return -EINVAL;
Luming Yu45bea152005-07-23 04:08:00 -0400385
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300386 /*
387 * Query the EC to find out which _Qxx method we need to evaluate.
388 * Note that successful completion of the query causes the ACPI_EC_SCI
389 * bit to be cleared (and thus clearing the interrupt source).
390 */
Luming Yu45bea152005-07-23 04:08:00 -0400391
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300392 result = acpi_ec_transaction(ec, ACPI_EC_COMMAND_QUERY, NULL, 0, &d, 1);
393 if (result)
394 return result;
Luming Yu45bea152005-07-23 04:08:00 -0400395
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300396 if (!d)
397 return -ENODATA;
Luming Yu45bea152005-07-23 04:08:00 -0400398
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300399 *data = d;
400 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401}
402
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403/* --------------------------------------------------------------------------
404 Event Management
405 -------------------------------------------------------------------------- */
406
Len Brown50526df2005-08-11 17:32:05 -0400407static void acpi_ec_gpe_query(void *ec_cxt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408{
Alexey Starikovskiy3d02b902007-03-07 22:28:00 +0300409 struct acpi_ec *ec = ec_cxt;
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400410 u8 value = 0;
Alexey Starikovskiy5d0c2882006-12-07 18:42:16 +0300411 char object_name[8];
Luming Yu45bea152005-07-23 04:08:00 -0400412
Alexey Starikovskiy5d0c2882006-12-07 18:42:16 +0300413 if (!ec || acpi_ec_query(ec, &value))
Alexey Starikovskiye41334c2006-12-07 18:42:16 +0300414 return;
Luming Yu45bea152005-07-23 04:08:00 -0400415
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400416 snprintf(object_name, 8, "_Q%2.2X", value);
Luming Yu45bea152005-07-23 04:08:00 -0400417
Guillaume Chazarainc6e19192006-12-24 22:19:02 +0100418 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Evaluating %s", object_name));
Luming Yu45bea152005-07-23 04:08:00 -0400419
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400420 acpi_evaluate_object(ec->handle, object_name, NULL, NULL);
Luming Yu45bea152005-07-23 04:08:00 -0400421}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422
Len Brown50526df2005-08-11 17:32:05 -0400423static u32 acpi_ec_gpe_handler(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424{
Len Brown50526df2005-08-11 17:32:05 -0400425 acpi_status status = AE_OK;
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400426 u8 value;
Alexey Starikovskiy3d02b902007-03-07 22:28:00 +0300427 struct acpi_ec *ec = data;
Alexey Starikovskiy9e197212007-03-07 18:29:35 -0500428 atomic_inc(&ec->event_count);
Alexey Starikovskiy3d02b902007-03-07 22:28:00 +0300429
Denis M. Sadykov8e0341b2006-09-26 19:50:33 +0400430 if (acpi_ec_mode == EC_INTR) {
Alexey Starikovskiyaf3fd142006-12-07 18:42:16 +0300431 wake_up(&ec->wait);
Dmitry Torokhov451566f2005-03-19 01:10:05 -0500432 }
433
Alexey Starikovskiybec5a1e2006-12-07 18:42:16 +0300434 value = acpi_ec_read_status(ec);
Alexey Starikovskiy5d0c2882006-12-07 18:42:16 +0300435 if ((value & ACPI_EC_FLAG_SCI) && !atomic_read(&ec->query_pending)) {
436 atomic_set(&ec->query_pending, 1);
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300437 status =
438 acpi_os_execute(OSL_EC_BURST_HANDLER, acpi_ec_gpe_query,
439 ec);
Len Brown50526df2005-08-11 17:32:05 -0400440 }
Alexey Starikovskiye41334c2006-12-07 18:42:16 +0300441
Dmitry Torokhov451566f2005-03-19 01:10:05 -0500442 return status == AE_OK ?
Len Brown50526df2005-08-11 17:32:05 -0400443 ACPI_INTERRUPT_HANDLED : ACPI_INTERRUPT_NOT_HANDLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444}
445
446/* --------------------------------------------------------------------------
447 Address Space Management
448 -------------------------------------------------------------------------- */
449
450static acpi_status
Len Brown50526df2005-08-11 17:32:05 -0400451acpi_ec_space_setup(acpi_handle region_handle,
452 u32 function, void *handler_context, void **return_context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453{
454 /*
455 * The EC object is in the handler context and is needed
456 * when calling the acpi_ec_space_handler.
457 */
Len Brown50526df2005-08-11 17:32:05 -0400458 *return_context = (function != ACPI_REGION_DEACTIVATE) ?
459 handler_context : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
461 return AE_OK;
462}
463
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464static acpi_status
Len Brown50526df2005-08-11 17:32:05 -0400465acpi_ec_space_handler(u32 function,
466 acpi_physical_address address,
467 u32 bit_width,
468 acpi_integer * value,
469 void *handler_context, void *region_context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470{
Len Brown50526df2005-08-11 17:32:05 -0400471 int result = 0;
Alexey Starikovskiy3d02b902007-03-07 22:28:00 +0300472 struct acpi_ec *ec = handler_context;
Len Brown50526df2005-08-11 17:32:05 -0400473 u64 temp = *value;
474 acpi_integer f_v = 0;
475 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 if ((address > 0xFF) || !value || !handler_context)
Patrick Mocheld550d982006-06-27 00:41:40 -0400478 return AE_BAD_PARAMETER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
Luming Yufa9cd542005-03-19 01:54:47 -0500480 if (bit_width != 8 && acpi_strict) {
Patrick Mocheld550d982006-06-27 00:41:40 -0400481 return AE_BAD_PARAMETER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 }
483
Len Brown50526df2005-08-11 17:32:05 -0400484 next_byte:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 switch (function) {
486 case ACPI_READ:
Luming Yufa9cd542005-03-19 01:54:47 -0500487 temp = 0;
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300488 result = acpi_ec_read(ec, (u8) address, (u8 *) & temp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 break;
490 case ACPI_WRITE:
Luming Yufa9cd542005-03-19 01:54:47 -0500491 result = acpi_ec_write(ec, (u8) address, (u8) temp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 break;
493 default:
494 result = -EINVAL;
495 goto out;
496 break;
497 }
498
499 bit_width -= 8;
Luming Yufa9cd542005-03-19 01:54:47 -0500500 if (bit_width) {
501 if (function == ACPI_READ)
502 f_v |= temp << 8 * i;
503 if (function == ACPI_WRITE)
504 temp >>= 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 i++;
Andrew Morton83ea7442005-03-30 22:12:13 -0500506 address++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 goto next_byte;
508 }
509
Luming Yufa9cd542005-03-19 01:54:47 -0500510 if (function == ACPI_READ) {
511 f_v |= temp << 8 * i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 *value = f_v;
513 }
514
Len Brown50526df2005-08-11 17:32:05 -0400515 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 switch (result) {
517 case -EINVAL:
Patrick Mocheld550d982006-06-27 00:41:40 -0400518 return AE_BAD_PARAMETER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 break;
520 case -ENODEV:
Patrick Mocheld550d982006-06-27 00:41:40 -0400521 return AE_NOT_FOUND;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 break;
523 case -ETIME:
Patrick Mocheld550d982006-06-27 00:41:40 -0400524 return AE_TIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 break;
526 default:
Patrick Mocheld550d982006-06-27 00:41:40 -0400527 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529}
530
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531/* --------------------------------------------------------------------------
532 FS Interface (/proc)
533 -------------------------------------------------------------------------- */
534
Len Brown50526df2005-08-11 17:32:05 -0400535static struct proc_dir_entry *acpi_ec_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
Len Brown50526df2005-08-11 17:32:05 -0400537static int acpi_ec_read_info(struct seq_file *seq, void *offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538{
Alexey Starikovskiy3d02b902007-03-07 22:28:00 +0300539 struct acpi_ec *ec = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 if (!ec)
542 goto end;
543
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300544 seq_printf(seq, "gpe: 0x%02x\n", (u32) ec->gpe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 seq_printf(seq, "ports: 0x%02x, 0x%02x\n",
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300546 (u32) ec->command_addr, (u32) ec->data_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 seq_printf(seq, "use global lock: %s\n",
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400548 ec->global_lock ? "yes" : "no");
Alexey Starikovskiya86e2772006-12-07 18:42:16 +0300549 acpi_enable_gpe(NULL, ec->gpe, ACPI_NOT_ISR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
Len Brown50526df2005-08-11 17:32:05 -0400551 end:
Patrick Mocheld550d982006-06-27 00:41:40 -0400552 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553}
554
555static int acpi_ec_info_open_fs(struct inode *inode, struct file *file)
556{
557 return single_open(file, acpi_ec_read_info, PDE(inode)->data);
558}
559
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400560static struct file_operations acpi_ec_info_ops = {
Len Brown50526df2005-08-11 17:32:05 -0400561 .open = acpi_ec_info_open_fs,
562 .read = seq_read,
563 .llseek = seq_lseek,
564 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 .owner = THIS_MODULE,
566};
567
Len Brown50526df2005-08-11 17:32:05 -0400568static int acpi_ec_add_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569{
Len Brown50526df2005-08-11 17:32:05 -0400570 struct proc_dir_entry *entry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 if (!acpi_device_dir(device)) {
573 acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device),
Len Brown50526df2005-08-11 17:32:05 -0400574 acpi_ec_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 if (!acpi_device_dir(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400576 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 }
578
579 entry = create_proc_entry(ACPI_EC_FILE_INFO, S_IRUGO,
Len Brown50526df2005-08-11 17:32:05 -0400580 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -0400582 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 else {
584 entry->proc_fops = &acpi_ec_info_ops;
585 entry->data = acpi_driver_data(device);
586 entry->owner = THIS_MODULE;
587 }
588
Patrick Mocheld550d982006-06-27 00:41:40 -0400589 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590}
591
Len Brown50526df2005-08-11 17:32:05 -0400592static int acpi_ec_remove_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
595 if (acpi_device_dir(device)) {
596 remove_proc_entry(ACPI_EC_FILE_INFO, acpi_device_dir(device));
597 remove_proc_entry(acpi_device_bid(device), acpi_ec_dir);
598 acpi_device_dir(device) = NULL;
599 }
600
Patrick Mocheld550d982006-06-27 00:41:40 -0400601 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602}
603
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604/* --------------------------------------------------------------------------
605 Driver Interface
606 -------------------------------------------------------------------------- */
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300607static acpi_status
608ec_parse_io_ports(struct acpi_resource *resource, void *context);
609
610static acpi_status
611ec_parse_device(acpi_handle handle, u32 Level, void *context, void **retval);
612
613static struct acpi_ec *make_acpi_ec(void)
614{
615 struct acpi_ec *ec = kzalloc(sizeof(struct acpi_ec), GFP_KERNEL);
616 if (!ec)
617 return NULL;
618
619 atomic_set(&ec->query_pending, 0);
620 atomic_set(&ec->event_count, 1);
621 mutex_init(&ec->lock);
622 init_waitqueue_head(&ec->wait);
623
624 return ec;
625}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400627static int acpi_ec_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628{
Len Brown50526df2005-08-11 17:32:05 -0400629 acpi_status status = AE_OK;
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400630 struct acpi_ec *ec = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400633 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300635 strcpy(acpi_device_name(device), ACPI_EC_DEVICE_NAME);
636 strcpy(acpi_device_class(device), ACPI_EC_CLASS);
637
638 ec = make_acpi_ec();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 if (!ec)
Patrick Mocheld550d982006-06-27 00:41:40 -0400640 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300642 status = ec_parse_device(device->handle, 0, ec, NULL);
643 if (status != AE_CTRL_TERMINATE) {
644 kfree(ec);
645 return -EINVAL;
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400646 }
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300647
648 /* Check if we found the boot EC */
649 if (ec_ecdt) {
650 if (ec_ecdt->gpe == ec->gpe) {
651 /* We might have incorrect info for GL at boot time */
652 mutex_lock(&ec_ecdt->lock);
653 ec_ecdt->global_lock = ec->global_lock;
654 mutex_unlock(&ec_ecdt->lock);
655 kfree(ec);
656 ec = ec_ecdt;
657 }
658 }
659
660 ec->handle = device->handle;
661
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 acpi_driver_data(device) = ec;
663
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300664 if (!first_ec)
665 first_ec = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300667 acpi_ec_add_fs(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400669 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "%s [%s] (gpe %d) interrupt mode.",
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300670 acpi_device_name(device), acpi_device_bid(device),
671 (u32) ec->gpe));
Luming Yu45bea152005-07-23 04:08:00 -0400672
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300673 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674}
675
Len Brown50526df2005-08-11 17:32:05 -0400676static int acpi_ec_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677{
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400678 struct acpi_ec *ec = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400681 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
683 ec = acpi_driver_data(device);
684
685 acpi_ec_remove_fs(device);
686
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300687 acpi_driver_data(device) = NULL;
688 if (device == first_ec)
689 first_ec = NULL;
690
691 /* Don't touch boot EC */
692 if (ec_ecdt != ec)
693 kfree(ec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694
Patrick Mocheld550d982006-06-27 00:41:40 -0400695 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696}
697
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698static acpi_status
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300699ec_parse_io_ports(struct acpi_resource *resource, void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700{
Alexey Starikovskiy3d02b902007-03-07 22:28:00 +0300701 struct acpi_ec *ec = context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
Bob Moore50eca3e2005-09-30 19:03:00 -0400703 if (resource->type != ACPI_RESOURCE_TYPE_IO) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 return AE_OK;
705 }
706
707 /*
708 * The first address region returned is the data port, and
709 * the second address region returned is the status/command
710 * port.
711 */
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400712 if (ec->data_addr == 0) {
713 ec->data_addr = resource->data.io.minimum;
714 } else if (ec->command_addr == 0) {
715 ec->command_addr = resource->data.io.minimum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 } else {
717 return AE_CTRL_TERMINATE;
718 }
719
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 return AE_OK;
721}
722
Alexey Starikovskiye8284322007-03-07 22:28:00 +0300723static int ec_install_handlers(struct acpi_ec *ec)
724{
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300725 acpi_status status;
726 status = acpi_install_gpe_handler(NULL, ec->gpe,
727 ACPI_GPE_EDGE_TRIGGERED,
728 &acpi_ec_gpe_handler, ec);
Alexey Starikovskiye8284322007-03-07 22:28:00 +0300729 if (ACPI_FAILURE(status))
730 return -ENODEV;
731 acpi_set_gpe_type(NULL, ec->gpe, ACPI_GPE_TYPE_RUNTIME);
732 acpi_enable_gpe(NULL, ec->gpe, ACPI_NOT_ISR);
733
734 status = acpi_install_address_space_handler(ec->handle,
735 ACPI_ADR_SPACE_EC,
736 &acpi_ec_space_handler,
737 &acpi_ec_space_setup, ec);
738 if (ACPI_FAILURE(status)) {
739 acpi_remove_gpe_handler(NULL, ec->gpe, &acpi_ec_gpe_handler);
740 return -ENODEV;
741 }
742
743 return 0;
744}
745
Len Brown50526df2005-08-11 17:32:05 -0400746static int acpi_ec_start(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747{
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300748 struct acpi_ec *ec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400751 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752
753 ec = acpi_driver_data(device);
754
755 if (!ec)
Patrick Mocheld550d982006-06-27 00:41:40 -0400756 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400758 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "gpe=0x%02lx, ports=0x%2lx,0x%2lx",
Alexey Starikovskiya86e2772006-12-07 18:42:16 +0300759 ec->gpe, ec->command_addr, ec->data_addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300761 /* Boot EC is already working */
762 if (ec == ec_ecdt)
763 return 0;
764
Alexey Starikovskiye8284322007-03-07 22:28:00 +0300765 return ec_install_handlers(ec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766}
767
Len Brown50526df2005-08-11 17:32:05 -0400768static int acpi_ec_stop(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769{
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300770 acpi_status status;
771 struct acpi_ec *ec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400774 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
776 ec = acpi_driver_data(device);
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300777 if (!ec)
778 return -EINVAL;
779
780 /* Don't touch boot EC */
781 if (ec == ec_ecdt)
782 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400784 status = acpi_remove_address_space_handler(ec->handle,
Len Brown50526df2005-08-11 17:32:05 -0400785 ACPI_ADR_SPACE_EC,
786 &acpi_ec_space_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400788 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300790 status = acpi_remove_gpe_handler(NULL, ec->gpe, &acpi_ec_gpe_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400792 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793
Patrick Mocheld550d982006-06-27 00:41:40 -0400794 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795}
796
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300797static acpi_status
798ec_parse_device(acpi_handle handle, u32 Level, void *context, void **retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799{
Len Brown50526df2005-08-11 17:32:05 -0400800 acpi_status status;
Luming Yu45bea152005-07-23 04:08:00 -0400801
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300802 struct acpi_ec *ec = context;
803 status = acpi_walk_resources(handle, METHOD_NAME__CRS,
804 ec_parse_io_ports, ec);
Luming Yu45bea152005-07-23 04:08:00 -0400805 if (ACPI_FAILURE(status))
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300806 return status;
Luming Yu45bea152005-07-23 04:08:00 -0400807
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300808 /* Get GPE bit assignment (EC events). */
809 /* TODO: Add support for _GPE returning a package */
810 status = acpi_evaluate_integer(handle, "_GPE", NULL, &ec->gpe);
811 if (ACPI_FAILURE(status))
812 return status;
Luming Yu45bea152005-07-23 04:08:00 -0400813
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300814 /* Use the global lock for all EC transactions? */
815 acpi_evaluate_integer(handle, "_GLK", NULL, &ec->global_lock);
Luming Yu45bea152005-07-23 04:08:00 -0400816
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300817 ec->handle = handle;
Luming Yu45bea152005-07-23 04:08:00 -0400818
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300819 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "GPE=0x%02lx, ports=0x%2lx, 0x%2lx",
820 ec->gpe, ec->command_addr, ec->data_addr));
821
822 return AE_CTRL_TERMINATE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823}
824
Len Brown50526df2005-08-11 17:32:05 -0400825int __init acpi_ec_ecdt_probe(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826{
Len Brown50526df2005-08-11 17:32:05 -0400827 int ret;
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300828 acpi_status status;
829 struct acpi_table_ecdt *ecdt_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300831 ec_ecdt = make_acpi_ec();
832 if (!ec_ecdt)
833 return -ENOMEM;
834 /*
835 * Generate a boot ec context
836 */
837
838 status = acpi_get_table(ACPI_SIG_ECDT, 1,
839 (struct acpi_table_header **)&ecdt_ptr);
840 if (ACPI_FAILURE(status))
841 goto error;
842
843 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found ECDT"));
844
845 ec_ecdt->command_addr = ecdt_ptr->control.address;
846 ec_ecdt->data_addr = ecdt_ptr->data.address;
847 ec_ecdt->gpe = ecdt_ptr->gpe;
848 ec_ecdt->uid = ecdt_ptr->uid;
849 ec_ecdt->handle = ACPI_ROOT_OBJECT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
Alexey Starikovskiye8284322007-03-07 22:28:00 +0300851 ret = ec_install_handlers(ec_ecdt);
852 if (!ret)
853 return 0;
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300854 error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 kfree(ec_ecdt);
856 ec_ecdt = NULL;
857
858 return -ENODEV;
859}
860
Len Brown50526df2005-08-11 17:32:05 -0400861static int __init acpi_ec_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862{
Len Brown50526df2005-08-11 17:32:05 -0400863 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 if (acpi_disabled)
Patrick Mocheld550d982006-06-27 00:41:40 -0400866 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867
868 acpi_ec_dir = proc_mkdir(ACPI_EC_CLASS, acpi_root_dir);
869 if (!acpi_ec_dir)
Patrick Mocheld550d982006-06-27 00:41:40 -0400870 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871
872 /* Now register the driver for the EC */
873 result = acpi_bus_register_driver(&acpi_ec_driver);
874 if (result < 0) {
875 remove_proc_entry(ACPI_EC_CLASS, acpi_root_dir);
Patrick Mocheld550d982006-06-27 00:41:40 -0400876 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 }
878
Patrick Mocheld550d982006-06-27 00:41:40 -0400879 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880}
881
882subsys_initcall(acpi_ec_init);
883
884/* EC driver currently not unloadable */
885#if 0
Len Brown50526df2005-08-11 17:32:05 -0400886static void __exit acpi_ec_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888
889 acpi_bus_unregister_driver(&acpi_ec_driver);
890
891 remove_proc_entry(ACPI_EC_CLASS, acpi_root_dir);
892
Patrick Mocheld550d982006-06-27 00:41:40 -0400893 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894}
Len Brown50526df2005-08-11 17:32:05 -0400895#endif /* 0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896
Len Brown02b28a32005-12-05 16:33:04 -0500897static int __init acpi_ec_set_intr_mode(char *str)
Luming Yu45bea152005-07-23 04:08:00 -0400898{
Len Brown02b28a32005-12-05 16:33:04 -0500899 int intr;
Luming Yu7b15f5e2005-08-03 17:38:04 -0400900
Len Brown02b28a32005-12-05 16:33:04 -0500901 if (!get_option(&str, &intr))
Luming Yu7b15f5e2005-08-03 17:38:04 -0400902 return 0;
903
Alexey Starikovskiyc0900c32007-03-07 22:28:00 +0300904 acpi_ec_mode = (intr) ? EC_INTR : EC_POLL;
905
Alexey Starikovskiy9e197212007-03-07 18:29:35 -0500906 printk(KERN_NOTICE PREFIX "%s mode.\n", intr ? "interrupt" : "polling");
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400907
OGAWA Hirofumi9b410462006-03-31 02:30:33 -0800908 return 1;
Luming Yu45bea152005-07-23 04:08:00 -0400909}
Len Brown50526df2005-08-11 17:32:05 -0400910
Len Brown53f11d42005-12-05 16:46:36 -0500911__setup("ec_intr=", acpi_ec_set_intr_mode);