i8042-x86ia64io.h 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245
  1. #ifndef _I8042_X86IA64IO_H
  2. #define _I8042_X86IA64IO_H
  3. /*
  4. * This program is free software; you can redistribute it and/or modify it
  5. * under the terms of the GNU General Public License version 2 as published by
  6. * the Free Software Foundation.
  7. */
  8. #ifdef CONFIG_X86
  9. #include <asm/x86_init.h>
  10. #endif
  11. /*
  12. * Names.
  13. */
  14. #define I8042_KBD_PHYS_DESC "isa0060/serio0"
  15. #define I8042_AUX_PHYS_DESC "isa0060/serio1"
  16. #define I8042_MUX_PHYS_DESC "isa0060/serio%d"
  17. /*
  18. * IRQs.
  19. */
  20. #if defined(__ia64__)
  21. # define I8042_MAP_IRQ(x) isa_irq_to_vector((x))
  22. #else
  23. # define I8042_MAP_IRQ(x) (x)
  24. #endif
  25. #define I8042_KBD_IRQ i8042_kbd_irq
  26. #define I8042_AUX_IRQ i8042_aux_irq
  27. static int i8042_kbd_irq;
  28. static int i8042_aux_irq;
  29. /*
  30. * Register numbers.
  31. */
  32. #define I8042_COMMAND_REG i8042_command_reg
  33. #define I8042_STATUS_REG i8042_command_reg
  34. #define I8042_DATA_REG i8042_data_reg
  35. static int i8042_command_reg = 0x64;
  36. static int i8042_data_reg = 0x60;
  37. static inline int i8042_read_data(void)
  38. {
  39. return inb(I8042_DATA_REG);
  40. }
  41. static inline int i8042_read_status(void)
  42. {
  43. return inb(I8042_STATUS_REG);
  44. }
  45. static inline void i8042_write_data(int val)
  46. {
  47. outb(val, I8042_DATA_REG);
  48. }
  49. static inline void i8042_write_command(int val)
  50. {
  51. outb(val, I8042_COMMAND_REG);
  52. }
  53. #ifdef CONFIG_X86
  54. #include <linux/dmi.h>
  55. static const struct dmi_system_id __initconst i8042_dmi_noloop_table[] = {
  56. {
  57. /*
  58. * Arima-Rioworks HDAMB -
  59. * AUX LOOP command does not raise AUX IRQ
  60. */
  61. .matches = {
  62. DMI_MATCH(DMI_BOARD_VENDOR, "RIOWORKS"),
  63. DMI_MATCH(DMI_BOARD_NAME, "HDAMB"),
  64. DMI_MATCH(DMI_BOARD_VERSION, "Rev E"),
  65. },
  66. },
  67. {
  68. /* ASUS G1S */
  69. .matches = {
  70. DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer Inc."),
  71. DMI_MATCH(DMI_BOARD_NAME, "G1S"),
  72. DMI_MATCH(DMI_BOARD_VERSION, "1.0"),
  73. },
  74. },
  75. {
  76. /* ASUS P65UP5 - AUX LOOP command does not raise AUX IRQ */
  77. .matches = {
  78. DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
  79. DMI_MATCH(DMI_BOARD_NAME, "P/I-P65UP5"),
  80. DMI_MATCH(DMI_BOARD_VERSION, "REV 2.X"),
  81. },
  82. },
  83. {
  84. .matches = {
  85. DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
  86. DMI_MATCH(DMI_PRODUCT_NAME, "X750LN"),
  87. },
  88. },
  89. {
  90. .matches = {
  91. DMI_MATCH(DMI_SYS_VENDOR, "Compaq"),
  92. DMI_MATCH(DMI_PRODUCT_NAME , "ProLiant"),
  93. DMI_MATCH(DMI_PRODUCT_VERSION, "8500"),
  94. },
  95. },
  96. {
  97. .matches = {
  98. DMI_MATCH(DMI_SYS_VENDOR, "Compaq"),
  99. DMI_MATCH(DMI_PRODUCT_NAME , "ProLiant"),
  100. DMI_MATCH(DMI_PRODUCT_VERSION, "DL760"),
  101. },
  102. },
  103. {
  104. /* Dell Embedded Box PC 3000 */
  105. .matches = {
  106. DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
  107. DMI_MATCH(DMI_PRODUCT_NAME, "Embedded Box PC 3000"),
  108. },
  109. },
  110. {
  111. /* OQO Model 01 */
  112. .matches = {
  113. DMI_MATCH(DMI_SYS_VENDOR, "OQO"),
  114. DMI_MATCH(DMI_PRODUCT_NAME, "ZEPTO"),
  115. DMI_MATCH(DMI_PRODUCT_VERSION, "00"),
  116. },
  117. },
  118. {
  119. /* ULI EV4873 - AUX LOOP does not work properly */
  120. .matches = {
  121. DMI_MATCH(DMI_SYS_VENDOR, "ULI"),
  122. DMI_MATCH(DMI_PRODUCT_NAME, "EV4873"),
  123. DMI_MATCH(DMI_PRODUCT_VERSION, "5a"),
  124. },
  125. },
  126. {
  127. /* Microsoft Virtual Machine */
  128. .matches = {
  129. DMI_MATCH(DMI_SYS_VENDOR, "Microsoft Corporation"),
  130. DMI_MATCH(DMI_PRODUCT_NAME, "Virtual Machine"),
  131. DMI_MATCH(DMI_PRODUCT_VERSION, "VS2005R2"),
  132. },
  133. },
  134. {
  135. /* Medion MAM 2070 */
  136. .matches = {
  137. DMI_MATCH(DMI_SYS_VENDOR, "Notebook"),
  138. DMI_MATCH(DMI_PRODUCT_NAME, "MAM 2070"),
  139. DMI_MATCH(DMI_PRODUCT_VERSION, "5a"),
  140. },
  141. },
  142. {
  143. /* Medion Akoya E7225 */
  144. .matches = {
  145. DMI_MATCH(DMI_SYS_VENDOR, "Medion"),
  146. DMI_MATCH(DMI_PRODUCT_NAME, "Akoya E7225"),
  147. DMI_MATCH(DMI_PRODUCT_VERSION, "1.0"),
  148. },
  149. },
  150. {
  151. /* Blue FB5601 */
  152. .matches = {
  153. DMI_MATCH(DMI_SYS_VENDOR, "blue"),
  154. DMI_MATCH(DMI_PRODUCT_NAME, "FB5601"),
  155. DMI_MATCH(DMI_PRODUCT_VERSION, "M606"),
  156. },
  157. },
  158. {
  159. /* Gigabyte M912 */
  160. .matches = {
  161. DMI_MATCH(DMI_SYS_VENDOR, "GIGABYTE"),
  162. DMI_MATCH(DMI_PRODUCT_NAME, "M912"),
  163. DMI_MATCH(DMI_PRODUCT_VERSION, "01"),
  164. },
  165. },
  166. {
  167. /* Gigabyte M1022M netbook */
  168. .matches = {
  169. DMI_MATCH(DMI_BOARD_VENDOR, "Gigabyte Technology Co.,Ltd."),
  170. DMI_MATCH(DMI_BOARD_NAME, "M1022E"),
  171. DMI_MATCH(DMI_BOARD_VERSION, "1.02"),
  172. },
  173. },
  174. {
  175. /* Gigabyte Spring Peak - defines wrong chassis type */
  176. .matches = {
  177. DMI_MATCH(DMI_SYS_VENDOR, "GIGABYTE"),
  178. DMI_MATCH(DMI_PRODUCT_NAME, "Spring Peak"),
  179. },
  180. },
  181. {
  182. /* Gigabyte T1005 - defines wrong chassis type ("Other") */
  183. .matches = {
  184. DMI_MATCH(DMI_SYS_VENDOR, "GIGABYTE"),
  185. DMI_MATCH(DMI_PRODUCT_NAME, "T1005"),
  186. },
  187. },
  188. {
  189. /* Gigabyte T1005M/P - defines wrong chassis type ("Other") */
  190. .matches = {
  191. DMI_MATCH(DMI_SYS_VENDOR, "GIGABYTE"),
  192. DMI_MATCH(DMI_PRODUCT_NAME, "T1005M/P"),
  193. },
  194. },
  195. {
  196. .matches = {
  197. DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
  198. DMI_MATCH(DMI_PRODUCT_NAME, "HP Pavilion dv9700"),
  199. DMI_MATCH(DMI_PRODUCT_VERSION, "Rev 1"),
  200. },
  201. },
  202. {
  203. .matches = {
  204. DMI_MATCH(DMI_SYS_VENDOR, "PEGATRON CORPORATION"),
  205. DMI_MATCH(DMI_PRODUCT_NAME, "C15B"),
  206. },
  207. },
  208. { }
  209. };
  210. /*
  211. * Some Fujitsu notebooks are having trouble with touchpads if
  212. * active multiplexing mode is activated. Luckily they don't have
  213. * external PS/2 ports so we can safely disable it.
  214. * ... apparently some Toshibas don't like MUX mode either and
  215. * die horrible death on reboot.
  216. */
  217. static const struct dmi_system_id __initconst i8042_dmi_nomux_table[] = {
  218. {
  219. /* Fujitsu Lifebook P7010/P7010D */
  220. .matches = {
  221. DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
  222. DMI_MATCH(DMI_PRODUCT_NAME, "P7010"),
  223. },
  224. },
  225. {
  226. /* Fujitsu Lifebook P7010 */
  227. .matches = {
  228. DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
  229. DMI_MATCH(DMI_PRODUCT_NAME, "0000000000"),
  230. },
  231. },
  232. {
  233. /* Fujitsu Lifebook P5020D */
  234. .matches = {
  235. DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
  236. DMI_MATCH(DMI_PRODUCT_NAME, "LifeBook P Series"),
  237. },
  238. },
  239. {
  240. /* Fujitsu Lifebook S2000 */
  241. .matches = {
  242. DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
  243. DMI_MATCH(DMI_PRODUCT_NAME, "LifeBook S Series"),
  244. },
  245. },
  246. {
  247. /* Fujitsu Lifebook S6230 */
  248. .matches = {
  249. DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
  250. DMI_MATCH(DMI_PRODUCT_NAME, "LifeBook S6230"),
  251. },
  252. },
  253. {
  254. /* Fujitsu Lifebook U745 */
  255. .matches = {
  256. DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
  257. DMI_MATCH(DMI_PRODUCT_NAME, "LIFEBOOK U745"),
  258. },
  259. },
  260. {
  261. /* Fujitsu T70H */
  262. .matches = {
  263. DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
  264. DMI_MATCH(DMI_PRODUCT_NAME, "FMVLT70H"),
  265. },
  266. },
  267. {
  268. /* Fujitsu-Siemens Lifebook T3010 */
  269. .matches = {
  270. DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
  271. DMI_MATCH(DMI_PRODUCT_NAME, "LIFEBOOK T3010"),
  272. },
  273. },
  274. {
  275. /* Fujitsu-Siemens Lifebook E4010 */
  276. .matches = {
  277. DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
  278. DMI_MATCH(DMI_PRODUCT_NAME, "LIFEBOOK E4010"),
  279. },
  280. },
  281. {
  282. /* Fujitsu-Siemens Amilo Pro 2010 */
  283. .matches = {
  284. DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
  285. DMI_MATCH(DMI_PRODUCT_NAME, "AMILO Pro V2010"),
  286. },
  287. },
  288. {
  289. /* Fujitsu-Siemens Amilo Pro 2030 */
  290. .matches = {
  291. DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
  292. DMI_MATCH(DMI_PRODUCT_NAME, "AMILO PRO V2030"),
  293. },
  294. },
  295. {
  296. /*
  297. * No data is coming from the touchscreen unless KBC
  298. * is in legacy mode.
  299. */
  300. /* Panasonic CF-29 */
  301. .matches = {
  302. DMI_MATCH(DMI_SYS_VENDOR, "Matsushita"),
  303. DMI_MATCH(DMI_PRODUCT_NAME, "CF-29"),
  304. },
  305. },
  306. {
  307. /*
  308. * HP Pavilion DV4017EA -
  309. * errors on MUX ports are reported without raising AUXDATA
  310. * causing "spurious NAK" messages.
  311. */
  312. .matches = {
  313. DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
  314. DMI_MATCH(DMI_PRODUCT_NAME, "Pavilion dv4000 (EA032EA#ABF)"),
  315. },
  316. },
  317. {
  318. /*
  319. * HP Pavilion ZT1000 -
  320. * like DV4017EA does not raise AUXERR for errors on MUX ports.
  321. */
  322. .matches = {
  323. DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
  324. DMI_MATCH(DMI_PRODUCT_NAME, "HP Pavilion Notebook PC"),
  325. DMI_MATCH(DMI_PRODUCT_VERSION, "HP Pavilion Notebook ZT1000"),
  326. },
  327. },
  328. {
  329. /*
  330. * HP Pavilion DV4270ca -
  331. * like DV4017EA does not raise AUXERR for errors on MUX ports.
  332. */
  333. .matches = {
  334. DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
  335. DMI_MATCH(DMI_PRODUCT_NAME, "Pavilion dv4000 (EH476UA#ABL)"),
  336. },
  337. },
  338. {
  339. .matches = {
  340. DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
  341. DMI_MATCH(DMI_PRODUCT_NAME, "Satellite P10"),
  342. },
  343. },
  344. {
  345. .matches = {
  346. DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
  347. DMI_MATCH(DMI_PRODUCT_NAME, "EQUIUM A110"),
  348. },
  349. },
  350. {
  351. .matches = {
  352. DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
  353. DMI_MATCH(DMI_PRODUCT_NAME, "SATELLITE C850D"),
  354. },
  355. },
  356. {
  357. .matches = {
  358. DMI_MATCH(DMI_SYS_VENDOR, "ALIENWARE"),
  359. DMI_MATCH(DMI_PRODUCT_NAME, "Sentia"),
  360. },
  361. },
  362. {
  363. /* Sharp Actius MM20 */
  364. .matches = {
  365. DMI_MATCH(DMI_SYS_VENDOR, "SHARP"),
  366. DMI_MATCH(DMI_PRODUCT_NAME, "PC-MM20 Series"),
  367. },
  368. },
  369. {
  370. /* Sony Vaio FS-115b */
  371. .matches = {
  372. DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"),
  373. DMI_MATCH(DMI_PRODUCT_NAME, "VGN-FS115B"),
  374. },
  375. },
  376. {
  377. /*
  378. * Sony Vaio FZ-240E -
  379. * reset and GET ID commands issued via KBD port are
  380. * sometimes being delivered to AUX3.
  381. */
  382. .matches = {
  383. DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"),
  384. DMI_MATCH(DMI_PRODUCT_NAME, "VGN-FZ240E"),
  385. },
  386. },
  387. {
  388. /*
  389. * Most (all?) VAIOs do not have external PS/2 ports nor
  390. * they implement active multiplexing properly, and
  391. * MUX discovery usually messes up keyboard/touchpad.
  392. */
  393. .matches = {
  394. DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"),
  395. DMI_MATCH(DMI_BOARD_NAME, "VAIO"),
  396. },
  397. },
  398. {
  399. /* Amoi M636/A737 */
  400. .matches = {
  401. DMI_MATCH(DMI_SYS_VENDOR, "Amoi Electronics CO.,LTD."),
  402. DMI_MATCH(DMI_PRODUCT_NAME, "M636/A737 platform"),
  403. },
  404. },
  405. {
  406. /* Lenovo 3000 n100 */
  407. .matches = {
  408. DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
  409. DMI_MATCH(DMI_PRODUCT_NAME, "076804U"),
  410. },
  411. },
  412. {
  413. .matches = {
  414. DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
  415. DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 1360"),
  416. },
  417. },
  418. {
  419. /* Acer Aspire 5710 */
  420. .matches = {
  421. DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
  422. DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5710"),
  423. },
  424. },
  425. {
  426. /* Acer Aspire 7738 */
  427. .matches = {
  428. DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
  429. DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 7738"),
  430. },
  431. },
  432. {
  433. /* Gericom Bellagio */
  434. .matches = {
  435. DMI_MATCH(DMI_SYS_VENDOR, "Gericom"),
  436. DMI_MATCH(DMI_PRODUCT_NAME, "N34AS6"),
  437. },
  438. },
  439. {
  440. /* IBM 2656 */
  441. .matches = {
  442. DMI_MATCH(DMI_SYS_VENDOR, "IBM"),
  443. DMI_MATCH(DMI_PRODUCT_NAME, "2656"),
  444. },
  445. },
  446. {
  447. /* Dell XPS M1530 */
  448. .matches = {
  449. DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
  450. DMI_MATCH(DMI_PRODUCT_NAME, "XPS M1530"),
  451. },
  452. },
  453. {
  454. /* Compal HEL80I */
  455. .matches = {
  456. DMI_MATCH(DMI_SYS_VENDOR, "COMPAL"),
  457. DMI_MATCH(DMI_PRODUCT_NAME, "HEL80I"),
  458. },
  459. },
  460. {
  461. /* Dell Vostro 1510 */
  462. .matches = {
  463. DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
  464. DMI_MATCH(DMI_PRODUCT_NAME, "Vostro1510"),
  465. },
  466. },
  467. {
  468. /* Acer Aspire 5536 */
  469. .matches = {
  470. DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
  471. DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5536"),
  472. DMI_MATCH(DMI_PRODUCT_VERSION, "0100"),
  473. },
  474. },
  475. {
  476. /* Dell Vostro V13 */
  477. .matches = {
  478. DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
  479. DMI_MATCH(DMI_PRODUCT_NAME, "Vostro V13"),
  480. },
  481. },
  482. {
  483. /* Newer HP Pavilion dv4 models */
  484. .matches = {
  485. DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
  486. DMI_MATCH(DMI_PRODUCT_NAME, "HP Pavilion dv4 Notebook PC"),
  487. },
  488. },
  489. {
  490. /* Asus X450LCP */
  491. .matches = {
  492. DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
  493. DMI_MATCH(DMI_PRODUCT_NAME, "X450LCP"),
  494. },
  495. },
  496. {
  497. /* Avatar AVIU-145A6 */
  498. .matches = {
  499. DMI_MATCH(DMI_SYS_VENDOR, "Intel"),
  500. DMI_MATCH(DMI_PRODUCT_NAME, "IC4I"),
  501. },
  502. },
  503. { }
  504. };
  505. /*
  506. * On some Asus laptops, just running self tests cause problems.
  507. */
  508. static const struct dmi_system_id i8042_dmi_noselftest_table[] = {
  509. {
  510. .matches = {
  511. DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
  512. DMI_MATCH(DMI_PRODUCT_NAME, "A455LD"),
  513. },
  514. },
  515. {
  516. .matches = {
  517. DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
  518. DMI_MATCH(DMI_PRODUCT_NAME, "K401LB"),
  519. },
  520. },
  521. {
  522. .matches = {
  523. DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
  524. DMI_MATCH(DMI_PRODUCT_NAME, "K501LB"),
  525. },
  526. },
  527. {
  528. .matches = {
  529. DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
  530. DMI_MATCH(DMI_PRODUCT_NAME, "K501LX"),
  531. },
  532. },
  533. {
  534. .matches = {
  535. DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
  536. DMI_MATCH(DMI_PRODUCT_NAME, "R409L"),
  537. },
  538. },
  539. {
  540. .matches = {
  541. DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
  542. DMI_MATCH(DMI_PRODUCT_NAME, "V502LX"),
  543. },
  544. },
  545. {
  546. .matches = {
  547. DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
  548. DMI_MATCH(DMI_PRODUCT_NAME, "X302LA"),
  549. },
  550. },
  551. {
  552. .matches = {
  553. DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
  554. DMI_MATCH(DMI_PRODUCT_NAME, "X450LCP"),
  555. },
  556. },
  557. {
  558. .matches = {
  559. DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
  560. DMI_MATCH(DMI_PRODUCT_NAME, "X450LD"),
  561. },
  562. },
  563. {
  564. .matches = {
  565. DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
  566. DMI_MATCH(DMI_PRODUCT_NAME, "X455LAB"),
  567. },
  568. },
  569. {
  570. .matches = {
  571. DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
  572. DMI_MATCH(DMI_PRODUCT_NAME, "X455LDB"),
  573. },
  574. },
  575. {
  576. .matches = {
  577. DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
  578. DMI_MATCH(DMI_PRODUCT_NAME, "X455LF"),
  579. },
  580. },
  581. {
  582. .matches = {
  583. DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
  584. DMI_MATCH(DMI_PRODUCT_NAME, "Z450LA"),
  585. },
  586. },
  587. { }
  588. };
  589. static const struct dmi_system_id __initconst i8042_dmi_reset_table[] = {
  590. {
  591. /* MSI Wind U-100 */
  592. .matches = {
  593. DMI_MATCH(DMI_BOARD_NAME, "U-100"),
  594. DMI_MATCH(DMI_BOARD_VENDOR, "MICRO-STAR INTERNATIONAL CO., LTD"),
  595. },
  596. },
  597. {
  598. /* LG Electronics X110 */
  599. .matches = {
  600. DMI_MATCH(DMI_BOARD_NAME, "X110"),
  601. DMI_MATCH(DMI_BOARD_VENDOR, "LG Electronics Inc."),
  602. },
  603. },
  604. {
  605. /* Acer Aspire One 150 */
  606. .matches = {
  607. DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
  608. DMI_MATCH(DMI_PRODUCT_NAME, "AOA150"),
  609. },
  610. },
  611. {
  612. /* Advent 4211 */
  613. .matches = {
  614. DMI_MATCH(DMI_SYS_VENDOR, "DIXONSXP"),
  615. DMI_MATCH(DMI_PRODUCT_NAME, "Advent 4211"),
  616. },
  617. },
  618. {
  619. /* Medion Akoya Mini E1210 */
  620. .matches = {
  621. DMI_MATCH(DMI_SYS_VENDOR, "MEDION"),
  622. DMI_MATCH(DMI_PRODUCT_NAME, "E1210"),
  623. },
  624. },
  625. {
  626. /* Medion Akoya E1222 */
  627. .matches = {
  628. DMI_MATCH(DMI_SYS_VENDOR, "MEDION"),
  629. DMI_MATCH(DMI_PRODUCT_NAME, "E122X"),
  630. },
  631. },
  632. {
  633. /* Mivvy M310 */
  634. .matches = {
  635. DMI_MATCH(DMI_SYS_VENDOR, "VIOOO"),
  636. DMI_MATCH(DMI_PRODUCT_NAME, "N10"),
  637. },
  638. },
  639. {
  640. /* Dell Vostro 1320 */
  641. .matches = {
  642. DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
  643. DMI_MATCH(DMI_PRODUCT_NAME, "Vostro 1320"),
  644. },
  645. },
  646. {
  647. /* Dell Vostro 1520 */
  648. .matches = {
  649. DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
  650. DMI_MATCH(DMI_PRODUCT_NAME, "Vostro 1520"),
  651. },
  652. },
  653. {
  654. /* Dell Vostro 1720 */
  655. .matches = {
  656. DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
  657. DMI_MATCH(DMI_PRODUCT_NAME, "Vostro 1720"),
  658. },
  659. },
  660. {
  661. /* Lenovo Ideapad U455 */
  662. .matches = {
  663. DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
  664. DMI_MATCH(DMI_PRODUCT_NAME, "20046"),
  665. },
  666. },
  667. {
  668. /* Clevo P650RS, 650RP6, Sager NP8152-S, and others */
  669. .matches = {
  670. DMI_MATCH(DMI_SYS_VENDOR, "Notebook"),
  671. DMI_MATCH(DMI_PRODUCT_NAME, "P65xRP"),
  672. },
  673. },
  674. { }
  675. };
  676. #ifdef CONFIG_PNP
  677. static const struct dmi_system_id __initconst i8042_dmi_nopnp_table[] = {
  678. {
  679. /* Intel MBO Desktop D845PESV */
  680. .matches = {
  681. DMI_MATCH(DMI_BOARD_NAME, "D845PESV"),
  682. DMI_MATCH(DMI_BOARD_VENDOR, "Intel Corporation"),
  683. },
  684. },
  685. {
  686. /*
  687. * Intel NUC D54250WYK - does not have i8042 controller but
  688. * declares PS/2 devices in DSDT.
  689. */
  690. .matches = {
  691. DMI_MATCH(DMI_BOARD_NAME, "D54250WYK"),
  692. DMI_MATCH(DMI_BOARD_VENDOR, "Intel Corporation"),
  693. },
  694. },
  695. {
  696. /* MSI Wind U-100 */
  697. .matches = {
  698. DMI_MATCH(DMI_BOARD_NAME, "U-100"),
  699. DMI_MATCH(DMI_BOARD_VENDOR, "MICRO-STAR INTERNATIONAL CO., LTD"),
  700. },
  701. },
  702. { }
  703. };
  704. static const struct dmi_system_id __initconst i8042_dmi_laptop_table[] = {
  705. {
  706. .matches = {
  707. DMI_MATCH(DMI_CHASSIS_TYPE, "8"), /* Portable */
  708. },
  709. },
  710. {
  711. .matches = {
  712. DMI_MATCH(DMI_CHASSIS_TYPE, "9"), /* Laptop */
  713. },
  714. },
  715. {
  716. .matches = {
  717. DMI_MATCH(DMI_CHASSIS_TYPE, "10"), /* Notebook */
  718. },
  719. },
  720. {
  721. .matches = {
  722. DMI_MATCH(DMI_CHASSIS_TYPE, "14"), /* Sub-Notebook */
  723. },
  724. },
  725. { }
  726. };
  727. #endif
  728. static const struct dmi_system_id __initconst i8042_dmi_notimeout_table[] = {
  729. {
  730. /* Dell Vostro V13 */
  731. .matches = {
  732. DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
  733. DMI_MATCH(DMI_PRODUCT_NAME, "Vostro V13"),
  734. },
  735. },
  736. {
  737. /* Newer HP Pavilion dv4 models */
  738. .matches = {
  739. DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
  740. DMI_MATCH(DMI_PRODUCT_NAME, "HP Pavilion dv4 Notebook PC"),
  741. },
  742. },
  743. {
  744. /* Fujitsu A544 laptop */
  745. /* https://bugzilla.redhat.com/show_bug.cgi?id=1111138 */
  746. .matches = {
  747. DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
  748. DMI_MATCH(DMI_PRODUCT_NAME, "LIFEBOOK A544"),
  749. },
  750. },
  751. {
  752. /* Fujitsu AH544 laptop */
  753. /* https://bugzilla.kernel.org/show_bug.cgi?id=69731 */
  754. .matches = {
  755. DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
  756. DMI_MATCH(DMI_PRODUCT_NAME, "LIFEBOOK AH544"),
  757. },
  758. },
  759. {
  760. /* Fujitsu U574 laptop */
  761. /* https://bugzilla.kernel.org/show_bug.cgi?id=69731 */
  762. .matches = {
  763. DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
  764. DMI_MATCH(DMI_PRODUCT_NAME, "LIFEBOOK U574"),
  765. },
  766. },
  767. {
  768. /* Fujitsu UH554 laptop */
  769. .matches = {
  770. DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
  771. DMI_MATCH(DMI_PRODUCT_NAME, "LIFEBOOK UH544"),
  772. },
  773. },
  774. { }
  775. };
  776. /*
  777. * Some Wistron based laptops need us to explicitly enable the 'Dritek
  778. * keyboard extension' to make their extra keys start generating scancodes.
  779. * Originally, this was just confined to older laptops, but a few Acer laptops
  780. * have turned up in 2007 that also need this again.
  781. */
  782. static const struct dmi_system_id __initconst i8042_dmi_dritek_table[] = {
  783. {
  784. /* Acer Aspire 5100 */
  785. .matches = {
  786. DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
  787. DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5100"),
  788. },
  789. },
  790. {
  791. /* Acer Aspire 5610 */
  792. .matches = {
  793. DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
  794. DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5610"),
  795. },
  796. },
  797. {
  798. /* Acer Aspire 5630 */
  799. .matches = {
  800. DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
  801. DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5630"),
  802. },
  803. },
  804. {
  805. /* Acer Aspire 5650 */
  806. .matches = {
  807. DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
  808. DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5650"),
  809. },
  810. },
  811. {
  812. /* Acer Aspire 5680 */
  813. .matches = {
  814. DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
  815. DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5680"),
  816. },
  817. },
  818. {
  819. /* Acer Aspire 5720 */
  820. .matches = {
  821. DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
  822. DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5720"),
  823. },
  824. },
  825. {
  826. /* Acer Aspire 9110 */
  827. .matches = {
  828. DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
  829. DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 9110"),
  830. },
  831. },
  832. {
  833. /* Acer TravelMate 660 */
  834. .matches = {
  835. DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
  836. DMI_MATCH(DMI_PRODUCT_NAME, "TravelMate 660"),
  837. },
  838. },
  839. {
  840. /* Acer TravelMate 2490 */
  841. .matches = {
  842. DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
  843. DMI_MATCH(DMI_PRODUCT_NAME, "TravelMate 2490"),
  844. },
  845. },
  846. {
  847. /* Acer TravelMate 4280 */
  848. .matches = {
  849. DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
  850. DMI_MATCH(DMI_PRODUCT_NAME, "TravelMate 4280"),
  851. },
  852. },
  853. { }
  854. };
  855. /*
  856. * Some laptops need keyboard reset before probing for the trackpad to get
  857. * it detected, initialised & finally work.
  858. */
  859. static const struct dmi_system_id __initconst i8042_dmi_kbdreset_table[] = {
  860. {
  861. /* Gigabyte P35 v2 - Elantech touchpad */
  862. .matches = {
  863. DMI_MATCH(DMI_SYS_VENDOR, "GIGABYTE"),
  864. DMI_MATCH(DMI_PRODUCT_NAME, "P35V2"),
  865. },
  866. },
  867. {
  868. /* Aorus branded Gigabyte X3 Plus - Elantech touchpad */
  869. .matches = {
  870. DMI_MATCH(DMI_SYS_VENDOR, "GIGABYTE"),
  871. DMI_MATCH(DMI_PRODUCT_NAME, "X3"),
  872. },
  873. },
  874. {
  875. /* Gigabyte P34 - Elantech touchpad */
  876. .matches = {
  877. DMI_MATCH(DMI_SYS_VENDOR, "GIGABYTE"),
  878. DMI_MATCH(DMI_PRODUCT_NAME, "P34"),
  879. },
  880. },
  881. {
  882. /* Gigabyte P57 - Elantech touchpad */
  883. .matches = {
  884. DMI_MATCH(DMI_SYS_VENDOR, "GIGABYTE"),
  885. DMI_MATCH(DMI_PRODUCT_NAME, "P57"),
  886. },
  887. },
  888. {
  889. /* Schenker XMG C504 - Elantech touchpad */
  890. .matches = {
  891. DMI_MATCH(DMI_SYS_VENDOR, "XMG"),
  892. DMI_MATCH(DMI_PRODUCT_NAME, "C504"),
  893. },
  894. },
  895. { }
  896. };
  897. #endif /* CONFIG_X86 */
  898. #ifdef CONFIG_PNP
  899. #include <linux/pnp.h>
  900. static bool i8042_pnp_kbd_registered;
  901. static unsigned int i8042_pnp_kbd_devices;
  902. static bool i8042_pnp_aux_registered;
  903. static unsigned int i8042_pnp_aux_devices;
  904. static int i8042_pnp_command_reg;
  905. static int i8042_pnp_data_reg;
  906. static int i8042_pnp_kbd_irq;
  907. static int i8042_pnp_aux_irq;
  908. static char i8042_pnp_kbd_name[32];
  909. static char i8042_pnp_aux_name[32];
  910. static void i8042_pnp_id_to_string(struct pnp_id *id, char *dst, int dst_size)
  911. {
  912. strlcpy(dst, "PNP:", dst_size);
  913. while (id) {
  914. strlcat(dst, " ", dst_size);
  915. strlcat(dst, id->id, dst_size);
  916. id = id->next;
  917. }
  918. }
  919. static int i8042_pnp_kbd_probe(struct pnp_dev *dev, const struct pnp_device_id *did)
  920. {
  921. if (pnp_port_valid(dev, 0) && pnp_port_len(dev, 0) == 1)
  922. i8042_pnp_data_reg = pnp_port_start(dev,0);
  923. if (pnp_port_valid(dev, 1) && pnp_port_len(dev, 1) == 1)
  924. i8042_pnp_command_reg = pnp_port_start(dev, 1);
  925. if (pnp_irq_valid(dev,0))
  926. i8042_pnp_kbd_irq = pnp_irq(dev, 0);
  927. strlcpy(i8042_pnp_kbd_name, did->id, sizeof(i8042_pnp_kbd_name));
  928. if (strlen(pnp_dev_name(dev))) {
  929. strlcat(i8042_pnp_kbd_name, ":", sizeof(i8042_pnp_kbd_name));
  930. strlcat(i8042_pnp_kbd_name, pnp_dev_name(dev), sizeof(i8042_pnp_kbd_name));
  931. }
  932. i8042_pnp_id_to_string(dev->id, i8042_kbd_firmware_id,
  933. sizeof(i8042_kbd_firmware_id));
  934. /* Keyboard ports are always supposed to be wakeup-enabled */
  935. device_set_wakeup_enable(&dev->dev, true);
  936. i8042_pnp_kbd_devices++;
  937. return 0;
  938. }
  939. static int i8042_pnp_aux_probe(struct pnp_dev *dev, const struct pnp_device_id *did)
  940. {
  941. if (pnp_port_valid(dev, 0) && pnp_port_len(dev, 0) == 1)
  942. i8042_pnp_data_reg = pnp_port_start(dev,0);
  943. if (pnp_port_valid(dev, 1) && pnp_port_len(dev, 1) == 1)
  944. i8042_pnp_command_reg = pnp_port_start(dev, 1);
  945. if (pnp_irq_valid(dev, 0))
  946. i8042_pnp_aux_irq = pnp_irq(dev, 0);
  947. strlcpy(i8042_pnp_aux_name, did->id, sizeof(i8042_pnp_aux_name));
  948. if (strlen(pnp_dev_name(dev))) {
  949. strlcat(i8042_pnp_aux_name, ":", sizeof(i8042_pnp_aux_name));
  950. strlcat(i8042_pnp_aux_name, pnp_dev_name(dev), sizeof(i8042_pnp_aux_name));
  951. }
  952. i8042_pnp_id_to_string(dev->id, i8042_aux_firmware_id,
  953. sizeof(i8042_aux_firmware_id));
  954. i8042_pnp_aux_devices++;
  955. return 0;
  956. }
  957. static struct pnp_device_id pnp_kbd_devids[] = {
  958. { .id = "PNP0300", .driver_data = 0 },
  959. { .id = "PNP0301", .driver_data = 0 },
  960. { .id = "PNP0302", .driver_data = 0 },
  961. { .id = "PNP0303", .driver_data = 0 },
  962. { .id = "PNP0304", .driver_data = 0 },
  963. { .id = "PNP0305", .driver_data = 0 },
  964. { .id = "PNP0306", .driver_data = 0 },
  965. { .id = "PNP0309", .driver_data = 0 },
  966. { .id = "PNP030a", .driver_data = 0 },
  967. { .id = "PNP030b", .driver_data = 0 },
  968. { .id = "PNP0320", .driver_data = 0 },
  969. { .id = "PNP0343", .driver_data = 0 },
  970. { .id = "PNP0344", .driver_data = 0 },
  971. { .id = "PNP0345", .driver_data = 0 },
  972. { .id = "CPQA0D7", .driver_data = 0 },
  973. { .id = "", },
  974. };
  975. MODULE_DEVICE_TABLE(pnp, pnp_kbd_devids);
  976. static struct pnp_driver i8042_pnp_kbd_driver = {
  977. .name = "i8042 kbd",
  978. .id_table = pnp_kbd_devids,
  979. .probe = i8042_pnp_kbd_probe,
  980. };
  981. static struct pnp_device_id pnp_aux_devids[] = {
  982. { .id = "AUI0200", .driver_data = 0 },
  983. { .id = "FJC6000", .driver_data = 0 },
  984. { .id = "FJC6001", .driver_data = 0 },
  985. { .id = "PNP0f03", .driver_data = 0 },
  986. { .id = "PNP0f0b", .driver_data = 0 },
  987. { .id = "PNP0f0e", .driver_data = 0 },
  988. { .id = "PNP0f12", .driver_data = 0 },
  989. { .id = "PNP0f13", .driver_data = 0 },
  990. { .id = "PNP0f19", .driver_data = 0 },
  991. { .id = "PNP0f1c", .driver_data = 0 },
  992. { .id = "SYN0801", .driver_data = 0 },
  993. { .id = "", },
  994. };
  995. MODULE_DEVICE_TABLE(pnp, pnp_aux_devids);
  996. static struct pnp_driver i8042_pnp_aux_driver = {
  997. .name = "i8042 aux",
  998. .id_table = pnp_aux_devids,
  999. .probe = i8042_pnp_aux_probe,
  1000. };
  1001. static void i8042_pnp_exit(void)
  1002. {
  1003. if (i8042_pnp_kbd_registered) {
  1004. i8042_pnp_kbd_registered = false;
  1005. pnp_unregister_driver(&i8042_pnp_kbd_driver);
  1006. }
  1007. if (i8042_pnp_aux_registered) {
  1008. i8042_pnp_aux_registered = false;
  1009. pnp_unregister_driver(&i8042_pnp_aux_driver);
  1010. }
  1011. }
  1012. static int __init i8042_pnp_init(void)
  1013. {
  1014. char kbd_irq_str[4] = { 0 }, aux_irq_str[4] = { 0 };
  1015. bool pnp_data_busted = false;
  1016. int err;
  1017. #ifdef CONFIG_X86
  1018. if (dmi_check_system(i8042_dmi_nopnp_table))
  1019. i8042_nopnp = true;
  1020. #endif
  1021. if (i8042_nopnp) {
  1022. pr_info("PNP detection disabled\n");
  1023. return 0;
  1024. }
  1025. err = pnp_register_driver(&i8042_pnp_kbd_driver);
  1026. if (!err)
  1027. i8042_pnp_kbd_registered = true;
  1028. err = pnp_register_driver(&i8042_pnp_aux_driver);
  1029. if (!err)
  1030. i8042_pnp_aux_registered = true;
  1031. if (!i8042_pnp_kbd_devices && !i8042_pnp_aux_devices) {
  1032. i8042_pnp_exit();
  1033. #if defined(__ia64__)
  1034. return -ENODEV;
  1035. #else
  1036. pr_info("PNP: No PS/2 controller found. Probing ports directly.\n");
  1037. return 0;
  1038. #endif
  1039. }
  1040. if (i8042_pnp_kbd_devices)
  1041. snprintf(kbd_irq_str, sizeof(kbd_irq_str),
  1042. "%d", i8042_pnp_kbd_irq);
  1043. if (i8042_pnp_aux_devices)
  1044. snprintf(aux_irq_str, sizeof(aux_irq_str),
  1045. "%d", i8042_pnp_aux_irq);
  1046. pr_info("PNP: PS/2 Controller [%s%s%s] at %#x,%#x irq %s%s%s\n",
  1047. i8042_pnp_kbd_name, (i8042_pnp_kbd_devices && i8042_pnp_aux_devices) ? "," : "",
  1048. i8042_pnp_aux_name,
  1049. i8042_pnp_data_reg, i8042_pnp_command_reg,
  1050. kbd_irq_str, (i8042_pnp_kbd_devices && i8042_pnp_aux_devices) ? "," : "",
  1051. aux_irq_str);
  1052. #if defined(__ia64__)
  1053. if (!i8042_pnp_kbd_devices)
  1054. i8042_nokbd = true;
  1055. if (!i8042_pnp_aux_devices)
  1056. i8042_noaux = true;
  1057. #endif
  1058. if (((i8042_pnp_data_reg & ~0xf) == (i8042_data_reg & ~0xf) &&
  1059. i8042_pnp_data_reg != i8042_data_reg) ||
  1060. !i8042_pnp_data_reg) {
  1061. pr_warn("PNP: PS/2 controller has invalid data port %#x; using default %#x\n",
  1062. i8042_pnp_data_reg, i8042_data_reg);
  1063. i8042_pnp_data_reg = i8042_data_reg;
  1064. pnp_data_busted = true;
  1065. }
  1066. if (((i8042_pnp_command_reg & ~0xf) == (i8042_command_reg & ~0xf) &&
  1067. i8042_pnp_command_reg != i8042_command_reg) ||
  1068. !i8042_pnp_command_reg) {
  1069. pr_warn("PNP: PS/2 controller has invalid command port %#x; using default %#x\n",
  1070. i8042_pnp_command_reg, i8042_command_reg);
  1071. i8042_pnp_command_reg = i8042_command_reg;
  1072. pnp_data_busted = true;
  1073. }
  1074. if (!i8042_nokbd && !i8042_pnp_kbd_irq) {
  1075. pr_warn("PNP: PS/2 controller doesn't have KBD irq; using default %d\n",
  1076. i8042_kbd_irq);
  1077. i8042_pnp_kbd_irq = i8042_kbd_irq;
  1078. pnp_data_busted = true;
  1079. }
  1080. if (!i8042_noaux && !i8042_pnp_aux_irq) {
  1081. if (!pnp_data_busted && i8042_pnp_kbd_irq) {
  1082. pr_warn("PNP: PS/2 appears to have AUX port disabled, "
  1083. "if this is incorrect please boot with i8042.nopnp\n");
  1084. i8042_noaux = true;
  1085. } else {
  1086. pr_warn("PNP: PS/2 controller doesn't have AUX irq; using default %d\n",
  1087. i8042_aux_irq);
  1088. i8042_pnp_aux_irq = i8042_aux_irq;
  1089. }
  1090. }
  1091. i8042_data_reg = i8042_pnp_data_reg;
  1092. i8042_command_reg = i8042_pnp_command_reg;
  1093. i8042_kbd_irq = i8042_pnp_kbd_irq;
  1094. i8042_aux_irq = i8042_pnp_aux_irq;
  1095. #ifdef CONFIG_X86
  1096. i8042_bypass_aux_irq_test = !pnp_data_busted &&
  1097. dmi_check_system(i8042_dmi_laptop_table);
  1098. #endif
  1099. return 0;
  1100. }
  1101. #else
  1102. static inline int i8042_pnp_init(void) { return 0; }
  1103. static inline void i8042_pnp_exit(void) { }
  1104. #endif
  1105. static int __init i8042_platform_init(void)
  1106. {
  1107. int retval;
  1108. #ifdef CONFIG_X86
  1109. u8 a20_on = 0xdf;
  1110. /* Just return if pre-detection shows no i8042 controller exist */
  1111. if (!x86_platform.i8042_detect())
  1112. return -ENODEV;
  1113. #endif
  1114. /*
  1115. * On ix86 platforms touching the i8042 data register region can do really
  1116. * bad things. Because of this the region is always reserved on ix86 boxes.
  1117. *
  1118. * if (!request_region(I8042_DATA_REG, 16, "i8042"))
  1119. * return -EBUSY;
  1120. */
  1121. i8042_kbd_irq = I8042_MAP_IRQ(1);
  1122. i8042_aux_irq = I8042_MAP_IRQ(12);
  1123. retval = i8042_pnp_init();
  1124. if (retval)
  1125. return retval;
  1126. #if defined(__ia64__)
  1127. i8042_reset = I8042_RESET_ALWAYS;
  1128. #endif
  1129. #ifdef CONFIG_X86
  1130. /* Honor module parameter when value is not default */
  1131. if (i8042_reset == I8042_RESET_DEFAULT) {
  1132. if (dmi_check_system(i8042_dmi_reset_table))
  1133. i8042_reset = I8042_RESET_ALWAYS;
  1134. if (dmi_check_system(i8042_dmi_noselftest_table))
  1135. i8042_reset = I8042_RESET_NEVER;
  1136. }
  1137. if (dmi_check_system(i8042_dmi_noloop_table))
  1138. i8042_noloop = true;
  1139. if (dmi_check_system(i8042_dmi_nomux_table))
  1140. i8042_nomux = true;
  1141. if (dmi_check_system(i8042_dmi_notimeout_table))
  1142. i8042_notimeout = true;
  1143. if (dmi_check_system(i8042_dmi_dritek_table))
  1144. i8042_dritek = true;
  1145. if (dmi_check_system(i8042_dmi_kbdreset_table))
  1146. i8042_kbdreset = true;
  1147. /*
  1148. * A20 was already enabled during early kernel init. But some buggy
  1149. * BIOSes (in MSI Laptops) require A20 to be enabled using 8042 to
  1150. * resume from S3. So we do it here and hope that nothing breaks.
  1151. */
  1152. i8042_command(&a20_on, 0x10d1);
  1153. i8042_command(NULL, 0x00ff); /* Null command for SMM firmware */
  1154. #endif /* CONFIG_X86 */
  1155. return retval;
  1156. }
  1157. static inline void i8042_platform_exit(void)
  1158. {
  1159. i8042_pnp_exit();
  1160. }
  1161. #endif /* _I8042_X86IA64IO_H */