lifebook.c 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. /*
  2. * Fujitsu B-series Lifebook PS/2 TouchScreen driver
  3. *
  4. * Copyright (c) 2005 Vojtech Pavlik <vojtech@suse.cz>
  5. * Copyright (c) 2005 Kenan Esau <kenan.esau@conan.de>
  6. *
  7. * TouchScreen detection, absolute mode setting and packet layout is taken from
  8. * Harald Hoyer's description of the device.
  9. *
  10. * This program is free software; you can redistribute it and/or modify it
  11. * under the terms of the GNU General Public License version 2 as published by
  12. * the Free Software Foundation.
  13. */
  14. #include <linux/input.h>
  15. #include <linux/serio.h>
  16. #include <linux/libps2.h>
  17. #include <linux/dmi.h>
  18. #include "psmouse.h"
  19. #include "lifebook.h"
  20. static struct dmi_system_id lifebook_dmi_table[] = {
  21. {
  22. .ident = "LifeBook B",
  23. .matches = {
  24. DMI_MATCH(DMI_PRODUCT_NAME, "LifeBook B Series"),
  25. },
  26. },
  27. {
  28. .ident = "Lifebook B",
  29. .matches = {
  30. DMI_MATCH(DMI_PRODUCT_NAME, "LIFEBOOK B Series"),
  31. },
  32. },
  33. {
  34. .ident = "Lifebook B213x/B2150",
  35. .matches = {
  36. DMI_MATCH(DMI_PRODUCT_NAME, "LifeBook B2131/B2133/B2150"),
  37. },
  38. },
  39. {
  40. .ident = "Zephyr",
  41. .matches = {
  42. DMI_MATCH(DMI_PRODUCT_NAME, "ZEPHYR"),
  43. },
  44. },
  45. {
  46. .ident = "CF-18",
  47. .matches = {
  48. DMI_MATCH(DMI_PRODUCT_NAME, "CF-18"),
  49. },
  50. },
  51. {
  52. .ident = "Lifebook B142",
  53. .matches = {
  54. DMI_MATCH(DMI_PRODUCT_NAME, "LifeBook B142"),
  55. },
  56. },
  57. { }
  58. };
  59. static psmouse_ret_t lifebook_process_byte(struct psmouse *psmouse, struct pt_regs *regs)
  60. {
  61. unsigned char *packet = psmouse->packet;
  62. struct input_dev *dev = psmouse->dev;
  63. if (psmouse->pktcnt != 3)
  64. return PSMOUSE_GOOD_DATA;
  65. input_regs(dev, regs);
  66. /* calculate X and Y */
  67. if ((packet[0] & 0x08) == 0x00) {
  68. input_report_abs(dev, ABS_X,
  69. (packet[1] | ((packet[0] & 0x30) << 4)));
  70. input_report_abs(dev, ABS_Y,
  71. 1024 - (packet[2] | ((packet[0] & 0xC0) << 2)));
  72. } else {
  73. input_report_rel(dev, REL_X,
  74. ((packet[0] & 0x10) ? packet[1] - 256 : packet[1]));
  75. input_report_rel(dev, REL_Y,
  76. -(int)((packet[0] & 0x20) ? packet[2] - 256 : packet[2]));
  77. }
  78. input_report_key(dev, BTN_LEFT, packet[0] & 0x01);
  79. input_report_key(dev, BTN_RIGHT, packet[0] & 0x02);
  80. input_report_key(dev, BTN_TOUCH, packet[0] & 0x04);
  81. input_sync(dev);
  82. return PSMOUSE_FULL_PACKET;
  83. }
  84. static int lifebook_absolute_mode(struct psmouse *psmouse)
  85. {
  86. struct ps2dev *ps2dev = &psmouse->ps2dev;
  87. unsigned char param;
  88. if (psmouse_reset(psmouse))
  89. return -1;
  90. /*
  91. Enable absolute output -- ps2_command fails always but if
  92. you leave this call out the touchsreen will never send
  93. absolute coordinates
  94. */
  95. param = 0x07;
  96. ps2_command(ps2dev, &param, PSMOUSE_CMD_SETRES);
  97. return 0;
  98. }
  99. static void lifebook_set_resolution(struct psmouse *psmouse, unsigned int resolution)
  100. {
  101. unsigned char params[] = { 0, 1, 2, 2, 3 };
  102. if (resolution == 0 || resolution > 400)
  103. resolution = 400;
  104. ps2_command(&psmouse->ps2dev, &params[resolution / 100], PSMOUSE_CMD_SETRES);
  105. psmouse->resolution = 50 << params[resolution / 100];
  106. }
  107. static void lifebook_disconnect(struct psmouse *psmouse)
  108. {
  109. psmouse_reset(psmouse);
  110. }
  111. int lifebook_detect(struct psmouse *psmouse, int set_properties)
  112. {
  113. if (!dmi_check_system(lifebook_dmi_table))
  114. return -1;
  115. if (set_properties) {
  116. psmouse->vendor = "Fujitsu";
  117. psmouse->name = "Lifebook TouchScreen";
  118. }
  119. return 0;
  120. }
  121. int lifebook_init(struct psmouse *psmouse)
  122. {
  123. struct input_dev *input_dev = psmouse->dev;
  124. if (lifebook_absolute_mode(psmouse))
  125. return -1;
  126. input_dev->evbit[0] = BIT(EV_ABS) | BIT(EV_KEY) | BIT(EV_REL);
  127. input_dev->keybit[LONG(BTN_LEFT)] = BIT(BTN_LEFT) | BIT(BTN_MIDDLE) | BIT(BTN_RIGHT);
  128. input_dev->keybit[LONG(BTN_TOUCH)] = BIT(BTN_TOUCH);
  129. input_dev->relbit[0] = BIT(REL_X) | BIT(REL_Y);
  130. input_set_abs_params(input_dev, ABS_X, 0, 1024, 0, 0);
  131. input_set_abs_params(input_dev, ABS_Y, 0, 1024, 0, 0);
  132. psmouse->protocol_handler = lifebook_process_byte;
  133. psmouse->set_resolution = lifebook_set_resolution;
  134. psmouse->disconnect = lifebook_disconnect;
  135. psmouse->reconnect = lifebook_absolute_mode;
  136. psmouse->pktsize = 3;
  137. return 0;
  138. }