blob: 704f0f9243076190213b1c1876ef833348e61c99 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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
12#ifndef _ALPS_H
13#define _ALPS_H
14
Kevin Cernekeeb5d6b852013-02-13 22:19:59 -080015#define ALPS_PROTO_V1 1
16#define ALPS_PROTO_V2 2
17#define ALPS_PROTO_V3 3
18#define ALPS_PROTO_V4 4
Dave Turvene75af9e52013-02-21 22:58:28 -080019#define ALPS_PROTO_V5 5
Yunkang Tang95f75e92013-12-01 22:33:52 -080020#define ALPS_PROTO_V6 6
Seth Forsheefa629ef2011-11-07 19:53:24 -080021
Kevin Cernekee88a803482013-02-13 20:55:19 -080022/**
23 * struct alps_model_info - touchpad ID table
24 * @signature: E7 response string to match.
25 * @command_mode_resp: For V3/V4 touchpads, the final byte of the EC response
26 * (aka command mode response) identifies the firmware minor version. This
27 * can be used to distinguish different hardware models which are not
28 * uniquely identifiable through their E7 responses.
29 * @proto_version: Indicates V1/V2/V3/...
30 * @byte0: Helps figure out whether a position report packet matches the
31 * known format for this model. The first byte of the report, ANDed with
32 * mask0, should match byte0.
33 * @mask0: The mask used to check the first byte of the report.
34 * @flags: Additional device capabilities (passthrough port, trackstick, etc.).
35 *
36 * Many (but not all) ALPS touchpads can be identified by looking at the
37 * values returned in the "E7 report" and/or the "EC report." This table
38 * lists a number of such touchpads.
39 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070040struct alps_model_info {
Kevin Cernekee88a803482013-02-13 20:55:19 -080041 unsigned char signature[3];
42 unsigned char command_mode_resp;
Seth Forsheefa629ef2011-11-07 19:53:24 -080043 unsigned char proto_version;
Kevin Cernekee88a803482013-02-13 20:55:19 -080044 unsigned char byte0, mask0;
45 unsigned char flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -070046};
47
Kevin Cernekee88a803482013-02-13 20:55:19 -080048/**
49 * struct alps_nibble_commands - encodings for register accesses
50 * @command: PS/2 command used for the nibble
51 * @data: Data supplied as an argument to the PS/2 command, if applicable
52 *
53 * The ALPS protocol uses magic sequences to transmit binary data to the
54 * touchpad, as it is generally not OK to send arbitrary bytes out the
55 * PS/2 port. Each of the sequences in this table sends one nibble of the
56 * register address or (write) data. Different versions of the ALPS protocol
57 * use slightly different encodings.
58 */
Seth Forshee25bded72011-11-07 19:53:36 -080059struct alps_nibble_commands {
60 int command;
61 unsigned char data;
62};
63
Kevin Cernekee88a803482013-02-13 20:55:19 -080064/**
Kevin Cernekeef85e5002013-02-13 22:26:11 -080065 * struct alps_fields - decoded version of the report packet
66 * @x_map: Bitmap of active X positions for MT.
67 * @y_map: Bitmap of active Y positions for MT.
68 * @fingers: Number of fingers for MT.
69 * @x: X position for ST.
70 * @y: Y position for ST.
71 * @z: Z position for ST.
72 * @first_mp: Packet is the first of a multi-packet report.
73 * @is_mp: Packet is part of a multi-packet report.
74 * @left: Left touchpad button is active.
75 * @right: Right touchpad button is active.
76 * @middle: Middle touchpad button is active.
77 * @ts_left: Left trackstick button is active.
78 * @ts_right: Right trackstick button is active.
79 * @ts_middle: Middle trackstick button is active.
80 */
81struct alps_fields {
82 unsigned int x_map;
83 unsigned int y_map;
84 unsigned int fingers;
85 unsigned int x;
86 unsigned int y;
87 unsigned int z;
88 unsigned int first_mp:1;
89 unsigned int is_mp:1;
90
91 unsigned int left:1;
92 unsigned int right:1;
93 unsigned int middle:1;
94
95 unsigned int ts_left:1;
96 unsigned int ts_right:1;
97 unsigned int ts_middle:1;
98};
99
100/**
Kevin Cernekee88a803482013-02-13 20:55:19 -0800101 * struct alps_data - private data structure for the ALPS driver
102 * @dev2: "Relative" device used to report trackstick or mouse activity.
103 * @phys: Physical path for the relative device.
Kevin Cernekee88a803482013-02-13 20:55:19 -0800104 * @nibble_commands: Command mapping used for touchpad register accesses.
105 * @addr_command: Command used to tell the touchpad that a register address
106 * follows.
Kevin Cernekee99df65e2013-02-13 20:56:33 -0800107 * @proto_version: Indicates V1/V2/V3/...
108 * @byte0: Helps figure out whether a position report packet matches the
109 * known format for this model. The first byte of the report, ANDed with
110 * mask0, should match byte0.
111 * @mask0: The mask used to check the first byte of the report.
112 * @flags: Additional device capabilities (passthrough port, trackstick, etc.).
Kevin Cernekee7a9f73e2013-02-13 22:24:55 -0800113 * @x_max: Largest possible X position value.
114 * @y_max: Largest possible Y position value.
115 * @x_bits: Number of X bits in the MT bitmap.
116 * @y_bits: Number of Y bits in the MT bitmap.
Kevin Cernekee24af5cb2013-02-13 22:22:08 -0800117 * @hw_init: Protocol-specific hardware init function.
118 * @process_packet: Protocol-specific function to process a report packet.
Kevin Cernekeef85e5002013-02-13 22:26:11 -0800119 * @decode_fields: Protocol-specific function to read packet bitfields.
Kevin Cernekee24af5cb2013-02-13 22:22:08 -0800120 * @set_abs_params: Protocol-specific function to configure the input_dev.
Kevin Cernekee88a803482013-02-13 20:55:19 -0800121 * @prev_fin: Finger bit from previous packet.
122 * @multi_packet: Multi-packet data in progress.
123 * @multi_data: Saved multi-packet data.
124 * @x1: First X coordinate from last MT report.
125 * @x2: Second X coordinate from last MT report.
126 * @y1: First Y coordinate from last MT report.
127 * @y2: Second Y coordinate from last MT report.
128 * @fingers: Number of fingers from last MT report.
129 * @quirks: Bitmap of ALPS_QUIRK_*.
130 * @timer: Timer for flushing out the final report packet in the stream.
131 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132struct alps_data {
Kevin Cernekee88a803482013-02-13 20:55:19 -0800133 struct input_dev *dev2;
134 char phys[32];
Kevin Cernekee99df65e2013-02-13 20:56:33 -0800135
136 /* these are autodetected when the device is identified */
Seth Forshee25bded72011-11-07 19:53:36 -0800137 const struct alps_nibble_commands *nibble_commands;
Kevin Cernekee88a803482013-02-13 20:55:19 -0800138 int addr_command;
Kevin Cernekee99df65e2013-02-13 20:56:33 -0800139 unsigned char proto_version;
140 unsigned char byte0, mask0;
141 unsigned char flags;
Kevin Cernekee7a9f73e2013-02-13 22:24:55 -0800142 int x_max;
143 int y_max;
144 int x_bits;
145 int y_bits;
Kevin Cernekee99df65e2013-02-13 20:56:33 -0800146
Kevin Cernekee24af5cb2013-02-13 22:22:08 -0800147 int (*hw_init)(struct psmouse *psmouse);
148 void (*process_packet)(struct psmouse *psmouse);
Kevin Cernekeef85e5002013-02-13 22:26:11 -0800149 void (*decode_fields)(struct alps_fields *f, unsigned char *p);
Kevin Cernekee24af5cb2013-02-13 22:22:08 -0800150 void (*set_abs_params)(struct alps_data *priv, struct input_dev *dev1);
151
Kevin Cernekee88a803482013-02-13 20:55:19 -0800152 int prev_fin;
153 int multi_packet;
154 unsigned char multi_data[6];
155 int x1, x2, y1, y2;
156 int fingers;
Seth Forshee25bded72011-11-07 19:53:36 -0800157 u8 quirks;
Sebastian Kapfer1d9f2622009-12-15 08:39:50 -0800158 struct timer_list timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159};
160
Seth Forshee25bded72011-11-07 19:53:36 -0800161#define ALPS_QUIRK_TRACKSTICK_BUTTONS 1 /* trakcstick buttons in trackstick packet */
162
Andres Salomon55e3d922007-03-10 01:39:54 -0500163#ifdef CONFIG_MOUSE_PS2_ALPS
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700164int alps_detect(struct psmouse *psmouse, bool set_properties);
Andres Salomon55e3d922007-03-10 01:39:54 -0500165int alps_init(struct psmouse *psmouse);
166#else
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700167inline int alps_detect(struct psmouse *psmouse, bool set_properties)
Andres Salomon55e3d922007-03-10 01:39:54 -0500168{
169 return -ENOSYS;
170}
171inline int alps_init(struct psmouse *psmouse)
172{
173 return -ENOSYS;
174}
175#endif /* CONFIG_MOUSE_PS2_ALPS */
176
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177#endif