blob: 8b85a38b43188dde75f335b880e631772e8b4809 [file] [log] [blame]
Kim Low0a5109d2017-04-04 13:32:19 -07001# Copyright (C) 2018 The Android Open Source Project
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15#
16# Sony Playstation(R) DualShock 4 USB Dongle
17# - Version 0x8111 is for Linux hid-sony driver >=4.10
18#
19
20
21# Mapping according to https://developer.android.com/training/game-controllers/controller-input.html
22
23# Square
24key 0x134 BUTTON_X
25# Cross
26key 0x130 BUTTON_A
27# Circle
28key 0x131 BUTTON_B
29# Triangle
30key 0x133 BUTTON_Y
31
32key 0x136 BUTTON_L1
33key 0x137 BUTTON_R1
34key 0x138 BUTTON_L2
35key 0x139 BUTTON_R2
36
37# L2 axis
38axis 0x02 LTRIGGER
39# R2 axis
40axis 0x05 RTRIGGER
41
42# Left Analog Stick
43axis 0x00 X
44axis 0x01 Y
45# Right Analog Stick
46axis 0x03 Z
47axis 0x04 RZ
48
49# Left stick click
50key 0x13d BUTTON_THUMBL
51# Right stick click
52key 0x13e BUTTON_THUMBR
53
54# Hat
55axis 0x10 HAT_X
56axis 0x11 HAT_Y
57
58# Mapping according to https://www.kernel.org/doc/Documentation/input/gamepad.txt
59# Share
60key 0x13a BUTTON_SELECT
61# Options
62key 0x13b BUTTON_START
63# PS key
64key 0x13c BUTTON_MODE
65
66# In kernel versions >= 4.10, the touchpad is a separate input device,
67# so the touchpad button click will not be covered by this layout.