]> git.ipfire.org Git - thirdparty/systemd.git/blob - hwdb/60-sensor.hwdb
hwdb: Add accelerometer orientation entry for Chuwi Hi10 Pro
[thirdparty/systemd.git] / hwdb / 60-sensor.hwdb
1 # This file is part of systemd.
2 #
3 # The lookup keys are composed in:
4 # 60-sensor.rules
5 #
6 # Note: The format of the "sensor:" prefix match key is a
7 # contract between the rules file and the hardware data, it might
8 # change in later revisions to support more or better matches, it
9 # is not necessarily expected to be a stable ABI.
10 #
11 # Match string formats:
12 # sensor:modalias:<parent device modalias>:dmi:<dmi string>
13 #
14 # To add local entries, create a new file
15 # /etc/udev/hwdb.d/61-sensor-local.hwdb
16 # and add your rules there. To load the new rules execute (as root):
17 # systemd-hwdb update
18 # udevadm trigger -y `dirname $(udevadm info -n "/dev/iio:deviceXXX" -q path)`
19 # where /dev/iio:deviceXXX is the device in question.
20 #
21 # If your changes are generally applicable, preferably send them as a pull
22 # request to
23 # https://github.com/systemd/systemd
24 # or create a bug report on https://github.com/systemd/systemd/issues and
25 # include your new rules, a description of the device, and the output of
26 # udevadm info --export-db
27 #
28 # For hwdb format and systemd behavior:
29 # https://www.freedesktop.org/software/systemd/man/hwdb.html
30 #
31 # Allowed properties are:
32 # ACCEL_MOUNT_MATRIX=<matrix>
33 #
34 # where <matrix> is a mount-matrix in the format specified in the IIO
35 # subsystem[1]. The default, when unset, is equivalent to:
36 # ACCEL_MOUNT_MATRIX=1, 0, 0; 0, 1, 0; 0, 0, 1
37 # eg. the identity matrix.
38 #
39 # [1]: https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=dfc57732ad38f93ae6232a3b4e64fd077383a0f1
40 #
41 # Note for devices where the display (LCD panel) is mounted non upright
42 # in the device's casing, e.g. mounted upside-down or 90 degree rotated,
43 # the ACCEL_MOUNT_MATRIX should be such that the x and y axis matches the
44 # x and y axis of the display, not those of the casing, so that desktop
45 # environments using the accelerometer data for rotation will e.g.
46 # automatically flip their output for an upside-down display when the device
47 # is held upright.
48 #
49 # Sort by brand, model
50
51 #########################################
52 # Acer
53 #########################################
54 sensor:modalias:acpi:INVN6500*:dmi:*svn*Acer*:*pn*AspireSW5-012*
55 ACCEL_MOUNT_MATRIX=0, 1, 0; 1, 0, 0; 0, 0, 1
56
57 sensor:modalias:acpi:BMA250E*:dmi:*:svnAcer:pnIconiaW1-810:*
58 ACCEL_MOUNT_MATRIX=1, 0, 0; 0, -1, 0; 0, 0, 1
59
60 #########################################
61 # AsusTek
62 #########################################
63 sensor:modalias:acpi:INVN6500*:dmi:*svnASUSTeK*:*pnT100CHI*
64 ACCEL_MOUNT_MATRIX=-1, 0, 0; 0, 1, 0; 0, 0, 1
65
66 sensor:modalias:acpi:INVN6500*:dmi:*svnASUSTeK*:*pnT100TA*
67 ACCEL_MOUNT_MATRIX=1, 0, 0; 0, -1, 0; 0, 0, 1
68
69 sensor:modalias:acpi:INVN6500*:dmi:*svnASUSTeK*:pnT200TA*
70 ACCEL_MOUNT_MATRIX=1, 0, 0; 0, -1, 0; 0, 0, 1
71
72 sensor:modalias:acpi:INVN6500*:dmi:*svn*ASUSTeK*:*pn*TP300LD*
73 ACCEL_MOUNT_MATRIX=0, 1, 0; 1, 0, 0; 0, 0, 1
74
75 sensor:modalias:acpi:SMO8500*:dmi:*svn*ASUSTeK*:*pn*TP300LJ*
76 ACCEL_MOUNT_MATRIX=0, -1, 0; -1, 0, 0; 0, 0, 1
77
78 #########################################
79 # Axxo
80 #########################################
81 sensor:modalias:acpi:SMO8500*:dmi:*:svnStandard:pnWCBT1011:*
82 ACCEL_MOUNT_MATRIX=-1, 0, 0; 0, 1, 0; 0, 0, 1
83
84 #########################################
85 # Chuwi
86 #########################################
87
88 # Chuwi Vi8 (CWI506)
89 sensor:modalias:acpi:BMA250E*:dmi:bvnINSYDECorp.:bvrCHUWI.D86JLBNR*:svnInsyde:pni86:*
90 ACCEL_MOUNT_MATRIX=0, -1, 0; -1, 0, 0; 0, 0, 1
91
92 # Chuwi Vi8 Plus (CWI519)
93 sensor:modalias:acpi:BOSC0200*:dmi:*:svnHampoo:pnD2D3_Vi8A1:*
94 ACCEL_MOUNT_MATRIX=0, -1, 0; -1, 0, 0; 0, 0, 1
95
96 # Chuwi Hi8 Pro
97 sensor:modalias:acpi:BOSC0200*:dmi:*:svnHampoo:pnX1D3_C806N:*
98 ACCEL_MOUNT_MATRIX=0, -1, 0; -1, 0, 0; 0, 0, 1
99
100 # Chuwi Hi10 Pro
101 sensor:modalias:acpi:BOSC0200*:dmi:*:svn*CHUWIINNOVATIONANDTECHNOLOGY*:pnHi10protablet:*
102 ACCEL_MOUNT_MATRIX=0, -1, 0; -1, 0, 0; 0, 0, 1
103
104 # Chuwi Hi13
105 sensor:modalias:acpi:KIOX000A*:dmi:svnChuwi*:pnHi13
106 ACCEL_MOUNT_MATRIX=1, 0, 0; 0, -1, 0; 0, 0, 1
107
108 # Chuwi HiBook
109 # Chuwi HiBook does not have its product name filled, so we
110 # match the entire dmi-alias, assuming that the use of a BOSC0200 +
111 # bios-version + bios-date combo is unique
112 sensor:modalias:acpi:BOSC0200*:dmi:bvnAmericanMegatrendsInc.:bvr5.11:bd05/07/2016:svnDefaultstring:pnDefaultstring:pvrDefaultstring:rvnHampoo:rnCherryTrailCR:rvrDefaultstring:cvnDefaultstring:ct3:cvrDefaultstring:
113 ACCEL_MOUNT_MATRIX=0, -1, 0; -1, 0, 0; 0, 0, 1
114
115 #########################################
116 # Cube
117 #########################################
118
119 # Cube iWork8 Air
120 sensor:modalias:acpi:KIOX000A*:dmi:*:svncube:pni1-TF:*
121 ACCEL_MOUNT_MATRIX=1, 0, 0; 0, -1, 0; 0, 0, 1
122
123 # Cube i7 Stylus
124 sensor:modalias:acpi:KIOX000A*:dmi:*:svnCube:pni7Stylus:*
125 ACCEL_MOUNT_MATRIX=-1, 0, 0; 0, 1, 0; 0, 0, 1
126
127 #########################################
128 # Endless
129 #########################################
130 sensor:modalias:acpi:ACCE0001*:dmi:*svnEndless*:*pnELT-NL3*
131 ACCEL_MOUNT_MATRIX=0, 1, 0; 0, 0, -1; -1, 0, 0
132
133 #########################################
134 # GP-electronic
135 #########################################
136 sensor:modalias:acpi:KIOX000A*:dmi:bvnINSYDECorp.:bvrBYT70A.YNCHENG.WIN.007:*:svnInsyde:pnT701:*
137 ACCEL_MOUNT_MATRIX=0, -1, 0; -1, 0, 0; 0, 0, 1
138
139 #########################################
140 # HP
141 #########################################
142 sensor:modalias:platform:lis3lv02d:dmi:*svn*Hewlett-Packard*:*pn*HPEliteBook8540w*
143 sensor:modalias:platform:lis3lv02d:dmi:*svn*Hewlett-Packard*:*pn*HPEliteBook8560w*
144 ACCEL_MOUNT_MATRIX=1, 0, 0; 0, 0, -1; 0, 1, 0
145
146 sensor:modalias:acpi:SMO8500*:dmi:*:svnHewlett-Packard:pnHPStream7Tablet:*
147 sensor:modalias:acpi:SMO8500*:dmi:*:svnHewlett-Packard:pnHPStream8Tablet:*
148 ACCEL_MOUNT_MATRIX=0, 1, 0; 1, 0, 0; 0, 0, 1
149
150 #########################################
151 # I.T.Works
152 #########################################
153
154 # The I.T.Works TW891 2-in-1's DMI has the product-name field set, but not
155 # the sys-vendor field. This makes the DMI data a bit generic, so we match
156 # the whole dmi modalias, except for the BIOS version/date
157 sensor:modalias:acpi:KIOX000A*:dmi:bvnAmericanMegatrendsInc.:*:svnTobefilledbyO.E.M.:pnTW891:pvrTobefilledbyO.E.M.:rvnTobefilledbyO.E.M.:rnTW891:rvr1.0:cvnToBeFilledByO.E.M.:ct3:cvrToBeFilledByO.E.M.:
158 ACCEL_MOUNT_MATRIX=0, 1, 0; 1, 0, 0; 0, 0, 1
159
160 #########################################
161 # Jumper
162 #########################################
163
164 # EZpad mini 3
165 sensor:modalias:acpi:BOSC0200*:dmi:bvnINSYDECorp.:bvrjumperx.T87.KFBNEE*
166 ACCEL_MOUNT_MATRIX=0, -1, 0; -1, 0, 0; 0, 0, 1
167
168 #########################################
169 # Lamina
170 #########################################
171 sensor:modalias:acpi:SMO8500*:dmi:*svnLamina*:*pnT701BR.SE*
172 ACCEL_MOUNT_MATRIX=-1, 0, 0; 0, 1, 0; 0, 0, 1
173
174 sensor:modalias:acpi:KIOX000A*:dmi:*svnLAMINA:pnT-1016BNORD*
175 ACCEL_MOUNT_MATRIX=0, 1, 0; 1, 0, 0; 0, 0, 1
176
177 #########################################
178 # Lenovo
179 #########################################
180 sensor:modalias:acpi:NCPE0388*:dmi:*:rnLenovoYOGA510-14IKB:*
181 ACCEL_MOUNT_MATRIX=-1, 0, 0; 0, -1, 0; 0, 0, 1
182
183 sensor:modalias:acpi:BOSC0200:BOSC0200:dmi:*ThinkPadYoga11e3rdGen*
184 ACCEL_MOUNT_MATRIX=0, 1, 0; -1, 0, 0; 0, 0, 1
185
186 sensor:modalias:acpi:BMA250E*:dmi:bvnLENOVO:*:pvrLenovoMIIX3-1030:*
187 ACCEL_MOUNT_MATRIX=0, -1, 0; -1, 0, 0; 0, 0, 1
188
189 #########################################
190 # Peaq
191 #########################################
192 sensor:modalias:acpi:SMO8500*:dmi:*:svnPEAQ:pnPEAQPMMC1010MD99187:*
193 ACCEL_MOUNT_MATRIX=-1, 0, 0; 0, 1, 0; 0, 0, 1
194
195 #########################################
196 # Pipo
197 #########################################
198 sensor:modalias:acpi:KIOX000A*:dmi:*:svnPIPO:pnW2S:*
199 ACCEL_MOUNT_MATRIX=1, 0, 0; 0, -1, 0; 0, 0, 1
200
201 #########################################
202 # Ployer
203 #########################################
204 sensor:modalias:acpi:BMA250E*:dmi:*:svnShenzhenPLOYER*:pnMOMO7W:*
205 ACCEL_MOUNT_MATRIX=0, 1, 0; 1, 0, 0; 0, 0, 1
206
207 #########################################
208 # Point of View
209 #########################################
210
211 # The Point of View TAB-P800W does not have its product name filled, so we
212 # match the entire dmi-alias, assuming that the use of a BMA250E +
213 # bios-version + bios-date combo is unique
214 sensor:modalias:acpi:BMA250E*:dmi:bvnAmericanMegatrendsInc.:bvr3BAIR1013:bd08/22/2014:svnTobefilledbyO.E.M.:pnTobefilledbyO.E.M.:pvrTobefilledbyO.E.M.:rvnAMICorporation:rnAptioCRB:rvrTobefilledbyO.E.M.:cvnToBeFilledByO.E.M.:ct3:cvrToBeFilledByO.E.M.:
215 ACCEL_MOUNT_MATRIX=0, 1, 0; 1, 0, 0; 0, 0, 1
216
217 #########################################
218 # Teclast
219 #########################################
220 sensor:modalias:acpi:KIOX000A*:dmi:*:svnTECLAST:pnX80Pro:*
221 ACCEL_MOUNT_MATRIX=0, 1, 0; 1, 0, 0; 0, 0, 1
222
223 sensor:modalias:acpi:KIOX000A*:dmi:*:svnTECLAST:pnX98PlusII:*
224 ACCEL_MOUNT_MATRIX=1, 0, 0; 0, -1, 0; 0, 0, 1
225
226 #########################################
227 # Trekstor
228 #########################################
229 sensor:modalias:acpi:BMA250*:dmi:*:bvrTREK.G.WI71C.JGBMRBA*:*:svnInsyde:pnST70416-6:*
230 ACCEL_MOUNT_MATRIX=0, 1, 0; 1, 0, 0; 0, 0, 1
231
232 #########################################
233 # Cytrix (Mytrix)
234 #########################################
235 sensor:modalias:acpi:*KIOX000A*:dmi:*svn*CytrixTechnology:*pn*Complex11t*
236 ACCEL_MOUNT_MATRIX=-1, 0, 0; 0, 1, 0; 0, 0, 1