blob: a0dcbad97c45b8c5e3a456059f26bfb7fb39ff55 [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 Brown50526df2005-08-11 17:32:05 -040041ACPI_MODULE_NAME("acpi_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"
45#define ACPI_EC_DRIVER_NAME "ACPI Embedded Controller Driver"
46#define ACPI_EC_DEVICE_NAME "Embedded Controller"
47#define ACPI_EC_FILE_INFO "info"
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#define ACPI_EC_FLAG_OBF 0x01 /* Output buffer full */
49#define ACPI_EC_FLAG_IBF 0x02 /* Input buffer full */
Dmitry Torokhov451566f2005-03-19 01:10:05 -050050#define ACPI_EC_FLAG_BURST 0x10 /* burst mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#define ACPI_EC_FLAG_SCI 0x20 /* EC-SCI occurred */
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#define ACPI_EC_EVENT_OBF 0x01 /* Output buffer full */
53#define ACPI_EC_EVENT_IBE 0x02 /* Input buffer empty */
Dmitry Torokhov451566f2005-03-19 01:10:05 -050054#define ACPI_EC_DELAY 50 /* Wait 50ms max. during EC ops */
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#define ACPI_EC_UDELAY_GLK 1000 /* Wait 1ms max. to get global lock */
Len Brown50526df2005-08-11 17:32:05 -040056#define ACPI_EC_UDELAY 100 /* Poll @ 100us increments */
57#define ACPI_EC_UDELAY_COUNT 1000 /* Wait 10ms max. during EC ops */
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#define ACPI_EC_COMMAND_READ 0x80
59#define ACPI_EC_COMMAND_WRITE 0x81
Dmitry Torokhov451566f2005-03-19 01:10:05 -050060#define ACPI_EC_BURST_ENABLE 0x82
61#define ACPI_EC_BURST_DISABLE 0x83
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#define ACPI_EC_COMMAND_QUERY 0x84
Len Brown02b28a32005-12-05 16:33:04 -050063#define EC_POLL 0xFF
64#define EC_INTR 0x00
Len Brown50526df2005-08-11 17:32:05 -040065static int acpi_ec_remove(struct acpi_device *device, int type);
66static int acpi_ec_start(struct acpi_device *device);
67static int acpi_ec_stop(struct acpi_device *device, int type);
Len Brown02b28a32005-12-05 16:33:04 -050068static int acpi_ec_intr_add(struct acpi_device *device);
69static int acpi_ec_poll_add(struct acpi_device *device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
71static struct acpi_driver acpi_ec_driver = {
Len Brown50526df2005-08-11 17:32:05 -040072 .name = ACPI_EC_DRIVER_NAME,
73 .class = ACPI_EC_CLASS,
74 .ids = ACPI_EC_HID,
75 .ops = {
Len Brown53f11d42005-12-05 16:46:36 -050076 .add = acpi_ec_intr_add,
Len Brown50526df2005-08-11 17:32:05 -040077 .remove = acpi_ec_remove,
78 .start = acpi_ec_start,
79 .stop = acpi_ec_stop,
80 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070081};
Luming Yu45bea152005-07-23 04:08:00 -040082union acpi_ec {
83 struct {
Len Brown50526df2005-08-11 17:32:05 -040084 u32 mode;
85 acpi_handle handle;
86 unsigned long uid;
87 unsigned long gpe_bit;
88 struct acpi_generic_address status_addr;
89 struct acpi_generic_address command_addr;
90 struct acpi_generic_address data_addr;
91 unsigned long global_lock;
Luming Yu45bea152005-07-23 04:08:00 -040092 } common;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
Luming Yu45bea152005-07-23 04:08:00 -040094 struct {
Len Brown50526df2005-08-11 17:32:05 -040095 u32 mode;
96 acpi_handle handle;
97 unsigned long uid;
98 unsigned long gpe_bit;
99 struct acpi_generic_address status_addr;
100 struct acpi_generic_address command_addr;
101 struct acpi_generic_address data_addr;
102 unsigned long global_lock;
103 unsigned int expect_event;
104 atomic_t leaving_burst; /* 0 : No, 1 : Yes, 2: abort */
105 atomic_t pending_gpe;
106 struct semaphore sem;
107 wait_queue_head_t wait;
Len Brown02b28a32005-12-05 16:33:04 -0500108 } intr;
Luming Yu45bea152005-07-23 04:08:00 -0400109
110 struct {
Len Brown50526df2005-08-11 17:32:05 -0400111 u32 mode;
112 acpi_handle handle;
113 unsigned long uid;
114 unsigned long gpe_bit;
115 struct acpi_generic_address status_addr;
116 struct acpi_generic_address command_addr;
117 struct acpi_generic_address data_addr;
118 unsigned long global_lock;
Rich Townsendf9a6ee12005-12-19 23:07:00 -0500119 struct semaphore sem;
Len Brown02b28a32005-12-05 16:33:04 -0500120 } poll;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121};
122
Len Brown02b28a32005-12-05 16:33:04 -0500123static int acpi_ec_poll_wait(union acpi_ec *ec, u8 event);
124static int acpi_ec_intr_wait(union acpi_ec *ec, unsigned int event);
Lennart Poetteringd7a76e42006-09-05 12:12:24 -0400125static int acpi_ec_poll_transaction(union acpi_ec *ec, u8 command,
126 const u8 *wdata, unsigned wdata_len,
127 u8 *rdata, unsigned rdata_len);
128static int acpi_ec_intr_transaction(union acpi_ec *ec, u8 command,
129 const u8 *wdata, unsigned wdata_len,
130 u8 *rdata, unsigned rdata_len);
Len Brown02b28a32005-12-05 16:33:04 -0500131static void acpi_ec_gpe_poll_query(void *ec_cxt);
132static void acpi_ec_gpe_intr_query(void *ec_cxt);
133static u32 acpi_ec_gpe_poll_handler(void *data);
134static u32 acpi_ec_gpe_intr_handler(void *data);
Luming Yu45bea152005-07-23 04:08:00 -0400135static acpi_status __init
Len Brown02b28a32005-12-05 16:33:04 -0500136acpi_fake_ecdt_poll_callback(acpi_handle handle,
Len Brown50526df2005-08-11 17:32:05 -0400137 u32 Level, void *context, void **retval);
Luming Yu45bea152005-07-23 04:08:00 -0400138
139static acpi_status __init
Len Brown02b28a32005-12-05 16:33:04 -0500140acpi_fake_ecdt_intr_callback(acpi_handle handle,
Len Brown50526df2005-08-11 17:32:05 -0400141 u32 Level, void *context, void **retval);
Luming Yu45bea152005-07-23 04:08:00 -0400142
Len Brown02b28a32005-12-05 16:33:04 -0500143static int __init acpi_ec_poll_get_real_ecdt(void);
144static int __init acpi_ec_intr_get_real_ecdt(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145/* If we find an EC via the ECDT, we need to keep a ptr to its context */
Len Brown50526df2005-08-11 17:32:05 -0400146static union acpi_ec *ec_ecdt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
148/* External interfaces use first EC only, so remember */
149static struct acpi_device *first_ec;
Len Brown53f11d42005-12-05 16:46:36 -0500150static int acpi_ec_poll_mode = EC_INTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
152/* --------------------------------------------------------------------------
153 Transaction Management
154 -------------------------------------------------------------------------- */
155
Arjan van de Ven858119e2006-01-14 13:20:43 -0800156static u32 acpi_ec_read_status(union acpi_ec *ec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157{
Len Brown50526df2005-08-11 17:32:05 -0400158 u32 status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
Luming Yu45bea152005-07-23 04:08:00 -0400160 acpi_hw_low_level_read(8, &status, &ec->common.status_addr);
Dmitry Torokhov451566f2005-03-19 01:10:05 -0500161 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162}
163
Len Brown50526df2005-08-11 17:32:05 -0400164static int acpi_ec_wait(union acpi_ec *ec, u8 event)
Luming Yu45bea152005-07-23 04:08:00 -0400165{
Len Brown02b28a32005-12-05 16:33:04 -0500166 if (acpi_ec_poll_mode)
167 return acpi_ec_poll_wait(ec, event);
Luming Yu45bea152005-07-23 04:08:00 -0400168 else
Len Brown02b28a32005-12-05 16:33:04 -0500169 return acpi_ec_intr_wait(ec, event);
Luming Yu45bea152005-07-23 04:08:00 -0400170}
171
Len Brown02b28a32005-12-05 16:33:04 -0500172static int acpi_ec_poll_wait(union acpi_ec *ec, u8 event)
Luming Yu45bea152005-07-23 04:08:00 -0400173{
Len Brown50526df2005-08-11 17:32:05 -0400174 u32 acpi_ec_status = 0;
175 u32 i = ACPI_EC_UDELAY_COUNT;
Luming Yu45bea152005-07-23 04:08:00 -0400176
177 if (!ec)
178 return -EINVAL;
179
180 /* Poll the EC status register waiting for the event to occur. */
181 switch (event) {
182 case ACPI_EC_EVENT_OBF:
183 do {
Len Brown50526df2005-08-11 17:32:05 -0400184 acpi_hw_low_level_read(8, &acpi_ec_status,
185 &ec->common.status_addr);
Luming Yu45bea152005-07-23 04:08:00 -0400186 if (acpi_ec_status & ACPI_EC_FLAG_OBF)
187 return 0;
188 udelay(ACPI_EC_UDELAY);
Len Brown50526df2005-08-11 17:32:05 -0400189 } while (--i > 0);
Luming Yu45bea152005-07-23 04:08:00 -0400190 break;
191 case ACPI_EC_EVENT_IBE:
192 do {
Len Brown50526df2005-08-11 17:32:05 -0400193 acpi_hw_low_level_read(8, &acpi_ec_status,
194 &ec->common.status_addr);
Luming Yu45bea152005-07-23 04:08:00 -0400195 if (!(acpi_ec_status & ACPI_EC_FLAG_IBF))
196 return 0;
197 udelay(ACPI_EC_UDELAY);
Len Brown50526df2005-08-11 17:32:05 -0400198 } while (--i > 0);
Luming Yu45bea152005-07-23 04:08:00 -0400199 break;
200 default:
201 return -EINVAL;
202 }
203
204 return -ETIME;
205}
Len Brown02b28a32005-12-05 16:33:04 -0500206static int acpi_ec_intr_wait(union acpi_ec *ec, unsigned int event)
Dmitry Torokhov451566f2005-03-19 01:10:05 -0500207{
Len Brown50526df2005-08-11 17:32:05 -0400208 int result = 0;
Dmitry Torokhov451566f2005-03-19 01:10:05 -0500209
Dmitry Torokhov451566f2005-03-19 01:10:05 -0500210
Len Brown02b28a32005-12-05 16:33:04 -0500211 ec->intr.expect_event = event;
Dmitry Torokhov451566f2005-03-19 01:10:05 -0500212 smp_mb();
213
Luming Yu716e0842005-08-10 01:40:00 -0400214 switch (event) {
Luming Yu716e0842005-08-10 01:40:00 -0400215 case ACPI_EC_EVENT_IBE:
Vladimir Lebedev49fee982006-06-20 16:46:00 -0400216 if (~acpi_ec_read_status(ec) & ACPI_EC_FLAG_IBF) {
Len Brown02b28a32005-12-05 16:33:04 -0500217 ec->intr.expect_event = 0;
Patrick Mocheld550d982006-06-27 00:41:40 -0400218 return 0;
Luming Yu716e0842005-08-10 01:40:00 -0400219 }
220 break;
Luming Yu06a2a382005-09-27 00:43:00 -0400221 default:
Luming Yu716e0842005-08-10 01:40:00 -0400222 break;
223 }
224
Len Brown02b28a32005-12-05 16:33:04 -0500225 result = wait_event_timeout(ec->intr.wait,
226 !ec->intr.expect_event,
Len Brown50526df2005-08-11 17:32:05 -0400227 msecs_to_jiffies(ACPI_EC_DELAY));
228
Len Brown02b28a32005-12-05 16:33:04 -0500229 ec->intr.expect_event = 0;
Dmitry Torokhov451566f2005-03-19 01:10:05 -0500230 smp_mb();
231
Dmitry Torokhov451566f2005-03-19 01:10:05 -0500232 /*
233 * Verify that the event in question has actually happened by
234 * querying EC status. Do the check even if operation timed-out
235 * to make sure that we did not miss interrupt.
236 */
237 switch (event) {
238 case ACPI_EC_EVENT_OBF:
239 if (acpi_ec_read_status(ec) & ACPI_EC_FLAG_OBF)
Patrick Mocheld550d982006-06-27 00:41:40 -0400240 return 0;
Dmitry Torokhov451566f2005-03-19 01:10:05 -0500241 break;
242
243 case ACPI_EC_EVENT_IBE:
244 if (~acpi_ec_read_status(ec) & ACPI_EC_FLAG_IBF)
Patrick Mocheld550d982006-06-27 00:41:40 -0400245 return 0;
Dmitry Torokhov451566f2005-03-19 01:10:05 -0500246 break;
247 }
248
Patrick Mocheld550d982006-06-27 00:41:40 -0400249 return -ETIME;
Dmitry Torokhov451566f2005-03-19 01:10:05 -0500250}
251
Len Brown02b28a32005-12-05 16:33:04 -0500252#ifdef ACPI_FUTURE_USAGE
Luming Yu06a2a382005-09-27 00:43:00 -0400253/*
254 * Note: samsung nv5000 doesn't work with ec burst mode.
255 * http://bugzilla.kernel.org/show_bug.cgi?id=4980
256 */
257int acpi_ec_enter_burst_mode(union acpi_ec *ec)
Dmitry Torokhov451566f2005-03-19 01:10:05 -0500258{
Len Brown50526df2005-08-11 17:32:05 -0400259 u32 tmp = 0;
260 int status = 0;
Dmitry Torokhov451566f2005-03-19 01:10:05 -0500261
Dmitry Torokhov451566f2005-03-19 01:10:05 -0500262
263 status = acpi_ec_read_status(ec);
Len Brown50526df2005-08-11 17:32:05 -0400264 if (status != -EINVAL && !(status & ACPI_EC_FLAG_BURST)) {
Luming Yu716e0842005-08-10 01:40:00 -0400265 status = acpi_ec_wait(ec, ACPI_EC_EVENT_IBE);
Len Brown50526df2005-08-11 17:32:05 -0400266 if (status)
Luming Yu716e0842005-08-10 01:40:00 -0400267 goto end;
Len Brown50526df2005-08-11 17:32:05 -0400268 acpi_hw_low_level_write(8, ACPI_EC_BURST_ENABLE,
269 &ec->common.command_addr);
Dmitry Torokhov451566f2005-03-19 01:10:05 -0500270 status = acpi_ec_wait(ec, ACPI_EC_EVENT_OBF);
Luming Yu45bea152005-07-23 04:08:00 -0400271 acpi_hw_low_level_read(8, &tmp, &ec->common.data_addr);
Len Brown50526df2005-08-11 17:32:05 -0400272 if (tmp != 0x90) { /* Burst ACK byte */
Patrick Mocheld550d982006-06-27 00:41:40 -0400273 return -EINVAL;
Dmitry Torokhov451566f2005-03-19 01:10:05 -0500274 }
Luming Yu668d74c2005-07-23 00:26:33 -0400275 }
276
Len Brown02b28a32005-12-05 16:33:04 -0500277 atomic_set(&ec->intr.leaving_burst, 0);
Patrick Mocheld550d982006-06-27 00:41:40 -0400278 return 0;
Len Brown50526df2005-08-11 17:32:05 -0400279 end:
Thomas Renningera6fc6722006-06-26 23:58:43 -0400280 ACPI_EXCEPTION ((AE_INFO, status, "EC wait, burst mode");
Patrick Mocheld550d982006-06-27 00:41:40 -0400281 return -1;
Dmitry Torokhov451566f2005-03-19 01:10:05 -0500282}
283
Luming Yu06a2a382005-09-27 00:43:00 -0400284int acpi_ec_leave_burst_mode(union acpi_ec *ec)
Dmitry Torokhov451566f2005-03-19 01:10:05 -0500285{
Luming Yu06a2a382005-09-27 00:43:00 -0400286 int status = 0;
Dmitry Torokhov451566f2005-03-19 01:10:05 -0500287
Dmitry Torokhov451566f2005-03-19 01:10:05 -0500288
Luming Yu06a2a382005-09-27 00:43:00 -0400289 status = acpi_ec_read_status(ec);
290 if (status != -EINVAL && (status & ACPI_EC_FLAG_BURST)){
291 status = acpi_ec_wait(ec, ACPI_EC_FLAG_IBF);
292 if(status)
293 goto end;
294 acpi_hw_low_level_write(8, ACPI_EC_BURST_DISABLE, &ec->common.command_addr);
295 acpi_ec_wait(ec, ACPI_EC_FLAG_IBF);
296 }
Len Brown02b28a32005-12-05 16:33:04 -0500297 atomic_set(&ec->intr.leaving_burst, 1);
Patrick Mocheld550d982006-06-27 00:41:40 -0400298 return 0;
Luming Yu06a2a382005-09-27 00:43:00 -0400299end:
Thomas Renningera6fc6722006-06-26 23:58:43 -0400300 ACPI_EXCEPTION((AE_INFO, status, "EC leave burst mode");
Patrick Mocheld550d982006-06-27 00:41:40 -0400301 return -1;
Dmitry Torokhov451566f2005-03-19 01:10:05 -0500302}
Len Brown02b28a32005-12-05 16:33:04 -0500303#endif /* ACPI_FUTURE_USAGE */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
Lennart Poetteringd7a76e42006-09-05 12:12:24 -0400305static int acpi_ec_transaction(union acpi_ec *ec, u8 command,
306 const u8 *wdata, unsigned wdata_len,
307 u8 *rdata, unsigned rdata_len)
Luming Yu45bea152005-07-23 04:08:00 -0400308{
Len Brown02b28a32005-12-05 16:33:04 -0500309 if (acpi_ec_poll_mode)
Lennart Poetteringd7a76e42006-09-05 12:12:24 -0400310 return acpi_ec_poll_transaction(ec, command, wdata, wdata_len, rdata, rdata_len);
Luming Yu45bea152005-07-23 04:08:00 -0400311 else
Lennart Poetteringd7a76e42006-09-05 12:12:24 -0400312 return acpi_ec_intr_transaction(ec, command, wdata, wdata_len, rdata, rdata_len);
313}
314static int acpi_ec_read(union acpi_ec *ec, u8 address, u32 * data)
315{
316 int result;
317 u8 d;
318 result = acpi_ec_transaction(ec, ACPI_EC_COMMAND_READ, &address, 1, &d, 1);
319 *data = d;
320 return result;
Luming Yu45bea152005-07-23 04:08:00 -0400321}
Len Brown50526df2005-08-11 17:32:05 -0400322static int acpi_ec_write(union acpi_ec *ec, u8 address, u8 data)
Luming Yu45bea152005-07-23 04:08:00 -0400323{
Lennart Poetteringd7a76e42006-09-05 12:12:24 -0400324 u8 wdata[2] = { address, data };
325 return acpi_ec_transaction(ec, ACPI_EC_COMMAND_WRITE, wdata, 2, NULL, 0);
Luming Yu45bea152005-07-23 04:08:00 -0400326}
Lennart Poetteringd7a76e42006-09-05 12:12:24 -0400327
328static int acpi_ec_transaction_unlocked(union acpi_ec *ec, u8 command,
329 const u8 *wdata, unsigned wdata_len,
330 u8 *rdata, unsigned rdata_len)
331{
332 int result;
333
334 acpi_hw_low_level_write(8, command, &ec->common.command_addr);
335
336 result = acpi_ec_wait(ec, ACPI_EC_EVENT_IBE);
337 if (result)
338 return result;
339
340 for (; wdata_len > 0; wdata_len --) {
341
342 acpi_hw_low_level_write(8, *(wdata++), &ec->common.data_addr);
343
344 result = acpi_ec_wait(ec, ACPI_EC_EVENT_IBE);
345 if (result)
346 return result;
347 }
348
349
350 for (; rdata_len > 0; rdata_len --) {
351 u32 d;
352
353 result = acpi_ec_wait(ec, ACPI_EC_EVENT_OBF);
354 if (result)
355 return result;
356
357 acpi_hw_low_level_read(8, &d, &ec->common.data_addr);
358 *(rdata++) = (u8) d;
359 }
360
361 return 0;
362}
363
364static int acpi_ec_poll_transaction(union acpi_ec *ec, u8 command,
365 const u8 *wdata, unsigned wdata_len,
366 u8 *rdata, unsigned rdata_len)
Luming Yu45bea152005-07-23 04:08:00 -0400367{
Len Brown50526df2005-08-11 17:32:05 -0400368 acpi_status status = AE_OK;
Lennart Poetteringd7a76e42006-09-05 12:12:24 -0400369 int result;
Len Brown50526df2005-08-11 17:32:05 -0400370 u32 glk = 0;
Luming Yu45bea152005-07-23 04:08:00 -0400371
Lennart Poetteringd7a76e42006-09-05 12:12:24 -0400372 if (!ec || (wdata_len && !wdata) || (rdata_len && !rdata))
Patrick Mocheld550d982006-06-27 00:41:40 -0400373 return -EINVAL;
Luming Yu45bea152005-07-23 04:08:00 -0400374
Lennart Poetteringd7a76e42006-09-05 12:12:24 -0400375 if (rdata)
376 memset(rdata, 0, rdata_len);
Luming Yu45bea152005-07-23 04:08:00 -0400377
378 if (ec->common.global_lock) {
379 status = acpi_acquire_global_lock(ACPI_EC_UDELAY_GLK, &glk);
380 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400381 return -ENODEV;
Lennart Poetteringd7a76e42006-09-05 12:12:24 -0400382 }
Luming Yu45bea152005-07-23 04:08:00 -0400383
Rich Townsendf9a6ee12005-12-19 23:07:00 -0500384 if (down_interruptible(&ec->poll.sem)) {
385 result = -ERESTARTSYS;
386 goto end_nosem;
387 }
Luming Yu45bea152005-07-23 04:08:00 -0400388
Lennart Poetteringd7a76e42006-09-05 12:12:24 -0400389 result = acpi_ec_transaction_unlocked(ec, command,
390 wdata, wdata_len,
391 rdata, rdata_len);
Rich Townsendf9a6ee12005-12-19 23:07:00 -0500392 up(&ec->poll.sem);
Lennart Poetteringd7a76e42006-09-05 12:12:24 -0400393
Rich Townsendf9a6ee12005-12-19 23:07:00 -0500394end_nosem:
Luming Yu45bea152005-07-23 04:08:00 -0400395 if (ec->common.global_lock)
396 acpi_release_global_lock(glk);
397
Patrick Mocheld550d982006-06-27 00:41:40 -0400398 return result;
Luming Yu45bea152005-07-23 04:08:00 -0400399}
400
Lennart Poetteringd7a76e42006-09-05 12:12:24 -0400401static int acpi_ec_intr_transaction(union acpi_ec *ec, u8 command,
402 const u8 *wdata, unsigned wdata_len,
403 u8 *rdata, unsigned rdata_len)
Luming Yu45bea152005-07-23 04:08:00 -0400404{
Lennart Poetteringd7a76e42006-09-05 12:12:24 -0400405 int status;
Len Brown50526df2005-08-11 17:32:05 -0400406 u32 glk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
Lennart Poetteringd7a76e42006-09-05 12:12:24 -0400408 if (!ec || (wdata_len && !wdata) || (rdata_len && !rdata))
Patrick Mocheld550d982006-06-27 00:41:40 -0400409 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
Lennart Poetteringd7a76e42006-09-05 12:12:24 -0400411 if (rdata)
412 memset(rdata, 0, rdata_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
Luming Yu45bea152005-07-23 04:08:00 -0400414 if (ec->common.global_lock) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 status = acpi_acquire_global_lock(ACPI_EC_UDELAY_GLK, &glk);
416 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400417 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 }
Dmitry Torokhov451566f2005-03-19 01:10:05 -0500419
420 WARN_ON(in_interrupt());
Len Brown02b28a32005-12-05 16:33:04 -0500421 down(&ec->intr.sem);
Dmitry Torokhov451566f2005-03-19 01:10:05 -0500422
Luming Yu716e0842005-08-10 01:40:00 -0400423 status = acpi_ec_wait(ec, ACPI_EC_EVENT_IBE);
424 if (status) {
Len Brown1e8df532005-12-05 16:47:46 -0500425 printk(KERN_DEBUG PREFIX "read EC, IB not empty\n");
Dmitry Torokhov451566f2005-03-19 01:10:05 -0500426 goto end;
Luming Yu716e0842005-08-10 01:40:00 -0400427 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
Lennart Poetteringd7a76e42006-09-05 12:12:24 -0400429 status = acpi_ec_transaction_unlocked(ec, command,
430 wdata, wdata_len,
431 rdata, rdata_len);
Len Brown50526df2005-08-11 17:32:05 -0400432
Lennart Poetteringd7a76e42006-09-05 12:12:24 -0400433end:
Len Brown02b28a32005-12-05 16:33:04 -0500434 up(&ec->intr.sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
Luming Yu45bea152005-07-23 04:08:00 -0400436 if (ec->common.global_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 acpi_release_global_lock(glk);
438
Patrick Mocheld550d982006-06-27 00:41:40 -0400439 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440}
441
442/*
443 * Externally callable EC access functions. For now, assume 1 EC only
444 */
Len Brown50526df2005-08-11 17:32:05 -0400445int ec_read(u8 addr, u8 * val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446{
Luming Yu45bea152005-07-23 04:08:00 -0400447 union acpi_ec *ec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 int err;
449 u32 temp_data;
450
451 if (!first_ec)
452 return -ENODEV;
453
454 ec = acpi_driver_data(first_ec);
455
456 err = acpi_ec_read(ec, addr, &temp_data);
457
458 if (!err) {
459 *val = temp_data;
460 return 0;
Len Brown50526df2005-08-11 17:32:05 -0400461 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 return err;
463}
Len Brown50526df2005-08-11 17:32:05 -0400464
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465EXPORT_SYMBOL(ec_read);
466
Len Brown50526df2005-08-11 17:32:05 -0400467int ec_write(u8 addr, u8 val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468{
Luming Yu45bea152005-07-23 04:08:00 -0400469 union acpi_ec *ec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 int err;
471
472 if (!first_ec)
473 return -ENODEV;
474
475 ec = acpi_driver_data(first_ec);
476
477 err = acpi_ec_write(ec, addr, val);
478
479 return err;
480}
Len Brown50526df2005-08-11 17:32:05 -0400481
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482EXPORT_SYMBOL(ec_write);
483
Lennart Poetteringd7a76e42006-09-05 12:12:24 -0400484extern int ec_transaction(u8 command,
485 const u8 *wdata, unsigned wdata_len,
486 u8 *rdata, unsigned rdata_len)
Luming Yu45bea152005-07-23 04:08:00 -0400487{
Lennart Poetteringd7a76e42006-09-05 12:12:24 -0400488 union acpi_ec *ec;
489
490 if (!first_ec)
491 return -ENODEV;
492
493 ec = acpi_driver_data(first_ec);
494
495 return acpi_ec_transaction(ec, command, wdata, wdata_len, rdata, rdata_len);
Luming Yu45bea152005-07-23 04:08:00 -0400496}
Luming Yu45bea152005-07-23 04:08:00 -0400497
Lennart Poetteringd7a76e42006-09-05 12:12:24 -0400498EXPORT_SYMBOL(ec_transaction);
Luming Yu45bea152005-07-23 04:08:00 -0400499
Lennart Poetteringd7a76e42006-09-05 12:12:24 -0400500static int acpi_ec_query(union acpi_ec *ec, u32 * data) {
501 int result;
502 u8 d;
Luming Yu45bea152005-07-23 04:08:00 -0400503
Lennart Poetteringd7a76e42006-09-05 12:12:24 -0400504 if (!ec || !data)
505 return -EINVAL;
Luming Yu45bea152005-07-23 04:08:00 -0400506
Lennart Poetteringd7a76e42006-09-05 12:12:24 -0400507 /*
508 * Query the EC to find out which _Qxx method we need to evaluate.
509 * Note that successful completion of the query causes the ACPI_EC_SCI
510 * bit to be cleared (and thus clearing the interrupt source).
511 */
Luming Yu45bea152005-07-23 04:08:00 -0400512
Lennart Poetteringd7a76e42006-09-05 12:12:24 -0400513 result = acpi_ec_transaction(ec, ACPI_EC_COMMAND_QUERY, NULL, 0, &d, 1);
514 if (result)
515 return result;
Luming Yu45bea152005-07-23 04:08:00 -0400516
Lennart Poetteringd7a76e42006-09-05 12:12:24 -0400517 if (!d)
518 return -ENODATA;
Luming Yu45bea152005-07-23 04:08:00 -0400519
Lennart Poetteringd7a76e42006-09-05 12:12:24 -0400520 *data = d;
521 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522}
523
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524/* --------------------------------------------------------------------------
525 Event Management
526 -------------------------------------------------------------------------- */
527
Luming Yu45bea152005-07-23 04:08:00 -0400528union acpi_ec_query_data {
Len Brown50526df2005-08-11 17:32:05 -0400529 acpi_handle handle;
530 u8 data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531};
532
Len Brown50526df2005-08-11 17:32:05 -0400533static void acpi_ec_gpe_query(void *ec_cxt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534{
Len Brown02b28a32005-12-05 16:33:04 -0500535 if (acpi_ec_poll_mode)
536 acpi_ec_gpe_poll_query(ec_cxt);
Luming Yu45bea152005-07-23 04:08:00 -0400537 else
Len Brown02b28a32005-12-05 16:33:04 -0500538 acpi_ec_gpe_intr_query(ec_cxt);
Luming Yu45bea152005-07-23 04:08:00 -0400539}
540
Len Brown02b28a32005-12-05 16:33:04 -0500541static void acpi_ec_gpe_poll_query(void *ec_cxt)
Luming Yu45bea152005-07-23 04:08:00 -0400542{
Len Brown50526df2005-08-11 17:32:05 -0400543 union acpi_ec *ec = (union acpi_ec *)ec_cxt;
544 u32 value = 0;
Len Brown50526df2005-08-11 17:32:05 -0400545 static char object_name[5] = { '_', 'Q', '0', '0', '\0' };
546 const char hex[] = { '0', '1', '2', '3', '4', '5', '6', '7',
547 '8', '9', 'A', 'B', 'C', 'D', 'E', 'F'
548 };
Luming Yu45bea152005-07-23 04:08:00 -0400549
Luming Yu45bea152005-07-23 04:08:00 -0400550
551 if (!ec_cxt)
552 goto end;
553
Rich Townsendf9a6ee12005-12-19 23:07:00 -0500554 if (down_interruptible (&ec->poll.sem)) {
Patrick Mocheld550d982006-06-27 00:41:40 -0400555 return;
Rich Townsendf9a6ee12005-12-19 23:07:00 -0500556 }
Luming Yu45bea152005-07-23 04:08:00 -0400557 acpi_hw_low_level_read(8, &value, &ec->common.command_addr);
Rich Townsendf9a6ee12005-12-19 23:07:00 -0500558 up(&ec->poll.sem);
Luming Yu45bea152005-07-23 04:08:00 -0400559
560 /* TBD: Implement asynch events!
561 * NOTE: All we care about are EC-SCI's. Other EC events are
562 * handled via polling (yuck!). This is because some systems
563 * treat EC-SCIs as level (versus EDGE!) triggered, preventing
564 * a purely interrupt-driven approach (grumble, grumble).
565 */
566 if (!(value & ACPI_EC_FLAG_SCI))
567 goto end;
568
569 if (acpi_ec_query(ec, &value))
570 goto end;
571
572 object_name[2] = hex[((value >> 4) & 0x0F)];
573 object_name[3] = hex[(value & 0x0F)];
574
575 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Evaluating %s\n", object_name));
576
577 acpi_evaluate_object(ec->common.handle, object_name, NULL, NULL);
578
Len Brown50526df2005-08-11 17:32:05 -0400579 end:
Luming Yu45bea152005-07-23 04:08:00 -0400580 acpi_enable_gpe(NULL, ec->common.gpe_bit, ACPI_NOT_ISR);
581}
Len Brown02b28a32005-12-05 16:33:04 -0500582static void acpi_ec_gpe_intr_query(void *ec_cxt)
Luming Yu45bea152005-07-23 04:08:00 -0400583{
Len Brown50526df2005-08-11 17:32:05 -0400584 union acpi_ec *ec = (union acpi_ec *)ec_cxt;
585 u32 value;
586 int result = -ENODATA;
587 static char object_name[5] = { '_', 'Q', '0', '0', '\0' };
588 const char hex[] = { '0', '1', '2', '3', '4', '5', '6', '7',
589 '8', '9', 'A', 'B', 'C', 'D', 'E', 'F'
590 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
Dmitry Torokhov451566f2005-03-19 01:10:05 -0500593 if (acpi_ec_read_status(ec) & ACPI_EC_FLAG_SCI)
594 result = acpi_ec_query(ec, &value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
Dmitry Torokhov451566f2005-03-19 01:10:05 -0500596 if (result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 goto end;
598
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 object_name[2] = hex[((value >> 4) & 0x0F)];
600 object_name[3] = hex[(value & 0x0F)];
601
602 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Evaluating %s\n", object_name));
603
Luming Yu45bea152005-07-23 04:08:00 -0400604 acpi_evaluate_object(ec->common.handle, object_name, NULL, NULL);
Len Brown50526df2005-08-11 17:32:05 -0400605 end:
Len Brown02b28a32005-12-05 16:33:04 -0500606 atomic_dec(&ec->intr.pending_gpe);
Dmitry Torokhov451566f2005-03-19 01:10:05 -0500607 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608}
609
Len Brown50526df2005-08-11 17:32:05 -0400610static u32 acpi_ec_gpe_handler(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611{
Len Brown02b28a32005-12-05 16:33:04 -0500612 if (acpi_ec_poll_mode)
613 return acpi_ec_gpe_poll_handler(data);
Luming Yu45bea152005-07-23 04:08:00 -0400614 else
Len Brown02b28a32005-12-05 16:33:04 -0500615 return acpi_ec_gpe_intr_handler(data);
Luming Yu45bea152005-07-23 04:08:00 -0400616}
Len Brown02b28a32005-12-05 16:33:04 -0500617static u32 acpi_ec_gpe_poll_handler(void *data)
Luming Yu45bea152005-07-23 04:08:00 -0400618{
Len Brown50526df2005-08-11 17:32:05 -0400619 acpi_status status = AE_OK;
620 union acpi_ec *ec = (union acpi_ec *)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
622 if (!ec)
623 return ACPI_INTERRUPT_NOT_HANDLED;
624
Luming Yu45bea152005-07-23 04:08:00 -0400625 acpi_disable_gpe(NULL, ec->common.gpe_bit, ACPI_ISR);
626
Alexey Starikovskiyb8d35192006-05-05 03:23:00 -0400627 status = acpi_os_execute(OSL_EC_POLL_HANDLER, acpi_ec_gpe_query, ec);
Luming Yu45bea152005-07-23 04:08:00 -0400628
629 if (status == AE_OK)
630 return ACPI_INTERRUPT_HANDLED;
631 else
632 return ACPI_INTERRUPT_NOT_HANDLED;
633}
Len Brown02b28a32005-12-05 16:33:04 -0500634static u32 acpi_ec_gpe_intr_handler(void *data)
Luming Yu45bea152005-07-23 04:08:00 -0400635{
Len Brown50526df2005-08-11 17:32:05 -0400636 acpi_status status = AE_OK;
637 u32 value;
638 union acpi_ec *ec = (union acpi_ec *)data;
Luming Yu45bea152005-07-23 04:08:00 -0400639
640 if (!ec)
641 return ACPI_INTERRUPT_NOT_HANDLED;
642
Luming Yu716e0842005-08-10 01:40:00 -0400643 acpi_clear_gpe(NULL, ec->common.gpe_bit, ACPI_ISR);
Dmitry Torokhov451566f2005-03-19 01:10:05 -0500644 value = acpi_ec_read_status(ec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645
Len Brown02b28a32005-12-05 16:33:04 -0500646 switch (ec->intr.expect_event) {
Luming Yu716e0842005-08-10 01:40:00 -0400647 case ACPI_EC_EVENT_OBF:
648 if (!(value & ACPI_EC_FLAG_OBF))
649 break;
Vladimir Lebedev49fee982006-06-20 16:46:00 -0400650 ec->intr.expect_event = 0;
651 wake_up(&ec->intr.wait);
652 break;
Luming Yu716e0842005-08-10 01:40:00 -0400653 case ACPI_EC_EVENT_IBE:
654 if ((value & ACPI_EC_FLAG_IBF))
655 break;
Len Brown02b28a32005-12-05 16:33:04 -0500656 ec->intr.expect_event = 0;
657 wake_up(&ec->intr.wait);
Vladimir Lebedev49fee982006-06-20 16:46:00 -0400658 break;
Luming Yu716e0842005-08-10 01:40:00 -0400659 default:
660 break;
Dmitry Torokhov451566f2005-03-19 01:10:05 -0500661 }
662
Len Brown50526df2005-08-11 17:32:05 -0400663 if (value & ACPI_EC_FLAG_SCI) {
Len Brown02b28a32005-12-05 16:33:04 -0500664 atomic_add(1, &ec->intr.pending_gpe);
Alexey Starikovskiyb8d35192006-05-05 03:23:00 -0400665 status = acpi_os_execute(OSL_EC_BURST_HANDLER,
Len Brown50526df2005-08-11 17:32:05 -0400666 acpi_ec_gpe_query, ec);
Luming Yu17e9c782005-04-22 23:07:10 -0400667 return status == AE_OK ?
Len Brown50526df2005-08-11 17:32:05 -0400668 ACPI_INTERRUPT_HANDLED : ACPI_INTERRUPT_NOT_HANDLED;
669 }
Luming Yu45bea152005-07-23 04:08:00 -0400670 acpi_enable_gpe(NULL, ec->common.gpe_bit, ACPI_ISR);
Dmitry Torokhov451566f2005-03-19 01:10:05 -0500671 return status == AE_OK ?
Len Brown50526df2005-08-11 17:32:05 -0400672 ACPI_INTERRUPT_HANDLED : ACPI_INTERRUPT_NOT_HANDLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673}
674
675/* --------------------------------------------------------------------------
676 Address Space Management
677 -------------------------------------------------------------------------- */
678
679static acpi_status
Len Brown50526df2005-08-11 17:32:05 -0400680acpi_ec_space_setup(acpi_handle region_handle,
681 u32 function, void *handler_context, void **return_context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682{
683 /*
684 * The EC object is in the handler context and is needed
685 * when calling the acpi_ec_space_handler.
686 */
Len Brown50526df2005-08-11 17:32:05 -0400687 *return_context = (function != ACPI_REGION_DEACTIVATE) ?
688 handler_context : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689
690 return AE_OK;
691}
692
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693static acpi_status
Len Brown50526df2005-08-11 17:32:05 -0400694acpi_ec_space_handler(u32 function,
695 acpi_physical_address address,
696 u32 bit_width,
697 acpi_integer * value,
698 void *handler_context, void *region_context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699{
Len Brown50526df2005-08-11 17:32:05 -0400700 int result = 0;
701 union acpi_ec *ec = NULL;
702 u64 temp = *value;
703 acpi_integer f_v = 0;
704 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
707 if ((address > 0xFF) || !value || !handler_context)
Patrick Mocheld550d982006-06-27 00:41:40 -0400708 return AE_BAD_PARAMETER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709
Luming Yufa9cd542005-03-19 01:54:47 -0500710 if (bit_width != 8 && acpi_strict) {
Len Brown50526df2005-08-11 17:32:05 -0400711 printk(KERN_WARNING PREFIX
712 "acpi_ec_space_handler: bit_width should be 8\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400713 return AE_BAD_PARAMETER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 }
715
Len Brown50526df2005-08-11 17:32:05 -0400716 ec = (union acpi_ec *)handler_context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
Len Brown50526df2005-08-11 17:32:05 -0400718 next_byte:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 switch (function) {
720 case ACPI_READ:
Luming Yufa9cd542005-03-19 01:54:47 -0500721 temp = 0;
Len Brown50526df2005-08-11 17:32:05 -0400722 result = acpi_ec_read(ec, (u8) address, (u32 *) & temp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 break;
724 case ACPI_WRITE:
Luming Yufa9cd542005-03-19 01:54:47 -0500725 result = acpi_ec_write(ec, (u8) address, (u8) temp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 break;
727 default:
728 result = -EINVAL;
729 goto out;
730 break;
731 }
732
733 bit_width -= 8;
Luming Yufa9cd542005-03-19 01:54:47 -0500734 if (bit_width) {
735 if (function == ACPI_READ)
736 f_v |= temp << 8 * i;
737 if (function == ACPI_WRITE)
738 temp >>= 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 i++;
Andrew Morton83ea7442005-03-30 22:12:13 -0500740 address++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 goto next_byte;
742 }
743
Luming Yufa9cd542005-03-19 01:54:47 -0500744 if (function == ACPI_READ) {
745 f_v |= temp << 8 * i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 *value = f_v;
747 }
748
Len Brown50526df2005-08-11 17:32:05 -0400749 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 switch (result) {
751 case -EINVAL:
Patrick Mocheld550d982006-06-27 00:41:40 -0400752 return AE_BAD_PARAMETER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 break;
754 case -ENODEV:
Patrick Mocheld550d982006-06-27 00:41:40 -0400755 return AE_NOT_FOUND;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 break;
757 case -ETIME:
Patrick Mocheld550d982006-06-27 00:41:40 -0400758 return AE_TIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 break;
760 default:
Patrick Mocheld550d982006-06-27 00:41:40 -0400761 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763}
764
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765/* --------------------------------------------------------------------------
766 FS Interface (/proc)
767 -------------------------------------------------------------------------- */
768
Len Brown50526df2005-08-11 17:32:05 -0400769static struct proc_dir_entry *acpi_ec_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770
Len Brown50526df2005-08-11 17:32:05 -0400771static int acpi_ec_read_info(struct seq_file *seq, void *offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772{
Len Brown50526df2005-08-11 17:32:05 -0400773 union acpi_ec *ec = (union acpi_ec *)seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
776 if (!ec)
777 goto end;
778
779 seq_printf(seq, "gpe bit: 0x%02x\n",
Len Brown50526df2005-08-11 17:32:05 -0400780 (u32) ec->common.gpe_bit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 seq_printf(seq, "ports: 0x%02x, 0x%02x\n",
Len Brown50526df2005-08-11 17:32:05 -0400782 (u32) ec->common.status_addr.address,
783 (u32) ec->common.data_addr.address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 seq_printf(seq, "use global lock: %s\n",
Len Brown50526df2005-08-11 17:32:05 -0400785 ec->common.global_lock ? "yes" : "no");
Luming Yu45bea152005-07-23 04:08:00 -0400786 acpi_enable_gpe(NULL, ec->common.gpe_bit, ACPI_NOT_ISR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787
Len Brown50526df2005-08-11 17:32:05 -0400788 end:
Patrick Mocheld550d982006-06-27 00:41:40 -0400789 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790}
791
792static int acpi_ec_info_open_fs(struct inode *inode, struct file *file)
793{
794 return single_open(file, acpi_ec_read_info, PDE(inode)->data);
795}
796
Arjan van de Vend7508032006-07-04 13:06:00 -0400797static const struct file_operations acpi_ec_info_ops = {
Len Brown50526df2005-08-11 17:32:05 -0400798 .open = acpi_ec_info_open_fs,
799 .read = seq_read,
800 .llseek = seq_lseek,
801 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 .owner = THIS_MODULE,
803};
804
Len Brown50526df2005-08-11 17:32:05 -0400805static int acpi_ec_add_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806{
Len Brown50526df2005-08-11 17:32:05 -0400807 struct proc_dir_entry *entry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809
810 if (!acpi_device_dir(device)) {
811 acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device),
Len Brown50526df2005-08-11 17:32:05 -0400812 acpi_ec_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 if (!acpi_device_dir(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400814 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 }
816
817 entry = create_proc_entry(ACPI_EC_FILE_INFO, S_IRUGO,
Len Brown50526df2005-08-11 17:32:05 -0400818 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -0400820 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 else {
822 entry->proc_fops = &acpi_ec_info_ops;
823 entry->data = acpi_driver_data(device);
824 entry->owner = THIS_MODULE;
825 }
826
Patrick Mocheld550d982006-06-27 00:41:40 -0400827 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828}
829
Len Brown50526df2005-08-11 17:32:05 -0400830static int acpi_ec_remove_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832
833 if (acpi_device_dir(device)) {
834 remove_proc_entry(ACPI_EC_FILE_INFO, acpi_device_dir(device));
835 remove_proc_entry(acpi_device_bid(device), acpi_ec_dir);
836 acpi_device_dir(device) = NULL;
837 }
838
Patrick Mocheld550d982006-06-27 00:41:40 -0400839 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840}
841
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842/* --------------------------------------------------------------------------
843 Driver Interface
844 -------------------------------------------------------------------------- */
845
Len Brown02b28a32005-12-05 16:33:04 -0500846static int acpi_ec_poll_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847{
Len Brown50526df2005-08-11 17:32:05 -0400848 int result = 0;
849 acpi_status status = AE_OK;
850 union acpi_ec *ec = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852
853 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400854 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855
Luming Yu45bea152005-07-23 04:08:00 -0400856 ec = kmalloc(sizeof(union acpi_ec), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 if (!ec)
Patrick Mocheld550d982006-06-27 00:41:40 -0400858 return -ENOMEM;
Luming Yu45bea152005-07-23 04:08:00 -0400859 memset(ec, 0, sizeof(union acpi_ec));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860
Luming Yu45bea152005-07-23 04:08:00 -0400861 ec->common.handle = device->handle;
862 ec->common.uid = -1;
Rich Townsendf9a6ee12005-12-19 23:07:00 -0500863 init_MUTEX(&ec->poll.sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 strcpy(acpi_device_name(device), ACPI_EC_DEVICE_NAME);
865 strcpy(acpi_device_class(device), ACPI_EC_CLASS);
866 acpi_driver_data(device) = ec;
867
868 /* Use the global lock for all EC transactions? */
Len Brown50526df2005-08-11 17:32:05 -0400869 acpi_evaluate_integer(ec->common.handle, "_GLK", NULL,
870 &ec->common.global_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871
Jiri Slabyff2fc3e2006-03-28 17:04:00 -0500872 /* XXX we don't test uids, because on some boxes ecdt uid = 0, see:
873 http://bugzilla.kernel.org/show_bug.cgi?id=6111 */
874 if (ec_ecdt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 acpi_remove_address_space_handler(ACPI_ROOT_OBJECT,
Len Brown50526df2005-08-11 17:32:05 -0400876 ACPI_ADR_SPACE_EC,
877 &acpi_ec_space_handler);
878
879 acpi_remove_gpe_handler(NULL, ec_ecdt->common.gpe_bit,
880 &acpi_ec_gpe_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881
882 kfree(ec_ecdt);
883 }
884
885 /* Get GPE bit assignment (EC events). */
886 /* TODO: Add support for _GPE returning a package */
Len Brown50526df2005-08-11 17:32:05 -0400887 status =
888 acpi_evaluate_integer(ec->common.handle, "_GPE", NULL,
889 &ec->common.gpe_bit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 if (ACPI_FAILURE(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400891 ACPI_EXCEPTION((AE_INFO, status, "Obtaining GPE bit"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 result = -ENODEV;
893 goto end;
894 }
895
896 result = acpi_ec_add_fs(device);
897 if (result)
898 goto end;
899
Len Brown02b28a32005-12-05 16:33:04 -0500900 printk(KERN_INFO PREFIX "%s [%s] (gpe %d) polling mode.\n",
Len Brown50526df2005-08-11 17:32:05 -0400901 acpi_device_name(device), acpi_device_bid(device),
902 (u32) ec->common.gpe_bit);
Luming Yu45bea152005-07-23 04:08:00 -0400903
904 if (!first_ec)
905 first_ec = device;
906
Len Brown50526df2005-08-11 17:32:05 -0400907 end:
Luming Yu45bea152005-07-23 04:08:00 -0400908 if (result)
909 kfree(ec);
910
Patrick Mocheld550d982006-06-27 00:41:40 -0400911 return result;
Luming Yu45bea152005-07-23 04:08:00 -0400912}
Len Brown02b28a32005-12-05 16:33:04 -0500913static int acpi_ec_intr_add(struct acpi_device *device)
Luming Yu45bea152005-07-23 04:08:00 -0400914{
Len Brown50526df2005-08-11 17:32:05 -0400915 int result = 0;
916 acpi_status status = AE_OK;
917 union acpi_ec *ec = NULL;
Luming Yu45bea152005-07-23 04:08:00 -0400918
Luming Yu45bea152005-07-23 04:08:00 -0400919
920 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400921 return -EINVAL;
Luming Yu45bea152005-07-23 04:08:00 -0400922
923 ec = kmalloc(sizeof(union acpi_ec), GFP_KERNEL);
924 if (!ec)
Patrick Mocheld550d982006-06-27 00:41:40 -0400925 return -ENOMEM;
Luming Yu45bea152005-07-23 04:08:00 -0400926 memset(ec, 0, sizeof(union acpi_ec));
927
928 ec->common.handle = device->handle;
929 ec->common.uid = -1;
Len Brown02b28a32005-12-05 16:33:04 -0500930 atomic_set(&ec->intr.pending_gpe, 0);
931 atomic_set(&ec->intr.leaving_burst, 1);
932 init_MUTEX(&ec->intr.sem);
933 init_waitqueue_head(&ec->intr.wait);
Luming Yu45bea152005-07-23 04:08:00 -0400934 strcpy(acpi_device_name(device), ACPI_EC_DEVICE_NAME);
935 strcpy(acpi_device_class(device), ACPI_EC_CLASS);
936 acpi_driver_data(device) = ec;
937
938 /* Use the global lock for all EC transactions? */
Len Brown50526df2005-08-11 17:32:05 -0400939 acpi_evaluate_integer(ec->common.handle, "_GLK", NULL,
940 &ec->common.global_lock);
Luming Yu45bea152005-07-23 04:08:00 -0400941
Jiri Slabyff2fc3e2006-03-28 17:04:00 -0500942 /* XXX we don't test uids, because on some boxes ecdt uid = 0, see:
943 http://bugzilla.kernel.org/show_bug.cgi?id=6111 */
944 if (ec_ecdt) {
Luming Yu45bea152005-07-23 04:08:00 -0400945 acpi_remove_address_space_handler(ACPI_ROOT_OBJECT,
Len Brown50526df2005-08-11 17:32:05 -0400946 ACPI_ADR_SPACE_EC,
947 &acpi_ec_space_handler);
Luming Yu45bea152005-07-23 04:08:00 -0400948
Len Brown50526df2005-08-11 17:32:05 -0400949 acpi_remove_gpe_handler(NULL, ec_ecdt->common.gpe_bit,
950 &acpi_ec_gpe_handler);
Luming Yu45bea152005-07-23 04:08:00 -0400951
952 kfree(ec_ecdt);
953 }
954
955 /* Get GPE bit assignment (EC events). */
956 /* TODO: Add support for _GPE returning a package */
Len Brown50526df2005-08-11 17:32:05 -0400957 status =
958 acpi_evaluate_integer(ec->common.handle, "_GPE", NULL,
959 &ec->common.gpe_bit);
Luming Yu45bea152005-07-23 04:08:00 -0400960 if (ACPI_FAILURE(status)) {
Len Brown64684632006-06-26 23:41:38 -0400961 printk(KERN_ERR PREFIX "Obtaining GPE bit assignment\n");
Luming Yu45bea152005-07-23 04:08:00 -0400962 result = -ENODEV;
963 goto end;
964 }
965
966 result = acpi_ec_add_fs(device);
967 if (result)
968 goto end;
969
Len Brown02b28a32005-12-05 16:33:04 -0500970 printk(KERN_INFO PREFIX "%s [%s] (gpe %d) interrupt mode.\n",
Len Brown50526df2005-08-11 17:32:05 -0400971 acpi_device_name(device), acpi_device_bid(device),
972 (u32) ec->common.gpe_bit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973
974 if (!first_ec)
975 first_ec = device;
976
Len Brown50526df2005-08-11 17:32:05 -0400977 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 if (result)
979 kfree(ec);
980
Patrick Mocheld550d982006-06-27 00:41:40 -0400981 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982}
983
Len Brown50526df2005-08-11 17:32:05 -0400984static int acpi_ec_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985{
Len Brown50526df2005-08-11 17:32:05 -0400986 union acpi_ec *ec = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988
989 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400990 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
992 ec = acpi_driver_data(device);
993
994 acpi_ec_remove_fs(device);
995
996 kfree(ec);
997
Patrick Mocheld550d982006-06-27 00:41:40 -0400998 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999}
1000
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001static acpi_status
Len Brown50526df2005-08-11 17:32:05 -04001002acpi_ec_io_ports(struct acpi_resource *resource, void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003{
Len Brown50526df2005-08-11 17:32:05 -04001004 union acpi_ec *ec = (union acpi_ec *)context;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 struct acpi_generic_address *addr;
1006
Bob Moore50eca3e2005-09-30 19:03:00 -04001007 if (resource->type != ACPI_RESOURCE_TYPE_IO) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 return AE_OK;
1009 }
1010
1011 /*
1012 * The first address region returned is the data port, and
1013 * the second address region returned is the status/command
1014 * port.
1015 */
Luming Yu45bea152005-07-23 04:08:00 -04001016 if (ec->common.data_addr.register_bit_width == 0) {
1017 addr = &ec->common.data_addr;
1018 } else if (ec->common.command_addr.register_bit_width == 0) {
1019 addr = &ec->common.command_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 } else {
1021 return AE_CTRL_TERMINATE;
1022 }
1023
1024 addr->address_space_id = ACPI_ADR_SPACE_SYSTEM_IO;
1025 addr->register_bit_width = 8;
1026 addr->register_bit_offset = 0;
Bob Moore50eca3e2005-09-30 19:03:00 -04001027 addr->address = resource->data.io.minimum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028
1029 return AE_OK;
1030}
1031
Len Brown50526df2005-08-11 17:32:05 -04001032static int acpi_ec_start(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033{
Len Brown50526df2005-08-11 17:32:05 -04001034 acpi_status status = AE_OK;
1035 union acpi_ec *ec = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037
1038 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -04001039 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040
1041 ec = acpi_driver_data(device);
1042
1043 if (!ec)
Patrick Mocheld550d982006-06-27 00:41:40 -04001044 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045
1046 /*
1047 * Get I/O port addresses. Convert to GAS format.
1048 */
Luming Yu45bea152005-07-23 04:08:00 -04001049 status = acpi_walk_resources(ec->common.handle, METHOD_NAME__CRS,
Len Brown50526df2005-08-11 17:32:05 -04001050 acpi_ec_io_ports, ec);
1051 if (ACPI_FAILURE(status)
1052 || ec->common.command_addr.register_bit_width == 0) {
Len Brown64684632006-06-26 23:41:38 -04001053 printk(KERN_ERR PREFIX "Error getting I/O port addresses\n");
Patrick Mocheld550d982006-06-27 00:41:40 -04001054 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 }
1056
Luming Yu45bea152005-07-23 04:08:00 -04001057 ec->common.status_addr = ec->common.command_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058
1059 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "gpe=0x%02x, ports=0x%2x,0x%2x\n",
Len Brown50526df2005-08-11 17:32:05 -04001060 (u32) ec->common.gpe_bit,
1061 (u32) ec->common.command_addr.address,
1062 (u32) ec->common.data_addr.address));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063
1064 /*
1065 * Install GPE handler
1066 */
Luming Yu45bea152005-07-23 04:08:00 -04001067 status = acpi_install_gpe_handler(NULL, ec->common.gpe_bit,
Len Brown50526df2005-08-11 17:32:05 -04001068 ACPI_GPE_EDGE_TRIGGERED,
1069 &acpi_ec_gpe_handler, ec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 if (ACPI_FAILURE(status)) {
Patrick Mocheld550d982006-06-27 00:41:40 -04001071 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 }
Len Brown50526df2005-08-11 17:32:05 -04001073 acpi_set_gpe_type(NULL, ec->common.gpe_bit, ACPI_GPE_TYPE_RUNTIME);
1074 acpi_enable_gpe(NULL, ec->common.gpe_bit, ACPI_NOT_ISR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075
Len Brown50526df2005-08-11 17:32:05 -04001076 status = acpi_install_address_space_handler(ec->common.handle,
1077 ACPI_ADR_SPACE_EC,
1078 &acpi_ec_space_handler,
1079 &acpi_ec_space_setup, ec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 if (ACPI_FAILURE(status)) {
Len Brown50526df2005-08-11 17:32:05 -04001081 acpi_remove_gpe_handler(NULL, ec->common.gpe_bit,
1082 &acpi_ec_gpe_handler);
Patrick Mocheld550d982006-06-27 00:41:40 -04001083 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 }
1085
Patrick Mocheld550d982006-06-27 00:41:40 -04001086 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087}
1088
Len Brown50526df2005-08-11 17:32:05 -04001089static int acpi_ec_stop(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090{
Len Brown50526df2005-08-11 17:32:05 -04001091 acpi_status status = AE_OK;
1092 union acpi_ec *ec = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094
1095 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -04001096 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097
1098 ec = acpi_driver_data(device);
1099
Luming Yu45bea152005-07-23 04:08:00 -04001100 status = acpi_remove_address_space_handler(ec->common.handle,
Len Brown50526df2005-08-11 17:32:05 -04001101 ACPI_ADR_SPACE_EC,
1102 &acpi_ec_space_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -04001104 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105
Len Brown50526df2005-08-11 17:32:05 -04001106 status =
1107 acpi_remove_gpe_handler(NULL, ec->common.gpe_bit,
1108 &acpi_ec_gpe_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -04001110 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111
Patrick Mocheld550d982006-06-27 00:41:40 -04001112 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113}
1114
1115static acpi_status __init
Len Brown50526df2005-08-11 17:32:05 -04001116acpi_fake_ecdt_callback(acpi_handle handle,
1117 u32 Level, void *context, void **retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118{
Luming Yu45bea152005-07-23 04:08:00 -04001119
Len Brown02b28a32005-12-05 16:33:04 -05001120 if (acpi_ec_poll_mode)
1121 return acpi_fake_ecdt_poll_callback(handle,
Len Brown50526df2005-08-11 17:32:05 -04001122 Level, context, retval);
Luming Yu45bea152005-07-23 04:08:00 -04001123 else
Len Brown02b28a32005-12-05 16:33:04 -05001124 return acpi_fake_ecdt_intr_callback(handle,
Len Brown50526df2005-08-11 17:32:05 -04001125 Level, context, retval);
Luming Yu45bea152005-07-23 04:08:00 -04001126}
1127
1128static acpi_status __init
Len Brown02b28a32005-12-05 16:33:04 -05001129acpi_fake_ecdt_poll_callback(acpi_handle handle,
Len Brown50526df2005-08-11 17:32:05 -04001130 u32 Level, void *context, void **retval)
Luming Yu45bea152005-07-23 04:08:00 -04001131{
Len Brown50526df2005-08-11 17:32:05 -04001132 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133
1134 status = acpi_walk_resources(handle, METHOD_NAME__CRS,
Len Brown50526df2005-08-11 17:32:05 -04001135 acpi_ec_io_ports, ec_ecdt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 if (ACPI_FAILURE(status))
1137 return status;
Luming Yu45bea152005-07-23 04:08:00 -04001138 ec_ecdt->common.status_addr = ec_ecdt->common.command_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139
Luming Yu45bea152005-07-23 04:08:00 -04001140 ec_ecdt->common.uid = -1;
1141 acpi_evaluate_integer(handle, "_UID", NULL, &ec_ecdt->common.uid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142
Len Brown50526df2005-08-11 17:32:05 -04001143 status =
1144 acpi_evaluate_integer(handle, "_GPE", NULL,
1145 &ec_ecdt->common.gpe_bit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 if (ACPI_FAILURE(status))
1147 return status;
Rich Townsendf9a6ee12005-12-19 23:07:00 -05001148 init_MUTEX(&ec_ecdt->poll.sem);
Luming Yu45bea152005-07-23 04:08:00 -04001149 ec_ecdt->common.global_lock = TRUE;
1150 ec_ecdt->common.handle = handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151
Len Brown50526df2005-08-11 17:32:05 -04001152 printk(KERN_INFO PREFIX "GPE=0x%02x, ports=0x%2x, 0x%2x\n",
1153 (u32) ec_ecdt->common.gpe_bit,
1154 (u32) ec_ecdt->common.command_addr.address,
1155 (u32) ec_ecdt->common.data_addr.address);
Luming Yu45bea152005-07-23 04:08:00 -04001156
1157 return AE_CTRL_TERMINATE;
1158}
1159
1160static acpi_status __init
Len Brown02b28a32005-12-05 16:33:04 -05001161acpi_fake_ecdt_intr_callback(acpi_handle handle,
Len Brown50526df2005-08-11 17:32:05 -04001162 u32 Level, void *context, void **retval)
Luming Yu45bea152005-07-23 04:08:00 -04001163{
Len Brown50526df2005-08-11 17:32:05 -04001164 acpi_status status;
Luming Yu45bea152005-07-23 04:08:00 -04001165
Len Brown02b28a32005-12-05 16:33:04 -05001166 init_MUTEX(&ec_ecdt->intr.sem);
1167 init_waitqueue_head(&ec_ecdt->intr.wait);
Luming Yu45bea152005-07-23 04:08:00 -04001168 status = acpi_walk_resources(handle, METHOD_NAME__CRS,
Len Brown50526df2005-08-11 17:32:05 -04001169 acpi_ec_io_ports, ec_ecdt);
Luming Yu45bea152005-07-23 04:08:00 -04001170 if (ACPI_FAILURE(status))
1171 return status;
1172 ec_ecdt->common.status_addr = ec_ecdt->common.command_addr;
1173
1174 ec_ecdt->common.uid = -1;
1175 acpi_evaluate_integer(handle, "_UID", NULL, &ec_ecdt->common.uid);
1176
Len Brown50526df2005-08-11 17:32:05 -04001177 status =
1178 acpi_evaluate_integer(handle, "_GPE", NULL,
1179 &ec_ecdt->common.gpe_bit);
Luming Yu45bea152005-07-23 04:08:00 -04001180 if (ACPI_FAILURE(status))
1181 return status;
1182 ec_ecdt->common.global_lock = TRUE;
1183 ec_ecdt->common.handle = handle;
1184
Len Brown50526df2005-08-11 17:32:05 -04001185 printk(KERN_INFO PREFIX "GPE=0x%02x, ports=0x%2x, 0x%2x\n",
1186 (u32) ec_ecdt->common.gpe_bit,
1187 (u32) ec_ecdt->common.command_addr.address,
1188 (u32) ec_ecdt->common.data_addr.address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189
1190 return AE_CTRL_TERMINATE;
1191}
1192
1193/*
1194 * Some BIOS (such as some from Gateway laptops) access EC region very early
1195 * such as in BAT0._INI or EC._INI before an EC device is found and
1196 * do not provide an ECDT. According to ACPI spec, ECDT isn't mandatorily
1197 * required, but if EC regison is accessed early, it is required.
1198 * The routine tries to workaround the BIOS bug by pre-scan EC device
1199 * It assumes that _CRS, _HID, _GPE, _UID methods of EC don't touch any
1200 * op region (since _REG isn't invoked yet). The assumption is true for
1201 * all systems found.
1202 */
Len Brown50526df2005-08-11 17:32:05 -04001203static int __init acpi_ec_fake_ecdt(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204{
Len Brown50526df2005-08-11 17:32:05 -04001205 acpi_status status;
1206 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207
1208 printk(KERN_INFO PREFIX "Try to make an fake ECDT\n");
1209
Luming Yu45bea152005-07-23 04:08:00 -04001210 ec_ecdt = kmalloc(sizeof(union acpi_ec), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 if (!ec_ecdt) {
1212 ret = -ENOMEM;
1213 goto error;
1214 }
Luming Yu45bea152005-07-23 04:08:00 -04001215 memset(ec_ecdt, 0, sizeof(union acpi_ec));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216
Len Brown50526df2005-08-11 17:32:05 -04001217 status = acpi_get_devices(ACPI_EC_HID,
1218 acpi_fake_ecdt_callback, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 if (ACPI_FAILURE(status)) {
1220 kfree(ec_ecdt);
1221 ec_ecdt = NULL;
1222 ret = -ENODEV;
1223 goto error;
1224 }
1225 return 0;
Len Brown50526df2005-08-11 17:32:05 -04001226 error:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 printk(KERN_ERR PREFIX "Can't make an fake ECDT\n");
1228 return ret;
1229}
1230
Len Brown50526df2005-08-11 17:32:05 -04001231static int __init acpi_ec_get_real_ecdt(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232{
Len Brown02b28a32005-12-05 16:33:04 -05001233 if (acpi_ec_poll_mode)
1234 return acpi_ec_poll_get_real_ecdt();
Luming Yu45bea152005-07-23 04:08:00 -04001235 else
Len Brown02b28a32005-12-05 16:33:04 -05001236 return acpi_ec_intr_get_real_ecdt();
Luming Yu45bea152005-07-23 04:08:00 -04001237}
1238
Len Brown02b28a32005-12-05 16:33:04 -05001239static int __init acpi_ec_poll_get_real_ecdt(void)
Luming Yu45bea152005-07-23 04:08:00 -04001240{
Len Brown50526df2005-08-11 17:32:05 -04001241 acpi_status status;
1242 struct acpi_table_ecdt *ecdt_ptr;
Luming Yu45bea152005-07-23 04:08:00 -04001243
Len Brown50526df2005-08-11 17:32:05 -04001244 status = acpi_get_firmware_table("ECDT", 1, ACPI_LOGICAL_ADDRESSING,
1245 (struct acpi_table_header **)
1246 &ecdt_ptr);
Luming Yu45bea152005-07-23 04:08:00 -04001247 if (ACPI_FAILURE(status))
1248 return -ENODEV;
1249
1250 printk(KERN_INFO PREFIX "Found ECDT\n");
1251
1252 /*
1253 * Generate a temporary ec context to use until the namespace is scanned
1254 */
1255 ec_ecdt = kmalloc(sizeof(union acpi_ec), GFP_KERNEL);
1256 if (!ec_ecdt)
1257 return -ENOMEM;
1258 memset(ec_ecdt, 0, sizeof(union acpi_ec));
1259
1260 ec_ecdt->common.command_addr = ecdt_ptr->ec_control;
1261 ec_ecdt->common.status_addr = ecdt_ptr->ec_control;
1262 ec_ecdt->common.data_addr = ecdt_ptr->ec_data;
1263 ec_ecdt->common.gpe_bit = ecdt_ptr->gpe_bit;
Rich Townsendf9a6ee12005-12-19 23:07:00 -05001264 init_MUTEX(&ec_ecdt->poll.sem);
Luming Yu45bea152005-07-23 04:08:00 -04001265 /* use the GL just to be safe */
1266 ec_ecdt->common.global_lock = TRUE;
1267 ec_ecdt->common.uid = ecdt_ptr->uid;
1268
Len Brown50526df2005-08-11 17:32:05 -04001269 status =
1270 acpi_get_handle(NULL, ecdt_ptr->ec_id, &ec_ecdt->common.handle);
Luming Yu45bea152005-07-23 04:08:00 -04001271 if (ACPI_FAILURE(status)) {
1272 goto error;
1273 }
1274
1275 return 0;
Len Brown50526df2005-08-11 17:32:05 -04001276 error:
Luming Yu45bea152005-07-23 04:08:00 -04001277 printk(KERN_ERR PREFIX "Could not use ECDT\n");
1278 kfree(ec_ecdt);
1279 ec_ecdt = NULL;
1280
1281 return -ENODEV;
1282}
1283
Len Brown02b28a32005-12-05 16:33:04 -05001284static int __init acpi_ec_intr_get_real_ecdt(void)
Luming Yu45bea152005-07-23 04:08:00 -04001285{
Len Brown50526df2005-08-11 17:32:05 -04001286 acpi_status status;
1287 struct acpi_table_ecdt *ecdt_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288
Dmitry Torokhov451566f2005-03-19 01:10:05 -05001289 status = acpi_get_firmware_table("ECDT", 1, ACPI_LOGICAL_ADDRESSING,
Len Brown50526df2005-08-11 17:32:05 -04001290 (struct acpi_table_header **)
1291 &ecdt_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 if (ACPI_FAILURE(status))
1293 return -ENODEV;
1294
1295 printk(KERN_INFO PREFIX "Found ECDT\n");
1296
1297 /*
1298 * Generate a temporary ec context to use until the namespace is scanned
1299 */
Luming Yu45bea152005-07-23 04:08:00 -04001300 ec_ecdt = kmalloc(sizeof(union acpi_ec), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 if (!ec_ecdt)
1302 return -ENOMEM;
Luming Yu45bea152005-07-23 04:08:00 -04001303 memset(ec_ecdt, 0, sizeof(union acpi_ec));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304
Len Brown02b28a32005-12-05 16:33:04 -05001305 init_MUTEX(&ec_ecdt->intr.sem);
1306 init_waitqueue_head(&ec_ecdt->intr.wait);
Luming Yu45bea152005-07-23 04:08:00 -04001307 ec_ecdt->common.command_addr = ecdt_ptr->ec_control;
1308 ec_ecdt->common.status_addr = ecdt_ptr->ec_control;
1309 ec_ecdt->common.data_addr = ecdt_ptr->ec_data;
1310 ec_ecdt->common.gpe_bit = ecdt_ptr->gpe_bit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 /* use the GL just to be safe */
Luming Yu45bea152005-07-23 04:08:00 -04001312 ec_ecdt->common.global_lock = TRUE;
1313 ec_ecdt->common.uid = ecdt_ptr->uid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314
Len Brown50526df2005-08-11 17:32:05 -04001315 status =
1316 acpi_get_handle(NULL, ecdt_ptr->ec_id, &ec_ecdt->common.handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 if (ACPI_FAILURE(status)) {
1318 goto error;
1319 }
1320
1321 return 0;
Len Brown50526df2005-08-11 17:32:05 -04001322 error:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 printk(KERN_ERR PREFIX "Could not use ECDT\n");
1324 kfree(ec_ecdt);
1325 ec_ecdt = NULL;
1326
1327 return -ENODEV;
1328}
1329
1330static int __initdata acpi_fake_ecdt_enabled;
Len Brown50526df2005-08-11 17:32:05 -04001331int __init acpi_ec_ecdt_probe(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332{
Len Brown50526df2005-08-11 17:32:05 -04001333 acpi_status status;
1334 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335
1336 ret = acpi_ec_get_real_ecdt();
1337 /* Try to make a fake ECDT */
1338 if (ret && acpi_fake_ecdt_enabled) {
1339 ret = acpi_ec_fake_ecdt();
1340 }
1341
1342 if (ret)
1343 return 0;
1344
1345 /*
1346 * Install GPE handler
1347 */
Luming Yu45bea152005-07-23 04:08:00 -04001348 status = acpi_install_gpe_handler(NULL, ec_ecdt->common.gpe_bit,
Len Brown50526df2005-08-11 17:32:05 -04001349 ACPI_GPE_EDGE_TRIGGERED,
1350 &acpi_ec_gpe_handler, ec_ecdt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 if (ACPI_FAILURE(status)) {
1352 goto error;
1353 }
Len Brown50526df2005-08-11 17:32:05 -04001354 acpi_set_gpe_type(NULL, ec_ecdt->common.gpe_bit, ACPI_GPE_TYPE_RUNTIME);
1355 acpi_enable_gpe(NULL, ec_ecdt->common.gpe_bit, ACPI_NOT_ISR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356
Len Brown50526df2005-08-11 17:32:05 -04001357 status = acpi_install_address_space_handler(ACPI_ROOT_OBJECT,
1358 ACPI_ADR_SPACE_EC,
1359 &acpi_ec_space_handler,
1360 &acpi_ec_space_setup,
1361 ec_ecdt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 if (ACPI_FAILURE(status)) {
Luming Yu45bea152005-07-23 04:08:00 -04001363 acpi_remove_gpe_handler(NULL, ec_ecdt->common.gpe_bit,
Len Brown50526df2005-08-11 17:32:05 -04001364 &acpi_ec_gpe_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 goto error;
1366 }
1367
1368 return 0;
1369
Len Brown50526df2005-08-11 17:32:05 -04001370 error:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 printk(KERN_ERR PREFIX "Could not use ECDT\n");
1372 kfree(ec_ecdt);
1373 ec_ecdt = NULL;
1374
1375 return -ENODEV;
1376}
1377
Len Brown50526df2005-08-11 17:32:05 -04001378static int __init acpi_ec_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379{
Len Brown50526df2005-08-11 17:32:05 -04001380 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382
1383 if (acpi_disabled)
Patrick Mocheld550d982006-06-27 00:41:40 -04001384 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385
1386 acpi_ec_dir = proc_mkdir(ACPI_EC_CLASS, acpi_root_dir);
1387 if (!acpi_ec_dir)
Patrick Mocheld550d982006-06-27 00:41:40 -04001388 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389
1390 /* Now register the driver for the EC */
1391 result = acpi_bus_register_driver(&acpi_ec_driver);
1392 if (result < 0) {
1393 remove_proc_entry(ACPI_EC_CLASS, acpi_root_dir);
Patrick Mocheld550d982006-06-27 00:41:40 -04001394 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 }
1396
Patrick Mocheld550d982006-06-27 00:41:40 -04001397 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398}
1399
1400subsys_initcall(acpi_ec_init);
1401
1402/* EC driver currently not unloadable */
1403#if 0
Len Brown50526df2005-08-11 17:32:05 -04001404static void __exit acpi_ec_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406
1407 acpi_bus_unregister_driver(&acpi_ec_driver);
1408
1409 remove_proc_entry(ACPI_EC_CLASS, acpi_root_dir);
1410
Patrick Mocheld550d982006-06-27 00:41:40 -04001411 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412}
Len Brown50526df2005-08-11 17:32:05 -04001413#endif /* 0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414
1415static int __init acpi_fake_ecdt_setup(char *str)
1416{
1417 acpi_fake_ecdt_enabled = 1;
OGAWA Hirofumi9b410462006-03-31 02:30:33 -08001418 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419}
Luming Yu7b15f5e2005-08-03 17:38:04 -04001420
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421__setup("acpi_fake_ecdt", acpi_fake_ecdt_setup);
Len Brown02b28a32005-12-05 16:33:04 -05001422static int __init acpi_ec_set_intr_mode(char *str)
Luming Yu45bea152005-07-23 04:08:00 -04001423{
Len Brown02b28a32005-12-05 16:33:04 -05001424 int intr;
Luming Yu7b15f5e2005-08-03 17:38:04 -04001425
Len Brown02b28a32005-12-05 16:33:04 -05001426 if (!get_option(&str, &intr))
Luming Yu7b15f5e2005-08-03 17:38:04 -04001427 return 0;
1428
Len Brown02b28a32005-12-05 16:33:04 -05001429 if (intr) {
1430 acpi_ec_poll_mode = EC_INTR;
1431 acpi_ec_driver.ops.add = acpi_ec_intr_add;
Luming Yu7b15f5e2005-08-03 17:38:04 -04001432 } else {
Len Brown02b28a32005-12-05 16:33:04 -05001433 acpi_ec_poll_mode = EC_POLL;
1434 acpi_ec_driver.ops.add = acpi_ec_poll_add;
Luming Yu7b15f5e2005-08-03 17:38:04 -04001435 }
Len Brown02b28a32005-12-05 16:33:04 -05001436 printk(KERN_INFO PREFIX "EC %s mode.\n", intr ? "interrupt" : "polling");
OGAWA Hirofumi9b410462006-03-31 02:30:33 -08001437 return 1;
Luming Yu45bea152005-07-23 04:08:00 -04001438}
Len Brown50526df2005-08-11 17:32:05 -04001439
Len Brown53f11d42005-12-05 16:46:36 -05001440__setup("ec_intr=", acpi_ec_set_intr_mode);