ec.c 45 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646
  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. enum {
  97. EC_FLAGS_QUERY_PENDING, /* Query is pending */
  98. EC_FLAGS_QUERY_GUARDING, /* Guard for SCI_EVT check */
  99. EC_FLAGS_HANDLERS_INSTALLED, /* Handlers for GPE and
  100. * OpReg are installed */
  101. EC_FLAGS_STARTED, /* Driver is started */
  102. EC_FLAGS_STOPPED, /* Driver is stopped */
  103. EC_FLAGS_COMMAND_STORM, /* GPE storms occurred to the
  104. * current command processing */
  105. };
  106. #define ACPI_EC_COMMAND_POLL 0x01 /* Available for command byte */
  107. #define ACPI_EC_COMMAND_COMPLETE 0x02 /* Completed last byte */
  108. /* ec.c is compiled in acpi namespace so this shows up as acpi.ec_delay param */
  109. static unsigned int ec_delay __read_mostly = ACPI_EC_DELAY;
  110. module_param(ec_delay, uint, 0644);
  111. MODULE_PARM_DESC(ec_delay, "Timeout(ms) waited until an EC command completes");
  112. static bool ec_busy_polling __read_mostly;
  113. module_param(ec_busy_polling, bool, 0644);
  114. MODULE_PARM_DESC(ec_busy_polling, "Use busy polling to advance EC transaction");
  115. static unsigned int ec_polling_guard __read_mostly = ACPI_EC_UDELAY_POLL;
  116. module_param(ec_polling_guard, uint, 0644);
  117. MODULE_PARM_DESC(ec_polling_guard, "Guard time(us) between EC accesses in polling modes");
  118. static unsigned int ec_event_clearing __read_mostly = ACPI_EC_EVT_TIMING_QUERY;
  119. /*
  120. * If the number of false interrupts per one transaction exceeds
  121. * this threshold, will think there is a GPE storm happened and
  122. * will disable the GPE for normal transaction.
  123. */
  124. static unsigned int ec_storm_threshold __read_mostly = 8;
  125. module_param(ec_storm_threshold, uint, 0644);
  126. MODULE_PARM_DESC(ec_storm_threshold, "Maxim false GPE numbers not considered as GPE storm");
  127. struct acpi_ec_query_handler {
  128. struct list_head node;
  129. acpi_ec_query_func func;
  130. acpi_handle handle;
  131. void *data;
  132. u8 query_bit;
  133. struct kref kref;
  134. };
  135. struct transaction {
  136. const u8 *wdata;
  137. u8 *rdata;
  138. unsigned short irq_count;
  139. u8 command;
  140. u8 wi;
  141. u8 ri;
  142. u8 wlen;
  143. u8 rlen;
  144. u8 flags;
  145. };
  146. struct acpi_ec_query {
  147. struct transaction transaction;
  148. struct work_struct work;
  149. struct acpi_ec_query_handler *handler;
  150. };
  151. static int acpi_ec_query(struct acpi_ec *ec, u8 *data);
  152. static void advance_transaction(struct acpi_ec *ec);
  153. static void acpi_ec_event_handler(struct work_struct *work);
  154. static void acpi_ec_event_processor(struct work_struct *work);
  155. struct acpi_ec *boot_ec, *first_ec;
  156. EXPORT_SYMBOL(first_ec);
  157. static int EC_FLAGS_VALIDATE_ECDT; /* ASUStec ECDTs need to be validated */
  158. static int EC_FLAGS_SKIP_DSDT_SCAN; /* Not all BIOS survive early DSDT scan */
  159. static int EC_FLAGS_CLEAR_ON_RESUME; /* Needs acpi_ec_clear() on boot/resume */
  160. static int EC_FLAGS_QUERY_HANDSHAKE; /* Needs QR_EC issued when SCI_EVT set */
  161. /* --------------------------------------------------------------------------
  162. * Logging/Debugging
  163. * -------------------------------------------------------------------------- */
  164. /*
  165. * Splitters used by the developers to track the boundary of the EC
  166. * handling processes.
  167. */
  168. #ifdef DEBUG
  169. #define EC_DBG_SEP " "
  170. #define EC_DBG_DRV "+++++"
  171. #define EC_DBG_STM "====="
  172. #define EC_DBG_REQ "*****"
  173. #define EC_DBG_EVT "#####"
  174. #else
  175. #define EC_DBG_SEP ""
  176. #define EC_DBG_DRV
  177. #define EC_DBG_STM
  178. #define EC_DBG_REQ
  179. #define EC_DBG_EVT
  180. #endif
  181. #define ec_log_raw(fmt, ...) \
  182. pr_info(fmt "\n", ##__VA_ARGS__)
  183. #define ec_dbg_raw(fmt, ...) \
  184. pr_debug(fmt "\n", ##__VA_ARGS__)
  185. #define ec_log(filter, fmt, ...) \
  186. ec_log_raw(filter EC_DBG_SEP fmt EC_DBG_SEP filter, ##__VA_ARGS__)
  187. #define ec_dbg(filter, fmt, ...) \
  188. ec_dbg_raw(filter EC_DBG_SEP fmt EC_DBG_SEP filter, ##__VA_ARGS__)
  189. #define ec_log_drv(fmt, ...) \
  190. ec_log(EC_DBG_DRV, fmt, ##__VA_ARGS__)
  191. #define ec_dbg_drv(fmt, ...) \
  192. ec_dbg(EC_DBG_DRV, fmt, ##__VA_ARGS__)
  193. #define ec_dbg_stm(fmt, ...) \
  194. ec_dbg(EC_DBG_STM, fmt, ##__VA_ARGS__)
  195. #define ec_dbg_req(fmt, ...) \
  196. ec_dbg(EC_DBG_REQ, fmt, ##__VA_ARGS__)
  197. #define ec_dbg_evt(fmt, ...) \
  198. ec_dbg(EC_DBG_EVT, fmt, ##__VA_ARGS__)
  199. #define ec_dbg_ref(ec, fmt, ...) \
  200. ec_dbg_raw("%lu: " fmt, ec->reference_count, ## __VA_ARGS__)
  201. /* --------------------------------------------------------------------------
  202. * Device Flags
  203. * -------------------------------------------------------------------------- */
  204. static bool acpi_ec_started(struct acpi_ec *ec)
  205. {
  206. return test_bit(EC_FLAGS_STARTED, &ec->flags) &&
  207. !test_bit(EC_FLAGS_STOPPED, &ec->flags);
  208. }
  209. static bool acpi_ec_flushed(struct acpi_ec *ec)
  210. {
  211. return ec->reference_count == 1;
  212. }
  213. /* --------------------------------------------------------------------------
  214. * EC Registers
  215. * -------------------------------------------------------------------------- */
  216. static inline u8 acpi_ec_read_status(struct acpi_ec *ec)
  217. {
  218. u8 x = inb(ec->command_addr);
  219. ec_dbg_raw("EC_SC(R) = 0x%2.2x "
  220. "SCI_EVT=%d BURST=%d CMD=%d IBF=%d OBF=%d",
  221. x,
  222. !!(x & ACPI_EC_FLAG_SCI),
  223. !!(x & ACPI_EC_FLAG_BURST),
  224. !!(x & ACPI_EC_FLAG_CMD),
  225. !!(x & ACPI_EC_FLAG_IBF),
  226. !!(x & ACPI_EC_FLAG_OBF));
  227. return x;
  228. }
  229. static inline u8 acpi_ec_read_data(struct acpi_ec *ec)
  230. {
  231. u8 x = inb(ec->data_addr);
  232. ec->timestamp = jiffies;
  233. ec_dbg_raw("EC_DATA(R) = 0x%2.2x", x);
  234. return x;
  235. }
  236. static inline void acpi_ec_write_cmd(struct acpi_ec *ec, u8 command)
  237. {
  238. ec_dbg_raw("EC_SC(W) = 0x%2.2x", command);
  239. outb(command, ec->command_addr);
  240. ec->timestamp = jiffies;
  241. }
  242. static inline void acpi_ec_write_data(struct acpi_ec *ec, u8 data)
  243. {
  244. ec_dbg_raw("EC_DATA(W) = 0x%2.2x", data);
  245. outb(data, ec->data_addr);
  246. ec->timestamp = jiffies;
  247. }
  248. #ifdef DEBUG
  249. static const char *acpi_ec_cmd_string(u8 cmd)
  250. {
  251. switch (cmd) {
  252. case 0x80:
  253. return "RD_EC";
  254. case 0x81:
  255. return "WR_EC";
  256. case 0x82:
  257. return "BE_EC";
  258. case 0x83:
  259. return "BD_EC";
  260. case 0x84:
  261. return "QR_EC";
  262. }
  263. return "UNKNOWN";
  264. }
  265. #else
  266. #define acpi_ec_cmd_string(cmd) "UNDEF"
  267. #endif
  268. /* --------------------------------------------------------------------------
  269. * GPE Registers
  270. * -------------------------------------------------------------------------- */
  271. static inline bool acpi_ec_is_gpe_raised(struct acpi_ec *ec)
  272. {
  273. acpi_event_status gpe_status = 0;
  274. (void)acpi_get_gpe_status(NULL, ec->gpe, &gpe_status);
  275. return (gpe_status & ACPI_EVENT_FLAG_STATUS_SET) ? true : false;
  276. }
  277. static inline void acpi_ec_enable_gpe(struct acpi_ec *ec, bool open)
  278. {
  279. if (open)
  280. acpi_enable_gpe(NULL, ec->gpe);
  281. else {
  282. BUG_ON(ec->reference_count < 1);
  283. acpi_set_gpe(NULL, ec->gpe, ACPI_GPE_ENABLE);
  284. }
  285. if (acpi_ec_is_gpe_raised(ec)) {
  286. /*
  287. * On some platforms, EN=1 writes cannot trigger GPE. So
  288. * software need to manually trigger a pseudo GPE event on
  289. * EN=1 writes.
  290. */
  291. ec_dbg_raw("Polling quirk");
  292. advance_transaction(ec);
  293. }
  294. }
  295. static inline void acpi_ec_disable_gpe(struct acpi_ec *ec, bool close)
  296. {
  297. if (close)
  298. acpi_disable_gpe(NULL, ec->gpe);
  299. else {
  300. BUG_ON(ec->reference_count < 1);
  301. acpi_set_gpe(NULL, ec->gpe, ACPI_GPE_DISABLE);
  302. }
  303. }
  304. static inline void acpi_ec_clear_gpe(struct acpi_ec *ec)
  305. {
  306. /*
  307. * GPE STS is a W1C register, which means:
  308. * 1. Software can clear it without worrying about clearing other
  309. * GPEs' STS bits when the hardware sets them in parallel.
  310. * 2. As long as software can ensure only clearing it when it is
  311. * set, hardware won't set it in parallel.
  312. * So software can clear GPE in any contexts.
  313. * Warning: do not move the check into advance_transaction() as the
  314. * EC commands will be sent without GPE raised.
  315. */
  316. if (!acpi_ec_is_gpe_raised(ec))
  317. return;
  318. acpi_clear_gpe(NULL, ec->gpe);
  319. }
  320. /* --------------------------------------------------------------------------
  321. * Transaction Management
  322. * -------------------------------------------------------------------------- */
  323. static void acpi_ec_submit_request(struct acpi_ec *ec)
  324. {
  325. ec->reference_count++;
  326. if (ec->reference_count == 1)
  327. acpi_ec_enable_gpe(ec, true);
  328. }
  329. static void acpi_ec_complete_request(struct acpi_ec *ec)
  330. {
  331. bool flushed = false;
  332. ec->reference_count--;
  333. if (ec->reference_count == 0)
  334. acpi_ec_disable_gpe(ec, true);
  335. flushed = acpi_ec_flushed(ec);
  336. if (flushed)
  337. wake_up(&ec->wait);
  338. }
  339. static void acpi_ec_set_storm(struct acpi_ec *ec, u8 flag)
  340. {
  341. if (!test_bit(flag, &ec->flags)) {
  342. acpi_ec_disable_gpe(ec, false);
  343. ec_dbg_drv("Polling enabled");
  344. set_bit(flag, &ec->flags);
  345. }
  346. }
  347. static void acpi_ec_clear_storm(struct acpi_ec *ec, u8 flag)
  348. {
  349. if (test_bit(flag, &ec->flags)) {
  350. clear_bit(flag, &ec->flags);
  351. acpi_ec_enable_gpe(ec, false);
  352. ec_dbg_drv("Polling disabled");
  353. }
  354. }
  355. /*
  356. * acpi_ec_submit_flushable_request() - Increase the reference count unless
  357. * the flush operation is not in
  358. * progress
  359. * @ec: the EC device
  360. *
  361. * This function must be used before taking a new action that should hold
  362. * the reference count. If this function returns false, then the action
  363. * must be discarded or it will prevent the flush operation from being
  364. * completed.
  365. */
  366. static bool acpi_ec_submit_flushable_request(struct acpi_ec *ec)
  367. {
  368. if (!acpi_ec_started(ec))
  369. return false;
  370. acpi_ec_submit_request(ec);
  371. return true;
  372. }
  373. static void acpi_ec_submit_query(struct acpi_ec *ec)
  374. {
  375. if (!test_and_set_bit(EC_FLAGS_QUERY_PENDING, &ec->flags)) {
  376. ec_dbg_evt("Command(%s) submitted/blocked",
  377. acpi_ec_cmd_string(ACPI_EC_COMMAND_QUERY));
  378. ec->nr_pending_queries++;
  379. schedule_work(&ec->work);
  380. }
  381. }
  382. static void acpi_ec_complete_query(struct acpi_ec *ec)
  383. {
  384. if (test_bit(EC_FLAGS_QUERY_PENDING, &ec->flags)) {
  385. clear_bit(EC_FLAGS_QUERY_PENDING, &ec->flags);
  386. ec_dbg_evt("Command(%s) unblocked",
  387. acpi_ec_cmd_string(ACPI_EC_COMMAND_QUERY));
  388. }
  389. }
  390. static bool acpi_ec_guard_event(struct acpi_ec *ec)
  391. {
  392. if (ec_event_clearing == ACPI_EC_EVT_TIMING_STATUS ||
  393. ec_event_clearing == ACPI_EC_EVT_TIMING_QUERY ||
  394. !test_bit(EC_FLAGS_QUERY_PENDING, &ec->flags) ||
  395. (ec->curr && ec->curr->command == ACPI_EC_COMMAND_QUERY))
  396. return false;
  397. /*
  398. * Postpone the query submission to allow the firmware to proceed,
  399. * we shouldn't check SCI_EVT before the firmware reflagging it.
  400. */
  401. return true;
  402. }
  403. static int ec_transaction_polled(struct acpi_ec *ec)
  404. {
  405. unsigned long flags;
  406. int ret = 0;
  407. spin_lock_irqsave(&ec->lock, flags);
  408. if (ec->curr && (ec->curr->flags & ACPI_EC_COMMAND_POLL))
  409. ret = 1;
  410. spin_unlock_irqrestore(&ec->lock, flags);
  411. return ret;
  412. }
  413. static int ec_transaction_completed(struct acpi_ec *ec)
  414. {
  415. unsigned long flags;
  416. int ret = 0;
  417. spin_lock_irqsave(&ec->lock, flags);
  418. if (ec->curr && (ec->curr->flags & ACPI_EC_COMMAND_COMPLETE))
  419. ret = 1;
  420. spin_unlock_irqrestore(&ec->lock, flags);
  421. return ret;
  422. }
  423. static inline void ec_transaction_transition(struct acpi_ec *ec, unsigned long flag)
  424. {
  425. ec->curr->flags |= flag;
  426. if (ec->curr->command == ACPI_EC_COMMAND_QUERY) {
  427. if (ec_event_clearing == ACPI_EC_EVT_TIMING_STATUS &&
  428. flag == ACPI_EC_COMMAND_POLL)
  429. acpi_ec_complete_query(ec);
  430. if (ec_event_clearing == ACPI_EC_EVT_TIMING_QUERY &&
  431. flag == ACPI_EC_COMMAND_COMPLETE)
  432. acpi_ec_complete_query(ec);
  433. if (ec_event_clearing == ACPI_EC_EVT_TIMING_EVENT &&
  434. flag == ACPI_EC_COMMAND_COMPLETE)
  435. set_bit(EC_FLAGS_QUERY_GUARDING, &ec->flags);
  436. }
  437. }
  438. static void advance_transaction(struct acpi_ec *ec)
  439. {
  440. struct transaction *t;
  441. u8 status;
  442. bool wakeup = false;
  443. ec_dbg_stm("%s (%d)", in_interrupt() ? "IRQ" : "TASK",
  444. smp_processor_id());
  445. /*
  446. * By always clearing STS before handling all indications, we can
  447. * ensure a hardware STS 0->1 change after this clearing can always
  448. * trigger a GPE interrupt.
  449. */
  450. acpi_ec_clear_gpe(ec);
  451. status = acpi_ec_read_status(ec);
  452. t = ec->curr;
  453. /*
  454. * Another IRQ or a guarded polling mode advancement is detected,
  455. * the next QR_EC submission is then allowed.
  456. */
  457. if (!t || !(t->flags & ACPI_EC_COMMAND_POLL)) {
  458. if (ec_event_clearing == ACPI_EC_EVT_TIMING_EVENT &&
  459. (!ec->nr_pending_queries ||
  460. test_bit(EC_FLAGS_QUERY_GUARDING, &ec->flags))) {
  461. clear_bit(EC_FLAGS_QUERY_GUARDING, &ec->flags);
  462. acpi_ec_complete_query(ec);
  463. }
  464. }
  465. if (!t)
  466. goto err;
  467. if (t->flags & ACPI_EC_COMMAND_POLL) {
  468. if (t->wlen > t->wi) {
  469. if ((status & ACPI_EC_FLAG_IBF) == 0)
  470. acpi_ec_write_data(ec, t->wdata[t->wi++]);
  471. else
  472. goto err;
  473. } else if (t->rlen > t->ri) {
  474. if ((status & ACPI_EC_FLAG_OBF) == 1) {
  475. t->rdata[t->ri++] = acpi_ec_read_data(ec);
  476. if (t->rlen == t->ri) {
  477. ec_transaction_transition(ec, ACPI_EC_COMMAND_COMPLETE);
  478. if (t->command == ACPI_EC_COMMAND_QUERY)
  479. ec_dbg_evt("Command(%s) completed by hardware",
  480. acpi_ec_cmd_string(ACPI_EC_COMMAND_QUERY));
  481. wakeup = true;
  482. }
  483. } else
  484. goto err;
  485. } else if (t->wlen == t->wi &&
  486. (status & ACPI_EC_FLAG_IBF) == 0) {
  487. ec_transaction_transition(ec, ACPI_EC_COMMAND_COMPLETE);
  488. wakeup = true;
  489. }
  490. goto out;
  491. } else {
  492. if (EC_FLAGS_QUERY_HANDSHAKE &&
  493. !(status & ACPI_EC_FLAG_SCI) &&
  494. (t->command == ACPI_EC_COMMAND_QUERY)) {
  495. ec_transaction_transition(ec, ACPI_EC_COMMAND_POLL);
  496. t->rdata[t->ri++] = 0x00;
  497. ec_transaction_transition(ec, ACPI_EC_COMMAND_COMPLETE);
  498. ec_dbg_evt("Command(%s) completed by software",
  499. acpi_ec_cmd_string(ACPI_EC_COMMAND_QUERY));
  500. wakeup = true;
  501. } else if ((status & ACPI_EC_FLAG_IBF) == 0) {
  502. acpi_ec_write_cmd(ec, t->command);
  503. ec_transaction_transition(ec, ACPI_EC_COMMAND_POLL);
  504. } else
  505. goto err;
  506. goto out;
  507. }
  508. err:
  509. /*
  510. * If SCI bit is set, then don't think it's a false IRQ
  511. * otherwise will take a not handled IRQ as a false one.
  512. */
  513. if (!(status & ACPI_EC_FLAG_SCI)) {
  514. if (in_interrupt() && t) {
  515. if (t->irq_count < ec_storm_threshold)
  516. ++t->irq_count;
  517. /* Allow triggering on 0 threshold */
  518. if (t->irq_count == ec_storm_threshold)
  519. acpi_ec_set_storm(ec, EC_FLAGS_COMMAND_STORM);
  520. }
  521. }
  522. out:
  523. if (status & ACPI_EC_FLAG_SCI)
  524. acpi_ec_submit_query(ec);
  525. if (wakeup && in_interrupt())
  526. wake_up(&ec->wait);
  527. }
  528. static void start_transaction(struct acpi_ec *ec)
  529. {
  530. ec->curr->irq_count = ec->curr->wi = ec->curr->ri = 0;
  531. ec->curr->flags = 0;
  532. }
  533. static int ec_guard(struct acpi_ec *ec)
  534. {
  535. unsigned long guard = usecs_to_jiffies(ec_polling_guard);
  536. unsigned long timeout = ec->timestamp + guard;
  537. do {
  538. if (ec_busy_polling) {
  539. /* Perform busy polling */
  540. if (ec_transaction_completed(ec))
  541. return 0;
  542. udelay(jiffies_to_usecs(guard));
  543. } else {
  544. /*
  545. * Perform wait polling
  546. *
  547. * For SCI_EVT clearing timing of "event",
  548. * performing guarding before re-checking the
  549. * SCI_EVT. Otherwise, such guarding is not needed
  550. * due to the old practices.
  551. */
  552. if (!ec_transaction_polled(ec) &&
  553. !acpi_ec_guard_event(ec))
  554. break;
  555. if (wait_event_timeout(ec->wait,
  556. ec_transaction_completed(ec),
  557. guard))
  558. return 0;
  559. }
  560. /* Guard the register accesses for the polling modes */
  561. } while (time_before(jiffies, timeout));
  562. return -ETIME;
  563. }
  564. static int ec_poll(struct acpi_ec *ec)
  565. {
  566. unsigned long flags;
  567. int repeat = 5; /* number of command restarts */
  568. while (repeat--) {
  569. unsigned long delay = jiffies +
  570. msecs_to_jiffies(ec_delay);
  571. do {
  572. if (!ec_guard(ec))
  573. return 0;
  574. spin_lock_irqsave(&ec->lock, flags);
  575. advance_transaction(ec);
  576. spin_unlock_irqrestore(&ec->lock, flags);
  577. } while (time_before(jiffies, delay));
  578. pr_debug("controller reset, restart transaction\n");
  579. spin_lock_irqsave(&ec->lock, flags);
  580. start_transaction(ec);
  581. spin_unlock_irqrestore(&ec->lock, flags);
  582. }
  583. return -ETIME;
  584. }
  585. static int acpi_ec_transaction_unlocked(struct acpi_ec *ec,
  586. struct transaction *t)
  587. {
  588. unsigned long tmp;
  589. int ret = 0;
  590. /* start transaction */
  591. spin_lock_irqsave(&ec->lock, tmp);
  592. /* Enable GPE for command processing (IBF=0/OBF=1) */
  593. if (!acpi_ec_submit_flushable_request(ec)) {
  594. ret = -EINVAL;
  595. goto unlock;
  596. }
  597. ec_dbg_ref(ec, "Increase command");
  598. /* following two actions should be kept atomic */
  599. ec->curr = t;
  600. ec_dbg_req("Command(%s) started", acpi_ec_cmd_string(t->command));
  601. start_transaction(ec);
  602. spin_unlock_irqrestore(&ec->lock, tmp);
  603. ret = ec_poll(ec);
  604. spin_lock_irqsave(&ec->lock, tmp);
  605. if (t->irq_count == ec_storm_threshold)
  606. acpi_ec_clear_storm(ec, EC_FLAGS_COMMAND_STORM);
  607. ec_dbg_req("Command(%s) stopped", acpi_ec_cmd_string(t->command));
  608. ec->curr = NULL;
  609. /* Disable GPE for command processing (IBF=0/OBF=1) */
  610. acpi_ec_complete_request(ec);
  611. ec_dbg_ref(ec, "Decrease command");
  612. unlock:
  613. spin_unlock_irqrestore(&ec->lock, tmp);
  614. return ret;
  615. }
  616. static int acpi_ec_transaction(struct acpi_ec *ec, struct transaction *t)
  617. {
  618. int status;
  619. u32 glk;
  620. if (!ec || (!t) || (t->wlen && !t->wdata) || (t->rlen && !t->rdata))
  621. return -EINVAL;
  622. if (t->rdata)
  623. memset(t->rdata, 0, t->rlen);
  624. mutex_lock(&ec->mutex);
  625. if (ec->global_lock) {
  626. status = acpi_acquire_global_lock(ACPI_EC_UDELAY_GLK, &glk);
  627. if (ACPI_FAILURE(status)) {
  628. status = -ENODEV;
  629. goto unlock;
  630. }
  631. }
  632. status = acpi_ec_transaction_unlocked(ec, t);
  633. if (ec->global_lock)
  634. acpi_release_global_lock(glk);
  635. unlock:
  636. mutex_unlock(&ec->mutex);
  637. return status;
  638. }
  639. static int acpi_ec_burst_enable(struct acpi_ec *ec)
  640. {
  641. u8 d;
  642. struct transaction t = {.command = ACPI_EC_BURST_ENABLE,
  643. .wdata = NULL, .rdata = &d,
  644. .wlen = 0, .rlen = 1};
  645. return acpi_ec_transaction(ec, &t);
  646. }
  647. static int acpi_ec_burst_disable(struct acpi_ec *ec)
  648. {
  649. struct transaction t = {.command = ACPI_EC_BURST_DISABLE,
  650. .wdata = NULL, .rdata = NULL,
  651. .wlen = 0, .rlen = 0};
  652. return (acpi_ec_read_status(ec) & ACPI_EC_FLAG_BURST) ?
  653. acpi_ec_transaction(ec, &t) : 0;
  654. }
  655. static int acpi_ec_read(struct acpi_ec *ec, u8 address, u8 *data)
  656. {
  657. int result;
  658. u8 d;
  659. struct transaction t = {.command = ACPI_EC_COMMAND_READ,
  660. .wdata = &address, .rdata = &d,
  661. .wlen = 1, .rlen = 1};
  662. result = acpi_ec_transaction(ec, &t);
  663. *data = d;
  664. return result;
  665. }
  666. static int acpi_ec_write(struct acpi_ec *ec, u8 address, u8 data)
  667. {
  668. u8 wdata[2] = { address, data };
  669. struct transaction t = {.command = ACPI_EC_COMMAND_WRITE,
  670. .wdata = wdata, .rdata = NULL,
  671. .wlen = 2, .rlen = 0};
  672. return acpi_ec_transaction(ec, &t);
  673. }
  674. int ec_read(u8 addr, u8 *val)
  675. {
  676. int err;
  677. u8 temp_data;
  678. if (!first_ec)
  679. return -ENODEV;
  680. err = acpi_ec_read(first_ec, addr, &temp_data);
  681. if (!err) {
  682. *val = temp_data;
  683. return 0;
  684. }
  685. return err;
  686. }
  687. EXPORT_SYMBOL(ec_read);
  688. int ec_write(u8 addr, u8 val)
  689. {
  690. int err;
  691. if (!first_ec)
  692. return -ENODEV;
  693. err = acpi_ec_write(first_ec, addr, val);
  694. return err;
  695. }
  696. EXPORT_SYMBOL(ec_write);
  697. int ec_transaction(u8 command,
  698. const u8 *wdata, unsigned wdata_len,
  699. u8 *rdata, unsigned rdata_len)
  700. {
  701. struct transaction t = {.command = command,
  702. .wdata = wdata, .rdata = rdata,
  703. .wlen = wdata_len, .rlen = rdata_len};
  704. if (!first_ec)
  705. return -ENODEV;
  706. return acpi_ec_transaction(first_ec, &t);
  707. }
  708. EXPORT_SYMBOL(ec_transaction);
  709. /* Get the handle to the EC device */
  710. acpi_handle ec_get_handle(void)
  711. {
  712. if (!first_ec)
  713. return NULL;
  714. return first_ec->handle;
  715. }
  716. EXPORT_SYMBOL(ec_get_handle);
  717. /*
  718. * Process _Q events that might have accumulated in the EC.
  719. * Run with locked ec mutex.
  720. */
  721. static void acpi_ec_clear(struct acpi_ec *ec)
  722. {
  723. int i, status;
  724. u8 value = 0;
  725. for (i = 0; i < ACPI_EC_CLEAR_MAX; i++) {
  726. status = acpi_ec_query(ec, &value);
  727. if (status || !value)
  728. break;
  729. }
  730. if (unlikely(i == ACPI_EC_CLEAR_MAX))
  731. pr_warn("Warning: Maximum of %d stale EC events cleared\n", i);
  732. else
  733. pr_info("%d stale EC events cleared\n", i);
  734. }
  735. static void acpi_ec_start(struct acpi_ec *ec, bool resuming)
  736. {
  737. unsigned long flags;
  738. spin_lock_irqsave(&ec->lock, flags);
  739. if (!test_and_set_bit(EC_FLAGS_STARTED, &ec->flags)) {
  740. ec_dbg_drv("Starting EC");
  741. /* Enable GPE for event processing (SCI_EVT=1) */
  742. if (!resuming) {
  743. acpi_ec_submit_request(ec);
  744. ec_dbg_ref(ec, "Increase driver");
  745. }
  746. ec_log_drv("EC started");
  747. }
  748. spin_unlock_irqrestore(&ec->lock, flags);
  749. }
  750. static bool acpi_ec_stopped(struct acpi_ec *ec)
  751. {
  752. unsigned long flags;
  753. bool flushed;
  754. spin_lock_irqsave(&ec->lock, flags);
  755. flushed = acpi_ec_flushed(ec);
  756. spin_unlock_irqrestore(&ec->lock, flags);
  757. return flushed;
  758. }
  759. static void acpi_ec_stop(struct acpi_ec *ec, bool suspending)
  760. {
  761. unsigned long flags;
  762. spin_lock_irqsave(&ec->lock, flags);
  763. if (acpi_ec_started(ec)) {
  764. ec_dbg_drv("Stopping EC");
  765. set_bit(EC_FLAGS_STOPPED, &ec->flags);
  766. spin_unlock_irqrestore(&ec->lock, flags);
  767. wait_event(ec->wait, acpi_ec_stopped(ec));
  768. spin_lock_irqsave(&ec->lock, flags);
  769. /* Disable GPE for event processing (SCI_EVT=1) */
  770. if (!suspending) {
  771. acpi_ec_complete_request(ec);
  772. ec_dbg_ref(ec, "Decrease driver");
  773. }
  774. clear_bit(EC_FLAGS_STARTED, &ec->flags);
  775. clear_bit(EC_FLAGS_STOPPED, &ec->flags);
  776. ec_log_drv("EC stopped");
  777. }
  778. spin_unlock_irqrestore(&ec->lock, flags);
  779. }
  780. void acpi_ec_block_transactions(void)
  781. {
  782. struct acpi_ec *ec = first_ec;
  783. if (!ec)
  784. return;
  785. mutex_lock(&ec->mutex);
  786. /* Prevent transactions from being carried out */
  787. acpi_ec_stop(ec, true);
  788. mutex_unlock(&ec->mutex);
  789. }
  790. void acpi_ec_unblock_transactions(void)
  791. {
  792. struct acpi_ec *ec = first_ec;
  793. if (!ec)
  794. return;
  795. /* Allow transactions to be carried out again */
  796. acpi_ec_start(ec, true);
  797. if (EC_FLAGS_CLEAR_ON_RESUME)
  798. acpi_ec_clear(ec);
  799. }
  800. void acpi_ec_unblock_transactions_early(void)
  801. {
  802. /*
  803. * Allow transactions to happen again (this function is called from
  804. * atomic context during wakeup, so we don't need to acquire the mutex).
  805. */
  806. if (first_ec)
  807. acpi_ec_start(first_ec, true);
  808. }
  809. /* --------------------------------------------------------------------------
  810. Event Management
  811. -------------------------------------------------------------------------- */
  812. static struct acpi_ec_query_handler *
  813. acpi_ec_get_query_handler(struct acpi_ec_query_handler *handler)
  814. {
  815. if (handler)
  816. kref_get(&handler->kref);
  817. return handler;
  818. }
  819. static void acpi_ec_query_handler_release(struct kref *kref)
  820. {
  821. struct acpi_ec_query_handler *handler =
  822. container_of(kref, struct acpi_ec_query_handler, kref);
  823. kfree(handler);
  824. }
  825. static void acpi_ec_put_query_handler(struct acpi_ec_query_handler *handler)
  826. {
  827. kref_put(&handler->kref, acpi_ec_query_handler_release);
  828. }
  829. int acpi_ec_add_query_handler(struct acpi_ec *ec, u8 query_bit,
  830. acpi_handle handle, acpi_ec_query_func func,
  831. void *data)
  832. {
  833. struct acpi_ec_query_handler *handler =
  834. kzalloc(sizeof(struct acpi_ec_query_handler), GFP_KERNEL);
  835. if (!handler)
  836. return -ENOMEM;
  837. handler->query_bit = query_bit;
  838. handler->handle = handle;
  839. handler->func = func;
  840. handler->data = data;
  841. mutex_lock(&ec->mutex);
  842. kref_init(&handler->kref);
  843. list_add(&handler->node, &ec->list);
  844. mutex_unlock(&ec->mutex);
  845. return 0;
  846. }
  847. EXPORT_SYMBOL_GPL(acpi_ec_add_query_handler);
  848. void acpi_ec_remove_query_handler(struct acpi_ec *ec, u8 query_bit)
  849. {
  850. struct acpi_ec_query_handler *handler, *tmp;
  851. LIST_HEAD(free_list);
  852. mutex_lock(&ec->mutex);
  853. list_for_each_entry_safe(handler, tmp, &ec->list, node) {
  854. if (query_bit == handler->query_bit) {
  855. list_del_init(&handler->node);
  856. list_add(&handler->node, &free_list);
  857. }
  858. }
  859. mutex_unlock(&ec->mutex);
  860. list_for_each_entry_safe(handler, tmp, &free_list, node)
  861. acpi_ec_put_query_handler(handler);
  862. }
  863. EXPORT_SYMBOL_GPL(acpi_ec_remove_query_handler);
  864. static struct acpi_ec_query *acpi_ec_create_query(u8 *pval)
  865. {
  866. struct acpi_ec_query *q;
  867. struct transaction *t;
  868. q = kzalloc(sizeof (struct acpi_ec_query), GFP_KERNEL);
  869. if (!q)
  870. return NULL;
  871. INIT_WORK(&q->work, acpi_ec_event_processor);
  872. t = &q->transaction;
  873. t->command = ACPI_EC_COMMAND_QUERY;
  874. t->rdata = pval;
  875. t->rlen = 1;
  876. return q;
  877. }
  878. static void acpi_ec_delete_query(struct acpi_ec_query *q)
  879. {
  880. if (q) {
  881. if (q->handler)
  882. acpi_ec_put_query_handler(q->handler);
  883. kfree(q);
  884. }
  885. }
  886. static void acpi_ec_event_processor(struct work_struct *work)
  887. {
  888. struct acpi_ec_query *q = container_of(work, struct acpi_ec_query, work);
  889. struct acpi_ec_query_handler *handler = q->handler;
  890. ec_dbg_evt("Query(0x%02x) started", handler->query_bit);
  891. if (handler->func)
  892. handler->func(handler->data);
  893. else if (handler->handle)
  894. acpi_evaluate_object(handler->handle, NULL, NULL, NULL);
  895. ec_dbg_evt("Query(0x%02x) stopped", handler->query_bit);
  896. acpi_ec_delete_query(q);
  897. }
  898. static int acpi_ec_query(struct acpi_ec *ec, u8 *data)
  899. {
  900. u8 value = 0;
  901. int result;
  902. struct acpi_ec_query_handler *handler;
  903. struct acpi_ec_query *q;
  904. q = acpi_ec_create_query(&value);
  905. if (!q)
  906. return -ENOMEM;
  907. /*
  908. * Query the EC to find out which _Qxx method we need to evaluate.
  909. * Note that successful completion of the query causes the ACPI_EC_SCI
  910. * bit to be cleared (and thus clearing the interrupt source).
  911. */
  912. result = acpi_ec_transaction(ec, &q->transaction);
  913. if (!value)
  914. result = -ENODATA;
  915. if (result)
  916. goto err_exit;
  917. mutex_lock(&ec->mutex);
  918. result = -ENODATA;
  919. list_for_each_entry(handler, &ec->list, node) {
  920. if (value == handler->query_bit) {
  921. result = 0;
  922. q->handler = acpi_ec_get_query_handler(handler);
  923. ec_dbg_evt("Query(0x%02x) scheduled",
  924. q->handler->query_bit);
  925. /*
  926. * It is reported that _Qxx are evaluated in a
  927. * parallel way on Windows:
  928. * https://bugzilla.kernel.org/show_bug.cgi?id=94411
  929. */
  930. if (!schedule_work(&q->work))
  931. result = -EBUSY;
  932. break;
  933. }
  934. }
  935. mutex_unlock(&ec->mutex);
  936. err_exit:
  937. if (result && q)
  938. acpi_ec_delete_query(q);
  939. if (data)
  940. *data = value;
  941. return result;
  942. }
  943. static void acpi_ec_check_event(struct acpi_ec *ec)
  944. {
  945. unsigned long flags;
  946. if (ec_event_clearing == ACPI_EC_EVT_TIMING_EVENT) {
  947. if (ec_guard(ec)) {
  948. spin_lock_irqsave(&ec->lock, flags);
  949. /*
  950. * Take care of the SCI_EVT unless no one else is
  951. * taking care of it.
  952. */
  953. if (!ec->curr)
  954. advance_transaction(ec);
  955. spin_unlock_irqrestore(&ec->lock, flags);
  956. }
  957. }
  958. }
  959. static void acpi_ec_event_handler(struct work_struct *work)
  960. {
  961. unsigned long flags;
  962. struct acpi_ec *ec = container_of(work, struct acpi_ec, work);
  963. ec_dbg_evt("Event started");
  964. spin_lock_irqsave(&ec->lock, flags);
  965. while (ec->nr_pending_queries) {
  966. spin_unlock_irqrestore(&ec->lock, flags);
  967. (void)acpi_ec_query(ec, NULL);
  968. spin_lock_irqsave(&ec->lock, flags);
  969. ec->nr_pending_queries--;
  970. /*
  971. * Before exit, make sure that this work item can be
  972. * scheduled again. There might be QR_EC failures, leaving
  973. * EC_FLAGS_QUERY_PENDING uncleared and preventing this work
  974. * item from being scheduled again.
  975. */
  976. if (!ec->nr_pending_queries) {
  977. if (ec_event_clearing == ACPI_EC_EVT_TIMING_STATUS ||
  978. ec_event_clearing == ACPI_EC_EVT_TIMING_QUERY)
  979. acpi_ec_complete_query(ec);
  980. }
  981. }
  982. spin_unlock_irqrestore(&ec->lock, flags);
  983. ec_dbg_evt("Event stopped");
  984. acpi_ec_check_event(ec);
  985. }
  986. static u32 acpi_ec_gpe_handler(acpi_handle gpe_device,
  987. u32 gpe_number, void *data)
  988. {
  989. unsigned long flags;
  990. struct acpi_ec *ec = data;
  991. spin_lock_irqsave(&ec->lock, flags);
  992. advance_transaction(ec);
  993. spin_unlock_irqrestore(&ec->lock, flags);
  994. return ACPI_INTERRUPT_HANDLED;
  995. }
  996. /* --------------------------------------------------------------------------
  997. * Address Space Management
  998. * -------------------------------------------------------------------------- */
  999. static acpi_status
  1000. acpi_ec_space_handler(u32 function, acpi_physical_address address,
  1001. u32 bits, u64 *value64,
  1002. void *handler_context, void *region_context)
  1003. {
  1004. struct acpi_ec *ec = handler_context;
  1005. int result = 0, i, bytes = bits / 8;
  1006. u8 *value = (u8 *)value64;
  1007. if ((address > 0xFF) || !value || !handler_context)
  1008. return AE_BAD_PARAMETER;
  1009. if (function != ACPI_READ && function != ACPI_WRITE)
  1010. return AE_BAD_PARAMETER;
  1011. if (ec_busy_polling || bits > 8)
  1012. acpi_ec_burst_enable(ec);
  1013. for (i = 0; i < bytes; ++i, ++address, ++value)
  1014. result = (function == ACPI_READ) ?
  1015. acpi_ec_read(ec, address, value) :
  1016. acpi_ec_write(ec, address, *value);
  1017. if (ec_busy_polling || bits > 8)
  1018. acpi_ec_burst_disable(ec);
  1019. switch (result) {
  1020. case -EINVAL:
  1021. return AE_BAD_PARAMETER;
  1022. case -ENODEV:
  1023. return AE_NOT_FOUND;
  1024. case -ETIME:
  1025. return AE_TIME;
  1026. default:
  1027. return AE_OK;
  1028. }
  1029. }
  1030. /* --------------------------------------------------------------------------
  1031. * Driver Interface
  1032. * -------------------------------------------------------------------------- */
  1033. static acpi_status
  1034. ec_parse_io_ports(struct acpi_resource *resource, void *context);
  1035. static struct acpi_ec *make_acpi_ec(void)
  1036. {
  1037. struct acpi_ec *ec = kzalloc(sizeof(struct acpi_ec), GFP_KERNEL);
  1038. if (!ec)
  1039. return NULL;
  1040. ec->flags = 1 << EC_FLAGS_QUERY_PENDING;
  1041. mutex_init(&ec->mutex);
  1042. init_waitqueue_head(&ec->wait);
  1043. INIT_LIST_HEAD(&ec->list);
  1044. spin_lock_init(&ec->lock);
  1045. INIT_WORK(&ec->work, acpi_ec_event_handler);
  1046. ec->timestamp = jiffies;
  1047. return ec;
  1048. }
  1049. static acpi_status
  1050. acpi_ec_register_query_methods(acpi_handle handle, u32 level,
  1051. void *context, void **return_value)
  1052. {
  1053. char node_name[5];
  1054. struct acpi_buffer buffer = { sizeof(node_name), node_name };
  1055. struct acpi_ec *ec = context;
  1056. int value = 0;
  1057. acpi_status status;
  1058. status = acpi_get_name(handle, ACPI_SINGLE_NAME, &buffer);
  1059. if (ACPI_SUCCESS(status) && sscanf(node_name, "_Q%x", &value) == 1)
  1060. acpi_ec_add_query_handler(ec, value, handle, NULL, NULL);
  1061. return AE_OK;
  1062. }
  1063. static acpi_status
  1064. ec_parse_device(acpi_handle handle, u32 Level, void *context, void **retval)
  1065. {
  1066. acpi_status status;
  1067. unsigned long long tmp = 0;
  1068. struct acpi_ec *ec = context;
  1069. /* clear addr values, ec_parse_io_ports depend on it */
  1070. ec->command_addr = ec->data_addr = 0;
  1071. status = acpi_walk_resources(handle, METHOD_NAME__CRS,
  1072. ec_parse_io_ports, ec);
  1073. if (ACPI_FAILURE(status))
  1074. return status;
  1075. /* Get GPE bit assignment (EC events). */
  1076. /* TODO: Add support for _GPE returning a package */
  1077. status = acpi_evaluate_integer(handle, "_GPE", NULL, &tmp);
  1078. if (ACPI_FAILURE(status))
  1079. return status;
  1080. ec->gpe = tmp;
  1081. /* Use the global lock for all EC transactions? */
  1082. tmp = 0;
  1083. acpi_evaluate_integer(handle, "_GLK", NULL, &tmp);
  1084. ec->global_lock = tmp;
  1085. ec->handle = handle;
  1086. return AE_CTRL_TERMINATE;
  1087. }
  1088. static int ec_install_handlers(struct acpi_ec *ec)
  1089. {
  1090. acpi_status status;
  1091. if (test_bit(EC_FLAGS_HANDLERS_INSTALLED, &ec->flags))
  1092. return 0;
  1093. status = acpi_install_gpe_raw_handler(NULL, ec->gpe,
  1094. ACPI_GPE_EDGE_TRIGGERED,
  1095. &acpi_ec_gpe_handler, ec);
  1096. if (ACPI_FAILURE(status))
  1097. return -ENODEV;
  1098. acpi_ec_start(ec, false);
  1099. status = acpi_install_address_space_handler(ec->handle,
  1100. ACPI_ADR_SPACE_EC,
  1101. &acpi_ec_space_handler,
  1102. NULL, ec);
  1103. if (ACPI_FAILURE(status)) {
  1104. if (status == AE_NOT_FOUND) {
  1105. /*
  1106. * Maybe OS fails in evaluating the _REG object.
  1107. * The AE_NOT_FOUND error will be ignored and OS
  1108. * continue to initialize EC.
  1109. */
  1110. pr_err("Fail in evaluating the _REG object"
  1111. " of EC device. Broken bios is suspected.\n");
  1112. } else {
  1113. acpi_ec_stop(ec, false);
  1114. acpi_remove_gpe_handler(NULL, ec->gpe,
  1115. &acpi_ec_gpe_handler);
  1116. return -ENODEV;
  1117. }
  1118. }
  1119. set_bit(EC_FLAGS_HANDLERS_INSTALLED, &ec->flags);
  1120. return 0;
  1121. }
  1122. static void ec_remove_handlers(struct acpi_ec *ec)
  1123. {
  1124. if (!test_bit(EC_FLAGS_HANDLERS_INSTALLED, &ec->flags))
  1125. return;
  1126. acpi_ec_stop(ec, false);
  1127. if (ACPI_FAILURE(acpi_remove_address_space_handler(ec->handle,
  1128. ACPI_ADR_SPACE_EC, &acpi_ec_space_handler)))
  1129. pr_err("failed to remove space handler\n");
  1130. if (ACPI_FAILURE(acpi_remove_gpe_handler(NULL, ec->gpe,
  1131. &acpi_ec_gpe_handler)))
  1132. pr_err("failed to remove gpe handler\n");
  1133. clear_bit(EC_FLAGS_HANDLERS_INSTALLED, &ec->flags);
  1134. }
  1135. static int acpi_ec_add(struct acpi_device *device)
  1136. {
  1137. struct acpi_ec *ec = NULL;
  1138. int ret;
  1139. strcpy(acpi_device_name(device), ACPI_EC_DEVICE_NAME);
  1140. strcpy(acpi_device_class(device), ACPI_EC_CLASS);
  1141. /* Check for boot EC */
  1142. if (boot_ec &&
  1143. (boot_ec->handle == device->handle ||
  1144. boot_ec->handle == ACPI_ROOT_OBJECT)) {
  1145. ec = boot_ec;
  1146. boot_ec = NULL;
  1147. } else {
  1148. ec = make_acpi_ec();
  1149. if (!ec)
  1150. return -ENOMEM;
  1151. }
  1152. if (ec_parse_device(device->handle, 0, ec, NULL) !=
  1153. AE_CTRL_TERMINATE) {
  1154. kfree(ec);
  1155. return -EINVAL;
  1156. }
  1157. /* Find and register all query methods */
  1158. acpi_walk_namespace(ACPI_TYPE_METHOD, ec->handle, 1,
  1159. acpi_ec_register_query_methods, NULL, ec, NULL);
  1160. if (!first_ec)
  1161. first_ec = ec;
  1162. device->driver_data = ec;
  1163. ret = !!request_region(ec->data_addr, 1, "EC data");
  1164. WARN(!ret, "Could not request EC data io port 0x%lx", ec->data_addr);
  1165. ret = !!request_region(ec->command_addr, 1, "EC cmd");
  1166. WARN(!ret, "Could not request EC cmd io port 0x%lx", ec->command_addr);
  1167. pr_info("GPE = 0x%lx, I/O: command/status = 0x%lx, data = 0x%lx\n",
  1168. ec->gpe, ec->command_addr, ec->data_addr);
  1169. ret = ec_install_handlers(ec);
  1170. /* Reprobe devices depending on the EC */
  1171. acpi_walk_dep_device_list(ec->handle);
  1172. /* EC is fully operational, allow queries */
  1173. clear_bit(EC_FLAGS_QUERY_PENDING, &ec->flags);
  1174. /* Clear stale _Q events if hardware might require that */
  1175. if (EC_FLAGS_CLEAR_ON_RESUME)
  1176. acpi_ec_clear(ec);
  1177. return ret;
  1178. }
  1179. static int acpi_ec_remove(struct acpi_device *device)
  1180. {
  1181. struct acpi_ec *ec;
  1182. struct acpi_ec_query_handler *handler, *tmp;
  1183. if (!device)
  1184. return -EINVAL;
  1185. ec = acpi_driver_data(device);
  1186. ec_remove_handlers(ec);
  1187. mutex_lock(&ec->mutex);
  1188. list_for_each_entry_safe(handler, tmp, &ec->list, node) {
  1189. list_del(&handler->node);
  1190. kfree(handler);
  1191. }
  1192. mutex_unlock(&ec->mutex);
  1193. release_region(ec->data_addr, 1);
  1194. release_region(ec->command_addr, 1);
  1195. device->driver_data = NULL;
  1196. if (ec == first_ec)
  1197. first_ec = NULL;
  1198. kfree(ec);
  1199. return 0;
  1200. }
  1201. static acpi_status
  1202. ec_parse_io_ports(struct acpi_resource *resource, void *context)
  1203. {
  1204. struct acpi_ec *ec = context;
  1205. if (resource->type != ACPI_RESOURCE_TYPE_IO)
  1206. return AE_OK;
  1207. /*
  1208. * The first address region returned is the data port, and
  1209. * the second address region returned is the status/command
  1210. * port.
  1211. */
  1212. if (ec->data_addr == 0)
  1213. ec->data_addr = resource->data.io.minimum;
  1214. else if (ec->command_addr == 0)
  1215. ec->command_addr = resource->data.io.minimum;
  1216. else
  1217. return AE_CTRL_TERMINATE;
  1218. return AE_OK;
  1219. }
  1220. int __init acpi_boot_ec_enable(void)
  1221. {
  1222. if (!boot_ec || test_bit(EC_FLAGS_HANDLERS_INSTALLED, &boot_ec->flags))
  1223. return 0;
  1224. if (!ec_install_handlers(boot_ec)) {
  1225. first_ec = boot_ec;
  1226. return 0;
  1227. }
  1228. return -EFAULT;
  1229. }
  1230. static const struct acpi_device_id ec_device_ids[] = {
  1231. {"PNP0C09", 0},
  1232. {"", 0},
  1233. };
  1234. /* Some BIOS do not survive early DSDT scan, skip it */
  1235. static int ec_skip_dsdt_scan(const struct dmi_system_id *id)
  1236. {
  1237. EC_FLAGS_SKIP_DSDT_SCAN = 1;
  1238. return 0;
  1239. }
  1240. /* ASUStek often supplies us with broken ECDT, validate it */
  1241. static int ec_validate_ecdt(const struct dmi_system_id *id)
  1242. {
  1243. EC_FLAGS_VALIDATE_ECDT = 1;
  1244. return 0;
  1245. }
  1246. #if 0
  1247. /*
  1248. * Some EC firmware variations refuses to respond QR_EC when SCI_EVT is not
  1249. * set, for which case, we complete the QR_EC without issuing it to the
  1250. * firmware.
  1251. * https://bugzilla.kernel.org/show_bug.cgi?id=82611
  1252. * https://bugzilla.kernel.org/show_bug.cgi?id=97381
  1253. */
  1254. static int ec_flag_query_handshake(const struct dmi_system_id *id)
  1255. {
  1256. pr_debug("Detected the EC firmware requiring QR_EC issued when SCI_EVT set\n");
  1257. EC_FLAGS_QUERY_HANDSHAKE = 1;
  1258. return 0;
  1259. }
  1260. #endif
  1261. /*
  1262. * On some hardware it is necessary to clear events accumulated by the EC during
  1263. * sleep. These ECs stop reporting GPEs until they are manually polled, if too
  1264. * many events are accumulated. (e.g. Samsung Series 5/9 notebooks)
  1265. *
  1266. * https://bugzilla.kernel.org/show_bug.cgi?id=44161
  1267. *
  1268. * Ideally, the EC should also be instructed NOT to accumulate events during
  1269. * sleep (which Windows seems to do somehow), but the interface to control this
  1270. * behaviour is not known at this time.
  1271. *
  1272. * Models known to be affected are Samsung 530Uxx/535Uxx/540Uxx/550Pxx/900Xxx,
  1273. * however it is very likely that other Samsung models are affected.
  1274. *
  1275. * On systems which don't accumulate _Q events during sleep, this extra check
  1276. * should be harmless.
  1277. */
  1278. static int ec_clear_on_resume(const struct dmi_system_id *id)
  1279. {
  1280. pr_debug("Detected system needing EC poll on resume.\n");
  1281. EC_FLAGS_CLEAR_ON_RESUME = 1;
  1282. ec_event_clearing = ACPI_EC_EVT_TIMING_STATUS;
  1283. return 0;
  1284. }
  1285. static struct dmi_system_id ec_dmi_table[] __initdata = {
  1286. {
  1287. ec_skip_dsdt_scan, "Compal JFL92", {
  1288. DMI_MATCH(DMI_BIOS_VENDOR, "COMPAL"),
  1289. DMI_MATCH(DMI_BOARD_NAME, "JFL92") }, NULL},
  1290. {
  1291. ec_validate_ecdt, "MSI MS-171F", {
  1292. DMI_MATCH(DMI_SYS_VENDOR, "Micro-Star"),
  1293. DMI_MATCH(DMI_PRODUCT_NAME, "MS-171F"),}, NULL},
  1294. {
  1295. ec_validate_ecdt, "ASUS hardware", {
  1296. DMI_MATCH(DMI_BIOS_VENDOR, "ASUS") }, NULL},
  1297. {
  1298. ec_validate_ecdt, "ASUS hardware", {
  1299. DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer Inc.") }, NULL},
  1300. {
  1301. ec_skip_dsdt_scan, "HP Folio 13", {
  1302. DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
  1303. DMI_MATCH(DMI_PRODUCT_NAME, "HP Folio 13"),}, NULL},
  1304. {
  1305. ec_validate_ecdt, "ASUS hardware", {
  1306. DMI_MATCH(DMI_SYS_VENDOR, "ASUSTek Computer Inc."),
  1307. DMI_MATCH(DMI_PRODUCT_NAME, "L4R"),}, NULL},
  1308. {
  1309. ec_clear_on_resume, "Samsung hardware", {
  1310. DMI_MATCH(DMI_SYS_VENDOR, "SAMSUNG ELECTRONICS CO., LTD.")}, NULL},
  1311. {},
  1312. };
  1313. int __init acpi_ec_ecdt_probe(void)
  1314. {
  1315. acpi_status status;
  1316. struct acpi_ec *saved_ec = NULL;
  1317. struct acpi_table_ecdt *ecdt_ptr;
  1318. boot_ec = make_acpi_ec();
  1319. if (!boot_ec)
  1320. return -ENOMEM;
  1321. /*
  1322. * Generate a boot ec context
  1323. */
  1324. dmi_check_system(ec_dmi_table);
  1325. status = acpi_get_table(ACPI_SIG_ECDT, 1,
  1326. (struct acpi_table_header **)&ecdt_ptr);
  1327. if (ACPI_SUCCESS(status)) {
  1328. pr_info("EC description table is found, configuring boot EC\n");
  1329. boot_ec->command_addr = ecdt_ptr->control.address;
  1330. boot_ec->data_addr = ecdt_ptr->data.address;
  1331. boot_ec->gpe = ecdt_ptr->gpe;
  1332. boot_ec->handle = ACPI_ROOT_OBJECT;
  1333. acpi_get_handle(ACPI_ROOT_OBJECT, ecdt_ptr->id,
  1334. &boot_ec->handle);
  1335. /* Don't trust ECDT, which comes from ASUSTek */
  1336. if (!EC_FLAGS_VALIDATE_ECDT)
  1337. goto install;
  1338. saved_ec = kmemdup(boot_ec, sizeof(struct acpi_ec), GFP_KERNEL);
  1339. if (!saved_ec)
  1340. return -ENOMEM;
  1341. /* fall through */
  1342. }
  1343. if (EC_FLAGS_SKIP_DSDT_SCAN) {
  1344. kfree(saved_ec);
  1345. return -ENODEV;
  1346. }
  1347. /* This workaround is needed only on some broken machines,
  1348. * which require early EC, but fail to provide ECDT */
  1349. pr_debug("Look up EC in DSDT\n");
  1350. status = acpi_get_devices(ec_device_ids[0].id, ec_parse_device,
  1351. boot_ec, NULL);
  1352. /* Check that acpi_get_devices actually find something */
  1353. if (ACPI_FAILURE(status) || !boot_ec->handle)
  1354. goto error;
  1355. if (saved_ec) {
  1356. /* try to find good ECDT from ASUSTek */
  1357. if (saved_ec->command_addr != boot_ec->command_addr ||
  1358. saved_ec->data_addr != boot_ec->data_addr ||
  1359. saved_ec->gpe != boot_ec->gpe ||
  1360. saved_ec->handle != boot_ec->handle)
  1361. pr_info("ASUSTek keeps feeding us with broken "
  1362. "ECDT tables, which are very hard to workaround. "
  1363. "Trying to use DSDT EC info instead. Please send "
  1364. "output of acpidump to linux-acpi@vger.kernel.org\n");
  1365. kfree(saved_ec);
  1366. saved_ec = NULL;
  1367. } else {
  1368. /* We really need to limit this workaround, the only ASUS,
  1369. * which needs it, has fake EC._INI method, so use it as flag.
  1370. * Keep boot_ec struct as it will be needed soon.
  1371. */
  1372. if (!dmi_name_in_vendors("ASUS") ||
  1373. !acpi_has_method(boot_ec->handle, "_INI"))
  1374. return -ENODEV;
  1375. }
  1376. install:
  1377. if (!ec_install_handlers(boot_ec)) {
  1378. first_ec = boot_ec;
  1379. return 0;
  1380. }
  1381. error:
  1382. kfree(boot_ec);
  1383. kfree(saved_ec);
  1384. boot_ec = NULL;
  1385. return -ENODEV;
  1386. }
  1387. static int param_set_event_clearing(const char *val, struct kernel_param *kp)
  1388. {
  1389. int result = 0;
  1390. if (!strncmp(val, "status", sizeof("status") - 1)) {
  1391. ec_event_clearing = ACPI_EC_EVT_TIMING_STATUS;
  1392. pr_info("Assuming SCI_EVT clearing on EC_SC accesses\n");
  1393. } else if (!strncmp(val, "query", sizeof("query") - 1)) {
  1394. ec_event_clearing = ACPI_EC_EVT_TIMING_QUERY;
  1395. pr_info("Assuming SCI_EVT clearing on QR_EC writes\n");
  1396. } else if (!strncmp(val, "event", sizeof("event") - 1)) {
  1397. ec_event_clearing = ACPI_EC_EVT_TIMING_EVENT;
  1398. pr_info("Assuming SCI_EVT clearing on event reads\n");
  1399. } else
  1400. result = -EINVAL;
  1401. return result;
  1402. }
  1403. static int param_get_event_clearing(char *buffer, struct kernel_param *kp)
  1404. {
  1405. switch (ec_event_clearing) {
  1406. case ACPI_EC_EVT_TIMING_STATUS:
  1407. return sprintf(buffer, "status");
  1408. case ACPI_EC_EVT_TIMING_QUERY:
  1409. return sprintf(buffer, "query");
  1410. case ACPI_EC_EVT_TIMING_EVENT:
  1411. return sprintf(buffer, "event");
  1412. default:
  1413. return sprintf(buffer, "invalid");
  1414. }
  1415. return 0;
  1416. }
  1417. module_param_call(ec_event_clearing, param_set_event_clearing, param_get_event_clearing,
  1418. NULL, 0644);
  1419. MODULE_PARM_DESC(ec_event_clearing, "Assumed SCI_EVT clearing timing");
  1420. static struct acpi_driver acpi_ec_driver = {
  1421. .name = "ec",
  1422. .class = ACPI_EC_CLASS,
  1423. .ids = ec_device_ids,
  1424. .ops = {
  1425. .add = acpi_ec_add,
  1426. .remove = acpi_ec_remove,
  1427. },
  1428. };
  1429. int __init acpi_ec_init(void)
  1430. {
  1431. int result = 0;
  1432. /* Now register the driver for the EC */
  1433. result = acpi_bus_register_driver(&acpi_ec_driver);
  1434. if (result < 0)
  1435. return -ENODEV;
  1436. return result;
  1437. }
  1438. /* EC driver currently not unloadable */
  1439. #if 0
  1440. static void __exit acpi_ec_exit(void)
  1441. {
  1442. acpi_bus_unregister_driver(&acpi_ec_driver);
  1443. }
  1444. #endif /* 0 */