logips2pp.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419
  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. #define PS2PP_KIND_TRACKMAN 4
  21. /* Logitech mouse features */
  22. #define PS2PP_WHEEL 0x01
  23. #define PS2PP_HWHEEL 0x02
  24. #define PS2PP_SIDE_BTN 0x04
  25. #define PS2PP_EXTRA_BTN 0x08
  26. #define PS2PP_TASK_BTN 0x10
  27. #define PS2PP_NAV_BTN 0x20
  28. struct ps2pp_info {
  29. u8 model;
  30. u8 kind;
  31. u16 features;
  32. };
  33. /*
  34. * Process a PS2++ or PS2T++ packet.
  35. */
  36. static psmouse_ret_t ps2pp_process_byte(struct psmouse *psmouse)
  37. {
  38. struct input_dev *dev = psmouse->dev;
  39. unsigned char *packet = psmouse->packet;
  40. if (psmouse->pktcnt < 3)
  41. return PSMOUSE_GOOD_DATA;
  42. /*
  43. * Full packet accumulated, process it
  44. */
  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 const struct ps2pp_info *get_model_info(unsigned char model)
  158. {
  159. static const struct ps2pp_info ps2pp_list[] = {
  160. { 1, 0, 0 }, /* Simple 2-button mouse */
  161. { 12, 0, PS2PP_SIDE_BTN},
  162. { 13, 0, 0 },
  163. { 15, PS2PP_KIND_MX, /* MX1000 */
  164. PS2PP_WHEEL | PS2PP_SIDE_BTN | PS2PP_TASK_BTN |
  165. PS2PP_EXTRA_BTN | PS2PP_NAV_BTN | PS2PP_HWHEEL },
  166. { 40, 0, PS2PP_SIDE_BTN },
  167. { 41, 0, PS2PP_SIDE_BTN },
  168. { 42, 0, PS2PP_SIDE_BTN },
  169. { 43, 0, PS2PP_SIDE_BTN },
  170. { 50, 0, 0 },
  171. { 51, 0, 0 },
  172. { 52, PS2PP_KIND_WHEEL, PS2PP_SIDE_BTN | PS2PP_WHEEL },
  173. { 53, PS2PP_KIND_WHEEL, PS2PP_WHEEL },
  174. { 56, PS2PP_KIND_WHEEL, PS2PP_SIDE_BTN | PS2PP_WHEEL }, /* Cordless MouseMan Wheel */
  175. { 61, PS2PP_KIND_MX, /* MX700 */
  176. PS2PP_WHEEL | PS2PP_SIDE_BTN | PS2PP_TASK_BTN |
  177. PS2PP_EXTRA_BTN | PS2PP_NAV_BTN },
  178. { 66, PS2PP_KIND_MX, /* MX3100 reciver */
  179. PS2PP_WHEEL | PS2PP_SIDE_BTN | PS2PP_TASK_BTN |
  180. PS2PP_EXTRA_BTN | PS2PP_NAV_BTN | PS2PP_HWHEEL },
  181. { 72, PS2PP_KIND_TRACKMAN, 0 }, /* T-CH11: TrackMan Marble */
  182. { 73, 0, PS2PP_SIDE_BTN },
  183. { 75, PS2PP_KIND_WHEEL, PS2PP_WHEEL },
  184. { 76, PS2PP_KIND_WHEEL, PS2PP_WHEEL },
  185. { 79, PS2PP_KIND_TRACKMAN, PS2PP_WHEEL }, /* TrackMan with wheel */
  186. { 80, PS2PP_KIND_WHEEL, PS2PP_SIDE_BTN | PS2PP_WHEEL },
  187. { 81, PS2PP_KIND_WHEEL, PS2PP_WHEEL },
  188. { 83, PS2PP_KIND_WHEEL, PS2PP_WHEEL },
  189. { 85, PS2PP_KIND_WHEEL, PS2PP_WHEEL },
  190. { 86, PS2PP_KIND_WHEEL, PS2PP_WHEEL },
  191. { 87, PS2PP_KIND_WHEEL, PS2PP_WHEEL },
  192. { 88, PS2PP_KIND_WHEEL, PS2PP_WHEEL },
  193. { 96, 0, 0 },
  194. { 97, PS2PP_KIND_TP3, PS2PP_WHEEL | PS2PP_HWHEEL },
  195. { 99, PS2PP_KIND_WHEEL, PS2PP_WHEEL },
  196. { 100, PS2PP_KIND_MX, /* MX510 */
  197. PS2PP_WHEEL | PS2PP_SIDE_BTN | PS2PP_TASK_BTN |
  198. PS2PP_EXTRA_BTN | PS2PP_NAV_BTN },
  199. { 111, PS2PP_KIND_MX, PS2PP_WHEEL | PS2PP_SIDE_BTN }, /* MX300 reports task button as side */
  200. { 112, PS2PP_KIND_MX, /* MX500 */
  201. PS2PP_WHEEL | PS2PP_SIDE_BTN | PS2PP_TASK_BTN |
  202. PS2PP_EXTRA_BTN | PS2PP_NAV_BTN },
  203. { 114, PS2PP_KIND_MX, /* MX310 */
  204. PS2PP_WHEEL | PS2PP_SIDE_BTN |
  205. PS2PP_TASK_BTN | PS2PP_EXTRA_BTN }
  206. };
  207. int i;
  208. for (i = 0; i < ARRAY_SIZE(ps2pp_list); i++)
  209. if (model == ps2pp_list[i].model)
  210. return &ps2pp_list[i];
  211. printk(KERN_WARNING "logips2pp: Detected unknown logitech mouse model %d\n", model);
  212. return NULL;
  213. }
  214. /*
  215. * Set up input device's properties based on the detected mouse model.
  216. */
  217. static void ps2pp_set_model_properties(struct psmouse *psmouse,
  218. const struct ps2pp_info *model_info,
  219. int using_ps2pp)
  220. {
  221. struct input_dev *input_dev = psmouse->dev;
  222. if (model_info->features & PS2PP_SIDE_BTN)
  223. set_bit(BTN_SIDE, input_dev->keybit);
  224. if (model_info->features & PS2PP_EXTRA_BTN)
  225. set_bit(BTN_EXTRA, input_dev->keybit);
  226. if (model_info->features & PS2PP_TASK_BTN)
  227. set_bit(BTN_TASK, input_dev->keybit);
  228. if (model_info->features & PS2PP_NAV_BTN) {
  229. set_bit(BTN_FORWARD, input_dev->keybit);
  230. set_bit(BTN_BACK, input_dev->keybit);
  231. }
  232. if (model_info->features & PS2PP_WHEEL)
  233. set_bit(REL_WHEEL, input_dev->relbit);
  234. if (model_info->features & PS2PP_HWHEEL)
  235. set_bit(REL_HWHEEL, input_dev->relbit);
  236. switch (model_info->kind) {
  237. case PS2PP_KIND_WHEEL:
  238. psmouse->name = "Wheel Mouse";
  239. break;
  240. case PS2PP_KIND_MX:
  241. psmouse->name = "MX Mouse";
  242. break;
  243. case PS2PP_KIND_TP3:
  244. psmouse->name = "TouchPad 3";
  245. break;
  246. case PS2PP_KIND_TRACKMAN:
  247. psmouse->name = "TrackMan";
  248. break;
  249. default:
  250. /*
  251. * Set name to "Mouse" only when using PS2++,
  252. * otherwise let other protocols define suitable
  253. * name
  254. */
  255. if (using_ps2pp)
  256. psmouse->name = "Mouse";
  257. break;
  258. }
  259. }
  260. /*
  261. * Logitech magic init. Detect whether the mouse is a Logitech one
  262. * and its exact model and try turning on extended protocol for ones
  263. * that support it.
  264. */
  265. int ps2pp_init(struct psmouse *psmouse, int set_properties)
  266. {
  267. struct ps2dev *ps2dev = &psmouse->ps2dev;
  268. unsigned char param[4];
  269. unsigned char model, buttons;
  270. const struct ps2pp_info *model_info;
  271. int use_ps2pp = 0;
  272. int error;
  273. param[0] = 0;
  274. ps2_command(ps2dev, param, PSMOUSE_CMD_SETRES);
  275. ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETSCALE11);
  276. ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETSCALE11);
  277. ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETSCALE11);
  278. param[1] = 0;
  279. ps2_command(ps2dev, param, PSMOUSE_CMD_GETINFO);
  280. model = ((param[0] >> 4) & 0x07) | ((param[0] << 3) & 0x78);
  281. buttons = param[1];
  282. if (!model || !buttons)
  283. return -1;
  284. if ((model_info = get_model_info(model)) != NULL) {
  285. /*
  286. * Do Logitech PS2++ / PS2T++ magic init.
  287. */
  288. if (model_info->kind == PS2PP_KIND_TP3) { /* Touch Pad 3 */
  289. /* Unprotect RAM */
  290. param[0] = 0x11; param[1] = 0x04; param[2] = 0x68;
  291. ps2_command(ps2dev, param, 0x30d1);
  292. /* Enable features */
  293. param[0] = 0x11; param[1] = 0x05; param[2] = 0x0b;
  294. ps2_command(ps2dev, param, 0x30d1);
  295. /* Enable PS2++ */
  296. param[0] = 0x11; param[1] = 0x09; param[2] = 0xc3;
  297. ps2_command(ps2dev, param, 0x30d1);
  298. param[0] = 0;
  299. if (!ps2_command(ps2dev, param, 0x13d1) &&
  300. param[0] == 0x06 && param[1] == 0x00 && param[2] == 0x14) {
  301. use_ps2pp = 1;
  302. }
  303. } else {
  304. param[0] = param[1] = param[2] = 0;
  305. ps2pp_cmd(psmouse, param, 0x39); /* Magic knock */
  306. ps2pp_cmd(psmouse, param, 0xDB);
  307. if ((param[0] & 0x78) == 0x48 &&
  308. (param[1] & 0xf3) == 0xc2 &&
  309. (param[2] & 0x03) == ((param[1] >> 2) & 3)) {
  310. ps2pp_set_smartscroll(psmouse, psmouse->smartscroll);
  311. use_ps2pp = 1;
  312. }
  313. }
  314. }
  315. if (set_properties) {
  316. psmouse->vendor = "Logitech";
  317. psmouse->model = model;
  318. if (use_ps2pp) {
  319. psmouse->protocol_handler = ps2pp_process_byte;
  320. psmouse->pktsize = 3;
  321. if (model_info->kind != PS2PP_KIND_TP3) {
  322. psmouse->set_resolution = ps2pp_set_resolution;
  323. psmouse->disconnect = ps2pp_disconnect;
  324. error = device_create_file(&psmouse->ps2dev.serio->dev,
  325. &psmouse_attr_smartscroll.dattr);
  326. if (error) {
  327. printk(KERN_ERR
  328. "logips2pp.c: failed to create smartscroll "
  329. "sysfs attribute, error: %d\n", error);
  330. return -1;
  331. }
  332. }
  333. }
  334. if (buttons < 3)
  335. clear_bit(BTN_MIDDLE, psmouse->dev->keybit);
  336. if (model_info)
  337. ps2pp_set_model_properties(psmouse, model_info, use_ps2pp);
  338. }
  339. return use_ps2pp ? 0 : -1;
  340. }