i8042.c 33 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490
  1. /*
  2. * i8042 keyboard and mouse controller driver for Linux
  3. *
  4. * Copyright (c) 1999-2004 Vojtech Pavlik
  5. */
  6. /*
  7. * This program is free software; you can redistribute it and/or modify it
  8. * under the terms of the GNU General Public License version 2 as published by
  9. * the Free Software Foundation.
  10. */
  11. #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
  12. #include <linux/types.h>
  13. #include <linux/delay.h>
  14. #include <linux/module.h>
  15. #include <linux/interrupt.h>
  16. #include <linux/ioport.h>
  17. #include <linux/init.h>
  18. #include <linux/serio.h>
  19. #include <linux/err.h>
  20. #include <linux/rcupdate.h>
  21. #include <linux/platform_device.h>
  22. #include <linux/i8042.h>
  23. #include <linux/slab.h>
  24. #include <asm/io.h>
  25. MODULE_AUTHOR("Vojtech Pavlik <vojtech@suse.cz>");
  26. MODULE_DESCRIPTION("i8042 keyboard and mouse controller driver");
  27. MODULE_LICENSE("GPL");
  28. static bool i8042_nokbd;
  29. module_param_named(nokbd, i8042_nokbd, bool, 0);
  30. MODULE_PARM_DESC(nokbd, "Do not probe or use KBD port.");
  31. static bool i8042_noaux;
  32. module_param_named(noaux, i8042_noaux, bool, 0);
  33. MODULE_PARM_DESC(noaux, "Do not probe or use AUX (mouse) port.");
  34. static bool i8042_nomux;
  35. module_param_named(nomux, i8042_nomux, bool, 0);
  36. MODULE_PARM_DESC(nomux, "Do not check whether an active multiplexing controller is present.");
  37. static bool i8042_unlock;
  38. module_param_named(unlock, i8042_unlock, bool, 0);
  39. MODULE_PARM_DESC(unlock, "Ignore keyboard lock.");
  40. static bool i8042_reset;
  41. module_param_named(reset, i8042_reset, bool, 0);
  42. MODULE_PARM_DESC(reset, "Reset controller during init and cleanup.");
  43. static bool i8042_direct;
  44. module_param_named(direct, i8042_direct, bool, 0);
  45. MODULE_PARM_DESC(direct, "Put keyboard port into non-translated mode.");
  46. static bool i8042_dumbkbd;
  47. module_param_named(dumbkbd, i8042_dumbkbd, bool, 0);
  48. MODULE_PARM_DESC(dumbkbd, "Pretend that controller can only read data from keyboard");
  49. static bool i8042_noloop;
  50. module_param_named(noloop, i8042_noloop, bool, 0);
  51. MODULE_PARM_DESC(noloop, "Disable the AUX Loopback command while probing for the AUX port");
  52. #ifdef CONFIG_X86
  53. static bool i8042_dritek;
  54. module_param_named(dritek, i8042_dritek, bool, 0);
  55. MODULE_PARM_DESC(dritek, "Force enable the Dritek keyboard extension");
  56. #endif
  57. #ifdef CONFIG_PNP
  58. static bool i8042_nopnp;
  59. module_param_named(nopnp, i8042_nopnp, bool, 0);
  60. MODULE_PARM_DESC(nopnp, "Do not use PNP to detect controller settings");
  61. #endif
  62. #define DEBUG
  63. #ifdef DEBUG
  64. static bool i8042_debug;
  65. module_param_named(debug, i8042_debug, bool, 0600);
  66. MODULE_PARM_DESC(debug, "Turn i8042 debugging mode on and off");
  67. #endif
  68. static bool i8042_bypass_aux_irq_test;
  69. #include "i8042.h"
  70. /*
  71. * i8042_lock protects serialization between i8042_command and
  72. * the interrupt handler.
  73. */
  74. static DEFINE_SPINLOCK(i8042_lock);
  75. /*
  76. * Writers to AUX and KBD ports as well as users issuing i8042_command
  77. * directly should acquire i8042_mutex (by means of calling
  78. * i8042_lock_chip() and i8042_unlock_ship() helpers) to ensure that
  79. * they do not disturb each other (unfortunately in many i8042
  80. * implementations write to one of the ports will immediately abort
  81. * command that is being processed by another port).
  82. */
  83. static DEFINE_MUTEX(i8042_mutex);
  84. struct i8042_port {
  85. struct serio *serio;
  86. int irq;
  87. bool exists;
  88. signed char mux;
  89. };
  90. #define I8042_KBD_PORT_NO 0
  91. #define I8042_AUX_PORT_NO 1
  92. #define I8042_MUX_PORT_NO 2
  93. #define I8042_NUM_PORTS (I8042_NUM_MUX_PORTS + 2)
  94. static struct i8042_port i8042_ports[I8042_NUM_PORTS];
  95. static unsigned char i8042_initial_ctr;
  96. static unsigned char i8042_ctr;
  97. static bool i8042_mux_present;
  98. static bool i8042_kbd_irq_registered;
  99. static bool i8042_aux_irq_registered;
  100. static unsigned char i8042_suppress_kbd_ack;
  101. static struct platform_device *i8042_platform_device;
  102. static irqreturn_t i8042_interrupt(int irq, void *dev_id);
  103. static bool (*i8042_platform_filter)(unsigned char data, unsigned char str,
  104. struct serio *serio);
  105. void i8042_lock_chip(void)
  106. {
  107. mutex_lock(&i8042_mutex);
  108. }
  109. EXPORT_SYMBOL(i8042_lock_chip);
  110. void i8042_unlock_chip(void)
  111. {
  112. mutex_unlock(&i8042_mutex);
  113. }
  114. EXPORT_SYMBOL(i8042_unlock_chip);
  115. int i8042_install_filter(bool (*filter)(unsigned char data, unsigned char str,
  116. struct serio *serio))
  117. {
  118. unsigned long flags;
  119. int ret = 0;
  120. spin_lock_irqsave(&i8042_lock, flags);
  121. if (i8042_platform_filter) {
  122. ret = -EBUSY;
  123. goto out;
  124. }
  125. i8042_platform_filter = filter;
  126. out:
  127. spin_unlock_irqrestore(&i8042_lock, flags);
  128. return ret;
  129. }
  130. EXPORT_SYMBOL(i8042_install_filter);
  131. int i8042_remove_filter(bool (*filter)(unsigned char data, unsigned char str,
  132. struct serio *port))
  133. {
  134. unsigned long flags;
  135. int ret = 0;
  136. spin_lock_irqsave(&i8042_lock, flags);
  137. if (i8042_platform_filter != filter) {
  138. ret = -EINVAL;
  139. goto out;
  140. }
  141. i8042_platform_filter = NULL;
  142. out:
  143. spin_unlock_irqrestore(&i8042_lock, flags);
  144. return ret;
  145. }
  146. EXPORT_SYMBOL(i8042_remove_filter);
  147. /*
  148. * The i8042_wait_read() and i8042_wait_write functions wait for the i8042 to
  149. * be ready for reading values from it / writing values to it.
  150. * Called always with i8042_lock held.
  151. */
  152. static int i8042_wait_read(void)
  153. {
  154. int i = 0;
  155. while ((~i8042_read_status() & I8042_STR_OBF) && (i < I8042_CTL_TIMEOUT)) {
  156. udelay(50);
  157. i++;
  158. }
  159. return -(i == I8042_CTL_TIMEOUT);
  160. }
  161. static int i8042_wait_write(void)
  162. {
  163. int i = 0;
  164. while ((i8042_read_status() & I8042_STR_IBF) && (i < I8042_CTL_TIMEOUT)) {
  165. udelay(50);
  166. i++;
  167. }
  168. return -(i == I8042_CTL_TIMEOUT);
  169. }
  170. /*
  171. * i8042_flush() flushes all data that may be in the keyboard and mouse buffers
  172. * of the i8042 down the toilet.
  173. */
  174. static int i8042_flush(void)
  175. {
  176. unsigned long flags;
  177. unsigned char data, str;
  178. int i = 0;
  179. spin_lock_irqsave(&i8042_lock, flags);
  180. while (((str = i8042_read_status()) & I8042_STR_OBF) && (i < I8042_BUFFER_SIZE)) {
  181. udelay(50);
  182. data = i8042_read_data();
  183. i++;
  184. dbg("%02x <- i8042 (flush, %s)\n",
  185. data, str & I8042_STR_AUXDATA ? "aux" : "kbd");
  186. }
  187. spin_unlock_irqrestore(&i8042_lock, flags);
  188. return i;
  189. }
  190. /*
  191. * i8042_command() executes a command on the i8042. It also sends the input
  192. * parameter(s) of the commands to it, and receives the output value(s). The
  193. * parameters are to be stored in the param array, and the output is placed
  194. * into the same array. The number of the parameters and output values is
  195. * encoded in bits 8-11 of the command number.
  196. */
  197. static int __i8042_command(unsigned char *param, int command)
  198. {
  199. int i, error;
  200. if (i8042_noloop && command == I8042_CMD_AUX_LOOP)
  201. return -1;
  202. error = i8042_wait_write();
  203. if (error)
  204. return error;
  205. dbg("%02x -> i8042 (command)\n", command & 0xff);
  206. i8042_write_command(command & 0xff);
  207. for (i = 0; i < ((command >> 12) & 0xf); i++) {
  208. error = i8042_wait_write();
  209. if (error)
  210. return error;
  211. dbg("%02x -> i8042 (parameter)\n", param[i]);
  212. i8042_write_data(param[i]);
  213. }
  214. for (i = 0; i < ((command >> 8) & 0xf); i++) {
  215. error = i8042_wait_read();
  216. if (error) {
  217. dbg(" -- i8042 (timeout)\n");
  218. return error;
  219. }
  220. if (command == I8042_CMD_AUX_LOOP &&
  221. !(i8042_read_status() & I8042_STR_AUXDATA)) {
  222. dbg(" -- i8042 (auxerr)\n");
  223. return -1;
  224. }
  225. param[i] = i8042_read_data();
  226. dbg("%02x <- i8042 (return)\n", param[i]);
  227. }
  228. return 0;
  229. }
  230. int i8042_command(unsigned char *param, int command)
  231. {
  232. unsigned long flags;
  233. int retval;
  234. spin_lock_irqsave(&i8042_lock, flags);
  235. retval = __i8042_command(param, command);
  236. spin_unlock_irqrestore(&i8042_lock, flags);
  237. return retval;
  238. }
  239. EXPORT_SYMBOL(i8042_command);
  240. /*
  241. * i8042_kbd_write() sends a byte out through the keyboard interface.
  242. */
  243. static int i8042_kbd_write(struct serio *port, unsigned char c)
  244. {
  245. unsigned long flags;
  246. int retval = 0;
  247. spin_lock_irqsave(&i8042_lock, flags);
  248. if (!(retval = i8042_wait_write())) {
  249. dbg("%02x -> i8042 (kbd-data)\n", c);
  250. i8042_write_data(c);
  251. }
  252. spin_unlock_irqrestore(&i8042_lock, flags);
  253. return retval;
  254. }
  255. /*
  256. * i8042_aux_write() sends a byte out through the aux interface.
  257. */
  258. static int i8042_aux_write(struct serio *serio, unsigned char c)
  259. {
  260. struct i8042_port *port = serio->port_data;
  261. return i8042_command(&c, port->mux == -1 ?
  262. I8042_CMD_AUX_SEND :
  263. I8042_CMD_MUX_SEND + port->mux);
  264. }
  265. /*
  266. * i8042_aux_close attempts to clear AUX or KBD port state by disabling
  267. * and then re-enabling it.
  268. */
  269. static void i8042_port_close(struct serio *serio)
  270. {
  271. int irq_bit;
  272. int disable_bit;
  273. const char *port_name;
  274. if (serio == i8042_ports[I8042_AUX_PORT_NO].serio) {
  275. irq_bit = I8042_CTR_AUXINT;
  276. disable_bit = I8042_CTR_AUXDIS;
  277. port_name = "AUX";
  278. } else {
  279. irq_bit = I8042_CTR_KBDINT;
  280. disable_bit = I8042_CTR_KBDDIS;
  281. port_name = "KBD";
  282. }
  283. i8042_ctr &= ~irq_bit;
  284. if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR))
  285. pr_warn("Can't write CTR while closing %s port\n", port_name);
  286. udelay(50);
  287. i8042_ctr &= ~disable_bit;
  288. i8042_ctr |= irq_bit;
  289. if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR))
  290. pr_err("Can't reactivate %s port\n", port_name);
  291. /*
  292. * See if there is any data appeared while we were messing with
  293. * port state.
  294. */
  295. i8042_interrupt(0, NULL);
  296. }
  297. /*
  298. * i8042_start() is called by serio core when port is about to finish
  299. * registering. It will mark port as existing so i8042_interrupt can
  300. * start sending data through it.
  301. */
  302. static int i8042_start(struct serio *serio)
  303. {
  304. struct i8042_port *port = serio->port_data;
  305. port->exists = true;
  306. mb();
  307. return 0;
  308. }
  309. /*
  310. * i8042_stop() marks serio port as non-existing so i8042_interrupt
  311. * will not try to send data to the port that is about to go away.
  312. * The function is called by serio core as part of unregister procedure.
  313. */
  314. static void i8042_stop(struct serio *serio)
  315. {
  316. struct i8042_port *port = serio->port_data;
  317. port->exists = false;
  318. /*
  319. * We synchronize with both AUX and KBD IRQs because there is
  320. * a (very unlikely) chance that AUX IRQ is raised for KBD port
  321. * and vice versa.
  322. */
  323. synchronize_irq(I8042_AUX_IRQ);
  324. synchronize_irq(I8042_KBD_IRQ);
  325. port->serio = NULL;
  326. }
  327. /*
  328. * i8042_filter() filters out unwanted bytes from the input data stream.
  329. * It is called from i8042_interrupt and thus is running with interrupts
  330. * off and i8042_lock held.
  331. */
  332. static bool i8042_filter(unsigned char data, unsigned char str,
  333. struct serio *serio)
  334. {
  335. if (unlikely(i8042_suppress_kbd_ack)) {
  336. if ((~str & I8042_STR_AUXDATA) &&
  337. (data == 0xfa || data == 0xfe)) {
  338. i8042_suppress_kbd_ack--;
  339. dbg("Extra keyboard ACK - filtered out\n");
  340. return true;
  341. }
  342. }
  343. if (i8042_platform_filter && i8042_platform_filter(data, str, serio)) {
  344. dbg("Filtered out by platform filter\n");
  345. return true;
  346. }
  347. return false;
  348. }
  349. /*
  350. * i8042_interrupt() is the most important function in this driver -
  351. * it handles the interrupts from the i8042, and sends incoming bytes
  352. * to the upper layers.
  353. */
  354. static irqreturn_t i8042_interrupt(int irq, void *dev_id)
  355. {
  356. struct i8042_port *port;
  357. struct serio *serio;
  358. unsigned long flags;
  359. unsigned char str, data;
  360. unsigned int dfl;
  361. unsigned int port_no;
  362. bool filtered;
  363. int ret = 1;
  364. spin_lock_irqsave(&i8042_lock, flags);
  365. str = i8042_read_status();
  366. if (unlikely(~str & I8042_STR_OBF)) {
  367. spin_unlock_irqrestore(&i8042_lock, flags);
  368. if (irq)
  369. dbg("Interrupt %d, without any data\n", irq);
  370. ret = 0;
  371. goto out;
  372. }
  373. data = i8042_read_data();
  374. if (i8042_mux_present && (str & I8042_STR_AUXDATA)) {
  375. static unsigned long last_transmit;
  376. static unsigned char last_str;
  377. dfl = 0;
  378. if (str & I8042_STR_MUXERR) {
  379. dbg("MUX error, status is %02x, data is %02x\n",
  380. str, data);
  381. /*
  382. * When MUXERR condition is signalled the data register can only contain
  383. * 0xfd, 0xfe or 0xff if implementation follows the spec. Unfortunately
  384. * it is not always the case. Some KBCs also report 0xfc when there is
  385. * nothing connected to the port while others sometimes get confused which
  386. * port the data came from and signal error leaving the data intact. They
  387. * _do not_ revert to legacy mode (actually I've never seen KBC reverting
  388. * to legacy mode yet, when we see one we'll add proper handling).
  389. * Anyway, we process 0xfc, 0xfd, 0xfe and 0xff as timeouts, and for the
  390. * rest assume that the data came from the same serio last byte
  391. * was transmitted (if transmission happened not too long ago).
  392. */
  393. switch (data) {
  394. default:
  395. if (time_before(jiffies, last_transmit + HZ/10)) {
  396. str = last_str;
  397. break;
  398. }
  399. /* fall through - report timeout */
  400. case 0xfc:
  401. case 0xfd:
  402. case 0xfe: dfl = SERIO_TIMEOUT; data = 0xfe; break;
  403. case 0xff: dfl = SERIO_PARITY; data = 0xfe; break;
  404. }
  405. }
  406. port_no = I8042_MUX_PORT_NO + ((str >> 6) & 3);
  407. last_str = str;
  408. last_transmit = jiffies;
  409. } else {
  410. dfl = ((str & I8042_STR_PARITY) ? SERIO_PARITY : 0) |
  411. ((str & I8042_STR_TIMEOUT) ? SERIO_TIMEOUT : 0);
  412. port_no = (str & I8042_STR_AUXDATA) ?
  413. I8042_AUX_PORT_NO : I8042_KBD_PORT_NO;
  414. }
  415. port = &i8042_ports[port_no];
  416. serio = port->exists ? port->serio : NULL;
  417. dbg("%02x <- i8042 (interrupt, %d, %d%s%s)\n",
  418. data, port_no, irq,
  419. dfl & SERIO_PARITY ? ", bad parity" : "",
  420. dfl & SERIO_TIMEOUT ? ", timeout" : "");
  421. filtered = i8042_filter(data, str, serio);
  422. spin_unlock_irqrestore(&i8042_lock, flags);
  423. if (likely(port->exists && !filtered))
  424. serio_interrupt(serio, data, dfl);
  425. out:
  426. return IRQ_RETVAL(ret);
  427. }
  428. /*
  429. * i8042_enable_kbd_port enables keyboard port on chip
  430. */
  431. static int i8042_enable_kbd_port(void)
  432. {
  433. i8042_ctr &= ~I8042_CTR_KBDDIS;
  434. i8042_ctr |= I8042_CTR_KBDINT;
  435. if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR)) {
  436. i8042_ctr &= ~I8042_CTR_KBDINT;
  437. i8042_ctr |= I8042_CTR_KBDDIS;
  438. pr_err("Failed to enable KBD port\n");
  439. return -EIO;
  440. }
  441. return 0;
  442. }
  443. /*
  444. * i8042_enable_aux_port enables AUX (mouse) port on chip
  445. */
  446. static int i8042_enable_aux_port(void)
  447. {
  448. i8042_ctr &= ~I8042_CTR_AUXDIS;
  449. i8042_ctr |= I8042_CTR_AUXINT;
  450. if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR)) {
  451. i8042_ctr &= ~I8042_CTR_AUXINT;
  452. i8042_ctr |= I8042_CTR_AUXDIS;
  453. pr_err("Failed to enable AUX port\n");
  454. return -EIO;
  455. }
  456. return 0;
  457. }
  458. /*
  459. * i8042_enable_mux_ports enables 4 individual AUX ports after
  460. * the controller has been switched into Multiplexed mode
  461. */
  462. static int i8042_enable_mux_ports(void)
  463. {
  464. unsigned char param;
  465. int i;
  466. for (i = 0; i < I8042_NUM_MUX_PORTS; i++) {
  467. i8042_command(&param, I8042_CMD_MUX_PFX + i);
  468. i8042_command(&param, I8042_CMD_AUX_ENABLE);
  469. }
  470. return i8042_enable_aux_port();
  471. }
  472. /*
  473. * i8042_set_mux_mode checks whether the controller has an
  474. * active multiplexor and puts the chip into Multiplexed (true)
  475. * or Legacy (false) mode.
  476. */
  477. static int i8042_set_mux_mode(bool multiplex, unsigned char *mux_version)
  478. {
  479. unsigned char param, val;
  480. /*
  481. * Get rid of bytes in the queue.
  482. */
  483. i8042_flush();
  484. /*
  485. * Internal loopback test - send three bytes, they should come back from the
  486. * mouse interface, the last should be version.
  487. */
  488. param = val = 0xf0;
  489. if (i8042_command(&param, I8042_CMD_AUX_LOOP) || param != val)
  490. return -1;
  491. param = val = multiplex ? 0x56 : 0xf6;
  492. if (i8042_command(&param, I8042_CMD_AUX_LOOP) || param != val)
  493. return -1;
  494. param = val = multiplex ? 0xa4 : 0xa5;
  495. if (i8042_command(&param, I8042_CMD_AUX_LOOP) || param == val)
  496. return -1;
  497. /*
  498. * Workaround for interference with USB Legacy emulation
  499. * that causes a v10.12 MUX to be found.
  500. */
  501. if (param == 0xac)
  502. return -1;
  503. if (mux_version)
  504. *mux_version = param;
  505. return 0;
  506. }
  507. /*
  508. * i8042_check_mux() checks whether the controller supports the PS/2 Active
  509. * Multiplexing specification by Synaptics, Phoenix, Insyde and
  510. * LCS/Telegraphics.
  511. */
  512. static int __init i8042_check_mux(void)
  513. {
  514. unsigned char mux_version;
  515. if (i8042_set_mux_mode(true, &mux_version))
  516. return -1;
  517. pr_info("Detected active multiplexing controller, rev %d.%d\n",
  518. (mux_version >> 4) & 0xf, mux_version & 0xf);
  519. /*
  520. * Disable all muxed ports by disabling AUX.
  521. */
  522. i8042_ctr |= I8042_CTR_AUXDIS;
  523. i8042_ctr &= ~I8042_CTR_AUXINT;
  524. if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR)) {
  525. pr_err("Failed to disable AUX port, can't use MUX\n");
  526. return -EIO;
  527. }
  528. i8042_mux_present = true;
  529. return 0;
  530. }
  531. /*
  532. * The following is used to test AUX IRQ delivery.
  533. */
  534. static struct completion i8042_aux_irq_delivered __initdata;
  535. static bool i8042_irq_being_tested __initdata;
  536. static irqreturn_t __init i8042_aux_test_irq(int irq, void *dev_id)
  537. {
  538. unsigned long flags;
  539. unsigned char str, data;
  540. int ret = 0;
  541. spin_lock_irqsave(&i8042_lock, flags);
  542. str = i8042_read_status();
  543. if (str & I8042_STR_OBF) {
  544. data = i8042_read_data();
  545. dbg("%02x <- i8042 (aux_test_irq, %s)\n",
  546. data, str & I8042_STR_AUXDATA ? "aux" : "kbd");
  547. if (i8042_irq_being_tested &&
  548. data == 0xa5 && (str & I8042_STR_AUXDATA))
  549. complete(&i8042_aux_irq_delivered);
  550. ret = 1;
  551. }
  552. spin_unlock_irqrestore(&i8042_lock, flags);
  553. return IRQ_RETVAL(ret);
  554. }
  555. /*
  556. * i8042_toggle_aux - enables or disables AUX port on i8042 via command and
  557. * verifies success by readinng CTR. Used when testing for presence of AUX
  558. * port.
  559. */
  560. static int __init i8042_toggle_aux(bool on)
  561. {
  562. unsigned char param;
  563. int i;
  564. if (i8042_command(&param,
  565. on ? I8042_CMD_AUX_ENABLE : I8042_CMD_AUX_DISABLE))
  566. return -1;
  567. /* some chips need some time to set the I8042_CTR_AUXDIS bit */
  568. for (i = 0; i < 100; i++) {
  569. udelay(50);
  570. if (i8042_command(&param, I8042_CMD_CTL_RCTR))
  571. return -1;
  572. if (!(param & I8042_CTR_AUXDIS) == on)
  573. return 0;
  574. }
  575. return -1;
  576. }
  577. /*
  578. * i8042_check_aux() applies as much paranoia as it can at detecting
  579. * the presence of an AUX interface.
  580. */
  581. static int __init i8042_check_aux(void)
  582. {
  583. int retval = -1;
  584. bool irq_registered = false;
  585. bool aux_loop_broken = false;
  586. unsigned long flags;
  587. unsigned char param;
  588. /*
  589. * Get rid of bytes in the queue.
  590. */
  591. i8042_flush();
  592. /*
  593. * Internal loopback test - filters out AT-type i8042's. Unfortunately
  594. * SiS screwed up and their 5597 doesn't support the LOOP command even
  595. * though it has an AUX port.
  596. */
  597. param = 0x5a;
  598. retval = i8042_command(&param, I8042_CMD_AUX_LOOP);
  599. if (retval || param != 0x5a) {
  600. /*
  601. * External connection test - filters out AT-soldered PS/2 i8042's
  602. * 0x00 - no error, 0x01-0x03 - clock/data stuck, 0xff - general error
  603. * 0xfa - no error on some notebooks which ignore the spec
  604. * Because it's common for chipsets to return error on perfectly functioning
  605. * AUX ports, we test for this only when the LOOP command failed.
  606. */
  607. if (i8042_command(&param, I8042_CMD_AUX_TEST) ||
  608. (param && param != 0xfa && param != 0xff))
  609. return -1;
  610. /*
  611. * If AUX_LOOP completed without error but returned unexpected data
  612. * mark it as broken
  613. */
  614. if (!retval)
  615. aux_loop_broken = true;
  616. }
  617. /*
  618. * Bit assignment test - filters out PS/2 i8042's in AT mode
  619. */
  620. if (i8042_toggle_aux(false)) {
  621. pr_warn("Failed to disable AUX port, but continuing anyway... Is this a SiS?\n");
  622. pr_warn("If AUX port is really absent please use the 'i8042.noaux' option\n");
  623. }
  624. if (i8042_toggle_aux(true))
  625. return -1;
  626. /*
  627. * Test AUX IRQ delivery to make sure BIOS did not grab the IRQ and
  628. * used it for a PCI card or somethig else.
  629. */
  630. if (i8042_noloop || i8042_bypass_aux_irq_test || aux_loop_broken) {
  631. /*
  632. * Without LOOP command we can't test AUX IRQ delivery. Assume the port
  633. * is working and hope we are right.
  634. */
  635. retval = 0;
  636. goto out;
  637. }
  638. if (request_irq(I8042_AUX_IRQ, i8042_aux_test_irq, IRQF_SHARED,
  639. "i8042", i8042_platform_device))
  640. goto out;
  641. irq_registered = true;
  642. if (i8042_enable_aux_port())
  643. goto out;
  644. spin_lock_irqsave(&i8042_lock, flags);
  645. init_completion(&i8042_aux_irq_delivered);
  646. i8042_irq_being_tested = true;
  647. param = 0xa5;
  648. retval = __i8042_command(&param, I8042_CMD_AUX_LOOP & 0xf0ff);
  649. spin_unlock_irqrestore(&i8042_lock, flags);
  650. if (retval)
  651. goto out;
  652. if (wait_for_completion_timeout(&i8042_aux_irq_delivered,
  653. msecs_to_jiffies(250)) == 0) {
  654. /*
  655. * AUX IRQ was never delivered so we need to flush the controller to
  656. * get rid of the byte we put there; otherwise keyboard may not work.
  657. */
  658. dbg(" -- i8042 (aux irq test timeout)\n");
  659. i8042_flush();
  660. retval = -1;
  661. }
  662. out:
  663. /*
  664. * Disable the interface.
  665. */
  666. i8042_ctr |= I8042_CTR_AUXDIS;
  667. i8042_ctr &= ~I8042_CTR_AUXINT;
  668. if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR))
  669. retval = -1;
  670. if (irq_registered)
  671. free_irq(I8042_AUX_IRQ, i8042_platform_device);
  672. return retval;
  673. }
  674. static int i8042_controller_check(void)
  675. {
  676. if (i8042_flush() == I8042_BUFFER_SIZE) {
  677. pr_err("No controller found\n");
  678. return -ENODEV;
  679. }
  680. return 0;
  681. }
  682. static int i8042_controller_selftest(void)
  683. {
  684. unsigned char param;
  685. int i = 0;
  686. /*
  687. * We try this 5 times; on some really fragile systems this does not
  688. * take the first time...
  689. */
  690. do {
  691. if (i8042_command(&param, I8042_CMD_CTL_TEST)) {
  692. pr_err("i8042 controller self test timeout\n");
  693. return -ENODEV;
  694. }
  695. if (param == I8042_RET_CTL_TEST)
  696. return 0;
  697. pr_err("i8042 controller selftest failed. (%#x != %#x)\n",
  698. param, I8042_RET_CTL_TEST);
  699. msleep(50);
  700. } while (i++ < 5);
  701. #ifdef CONFIG_X86
  702. /*
  703. * On x86, we don't fail entire i8042 initialization if controller
  704. * reset fails in hopes that keyboard port will still be functional
  705. * and user will still get a working keyboard. This is especially
  706. * important on netbooks. On other arches we trust hardware more.
  707. */
  708. pr_info("giving up on controller selftest, continuing anyway...\n");
  709. return 0;
  710. #else
  711. return -EIO;
  712. #endif
  713. }
  714. /*
  715. * i8042_controller init initializes the i8042 controller, and,
  716. * most importantly, sets it into non-xlated mode if that's
  717. * desired.
  718. */
  719. static int i8042_controller_init(void)
  720. {
  721. unsigned long flags;
  722. int n = 0;
  723. unsigned char ctr[2];
  724. /*
  725. * Save the CTR for restore on unload / reboot.
  726. */
  727. do {
  728. if (n >= 10) {
  729. pr_err("Unable to get stable CTR read\n");
  730. return -EIO;
  731. }
  732. if (n != 0)
  733. udelay(50);
  734. if (i8042_command(&ctr[n++ % 2], I8042_CMD_CTL_RCTR)) {
  735. pr_err("Can't read CTR while initializing i8042\n");
  736. return -EIO;
  737. }
  738. } while (n < 2 || ctr[0] != ctr[1]);
  739. i8042_initial_ctr = i8042_ctr = ctr[0];
  740. /*
  741. * Disable the keyboard interface and interrupt.
  742. */
  743. i8042_ctr |= I8042_CTR_KBDDIS;
  744. i8042_ctr &= ~I8042_CTR_KBDINT;
  745. /*
  746. * Handle keylock.
  747. */
  748. spin_lock_irqsave(&i8042_lock, flags);
  749. if (~i8042_read_status() & I8042_STR_KEYLOCK) {
  750. if (i8042_unlock)
  751. i8042_ctr |= I8042_CTR_IGNKEYLOCK;
  752. else
  753. pr_warn("Warning: Keylock active\n");
  754. }
  755. spin_unlock_irqrestore(&i8042_lock, flags);
  756. /*
  757. * If the chip is configured into nontranslated mode by the BIOS, don't
  758. * bother enabling translating and be happy.
  759. */
  760. if (~i8042_ctr & I8042_CTR_XLATE)
  761. i8042_direct = true;
  762. /*
  763. * Set nontranslated mode for the kbd interface if requested by an option.
  764. * After this the kbd interface becomes a simple serial in/out, like the aux
  765. * interface is. We don't do this by default, since it can confuse notebook
  766. * BIOSes.
  767. */
  768. if (i8042_direct)
  769. i8042_ctr &= ~I8042_CTR_XLATE;
  770. /*
  771. * Write CTR back.
  772. */
  773. if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR)) {
  774. pr_err("Can't write CTR while initializing i8042\n");
  775. return -EIO;
  776. }
  777. /*
  778. * Flush whatever accumulated while we were disabling keyboard port.
  779. */
  780. i8042_flush();
  781. return 0;
  782. }
  783. /*
  784. * Reset the controller and reset CRT to the original value set by BIOS.
  785. */
  786. static void i8042_controller_reset(void)
  787. {
  788. i8042_flush();
  789. /*
  790. * Disable both KBD and AUX interfaces so they don't get in the way
  791. */
  792. i8042_ctr |= I8042_CTR_KBDDIS | I8042_CTR_AUXDIS;
  793. i8042_ctr &= ~(I8042_CTR_KBDINT | I8042_CTR_AUXINT);
  794. if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR))
  795. pr_warn("Can't write CTR while resetting\n");
  796. /*
  797. * Disable MUX mode if present.
  798. */
  799. if (i8042_mux_present)
  800. i8042_set_mux_mode(false, NULL);
  801. /*
  802. * Reset the controller if requested.
  803. */
  804. if (i8042_reset)
  805. i8042_controller_selftest();
  806. /*
  807. * Restore the original control register setting.
  808. */
  809. if (i8042_command(&i8042_initial_ctr, I8042_CMD_CTL_WCTR))
  810. pr_warn("Can't restore CTR\n");
  811. }
  812. /*
  813. * i8042_panic_blink() will turn the keyboard LEDs on or off and is called
  814. * when kernel panics. Flashing LEDs is useful for users running X who may
  815. * not see the console and will help distingushing panics from "real"
  816. * lockups.
  817. *
  818. * Note that DELAY has a limit of 10ms so we will not get stuck here
  819. * waiting for KBC to free up even if KBD interrupt is off
  820. */
  821. #define DELAY do { mdelay(1); if (++delay > 10) return delay; } while(0)
  822. static long i8042_panic_blink(int state)
  823. {
  824. long delay = 0;
  825. char led;
  826. led = (state) ? 0x01 | 0x04 : 0;
  827. while (i8042_read_status() & I8042_STR_IBF)
  828. DELAY;
  829. dbg("%02x -> i8042 (panic blink)\n", 0xed);
  830. i8042_suppress_kbd_ack = 2;
  831. i8042_write_data(0xed); /* set leds */
  832. DELAY;
  833. while (i8042_read_status() & I8042_STR_IBF)
  834. DELAY;
  835. DELAY;
  836. dbg("%02x -> i8042 (panic blink)\n", led);
  837. i8042_write_data(led);
  838. DELAY;
  839. return delay;
  840. }
  841. #undef DELAY
  842. #ifdef CONFIG_X86
  843. static void i8042_dritek_enable(void)
  844. {
  845. unsigned char param = 0x90;
  846. int error;
  847. error = i8042_command(&param, 0x1059);
  848. if (error)
  849. pr_warn("Failed to enable DRITEK extension: %d\n", error);
  850. }
  851. #endif
  852. #ifdef CONFIG_PM
  853. /*
  854. * Here we try to reset everything back to a state we had
  855. * before suspending.
  856. */
  857. static int i8042_controller_resume(bool force_reset)
  858. {
  859. int error;
  860. error = i8042_controller_check();
  861. if (error)
  862. return error;
  863. if (i8042_reset || force_reset) {
  864. error = i8042_controller_selftest();
  865. if (error)
  866. return error;
  867. }
  868. /*
  869. * Restore original CTR value and disable all ports
  870. */
  871. i8042_ctr = i8042_initial_ctr;
  872. if (i8042_direct)
  873. i8042_ctr &= ~I8042_CTR_XLATE;
  874. i8042_ctr |= I8042_CTR_AUXDIS | I8042_CTR_KBDDIS;
  875. i8042_ctr &= ~(I8042_CTR_AUXINT | I8042_CTR_KBDINT);
  876. if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR)) {
  877. pr_warn("Can't write CTR to resume, retrying...\n");
  878. msleep(50);
  879. if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR)) {
  880. pr_err("CTR write retry failed\n");
  881. return -EIO;
  882. }
  883. }
  884. #ifdef CONFIG_X86
  885. if (i8042_dritek)
  886. i8042_dritek_enable();
  887. #endif
  888. if (i8042_mux_present) {
  889. if (i8042_set_mux_mode(true, NULL) || i8042_enable_mux_ports())
  890. pr_warn("failed to resume active multiplexor, mouse won't work\n");
  891. } else if (i8042_ports[I8042_AUX_PORT_NO].serio)
  892. i8042_enable_aux_port();
  893. if (i8042_ports[I8042_KBD_PORT_NO].serio)
  894. i8042_enable_kbd_port();
  895. i8042_interrupt(0, NULL);
  896. return 0;
  897. }
  898. /*
  899. * Here we try to restore the original BIOS settings to avoid
  900. * upsetting it.
  901. */
  902. static int i8042_pm_reset(struct device *dev)
  903. {
  904. i8042_controller_reset();
  905. return 0;
  906. }
  907. static int i8042_pm_resume(struct device *dev)
  908. {
  909. /*
  910. * On resume from S2R we always try to reset the controller
  911. * to bring it in a sane state. (In case of S2D we expect
  912. * BIOS to reset the controller for us.)
  913. */
  914. return i8042_controller_resume(true);
  915. }
  916. static int i8042_pm_thaw(struct device *dev)
  917. {
  918. i8042_interrupt(0, NULL);
  919. return 0;
  920. }
  921. static int i8042_pm_restore(struct device *dev)
  922. {
  923. return i8042_controller_resume(false);
  924. }
  925. static const struct dev_pm_ops i8042_pm_ops = {
  926. .suspend = i8042_pm_reset,
  927. .resume = i8042_pm_resume,
  928. .thaw = i8042_pm_thaw,
  929. .poweroff = i8042_pm_reset,
  930. .restore = i8042_pm_restore,
  931. };
  932. #endif /* CONFIG_PM */
  933. /*
  934. * We need to reset the 8042 back to original mode on system shutdown,
  935. * because otherwise BIOSes will be confused.
  936. */
  937. static void i8042_shutdown(struct platform_device *dev)
  938. {
  939. i8042_controller_reset();
  940. }
  941. static int __init i8042_create_kbd_port(void)
  942. {
  943. struct serio *serio;
  944. struct i8042_port *port = &i8042_ports[I8042_KBD_PORT_NO];
  945. serio = kzalloc(sizeof(struct serio), GFP_KERNEL);
  946. if (!serio)
  947. return -ENOMEM;
  948. serio->id.type = i8042_direct ? SERIO_8042 : SERIO_8042_XL;
  949. serio->write = i8042_dumbkbd ? NULL : i8042_kbd_write;
  950. serio->start = i8042_start;
  951. serio->stop = i8042_stop;
  952. serio->close = i8042_port_close;
  953. serio->port_data = port;
  954. serio->dev.parent = &i8042_platform_device->dev;
  955. strlcpy(serio->name, "i8042 KBD port", sizeof(serio->name));
  956. strlcpy(serio->phys, I8042_KBD_PHYS_DESC, sizeof(serio->phys));
  957. port->serio = serio;
  958. port->irq = I8042_KBD_IRQ;
  959. return 0;
  960. }
  961. static int __init i8042_create_aux_port(int idx)
  962. {
  963. struct serio *serio;
  964. int port_no = idx < 0 ? I8042_AUX_PORT_NO : I8042_MUX_PORT_NO + idx;
  965. struct i8042_port *port = &i8042_ports[port_no];
  966. serio = kzalloc(sizeof(struct serio), GFP_KERNEL);
  967. if (!serio)
  968. return -ENOMEM;
  969. serio->id.type = SERIO_8042;
  970. serio->write = i8042_aux_write;
  971. serio->start = i8042_start;
  972. serio->stop = i8042_stop;
  973. serio->port_data = port;
  974. serio->dev.parent = &i8042_platform_device->dev;
  975. if (idx < 0) {
  976. strlcpy(serio->name, "i8042 AUX port", sizeof(serio->name));
  977. strlcpy(serio->phys, I8042_AUX_PHYS_DESC, sizeof(serio->phys));
  978. serio->close = i8042_port_close;
  979. } else {
  980. snprintf(serio->name, sizeof(serio->name), "i8042 AUX%d port", idx);
  981. snprintf(serio->phys, sizeof(serio->phys), I8042_MUX_PHYS_DESC, idx + 1);
  982. }
  983. port->serio = serio;
  984. port->mux = idx;
  985. port->irq = I8042_AUX_IRQ;
  986. return 0;
  987. }
  988. static void __init i8042_free_kbd_port(void)
  989. {
  990. kfree(i8042_ports[I8042_KBD_PORT_NO].serio);
  991. i8042_ports[I8042_KBD_PORT_NO].serio = NULL;
  992. }
  993. static void __init i8042_free_aux_ports(void)
  994. {
  995. int i;
  996. for (i = I8042_AUX_PORT_NO; i < I8042_NUM_PORTS; i++) {
  997. kfree(i8042_ports[i].serio);
  998. i8042_ports[i].serio = NULL;
  999. }
  1000. }
  1001. static void __init i8042_register_ports(void)
  1002. {
  1003. int i;
  1004. for (i = 0; i < I8042_NUM_PORTS; i++) {
  1005. if (i8042_ports[i].serio) {
  1006. printk(KERN_INFO "serio: %s at %#lx,%#lx irq %d\n",
  1007. i8042_ports[i].serio->name,
  1008. (unsigned long) I8042_DATA_REG,
  1009. (unsigned long) I8042_COMMAND_REG,
  1010. i8042_ports[i].irq);
  1011. serio_register_port(i8042_ports[i].serio);
  1012. }
  1013. }
  1014. }
  1015. static void __devexit i8042_unregister_ports(void)
  1016. {
  1017. int i;
  1018. for (i = 0; i < I8042_NUM_PORTS; i++) {
  1019. if (i8042_ports[i].serio) {
  1020. serio_unregister_port(i8042_ports[i].serio);
  1021. i8042_ports[i].serio = NULL;
  1022. }
  1023. }
  1024. }
  1025. /*
  1026. * Checks whether port belongs to i8042 controller.
  1027. */
  1028. bool i8042_check_port_owner(const struct serio *port)
  1029. {
  1030. int i;
  1031. for (i = 0; i < I8042_NUM_PORTS; i++)
  1032. if (i8042_ports[i].serio == port)
  1033. return true;
  1034. return false;
  1035. }
  1036. EXPORT_SYMBOL(i8042_check_port_owner);
  1037. static void i8042_free_irqs(void)
  1038. {
  1039. if (i8042_aux_irq_registered)
  1040. free_irq(I8042_AUX_IRQ, i8042_platform_device);
  1041. if (i8042_kbd_irq_registered)
  1042. free_irq(I8042_KBD_IRQ, i8042_platform_device);
  1043. i8042_aux_irq_registered = i8042_kbd_irq_registered = false;
  1044. }
  1045. static int __init i8042_setup_aux(void)
  1046. {
  1047. int (*aux_enable)(void);
  1048. int error;
  1049. int i;
  1050. if (i8042_check_aux())
  1051. return -ENODEV;
  1052. if (i8042_nomux || i8042_check_mux()) {
  1053. error = i8042_create_aux_port(-1);
  1054. if (error)
  1055. goto err_free_ports;
  1056. aux_enable = i8042_enable_aux_port;
  1057. } else {
  1058. for (i = 0; i < I8042_NUM_MUX_PORTS; i++) {
  1059. error = i8042_create_aux_port(i);
  1060. if (error)
  1061. goto err_free_ports;
  1062. }
  1063. aux_enable = i8042_enable_mux_ports;
  1064. }
  1065. error = request_irq(I8042_AUX_IRQ, i8042_interrupt, IRQF_SHARED,
  1066. "i8042", i8042_platform_device);
  1067. if (error)
  1068. goto err_free_ports;
  1069. if (aux_enable())
  1070. goto err_free_irq;
  1071. i8042_aux_irq_registered = true;
  1072. return 0;
  1073. err_free_irq:
  1074. free_irq(I8042_AUX_IRQ, i8042_platform_device);
  1075. err_free_ports:
  1076. i8042_free_aux_ports();
  1077. return error;
  1078. }
  1079. static int __init i8042_setup_kbd(void)
  1080. {
  1081. int error;
  1082. error = i8042_create_kbd_port();
  1083. if (error)
  1084. return error;
  1085. error = request_irq(I8042_KBD_IRQ, i8042_interrupt, IRQF_SHARED,
  1086. "i8042", i8042_platform_device);
  1087. if (error)
  1088. goto err_free_port;
  1089. error = i8042_enable_kbd_port();
  1090. if (error)
  1091. goto err_free_irq;
  1092. i8042_kbd_irq_registered = true;
  1093. return 0;
  1094. err_free_irq:
  1095. free_irq(I8042_KBD_IRQ, i8042_platform_device);
  1096. err_free_port:
  1097. i8042_free_kbd_port();
  1098. return error;
  1099. }
  1100. static int __init i8042_probe(struct platform_device *dev)
  1101. {
  1102. int error;
  1103. i8042_platform_device = dev;
  1104. if (i8042_reset) {
  1105. error = i8042_controller_selftest();
  1106. if (error)
  1107. return error;
  1108. }
  1109. error = i8042_controller_init();
  1110. if (error)
  1111. return error;
  1112. #ifdef CONFIG_X86
  1113. if (i8042_dritek)
  1114. i8042_dritek_enable();
  1115. #endif
  1116. if (!i8042_noaux) {
  1117. error = i8042_setup_aux();
  1118. if (error && error != -ENODEV && error != -EBUSY)
  1119. goto out_fail;
  1120. }
  1121. if (!i8042_nokbd) {
  1122. error = i8042_setup_kbd();
  1123. if (error)
  1124. goto out_fail;
  1125. }
  1126. /*
  1127. * Ok, everything is ready, let's register all serio ports
  1128. */
  1129. i8042_register_ports();
  1130. return 0;
  1131. out_fail:
  1132. i8042_free_aux_ports(); /* in case KBD failed but AUX not */
  1133. i8042_free_irqs();
  1134. i8042_controller_reset();
  1135. i8042_platform_device = NULL;
  1136. return error;
  1137. }
  1138. static int __devexit i8042_remove(struct platform_device *dev)
  1139. {
  1140. i8042_unregister_ports();
  1141. i8042_free_irqs();
  1142. i8042_controller_reset();
  1143. i8042_platform_device = NULL;
  1144. return 0;
  1145. }
  1146. static struct platform_driver i8042_driver = {
  1147. .driver = {
  1148. .name = "i8042",
  1149. .owner = THIS_MODULE,
  1150. #ifdef CONFIG_PM
  1151. .pm = &i8042_pm_ops,
  1152. #endif
  1153. },
  1154. .remove = __devexit_p(i8042_remove),
  1155. .shutdown = i8042_shutdown,
  1156. };
  1157. static int __init i8042_init(void)
  1158. {
  1159. struct platform_device *pdev;
  1160. int err;
  1161. dbg_init();
  1162. err = i8042_platform_init();
  1163. if (err)
  1164. return err;
  1165. err = i8042_controller_check();
  1166. if (err)
  1167. goto err_platform_exit;
  1168. pdev = platform_create_bundle(&i8042_driver, i8042_probe, NULL, 0, NULL, 0);
  1169. if (IS_ERR(pdev)) {
  1170. err = PTR_ERR(pdev);
  1171. goto err_platform_exit;
  1172. }
  1173. panic_blink = i8042_panic_blink;
  1174. return 0;
  1175. err_platform_exit:
  1176. i8042_platform_exit();
  1177. return err;
  1178. }
  1179. static void __exit i8042_exit(void)
  1180. {
  1181. platform_device_unregister(i8042_platform_device);
  1182. platform_driver_unregister(&i8042_driver);
  1183. i8042_platform_exit();
  1184. panic_blink = NULL;
  1185. }
  1186. module_init(i8042_init);
  1187. module_exit(i8042_exit);