logips2pp.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406
  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 | 0x0300))
  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 ps2pp_attr_show_smartscroll(struct psmouse *psmouse, void *data, char *buf)
  119. {
  120. return sprintf(buf, "%d\n", psmouse->smartscroll ? 1 : 0);
  121. }
  122. static ssize_t ps2pp_attr_set_smartscroll(struct psmouse *psmouse, void *data, 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, S_IWUSR | S_IRUGO, NULL,
  134. ps2pp_attr_show_smartscroll, ps2pp_attr_set_smartscroll);
  135. /*
  136. * Support 800 dpi resolution _only_ if the user wants it (there are good
  137. * reasons to not use it even if the mouse supports it, and of course there are
  138. * also good reasons to use it, let the user decide).
  139. */
  140. static void ps2pp_set_resolution(struct psmouse *psmouse, unsigned int resolution)
  141. {
  142. if (resolution > 400) {
  143. struct ps2dev *ps2dev = &psmouse->ps2dev;
  144. unsigned char param = 3;
  145. ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETSCALE11);
  146. ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETSCALE11);
  147. ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETSCALE11);
  148. ps2_command(ps2dev, &param, PSMOUSE_CMD_SETRES);
  149. psmouse->resolution = 800;
  150. } else
  151. psmouse_set_resolution(psmouse, resolution);
  152. }
  153. static void ps2pp_disconnect(struct psmouse *psmouse)
  154. {
  155. device_remove_file(&psmouse->ps2dev.serio->dev, &psmouse_attr_smartscroll.dattr);
  156. }
  157. static struct ps2pp_info *get_model_info(unsigned char model)
  158. {
  159. static struct ps2pp_info ps2pp_list[] = {
  160. { 12, 0, PS2PP_SIDE_BTN},
  161. { 13, 0, 0 },
  162. { 15, PS2PP_KIND_MX, /* MX1000 */
  163. PS2PP_WHEEL | PS2PP_SIDE_BTN | PS2PP_TASK_BTN |
  164. PS2PP_EXTRA_BTN | PS2PP_NAV_BTN | PS2PP_HWHEEL },
  165. { 40, 0, PS2PP_SIDE_BTN },
  166. { 41, 0, PS2PP_SIDE_BTN },
  167. { 42, 0, PS2PP_SIDE_BTN },
  168. { 43, 0, PS2PP_SIDE_BTN },
  169. { 50, 0, 0 },
  170. { 51, 0, 0 },
  171. { 52, PS2PP_KIND_WHEEL, PS2PP_SIDE_BTN | PS2PP_WHEEL },
  172. { 53, PS2PP_KIND_WHEEL, PS2PP_WHEEL },
  173. { 61, PS2PP_KIND_MX, /* MX700 */
  174. PS2PP_WHEEL | PS2PP_SIDE_BTN | PS2PP_TASK_BTN |
  175. PS2PP_EXTRA_BTN | PS2PP_NAV_BTN },
  176. { 66, PS2PP_KIND_MX, /* MX3100 reciver */
  177. PS2PP_WHEEL | PS2PP_SIDE_BTN | PS2PP_TASK_BTN |
  178. PS2PP_EXTRA_BTN | PS2PP_NAV_BTN | PS2PP_HWHEEL },
  179. { 73, 0, PS2PP_SIDE_BTN },
  180. { 75, PS2PP_KIND_WHEEL, PS2PP_WHEEL },
  181. { 76, PS2PP_KIND_WHEEL, PS2PP_WHEEL },
  182. { 80, PS2PP_KIND_WHEEL, PS2PP_SIDE_BTN | PS2PP_WHEEL },
  183. { 81, PS2PP_KIND_WHEEL, PS2PP_WHEEL },
  184. { 83, PS2PP_KIND_WHEEL, PS2PP_WHEEL },
  185. { 85, PS2PP_KIND_WHEEL, PS2PP_WHEEL },
  186. { 86, PS2PP_KIND_WHEEL, PS2PP_WHEEL },
  187. { 87, PS2PP_KIND_WHEEL, PS2PP_WHEEL },
  188. { 88, PS2PP_KIND_WHEEL, PS2PP_WHEEL },
  189. { 96, 0, 0 },
  190. { 97, PS2PP_KIND_TP3, PS2PP_WHEEL | PS2PP_HWHEEL },
  191. { 99, PS2PP_KIND_WHEEL, PS2PP_WHEEL },
  192. { 100, PS2PP_KIND_MX, /* MX510 */
  193. PS2PP_WHEEL | PS2PP_SIDE_BTN | PS2PP_TASK_BTN |
  194. PS2PP_EXTRA_BTN | PS2PP_NAV_BTN },
  195. { 111, PS2PP_KIND_MX, /* MX300 */
  196. PS2PP_WHEEL | PS2PP_EXTRA_BTN | PS2PP_TASK_BTN },
  197. { 112, PS2PP_KIND_MX, /* MX500 */
  198. PS2PP_WHEEL | PS2PP_SIDE_BTN | PS2PP_TASK_BTN |
  199. PS2PP_EXTRA_BTN | PS2PP_NAV_BTN },
  200. { 114, PS2PP_KIND_MX, /* MX310 */
  201. PS2PP_WHEEL | PS2PP_SIDE_BTN |
  202. PS2PP_TASK_BTN | PS2PP_EXTRA_BTN },
  203. { }
  204. };
  205. int i;
  206. for (i = 0; ps2pp_list[i].model; i++)
  207. if (model == ps2pp_list[i].model)
  208. return &ps2pp_list[i];
  209. printk(KERN_WARNING "logips2pp: Detected unknown logitech mouse model %d\n", model);
  210. return NULL;
  211. }
  212. /*
  213. * Set up input device's properties based on the detected mouse model.
  214. */
  215. static void ps2pp_set_model_properties(struct psmouse *psmouse, struct ps2pp_info *model_info,
  216. int using_ps2pp)
  217. {
  218. struct input_dev *input_dev = psmouse->dev;
  219. if (model_info->features & PS2PP_SIDE_BTN)
  220. set_bit(BTN_SIDE, input_dev->keybit);
  221. if (model_info->features & PS2PP_EXTRA_BTN)
  222. set_bit(BTN_EXTRA, input_dev->keybit);
  223. if (model_info->features & PS2PP_TASK_BTN)
  224. set_bit(BTN_TASK, input_dev->keybit);
  225. if (model_info->features & PS2PP_NAV_BTN) {
  226. set_bit(BTN_FORWARD, input_dev->keybit);
  227. set_bit(BTN_BACK, input_dev->keybit);
  228. }
  229. if (model_info->features & PS2PP_WHEEL)
  230. set_bit(REL_WHEEL, input_dev->relbit);
  231. if (model_info->features & PS2PP_HWHEEL)
  232. set_bit(REL_HWHEEL, input_dev->relbit);
  233. switch (model_info->kind) {
  234. case PS2PP_KIND_WHEEL:
  235. psmouse->name = "Wheel Mouse";
  236. break;
  237. case PS2PP_KIND_MX:
  238. psmouse->name = "MX Mouse";
  239. break;
  240. case PS2PP_KIND_TP3:
  241. psmouse->name = "TouchPad 3";
  242. break;
  243. default:
  244. /*
  245. * Set name to "Mouse" only when using PS2++,
  246. * otherwise let other protocols define suitable
  247. * name
  248. */
  249. if (using_ps2pp)
  250. psmouse->name = "Mouse";
  251. break;
  252. }
  253. }
  254. /*
  255. * Logitech magic init. Detect whether the mouse is a Logitech one
  256. * and its exact model and try turning on extended protocol for ones
  257. * that support it.
  258. */
  259. int ps2pp_init(struct psmouse *psmouse, int set_properties)
  260. {
  261. struct ps2dev *ps2dev = &psmouse->ps2dev;
  262. unsigned char param[4];
  263. unsigned char model, buttons;
  264. struct ps2pp_info *model_info;
  265. int use_ps2pp = 0;
  266. param[0] = 0;
  267. ps2_command(ps2dev, param, PSMOUSE_CMD_SETRES);
  268. ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETSCALE11);
  269. ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETSCALE11);
  270. ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETSCALE11);
  271. param[1] = 0;
  272. ps2_command(ps2dev, param, PSMOUSE_CMD_GETINFO);
  273. if (!param[1])
  274. return -1;
  275. model = ((param[0] >> 4) & 0x07) | ((param[0] << 3) & 0x78);
  276. buttons = param[1];
  277. if ((model_info = get_model_info(model)) != NULL) {
  278. /*
  279. * Do Logitech PS2++ / PS2T++ magic init.
  280. */
  281. if (model == 97) { /* Touch Pad 3 */
  282. /* Unprotect RAM */
  283. param[0] = 0x11; param[1] = 0x04; param[2] = 0x68;
  284. ps2_command(ps2dev, param, 0x30d1);
  285. /* Enable features */
  286. param[0] = 0x11; param[1] = 0x05; param[2] = 0x0b;
  287. ps2_command(ps2dev, param, 0x30d1);
  288. /* Enable PS2++ */
  289. param[0] = 0x11; param[1] = 0x09; param[2] = 0xc3;
  290. ps2_command(ps2dev, param, 0x30d1);
  291. param[0] = 0;
  292. if (!ps2_command(ps2dev, param, 0x13d1) &&
  293. param[0] == 0x06 && param[1] == 0x00 && param[2] == 0x14) {
  294. use_ps2pp = 1;
  295. }
  296. } else {
  297. param[0] = param[1] = param[2] = 0;
  298. ps2pp_cmd(psmouse, param, 0x39); /* Magic knock */
  299. ps2pp_cmd(psmouse, param, 0xDB);
  300. if ((param[0] & 0x78) == 0x48 &&
  301. (param[1] & 0xf3) == 0xc2 &&
  302. (param[2] & 0x03) == ((param[1] >> 2) & 3)) {
  303. ps2pp_set_smartscroll(psmouse, psmouse->smartscroll);
  304. use_ps2pp = 1;
  305. }
  306. }
  307. }
  308. if (set_properties) {
  309. psmouse->vendor = "Logitech";
  310. psmouse->model = model;
  311. if (use_ps2pp) {
  312. psmouse->protocol_handler = ps2pp_process_byte;
  313. psmouse->pktsize = 3;
  314. if (model_info->kind != PS2PP_KIND_TP3) {
  315. psmouse->set_resolution = ps2pp_set_resolution;
  316. psmouse->disconnect = ps2pp_disconnect;
  317. device_create_file(&psmouse->ps2dev.serio->dev,
  318. &psmouse_attr_smartscroll.dattr);
  319. }
  320. }
  321. if (buttons < 3)
  322. clear_bit(BTN_MIDDLE, psmouse->dev->keybit);
  323. if (model_info)
  324. ps2pp_set_model_properties(psmouse, model_info, use_ps2pp);
  325. }
  326. return use_ps2pp ? 0 : -1;
  327. }