2 * Copyright (c) 2011-2015 Synaptics Incorporated
3 * Copyright (c) 2011 Unixphere
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 as published by
7 * the Free Software Foundation.
10 #include <linux/kernel.h>
11 #include <linux/delay.h>
12 #include <linux/device.h>
13 #include <linux/input.h>
14 #include <linux/input/mt.h>
15 #include <linux/kconfig.h>
16 #include <linux/rmi.h>
17 #include <linux/slab.h>
19 #include "rmi_driver.h"
20 #include "rmi_2d_sensor.h"
22 #define F11_MAX_NUM_OF_FINGERS 10
23 #define F11_MAX_NUM_OF_TOUCH_SHAPES 16
25 #define FINGER_STATE_MASK 0x03
27 #define F11_CTRL_SENSOR_MAX_X_POS_OFFSET 6
28 #define F11_CTRL_SENSOR_MAX_Y_POS_OFFSET 8
30 #define DEFAULT_XY_MAX 9999
31 #define DEFAULT_MAX_ABS_MT_PRESSURE 255
32 #define DEFAULT_MAX_ABS_MT_TOUCH 15
33 #define DEFAULT_MAX_ABS_MT_ORIENTATION 1
34 #define DEFAULT_MIN_ABS_MT_TRACKING_ID 1
35 #define DEFAULT_MAX_ABS_MT_TRACKING_ID 10
37 /** A note about RMI4 F11 register structure.
40 * a given sensor are described by its query registers. The number of query
41 * registers and the layout of their contents are described by the F11 device
42 * queries as well as the sensor query information.
44 * Similarly, each sensor has control registers that govern its behavior. The
45 * size and layout of the control registers for a given sensor can be determined
46 * by parsing that sensors query registers.
48 * And in a likewise fashion, each sensor has data registers where it reports
49 * its touch data and other interesting stuff. The size and layout of a
50 * sensors data registers must be determined by parsing its query registers.
52 * The short story is that we need to read and parse a lot of query
53 * registers in order to determine the attributes of a sensor. Then
54 * we need to use that data to compute the size of the control and data
55 * registers for sensor.
57 * The end result is that we have a number of structs that aren't used to
58 * directly generate the input events, but their size, location and contents
59 * are critical to determining where the data we are interested in lives.
61 * At this time, the driver does not yet comprehend all possible F11
62 * configuration options, but it should be sufficient to cover 99% of RMI4 F11
63 * devices currently in the field.
66 /* maximum ABS_MT_POSITION displacement (in mm) */
70 * @rezero - writing this to the F11 command register will cause the sensor to
71 * calibrate to the current capacitive state.
73 #define RMI_F11_REZERO 0x01
75 #define RMI_F11_HAS_QUERY9 (1 << 3)
76 #define RMI_F11_HAS_QUERY11 (1 << 4)
77 #define RMI_F11_HAS_QUERY12 (1 << 5)
78 #define RMI_F11_HAS_QUERY27 (1 << 6)
79 #define RMI_F11_HAS_QUERY28 (1 << 7)
81 /** Defs for Query 1 */
83 #define RMI_F11_NR_FINGERS_MASK 0x07
84 #define RMI_F11_HAS_REL (1 << 3)
85 #define RMI_F11_HAS_ABS (1 << 4)
86 #define RMI_F11_HAS_GESTURES (1 << 5)
87 #define RMI_F11_HAS_SENSITIVITY_ADJ (1 << 6)
88 #define RMI_F11_CONFIGURABLE (1 << 7)
90 /** Defs for Query 2, 3, and 4. */
91 #define RMI_F11_NR_ELECTRODES_MASK 0x7F
93 /** Defs for Query 5 */
95 #define RMI_F11_ABS_DATA_SIZE_MASK 0x03
96 #define RMI_F11_HAS_ANCHORED_FINGER (1 << 2)
97 #define RMI_F11_HAS_ADJ_HYST (1 << 3)
98 #define RMI_F11_HAS_DRIBBLE (1 << 4)
99 #define RMI_F11_HAS_BENDING_CORRECTION (1 << 5)
100 #define RMI_F11_HAS_LARGE_OBJECT_SUPPRESSION (1 << 6)
101 #define RMI_F11_HAS_JITTER_FILTER (1 << 7)
103 /** Defs for Query 7 */
104 #define RMI_F11_HAS_SINGLE_TAP (1 << 0)
105 #define RMI_F11_HAS_TAP_AND_HOLD (1 << 1)
106 #define RMI_F11_HAS_DOUBLE_TAP (1 << 2)
107 #define RMI_F11_HAS_EARLY_TAP (1 << 3)
108 #define RMI_F11_HAS_FLICK (1 << 4)
109 #define RMI_F11_HAS_PRESS (1 << 5)
110 #define RMI_F11_HAS_PINCH (1 << 6)
111 #define RMI_F11_HAS_CHIRAL (1 << 7)
113 /** Defs for Query 8 */
114 #define RMI_F11_HAS_PALM_DET (1 << 0)
115 #define RMI_F11_HAS_ROTATE (1 << 1)
116 #define RMI_F11_HAS_TOUCH_SHAPES (1 << 2)
117 #define RMI_F11_HAS_SCROLL_ZONES (1 << 3)
118 #define RMI_F11_HAS_INDIVIDUAL_SCROLL_ZONES (1 << 4)
119 #define RMI_F11_HAS_MF_SCROLL (1 << 5)
120 #define RMI_F11_HAS_MF_EDGE_MOTION (1 << 6)
121 #define RMI_F11_HAS_MF_SCROLL_INERTIA (1 << 7)
123 /** Defs for Query 9. */
124 #define RMI_F11_HAS_PEN (1 << 0)
125 #define RMI_F11_HAS_PROXIMITY (1 << 1)
126 #define RMI_F11_HAS_PALM_DET_SENSITIVITY (1 << 2)
127 #define RMI_F11_HAS_SUPPRESS_ON_PALM_DETECT (1 << 3)
128 #define RMI_F11_HAS_TWO_PEN_THRESHOLDS (1 << 4)
129 #define RMI_F11_HAS_CONTACT_GEOMETRY (1 << 5)
130 #define RMI_F11_HAS_PEN_HOVER_DISCRIMINATION (1 << 6)
131 #define RMI_F11_HAS_PEN_FILTERS (1 << 7)
133 /** Defs for Query 10. */
134 #define RMI_F11_NR_TOUCH_SHAPES_MASK 0x1F
136 /** Defs for Query 11 */
138 #define RMI_F11_HAS_Z_TUNING (1 << 0)
139 #define RMI_F11_HAS_ALGORITHM_SELECTION (1 << 1)
140 #define RMI_F11_HAS_W_TUNING (1 << 2)
141 #define RMI_F11_HAS_PITCH_INFO (1 << 3)
142 #define RMI_F11_HAS_FINGER_SIZE (1 << 4)
143 #define RMI_F11_HAS_SEGMENTATION_AGGRESSIVENESS (1 << 5)
144 #define RMI_F11_HAS_XY_CLIP (1 << 6)
145 #define RMI_F11_HAS_DRUMMING_FILTER (1 << 7)
147 /** Defs for Query 12. */
149 #define RMI_F11_HAS_GAPLESS_FINGER (1 << 0)
150 #define RMI_F11_HAS_GAPLESS_FINGER_TUNING (1 << 1)
151 #define RMI_F11_HAS_8BIT_W (1 << 2)
152 #define RMI_F11_HAS_ADJUSTABLE_MAPPING (1 << 3)
153 #define RMI_F11_HAS_INFO2 (1 << 4)
154 #define RMI_F11_HAS_PHYSICAL_PROPS (1 << 5)
155 #define RMI_F11_HAS_FINGER_LIMIT (1 << 6)
156 #define RMI_F11_HAS_LINEAR_COEFF (1 << 7)
158 /** Defs for Query 13. */
160 #define RMI_F11_JITTER_WINDOW_MASK 0x1F
161 #define RMI_F11_JITTER_FILTER_MASK 0x60
162 #define RMI_F11_JITTER_FILTER_SHIFT 5
164 /** Defs for Query 14. */
165 #define RMI_F11_LIGHT_CONTROL_MASK 0x03
166 #define RMI_F11_IS_CLEAR (1 << 2)
167 #define RMI_F11_CLICKPAD_PROPS_MASK 0x18
168 #define RMI_F11_CLICKPAD_PROPS_SHIFT 3
169 #define RMI_F11_MOUSE_BUTTONS_MASK 0x60
170 #define RMI_F11_MOUSE_BUTTONS_SHIFT 5
171 #define RMI_F11_HAS_ADVANCED_GESTURES (1 << 7)
173 #define RMI_F11_QUERY_SIZE 4
174 #define RMI_F11_QUERY_GESTURE_SIZE 2
176 #define F11_LIGHT_CTL_NONE 0x00
177 #define F11_LUXPAD 0x01
178 #define F11_DUAL_MODE 0x02
180 #define F11_NOT_CLICKPAD 0x00
181 #define F11_HINGED_CLICKPAD 0x01
182 #define F11_UNIFORM_CLICKPAD 0x02
185 * Query registers 1 through 4 are always present.
187 * @nr_fingers - describes the maximum number of fingers the 2-D sensor
189 * @has_rel - the sensor supports relative motion reporting.
190 * @has_abs - the sensor supports absolute poition reporting.
191 * @has_gestures - the sensor supports gesture reporting.
192 * @has_sensitivity_adjust - the sensor supports a global sensitivity
194 * @configurable - the sensor supports various configuration options.
195 * @num_of_x_electrodes - the maximum number of electrodes the 2-D sensor
196 * supports on the X axis.
197 * @num_of_y_electrodes - the maximum number of electrodes the 2-D sensor
198 * supports on the Y axis.
199 * @max_electrodes - the total number of X and Y electrodes that may be
202 * Query 5 is present if the has_abs bit is set.
204 * @abs_data_size - describes the format of data reported by the absolute
205 * data source. Only one format (the kind used here) is supported at this
207 * @has_anchored_finger - then the sensor supports the high-precision second
208 * finger tracking provided by the manual tracking and motion sensitivity
210 * @has_adjust_hyst - the difference between the finger release threshold and
211 * the touch threshold.
212 * @has_dribble - the sensor supports the generation of dribble interrupts,
213 * which may be enabled or disabled with the dribble control bit.
214 * @has_bending_correction - Bending related data registers 28 and 36, and
215 * control register 52..57 are present.
216 * @has_large_object_suppression - control register 58 and data register 28
218 * @has_jitter_filter - query 13 and control 73..76 exist.
220 * Gesture information queries 7 and 8 are present if has_gestures bit is set.
222 * @has_single_tap - a basic single-tap gesture is supported.
223 * @has_tap_n_hold - tap-and-hold gesture is supported.
224 * @has_double_tap - double-tap gesture is supported.
225 * @has_early_tap - early tap is supported and reported as soon as the finger
226 * lifts for any tap event that could be interpreted as either a single tap
227 * or as the first tap of a double-tap or tap-and-hold gesture.
228 * @has_flick - flick detection is supported.
229 * @has_press - press gesture reporting is supported.
230 * @has_pinch - pinch gesture detection is supported.
231 * @has_palm_det - the 2-D sensor notifies the host whenever a large conductive
232 * object such as a palm or a cheek touches the 2-D sensor.
233 * @has_rotate - rotation gesture detection is supported.
234 * @has_touch_shapes - TouchShapes are supported. A TouchShape is a fixed
235 * rectangular area on the sensor that behaves like a capacitive button.
236 * @has_scroll_zones - scrolling areas near the sensor edges are supported.
237 * @has_individual_scroll_zones - if 1, then 4 scroll zones are supported;
238 * if 0, then only two are supported.
239 * @has_mf_scroll - the multifinger_scrolling bit will be set when
240 * more than one finger is involved in a scrolling action.
242 * Convenience for checking bytes in the gesture info registers. This is done
243 * often enough that we put it here to declutter the conditionals
245 * @query7_nonzero - true if none of the query 7 bits are set
246 * @query8_nonzero - true if none of the query 8 bits are set
248 * Query 9 is present if the has_query9 is set.
250 * @has_pen - detection of a stylus is supported and registers F11_2D_Ctrl20
251 * and F11_2D_Ctrl21 exist.
252 * @has_proximity - detection of fingers near the sensor is supported and
253 * registers F11_2D_Ctrl22 through F11_2D_Ctrl26 exist.
254 * @has_palm_det_sensitivity - the sensor supports the palm detect sensitivity
255 * feature and register F11_2D_Ctrl27 exists.
256 * @has_two_pen_thresholds - is has_pen is also set, then F11_2D_Ctrl35 exists.
257 * @has_contact_geometry - the sensor supports the use of contact geometry to
258 * map absolute X and Y target positions and registers F11_2D_Data18
259 * through F11_2D_Data27 exist.
261 * Touch shape info (query 10) is present if has_touch_shapes is set.
263 * @nr_touch_shapes - the total number of touch shapes supported.
265 * Query 11 is present if the has_query11 bit is set in query 0.
267 * @has_z_tuning - if set, the sensor supports Z tuning and registers
268 * F11_2D_Ctrl29 through F11_2D_Ctrl33 exist.
269 * @has_algorithm_selection - controls choice of noise suppression algorithm
270 * @has_w_tuning - the sensor supports Wx and Wy scaling and registers
271 * F11_2D_Ctrl36 through F11_2D_Ctrl39 exist.
272 * @has_pitch_info - the X and Y pitches of the sensor electrodes can be
273 * configured and registers F11_2D_Ctrl40 and F11_2D_Ctrl41 exist.
274 * @has_finger_size - the default finger width settings for the
275 * sensor can be configured and registers F11_2D_Ctrl42 through F11_2D_Ctrl44
277 * @has_segmentation_aggressiveness - the sensor’s ability to distinguish
278 * multiple objects close together can be configured and register F11_2D_Ctrl45
280 * @has_XY_clip - the inactive outside borders of the sensor can be
281 * configured and registers F11_2D_Ctrl46 through F11_2D_Ctrl49 exist.
282 * @has_drumming_filter - the sensor can be configured to distinguish
283 * between a fast flick and a quick drumming movement and registers
284 * F11_2D_Ctrl50 and F11_2D_Ctrl51 exist.
286 * Query 12 is present if hasQuery12 bit is set.
288 * @has_gapless_finger - control registers relating to gapless finger are
290 * @has_gapless_finger_tuning - additional control and data registers relating
291 * to gapless finger are present.
292 * @has_8bit_w - larger W value reporting is supported.
293 * @has_adjustable_mapping - TBD
294 * @has_info2 - the general info query14 is present
295 * @has_physical_props - additional queries describing the physical properties
296 * of the sensor are present.
297 * @has_finger_limit - indicates that F11 Ctrl 80 exists.
298 * @has_linear_coeff - indicates that F11 Ctrl 81 exists.
300 * Query 13 is present if Query 5's has_jitter_filter bit is set.
301 * @jitter_window_size - used by Design Studio 4.
302 * @jitter_filter_type - used by Design Studio 4.
304 * Query 14 is present if query 12's has_general_info2 flag is set.
306 * @light_control - Indicates what light/led control features are present, if
308 * @is_clear - if set, this is a clear sensor (indicating direct pointing
309 * application), otherwise it's opaque (indicating indirect pointing).
310 * @clickpad_props - specifies if this is a clickpad, and if so what sort of
312 * @mouse_buttons - specifies the number of mouse buttons present (if any).
313 * @has_advanced_gestures - advanced driver gestures are supported.
315 struct f11_2d_sensor_queries
{
321 bool has_sensitivity_adjust
;
335 bool has_anchored_finger
;
338 bool has_bending_correction
;
339 bool has_large_object_suppression
;
340 bool has_jitter_filter
;
359 bool has_touch_shapes
;
360 bool has_scroll_zones
;
361 bool has_individual_scroll_zones
;
363 bool has_mf_edge_motion
;
364 bool has_mf_scroll_inertia
;
371 bool has_palm_det_sensitivity
;
372 bool has_suppress_on_palm_detect
;
373 bool has_two_pen_thresholds
;
374 bool has_contact_geometry
;
375 bool has_pen_hover_discrimination
;
376 bool has_pen_filters
;
383 bool has_algorithm_selection
;
386 bool has_finger_size
;
387 bool has_segmentation_aggressiveness
;
389 bool has_drumming_filter
;
392 bool has_gapless_finger
;
393 bool has_gapless_finger_tuning
;
395 bool has_adjustable_mapping
;
397 bool has_physical_props
;
398 bool has_finger_limit
;
399 bool has_linear_coeff_2
;
402 u8 jitter_window_size
;
403 u8 jitter_filter_type
;
410 bool has_advanced_gestures
;
413 u16 x_sensor_size_mm
;
414 u16 y_sensor_size_mm
;
417 /* Defs for Ctrl0. */
418 #define RMI_F11_REPORT_MODE_MASK 0x07
419 #define RMI_F11_ABS_POS_FILT (1 << 3)
420 #define RMI_F11_REL_POS_FILT (1 << 4)
421 #define RMI_F11_REL_BALLISTICS (1 << 5)
422 #define RMI_F11_DRIBBLE (1 << 6)
423 #define RMI_F11_REPORT_BEYOND_CLIP (1 << 7)
425 /* Defs for Ctrl1. */
426 #define RMI_F11_PALM_DETECT_THRESH_MASK 0x0F
427 #define RMI_F11_MOTION_SENSITIVITY_MASK 0x30
428 #define RMI_F11_MANUAL_TRACKING (1 << 6)
429 #define RMI_F11_MANUAL_TRACKED_FINGER (1 << 7)
431 #define RMI_F11_DELTA_X_THRESHOLD 2
432 #define RMI_F11_DELTA_Y_THRESHOLD 3
434 #define RMI_F11_CTRL_REG_COUNT 12
437 u8 ctrl0_11
[RMI_F11_CTRL_REG_COUNT
];
438 u16 ctrl0_11_address
;
441 #define RMI_F11_ABS_BYTES 5
442 #define RMI_F11_REL_BYTES 2
444 /* Defs for Data 8 */
446 #define RMI_F11_SINGLE_TAP (1 << 0)
447 #define RMI_F11_TAP_AND_HOLD (1 << 1)
448 #define RMI_F11_DOUBLE_TAP (1 << 2)
449 #define RMI_F11_EARLY_TAP (1 << 3)
450 #define RMI_F11_FLICK (1 << 4)
451 #define RMI_F11_PRESS (1 << 5)
452 #define RMI_F11_PINCH (1 << 6)
454 /* Defs for Data 9 */
456 #define RMI_F11_PALM_DETECT (1 << 0)
457 #define RMI_F11_ROTATE (1 << 1)
458 #define RMI_F11_SHAPE (1 << 2)
459 #define RMI_F11_SCROLLZONE (1 << 3)
460 #define RMI_F11_GESTURE_FINGER_COUNT_MASK 0x70
462 /** Handy pointers into our data buffer.
464 * @f_state - start of finger state registers.
465 * @abs_pos - start of absolute position registers (if present).
466 * @rel_pos - start of relative data registers (if present).
467 * @gest_1 - gesture flags (if present).
468 * @gest_2 - gesture flags & finger count (if present).
469 * @pinch - pinch motion register (if present).
470 * @flick - flick distance X & Y, flick time (if present).
471 * @rotate - rotate motion and finger separation.
472 * @multi_scroll - chiral deltas for X and Y (if present).
473 * @scroll_zones - scroll deltas for 4 regions (if present).
489 /** Data pertaining to F11 in general. For per-sensor data, see struct
492 * @dev_query - F11 device specific query registers.
493 * @dev_controls - F11 device specific control registers.
494 * @dev_controls_mutex - lock for the control registers.
495 * @rezero_wait_ms - if nonzero, upon resume we will wait this many
496 * milliseconds before rezeroing the sensor(s). This is useful in systems with
497 * poor electrical behavior on resume, where the initial calibration of the
498 * sensor(s) coming out of sleep state may be bogus.
499 * @sensors - per sensor data structures.
508 struct f11_2d_ctrl dev_controls
;
509 struct mutex dev_controls_mutex
;
511 struct rmi_2d_sensor sensor
;
512 struct f11_2d_sensor_queries sens_query
;
513 struct f11_2d_data data
;
514 struct rmi_2d_sensor_platform_data sensor_pdata
;
515 unsigned long *abs_mask
;
516 unsigned long *rel_mask
;
517 unsigned long *result_bits
;
520 enum f11_finger_state
{
521 F11_NO_FINGER
= 0x00,
523 F11_INACCURATE
= 0x02,
527 static void rmi_f11_rel_pos_report(struct f11_data
*f11
, u8 n_finger
)
529 struct rmi_2d_sensor
*sensor
= &f11
->sensor
;
530 struct f11_2d_data
*data
= &f11
->data
;
533 x
= data
->rel_pos
[n_finger
* 2];
534 y
= data
->rel_pos
[n_finger
* 2 + 1];
536 rmi_2d_sensor_rel_report(sensor
, x
, y
);
539 static void rmi_f11_abs_pos_process(struct f11_data
*f11
,
540 struct rmi_2d_sensor
*sensor
,
541 struct rmi_2d_sensor_abs_object
*obj
,
542 enum f11_finger_state finger_state
,
545 struct f11_2d_data
*data
= &f11
->data
;
546 u8
*pos_data
= &data
->abs_pos
[n_finger
* RMI_F11_ABS_BYTES
];
547 int tool_type
= MT_TOOL_FINGER
;
549 switch (finger_state
) {
551 obj
->type
= RMI_2D_OBJECT_FINGER
;
554 obj
->type
= RMI_2D_OBJECT_NONE
;
557 obj
->mt_tool
= tool_type
;
558 obj
->x
= (pos_data
[0] << 4) | (pos_data
[2] & 0x0F);
559 obj
->y
= (pos_data
[1] << 4) | (pos_data
[2] >> 4);
560 obj
->z
= pos_data
[4];
561 obj
->wx
= pos_data
[3] & 0x0f;
562 obj
->wy
= pos_data
[3] >> 4;
564 rmi_2d_sensor_abs_process(sensor
, obj
, n_finger
);
567 static inline u8
rmi_f11_parse_finger_state(const u8
*f_state
, u8 n_finger
)
569 return (f_state
[n_finger
/ 4] >> (2 * (n_finger
% 4))) &
573 static void rmi_f11_finger_handler(struct f11_data
*f11
,
574 struct rmi_2d_sensor
*sensor
,
575 unsigned long *irq_bits
, int num_irq_regs
)
577 const u8
*f_state
= f11
->data
.f_state
;
581 int abs_bits
= bitmap_and(f11
->result_bits
, irq_bits
, f11
->abs_mask
,
583 int rel_bits
= bitmap_and(f11
->result_bits
, irq_bits
, f11
->rel_mask
,
586 for (i
= 0; i
< sensor
->nbr_fingers
; i
++) {
587 /* Possible of having 4 fingers per f_statet register */
588 finger_state
= rmi_f11_parse_finger_state(f_state
, i
);
589 if (finger_state
== F11_RESERVED
) {
590 pr_err("Invalid finger state[%d]: 0x%02x", i
,
596 rmi_f11_abs_pos_process(f11
, sensor
, &sensor
->objs
[i
],
600 rmi_f11_rel_pos_report(f11
, i
);
605 * the absolute part is made in 2 parts to allow the kernel
606 * tracking to take place.
608 if (sensor
->kernel_tracking
)
609 input_mt_assign_slots(sensor
->input
,
610 sensor
->tracking_slots
,
611 sensor
->tracking_pos
,
615 for (i
= 0; i
< sensor
->nbr_fingers
; i
++) {
616 finger_state
= rmi_f11_parse_finger_state(f_state
, i
);
617 if (finger_state
== F11_RESERVED
)
618 /* no need to send twice the error */
621 rmi_2d_sensor_abs_report(sensor
, &sensor
->objs
[i
], i
);
624 input_mt_sync_frame(sensor
->input
);
628 static int f11_2d_construct_data(struct f11_data
*f11
)
630 struct rmi_2d_sensor
*sensor
= &f11
->sensor
;
631 struct f11_2d_sensor_queries
*query
= &f11
->sens_query
;
632 struct f11_2d_data
*data
= &f11
->data
;
635 sensor
->nbr_fingers
= (query
->nr_fingers
== 5 ? 10 :
636 query
->nr_fingers
+ 1);
638 sensor
->pkt_size
= DIV_ROUND_UP(sensor
->nbr_fingers
, 4);
640 if (query
->has_abs
) {
641 sensor
->pkt_size
+= (sensor
->nbr_fingers
* 5);
642 sensor
->attn_size
= sensor
->pkt_size
;
646 sensor
->pkt_size
+= (sensor
->nbr_fingers
* 2);
648 /* Check if F11_2D_Query7 is non-zero */
649 if (query
->query7_nonzero
)
650 sensor
->pkt_size
+= sizeof(u8
);
652 /* Check if F11_2D_Query7 or F11_2D_Query8 is non-zero */
653 if (query
->query7_nonzero
|| query
->query8_nonzero
)
654 sensor
->pkt_size
+= sizeof(u8
);
656 if (query
->has_pinch
|| query
->has_flick
|| query
->has_rotate
) {
657 sensor
->pkt_size
+= 3;
658 if (!query
->has_flick
)
660 if (!query
->has_rotate
)
664 if (query
->has_touch_shapes
)
666 DIV_ROUND_UP(query
->nr_touch_shapes
+ 1, 8);
668 sensor
->data_pkt
= devm_kzalloc(&sensor
->fn
->dev
, sensor
->pkt_size
,
670 if (!sensor
->data_pkt
)
673 data
->f_state
= sensor
->data_pkt
;
674 i
= DIV_ROUND_UP(sensor
->nbr_fingers
, 4);
676 if (query
->has_abs
) {
677 data
->abs_pos
= &sensor
->data_pkt
[i
];
678 i
+= (sensor
->nbr_fingers
* RMI_F11_ABS_BYTES
);
681 if (query
->has_rel
) {
682 data
->rel_pos
= &sensor
->data_pkt
[i
];
683 i
+= (sensor
->nbr_fingers
* RMI_F11_REL_BYTES
);
686 if (query
->query7_nonzero
) {
687 data
->gest_1
= &sensor
->data_pkt
[i
];
691 if (query
->query7_nonzero
|| query
->query8_nonzero
) {
692 data
->gest_2
= &sensor
->data_pkt
[i
];
696 if (query
->has_pinch
) {
697 data
->pinch
= &sensor
->data_pkt
[i
];
701 if (query
->has_flick
) {
702 if (query
->has_pinch
) {
703 data
->flick
= data
->pinch
;
706 data
->flick
= &sensor
->data_pkt
[i
];
711 if (query
->has_rotate
) {
712 if (query
->has_flick
) {
713 data
->rotate
= data
->flick
+ 1;
715 data
->rotate
= &sensor
->data_pkt
[i
];
720 if (query
->has_touch_shapes
)
721 data
->shapes
= &sensor
->data_pkt
[i
];
726 static int f11_read_control_regs(struct rmi_function
*fn
,
727 struct f11_2d_ctrl
*ctrl
, u16 ctrl_base_addr
) {
728 struct rmi_device
*rmi_dev
= fn
->rmi_dev
;
731 ctrl
->ctrl0_11_address
= ctrl_base_addr
;
732 error
= rmi_read_block(rmi_dev
, ctrl_base_addr
, ctrl
->ctrl0_11
,
733 RMI_F11_CTRL_REG_COUNT
);
735 dev_err(&fn
->dev
, "Failed to read ctrl0, code: %d.\n", error
);
742 static int f11_write_control_regs(struct rmi_function
*fn
,
743 struct f11_2d_sensor_queries
*query
,
744 struct f11_2d_ctrl
*ctrl
,
747 struct rmi_device
*rmi_dev
= fn
->rmi_dev
;
750 error
= rmi_write_block(rmi_dev
, ctrl_base_addr
, ctrl
->ctrl0_11
,
751 RMI_F11_CTRL_REG_COUNT
);
758 static int rmi_f11_get_query_parameters(struct rmi_device
*rmi_dev
,
759 struct f11_data
*f11
,
760 struct f11_2d_sensor_queries
*sensor_query
,
765 u8 query_buf
[RMI_F11_QUERY_SIZE
];
766 bool has_query36
= false;
768 rc
= rmi_read_block(rmi_dev
, query_base_addr
, query_buf
,
773 sensor_query
->nr_fingers
= query_buf
[0] & RMI_F11_NR_FINGERS_MASK
;
774 sensor_query
->has_rel
= !!(query_buf
[0] & RMI_F11_HAS_REL
);
775 sensor_query
->has_abs
= !!(query_buf
[0] & RMI_F11_HAS_ABS
);
776 sensor_query
->has_gestures
= !!(query_buf
[0] & RMI_F11_HAS_GESTURES
);
777 sensor_query
->has_sensitivity_adjust
=
778 !!(query_buf
[0] & RMI_F11_HAS_SENSITIVITY_ADJ
);
779 sensor_query
->configurable
= !!(query_buf
[0] & RMI_F11_CONFIGURABLE
);
781 sensor_query
->nr_x_electrodes
=
782 query_buf
[1] & RMI_F11_NR_ELECTRODES_MASK
;
783 sensor_query
->nr_y_electrodes
=
784 query_buf
[2] & RMI_F11_NR_ELECTRODES_MASK
;
785 sensor_query
->max_electrodes
=
786 query_buf
[3] & RMI_F11_NR_ELECTRODES_MASK
;
788 query_size
= RMI_F11_QUERY_SIZE
;
790 if (sensor_query
->has_abs
) {
791 rc
= rmi_read(rmi_dev
, query_base_addr
+ query_size
, query_buf
);
795 sensor_query
->abs_data_size
=
796 query_buf
[0] & RMI_F11_ABS_DATA_SIZE_MASK
;
797 sensor_query
->has_anchored_finger
=
798 !!(query_buf
[0] & RMI_F11_HAS_ANCHORED_FINGER
);
799 sensor_query
->has_adj_hyst
=
800 !!(query_buf
[0] & RMI_F11_HAS_ADJ_HYST
);
801 sensor_query
->has_dribble
=
802 !!(query_buf
[0] & RMI_F11_HAS_DRIBBLE
);
803 sensor_query
->has_bending_correction
=
804 !!(query_buf
[0] & RMI_F11_HAS_BENDING_CORRECTION
);
805 sensor_query
->has_large_object_suppression
=
806 !!(query_buf
[0] & RMI_F11_HAS_LARGE_OBJECT_SUPPRESSION
);
807 sensor_query
->has_jitter_filter
=
808 !!(query_buf
[0] & RMI_F11_HAS_JITTER_FILTER
);
812 if (sensor_query
->has_rel
) {
813 rc
= rmi_read(rmi_dev
, query_base_addr
+ query_size
,
814 &sensor_query
->f11_2d_query6
);
820 if (sensor_query
->has_gestures
) {
821 rc
= rmi_read_block(rmi_dev
, query_base_addr
+ query_size
,
822 query_buf
, RMI_F11_QUERY_GESTURE_SIZE
);
826 sensor_query
->has_single_tap
=
827 !!(query_buf
[0] & RMI_F11_HAS_SINGLE_TAP
);
828 sensor_query
->has_tap_n_hold
=
829 !!(query_buf
[0] & RMI_F11_HAS_TAP_AND_HOLD
);
830 sensor_query
->has_double_tap
=
831 !!(query_buf
[0] & RMI_F11_HAS_DOUBLE_TAP
);
832 sensor_query
->has_early_tap
=
833 !!(query_buf
[0] & RMI_F11_HAS_EARLY_TAP
);
834 sensor_query
->has_flick
=
835 !!(query_buf
[0] & RMI_F11_HAS_FLICK
);
836 sensor_query
->has_press
=
837 !!(query_buf
[0] & RMI_F11_HAS_PRESS
);
838 sensor_query
->has_pinch
=
839 !!(query_buf
[0] & RMI_F11_HAS_PINCH
);
840 sensor_query
->has_chiral
=
841 !!(query_buf
[0] & RMI_F11_HAS_CHIRAL
);
844 sensor_query
->has_palm_det
=
845 !!(query_buf
[1] & RMI_F11_HAS_PALM_DET
);
846 sensor_query
->has_rotate
=
847 !!(query_buf
[1] & RMI_F11_HAS_ROTATE
);
848 sensor_query
->has_touch_shapes
=
849 !!(query_buf
[1] & RMI_F11_HAS_TOUCH_SHAPES
);
850 sensor_query
->has_scroll_zones
=
851 !!(query_buf
[1] & RMI_F11_HAS_SCROLL_ZONES
);
852 sensor_query
->has_individual_scroll_zones
=
853 !!(query_buf
[1] & RMI_F11_HAS_INDIVIDUAL_SCROLL_ZONES
);
854 sensor_query
->has_mf_scroll
=
855 !!(query_buf
[1] & RMI_F11_HAS_MF_SCROLL
);
856 sensor_query
->has_mf_edge_motion
=
857 !!(query_buf
[1] & RMI_F11_HAS_MF_EDGE_MOTION
);
858 sensor_query
->has_mf_scroll_inertia
=
859 !!(query_buf
[1] & RMI_F11_HAS_MF_SCROLL_INERTIA
);
861 sensor_query
->query7_nonzero
= !!(query_buf
[0]);
862 sensor_query
->query8_nonzero
= !!(query_buf
[1]);
867 if (f11
->has_query9
) {
868 rc
= rmi_read(rmi_dev
, query_base_addr
+ query_size
, query_buf
);
872 sensor_query
->has_pen
=
873 !!(query_buf
[0] & RMI_F11_HAS_PEN
);
874 sensor_query
->has_proximity
=
875 !!(query_buf
[0] & RMI_F11_HAS_PROXIMITY
);
876 sensor_query
->has_palm_det_sensitivity
=
877 !!(query_buf
[0] & RMI_F11_HAS_PALM_DET_SENSITIVITY
);
878 sensor_query
->has_suppress_on_palm_detect
=
879 !!(query_buf
[0] & RMI_F11_HAS_SUPPRESS_ON_PALM_DETECT
);
880 sensor_query
->has_two_pen_thresholds
=
881 !!(query_buf
[0] & RMI_F11_HAS_TWO_PEN_THRESHOLDS
);
882 sensor_query
->has_contact_geometry
=
883 !!(query_buf
[0] & RMI_F11_HAS_CONTACT_GEOMETRY
);
884 sensor_query
->has_pen_hover_discrimination
=
885 !!(query_buf
[0] & RMI_F11_HAS_PEN_HOVER_DISCRIMINATION
);
886 sensor_query
->has_pen_filters
=
887 !!(query_buf
[0] & RMI_F11_HAS_PEN_FILTERS
);
892 if (sensor_query
->has_touch_shapes
) {
893 rc
= rmi_read(rmi_dev
, query_base_addr
+ query_size
, query_buf
);
897 sensor_query
->nr_touch_shapes
= query_buf
[0] &
898 RMI_F11_NR_TOUCH_SHAPES_MASK
;
903 if (f11
->has_query11
) {
904 rc
= rmi_read(rmi_dev
, query_base_addr
+ query_size
, query_buf
);
908 sensor_query
->has_z_tuning
=
909 !!(query_buf
[0] & RMI_F11_HAS_Z_TUNING
);
910 sensor_query
->has_algorithm_selection
=
911 !!(query_buf
[0] & RMI_F11_HAS_ALGORITHM_SELECTION
);
912 sensor_query
->has_w_tuning
=
913 !!(query_buf
[0] & RMI_F11_HAS_W_TUNING
);
914 sensor_query
->has_pitch_info
=
915 !!(query_buf
[0] & RMI_F11_HAS_PITCH_INFO
);
916 sensor_query
->has_finger_size
=
917 !!(query_buf
[0] & RMI_F11_HAS_FINGER_SIZE
);
918 sensor_query
->has_segmentation_aggressiveness
=
920 RMI_F11_HAS_SEGMENTATION_AGGRESSIVENESS
);
921 sensor_query
->has_XY_clip
=
922 !!(query_buf
[0] & RMI_F11_HAS_XY_CLIP
);
923 sensor_query
->has_drumming_filter
=
924 !!(query_buf
[0] & RMI_F11_HAS_DRUMMING_FILTER
);
929 if (f11
->has_query12
) {
930 rc
= rmi_read(rmi_dev
, query_base_addr
+ query_size
, query_buf
);
934 sensor_query
->has_gapless_finger
=
935 !!(query_buf
[0] & RMI_F11_HAS_GAPLESS_FINGER
);
936 sensor_query
->has_gapless_finger_tuning
=
937 !!(query_buf
[0] & RMI_F11_HAS_GAPLESS_FINGER_TUNING
);
938 sensor_query
->has_8bit_w
=
939 !!(query_buf
[0] & RMI_F11_HAS_8BIT_W
);
940 sensor_query
->has_adjustable_mapping
=
941 !!(query_buf
[0] & RMI_F11_HAS_ADJUSTABLE_MAPPING
);
942 sensor_query
->has_info2
=
943 !!(query_buf
[0] & RMI_F11_HAS_INFO2
);
944 sensor_query
->has_physical_props
=
945 !!(query_buf
[0] & RMI_F11_HAS_PHYSICAL_PROPS
);
946 sensor_query
->has_finger_limit
=
947 !!(query_buf
[0] & RMI_F11_HAS_FINGER_LIMIT
);
948 sensor_query
->has_linear_coeff_2
=
949 !!(query_buf
[0] & RMI_F11_HAS_LINEAR_COEFF
);
954 if (sensor_query
->has_jitter_filter
) {
955 rc
= rmi_read(rmi_dev
, query_base_addr
+ query_size
, query_buf
);
959 sensor_query
->jitter_window_size
= query_buf
[0] &
960 RMI_F11_JITTER_WINDOW_MASK
;
961 sensor_query
->jitter_filter_type
= (query_buf
[0] &
962 RMI_F11_JITTER_FILTER_MASK
) >>
963 RMI_F11_JITTER_FILTER_SHIFT
;
968 if (sensor_query
->has_info2
) {
969 rc
= rmi_read(rmi_dev
, query_base_addr
+ query_size
, query_buf
);
973 sensor_query
->light_control
=
974 query_buf
[0] & RMI_F11_LIGHT_CONTROL_MASK
;
975 sensor_query
->is_clear
=
976 !!(query_buf
[0] & RMI_F11_IS_CLEAR
);
977 sensor_query
->clickpad_props
=
978 (query_buf
[0] & RMI_F11_CLICKPAD_PROPS_MASK
) >>
979 RMI_F11_CLICKPAD_PROPS_SHIFT
;
980 sensor_query
->mouse_buttons
=
981 (query_buf
[0] & RMI_F11_MOUSE_BUTTONS_MASK
) >>
982 RMI_F11_MOUSE_BUTTONS_SHIFT
;
983 sensor_query
->has_advanced_gestures
=
984 !!(query_buf
[0] & RMI_F11_HAS_ADVANCED_GESTURES
);
989 if (sensor_query
->has_physical_props
) {
990 rc
= rmi_read_block(rmi_dev
, query_base_addr
991 + query_size
, query_buf
, 4);
995 sensor_query
->x_sensor_size_mm
=
996 (query_buf
[0] | (query_buf
[1] << 8)) / 10;
997 sensor_query
->y_sensor_size_mm
=
998 (query_buf
[2] | (query_buf
[3] << 8)) / 10;
1001 * query 15 - 18 contain the size of the sensor
1002 * and query 19 - 26 contain bezel dimensions
1007 if (f11
->has_query27
)
1010 if (f11
->has_query28
) {
1011 rc
= rmi_read(rmi_dev
, query_base_addr
+ query_size
,
1016 has_query36
= !!(query_buf
[0] & BIT(6));
1021 rc
= rmi_read(rmi_dev
, query_base_addr
+ query_size
,
1026 if (!!(query_buf
[0] & BIT(5)))
1027 f11
->has_acm
= true;
1033 static int rmi_f11_initialize(struct rmi_function
*fn
)
1035 struct rmi_device
*rmi_dev
= fn
->rmi_dev
;
1036 struct f11_data
*f11
;
1037 struct f11_2d_ctrl
*ctrl
;
1039 u16 query_base_addr
;
1040 u16 control_base_addr
;
1041 u16 max_x_pos
, max_y_pos
;
1043 const struct rmi_device_platform_data
*pdata
=
1044 rmi_get_platform_data(rmi_dev
);
1045 struct rmi_driver_data
*drvdata
= dev_get_drvdata(&rmi_dev
->dev
);
1046 struct rmi_2d_sensor
*sensor
;
1050 rmi_dbg(RMI_DEBUG_FN
, &fn
->dev
, "Initializing F11 values.\n");
1052 mask_size
= BITS_TO_LONGS(drvdata
->irq_count
) * sizeof(unsigned long);
1055 ** init instance data, fill in values and create any sysfs files
1057 f11
= devm_kzalloc(&fn
->dev
, sizeof(struct f11_data
) + mask_size
* 3,
1062 if (fn
->dev
.of_node
) {
1063 rc
= rmi_2d_sensor_of_probe(&fn
->dev
, &f11
->sensor_pdata
);
1066 } else if (pdata
->sensor_pdata
) {
1067 f11
->sensor_pdata
= *pdata
->sensor_pdata
;
1070 f11
->rezero_wait_ms
= f11
->sensor_pdata
.rezero_wait
;
1072 f11
->abs_mask
= (unsigned long *)((char *)f11
1073 + sizeof(struct f11_data
));
1074 f11
->rel_mask
= (unsigned long *)((char *)f11
1075 + sizeof(struct f11_data
) + mask_size
);
1076 f11
->result_bits
= (unsigned long *)((char *)f11
1077 + sizeof(struct f11_data
) + mask_size
* 2);
1079 set_bit(fn
->irq_pos
, f11
->abs_mask
);
1080 set_bit(fn
->irq_pos
+ 1, f11
->rel_mask
);
1082 query_base_addr
= fn
->fd
.query_base_addr
;
1083 control_base_addr
= fn
->fd
.control_base_addr
;
1085 rc
= rmi_read(rmi_dev
, query_base_addr
, &buf
);
1089 f11
->has_query9
= !!(buf
& RMI_F11_HAS_QUERY9
);
1090 f11
->has_query11
= !!(buf
& RMI_F11_HAS_QUERY11
);
1091 f11
->has_query12
= !!(buf
& RMI_F11_HAS_QUERY12
);
1092 f11
->has_query27
= !!(buf
& RMI_F11_HAS_QUERY27
);
1093 f11
->has_query28
= !!(buf
& RMI_F11_HAS_QUERY28
);
1095 query_offset
= (query_base_addr
+ 1);
1096 sensor
= &f11
->sensor
;
1099 rc
= rmi_f11_get_query_parameters(rmi_dev
, f11
,
1100 &f11
->sens_query
, query_offset
);
1105 rc
= f11_read_control_regs(fn
, &f11
->dev_controls
,
1109 "Failed to read F11 control params.\n");
1113 if (f11
->sens_query
.has_info2
) {
1114 if (f11
->sens_query
.is_clear
)
1115 f11
->sensor
.sensor_type
= rmi_sensor_touchscreen
;
1117 f11
->sensor
.sensor_type
= rmi_sensor_touchpad
;
1120 sensor
->report_abs
= f11
->sens_query
.has_abs
;
1122 sensor
->axis_align
=
1123 f11
->sensor_pdata
.axis_align
;
1125 sensor
->topbuttonpad
= f11
->sensor_pdata
.topbuttonpad
;
1126 sensor
->kernel_tracking
= f11
->sensor_pdata
.kernel_tracking
;
1127 sensor
->dmax
= f11
->sensor_pdata
.dmax
;
1129 if (f11
->sens_query
.has_physical_props
) {
1130 sensor
->x_mm
= f11
->sens_query
.x_sensor_size_mm
;
1131 sensor
->y_mm
= f11
->sens_query
.y_sensor_size_mm
;
1133 sensor
->x_mm
= f11
->sensor_pdata
.x_mm
;
1134 sensor
->y_mm
= f11
->sensor_pdata
.y_mm
;
1137 if (sensor
->sensor_type
== rmi_sensor_default
)
1138 sensor
->sensor_type
=
1139 f11
->sensor_pdata
.sensor_type
;
1141 sensor
->report_abs
= sensor
->report_abs
1142 && !(f11
->sensor_pdata
.disable_report_mask
1143 & RMI_F11_DISABLE_ABS_REPORT
);
1145 if (!sensor
->report_abs
)
1147 * If device doesn't have abs or if it has been disables
1148 * fallback to reporting rel data.
1150 sensor
->report_rel
= f11
->sens_query
.has_rel
;
1152 rc
= rmi_read_block(rmi_dev
,
1153 control_base_addr
+ F11_CTRL_SENSOR_MAX_X_POS_OFFSET
,
1154 (u8
*)&max_x_pos
, sizeof(max_x_pos
));
1158 rc
= rmi_read_block(rmi_dev
,
1159 control_base_addr
+ F11_CTRL_SENSOR_MAX_Y_POS_OFFSET
,
1160 (u8
*)&max_y_pos
, sizeof(max_y_pos
));
1164 sensor
->max_x
= max_x_pos
;
1165 sensor
->max_y
= max_y_pos
;
1167 rc
= f11_2d_construct_data(f11
);
1172 f11
->sensor
.attn_size
+= f11
->sensor
.nbr_fingers
* 2;
1174 /* allocate the in-kernel tracking buffers */
1175 sensor
->tracking_pos
= devm_kzalloc(&fn
->dev
,
1176 sizeof(struct input_mt_pos
) * sensor
->nbr_fingers
,
1178 sensor
->tracking_slots
= devm_kzalloc(&fn
->dev
,
1179 sizeof(int) * sensor
->nbr_fingers
, GFP_KERNEL
);
1180 sensor
->objs
= devm_kzalloc(&fn
->dev
,
1181 sizeof(struct rmi_2d_sensor_abs_object
)
1182 * sensor
->nbr_fingers
, GFP_KERNEL
);
1183 if (!sensor
->tracking_pos
|| !sensor
->tracking_slots
|| !sensor
->objs
)
1186 ctrl
= &f11
->dev_controls
;
1187 if (sensor
->axis_align
.delta_x_threshold
)
1188 ctrl
->ctrl0_11
[RMI_F11_DELTA_X_THRESHOLD
] =
1189 sensor
->axis_align
.delta_x_threshold
;
1191 if (sensor
->axis_align
.delta_y_threshold
)
1192 ctrl
->ctrl0_11
[RMI_F11_DELTA_Y_THRESHOLD
] =
1193 sensor
->axis_align
.delta_y_threshold
;
1195 if (f11
->sens_query
.has_dribble
)
1196 ctrl
->ctrl0_11
[0] = ctrl
->ctrl0_11
[0] & ~BIT(6);
1198 if (f11
->sens_query
.has_palm_det
)
1199 ctrl
->ctrl0_11
[11] = ctrl
->ctrl0_11
[11] & ~BIT(0);
1201 rc
= f11_write_control_regs(fn
, &f11
->sens_query
,
1202 &f11
->dev_controls
, fn
->fd
.query_base_addr
);
1204 dev_warn(&fn
->dev
, "Failed to write control registers\n");
1206 mutex_init(&f11
->dev_controls_mutex
);
1208 dev_set_drvdata(&fn
->dev
, f11
);
1213 static int rmi_f11_config(struct rmi_function
*fn
)
1215 struct f11_data
*f11
= dev_get_drvdata(&fn
->dev
);
1216 struct rmi_driver
*drv
= fn
->rmi_dev
->driver
;
1217 struct rmi_2d_sensor
*sensor
= &f11
->sensor
;
1220 if (!sensor
->report_abs
)
1221 drv
->clear_irq_bits(fn
->rmi_dev
, f11
->abs_mask
);
1223 drv
->set_irq_bits(fn
->rmi_dev
, f11
->abs_mask
);
1225 if (!sensor
->report_rel
)
1226 drv
->clear_irq_bits(fn
->rmi_dev
, f11
->rel_mask
);
1228 drv
->set_irq_bits(fn
->rmi_dev
, f11
->rel_mask
);
1230 rc
= f11_write_control_regs(fn
, &f11
->sens_query
,
1231 &f11
->dev_controls
, fn
->fd
.query_base_addr
);
1238 static int rmi_f11_attention(struct rmi_function
*fn
, unsigned long *irq_bits
)
1240 struct rmi_device
*rmi_dev
= fn
->rmi_dev
;
1241 struct rmi_driver_data
*drvdata
= dev_get_drvdata(&rmi_dev
->dev
);
1242 struct f11_data
*f11
= dev_get_drvdata(&fn
->dev
);
1243 u16 data_base_addr
= fn
->fd
.data_base_addr
;
1244 u16 data_base_addr_offset
= 0;
1247 if (rmi_dev
->xport
->attn_data
) {
1248 memcpy(f11
->sensor
.data_pkt
, rmi_dev
->xport
->attn_data
,
1249 f11
->sensor
.attn_size
);
1250 rmi_dev
->xport
->attn_data
+= f11
->sensor
.attn_size
;
1251 rmi_dev
->xport
->attn_size
-= f11
->sensor
.attn_size
;
1253 error
= rmi_read_block(rmi_dev
,
1254 data_base_addr
+ data_base_addr_offset
,
1255 f11
->sensor
.data_pkt
,
1256 f11
->sensor
.pkt_size
);
1261 rmi_f11_finger_handler(f11
, &f11
->sensor
, irq_bits
,
1262 drvdata
->num_of_irq_regs
);
1263 data_base_addr_offset
+= f11
->sensor
.pkt_size
;
1268 static int rmi_f11_resume(struct rmi_function
*fn
)
1270 struct f11_data
*f11
= dev_get_drvdata(&fn
->dev
);
1273 rmi_dbg(RMI_DEBUG_FN
, &fn
->dev
, "Resuming...\n");
1274 if (!f11
->rezero_wait_ms
)
1277 mdelay(f11
->rezero_wait_ms
);
1279 error
= rmi_write(fn
->rmi_dev
, fn
->fd
.command_base_addr
,
1283 "%s: failed to issue rezero command, error = %d.",
1291 static int rmi_f11_probe(struct rmi_function
*fn
)
1294 struct f11_data
*f11
;
1296 error
= rmi_f11_initialize(fn
);
1300 f11
= dev_get_drvdata(&fn
->dev
);
1301 error
= rmi_2d_sensor_configure_input(fn
, &f11
->sensor
);
1308 struct rmi_function_handler rmi_f11_handler
= {
1313 .probe
= rmi_f11_probe
,
1314 .config
= rmi_f11_config
,
1315 .attention
= rmi_f11_attention
,
1316 .resume
= rmi_f11_resume
,