Skip to content

Commit 4f0ee05

Browse files
committed
HID: wacom: Set eraser status when either 'Eraser' or 'Invert' usage is set
Microsoft defines two slightly different behaviors for pens that are being used to erase. The first one, for pens that can be used while inverted specifies that both 'Invert' and 'Eraser' usages should be set while the pen is in contact and erasing. For pens that use an eraser button though, they specify that only the 'Eraser' usage should be set (while hovering, only the 'Invert' usage is to be set). We used our internal 'invert_state' flag to determine if a pen has an intent to erase (whether hovering or not). That flag was previously only depending on the 'Invert' usage, which was sufficient for the first type of pen (EMR) but not the second type (AES). This commit makes the flag depend on either usage being set, and also renames it to make its function more clear. This change should not normally have an impact on userspace due to both the existing driver and firmware design. The driver already only determines tool type based on the first event in an interaction (e.g. it will see the 'Invert' bit set when the eraser comes into prox and then report BTN_TOOL_RUBBER for the rest of the interaction, even if 'Invert' is cleared). AES firmware is also careful to send reports that work through a set of defined state transitions, even in the corner-case where the eraser button is pressed when the pen is already in contact with the display (Prox|Tip -> Prox -> 0 -> Invert -> Eraser). Regardless, it seems reasonable to ensure the driver's state variables match programmer expectation. Link: https://learn.microsoft.com/en-us/windows-hardware/design/component-guidelines/windows-pen-states Signed-off-by: Jason Gerecke <jason.gerecke@wacom.com> Signed-off-by: Jiri Kosina <jkosina@suse.com> [jason.gerecke@wacom.com: Imported into input-wacom (a025b0dbd83f)] Signed-off-by: Jason Gerecke <jason.gerecke@wacom.com>
1 parent 605d359 commit 4f0ee05

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

4.18/wacom_wac.c

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2447,9 +2447,11 @@ static void wacom_wac_pen_event(struct hid_device *hdev, struct hid_field *field
24472447
wacom_wac->hid_data.sense_state = value;
24482448
return;
24492449
case HID_DG_INVERT:
2450-
wacom_wac->hid_data.invert_state = value;
2450+
wacom_wac->hid_data.eraser |= value;
24512451
return;
24522452
case HID_DG_ERASER:
2453+
wacom_wac->hid_data.eraser |= value;
2454+
fallthrough;
24532455
case HID_DG_TIPSWITCH:
24542456
wacom_wac->hid_data.tipswitch |= value;
24552457
return;
@@ -2590,7 +2592,7 @@ static void wacom_wac_pen_report(struct hid_device *hdev,
25902592

25912593
if (entering_range) { /* first in range */
25922594
/* Going into range select tool */
2593-
if (wacom_wac->hid_data.invert_state)
2595+
if (wacom_wac->hid_data.eraser)
25942596
wacom_wac->tool[0] = BTN_TOOL_RUBBER;
25952597
else if (wacom_wac->features.quirks & WACOM_QUIRK_AESPEN)
25962598
wacom_wac->tool[0] = BTN_TOOL_PEN;
@@ -2644,6 +2646,7 @@ static void wacom_wac_pen_report(struct hid_device *hdev,
26442646
}
26452647

26462648
wacom_wac->hid_data.tipswitch = false;
2649+
wacom_wac->hid_data.eraser = false;
26472650

26482651
input_sync(input);
26492652
}

4.18/wacom_wac.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ struct hid_data {
327327
__s16 inputmode_index; /* InputMode HID feature index in the report */
328328
bool sense_state;
329329
bool inrange_state;
330-
bool invert_state;
330+
bool eraser;
331331
bool tipswitch;
332332
bool barrelswitch;
333333
bool barrelswitch2;

0 commit comments

Comments
 (0)