blob: 98b7b384229b5f91e3718caa1ea26efda910bdd6 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Andres Salomondf08ef22008-09-16 12:30:34 -04002/*
3 * OLPC HGPK (XO-1) touchpad PS/2 mouse driver
4 */
5
6#ifndef _HGPK_H
7#define _HGPK_H
8
Daniel Drakeca94ec42010-11-11 22:19:57 -08009#define HGPK_GS 0xff /* The GlideSensor */
10#define HGPK_PT 0xcf /* The PenTablet */
11
Andres Salomondf08ef22008-09-16 12:30:34 -040012enum hgpk_model_t {
13 HGPK_MODEL_PREA = 0x0a, /* pre-B1s */
14 HGPK_MODEL_A = 0x14, /* found on B1s, PT disabled in hardware */
15 HGPK_MODEL_B = 0x28, /* B2s, has capacitance issues */
16 HGPK_MODEL_C = 0x3c,
17 HGPK_MODEL_D = 0x50, /* C1, mass production */
18};
19
Daniel Drakec0dc8342010-11-11 22:20:02 -080020enum hgpk_spew_flag {
21 NO_SPEW,
22 MAYBE_SPEWING,
23 SPEW_DETECTED,
24 RECALIBRATING,
25};
26
27#define SPEW_WATCH_COUNT 42 /* at 12ms/packet, this is 1/2 second */
28
Daniel Drakeca94ec42010-11-11 22:19:57 -080029enum hgpk_mode {
30 HGPK_MODE_MOUSE,
31 HGPK_MODE_GLIDESENSOR,
32 HGPK_MODE_PENTABLET,
33 HGPK_MODE_INVALID
34};
35
Andres Salomondf08ef22008-09-16 12:30:34 -040036struct hgpk_data {
37 struct psmouse *psmouse;
Daniel Drakeca94ec42010-11-11 22:19:57 -080038 enum hgpk_mode mode;
Dmitry Torokhovb7802c52009-09-09 19:13:20 -070039 bool powered;
Daniel Drakec0dc8342010-11-11 22:20:02 -080040 enum hgpk_spew_flag spew_flag;
41 int spew_count, x_tally, y_tally; /* spew detection */
Andres Salomondf08ef22008-09-16 12:30:34 -040042 unsigned long recalib_window;
43 struct delayed_work recalib_wq;
Daniel Drakeca94ec42010-11-11 22:19:57 -080044 int abs_x, abs_y;
Daniel Drakec0dc8342010-11-11 22:20:02 -080045 int dupe_count;
Daniel Drakea309cdc2010-11-11 22:20:03 -080046 int xbigj, ybigj, xlast, ylast; /* jumpiness detection */
47 int xsaw_secondary, ysaw_secondary; /* jumpiness detection */
Andres Salomondf08ef22008-09-16 12:30:34 -040048};
49
Andres Salomondf08ef22008-09-16 12:30:34 -040050#ifdef CONFIG_MOUSE_PS2_OLPC
Daniel Drakeca94ec42010-11-11 22:19:57 -080051void hgpk_module_init(void);
Dmitry Torokhovb7802c52009-09-09 19:13:20 -070052int hgpk_detect(struct psmouse *psmouse, bool set_properties);
Andres Salomondf08ef22008-09-16 12:30:34 -040053int hgpk_init(struct psmouse *psmouse);
54#else
Daniel Drakeca94ec42010-11-11 22:19:57 -080055static inline void hgpk_module_init(void)
56{
57}
Dmitry Torokhovb7802c52009-09-09 19:13:20 -070058static inline int hgpk_detect(struct psmouse *psmouse, bool set_properties)
Andres Salomondf08ef22008-09-16 12:30:34 -040059{
60 return -ENODEV;
61}
62static inline int hgpk_init(struct psmouse *psmouse)
63{
64 return -ENODEV;
65}
66#endif
67
68#endif