Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
e6b6e19a
Commit
e6b6e19a
authored
Aug 10, 2020
by
Jiri Kosina
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'for-5.9/wiimote' into for-linus
parents
ccac9cec
a8cbf80e
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
50 additions
and
24 deletions
+50
-24
drivers/hid/hid-wiimote-core.c
drivers/hid/hid-wiimote-core.c
+5
-0
drivers/hid/hid-wiimote-modules.c
drivers/hid/hid-wiimote-modules.c
+43
-24
drivers/hid/hid-wiimote.h
drivers/hid/hid-wiimote.h
+2
-0
No files found.
drivers/hid/hid-wiimote-core.c
View file @
e6b6e19a
...
...
@@ -1870,6 +1870,11 @@ static const struct hid_device_id wiimote_hid_devices[] = {
USB_DEVICE_ID_NINTENDO_WIIMOTE2
)
},
{
}
};
bool
wiimote_dpad_as_analog
=
false
;
module_param_named
(
dpad_as_analog
,
wiimote_dpad_as_analog
,
bool
,
0644
);
MODULE_PARM_DESC
(
dpad_as_analog
,
"Use D-Pad as main analog input"
);
MODULE_DEVICE_TABLE
(
hid
,
wiimote_hid_devices
);
static
struct
hid_driver
wiimote_hid_driver
=
{
...
...
drivers/hid/hid-wiimote-modules.c
View file @
e6b6e19a
...
...
@@ -1088,12 +1088,28 @@ static void wiimod_classic_in_ext(struct wiimote_data *wdata, const __u8 *ext)
* is the same as before.
*/
static
const
s8
digital_to_analog
[
3
]
=
{
0x20
,
0
,
-
0x20
};
if
(
wdata
->
state
.
flags
&
WIIPROTO_FLAG_MP_ACTIVE
)
{
lx
=
ext
[
0
]
&
0x3e
;
ly
=
ext
[
1
]
&
0x3e
;
if
(
wiimote_dpad_as_analog
)
{
lx
=
digital_to_analog
[
1
-
!
(
ext
[
4
]
&
0x80
)
+
!
(
ext
[
1
]
&
0x01
)];
ly
=
digital_to_analog
[
1
-
!
(
ext
[
4
]
&
0x40
)
+
!
(
ext
[
0
]
&
0x01
)];
}
else
{
lx
=
(
ext
[
0
]
&
0x3e
)
-
0x20
;
ly
=
(
ext
[
1
]
&
0x3e
)
-
0x20
;
}
}
else
{
lx
=
ext
[
0
]
&
0x3f
;
ly
=
ext
[
1
]
&
0x3f
;
if
(
wiimote_dpad_as_analog
)
{
lx
=
digital_to_analog
[
1
-
!
(
ext
[
4
]
&
0x80
)
+
!
(
ext
[
5
]
&
0x02
)];
ly
=
digital_to_analog
[
1
-
!
(
ext
[
4
]
&
0x40
)
+
!
(
ext
[
5
]
&
0x01
)];
}
else
{
lx
=
(
ext
[
0
]
&
0x3f
)
-
0x20
;
ly
=
(
ext
[
1
]
&
0x3f
)
-
0x20
;
}
}
rx
=
(
ext
[
0
]
>>
3
)
&
0x18
;
...
...
@@ -1110,19 +1126,13 @@ static void wiimod_classic_in_ext(struct wiimote_data *wdata, const __u8 *ext)
rt
<<=
1
;
lt
<<=
1
;
input_report_abs
(
wdata
->
extension
.
input
,
ABS_HAT1X
,
lx
-
0x20
);
input_report_abs
(
wdata
->
extension
.
input
,
ABS_HAT1Y
,
ly
-
0x20
);
input_report_abs
(
wdata
->
extension
.
input
,
ABS_HAT1X
,
lx
);
input_report_abs
(
wdata
->
extension
.
input
,
ABS_HAT1Y
,
ly
);
input_report_abs
(
wdata
->
extension
.
input
,
ABS_HAT2X
,
rx
-
0x20
);
input_report_abs
(
wdata
->
extension
.
input
,
ABS_HAT2Y
,
ry
-
0x20
);
input_report_abs
(
wdata
->
extension
.
input
,
ABS_HAT3X
,
rt
);
input_report_abs
(
wdata
->
extension
.
input
,
ABS_HAT3Y
,
lt
);
input_report_key
(
wdata
->
extension
.
input
,
wiimod_classic_map
[
WIIMOD_CLASSIC_KEY_RIGHT
],
!
(
ext
[
4
]
&
0x80
));
input_report_key
(
wdata
->
extension
.
input
,
wiimod_classic_map
[
WIIMOD_CLASSIC_KEY_DOWN
],
!
(
ext
[
4
]
&
0x40
));
input_report_key
(
wdata
->
extension
.
input
,
wiimod_classic_map
[
WIIMOD_CLASSIC_KEY_LT
],
!
(
ext
[
4
]
&
0x20
));
...
...
@@ -1157,6 +1167,14 @@ static void wiimod_classic_in_ext(struct wiimote_data *wdata, const __u8 *ext)
wiimod_classic_map
[
WIIMOD_CLASSIC_KEY_ZR
],
!
(
ext
[
5
]
&
0x04
));
if
(
!
wiimote_dpad_as_analog
)
{
input_report_key
(
wdata
->
extension
.
input
,
wiimod_classic_map
[
WIIMOD_CLASSIC_KEY_RIGHT
],
!
(
ext
[
4
]
&
0x80
));
input_report_key
(
wdata
->
extension
.
input
,
wiimod_classic_map
[
WIIMOD_CLASSIC_KEY_DOWN
],
!
(
ext
[
4
]
&
0x40
));
if
(
wdata
->
state
.
flags
&
WIIPROTO_FLAG_MP_ACTIVE
)
{
input_report_key
(
wdata
->
extension
.
input
,
wiimod_classic_map
[
WIIMOD_CLASSIC_KEY_LEFT
],
...
...
@@ -1172,6 +1190,7 @@ static void wiimod_classic_in_ext(struct wiimote_data *wdata, const __u8 *ext)
wiimod_classic_map
[
WIIMOD_CLASSIC_KEY_UP
],
!
(
ext
[
5
]
&
0x01
));
}
}
input_sync
(
wdata
->
extension
.
input
);
}
...
...
drivers/hid/hid-wiimote.h
View file @
e6b6e19a
...
...
@@ -162,6 +162,8 @@ struct wiimote_data {
struct
work_struct
init_worker
;
};
extern
bool
wiimote_dpad_as_analog
;
/* wiimote modules */
enum
wiimod_module
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment