logips2pp.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397
  1. /*
  2. * Logitech PS/2++ mouse driver
  3. *
  4. * Copyright (c) 1999-2003 Vojtech Pavlik <vojtech@suse.cz>
  5. * Copyright (c) 2003 Eric Wong <eric@yhbt.net>
  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. #include <linux/input.h>
  12. #include <linux/serio.h>
  13. #include <linux/libps2.h>
  14. #include "psmouse.h"
  15. #include "logips2pp.h"
  16. /* Logitech mouse types */
  17. #define PS2PP_KIND_WHEEL 1
  18. #define PS2PP_KIND_MX 2
  19. #define PS2PP_KIND_TP3 3
  20. /* Logitech mouse features */
  21. #define PS2PP_WHEEL 0x01
  22. #define PS2PP_HWHEEL 0x02
  23. #define PS2PP_SIDE_BTN 0x04
  24. #define PS2PP_EXTRA_BTN 0x08
  25. #define PS2PP_TASK_BTN 0x10
  26. #define PS2PP_NAV_BTN 0x20
  27. struct ps2pp_info {
  28. const int model;
  29. unsigned const int kind;
  30. unsigned const int features;
  31. };
  32. /*
  33. * Process a PS2++ or PS2T++ packet.
  34. */
  35. static psmouse_ret_t ps2pp_process_byte(struct psmouse *psmouse, struct pt_regs *regs)
  36. {
  37. struct input_dev *dev = &psmouse->dev;
  38. unsigned char *packet = psmouse->packet;
  39. if (psmouse->pktcnt < 3)
  40. return PSMOUSE_GOOD_DATA;
  41. /*
  42. * Full packet accumulated, process it
  43. */
  44. input_regs(dev, regs);
  45. if ((packet[0] & 0x48) == 0x48 && (packet[1] & 0x02) == 0x02) {
  46. /* Logitech extended packet */
  47. switch ((packet[1] >> 4) | (packet[0] & 0x30)) {
  48. case 0x0d: /* Mouse extra info */
  49. input_report_rel(dev, packet[2] & 0x80 ? REL_HWHEEL : REL_WHEEL,
  50. (int) (packet[2] & 8) - (int) (packet[2] & 7));
  51. input_report_key(dev, BTN_SIDE, (packet[2] >> 4) & 1);
  52. input_report_key(dev, BTN_EXTRA, (packet[2] >> 5) & 1);
  53. break;
  54. case 0x0e: /* buttons 4, 5, 6, 7, 8, 9, 10 info */
  55. input_report_key(dev, BTN_SIDE, (packet[2]) & 1);
  56. input_report_key(dev, BTN_EXTRA, (packet[2] >> 1) & 1);
  57. input_report_key(dev, BTN_BACK, (packet[2] >> 3) & 1);
  58. input_report_key(dev, BTN_FORWARD, (packet[2] >> 4) & 1);
  59. input_report_key(dev, BTN_TASK, (packet[2] >> 2) & 1);
  60. break;
  61. case 0x0f: /* TouchPad extra info */
  62. input_report_rel(dev, packet[2] & 0x08 ? REL_HWHEEL : REL_WHEEL,
  63. (int) ((packet[2] >> 4) & 8) - (int) ((packet[2] >> 4) & 7));
  64. packet[0] = packet[2] | 0x08;
  65. break;
  66. #ifdef DEBUG
  67. default:
  68. printk(KERN_WARNING "psmouse.c: Received PS2++ packet #%x, but don't know how to handle.\n",
  69. (packet[1] >> 4) | (packet[0] & 0x30));
  70. #endif
  71. }
  72. } else {
  73. /* Standard PS/2 motion data */
  74. input_report_rel(dev, REL_X, packet[1] ? (int) packet[1] - (int) ((packet[0] << 4) & 0x100) : 0);
  75. input_report_rel(dev, REL_Y, packet[2] ? (int) ((packet[0] << 3) & 0x100) - (int) packet[2] : 0);
  76. }
  77. input_report_key(dev, BTN_LEFT, packet[0] & 1);
  78. input_report_key(dev, BTN_MIDDLE, (packet[0] >> 2) & 1);
  79. input_report_key(dev, BTN_RIGHT, (packet[0] >> 1) & 1);
  80. input_sync(dev);
  81. return PSMOUSE_FULL_PACKET;
  82. }
  83. /*
  84. * ps2pp_cmd() sends a PS2++ command, sliced into two bit
  85. * pieces through the SETRES command. This is needed to send extended
  86. * commands to mice on notebooks that try to understand the PS/2 protocol
  87. * Ugly.
  88. */
  89. static int ps2pp_cmd(struct psmouse *psmouse, unsigned char *param, unsigned char command)
  90. {
  91. if (psmouse_sliced_command(psmouse, command))
  92. return -1;
  93. if (ps2_command(&psmouse->ps2dev, param, PSMOUSE_CMD_POLL))
  94. return -1;
  95. return 0;
  96. }
  97. /*
  98. * SmartScroll / CruiseControl for some newer Logitech mice Defaults to
  99. * enabled if we do nothing to it. Of course I put this in because I want it
  100. * disabled :P
  101. * 1 - enabled (if previously disabled, also default)
  102. * 0 - disabled
  103. */
  104. static void ps2pp_set_smartscroll(struct psmouse *psmouse, unsigned int smartscroll)
  105. {
  106. struct ps2dev *ps2dev = &psmouse->ps2dev;
  107. unsigned char param[4];
  108. if (smartscroll > 1)
  109. smartscroll = 1;
  110. ps2pp_cmd(psmouse, param, 0x32);
  111. param[0] = 0;
  112. ps2_command(ps2dev, param, PSMOUSE_CMD_SETRES);
  113. ps2_command(ps2dev, param, PSMOUSE_CMD_SETRES);
  114. ps2_command(ps2dev, param, PSMOUSE_CMD_SETRES);
  115. param[0] = smartscroll;
  116. ps2_command(ps2dev, param, PSMOUSE_CMD_SETRES);
  117. }
  118. static ssize_t psmouse_attr_show_smartscroll(struct psmouse *psmouse, char *buf)
  119. {
  120. return sprintf(buf, "%d\n", psmouse->smartscroll ? 1 : 0);
  121. }
  122. static ssize_t psmouse_attr_set_smartscroll(struct psmouse *psmouse, const char *buf, size_t count)
  123. {
  124. unsigned long value;
  125. char *rest;
  126. value = simple_strtoul(buf, &rest, 10);
  127. if (*rest || value > 1)
  128. return -EINVAL;
  129. ps2pp_set_smartscroll(psmouse, value);
  130. psmouse->smartscroll = value;
  131. return count;
  132. }
  133. PSMOUSE_DEFINE_ATTR(smartscroll);
  134. /*
  135. * Support 800 dpi resolution _only_ if the user wants it (there are good
  136. * reasons to not use it even if the mouse supports it, and of course there are
  137. * also good reasons to use it, let the user decide).
  138. */
  139. static void ps2pp_set_resolution(struct psmouse *psmouse, unsigned int resolution)
  140. {
  141. if (resolution > 400) {
  142. struct ps2dev *ps2dev = &psmouse->ps2dev;
  143. unsigned char param = 3;
  144. ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETSCALE11);
  145. ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETSCALE11);
  146. ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETSCALE11);
  147. ps2_command(ps2dev, &param, PSMOUSE_CMD_SETRES);
  148. psmouse->resolution = 800;
  149. } else
  150. psmouse_set_resolution(psmouse, resolution);
  151. }
  152. static void ps2pp_disconnect(struct psmouse *psmouse)
  153. {
  154. device_remove_file(&psmouse->ps2dev.serio->dev, &psmouse_attr_smartscroll);
  155. }
  156. static struct ps2pp_info *get_model_info(unsigned char model)
  157. {
  158. static struct ps2pp_info ps2pp_list[] = {
  159. { 12, 0, PS2PP_SIDE_BTN},
  160. { 13, 0, 0 },
  161. { 15, PS2PP_KIND_MX, /* MX1000 */
  162. PS2PP_WHEEL | PS2PP_SIDE_BTN | PS2PP_TASK_BTN |
  163. PS2PP_EXTRA_BTN | PS2PP_NAV_BTN | PS2PP_HWHEEL },
  164. { 40, 0, PS2PP_SIDE_BTN },
  165. { 41, 0, PS2PP_SIDE_BTN },
  166. { 42, 0, PS2PP_SIDE_BTN },
  167. { 43, 0, PS2PP_SIDE_BTN },
  168. { 50, 0, 0 },
  169. { 51, 0, 0 },
  170. { 52, PS2PP_KIND_WHEEL, PS2PP_SIDE_BTN | PS2PP_WHEEL },
  171. { 53, PS2PP_KIND_WHEEL, PS2PP_WHEEL },
  172. { 61, PS2PP_KIND_MX, /* MX700 */
  173. PS2PP_WHEEL | PS2PP_SIDE_BTN | PS2PP_TASK_BTN |
  174. PS2PP_EXTRA_BTN | PS2PP_NAV_BTN },
  175. { 73, 0, PS2PP_SIDE_BTN },
  176. { 75, PS2PP_KIND_WHEEL, PS2PP_WHEEL },
  177. { 76, PS2PP_KIND_WHEEL, PS2PP_WHEEL },
  178. { 80, PS2PP_KIND_WHEEL, PS2PP_SIDE_BTN | PS2PP_WHEEL },
  179. { 81, PS2PP_KIND_WHEEL, PS2PP_WHEEL },
  180. { 83, PS2PP_KIND_WHEEL, PS2PP_WHEEL },
  181. { 88, PS2PP_KIND_WHEEL, PS2PP_WHEEL },
  182. { 96, 0, 0 },
  183. { 97, PS2PP_KIND_TP3, PS2PP_WHEEL | PS2PP_HWHEEL },
  184. { 100, PS2PP_KIND_MX, /* MX510 */
  185. PS2PP_WHEEL | PS2PP_SIDE_BTN | PS2PP_TASK_BTN |
  186. PS2PP_EXTRA_BTN | PS2PP_NAV_BTN },
  187. { 111, PS2PP_KIND_MX, /* MX300 */
  188. PS2PP_WHEEL | PS2PP_EXTRA_BTN | PS2PP_TASK_BTN },
  189. { 112, PS2PP_KIND_MX, /* MX500 */
  190. PS2PP_WHEEL | PS2PP_SIDE_BTN | PS2PP_TASK_BTN |
  191. PS2PP_EXTRA_BTN | PS2PP_NAV_BTN },
  192. { 114, PS2PP_KIND_MX, /* MX310 */
  193. PS2PP_WHEEL | PS2PP_SIDE_BTN |
  194. PS2PP_TASK_BTN | PS2PP_EXTRA_BTN },
  195. { }
  196. };
  197. int i;
  198. for (i = 0; ps2pp_list[i].model; i++)
  199. if (model == ps2pp_list[i].model)
  200. return &ps2pp_list[i];
  201. printk(KERN_WARNING "logips2pp: Detected unknown logitech mouse model %d\n", model);
  202. return NULL;
  203. }
  204. /*
  205. * Set up input device's properties based on the detected mouse model.
  206. */
  207. static void ps2pp_set_model_properties(struct psmouse *psmouse, struct ps2pp_info *model_info,
  208. int using_ps2pp)
  209. {
  210. if (model_info->features & PS2PP_SIDE_BTN)
  211. set_bit(BTN_SIDE, psmouse->dev.keybit);
  212. if (model_info->features & PS2PP_EXTRA_BTN)
  213. set_bit(BTN_EXTRA, psmouse->dev.keybit);
  214. if (model_info->features & PS2PP_TASK_BTN)
  215. set_bit(BTN_TASK, psmouse->dev.keybit);
  216. if (model_info->features & PS2PP_NAV_BTN) {
  217. set_bit(BTN_FORWARD, psmouse->dev.keybit);
  218. set_bit(BTN_BACK, psmouse->dev.keybit);
  219. }
  220. if (model_info->features & PS2PP_WHEEL)
  221. set_bit(REL_WHEEL, psmouse->dev.relbit);
  222. if (model_info->features & PS2PP_HWHEEL)
  223. set_bit(REL_HWHEEL, psmouse->dev.relbit);
  224. switch (model_info->kind) {
  225. case PS2PP_KIND_WHEEL:
  226. psmouse->name = "Wheel Mouse";
  227. break;
  228. case PS2PP_KIND_MX:
  229. psmouse->name = "MX Mouse";
  230. break;
  231. case PS2PP_KIND_TP3:
  232. psmouse->name = "TouchPad 3";
  233. break;
  234. default:
  235. /*
  236. * Set name to "Mouse" only when using PS2++,
  237. * otherwise let other protocols define suitable
  238. * name
  239. */
  240. if (using_ps2pp)
  241. psmouse->name = "Mouse";
  242. break;
  243. }
  244. }
  245. /*
  246. * Logitech magic init. Detect whether the mouse is a Logitech one
  247. * and its exact model and try turning on extended protocol for ones
  248. * that support it.
  249. */
  250. int ps2pp_init(struct psmouse *psmouse, int set_properties)
  251. {
  252. struct ps2dev *ps2dev = &psmouse->ps2dev;
  253. unsigned char param[4];
  254. unsigned char model, buttons;
  255. struct ps2pp_info *model_info;
  256. int use_ps2pp = 0;
  257. param[0] = 0;
  258. ps2_command(ps2dev, param, PSMOUSE_CMD_SETRES);
  259. ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETSCALE11);
  260. ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETSCALE11);
  261. ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETSCALE11);
  262. param[1] = 0;
  263. ps2_command(ps2dev, param, PSMOUSE_CMD_GETINFO);
  264. if (!param[1])
  265. return -1;
  266. model = ((param[0] >> 4) & 0x07) | ((param[0] << 3) & 0x78);
  267. buttons = param[1];
  268. if ((model_info = get_model_info(model)) != NULL) {
  269. /*
  270. * Do Logitech PS2++ / PS2T++ magic init.
  271. */
  272. if (model == 97) { /* Touch Pad 3 */
  273. /* Unprotect RAM */
  274. param[0] = 0x11; param[1] = 0x04; param[2] = 0x68;
  275. ps2_command(ps2dev, param, 0x30d1);
  276. /* Enable features */
  277. param[0] = 0x11; param[1] = 0x05; param[2] = 0x0b;
  278. ps2_command(ps2dev, param, 0x30d1);
  279. /* Enable PS2++ */
  280. param[0] = 0x11; param[1] = 0x09; param[2] = 0xc3;
  281. ps2_command(ps2dev, param, 0x30d1);
  282. param[0] = 0;
  283. if (!ps2_command(ps2dev, param, 0x13d1) &&
  284. param[0] == 0x06 && param[1] == 0x00 && param[2] == 0x14) {
  285. use_ps2pp = 1;
  286. }
  287. } else {
  288. param[0] = param[1] = param[2] = 0;
  289. ps2pp_cmd(psmouse, param, 0x39); /* Magic knock */
  290. ps2pp_cmd(psmouse, param, 0xDB);
  291. if ((param[0] & 0x78) == 0x48 &&
  292. (param[1] & 0xf3) == 0xc2 &&
  293. (param[2] & 0x03) == ((param[1] >> 2) & 3)) {
  294. ps2pp_set_smartscroll(psmouse, psmouse->smartscroll);
  295. use_ps2pp = 1;
  296. }
  297. }
  298. }
  299. if (set_properties) {
  300. psmouse->vendor = "Logitech";
  301. psmouse->model = model;
  302. if (use_ps2pp) {
  303. psmouse->protocol_handler = ps2pp_process_byte;
  304. psmouse->pktsize = 3;
  305. if (model_info->kind != PS2PP_KIND_TP3) {
  306. psmouse->set_resolution = ps2pp_set_resolution;
  307. psmouse->disconnect = ps2pp_disconnect;
  308. device_create_file(&psmouse->ps2dev.serio->dev, &psmouse_attr_smartscroll);
  309. }
  310. }
  311. if (buttons < 3)
  312. clear_bit(BTN_MIDDLE, psmouse->dev.keybit);
  313. if (buttons < 2)
  314. clear_bit(BTN_RIGHT, psmouse->dev.keybit);
  315. if (model_info)
  316. ps2pp_set_model_properties(psmouse, model_info, use_ps2pp);
  317. }
  318. return use_ps2pp ? 0 : -1;
  319. }