blob: 399cedf2cfa625ce8afa00b82b5c5623581c1157 [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 Brownc2b6705b2007-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 -------------------------------------------------------------------------- */
607
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400608static int acpi_ec_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609{
Len Brown50526df2005-08-11 17:32:05 -0400610 int result = 0;
611 acpi_status status = AE_OK;
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400612 struct acpi_ec *ec = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400615 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
Burman Yan36bcbec2006-12-19 12:56:11 -0800617 ec = kzalloc(sizeof(struct acpi_ec), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 if (!ec)
Patrick Mocheld550d982006-06-27 00:41:40 -0400619 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400621 ec->handle = device->handle;
622 ec->uid = -1;
Alexey Starikovskiyc787a852006-12-07 18:42:16 +0300623 mutex_init(&ec->lock);
Alexey Starikovskiy5d0c2882006-12-07 18:42:16 +0300624 atomic_set(&ec->query_pending, 0);
Alexey Starikovskiy9e197212007-03-07 18:29:35 -0500625 atomic_set(&ec->event_count, 1);
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400626 if (acpi_ec_mode == EC_INTR) {
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400627 init_waitqueue_head(&ec->wait);
628 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 strcpy(acpi_device_name(device), ACPI_EC_DEVICE_NAME);
630 strcpy(acpi_device_class(device), ACPI_EC_CLASS);
631 acpi_driver_data(device) = ec;
632
633 /* Use the global lock for all EC transactions? */
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300634 acpi_evaluate_integer(ec->handle, "_GLK", NULL, &ec->global_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
Jiri Slabyff2fc3e2006-03-28 17:04:00 -0500636 /* XXX we don't test uids, because on some boxes ecdt uid = 0, see:
637 http://bugzilla.kernel.org/show_bug.cgi?id=6111 */
638 if (ec_ecdt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 acpi_remove_address_space_handler(ACPI_ROOT_OBJECT,
Len Brown50526df2005-08-11 17:32:05 -0400640 ACPI_ADR_SPACE_EC,
641 &acpi_ec_space_handler);
642
Alexey Starikovskiya86e2772006-12-07 18:42:16 +0300643 acpi_remove_gpe_handler(NULL, ec_ecdt->gpe,
Len Brown50526df2005-08-11 17:32:05 -0400644 &acpi_ec_gpe_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645
646 kfree(ec_ecdt);
647 }
648
649 /* Get GPE bit assignment (EC events). */
650 /* TODO: Add support for _GPE returning a package */
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300651 status = acpi_evaluate_integer(ec->handle, "_GPE", NULL, &ec->gpe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 if (ACPI_FAILURE(status)) {
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300653 ACPI_EXCEPTION((AE_INFO, status,
654 "Obtaining GPE bit assignment"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 result = -ENODEV;
656 goto end;
657 }
658
659 result = acpi_ec_add_fs(device);
660 if (result)
661 goto end;
662
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400663 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "%s [%s] (gpe %d) interrupt mode.",
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300664 acpi_device_name(device), acpi_device_bid(device),
665 (u32) ec->gpe));
Luming Yu45bea152005-07-23 04:08:00 -0400666
667 if (!first_ec)
668 first_ec = device;
669
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300670 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 if (result)
672 kfree(ec);
673
Patrick Mocheld550d982006-06-27 00:41:40 -0400674 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675}
676
Len Brown50526df2005-08-11 17:32:05 -0400677static int acpi_ec_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678{
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400679 struct acpi_ec *ec = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400682 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683
684 ec = acpi_driver_data(device);
685
686 acpi_ec_remove_fs(device);
687
688 kfree(ec);
689
Patrick Mocheld550d982006-06-27 00:41:40 -0400690 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691}
692
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693static acpi_status
Len Brown50526df2005-08-11 17:32:05 -0400694acpi_ec_io_ports(struct acpi_resource *resource, void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695{
Alexey Starikovskiy3d02b902007-03-07 22:28:00 +0300696 struct acpi_ec *ec = context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697
Bob Moore50eca3e2005-09-30 19:03:00 -0400698 if (resource->type != ACPI_RESOURCE_TYPE_IO) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 return AE_OK;
700 }
701
702 /*
703 * The first address region returned is the data port, and
704 * the second address region returned is the status/command
705 * port.
706 */
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400707 if (ec->data_addr == 0) {
708 ec->data_addr = resource->data.io.minimum;
709 } else if (ec->command_addr == 0) {
710 ec->command_addr = resource->data.io.minimum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 } else {
712 return AE_CTRL_TERMINATE;
713 }
714
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 return AE_OK;
716}
717
Alexey Starikovskiye8284322007-03-07 22:28:00 +0300718static int ec_install_handlers(struct acpi_ec *ec)
719{
720 acpi_status status = acpi_install_gpe_handler(NULL, ec->gpe,
721 ACPI_GPE_EDGE_TRIGGERED,
722 &acpi_ec_gpe_handler, ec);
723 if (ACPI_FAILURE(status))
724 return -ENODEV;
725 acpi_set_gpe_type(NULL, ec->gpe, ACPI_GPE_TYPE_RUNTIME);
726 acpi_enable_gpe(NULL, ec->gpe, ACPI_NOT_ISR);
727
728 status = acpi_install_address_space_handler(ec->handle,
729 ACPI_ADR_SPACE_EC,
730 &acpi_ec_space_handler,
731 &acpi_ec_space_setup, ec);
732 if (ACPI_FAILURE(status)) {
733 acpi_remove_gpe_handler(NULL, ec->gpe, &acpi_ec_gpe_handler);
734 return -ENODEV;
735 }
736
737 return 0;
738}
739
Len Brown50526df2005-08-11 17:32:05 -0400740static int acpi_ec_start(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741{
Len Brown50526df2005-08-11 17:32:05 -0400742 acpi_status status = AE_OK;
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400743 struct acpi_ec *ec = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400746 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747
748 ec = acpi_driver_data(device);
749
750 if (!ec)
Patrick Mocheld550d982006-06-27 00:41:40 -0400751 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752
753 /*
754 * Get I/O port addresses. Convert to GAS format.
755 */
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400756 status = acpi_walk_resources(ec->handle, METHOD_NAME__CRS,
Len Brown50526df2005-08-11 17:32:05 -0400757 acpi_ec_io_ports, ec);
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400758 if (ACPI_FAILURE(status) || ec->command_addr == 0) {
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400759 ACPI_EXCEPTION((AE_INFO, status,
760 "Error getting I/O port addresses"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400761 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 }
763
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400764 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "gpe=0x%02lx, ports=0x%2lx,0x%2lx",
Alexey Starikovskiya86e2772006-12-07 18:42:16 +0300765 ec->gpe, ec->command_addr, ec->data_addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
Alexey Starikovskiye8284322007-03-07 22:28:00 +0300767 return ec_install_handlers(ec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768}
769
Len Brown50526df2005-08-11 17:32:05 -0400770static int acpi_ec_stop(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771{
Len Brown50526df2005-08-11 17:32:05 -0400772 acpi_status status = AE_OK;
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400773 struct acpi_ec *ec = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400776 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777
778 ec = acpi_driver_data(device);
779
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400780 status = acpi_remove_address_space_handler(ec->handle,
Len Brown50526df2005-08-11 17:32:05 -0400781 ACPI_ADR_SPACE_EC,
782 &acpi_ec_space_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400784 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300786 status = acpi_remove_gpe_handler(NULL, ec->gpe, &acpi_ec_gpe_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
Patrick Mocheld550d982006-06-27 00:41:40 -0400790 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791}
792
Len Brown50526df2005-08-11 17:32:05 -0400793static int __init acpi_ec_get_real_ecdt(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794{
Len Brown50526df2005-08-11 17:32:05 -0400795 acpi_status status;
796 struct acpi_table_ecdt *ecdt_ptr;
Luming Yu45bea152005-07-23 04:08:00 -0400797
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +0300798 status = acpi_get_table(ACPI_SIG_ECDT, 1,
799 (struct acpi_table_header **)&ecdt_ptr);
Luming Yu45bea152005-07-23 04:08:00 -0400800 if (ACPI_FAILURE(status))
801 return -ENODEV;
802
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400803 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found ECDT"));
Luming Yu45bea152005-07-23 04:08:00 -0400804
805 /*
806 * Generate a temporary ec context to use until the namespace is scanned
807 */
Burman Yan36bcbec2006-12-19 12:56:11 -0800808 ec_ecdt = kzalloc(sizeof(struct acpi_ec), GFP_KERNEL);
Luming Yu45bea152005-07-23 04:08:00 -0400809 if (!ec_ecdt)
810 return -ENOMEM;
Luming Yu45bea152005-07-23 04:08:00 -0400811
Alexey Starikovskiyc787a852006-12-07 18:42:16 +0300812 mutex_init(&ec_ecdt->lock);
Alexey Starikovskiy9e197212007-03-07 18:29:35 -0500813 atomic_set(&ec_ecdt->event_count, 1);
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400814 if (acpi_ec_mode == EC_INTR) {
815 init_waitqueue_head(&ec_ecdt->wait);
816 }
Alexey Starikovskiyad363f82007-02-02 19:48:22 +0300817 ec_ecdt->command_addr = ecdt_ptr->control.address;
818 ec_ecdt->data_addr = ecdt_ptr->data.address;
819 ec_ecdt->gpe = ecdt_ptr->gpe;
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400820 ec_ecdt->uid = ecdt_ptr->uid;
Luming Yu45bea152005-07-23 04:08:00 -0400821
Alexey Starikovskiye8284322007-03-07 22:28:00 +0300822 ec_ecdt->handle = ACPI_ROOT_OBJECT;
Luming Yu45bea152005-07-23 04:08:00 -0400823 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824}
825
Len Brown50526df2005-08-11 17:32:05 -0400826int __init acpi_ec_ecdt_probe(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827{
Len Brown50526df2005-08-11 17:32:05 -0400828 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
830 ret = acpi_ec_get_real_ecdt();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 if (ret)
832 return 0;
833
Alexey Starikovskiye8284322007-03-07 22:28:00 +0300834 ret = ec_install_handlers(ec_ecdt);
835 if (!ret)
836 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 kfree(ec_ecdt);
839 ec_ecdt = NULL;
840
841 return -ENODEV;
842}
843
Len Brown50526df2005-08-11 17:32:05 -0400844static int __init acpi_ec_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845{
Len Brown50526df2005-08-11 17:32:05 -0400846 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 if (acpi_disabled)
Patrick Mocheld550d982006-06-27 00:41:40 -0400849 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
851 acpi_ec_dir = proc_mkdir(ACPI_EC_CLASS, acpi_root_dir);
852 if (!acpi_ec_dir)
Patrick Mocheld550d982006-06-27 00:41:40 -0400853 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854
855 /* Now register the driver for the EC */
856 result = acpi_bus_register_driver(&acpi_ec_driver);
857 if (result < 0) {
858 remove_proc_entry(ACPI_EC_CLASS, acpi_root_dir);
Patrick Mocheld550d982006-06-27 00:41:40 -0400859 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 }
861
Patrick Mocheld550d982006-06-27 00:41:40 -0400862 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863}
864
865subsys_initcall(acpi_ec_init);
866
867/* EC driver currently not unloadable */
868#if 0
Len Brown50526df2005-08-11 17:32:05 -0400869static void __exit acpi_ec_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871
872 acpi_bus_unregister_driver(&acpi_ec_driver);
873
874 remove_proc_entry(ACPI_EC_CLASS, acpi_root_dir);
875
Patrick Mocheld550d982006-06-27 00:41:40 -0400876 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877}
Len Brown50526df2005-08-11 17:32:05 -0400878#endif /* 0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879
Len Brown02b28a32005-12-05 16:33:04 -0500880static int __init acpi_ec_set_intr_mode(char *str)
Luming Yu45bea152005-07-23 04:08:00 -0400881{
Len Brown02b28a32005-12-05 16:33:04 -0500882 int intr;
Luming Yu7b15f5e2005-08-03 17:38:04 -0400883
Len Brown02b28a32005-12-05 16:33:04 -0500884 if (!get_option(&str, &intr))
Luming Yu7b15f5e2005-08-03 17:38:04 -0400885 return 0;
886
Len Brown02b28a32005-12-05 16:33:04 -0500887 if (intr) {
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400888 acpi_ec_mode = EC_INTR;
Luming Yu7b15f5e2005-08-03 17:38:04 -0400889 } else {
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400890 acpi_ec_mode = EC_POLL;
Luming Yu7b15f5e2005-08-03 17:38:04 -0400891 }
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400892 acpi_ec_driver.ops.add = acpi_ec_add;
Alexey Starikovskiy9e197212007-03-07 18:29:35 -0500893 printk(KERN_NOTICE PREFIX "%s mode.\n", intr ? "interrupt" : "polling");
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400894
OGAWA Hirofumi9b410462006-03-31 02:30:33 -0800895 return 1;
Luming Yu45bea152005-07-23 04:08:00 -0400896}
Len Brown50526df2005-08-11 17:32:05 -0400897
Len Brown53f11d42005-12-05 16:46:36 -0500898__setup("ec_intr=", acpi_ec_set_intr_mode);