Skip to content

Commit 3051bf5

Browse files
LawstorantJiri Kosina
authored andcommitted
HID: pidff: Add FIX_WHEEL_DIRECTION quirk
Most steering wheels simply ignore DIRECTION field, but some try to be compliant with the PID standard and use it in force calculations. Games often ignore setting this field properly and/or there can be issues with dinput8 -> wine -> SDL -> Linux API translation, and this value can be incorrect. This can lead to partial/complete loss of Force Feedback or even unexpected force reversal. Sadly, this quirk can't be detected automatically without sending out effects that would move an axis. This fixes FFB on Moza Racing devices and others where effect direction is not simply ignored. Signed-off-by: Tomasz Pakuła <[email protected]> Reviewed-by: Michał Kopeć <[email protected]> Reviewed-by: Paul Dino Jones <[email protected]> Signed-off-by: Jiri Kosina <[email protected]>
1 parent 36de016 commit 3051bf5

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

drivers/hid/usbhid/hid-pidff.c

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,9 @@ static const u8 pidff_block_load_status[] = { 0x8c, 0x8d };
136136
#define PID_EFFECT_STOP 1
137137
static const u8 pidff_effect_operation_status[] = { 0x79, 0x7b };
138138

139+
/* Polar direction 90 degrees (North) */
140+
#define PIDFF_FIXED_WHEEL_DIRECTION 0x4000
141+
139142
struct pidff_usage {
140143
struct hid_field *field;
141144
s32 *value;
@@ -337,9 +340,12 @@ static void pidff_set_effect_report(struct pidff_device *pidff,
337340
pidff->set_effect[PID_GAIN].value[0] =
338341
pidff->set_effect[PID_GAIN].field->logical_maximum;
339342
pidff->set_effect[PID_DIRECTION_ENABLE].value[0] = 1;
340-
pidff->effect_direction->value[0] =
341-
pidff_rescale(effect->direction, 0xffff,
342-
pidff->effect_direction);
343+
344+
/* Use fixed direction if needed */
345+
pidff->effect_direction->value[0] = pidff_rescale(
346+
pidff->quirks & HID_PIDFF_QUIRK_FIX_WHEEL_DIRECTION ?
347+
PIDFF_FIXED_WHEEL_DIRECTION : effect->direction,
348+
0xffff, pidff->effect_direction);
343349

344350
/* Omit setting delay field if it's missing */
345351
if (!(pidff->quirks & HID_PIDFF_QUIRK_MISSING_DELAY))

include/linux/hid.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1234,6 +1234,7 @@ int hid_pidff_init_with_quirks(struct hid_device *hid, __u32 initial_quirks);
12341234
#define HID_PIDFF_QUIRK_MISSING_DELAY BIT(0)
12351235
#define HID_PIDFF_QUIRK_MISSING_PBO BIT(1)
12361236
#define HID_PIDFF_QUIRK_PERMISSIVE_CONTROL BIT(2)
1237+
#define HID_PIDFF_QUIRK_FIX_WHEEL_DIRECTION BIT(3)
12371238

12381239
#define dbg_hid(fmt, ...) pr_debug("%s: " fmt, __FILE__, ##__VA_ARGS__)
12391240

0 commit comments

Comments
 (0)