alps.h 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /*
  2. * ALPS touchpad PS/2 mouse driver
  3. *
  4. * Copyright (c) 2003 Peter Osterlund <petero2@telia.com>
  5. * Copyright (c) 2005 Vojtech Pavlik <vojtech@suse.cz>
  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. #ifndef _ALPS_H
  12. #define _ALPS_H
  13. #define ALPS_PROTO_V1 0
  14. #define ALPS_PROTO_V2 1
  15. #define ALPS_PROTO_V3 2
  16. #define ALPS_PROTO_V4 3
  17. struct alps_model_info {
  18. unsigned char signature[3];
  19. unsigned char command_mode_resp; /* v3/v4 only */
  20. unsigned char proto_version;
  21. unsigned char byte0, mask0;
  22. unsigned char flags;
  23. };
  24. struct alps_nibble_commands {
  25. int command;
  26. unsigned char data;
  27. };
  28. struct alps_data {
  29. struct input_dev *dev2; /* Relative device */
  30. char phys[32]; /* Phys */
  31. const struct alps_model_info *i;/* Info */
  32. const struct alps_nibble_commands *nibble_commands;
  33. int addr_command; /* Command to set register address */
  34. int prev_fin; /* Finger bit from previous packet */
  35. int multi_packet; /* Multi-packet data in progress */
  36. unsigned char multi_data[6]; /* Saved multi-packet data */
  37. u8 quirks;
  38. struct timer_list timer;
  39. };
  40. #define ALPS_QUIRK_TRACKSTICK_BUTTONS 1 /* trakcstick buttons in trackstick packet */
  41. #ifdef CONFIG_MOUSE_PS2_ALPS
  42. int alps_detect(struct psmouse *psmouse, bool set_properties);
  43. int alps_init(struct psmouse *psmouse);
  44. #else
  45. inline int alps_detect(struct psmouse *psmouse, bool set_properties)
  46. {
  47. return -ENOSYS;
  48. }
  49. inline int alps_init(struct psmouse *psmouse)
  50. {
  51. return -ENOSYS;
  52. }
  53. #endif /* CONFIG_MOUSE_PS2_ALPS */
  54. #endif