blob: e7ce6e449424a32ac2925c289583583dd264dd94 [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{
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400409 struct acpi_ec *ec = (struct acpi_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;
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400427 struct acpi_ec *ec = (struct acpi_ec *)data;
Alexey Starikovskiy9e197212007-03-07 18:29:35 -0500428 atomic_inc(&ec->event_count);
Denis M. Sadykov8e0341b2006-09-26 19:50:33 +0400429 if (acpi_ec_mode == EC_INTR) {
Alexey Starikovskiyaf3fd142006-12-07 18:42:16 +0300430 wake_up(&ec->wait);
Dmitry Torokhov451566f2005-03-19 01:10:05 -0500431 }
432
Alexey Starikovskiybec5a1e2006-12-07 18:42:16 +0300433 value = acpi_ec_read_status(ec);
Alexey Starikovskiy5d0c2882006-12-07 18:42:16 +0300434 if ((value & ACPI_EC_FLAG_SCI) && !atomic_read(&ec->query_pending)) {
435 atomic_set(&ec->query_pending, 1);
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300436 status =
437 acpi_os_execute(OSL_EC_BURST_HANDLER, acpi_ec_gpe_query,
438 ec);
Len Brown50526df2005-08-11 17:32:05 -0400439 }
Alexey Starikovskiye41334c2006-12-07 18:42:16 +0300440
Dmitry Torokhov451566f2005-03-19 01:10:05 -0500441 return status == AE_OK ?
Len Brown50526df2005-08-11 17:32:05 -0400442 ACPI_INTERRUPT_HANDLED : ACPI_INTERRUPT_NOT_HANDLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443}
444
445/* --------------------------------------------------------------------------
446 Address Space Management
447 -------------------------------------------------------------------------- */
448
449static acpi_status
Len Brown50526df2005-08-11 17:32:05 -0400450acpi_ec_space_setup(acpi_handle region_handle,
451 u32 function, void *handler_context, void **return_context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452{
453 /*
454 * The EC object is in the handler context and is needed
455 * when calling the acpi_ec_space_handler.
456 */
Len Brown50526df2005-08-11 17:32:05 -0400457 *return_context = (function != ACPI_REGION_DEACTIVATE) ?
458 handler_context : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
460 return AE_OK;
461}
462
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463static acpi_status
Len Brown50526df2005-08-11 17:32:05 -0400464acpi_ec_space_handler(u32 function,
465 acpi_physical_address address,
466 u32 bit_width,
467 acpi_integer * value,
468 void *handler_context, void *region_context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469{
Len Brown50526df2005-08-11 17:32:05 -0400470 int result = 0;
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400471 struct acpi_ec *ec = NULL;
Len Brown50526df2005-08-11 17:32:05 -0400472 u64 temp = *value;
473 acpi_integer f_v = 0;
474 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 if ((address > 0xFF) || !value || !handler_context)
Patrick Mocheld550d982006-06-27 00:41:40 -0400477 return AE_BAD_PARAMETER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
Luming Yufa9cd542005-03-19 01:54:47 -0500479 if (bit_width != 8 && acpi_strict) {
Patrick Mocheld550d982006-06-27 00:41:40 -0400480 return AE_BAD_PARAMETER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 }
482
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400483 ec = (struct acpi_ec *)handler_context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
Len Brown50526df2005-08-11 17:32:05 -0400485 next_byte:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 switch (function) {
487 case ACPI_READ:
Luming Yufa9cd542005-03-19 01:54:47 -0500488 temp = 0;
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300489 result = acpi_ec_read(ec, (u8) address, (u8 *) & temp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 break;
491 case ACPI_WRITE:
Luming Yufa9cd542005-03-19 01:54:47 -0500492 result = acpi_ec_write(ec, (u8) address, (u8) temp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 break;
494 default:
495 result = -EINVAL;
496 goto out;
497 break;
498 }
499
500 bit_width -= 8;
Luming Yufa9cd542005-03-19 01:54:47 -0500501 if (bit_width) {
502 if (function == ACPI_READ)
503 f_v |= temp << 8 * i;
504 if (function == ACPI_WRITE)
505 temp >>= 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 i++;
Andrew Morton83ea7442005-03-30 22:12:13 -0500507 address++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 goto next_byte;
509 }
510
Luming Yufa9cd542005-03-19 01:54:47 -0500511 if (function == ACPI_READ) {
512 f_v |= temp << 8 * i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 *value = f_v;
514 }
515
Len Brown50526df2005-08-11 17:32:05 -0400516 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 switch (result) {
518 case -EINVAL:
Patrick Mocheld550d982006-06-27 00:41:40 -0400519 return AE_BAD_PARAMETER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 break;
521 case -ENODEV:
Patrick Mocheld550d982006-06-27 00:41:40 -0400522 return AE_NOT_FOUND;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 break;
524 case -ETIME:
Patrick Mocheld550d982006-06-27 00:41:40 -0400525 return AE_TIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 break;
527 default:
Patrick Mocheld550d982006-06-27 00:41:40 -0400528 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530}
531
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532/* --------------------------------------------------------------------------
533 FS Interface (/proc)
534 -------------------------------------------------------------------------- */
535
Len Brown50526df2005-08-11 17:32:05 -0400536static struct proc_dir_entry *acpi_ec_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
Len Brown50526df2005-08-11 17:32:05 -0400538static int acpi_ec_read_info(struct seq_file *seq, void *offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539{
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400540 struct acpi_ec *ec = (struct acpi_ec *)seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 if (!ec)
543 goto end;
544
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300545 seq_printf(seq, "gpe: 0x%02x\n", (u32) ec->gpe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 seq_printf(seq, "ports: 0x%02x, 0x%02x\n",
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300547 (u32) ec->command_addr, (u32) ec->data_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 seq_printf(seq, "use global lock: %s\n",
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400549 ec->global_lock ? "yes" : "no");
Alexey Starikovskiya86e2772006-12-07 18:42:16 +0300550 acpi_enable_gpe(NULL, ec->gpe, ACPI_NOT_ISR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551
Len Brown50526df2005-08-11 17:32:05 -0400552 end:
Patrick Mocheld550d982006-06-27 00:41:40 -0400553 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554}
555
556static int acpi_ec_info_open_fs(struct inode *inode, struct file *file)
557{
558 return single_open(file, acpi_ec_read_info, PDE(inode)->data);
559}
560
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400561static struct file_operations acpi_ec_info_ops = {
Len Brown50526df2005-08-11 17:32:05 -0400562 .open = acpi_ec_info_open_fs,
563 .read = seq_read,
564 .llseek = seq_lseek,
565 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 .owner = THIS_MODULE,
567};
568
Len Brown50526df2005-08-11 17:32:05 -0400569static int acpi_ec_add_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570{
Len Brown50526df2005-08-11 17:32:05 -0400571 struct proc_dir_entry *entry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 if (!acpi_device_dir(device)) {
574 acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device),
Len Brown50526df2005-08-11 17:32:05 -0400575 acpi_ec_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 if (!acpi_device_dir(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400577 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 }
579
580 entry = create_proc_entry(ACPI_EC_FILE_INFO, S_IRUGO,
Len Brown50526df2005-08-11 17:32:05 -0400581 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -0400583 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 else {
585 entry->proc_fops = &acpi_ec_info_ops;
586 entry->data = acpi_driver_data(device);
587 entry->owner = THIS_MODULE;
588 }
589
Patrick Mocheld550d982006-06-27 00:41:40 -0400590 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591}
592
Len Brown50526df2005-08-11 17:32:05 -0400593static int acpi_ec_remove_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
596 if (acpi_device_dir(device)) {
597 remove_proc_entry(ACPI_EC_FILE_INFO, acpi_device_dir(device));
598 remove_proc_entry(acpi_device_bid(device), acpi_ec_dir);
599 acpi_device_dir(device) = NULL;
600 }
601
Patrick Mocheld550d982006-06-27 00:41:40 -0400602 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603}
604
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605/* --------------------------------------------------------------------------
606 Driver Interface
607 -------------------------------------------------------------------------- */
608
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400609static int acpi_ec_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610{
Len Brown50526df2005-08-11 17:32:05 -0400611 int result = 0;
612 acpi_status status = AE_OK;
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400613 struct acpi_ec *ec = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400616 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
Burman Yan36bcbec2006-12-19 12:56:11 -0800618 ec = kzalloc(sizeof(struct acpi_ec), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 if (!ec)
Patrick Mocheld550d982006-06-27 00:41:40 -0400620 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400622 ec->handle = device->handle;
623 ec->uid = -1;
Alexey Starikovskiyc787a852006-12-07 18:42:16 +0300624 mutex_init(&ec->lock);
Alexey Starikovskiy5d0c2882006-12-07 18:42:16 +0300625 atomic_set(&ec->query_pending, 0);
Alexey Starikovskiy9e197212007-03-07 18:29:35 -0500626 atomic_set(&ec->event_count, 1);
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400627 if (acpi_ec_mode == EC_INTR) {
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400628 init_waitqueue_head(&ec->wait);
629 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 strcpy(acpi_device_name(device), ACPI_EC_DEVICE_NAME);
631 strcpy(acpi_device_class(device), ACPI_EC_CLASS);
632 acpi_driver_data(device) = ec;
633
634 /* Use the global lock for all EC transactions? */
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300635 acpi_evaluate_integer(ec->handle, "_GLK", NULL, &ec->global_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
Jiri Slabyff2fc3e2006-03-28 17:04:00 -0500637 /* XXX we don't test uids, because on some boxes ecdt uid = 0, see:
638 http://bugzilla.kernel.org/show_bug.cgi?id=6111 */
639 if (ec_ecdt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 acpi_remove_address_space_handler(ACPI_ROOT_OBJECT,
Len Brown50526df2005-08-11 17:32:05 -0400641 ACPI_ADR_SPACE_EC,
642 &acpi_ec_space_handler);
643
Alexey Starikovskiya86e2772006-12-07 18:42:16 +0300644 acpi_remove_gpe_handler(NULL, ec_ecdt->gpe,
Len Brown50526df2005-08-11 17:32:05 -0400645 &acpi_ec_gpe_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
647 kfree(ec_ecdt);
648 }
649
650 /* Get GPE bit assignment (EC events). */
651 /* TODO: Add support for _GPE returning a package */
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300652 status = acpi_evaluate_integer(ec->handle, "_GPE", NULL, &ec->gpe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 if (ACPI_FAILURE(status)) {
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300654 ACPI_EXCEPTION((AE_INFO, status,
655 "Obtaining GPE bit assignment"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 result = -ENODEV;
657 goto end;
658 }
659
660 result = acpi_ec_add_fs(device);
661 if (result)
662 goto end;
663
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400664 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "%s [%s] (gpe %d) interrupt mode.",
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300665 acpi_device_name(device), acpi_device_bid(device),
666 (u32) ec->gpe));
Luming Yu45bea152005-07-23 04:08:00 -0400667
668 if (!first_ec)
669 first_ec = device;
670
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300671 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 if (result)
673 kfree(ec);
674
Patrick Mocheld550d982006-06-27 00:41:40 -0400675 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676}
677
Len Brown50526df2005-08-11 17:32:05 -0400678static int acpi_ec_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679{
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400680 struct acpi_ec *ec = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400683 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
685 ec = acpi_driver_data(device);
686
687 acpi_ec_remove_fs(device);
688
689 kfree(ec);
690
Patrick Mocheld550d982006-06-27 00:41:40 -0400691 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692}
693
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694static acpi_status
Len Brown50526df2005-08-11 17:32:05 -0400695acpi_ec_io_ports(struct acpi_resource *resource, void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696{
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400697 struct acpi_ec *ec = (struct acpi_ec *)context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
Bob Moore50eca3e2005-09-30 19:03:00 -0400699 if (resource->type != ACPI_RESOURCE_TYPE_IO) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 return AE_OK;
701 }
702
703 /*
704 * The first address region returned is the data port, and
705 * the second address region returned is the status/command
706 * port.
707 */
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400708 if (ec->data_addr == 0) {
709 ec->data_addr = resource->data.io.minimum;
710 } else if (ec->command_addr == 0) {
711 ec->command_addr = resource->data.io.minimum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 } else {
713 return AE_CTRL_TERMINATE;
714 }
715
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 return AE_OK;
717}
718
Len Brown50526df2005-08-11 17:32:05 -0400719static int acpi_ec_start(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720{
Len Brown50526df2005-08-11 17:32:05 -0400721 acpi_status status = AE_OK;
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400722 struct acpi_ec *ec = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400725 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
727 ec = acpi_driver_data(device);
728
729 if (!ec)
Patrick Mocheld550d982006-06-27 00:41:40 -0400730 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
732 /*
733 * Get I/O port addresses. Convert to GAS format.
734 */
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400735 status = acpi_walk_resources(ec->handle, METHOD_NAME__CRS,
Len Brown50526df2005-08-11 17:32:05 -0400736 acpi_ec_io_ports, ec);
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400737 if (ACPI_FAILURE(status) || ec->command_addr == 0) {
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400738 ACPI_EXCEPTION((AE_INFO, status,
739 "Error getting I/O port addresses"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400740 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 }
742
Denis M. Sadykov6ffb2212006-09-26 19:50:33 +0400743 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "gpe=0x%02lx, ports=0x%2lx,0x%2lx",
Alexey Starikovskiya86e2772006-12-07 18:42:16 +0300744 ec->gpe, ec->command_addr, ec->data_addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745
746 /*
747 * Install GPE handler
748 */
Alexey Starikovskiya86e2772006-12-07 18:42:16 +0300749 status = acpi_install_gpe_handler(NULL, ec->gpe,
Len Brown50526df2005-08-11 17:32:05 -0400750 ACPI_GPE_EDGE_TRIGGERED,
751 &acpi_ec_gpe_handler, ec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 if (ACPI_FAILURE(status)) {
Patrick Mocheld550d982006-06-27 00:41:40 -0400753 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 }
Alexey Starikovskiya86e2772006-12-07 18:42:16 +0300755 acpi_set_gpe_type(NULL, ec->gpe, ACPI_GPE_TYPE_RUNTIME);
756 acpi_enable_gpe(NULL, ec->gpe, ACPI_NOT_ISR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400758 status = acpi_install_address_space_handler(ec->handle,
Len Brown50526df2005-08-11 17:32:05 -0400759 ACPI_ADR_SPACE_EC,
760 &acpi_ec_space_handler,
761 &acpi_ec_space_setup, ec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 if (ACPI_FAILURE(status)) {
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300763 acpi_remove_gpe_handler(NULL, ec->gpe, &acpi_ec_gpe_handler);
Patrick Mocheld550d982006-06-27 00:41:40 -0400764 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 }
766
Patrick Mocheld550d982006-06-27 00:41:40 -0400767 return AE_OK;
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 Starikovskiyad363f82007-02-02 19:48:22 +0300822 status = acpi_get_handle(NULL, ecdt_ptr->id, &ec_ecdt->handle);
Luming Yu45bea152005-07-23 04:08:00 -0400823 if (ACPI_FAILURE(status)) {
824 goto error;
825 }
826
827 return 0;
Alexey Starikovskiy6ccedb12006-12-07 18:42:17 +0300828 error:
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400829 ACPI_EXCEPTION((AE_INFO, status, "Could not use ECDT"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 kfree(ec_ecdt);
831 ec_ecdt = NULL;
832
833 return -ENODEV;
834}
835
Len Brown50526df2005-08-11 17:32:05 -0400836int __init acpi_ec_ecdt_probe(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837{
Len Brown50526df2005-08-11 17:32:05 -0400838 acpi_status status;
839 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840
841 ret = acpi_ec_get_real_ecdt();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 if (ret)
843 return 0;
844
845 /*
846 * Install GPE handler
847 */
Alexey Starikovskiya86e2772006-12-07 18:42:16 +0300848 status = acpi_install_gpe_handler(NULL, ec_ecdt->gpe,
Len Brown50526df2005-08-11 17:32:05 -0400849 ACPI_GPE_EDGE_TRIGGERED,
850 &acpi_ec_gpe_handler, ec_ecdt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 if (ACPI_FAILURE(status)) {
852 goto error;
853 }
Alexey Starikovskiya86e2772006-12-07 18:42:16 +0300854 acpi_set_gpe_type(NULL, ec_ecdt->gpe, ACPI_GPE_TYPE_RUNTIME);
855 acpi_enable_gpe(NULL, ec_ecdt->gpe, ACPI_NOT_ISR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856
Len Brown50526df2005-08-11 17:32:05 -0400857 status = acpi_install_address_space_handler(ACPI_ROOT_OBJECT,
858 ACPI_ADR_SPACE_EC,
859 &acpi_ec_space_handler,
860 &acpi_ec_space_setup,
861 ec_ecdt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 if (ACPI_FAILURE(status)) {
Alexey Starikovskiya86e2772006-12-07 18:42:16 +0300863 acpi_remove_gpe_handler(NULL, ec_ecdt->gpe,
Len Brown50526df2005-08-11 17:32:05 -0400864 &acpi_ec_gpe_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 goto error;
866 }
867
868 return 0;
869
Len Brown50526df2005-08-11 17:32:05 -0400870 error:
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400871 ACPI_EXCEPTION((AE_INFO, status, "Could not use ECDT"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 kfree(ec_ecdt);
873 ec_ecdt = NULL;
874
875 return -ENODEV;
876}
877
Len Brown50526df2005-08-11 17:32:05 -0400878static int __init acpi_ec_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879{
Len Brown50526df2005-08-11 17:32:05 -0400880 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 if (acpi_disabled)
Patrick Mocheld550d982006-06-27 00:41:40 -0400883 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884
885 acpi_ec_dir = proc_mkdir(ACPI_EC_CLASS, acpi_root_dir);
886 if (!acpi_ec_dir)
Patrick Mocheld550d982006-06-27 00:41:40 -0400887 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888
889 /* Now register the driver for the EC */
890 result = acpi_bus_register_driver(&acpi_ec_driver);
891 if (result < 0) {
892 remove_proc_entry(ACPI_EC_CLASS, acpi_root_dir);
Patrick Mocheld550d982006-06-27 00:41:40 -0400893 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 }
895
Patrick Mocheld550d982006-06-27 00:41:40 -0400896 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897}
898
899subsys_initcall(acpi_ec_init);
900
901/* EC driver currently not unloadable */
902#if 0
Len Brown50526df2005-08-11 17:32:05 -0400903static void __exit acpi_ec_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905
906 acpi_bus_unregister_driver(&acpi_ec_driver);
907
908 remove_proc_entry(ACPI_EC_CLASS, acpi_root_dir);
909
Patrick Mocheld550d982006-06-27 00:41:40 -0400910 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911}
Len Brown50526df2005-08-11 17:32:05 -0400912#endif /* 0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913
Len Brown02b28a32005-12-05 16:33:04 -0500914static int __init acpi_ec_set_intr_mode(char *str)
Luming Yu45bea152005-07-23 04:08:00 -0400915{
Len Brown02b28a32005-12-05 16:33:04 -0500916 int intr;
Luming Yu7b15f5e2005-08-03 17:38:04 -0400917
Len Brown02b28a32005-12-05 16:33:04 -0500918 if (!get_option(&str, &intr))
Luming Yu7b15f5e2005-08-03 17:38:04 -0400919 return 0;
920
Len Brown02b28a32005-12-05 16:33:04 -0500921 if (intr) {
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400922 acpi_ec_mode = EC_INTR;
Luming Yu7b15f5e2005-08-03 17:38:04 -0400923 } else {
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400924 acpi_ec_mode = EC_POLL;
Luming Yu7b15f5e2005-08-03 17:38:04 -0400925 }
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400926 acpi_ec_driver.ops.add = acpi_ec_add;
Alexey Starikovskiy9e197212007-03-07 18:29:35 -0500927 printk(KERN_NOTICE PREFIX "%s mode.\n", intr ? "interrupt" : "polling");
Denis M. Sadykov703959d2006-09-26 19:50:33 +0400928
OGAWA Hirofumi9b410462006-03-31 02:30:33 -0800929 return 1;
Luming Yu45bea152005-07-23 04:08:00 -0400930}
Len Brown50526df2005-08-11 17:32:05 -0400931
Len Brown53f11d42005-12-05 16:46:36 -0500932__setup("ec_intr=", acpi_ec_set_intr_mode);