remote.c 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287
  1. /*
  2. * IBM ASM Service Processor Device Driver
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation; either version 2 of the License, or
  7. * (at your option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program; if not, write to the Free Software
  16. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  17. *
  18. * Copyright (C) IBM Corporation, 2004
  19. *
  20. * Authors: Max Asböck <amax@us.ibm.com>
  21. * Vernon Mauery <vernux@us.ibm.com>
  22. *
  23. */
  24. /* Remote mouse and keyboard event handling functions */
  25. #include <linux/pci.h>
  26. #include "ibmasm.h"
  27. #include "remote.h"
  28. static int xmax = 1600;
  29. static int ymax = 1200;
  30. static unsigned short xlate_high[XLATE_SIZE] = {
  31. [KEY_SYM_ENTER & 0xff] = KEY_ENTER,
  32. [KEY_SYM_KPSLASH & 0xff] = KEY_KPSLASH,
  33. [KEY_SYM_KPSTAR & 0xff] = KEY_KPASTERISK,
  34. [KEY_SYM_KPMINUS & 0xff] = KEY_KPMINUS,
  35. [KEY_SYM_KPDOT & 0xff] = KEY_KPDOT,
  36. [KEY_SYM_KPPLUS & 0xff] = KEY_KPPLUS,
  37. [KEY_SYM_KP0 & 0xff] = KEY_KP0,
  38. [KEY_SYM_KP1 & 0xff] = KEY_KP1,
  39. [KEY_SYM_KP2 & 0xff] = KEY_KP2, [KEY_SYM_KPDOWN & 0xff] = KEY_KP2,
  40. [KEY_SYM_KP3 & 0xff] = KEY_KP3,
  41. [KEY_SYM_KP4 & 0xff] = KEY_KP4, [KEY_SYM_KPLEFT & 0xff] = KEY_KP4,
  42. [KEY_SYM_KP5 & 0xff] = KEY_KP5,
  43. [KEY_SYM_KP6 & 0xff] = KEY_KP6, [KEY_SYM_KPRIGHT & 0xff] = KEY_KP6,
  44. [KEY_SYM_KP7 & 0xff] = KEY_KP7,
  45. [KEY_SYM_KP8 & 0xff] = KEY_KP8, [KEY_SYM_KPUP & 0xff] = KEY_KP8,
  46. [KEY_SYM_KP9 & 0xff] = KEY_KP9,
  47. [KEY_SYM_BK_SPC & 0xff] = KEY_BACKSPACE,
  48. [KEY_SYM_TAB & 0xff] = KEY_TAB,
  49. [KEY_SYM_CTRL & 0xff] = KEY_LEFTCTRL,
  50. [KEY_SYM_ALT & 0xff] = KEY_LEFTALT,
  51. [KEY_SYM_INSERT & 0xff] = KEY_INSERT,
  52. [KEY_SYM_DELETE & 0xff] = KEY_DELETE,
  53. [KEY_SYM_SHIFT & 0xff] = KEY_LEFTSHIFT,
  54. [KEY_SYM_UARROW & 0xff] = KEY_UP,
  55. [KEY_SYM_DARROW & 0xff] = KEY_DOWN,
  56. [KEY_SYM_LARROW & 0xff] = KEY_LEFT,
  57. [KEY_SYM_RARROW & 0xff] = KEY_RIGHT,
  58. [KEY_SYM_ESCAPE & 0xff] = KEY_ESC,
  59. [KEY_SYM_PAGEUP & 0xff] = KEY_PAGEUP,
  60. [KEY_SYM_PAGEDOWN & 0xff] = KEY_PAGEDOWN,
  61. [KEY_SYM_HOME & 0xff] = KEY_HOME,
  62. [KEY_SYM_END & 0xff] = KEY_END,
  63. [KEY_SYM_F1 & 0xff] = KEY_F1,
  64. [KEY_SYM_F2 & 0xff] = KEY_F2,
  65. [KEY_SYM_F3 & 0xff] = KEY_F3,
  66. [KEY_SYM_F4 & 0xff] = KEY_F4,
  67. [KEY_SYM_F5 & 0xff] = KEY_F5,
  68. [KEY_SYM_F6 & 0xff] = KEY_F6,
  69. [KEY_SYM_F7 & 0xff] = KEY_F7,
  70. [KEY_SYM_F8 & 0xff] = KEY_F8,
  71. [KEY_SYM_F9 & 0xff] = KEY_F9,
  72. [KEY_SYM_F10 & 0xff] = KEY_F10,
  73. [KEY_SYM_F11 & 0xff] = KEY_F11,
  74. [KEY_SYM_F12 & 0xff] = KEY_F12,
  75. [KEY_SYM_CAP_LOCK & 0xff] = KEY_CAPSLOCK,
  76. [KEY_SYM_NUM_LOCK & 0xff] = KEY_NUMLOCK,
  77. [KEY_SYM_SCR_LOCK & 0xff] = KEY_SCROLLLOCK,
  78. };
  79. static unsigned short xlate[XLATE_SIZE] = {
  80. [NO_KEYCODE] = KEY_RESERVED,
  81. [KEY_SYM_SPACE] = KEY_SPACE,
  82. [KEY_SYM_TILDE] = KEY_GRAVE, [KEY_SYM_BKTIC] = KEY_GRAVE,
  83. [KEY_SYM_ONE] = KEY_1, [KEY_SYM_BANG] = KEY_1,
  84. [KEY_SYM_TWO] = KEY_2, [KEY_SYM_AT] = KEY_2,
  85. [KEY_SYM_THREE] = KEY_3, [KEY_SYM_POUND] = KEY_3,
  86. [KEY_SYM_FOUR] = KEY_4, [KEY_SYM_DOLLAR] = KEY_4,
  87. [KEY_SYM_FIVE] = KEY_5, [KEY_SYM_PERCENT] = KEY_5,
  88. [KEY_SYM_SIX] = KEY_6, [KEY_SYM_CARAT] = KEY_6,
  89. [KEY_SYM_SEVEN] = KEY_7, [KEY_SYM_AMPER] = KEY_7,
  90. [KEY_SYM_EIGHT] = KEY_8, [KEY_SYM_STAR] = KEY_8,
  91. [KEY_SYM_NINE] = KEY_9, [KEY_SYM_LPAREN] = KEY_9,
  92. [KEY_SYM_ZERO] = KEY_0, [KEY_SYM_RPAREN] = KEY_0,
  93. [KEY_SYM_MINUS] = KEY_MINUS, [KEY_SYM_USCORE] = KEY_MINUS,
  94. [KEY_SYM_EQUAL] = KEY_EQUAL, [KEY_SYM_PLUS] = KEY_EQUAL,
  95. [KEY_SYM_LBRKT] = KEY_LEFTBRACE, [KEY_SYM_LCURLY] = KEY_LEFTBRACE,
  96. [KEY_SYM_RBRKT] = KEY_RIGHTBRACE, [KEY_SYM_RCURLY] = KEY_RIGHTBRACE,
  97. [KEY_SYM_SLASH] = KEY_BACKSLASH, [KEY_SYM_PIPE] = KEY_BACKSLASH,
  98. [KEY_SYM_TIC] = KEY_APOSTROPHE, [KEY_SYM_QUOTE] = KEY_APOSTROPHE,
  99. [KEY_SYM_SEMIC] = KEY_SEMICOLON, [KEY_SYM_COLON] = KEY_SEMICOLON,
  100. [KEY_SYM_COMMA] = KEY_COMMA, [KEY_SYM_LT] = KEY_COMMA,
  101. [KEY_SYM_PERIOD] = KEY_DOT, [KEY_SYM_GT] = KEY_DOT,
  102. [KEY_SYM_BSLASH] = KEY_SLASH, [KEY_SYM_QMARK] = KEY_SLASH,
  103. [KEY_SYM_A] = KEY_A, [KEY_SYM_a] = KEY_A,
  104. [KEY_SYM_B] = KEY_B, [KEY_SYM_b] = KEY_B,
  105. [KEY_SYM_C] = KEY_C, [KEY_SYM_c] = KEY_C,
  106. [KEY_SYM_D] = KEY_D, [KEY_SYM_d] = KEY_D,
  107. [KEY_SYM_E] = KEY_E, [KEY_SYM_e] = KEY_E,
  108. [KEY_SYM_F] = KEY_F, [KEY_SYM_f] = KEY_F,
  109. [KEY_SYM_G] = KEY_G, [KEY_SYM_g] = KEY_G,
  110. [KEY_SYM_H] = KEY_H, [KEY_SYM_h] = KEY_H,
  111. [KEY_SYM_I] = KEY_I, [KEY_SYM_i] = KEY_I,
  112. [KEY_SYM_J] = KEY_J, [KEY_SYM_j] = KEY_J,
  113. [KEY_SYM_K] = KEY_K, [KEY_SYM_k] = KEY_K,
  114. [KEY_SYM_L] = KEY_L, [KEY_SYM_l] = KEY_L,
  115. [KEY_SYM_M] = KEY_M, [KEY_SYM_m] = KEY_M,
  116. [KEY_SYM_N] = KEY_N, [KEY_SYM_n] = KEY_N,
  117. [KEY_SYM_O] = KEY_O, [KEY_SYM_o] = KEY_O,
  118. [KEY_SYM_P] = KEY_P, [KEY_SYM_p] = KEY_P,
  119. [KEY_SYM_Q] = KEY_Q, [KEY_SYM_q] = KEY_Q,
  120. [KEY_SYM_R] = KEY_R, [KEY_SYM_r] = KEY_R,
  121. [KEY_SYM_S] = KEY_S, [KEY_SYM_s] = KEY_S,
  122. [KEY_SYM_T] = KEY_T, [KEY_SYM_t] = KEY_T,
  123. [KEY_SYM_U] = KEY_U, [KEY_SYM_u] = KEY_U,
  124. [KEY_SYM_V] = KEY_V, [KEY_SYM_v] = KEY_V,
  125. [KEY_SYM_W] = KEY_W, [KEY_SYM_w] = KEY_W,
  126. [KEY_SYM_X] = KEY_X, [KEY_SYM_x] = KEY_X,
  127. [KEY_SYM_Y] = KEY_Y, [KEY_SYM_y] = KEY_Y,
  128. [KEY_SYM_Z] = KEY_Z, [KEY_SYM_z] = KEY_Z,
  129. };
  130. static char remote_mouse_name[] = "ibmasm RSA I remote mouse";
  131. static char remote_keybd_name[] = "ibmasm RSA I remote keyboard";
  132. static void print_input(struct remote_input *input)
  133. {
  134. if (input->type == INPUT_TYPE_MOUSE) {
  135. unsigned char buttons = input->mouse_buttons;
  136. dbg("remote mouse movement: (x,y)=(%d,%d)%s%s%s%s\n",
  137. input->data.mouse.x, input->data.mouse.y,
  138. (buttons)?" -- buttons:":"",
  139. (buttons & REMOTE_BUTTON_LEFT)?"left ":"",
  140. (buttons & REMOTE_BUTTON_MIDDLE)?"middle ":"",
  141. (buttons & REMOTE_BUTTON_RIGHT)?"right":""
  142. );
  143. } else {
  144. dbg("remote keypress (code, flag, down):"
  145. "%d (0x%x) [0x%x] [0x%x]\n",
  146. input->data.keyboard.key_code,
  147. input->data.keyboard.key_code,
  148. input->data.keyboard.key_flag,
  149. input->data.keyboard.key_down
  150. );
  151. }
  152. }
  153. static void send_mouse_event(struct input_dev *dev, struct pt_regs *regs,
  154. struct remote_input *input)
  155. {
  156. unsigned char buttons = input->mouse_buttons;
  157. input_regs(dev, regs);
  158. input_report_abs(dev, ABS_X, input->data.mouse.x);
  159. input_report_abs(dev, ABS_Y, input->data.mouse.y);
  160. input_report_key(dev, BTN_LEFT, buttons & REMOTE_BUTTON_LEFT);
  161. input_report_key(dev, BTN_MIDDLE, buttons & REMOTE_BUTTON_MIDDLE);
  162. input_report_key(dev, BTN_RIGHT, buttons & REMOTE_BUTTON_RIGHT);
  163. input_sync(dev);
  164. }
  165. static void send_keyboard_event(struct input_dev *dev, struct pt_regs *regs,
  166. struct remote_input *input)
  167. {
  168. unsigned int key;
  169. unsigned short code = input->data.keyboard.key_code;
  170. if (code & 0xff00)
  171. key = xlate_high[code & 0xff];
  172. else
  173. key = xlate[code];
  174. input_regs(dev, regs);
  175. input_report_key(dev, key, (input->data.keyboard.key_down) ? 1 : 0);
  176. input_sync(dev);
  177. }
  178. void ibmasm_handle_mouse_interrupt(struct service_processor *sp,
  179. struct pt_regs *regs)
  180. {
  181. unsigned long reader;
  182. unsigned long writer;
  183. struct remote_input input;
  184. reader = get_queue_reader(sp);
  185. writer = get_queue_writer(sp);
  186. while (reader != writer) {
  187. memcpy_fromio(&input, get_queue_entry(sp, reader),
  188. sizeof(struct remote_input));
  189. print_input(&input);
  190. if (input.type == INPUT_TYPE_MOUSE) {
  191. send_mouse_event(sp->remote.mouse_dev, regs, &input);
  192. } else if (input.type == INPUT_TYPE_KEYBOARD) {
  193. send_keyboard_event(sp->remote.keybd_dev, regs, &input);
  194. } else
  195. break;
  196. reader = advance_queue_reader(sp, reader);
  197. writer = get_queue_writer(sp);
  198. }
  199. }
  200. int ibmasm_init_remote_input_dev(struct service_processor *sp)
  201. {
  202. /* set up the mouse input device */
  203. struct input_dev *mouse_dev, *keybd_dev;
  204. struct pci_dev *pdev = to_pci_dev(sp->dev);
  205. int error = -ENOMEM;
  206. int i;
  207. sp->remote.mouse_dev = mouse_dev = input_allocate_device();
  208. sp->remote.keybd_dev = keybd_dev = input_allocate_device();
  209. if (!mouse_dev || !keybd_dev)
  210. goto err_free_devices;
  211. mouse_dev->id.bustype = BUS_PCI;
  212. mouse_dev->id.vendor = pdev->vendor;
  213. mouse_dev->id.product = pdev->device;
  214. mouse_dev->id.version = 1;
  215. mouse_dev->evbit[0] = BIT(EV_KEY) | BIT(EV_ABS);
  216. mouse_dev->keybit[LONG(BTN_MOUSE)] = BIT(BTN_LEFT) |
  217. BIT(BTN_RIGHT) | BIT(BTN_MIDDLE);
  218. set_bit(BTN_TOUCH, mouse_dev->keybit);
  219. mouse_dev->name = remote_mouse_name;
  220. input_set_abs_params(mouse_dev, ABS_X, 0, xmax, 0, 0);
  221. input_set_abs_params(mouse_dev, ABS_Y, 0, ymax, 0, 0);
  222. mouse_dev->id.bustype = BUS_PCI;
  223. keybd_dev->id.vendor = pdev->vendor;
  224. keybd_dev->id.product = pdev->device;
  225. mouse_dev->id.version = 2;
  226. keybd_dev->evbit[0] = BIT(EV_KEY);
  227. keybd_dev->name = remote_keybd_name;
  228. for (i = 0; i < XLATE_SIZE; i++) {
  229. if (xlate_high[i])
  230. set_bit(xlate_high[i], keybd_dev->keybit);
  231. if (xlate[i])
  232. set_bit(xlate[i], keybd_dev->keybit);
  233. }
  234. error = input_register_device(mouse_dev);
  235. if (error)
  236. goto err_free_devices;
  237. error = input_register_device(keybd_dev);
  238. if (error)
  239. goto err_unregister_mouse_dev;
  240. enable_mouse_interrupts(sp);
  241. printk(KERN_INFO "ibmasm remote responding to events on RSA card %d\n", sp->number);
  242. return 0;
  243. err_unregister_mouse_dev:
  244. input_unregister_device(mouse_dev);
  245. mouse_dev = NULL; /* so we don't try to free it again below */
  246. err_free_devices:
  247. input_free_device(mouse_dev);
  248. input_free_device(keybd_dev);
  249. return error;
  250. }
  251. void ibmasm_free_remote_input_dev(struct service_processor *sp)
  252. {
  253. disable_mouse_interrupts(sp);
  254. input_unregister_device(sp->remote.mouse_dev);
  255. input_unregister_device(sp->remote.keybd_dev);
  256. }