1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
From 83c60d52839feb95816be3c29e5588b0b12b0747 Mon Sep 17 00:00:00 2001
From: "Luke D. Jones" <luke@ljones.dev>
Date: Sat, 5 Oct 2024 21:37:27 +1300
Subject: [PATCH 15/29] hid-asus-ally: add trigger deadzones
Signed-off-by: Luke D. Jones <luke@ljones.dev>
---
drivers/hid/hid-asus-ally.c | 43 +++++++++++++++++++++++++++++++++++++
drivers/hid/hid-asus-ally.h | 1 +
2 files changed, 44 insertions(+)
diff --git a/drivers/hid/hid-asus-ally.c b/drivers/hid/hid-asus-ally.c
index 64f4b466f0bb..4a3e7cea1c5e 100644
--- a/drivers/hid/hid-asus-ally.c
+++ b/drivers/hid/hid-asus-ally.c
@@ -284,6 +284,8 @@ struct ally_gamepad_cfg {
/* deadzones */
struct deadzone ls_dz; // left stick
struct deadzone rs_dz; // right stick
+ struct deadzone lt_dz; // left trigger
+ struct deadzone rt_dz; // right trigger
};
/* The hatswitch outputs integers, we use them to index this X|Y pair */
@@ -563,7 +565,20 @@ static ssize_t _gamepad_apply_deadzones(struct hid_device *hdev,
hidbuf[7] = ally_cfg->rs_dz.outer;
ret = asus_dev_set_report(hdev, hidbuf, FEATURE_ROG_ALLY_REPORT_SIZE);
+ if (ret < 0)
+ goto end;
+
+ hidbuf[2] = xpad_cmd_set_tr_dz;
+ hidbuf[4] = ally_cfg->lt_dz.inner;
+ hidbuf[5] = ally_cfg->lt_dz.outer;
+ hidbuf[6] = ally_cfg->rt_dz.inner;
+ hidbuf[7] = ally_cfg->rt_dz.outer;
+
+ ret = asus_dev_set_report(hdev, hidbuf, FEATURE_ROG_ALLY_REPORT_SIZE);
+ if (ret < 0)
+ goto end;
+end:
kfree(hidbuf);
return ret;
}
@@ -574,6 +589,10 @@ static void _gamepad_set_deadzones_default(struct ally_gamepad_cfg *ally_cfg)
ally_cfg->ls_dz.outer = 0x64;
ally_cfg->rs_dz.inner = 0x00;
ally_cfg->rs_dz.outer = 0x64;
+ ally_cfg->lt_dz.inner = 0x00;
+ ally_cfg->lt_dz.outer = 0x64;
+ ally_cfg->rt_dz.inner = 0x00;
+ ally_cfg->rt_dz.outer = 0x64;
}
static ssize_t axis_xyz_deadzone_index_show(struct device *dev, struct device_attribute *attr,
@@ -586,6 +605,8 @@ ALLY_DEVICE_ATTR_RO(axis_xyz_deadzone_index, deadzone_index);
ALLY_DEADZONES(axis_xy_left, ls_dz);
ALLY_DEADZONES(axis_xy_right, rs_dz);
+ALLY_DEADZONES(axis_z_left, lt_dz);
+ALLY_DEADZONES(axis_z_right, rt_dz);
static struct attribute *axis_xy_left_attrs[] = {
&dev_attr_axis_xy_left_deadzone.attr,
@@ -607,6 +628,26 @@ static const struct attribute_group axis_xy_right_attr_group = {
.attrs = axis_xy_right_attrs,
};
+static struct attribute *axis_z_left_attrs[] = {
+ &dev_attr_axis_z_left_deadzone.attr,
+ &dev_attr_axis_xyz_deadzone_index.attr,
+ NULL,
+};
+static const struct attribute_group axis_z_left_attr_group = {
+ .name = "axis_z_left",
+ .attrs = axis_z_left_attrs,
+};
+
+static struct attribute *axis_z_right_attrs[] = {
+ &dev_attr_axis_z_right_deadzone.attr,
+ &dev_attr_axis_xyz_deadzone_index.attr,
+ NULL,
+};
+static const struct attribute_group axis_z_right_attr_group = {
+ .name = "axis_z_right",
+ .attrs = axis_z_right_attrs,
+};
+
/* A HID packet conatins mappings for two buttons: btn1, btn1_macro, btn2, btn2_macro */
static void _btn_pair_to_hid_pkt(struct ally_gamepad_cfg *ally_cfg,
enum btn_pair_index pair,
@@ -950,6 +991,8 @@ static const struct attribute_group *gamepad_device_attr_groups[] = {
&ally_controller_attr_group,
&axis_xy_left_attr_group,
&axis_xy_right_attr_group,
+ &axis_z_left_attr_group,
+ &axis_z_right_attr_group,
&btn_mapping_m1_attr_group,
&btn_mapping_m2_attr_group,
&btn_mapping_a_attr_group,
diff --git a/drivers/hid/hid-asus-ally.h b/drivers/hid/hid-asus-ally.h
index 3dc14a5226f3..32ed5caa3759 100644
--- a/drivers/hid/hid-asus-ally.h
+++ b/drivers/hid/hid-asus-ally.h
@@ -23,6 +23,7 @@ enum xpad_cmd {
xpad_cmd_set_mode = 0x01,
xpad_cmd_set_mapping = 0x02,
xpad_cmd_set_js_dz = 0x04, /* deadzones */
+ xpad_cmd_set_tr_dz = 0x05, /* deadzones */
xpad_cmd_set_vibe_intensity = 0x06,
xpad_cmd_set_leds = 0x08,
xpad_cmd_check_ready = 0x0A,
--
2.48.1
|