ACPI / EC: Add reference counting for query handlers
[deliverable/linux.git] / drivers / acpi / ec.c
CommitLineData
1da177e4 1/*
4a3f6b5b 2 * ec.c - ACPI Embedded Controller Driver (v2.2)
1da177e4 3 *
4a3f6b5b
LZ
4 * Copyright (C) 2001-2014 Intel Corporation
5 * Author: 2014 Lv Zheng <lv.zheng@intel.com>
6 * 2006, 2007 Alexey Starikovskiy <alexey.y.starikovskiy@intel.com>
7 * 2006 Denis Sadykov <denis.m.sadykov@intel.com>
8 * 2004 Luming Yu <luming.yu@intel.com>
9 * 2001, 2002 Andy Grover <andrew.grover@intel.com>
10 * 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>
11 * Copyright (C) 2008 Alexey Starikovskiy <astarikovskiy@suse.de>
1da177e4
LT
12 *
13 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
14 *
15 * This program is free software; you can redistribute it and/or modify
16 * it under the terms of the GNU General Public License as published by
17 * the Free Software Foundation; either version 2 of the License, or (at
18 * your option) any later version.
19 *
20 * This program is distributed in the hope that it will be useful, but
21 * WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
23 * General Public License for more details.
24 *
25 * You should have received a copy of the GNU General Public License along
26 * with this program; if not, write to the Free Software Foundation, Inc.,
27 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
28 *
29 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
30 */
31
7c6db4e0 32/* Uncomment next line to get verbose printout */
d772b3b3 33/* #define DEBUG */
16a26e85 34#define pr_fmt(fmt) "ACPI : EC: " fmt
d772b3b3 35
1da177e4
LT
36#include <linux/kernel.h>
37#include <linux/module.h>
38#include <linux/init.h>
39#include <linux/types.h>
40#include <linux/delay.h>
451566f4 41#include <linux/interrupt.h>
837012ed 42#include <linux/list.h>
7c6db4e0 43#include <linux/spinlock.h>
5a0e3ad6 44#include <linux/slab.h>
8b48463f 45#include <linux/acpi.h>
eb27cae8 46#include <linux/dmi.h>
8b48463f 47#include <asm/io.h>
1da177e4 48
1195a098
TR
49#include "internal.h"
50
1da177e4 51#define ACPI_EC_CLASS "embedded_controller"
1da177e4
LT
52#define ACPI_EC_DEVICE_NAME "Embedded Controller"
53#define ACPI_EC_FILE_INFO "info"
837012ed 54
703959d4 55/* EC status register */
1da177e4
LT
56#define ACPI_EC_FLAG_OBF 0x01 /* Output buffer full */
57#define ACPI_EC_FLAG_IBF 0x02 /* Input buffer full */
dd43de20 58#define ACPI_EC_FLAG_CMD 0x08 /* Input buffer contains a command */
451566f4 59#define ACPI_EC_FLAG_BURST 0x10 /* burst mode */
1da177e4 60#define ACPI_EC_FLAG_SCI 0x20 /* EC-SCI occurred */
4350933a 61
703959d4 62/* EC commands */
3261ff4d 63enum ec_command {
6ccedb10
AS
64 ACPI_EC_COMMAND_READ = 0x80,
65 ACPI_EC_COMMAND_WRITE = 0x81,
66 ACPI_EC_BURST_ENABLE = 0x82,
67 ACPI_EC_BURST_DISABLE = 0x83,
68 ACPI_EC_COMMAND_QUERY = 0x84,
3261ff4d 69};
837012ed 70
5c406412 71#define ACPI_EC_DELAY 500 /* Wait 500ms max. during EC ops */
703959d4 72#define ACPI_EC_UDELAY_GLK 1000 /* Wait 1ms max. to get global lock */
2a84cb98 73#define ACPI_EC_MSI_UDELAY 550 /* Wait 550us for MSI EC */
ad332c8a
KC
74#define ACPI_EC_CLEAR_MAX 100 /* Maximum number of events to query
75 * when trying to clear the EC */
703959d4 76
080e412c 77enum {
080e412c 78 EC_FLAGS_QUERY_PENDING, /* Query is pending */
7c6db4e0 79 EC_FLAGS_GPE_STORM, /* GPE storm detected */
f6bb13aa 80 EC_FLAGS_HANDLERS_INSTALLED, /* Handlers for GPE and
7c6db4e0 81 * OpReg are installed */
fe955682 82 EC_FLAGS_BLOCKED, /* Transactions are blocked */
1da177e4 83};
6ffb221a 84
f92fca00
LZ
85#define ACPI_EC_COMMAND_POLL 0x01 /* Available for command byte */
86#define ACPI_EC_COMMAND_COMPLETE 0x02 /* Completed last byte */
87
7a18e96d
TR
88/* ec.c is compiled in acpi namespace so this shows up as acpi.ec_delay param */
89static unsigned int ec_delay __read_mostly = ACPI_EC_DELAY;
90module_param(ec_delay, uint, 0644);
91MODULE_PARM_DESC(ec_delay, "Timeout(ms) waited until an EC command completes");
92
a520d52e
FT
93/*
94 * If the number of false interrupts per one transaction exceeds
95 * this threshold, will think there is a GPE storm happened and
96 * will disable the GPE for normal transaction.
97 */
98static unsigned int ec_storm_threshold __read_mostly = 8;
99module_param(ec_storm_threshold, uint, 0644);
100MODULE_PARM_DESC(ec_storm_threshold, "Maxim false GPE numbers not considered as GPE storm");
101
837012ed
AS
102struct acpi_ec_query_handler {
103 struct list_head node;
104 acpi_ec_query_func func;
105 acpi_handle handle;
106 void *data;
107 u8 query_bit;
01305d41 108 struct kref kref;
837012ed
AS
109};
110
8463200a 111struct transaction {
7c6db4e0
AS
112 const u8 *wdata;
113 u8 *rdata;
114 unsigned short irq_count;
8463200a 115 u8 command;
a2f93aea
AS
116 u8 wi;
117 u8 ri;
7c6db4e0
AS
118 u8 wlen;
119 u8 rlen;
f92fca00 120 u8 flags;
7c6db4e0
AS
121};
122
1195a098
TR
123struct acpi_ec *boot_ec, *first_ec;
124EXPORT_SYMBOL(first_ec);
703959d4 125
5423a0cb 126static int EC_FLAGS_MSI; /* Out-of-spec MSI controller */
0adf3c74 127static int EC_FLAGS_VALIDATE_ECDT; /* ASUStec ECDTs need to be validated */
478fa03b 128static int EC_FLAGS_SKIP_DSDT_SCAN; /* Not all BIOS survive early DSDT scan */
ad332c8a 129static int EC_FLAGS_CLEAR_ON_RESUME; /* Needs acpi_ec_clear() on boot/resume */
79149001 130static int EC_FLAGS_QUERY_HANDSHAKE; /* Needs QR_EC issued when SCI_EVT set */
5423a0cb 131
1da177e4 132/* --------------------------------------------------------------------------
7a73e60e
LZ
133 * Transaction Management
134 * -------------------------------------------------------------------------- */
1da177e4 135
6ffb221a 136static inline u8 acpi_ec_read_status(struct acpi_ec *ec)
1da177e4 137{
3ebe08a7 138 u8 x = inb(ec->command_addr);
7a73e60e 139
dd43de20
LZ
140 pr_debug("EC_SC(R) = 0x%2.2x "
141 "SCI_EVT=%d BURST=%d CMD=%d IBF=%d OBF=%d\n",
142 x,
143 !!(x & ACPI_EC_FLAG_SCI),
144 !!(x & ACPI_EC_FLAG_BURST),
145 !!(x & ACPI_EC_FLAG_CMD),
146 !!(x & ACPI_EC_FLAG_IBF),
147 !!(x & ACPI_EC_FLAG_OBF));
3ebe08a7 148 return x;
451566f4
DT
149}
150
6ffb221a 151static inline u8 acpi_ec_read_data(struct acpi_ec *ec)
703959d4 152{
3ebe08a7 153 u8 x = inb(ec->data_addr);
7a73e60e 154
dd43de20 155 pr_debug("EC_DATA(R) = 0x%2.2x\n", x);
7c6db4e0 156 return x;
7c6db5e5
DS
157}
158
6ffb221a 159static inline void acpi_ec_write_cmd(struct acpi_ec *ec, u8 command)
45bea155 160{
dd43de20 161 pr_debug("EC_SC(W) = 0x%2.2x\n", command);
6ffb221a 162 outb(command, ec->command_addr);
45bea155
LY
163}
164
6ffb221a 165static inline void acpi_ec_write_data(struct acpi_ec *ec, u8 data)
45bea155 166{
dd43de20 167 pr_debug("EC_DATA(W) = 0x%2.2x\n", data);
6ffb221a 168 outb(data, ec->data_addr);
703959d4 169}
45bea155 170
e34c0e2b
LZ
171#ifdef DEBUG
172static const char *acpi_ec_cmd_string(u8 cmd)
173{
174 switch (cmd) {
175 case 0x80:
176 return "RD_EC";
177 case 0x81:
178 return "WR_EC";
179 case 0x82:
180 return "BE_EC";
181 case 0x83:
182 return "BD_EC";
183 case 0x84:
184 return "QR_EC";
185 }
186 return "UNKNOWN";
187}
188#else
189#define acpi_ec_cmd_string(cmd) "UNDEF"
190#endif
191
f92fca00 192static int ec_transaction_completed(struct acpi_ec *ec)
6ffb221a 193{
7c6db4e0
AS
194 unsigned long flags;
195 int ret = 0;
7a73e60e 196
f351d027 197 spin_lock_irqsave(&ec->lock, flags);
c0d65341 198 if (ec->curr && (ec->curr->flags & ACPI_EC_COMMAND_COMPLETE))
7c6db4e0 199 ret = 1;
f351d027 200 spin_unlock_irqrestore(&ec->lock, flags);
7c6db4e0 201 return ret;
45bea155 202}
451566f4 203
0c78808f 204static void advance_transaction(struct acpi_ec *ec)
7c6db5e5 205{
36b15875 206 struct transaction *t;
66b42b78 207 u8 status;
c0d65341 208 bool wakeup = false;
b76b51ba 209
c95f25b0
LZ
210 pr_debug("===== %s (%d) =====\n",
211 in_interrupt() ? "IRQ" : "TASK", smp_processor_id());
66b42b78 212 status = acpi_ec_read_status(ec);
36b15875 213 t = ec->curr;
b76b51ba 214 if (!t)
f92fca00
LZ
215 goto err;
216 if (t->flags & ACPI_EC_COMMAND_POLL) {
217 if (t->wlen > t->wi) {
218 if ((status & ACPI_EC_FLAG_IBF) == 0)
219 acpi_ec_write_data(ec, t->wdata[t->wi++]);
220 else
221 goto err;
222 } else if (t->rlen > t->ri) {
223 if ((status & ACPI_EC_FLAG_OBF) == 1) {
224 t->rdata[t->ri++] = acpi_ec_read_data(ec);
c0d65341 225 if (t->rlen == t->ri) {
f92fca00 226 t->flags |= ACPI_EC_COMMAND_COMPLETE;
3afcf2ec 227 if (t->command == ACPI_EC_COMMAND_QUERY)
e34c0e2b
LZ
228 pr_debug("***** Command(%s) hardware completion *****\n",
229 acpi_ec_cmd_string(t->command));
c0d65341
LZ
230 wakeup = true;
231 }
f92fca00
LZ
232 } else
233 goto err;
234 } else if (t->wlen == t->wi &&
c0d65341 235 (status & ACPI_EC_FLAG_IBF) == 0) {
f92fca00 236 t->flags |= ACPI_EC_COMMAND_COMPLETE;
c0d65341
LZ
237 wakeup = true;
238 }
0c78808f 239 goto out;
f92fca00 240 } else {
79149001
LZ
241 if (EC_FLAGS_QUERY_HANDSHAKE &&
242 !(status & ACPI_EC_FLAG_SCI) &&
3afcf2ec
LZ
243 (t->command == ACPI_EC_COMMAND_QUERY)) {
244 t->flags |= ACPI_EC_COMMAND_POLL;
245 t->rdata[t->ri++] = 0x00;
246 t->flags |= ACPI_EC_COMMAND_COMPLETE;
e34c0e2b
LZ
247 pr_debug("***** Command(%s) software completion *****\n",
248 acpi_ec_cmd_string(t->command));
3afcf2ec
LZ
249 wakeup = true;
250 } else if ((status & ACPI_EC_FLAG_IBF) == 0) {
f92fca00
LZ
251 acpi_ec_write_cmd(ec, t->command);
252 t->flags |= ACPI_EC_COMMAND_POLL;
7c6db4e0 253 } else
dd15f8c4 254 goto err;
0c78808f 255 goto out;
f92fca00 256 }
dd15f8c4 257err:
a3cd8d27
FT
258 /*
259 * If SCI bit is set, then don't think it's a false IRQ
260 * otherwise will take a not handled IRQ as a false one.
261 */
f92fca00
LZ
262 if (!(status & ACPI_EC_FLAG_SCI)) {
263 if (in_interrupt() && t)
264 ++t->irq_count;
265 }
0c78808f
LZ
266out:
267 if (wakeup && in_interrupt())
268 wake_up(&ec->wait);
f92fca00 269}
a3cd8d27 270
f92fca00
LZ
271static void start_transaction(struct acpi_ec *ec)
272{
273 ec->curr->irq_count = ec->curr->wi = ec->curr->ri = 0;
274 ec->curr->flags = 0;
0c78808f 275 advance_transaction(ec);
845625cd 276}
03d1d99c 277
3eba563e 278static int acpi_ec_sync_query(struct acpi_ec *ec, u8 *data);
7c6db4e0 279
a62e8f19 280static int ec_check_sci_sync(struct acpi_ec *ec, u8 state)
7c6db5e5 281{
7c6db4e0
AS
282 if (state & ACPI_EC_FLAG_SCI) {
283 if (!test_and_set_bit(EC_FLAGS_QUERY_PENDING, &ec->flags))
3eba563e 284 return acpi_ec_sync_query(ec, NULL);
7c6db4e0
AS
285 }
286 return 0;
287}
288
289static int ec_poll(struct acpi_ec *ec)
290{
2a84cb98 291 unsigned long flags;
28fe5c82 292 int repeat = 5; /* number of command restarts */
7a73e60e 293
2a84cb98
AS
294 while (repeat--) {
295 unsigned long delay = jiffies +
7a18e96d 296 msecs_to_jiffies(ec_delay);
2a84cb98
AS
297 do {
298 /* don't sleep with disabled interrupts */
299 if (EC_FLAGS_MSI || irqs_disabled()) {
300 udelay(ACPI_EC_MSI_UDELAY);
f92fca00 301 if (ec_transaction_completed(ec))
2a84cb98
AS
302 return 0;
303 } else {
304 if (wait_event_timeout(ec->wait,
f92fca00 305 ec_transaction_completed(ec),
2a84cb98
AS
306 msecs_to_jiffies(1)))
307 return 0;
308 }
f92fca00 309 spin_lock_irqsave(&ec->lock, flags);
0c78808f 310 advance_transaction(ec);
f92fca00 311 spin_unlock_irqrestore(&ec->lock, flags);
2a84cb98 312 } while (time_before(jiffies, delay));
16a26e85 313 pr_debug("controller reset, restart transaction\n");
f351d027 314 spin_lock_irqsave(&ec->lock, flags);
2a84cb98 315 start_transaction(ec);
f351d027 316 spin_unlock_irqrestore(&ec->lock, flags);
af3fd140 317 }
b77d81b2 318 return -ETIME;
1da177e4
LT
319}
320
8463200a 321static int acpi_ec_transaction_unlocked(struct acpi_ec *ec,
2a84cb98 322 struct transaction *t)
45bea155 323{
7c6db4e0 324 unsigned long tmp;
7c6db4e0 325 int ret = 0;
7a73e60e 326
5423a0cb 327 if (EC_FLAGS_MSI)
2a84cb98 328 udelay(ACPI_EC_MSI_UDELAY);
7c6db4e0 329 /* start transaction */
f351d027 330 spin_lock_irqsave(&ec->lock, tmp);
7c6db4e0 331 /* following two actions should be kept atomic */
8463200a 332 ec->curr = t;
e34c0e2b
LZ
333 pr_debug("***** Command(%s) started *****\n",
334 acpi_ec_cmd_string(t->command));
a2f93aea 335 start_transaction(ec);
d3090b6a 336 if (ec->curr->command == ACPI_EC_COMMAND_QUERY) {
558e4736 337 clear_bit(EC_FLAGS_QUERY_PENDING, &ec->flags);
d3090b6a
LZ
338 pr_debug("***** Event stopped *****\n");
339 }
df9ff918
LZ
340 spin_unlock_irqrestore(&ec->lock, tmp);
341 ret = ec_poll(ec);
342 spin_lock_irqsave(&ec->lock, tmp);
e34c0e2b
LZ
343 pr_debug("***** Command(%s) stopped *****\n",
344 acpi_ec_cmd_string(t->command));
8463200a 345 ec->curr = NULL;
f351d027 346 spin_unlock_irqrestore(&ec->lock, tmp);
7c6db4e0
AS
347 return ret;
348}
349
2a84cb98 350static int acpi_ec_transaction(struct acpi_ec *ec, struct transaction *t)
1da177e4 351{
d7a76e4c 352 int status;
50526df6 353 u32 glk;
7a73e60e 354
8463200a 355 if (!ec || (!t) || (t->wlen && !t->wdata) || (t->rlen && !t->rdata))
d550d98d 356 return -EINVAL;
8463200a
AS
357 if (t->rdata)
358 memset(t->rdata, 0, t->rlen);
f351d027 359 mutex_lock(&ec->mutex);
fe955682 360 if (test_bit(EC_FLAGS_BLOCKED, &ec->flags)) {
f6bb13aa
RW
361 status = -EINVAL;
362 goto unlock;
363 }
703959d4 364 if (ec->global_lock) {
1da177e4 365 status = acpi_acquire_global_lock(ACPI_EC_UDELAY_GLK, &glk);
c24e912b 366 if (ACPI_FAILURE(status)) {
7c6db4e0
AS
367 status = -ENODEV;
368 goto unlock;
c24e912b 369 }
1da177e4 370 }
a62e8f19
AS
371 /* disable GPE during transaction if storm is detected */
372 if (test_bit(EC_FLAGS_GPE_STORM, &ec->flags)) {
3784730b
RW
373 /* It has to be disabled, so that it doesn't trigger. */
374 acpi_disable_gpe(NULL, ec->gpe);
a62e8f19
AS
375 }
376
2a84cb98 377 status = acpi_ec_transaction_unlocked(ec, t);
a62e8f19
AS
378
379 /* check if we received SCI during transaction */
380 ec_check_sci_sync(ec, acpi_ec_read_status(ec));
381 if (test_bit(EC_FLAGS_GPE_STORM, &ec->flags)) {
54070101 382 msleep(1);
3784730b
RW
383 /* It is safe to enable the GPE outside of the transaction. */
384 acpi_enable_gpe(NULL, ec->gpe);
a520d52e 385 } else if (t->irq_count > ec_storm_threshold) {
16a26e85 386 pr_info("GPE storm detected(%d GPEs), "
b76b51ba
FT
387 "transactions will use polling mode\n",
388 t->irq_count);
a62e8f19
AS
389 set_bit(EC_FLAGS_GPE_STORM, &ec->flags);
390 }
703959d4 391 if (ec->global_lock)
1da177e4 392 acpi_release_global_lock(glk);
7c6db4e0 393unlock:
f351d027 394 mutex_unlock(&ec->mutex);
d550d98d 395 return status;
1da177e4
LT
396}
397
8a383ef0 398static int acpi_ec_burst_enable(struct acpi_ec *ec)
c45aac43
AS
399{
400 u8 d;
8463200a
AS
401 struct transaction t = {.command = ACPI_EC_BURST_ENABLE,
402 .wdata = NULL, .rdata = &d,
403 .wlen = 0, .rlen = 1};
404
2a84cb98 405 return acpi_ec_transaction(ec, &t);
c45aac43
AS
406}
407
8a383ef0 408static int acpi_ec_burst_disable(struct acpi_ec *ec)
c45aac43 409{
8463200a
AS
410 struct transaction t = {.command = ACPI_EC_BURST_DISABLE,
411 .wdata = NULL, .rdata = NULL,
412 .wlen = 0, .rlen = 0};
413
7c6db4e0 414 return (acpi_ec_read_status(ec) & ACPI_EC_FLAG_BURST) ?
2a84cb98 415 acpi_ec_transaction(ec, &t) : 0;
c45aac43
AS
416}
417
7a73e60e 418static int acpi_ec_read(struct acpi_ec *ec, u8 address, u8 *data)
3576cf61
DS
419{
420 int result;
421 u8 d;
8463200a
AS
422 struct transaction t = {.command = ACPI_EC_COMMAND_READ,
423 .wdata = &address, .rdata = &d,
424 .wlen = 1, .rlen = 1};
3576cf61 425
2a84cb98 426 result = acpi_ec_transaction(ec, &t);
3576cf61
DS
427 *data = d;
428 return result;
429}
6ffb221a 430
3576cf61
DS
431static int acpi_ec_write(struct acpi_ec *ec, u8 address, u8 data)
432{
6ccedb10 433 u8 wdata[2] = { address, data };
8463200a
AS
434 struct transaction t = {.command = ACPI_EC_COMMAND_WRITE,
435 .wdata = wdata, .rdata = NULL,
436 .wlen = 2, .rlen = 0};
437
2a84cb98 438 return acpi_ec_transaction(ec, &t);
3576cf61
DS
439}
440
b76b51ba 441int ec_read(u8 addr, u8 *val)
1da177e4 442{
1da177e4 443 int err;
6ffb221a 444 u8 temp_data;
1da177e4
LT
445
446 if (!first_ec)
447 return -ENODEV;
448
d033879c 449 err = acpi_ec_read(first_ec, addr, &temp_data);
1da177e4
LT
450
451 if (!err) {
452 *val = temp_data;
453 return 0;
7a73e60e
LZ
454 }
455 return err;
1da177e4
LT
456}
457EXPORT_SYMBOL(ec_read);
458
50526df6 459int ec_write(u8 addr, u8 val)
1da177e4 460{
1da177e4
LT
461 int err;
462
463 if (!first_ec)
464 return -ENODEV;
465
d033879c 466 err = acpi_ec_write(first_ec, addr, val);
1da177e4
LT
467
468 return err;
469}
470EXPORT_SYMBOL(ec_write);
471
616362de 472int ec_transaction(u8 command,
7a73e60e
LZ
473 const u8 *wdata, unsigned wdata_len,
474 u8 *rdata, unsigned rdata_len)
45bea155 475{
8463200a
AS
476 struct transaction t = {.command = command,
477 .wdata = wdata, .rdata = rdata,
478 .wlen = wdata_len, .rlen = rdata_len};
7a73e60e 479
d7a76e4c
LP
480 if (!first_ec)
481 return -ENODEV;
45bea155 482
2a84cb98 483 return acpi_ec_transaction(first_ec, &t);
45bea155 484}
ab9e43c6
LP
485EXPORT_SYMBOL(ec_transaction);
486
3e2abc5a
SF
487/* Get the handle to the EC device */
488acpi_handle ec_get_handle(void)
489{
490 if (!first_ec)
491 return NULL;
492 return first_ec->handle;
493}
3e2abc5a
SF
494EXPORT_SYMBOL(ec_get_handle);
495
ad332c8a 496/*
3eba563e 497 * Process _Q events that might have accumulated in the EC.
ad332c8a
KC
498 * Run with locked ec mutex.
499 */
500static void acpi_ec_clear(struct acpi_ec *ec)
501{
502 int i, status;
503 u8 value = 0;
504
505 for (i = 0; i < ACPI_EC_CLEAR_MAX; i++) {
3eba563e 506 status = acpi_ec_sync_query(ec, &value);
ad332c8a
KC
507 if (status || !value)
508 break;
509 }
510
511 if (unlikely(i == ACPI_EC_CLEAR_MAX))
512 pr_warn("Warning: Maximum of %d stale EC events cleared\n", i);
513 else
514 pr_info("%d stale EC events cleared\n", i);
515}
516
fe955682 517void acpi_ec_block_transactions(void)
f6bb13aa
RW
518{
519 struct acpi_ec *ec = first_ec;
520
521 if (!ec)
522 return;
523
f351d027 524 mutex_lock(&ec->mutex);
f6bb13aa 525 /* Prevent transactions from being carried out */
fe955682 526 set_bit(EC_FLAGS_BLOCKED, &ec->flags);
f351d027 527 mutex_unlock(&ec->mutex);
f6bb13aa
RW
528}
529
fe955682 530void acpi_ec_unblock_transactions(void)
f6bb13aa
RW
531{
532 struct acpi_ec *ec = first_ec;
533
534 if (!ec)
535 return;
536
f351d027 537 mutex_lock(&ec->mutex);
f6bb13aa 538 /* Allow transactions to be carried out again */
fe955682 539 clear_bit(EC_FLAGS_BLOCKED, &ec->flags);
ad332c8a
KC
540
541 if (EC_FLAGS_CLEAR_ON_RESUME)
542 acpi_ec_clear(ec);
543
f351d027 544 mutex_unlock(&ec->mutex);
f6bb13aa
RW
545}
546
fe955682 547void acpi_ec_unblock_transactions_early(void)
d5a64513
RW
548{
549 /*
550 * Allow transactions to happen again (this function is called from
551 * atomic context during wakeup, so we don't need to acquire the mutex).
552 */
553 if (first_ec)
fe955682 554 clear_bit(EC_FLAGS_BLOCKED, &first_ec->flags);
d5a64513
RW
555}
556
7a73e60e 557static int acpi_ec_query_unlocked(struct acpi_ec *ec, u8 *data)
3576cf61
DS
558{
559 int result;
6ccedb10 560 u8 d;
8463200a
AS
561 struct transaction t = {.command = ACPI_EC_COMMAND_QUERY,
562 .wdata = NULL, .rdata = &d,
563 .wlen = 0, .rlen = 1};
7a73e60e 564
6ccedb10
AS
565 if (!ec || !data)
566 return -EINVAL;
6ccedb10
AS
567 /*
568 * Query the EC to find out which _Qxx method we need to evaluate.
569 * Note that successful completion of the query causes the ACPI_EC_SCI
570 * bit to be cleared (and thus clearing the interrupt source).
571 */
a62e8f19 572 result = acpi_ec_transaction_unlocked(ec, &t);
6ccedb10
AS
573 if (result)
574 return result;
6ccedb10
AS
575 if (!d)
576 return -ENODATA;
6ccedb10
AS
577 *data = d;
578 return 0;
1da177e4
LT
579}
580
1da177e4
LT
581/* --------------------------------------------------------------------------
582 Event Management
583 -------------------------------------------------------------------------- */
01305d41
LZ
584static struct acpi_ec_query_handler *
585acpi_ec_get_query_handler(struct acpi_ec_query_handler *handler)
586{
587 if (handler)
588 kref_get(&handler->kref);
589 return handler;
590}
591
592static void acpi_ec_query_handler_release(struct kref *kref)
593{
594 struct acpi_ec_query_handler *handler =
595 container_of(kref, struct acpi_ec_query_handler, kref);
596
597 kfree(handler);
598}
599
600static void acpi_ec_put_query_handler(struct acpi_ec_query_handler *handler)
601{
602 kref_put(&handler->kref, acpi_ec_query_handler_release);
603}
604
837012ed
AS
605int acpi_ec_add_query_handler(struct acpi_ec *ec, u8 query_bit,
606 acpi_handle handle, acpi_ec_query_func func,
607 void *data)
608{
609 struct acpi_ec_query_handler *handler =
610 kzalloc(sizeof(struct acpi_ec_query_handler), GFP_KERNEL);
7a73e60e 611
837012ed
AS
612 if (!handler)
613 return -ENOMEM;
614
615 handler->query_bit = query_bit;
616 handler->handle = handle;
617 handler->func = func;
618 handler->data = data;
f351d027 619 mutex_lock(&ec->mutex);
01305d41 620 kref_init(&handler->kref);
30c08574 621 list_add(&handler->node, &ec->list);
f351d027 622 mutex_unlock(&ec->mutex);
837012ed
AS
623 return 0;
624}
837012ed
AS
625EXPORT_SYMBOL_GPL(acpi_ec_add_query_handler);
626
627void acpi_ec_remove_query_handler(struct acpi_ec *ec, u8 query_bit)
628{
1544fdbc 629 struct acpi_ec_query_handler *handler, *tmp;
01305d41 630 LIST_HEAD(free_list);
7a73e60e 631
f351d027 632 mutex_lock(&ec->mutex);
1544fdbc 633 list_for_each_entry_safe(handler, tmp, &ec->list, node) {
837012ed 634 if (query_bit == handler->query_bit) {
01305d41
LZ
635 list_del_init(&handler->node);
636 list_add(&handler->node, &free_list);
837012ed
AS
637 }
638 }
f351d027 639 mutex_unlock(&ec->mutex);
01305d41
LZ
640 list_for_each_entry(handler, &free_list, node)
641 acpi_ec_put_query_handler(handler);
837012ed 642}
837012ed 643EXPORT_SYMBOL_GPL(acpi_ec_remove_query_handler);
1da177e4 644
a62e8f19 645static void acpi_ec_run(void *cxt)
45bea155 646{
a62e8f19 647 struct acpi_ec_query_handler *handler = cxt;
7a73e60e 648
a62e8f19 649 if (!handler)
e41334c0 650 return;
d3090b6a 651 pr_debug("##### Query(0x%02x) started #####\n", handler->query_bit);
a62e8f19
AS
652 if (handler->func)
653 handler->func(handler->data);
654 else if (handler->handle)
655 acpi_evaluate_object(handler->handle, NULL, NULL, NULL);
d3090b6a 656 pr_debug("##### Query(0x%02x) stopped #####\n", handler->query_bit);
01305d41 657 acpi_ec_put_query_handler(handler);
a62e8f19
AS
658}
659
3eba563e 660static int acpi_ec_sync_query(struct acpi_ec *ec, u8 *data)
a62e8f19
AS
661{
662 u8 value = 0;
663 int status;
01305d41 664 struct acpi_ec_query_handler *handler;
3eba563e
KC
665
666 status = acpi_ec_query_unlocked(ec, &value);
667 if (data)
668 *data = value;
669 if (status)
a62e8f19 670 return status;
3eba563e 671
837012ed
AS
672 list_for_each_entry(handler, &ec->list, node) {
673 if (value == handler->query_bit) {
674 /* have custom handler for this bit */
01305d41 675 handler = acpi_ec_get_query_handler(handler);
d3090b6a
LZ
676 pr_debug("##### Query(0x%02x) scheduled #####\n",
677 handler->query_bit);
01305d41 678 return acpi_os_execute((handler->func) ?
f5347867 679 OSL_NOTIFY_HANDLER : OSL_GPE_HANDLER,
01305d41 680 acpi_ec_run, handler);
837012ed
AS
681 }
682 }
a62e8f19
AS
683 return 0;
684}
685
686static void acpi_ec_gpe_query(void *ec_cxt)
687{
688 struct acpi_ec *ec = ec_cxt;
7a73e60e 689
a62e8f19
AS
690 if (!ec)
691 return;
f351d027 692 mutex_lock(&ec->mutex);
3eba563e 693 acpi_ec_sync_query(ec, NULL);
f351d027 694 mutex_unlock(&ec->mutex);
45bea155 695}
1da177e4 696
a62e8f19
AS
697static int ec_check_sci(struct acpi_ec *ec, u8 state)
698{
699 if (state & ACPI_EC_FLAG_SCI) {
700 if (!test_and_set_bit(EC_FLAGS_QUERY_PENDING, &ec->flags)) {
d3090b6a 701 pr_debug("***** Event started *****\n");
a62e8f19
AS
702 return acpi_os_execute(OSL_NOTIFY_HANDLER,
703 acpi_ec_gpe_query, ec);
704 }
705 }
706 return 0;
707}
708
8b6cd8ad
LM
709static u32 acpi_ec_gpe_handler(acpi_handle gpe_device,
710 u32 gpe_number, void *data)
1da177e4 711{
f92fca00 712 unsigned long flags;
3d02b90b 713 struct acpi_ec *ec = data;
7c6db4e0 714
f92fca00 715 spin_lock_irqsave(&ec->lock, flags);
0c78808f 716 advance_transaction(ec);
c0d65341
LZ
717 spin_unlock_irqrestore(&ec->lock, flags);
718 ec_check_sci(ec, acpi_ec_read_status(ec));
bba63a29 719 return ACPI_INTERRUPT_HANDLED | ACPI_REENABLE_GPE;
845625cd
AS
720}
721
1da177e4 722/* --------------------------------------------------------------------------
7a73e60e
LZ
723 * Address Space Management
724 * -------------------------------------------------------------------------- */
1da177e4 725
1da177e4 726static acpi_status
5b7734b4 727acpi_ec_space_handler(u32 function, acpi_physical_address address,
dadf28a1 728 u32 bits, u64 *value64,
50526df6 729 void *handler_context, void *region_context)
1da177e4 730{
3d02b90b 731 struct acpi_ec *ec = handler_context;
dadf28a1
AS
732 int result = 0, i, bytes = bits / 8;
733 u8 *value = (u8 *)value64;
1da177e4 734
1da177e4 735 if ((address > 0xFF) || !value || !handler_context)
d550d98d 736 return AE_BAD_PARAMETER;
1da177e4 737
5b7734b4 738 if (function != ACPI_READ && function != ACPI_WRITE)
d550d98d 739 return AE_BAD_PARAMETER;
1da177e4 740
dadf28a1 741 if (EC_FLAGS_MSI || bits > 8)
6a63b06f 742 acpi_ec_burst_enable(ec);
b3b233c7 743
dadf28a1
AS
744 for (i = 0; i < bytes; ++i, ++address, ++value)
745 result = (function == ACPI_READ) ?
746 acpi_ec_read(ec, address, value) :
747 acpi_ec_write(ec, address, *value);
1da177e4 748
dadf28a1 749 if (EC_FLAGS_MSI || bits > 8)
6a63b06f 750 acpi_ec_burst_disable(ec);
b3b233c7 751
1da177e4
LT
752 switch (result) {
753 case -EINVAL:
d550d98d 754 return AE_BAD_PARAMETER;
1da177e4 755 case -ENODEV:
d550d98d 756 return AE_NOT_FOUND;
1da177e4 757 case -ETIME:
d550d98d 758 return AE_TIME;
1da177e4 759 default:
d550d98d 760 return AE_OK;
1da177e4 761 }
1da177e4
LT
762}
763
1da177e4 764/* --------------------------------------------------------------------------
7a73e60e
LZ
765 * Driver Interface
766 * -------------------------------------------------------------------------- */
767
c0900c35
AS
768static acpi_status
769ec_parse_io_ports(struct acpi_resource *resource, void *context);
770
c0900c35
AS
771static struct acpi_ec *make_acpi_ec(void)
772{
773 struct acpi_ec *ec = kzalloc(sizeof(struct acpi_ec), GFP_KERNEL);
7a73e60e 774
c0900c35
AS
775 if (!ec)
776 return NULL;
080e412c 777 ec->flags = 1 << EC_FLAGS_QUERY_PENDING;
f351d027 778 mutex_init(&ec->mutex);
c0900c35 779 init_waitqueue_head(&ec->wait);
837012ed 780 INIT_LIST_HEAD(&ec->list);
f351d027 781 spin_lock_init(&ec->lock);
c0900c35
AS
782 return ec;
783}
837012ed 784
c019b193
AS
785static acpi_status
786acpi_ec_register_query_methods(acpi_handle handle, u32 level,
787 void *context, void **return_value)
788{
0175d562
LM
789 char node_name[5];
790 struct acpi_buffer buffer = { sizeof(node_name), node_name };
c019b193
AS
791 struct acpi_ec *ec = context;
792 int value = 0;
0175d562
LM
793 acpi_status status;
794
795 status = acpi_get_name(handle, ACPI_SINGLE_NAME, &buffer);
796
7a73e60e 797 if (ACPI_SUCCESS(status) && sscanf(node_name, "_Q%x", &value) == 1)
c019b193 798 acpi_ec_add_query_handler(ec, value, handle, NULL, NULL);
c019b193
AS
799 return AE_OK;
800}
801
cd8c93a4
AS
802static acpi_status
803ec_parse_device(acpi_handle handle, u32 Level, void *context, void **retval)
837012ed 804{
cd8c93a4 805 acpi_status status;
d21cf3c1 806 unsigned long long tmp = 0;
cd8c93a4 807 struct acpi_ec *ec = context;
a5032bfd
AS
808
809 /* clear addr values, ec_parse_io_ports depend on it */
810 ec->command_addr = ec->data_addr = 0;
811
cd8c93a4
AS
812 status = acpi_walk_resources(handle, METHOD_NAME__CRS,
813 ec_parse_io_ports, ec);
814 if (ACPI_FAILURE(status))
815 return status;
837012ed
AS
816
817 /* Get GPE bit assignment (EC events). */
818 /* TODO: Add support for _GPE returning a package */
27663c58 819 status = acpi_evaluate_integer(handle, "_GPE", NULL, &tmp);
cd8c93a4
AS
820 if (ACPI_FAILURE(status))
821 return status;
27663c58 822 ec->gpe = tmp;
837012ed 823 /* Use the global lock for all EC transactions? */
d21cf3c1 824 tmp = 0;
27663c58
MW
825 acpi_evaluate_integer(handle, "_GLK", NULL, &tmp);
826 ec->global_lock = tmp;
837012ed 827 ec->handle = handle;
cd8c93a4 828 return AE_CTRL_TERMINATE;
837012ed
AS
829}
830
5efc5476
BH
831static int ec_install_handlers(struct acpi_ec *ec)
832{
833 acpi_status status;
7a73e60e 834
5efc5476
BH
835 if (test_bit(EC_FLAGS_HANDLERS_INSTALLED, &ec->flags))
836 return 0;
837 status = acpi_install_gpe_handler(NULL, ec->gpe,
838 ACPI_GPE_EDGE_TRIGGERED,
839 &acpi_ec_gpe_handler, ec);
840 if (ACPI_FAILURE(status))
841 return -ENODEV;
9630bdd9 842
a44061aa 843 acpi_enable_gpe(NULL, ec->gpe);
5efc5476
BH
844 status = acpi_install_address_space_handler(ec->handle,
845 ACPI_ADR_SPACE_EC,
846 &acpi_ec_space_handler,
847 NULL, ec);
848 if (ACPI_FAILURE(status)) {
849 if (status == AE_NOT_FOUND) {
850 /*
851 * Maybe OS fails in evaluating the _REG object.
852 * The AE_NOT_FOUND error will be ignored and OS
853 * continue to initialize EC.
854 */
16a26e85 855 pr_err("Fail in evaluating the _REG object"
5efc5476
BH
856 " of EC device. Broken bios is suspected.\n");
857 } else {
42b946bb 858 acpi_disable_gpe(NULL, ec->gpe);
5efc5476
BH
859 acpi_remove_gpe_handler(NULL, ec->gpe,
860 &acpi_ec_gpe_handler);
861 return -ENODEV;
862 }
863 }
864
865 set_bit(EC_FLAGS_HANDLERS_INSTALLED, &ec->flags);
866 return 0;
867}
868
4c611060
AS
869static void ec_remove_handlers(struct acpi_ec *ec)
870{
1741acea
LZ
871 if (!test_bit(EC_FLAGS_HANDLERS_INSTALLED, &ec->flags))
872 return;
a44061aa 873 acpi_disable_gpe(NULL, ec->gpe);
4c611060
AS
874 if (ACPI_FAILURE(acpi_remove_address_space_handler(ec->handle,
875 ACPI_ADR_SPACE_EC, &acpi_ec_space_handler)))
16a26e85 876 pr_err("failed to remove space handler\n");
4c611060
AS
877 if (ACPI_FAILURE(acpi_remove_gpe_handler(NULL, ec->gpe,
878 &acpi_ec_gpe_handler)))
16a26e85 879 pr_err("failed to remove gpe handler\n");
7c6db4e0 880 clear_bit(EC_FLAGS_HANDLERS_INSTALLED, &ec->flags);
4c611060
AS
881}
882
703959d4 883static int acpi_ec_add(struct acpi_device *device)
1da177e4 884{
703959d4 885 struct acpi_ec *ec = NULL;
d02be047 886 int ret;
45bea155 887
c0900c35
AS
888 strcpy(acpi_device_name(device), ACPI_EC_DEVICE_NAME);
889 strcpy(acpi_device_class(device), ACPI_EC_CLASS);
890
4c611060 891 /* Check for boot EC */
ce52ddf5
AS
892 if (boot_ec &&
893 (boot_ec->handle == device->handle ||
894 boot_ec->handle == ACPI_ROOT_OBJECT)) {
895 ec = boot_ec;
896 boot_ec = NULL;
897 } else {
898 ec = make_acpi_ec();
899 if (!ec)
900 return -ENOMEM;
a5032bfd
AS
901 }
902 if (ec_parse_device(device->handle, 0, ec, NULL) !=
903 AE_CTRL_TERMINATE) {
ce52ddf5
AS
904 kfree(ec);
905 return -EINVAL;
4c611060
AS
906 }
907
ce52ddf5
AS
908 /* Find and register all query methods */
909 acpi_walk_namespace(ACPI_TYPE_METHOD, ec->handle, 1,
2263576c 910 acpi_ec_register_query_methods, NULL, ec, NULL);
ce52ddf5 911
4c611060
AS
912 if (!first_ec)
913 first_ec = ec;
db89b4f0 914 device->driver_data = ec;
de4f1046 915
d6795fe3
AK
916 ret = !!request_region(ec->data_addr, 1, "EC data");
917 WARN(!ret, "Could not request EC data io port 0x%lx", ec->data_addr);
918 ret = !!request_region(ec->command_addr, 1, "EC cmd");
919 WARN(!ret, "Could not request EC cmd io port 0x%lx", ec->command_addr);
de4f1046 920
16a26e85 921 pr_info("GPE = 0x%lx, I/O: command/status = 0x%lx, data = 0x%lx\n",
4c611060 922 ec->gpe, ec->command_addr, ec->data_addr);
5efc5476
BH
923
924 ret = ec_install_handlers(ec);
925
926 /* EC is fully operational, allow queries */
927 clear_bit(EC_FLAGS_QUERY_PENDING, &ec->flags);
ad332c8a
KC
928
929 /* Clear stale _Q events if hardware might require that */
930 if (EC_FLAGS_CLEAR_ON_RESUME) {
931 mutex_lock(&ec->mutex);
932 acpi_ec_clear(ec);
933 mutex_unlock(&ec->mutex);
934 }
5efc5476 935 return ret;
1da177e4
LT
936}
937
51fac838 938static int acpi_ec_remove(struct acpi_device *device)
1da177e4 939{
01f22462 940 struct acpi_ec *ec;
07ddf768 941 struct acpi_ec_query_handler *handler, *tmp;
1da177e4 942
1da177e4 943 if (!device)
d550d98d 944 return -EINVAL;
1da177e4
LT
945
946 ec = acpi_driver_data(device);
cf745ec7 947 ec_remove_handlers(ec);
f351d027 948 mutex_lock(&ec->mutex);
07ddf768 949 list_for_each_entry_safe(handler, tmp, &ec->list, node) {
837012ed
AS
950 list_del(&handler->node);
951 kfree(handler);
952 }
f351d027 953 mutex_unlock(&ec->mutex);
de4f1046
TR
954 release_region(ec->data_addr, 1);
955 release_region(ec->command_addr, 1);
db89b4f0 956 device->driver_data = NULL;
d033879c 957 if (ec == first_ec)
c0900c35 958 first_ec = NULL;
4c611060 959 kfree(ec);
d550d98d 960 return 0;
1da177e4
LT
961}
962
1da177e4 963static acpi_status
c0900c35 964ec_parse_io_ports(struct acpi_resource *resource, void *context)
1da177e4 965{
3d02b90b 966 struct acpi_ec *ec = context;
1da177e4 967
01f22462 968 if (resource->type != ACPI_RESOURCE_TYPE_IO)
1da177e4 969 return AE_OK;
1da177e4
LT
970
971 /*
972 * The first address region returned is the data port, and
973 * the second address region returned is the status/command
974 * port.
975 */
de4f1046 976 if (ec->data_addr == 0)
6ffb221a 977 ec->data_addr = resource->data.io.minimum;
de4f1046 978 else if (ec->command_addr == 0)
6ffb221a 979 ec->command_addr = resource->data.io.minimum;
01f22462 980 else
1da177e4 981 return AE_CTRL_TERMINATE;
1da177e4 982
1da177e4
LT
983 return AE_OK;
984}
985
c04209a7
AS
986int __init acpi_boot_ec_enable(void)
987{
7c6db4e0 988 if (!boot_ec || test_bit(EC_FLAGS_HANDLERS_INSTALLED, &boot_ec->flags))
c04209a7
AS
989 return 0;
990 if (!ec_install_handlers(boot_ec)) {
991 first_ec = boot_ec;
992 return 0;
993 }
994 return -EFAULT;
995}
996
223883b7
AS
997static const struct acpi_device_id ec_device_ids[] = {
998 {"PNP0C09", 0},
999 {"", 0},
1000};
1001
478fa03b
AS
1002/* Some BIOS do not survive early DSDT scan, skip it */
1003static int ec_skip_dsdt_scan(const struct dmi_system_id *id)
1004{
1005 EC_FLAGS_SKIP_DSDT_SCAN = 1;
1006 return 0;
1007}
1008
0adf3c74
AS
1009/* ASUStek often supplies us with broken ECDT, validate it */
1010static int ec_validate_ecdt(const struct dmi_system_id *id)
1011{
1012 EC_FLAGS_VALIDATE_ECDT = 1;
1013 return 0;
1014}
1015
1016/* MSI EC needs special treatment, enable it */
1017static int ec_flag_msi(const struct dmi_system_id *id)
1018{
16a26e85 1019 pr_debug("Detected MSI hardware, enabling workarounds.\n");
0adf3c74
AS
1020 EC_FLAGS_MSI = 1;
1021 EC_FLAGS_VALIDATE_ECDT = 1;
1022 return 0;
1023}
1024
67bfa9b6
FT
1025/*
1026 * Clevo M720 notebook actually works ok with IRQ mode, if we lifted
1027 * the GPE storm threshold back to 20
1028 */
1029static int ec_enlarge_storm_threshold(const struct dmi_system_id *id)
1030{
1031 pr_debug("Setting the EC GPE storm threshold to 20\n");
1032 ec_storm_threshold = 20;
1033 return 0;
1034}
1035
79149001
LZ
1036/*
1037 * Acer EC firmware refuses to respond QR_EC when SCI_EVT is not set, for
1038 * which case, we complete the QR_EC without issuing it to the firmware.
1039 * https://bugzilla.kernel.org/show_bug.cgi?id=86211
1040 */
1041static int ec_flag_query_handshake(const struct dmi_system_id *id)
1042{
1043 pr_debug("Detected the EC firmware requiring QR_EC issued when SCI_EVT set\n");
1044 EC_FLAGS_QUERY_HANDSHAKE = 1;
1045 return 0;
1046}
1047
ad332c8a
KC
1048/*
1049 * On some hardware it is necessary to clear events accumulated by the EC during
1050 * sleep. These ECs stop reporting GPEs until they are manually polled, if too
1051 * many events are accumulated. (e.g. Samsung Series 5/9 notebooks)
1052 *
1053 * https://bugzilla.kernel.org/show_bug.cgi?id=44161
1054 *
1055 * Ideally, the EC should also be instructed NOT to accumulate events during
1056 * sleep (which Windows seems to do somehow), but the interface to control this
1057 * behaviour is not known at this time.
1058 *
1059 * Models known to be affected are Samsung 530Uxx/535Uxx/540Uxx/550Pxx/900Xxx,
1060 * however it is very likely that other Samsung models are affected.
1061 *
1062 * On systems which don't accumulate _Q events during sleep, this extra check
1063 * should be harmless.
1064 */
1065static int ec_clear_on_resume(const struct dmi_system_id *id)
1066{
1067 pr_debug("Detected system needing EC poll on resume.\n");
1068 EC_FLAGS_CLEAR_ON_RESUME = 1;
1069 return 0;
1070}
1071
6cef7497 1072static struct dmi_system_id ec_dmi_table[] __initdata = {
478fa03b
AS
1073 {
1074 ec_skip_dsdt_scan, "Compal JFL92", {
1075 DMI_MATCH(DMI_BIOS_VENDOR, "COMPAL"),
1076 DMI_MATCH(DMI_BOARD_NAME, "JFL92") }, NULL},
0adf3c74
AS
1077 {
1078 ec_flag_msi, "MSI hardware", {
55b313f2
AS
1079 DMI_MATCH(DMI_BIOS_VENDOR, "Micro-Star")}, NULL},
1080 {
1081 ec_flag_msi, "MSI hardware", {
1082 DMI_MATCH(DMI_SYS_VENDOR, "Micro-Star")}, NULL},
1083 {
1084 ec_flag_msi, "MSI hardware", {
1085 DMI_MATCH(DMI_CHASSIS_VENDOR, "MICRO-Star")}, NULL},
0adf3c74 1086 {
a5dc4f89
AS
1087 ec_flag_msi, "MSI hardware", {
1088 DMI_MATCH(DMI_CHASSIS_VENDOR, "MICRO-STAR")}, NULL},
1089 {
534bc4e3
ZR
1090 ec_flag_msi, "Quanta hardware", {
1091 DMI_MATCH(DMI_SYS_VENDOR, "Quanta"),
1092 DMI_MATCH(DMI_PRODUCT_NAME, "TW8/SW8/DW8"),}, NULL},
1093 {
1094 ec_flag_msi, "Quanta hardware", {
1095 DMI_MATCH(DMI_SYS_VENDOR, "Quanta"),
1096 DMI_MATCH(DMI_PRODUCT_NAME, "TW9/SW9"),}, NULL},
1097 {
777cb382
LT
1098 ec_flag_msi, "Clevo W350etq", {
1099 DMI_MATCH(DMI_SYS_VENDOR, "CLEVO CO."),
1100 DMI_MATCH(DMI_PRODUCT_NAME, "W35_37ET"),}, NULL},
1101 {
0adf3c74
AS
1102 ec_validate_ecdt, "ASUS hardware", {
1103 DMI_MATCH(DMI_BIOS_VENDOR, "ASUS") }, NULL},
af986d10
PC
1104 {
1105 ec_validate_ecdt, "ASUS hardware", {
1106 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer Inc.") }, NULL},
67bfa9b6
FT
1107 {
1108 ec_enlarge_storm_threshold, "CLEVO hardware", {
1109 DMI_MATCH(DMI_SYS_VENDOR, "CLEVO Co."),
1110 DMI_MATCH(DMI_PRODUCT_NAME, "M720T/M730T"),}, NULL},
eff9a4b6
LT
1111 {
1112 ec_skip_dsdt_scan, "HP Folio 13", {
1113 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
1114 DMI_MATCH(DMI_PRODUCT_NAME, "HP Folio 13"),}, NULL},
524f42fa
LT
1115 {
1116 ec_validate_ecdt, "ASUS hardware", {
1117 DMI_MATCH(DMI_SYS_VENDOR, "ASUSTek Computer Inc."),
1118 DMI_MATCH(DMI_PRODUCT_NAME, "L4R"),}, NULL},
ad332c8a
KC
1119 {
1120 ec_clear_on_resume, "Samsung hardware", {
1121 DMI_MATCH(DMI_SYS_VENDOR, "SAMSUNG ELECTRONICS CO., LTD.")}, NULL},
79149001
LZ
1122 {
1123 ec_flag_query_handshake, "Acer hardware", {
1124 DMI_MATCH(DMI_SYS_VENDOR, "Acer"), }, NULL},
0adf3c74
AS
1125 {},
1126};
1127
c0900c35
AS
1128int __init acpi_ec_ecdt_probe(void)
1129{
c0900c35 1130 acpi_status status;
c6cb0e87 1131 struct acpi_ec *saved_ec = NULL;
50526df6 1132 struct acpi_table_ecdt *ecdt_ptr;
45bea155 1133
d66d969d
AS
1134 boot_ec = make_acpi_ec();
1135 if (!boot_ec)
c0900c35
AS
1136 return -ENOMEM;
1137 /*
1138 * Generate a boot ec context
1139 */
0adf3c74 1140 dmi_check_system(ec_dmi_table);
15a58ed1
AS
1141 status = acpi_get_table(ACPI_SIG_ECDT, 1,
1142 (struct acpi_table_header **)&ecdt_ptr);
cd8c93a4 1143 if (ACPI_SUCCESS(status)) {
16a26e85 1144 pr_info("EC description table is found, configuring boot EC\n");
cd8c93a4
AS
1145 boot_ec->command_addr = ecdt_ptr->control.address;
1146 boot_ec->data_addr = ecdt_ptr->data.address;
1147 boot_ec->gpe = ecdt_ptr->gpe;
4af8e10a 1148 boot_ec->handle = ACPI_ROOT_OBJECT;
7a73e60e
LZ
1149 acpi_get_handle(ACPI_ROOT_OBJECT, ecdt_ptr->id,
1150 &boot_ec->handle);
c6cb0e87 1151 /* Don't trust ECDT, which comes from ASUSTek */
0adf3c74 1152 if (!EC_FLAGS_VALIDATE_ECDT)
c5279dee 1153 goto install;
d6bd535d 1154 saved_ec = kmemdup(boot_ec, sizeof(struct acpi_ec), GFP_KERNEL);
c6cb0e87
AS
1155 if (!saved_ec)
1156 return -ENOMEM;
c5279dee 1157 /* fall through */
cd8c93a4 1158 }
0adf3c74 1159
ed4b197d
CIK
1160 if (EC_FLAGS_SKIP_DSDT_SCAN) {
1161 kfree(saved_ec);
478fa03b 1162 return -ENODEV;
ed4b197d 1163 }
478fa03b 1164
c5279dee
AS
1165 /* This workaround is needed only on some broken machines,
1166 * which require early EC, but fail to provide ECDT */
16a26e85 1167 pr_debug("Look up EC in DSDT\n");
c5279dee
AS
1168 status = acpi_get_devices(ec_device_ids[0].id, ec_parse_device,
1169 boot_ec, NULL);
1170 /* Check that acpi_get_devices actually find something */
1171 if (ACPI_FAILURE(status) || !boot_ec->handle)
1172 goto error;
c6cb0e87
AS
1173 if (saved_ec) {
1174 /* try to find good ECDT from ASUSTek */
1175 if (saved_ec->command_addr != boot_ec->command_addr ||
1176 saved_ec->data_addr != boot_ec->data_addr ||
1177 saved_ec->gpe != boot_ec->gpe ||
1178 saved_ec->handle != boot_ec->handle)
16a26e85 1179 pr_info("ASUSTek keeps feeding us with broken "
c6cb0e87
AS
1180 "ECDT tables, which are very hard to workaround. "
1181 "Trying to use DSDT EC info instead. Please send "
1182 "output of acpidump to linux-acpi@vger.kernel.org\n");
1183 kfree(saved_ec);
1184 saved_ec = NULL;
1185 } else {
1186 /* We really need to limit this workaround, the only ASUS,
1187 * which needs it, has fake EC._INI method, so use it as flag.
1188 * Keep boot_ec struct as it will be needed soon.
1189 */
c6cb0e87 1190 if (!dmi_name_in_vendors("ASUS") ||
952c63e9 1191 !acpi_has_method(boot_ec->handle, "_INI"))
c6cb0e87
AS
1192 return -ENODEV;
1193 }
c5279dee
AS
1194install:
1195 if (!ec_install_handlers(boot_ec)) {
d033879c 1196 first_ec = boot_ec;
e8284321 1197 return 0;
d033879c 1198 }
c5279dee 1199error:
d66d969d 1200 kfree(boot_ec);
ed4b197d 1201 kfree(saved_ec);
d66d969d 1202 boot_ec = NULL;
1da177e4
LT
1203 return -ENODEV;
1204}
1205
223883b7
AS
1206static struct acpi_driver acpi_ec_driver = {
1207 .name = "ec",
1208 .class = ACPI_EC_CLASS,
1209 .ids = ec_device_ids,
1210 .ops = {
1211 .add = acpi_ec_add,
1212 .remove = acpi_ec_remove,
223883b7
AS
1213 },
1214};
1215
a5f820fe 1216int __init acpi_ec_init(void)
1da177e4 1217{
50526df6 1218 int result = 0;
1da177e4 1219
1da177e4
LT
1220 /* Now register the driver for the EC */
1221 result = acpi_bus_register_driver(&acpi_ec_driver);
49c6c5ff 1222 if (result < 0)
d550d98d 1223 return -ENODEV;
1da177e4 1224
d550d98d 1225 return result;
1da177e4
LT
1226}
1227
1da177e4
LT
1228/* EC driver currently not unloadable */
1229#if 0
50526df6 1230static void __exit acpi_ec_exit(void)
1da177e4 1231{
1da177e4
LT
1232
1233 acpi_bus_unregister_driver(&acpi_ec_driver);
1da177e4 1234}
7843932a 1235#endif /* 0 */
This page took 1.057998 seconds and 5 git commands to generate.