ec.c 53 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983
  1. /*
  2. * ec.c - ACPI Embedded Controller Driver (v3)
  3. *
  4. * Copyright (C) 2001-2015 Intel Corporation
  5. * Author: 2014, 2015 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>
  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. * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  26. */
  27. /* Uncomment next line to get verbose printout */
  28. /* #define DEBUG */
  29. #define pr_fmt(fmt) "ACPI : EC: " fmt
  30. #include <linux/kernel.h>
  31. #include <linux/module.h>
  32. #include <linux/init.h>
  33. #include <linux/types.h>
  34. #include <linux/delay.h>
  35. #include <linux/interrupt.h>
  36. #include <linux/list.h>
  37. #include <linux/spinlock.h>
  38. #include <linux/slab.h>
  39. #include <linux/acpi.h>
  40. #include <linux/dmi.h>
  41. #include <asm/io.h>
  42. #include "internal.h"
  43. #define ACPI_EC_CLASS "embedded_controller"
  44. #define ACPI_EC_DEVICE_NAME "Embedded Controller"
  45. #define ACPI_EC_FILE_INFO "info"
  46. /* EC status register */
  47. #define ACPI_EC_FLAG_OBF 0x01 /* Output buffer full */
  48. #define ACPI_EC_FLAG_IBF 0x02 /* Input buffer full */
  49. #define ACPI_EC_FLAG_CMD 0x08 /* Input buffer contains a command */
  50. #define ACPI_EC_FLAG_BURST 0x10 /* burst mode */
  51. #define ACPI_EC_FLAG_SCI 0x20 /* EC-SCI occurred */
  52. /*
  53. * The SCI_EVT clearing timing is not defined by the ACPI specification.
  54. * This leads to lots of practical timing issues for the host EC driver.
  55. * The following variations are defined (from the target EC firmware's
  56. * perspective):
  57. * STATUS: After indicating SCI_EVT edge triggered IRQ to the host, the
  58. * target can clear SCI_EVT at any time so long as the host can see
  59. * the indication by reading the status register (EC_SC). So the
  60. * host should re-check SCI_EVT after the first time the SCI_EVT
  61. * indication is seen, which is the same time the query request
  62. * (QR_EC) is written to the command register (EC_CMD). SCI_EVT set
  63. * at any later time could indicate another event. Normally such
  64. * kind of EC firmware has implemented an event queue and will
  65. * return 0x00 to indicate "no outstanding event".
  66. * QUERY: After seeing the query request (QR_EC) written to the command
  67. * register (EC_CMD) by the host and having prepared the responding
  68. * event value in the data register (EC_DATA), the target can safely
  69. * clear SCI_EVT because the target can confirm that the current
  70. * event is being handled by the host. The host then should check
  71. * SCI_EVT right after reading the event response from the data
  72. * register (EC_DATA).
  73. * EVENT: After seeing the event response read from the data register
  74. * (EC_DATA) by the host, the target can clear SCI_EVT. As the
  75. * target requires time to notice the change in the data register
  76. * (EC_DATA), the host may be required to wait additional guarding
  77. * time before checking the SCI_EVT again. Such guarding may not be
  78. * necessary if the host is notified via another IRQ.
  79. */
  80. #define ACPI_EC_EVT_TIMING_STATUS 0x00
  81. #define ACPI_EC_EVT_TIMING_QUERY 0x01
  82. #define ACPI_EC_EVT_TIMING_EVENT 0x02
  83. /* EC commands */
  84. enum ec_command {
  85. ACPI_EC_COMMAND_READ = 0x80,
  86. ACPI_EC_COMMAND_WRITE = 0x81,
  87. ACPI_EC_BURST_ENABLE = 0x82,
  88. ACPI_EC_BURST_DISABLE = 0x83,
  89. ACPI_EC_COMMAND_QUERY = 0x84,
  90. };
  91. #define ACPI_EC_DELAY 500 /* Wait 500ms max. during EC ops */
  92. #define ACPI_EC_UDELAY_GLK 1000 /* Wait 1ms max. to get global lock */
  93. #define ACPI_EC_UDELAY_POLL 550 /* Wait 1ms for EC transaction polling */
  94. #define ACPI_EC_CLEAR_MAX 100 /* Maximum number of events to query
  95. * when trying to clear the EC */
  96. #define ACPI_EC_MAX_QUERIES 16 /* Maximum number of parallel queries */
  97. enum {
  98. EC_FLAGS_QUERY_ENABLED, /* Query is enabled */
  99. EC_FLAGS_QUERY_PENDING, /* Query is pending */
  100. EC_FLAGS_QUERY_GUARDING, /* Guard for SCI_EVT check */
  101. EC_FLAGS_GPE_HANDLER_INSTALLED, /* GPE handler installed */
  102. EC_FLAGS_EC_HANDLER_INSTALLED, /* OpReg handler installed */
  103. EC_FLAGS_EVT_HANDLER_INSTALLED, /* _Qxx handlers installed */
  104. EC_FLAGS_STARTED, /* Driver is started */
  105. EC_FLAGS_STOPPED, /* Driver is stopped */
  106. EC_FLAGS_COMMAND_STORM, /* GPE storms occurred to the
  107. * current command processing */
  108. };
  109. #define ACPI_EC_COMMAND_POLL 0x01 /* Available for command byte */
  110. #define ACPI_EC_COMMAND_COMPLETE 0x02 /* Completed last byte */
  111. /* ec.c is compiled in acpi namespace so this shows up as acpi.ec_delay param */
  112. static unsigned int ec_delay __read_mostly = ACPI_EC_DELAY;
  113. module_param(ec_delay, uint, 0644);
  114. MODULE_PARM_DESC(ec_delay, "Timeout(ms) waited until an EC command completes");
  115. static unsigned int ec_max_queries __read_mostly = ACPI_EC_MAX_QUERIES;
  116. module_param(ec_max_queries, uint, 0644);
  117. MODULE_PARM_DESC(ec_max_queries, "Maximum parallel _Qxx evaluations");
  118. static bool ec_busy_polling __read_mostly;
  119. module_param(ec_busy_polling, bool, 0644);
  120. MODULE_PARM_DESC(ec_busy_polling, "Use busy polling to advance EC transaction");
  121. static unsigned int ec_polling_guard __read_mostly = ACPI_EC_UDELAY_POLL;
  122. module_param(ec_polling_guard, uint, 0644);
  123. MODULE_PARM_DESC(ec_polling_guard, "Guard time(us) between EC accesses in polling modes");
  124. static unsigned int ec_event_clearing __read_mostly = ACPI_EC_EVT_TIMING_QUERY;
  125. /*
  126. * If the number of false interrupts per one transaction exceeds
  127. * this threshold, will think there is a GPE storm happened and
  128. * will disable the GPE for normal transaction.
  129. */
  130. static unsigned int ec_storm_threshold __read_mostly = 8;
  131. module_param(ec_storm_threshold, uint, 0644);
  132. MODULE_PARM_DESC(ec_storm_threshold, "Maxim false GPE numbers not considered as GPE storm");
  133. static bool ec_freeze_events __read_mostly = false;
  134. module_param(ec_freeze_events, bool, 0644);
  135. MODULE_PARM_DESC(ec_freeze_events, "Disabling event handling during suspend/resume");
  136. struct acpi_ec_query_handler {
  137. struct list_head node;
  138. acpi_ec_query_func func;
  139. acpi_handle handle;
  140. void *data;
  141. u8 query_bit;
  142. struct kref kref;
  143. };
  144. struct transaction {
  145. const u8 *wdata;
  146. u8 *rdata;
  147. unsigned short irq_count;
  148. u8 command;
  149. u8 wi;
  150. u8 ri;
  151. u8 wlen;
  152. u8 rlen;
  153. u8 flags;
  154. };
  155. struct acpi_ec_query {
  156. struct transaction transaction;
  157. struct work_struct work;
  158. struct acpi_ec_query_handler *handler;
  159. };
  160. static int acpi_ec_query(struct acpi_ec *ec, u8 *data);
  161. static void advance_transaction(struct acpi_ec *ec);
  162. static void acpi_ec_event_handler(struct work_struct *work);
  163. static void acpi_ec_event_processor(struct work_struct *work);
  164. struct acpi_ec *boot_ec, *first_ec;
  165. EXPORT_SYMBOL(first_ec);
  166. static bool boot_ec_is_ecdt = false;
  167. static struct workqueue_struct *ec_query_wq;
  168. static int EC_FLAGS_CLEAR_ON_RESUME; /* Needs acpi_ec_clear() on boot/resume */
  169. static int EC_FLAGS_QUERY_HANDSHAKE; /* Needs QR_EC issued when SCI_EVT set */
  170. static int EC_FLAGS_CORRECT_ECDT; /* Needs ECDT port address correction */
  171. /* --------------------------------------------------------------------------
  172. * Logging/Debugging
  173. * -------------------------------------------------------------------------- */
  174. /*
  175. * Splitters used by the developers to track the boundary of the EC
  176. * handling processes.
  177. */
  178. #ifdef DEBUG
  179. #define EC_DBG_SEP " "
  180. #define EC_DBG_DRV "+++++"
  181. #define EC_DBG_STM "====="
  182. #define EC_DBG_REQ "*****"
  183. #define EC_DBG_EVT "#####"
  184. #else
  185. #define EC_DBG_SEP ""
  186. #define EC_DBG_DRV
  187. #define EC_DBG_STM
  188. #define EC_DBG_REQ
  189. #define EC_DBG_EVT
  190. #endif
  191. #define ec_log_raw(fmt, ...) \
  192. pr_info(fmt "\n", ##__VA_ARGS__)
  193. #define ec_dbg_raw(fmt, ...) \
  194. pr_debug(fmt "\n", ##__VA_ARGS__)
  195. #define ec_log(filter, fmt, ...) \
  196. ec_log_raw(filter EC_DBG_SEP fmt EC_DBG_SEP filter, ##__VA_ARGS__)
  197. #define ec_dbg(filter, fmt, ...) \
  198. ec_dbg_raw(filter EC_DBG_SEP fmt EC_DBG_SEP filter, ##__VA_ARGS__)
  199. #define ec_log_drv(fmt, ...) \
  200. ec_log(EC_DBG_DRV, fmt, ##__VA_ARGS__)
  201. #define ec_dbg_drv(fmt, ...) \
  202. ec_dbg(EC_DBG_DRV, fmt, ##__VA_ARGS__)
  203. #define ec_dbg_stm(fmt, ...) \
  204. ec_dbg(EC_DBG_STM, fmt, ##__VA_ARGS__)
  205. #define ec_dbg_req(fmt, ...) \
  206. ec_dbg(EC_DBG_REQ, fmt, ##__VA_ARGS__)
  207. #define ec_dbg_evt(fmt, ...) \
  208. ec_dbg(EC_DBG_EVT, fmt, ##__VA_ARGS__)
  209. #define ec_dbg_ref(ec, fmt, ...) \
  210. ec_dbg_raw("%lu: " fmt, ec->reference_count, ## __VA_ARGS__)
  211. /* --------------------------------------------------------------------------
  212. * Device Flags
  213. * -------------------------------------------------------------------------- */
  214. static bool acpi_ec_started(struct acpi_ec *ec)
  215. {
  216. return test_bit(EC_FLAGS_STARTED, &ec->flags) &&
  217. !test_bit(EC_FLAGS_STOPPED, &ec->flags);
  218. }
  219. static bool acpi_ec_event_enabled(struct acpi_ec *ec)
  220. {
  221. /*
  222. * There is an OSPM early stage logic. During the early stages
  223. * (boot/resume), OSPMs shouldn't enable the event handling, only
  224. * the EC transactions are allowed to be performed.
  225. */
  226. if (!test_bit(EC_FLAGS_QUERY_ENABLED, &ec->flags))
  227. return false;
  228. /*
  229. * However, disabling the event handling is experimental for late
  230. * stage (suspend), and is controlled by the boot parameter of
  231. * "ec_freeze_events":
  232. * 1. true: The EC event handling is disabled before entering
  233. * the noirq stage.
  234. * 2. false: The EC event handling is automatically disabled as
  235. * soon as the EC driver is stopped.
  236. */
  237. if (ec_freeze_events)
  238. return acpi_ec_started(ec);
  239. else
  240. return test_bit(EC_FLAGS_STARTED, &ec->flags);
  241. }
  242. static bool acpi_ec_flushed(struct acpi_ec *ec)
  243. {
  244. return ec->reference_count == 1;
  245. }
  246. /* --------------------------------------------------------------------------
  247. * EC Registers
  248. * -------------------------------------------------------------------------- */
  249. static inline u8 acpi_ec_read_status(struct acpi_ec *ec)
  250. {
  251. u8 x = inb(ec->command_addr);
  252. ec_dbg_raw("EC_SC(R) = 0x%2.2x "
  253. "SCI_EVT=%d BURST=%d CMD=%d IBF=%d OBF=%d",
  254. x,
  255. !!(x & ACPI_EC_FLAG_SCI),
  256. !!(x & ACPI_EC_FLAG_BURST),
  257. !!(x & ACPI_EC_FLAG_CMD),
  258. !!(x & ACPI_EC_FLAG_IBF),
  259. !!(x & ACPI_EC_FLAG_OBF));
  260. return x;
  261. }
  262. static inline u8 acpi_ec_read_data(struct acpi_ec *ec)
  263. {
  264. u8 x = inb(ec->data_addr);
  265. ec->timestamp = jiffies;
  266. ec_dbg_raw("EC_DATA(R) = 0x%2.2x", x);
  267. return x;
  268. }
  269. static inline void acpi_ec_write_cmd(struct acpi_ec *ec, u8 command)
  270. {
  271. ec_dbg_raw("EC_SC(W) = 0x%2.2x", command);
  272. outb(command, ec->command_addr);
  273. ec->timestamp = jiffies;
  274. }
  275. static inline void acpi_ec_write_data(struct acpi_ec *ec, u8 data)
  276. {
  277. ec_dbg_raw("EC_DATA(W) = 0x%2.2x", data);
  278. outb(data, ec->data_addr);
  279. ec->timestamp = jiffies;
  280. }
  281. #ifdef DEBUG
  282. static const char *acpi_ec_cmd_string(u8 cmd)
  283. {
  284. switch (cmd) {
  285. case 0x80:
  286. return "RD_EC";
  287. case 0x81:
  288. return "WR_EC";
  289. case 0x82:
  290. return "BE_EC";
  291. case 0x83:
  292. return "BD_EC";
  293. case 0x84:
  294. return "QR_EC";
  295. }
  296. return "UNKNOWN";
  297. }
  298. #else
  299. #define acpi_ec_cmd_string(cmd) "UNDEF"
  300. #endif
  301. /* --------------------------------------------------------------------------
  302. * GPE Registers
  303. * -------------------------------------------------------------------------- */
  304. static inline bool acpi_ec_is_gpe_raised(struct acpi_ec *ec)
  305. {
  306. acpi_event_status gpe_status = 0;
  307. (void)acpi_get_gpe_status(NULL, ec->gpe, &gpe_status);
  308. return (gpe_status & ACPI_EVENT_FLAG_STATUS_SET) ? true : false;
  309. }
  310. static inline void acpi_ec_enable_gpe(struct acpi_ec *ec, bool open)
  311. {
  312. if (open)
  313. acpi_enable_gpe(NULL, ec->gpe);
  314. else {
  315. BUG_ON(ec->reference_count < 1);
  316. acpi_set_gpe(NULL, ec->gpe, ACPI_GPE_ENABLE);
  317. }
  318. if (acpi_ec_is_gpe_raised(ec)) {
  319. /*
  320. * On some platforms, EN=1 writes cannot trigger GPE. So
  321. * software need to manually trigger a pseudo GPE event on
  322. * EN=1 writes.
  323. */
  324. ec_dbg_raw("Polling quirk");
  325. advance_transaction(ec);
  326. }
  327. }
  328. static inline void acpi_ec_disable_gpe(struct acpi_ec *ec, bool close)
  329. {
  330. if (close)
  331. acpi_disable_gpe(NULL, ec->gpe);
  332. else {
  333. BUG_ON(ec->reference_count < 1);
  334. acpi_set_gpe(NULL, ec->gpe, ACPI_GPE_DISABLE);
  335. }
  336. }
  337. static inline void acpi_ec_clear_gpe(struct acpi_ec *ec)
  338. {
  339. /*
  340. * GPE STS is a W1C register, which means:
  341. * 1. Software can clear it without worrying about clearing other
  342. * GPEs' STS bits when the hardware sets them in parallel.
  343. * 2. As long as software can ensure only clearing it when it is
  344. * set, hardware won't set it in parallel.
  345. * So software can clear GPE in any contexts.
  346. * Warning: do not move the check into advance_transaction() as the
  347. * EC commands will be sent without GPE raised.
  348. */
  349. if (!acpi_ec_is_gpe_raised(ec))
  350. return;
  351. acpi_clear_gpe(NULL, ec->gpe);
  352. }
  353. /* --------------------------------------------------------------------------
  354. * Transaction Management
  355. * -------------------------------------------------------------------------- */
  356. static void acpi_ec_submit_request(struct acpi_ec *ec)
  357. {
  358. ec->reference_count++;
  359. if (test_bit(EC_FLAGS_GPE_HANDLER_INSTALLED, &ec->flags) &&
  360. ec->reference_count == 1)
  361. acpi_ec_enable_gpe(ec, true);
  362. }
  363. static void acpi_ec_complete_request(struct acpi_ec *ec)
  364. {
  365. bool flushed = false;
  366. ec->reference_count--;
  367. if (test_bit(EC_FLAGS_GPE_HANDLER_INSTALLED, &ec->flags) &&
  368. ec->reference_count == 0)
  369. acpi_ec_disable_gpe(ec, true);
  370. flushed = acpi_ec_flushed(ec);
  371. if (flushed)
  372. wake_up(&ec->wait);
  373. }
  374. static void acpi_ec_set_storm(struct acpi_ec *ec, u8 flag)
  375. {
  376. if (!test_bit(flag, &ec->flags)) {
  377. acpi_ec_disable_gpe(ec, false);
  378. ec_dbg_drv("Polling enabled");
  379. set_bit(flag, &ec->flags);
  380. }
  381. }
  382. static void acpi_ec_clear_storm(struct acpi_ec *ec, u8 flag)
  383. {
  384. if (test_bit(flag, &ec->flags)) {
  385. clear_bit(flag, &ec->flags);
  386. acpi_ec_enable_gpe(ec, false);
  387. ec_dbg_drv("Polling disabled");
  388. }
  389. }
  390. /*
  391. * acpi_ec_submit_flushable_request() - Increase the reference count unless
  392. * the flush operation is not in
  393. * progress
  394. * @ec: the EC device
  395. *
  396. * This function must be used before taking a new action that should hold
  397. * the reference count. If this function returns false, then the action
  398. * must be discarded or it will prevent the flush operation from being
  399. * completed.
  400. */
  401. static bool acpi_ec_submit_flushable_request(struct acpi_ec *ec)
  402. {
  403. if (!acpi_ec_started(ec))
  404. return false;
  405. acpi_ec_submit_request(ec);
  406. return true;
  407. }
  408. static void acpi_ec_submit_query(struct acpi_ec *ec)
  409. {
  410. if (acpi_ec_event_enabled(ec) &&
  411. !test_and_set_bit(EC_FLAGS_QUERY_PENDING, &ec->flags)) {
  412. ec_dbg_evt("Command(%s) submitted/blocked",
  413. acpi_ec_cmd_string(ACPI_EC_COMMAND_QUERY));
  414. ec->nr_pending_queries++;
  415. schedule_work(&ec->work);
  416. }
  417. }
  418. static void acpi_ec_complete_query(struct acpi_ec *ec)
  419. {
  420. if (test_bit(EC_FLAGS_QUERY_PENDING, &ec->flags)) {
  421. clear_bit(EC_FLAGS_QUERY_PENDING, &ec->flags);
  422. ec_dbg_evt("Command(%s) unblocked",
  423. acpi_ec_cmd_string(ACPI_EC_COMMAND_QUERY));
  424. }
  425. }
  426. static inline void __acpi_ec_enable_event(struct acpi_ec *ec)
  427. {
  428. if (!test_and_set_bit(EC_FLAGS_QUERY_ENABLED, &ec->flags))
  429. ec_log_drv("event unblocked");
  430. if (!test_bit(EC_FLAGS_QUERY_PENDING, &ec->flags))
  431. advance_transaction(ec);
  432. }
  433. static inline void __acpi_ec_disable_event(struct acpi_ec *ec)
  434. {
  435. if (test_and_clear_bit(EC_FLAGS_QUERY_ENABLED, &ec->flags))
  436. ec_log_drv("event blocked");
  437. }
  438. /*
  439. * Process _Q events that might have accumulated in the EC.
  440. * Run with locked ec mutex.
  441. */
  442. static void acpi_ec_clear(struct acpi_ec *ec)
  443. {
  444. int i, status;
  445. u8 value = 0;
  446. for (i = 0; i < ACPI_EC_CLEAR_MAX; i++) {
  447. status = acpi_ec_query(ec, &value);
  448. if (status || !value)
  449. break;
  450. }
  451. if (unlikely(i == ACPI_EC_CLEAR_MAX))
  452. pr_warn("Warning: Maximum of %d stale EC events cleared\n", i);
  453. else
  454. pr_info("%d stale EC events cleared\n", i);
  455. }
  456. static void acpi_ec_enable_event(struct acpi_ec *ec)
  457. {
  458. unsigned long flags;
  459. spin_lock_irqsave(&ec->lock, flags);
  460. if (acpi_ec_started(ec))
  461. __acpi_ec_enable_event(ec);
  462. spin_unlock_irqrestore(&ec->lock, flags);
  463. /* Drain additional events if hardware requires that */
  464. if (EC_FLAGS_CLEAR_ON_RESUME)
  465. acpi_ec_clear(ec);
  466. }
  467. #ifdef CONFIG_PM_SLEEP
  468. static bool acpi_ec_query_flushed(struct acpi_ec *ec)
  469. {
  470. bool flushed;
  471. unsigned long flags;
  472. spin_lock_irqsave(&ec->lock, flags);
  473. flushed = !ec->nr_pending_queries;
  474. spin_unlock_irqrestore(&ec->lock, flags);
  475. return flushed;
  476. }
  477. static void __acpi_ec_flush_event(struct acpi_ec *ec)
  478. {
  479. /*
  480. * When ec_freeze_events is true, we need to flush events in
  481. * the proper position before entering the noirq stage.
  482. */
  483. wait_event(ec->wait, acpi_ec_query_flushed(ec));
  484. if (ec_query_wq)
  485. flush_workqueue(ec_query_wq);
  486. }
  487. static void acpi_ec_disable_event(struct acpi_ec *ec)
  488. {
  489. unsigned long flags;
  490. spin_lock_irqsave(&ec->lock, flags);
  491. __acpi_ec_disable_event(ec);
  492. spin_unlock_irqrestore(&ec->lock, flags);
  493. __acpi_ec_flush_event(ec);
  494. }
  495. #endif /* CONFIG_PM_SLEEP */
  496. static bool acpi_ec_guard_event(struct acpi_ec *ec)
  497. {
  498. bool guarded = true;
  499. unsigned long flags;
  500. spin_lock_irqsave(&ec->lock, flags);
  501. /*
  502. * If firmware SCI_EVT clearing timing is "event", we actually
  503. * don't know when the SCI_EVT will be cleared by firmware after
  504. * evaluating _Qxx, so we need to re-check SCI_EVT after waiting an
  505. * acceptable period.
  506. *
  507. * The guarding period begins when EC_FLAGS_QUERY_PENDING is
  508. * flagged, which means SCI_EVT check has just been performed.
  509. * But if the current transaction is ACPI_EC_COMMAND_QUERY, the
  510. * guarding should have already been performed (via
  511. * EC_FLAGS_QUERY_GUARDING) and should not be applied so that the
  512. * ACPI_EC_COMMAND_QUERY transaction can be transitioned into
  513. * ACPI_EC_COMMAND_POLL state immediately.
  514. */
  515. if (ec_event_clearing == ACPI_EC_EVT_TIMING_STATUS ||
  516. ec_event_clearing == ACPI_EC_EVT_TIMING_QUERY ||
  517. !test_bit(EC_FLAGS_QUERY_PENDING, &ec->flags) ||
  518. (ec->curr && ec->curr->command == ACPI_EC_COMMAND_QUERY))
  519. guarded = false;
  520. spin_unlock_irqrestore(&ec->lock, flags);
  521. return guarded;
  522. }
  523. static int ec_transaction_polled(struct acpi_ec *ec)
  524. {
  525. unsigned long flags;
  526. int ret = 0;
  527. spin_lock_irqsave(&ec->lock, flags);
  528. if (ec->curr && (ec->curr->flags & ACPI_EC_COMMAND_POLL))
  529. ret = 1;
  530. spin_unlock_irqrestore(&ec->lock, flags);
  531. return ret;
  532. }
  533. static int ec_transaction_completed(struct acpi_ec *ec)
  534. {
  535. unsigned long flags;
  536. int ret = 0;
  537. spin_lock_irqsave(&ec->lock, flags);
  538. if (ec->curr && (ec->curr->flags & ACPI_EC_COMMAND_COMPLETE))
  539. ret = 1;
  540. spin_unlock_irqrestore(&ec->lock, flags);
  541. return ret;
  542. }
  543. static inline void ec_transaction_transition(struct acpi_ec *ec, unsigned long flag)
  544. {
  545. ec->curr->flags |= flag;
  546. if (ec->curr->command == ACPI_EC_COMMAND_QUERY) {
  547. if (ec_event_clearing == ACPI_EC_EVT_TIMING_STATUS &&
  548. flag == ACPI_EC_COMMAND_POLL)
  549. acpi_ec_complete_query(ec);
  550. if (ec_event_clearing == ACPI_EC_EVT_TIMING_QUERY &&
  551. flag == ACPI_EC_COMMAND_COMPLETE)
  552. acpi_ec_complete_query(ec);
  553. if (ec_event_clearing == ACPI_EC_EVT_TIMING_EVENT &&
  554. flag == ACPI_EC_COMMAND_COMPLETE)
  555. set_bit(EC_FLAGS_QUERY_GUARDING, &ec->flags);
  556. }
  557. }
  558. static void advance_transaction(struct acpi_ec *ec)
  559. {
  560. struct transaction *t;
  561. u8 status;
  562. bool wakeup = false;
  563. ec_dbg_stm("%s (%d)", in_interrupt() ? "IRQ" : "TASK",
  564. smp_processor_id());
  565. /*
  566. * By always clearing STS before handling all indications, we can
  567. * ensure a hardware STS 0->1 change after this clearing can always
  568. * trigger a GPE interrupt.
  569. */
  570. acpi_ec_clear_gpe(ec);
  571. status = acpi_ec_read_status(ec);
  572. t = ec->curr;
  573. /*
  574. * Another IRQ or a guarded polling mode advancement is detected,
  575. * the next QR_EC submission is then allowed.
  576. */
  577. if (!t || !(t->flags & ACPI_EC_COMMAND_POLL)) {
  578. if (ec_event_clearing == ACPI_EC_EVT_TIMING_EVENT &&
  579. (!ec->nr_pending_queries ||
  580. test_bit(EC_FLAGS_QUERY_GUARDING, &ec->flags))) {
  581. clear_bit(EC_FLAGS_QUERY_GUARDING, &ec->flags);
  582. acpi_ec_complete_query(ec);
  583. }
  584. }
  585. if (!t)
  586. goto err;
  587. if (t->flags & ACPI_EC_COMMAND_POLL) {
  588. if (t->wlen > t->wi) {
  589. if ((status & ACPI_EC_FLAG_IBF) == 0)
  590. acpi_ec_write_data(ec, t->wdata[t->wi++]);
  591. else
  592. goto err;
  593. } else if (t->rlen > t->ri) {
  594. if ((status & ACPI_EC_FLAG_OBF) == 1) {
  595. t->rdata[t->ri++] = acpi_ec_read_data(ec);
  596. if (t->rlen == t->ri) {
  597. ec_transaction_transition(ec, ACPI_EC_COMMAND_COMPLETE);
  598. if (t->command == ACPI_EC_COMMAND_QUERY)
  599. ec_dbg_evt("Command(%s) completed by hardware",
  600. acpi_ec_cmd_string(ACPI_EC_COMMAND_QUERY));
  601. wakeup = true;
  602. }
  603. } else
  604. goto err;
  605. } else if (t->wlen == t->wi &&
  606. (status & ACPI_EC_FLAG_IBF) == 0) {
  607. ec_transaction_transition(ec, ACPI_EC_COMMAND_COMPLETE);
  608. wakeup = true;
  609. }
  610. goto out;
  611. } else {
  612. if (EC_FLAGS_QUERY_HANDSHAKE &&
  613. !(status & ACPI_EC_FLAG_SCI) &&
  614. (t->command == ACPI_EC_COMMAND_QUERY)) {
  615. ec_transaction_transition(ec, ACPI_EC_COMMAND_POLL);
  616. t->rdata[t->ri++] = 0x00;
  617. ec_transaction_transition(ec, ACPI_EC_COMMAND_COMPLETE);
  618. ec_dbg_evt("Command(%s) completed by software",
  619. acpi_ec_cmd_string(ACPI_EC_COMMAND_QUERY));
  620. wakeup = true;
  621. } else if ((status & ACPI_EC_FLAG_IBF) == 0) {
  622. acpi_ec_write_cmd(ec, t->command);
  623. ec_transaction_transition(ec, ACPI_EC_COMMAND_POLL);
  624. } else
  625. goto err;
  626. goto out;
  627. }
  628. err:
  629. /*
  630. * If SCI bit is set, then don't think it's a false IRQ
  631. * otherwise will take a not handled IRQ as a false one.
  632. */
  633. if (!(status & ACPI_EC_FLAG_SCI)) {
  634. if (in_interrupt() && t) {
  635. if (t->irq_count < ec_storm_threshold)
  636. ++t->irq_count;
  637. /* Allow triggering on 0 threshold */
  638. if (t->irq_count == ec_storm_threshold)
  639. acpi_ec_set_storm(ec, EC_FLAGS_COMMAND_STORM);
  640. }
  641. }
  642. out:
  643. if (status & ACPI_EC_FLAG_SCI)
  644. acpi_ec_submit_query(ec);
  645. if (wakeup && in_interrupt())
  646. wake_up(&ec->wait);
  647. }
  648. static void start_transaction(struct acpi_ec *ec)
  649. {
  650. ec->curr->irq_count = ec->curr->wi = ec->curr->ri = 0;
  651. ec->curr->flags = 0;
  652. }
  653. static int ec_guard(struct acpi_ec *ec)
  654. {
  655. unsigned long guard = usecs_to_jiffies(ec->polling_guard);
  656. unsigned long timeout = ec->timestamp + guard;
  657. /* Ensure guarding period before polling EC status */
  658. do {
  659. if (ec->busy_polling) {
  660. /* Perform busy polling */
  661. if (ec_transaction_completed(ec))
  662. return 0;
  663. udelay(jiffies_to_usecs(guard));
  664. } else {
  665. /*
  666. * Perform wait polling
  667. * 1. Wait the transaction to be completed by the
  668. * GPE handler after the transaction enters
  669. * ACPI_EC_COMMAND_POLL state.
  670. * 2. A special guarding logic is also required
  671. * for event clearing mode "event" before the
  672. * transaction enters ACPI_EC_COMMAND_POLL
  673. * state.
  674. */
  675. if (!ec_transaction_polled(ec) &&
  676. !acpi_ec_guard_event(ec))
  677. break;
  678. if (wait_event_timeout(ec->wait,
  679. ec_transaction_completed(ec),
  680. guard))
  681. return 0;
  682. }
  683. } while (time_before(jiffies, timeout));
  684. return -ETIME;
  685. }
  686. static int ec_poll(struct acpi_ec *ec)
  687. {
  688. unsigned long flags;
  689. int repeat = 5; /* number of command restarts */
  690. while (repeat--) {
  691. unsigned long delay = jiffies +
  692. msecs_to_jiffies(ec_delay);
  693. do {
  694. if (!ec_guard(ec))
  695. return 0;
  696. spin_lock_irqsave(&ec->lock, flags);
  697. advance_transaction(ec);
  698. spin_unlock_irqrestore(&ec->lock, flags);
  699. } while (time_before(jiffies, delay));
  700. pr_debug("controller reset, restart transaction\n");
  701. spin_lock_irqsave(&ec->lock, flags);
  702. start_transaction(ec);
  703. spin_unlock_irqrestore(&ec->lock, flags);
  704. }
  705. return -ETIME;
  706. }
  707. static int acpi_ec_transaction_unlocked(struct acpi_ec *ec,
  708. struct transaction *t)
  709. {
  710. unsigned long tmp;
  711. int ret = 0;
  712. /* start transaction */
  713. spin_lock_irqsave(&ec->lock, tmp);
  714. /* Enable GPE for command processing (IBF=0/OBF=1) */
  715. if (!acpi_ec_submit_flushable_request(ec)) {
  716. ret = -EINVAL;
  717. goto unlock;
  718. }
  719. ec_dbg_ref(ec, "Increase command");
  720. /* following two actions should be kept atomic */
  721. ec->curr = t;
  722. ec_dbg_req("Command(%s) started", acpi_ec_cmd_string(t->command));
  723. start_transaction(ec);
  724. spin_unlock_irqrestore(&ec->lock, tmp);
  725. ret = ec_poll(ec);
  726. spin_lock_irqsave(&ec->lock, tmp);
  727. if (t->irq_count == ec_storm_threshold)
  728. acpi_ec_clear_storm(ec, EC_FLAGS_COMMAND_STORM);
  729. ec_dbg_req("Command(%s) stopped", acpi_ec_cmd_string(t->command));
  730. ec->curr = NULL;
  731. /* Disable GPE for command processing (IBF=0/OBF=1) */
  732. acpi_ec_complete_request(ec);
  733. ec_dbg_ref(ec, "Decrease command");
  734. unlock:
  735. spin_unlock_irqrestore(&ec->lock, tmp);
  736. return ret;
  737. }
  738. static int acpi_ec_transaction(struct acpi_ec *ec, struct transaction *t)
  739. {
  740. int status;
  741. u32 glk;
  742. if (!ec || (!t) || (t->wlen && !t->wdata) || (t->rlen && !t->rdata))
  743. return -EINVAL;
  744. if (t->rdata)
  745. memset(t->rdata, 0, t->rlen);
  746. mutex_lock(&ec->mutex);
  747. if (ec->global_lock) {
  748. status = acpi_acquire_global_lock(ACPI_EC_UDELAY_GLK, &glk);
  749. if (ACPI_FAILURE(status)) {
  750. status = -ENODEV;
  751. goto unlock;
  752. }
  753. }
  754. status = acpi_ec_transaction_unlocked(ec, t);
  755. if (ec->global_lock)
  756. acpi_release_global_lock(glk);
  757. unlock:
  758. mutex_unlock(&ec->mutex);
  759. return status;
  760. }
  761. static int acpi_ec_burst_enable(struct acpi_ec *ec)
  762. {
  763. u8 d;
  764. struct transaction t = {.command = ACPI_EC_BURST_ENABLE,
  765. .wdata = NULL, .rdata = &d,
  766. .wlen = 0, .rlen = 1};
  767. return acpi_ec_transaction(ec, &t);
  768. }
  769. static int acpi_ec_burst_disable(struct acpi_ec *ec)
  770. {
  771. struct transaction t = {.command = ACPI_EC_BURST_DISABLE,
  772. .wdata = NULL, .rdata = NULL,
  773. .wlen = 0, .rlen = 0};
  774. return (acpi_ec_read_status(ec) & ACPI_EC_FLAG_BURST) ?
  775. acpi_ec_transaction(ec, &t) : 0;
  776. }
  777. static int acpi_ec_read(struct acpi_ec *ec, u8 address, u8 *data)
  778. {
  779. int result;
  780. u8 d;
  781. struct transaction t = {.command = ACPI_EC_COMMAND_READ,
  782. .wdata = &address, .rdata = &d,
  783. .wlen = 1, .rlen = 1};
  784. result = acpi_ec_transaction(ec, &t);
  785. *data = d;
  786. return result;
  787. }
  788. static int acpi_ec_write(struct acpi_ec *ec, u8 address, u8 data)
  789. {
  790. u8 wdata[2] = { address, data };
  791. struct transaction t = {.command = ACPI_EC_COMMAND_WRITE,
  792. .wdata = wdata, .rdata = NULL,
  793. .wlen = 2, .rlen = 0};
  794. return acpi_ec_transaction(ec, &t);
  795. }
  796. int ec_read(u8 addr, u8 *val)
  797. {
  798. int err;
  799. u8 temp_data;
  800. if (!first_ec)
  801. return -ENODEV;
  802. err = acpi_ec_read(first_ec, addr, &temp_data);
  803. if (!err) {
  804. *val = temp_data;
  805. return 0;
  806. }
  807. return err;
  808. }
  809. EXPORT_SYMBOL(ec_read);
  810. int ec_write(u8 addr, u8 val)
  811. {
  812. int err;
  813. if (!first_ec)
  814. return -ENODEV;
  815. err = acpi_ec_write(first_ec, addr, val);
  816. return err;
  817. }
  818. EXPORT_SYMBOL(ec_write);
  819. int ec_transaction(u8 command,
  820. const u8 *wdata, unsigned wdata_len,
  821. u8 *rdata, unsigned rdata_len)
  822. {
  823. struct transaction t = {.command = command,
  824. .wdata = wdata, .rdata = rdata,
  825. .wlen = wdata_len, .rlen = rdata_len};
  826. if (!first_ec)
  827. return -ENODEV;
  828. return acpi_ec_transaction(first_ec, &t);
  829. }
  830. EXPORT_SYMBOL(ec_transaction);
  831. /* Get the handle to the EC device */
  832. acpi_handle ec_get_handle(void)
  833. {
  834. if (!first_ec)
  835. return NULL;
  836. return first_ec->handle;
  837. }
  838. EXPORT_SYMBOL(ec_get_handle);
  839. static void acpi_ec_start(struct acpi_ec *ec, bool resuming)
  840. {
  841. unsigned long flags;
  842. spin_lock_irqsave(&ec->lock, flags);
  843. if (!test_and_set_bit(EC_FLAGS_STARTED, &ec->flags)) {
  844. ec_dbg_drv("Starting EC");
  845. /* Enable GPE for event processing (SCI_EVT=1) */
  846. if (!resuming) {
  847. acpi_ec_submit_request(ec);
  848. ec_dbg_ref(ec, "Increase driver");
  849. }
  850. ec_log_drv("EC started");
  851. }
  852. spin_unlock_irqrestore(&ec->lock, flags);
  853. }
  854. static bool acpi_ec_stopped(struct acpi_ec *ec)
  855. {
  856. unsigned long flags;
  857. bool flushed;
  858. spin_lock_irqsave(&ec->lock, flags);
  859. flushed = acpi_ec_flushed(ec);
  860. spin_unlock_irqrestore(&ec->lock, flags);
  861. return flushed;
  862. }
  863. static void acpi_ec_stop(struct acpi_ec *ec, bool suspending)
  864. {
  865. unsigned long flags;
  866. spin_lock_irqsave(&ec->lock, flags);
  867. if (acpi_ec_started(ec)) {
  868. ec_dbg_drv("Stopping EC");
  869. set_bit(EC_FLAGS_STOPPED, &ec->flags);
  870. spin_unlock_irqrestore(&ec->lock, flags);
  871. wait_event(ec->wait, acpi_ec_stopped(ec));
  872. spin_lock_irqsave(&ec->lock, flags);
  873. /* Disable GPE for event processing (SCI_EVT=1) */
  874. if (!suspending) {
  875. acpi_ec_complete_request(ec);
  876. ec_dbg_ref(ec, "Decrease driver");
  877. } else if (!ec_freeze_events)
  878. __acpi_ec_disable_event(ec);
  879. clear_bit(EC_FLAGS_STARTED, &ec->flags);
  880. clear_bit(EC_FLAGS_STOPPED, &ec->flags);
  881. ec_log_drv("EC stopped");
  882. }
  883. spin_unlock_irqrestore(&ec->lock, flags);
  884. }
  885. static void acpi_ec_enter_noirq(struct acpi_ec *ec)
  886. {
  887. unsigned long flags;
  888. spin_lock_irqsave(&ec->lock, flags);
  889. ec->busy_polling = true;
  890. ec->polling_guard = 0;
  891. ec_log_drv("interrupt blocked");
  892. spin_unlock_irqrestore(&ec->lock, flags);
  893. }
  894. static void acpi_ec_leave_noirq(struct acpi_ec *ec)
  895. {
  896. unsigned long flags;
  897. spin_lock_irqsave(&ec->lock, flags);
  898. ec->busy_polling = ec_busy_polling;
  899. ec->polling_guard = ec_polling_guard;
  900. ec_log_drv("interrupt unblocked");
  901. spin_unlock_irqrestore(&ec->lock, flags);
  902. }
  903. void acpi_ec_block_transactions(void)
  904. {
  905. struct acpi_ec *ec = first_ec;
  906. if (!ec)
  907. return;
  908. mutex_lock(&ec->mutex);
  909. /* Prevent transactions from being carried out */
  910. acpi_ec_stop(ec, true);
  911. mutex_unlock(&ec->mutex);
  912. }
  913. void acpi_ec_unblock_transactions(void)
  914. {
  915. /*
  916. * Allow transactions to happen again (this function is called from
  917. * atomic context during wakeup, so we don't need to acquire the mutex).
  918. */
  919. if (first_ec)
  920. acpi_ec_start(first_ec, true);
  921. }
  922. /* --------------------------------------------------------------------------
  923. Event Management
  924. -------------------------------------------------------------------------- */
  925. static struct acpi_ec_query_handler *
  926. acpi_ec_get_query_handler(struct acpi_ec_query_handler *handler)
  927. {
  928. if (handler)
  929. kref_get(&handler->kref);
  930. return handler;
  931. }
  932. static struct acpi_ec_query_handler *
  933. acpi_ec_get_query_handler_by_value(struct acpi_ec *ec, u8 value)
  934. {
  935. struct acpi_ec_query_handler *handler;
  936. bool found = false;
  937. mutex_lock(&ec->mutex);
  938. list_for_each_entry(handler, &ec->list, node) {
  939. if (value == handler->query_bit) {
  940. found = true;
  941. break;
  942. }
  943. }
  944. mutex_unlock(&ec->mutex);
  945. return found ? acpi_ec_get_query_handler(handler) : NULL;
  946. }
  947. static void acpi_ec_query_handler_release(struct kref *kref)
  948. {
  949. struct acpi_ec_query_handler *handler =
  950. container_of(kref, struct acpi_ec_query_handler, kref);
  951. kfree(handler);
  952. }
  953. static void acpi_ec_put_query_handler(struct acpi_ec_query_handler *handler)
  954. {
  955. kref_put(&handler->kref, acpi_ec_query_handler_release);
  956. }
  957. int acpi_ec_add_query_handler(struct acpi_ec *ec, u8 query_bit,
  958. acpi_handle handle, acpi_ec_query_func func,
  959. void *data)
  960. {
  961. struct acpi_ec_query_handler *handler =
  962. kzalloc(sizeof(struct acpi_ec_query_handler), GFP_KERNEL);
  963. if (!handler)
  964. return -ENOMEM;
  965. handler->query_bit = query_bit;
  966. handler->handle = handle;
  967. handler->func = func;
  968. handler->data = data;
  969. mutex_lock(&ec->mutex);
  970. kref_init(&handler->kref);
  971. list_add(&handler->node, &ec->list);
  972. mutex_unlock(&ec->mutex);
  973. return 0;
  974. }
  975. EXPORT_SYMBOL_GPL(acpi_ec_add_query_handler);
  976. static void acpi_ec_remove_query_handlers(struct acpi_ec *ec,
  977. bool remove_all, u8 query_bit)
  978. {
  979. struct acpi_ec_query_handler *handler, *tmp;
  980. LIST_HEAD(free_list);
  981. mutex_lock(&ec->mutex);
  982. list_for_each_entry_safe(handler, tmp, &ec->list, node) {
  983. if (remove_all || query_bit == handler->query_bit) {
  984. list_del_init(&handler->node);
  985. list_add(&handler->node, &free_list);
  986. }
  987. }
  988. mutex_unlock(&ec->mutex);
  989. list_for_each_entry_safe(handler, tmp, &free_list, node)
  990. acpi_ec_put_query_handler(handler);
  991. }
  992. void acpi_ec_remove_query_handler(struct acpi_ec *ec, u8 query_bit)
  993. {
  994. acpi_ec_remove_query_handlers(ec, false, query_bit);
  995. }
  996. EXPORT_SYMBOL_GPL(acpi_ec_remove_query_handler);
  997. static struct acpi_ec_query *acpi_ec_create_query(u8 *pval)
  998. {
  999. struct acpi_ec_query *q;
  1000. struct transaction *t;
  1001. q = kzalloc(sizeof (struct acpi_ec_query), GFP_KERNEL);
  1002. if (!q)
  1003. return NULL;
  1004. INIT_WORK(&q->work, acpi_ec_event_processor);
  1005. t = &q->transaction;
  1006. t->command = ACPI_EC_COMMAND_QUERY;
  1007. t->rdata = pval;
  1008. t->rlen = 1;
  1009. return q;
  1010. }
  1011. static void acpi_ec_delete_query(struct acpi_ec_query *q)
  1012. {
  1013. if (q) {
  1014. if (q->handler)
  1015. acpi_ec_put_query_handler(q->handler);
  1016. kfree(q);
  1017. }
  1018. }
  1019. static void acpi_ec_event_processor(struct work_struct *work)
  1020. {
  1021. struct acpi_ec_query *q = container_of(work, struct acpi_ec_query, work);
  1022. struct acpi_ec_query_handler *handler = q->handler;
  1023. ec_dbg_evt("Query(0x%02x) started", handler->query_bit);
  1024. if (handler->func)
  1025. handler->func(handler->data);
  1026. else if (handler->handle)
  1027. acpi_evaluate_object(handler->handle, NULL, NULL, NULL);
  1028. ec_dbg_evt("Query(0x%02x) stopped", handler->query_bit);
  1029. acpi_ec_delete_query(q);
  1030. }
  1031. static int acpi_ec_query(struct acpi_ec *ec, u8 *data)
  1032. {
  1033. u8 value = 0;
  1034. int result;
  1035. struct acpi_ec_query *q;
  1036. q = acpi_ec_create_query(&value);
  1037. if (!q)
  1038. return -ENOMEM;
  1039. /*
  1040. * Query the EC to find out which _Qxx method we need to evaluate.
  1041. * Note that successful completion of the query causes the ACPI_EC_SCI
  1042. * bit to be cleared (and thus clearing the interrupt source).
  1043. */
  1044. result = acpi_ec_transaction(ec, &q->transaction);
  1045. if (!value)
  1046. result = -ENODATA;
  1047. if (result)
  1048. goto err_exit;
  1049. q->handler = acpi_ec_get_query_handler_by_value(ec, value);
  1050. if (!q->handler) {
  1051. result = -ENODATA;
  1052. goto err_exit;
  1053. }
  1054. /*
  1055. * It is reported that _Qxx are evaluated in a parallel way on
  1056. * Windows:
  1057. * https://bugzilla.kernel.org/show_bug.cgi?id=94411
  1058. *
  1059. * Put this log entry before schedule_work() in order to make
  1060. * it appearing before any other log entries occurred during the
  1061. * work queue execution.
  1062. */
  1063. ec_dbg_evt("Query(0x%02x) scheduled", value);
  1064. if (!queue_work(ec_query_wq, &q->work)) {
  1065. ec_dbg_evt("Query(0x%02x) overlapped", value);
  1066. result = -EBUSY;
  1067. }
  1068. err_exit:
  1069. if (result)
  1070. acpi_ec_delete_query(q);
  1071. if (data)
  1072. *data = value;
  1073. return result;
  1074. }
  1075. static void acpi_ec_check_event(struct acpi_ec *ec)
  1076. {
  1077. unsigned long flags;
  1078. if (ec_event_clearing == ACPI_EC_EVT_TIMING_EVENT) {
  1079. if (ec_guard(ec)) {
  1080. spin_lock_irqsave(&ec->lock, flags);
  1081. /*
  1082. * Take care of the SCI_EVT unless no one else is
  1083. * taking care of it.
  1084. */
  1085. if (!ec->curr)
  1086. advance_transaction(ec);
  1087. spin_unlock_irqrestore(&ec->lock, flags);
  1088. }
  1089. }
  1090. }
  1091. static void acpi_ec_event_handler(struct work_struct *work)
  1092. {
  1093. unsigned long flags;
  1094. struct acpi_ec *ec = container_of(work, struct acpi_ec, work);
  1095. ec_dbg_evt("Event started");
  1096. spin_lock_irqsave(&ec->lock, flags);
  1097. while (ec->nr_pending_queries) {
  1098. spin_unlock_irqrestore(&ec->lock, flags);
  1099. (void)acpi_ec_query(ec, NULL);
  1100. spin_lock_irqsave(&ec->lock, flags);
  1101. ec->nr_pending_queries--;
  1102. /*
  1103. * Before exit, make sure that this work item can be
  1104. * scheduled again. There might be QR_EC failures, leaving
  1105. * EC_FLAGS_QUERY_PENDING uncleared and preventing this work
  1106. * item from being scheduled again.
  1107. */
  1108. if (!ec->nr_pending_queries) {
  1109. if (ec_event_clearing == ACPI_EC_EVT_TIMING_STATUS ||
  1110. ec_event_clearing == ACPI_EC_EVT_TIMING_QUERY)
  1111. acpi_ec_complete_query(ec);
  1112. }
  1113. }
  1114. spin_unlock_irqrestore(&ec->lock, flags);
  1115. ec_dbg_evt("Event stopped");
  1116. acpi_ec_check_event(ec);
  1117. }
  1118. static u32 acpi_ec_gpe_handler(acpi_handle gpe_device,
  1119. u32 gpe_number, void *data)
  1120. {
  1121. unsigned long flags;
  1122. struct acpi_ec *ec = data;
  1123. spin_lock_irqsave(&ec->lock, flags);
  1124. advance_transaction(ec);
  1125. spin_unlock_irqrestore(&ec->lock, flags);
  1126. return ACPI_INTERRUPT_HANDLED;
  1127. }
  1128. /* --------------------------------------------------------------------------
  1129. * Address Space Management
  1130. * -------------------------------------------------------------------------- */
  1131. static acpi_status
  1132. acpi_ec_space_handler(u32 function, acpi_physical_address address,
  1133. u32 bits, u64 *value64,
  1134. void *handler_context, void *region_context)
  1135. {
  1136. struct acpi_ec *ec = handler_context;
  1137. int result = 0, i, bytes = bits / 8;
  1138. u8 *value = (u8 *)value64;
  1139. if ((address > 0xFF) || !value || !handler_context)
  1140. return AE_BAD_PARAMETER;
  1141. if (function != ACPI_READ && function != ACPI_WRITE)
  1142. return AE_BAD_PARAMETER;
  1143. if (ec->busy_polling || bits > 8)
  1144. acpi_ec_burst_enable(ec);
  1145. for (i = 0; i < bytes; ++i, ++address, ++value)
  1146. result = (function == ACPI_READ) ?
  1147. acpi_ec_read(ec, address, value) :
  1148. acpi_ec_write(ec, address, *value);
  1149. if (ec->busy_polling || bits > 8)
  1150. acpi_ec_burst_disable(ec);
  1151. switch (result) {
  1152. case -EINVAL:
  1153. return AE_BAD_PARAMETER;
  1154. case -ENODEV:
  1155. return AE_NOT_FOUND;
  1156. case -ETIME:
  1157. return AE_TIME;
  1158. default:
  1159. return AE_OK;
  1160. }
  1161. }
  1162. /* --------------------------------------------------------------------------
  1163. * Driver Interface
  1164. * -------------------------------------------------------------------------- */
  1165. static acpi_status
  1166. ec_parse_io_ports(struct acpi_resource *resource, void *context);
  1167. static void acpi_ec_free(struct acpi_ec *ec)
  1168. {
  1169. if (first_ec == ec)
  1170. first_ec = NULL;
  1171. if (boot_ec == ec)
  1172. boot_ec = NULL;
  1173. kfree(ec);
  1174. }
  1175. static struct acpi_ec *acpi_ec_alloc(void)
  1176. {
  1177. struct acpi_ec *ec = kzalloc(sizeof(struct acpi_ec), GFP_KERNEL);
  1178. if (!ec)
  1179. return NULL;
  1180. mutex_init(&ec->mutex);
  1181. init_waitqueue_head(&ec->wait);
  1182. INIT_LIST_HEAD(&ec->list);
  1183. spin_lock_init(&ec->lock);
  1184. INIT_WORK(&ec->work, acpi_ec_event_handler);
  1185. ec->timestamp = jiffies;
  1186. ec->busy_polling = true;
  1187. ec->polling_guard = 0;
  1188. return ec;
  1189. }
  1190. static acpi_status
  1191. acpi_ec_register_query_methods(acpi_handle handle, u32 level,
  1192. void *context, void **return_value)
  1193. {
  1194. char node_name[5];
  1195. struct acpi_buffer buffer = { sizeof(node_name), node_name };
  1196. struct acpi_ec *ec = context;
  1197. int value = 0;
  1198. acpi_status status;
  1199. status = acpi_get_name(handle, ACPI_SINGLE_NAME, &buffer);
  1200. if (ACPI_SUCCESS(status) && sscanf(node_name, "_Q%x", &value) == 1)
  1201. acpi_ec_add_query_handler(ec, value, handle, NULL, NULL);
  1202. return AE_OK;
  1203. }
  1204. static acpi_status
  1205. ec_parse_device(acpi_handle handle, u32 Level, void *context, void **retval)
  1206. {
  1207. acpi_status status;
  1208. unsigned long long tmp = 0;
  1209. struct acpi_ec *ec = context;
  1210. /* clear addr values, ec_parse_io_ports depend on it */
  1211. ec->command_addr = ec->data_addr = 0;
  1212. status = acpi_walk_resources(handle, METHOD_NAME__CRS,
  1213. ec_parse_io_ports, ec);
  1214. if (ACPI_FAILURE(status))
  1215. return status;
  1216. /* Get GPE bit assignment (EC events). */
  1217. /* TODO: Add support for _GPE returning a package */
  1218. status = acpi_evaluate_integer(handle, "_GPE", NULL, &tmp);
  1219. if (ACPI_FAILURE(status))
  1220. return status;
  1221. ec->gpe = tmp;
  1222. /* Use the global lock for all EC transactions? */
  1223. tmp = 0;
  1224. acpi_evaluate_integer(handle, "_GLK", NULL, &tmp);
  1225. ec->global_lock = tmp;
  1226. ec->handle = handle;
  1227. return AE_CTRL_TERMINATE;
  1228. }
  1229. /*
  1230. * Note: This function returns an error code only when the address space
  1231. * handler is not installed, which means "not able to handle
  1232. * transactions".
  1233. */
  1234. static int ec_install_handlers(struct acpi_ec *ec, bool handle_events)
  1235. {
  1236. acpi_status status;
  1237. acpi_ec_start(ec, false);
  1238. if (!test_bit(EC_FLAGS_EC_HANDLER_INSTALLED, &ec->flags)) {
  1239. acpi_ec_enter_noirq(ec);
  1240. status = acpi_install_address_space_handler(ec->handle,
  1241. ACPI_ADR_SPACE_EC,
  1242. &acpi_ec_space_handler,
  1243. NULL, ec);
  1244. if (ACPI_FAILURE(status)) {
  1245. if (status == AE_NOT_FOUND) {
  1246. /*
  1247. * Maybe OS fails in evaluating the _REG
  1248. * object. The AE_NOT_FOUND error will be
  1249. * ignored and OS * continue to initialize
  1250. * EC.
  1251. */
  1252. pr_err("Fail in evaluating the _REG object"
  1253. " of EC device. Broken bios is suspected.\n");
  1254. } else {
  1255. acpi_ec_stop(ec, false);
  1256. return -ENODEV;
  1257. }
  1258. }
  1259. set_bit(EC_FLAGS_EC_HANDLER_INSTALLED, &ec->flags);
  1260. }
  1261. if (!handle_events)
  1262. return 0;
  1263. if (!test_bit(EC_FLAGS_EVT_HANDLER_INSTALLED, &ec->flags)) {
  1264. /* Find and register all query methods */
  1265. acpi_walk_namespace(ACPI_TYPE_METHOD, ec->handle, 1,
  1266. acpi_ec_register_query_methods,
  1267. NULL, ec, NULL);
  1268. set_bit(EC_FLAGS_EVT_HANDLER_INSTALLED, &ec->flags);
  1269. }
  1270. if (!test_bit(EC_FLAGS_GPE_HANDLER_INSTALLED, &ec->flags)) {
  1271. status = acpi_install_gpe_raw_handler(NULL, ec->gpe,
  1272. ACPI_GPE_EDGE_TRIGGERED,
  1273. &acpi_ec_gpe_handler, ec);
  1274. /* This is not fatal as we can poll EC events */
  1275. if (ACPI_SUCCESS(status)) {
  1276. set_bit(EC_FLAGS_GPE_HANDLER_INSTALLED, &ec->flags);
  1277. acpi_ec_leave_noirq(ec);
  1278. if (test_bit(EC_FLAGS_STARTED, &ec->flags) &&
  1279. ec->reference_count >= 1)
  1280. acpi_ec_enable_gpe(ec, true);
  1281. /* EC is fully operational, allow queries */
  1282. acpi_ec_enable_event(ec);
  1283. }
  1284. }
  1285. return 0;
  1286. }
  1287. static void ec_remove_handlers(struct acpi_ec *ec)
  1288. {
  1289. if (test_bit(EC_FLAGS_EC_HANDLER_INSTALLED, &ec->flags)) {
  1290. if (ACPI_FAILURE(acpi_remove_address_space_handler(ec->handle,
  1291. ACPI_ADR_SPACE_EC, &acpi_ec_space_handler)))
  1292. pr_err("failed to remove space handler\n");
  1293. clear_bit(EC_FLAGS_EC_HANDLER_INSTALLED, &ec->flags);
  1294. }
  1295. /*
  1296. * Stops handling the EC transactions after removing the operation
  1297. * region handler. This is required because _REG(DISCONNECT)
  1298. * invoked during the removal can result in new EC transactions.
  1299. *
  1300. * Flushes the EC requests and thus disables the GPE before
  1301. * removing the GPE handler. This is required by the current ACPICA
  1302. * GPE core. ACPICA GPE core will automatically disable a GPE when
  1303. * it is indicated but there is no way to handle it. So the drivers
  1304. * must disable the GPEs prior to removing the GPE handlers.
  1305. */
  1306. acpi_ec_stop(ec, false);
  1307. if (test_bit(EC_FLAGS_GPE_HANDLER_INSTALLED, &ec->flags)) {
  1308. if (ACPI_FAILURE(acpi_remove_gpe_handler(NULL, ec->gpe,
  1309. &acpi_ec_gpe_handler)))
  1310. pr_err("failed to remove gpe handler\n");
  1311. clear_bit(EC_FLAGS_GPE_HANDLER_INSTALLED, &ec->flags);
  1312. }
  1313. if (test_bit(EC_FLAGS_EVT_HANDLER_INSTALLED, &ec->flags)) {
  1314. acpi_ec_remove_query_handlers(ec, true, 0);
  1315. clear_bit(EC_FLAGS_EVT_HANDLER_INSTALLED, &ec->flags);
  1316. }
  1317. }
  1318. static int acpi_ec_setup(struct acpi_ec *ec, bool handle_events)
  1319. {
  1320. int ret;
  1321. ret = ec_install_handlers(ec, handle_events);
  1322. if (ret)
  1323. return ret;
  1324. /* First EC capable of handling transactions */
  1325. if (!first_ec) {
  1326. first_ec = ec;
  1327. acpi_handle_info(first_ec->handle, "Used as first EC\n");
  1328. }
  1329. acpi_handle_info(ec->handle,
  1330. "GPE=0x%lx, EC_CMD/EC_SC=0x%lx, EC_DATA=0x%lx\n",
  1331. ec->gpe, ec->command_addr, ec->data_addr);
  1332. return ret;
  1333. }
  1334. static int acpi_config_boot_ec(struct acpi_ec *ec, acpi_handle handle,
  1335. bool handle_events, bool is_ecdt)
  1336. {
  1337. int ret;
  1338. /*
  1339. * Changing the ACPI handle results in a re-configuration of the
  1340. * boot EC. And if it happens after the namespace initialization,
  1341. * it causes _REG evaluations.
  1342. */
  1343. if (boot_ec && boot_ec->handle != handle)
  1344. ec_remove_handlers(boot_ec);
  1345. /* Unset old boot EC */
  1346. if (boot_ec != ec)
  1347. acpi_ec_free(boot_ec);
  1348. /*
  1349. * ECDT device creation is split into acpi_ec_ecdt_probe() and
  1350. * acpi_ec_ecdt_start(). This function takes care of completing the
  1351. * ECDT parsing logic as the handle update should be performed
  1352. * between the installation/uninstallation of the handlers.
  1353. */
  1354. if (ec->handle != handle)
  1355. ec->handle = handle;
  1356. ret = acpi_ec_setup(ec, handle_events);
  1357. if (ret)
  1358. return ret;
  1359. /* Set new boot EC */
  1360. if (!boot_ec) {
  1361. boot_ec = ec;
  1362. boot_ec_is_ecdt = is_ecdt;
  1363. }
  1364. acpi_handle_info(boot_ec->handle,
  1365. "Used as boot %s EC to handle transactions%s\n",
  1366. is_ecdt ? "ECDT" : "DSDT",
  1367. handle_events ? " and events" : "");
  1368. return ret;
  1369. }
  1370. static bool acpi_ec_ecdt_get_handle(acpi_handle *phandle)
  1371. {
  1372. struct acpi_table_ecdt *ecdt_ptr;
  1373. acpi_status status;
  1374. acpi_handle handle;
  1375. status = acpi_get_table(ACPI_SIG_ECDT, 1,
  1376. (struct acpi_table_header **)&ecdt_ptr);
  1377. if (ACPI_FAILURE(status))
  1378. return false;
  1379. status = acpi_get_handle(NULL, ecdt_ptr->id, &handle);
  1380. if (ACPI_FAILURE(status))
  1381. return false;
  1382. *phandle = handle;
  1383. return true;
  1384. }
  1385. static bool acpi_is_boot_ec(struct acpi_ec *ec)
  1386. {
  1387. if (!boot_ec)
  1388. return false;
  1389. if (ec->handle == boot_ec->handle &&
  1390. ec->gpe == boot_ec->gpe &&
  1391. ec->command_addr == boot_ec->command_addr &&
  1392. ec->data_addr == boot_ec->data_addr)
  1393. return true;
  1394. return false;
  1395. }
  1396. static int acpi_ec_add(struct acpi_device *device)
  1397. {
  1398. struct acpi_ec *ec = NULL;
  1399. int ret;
  1400. strcpy(acpi_device_name(device), ACPI_EC_DEVICE_NAME);
  1401. strcpy(acpi_device_class(device), ACPI_EC_CLASS);
  1402. ec = acpi_ec_alloc();
  1403. if (!ec)
  1404. return -ENOMEM;
  1405. if (ec_parse_device(device->handle, 0, ec, NULL) !=
  1406. AE_CTRL_TERMINATE) {
  1407. ret = -EINVAL;
  1408. goto err_alloc;
  1409. }
  1410. if (acpi_is_boot_ec(ec)) {
  1411. boot_ec_is_ecdt = false;
  1412. acpi_handle_debug(ec->handle, "duplicated.\n");
  1413. acpi_ec_free(ec);
  1414. ec = boot_ec;
  1415. ret = acpi_config_boot_ec(ec, ec->handle, true, false);
  1416. } else
  1417. ret = acpi_ec_setup(ec, true);
  1418. if (ret)
  1419. goto err_query;
  1420. device->driver_data = ec;
  1421. ret = !!request_region(ec->data_addr, 1, "EC data");
  1422. WARN(!ret, "Could not request EC data io port 0x%lx", ec->data_addr);
  1423. ret = !!request_region(ec->command_addr, 1, "EC cmd");
  1424. WARN(!ret, "Could not request EC cmd io port 0x%lx", ec->command_addr);
  1425. /* Reprobe devices depending on the EC */
  1426. acpi_walk_dep_device_list(ec->handle);
  1427. acpi_handle_debug(ec->handle, "enumerated.\n");
  1428. return 0;
  1429. err_query:
  1430. if (ec != boot_ec)
  1431. acpi_ec_remove_query_handlers(ec, true, 0);
  1432. err_alloc:
  1433. if (ec != boot_ec)
  1434. acpi_ec_free(ec);
  1435. return ret;
  1436. }
  1437. static int acpi_ec_remove(struct acpi_device *device)
  1438. {
  1439. struct acpi_ec *ec;
  1440. if (!device)
  1441. return -EINVAL;
  1442. ec = acpi_driver_data(device);
  1443. release_region(ec->data_addr, 1);
  1444. release_region(ec->command_addr, 1);
  1445. device->driver_data = NULL;
  1446. if (ec != boot_ec) {
  1447. ec_remove_handlers(ec);
  1448. acpi_ec_free(ec);
  1449. }
  1450. return 0;
  1451. }
  1452. static acpi_status
  1453. ec_parse_io_ports(struct acpi_resource *resource, void *context)
  1454. {
  1455. struct acpi_ec *ec = context;
  1456. if (resource->type != ACPI_RESOURCE_TYPE_IO)
  1457. return AE_OK;
  1458. /*
  1459. * The first address region returned is the data port, and
  1460. * the second address region returned is the status/command
  1461. * port.
  1462. */
  1463. if (ec->data_addr == 0)
  1464. ec->data_addr = resource->data.io.minimum;
  1465. else if (ec->command_addr == 0)
  1466. ec->command_addr = resource->data.io.minimum;
  1467. else
  1468. return AE_CTRL_TERMINATE;
  1469. return AE_OK;
  1470. }
  1471. static const struct acpi_device_id ec_device_ids[] = {
  1472. {"PNP0C09", 0},
  1473. {"", 0},
  1474. };
  1475. int __init acpi_ec_dsdt_probe(void)
  1476. {
  1477. acpi_status status;
  1478. struct acpi_ec *ec;
  1479. int ret;
  1480. ec = acpi_ec_alloc();
  1481. if (!ec)
  1482. return -ENOMEM;
  1483. /*
  1484. * At this point, the namespace is initialized, so start to find
  1485. * the namespace objects.
  1486. */
  1487. status = acpi_get_devices(ec_device_ids[0].id,
  1488. ec_parse_device, ec, NULL);
  1489. if (ACPI_FAILURE(status) || !ec->handle) {
  1490. ret = -ENODEV;
  1491. goto error;
  1492. }
  1493. /*
  1494. * When the DSDT EC is available, always re-configure boot EC to
  1495. * have _REG evaluated. _REG can only be evaluated after the
  1496. * namespace initialization.
  1497. * At this point, the GPE is not fully initialized, so do not to
  1498. * handle the events.
  1499. */
  1500. ret = acpi_config_boot_ec(ec, ec->handle, false, false);
  1501. error:
  1502. if (ret)
  1503. acpi_ec_free(ec);
  1504. return ret;
  1505. }
  1506. /*
  1507. * If the DSDT EC is not functioning, we still need to prepare a fully
  1508. * functioning ECDT EC first in order to handle the events.
  1509. * https://bugzilla.kernel.org/show_bug.cgi?id=115021
  1510. */
  1511. static int __init acpi_ec_ecdt_start(void)
  1512. {
  1513. acpi_handle handle;
  1514. if (!boot_ec)
  1515. return -ENODEV;
  1516. /*
  1517. * The DSDT EC should have already been started in
  1518. * acpi_ec_add().
  1519. */
  1520. if (!boot_ec_is_ecdt)
  1521. return -ENODEV;
  1522. /*
  1523. * At this point, the namespace and the GPE is initialized, so
  1524. * start to find the namespace objects and handle the events.
  1525. */
  1526. if (!acpi_ec_ecdt_get_handle(&handle))
  1527. return -ENODEV;
  1528. return acpi_config_boot_ec(boot_ec, handle, true, true);
  1529. }
  1530. #if 0
  1531. /*
  1532. * Some EC firmware variations refuses to respond QR_EC when SCI_EVT is not
  1533. * set, for which case, we complete the QR_EC without issuing it to the
  1534. * firmware.
  1535. * https://bugzilla.kernel.org/show_bug.cgi?id=82611
  1536. * https://bugzilla.kernel.org/show_bug.cgi?id=97381
  1537. */
  1538. static int ec_flag_query_handshake(const struct dmi_system_id *id)
  1539. {
  1540. pr_debug("Detected the EC firmware requiring QR_EC issued when SCI_EVT set\n");
  1541. EC_FLAGS_QUERY_HANDSHAKE = 1;
  1542. return 0;
  1543. }
  1544. #endif
  1545. /*
  1546. * On some hardware it is necessary to clear events accumulated by the EC during
  1547. * sleep. These ECs stop reporting GPEs until they are manually polled, if too
  1548. * many events are accumulated. (e.g. Samsung Series 5/9 notebooks)
  1549. *
  1550. * https://bugzilla.kernel.org/show_bug.cgi?id=44161
  1551. *
  1552. * Ideally, the EC should also be instructed NOT to accumulate events during
  1553. * sleep (which Windows seems to do somehow), but the interface to control this
  1554. * behaviour is not known at this time.
  1555. *
  1556. * Models known to be affected are Samsung 530Uxx/535Uxx/540Uxx/550Pxx/900Xxx,
  1557. * however it is very likely that other Samsung models are affected.
  1558. *
  1559. * On systems which don't accumulate _Q events during sleep, this extra check
  1560. * should be harmless.
  1561. */
  1562. static int ec_clear_on_resume(const struct dmi_system_id *id)
  1563. {
  1564. pr_debug("Detected system needing EC poll on resume.\n");
  1565. EC_FLAGS_CLEAR_ON_RESUME = 1;
  1566. ec_event_clearing = ACPI_EC_EVT_TIMING_STATUS;
  1567. return 0;
  1568. }
  1569. /*
  1570. * Some ECDTs contain wrong register addresses.
  1571. * MSI MS-171F
  1572. * https://bugzilla.kernel.org/show_bug.cgi?id=12461
  1573. */
  1574. static int ec_correct_ecdt(const struct dmi_system_id *id)
  1575. {
  1576. pr_debug("Detected system needing ECDT address correction.\n");
  1577. EC_FLAGS_CORRECT_ECDT = 1;
  1578. return 0;
  1579. }
  1580. static struct dmi_system_id ec_dmi_table[] __initdata = {
  1581. {
  1582. ec_correct_ecdt, "MSI MS-171F", {
  1583. DMI_MATCH(DMI_SYS_VENDOR, "Micro-Star"),
  1584. DMI_MATCH(DMI_PRODUCT_NAME, "MS-171F"),}, NULL},
  1585. {
  1586. ec_clear_on_resume, "Samsung hardware", {
  1587. DMI_MATCH(DMI_SYS_VENDOR, "SAMSUNG ELECTRONICS CO., LTD.")}, NULL},
  1588. {},
  1589. };
  1590. int __init acpi_ec_ecdt_probe(void)
  1591. {
  1592. int ret;
  1593. acpi_status status;
  1594. struct acpi_table_ecdt *ecdt_ptr;
  1595. struct acpi_ec *ec;
  1596. ec = acpi_ec_alloc();
  1597. if (!ec)
  1598. return -ENOMEM;
  1599. /*
  1600. * Generate a boot ec context
  1601. */
  1602. dmi_check_system(ec_dmi_table);
  1603. status = acpi_get_table(ACPI_SIG_ECDT, 1,
  1604. (struct acpi_table_header **)&ecdt_ptr);
  1605. if (ACPI_FAILURE(status)) {
  1606. ret = -ENODEV;
  1607. goto error;
  1608. }
  1609. if (!ecdt_ptr->control.address || !ecdt_ptr->data.address) {
  1610. /*
  1611. * Asus X50GL:
  1612. * https://bugzilla.kernel.org/show_bug.cgi?id=11880
  1613. */
  1614. ret = -ENODEV;
  1615. goto error;
  1616. }
  1617. if (EC_FLAGS_CORRECT_ECDT) {
  1618. ec->command_addr = ecdt_ptr->data.address;
  1619. ec->data_addr = ecdt_ptr->control.address;
  1620. } else {
  1621. ec->command_addr = ecdt_ptr->control.address;
  1622. ec->data_addr = ecdt_ptr->data.address;
  1623. }
  1624. ec->gpe = ecdt_ptr->gpe;
  1625. /*
  1626. * At this point, the namespace is not initialized, so do not find
  1627. * the namespace objects, or handle the events.
  1628. */
  1629. ret = acpi_config_boot_ec(ec, ACPI_ROOT_OBJECT, false, true);
  1630. error:
  1631. if (ret)
  1632. acpi_ec_free(ec);
  1633. return ret;
  1634. }
  1635. #ifdef CONFIG_PM_SLEEP
  1636. static int acpi_ec_suspend(struct device *dev)
  1637. {
  1638. struct acpi_ec *ec =
  1639. acpi_driver_data(to_acpi_device(dev));
  1640. if (ec_freeze_events)
  1641. acpi_ec_disable_event(ec);
  1642. return 0;
  1643. }
  1644. static int acpi_ec_resume(struct device *dev)
  1645. {
  1646. struct acpi_ec *ec =
  1647. acpi_driver_data(to_acpi_device(dev));
  1648. acpi_ec_enable_event(ec);
  1649. return 0;
  1650. }
  1651. #endif
  1652. static const struct dev_pm_ops acpi_ec_pm = {
  1653. SET_SYSTEM_SLEEP_PM_OPS(acpi_ec_suspend, acpi_ec_resume)
  1654. };
  1655. static int param_set_event_clearing(const char *val, struct kernel_param *kp)
  1656. {
  1657. int result = 0;
  1658. if (!strncmp(val, "status", sizeof("status") - 1)) {
  1659. ec_event_clearing = ACPI_EC_EVT_TIMING_STATUS;
  1660. pr_info("Assuming SCI_EVT clearing on EC_SC accesses\n");
  1661. } else if (!strncmp(val, "query", sizeof("query") - 1)) {
  1662. ec_event_clearing = ACPI_EC_EVT_TIMING_QUERY;
  1663. pr_info("Assuming SCI_EVT clearing on QR_EC writes\n");
  1664. } else if (!strncmp(val, "event", sizeof("event") - 1)) {
  1665. ec_event_clearing = ACPI_EC_EVT_TIMING_EVENT;
  1666. pr_info("Assuming SCI_EVT clearing on event reads\n");
  1667. } else
  1668. result = -EINVAL;
  1669. return result;
  1670. }
  1671. static int param_get_event_clearing(char *buffer, struct kernel_param *kp)
  1672. {
  1673. switch (ec_event_clearing) {
  1674. case ACPI_EC_EVT_TIMING_STATUS:
  1675. return sprintf(buffer, "status");
  1676. case ACPI_EC_EVT_TIMING_QUERY:
  1677. return sprintf(buffer, "query");
  1678. case ACPI_EC_EVT_TIMING_EVENT:
  1679. return sprintf(buffer, "event");
  1680. default:
  1681. return sprintf(buffer, "invalid");
  1682. }
  1683. return 0;
  1684. }
  1685. module_param_call(ec_event_clearing, param_set_event_clearing, param_get_event_clearing,
  1686. NULL, 0644);
  1687. MODULE_PARM_DESC(ec_event_clearing, "Assumed SCI_EVT clearing timing");
  1688. static struct acpi_driver acpi_ec_driver = {
  1689. .name = "ec",
  1690. .class = ACPI_EC_CLASS,
  1691. .ids = ec_device_ids,
  1692. .ops = {
  1693. .add = acpi_ec_add,
  1694. .remove = acpi_ec_remove,
  1695. },
  1696. .drv.pm = &acpi_ec_pm,
  1697. };
  1698. static inline int acpi_ec_query_init(void)
  1699. {
  1700. if (!ec_query_wq) {
  1701. ec_query_wq = alloc_workqueue("kec_query", 0,
  1702. ec_max_queries);
  1703. if (!ec_query_wq)
  1704. return -ENODEV;
  1705. }
  1706. return 0;
  1707. }
  1708. static inline void acpi_ec_query_exit(void)
  1709. {
  1710. if (ec_query_wq) {
  1711. destroy_workqueue(ec_query_wq);
  1712. ec_query_wq = NULL;
  1713. }
  1714. }
  1715. int __init acpi_ec_init(void)
  1716. {
  1717. int result;
  1718. int ecdt_fail, dsdt_fail;
  1719. /* register workqueue for _Qxx evaluations */
  1720. result = acpi_ec_query_init();
  1721. if (result)
  1722. return result;
  1723. /* Drivers must be started after acpi_ec_query_init() */
  1724. ecdt_fail = acpi_ec_ecdt_start();
  1725. dsdt_fail = acpi_bus_register_driver(&acpi_ec_driver);
  1726. return ecdt_fail && dsdt_fail ? -ENODEV : 0;
  1727. }
  1728. /* EC driver currently not unloadable */
  1729. #if 0
  1730. static void __exit acpi_ec_exit(void)
  1731. {
  1732. acpi_bus_unregister_driver(&acpi_ec_driver);
  1733. acpi_ec_query_exit();
  1734. }
  1735. #endif /* 0 */