Merge tag 'arm64-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux
[sfrench/cifs-2.6.git] / MAINTAINERS
1 List of maintainers and how to submit kernel changes
2 ====================================================
3
4 Please try to follow the guidelines below.  This will make things
5 easier on the maintainers.  Not all of these guidelines matter for every
6 trivial patch so apply some common sense.
7
8 Tips for patch submitters
9 -------------------------
10
11 1.      Always *test* your changes, however small, on at least 4 or
12         5 people, preferably many more.
13
14 2.      Try to release a few ALPHA test versions to the net. Announce
15         them onto the kernel channel and await results. This is especially
16         important for device drivers, because often that's the only way
17         you will find things like the fact version 3 firmware needs
18         a magic fix you didn't know about, or some clown changed the
19         chips on a board and not its name.  (Don't laugh!  Look at the
20         SMC etherpower for that.)
21
22 3.      Make sure your changes compile correctly in multiple
23         configurations. In particular check that changes work both as a
24         module and built into the kernel.
25
26 4.      When you are happy with a change make it generally available for
27         testing and await feedback.
28
29 5.      Make a patch available to the relevant maintainer in the list. Use
30         ``diff -u`` to make the patch easy to merge. Be prepared to get your
31         changes sent back with seemingly silly requests about formatting
32         and variable names.  These aren't as silly as they seem. One
33         job the maintainers (and especially Linus) do is to keep things
34         looking the same. Sometimes this means that the clever hack in
35         your driver to get around a problem actually needs to become a
36         generalized kernel feature ready for next time.
37
38         PLEASE check your patch with the automated style checker
39         (scripts/checkpatch.pl) to catch trivial style violations.
40         See Documentation/process/coding-style.rst for guidance here.
41
42         PLEASE CC: the maintainers and mailing lists that are generated
43         by ``scripts/get_maintainer.pl.`` The results returned by the
44         script will be best if you have git installed and are making
45         your changes in a branch derived from Linus' latest git tree.
46         See Documentation/process/submitting-patches.rst for details.
47
48         PLEASE try to include any credit lines you want added with the
49         patch. It avoids people being missed off by mistake and makes
50         it easier to know who wants adding and who doesn't.
51
52         PLEASE document known bugs. If it doesn't work for everything
53         or does something very odd once a month document it.
54
55         PLEASE remember that submissions must be made under the terms
56         of the Linux Foundation certificate of contribution and should
57         include a Signed-off-by: line.  The current version of this
58         "Developer's Certificate of Origin" (DCO) is listed in the file
59         Documentation/process/submitting-patches.rst.
60
61 6.      Make sure you have the right to send any changes you make. If you
62         do changes at work you may find your employer owns the patch
63         not you.
64
65 7.      When sending security related changes or reports to a maintainer
66         please Cc: security@kernel.org, especially if the maintainer
67         does not respond. Please keep in mind that the security team is
68         a small set of people who can be efficient only when working on
69         verified bugs. Please only Cc: this list when you have identified
70         that the bug would present a short-term risk to other users if it
71         were publicly disclosed. For example, reports of address leaks do
72         not represent an immediate threat and are better handled publicly,
73         and ideally, should come with a patch proposal. Please do not send
74         automated reports to this list either. Such bugs will be handled
75         better and faster in the usual public places. See
76         Documentation/admin-guide/security-bugs.rst for details.
77
78 8.      Happy hacking.
79
80 Descriptions of section entries and preferred order
81 ---------------------------------------------------
82
83         M: *Mail* patches to: FullName <address@domain>
84         R: Designated *Reviewer*: FullName <address@domain>
85            These reviewers should be CCed on patches.
86         L: *Mailing list* that is relevant to this area
87         S: *Status*, one of the following:
88            Supported:   Someone is actually paid to look after this.
89            Maintained:  Someone actually looks after it.
90            Odd Fixes:   It has a maintainer but they don't have time to do
91                         much other than throw the odd patch in. See below..
92            Orphan:      No current maintainer [but maybe you could take the
93                         role as you write your new code].
94            Obsolete:    Old code. Something tagged obsolete generally means
95                         it has been replaced by a better system and you
96                         should be using that.
97         W: *Web-page* with status/info
98         Q: *Patchwork* web based patch tracking system site
99         B: URI for where to file *bugs*. A web-page with detailed bug
100            filing info, a direct bug tracker link, or a mailto: URI.
101         C: URI for *chat* protocol, server and channel where developers
102            usually hang out, for example irc://server/channel.
103         P: Subsystem Profile document for more details submitting
104            patches to the given subsystem. This is either an in-tree file,
105            or a URI. See Documentation/maintainer/maintainer-entry-profile.rst
106            for details.
107         T: *SCM* tree type and location.
108            Type is one of: git, hg, quilt, stgit, topgit
109         F: *Files* and directories wildcard patterns.
110            A trailing slash includes all files and subdirectory files.
111            F:   drivers/net/    all files in and below drivers/net
112            F:   drivers/net/*   all files in drivers/net, but not below
113            F:   */net/*         all files in "any top level directory"/net
114            One pattern per line.  Multiple F: lines acceptable.
115         X: *Excluded* files and directories that are NOT maintained, same
116            rules as F:. Files exclusions are tested before file matches.
117            Can be useful for excluding a specific subdirectory, for instance:
118            F:   net/
119            X:   net/ipv6/
120            matches all files in and below net excluding net/ipv6/
121         N: Files and directories *Regex* patterns.
122            N:   [^a-z]tegra     all files whose path contains tegra
123                                 (not including files like integrator)
124            One pattern per line.  Multiple N: lines acceptable.
125            scripts/get_maintainer.pl has different behavior for files that
126            match F: pattern and matches of N: patterns.  By default,
127            get_maintainer will not look at git log history when an F: pattern
128            match occurs.  When an N: match occurs, git log history is used
129            to also notify the people that have git commit signatures.
130         K: *Content regex* (perl extended) pattern match in a patch or file.
131            For instance:
132            K: of_get_profile
133               matches patches or files that contain "of_get_profile"
134            K: \b(printk|pr_(info|err))\b
135               matches patches or files that contain one or more of the words
136               printk, pr_info or pr_err
137            One regex pattern per line.  Multiple K: lines acceptable.
138
139 Maintainers List
140 ----------------
141
142 .. note:: When reading this list, please look for the most precise areas
143           first. When adding to this list, please keep the entries in
144           alphabetical order.
145
146 3C59X NETWORK DRIVER
147 M:      Steffen Klassert <klassert@kernel.org>
148 L:      netdev@vger.kernel.org
149 S:      Odd Fixes
150 F:      Documentation/networking/device_drivers/ethernet/3com/vortex.rst
151 F:      drivers/net/ethernet/3com/3c59x.c
152
153 3CR990 NETWORK DRIVER
154 M:      David Dillow <dave@thedillows.org>
155 L:      netdev@vger.kernel.org
156 S:      Maintained
157 F:      drivers/net/ethernet/3com/typhoon*
158
159 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
160 M:      Adam Radford <aradford@gmail.com>
161 L:      linux-scsi@vger.kernel.org
162 S:      Supported
163 W:      http://www.lsi.com
164 F:      drivers/scsi/3w-*
165
166 53C700 AND 53C700-66 SCSI DRIVER
167 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
168 L:      linux-scsi@vger.kernel.org
169 S:      Maintained
170 F:      drivers/scsi/53c700*
171
172 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
173 M:      Alexander Aring <alex.aring@gmail.com>
174 M:      Jukka Rissanen <jukka.rissanen@linux.intel.com>
175 L:      linux-bluetooth@vger.kernel.org
176 L:      linux-wpan@vger.kernel.org
177 S:      Maintained
178 F:      Documentation/networking/6lowpan.rst
179 F:      include/net/6lowpan.h
180 F:      net/6lowpan/
181
182 6PACK NETWORK DRIVER FOR AX.25
183 M:      Andreas Koensgen <ajk@comnets.uni-bremen.de>
184 L:      linux-hams@vger.kernel.org
185 S:      Maintained
186 F:      drivers/net/hamradio/6pack.c
187
188 802.11 (including CFG80211/NL80211)
189 M:      Johannes Berg <johannes@sipsolutions.net>
190 L:      linux-wireless@vger.kernel.org
191 S:      Maintained
192 W:      https://wireless.wiki.kernel.org/
193 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
194 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
195 F:      Documentation/driver-api/80211/cfg80211.rst
196 F:      Documentation/networking/regulatory.rst
197 F:      include/linux/ieee80211.h
198 F:      include/net/cfg80211.h
199 F:      include/net/ieee80211_radiotap.h
200 F:      include/net/iw_handler.h
201 F:      include/net/wext.h
202 F:      include/uapi/linux/nl80211.h
203 F:      net/wireless/
204
205 8169 10/100/1000 GIGABIT ETHERNET DRIVER
206 M:      Heiner Kallweit <hkallweit1@gmail.com>
207 M:      nic_swsd@realtek.com
208 L:      netdev@vger.kernel.org
209 S:      Maintained
210 F:      drivers/net/ethernet/realtek/r8169*
211
212 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
213 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
214 L:      linux-serial@vger.kernel.org
215 S:      Maintained
216 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
217 F:      drivers/tty/serial/8250*
218 F:      include/linux/serial_8250.h
219
220 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
221 L:      netdev@vger.kernel.org
222 S:      Orphan / Obsolete
223 F:      drivers/net/ethernet/8390/
224
225 9P FILE SYSTEM
226 M:      Eric Van Hensbergen <ericvh@gmail.com>
227 M:      Latchesar Ionkov <lucho@ionkov.net>
228 M:      Dominique Martinet <asmadeus@codewreck.org>
229 L:      v9fs-developer@lists.sourceforge.net
230 S:      Maintained
231 W:      http://swik.net/v9fs
232 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
233 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
234 T:      git git://github.com/martinetd/linux.git
235 F:      Documentation/filesystems/9p.rst
236 F:      fs/9p/
237 F:      include/net/9p/
238 F:      include/trace/events/9p.h
239 F:      include/uapi/linux/virtio_9p.h
240 F:      net/9p/
241
242 A8293 MEDIA DRIVER
243 M:      Antti Palosaari <crope@iki.fi>
244 L:      linux-media@vger.kernel.org
245 S:      Maintained
246 W:      https://linuxtv.org
247 W:      http://palosaari.fi/linux/
248 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
249 T:      git git://linuxtv.org/anttip/media_tree.git
250 F:      drivers/media/dvb-frontends/a8293*
251
252 AACRAID SCSI RAID DRIVER
253 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
254 L:      linux-scsi@vger.kernel.org
255 S:      Supported
256 W:      http://www.adaptec.com/
257 F:      Documentation/scsi/aacraid.rst
258 F:      drivers/scsi/aacraid/
259
260 ABI/API
261 L:      linux-api@vger.kernel.org
262 F:      include/linux/syscalls.h
263 F:      kernel/sys_ni.c
264 X:      include/uapi/
265 X:      arch/*/include/uapi/
266
267 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
268 M:      Hans de Goede <hdegoede@redhat.com>
269 L:      linux-hwmon@vger.kernel.org
270 S:      Maintained
271 F:      drivers/hwmon/abituguru.c
272
273 ABIT UGURU 3 HARDWARE MONITOR DRIVER
274 M:      Alistair John Strachan <alistair@devzero.co.uk>
275 L:      linux-hwmon@vger.kernel.org
276 S:      Maintained
277 F:      drivers/hwmon/abituguru3.c
278
279 ACCES 104-DIO-48E GPIO DRIVER
280 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
281 L:      linux-gpio@vger.kernel.org
282 S:      Maintained
283 F:      drivers/gpio/gpio-104-dio-48e.c
284
285 ACCES 104-IDI-48 GPIO DRIVER
286 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
287 L:      linux-gpio@vger.kernel.org
288 S:      Maintained
289 F:      drivers/gpio/gpio-104-idi-48.c
290
291 ACCES 104-IDIO-16 GPIO DRIVER
292 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
293 L:      linux-gpio@vger.kernel.org
294 S:      Maintained
295 F:      drivers/gpio/gpio-104-idio-16.c
296
297 ACCES 104-QUAD-8 DRIVER
298 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
299 M:      Syed Nayyar Waris <syednwaris@gmail.com>
300 L:      linux-iio@vger.kernel.org
301 S:      Maintained
302 F:      drivers/counter/104-quad-8.c
303
304 ACCES PCI-IDIO-16 GPIO DRIVER
305 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
306 L:      linux-gpio@vger.kernel.org
307 S:      Maintained
308 F:      drivers/gpio/gpio-pci-idio-16.c
309
310 ACCES PCIe-IDIO-24 GPIO DRIVER
311 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
312 L:      linux-gpio@vger.kernel.org
313 S:      Maintained
314 F:      drivers/gpio/gpio-pcie-idio-24.c
315
316 ACENIC DRIVER
317 M:      Jes Sorensen <jes@trained-monkey.org>
318 L:      linux-acenic@sunsite.dk
319 S:      Maintained
320 F:      drivers/net/ethernet/alteon/acenic*
321
322 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
323 M:      Peter Kaestle <peter@piie.net>
324 L:      platform-driver-x86@vger.kernel.org
325 S:      Maintained
326 W:      http://piie.net/?section=acerhdf
327 F:      drivers/platform/x86/acerhdf.c
328
329 ACER WMI LAPTOP EXTRAS
330 M:      "Lee, Chun-Yi" <jlee@suse.com>
331 L:      platform-driver-x86@vger.kernel.org
332 S:      Maintained
333 F:      drivers/platform/x86/acer-wmi.c
334
335 ACPI
336 M:      "Rafael J. Wysocki" <rafael@kernel.org>
337 R:      Len Brown <lenb@kernel.org>
338 L:      linux-acpi@vger.kernel.org
339 S:      Supported
340 W:      https://01.org/linux-acpi
341 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
342 B:      https://bugzilla.kernel.org
343 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
344 F:      Documentation/ABI/testing/configfs-acpi
345 F:      Documentation/ABI/testing/sysfs-bus-acpi
346 F:      Documentation/firmware-guide/acpi/
347 F:      drivers/acpi/
348 F:      drivers/pci/*/*acpi*
349 F:      drivers/pci/*acpi*
350 F:      drivers/pnp/pnpacpi/
351 F:      include/acpi/
352 F:      include/linux/acpi.h
353 F:      include/linux/fwnode.h
354 F:      tools/power/acpi/
355
356 ACPI APEI
357 M:      "Rafael J. Wysocki" <rafael@kernel.org>
358 R:      Len Brown <lenb@kernel.org>
359 R:      James Morse <james.morse@arm.com>
360 R:      Tony Luck <tony.luck@intel.com>
361 R:      Borislav Petkov <bp@alien8.de>
362 L:      linux-acpi@vger.kernel.org
363 F:      drivers/acpi/apei/
364
365 ACPI COMPONENT ARCHITECTURE (ACPICA)
366 M:      Robert Moore <robert.moore@intel.com>
367 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
368 L:      linux-acpi@vger.kernel.org
369 L:      devel@acpica.org
370 S:      Supported
371 W:      https://acpica.org/
372 W:      https://github.com/acpica/acpica/
373 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
374 B:      https://bugzilla.kernel.org
375 B:      https://bugs.acpica.org
376 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
377 F:      drivers/acpi/acpica/
378 F:      include/acpi/
379 F:      tools/power/acpi/
380
381 ACPI FOR ARM64 (ACPI/arm64)
382 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
383 M:      Hanjun Guo <guohanjun@huawei.com>
384 M:      Sudeep Holla <sudeep.holla@arm.com>
385 L:      linux-acpi@vger.kernel.org
386 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
387 S:      Maintained
388 F:      drivers/acpi/arm64
389
390 ACPI I2C MULTI INSTANTIATE DRIVER
391 M:      Hans de Goede <hdegoede@redhat.com>
392 L:      platform-driver-x86@vger.kernel.org
393 S:      Maintained
394 F:      drivers/platform/x86/i2c-multi-instantiate.c
395
396 ACPI PCC(Platform Communication Channel) MAILBOX DRIVER
397 M:      Sudeep Holla <sudeep.holla@arm.com>
398 L:      linux-acpi@vger.kernel.org
399 S:      Supported
400 F:      drivers/mailbox/pcc.c
401
402 ACPI PMIC DRIVERS
403 M:      "Rafael J. Wysocki" <rafael@kernel.org>
404 M:      Len Brown <lenb@kernel.org>
405 R:      Andy Shevchenko <andy@kernel.org>
406 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
407 L:      linux-acpi@vger.kernel.org
408 S:      Supported
409 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
410 B:      https://bugzilla.kernel.org
411 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
412 F:      drivers/acpi/pmic/
413
414 ACPI THERMAL DRIVER
415 M:      Rafael J. Wysocki <rafael@kernel.org>
416 R:      Zhang Rui <rui.zhang@intel.com>
417 L:      linux-acpi@vger.kernel.org
418 S:      Supported
419 W:      https://01.org/linux-acpi
420 B:      https://bugzilla.kernel.org
421 F:      drivers/acpi/*thermal*
422
423 ACPI VIOT DRIVER
424 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
425 L:      linux-acpi@vger.kernel.org
426 L:      iommu@lists.linux-foundation.org
427 S:      Maintained
428 F:      drivers/acpi/viot.c
429 F:      include/linux/acpi_viot.h
430
431 ACPI WMI DRIVER
432 L:      platform-driver-x86@vger.kernel.org
433 S:      Orphan
434 F:      drivers/platform/x86/wmi.c
435 F:      include/uapi/linux/wmi.h
436
437 ACRN HYPERVISOR SERVICE MODULE
438 M:      Fei Li <fei1.li@intel.com>
439 L:      acrn-dev@lists.projectacrn.org (subscribers-only)
440 S:      Supported
441 W:      https://projectacrn.org
442 F:      Documentation/virt/acrn/
443 F:      drivers/virt/acrn/
444 F:      include/uapi/linux/acrn.h
445
446 AD1889 ALSA SOUND DRIVER
447 L:      linux-parisc@vger.kernel.org
448 S:      Maintained
449 W:      https://parisc.wiki.kernel.org/index.php/AD1889
450 F:      sound/pci/ad1889.*
451
452 AD5110 ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
453 M:      Mugilraj Dhavachelvan <dmugil2000@gmail.com>
454 L:      linux-iio@vger.kernel.org
455 S:      Supported
456 F:      drivers/iio/potentiometer/ad5110.c
457
458 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
459 M:      Michael Hennerich <michael.hennerich@analog.com>
460 S:      Supported
461 W:      http://wiki.analog.com/AD5254
462 W:      http://ez.analog.com/community/linux-device-drivers
463 F:      drivers/misc/ad525x_dpot.c
464
465 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
466 M:      Michael Hennerich <michael.hennerich@analog.com>
467 S:      Supported
468 W:      http://wiki.analog.com/AD5398
469 W:      http://ez.analog.com/community/linux-device-drivers
470 F:      drivers/regulator/ad5398.c
471
472 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
473 M:      Michael Hennerich <michael.hennerich@analog.com>
474 S:      Supported
475 W:      http://wiki.analog.com/AD7142
476 W:      http://ez.analog.com/community/linux-device-drivers
477 F:      drivers/input/misc/ad714x.c
478
479 AD7877 TOUCHSCREEN DRIVER
480 M:      Michael Hennerich <michael.hennerich@analog.com>
481 S:      Supported
482 W:      http://wiki.analog.com/AD7877
483 W:      http://ez.analog.com/community/linux-device-drivers
484 F:      drivers/input/touchscreen/ad7877.c
485
486 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
487 M:      Michael Hennerich <michael.hennerich@analog.com>
488 S:      Supported
489 W:      http://wiki.analog.com/AD7879
490 W:      http://ez.analog.com/community/linux-device-drivers
491 F:      drivers/input/touchscreen/ad7879.c
492
493 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
494 M:      Jiri Kosina <jikos@kernel.org>
495 S:      Maintained
496
497 ADF7242 IEEE 802.15.4 RADIO DRIVER
498 M:      Michael Hennerich <michael.hennerich@analog.com>
499 L:      linux-wpan@vger.kernel.org
500 S:      Supported
501 W:      https://wiki.analog.com/ADF7242
502 W:      http://ez.analog.com/community/linux-device-drivers
503 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
504 F:      drivers/net/ieee802154/adf7242.c
505
506 ADM1025 HARDWARE MONITOR DRIVER
507 M:      Jean Delvare <jdelvare@suse.com>
508 L:      linux-hwmon@vger.kernel.org
509 S:      Maintained
510 F:      Documentation/hwmon/adm1025.rst
511 F:      drivers/hwmon/adm1025.c
512
513 ADM1029 HARDWARE MONITOR DRIVER
514 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
515 L:      linux-hwmon@vger.kernel.org
516 S:      Maintained
517 F:      drivers/hwmon/adm1029.c
518
519 ADM8211 WIRELESS DRIVER
520 L:      linux-wireless@vger.kernel.org
521 S:      Orphan
522 W:      https://wireless.wiki.kernel.org/
523 F:      drivers/net/wireless/admtek/adm8211.*
524
525 ADP1653 FLASH CONTROLLER DRIVER
526 M:      Sakari Ailus <sakari.ailus@iki.fi>
527 L:      linux-media@vger.kernel.org
528 S:      Maintained
529 F:      drivers/media/i2c/adp1653.c
530 F:      include/media/i2c/adp1653.h
531
532 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
533 M:      Michael Hennerich <michael.hennerich@analog.com>
534 S:      Supported
535 W:      http://wiki.analog.com/ADP5520
536 W:      http://ez.analog.com/community/linux-device-drivers
537 F:      drivers/gpio/gpio-adp5520.c
538 F:      drivers/input/keyboard/adp5520-keys.c
539 F:      drivers/leds/leds-adp5520.c
540 F:      drivers/mfd/adp5520.c
541 F:      drivers/video/backlight/adp5520_bl.c
542
543 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
544 M:      Michael Hennerich <michael.hennerich@analog.com>
545 S:      Supported
546 W:      http://wiki.analog.com/ADP5588
547 W:      http://ez.analog.com/community/linux-device-drivers
548 F:      drivers/gpio/gpio-adp5588.c
549 F:      drivers/input/keyboard/adp5588-keys.c
550
551 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
552 M:      Michael Hennerich <michael.hennerich@analog.com>
553 S:      Supported
554 W:      http://wiki.analog.com/ADP8860
555 W:      http://ez.analog.com/community/linux-device-drivers
556 F:      drivers/video/backlight/adp8860_bl.c
557
558 ADT746X FAN DRIVER
559 M:      Colin Leroy <colin@colino.net>
560 S:      Maintained
561 F:      drivers/macintosh/therm_adt746x.c
562
563 ADT7475 HARDWARE MONITOR DRIVER
564 M:      Jean Delvare <jdelvare@suse.com>
565 L:      linux-hwmon@vger.kernel.org
566 S:      Maintained
567 F:      Documentation/hwmon/adt7475.rst
568 F:      drivers/hwmon/adt7475.c
569
570 ADVANSYS SCSI DRIVER
571 M:      Matthew Wilcox <willy@infradead.org>
572 M:      Hannes Reinecke <hare@suse.com>
573 L:      linux-scsi@vger.kernel.org
574 S:      Maintained
575 F:      Documentation/scsi/advansys.rst
576 F:      drivers/scsi/advansys.c
577
578 ADVANTECH SWBTN DRIVER
579 M:      Andrea Ho <Andrea.Ho@advantech.com.tw>
580 L:      platform-driver-x86@vger.kernel.org
581 S:      Maintained
582 F:      drivers/platform/x86/adv_swbutton.c
583
584 ADXL313 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
585 M:      Lucas Stankus <lucas.p.stankus@gmail.com>
586 S:      Supported
587 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl313.yaml
588 F:      drivers/iio/accel/adxl313*
589
590 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
591 M:      Michael Hennerich <michael.hennerich@analog.com>
592 S:      Supported
593 W:      http://wiki.analog.com/ADXL345
594 W:      http://ez.analog.com/community/linux-device-drivers
595 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl345.yaml
596 F:      drivers/input/misc/adxl34x.c
597
598 ADXL355 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
599 M:      Puranjay Mohan <puranjay12@gmail.com>
600 L:      linux-iio@vger.kernel.org
601 S:      Supported
602 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl355.yaml
603 F:      drivers/iio/accel/adxl355.h
604 F:      drivers/iio/accel/adxl355_core.c
605 F:      drivers/iio/accel/adxl355_i2c.c
606 F:      drivers/iio/accel/adxl355_spi.c
607
608 ADXL372 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
609 M:      Michael Hennerich <michael.hennerich@analog.com>
610 S:      Supported
611 W:      http://ez.analog.com/community/linux-device-drivers
612 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl372.yaml
613 F:      drivers/iio/accel/adxl372.c
614 F:      drivers/iio/accel/adxl372_i2c.c
615 F:      drivers/iio/accel/adxl372_spi.c
616
617 AF9013 MEDIA DRIVER
618 M:      Antti Palosaari <crope@iki.fi>
619 L:      linux-media@vger.kernel.org
620 S:      Maintained
621 W:      https://linuxtv.org
622 W:      http://palosaari.fi/linux/
623 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
624 T:      git git://linuxtv.org/anttip/media_tree.git
625 F:      drivers/media/dvb-frontends/af9013*
626
627 AF9033 MEDIA DRIVER
628 M:      Antti Palosaari <crope@iki.fi>
629 L:      linux-media@vger.kernel.org
630 S:      Maintained
631 W:      https://linuxtv.org
632 W:      http://palosaari.fi/linux/
633 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
634 T:      git git://linuxtv.org/anttip/media_tree.git
635 F:      drivers/media/dvb-frontends/af9033*
636
637 AFFS FILE SYSTEM
638 M:      David Sterba <dsterba@suse.com>
639 L:      linux-fsdevel@vger.kernel.org
640 S:      Odd Fixes
641 F:      Documentation/filesystems/affs.rst
642 F:      fs/affs/
643
644 AFS FILESYSTEM
645 M:      David Howells <dhowells@redhat.com>
646 M:      Marc Dionne <marc.dionne@auristor.com>
647 L:      linux-afs@lists.infradead.org
648 S:      Supported
649 W:      https://www.infradead.org/~dhowells/kafs/
650 F:      Documentation/filesystems/afs.rst
651 F:      fs/afs/
652 F:      include/trace/events/afs.h
653
654 AGPGART DRIVER
655 M:      David Airlie <airlied@linux.ie>
656 S:      Maintained
657 T:      git git://anongit.freedesktop.org/drm/drm
658 F:      drivers/char/agp/
659 F:      include/linux/agp*
660 F:      include/uapi/linux/agp*
661
662 AHA152X SCSI DRIVER
663 M:      "Juergen E. Fischer" <fischer@norbit.de>
664 L:      linux-scsi@vger.kernel.org
665 S:      Maintained
666 F:      drivers/scsi/aha152x*
667 F:      drivers/scsi/pcmcia/aha152x*
668
669 AIC7XXX / AIC79XX SCSI DRIVER
670 M:      Hannes Reinecke <hare@suse.com>
671 L:      linux-scsi@vger.kernel.org
672 S:      Maintained
673 F:      drivers/scsi/aic7xxx/
674
675 AIMSLAB FM RADIO RECEIVER DRIVER
676 M:      Hans Verkuil <hverkuil@xs4all.nl>
677 L:      linux-media@vger.kernel.org
678 S:      Maintained
679 W:      https://linuxtv.org
680 T:      git git://linuxtv.org/media_tree.git
681 F:      drivers/media/radio/radio-aimslab*
682
683 AIO
684 M:      Benjamin LaHaise <bcrl@kvack.org>
685 L:      linux-aio@kvack.org
686 S:      Supported
687 F:      fs/aio.c
688 F:      include/linux/*aio*.h
689
690 AIRSPY MEDIA DRIVER
691 M:      Antti Palosaari <crope@iki.fi>
692 L:      linux-media@vger.kernel.org
693 S:      Maintained
694 W:      https://linuxtv.org
695 W:      http://palosaari.fi/linux/
696 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
697 T:      git git://linuxtv.org/anttip/media_tree.git
698 F:      drivers/media/usb/airspy/
699
700 ALACRITECH GIGABIT ETHERNET DRIVER
701 M:      Lino Sanfilippo <LinoSanfilippo@gmx.de>
702 S:      Maintained
703 F:      drivers/net/ethernet/alacritech/*
704
705 ALCATEL SPEEDTOUCH USB DRIVER
706 M:      Duncan Sands <duncan.sands@free.fr>
707 L:      linux-usb@vger.kernel.org
708 S:      Maintained
709 W:      http://www.linux-usb.org/SpeedTouch/
710 F:      drivers/usb/atm/speedtch.c
711 F:      drivers/usb/atm/usbatm.c
712
713 ALCHEMY AU1XX0 MMC DRIVER
714 M:      Manuel Lauss <manuel.lauss@gmail.com>
715 S:      Maintained
716 F:      drivers/mmc/host/au1xmmc.c
717
718 ALI1563 I2C DRIVER
719 M:      Rudolf Marek <r.marek@assembler.cz>
720 L:      linux-i2c@vger.kernel.org
721 S:      Maintained
722 F:      Documentation/i2c/busses/i2c-ali1563.rst
723 F:      drivers/i2c/busses/i2c-ali1563.c
724
725 ALIENWARE WMI DRIVER
726 L:      Dell.Client.Kernel@dell.com
727 S:      Maintained
728 F:      drivers/platform/x86/dell/alienware-wmi.c
729
730 ALL SENSORS DLH SERIES PRESSURE SENSORS DRIVER
731 M:      Tomislav Denis <tomislav.denis@avl.com>
732 L:      linux-iio@vger.kernel.org
733 S:      Maintained
734 W:      http://www.allsensors.com/
735 F:      Documentation/devicetree/bindings/iio/pressure/asc,dlhl60d.yaml
736 F:      drivers/iio/pressure/dlhl60d.c
737
738 ALLEGRO DVT VIDEO IP CORE DRIVER
739 M:      Michael Tretter <m.tretter@pengutronix.de>
740 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
741 L:      linux-media@vger.kernel.org
742 S:      Maintained
743 F:      Documentation/devicetree/bindings/media/allegro,al5e.yaml
744 F:      drivers/media/platform/allegro-dvt/
745
746 ALLWINNER A10 CSI DRIVER
747 M:      Maxime Ripard <mripard@kernel.org>
748 L:      linux-media@vger.kernel.org
749 S:      Maintained
750 T:      git git://linuxtv.org/media_tree.git
751 F:      Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
752 F:      drivers/media/platform/sunxi/sun4i-csi/
753
754 ALLWINNER CPUFREQ DRIVER
755 M:      Yangtao Li <tiny.windzz@gmail.com>
756 L:      linux-pm@vger.kernel.org
757 S:      Maintained
758 F:      Documentation/devicetree/bindings/opp/allwinner,sun50i-h6-operating-points.yaml
759 F:      drivers/cpufreq/sun50i-cpufreq-nvmem.c
760
761 ALLWINNER CRYPTO DRIVERS
762 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
763 L:      linux-crypto@vger.kernel.org
764 S:      Maintained
765 F:      drivers/crypto/allwinner/
766
767 ALLWINNER HARDWARE SPINLOCK SUPPORT
768 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
769 S:      Maintained
770 F:      Documentation/devicetree/bindings/hwlock/allwinner,sun6i-a31-hwspinlock.yaml
771 F:      drivers/hwspinlock/sun6i_hwspinlock.c
772
773 ALLWINNER THERMAL DRIVER
774 M:      Vasily Khoruzhick <anarsoul@gmail.com>
775 M:      Yangtao Li <tiny.windzz@gmail.com>
776 L:      linux-pm@vger.kernel.org
777 S:      Maintained
778 F:      Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml
779 F:      drivers/thermal/sun8i_thermal.c
780
781 ALLWINNER VPU DRIVER
782 M:      Maxime Ripard <mripard@kernel.org>
783 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
784 L:      linux-media@vger.kernel.org
785 S:      Maintained
786 F:      drivers/staging/media/sunxi/cedrus/
787
788 ALPHA PORT
789 M:      Richard Henderson <rth@twiddle.net>
790 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
791 M:      Matt Turner <mattst88@gmail.com>
792 L:      linux-alpha@vger.kernel.org
793 S:      Odd Fixes
794 F:      arch/alpha/
795
796 ALPS PS/2 TOUCHPAD DRIVER
797 R:      Pali Rohár <pali@kernel.org>
798 F:      drivers/input/mouse/alps.*
799
800 ALTERA I2C CONTROLLER DRIVER
801 M:      Thor Thayer <thor.thayer@linux.intel.com>
802 S:      Maintained
803 F:      Documentation/devicetree/bindings/i2c/i2c-altera.txt
804 F:      drivers/i2c/busses/i2c-altera.c
805
806 ALTERA MAILBOX DRIVER
807 M:      Mun Yew Tham <mun.yew.tham@intel.com>
808 S:      Maintained
809 F:      drivers/mailbox/mailbox-altera.c
810
811 ALTERA MSGDMA IP CORE DRIVER
812 M:      Olivier Dautricourt <olivier.dautricourt@orolia.com>
813 R:      Stefan Roese <sr@denx.de>
814 L:      dmaengine@vger.kernel.org
815 S:      Odd Fixes
816 F:      Documentation/devicetree/bindings/dma/altr,msgdma.yaml
817 F:      drivers/dma/altera-msgdma.c
818
819 ALTERA PIO DRIVER
820 M:      Mun Yew Tham <mun.yew.tham@intel.com>
821 L:      linux-gpio@vger.kernel.org
822 S:      Maintained
823 F:      drivers/gpio/gpio-altera.c
824
825 ALTERA SYSTEM MANAGER DRIVER
826 M:      Thor Thayer <thor.thayer@linux.intel.com>
827 S:      Maintained
828 F:      drivers/mfd/altera-sysmgr.c
829 F:      include/linux/mfd/altera-sysmgr.h
830
831 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
832 M:      Thor Thayer <thor.thayer@linux.intel.com>
833 S:      Maintained
834 F:      drivers/gpio/gpio-altera-a10sr.c
835 F:      drivers/mfd/altera-a10sr.c
836 F:      drivers/reset/reset-a10sr.c
837 F:      include/dt-bindings/reset/altr,rst-mgr-a10sr.h
838 F:      include/linux/mfd/altera-a10sr.h
839
840 ALTERA TRIPLE SPEED ETHERNET DRIVER
841 M:      Joyce Ooi <joyce.ooi@intel.com>
842 L:      netdev@vger.kernel.org
843 S:      Maintained
844 F:      drivers/net/ethernet/altera/
845
846 ALTERA UART/JTAG UART SERIAL DRIVERS
847 M:      Tobias Klauser <tklauser@distanz.ch>
848 L:      linux-serial@vger.kernel.org
849 S:      Maintained
850 F:      drivers/tty/serial/altera_jtaguart.c
851 F:      drivers/tty/serial/altera_uart.c
852 F:      include/linux/altera_jtaguart.h
853 F:      include/linux/altera_uart.h
854
855 AMAZON ANNAPURNA LABS FIC DRIVER
856 M:      Talel Shenhar <talel@amazon.com>
857 S:      Maintained
858 F:      Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
859 F:      drivers/irqchip/irq-al-fic.c
860
861 AMAZON ANNAPURNA LABS MEMORY CONTROLLER EDAC
862 M:      Talel Shenhar <talel@amazon.com>
863 M:      Talel Shenhar <talelshenhar@gmail.com>
864 S:      Maintained
865 F:      Documentation/devicetree/bindings/edac/amazon,al-mc-edac.yaml
866 F:      drivers/edac/al_mc_edac.c
867
868 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
869 M:      Talel Shenhar <talel@amazon.com>
870 S:      Maintained
871 F:      Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
872 F:      drivers/thermal/thermal_mmio.c
873
874 AMAZON ETHERNET DRIVERS
875 M:      Netanel Belgazal <netanel@amazon.com>
876 M:      Arthur Kiyanovski <akiyano@amazon.com>
877 R:      Guy Tzalik <gtzalik@amazon.com>
878 R:      Saeed Bishara <saeedb@amazon.com>
879 L:      netdev@vger.kernel.org
880 S:      Supported
881 F:      Documentation/networking/device_drivers/ethernet/amazon/ena.rst
882 F:      drivers/net/ethernet/amazon/
883
884 AMAZON RDMA EFA DRIVER
885 M:      Gal Pressman <galpress@amazon.com>
886 R:      Yossi Leybovich <sleybo@amazon.com>
887 L:      linux-rdma@vger.kernel.org
888 S:      Supported
889 Q:      https://patchwork.kernel.org/project/linux-rdma/list/
890 F:      drivers/infiniband/hw/efa/
891 F:      include/uapi/rdma/efa-abi.h
892
893 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
894 M:      Tom Lendacky <thomas.lendacky@amd.com>
895 M:      John Allen <john.allen@amd.com>
896 L:      linux-crypto@vger.kernel.org
897 S:      Supported
898 F:      drivers/crypto/ccp/
899 F:      include/linux/ccp.h
900
901 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER - SEV SUPPORT
902 M:      Brijesh Singh <brijesh.singh@amd.com>
903 M:      Tom Lendacky <thomas.lendacky@amd.com>
904 L:      linux-crypto@vger.kernel.org
905 S:      Supported
906 F:      drivers/crypto/ccp/sev*
907 F:      include/uapi/linux/psp-sev.h
908
909 AMD DISPLAY CORE
910 M:      Harry Wentland <harry.wentland@amd.com>
911 M:      Leo Li <sunpeng.li@amd.com>
912 M:      Rodrigo Siqueira <Rodrigo.Siqueira@amd.com>
913 L:      amd-gfx@lists.freedesktop.org
914 S:      Supported
915 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
916 F:      drivers/gpu/drm/amd/display/
917
918 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
919 M:      Huang Rui <ray.huang@amd.com>
920 L:      linux-hwmon@vger.kernel.org
921 S:      Supported
922 F:      Documentation/hwmon/fam15h_power.rst
923 F:      drivers/hwmon/fam15h_power.c
924
925 AMD FCH GPIO DRIVER
926 M:      Enrico Weigelt, metux IT consult <info@metux.net>
927 L:      linux-gpio@vger.kernel.org
928 S:      Maintained
929 F:      drivers/gpio/gpio-amd-fch.c
930 F:      include/linux/platform_data/gpio/gpio-amd-fch.h
931
932 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
933 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
934 S:      Orphan
935 F:      drivers/usb/gadget/udc/amd5536udc.*
936
937 AMD GEODE PROCESSOR/CHIPSET SUPPORT
938 M:      Andres Salomon <dilinger@queued.net>
939 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
940 S:      Supported
941 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
942 F:      arch/x86/include/asm/geode.h
943 F:      drivers/char/hw_random/geode-rng.c
944 F:      drivers/crypto/geode*
945 F:      drivers/video/fbdev/geode/
946
947 AMD IOMMU (AMD-VI)
948 M:      Joerg Roedel <joro@8bytes.org>
949 R:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
950 L:      iommu@lists.linux-foundation.org
951 S:      Maintained
952 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
953 F:      drivers/iommu/amd/
954 F:      include/linux/amd-iommu.h
955
956 AMD KFD
957 M:      Felix Kuehling <Felix.Kuehling@amd.com>
958 L:      amd-gfx@lists.freedesktop.org
959 S:      Supported
960 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
961 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
962 F:      drivers/gpu/drm/amd/amdkfd/
963 F:      drivers/gpu/drm/amd/include/cik_structs.h
964 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
965 F:      drivers/gpu/drm/amd/include/v9_structs.h
966 F:      drivers/gpu/drm/amd/include/vi_structs.h
967 F:      include/uapi/linux/kfd_ioctl.h
968
969 AMD SPI DRIVER
970 M:      Sanjay R Mehta <sanju.mehta@amd.com>
971 S:      Maintained
972 F:      drivers/spi/spi-amd.c
973
974 AMD MP2 I2C DRIVER
975 M:      Elie Morisse <syniurge@gmail.com>
976 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
977 M:      Shyam Sundar S K <shyam-sundar.s-k@amd.com>
978 L:      linux-i2c@vger.kernel.org
979 S:      Maintained
980 F:      drivers/i2c/busses/i2c-amd-mp2*
981
982 AMD PMC DRIVER
983 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
984 L:      platform-driver-x86@vger.kernel.org
985 S:      Maintained
986 F:      drivers/platform/x86/amd-pmc.*
987
988 AMD POWERPLAY AND SWSMU
989 M:      Evan Quan <evan.quan@amd.com>
990 L:      amd-gfx@lists.freedesktop.org
991 S:      Supported
992 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
993 F:      drivers/gpu/drm/amd/pm/
994
995 AMD PTDMA DRIVER
996 M:      Sanjay R Mehta <sanju.mehta@amd.com>
997 L:      dmaengine@vger.kernel.org
998 S:      Maintained
999 F:      drivers/dma/ptdma/
1000
1001 AMD SEATTLE DEVICE TREE SUPPORT
1002 M:      Brijesh Singh <brijeshkumar.singh@amd.com>
1003 M:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
1004 M:      Tom Lendacky <thomas.lendacky@amd.com>
1005 S:      Supported
1006 F:      arch/arm64/boot/dts/amd/
1007
1008 AMD XGBE DRIVER
1009 M:      Tom Lendacky <thomas.lendacky@amd.com>
1010 L:      netdev@vger.kernel.org
1011 S:      Supported
1012 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
1013 F:      drivers/net/ethernet/amd/xgbe/
1014
1015 AMD SENSOR FUSION HUB DRIVER
1016 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
1017 M:      Basavaraj Natikar <basavaraj.natikar@amd.com>
1018 L:      linux-input@vger.kernel.org
1019 S:      Maintained
1020 F:      Documentation/hid/amd-sfh*
1021 F:      drivers/hid/amd-sfh-hid/
1022
1023 AMS AS73211 DRIVER
1024 M:      Christian Eggers <ceggers@arri.de>
1025 L:      linux-iio@vger.kernel.org
1026 S:      Maintained
1027 F:      Documentation/devicetree/bindings/iio/light/ams,as73211.yaml
1028 F:      drivers/iio/light/as73211.c
1029
1030 AMT (Automatic Multicast Tunneling)
1031 M:      Taehee Yoo <ap420073@gmail.com>
1032 L:      netdev@vger.kernel.org
1033 S:      Maintained
1034 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
1035 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
1036 F:      drivers/net/amt.c
1037
1038 ANALOG DEVICES INC AD7192 DRIVER
1039 M:      Alexandru Tachici <alexandru.tachici@analog.com>
1040 L:      linux-iio@vger.kernel.org
1041 S:      Supported
1042 W:      http://ez.analog.com/community/linux-device-drivers
1043 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7192.yaml
1044 F:      drivers/iio/adc/ad7192.c
1045
1046 ANALOG DEVICES INC AD7292 DRIVER
1047 M:      Marcelo Schmitt <marcelo.schmitt1@gmail.com>
1048 L:      linux-iio@vger.kernel.org
1049 S:      Supported
1050 W:      http://ez.analog.com/community/linux-device-drivers
1051 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
1052 F:      drivers/iio/adc/ad7292.c
1053
1054 ANALOG DEVICES INC AD7768-1 DRIVER
1055 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1056 L:      linux-iio@vger.kernel.org
1057 S:      Supported
1058 W:      http://ez.analog.com/community/linux-device-drivers
1059 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.yaml
1060 F:      drivers/iio/adc/ad7768-1.c
1061
1062 ANALOG DEVICES INC AD7780 DRIVER
1063 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1064 M:      Renato Lui Geh <renatogeh@gmail.com>
1065 L:      linux-iio@vger.kernel.org
1066 S:      Supported
1067 W:      http://ez.analog.com/community/linux-device-drivers
1068 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
1069 F:      drivers/iio/adc/ad7780.c
1070
1071 ANALOG DEVICES INC AD9389B DRIVER
1072 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1073 L:      linux-media@vger.kernel.org
1074 S:      Maintained
1075 F:      drivers/media/i2c/ad9389b*
1076
1077 ANALOG DEVICES INC ADGS1408 DRIVER
1078 M:      Mircea Caprioru <mircea.caprioru@analog.com>
1079 S:      Supported
1080 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
1081 F:      drivers/mux/adgs1408.c
1082
1083 ANALOG DEVICES INC ADIN DRIVER
1084 M:      Michael Hennerich <michael.hennerich@analog.com>
1085 L:      netdev@vger.kernel.org
1086 S:      Supported
1087 W:      http://ez.analog.com/community/linux-device-drivers
1088 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
1089 F:      drivers/net/phy/adin.c
1090
1091 ANALOG DEVICES INC ADIS DRIVER LIBRARY
1092 M:      Nuno Sa <nuno.sa@analog.com>
1093 L:      linux-iio@vger.kernel.org
1094 S:      Supported
1095 F:      drivers/iio/imu/adis.c
1096 F:      include/linux/iio/imu/adis.h
1097
1098 ANALOG DEVICES INC ADIS16460 DRIVER
1099 M:      Dragos Bogdan <dragos.bogdan@analog.com>
1100 L:      linux-iio@vger.kernel.org
1101 S:      Supported
1102 W:      http://ez.analog.com/community/linux-device-drivers
1103 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1104 F:      drivers/iio/imu/adis16460.c
1105
1106 ANALOG DEVICES INC ADIS16475 DRIVER
1107 M:      Nuno Sa <nuno.sa@analog.com>
1108 L:      linux-iio@vger.kernel.org
1109 W:      http://ez.analog.com/community/linux-device-drivers
1110 S:      Supported
1111 F:      drivers/iio/imu/adis16475.c
1112 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16475.yaml
1113
1114 ANALOG DEVICES INC ADM1177 DRIVER
1115 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1116 L:      linux-hwmon@vger.kernel.org
1117 S:      Supported
1118 W:      http://ez.analog.com/community/linux-device-drivers
1119 F:      Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1120 F:      drivers/hwmon/adm1177.c
1121
1122 ANALOG DEVICES INC ADP5061 DRIVER
1123 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1124 L:      linux-pm@vger.kernel.org
1125 S:      Supported
1126 W:      http://ez.analog.com/community/linux-device-drivers
1127 F:      drivers/power/supply/adp5061.c
1128
1129 ANALOG DEVICES INC ADV7180 DRIVER
1130 M:      Lars-Peter Clausen <lars@metafoo.de>
1131 L:      linux-media@vger.kernel.org
1132 S:      Supported
1133 W:      http://ez.analog.com/community/linux-device-drivers
1134 F:      drivers/media/i2c/adv7180.c
1135 F:      Documentation/devicetree/bindings/media/i2c/adv7180.yaml
1136
1137 ANALOG DEVICES INC ADV748X DRIVER
1138 M:      Kieran Bingham <kieran.bingham@ideasonboard.com>
1139 L:      linux-media@vger.kernel.org
1140 S:      Maintained
1141 F:      drivers/media/i2c/adv748x/*
1142
1143 ANALOG DEVICES INC ADV7511 DRIVER
1144 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1145 L:      linux-media@vger.kernel.org
1146 S:      Maintained
1147 F:      drivers/media/i2c/adv7511*
1148
1149 ANALOG DEVICES INC ADV7604 DRIVER
1150 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1151 L:      linux-media@vger.kernel.org
1152 S:      Maintained
1153 F:      drivers/media/i2c/adv7604*
1154 F:      Documentation/devicetree/bindings/media/i2c/adv7604.yaml
1155
1156 ANALOG DEVICES INC ADV7842 DRIVER
1157 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1158 L:      linux-media@vger.kernel.org
1159 S:      Maintained
1160 F:      drivers/media/i2c/adv7842*
1161
1162 ANALOG DEVICES INC ADXRS290 DRIVER
1163 M:      Nishant Malpani <nish.malpani25@gmail.com>
1164 L:      linux-iio@vger.kernel.org
1165 S:      Supported
1166 F:      drivers/iio/gyro/adxrs290.c
1167 F:      Documentation/devicetree/bindings/iio/gyroscope/adi,adxrs290.yaml
1168
1169 ANALOG DEVICES INC ASOC CODEC DRIVERS
1170 M:      Lars-Peter Clausen <lars@metafoo.de>
1171 M:      Nuno Sá <nuno.sa@analog.com>
1172 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1173 S:      Supported
1174 W:      http://wiki.analog.com/
1175 W:      http://ez.analog.com/community/linux-device-drivers
1176 F:      sound/soc/codecs/ad1*
1177 F:      sound/soc/codecs/ad7*
1178 F:      sound/soc/codecs/adau*
1179 F:      sound/soc/codecs/adav*
1180 F:      sound/soc/codecs/sigmadsp.*
1181 F:      sound/soc/codecs/ssm*
1182
1183 ANALOG DEVICES INC DMA DRIVERS
1184 M:      Lars-Peter Clausen <lars@metafoo.de>
1185 S:      Supported
1186 W:      http://ez.analog.com/community/linux-device-drivers
1187 F:      drivers/dma/dma-axi-dmac.c
1188
1189 ANALOG DEVICES INC IIO DRIVERS
1190 M:      Lars-Peter Clausen <lars@metafoo.de>
1191 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1192 S:      Supported
1193 W:      http://wiki.analog.com/
1194 W:      http://ez.analog.com/community/linux-device-drivers
1195 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1196 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1197 F:      Documentation/devicetree/bindings/iio/*/adi,*
1198 F:      Documentation/devicetree/bindings/iio/dac/adi,ad5758.yaml
1199 F:      drivers/iio/*/ad*
1200 F:      drivers/iio/adc/ltc249*
1201 F:      drivers/iio/amplifiers/hmc425a.c
1202 F:      drivers/staging/iio/*/ad*
1203 X:      drivers/iio/*/adjd*
1204
1205 ANALOGBITS PLL LIBRARIES
1206 M:      Paul Walmsley <paul.walmsley@sifive.com>
1207 S:      Supported
1208 F:      drivers/clk/analogbits/*
1209 F:      include/linux/clk/analogbits*
1210
1211 ANDES ARCHITECTURE
1212 M:      Nick Hu <nickhu@andestech.com>
1213 M:      Greentime Hu <green.hu@gmail.com>
1214 M:      Vincent Chen <deanbo422@gmail.com>
1215 S:      Supported
1216 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/greentime/linux.git
1217 F:      Documentation/devicetree/bindings/interrupt-controller/andestech,ativic32.txt
1218 F:      Documentation/devicetree/bindings/nds32/
1219 F:      arch/nds32/
1220 N:      nds32
1221 K:      nds32
1222
1223 ANDROID CONFIG FRAGMENTS
1224 M:      Rob Herring <robh@kernel.org>
1225 S:      Supported
1226 F:      kernel/configs/android*
1227
1228 ANDROID DRIVERS
1229 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1230 M:      Arve Hjønnevåg <arve@android.com>
1231 M:      Todd Kjos <tkjos@android.com>
1232 M:      Martijn Coenen <maco@android.com>
1233 M:      Joel Fernandes <joel@joelfernandes.org>
1234 M:      Christian Brauner <christian@brauner.io>
1235 M:      Hridya Valsaraju <hridya@google.com>
1236 M:      Suren Baghdasaryan <surenb@google.com>
1237 L:      linux-kernel@vger.kernel.org
1238 S:      Supported
1239 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1240 F:      drivers/android/
1241 F:      drivers/staging/android/
1242
1243 ANDROID GOLDFISH PIC DRIVER
1244 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1245 S:      Supported
1246 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1247 F:      drivers/irqchip/irq-goldfish-pic.c
1248
1249 ANDROID GOLDFISH RTC DRIVER
1250 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
1251 S:      Supported
1252 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1253 F:      drivers/rtc/rtc-goldfish.c
1254
1255 AOA (Apple Onboard Audio) ALSA DRIVER
1256 M:      Johannes Berg <johannes@sipsolutions.net>
1257 L:      linuxppc-dev@lists.ozlabs.org
1258 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1259 S:      Maintained
1260 F:      sound/aoa/
1261
1262 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1263 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
1264 L:      linux-iio@vger.kernel.org
1265 S:      Maintained
1266 F:      drivers/iio/adc/stx104.c
1267
1268 APM DRIVER
1269 M:      Jiri Kosina <jikos@kernel.org>
1270 S:      Odd fixes
1271 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1272 F:      arch/x86/kernel/apm_32.c
1273 F:      drivers/char/apm-emulation.c
1274 F:      include/linux/apm_bios.h
1275 F:      include/uapi/linux/apm_bios.h
1276
1277 APPARMOR SECURITY MODULE
1278 M:      John Johansen <john.johansen@canonical.com>
1279 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
1280 S:      Supported
1281 W:      wiki.apparmor.net
1282 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1283 F:      Documentation/admin-guide/LSM/apparmor.rst
1284 F:      security/apparmor/
1285
1286 APPLE BCM5974 MULTITOUCH DRIVER
1287 M:      Henrik Rydberg <rydberg@bitmath.org>
1288 L:      linux-input@vger.kernel.org
1289 S:      Odd fixes
1290 F:      drivers/input/mouse/bcm5974.c
1291
1292 APPLE DART IOMMU DRIVER
1293 M:      Sven Peter <sven@svenpeter.dev>
1294 R:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1295 L:      iommu@lists.linux-foundation.org
1296 S:      Maintained
1297 F:      Documentation/devicetree/bindings/iommu/apple,dart.yaml
1298 F:      drivers/iommu/apple-dart.c
1299
1300 APPLE PCIE CONTROLLER DRIVER
1301 M:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1302 M:      Marc Zyngier <maz@kernel.org>
1303 L:      linux-pci@vger.kernel.org
1304 S:      Maintained
1305 F:      drivers/pci/controller/pcie-apple.c
1306
1307 APPLE SMC DRIVER
1308 M:      Henrik Rydberg <rydberg@bitmath.org>
1309 L:      linux-hwmon@vger.kernel.org
1310 S:      Odd fixes
1311 F:      drivers/hwmon/applesmc.c
1312
1313 APPLETALK NETWORK LAYER
1314 L:      netdev@vger.kernel.org
1315 S:      Odd fixes
1316 F:      drivers/net/appletalk/
1317 F:      include/linux/atalk.h
1318 F:      include/uapi/linux/atalk.h
1319 F:      net/appletalk/
1320
1321 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1322 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1323 S:      Supported
1324 F:      arch/arm64/boot/dts/apm/
1325
1326 APPLIED MICRO (APM) X-GENE SOC EDAC
1327 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1328 S:      Supported
1329 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1330 F:      drivers/edac/xgene_edac.c
1331
1332 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1333 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1334 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1335 S:      Supported
1336 F:      drivers/net/ethernet/apm/xgene-v2/
1337
1338 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1339 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1340 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1341 M:      Quan Nguyen <quan@os.amperecomputing.com>
1342 S:      Supported
1343 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1344 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1345 F:      drivers/net/ethernet/apm/xgene/
1346 F:      drivers/net/mdio/mdio-xgene.c
1347
1348 APPLIED MICRO (APM) X-GENE SOC PMU
1349 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1350 S:      Supported
1351 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1352 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1353 F:      drivers/perf/xgene_pmu.c
1354
1355 APTINA CAMERA SENSOR PLL
1356 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1357 L:      linux-media@vger.kernel.org
1358 S:      Maintained
1359 F:      drivers/media/i2c/aptina-pll.*
1360
1361 AQUACOMPUTER D5 NEXT PUMP SENSOR DRIVER
1362 M:      Aleksa Savic <savicaleksa83@gmail.com>
1363 L:      linux-hwmon@vger.kernel.org
1364 S:      Maintained
1365 F:      Documentation/hwmon/aquacomputer_d5next.rst
1366 F:      drivers/hwmon/aquacomputer_d5next.c
1367
1368 AQUANTIA ETHERNET DRIVER (atlantic)
1369 M:      Igor Russkikh <irusskikh@marvell.com>
1370 L:      netdev@vger.kernel.org
1371 S:      Supported
1372 W:      https://www.marvell.com/
1373 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
1374 F:      Documentation/networking/device_drivers/ethernet/aquantia/atlantic.rst
1375 F:      drivers/net/ethernet/aquantia/atlantic/
1376
1377 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1378 M:      Egor Pomozov <epomozov@marvell.com>
1379 L:      netdev@vger.kernel.org
1380 S:      Supported
1381 W:      http://www.aquantia.com
1382 F:      drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1383
1384 ARASAN NAND CONTROLLER DRIVER
1385 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1386 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1387 L:      linux-mtd@lists.infradead.org
1388 S:      Maintained
1389 F:      Documentation/devicetree/bindings/mtd/arasan,nand-controller.yaml
1390 F:      drivers/mtd/nand/raw/arasan-nand-controller.c
1391
1392 ARC FRAMEBUFFER DRIVER
1393 M:      Jaya Kumar <jayalk@intworks.biz>
1394 S:      Maintained
1395 F:      drivers/video/fbdev/arcfb.c
1396 F:      drivers/video/fbdev/core/fb_defio.c
1397
1398 ARC PGU DRM DRIVER
1399 M:      Alexey Brodkin <abrodkin@synopsys.com>
1400 S:      Supported
1401 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1402 F:      drivers/gpu/drm/tiny/arcpgu.c
1403
1404 ARCNET NETWORK LAYER
1405 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
1406 L:      netdev@vger.kernel.org
1407 S:      Maintained
1408 F:      drivers/net/arcnet/
1409 F:      include/uapi/linux/if_arcnet.h
1410
1411 ARM ARCHITECTED TIMER DRIVER
1412 M:      Mark Rutland <mark.rutland@arm.com>
1413 M:      Marc Zyngier <maz@kernel.org>
1414 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1415 S:      Maintained
1416 F:      arch/arm/include/asm/arch_timer.h
1417 F:      arch/arm64/include/asm/arch_timer.h
1418 F:      drivers/clocksource/arm_arch_timer.c
1419
1420 ARM HDLCD DRM DRIVER
1421 M:      Liviu Dudau <liviu.dudau@arm.com>
1422 S:      Supported
1423 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
1424 F:      drivers/gpu/drm/arm/hdlcd_*
1425
1426 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1427 M:      Linus Walleij <linus.walleij@linaro.org>
1428 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1429 S:      Maintained
1430 F:      Documentation/devicetree/bindings/arm/arm,integrator.yaml
1431 F:      Documentation/devicetree/bindings/arm/arm,realview.yaml
1432 F:      Documentation/devicetree/bindings/arm/arm,versatile.yaml
1433 F:      Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
1434 F:      Documentation/devicetree/bindings/auxdisplay/arm,versatile-lcd.yaml
1435 F:      Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1436 F:      Documentation/devicetree/bindings/i2c/i2c-versatile.txt
1437 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1438 F:      Documentation/devicetree/bindings/mtd/mtd-physmap.yaml
1439 F:      arch/arm/boot/dts/arm-realview-*
1440 F:      arch/arm/boot/dts/integrator*
1441 F:      arch/arm/boot/dts/versatile*
1442 F:      arch/arm/mach-integrator/
1443 F:      arch/arm/mach-realview/
1444 F:      arch/arm/mach-versatile/
1445 F:      arch/arm/plat-versatile/
1446 F:      drivers/bus/arm-integrator-lm.c
1447 F:      drivers/clk/versatile/
1448 F:      drivers/i2c/busses/i2c-versatile.c
1449 F:      drivers/irqchip/irq-versatile-fpga.c
1450 F:      drivers/mtd/maps/physmap-versatile.*
1451 F:      drivers/power/reset/arm-versatile-reboot.c
1452 F:      drivers/soc/versatile/
1453
1454 ARM KOMEDA DRM-KMS DRIVER
1455 M:      James (Qian) Wang <james.qian.wang@arm.com>
1456 M:      Liviu Dudau <liviu.dudau@arm.com>
1457 M:      Mihail Atanassov <mihail.atanassov@arm.com>
1458 L:      Mali DP Maintainers <malidp@foss.arm.com>
1459 S:      Supported
1460 T:      git git://anongit.freedesktop.org/drm/drm-misc
1461 F:      Documentation/devicetree/bindings/display/arm,komeda.txt
1462 F:      Documentation/gpu/komeda-kms.rst
1463 F:      drivers/gpu/drm/arm/display/include/
1464 F:      drivers/gpu/drm/arm/display/komeda/
1465
1466 ARM MALI PANFROST DRM DRIVER
1467 M:      Rob Herring <robh@kernel.org>
1468 M:      Tomeu Vizoso <tomeu.vizoso@collabora.com>
1469 R:      Steven Price <steven.price@arm.com>
1470 R:      Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
1471 L:      dri-devel@lists.freedesktop.org
1472 S:      Supported
1473 T:      git git://anongit.freedesktop.org/drm/drm-misc
1474 F:      drivers/gpu/drm/panfrost/
1475 F:      include/uapi/drm/panfrost_drm.h
1476
1477 ARM MALI-DP DRM DRIVER
1478 M:      Liviu Dudau <liviu.dudau@arm.com>
1479 M:      Brian Starkey <brian.starkey@arm.com>
1480 L:      Mali DP Maintainers <malidp@foss.arm.com>
1481 S:      Supported
1482 T:      git git://anongit.freedesktop.org/drm/drm-misc
1483 F:      Documentation/devicetree/bindings/display/arm,malidp.txt
1484 F:      Documentation/gpu/afbc.rst
1485 F:      drivers/gpu/drm/arm/
1486
1487 ARM MFM AND FLOPPY DRIVERS
1488 M:      Ian Molton <spyro@f2s.com>
1489 S:      Maintained
1490 F:      arch/arm/include/asm/floppy.h
1491 F:      arch/arm/mach-rpc/floppydma.S
1492
1493 ARM PMU PROFILING AND DEBUGGING
1494 M:      Will Deacon <will@kernel.org>
1495 M:      Mark Rutland <mark.rutland@arm.com>
1496 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1497 S:      Maintained
1498 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1499 F:      Documentation/devicetree/bindings/perf/
1500 F:      arch/arm*/include/asm/hw_breakpoint.h
1501 F:      arch/arm*/include/asm/perf_event.h
1502 F:      arch/arm*/kernel/hw_breakpoint.c
1503 F:      arch/arm*/kernel/perf_*
1504 F:      drivers/perf/
1505 F:      include/linux/perf/arm_pmu.h
1506
1507 ARM PORT
1508 M:      Russell King <linux@armlinux.org.uk>
1509 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1510 S:      Odd Fixes
1511 W:      http://www.armlinux.org.uk/
1512 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1513 F:      arch/arm/
1514 X:      arch/arm/boot/dts/
1515
1516 ARM PRIMECELL AACI PL041 DRIVER
1517 M:      Russell King <linux@armlinux.org.uk>
1518 S:      Odd Fixes
1519 F:      sound/arm/aaci.*
1520
1521 ARM PRIMECELL BUS SUPPORT
1522 M:      Russell King <linux@armlinux.org.uk>
1523 S:      Odd Fixes
1524 F:      drivers/amba/
1525 F:      include/linux/amba/bus.h
1526
1527 ARM PRIMECELL PL35X NAND CONTROLLER DRIVER
1528 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1529 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1530 L:      linux-mtd@lists.infradead.org
1531 S:      Maintained
1532 F:      Documentation/devicetree/bindings/mtd/arm,pl353-nand-r2p1.yaml
1533 F:      drivers/mtd/nand/raw/pl35x-nand-controller.c
1534
1535 ARM PRIMECELL PL35X SMC DRIVER
1536 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1537 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1538 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1539 S:      Maintained
1540 F:      Documentation/devicetree/bindings/memory-controllers/arm,pl353-smc.yaml
1541 F:      drivers/memory/pl353-smc.c
1542
1543 ARM PRIMECELL CLCD PL110 DRIVER
1544 M:      Russell King <linux@armlinux.org.uk>
1545 S:      Odd Fixes
1546 F:      drivers/video/fbdev/amba-clcd.*
1547
1548 ARM PRIMECELL KMI PL050 DRIVER
1549 M:      Russell King <linux@armlinux.org.uk>
1550 S:      Odd Fixes
1551 F:      drivers/input/serio/ambakmi.*
1552 F:      include/linux/amba/kmi.h
1553
1554 ARM PRIMECELL MMCI PL180/1 DRIVER
1555 M:      Russell King <linux@armlinux.org.uk>
1556 S:      Odd Fixes
1557 F:      drivers/mmc/host/mmci.*
1558 F:      include/linux/amba/mmci.h
1559
1560 ARM PRIMECELL SSP PL022 SPI DRIVER
1561 M:      Linus Walleij <linus.walleij@linaro.org>
1562 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1563 S:      Maintained
1564 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1565 F:      drivers/spi/spi-pl022.c
1566
1567 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1568 M:      Russell King <linux@armlinux.org.uk>
1569 S:      Odd Fixes
1570 F:      drivers/tty/serial/amba-pl01*.c
1571 F:      include/linux/amba/serial.h
1572
1573 ARM PRIMECELL VIC PL190/PL192 DRIVER
1574 M:      Linus Walleij <linus.walleij@linaro.org>
1575 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1576 S:      Maintained
1577 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.yaml
1578 F:      drivers/irqchip/irq-vic.c
1579
1580 ARM SMC WATCHDOG DRIVER
1581 M:      Julius Werner <jwerner@chromium.org>
1582 R:      Evan Benn <evanbenn@chromium.org>
1583 S:      Maintained
1584 F:      Documentation/devicetree/bindings/watchdog/arm-smc-wdt.yaml
1585 F:      drivers/watchdog/arm_smc_wdt.c
1586
1587 ARM SMMU DRIVERS
1588 M:      Will Deacon <will@kernel.org>
1589 R:      Robin Murphy <robin.murphy@arm.com>
1590 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1591 S:      Maintained
1592 F:      Documentation/devicetree/bindings/iommu/arm,smmu*
1593 F:      drivers/iommu/arm/
1594 F:      drivers/iommu/io-pgtable-arm*
1595
1596 ARM AND ARM64 SoC SUB-ARCHITECTURES (COMMON PARTS)
1597 M:      Arnd Bergmann <arnd@arndb.de>
1598 M:      Olof Johansson <olof@lixom.net>
1599 M:      soc@kernel.org
1600 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1601 S:      Maintained
1602 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1603 F:      arch/arm/boot/dts/Makefile
1604 F:      arch/arm64/boot/dts/Makefile
1605
1606 ARM SUB-ARCHITECTURES
1607 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1608 S:      Maintained
1609 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1610 F:      arch/arm/mach-*/
1611 F:      arch/arm/plat-*/
1612
1613 ARM/ACTIONS SEMI ARCHITECTURE
1614 M:      Andreas Färber <afaerber@suse.de>
1615 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1616 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1617 L:      linux-actions@lists.infradead.org (moderated for non-subscribers)
1618 S:      Maintained
1619 F:      Documentation/devicetree/bindings/arm/actions.yaml
1620 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1621 F:      Documentation/devicetree/bindings/dma/owl-dma.yaml
1622 F:      Documentation/devicetree/bindings/i2c/i2c-owl.yaml
1623 F:      Documentation/devicetree/bindings/interrupt-controller/actions,owl-sirq.yaml
1624 F:      Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1625 F:      Documentation/devicetree/bindings/net/actions,owl-emac.yaml
1626 F:      Documentation/devicetree/bindings/pinctrl/actions,*
1627 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1628 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1629 F:      arch/arm/boot/dts/owl-*
1630 F:      arch/arm/mach-actions/
1631 F:      arch/arm64/boot/dts/actions/
1632 F:      drivers/clk/actions/
1633 F:      drivers/clocksource/timer-owl*
1634 F:      drivers/dma/owl-dma.c
1635 F:      drivers/i2c/busses/i2c-owl.c
1636 F:      drivers/irqchip/irq-owl-sirq.c
1637 F:      drivers/mmc/host/owl-mmc.c
1638 F:      drivers/net/ethernet/actions/
1639 F:      drivers/pinctrl/actions/*
1640 F:      drivers/soc/actions/
1641 F:      include/dt-bindings/power/owl-*
1642 F:      include/dt-bindings/reset/actions,*
1643 F:      include/linux/soc/actions/
1644 N:      owl
1645
1646 ARM/ADS SPHERE MACHINE SUPPORT
1647 M:      Lennert Buytenhek <kernel@wantstofly.org>
1648 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1649 S:      Maintained
1650
1651 ARM/AFEB9260 MACHINE SUPPORT
1652 M:      Sergey Lapin <slapin@ossfans.org>
1653 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1654 S:      Maintained
1655
1656 ARM/AJECO 1ARM MACHINE SUPPORT
1657 M:      Lennert Buytenhek <kernel@wantstofly.org>
1658 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1659 S:      Maintained
1660
1661 ARM/Allwinner SoC Clock Support
1662 M:      Emilio López <emilio@elopez.com.ar>
1663 S:      Maintained
1664 F:      drivers/clk/sunxi/
1665
1666 ARM/Allwinner sunXi SoC support
1667 M:      Maxime Ripard <mripard@kernel.org>
1668 M:      Chen-Yu Tsai <wens@csie.org>
1669 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
1670 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1671 S:      Maintained
1672 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1673 L:      linux-sunxi@lists.linux.dev
1674 F:      arch/arm/mach-sunxi/
1675 F:      arch/arm64/boot/dts/allwinner/
1676 F:      drivers/clk/sunxi-ng/
1677 F:      drivers/pinctrl/sunxi/
1678 F:      drivers/soc/sunxi/
1679 N:      allwinner
1680 N:      sun[x456789]i
1681 N:      sun50i
1682
1683 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1684 M:      Neil Armstrong <narmstrong@baylibre.com>
1685 M:      Jerome Brunet <jbrunet@baylibre.com>
1686 L:      linux-amlogic@lists.infradead.org
1687 S:      Maintained
1688 F:      Documentation/devicetree/bindings/clock/amlogic*
1689 F:      drivers/clk/meson/
1690 F:      include/dt-bindings/clock/gxbb*
1691 F:      include/dt-bindings/clock/meson*
1692
1693 ARM/Amlogic Meson SoC Crypto Drivers
1694 M:      Corentin Labbe <clabbe@baylibre.com>
1695 L:      linux-crypto@vger.kernel.org
1696 L:      linux-amlogic@lists.infradead.org
1697 S:      Maintained
1698 F:      Documentation/devicetree/bindings/crypto/amlogic*
1699 F:      drivers/crypto/amlogic/
1700
1701 ARM/Amlogic Meson SoC Sound Drivers
1702 M:      Jerome Brunet <jbrunet@baylibre.com>
1703 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1704 S:      Maintained
1705 F:      Documentation/devicetree/bindings/sound/amlogic*
1706 F:      sound/soc/meson/
1707
1708 ARM/Amlogic Meson SoC support
1709 M:      Neil Armstrong <narmstrong@baylibre.com>
1710 M:      Kevin Hilman <khilman@baylibre.com>
1711 R:      Jerome Brunet <jbrunet@baylibre.com>
1712 R:      Martin Blumenstingl <martin.blumenstingl@googlemail.com>
1713 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1714 L:      linux-amlogic@lists.infradead.org
1715 S:      Maintained
1716 W:      http://linux-meson.com/
1717 F:      arch/arm/boot/dts/meson*
1718 F:      arch/arm/mach-meson/
1719 F:      arch/arm64/boot/dts/amlogic/
1720 F:      drivers/mmc/host/meson*
1721 F:      drivers/pinctrl/meson/
1722 F:      drivers/rtc/rtc-meson*
1723 F:      drivers/soc/amlogic/
1724 N:      meson
1725
1726 ARM/Annapurna Labs ALPINE ARCHITECTURE
1727 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
1728 M:      Antoine Tenart <atenart@kernel.org>
1729 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1730 S:      Maintained
1731 F:      arch/arm/boot/dts/alpine*
1732 F:      arch/arm/mach-alpine/
1733 F:      arch/arm64/boot/dts/amazon/
1734 F:      drivers/*/*alpine*
1735
1736 ARM/APPLE MACHINE SUPPORT
1737 M:      Hector Martin <marcan@marcan.st>
1738 M:      Sven Peter <sven@svenpeter.dev>
1739 R:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1740 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1741 S:      Maintained
1742 W:      https://asahilinux.org
1743 B:      https://github.com/AsahiLinux/linux/issues
1744 C:      irc://irc.oftc.net/asahi-dev
1745 T:      git https://github.com/AsahiLinux/linux.git
1746 F:      Documentation/devicetree/bindings/arm/apple.yaml
1747 F:      Documentation/devicetree/bindings/i2c/apple,i2c.yaml
1748 F:      Documentation/devicetree/bindings/interrupt-controller/apple,aic.yaml
1749 F:      Documentation/devicetree/bindings/mailbox/apple,mailbox.yaml
1750 F:      Documentation/devicetree/bindings/pci/apple,pcie.yaml
1751 F:      Documentation/devicetree/bindings/pinctrl/apple,pinctrl.yaml
1752 F:      arch/arm64/boot/dts/apple/
1753 F:      drivers/i2c/busses/i2c-pasemi-core.c
1754 F:      drivers/i2c/busses/i2c-pasemi-platform.c
1755 F:      drivers/irqchip/irq-apple-aic.c
1756 F:      drivers/mailbox/apple-mailbox.c
1757 F:      drivers/pinctrl/pinctrl-apple-gpio.c
1758 F:      include/dt-bindings/interrupt-controller/apple-aic.h
1759 F:      include/dt-bindings/pinctrl/apple.h
1760 F:      include/linux/apple-mailbox.h
1761
1762 ARM/ARTPEC MACHINE SUPPORT
1763 M:      Jesper Nilsson <jesper.nilsson@axis.com>
1764 M:      Lars Persson <lars.persson@axis.com>
1765 L:      linux-arm-kernel@axis.com
1766 S:      Maintained
1767 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1768 F:      arch/arm/boot/dts/artpec6*
1769 F:      arch/arm/mach-artpec
1770 F:      drivers/clk/axis
1771 F:      drivers/crypto/axis
1772 F:      drivers/mmc/host/usdhi6rol0.c
1773 F:      drivers/pinctrl/pinctrl-artpec*
1774
1775 ARM/ASPEED I2C DRIVER
1776 M:      Brendan Higgins <brendanhiggins@google.com>
1777 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
1778 R:      Joel Stanley <joel@jms.id.au>
1779 L:      linux-i2c@vger.kernel.org
1780 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
1781 S:      Maintained
1782 F:      Documentation/devicetree/bindings/i2c/aspeed,i2c.yaml
1783 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1784 F:      drivers/i2c/busses/i2c-aspeed.c
1785 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1786
1787 ARM/ASPEED MACHINE SUPPORT
1788 M:      Joel Stanley <joel@jms.id.au>
1789 R:      Andrew Jeffery <andrew@aj.id.au>
1790 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1791 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
1792 S:      Supported
1793 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
1794 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1795 F:      arch/arm/boot/dts/aspeed-*
1796 F:      arch/arm/mach-aspeed/
1797 N:      aspeed
1798
1799 ARM/BITMAIN ARCHITECTURE
1800 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1801 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1802 S:      Maintained
1803 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
1804 F:      Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
1805 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1806 F:      arch/arm64/boot/dts/bitmain/
1807 F:      drivers/clk/clk-bm1880.c
1808 F:      drivers/pinctrl/pinctrl-bm1880.c
1809
1810 ARM/CALXEDA HIGHBANK ARCHITECTURE
1811 M:      Andre Przywara <andre.przywara@arm.com>
1812 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1813 S:      Maintained
1814 F:      arch/arm/boot/dts/ecx-*.dts*
1815 F:      arch/arm/boot/dts/highbank.dts
1816 F:      arch/arm/mach-highbank/
1817
1818 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1819 M:      Krzysztof Halasa <khalasa@piap.pl>
1820 S:      Maintained
1821 F:      arch/arm/mach-cns3xxx/
1822
1823 ARM/CAVIUM THUNDER NETWORK DRIVER
1824 M:      Sunil Goutham <sgoutham@marvell.com>
1825 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1826 S:      Supported
1827 F:      drivers/net/ethernet/cavium/thunder/
1828
1829 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1830 M:      Lukasz Majewski <lukma@denx.de>
1831 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1832 S:      Maintained
1833 F:      arch/arm/mach-ep93xx/ts72xx.c
1834
1835 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1836 M:      Alexander Shiyan <shc_work@mail.ru>
1837 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1838 S:      Odd Fixes
1839 N:      clps711x
1840
1841 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1842 M:      Lennert Buytenhek <kernel@wantstofly.org>
1843 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1844 S:      Maintained
1845
1846 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1847 M:      Hartley Sweeten <hsweeten@visionengravers.com>
1848 M:      Alexander Sverdlin <alexander.sverdlin@gmail.com>
1849 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1850 S:      Maintained
1851 F:      arch/arm/mach-ep93xx/
1852 F:      arch/arm/mach-ep93xx/include/mach/
1853
1854 ARM/CLKDEV SUPPORT
1855 M:      Russell King <linux@armlinux.org.uk>
1856 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1857 S:      Maintained
1858 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1859 F:      drivers/clk/clkdev.c
1860
1861 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1862 M:      Baruch Siach <baruch@tkos.co.il>
1863 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1864 S:      Maintained
1865 F:      arch/arm/boot/dts/cx92755*
1866 N:      digicolor
1867
1868 ARM/CONTEC MICRO9 MACHINE SUPPORT
1869 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1870 S:      Maintained
1871 F:      arch/arm/mach-ep93xx/micro9.c
1872
1873 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1874 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1875 M:      Suzuki K Poulose <suzuki.poulose@arm.com>
1876 R:      Mike Leach <mike.leach@linaro.org>
1877 R:      Leo Yan <leo.yan@linaro.org>
1878 L:      coresight@lists.linaro.org (moderated for non-subscribers)
1879 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1880 S:      Maintained
1881 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/coresight/linux.git
1882 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1883 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1884 F:      Documentation/devicetree/bindings/arm/coresight-cti.yaml
1885 F:      Documentation/devicetree/bindings/arm/coresight.txt
1886 F:      Documentation/devicetree/bindings/arm/ete.yaml
1887 F:      Documentation/devicetree/bindings/arm/trbe.yaml
1888 F:      Documentation/trace/coresight/*
1889 F:      drivers/hwtracing/coresight/*
1890 F:      include/dt-bindings/arm/coresight-cti-dt.h
1891 F:      include/linux/coresight*
1892 F:      tools/perf/arch/arm/util/auxtrace.c
1893 F:      tools/perf/arch/arm/util/cs-etm.c
1894 F:      tools/perf/arch/arm/util/cs-etm.h
1895 F:      tools/perf/arch/arm/util/pmu.c
1896 F:      tools/perf/util/cs-etm-decoder/*
1897 F:      tools/perf/util/cs-etm.*
1898
1899 ARM/CORGI MACHINE SUPPORT
1900 M:      Richard Purdie <rpurdie@rpsys.net>
1901 S:      Maintained
1902
1903 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1904 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1905 M:      Linus Walleij <linus.walleij@linaro.org>
1906 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1907 S:      Maintained
1908 T:      git git://github.com/ulli-kroll/linux.git
1909 F:      Documentation/devicetree/bindings/arm/gemini.yaml
1910 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
1911 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1912 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.yaml
1913 F:      arch/arm/boot/dts/gemini*
1914 F:      arch/arm/mach-gemini/
1915 F:      drivers/crypto/gemini/
1916 F:      drivers/net/ethernet/cortina/
1917 F:      drivers/pinctrl/pinctrl-gemini.c
1918 F:      drivers/rtc/rtc-ftrtc010.c
1919
1920 ARM/CZ.NIC TURRIS SUPPORT
1921 M:      Marek Behún <kabel@kernel.org>
1922 S:      Maintained
1923 W:      https://www.turris.cz/
1924 F:      Documentation/ABI/testing/debugfs-moxtet
1925 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
1926 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
1927 F:      Documentation/devicetree/bindings/bus/moxtet.txt
1928 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
1929 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
1930 F:      Documentation/devicetree/bindings/leds/cznic,turris-omnia-leds.yaml
1931 F:      Documentation/devicetree/bindings/watchdog/armada-37xx-wdt.txt
1932 F:      drivers/bus/moxtet.c
1933 F:      drivers/firmware/turris-mox-rwtm.c
1934 F:      drivers/leds/leds-turris-omnia.c
1935 F:      drivers/mailbox/armada-37xx-rwtm-mailbox.c
1936 F:      drivers/gpio/gpio-moxtet.c
1937 F:      drivers/watchdog/armada_37xx_wdt.c
1938 F:      include/dt-bindings/bus/moxtet.h
1939 F:      include/linux/armada-37xx-rwtm-mailbox.h
1940 F:      include/linux/moxtet.h
1941
1942 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1943 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1944 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1945 S:      Maintained
1946 F:      arch/arm/mach-pxa/ezx.c
1947
1948 ARM/FARADAY FA526 PORT
1949 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1950 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1951 S:      Maintained
1952 T:      git git://git.berlios.de/gemini-board
1953 F:      arch/arm/mm/*-fa*
1954
1955 ARM/FOOTBRIDGE ARCHITECTURE
1956 M:      Russell King <linux@armlinux.org.uk>
1957 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1958 S:      Maintained
1959 W:      http://www.armlinux.org.uk/
1960 F:      arch/arm/include/asm/hardware/dec21285.h
1961 F:      arch/arm/mach-footbridge/
1962
1963 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1964 M:      Shawn Guo <shawnguo@kernel.org>
1965 M:      Sascha Hauer <s.hauer@pengutronix.de>
1966 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1967 R:      Fabio Estevam <festevam@gmail.com>
1968 R:      NXP Linux Team <linux-imx@nxp.com>
1969 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1970 S:      Maintained
1971 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1972 X:      drivers/media/i2c/
1973 N:      imx
1974 N:      mxs
1975
1976 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
1977 M:      Shawn Guo <shawnguo@kernel.org>
1978 M:      Li Yang <leoyang.li@nxp.com>
1979 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1980 S:      Maintained
1981 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1982 F:      arch/arm/boot/dts/ls1021a*
1983 F:      arch/arm64/boot/dts/freescale/fsl-*
1984 F:      arch/arm64/boot/dts/freescale/qoriq-*
1985
1986 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1987 M:      Shawn Guo <shawnguo@kernel.org>
1988 M:      Sascha Hauer <s.hauer@pengutronix.de>
1989 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1990 R:      Stefan Agner <stefan@agner.ch>
1991 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1992 S:      Maintained
1993 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1994 F:      arch/arm/boot/dts/vf*
1995 F:      arch/arm/mach-imx/*vf610*
1996
1997 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1998 M:      Lennert Buytenhek <kernel@wantstofly.org>
1999 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2000 S:      Maintained
2001
2002 ARM/GUMSTIX MACHINE SUPPORT
2003 M:      Steve Sakoman <sakoman@gmail.com>
2004 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2005 S:      Maintained
2006
2007 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
2008 M:      Philipp Zabel <philipp.zabel@gmail.com>
2009 M:      Paul Parsons <lost.distance@yahoo.com>
2010 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2011 S:      Maintained
2012 F:      arch/arm/mach-pxa/hx4700.c
2013 F:      arch/arm/mach-pxa/include/mach/hx4700.h
2014 F:      sound/soc/pxa/hx4700.c
2015
2016 ARM/HISILICON SOC SUPPORT
2017 M:      Wei Xu <xuwei5@hisilicon.com>
2018 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2019 S:      Supported
2020 W:      http://www.hisilicon.com
2021 T:      git git://github.com/hisilicon/linux-hisi.git
2022 F:      arch/arm/boot/dts/hi3*
2023 F:      arch/arm/boot/dts/hip*
2024 F:      arch/arm/boot/dts/hisi*
2025 F:      arch/arm/mach-hisi/
2026 F:      arch/arm64/boot/dts/hisilicon/
2027
2028 ARM/HP JORNADA 7XX MACHINE SUPPORT
2029 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
2030 S:      Maintained
2031 W:      www.jlime.com
2032 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
2033 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
2034 F:      arch/arm/mach-sa1100/jornada720.c
2035
2036 ARM/IGEP MACHINE SUPPORT
2037 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
2038 M:      Javier Martinez Canillas <javier@dowhile0.org>
2039 L:      linux-omap@vger.kernel.org
2040 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2041 S:      Maintained
2042 F:      arch/arm/boot/dts/omap3-igep*
2043
2044 ARM/INCOME PXA270 SUPPORT
2045 M:      Marek Vasut <marek.vasut@gmail.com>
2046 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2047 S:      Maintained
2048 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
2049
2050 ARM/INTEL IOP32X ARM ARCHITECTURE
2051 M:      Lennert Buytenhek <kernel@wantstofly.org>
2052 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2053 S:      Maintained
2054
2055 ARM/INTEL IQ81342EX MACHINE SUPPORT
2056 M:      Lennert Buytenhek <kernel@wantstofly.org>
2057 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2058 S:      Maintained
2059
2060 ARM/INTEL IXDP2850 MACHINE SUPPORT
2061 M:      Lennert Buytenhek <kernel@wantstofly.org>
2062 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2063 S:      Maintained
2064
2065 ARM/INTEL IXP4XX ARM ARCHITECTURE
2066 M:      Linus Walleij <linusw@kernel.org>
2067 M:      Imre Kaloz <kaloz@openwrt.org>
2068 M:      Krzysztof Halasa <khalasa@piap.pl>
2069 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2070 S:      Maintained
2071 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
2072 F:      Documentation/devicetree/bindings/bus/intel,ixp4xx-expansion-bus-controller.yaml
2073 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
2074 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
2075 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
2076 F:      arch/arm/mach-ixp4xx/
2077 F:      drivers/bus/intel-ixp4xx-eb.c
2078 F:      drivers/clocksource/timer-ixp4xx.c
2079 F:      drivers/crypto/ixp4xx_crypto.c
2080 F:      drivers/gpio/gpio-ixp4xx.c
2081 F:      drivers/irqchip/irq-ixp4xx.c
2082 F:      include/linux/irqchip/irq-ixp4xx.h
2083 F:      include/linux/platform_data/timer-ixp4xx.h
2084
2085 ARM/INTEL KEEMBAY ARCHITECTURE
2086 M:      Paul J. Murphy <paul.j.murphy@intel.com>
2087 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
2088 S:      Maintained
2089 F:      Documentation/devicetree/bindings/arm/intel,keembay.yaml
2090 F:      arch/arm64/boot/dts/intel/keembay-evm.dts
2091 F:      arch/arm64/boot/dts/intel/keembay-soc.dtsi
2092
2093 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
2094 M:      Jonathan Cameron <jic23@cam.ac.uk>
2095 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2096 S:      Maintained
2097 F:      arch/arm/mach-pxa/stargate2.c
2098 F:      drivers/pcmcia/pxa2xx_stargate2.c
2099
2100 ARM/INTEL XSC3 (MANZANO) ARM CORE
2101 M:      Lennert Buytenhek <kernel@wantstofly.org>
2102 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2103 S:      Maintained
2104
2105 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
2106 M:      Lennert Buytenhek <kernel@wantstofly.org>
2107 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2108 S:      Maintained
2109
2110 ARM/LG1K ARCHITECTURE
2111 M:      Chanho Min <chanho.min@lge.com>
2112 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2113 S:      Maintained
2114 F:      arch/arm64/boot/dts/lg/
2115
2116 ARM/LOGICPD PXA270 MACHINE SUPPORT
2117 M:      Lennert Buytenhek <kernel@wantstofly.org>
2118 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2119 S:      Maintained
2120
2121 ARM/LPC18XX ARCHITECTURE
2122 M:      Vladimir Zapolskiy <vz@mleia.com>
2123 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2124 S:      Maintained
2125 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
2126 F:      arch/arm/boot/dts/lpc43*
2127 F:      drivers/i2c/busses/i2c-lpc2k.c
2128 F:      drivers/memory/pl172.c
2129 F:      drivers/mtd/spi-nor/controllers/nxp-spifi.c
2130 F:      drivers/rtc/rtc-lpc24xx.c
2131 N:      lpc18xx
2132
2133 ARM/LPC32XX SOC SUPPORT
2134 M:      Vladimir Zapolskiy <vz@mleia.com>
2135 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2136 S:      Maintained
2137 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
2138 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
2139 F:      arch/arm/boot/dts/lpc32*
2140 F:      arch/arm/mach-lpc32xx/
2141 F:      drivers/i2c/busses/i2c-pnx.c
2142 F:      drivers/net/ethernet/nxp/lpc_eth.c
2143 F:      drivers/usb/host/ohci-nxp.c
2144 F:      drivers/watchdog/pnx4008_wdt.c
2145 N:      lpc32xx
2146
2147 ARM/MAGICIAN MACHINE SUPPORT
2148 M:      Philipp Zabel <philipp.zabel@gmail.com>
2149 S:      Maintained
2150
2151 ARM/Marvell Dove/MV78xx0/Orion SOC support
2152 M:      Andrew Lunn <andrew@lunn.ch>
2153 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2154 M:      Gregory Clement <gregory.clement@bootlin.com>
2155 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2156 S:      Maintained
2157 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2158 F:      Documentation/devicetree/bindings/soc/dove/
2159 F:      arch/arm/boot/dts/dove*
2160 F:      arch/arm/boot/dts/orion5x*
2161 F:      arch/arm/mach-dove/
2162 F:      arch/arm/mach-mv78xx0/
2163 F:      arch/arm/mach-orion5x/
2164 F:      arch/arm/plat-orion/
2165 F:      drivers/soc/dove/
2166
2167 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2168 M:      Andrew Lunn <andrew@lunn.ch>
2169 M:      Gregory Clement <gregory.clement@bootlin.com>
2170 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2171 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2172 S:      Maintained
2173 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2174 F:      arch/arm/boot/dts/armada*
2175 F:      arch/arm/boot/dts/kirkwood*
2176 F:      arch/arm/configs/mvebu_*_defconfig
2177 F:      arch/arm/mach-mvebu/
2178 F:      arch/arm64/boot/dts/marvell/armada*
2179 F:      arch/arm64/boot/dts/marvell/cn913*
2180 F:      drivers/cpufreq/armada-37xx-cpufreq.c
2181 F:      drivers/cpufreq/armada-8k-cpufreq.c
2182 F:      drivers/cpufreq/mvebu-cpufreq.c
2183 F:      drivers/irqchip/irq-armada-370-xp.c
2184 F:      drivers/irqchip/irq-mvebu-*
2185 F:      drivers/pinctrl/mvebu/
2186 F:      drivers/rtc/rtc-armada38x.c
2187
2188 ARM/Mediatek RTC DRIVER
2189 M:      Eddie Huang <eddie.huang@mediatek.com>
2190 M:      Sean Wang <sean.wang@mediatek.com>
2191 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2192 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2193 S:      Maintained
2194 F:      Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2195 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2196 F:      drivers/rtc/rtc-mt2712.c
2197 F:      drivers/rtc/rtc-mt6397.c
2198 F:      drivers/rtc/rtc-mt7622.c
2199
2200 ARM/Mediatek SoC support
2201 M:      Matthias Brugger <matthias.bgg@gmail.com>
2202 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2203 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2204 S:      Maintained
2205 W:      https://mtk.wiki.kernel.org/
2206 C:      irc://chat.freenode.net/linux-mediatek
2207 F:      arch/arm/boot/dts/mt6*
2208 F:      arch/arm/boot/dts/mt7*
2209 F:      arch/arm/boot/dts/mt8*
2210 F:      arch/arm/mach-mediatek/
2211 F:      arch/arm64/boot/dts/mediatek/
2212 F:      drivers/soc/mediatek/
2213 N:      mtk
2214 N:      mt[678]
2215 K:      mediatek
2216
2217 ARM/Mediatek USB3 PHY DRIVER
2218 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
2219 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2220 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2221 S:      Maintained
2222 F:      Documentation/devicetree/bindings/phy/mediatek,*
2223 F:      drivers/phy/mediatek/
2224
2225 ARM/Microchip (AT91) SoC support
2226 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2227 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
2228 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
2229 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2230 S:      Supported
2231 W:      http://www.linux4sam.org
2232 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2233 F:      arch/arm/boot/dts/at91*.dts
2234 F:      arch/arm/boot/dts/at91*.dtsi
2235 F:      arch/arm/boot/dts/sama*.dts
2236 F:      arch/arm/boot/dts/sama*.dtsi
2237 F:      arch/arm/include/debug/at91.S
2238 F:      arch/arm/mach-at91/
2239 F:      drivers/memory/atmel*
2240 F:      drivers/watchdog/sama5d4_wdt.c
2241 F:      include/soc/at91/
2242 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2243 X:      drivers/net/wireless/atmel/
2244 N:      at91
2245 N:      atmel
2246
2247 ARM/Microchip Sparx5 SoC support
2248 M:      Lars Povlsen <lars.povlsen@microchip.com>
2249 M:      Steen Hegelund <Steen.Hegelund@microchip.com>
2250 M:      UNGLinuxDriver@microchip.com
2251 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2252 S:      Supported
2253 T:      git git://github.com/microchip-ung/linux-upstream.git
2254 F:      arch/arm64/boot/dts/microchip/
2255 F:      drivers/pinctrl/pinctrl-microchip-sgpio.c
2256 N:      sparx5
2257
2258 Microchip Timer Counter Block (TCB) Capture Driver
2259 M:      Kamel Bouhara <kamel.bouhara@bootlin.com>
2260 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2261 L:      linux-iio@vger.kernel.org
2262 S:      Maintained
2263 F:      drivers/counter/microchip-tcb-capture.c
2264
2265 ARM/MIOA701 MACHINE SUPPORT
2266 M:      Robert Jarzmik <robert.jarzmik@free.fr>
2267 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2268 S:      Maintained
2269 F:      arch/arm/mach-pxa/mioa701.c
2270
2271 ARM/MStar/Sigmastar Armv7 SoC support
2272 M:      Daniel Palmer <daniel@thingy.jp>
2273 M:      Romain Perier <romain.perier@gmail.com>
2274 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2275 S:      Maintained
2276 W:      http://linux-chenxing.org/
2277 T:      git git://github.com/linux-chenxing/linux.git
2278 F:      Documentation/devicetree/bindings/arm/mstar/*
2279 F:      Documentation/devicetree/bindings/clock/mstar,msc313-mpll.yaml
2280 F:      Documentation/devicetree/bindings/gpio/mstar,msc313-gpio.yaml
2281 F:      arch/arm/boot/dts/mstar-*
2282 F:      arch/arm/mach-mstar/
2283 F:      drivers/clk/mstar/
2284 F:      drivers/gpio/gpio-msc313.c
2285 F:      drivers/watchdog/msc313e_wdt.c
2286 F:      include/dt-bindings/clock/mstar-*
2287 F:      include/dt-bindings/gpio/msc313-gpio.h
2288
2289 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2290 M:      Michael Petchkovsky <mkpetch@internode.on.net>
2291 S:      Maintained
2292
2293 ARM/NOMADIK/Ux500 ARCHITECTURES
2294 M:      Linus Walleij <linus.walleij@linaro.org>
2295 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2296 S:      Maintained
2297 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2298 F:      Documentation/devicetree/bindings/arm/ste-*
2299 F:      Documentation/devicetree/bindings/arm/ux500.yaml
2300 F:      Documentation/devicetree/bindings/arm/ux500/
2301 F:      Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
2302 F:      arch/arm/boot/dts/ste-*
2303 F:      arch/arm/mach-nomadik/
2304 F:      arch/arm/mach-ux500/
2305 F:      drivers/clk/clk-nomadik.c
2306 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2307 F:      drivers/dma/ste_dma40*
2308 F:      drivers/hwspinlock/u8500_hsem.c
2309 F:      drivers/i2c/busses/i2c-nomadik.c
2310 F:      drivers/iio/adc/ab8500-gpadc.c
2311 F:      drivers/mfd/ab8500*
2312 F:      drivers/mfd/abx500*
2313 F:      drivers/mfd/db8500*
2314 F:      drivers/pinctrl/nomadik/
2315 F:      drivers/rtc/rtc-ab8500.c
2316 F:      drivers/rtc/rtc-pl031.c
2317 F:      drivers/soc/ux500/
2318
2319 ARM/NUVOTON NPCM ARCHITECTURE
2320 M:      Avi Fishman <avifishman70@gmail.com>
2321 M:      Tomer Maimon <tmaimon77@gmail.com>
2322 M:      Tali Perry <tali.perry1@gmail.com>
2323 R:      Patrick Venture <venture@google.com>
2324 R:      Nancy Yuen <yuenn@google.com>
2325 R:      Benjamin Fair <benjaminfair@google.com>
2326 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2327 S:      Supported
2328 F:      Documentation/devicetree/bindings/*/*/*npcm*
2329 F:      Documentation/devicetree/bindings/*/*npcm*
2330 F:      arch/arm/boot/dts/nuvoton-npcm*
2331 F:      arch/arm/mach-npcm/
2332 F:      drivers/*/*npcm*
2333 F:      drivers/*/*/*npcm*
2334 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2335
2336 ARM/NUVOTON WPCM450 ARCHITECTURE
2337 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
2338 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2339 S:      Maintained
2340 F:      Documentation/devicetree/bindings/*/*wpcm*
2341 F:      arch/arm/boot/dts/nuvoton-wpcm450*
2342 F:      arch/arm/mach-npcm/wpcm450.c
2343 F:      drivers/*/*wpcm*
2344
2345 ARM/NXP S32G ARCHITECTURE
2346 M:      Chester Lin <clin@suse.com>
2347 R:      Andreas Färber <afaerber@suse.de>
2348 R:      Matthias Brugger <mbrugger@suse.com>
2349 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2350 S:      Maintained
2351 F:      arch/arm64/boot/dts/freescale/s32g*.dts*
2352
2353 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2354 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
2355 S:      Orphan
2356 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
2357 F:      arch/arm/mach-s3c/gta02.h
2358 F:      arch/arm/mach-s3c/mach-gta02.c
2359
2360 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2361 M:      Alexander Clouter <alex@digriz.org.uk>
2362 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2363 S:      Maintained
2364 W:      http://www.digriz.org.uk/ts78xx/kernel
2365 F:      arch/arm/mach-orion5x/ts78xx-*
2366
2367 ARM/OXNAS platform support
2368 M:      Neil Armstrong <narmstrong@baylibre.com>
2369 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2370 L:      linux-oxnas@groups.io (moderated for non-subscribers)
2371 S:      Maintained
2372 F:      arch/arm/boot/dts/ox8*.dts*
2373 F:      arch/arm/mach-oxnas/
2374 F:      drivers/power/reset/oxnas-restart.c
2375 N:      oxnas
2376
2377 ARM/PALM TREO SUPPORT
2378 M:      Tomas Cech <sleep_walker@suse.com>
2379 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2380 S:      Maintained
2381 W:      http://hackndev.com
2382 F:      arch/arm/mach-pxa/palmtreo.*
2383
2384 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2385 M:      Marek Vasut <marek.vasut@gmail.com>
2386 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2387 S:      Maintained
2388 W:      http://hackndev.com
2389 F:      arch/arm/mach-pxa/include/mach/palmld.h
2390 F:      arch/arm/mach-pxa/include/mach/palmtc.h
2391 F:      arch/arm/mach-pxa/include/mach/palmtx.h
2392 F:      arch/arm/mach-pxa/palmld.c
2393 F:      arch/arm/mach-pxa/palmt5.*
2394 F:      arch/arm/mach-pxa/palmtc.c
2395 F:      arch/arm/mach-pxa/palmte2.*
2396 F:      arch/arm/mach-pxa/palmtx.c
2397
2398 ARM/PALMZ72 SUPPORT
2399 M:      Sergey Lapin <slapin@ossfans.org>
2400 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2401 S:      Maintained
2402 W:      http://hackndev.com
2403 F:      arch/arm/mach-pxa/palmz72.*
2404
2405 ARM/PLEB SUPPORT
2406 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
2407 S:      Maintained
2408 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2409
2410 ARM/PT DIGITAL BOARD PORT
2411 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
2412 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2413 S:      Maintained
2414 W:      http://www.armlinux.org.uk/
2415
2416 ARM/QUALCOMM SUPPORT
2417 M:      Andy Gross <agross@kernel.org>
2418 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
2419 L:      linux-arm-msm@vger.kernel.org
2420 S:      Maintained
2421 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2422 F:      Documentation/devicetree/bindings/*/qcom*
2423 F:      Documentation/devicetree/bindings/soc/qcom/
2424 F:      arch/arm/boot/dts/qcom-*.dts
2425 F:      arch/arm/boot/dts/qcom-*.dtsi
2426 F:      arch/arm/mach-qcom/
2427 F:      arch/arm64/boot/dts/qcom/
2428 F:      drivers/*/*/qcom*
2429 F:      drivers/*/*/qcom/
2430 F:      drivers/*/pm8???-*
2431 F:      drivers/*/qcom*
2432 F:      drivers/*/qcom/
2433 F:      drivers/bluetooth/btqcomsmd.c
2434 F:      drivers/clocksource/timer-qcom.c
2435 F:      drivers/cpuidle/cpuidle-qcom-spm.c
2436 F:      drivers/extcon/extcon-qcom*
2437 F:      drivers/i2c/busses/i2c-qcom-geni.c
2438 F:      drivers/i2c/busses/i2c-qup.c
2439 F:      drivers/iommu/msm*
2440 F:      drivers/mfd/ssbi.c
2441 F:      drivers/mmc/host/mmci_qcom*
2442 F:      drivers/mmc/host/sdhci-msm.c
2443 F:      drivers/pci/controller/dwc/pcie-qcom.c
2444 F:      drivers/phy/qualcomm/
2445 F:      drivers/power/*/msm*
2446 F:      drivers/reset/reset-qcom-*
2447 F:      drivers/scsi/ufs/ufs-qcom*
2448 F:      drivers/spi/spi-geni-qcom.c
2449 F:      drivers/spi/spi-qcom-qspi.c
2450 F:      drivers/spi/spi-qup.c
2451 F:      drivers/tty/serial/msm_serial.c
2452 F:      drivers/usb/dwc3/dwc3-qcom.c
2453 F:      include/dt-bindings/*/qcom*
2454 F:      include/linux/*/qcom*
2455 F:      include/linux/soc/qcom/
2456
2457 ARM/RADISYS ENP2611 MACHINE SUPPORT
2458 M:      Lennert Buytenhek <kernel@wantstofly.org>
2459 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2460 S:      Maintained
2461
2462 ARM/RDA MICRO ARCHITECTURE
2463 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2464 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2465 L:      linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2466 S:      Maintained
2467 F:      Documentation/devicetree/bindings/arm/rda.yaml
2468 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2469 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2470 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.txt
2471 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt
2472 F:      arch/arm/boot/dts/rda8810pl-*
2473 F:      drivers/clocksource/timer-rda.c
2474 F:      drivers/gpio/gpio-rda.c
2475 F:      drivers/irqchip/irq-rda-intc.c
2476 F:      drivers/tty/serial/rda-uart.c
2477
2478 ARM/REALTEK ARCHITECTURE
2479 M:      Andreas Färber <afaerber@suse.de>
2480 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2481 L:      linux-realtek-soc@lists.infradead.org (moderated for non-subscribers)
2482 S:      Maintained
2483 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2484 F:      arch/arm/boot/dts/rtd*
2485 F:      arch/arm/mach-realtek/
2486 F:      arch/arm64/boot/dts/realtek/
2487
2488 ARM/RENESAS ARM64 ARCHITECTURE
2489 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2490 M:      Magnus Damm <magnus.damm@gmail.com>
2491 L:      linux-renesas-soc@vger.kernel.org
2492 S:      Supported
2493 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2494 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2495 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2496 F:      arch/arm64/boot/dts/renesas/
2497 F:      drivers/soc/renesas/
2498 F:      include/linux/soc/renesas/
2499
2500 ARM/RISCPC ARCHITECTURE
2501 M:      Russell King <linux@armlinux.org.uk>
2502 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2503 S:      Maintained
2504 W:      http://www.armlinux.org.uk/
2505 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
2506 F:      arch/arm/include/asm/hardware/ioc.h
2507 F:      arch/arm/include/asm/hardware/iomd.h
2508 F:      arch/arm/include/asm/hardware/memc.h
2509 F:      arch/arm/mach-rpc/
2510 F:      drivers/net/ethernet/8390/etherh.c
2511 F:      drivers/net/ethernet/i825xx/ether1*
2512 F:      drivers/net/ethernet/seeq/ether3*
2513 F:      drivers/scsi/arm/
2514
2515 ARM/Rockchip SoC support
2516 M:      Heiko Stuebner <heiko@sntech.de>
2517 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2518 L:      linux-rockchip@lists.infradead.org
2519 S:      Maintained
2520 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2521 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2522 F:      Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2523 F:      Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2524 F:      arch/arm/boot/dts/rk3*
2525 F:      arch/arm/boot/dts/rv1108*
2526 F:      arch/arm/mach-rockchip/
2527 F:      drivers/*/*/*rockchip*
2528 F:      drivers/*/*rockchip*
2529 F:      drivers/clk/rockchip/
2530 F:      drivers/i2c/busses/i2c-rk3x.c
2531 F:      sound/soc/rockchip/
2532 N:      rockchip
2533
2534 ARM/SAMSUNG S3C, S5P AND EXYNOS ARM ARCHITECTURES
2535 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
2536 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2537 L:      linux-samsung-soc@vger.kernel.org
2538 S:      Maintained
2539 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2540 F:      Documentation/arm/samsung/
2541 F:      Documentation/devicetree/bindings/arm/samsung/
2542 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2543 F:      arch/arm/boot/dts/exynos*
2544 F:      arch/arm/boot/dts/s3c*
2545 F:      arch/arm/boot/dts/s5p*
2546 F:      arch/arm/mach-exynos*/
2547 F:      arch/arm/mach-s3c/
2548 F:      arch/arm/mach-s5p*/
2549 F:      arch/arm64/boot/dts/exynos/
2550 F:      drivers/*/*/*s3c24*
2551 F:      drivers/*/*s3c24*
2552 F:      drivers/*/*s3c64xx*
2553 F:      drivers/*/*s5pv210*
2554 F:      drivers/clocksource/samsung_pwm_timer.c
2555 F:      drivers/memory/samsung/
2556 F:      drivers/pwm/pwm-samsung.c
2557 F:      drivers/soc/samsung/
2558 F:      drivers/tty/serial/samsung*
2559 F:      include/clocksource/samsung_pwm.h
2560 F:      include/linux/platform_data/*s3c*
2561 F:      include/linux/serial_s3c.h
2562 F:      include/linux/soc/samsung/
2563 N:      exynos
2564 N:      s3c2410
2565 N:      s3c64xx
2566 N:      s5pv210
2567
2568 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2569 M:      Andrzej Hajda <a.hajda@samsung.com>
2570 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2571 L:      linux-media@vger.kernel.org
2572 S:      Maintained
2573 F:      drivers/media/platform/s5p-g2d/
2574
2575 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2576 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2577 L:      linux-samsung-soc@vger.kernel.org
2578 L:      linux-media@vger.kernel.org
2579 S:      Maintained
2580 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2581 F:      drivers/media/cec/platform/s5p/
2582
2583 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2584 M:      Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2585 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
2586 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
2587 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2588 L:      linux-media@vger.kernel.org
2589 S:      Maintained
2590 F:      drivers/media/platform/s5p-jpeg/
2591
2592 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2593 M:      Andrzej Hajda <a.hajda@samsung.com>
2594 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2595 L:      linux-media@vger.kernel.org
2596 S:      Maintained
2597 F:      drivers/media/platform/s5p-mfc/
2598
2599 ARM/SHMOBILE ARM ARCHITECTURE
2600 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2601 M:      Magnus Damm <magnus.damm@gmail.com>
2602 L:      linux-renesas-soc@vger.kernel.org
2603 S:      Supported
2604 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2605 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2606 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2607 F:      arch/arm/boot/dts/emev2*
2608 F:      arch/arm/boot/dts/gr-peach*
2609 F:      arch/arm/boot/dts/iwg20d-q7*
2610 F:      arch/arm/boot/dts/r7s*
2611 F:      arch/arm/boot/dts/r8a*
2612 F:      arch/arm/boot/dts/r9a*
2613 F:      arch/arm/boot/dts/sh*
2614 F:      arch/arm/configs/shmobile_defconfig
2615 F:      arch/arm/include/debug/renesas-scif.S
2616 F:      arch/arm/mach-shmobile/
2617 F:      drivers/soc/renesas/
2618 F:      include/linux/soc/renesas/
2619
2620 ARM/SOCFPGA ARCHITECTURE
2621 M:      Dinh Nguyen <dinguyen@kernel.org>
2622 S:      Maintained
2623 W:      http://www.rocketboards.org
2624 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2625 F:      arch/arm/boot/dts/socfpga*
2626 F:      arch/arm/configs/socfpga_defconfig
2627 F:      arch/arm/mach-socfpga/
2628 F:      arch/arm64/boot/dts/altera/
2629 F:      arch/arm64/boot/dts/intel/
2630
2631 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2632 M:      Dinh Nguyen <dinguyen@kernel.org>
2633 S:      Maintained
2634 F:      drivers/clk/socfpga/
2635
2636 ARM/SOCFPGA EDAC SUPPORT
2637 M:      Dinh Nguyen <dinguyen@kernel.org>
2638 S:      Maintained
2639 F:      drivers/edac/altera_edac.[ch]
2640
2641 ARM/SPREADTRUM SoC SUPPORT
2642 M:      Orson Zhai <orsonzhai@gmail.com>
2643 M:      Baolin Wang <baolin.wang7@gmail.com>
2644 M:      Chunyan Zhang <zhang.lyra@gmail.com>
2645 S:      Maintained
2646 F:      arch/arm64/boot/dts/sprd
2647 N:      sprd
2648 N:      sc27xx
2649 N:      sc2731
2650
2651 ARM/STI ARCHITECTURE
2652 M:      Patrice Chotard <patrice.chotard@foss.st.com>
2653 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2654 S:      Maintained
2655 W:      http://www.stlinux.com
2656 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2657 F:      arch/arm/boot/dts/sti*
2658 F:      arch/arm/mach-sti/
2659 F:      drivers/ata/ahci_st.c
2660 F:      drivers/char/hw_random/st-rng.c
2661 F:      drivers/clocksource/arm_global_timer.c
2662 F:      drivers/clocksource/clksrc_st_lpc.c
2663 F:      drivers/cpufreq/sti-cpufreq.c
2664 F:      drivers/dma/st_fdma*
2665 F:      drivers/i2c/busses/i2c-st.c
2666 F:      drivers/media/platform/sti/c8sectpfe/
2667 F:      drivers/media/rc/st_rc.c
2668 F:      drivers/mmc/host/sdhci-st.c
2669 F:      drivers/phy/st/phy-miphy28lp.c
2670 F:      drivers/phy/st/phy-stih407-usb.c
2671 F:      drivers/pinctrl/pinctrl-st.c
2672 F:      drivers/remoteproc/st_remoteproc.c
2673 F:      drivers/remoteproc/st_slim_rproc.c
2674 F:      drivers/reset/sti/
2675 F:      drivers/rtc/rtc-st-lpc.c
2676 F:      drivers/tty/serial/st-asc.c
2677 F:      drivers/usb/dwc3/dwc3-st.c
2678 F:      drivers/usb/host/ehci-st.c
2679 F:      drivers/usb/host/ohci-st.c
2680 F:      drivers/watchdog/st_lpc_wdt.c
2681 F:      include/linux/remoteproc/st_slim_rproc.h
2682
2683 ARM/STM32 ARCHITECTURE
2684 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
2685 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
2686 L:      linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2687 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2688 S:      Maintained
2689 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2690 F:      arch/arm/boot/dts/stm32*
2691 F:      arch/arm/mach-stm32/
2692 F:      drivers/clocksource/armv7m_systick.c
2693 N:      stm32
2694 N:      stm
2695
2696 ARM/Synaptics SoC support
2697 M:      Jisheng Zhang <Jisheng.Zhang@synaptics.com>
2698 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2699 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2700 S:      Maintained
2701 F:      arch/arm/boot/dts/berlin*
2702 F:      arch/arm/mach-berlin/
2703 F:      arch/arm64/boot/dts/synaptics/
2704
2705 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2706 M:      Lennert Buytenhek <kernel@wantstofly.org>
2707 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2708 S:      Maintained
2709
2710 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2711 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
2712 L:      linux-tegra@vger.kernel.org
2713 L:      linux-media@vger.kernel.org
2714 S:      Maintained
2715 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2716 F:      drivers/media/cec/platform/tegra/
2717
2718 ARM/TETON BGA MACHINE SUPPORT
2719 M:      "Mark F. Brown" <mark.brown314@gmail.com>
2720 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2721 S:      Maintained
2722
2723 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2724 M:      Santosh Shilimkar <ssantosh@kernel.org>
2725 L:      linux-kernel@vger.kernel.org
2726 S:      Maintained
2727 F:      drivers/memory/*emif*
2728
2729 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2730 M:      Santosh Shilimkar <ssantosh@kernel.org>
2731 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2732 S:      Maintained
2733 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
2734 F:      arch/arm/boot/dts/keystone-*
2735 F:      arch/arm/mach-keystone/
2736
2737 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2738 M:      Santosh Shilimkar <ssantosh@kernel.org>
2739 L:      linux-kernel@vger.kernel.org
2740 S:      Maintained
2741 F:      drivers/clk/keystone/
2742
2743 ARM/TEXAS INSTRUMENT KEYSTONE CLOCKSOURCE
2744 M:      Santosh Shilimkar <ssantosh@kernel.org>
2745 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2746 L:      linux-kernel@vger.kernel.org
2747 S:      Maintained
2748 F:      drivers/clocksource/timer-keystone.c
2749
2750 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2751 M:      Santosh Shilimkar <ssantosh@kernel.org>
2752 L:      linux-kernel@vger.kernel.org
2753 S:      Maintained
2754 F:      drivers/power/reset/keystone-reset.c
2755
2756 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2757 M:      Nishanth Menon <nm@ti.com>
2758 M:      Vignesh Raghavendra <vigneshr@ti.com>
2759 M:      Tero Kristo <kristo@kernel.org>
2760 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2761 S:      Supported
2762 F:      Documentation/devicetree/bindings/arm/ti/k3.yaml
2763 F:      arch/arm64/boot/dts/ti/Makefile
2764 F:      arch/arm64/boot/dts/ti/k3-*
2765 F:      include/dt-bindings/pinctrl/k3.h
2766
2767 ARM/THECUS N2100 MACHINE SUPPORT
2768 M:      Lennert Buytenhek <kernel@wantstofly.org>
2769 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2770 S:      Maintained
2771
2772 ARM/TOSA MACHINE SUPPORT
2773 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2774 M:      Dirk Opfer <dirk@opfer-online.de>
2775 S:      Maintained
2776
2777 ARM/TOSHIBA VISCONTI ARCHITECTURE
2778 M:      Nobuhiro Iwamatsu <nobuhiro1.iwamatsu@toshiba.co.jp>
2779 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2780 S:      Supported
2781 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwamatsu/linux-visconti.git
2782 F:      Documentation/devicetree/bindings/arm/toshiba.yaml
2783 F:      Documentation/devicetree/bindings/net/toshiba,visconti-dwmac.yaml
2784 F:      Documentation/devicetree/bindings/gpio/toshiba,gpio-visconti.yaml
2785 F:      Documentation/devicetree/bindings/pci/toshiba,visconti-pcie.yaml
2786 F:      Documentation/devicetree/bindings/pinctrl/toshiba,visconti-pinctrl.yaml
2787 F:      Documentation/devicetree/bindings/watchdog/toshiba,visconti-wdt.yaml
2788 F:      arch/arm64/boot/dts/toshiba/
2789 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-visconti.c
2790 F:      drivers/gpio/gpio-visconti.c
2791 F:      drivers/pci/controller/dwc/pcie-visconti.c
2792 F:      drivers/pinctrl/visconti/
2793 F:      drivers/watchdog/visconti_wdt.c
2794 N:      visconti
2795
2796 ARM/UNIPHIER ARCHITECTURE
2797 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
2798 M:      Masami Hiramatsu <mhiramat@kernel.org>
2799 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2800 S:      Maintained
2801 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2802 F:      Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2803 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2804 F:      arch/arm/boot/dts/uniphier*
2805 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2806 F:      arch/arm/mach-uniphier/
2807 F:      arch/arm/mm/cache-uniphier.c
2808 F:      arch/arm64/boot/dts/socionext/uniphier*
2809 F:      drivers/bus/uniphier-system-bus.c
2810 F:      drivers/clk/uniphier/
2811 F:      drivers/dma/uniphier-mdmac.c
2812 F:      drivers/gpio/gpio-uniphier.c
2813 F:      drivers/i2c/busses/i2c-uniphier*
2814 F:      drivers/irqchip/irq-uniphier-aidet.c
2815 F:      drivers/mmc/host/uniphier-sd.c
2816 F:      drivers/pinctrl/uniphier/
2817 F:      drivers/reset/reset-uniphier.c
2818 F:      drivers/tty/serial/8250/8250_uniphier.c
2819 N:      uniphier
2820
2821 ARM/VERSATILE EXPRESS PLATFORM
2822 M:      Liviu Dudau <liviu.dudau@arm.com>
2823 M:      Sudeep Holla <sudeep.holla@arm.com>
2824 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2825 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2826 S:      Maintained
2827 F:      */*/*/vexpress*
2828 F:      */*/vexpress*
2829 F:      arch/arm/boot/dts/vexpress*
2830 F:      arch/arm/mach-vexpress/
2831 F:      arch/arm64/boot/dts/arm/
2832 F:      drivers/clk/versatile/clk-vexpress-osc.c
2833 F:      drivers/clocksource/timer-versatile.c
2834 N:      mps2
2835
2836 ARM/VFP SUPPORT
2837 M:      Russell King <linux@armlinux.org.uk>
2838 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2839 S:      Maintained
2840 W:      http://www.armlinux.org.uk/
2841 F:      arch/arm/vfp/
2842
2843 ARM/VOIPAC PXA270 SUPPORT
2844 M:      Marek Vasut <marek.vasut@gmail.com>
2845 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2846 S:      Maintained
2847 F:      arch/arm/mach-pxa/include/mach/vpac270.h
2848 F:      arch/arm/mach-pxa/vpac270.c
2849
2850 ARM/VT8500 ARM ARCHITECTURE
2851 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2852 S:      Orphan
2853 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
2854 F:      arch/arm/mach-vt8500/
2855 F:      drivers/clocksource/timer-vt8500.c
2856 F:      drivers/i2c/busses/i2c-wmt.c
2857 F:      drivers/mmc/host/wmt-sdmmc.c
2858 F:      drivers/pwm/pwm-vt8500.c
2859 F:      drivers/rtc/rtc-vt8500.c
2860 F:      drivers/tty/serial/vt8500_serial.c
2861 F:      drivers/usb/host/ehci-platform.c
2862 F:      drivers/usb/host/uhci-platform.c
2863 F:      drivers/video/fbdev/vt8500lcdfb.*
2864 F:      drivers/video/fbdev/wm8505fb*
2865 F:      drivers/video/fbdev/wmt_ge_rops.*
2866
2867 ARM/ZIPIT Z2 SUPPORT
2868 M:      Marek Vasut <marek.vasut@gmail.com>
2869 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2870 S:      Maintained
2871 F:      arch/arm/mach-pxa/include/mach/z2.h
2872 F:      arch/arm/mach-pxa/z2.c
2873
2874 ARM/ZYNQ ARCHITECTURE
2875 M:      Michal Simek <michal.simek@xilinx.com>
2876 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2877 S:      Supported
2878 W:      http://wiki.xilinx.com
2879 T:      git https://github.com/Xilinx/linux-xlnx.git
2880 F:      Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
2881 F:      Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
2882 F:      Documentation/devicetree/bindings/spi/xlnx,zynq-qspi.yaml
2883 F:      arch/arm/mach-zynq/
2884 F:      drivers/clocksource/timer-cadence-ttc.c
2885 F:      drivers/cpuidle/cpuidle-zynq.c
2886 F:      drivers/edac/synopsys_edac.c
2887 F:      drivers/i2c/busses/i2c-cadence.c
2888 F:      drivers/i2c/busses/i2c-xiic.c
2889 F:      drivers/mmc/host/sdhci-of-arasan.c
2890 N:      zynq
2891 N:      xilinx
2892
2893 ARM64 PORT (AARCH64 ARCHITECTURE)
2894 M:      Catalin Marinas <catalin.marinas@arm.com>
2895 M:      Will Deacon <will@kernel.org>
2896 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2897 S:      Maintained
2898 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2899 F:      Documentation/arm64/
2900 F:      arch/arm64/
2901 F:      tools/testing/selftests/arm64/
2902 X:      arch/arm64/boot/dts/
2903
2904 ARROW SPEEDCHIPS XRS7000 SERIES ETHERNET SWITCH DRIVER
2905 M:      George McCollister <george.mccollister@gmail.com>
2906 L:      netdev@vger.kernel.org
2907 S:      Maintained
2908 F:      Documentation/devicetree/bindings/net/dsa/arrow,xrs700x.yaml
2909 F:      drivers/net/dsa/xrs700x/*
2910 F:      net/dsa/tag_xrs700x.c
2911
2912 AS3645A LED FLASH CONTROLLER DRIVER
2913 M:      Sakari Ailus <sakari.ailus@iki.fi>
2914 L:      linux-leds@vger.kernel.org
2915 S:      Maintained
2916 F:      drivers/leds/flash/leds-as3645a.c
2917
2918 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
2919 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
2920 L:      linux-media@vger.kernel.org
2921 S:      Maintained
2922 T:      git git://linuxtv.org/media_tree.git
2923 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
2924 F:      drivers/media/i2c/ak7375.c
2925
2926 ASAHI KASEI AK8974 DRIVER
2927 M:      Linus Walleij <linus.walleij@linaro.org>
2928 L:      linux-iio@vger.kernel.org
2929 S:      Supported
2930 W:      http://www.akm.com/
2931 F:      drivers/iio/magnetometer/ak8974.c
2932
2933 ASC7621 HARDWARE MONITOR DRIVER
2934 M:      George Joseph <george.joseph@fairview5.com>
2935 L:      linux-hwmon@vger.kernel.org
2936 S:      Maintained
2937 F:      Documentation/hwmon/asc7621.rst
2938 F:      drivers/hwmon/asc7621.c
2939
2940 ASIX AX88796C SPI ETHERNET ADAPTER
2941 M:      Łukasz Stelmach <l.stelmach@samsung.com>
2942 S:      Maintained
2943 F:      Documentation/devicetree/bindings/net/asix,ax88796c.yaml
2944 F:      drivers/net/ethernet/asix/ax88796c_*
2945
2946 ASPEED PINCTRL DRIVERS
2947 M:      Andrew Jeffery <andrew@aj.id.au>
2948 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2949 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2950 L:      linux-gpio@vger.kernel.org
2951 S:      Maintained
2952 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
2953 F:      drivers/pinctrl/aspeed/
2954
2955 ASPEED SCU INTERRUPT CONTROLLER DRIVER
2956 M:      Eddie James <eajames@linux.ibm.com>
2957 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2958 S:      Maintained
2959 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
2960 F:      drivers/irqchip/irq-aspeed-scu-ic.c
2961 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
2962
2963 ASPEED SD/MMC DRIVER
2964 M:      Andrew Jeffery <andrew@aj.id.au>
2965 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2966 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2967 L:      linux-mmc@vger.kernel.org
2968 S:      Maintained
2969 F:      Documentation/devicetree/bindings/mmc/aspeed,sdhci.yaml
2970 F:      drivers/mmc/host/sdhci-of-aspeed*
2971
2972 ASPEED VIDEO ENGINE DRIVER
2973 M:      Eddie James <eajames@linux.ibm.com>
2974 L:      linux-media@vger.kernel.org
2975 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2976 S:      Maintained
2977 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
2978 F:      drivers/media/platform/aspeed-video.c
2979
2980 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2981 M:      Corentin Chary <corentin.chary@gmail.com>
2982 L:      acpi4asus-user@lists.sourceforge.net
2983 L:      platform-driver-x86@vger.kernel.org
2984 S:      Maintained
2985 W:      http://acpi4asus.sf.net
2986 F:      drivers/platform/x86/asus*.c
2987 F:      drivers/platform/x86/eeepc*.c
2988
2989 ASUS WIRELESS RADIO CONTROL DRIVER
2990 M:      João Paulo Rechi Vita <jprvita@gmail.com>
2991 L:      platform-driver-x86@vger.kernel.org
2992 S:      Maintained
2993 F:      drivers/platform/x86/asus-wireless.c
2994
2995 ASYMMETRIC KEYS
2996 M:      David Howells <dhowells@redhat.com>
2997 L:      keyrings@vger.kernel.org
2998 S:      Maintained
2999 F:      Documentation/crypto/asymmetric-keys.rst
3000 F:      crypto/asymmetric_keys/
3001 F:      include/crypto/pkcs7.h
3002 F:      include/crypto/public_key.h
3003 F:      include/linux/verification.h
3004
3005 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
3006 R:      Dan Williams <dan.j.williams@intel.com>
3007 S:      Odd fixes
3008 W:      http://sourceforge.net/projects/xscaleiop
3009 F:      Documentation/crypto/async-tx-api.rst
3010 F:      crypto/async_tx/
3011 F:      include/linux/async_tx.h
3012
3013 AT24 EEPROM DRIVER
3014 M:      Bartosz Golaszewski <brgl@bgdev.pl>
3015 L:      linux-i2c@vger.kernel.org
3016 S:      Maintained
3017 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
3018 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
3019 F:      drivers/misc/eeprom/at24.c
3020
3021 ATA OVER ETHERNET (AOE) DRIVER
3022 M:      "Justin Sanders" <justin@coraid.com>
3023 S:      Supported
3024 W:      http://www.openaoe.org/
3025 F:      Documentation/admin-guide/aoe/
3026 F:      drivers/block/aoe/
3027
3028 ATC260X PMIC MFD DRIVER
3029 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
3030 M:      Cristian Ciocaltea <cristian.ciocaltea@gmail.com>
3031 L:      linux-actions@lists.infradead.org
3032 S:      Maintained
3033 F:      Documentation/devicetree/bindings/mfd/actions,atc260x.yaml
3034 F:      drivers/input/misc/atc260x-onkey.c
3035 F:      drivers/mfd/atc260*
3036 F:      drivers/power/reset/atc260x-poweroff.c
3037 F:      drivers/regulator/atc260x-regulator.c
3038 F:      include/linux/mfd/atc260x/*
3039
3040 ATHEROS 71XX/9XXX GPIO DRIVER
3041 M:      Alban Bedel <albeu@free.fr>
3042 S:      Maintained
3043 W:      https://github.com/AlbanBedel/linux
3044 T:      git git://github.com/AlbanBedel/linux
3045 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
3046 F:      drivers/gpio/gpio-ath79.c
3047
3048 ATHEROS 71XX/9XXX USB PHY DRIVER
3049 M:      Alban Bedel <albeu@free.fr>
3050 S:      Maintained
3051 W:      https://github.com/AlbanBedel/linux
3052 T:      git git://github.com/AlbanBedel/linux
3053 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
3054 F:      drivers/phy/qualcomm/phy-ath79-usb.c
3055
3056 ATHEROS ATH GENERIC UTILITIES
3057 M:      Kalle Valo <kvalo@codeaurora.org>
3058 L:      linux-wireless@vger.kernel.org
3059 S:      Supported
3060 F:      drivers/net/wireless/ath/*
3061
3062 ATHEROS ATH5K WIRELESS DRIVER
3063 M:      Jiri Slaby <jirislaby@kernel.org>
3064 M:      Nick Kossifidis <mickflemm@gmail.com>
3065 M:      Luis Chamberlain <mcgrof@kernel.org>
3066 L:      linux-wireless@vger.kernel.org
3067 S:      Maintained
3068 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
3069 F:      drivers/net/wireless/ath/ath5k/
3070
3071 ATHEROS ATH6KL WIRELESS DRIVER
3072 M:      Kalle Valo <kvalo@codeaurora.org>
3073 L:      linux-wireless@vger.kernel.org
3074 S:      Supported
3075 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
3076 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
3077 F:      drivers/net/wireless/ath/ath6kl/
3078
3079 ATI_REMOTE2 DRIVER
3080 M:      Ville Syrjala <syrjala@sci.fi>
3081 S:      Maintained
3082 F:      drivers/input/misc/ati_remote2.c
3083
3084 ATK0110 HWMON DRIVER
3085 M:      Luca Tettamanti <kronos.it@gmail.com>
3086 L:      linux-hwmon@vger.kernel.org
3087 S:      Maintained
3088 F:      drivers/hwmon/asus_atk0110.c
3089
3090 ATLX ETHERNET DRIVERS
3091 M:      Chris Snook <chris.snook@gmail.com>
3092 L:      netdev@vger.kernel.org
3093 S:      Maintained
3094 W:      http://sourceforge.net/projects/atl1
3095 W:      http://atl1.sourceforge.net
3096 F:      drivers/net/ethernet/atheros/
3097
3098 ATM
3099 M:      Chas Williams <3chas3@gmail.com>
3100 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
3101 L:      netdev@vger.kernel.org
3102 S:      Maintained
3103 W:      http://linux-atm.sourceforge.net
3104 F:      drivers/atm/
3105 F:      include/linux/atm*
3106 F:      include/uapi/linux/atm*
3107
3108 ATMEL MACB ETHERNET DRIVER
3109 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
3110 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
3111 S:      Supported
3112 F:      drivers/net/ethernet/cadence/
3113
3114 ATMEL MAXTOUCH DRIVER
3115 M:      Nick Dyer <nick@shmanahar.org>
3116 S:      Maintained
3117 T:      git git://github.com/ndyer/linux.git
3118 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.yaml
3119 F:      drivers/input/touchscreen/atmel_mxt_ts.c
3120
3121 ATMEL WIRELESS DRIVER
3122 M:      Simon Kelley <simon@thekelleys.org.uk>
3123 L:      linux-wireless@vger.kernel.org
3124 S:      Maintained
3125 W:      http://www.thekelleys.org.uk/atmel
3126 W:      http://atmelwlandriver.sourceforge.net/
3127 F:      drivers/net/wireless/atmel/atmel*
3128
3129 ATOMIC INFRASTRUCTURE
3130 M:      Will Deacon <will@kernel.org>
3131 M:      Peter Zijlstra <peterz@infradead.org>
3132 R:      Boqun Feng <boqun.feng@gmail.com>
3133 L:      linux-kernel@vger.kernel.org
3134 S:      Maintained
3135 F:      arch/*/include/asm/atomic*.h
3136 F:      include/*/atomic*.h
3137 F:      include/linux/refcount.h
3138 F:      Documentation/atomic_*.txt
3139 F:      scripts/atomic/
3140
3141 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
3142 M:      Bradley Grove <linuxdrivers@attotech.com>
3143 L:      linux-scsi@vger.kernel.org
3144 S:      Supported
3145 W:      http://www.attotech.com
3146 F:      drivers/scsi/esas2r
3147
3148 ATUSB IEEE 802.15.4 RADIO DRIVER
3149 M:      Stefan Schmidt <stefan@datenfreihafen.org>
3150 L:      linux-wpan@vger.kernel.org
3151 S:      Maintained
3152 F:      drivers/net/ieee802154/at86rf230.h
3153 F:      drivers/net/ieee802154/atusb.c
3154 F:      drivers/net/ieee802154/atusb.h
3155
3156 AUDIT SUBSYSTEM
3157 M:      Paul Moore <paul@paul-moore.com>
3158 M:      Eric Paris <eparis@redhat.com>
3159 L:      linux-audit@redhat.com (moderated for non-subscribers)
3160 S:      Supported
3161 W:      https://github.com/linux-audit
3162 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
3163 F:      include/asm-generic/audit_*.h
3164 F:      include/linux/audit.h
3165 F:      include/linux/audit_arch.h
3166 F:      include/uapi/linux/audit.h
3167 F:      kernel/audit*
3168 F:      lib/*audit.c
3169
3170 AUXILIARY DISPLAY DRIVERS
3171 M:      Miguel Ojeda <ojeda@kernel.org>
3172 S:      Maintained
3173 F:      Documentation/devicetree/bindings/auxdisplay/
3174 F:      drivers/auxdisplay/
3175 F:      include/linux/cfag12864b.h
3176
3177 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
3178 M:      Andreas Klinger <ak@it-klinger.de>
3179 L:      linux-iio@vger.kernel.org
3180 S:      Maintained
3181 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
3182 F:      drivers/iio/adc/hx711.c
3183
3184 AX.25 NETWORK LAYER
3185 M:      Ralf Baechle <ralf@linux-mips.org>
3186 L:      linux-hams@vger.kernel.org
3187 S:      Maintained
3188 W:      http://www.linux-ax25.org/
3189 F:      include/net/ax25.h
3190 F:      include/uapi/linux/ax25.h
3191 F:      net/ax25/
3192
3193 AXENTIA ARM DEVICES
3194 M:      Peter Rosin <peda@axentia.se>
3195 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3196 S:      Maintained
3197 F:      arch/arm/boot/dts/at91-linea.dtsi
3198 F:      arch/arm/boot/dts/at91-natte.dtsi
3199 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
3200 F:      arch/arm/boot/dts/at91-tse850-3.dts
3201
3202 AXENTIA ASOC DRIVERS
3203 M:      Peter Rosin <peda@axentia.se>
3204 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3205 S:      Maintained
3206 F:      Documentation/devicetree/bindings/sound/axentia,*
3207 F:      sound/soc/atmel/tse850-pcm5142.c
3208
3209 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3210 M:      Nuno Sá <nuno.sa@analog.com>
3211 L:      linux-hwmon@vger.kernel.org
3212 S:      Supported
3213 W:      http://ez.analog.com/community/linux-device-drivers
3214 F:      Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3215 F:      drivers/hwmon/axi-fan-control.c
3216
3217 AXXIA I2C CONTROLLER
3218 M:      Krzysztof Adamski <krzysztof.adamski@nokia.com>
3219 L:      linux-i2c@vger.kernel.org
3220 S:      Maintained
3221 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3222 F:      drivers/i2c/busses/i2c-axxia.c
3223
3224 AZ6007 DVB DRIVER
3225 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3226 L:      linux-media@vger.kernel.org
3227 S:      Maintained
3228 W:      https://linuxtv.org
3229 T:      git git://linuxtv.org/media_tree.git
3230 F:      drivers/media/usb/dvb-usb-v2/az6007.c
3231
3232 AZTECH FM RADIO RECEIVER DRIVER
3233 M:      Hans Verkuil <hverkuil@xs4all.nl>
3234 L:      linux-media@vger.kernel.org
3235 S:      Maintained
3236 W:      https://linuxtv.org
3237 T:      git git://linuxtv.org/media_tree.git
3238 F:      drivers/media/radio/radio-aztech*
3239
3240 B43 WIRELESS DRIVER
3241 L:      linux-wireless@vger.kernel.org
3242 L:      b43-dev@lists.infradead.org
3243 S:      Odd Fixes
3244 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3245 F:      drivers/net/wireless/broadcom/b43/
3246
3247 B43LEGACY WIRELESS DRIVER
3248 M:      Larry Finger <Larry.Finger@lwfinger.net>
3249 L:      linux-wireless@vger.kernel.org
3250 L:      b43-dev@lists.infradead.org
3251 S:      Maintained
3252 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3253 F:      drivers/net/wireless/broadcom/b43legacy/
3254
3255 BACKLIGHT CLASS/SUBSYSTEM
3256 M:      Lee Jones <lee.jones@linaro.org>
3257 M:      Daniel Thompson <daniel.thompson@linaro.org>
3258 M:      Jingoo Han <jingoohan1@gmail.com>
3259 L:      dri-devel@lists.freedesktop.org
3260 S:      Maintained
3261 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3262 F:      Documentation/ABI/stable/sysfs-class-backlight
3263 F:      Documentation/ABI/testing/sysfs-class-backlight
3264 F:      Documentation/devicetree/bindings/leds/backlight
3265 F:      drivers/video/backlight/
3266 F:      include/linux/backlight.h
3267 F:      include/linux/pwm_backlight.h
3268
3269 BARCO P50 GPIO DRIVER
3270 M:      Santosh Kumar Yadav <santoshkumar.yadav@barco.com>
3271 M:      Peter Korsgaard <peter.korsgaard@barco.com>
3272 S:      Maintained
3273 F:      drivers/platform/x86/barco-p50-gpio.c
3274
3275 BATMAN ADVANCED
3276 M:      Marek Lindner <mareklindner@neomailbox.ch>
3277 M:      Simon Wunderlich <sw@simonwunderlich.de>
3278 M:      Antonio Quartulli <a@unstable.cc>
3279 M:      Sven Eckelmann <sven@narfation.org>
3280 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
3281 S:      Maintained
3282 W:      https://www.open-mesh.org/
3283 Q:      https://patchwork.open-mesh.org/project/batman/list/
3284 B:      https://www.open-mesh.org/projects/batman-adv/issues
3285 C:      ircs://irc.hackint.org/batadv
3286 T:      git https://git.open-mesh.org/linux-merge.git
3287 F:      Documentation/networking/batman-adv.rst
3288 F:      include/uapi/linux/batadv_packet.h
3289 F:      include/uapi/linux/batman_adv.h
3290 F:      net/batman-adv/
3291
3292 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3293 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
3294 L:      linux-hams@vger.kernel.org
3295 S:      Maintained
3296 W:      http://www.baycom.org/~tom/ham/ham.html
3297 F:      drivers/net/hamradio/baycom*
3298
3299 BCACHE (BLOCK LAYER CACHE)
3300 M:      Coly Li <colyli@suse.de>
3301 M:      Kent Overstreet <kent.overstreet@gmail.com>
3302 L:      linux-bcache@vger.kernel.org
3303 S:      Maintained
3304 W:      http://bcache.evilpiepirate.org
3305 C:      irc://irc.oftc.net/bcache
3306 F:      drivers/md/bcache/
3307
3308 BDISP ST MEDIA DRIVER
3309 M:      Fabien Dessenne <fabien.dessenne@foss.st.com>
3310 L:      linux-media@vger.kernel.org
3311 S:      Supported
3312 W:      https://linuxtv.org
3313 T:      git git://linuxtv.org/media_tree.git
3314 F:      drivers/media/platform/sti/bdisp
3315
3316 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3317 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
3318 L:      netdev@vger.kernel.org
3319 S:      Maintained
3320 F:      drivers/net/ethernet/ec_bhf.c
3321
3322 BEFS FILE SYSTEM
3323 M:      Luis de Bethencourt <luisbg@kernel.org>
3324 M:      Salah Triki <salah.triki@gmail.com>
3325 S:      Maintained
3326 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3327 F:      Documentation/filesystems/befs.rst
3328 F:      fs/befs/
3329
3330 BFQ I/O SCHEDULER
3331 M:      Paolo Valente <paolo.valente@linaro.org>
3332 M:      Jens Axboe <axboe@kernel.dk>
3333 L:      linux-block@vger.kernel.org
3334 S:      Maintained
3335 F:      Documentation/block/bfq-iosched.rst
3336 F:      block/bfq-*
3337
3338 BFS FILE SYSTEM
3339 M:      "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3340 S:      Maintained
3341 F:      Documentation/filesystems/bfs.rst
3342 F:      fs/bfs/
3343 F:      include/uapi/linux/bfs_fs.h
3344
3345 BITMAP API
3346 M:      Yury Norov <yury.norov@gmail.com>
3347 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
3348 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
3349 S:      Maintained
3350 F:      include/asm-generic/bitops/find.h
3351 F:      include/linux/bitmap.h
3352 F:      lib/bitmap.c
3353 F:      lib/find_bit.c
3354 F:      lib/find_bit_benchmark.c
3355 F:      lib/test_bitmap.c
3356 F:      tools/include/asm-generic/bitops/find.h
3357 F:      tools/include/linux/bitmap.h
3358 F:      tools/lib/bitmap.c
3359 F:      tools/lib/find_bit.c
3360
3361 BLINKM RGB LED DRIVER
3362 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
3363 S:      Maintained
3364 F:      drivers/leds/leds-blinkm.c
3365
3366 BLOCK LAYER
3367 M:      Jens Axboe <axboe@kernel.dk>
3368 L:      linux-block@vger.kernel.org
3369 S:      Maintained
3370 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3371 F:      block/
3372 F:      drivers/block/
3373 F:      include/linux/blk*
3374 F:      kernel/trace/blktrace.c
3375 F:      lib/sbitmap.c
3376
3377 BLOCK2MTD DRIVER
3378 M:      Joern Engel <joern@lazybastard.org>
3379 L:      linux-mtd@lists.infradead.org
3380 S:      Maintained
3381 F:      drivers/mtd/devices/block2mtd.c
3382
3383 BLUETOOTH DRIVERS
3384 M:      Marcel Holtmann <marcel@holtmann.org>
3385 M:      Johan Hedberg <johan.hedberg@gmail.com>
3386 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3387 L:      linux-bluetooth@vger.kernel.org
3388 S:      Supported
3389 W:      http://www.bluez.org/
3390 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3391 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3392 F:      drivers/bluetooth/
3393
3394 BLUETOOTH SUBSYSTEM
3395 M:      Marcel Holtmann <marcel@holtmann.org>
3396 M:      Johan Hedberg <johan.hedberg@gmail.com>
3397 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3398 L:      linux-bluetooth@vger.kernel.org
3399 S:      Supported
3400 W:      http://www.bluez.org/
3401 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3402 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3403 F:      include/net/bluetooth/
3404 F:      net/bluetooth/
3405
3406 BONDING DRIVER
3407 M:      Jay Vosburgh <j.vosburgh@gmail.com>
3408 M:      Veaceslav Falico <vfalico@gmail.com>
3409 M:      Andy Gospodarek <andy@greyhouse.net>
3410 L:      netdev@vger.kernel.org
3411 S:      Supported
3412 W:      http://sourceforge.net/projects/bonding/
3413 F:      drivers/net/bonding/
3414 F:      include/net/bonding.h
3415 F:      include/uapi/linux/if_bonding.h
3416
3417 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3418 M:      Dan Robertson <dan@dlrobertson.com>
3419 L:      linux-iio@vger.kernel.org
3420 S:      Maintained
3421 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3422 F:      drivers/iio/accel/bma400*
3423
3424 BPF (Safe dynamic programs and tools)
3425 M:      Alexei Starovoitov <ast@kernel.org>
3426 M:      Daniel Borkmann <daniel@iogearbox.net>
3427 M:      Andrii Nakryiko <andrii@kernel.org>
3428 R:      Martin KaFai Lau <kafai@fb.com>
3429 R:      Song Liu <songliubraving@fb.com>
3430 R:      Yonghong Song <yhs@fb.com>
3431 R:      John Fastabend <john.fastabend@gmail.com>
3432 R:      KP Singh <kpsingh@kernel.org>
3433 L:      netdev@vger.kernel.org
3434 L:      bpf@vger.kernel.org
3435 S:      Supported
3436 W:      https://bpf.io/
3437 Q:      https://patchwork.kernel.org/project/netdevbpf/list/?delegate=121173
3438 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3439 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3440 F:      Documentation/bpf/
3441 F:      Documentation/networking/filter.rst
3442 F:      Documentation/userspace-api/ebpf/
3443 F:      arch/*/net/*
3444 F:      include/linux/bpf*
3445 F:      include/linux/btf*
3446 F:      include/linux/filter.h
3447 F:      include/trace/events/xdp.h
3448 F:      include/uapi/linux/bpf*
3449 F:      include/uapi/linux/btf*
3450 F:      include/uapi/linux/filter.h
3451 F:      kernel/bpf/
3452 F:      kernel/trace/bpf_trace.c
3453 F:      lib/test_bpf.c
3454 F:      net/bpf/
3455 F:      net/core/filter.c
3456 F:      net/sched/act_bpf.c
3457 F:      net/sched/cls_bpf.c
3458 F:      samples/bpf/
3459 F:      scripts/bpf_doc.py
3460 F:      tools/bpf/
3461 F:      tools/lib/bpf/
3462 F:      tools/testing/selftests/bpf/
3463 N:      bpf
3464 K:      bpf
3465
3466 BPF JIT for ARM
3467 M:      Shubham Bansal <illusionist.neo@gmail.com>
3468 L:      netdev@vger.kernel.org
3469 L:      bpf@vger.kernel.org
3470 S:      Maintained
3471 F:      arch/arm/net/
3472
3473 BPF JIT for ARM64
3474 M:      Daniel Borkmann <daniel@iogearbox.net>
3475 M:      Alexei Starovoitov <ast@kernel.org>
3476 M:      Zi Shen Lim <zlim.lnx@gmail.com>
3477 L:      netdev@vger.kernel.org
3478 L:      bpf@vger.kernel.org
3479 S:      Supported
3480 F:      arch/arm64/net/
3481
3482 BPF JIT for MIPS (32-BIT AND 64-BIT)
3483 M:      Johan Almbladh <johan.almbladh@anyfinetworks.com>
3484 M:      Paul Burton <paulburton@kernel.org>
3485 L:      netdev@vger.kernel.org
3486 L:      bpf@vger.kernel.org
3487 S:      Maintained
3488 F:      arch/mips/net/
3489
3490 BPF JIT for NFP NICs
3491 M:      Jakub Kicinski <kuba@kernel.org>
3492 L:      netdev@vger.kernel.org
3493 L:      bpf@vger.kernel.org
3494 S:      Supported
3495 F:      drivers/net/ethernet/netronome/nfp/bpf/
3496
3497 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3498 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3499 L:      netdev@vger.kernel.org
3500 L:      bpf@vger.kernel.org
3501 S:      Maintained
3502 F:      arch/powerpc/net/
3503
3504 BPF JIT for RISC-V (32-bit)
3505 M:      Luke Nelson <luke.r.nels@gmail.com>
3506 M:      Xi Wang <xi.wang@gmail.com>
3507 L:      netdev@vger.kernel.org
3508 L:      bpf@vger.kernel.org
3509 S:      Maintained
3510 F:      arch/riscv/net/
3511 X:      arch/riscv/net/bpf_jit_comp64.c
3512
3513 BPF JIT for RISC-V (64-bit)
3514 M:      Björn Töpel <bjorn@kernel.org>
3515 L:      netdev@vger.kernel.org
3516 L:      bpf@vger.kernel.org
3517 S:      Maintained
3518 F:      arch/riscv/net/
3519 X:      arch/riscv/net/bpf_jit_comp32.c
3520
3521 BPF JIT for S390
3522 M:      Ilya Leoshkevich <iii@linux.ibm.com>
3523 M:      Heiko Carstens <hca@linux.ibm.com>
3524 M:      Vasily Gorbik <gor@linux.ibm.com>
3525 L:      netdev@vger.kernel.org
3526 L:      bpf@vger.kernel.org
3527 S:      Maintained
3528 F:      arch/s390/net/
3529 X:      arch/s390/net/pnet.c
3530
3531 BPF JIT for SPARC (32-BIT AND 64-BIT)
3532 M:      David S. Miller <davem@davemloft.net>
3533 L:      netdev@vger.kernel.org
3534 L:      bpf@vger.kernel.org
3535 S:      Maintained
3536 F:      arch/sparc/net/
3537
3538 BPF JIT for X86 32-BIT
3539 M:      Wang YanQing <udknight@gmail.com>
3540 L:      netdev@vger.kernel.org
3541 L:      bpf@vger.kernel.org
3542 S:      Maintained
3543 F:      arch/x86/net/bpf_jit_comp32.c
3544
3545 BPF JIT for X86 64-BIT
3546 M:      Alexei Starovoitov <ast@kernel.org>
3547 M:      Daniel Borkmann <daniel@iogearbox.net>
3548 L:      netdev@vger.kernel.org
3549 L:      bpf@vger.kernel.org
3550 S:      Supported
3551 F:      arch/x86/net/
3552 X:      arch/x86/net/bpf_jit_comp32.c
3553
3554 BPF LSM (Security Audit and Enforcement using BPF)
3555 M:      KP Singh <kpsingh@kernel.org>
3556 R:      Florent Revest <revest@chromium.org>
3557 R:      Brendan Jackman <jackmanb@chromium.org>
3558 L:      bpf@vger.kernel.org
3559 S:      Maintained
3560 F:      Documentation/bpf/bpf_lsm.rst
3561 F:      include/linux/bpf_lsm.h
3562 F:      kernel/bpf/bpf_lsm.c
3563 F:      security/bpf/
3564
3565 BROADCOM B44 10/100 ETHERNET DRIVER
3566 M:      Michael Chan <michael.chan@broadcom.com>
3567 L:      netdev@vger.kernel.org
3568 S:      Supported
3569 F:      drivers/net/ethernet/broadcom/b44.*
3570
3571 BROADCOM B53 ETHERNET SWITCH DRIVER
3572 M:      Florian Fainelli <f.fainelli@gmail.com>
3573 L:      netdev@vger.kernel.org
3574 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
3575 S:      Supported
3576 F:      Documentation/devicetree/bindings/net/dsa/brcm,b53.yaml
3577 F:      drivers/net/dsa/b53/*
3578 F:      include/linux/dsa/brcm.h
3579 F:      include/linux/platform_data/b53.h
3580
3581 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3582 M:      Nicolas Saenz Julienne <nsaenz@kernel.org>
3583 L:      bcm-kernel-feedback-list@broadcom.com
3584 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3585 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3586 S:      Maintained
3587 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsaenz/linux-rpi.git
3588 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3589 F:      drivers/pci/controller/pcie-brcmstb.c
3590 F:      drivers/staging/vc04_services
3591 N:      bcm2711
3592 N:      bcm283*
3593
3594 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3595 M:      Florian Fainelli <f.fainelli@gmail.com>
3596 M:      Ray Jui <rjui@broadcom.com>
3597 M:      Scott Branden <sbranden@broadcom.com>
3598 M:      bcm-kernel-feedback-list@broadcom.com
3599 S:      Maintained
3600 T:      git git://github.com/broadcom/mach-bcm
3601 F:      arch/arm/mach-bcm/
3602 N:      bcm281*
3603 N:      bcm113*
3604 N:      bcm216*
3605 N:      kona
3606
3607 BROADCOM BCM47XX MIPS ARCHITECTURE
3608 M:      Hauke Mehrtens <hauke@hauke-m.de>
3609 M:      Rafał Miłecki <zajec5@gmail.com>
3610 L:      linux-mips@vger.kernel.org
3611 S:      Maintained
3612 F:      Documentation/devicetree/bindings/mips/brcm/
3613 F:      arch/mips/bcm47xx/*
3614 F:      arch/mips/include/asm/mach-bcm47xx/*
3615
3616 BROADCOM BCM4908 ETHERNET DRIVER
3617 M:      Rafał Miłecki <rafal@milecki.pl>
3618 M:      bcm-kernel-feedback-list@broadcom.com
3619 L:      netdev@vger.kernel.org
3620 S:      Maintained
3621 F:      Documentation/devicetree/bindings/net/brcm,bcm4908-enet.yaml
3622 F:      drivers/net/ethernet/broadcom/bcm4908_enet.*
3623 F:      drivers/net/ethernet/broadcom/unimac.h
3624
3625 BROADCOM BCM5301X ARM ARCHITECTURE
3626 M:      Hauke Mehrtens <hauke@hauke-m.de>
3627 M:      Rafał Miłecki <zajec5@gmail.com>
3628 M:      bcm-kernel-feedback-list@broadcom.com
3629 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3630 S:      Maintained
3631 F:      arch/arm/boot/dts/bcm470*
3632 F:      arch/arm/boot/dts/bcm5301*
3633 F:      arch/arm/boot/dts/bcm953012*
3634 F:      arch/arm/mach-bcm/bcm_5301x.c
3635
3636 BROADCOM BCM53573 ARM ARCHITECTURE
3637 M:      Rafał Miłecki <rafal@milecki.pl>
3638 L:      bcm-kernel-feedback-list@broadcom.com
3639 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3640 S:      Maintained
3641 F:      arch/arm/boot/dts/bcm47189*
3642 F:      arch/arm/boot/dts/bcm53573*
3643
3644 BROADCOM BCM63XX ARM ARCHITECTURE
3645 M:      Florian Fainelli <f.fainelli@gmail.com>
3646 M:      bcm-kernel-feedback-list@broadcom.com
3647 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3648 S:      Maintained
3649 T:      git git://github.com/broadcom/stblinux.git
3650 N:      bcm63xx
3651
3652 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3653 M:      Kevin Cernekee <cernekee@gmail.com>
3654 L:      linux-usb@vger.kernel.org
3655 S:      Maintained
3656 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
3657
3658 BROADCOM BCM7XXX ARM ARCHITECTURE
3659 M:      Florian Fainelli <f.fainelli@gmail.com>
3660 M:      bcm-kernel-feedback-list@broadcom.com
3661 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3662 S:      Maintained
3663 T:      git git://github.com/broadcom/stblinux.git
3664 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3665 F:      arch/arm/boot/dts/bcm7*.dts*
3666 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
3667 F:      arch/arm/mach-bcm/*brcmstb*
3668 F:      arch/arm/mm/cache-b15-rac.c
3669 F:      drivers/bus/brcmstb_gisb.c
3670 F:      drivers/pci/controller/pcie-brcmstb.c
3671 N:      brcmstb
3672 N:      bcm7038
3673 N:      bcm7120
3674
3675 BROADCOM BDC DRIVER
3676 M:      Al Cooper <alcooperx@gmail.com>
3677 L:      linux-usb@vger.kernel.org
3678 L:      bcm-kernel-feedback-list@broadcom.com
3679 S:      Maintained
3680 F:      Documentation/devicetree/bindings/usb/brcm,bdc.txt
3681 F:      drivers/usb/gadget/udc/bdc/
3682
3683 BROADCOM BMIPS CPUFREQ DRIVER
3684 M:      Markus Mayer <mmayer@broadcom.com>
3685 M:      bcm-kernel-feedback-list@broadcom.com
3686 L:      linux-pm@vger.kernel.org
3687 S:      Maintained
3688 F:      drivers/cpufreq/bmips-cpufreq.c
3689
3690 BROADCOM BMIPS MIPS ARCHITECTURE
3691 M:      Florian Fainelli <f.fainelli@gmail.com>
3692 L:      bcm-kernel-feedback-list@broadcom.com
3693 L:      linux-mips@vger.kernel.org
3694 S:      Maintained
3695 T:      git git://github.com/broadcom/stblinux.git
3696 F:      arch/mips/bmips/*
3697 F:      arch/mips/boot/dts/brcm/bcm*.dts*
3698 F:      arch/mips/include/asm/mach-bmips/*
3699 F:      arch/mips/kernel/*bmips*
3700 F:      drivers/soc/bcm/bcm63xx
3701 F:      drivers/irqchip/irq-bcm63*
3702 F:      drivers/irqchip/irq-bcm7*
3703 F:      drivers/irqchip/irq-brcmstb*
3704 F:      include/linux/bcm963xx_nvram.h
3705 F:      include/linux/bcm963xx_tag.h
3706
3707 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3708 M:      Rasesh Mody <rmody@marvell.com>
3709 M:      GR-Linux-NIC-Dev@marvell.com
3710 L:      netdev@vger.kernel.org
3711 S:      Supported
3712 F:      drivers/net/ethernet/broadcom/bnx2.*
3713 F:      drivers/net/ethernet/broadcom/bnx2_*
3714
3715 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3716 M:      Saurav Kashyap <skashyap@marvell.com>
3717 M:      Javed Hasan <jhasan@marvell.com>
3718 M:      GR-QLogic-Storage-Upstream@marvell.com
3719 L:      linux-scsi@vger.kernel.org
3720 S:      Supported
3721 F:      drivers/scsi/bnx2fc/
3722
3723 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3724 M:      Nilesh Javali <njavali@marvell.com>
3725 M:      Manish Rangankar <mrangankar@marvell.com>
3726 M:      GR-QLogic-Storage-Upstream@marvell.com
3727 L:      linux-scsi@vger.kernel.org
3728 S:      Supported
3729 F:      drivers/scsi/bnx2i/
3730
3731 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3732 M:      Ariel Elior <aelior@marvell.com>
3733 M:      Sudarsana Kalluru <skalluru@marvell.com>
3734 M:      GR-everest-linux-l2@marvell.com
3735 L:      netdev@vger.kernel.org
3736 S:      Supported
3737 F:      drivers/net/ethernet/broadcom/bnx2x/
3738
3739 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3740 M:      Michael Chan <michael.chan@broadcom.com>
3741 L:      netdev@vger.kernel.org
3742 S:      Supported
3743 F:      drivers/net/ethernet/broadcom/bnxt/
3744
3745 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3746 M:      Arend van Spriel <aspriel@gmail.com>
3747 M:      Franky Lin <franky.lin@broadcom.com>
3748 M:      Hante Meuleman <hante.meuleman@broadcom.com>
3749 M:      Chi-hsien Lin <chi-hsien.lin@infineon.com>
3750 M:      Wright Feng <wright.feng@infineon.com>
3751 M:      Chung-hsien Hsu <chung-hsien.hsu@infineon.com>
3752 L:      linux-wireless@vger.kernel.org
3753 L:      brcm80211-dev-list.pdl@broadcom.com
3754 L:      SHA-cyfmac-dev-list@infineon.com
3755 S:      Supported
3756 F:      drivers/net/wireless/broadcom/brcm80211/
3757
3758 BROADCOM BRCMSTB GPIO DRIVER
3759 M:      Gregory Fong <gregory.0xf0@gmail.com>
3760 L:      bcm-kernel-feedback-list@broadcom.com
3761 S:      Supported
3762 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
3763 F:      drivers/gpio/gpio-brcmstb.c
3764
3765 BROADCOM BRCMSTB I2C DRIVER
3766 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3767 L:      linux-i2c@vger.kernel.org
3768 L:      bcm-kernel-feedback-list@broadcom.com
3769 S:      Supported
3770 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
3771 F:      drivers/i2c/busses/i2c-brcmstb.c
3772
3773 BROADCOM BRCMSTB UART DRIVER
3774 M:      Al Cooper <alcooperx@gmail.com>
3775 L:      linux-serial@vger.kernel.org
3776 L:      bcm-kernel-feedback-list@broadcom.com
3777 S:      Maintained
3778 F:      Documentation/devicetree/bindings/serial/brcm,bcm7271-uart.yaml
3779 F:      drivers/tty/serial/8250/8250_bcm7271.c
3780
3781 BROADCOM BRCMSTB USB EHCI DRIVER
3782 M:      Al Cooper <alcooperx@gmail.com>
3783 L:      linux-usb@vger.kernel.org
3784 L:      bcm-kernel-feedback-list@broadcom.com
3785 S:      Maintained
3786 F:      Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
3787 F:      drivers/usb/host/ehci-brcm.*
3788
3789 BROADCOM BRCMSTB USB PIN MAP DRIVER
3790 M:      Al Cooper <alcooperx@gmail.com>
3791 L:      linux-usb@vger.kernel.org
3792 L:      bcm-kernel-feedback-list@broadcom.com
3793 S:      Maintained
3794 F:      Documentation/devicetree/bindings/usb/brcm,usb-pinmap.yaml
3795 F:      drivers/usb/misc/brcmstb-usb-pinmap.c
3796
3797 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3798 M:      Al Cooper <alcooperx@gmail.com>
3799 L:      linux-kernel@vger.kernel.org
3800 L:      bcm-kernel-feedback-list@broadcom.com
3801 S:      Maintained
3802 F:      drivers/phy/broadcom/phy-brcm-usb*
3803
3804 BROADCOM ETHERNET PHY DRIVERS
3805 M:      Florian Fainelli <f.fainelli@gmail.com>
3806 L:      bcm-kernel-feedback-list@broadcom.com
3807 L:      netdev@vger.kernel.org
3808 S:      Supported
3809 F:      Documentation/devicetree/bindings/net/broadcom-bcm87xx.txt
3810 F:      drivers/net/phy/bcm*.[ch]
3811 F:      drivers/net/phy/broadcom.c
3812 F:      include/linux/brcmphy.h
3813
3814 BROADCOM GENET ETHERNET DRIVER
3815 M:      Doug Berger <opendmb@gmail.com>
3816 M:      Florian Fainelli <f.fainelli@gmail.com>
3817 L:      bcm-kernel-feedback-list@broadcom.com
3818 L:      netdev@vger.kernel.org
3819 S:      Supported
3820 F:      Documentation/devicetree/bindings/net/brcm,bcmgenet.txt
3821 F:      Documentation/devicetree/bindings/net/brcm,unimac-mdio.yaml
3822 F:      drivers/net/ethernet/broadcom/genet/
3823 F:      drivers/net/ethernet/broadcom/unimac.h
3824 F:      drivers/net/mdio/mdio-bcm-unimac.c
3825 F:      include/linux/platform_data/bcmgenet.h
3826 F:      include/linux/platform_data/mdio-bcm-unimac.h
3827
3828 BROADCOM IPROC ARM ARCHITECTURE
3829 M:      Ray Jui <rjui@broadcom.com>
3830 M:      Scott Branden <sbranden@broadcom.com>
3831 M:      bcm-kernel-feedback-list@broadcom.com
3832 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3833 S:      Maintained
3834 T:      git git://github.com/broadcom/cygnus-linux.git
3835 F:      arch/arm64/boot/dts/broadcom/northstar2/*
3836 F:      arch/arm64/boot/dts/broadcom/stingray/*
3837 F:      drivers/clk/bcm/clk-ns*
3838 F:      drivers/clk/bcm/clk-sr*
3839 F:      drivers/pinctrl/bcm/pinctrl-ns*
3840 F:      include/dt-bindings/clock/bcm-sr*
3841 N:      iproc
3842 N:      cygnus
3843 N:      bcm[-_]nsp
3844 N:      bcm9113*
3845 N:      bcm9583*
3846 N:      bcm9585*
3847 N:      bcm9586*
3848 N:      bcm988312
3849 N:      bcm113*
3850 N:      bcm583*
3851 N:      bcm585*
3852 N:      bcm586*
3853 N:      bcm88312
3854 N:      hr2
3855 N:      stingray
3856
3857 BROADCOM IPROC GBIT ETHERNET DRIVER
3858 M:      Rafał Miłecki <rafal@milecki.pl>
3859 M:      bcm-kernel-feedback-list@broadcom.com
3860 L:      netdev@vger.kernel.org
3861 S:      Maintained
3862 F:      Documentation/devicetree/bindings/net/brcm,amac.txt
3863 F:      drivers/net/ethernet/broadcom/bgmac*
3864 F:      drivers/net/ethernet/broadcom/unimac.h
3865
3866 BROADCOM KONA GPIO DRIVER
3867 M:      Ray Jui <rjui@broadcom.com>
3868 L:      bcm-kernel-feedback-list@broadcom.com
3869 S:      Supported
3870 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
3871 F:      drivers/gpio/gpio-bcm-kona.c
3872
3873 BROADCOM MPI3 STORAGE CONTROLLER DRIVER
3874 M:      Sathya Prakash Veerichetty <sathya.prakash@broadcom.com>
3875 M:      Kashyap Desai <kashyap.desai@broadcom.com>
3876 M:      Sumit Saxena <sumit.saxena@broadcom.com>
3877 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
3878 L:      mpi3mr-linuxdrv.pdl@broadcom.com
3879 L:      linux-scsi@vger.kernel.org
3880 S:      Supported
3881 W:      https://www.broadcom.com/support/storage
3882 F:      drivers/scsi/mpi3mr/
3883
3884 BROADCOM NETXTREME-E ROCE DRIVER
3885 M:      Selvin Xavier <selvin.xavier@broadcom.com>
3886 L:      linux-rdma@vger.kernel.org
3887 S:      Supported
3888 W:      http://www.broadcom.com
3889 F:      drivers/infiniband/hw/bnxt_re/
3890 F:      include/uapi/rdma/bnxt_re-abi.h
3891
3892 BROADCOM NVRAM DRIVER
3893 M:      Rafał Miłecki <zajec5@gmail.com>
3894 L:      linux-mips@vger.kernel.org
3895 S:      Maintained
3896 F:      drivers/firmware/broadcom/*
3897
3898 BROADCOM PMB (POWER MANAGEMENT BUS) DRIVER
3899 M:      Rafał Miłecki <rafal@milecki.pl>
3900 M:      Florian Fainelli <f.fainelli@gmail.com>
3901 M:      bcm-kernel-feedback-list@broadcom.com
3902 L:      linux-pm@vger.kernel.org
3903 S:      Maintained
3904 T:      git git://github.com/broadcom/stblinux.git
3905 F:      drivers/soc/bcm/bcm63xx/bcm-pmb.c
3906 F:      include/dt-bindings/soc/bcm-pmb.h
3907
3908 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
3909 M:      Rafał Miłecki <zajec5@gmail.com>
3910 L:      linux-wireless@vger.kernel.org
3911 S:      Maintained
3912 F:      drivers/bcma/
3913 F:      include/linux/bcma/
3914
3915 BROADCOM SPI DRIVER
3916 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3917 M:      bcm-kernel-feedback-list@broadcom.com
3918 S:      Maintained
3919 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.yaml
3920 F:      drivers/spi/spi-bcm-qspi.*
3921 F:      drivers/spi/spi-brcmstb-qspi.c
3922 F:      drivers/spi/spi-iproc-qspi.c
3923
3924 BROADCOM STB AVS CPUFREQ DRIVER
3925 M:      Markus Mayer <mmayer@broadcom.com>
3926 M:      bcm-kernel-feedback-list@broadcom.com
3927 L:      linux-pm@vger.kernel.org
3928 S:      Maintained
3929 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
3930 F:      drivers/cpufreq/brcmstb*
3931
3932 BROADCOM STB AVS TMON DRIVER
3933 M:      Markus Mayer <mmayer@broadcom.com>
3934 M:      bcm-kernel-feedback-list@broadcom.com
3935 L:      linux-pm@vger.kernel.org
3936 S:      Maintained
3937 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.txt
3938 F:      drivers/thermal/broadcom/brcmstb*
3939
3940 BROADCOM STB DPFE DRIVER
3941 M:      Markus Mayer <mmayer@broadcom.com>
3942 M:      bcm-kernel-feedback-list@broadcom.com
3943 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3944 S:      Maintained
3945 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.yaml
3946 F:      drivers/memory/brcmstb_dpfe.c
3947
3948 BROADCOM STB NAND FLASH DRIVER
3949 M:      Brian Norris <computersforpeace@gmail.com>
3950 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3951 L:      linux-mtd@lists.infradead.org
3952 L:      bcm-kernel-feedback-list@broadcom.com
3953 S:      Maintained
3954 F:      drivers/mtd/nand/raw/brcmnand/
3955
3956 BROADCOM STB PCIE DRIVER
3957 M:      Jim Quinlan <jim2101024@gmail.com>
3958 M:      Nicolas Saenz Julienne <nsaenz@kernel.org>
3959 M:      Florian Fainelli <f.fainelli@gmail.com>
3960 M:      bcm-kernel-feedback-list@broadcom.com
3961 L:      linux-pci@vger.kernel.org
3962 S:      Maintained
3963 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3964 F:      drivers/pci/controller/pcie-brcmstb.c
3965
3966 BROADCOM SYSTEMPORT ETHERNET DRIVER
3967 M:      Florian Fainelli <f.fainelli@gmail.com>
3968 L:      bcm-kernel-feedback-list@broadcom.com
3969 L:      netdev@vger.kernel.org
3970 S:      Supported
3971 F:      drivers/net/ethernet/broadcom/bcmsysport.*
3972 F:      drivers/net/ethernet/broadcom/unimac.h
3973
3974 BROADCOM TG3 GIGABIT ETHERNET DRIVER
3975 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
3976 M:      Prashant Sreedharan <prashant@broadcom.com>
3977 M:      Michael Chan <mchan@broadcom.com>
3978 L:      netdev@vger.kernel.org
3979 S:      Supported
3980 F:      drivers/net/ethernet/broadcom/tg3.*
3981
3982 BROADCOM VK DRIVER
3983 M:      Scott Branden <scott.branden@broadcom.com>
3984 L:      bcm-kernel-feedback-list@broadcom.com
3985 S:      Supported
3986 F:      drivers/misc/bcm-vk/
3987 F:      include/uapi/linux/misc/bcm_vk.h
3988
3989 BROCADE BFA FC SCSI DRIVER
3990 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
3991 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
3992 L:      linux-scsi@vger.kernel.org
3993 S:      Supported
3994 F:      drivers/scsi/bfa/
3995
3996 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
3997 M:      Rasesh Mody <rmody@marvell.com>
3998 M:      Sudarsana Kalluru <skalluru@marvell.com>
3999 M:      GR-Linux-NIC-Dev@marvell.com
4000 L:      netdev@vger.kernel.org
4001 S:      Supported
4002 F:      drivers/net/ethernet/brocade/bna/
4003
4004 BSG (block layer generic sg v4 driver)
4005 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
4006 L:      linux-scsi@vger.kernel.org
4007 S:      Supported
4008 F:      block/bsg.c
4009 F:      include/linux/bsg.h
4010 F:      include/uapi/linux/bsg.h
4011
4012 BT87X AUDIO DRIVER
4013 M:      Clemens Ladisch <clemens@ladisch.de>
4014 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4015 S:      Maintained
4016 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4017 F:      Documentation/sound/cards/bt87x.rst
4018 F:      sound/pci/bt87x.c
4019
4020 BT8XXGPIO DRIVER
4021 M:      Michael Buesch <m@bues.ch>
4022 S:      Maintained
4023 W:      http://bu3sch.de/btgpio.php
4024 F:      drivers/gpio/gpio-bt8xx.c
4025
4026 BTRFS FILE SYSTEM
4027 M:      Chris Mason <clm@fb.com>
4028 M:      Josef Bacik <josef@toxicpanda.com>
4029 M:      David Sterba <dsterba@suse.com>
4030 L:      linux-btrfs@vger.kernel.org
4031 S:      Maintained
4032 W:      http://btrfs.wiki.kernel.org/
4033 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
4034 C:      irc://irc.libera.chat/btrfs
4035 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
4036 F:      Documentation/filesystems/btrfs.rst
4037 F:      fs/btrfs/
4038 F:      include/linux/btrfs*
4039 F:      include/uapi/linux/btrfs*
4040
4041 BTTV VIDEO4LINUX DRIVER
4042 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4043 L:      linux-media@vger.kernel.org
4044 S:      Odd fixes
4045 W:      https://linuxtv.org
4046 T:      git git://linuxtv.org/media_tree.git
4047 F:      Documentation/driver-api/media/drivers/bttv*
4048 F:      drivers/media/pci/bt8xx/bttv*
4049
4050 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
4051 M:      Chanwoo Choi <cw00.choi@samsung.com>
4052 L:      linux-pm@vger.kernel.org
4053 L:      linux-samsung-soc@vger.kernel.org
4054 S:      Maintained
4055 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4056 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
4057 F:      drivers/devfreq/exynos-bus.c
4058
4059 BUSLOGIC SCSI DRIVER
4060 M:      Khalid Aziz <khalid@gonehiking.org>
4061 L:      linux-scsi@vger.kernel.org
4062 S:      Maintained
4063 F:      drivers/scsi/BusLogic.*
4064 F:      drivers/scsi/FlashPoint.*
4065
4066 C-MEDIA CMI8788 DRIVER
4067 M:      Clemens Ladisch <clemens@ladisch.de>
4068 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4069 S:      Maintained
4070 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4071 F:      sound/pci/oxygen/
4072
4073 C-SKY ARCHITECTURE
4074 M:      Guo Ren <guoren@kernel.org>
4075 L:      linux-csky@vger.kernel.org
4076 S:      Supported
4077 T:      git https://github.com/c-sky/csky-linux.git
4078 F:      Documentation/devicetree/bindings/csky/
4079 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
4080 F:      Documentation/devicetree/bindings/timer/csky,*
4081 F:      arch/csky/
4082 F:      drivers/clocksource/timer-gx6605s.c
4083 F:      drivers/clocksource/timer-mp-csky.c
4084 F:      drivers/irqchip/irq-csky-*
4085 N:      csky
4086 K:      csky
4087
4088 CA8210 IEEE-802.15.4 RADIO DRIVER
4089 M:      Harry Morris <h.morris@cascoda.com>
4090 L:      linux-wpan@vger.kernel.org
4091 S:      Maintained
4092 W:      https://github.com/Cascoda/ca8210-linux.git
4093 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
4094 F:      drivers/net/ieee802154/ca8210.c
4095
4096 CANAAN/KENDRYTE K210 SOC FPIOA DRIVER
4097 M:      Damien Le Moal <damien.lemoal@wdc.com>
4098 L:      linux-riscv@lists.infradead.org
4099 L:      linux-gpio@vger.kernel.org (pinctrl driver)
4100 F:      Documentation/devicetree/bindings/pinctrl/canaan,k210-fpioa.yaml
4101 F:      drivers/pinctrl/pinctrl-k210.c
4102
4103 CANAAN/KENDRYTE K210 SOC RESET CONTROLLER DRIVER
4104 M:      Damien Le Moal <damien.lemoal@wdc.com>
4105 L:      linux-kernel@vger.kernel.org
4106 L:      linux-riscv@lists.infradead.org
4107 S:      Maintained
4108 F:      Documentation/devicetree/bindings/reset/canaan,k210-rst.yaml
4109 F:      drivers/reset/reset-k210.c
4110
4111 CANAAN/KENDRYTE K210 SOC SYSTEM CONTROLLER DRIVER
4112 M:      Damien Le Moal <damien.lemoal@wdc.com>
4113 L:      linux-riscv@lists.infradead.org
4114 S:      Maintained
4115 F:      Documentation/devicetree/bindings/mfd/canaan,k210-sysctl.yaml
4116 F:      drivers/soc/canaan/
4117 F:      include/soc/canaan/
4118
4119 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
4120 M:      David Howells <dhowells@redhat.com>
4121 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
4122 S:      Supported
4123 F:      Documentation/filesystems/caching/cachefiles.rst
4124 F:      fs/cachefiles/
4125
4126 CADENCE MIPI-CSI2 BRIDGES
4127 M:      Maxime Ripard <mripard@kernel.org>
4128 L:      linux-media@vger.kernel.org
4129 S:      Maintained
4130 F:      Documentation/devicetree/bindings/media/cdns,*.txt
4131 F:      drivers/media/platform/cadence/cdns-csi2*
4132
4133 CADENCE NAND DRIVER
4134 L:      linux-mtd@lists.infradead.org
4135 S:      Orphan
4136 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
4137 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
4138
4139 CADENCE USB3 DRD IP DRIVER
4140 M:      Peter Chen <peter.chen@kernel.org>
4141 M:      Pawel Laszczak <pawell@cadence.com>
4142 R:      Roger Quadros <rogerq@kernel.org>
4143 R:      Aswath Govindraju <a-govindraju@ti.com>
4144 L:      linux-usb@vger.kernel.org
4145 S:      Maintained
4146 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4147 F:      Documentation/devicetree/bindings/usb/cdns,usb3.yaml
4148 F:      drivers/usb/cdns3/
4149 X:      drivers/usb/cdns3/cdnsp*
4150
4151 CADENCE USBSSP DRD IP DRIVER
4152 M:      Pawel Laszczak <pawell@cadence.com>
4153 L:      linux-usb@vger.kernel.org
4154 S:      Maintained
4155 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4156 F:      drivers/usb/cdns3/
4157 X:      drivers/usb/cdns3/cdns3*
4158
4159 CADET FM/AM RADIO RECEIVER DRIVER
4160 M:      Hans Verkuil <hverkuil@xs4all.nl>
4161 L:      linux-media@vger.kernel.org
4162 S:      Maintained
4163 W:      https://linuxtv.org
4164 T:      git git://linuxtv.org/media_tree.git
4165 F:      drivers/media/radio/radio-cadet*
4166
4167 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
4168 L:      linux-media@vger.kernel.org
4169 S:      Orphan
4170 T:      git git://linuxtv.org/media_tree.git
4171 F:      Documentation/admin-guide/media/cafe_ccic*
4172 F:      drivers/media/platform/marvell-ccic/
4173
4174 CAIF NETWORK LAYER
4175 L:      netdev@vger.kernel.org
4176 S:      Orphan
4177 F:      Documentation/networking/caif/
4178 F:      drivers/net/caif/
4179 F:      include/net/caif/
4180 F:      include/uapi/linux/caif/
4181 F:      net/caif/
4182
4183 CAKE QDISC
4184 M:      Toke Høiland-Jørgensen <toke@toke.dk>
4185 L:      cake@lists.bufferbloat.net (moderated for non-subscribers)
4186 S:      Maintained
4187 F:      net/sched/sch_cake.c
4188
4189 CAN NETWORK DRIVERS
4190 M:      Wolfgang Grandegger <wg@grandegger.com>
4191 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4192 L:      linux-can@vger.kernel.org
4193 S:      Maintained
4194 W:      https://github.com/linux-can
4195 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4196 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4197 F:      Documentation/devicetree/bindings/net/can/
4198 F:      Documentation/devicetree/bindings/phy/ti,tcan104x-can.yaml
4199 F:      drivers/net/can/
4200 F:      drivers/phy/phy-can-transceiver.c
4201 F:      include/linux/can/bittiming.h
4202 F:      include/linux/can/dev.h
4203 F:      include/linux/can/led.h
4204 F:      include/linux/can/length.h
4205 F:      include/linux/can/platform/
4206 F:      include/linux/can/rx-offload.h
4207 F:      include/uapi/linux/can/error.h
4208 F:      include/uapi/linux/can/netlink.h
4209 F:      include/uapi/linux/can/vxcan.h
4210
4211 CAN NETWORK LAYER
4212 M:      Oliver Hartkopp <socketcan@hartkopp.net>
4213 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4214 L:      linux-can@vger.kernel.org
4215 S:      Maintained
4216 W:      https://github.com/linux-can
4217 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4218 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4219 F:      Documentation/networking/can.rst
4220 F:      include/linux/can/can-ml.h
4221 F:      include/linux/can/core.h
4222 F:      include/linux/can/skb.h
4223 F:      include/net/netns/can.h
4224 F:      include/uapi/linux/can.h
4225 F:      include/uapi/linux/can/bcm.h
4226 F:      include/uapi/linux/can/gw.h
4227 F:      include/uapi/linux/can/isotp.h
4228 F:      include/uapi/linux/can/raw.h
4229 F:      net/can/
4230
4231 CAN-J1939 NETWORK LAYER
4232 M:      Robin van der Gracht <robin@protonic.nl>
4233 M:      Oleksij Rempel <o.rempel@pengutronix.de>
4234 R:      kernel@pengutronix.de
4235 L:      linux-can@vger.kernel.org
4236 S:      Maintained
4237 F:      Documentation/networking/j1939.rst
4238 F:      include/uapi/linux/can/j1939.h
4239 F:      net/can/j1939/
4240
4241 CAPABILITIES
4242 M:      Serge Hallyn <serge@hallyn.com>
4243 L:      linux-security-module@vger.kernel.org
4244 S:      Supported
4245 F:      include/linux/capability.h
4246 F:      include/uapi/linux/capability.h
4247 F:      kernel/capability.c
4248 F:      security/commoncap.c
4249
4250 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
4251 M:      Kevin Tsai <ktsai@capellamicro.com>
4252 S:      Maintained
4253 F:      drivers/iio/light/cm*
4254
4255 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
4256 M:      Christian Lamparter <chunkeey@googlemail.com>
4257 L:      linux-wireless@vger.kernel.org
4258 S:      Maintained
4259 W:      https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
4260 F:      drivers/net/wireless/ath/carl9170/
4261
4262 CAVIUM I2C DRIVER
4263 M:      Robert Richter <rric@kernel.org>
4264 S:      Odd Fixes
4265 W:      http://www.marvell.com
4266 F:      drivers/i2c/busses/i2c-octeon*
4267 F:      drivers/i2c/busses/i2c-thunderx*
4268
4269 CAVIUM LIQUIDIO NETWORK DRIVER
4270 M:      Derek Chickles <dchickles@marvell.com>
4271 M:      Satanand Burla <sburla@marvell.com>
4272 M:      Felix Manlunas <fmanlunas@marvell.com>
4273 L:      netdev@vger.kernel.org
4274 S:      Supported
4275 W:      http://www.marvell.com
4276 F:      drivers/net/ethernet/cavium/liquidio/
4277
4278 CAVIUM MMC DRIVER
4279 M:      Robert Richter <rric@kernel.org>
4280 S:      Odd Fixes
4281 W:      http://www.marvell.com
4282 F:      drivers/mmc/host/cavium*
4283
4284 CAVIUM OCTEON-TX CRYPTO DRIVER
4285 M:      George Cherian <gcherian@marvell.com>
4286 L:      linux-crypto@vger.kernel.org
4287 S:      Supported
4288 W:      http://www.marvell.com
4289 F:      drivers/crypto/cavium/cpt/
4290
4291 CAVIUM THUNDERX2 ARM64 SOC
4292 M:      Robert Richter <rric@kernel.org>
4293 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4294 S:      Odd Fixes
4295 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
4296 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
4297
4298 CBS/ETF/TAPRIO QDISCS
4299 M:      Vinicius Costa Gomes <vinicius.gomes@intel.com>
4300 S:      Maintained
4301 L:      netdev@vger.kernel.org
4302 F:      net/sched/sch_cbs.c
4303 F:      net/sched/sch_etf.c
4304 F:      net/sched/sch_taprio.c
4305
4306 CC2520 IEEE-802.15.4 RADIO DRIVER
4307 M:      Varka Bhadram <varkabhadram@gmail.com>
4308 L:      linux-wpan@vger.kernel.org
4309 S:      Maintained
4310 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
4311 F:      drivers/net/ieee802154/cc2520.c
4312 F:      include/linux/spi/cc2520.h
4313
4314 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
4315 M:      Gilad Ben-Yossef <gilad@benyossef.com>
4316 L:      linux-crypto@vger.kernel.org
4317 S:      Supported
4318 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4319 F:      drivers/crypto/ccree/
4320
4321 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
4322 M:      Hadar Gat <hadar.gat@arm.com>
4323 L:      linux-crypto@vger.kernel.org
4324 S:      Supported
4325 F:      drivers/char/hw_random/cctrng.c
4326 F:      drivers/char/hw_random/cctrng.h
4327 F:      Documentation/devicetree/bindings/rng/arm-cctrng.yaml
4328 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4329
4330 CEC FRAMEWORK
4331 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4332 L:      linux-media@vger.kernel.org
4333 S:      Supported
4334 W:      http://linuxtv.org
4335 T:      git git://linuxtv.org/media_tree.git
4336 F:      Documentation/ABI/testing/debugfs-cec-error-inj
4337 F:      Documentation/devicetree/bindings/media/cec.txt
4338 F:      Documentation/driver-api/media/cec-core.rst
4339 F:      Documentation/userspace-api/media/cec
4340 F:      drivers/media/cec/
4341 F:      drivers/media/rc/keymaps/rc-cec.c
4342 F:      include/media/cec-notifier.h
4343 F:      include/media/cec.h
4344 F:      include/uapi/linux/cec-funcs.h
4345 F:      include/uapi/linux/cec.h
4346
4347 CEC GPIO DRIVER
4348 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4349 L:      linux-media@vger.kernel.org
4350 S:      Supported
4351 W:      http://linuxtv.org
4352 T:      git git://linuxtv.org/media_tree.git
4353 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
4354 F:      drivers/media/cec/platform/cec-gpio/
4355
4356 CELL BROADBAND ENGINE ARCHITECTURE
4357 M:      Arnd Bergmann <arnd@arndb.de>
4358 L:      linuxppc-dev@lists.ozlabs.org
4359 S:      Supported
4360 W:      http://www.ibm.com/developerworks/power/cell/
4361 F:      arch/powerpc/include/asm/cell*.h
4362 F:      arch/powerpc/include/asm/spu*.h
4363 F:      arch/powerpc/include/uapi/asm/spu*.h
4364 F:      arch/powerpc/platforms/cell/
4365
4366 CELLWISE CW2015 BATTERY DRIVER
4367 M:      Tobias Schrammm <t.schramm@manjaro.org>
4368 S:      Maintained
4369 F:      Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
4370 F:      drivers/power/supply/cw2015_battery.c
4371
4372 CEPH COMMON CODE (LIBCEPH)
4373 M:      Ilya Dryomov <idryomov@gmail.com>
4374 M:      Jeff Layton <jlayton@kernel.org>
4375 L:      ceph-devel@vger.kernel.org
4376 S:      Supported
4377 W:      http://ceph.com/
4378 T:      git git://github.com/ceph/ceph-client.git
4379 F:      include/linux/ceph/
4380 F:      include/linux/crush/
4381 F:      net/ceph/
4382
4383 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4384 M:      Jeff Layton <jlayton@kernel.org>
4385 M:      Ilya Dryomov <idryomov@gmail.com>
4386 L:      ceph-devel@vger.kernel.org
4387 S:      Supported
4388 W:      http://ceph.com/
4389 T:      git git://github.com/ceph/ceph-client.git
4390 F:      Documentation/filesystems/ceph.rst
4391 F:      fs/ceph/
4392
4393 CERTIFICATE HANDLING
4394 M:      David Howells <dhowells@redhat.com>
4395 M:      David Woodhouse <dwmw2@infradead.org>
4396 L:      keyrings@vger.kernel.org
4397 S:      Maintained
4398 F:      Documentation/admin-guide/module-signing.rst
4399 F:      certs/
4400 F:      scripts/extract-cert.c
4401 F:      scripts/sign-file.c
4402
4403 CFAG12864B LCD DRIVER
4404 M:      Miguel Ojeda <ojeda@kernel.org>
4405 S:      Maintained
4406 F:      drivers/auxdisplay/cfag12864b.c
4407 F:      include/linux/cfag12864b.h
4408
4409 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4410 M:      Miguel Ojeda <ojeda@kernel.org>
4411 S:      Maintained
4412 F:      drivers/auxdisplay/cfag12864bfb.c
4413 F:      include/linux/cfag12864b.h
4414
4415 CHAR and MISC DRIVERS
4416 M:      Arnd Bergmann <arnd@arndb.de>
4417 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4418 S:      Supported
4419 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4420 F:      drivers/char/
4421 F:      drivers/misc/
4422 F:      include/linux/miscdevice.h
4423 X:      drivers/char/agp/
4424 X:      drivers/char/hw_random/
4425 X:      drivers/char/ipmi/
4426 X:      drivers/char/random.c
4427 X:      drivers/char/tpm/
4428
4429 CHECKPATCH
4430 M:      Andy Whitcroft <apw@canonical.com>
4431 M:      Joe Perches <joe@perches.com>
4432 R:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4433 R:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4434 S:      Maintained
4435 F:      scripts/checkpatch.pl
4436
4437 CHECKPATCH DOCUMENTATION
4438 M:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4439 M:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4440 R:      Joe Perches <joe@perches.com>
4441 S:      Maintained
4442 F:      Documentation/dev-tools/checkpatch.rst
4443
4444 CHINESE DOCUMENTATION
4445 M:      Alex Shi <alexs@kernel.org>
4446 S:      Maintained
4447 F:      Documentation/translations/zh_CN/
4448
4449 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4450 M:      Peter Chen <peter.chen@kernel.org>
4451 L:      linux-usb@vger.kernel.org
4452 S:      Maintained
4453 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4454 F:      drivers/usb/chipidea/
4455
4456 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4457 M:      Hans de Goede <hdegoede@redhat.com>
4458 L:      linux-input@vger.kernel.org
4459 S:      Maintained
4460 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
4461 F:      drivers/input/touchscreen/chipone_icn8318.c
4462
4463 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4464 M:      Hans de Goede <hdegoede@redhat.com>
4465 L:      linux-input@vger.kernel.org
4466 S:      Maintained
4467 F:      drivers/input/touchscreen/chipone_icn8505.c
4468
4469 CHROME HARDWARE PLATFORM SUPPORT
4470 M:      Benson Leung <bleung@chromium.org>
4471 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4472 S:      Maintained
4473 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4474 F:      drivers/platform/chrome/
4475
4476 CHROMEOS EC CODEC DRIVER
4477 M:      Cheng-Yi Chiang <cychiang@chromium.org>
4478 R:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4479 R:      Guenter Roeck <groeck@chromium.org>
4480 S:      Maintained
4481 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4482 F:      sound/soc/codecs/cros_ec_codec.*
4483
4484 CHROMEOS EC SUBDRIVERS
4485 M:      Benson Leung <bleung@chromium.org>
4486 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4487 R:      Guenter Roeck <groeck@chromium.org>
4488 S:      Maintained
4489 F:      drivers/power/supply/cros_usbpd-charger.c
4490 N:      cros_ec
4491 N:      cros-ec
4492
4493 CHRONTEL CH7322 CEC DRIVER
4494 M:      Joe Tessler <jrt@google.com>
4495 L:      linux-media@vger.kernel.org
4496 S:      Maintained
4497 T:      git git://linuxtv.org/media_tree.git
4498 F:      Documentation/devicetree/bindings/media/i2c/chrontel,ch7322.yaml
4499 F:      drivers/media/cec/i2c/ch7322.c
4500
4501 CIRRUS LOGIC AUDIO CODEC DRIVERS
4502 M:      James Schulman <james.schulman@cirrus.com>
4503 M:      David Rhodes <david.rhodes@cirrus.com>
4504 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4505 L:      patches@opensource.cirrus.com
4506 S:      Maintained
4507 F:      sound/soc/codecs/cs*
4508
4509 CIRRUS LOGIC DSP FIRMWARE DRIVER
4510 M:      Simon Trimmer <simont@opensource.cirrus.com>
4511 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4512 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4513 L:      patches@opensource.cirrus.com
4514 S:      Supported
4515 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4516 T:      git https://github.com/CirrusLogic/linux-drivers.git
4517 F:      drivers/firmware/cirrus/*
4518 F:      include/linux/firmware/cirrus/*
4519
4520 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4521 M:      Hartley Sweeten <hsweeten@visionengravers.com>
4522 L:      netdev@vger.kernel.org
4523 S:      Maintained
4524 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
4525
4526 CIRRUS LOGIC LOCHNAGAR DRIVER
4527 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4528 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4529 L:      patches@opensource.cirrus.com
4530 S:      Supported
4531 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4532 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4533 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4534 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4535 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4536 F:      Documentation/hwmon/lochnagar.rst
4537 F:      drivers/clk/clk-lochnagar.c
4538 F:      drivers/hwmon/lochnagar-hwmon.c
4539 F:      drivers/mfd/lochnagar-i2c.c
4540 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4541 F:      drivers/regulator/lochnagar-regulator.c
4542 F:      include/dt-bindings/clk/lochnagar.h
4543 F:      include/dt-bindings/pinctrl/lochnagar.h
4544 F:      include/linux/mfd/lochnagar*
4545 F:      sound/soc/codecs/lochnagar-sc.c
4546
4547 CIRRUS LOGIC MADERA CODEC DRIVERS
4548 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4549 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4550 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4551 L:      patches@opensource.cirrus.com
4552 S:      Supported
4553 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4554 T:      git https://github.com/CirrusLogic/linux-drivers.git
4555 F:      Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4556 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4557 F:      Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4558 F:      drivers/gpio/gpio-madera*
4559 F:      drivers/irqchip/irq-madera*
4560 F:      drivers/mfd/cs47l*
4561 F:      drivers/mfd/madera*
4562 F:      drivers/pinctrl/cirrus/*
4563 F:      include/dt-bindings/sound/madera*
4564 F:      include/linux/irqchip/irq-madera*
4565 F:      include/linux/mfd/madera/*
4566 F:      include/sound/madera*
4567 F:      sound/soc/codecs/cs47l*
4568 F:      sound/soc/codecs/madera*
4569
4570 CISCO FCOE HBA DRIVER
4571 M:      Satish Kharat <satishkh@cisco.com>
4572 M:      Sesidhar Baddela <sebaddel@cisco.com>
4573 M:      Karan Tilak Kumar <kartilak@cisco.com>
4574 L:      linux-scsi@vger.kernel.org
4575 S:      Supported
4576 F:      drivers/scsi/fnic/
4577
4578 CISCO SCSI HBA DRIVER
4579 M:      Karan Tilak Kumar <kartilak@cisco.com>
4580 M:      Sesidhar Baddela <sebaddel@cisco.com>
4581 L:      linux-scsi@vger.kernel.org
4582 S:      Supported
4583 F:      drivers/scsi/snic/
4584
4585 CISCO VIC ETHERNET NIC DRIVER
4586 M:      Christian Benvenuti <benve@cisco.com>
4587 M:      Govindarajulu Varadarajan <_govind@gmx.com>
4588 S:      Supported
4589 F:      drivers/net/ethernet/cisco/enic/
4590
4591 CISCO VIC LOW LATENCY NIC DRIVER
4592 M:      Christian Benvenuti <benve@cisco.com>
4593 M:      Nelson Escobar <neescoba@cisco.com>
4594 S:      Supported
4595 F:      drivers/infiniband/hw/usnic/
4596
4597 CLANG-FORMAT FILE
4598 M:      Miguel Ojeda <ojeda@kernel.org>
4599 S:      Maintained
4600 F:      .clang-format
4601
4602 CLANG/LLVM BUILD SUPPORT
4603 M:      Nathan Chancellor <nathan@kernel.org>
4604 M:      Nick Desaulniers <ndesaulniers@google.com>
4605 L:      llvm@lists.linux.dev
4606 S:      Supported
4607 W:      https://clangbuiltlinux.github.io/
4608 B:      https://github.com/ClangBuiltLinux/linux/issues
4609 C:      irc://irc.libera.chat/clangbuiltlinux
4610 F:      Documentation/kbuild/llvm.rst
4611 F:      include/linux/compiler-clang.h
4612 F:      scripts/Makefile.clang
4613 F:      scripts/clang-tools/
4614 K:      \b(?i:clang|llvm)\b
4615
4616 CLANG CONTROL FLOW INTEGRITY SUPPORT
4617 M:      Sami Tolvanen <samitolvanen@google.com>
4618 M:      Kees Cook <keescook@chromium.org>
4619 R:      Nathan Chancellor <nathan@kernel.org>
4620 R:      Nick Desaulniers <ndesaulniers@google.com>
4621 L:      llvm@lists.linux.dev
4622 S:      Supported
4623 B:      https://github.com/ClangBuiltLinux/linux/issues
4624 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/clang/features
4625 F:      include/linux/cfi.h
4626 F:      kernel/cfi.c
4627
4628 CLEANCACHE API
4629 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4630 L:      linux-kernel@vger.kernel.org
4631 S:      Maintained
4632 F:      include/linux/cleancache.h
4633 F:      mm/cleancache.c
4634
4635 CLK API
4636 M:      Russell King <linux@armlinux.org.uk>
4637 L:      linux-clk@vger.kernel.org
4638 S:      Maintained
4639 F:      include/linux/clk.h
4640
4641 CLOCKSOURCE, CLOCKEVENT DRIVERS
4642 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4643 M:      Thomas Gleixner <tglx@linutronix.de>
4644 L:      linux-kernel@vger.kernel.org
4645 S:      Supported
4646 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4647 F:      Documentation/devicetree/bindings/timer/
4648 F:      drivers/clocksource/
4649
4650 CMPC ACPI DRIVER
4651 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
4652 M:      Daniel Oliveira Nascimento <don@syst.com.br>
4653 L:      platform-driver-x86@vger.kernel.org
4654 S:      Supported
4655 F:      drivers/platform/x86/classmate-laptop.c
4656
4657 COBALT MEDIA DRIVER
4658 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4659 L:      linux-media@vger.kernel.org
4660 S:      Supported
4661 W:      https://linuxtv.org
4662 T:      git git://linuxtv.org/media_tree.git
4663 F:      drivers/media/pci/cobalt/
4664
4665 COCCINELLE/Semantic Patches (SmPL)
4666 M:      Julia Lawall <Julia.Lawall@inria.fr>
4667 M:      Gilles Muller <Gilles.Muller@inria.fr>
4668 M:      Nicolas Palix <nicolas.palix@imag.fr>
4669 M:      Michal Marek <michal.lkml@markovi.net>
4670 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
4671 S:      Supported
4672 W:      http://coccinelle.lip6.fr/
4673 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
4674 F:      Documentation/dev-tools/coccinelle.rst
4675 F:      scripts/coccicheck
4676 F:      scripts/coccinelle/
4677
4678 CODA FILE SYSTEM
4679 M:      Jan Harkes <jaharkes@cs.cmu.edu>
4680 M:      coda@cs.cmu.edu
4681 L:      codalist@coda.cs.cmu.edu
4682 S:      Maintained
4683 W:      http://www.coda.cs.cmu.edu/
4684 F:      Documentation/filesystems/coda.rst
4685 F:      fs/coda/
4686 F:      include/linux/coda*.h
4687 F:      include/uapi/linux/coda*.h
4688
4689 CODA V4L2 MEM2MEM DRIVER
4690 M:      Philipp Zabel <p.zabel@pengutronix.de>
4691 L:      linux-media@vger.kernel.org
4692 S:      Maintained
4693 F:      Documentation/devicetree/bindings/media/coda.yaml
4694 F:      drivers/media/platform/coda/
4695
4696 CODE OF CONDUCT
4697 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4698 S:      Supported
4699 F:      Documentation/process/code-of-conduct-interpretation.rst
4700 F:      Documentation/process/code-of-conduct.rst
4701
4702 COMEDI DRIVERS
4703 M:      Ian Abbott <abbotti@mev.co.uk>
4704 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
4705 S:      Odd Fixes
4706 F:      drivers/comedi/
4707
4708 COMMON CLK FRAMEWORK
4709 M:      Michael Turquette <mturquette@baylibre.com>
4710 M:      Stephen Boyd <sboyd@kernel.org>
4711 L:      linux-clk@vger.kernel.org
4712 S:      Maintained
4713 Q:      http://patchwork.kernel.org/project/linux-clk/list/
4714 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4715 F:      Documentation/devicetree/bindings/clock/
4716 F:      drivers/clk/
4717 F:      include/linux/clk-pr*
4718 F:      include/linux/clk/
4719 F:      include/linux/of_clk.h
4720 X:      drivers/clk/clkdev.c
4721
4722 COMMON INTERNET FILE SYSTEM CLIENT (CIFS)
4723 M:      Steve French <sfrench@samba.org>
4724 L:      linux-cifs@vger.kernel.org
4725 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
4726 S:      Supported
4727 W:      http://linux-cifs.samba.org/
4728 T:      git git://git.samba.org/sfrench/cifs-2.6.git
4729 F:      Documentation/admin-guide/cifs/
4730 F:      fs/cifs/
4731 F:      fs/smbfs_common/
4732
4733 COMPACTPCI HOTPLUG CORE
4734 M:      Scott Murray <scott@spiteful.org>
4735 L:      linux-pci@vger.kernel.org
4736 S:      Maintained
4737 F:      drivers/pci/hotplug/cpci_hotplug*
4738
4739 COMPACTPCI HOTPLUG GENERIC DRIVER
4740 M:      Scott Murray <scott@spiteful.org>
4741 L:      linux-pci@vger.kernel.org
4742 S:      Maintained
4743 F:      drivers/pci/hotplug/cpcihp_generic.c
4744
4745 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4746 M:      Scott Murray <scott@spiteful.org>
4747 L:      linux-pci@vger.kernel.org
4748 S:      Maintained
4749 F:      drivers/pci/hotplug/cpcihp_zt5550.*
4750
4751 COMPAL LAPTOP SUPPORT
4752 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
4753 L:      platform-driver-x86@vger.kernel.org
4754 S:      Maintained
4755 F:      drivers/platform/x86/compal-laptop.c
4756
4757 COMPILER ATTRIBUTES
4758 M:      Miguel Ojeda <ojeda@kernel.org>
4759 R:      Nick Desaulniers <ndesaulniers@google.com>
4760 S:      Maintained
4761 F:      include/linux/compiler_attributes.h
4762
4763 COMPUTE EXPRESS LINK (CXL)
4764 M:      Alison Schofield <alison.schofield@intel.com>
4765 M:      Vishal Verma <vishal.l.verma@intel.com>
4766 M:      Ira Weiny <ira.weiny@intel.com>
4767 M:      Ben Widawsky <ben.widawsky@intel.com>
4768 M:      Dan Williams <dan.j.williams@intel.com>
4769 L:      linux-cxl@vger.kernel.org
4770 S:      Maintained
4771 F:      drivers/cxl/
4772 F:      include/uapi/linux/cxl_mem.h
4773
4774 CONEXANT ACCESSRUNNER USB DRIVER
4775 L:      accessrunner-general@lists.sourceforge.net
4776 S:      Orphan
4777 W:      http://accessrunner.sourceforge.net/
4778 F:      drivers/usb/atm/cxacru.c
4779
4780 CONFIGFS
4781 M:      Joel Becker <jlbec@evilplan.org>
4782 M:      Christoph Hellwig <hch@lst.de>
4783 S:      Supported
4784 T:      git git://git.infradead.org/users/hch/configfs.git
4785 F:      fs/configfs/
4786 F:      include/linux/configfs.h
4787 F:      samples/configfs/
4788
4789 CONSOLE SUBSYSTEM
4790 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4791 S:      Supported
4792 F:      drivers/video/console/
4793 F:      include/linux/console*
4794
4795 CONTEXT TRACKING
4796 M:      Frederic Weisbecker <frederic@kernel.org>
4797 S:      Maintained
4798 F:      kernel/context_tracking.c
4799 F:      include/linux/context_tracking*
4800
4801 CONTROL GROUP (CGROUP)
4802 M:      Tejun Heo <tj@kernel.org>
4803 M:      Zefan Li <lizefan.x@bytedance.com>
4804 M:      Johannes Weiner <hannes@cmpxchg.org>
4805 L:      cgroups@vger.kernel.org
4806 S:      Maintained
4807 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4808 F:      Documentation/admin-guide/cgroup-v1/
4809 F:      Documentation/admin-guide/cgroup-v2.rst
4810 F:      include/linux/cgroup*
4811 F:      kernel/cgroup/
4812
4813 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
4814 M:      Tejun Heo <tj@kernel.org>
4815 M:      Jens Axboe <axboe@kernel.dk>
4816 L:      cgroups@vger.kernel.org
4817 L:      linux-block@vger.kernel.org
4818 T:      git git://git.kernel.dk/linux-block
4819 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
4820 F:      block/bfq-cgroup.c
4821 F:      block/blk-cgroup.c
4822 F:      block/blk-iolatency.c
4823 F:      block/blk-throttle.c
4824 F:      include/linux/blk-cgroup.h
4825
4826 CONTROL GROUP - CPUSET
4827 M:      Zefan Li <lizefan.x@bytedance.com>
4828 L:      cgroups@vger.kernel.org
4829 S:      Maintained
4830 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4831 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
4832 F:      include/linux/cpuset.h
4833 F:      kernel/cgroup/cpuset.c
4834
4835 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
4836 M:      Johannes Weiner <hannes@cmpxchg.org>
4837 M:      Michal Hocko <mhocko@kernel.org>
4838 M:      Vladimir Davydov <vdavydov.dev@gmail.com>
4839 L:      cgroups@vger.kernel.org
4840 L:      linux-mm@kvack.org
4841 S:      Maintained
4842 F:      mm/memcontrol.c
4843 F:      mm/swap_cgroup.c
4844
4845 CORETEMP HARDWARE MONITORING DRIVER
4846 M:      Fenghua Yu <fenghua.yu@intel.com>
4847 L:      linux-hwmon@vger.kernel.org
4848 S:      Maintained
4849 F:      Documentation/hwmon/coretemp.rst
4850 F:      drivers/hwmon/coretemp.c
4851
4852 CORSAIR-CPRO HARDWARE MONITOR DRIVER
4853 M:      Marius Zachmann <mail@mariuszachmann.de>
4854 L:      linux-hwmon@vger.kernel.org
4855 S:      Maintained
4856 F:      drivers/hwmon/corsair-cpro.c
4857
4858 CORSAIR-PSU HARDWARE MONITOR DRIVER
4859 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
4860 L:      linux-hwmon@vger.kernel.org
4861 S:      Maintained
4862 F:      Documentation/hwmon/corsair-psu.rst
4863 F:      drivers/hwmon/corsair-psu.c
4864
4865 COSA/SRP SYNC SERIAL DRIVER
4866 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
4867 S:      Maintained
4868 W:      http://www.fi.muni.cz/~kas/cosa/
4869 F:      drivers/net/wan/cosa*
4870
4871 COUNTER SUBSYSTEM
4872 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
4873 L:      linux-iio@vger.kernel.org
4874 S:      Maintained
4875 F:      Documentation/ABI/testing/sysfs-bus-counter
4876 F:      Documentation/driver-api/generic-counter.rst
4877 F:      drivers/counter/
4878 F:      include/linux/counter.h
4879 F:      include/uapi/linux/counter.h
4880 F:      tools/counter/
4881
4882 CP2615 I2C DRIVER
4883 M:      Bence Csókás <bence98@sch.bme.hu>
4884 S:      Maintained
4885 F:      drivers/i2c/busses/i2c-cp2615.c
4886
4887 CPMAC ETHERNET DRIVER
4888 M:      Florian Fainelli <f.fainelli@gmail.com>
4889 L:      netdev@vger.kernel.org
4890 S:      Maintained
4891 F:      drivers/net/ethernet/ti/cpmac.c
4892
4893 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
4894 M:      Viresh Kumar <viresh.kumar@linaro.org>
4895 M:      Sudeep Holla <sudeep.holla@arm.com>
4896 L:      linux-pm@vger.kernel.org
4897 S:      Maintained
4898 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
4899 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
4900
4901 CPU FREQUENCY SCALING FRAMEWORK
4902 M:      "Rafael J. Wysocki" <rafael@kernel.org>
4903 M:      Viresh Kumar <viresh.kumar@linaro.org>
4904 L:      linux-pm@vger.kernel.org
4905 S:      Maintained
4906 B:      https://bugzilla.kernel.org
4907 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4908 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
4909 F:      Documentation/admin-guide/pm/cpufreq.rst
4910 F:      Documentation/admin-guide/pm/intel_pstate.rst
4911 F:      Documentation/cpu-freq/
4912 F:      Documentation/devicetree/bindings/cpufreq/
4913 F:      drivers/cpufreq/
4914 F:      include/linux/cpufreq.h
4915 F:      include/linux/sched/cpufreq.h
4916 F:      kernel/sched/cpufreq*.c
4917 F:      tools/testing/selftests/cpufreq/
4918
4919 CPU IDLE TIME MANAGEMENT FRAMEWORK
4920 M:      "Rafael J. Wysocki" <rafael@kernel.org>
4921 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4922 L:      linux-pm@vger.kernel.org
4923 S:      Maintained
4924 B:      https://bugzilla.kernel.org
4925 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4926 F:      Documentation/admin-guide/pm/cpuidle.rst
4927 F:      Documentation/driver-api/pm/cpuidle.rst
4928 F:      drivers/cpuidle/
4929 F:      include/linux/cpuidle.h
4930
4931 CPU POWER MONITORING SUBSYSTEM
4932 M:      Thomas Renninger <trenn@suse.com>
4933 M:      Shuah Khan <shuah@kernel.org>
4934 M:      Shuah Khan <skhan@linuxfoundation.org>
4935 L:      linux-pm@vger.kernel.org
4936 S:      Maintained
4937 F:      tools/power/cpupower/
4938
4939 CPUID/MSR DRIVER
4940 M:      "H. Peter Anvin" <hpa@zytor.com>
4941 S:      Maintained
4942 F:      arch/x86/kernel/cpuid.c
4943 F:      arch/x86/kernel/msr.c
4944
4945 CPUIDLE DRIVER - ARM BIG LITTLE
4946 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4947 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4948 L:      linux-pm@vger.kernel.org
4949 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4950 S:      Maintained
4951 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4952 F:      drivers/cpuidle/cpuidle-big_little.c
4953
4954 CPUIDLE DRIVER - ARM EXYNOS
4955 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
4956 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4957 M:      Kukjin Kim <kgene@kernel.org>
4958 L:      linux-pm@vger.kernel.org
4959 L:      linux-samsung-soc@vger.kernel.org
4960 S:      Supported
4961 F:      arch/arm/mach-exynos/pm.c
4962 F:      drivers/cpuidle/cpuidle-exynos.c
4963 F:      include/linux/platform_data/cpuidle-exynos.h
4964
4965 CPUIDLE DRIVER - ARM PSCI
4966 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4967 M:      Sudeep Holla <sudeep.holla@arm.com>
4968 L:      linux-pm@vger.kernel.org
4969 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4970 S:      Supported
4971 F:      drivers/cpuidle/cpuidle-psci.c
4972
4973 CPUIDLE DRIVER - ARM PSCI PM DOMAIN
4974 M:      Ulf Hansson <ulf.hansson@linaro.org>
4975 L:      linux-pm@vger.kernel.org
4976 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4977 S:      Supported
4978 F:      drivers/cpuidle/cpuidle-psci.h
4979 F:      drivers/cpuidle/cpuidle-psci-domain.c
4980
4981 CRAMFS FILESYSTEM
4982 M:      Nicolas Pitre <nico@fluxnic.net>
4983 S:      Maintained
4984 F:      Documentation/filesystems/cramfs.rst
4985 F:      fs/cramfs/
4986
4987 CREATIVE SB0540
4988 M:      Bastien Nocera <hadess@hadess.net>
4989 L:      linux-input@vger.kernel.org
4990 S:      Maintained
4991 F:      drivers/hid/hid-creative-sb0540.c
4992
4993 CRYPTO API
4994 M:      Herbert Xu <herbert@gondor.apana.org.au>
4995 M:      "David S. Miller" <davem@davemloft.net>
4996 L:      linux-crypto@vger.kernel.org
4997 S:      Maintained
4998 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
4999 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
5000 F:      Documentation/crypto/
5001 F:      Documentation/devicetree/bindings/crypto/
5002 F:      arch/*/crypto/
5003 F:      crypto/
5004 F:      drivers/crypto/
5005 F:      include/crypto/
5006 F:      include/linux/crypto*
5007 F:      lib/crypto/
5008
5009 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
5010 M:      Neil Horman <nhorman@tuxdriver.com>
5011 L:      linux-crypto@vger.kernel.org
5012 S:      Maintained
5013 F:      crypto/ansi_cprng.c
5014 F:      crypto/rng.c
5015
5016 CS3308 MEDIA DRIVER
5017 M:      Hans Verkuil <hverkuil@xs4all.nl>
5018 L:      linux-media@vger.kernel.org
5019 S:      Odd Fixes
5020 W:      http://linuxtv.org
5021 T:      git git://linuxtv.org/media_tree.git
5022 F:      drivers/media/i2c/cs3308.c
5023
5024 CS5535 Audio ALSA driver
5025 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
5026 S:      Maintained
5027 F:      sound/pci/cs5535audio/
5028
5029 CSI DRIVERS FOR ALLWINNER V3s
5030 M:      Yong Deng <yong.deng@magewell.com>
5031 L:      linux-media@vger.kernel.org
5032 S:      Maintained
5033 T:      git git://linuxtv.org/media_tree.git
5034 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
5035 F:      drivers/media/platform/sunxi/sun6i-csi/
5036
5037 CW1200 WLAN driver
5038 M:      Solomon Peachy <pizza@shaftnet.org>
5039 S:      Maintained
5040 F:      drivers/net/wireless/st/cw1200/
5041
5042 CX18 VIDEO4LINUX DRIVER
5043 M:      Andy Walls <awalls@md.metrocast.net>
5044 L:      linux-media@vger.kernel.org
5045 S:      Maintained
5046 W:      https://linuxtv.org
5047 T:      git git://linuxtv.org/media_tree.git
5048 F:      drivers/media/pci/cx18/
5049 F:      include/uapi/linux/ivtv*
5050
5051 CX2341X MPEG ENCODER HELPER MODULE
5052 M:      Hans Verkuil <hverkuil@xs4all.nl>
5053 L:      linux-media@vger.kernel.org
5054 S:      Maintained
5055 W:      https://linuxtv.org
5056 T:      git git://linuxtv.org/media_tree.git
5057 F:      drivers/media/common/cx2341x*
5058 F:      include/media/drv-intf/cx2341x.h
5059
5060 CX24120 MEDIA DRIVER
5061 M:      Jemma Denson <jdenson@gmail.com>
5062 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
5063 L:      linux-media@vger.kernel.org
5064 S:      Maintained
5065 W:      https://linuxtv.org
5066 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5067 F:      drivers/media/dvb-frontends/cx24120*
5068
5069 CX88 VIDEO4LINUX DRIVER
5070 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5071 L:      linux-media@vger.kernel.org
5072 S:      Odd fixes
5073 W:      https://linuxtv.org
5074 T:      git git://linuxtv.org/media_tree.git
5075 F:      Documentation/driver-api/media/drivers/cx88*
5076 F:      drivers/media/pci/cx88/
5077
5078 CXD2820R MEDIA DRIVER
5079 M:      Antti Palosaari <crope@iki.fi>
5080 L:      linux-media@vger.kernel.org
5081 S:      Maintained
5082 W:      https://linuxtv.org
5083 W:      http://palosaari.fi/linux/
5084 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5085 T:      git git://linuxtv.org/anttip/media_tree.git
5086 F:      drivers/media/dvb-frontends/cxd2820r*
5087
5088 CXGB3 ETHERNET DRIVER (CXGB3)
5089 M:      Raju Rangoju <rajur@chelsio.com>
5090 L:      netdev@vger.kernel.org
5091 S:      Supported
5092 W:      http://www.chelsio.com
5093 F:      drivers/net/ethernet/chelsio/cxgb3/
5094
5095 CXGB3 ISCSI DRIVER (CXGB3I)
5096 M:      Karen Xie <kxie@chelsio.com>
5097 L:      linux-scsi@vger.kernel.org
5098 S:      Supported
5099 W:      http://www.chelsio.com
5100 F:      drivers/scsi/cxgbi/cxgb3i
5101
5102 CXGB4 CRYPTO DRIVER (chcr)
5103 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5104 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
5105 M:      Rohit Maheshwari <rohitm@chelsio.com>
5106 L:      linux-crypto@vger.kernel.org
5107 S:      Supported
5108 W:      http://www.chelsio.com
5109 F:      drivers/crypto/chelsio
5110
5111 CXGB4 INLINE CRYPTO DRIVER
5112 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5113 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
5114 M:      Rohit Maheshwari <rohitm@chelsio.com>
5115 L:      netdev@vger.kernel.org
5116 S:      Supported
5117 W:      http://www.chelsio.com
5118 F:      drivers/net/ethernet/chelsio/inline_crypto/
5119
5120 CXGB4 ETHERNET DRIVER (CXGB4)
5121 M:      Raju Rangoju <rajur@chelsio.com>
5122 L:      netdev@vger.kernel.org
5123 S:      Supported
5124 W:      http://www.chelsio.com
5125 F:      drivers/net/ethernet/chelsio/cxgb4/
5126
5127 CXGB4 ISCSI DRIVER (CXGB4I)
5128 M:      Karen Xie <kxie@chelsio.com>
5129 L:      linux-scsi@vger.kernel.org
5130 S:      Supported
5131 W:      http://www.chelsio.com
5132 F:      drivers/scsi/cxgbi/cxgb4i
5133
5134 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
5135 M:      Potnuri Bharat Teja <bharat@chelsio.com>
5136 L:      linux-rdma@vger.kernel.org
5137 S:      Supported
5138 W:      http://www.openfabrics.org
5139 F:      drivers/infiniband/hw/cxgb4/
5140 F:      include/uapi/rdma/cxgb4-abi.h
5141
5142 CXGB4VF ETHERNET DRIVER (CXGB4VF)
5143 M:      Raju Rangoju <rajur@chelsio.com>
5144 L:      netdev@vger.kernel.org
5145 S:      Supported
5146 W:      http://www.chelsio.com
5147 F:      drivers/net/ethernet/chelsio/cxgb4vf/
5148
5149 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
5150 M:      Frederic Barrat <fbarrat@linux.ibm.com>
5151 M:      Andrew Donnellan <ajd@linux.ibm.com>
5152 L:      linuxppc-dev@lists.ozlabs.org
5153 S:      Supported
5154 F:      Documentation/ABI/testing/sysfs-class-cxl
5155 F:      Documentation/powerpc/cxl.rst
5156 F:      arch/powerpc/platforms/powernv/pci-cxl.c
5157 F:      drivers/misc/cxl/
5158 F:      include/misc/cxl*
5159 F:      include/uapi/misc/cxl.h
5160
5161 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
5162 M:      Manoj N. Kumar <manoj@linux.ibm.com>
5163 M:      Matthew R. Ochs <mrochs@linux.ibm.com>
5164 M:      Uma Krishnan <ukrishn@linux.ibm.com>
5165 L:      linux-scsi@vger.kernel.org
5166 S:      Supported
5167 F:      Documentation/powerpc/cxlflash.rst
5168 F:      drivers/scsi/cxlflash/
5169 F:      include/uapi/scsi/cxlflash_ioctl.h
5170
5171 CYBERPRO FB DRIVER
5172 M:      Russell King <linux@armlinux.org.uk>
5173 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5174 S:      Maintained
5175 W:      http://www.armlinux.org.uk/
5176 F:      drivers/video/fbdev/cyber2000fb.*
5177
5178 CYCLADES PC300 DRIVER
5179 S:      Orphan
5180 F:      drivers/net/wan/pc300*
5181
5182 CYPRESS_FIRMWARE MEDIA DRIVER
5183 M:      Antti Palosaari <crope@iki.fi>
5184 L:      linux-media@vger.kernel.org
5185 S:      Maintained
5186 W:      https://linuxtv.org
5187 W:      http://palosaari.fi/linux/
5188 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5189 T:      git git://linuxtv.org/anttip/media_tree.git
5190 F:      drivers/media/common/cypress_firmware*
5191
5192 CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
5193 M:      Linus Walleij <linus.walleij@linaro.org>
5194 L:      linux-input@vger.kernel.org
5195 S:      Maintained
5196 F:      drivers/input/touchscreen/cy8ctma140.c
5197
5198 CYTTSP TOUCHSCREEN DRIVER
5199 M:      Linus Walleij <linus.walleij@linaro.org>
5200 L:      linux-input@vger.kernel.org
5201 S:      Maintained
5202 F:      drivers/input/touchscreen/cyttsp*
5203
5204 D-LINK DIR-685 TOUCHKEYS DRIVER
5205 M:      Linus Walleij <linus.walleij@linaro.org>
5206 L:      linux-input@vger.kernel.org
5207 S:      Supported
5208 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
5209
5210 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
5211 M:      Joshua Kinard <kumba@gentoo.org>
5212 S:      Maintained
5213 F:      drivers/rtc/rtc-ds1685.c
5214 F:      include/linux/rtc/ds1685.h
5215
5216 DAMA SLAVE for AX.25
5217 M:      Joerg Reuter <jreuter@yaina.de>
5218 L:      linux-hams@vger.kernel.org
5219 S:      Maintained
5220 W:      http://yaina.de/jreuter/
5221 W:      http://www.qsl.net/dl1bke/
5222 F:      net/ax25/af_ax25.c
5223 F:      net/ax25/ax25_dev.c
5224 F:      net/ax25/ax25_ds_*
5225 F:      net/ax25/ax25_in.c
5226 F:      net/ax25/ax25_out.c
5227 F:      net/ax25/ax25_timer.c
5228 F:      net/ax25/sysctl_net_ax25.c
5229
5230 DATA ACCESS MONITOR
5231 M:      SeongJae Park <sj@kernel.org>
5232 L:      linux-mm@kvack.org
5233 S:      Maintained
5234 F:      Documentation/admin-guide/mm/damon/
5235 F:      Documentation/vm/damon/
5236 F:      include/linux/damon.h
5237 F:      include/trace/events/damon.h
5238 F:      mm/damon/
5239 F:      tools/testing/selftests/damon/
5240
5241 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
5242 L:      netdev@vger.kernel.org
5243 S:      Orphan
5244 F:      Documentation/networking/device_drivers/ethernet/dec/dmfe.rst
5245 F:      drivers/net/ethernet/dec/tulip/dmfe.c
5246
5247 DC390/AM53C974 SCSI driver
5248 M:      Hannes Reinecke <hare@suse.com>
5249 L:      linux-scsi@vger.kernel.org
5250 S:      Maintained
5251 F:      drivers/scsi/am53c974.c
5252
5253 DC395x SCSI driver
5254 M:      Oliver Neukum <oliver@neukum.org>
5255 M:      Ali Akcaagac <aliakc@web.de>
5256 M:      Jamie Lenehan <lenehan@twibble.org>
5257 L:      dc395x@twibble.org
5258 S:      Maintained
5259 W:      http://twibble.org/dist/dc395x/
5260 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
5261 F:      Documentation/scsi/dc395x.rst
5262 F:      drivers/scsi/dc395x.*
5263
5264 DCCP PROTOCOL
5265 L:      dccp@vger.kernel.org
5266 S:      Orphan
5267 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
5268 F:      include/linux/dccp.h
5269 F:      include/linux/tfrc.h
5270 F:      include/uapi/linux/dccp.h
5271 F:      net/dccp/
5272
5273 DECnet NETWORK LAYER
5274 L:      linux-decnet-user@lists.sourceforge.net
5275 S:      Orphan
5276 W:      http://linux-decnet.sourceforge.net
5277 F:      Documentation/networking/decnet.rst
5278 F:      net/decnet/
5279
5280 DECSTATION PLATFORM SUPPORT
5281 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5282 L:      linux-mips@vger.kernel.org
5283 S:      Maintained
5284 W:      http://www.linux-mips.org/wiki/DECstation
5285 F:      arch/mips/dec/
5286 F:      arch/mips/include/asm/dec/
5287 F:      arch/mips/include/asm/mach-dec/
5288
5289 DEFXX FDDI NETWORK DRIVER
5290 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5291 S:      Maintained
5292 F:      drivers/net/fddi/defxx.*
5293
5294 DEFZA FDDI NETWORK DRIVER
5295 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5296 S:      Maintained
5297 F:      drivers/net/fddi/defza.*
5298
5299 DEINTERLACE DRIVERS FOR ALLWINNER H3
5300 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
5301 L:      linux-media@vger.kernel.org
5302 S:      Maintained
5303 T:      git git://linuxtv.org/media_tree.git
5304 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
5305 F:      drivers/media/platform/sunxi/sun8i-di/
5306
5307 DELL LAPTOP DRIVER
5308 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5309 M:      Pali Rohár <pali@kernel.org>
5310 L:      platform-driver-x86@vger.kernel.org
5311 S:      Maintained
5312 F:      drivers/platform/x86/dell/dell-laptop.c
5313
5314 DELL LAPTOP FREEFALL DRIVER
5315 M:      Pali Rohár <pali@kernel.org>
5316 S:      Maintained
5317 F:      drivers/platform/x86/dell/dell-smo8800.c
5318
5319 DELL LAPTOP RBTN DRIVER
5320 M:      Pali Rohár <pali@kernel.org>
5321 S:      Maintained
5322 F:      drivers/platform/x86/dell/dell-rbtn.*
5323
5324 DELL LAPTOP SMM DRIVER
5325 M:      Pali Rohár <pali@kernel.org>
5326 S:      Maintained
5327 F:      drivers/hwmon/dell-smm-hwmon.c
5328 F:      include/uapi/linux/i8k.h
5329
5330 DELL REMOTE BIOS UPDATE DRIVER
5331 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5332 L:      platform-driver-x86@vger.kernel.org
5333 S:      Maintained
5334 F:      drivers/platform/x86/dell/dell_rbu.c
5335
5336 DELL SMBIOS DRIVER
5337 M:      Pali Rohár <pali@kernel.org>
5338 L:      Dell.Client.Kernel@dell.com
5339 L:      platform-driver-x86@vger.kernel.org
5340 S:      Maintained
5341 F:      drivers/platform/x86/dell/dell-smbios.*
5342
5343 DELL SMBIOS SMM DRIVER
5344 L:      Dell.Client.Kernel@dell.com
5345 L:      platform-driver-x86@vger.kernel.org
5346 S:      Maintained
5347 F:      drivers/platform/x86/dell/dell-smbios-smm.c
5348
5349 DELL SMBIOS WMI DRIVER
5350 L:      Dell.Client.Kernel@dell.com
5351 L:      platform-driver-x86@vger.kernel.org
5352 S:      Maintained
5353 F:      drivers/platform/x86/dell/dell-smbios-wmi.c
5354 F:      tools/wmi/dell-smbios-example.c
5355
5356 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
5357 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5358 L:      platform-driver-x86@vger.kernel.org
5359 S:      Maintained
5360 F:      Documentation/driver-api/dcdbas.rst
5361 F:      drivers/platform/x86/dell/dcdbas.*
5362
5363 DELL WMI DESCRIPTOR DRIVER
5364 L:      Dell.Client.Kernel@dell.com
5365 S:      Maintained
5366 F:      drivers/platform/x86/dell/dell-wmi-descriptor.c
5367
5368 DELL WMI SYSMAN DRIVER
5369 M:      Divya Bharathi <divya.bharathi@dell.com>
5370 M:      Prasanth Ksr <prasanth.ksr@dell.com>
5371 L:      Dell.Client.Kernel@dell.com
5372 L:      platform-driver-x86@vger.kernel.org
5373 S:      Maintained
5374 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
5375 F:      drivers/platform/x86/dell/dell-wmi-sysman/
5376
5377 DELL WMI NOTIFICATIONS DRIVER
5378 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5379 M:      Pali Rohár <pali@kernel.org>
5380 S:      Maintained
5381 F:      drivers/platform/x86/dell/dell-wmi-base.c
5382
5383 DELL WMI HARDWARE PRIVACY SUPPORT
5384 M:      Perry Yuan <Perry.Yuan@dell.com>
5385 L:      Dell.Client.Kernel@dell.com
5386 L:      platform-driver-x86@vger.kernel.org
5387 S:      Maintained
5388 F:      drivers/platform/x86/dell/dell-wmi-privacy.c
5389
5390 DELTA ST MEDIA DRIVER
5391 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
5392 L:      linux-media@vger.kernel.org
5393 S:      Supported
5394 W:      https://linuxtv.org
5395 T:      git git://linuxtv.org/media_tree.git
5396 F:      drivers/media/platform/sti/delta
5397
5398 DELTA DPS920AB PSU DRIVER
5399 M:      Robert Marko <robert.marko@sartura.hr>
5400 L:      linux-hwmon@vger.kernel.org
5401 S:      Maintained
5402 F:      Documentation/hwmon/dps920ab.rst
5403 F:      drivers/hwmon/pmbus/dps920ab.c
5404
5405 DENALI NAND DRIVER
5406 L:      linux-mtd@lists.infradead.org
5407 S:      Orphan
5408 F:      drivers/mtd/nand/raw/denali*
5409
5410 DESIGNWARE EDMA CORE IP DRIVER
5411 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5412 L:      dmaengine@vger.kernel.org
5413 S:      Maintained
5414 F:      drivers/dma/dw-edma/
5415 F:      include/linux/dma/edma.h
5416
5417 DESIGNWARE XDATA IP DRIVER
5418 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5419 L:      linux-pci@vger.kernel.org
5420 S:      Maintained
5421 F:      Documentation/misc-devices/dw-xdata-pcie.rst
5422 F:      drivers/misc/dw-xdata-pcie.c
5423
5424 DESIGNWARE USB2 DRD IP DRIVER
5425 M:      Minas Harutyunyan <hminas@synopsys.com>
5426 L:      linux-usb@vger.kernel.org
5427 S:      Maintained
5428 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5429 F:      drivers/usb/dwc2/
5430
5431 DESIGNWARE USB3 DRD IP DRIVER
5432 M:      Felipe Balbi <balbi@kernel.org>
5433 L:      linux-usb@vger.kernel.org
5434 S:      Maintained
5435 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5436 F:      drivers/usb/dwc3/
5437
5438 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
5439 M:      Andreas Klinger <ak@it-klinger.de>
5440 L:      linux-iio@vger.kernel.org
5441 S:      Maintained
5442 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
5443 F:      drivers/iio/proximity/srf*.c
5444
5445 DEVICE COREDUMP (DEV_COREDUMP)
5446 M:      Johannes Berg <johannes@sipsolutions.net>
5447 L:      linux-kernel@vger.kernel.org
5448 S:      Maintained
5449 F:      drivers/base/devcoredump.c
5450 F:      include/linux/devcoredump.h
5451
5452 DEVICE DEPENDENCY HELPER SCRIPT
5453 M:      Saravana Kannan <saravanak@google.com>
5454 L:      linux-kernel@vger.kernel.org
5455 S:      Maintained
5456 F:      scripts/dev-needs.sh
5457
5458 DEVICE DIRECT ACCESS (DAX)
5459 M:      Dan Williams <dan.j.williams@intel.com>
5460 M:      Vishal Verma <vishal.l.verma@intel.com>
5461 M:      Dave Jiang <dave.jiang@intel.com>
5462 L:      nvdimm@lists.linux.dev
5463 S:      Supported
5464 F:      drivers/dax/
5465
5466 DEVICE FREQUENCY (DEVFREQ)
5467 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
5468 M:      Kyungmin Park <kyungmin.park@samsung.com>
5469 M:      Chanwoo Choi <cw00.choi@samsung.com>
5470 L:      linux-pm@vger.kernel.org
5471 S:      Maintained
5472 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5473 F:      Documentation/devicetree/bindings/devfreq/
5474 F:      drivers/devfreq/
5475 F:      include/linux/devfreq.h
5476 F:      include/trace/events/devfreq.h
5477
5478 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
5479 M:      Chanwoo Choi <cw00.choi@samsung.com>
5480 L:      linux-pm@vger.kernel.org
5481 S:      Supported
5482 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5483 F:      Documentation/devicetree/bindings/devfreq/event/
5484 F:      drivers/devfreq/devfreq-event.c
5485 F:      drivers/devfreq/event/
5486 F:      include/dt-bindings/pmu/exynos_ppmu.h
5487 F:      include/linux/devfreq-event.h
5488
5489 DEVICE NUMBER REGISTRY
5490 M:      Torben Mathiasen <device@lanana.org>
5491 S:      Maintained
5492 W:      http://lanana.org/docs/device-list/index.html
5493
5494 DEVICE RESOURCE MANAGEMENT HELPERS
5495 M:      Hans de Goede <hdegoede@redhat.com>
5496 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
5497 S:      Maintained
5498 F:      include/linux/devm-helpers.h
5499
5500 DEVICE-MAPPER  (LVM)
5501 M:      Alasdair Kergon <agk@redhat.com>
5502 M:      Mike Snitzer <snitzer@redhat.com>
5503 M:      dm-devel@redhat.com
5504 L:      dm-devel@redhat.com
5505 S:      Maintained
5506 W:      http://sources.redhat.com/dm
5507 Q:      http://patchwork.kernel.org/project/dm-devel/list/
5508 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
5509 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
5510 F:      Documentation/admin-guide/device-mapper/
5511 F:      drivers/md/Kconfig
5512 F:      drivers/md/Makefile
5513 F:      drivers/md/dm*
5514 F:      drivers/md/persistent-data/
5515 F:      include/linux/device-mapper.h
5516 F:      include/linux/dm-*.h
5517 F:      include/uapi/linux/dm-*.h
5518
5519 DEVLINK
5520 M:      Jiri Pirko <jiri@nvidia.com>
5521 L:      netdev@vger.kernel.org
5522 S:      Supported
5523 F:      Documentation/networking/devlink
5524 F:      include/net/devlink.h
5525 F:      include/uapi/linux/devlink.h
5526 F:      net/core/devlink.c
5527
5528 DH ELECTRONICS IMX6 DHCOM BOARD SUPPORT
5529 M:      Christoph Niedermaier <cniedermaier@dh-electronics.com>
5530 L:      kernel@dh-electronics.com
5531 S:      Maintained
5532 F:      arch/arm/boot/dts/imx6*-dhcom-*
5533
5534 DH ELECTRONICS STM32MP1 DHCOM/DHCOR BOARD SUPPORT
5535 M:      Marek Vasut <marex@denx.de>
5536 L:      kernel@dh-electronics.com
5537 S:      Maintained
5538 F:      arch/arm/boot/dts/stm32mp1*-dhcom-*
5539 F:      arch/arm/boot/dts/stm32mp1*-dhcor-*
5540
5541 DIALOG SEMICONDUCTOR DRIVERS
5542 M:      Support Opensource <support.opensource@diasemi.com>
5543 S:      Supported
5544 W:      http://www.dialog-semiconductor.com/products
5545 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
5546 F:      Documentation/devicetree/bindings/input/dlg,da72??.txt
5547 F:      Documentation/devicetree/bindings/mfd/da90*.txt
5548 F:      Documentation/devicetree/bindings/regulator/dlg,da9*.yaml
5549 F:      Documentation/devicetree/bindings/regulator/da92*.txt
5550 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
5551 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
5552 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
5553 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
5554 F:      Documentation/hwmon/da90??.rst
5555 F:      drivers/gpio/gpio-da90??.c
5556 F:      drivers/hwmon/da90??-hwmon.c
5557 F:      drivers/iio/adc/da91??-*.c
5558 F:      drivers/input/misc/da72??.[ch]
5559 F:      drivers/input/misc/da90??_onkey.c
5560 F:      drivers/input/touchscreen/da9052_tsi.c
5561 F:      drivers/leds/leds-da90??.c
5562 F:      drivers/mfd/da903x.c
5563 F:      drivers/mfd/da90??-*.c
5564 F:      drivers/mfd/da91??-*.c
5565 F:      drivers/pinctrl/pinctrl-da90??.c
5566 F:      drivers/power/supply/da9052-battery.c
5567 F:      drivers/power/supply/da91??-*.c
5568 F:      drivers/regulator/da9???-regulator.[ch]
5569 F:      drivers/regulator/slg51000-regulator.[ch]
5570 F:      drivers/rtc/rtc-da90??.c
5571 F:      drivers/thermal/da90??-thermal.c
5572 F:      drivers/video/backlight/da90??_bl.c
5573 F:      drivers/watchdog/da90??_wdt.c
5574 F:      include/dt-bindings/regulator/dlg,da9*-regulator.h
5575 F:      include/linux/mfd/da903x.h
5576 F:      include/linux/mfd/da9052/
5577 F:      include/linux/mfd/da9055/
5578 F:      include/linux/mfd/da9062/
5579 F:      include/linux/mfd/da9063/
5580 F:      include/linux/mfd/da9150/
5581 F:      include/linux/regulator/da9211.h
5582 F:      include/sound/da[79]*.h
5583 F:      sound/soc/codecs/da[79]*.[ch]
5584
5585 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
5586 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
5587 L:      linux-gpio@vger.kernel.org
5588 S:      Maintained
5589 F:      drivers/gpio/gpio-gpio-mm.c
5590
5591 DIOLAN U2C-12 I2C DRIVER
5592 M:      Guenter Roeck <linux@roeck-us.net>
5593 L:      linux-i2c@vger.kernel.org
5594 S:      Maintained
5595 F:      drivers/i2c/busses/i2c-diolan-u2c.c
5596
5597 DIRECTORY NOTIFICATION (DNOTIFY)
5598 M:      Jan Kara <jack@suse.cz>
5599 R:      Amir Goldstein <amir73il@gmail.com>
5600 L:      linux-fsdevel@vger.kernel.org
5601 S:      Maintained
5602 F:      Documentation/filesystems/dnotify.rst
5603 F:      fs/notify/dnotify/
5604 F:      include/linux/dnotify.h
5605
5606 DISK GEOMETRY AND PARTITION HANDLING
5607 M:      Andries Brouwer <aeb@cwi.nl>
5608 S:      Maintained
5609 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
5610 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
5611 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
5612
5613 DISKQUOTA
5614 M:      Jan Kara <jack@suse.com>
5615 S:      Maintained
5616 F:      Documentation/filesystems/quota.rst
5617 F:      fs/quota/
5618 F:      include/linux/quota*.h
5619 F:      include/uapi/linux/quota*.h
5620
5621 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
5622 M:      Bernie Thompson <bernie@plugable.com>
5623 L:      linux-fbdev@vger.kernel.org
5624 S:      Maintained
5625 W:      http://plugable.com/category/projects/udlfb/
5626 F:      Documentation/fb/udlfb.rst
5627 F:      drivers/video/fbdev/udlfb.c
5628 F:      include/video/udlfb.h
5629
5630 DISTRIBUTED LOCK MANAGER (DLM)
5631 M:      Christine Caulfield <ccaulfie@redhat.com>
5632 M:      David Teigland <teigland@redhat.com>
5633 L:      cluster-devel@redhat.com
5634 S:      Supported
5635 W:      http://sources.redhat.com/cluster/
5636 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
5637 F:      fs/dlm/
5638
5639 DMA BUFFER SHARING FRAMEWORK
5640 M:      Sumit Semwal <sumit.semwal@linaro.org>
5641 M:      Christian König <christian.koenig@amd.com>
5642 L:      linux-media@vger.kernel.org
5643 L:      dri-devel@lists.freedesktop.org
5644 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5645 S:      Maintained
5646 T:      git git://anongit.freedesktop.org/drm/drm-misc
5647 F:      Documentation/driver-api/dma-buf.rst
5648 F:      drivers/dma-buf/
5649 F:      include/linux/*fence.h
5650 F:      include/linux/dma-buf*
5651 F:      include/linux/dma-resv.h
5652 K:      \bdma_(?:buf|fence|resv)\b
5653
5654 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
5655 M:      Vinod Koul <vkoul@kernel.org>
5656 L:      dmaengine@vger.kernel.org
5657 S:      Maintained
5658 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5659 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git
5660 F:      Documentation/devicetree/bindings/dma/
5661 F:      Documentation/driver-api/dmaengine/
5662 F:      drivers/dma/
5663 F:      include/linux/dma/
5664 F:      include/linux/dmaengine.h
5665 F:      include/linux/of_dma.h
5666
5667 DMA MAPPING HELPERS
5668 M:      Christoph Hellwig <hch@lst.de>
5669 M:      Marek Szyprowski <m.szyprowski@samsung.com>
5670 R:      Robin Murphy <robin.murphy@arm.com>
5671 L:      iommu@lists.linux-foundation.org
5672 S:      Supported
5673 W:      http://git.infradead.org/users/hch/dma-mapping.git
5674 T:      git git://git.infradead.org/users/hch/dma-mapping.git
5675 F:      include/asm-generic/dma-mapping.h
5676 F:      include/linux/dma-direct.h
5677 F:      include/linux/dma-mapping.h
5678 F:      include/linux/dma-map-ops.h
5679 F:      kernel/dma/
5680
5681 DMA MAPPING BENCHMARK
5682 M:      Barry Song <song.bao.hua@hisilicon.com>
5683 L:      iommu@lists.linux-foundation.org
5684 F:      kernel/dma/map_benchmark.c
5685 F:      tools/testing/selftests/dma/
5686
5687 DMA-BUF HEAPS FRAMEWORK
5688 M:      Sumit Semwal <sumit.semwal@linaro.org>
5689 R:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5690 R:      Liam Mark <lmark@codeaurora.org>
5691 R:      Laura Abbott <labbott@redhat.com>
5692 R:      Brian Starkey <Brian.Starkey@arm.com>
5693 R:      John Stultz <john.stultz@linaro.org>
5694 L:      linux-media@vger.kernel.org
5695 L:      dri-devel@lists.freedesktop.org
5696 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5697 S:      Maintained
5698 T:      git git://anongit.freedesktop.org/drm/drm-misc
5699 F:      drivers/dma-buf/dma-heap.c
5700 F:      drivers/dma-buf/heaps/*
5701 F:      include/linux/dma-heap.h
5702 F:      include/uapi/linux/dma-heap.h
5703
5704 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
5705 M:      Lukasz Luba <lukasz.luba@arm.com>
5706 L:      linux-pm@vger.kernel.org
5707 L:      linux-samsung-soc@vger.kernel.org
5708 S:      Maintained
5709 F:      Documentation/devicetree/bindings/memory-controllers/samsung,exynos5422-dmc.yaml
5710 F:      drivers/memory/samsung/exynos5422-dmc.c
5711
5712 DME1737 HARDWARE MONITOR DRIVER
5713 M:      Juerg Haefliger <juergh@gmail.com>
5714 L:      linux-hwmon@vger.kernel.org
5715 S:      Maintained
5716 F:      Documentation/hwmon/dme1737.rst
5717 F:      drivers/hwmon/dme1737.c
5718
5719 DMI/SMBIOS SUPPORT
5720 M:      Jean Delvare <jdelvare@suse.com>
5721 S:      Maintained
5722 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jdelvare/staging.git dmi-for-next
5723 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
5724 F:      drivers/firmware/dmi-id.c
5725 F:      drivers/firmware/dmi_scan.c
5726 F:      include/linux/dmi.h
5727
5728 DOCUMENTATION
5729 M:      Jonathan Corbet <corbet@lwn.net>
5730 L:      linux-doc@vger.kernel.org
5731 S:      Maintained
5732 P:      Documentation/doc-guide/maintainer-profile.rst
5733 T:      git git://git.lwn.net/linux.git docs-next
5734 F:      Documentation/
5735 F:      scripts/documentation-file-ref-check
5736 F:      scripts/kernel-doc
5737 F:      scripts/sphinx-pre-install
5738 X:      Documentation/ABI/
5739 X:      Documentation/admin-guide/media/
5740 X:      Documentation/devicetree/
5741 X:      Documentation/driver-api/media/
5742 X:      Documentation/firmware-guide/acpi/
5743 X:      Documentation/i2c/
5744 X:      Documentation/power/
5745 X:      Documentation/spi/
5746 X:      Documentation/userspace-api/media/
5747
5748 DOCUMENTATION REPORTING ISSUES
5749 M:      Thorsten Leemhuis <linux@leemhuis.info>
5750 L:      linux-doc@vger.kernel.org
5751 S:      Maintained
5752 F:      Documentation/admin-guide/reporting-issues.rst
5753
5754 DOCUMENTATION SCRIPTS
5755 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5756 L:      linux-doc@vger.kernel.org
5757 S:      Maintained
5758 F:      Documentation/sphinx/parse-headers.pl
5759 F:      scripts/documentation-file-ref-check
5760 F:      scripts/sphinx-pre-install
5761
5762 DOCUMENTATION/ITALIAN
5763 M:      Federico Vaga <federico.vaga@vaga.pv.it>
5764 L:      linux-doc@vger.kernel.org
5765 S:      Maintained
5766 F:      Documentation/translations/it_IT
5767
5768 DONGWOON DW9714 LENS VOICE COIL DRIVER
5769 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5770 L:      linux-media@vger.kernel.org
5771 S:      Maintained
5772 T:      git git://linuxtv.org/media_tree.git
5773 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
5774 F:      drivers/media/i2c/dw9714.c
5775
5776 DONGWOON DW9768 LENS VOICE COIL DRIVER
5777 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
5778 L:      linux-media@vger.kernel.org
5779 S:      Maintained
5780 T:      git git://linuxtv.org/media_tree.git
5781 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9768.yaml
5782 F:      drivers/media/i2c/dw9768.c
5783
5784 DONGWOON DW9807 LENS VOICE COIL DRIVER
5785 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5786 L:      linux-media@vger.kernel.org
5787 S:      Maintained
5788 T:      git git://linuxtv.org/media_tree.git
5789 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
5790 F:      drivers/media/i2c/dw9807-vcm.c
5791
5792 DOUBLETALK DRIVER
5793 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
5794 L:      blinux-list@redhat.com
5795 S:      Maintained
5796 F:      drivers/char/dtlk.c
5797 F:      include/linux/dtlk.h
5798
5799 DPAA2 DATAPATH I/O (DPIO) DRIVER
5800 M:      Roy Pledge <Roy.Pledge@nxp.com>
5801 L:      linux-kernel@vger.kernel.org
5802 S:      Maintained
5803 F:      drivers/soc/fsl/dpio
5804
5805 DPAA2 ETHERNET DRIVER
5806 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5807 L:      netdev@vger.kernel.org
5808 S:      Maintained
5809 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/ethernet-driver.rst
5810 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/mac-phy-support.rst
5811 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
5812 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
5813 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
5814 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
5815 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
5816 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
5817 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
5818
5819 DPAA2 ETHERNET SWITCH DRIVER
5820 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5821 L:      netdev@vger.kernel.org
5822 S:      Maintained
5823 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/switch-driver.rst
5824 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-switch*
5825 F:      drivers/net/ethernet/freescale/dpaa2/dpsw*
5826
5827 DPT_I2O SCSI RAID DRIVER
5828 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
5829 L:      linux-scsi@vger.kernel.org
5830 S:      Maintained
5831 W:      http://www.adaptec.com/
5832 F:      drivers/scsi/dpt*
5833 F:      drivers/scsi/dpt/
5834
5835 DRBD DRIVER
5836 M:      Philipp Reisner <philipp.reisner@linbit.com>
5837 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
5838 L:      drbd-dev@lists.linbit.com
5839 S:      Supported
5840 W:      http://www.drbd.org
5841 T:      git git://git.linbit.com/linux-drbd.git
5842 T:      git git://git.linbit.com/drbd-8.4.git
5843 F:      Documentation/admin-guide/blockdev/
5844 F:      drivers/block/drbd/
5845 F:      lib/lru_cache.c
5846
5847 DRIVER COMPONENT FRAMEWORK
5848 L:      dri-devel@lists.freedesktop.org
5849 F:      drivers/base/component.c
5850 F:      include/linux/component.h
5851
5852 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
5853 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5854 R:      "Rafael J. Wysocki" <rafael@kernel.org>
5855 S:      Supported
5856 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
5857 F:      Documentation/core-api/kobject.rst
5858 F:      drivers/base/
5859 F:      fs/debugfs/
5860 F:      fs/sysfs/
5861 F:      include/linux/debugfs.h
5862 F:      include/linux/kobj*
5863 F:      lib/kobj*
5864
5865 DRIVERS FOR OMAP ADAPTIVE VOLTAGE SCALING (AVS)
5866 M:      Nishanth Menon <nm@ti.com>
5867 L:      linux-pm@vger.kernel.org
5868 S:      Maintained
5869 F:      drivers/soc/ti/smartreflex.c
5870 F:      include/linux/power/smartreflex.h
5871
5872 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
5873 M:      Maxime Ripard <mripard@kernel.org>
5874 M:      Chen-Yu Tsai <wens@csie.org>
5875 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
5876 L:      dri-devel@lists.freedesktop.org
5877 S:      Supported
5878 T:      git git://anongit.freedesktop.org/drm/drm-misc
5879 F:      drivers/gpu/drm/sun4i/sun8i*
5880
5881 DRM DRIVER FOR ARM PL111 CLCD
5882 M:      Emma Anholt <emma@anholt.net>
5883 S:      Supported
5884 T:      git git://anongit.freedesktop.org/drm/drm-misc
5885 F:      drivers/gpu/drm/pl111/
5886
5887 DRM DRIVER FOR ARM VERSATILE TFT PANELS
5888 M:      Linus Walleij <linus.walleij@linaro.org>
5889 S:      Maintained
5890 T:      git git://anongit.freedesktop.org/drm/drm-misc
5891 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
5892 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
5893
5894 DRM DRIVER FOR ASPEED BMC GFX
5895 M:      Joel Stanley <joel@jms.id.au>
5896 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
5897 S:      Supported
5898 T:      git git://anongit.freedesktop.org/drm/drm-misc
5899 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
5900 F:      drivers/gpu/drm/aspeed/
5901
5902 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
5903 M:      Dave Airlie <airlied@redhat.com>
5904 R:      Thomas Zimmermann <tzimmermann@suse.de>
5905 L:      dri-devel@lists.freedesktop.org
5906 S:      Supported
5907 T:      git git://anongit.freedesktop.org/drm/drm-misc
5908 F:      drivers/gpu/drm/ast/
5909
5910 DRM DRIVER FOR BOCHS VIRTUAL GPU
5911 M:      Gerd Hoffmann <kraxel@redhat.com>
5912 L:      virtualization@lists.linux-foundation.org
5913 S:      Maintained
5914 T:      git git://anongit.freedesktop.org/drm/drm-misc
5915 F:      drivers/gpu/drm/tiny/bochs.c
5916
5917 DRM DRIVER FOR BOE HIMAX8279D PANELS
5918 M:      Jerry Han <hanxu5@huaqin.corp-partner.google.com>
5919 S:      Maintained
5920 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
5921 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
5922
5923 DRM DRIVER FOR CHIPONE ICN6211 MIPI-DSI to RGB CONVERTER BRIDGE
5924 M:      Jagan Teki <jagan@amarulasolutions.com>
5925 S:      Maintained
5926 F:      Documentation/devicetree/bindings/display/bridge/chipone,icn6211.yaml
5927 F:      drivers/gpu/drm/bridge/chipone-icn6211.c
5928
5929 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
5930 M:      Linus Walleij <linus.walleij@linaro.org>
5931 S:      Maintained
5932 T:      git git://anongit.freedesktop.org/drm/drm-misc
5933 F:      drivers/gpu/drm/tve200/
5934
5935 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
5936 M:      Icenowy Zheng <icenowy@aosc.io>
5937 S:      Maintained
5938 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
5939 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
5940
5941 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
5942 M:      Jagan Teki <jagan@amarulasolutions.com>
5943 S:      Maintained
5944 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
5945 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
5946
5947 DRM DRIVER FOR GENERIC USB DISPLAY
5948 M:      Noralf Trønnes <noralf@tronnes.org>
5949 S:      Maintained
5950 W:      https://github.com/notro/gud/wiki
5951 T:      git git://anongit.freedesktop.org/drm/drm-misc
5952 F:      drivers/gpu/drm/gud/
5953 F:      include/drm/gud.h
5954
5955 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
5956 M:      Hans de Goede <hdegoede@redhat.com>
5957 S:      Maintained
5958 T:      git git://anongit.freedesktop.org/drm/drm-misc
5959 F:      drivers/gpu/drm/tiny/gm12u320.c
5960
5961 DRM DRIVER FOR HX8357D PANELS
5962 M:      Emma Anholt <emma@anholt.net>
5963 S:      Maintained
5964 T:      git git://anongit.freedesktop.org/drm/drm-misc
5965 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
5966 F:      drivers/gpu/drm/tiny/hx8357d.c
5967
5968 DRM DRIVER FOR ILITEK ILI9225 PANELS
5969 M:      David Lechner <david@lechnology.com>
5970 S:      Maintained
5971 T:      git git://anongit.freedesktop.org/drm/drm-misc
5972 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
5973 F:      drivers/gpu/drm/tiny/ili9225.c
5974
5975 DRM DRIVER FOR ILITEK ILI9486 PANELS
5976 M:      Kamlesh Gurudasani <kamlesh.gurudasani@gmail.com>
5977 S:      Maintained
5978 T:      git git://anongit.freedesktop.org/drm/drm-misc
5979 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
5980 F:      drivers/gpu/drm/tiny/ili9486.c
5981
5982 DRM DRIVER FOR INTEL I810 VIDEO CARDS
5983 S:      Orphan / Obsolete
5984 F:      drivers/gpu/drm/i810/
5985 F:      include/uapi/drm/i810_drm.h
5986
5987 DRM DRIVER FOR LVDS PANELS
5988 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5989 L:      dri-devel@lists.freedesktop.org
5990 T:      git git://anongit.freedesktop.org/drm/drm-misc
5991 S:      Maintained
5992 F:      drivers/gpu/drm/panel/panel-lvds.c
5993 F:      Documentation/devicetree/bindings/display/panel/lvds.yaml
5994
5995 DRM DRIVER FOR MANTIX MLAF057WE51 PANELS
5996 M:      Guido Günther <agx@sigxcpu.org>
5997 R:      Purism Kernel Team <kernel@puri.sm>
5998 S:      Maintained
5999 F:      Documentation/devicetree/bindings/display/panel/mantix,mlaf057we51-x.yaml
6000 F:      drivers/gpu/drm/panel/panel-mantix-mlaf057we51.c
6001
6002 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
6003 S:      Orphan / Obsolete
6004 F:      drivers/gpu/drm/mga/
6005 F:      include/uapi/drm/mga_drm.h
6006
6007 DRM DRIVER FOR MGA G200 GRAPHICS CHIPS
6008 M:      Dave Airlie <airlied@redhat.com>
6009 R:      Thomas Zimmermann <tzimmermann@suse.de>
6010 L:      dri-devel@lists.freedesktop.org
6011 S:      Supported
6012 T:      git git://anongit.freedesktop.org/drm/drm-misc
6013 F:      drivers/gpu/drm/mgag200/
6014
6015 DRM DRIVER FOR MI0283QT
6016 M:      Noralf Trønnes <noralf@tronnes.org>
6017 S:      Maintained
6018 T:      git git://anongit.freedesktop.org/drm/drm-misc
6019 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
6020 F:      drivers/gpu/drm/tiny/mi0283qt.c
6021
6022 DRM DRIVER FOR MSM ADRENO GPU
6023 M:      Rob Clark <robdclark@gmail.com>
6024 M:      Sean Paul <sean@poorly.run>
6025 L:      linux-arm-msm@vger.kernel.org
6026 L:      dri-devel@lists.freedesktop.org
6027 L:      freedreno@lists.freedesktop.org
6028 S:      Maintained
6029 T:      git https://gitlab.freedesktop.org/drm/msm.git
6030 F:      Documentation/devicetree/bindings/display/msm/
6031 F:      drivers/gpu/drm/msm/
6032 F:      include/uapi/drm/msm_drm.h
6033
6034 DRM DRIVER FOR NOVATEK NT35510 PANELS
6035 M:      Linus Walleij <linus.walleij@linaro.org>
6036 S:      Maintained
6037 T:      git git://anongit.freedesktop.org/drm/drm-misc
6038 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
6039 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
6040
6041 DRM DRIVER FOR NOVATEK NT36672A PANELS
6042 M:      Sumit Semwal <sumit.semwal@linaro.org>
6043 S:      Maintained
6044 T:      git git://anongit.freedesktop.org/drm/drm-misc
6045 F:      Documentation/devicetree/bindings/display/panel/novatek,nt36672a.yaml
6046 F:      drivers/gpu/drm/panel/panel-novatek-nt36672a.c
6047
6048 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
6049 M:      Ben Skeggs <bskeggs@redhat.com>
6050 L:      dri-devel@lists.freedesktop.org
6051 L:      nouveau@lists.freedesktop.org
6052 S:      Supported
6053 T:      git git://github.com/skeggsb/linux
6054 F:      drivers/gpu/drm/nouveau/
6055 F:      include/uapi/drm/nouveau_drm.h
6056
6057 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
6058 M:      Stefan Mavrodiev <stefan@olimex.com>
6059 S:      Maintained
6060 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
6061 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
6062
6063 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
6064 M:      Noralf Trønnes <noralf@tronnes.org>
6065 S:      Maintained
6066 T:      git git://anongit.freedesktop.org/drm/drm-misc
6067 F:      Documentation/devicetree/bindings/display/repaper.txt
6068 F:      drivers/gpu/drm/tiny/repaper.c
6069
6070 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
6071 M:      Dave Airlie <airlied@redhat.com>
6072 M:      Gerd Hoffmann <kraxel@redhat.com>
6073 L:      virtualization@lists.linux-foundation.org
6074 S:      Obsolete
6075 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
6076 T:      git git://anongit.freedesktop.org/drm/drm-misc
6077 F:      drivers/gpu/drm/tiny/cirrus.c
6078
6079 DRM DRIVER FOR QXL VIRTUAL GPU
6080 M:      Dave Airlie <airlied@redhat.com>
6081 M:      Gerd Hoffmann <kraxel@redhat.com>
6082 L:      virtualization@lists.linux-foundation.org
6083 L:      spice-devel@lists.freedesktop.org
6084 S:      Maintained
6085 T:      git git://anongit.freedesktop.org/drm/drm-misc
6086 F:      drivers/gpu/drm/qxl/
6087 F:      include/uapi/drm/qxl_drm.h
6088
6089 DRM DRIVER FOR RAGE 128 VIDEO CARDS
6090 S:      Orphan / Obsolete
6091 F:      drivers/gpu/drm/r128/
6092 F:      include/uapi/drm/r128_drm.h
6093
6094 DRM DRIVER FOR RAYDIUM RM67191 PANELS
6095 M:      Robert Chiras <robert.chiras@nxp.com>
6096 S:      Maintained
6097 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.yaml
6098 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
6099
6100 DRM DRIVER FOR SAMSUNG DB7430 PANELS
6101 M:      Linus Walleij <linus.walleij@linaro.org>
6102 S:      Maintained
6103 T:      git git://anongit.freedesktop.org/drm/drm-misc
6104 F:      Documentation/devicetree/bindings/display/panel/samsung,lms397kf04.yaml
6105 F:      drivers/gpu/drm/panel/panel-samsung-db7430.c
6106
6107 DRM DRIVER FOR SAMSUNG S6D27A1 PANELS
6108 M:      Markuss Broks <markuss.broks@gmail.com>
6109 S:      Maintained
6110 F:      Documentation/devicetree/bindings/display/panel/samsung,s6d27a1.yaml
6111 F:      drivers/gpu/drm/panel/panel-samsung-s6d27a1.c
6112
6113 DRM DRIVER FOR SITRONIX ST7703 PANELS
6114 M:      Guido Günther <agx@sigxcpu.org>
6115 R:      Purism Kernel Team <kernel@puri.sm>
6116 R:      Ondrej Jirman <megous@megous.com>
6117 S:      Maintained
6118 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.yaml
6119 F:      drivers/gpu/drm/panel/panel-sitronix-st7703.c
6120
6121 DRM DRIVER FOR SAVAGE VIDEO CARDS
6122 S:      Orphan / Obsolete
6123 F:      drivers/gpu/drm/savage/
6124 F:      include/uapi/drm/savage_drm.h
6125
6126 DRM DRIVER FOR SIMPLE FRAMEBUFFERS
6127 M:      Thomas Zimmermann <tzimmermann@suse.de>
6128 L:      dri-devel@lists.freedesktop.org
6129 S:      Maintained
6130 T:      git git://anongit.freedesktop.org/drm/drm-misc
6131 F:      drivers/gpu/drm/tiny/simpledrm.c
6132
6133 DRM DRIVER FOR SIS VIDEO CARDS
6134 S:      Orphan / Obsolete
6135 F:      drivers/gpu/drm/sis/
6136 F:      include/uapi/drm/sis_drm.h
6137
6138 DRM DRIVER FOR SITRONIX ST7586 PANELS
6139 M:      David Lechner <david@lechnology.com>
6140 S:      Maintained
6141 T:      git git://anongit.freedesktop.org/drm/drm-misc
6142 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
6143 F:      drivers/gpu/drm/tiny/st7586.c
6144
6145 DRM DRIVER FOR SITRONIX ST7701 PANELS
6146 M:      Jagan Teki <jagan@amarulasolutions.com>
6147 S:      Maintained
6148 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
6149 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
6150
6151 DRM DRIVER FOR SITRONIX ST7735R PANELS
6152 M:      David Lechner <david@lechnology.com>
6153 S:      Maintained
6154 T:      git git://anongit.freedesktop.org/drm/drm-misc
6155 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
6156 F:      drivers/gpu/drm/tiny/st7735r.c
6157
6158 DRM DRIVER FOR SONY ACX424AKP PANELS
6159 M:      Linus Walleij <linus.walleij@linaro.org>
6160 S:      Maintained
6161 T:      git git://anongit.freedesktop.org/drm/drm-misc
6162 F:      drivers/gpu/drm/panel/panel-sony-acx424akp.c
6163
6164 DRM DRIVER FOR ST-ERICSSON MCDE
6165 M:      Linus Walleij <linus.walleij@linaro.org>
6166 S:      Maintained
6167 T:      git git://anongit.freedesktop.org/drm/drm-misc
6168 F:      Documentation/devicetree/bindings/display/ste,mcde.yaml
6169 F:      drivers/gpu/drm/mcde/
6170
6171 DRM DRIVER FOR TDFX VIDEO CARDS
6172 S:      Orphan / Obsolete
6173 F:      drivers/gpu/drm/tdfx/
6174
6175 DRM DRIVER FOR TPO TPG110 PANELS
6176 M:      Linus Walleij <linus.walleij@linaro.org>
6177 S:      Maintained
6178 T:      git git://anongit.freedesktop.org/drm/drm-misc
6179 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
6180 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
6181
6182 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
6183 M:      Dave Airlie <airlied@redhat.com>
6184 R:      Sean Paul <sean@poorly.run>
6185 R:      Thomas Zimmermann <tzimmermann@suse.de>
6186 L:      dri-devel@lists.freedesktop.org
6187 S:      Supported
6188 T:      git git://anongit.freedesktop.org/drm/drm-misc
6189 F:      drivers/gpu/drm/udl/
6190
6191 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
6192 M:      Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
6193 M:      Melissa Wen <melissa.srw@gmail.com>
6194 R:      Haneen Mohammed <hamohammed.sa@gmail.com>
6195 R:      Daniel Vetter <daniel@ffwll.ch>
6196 L:      dri-devel@lists.freedesktop.org
6197 S:      Maintained
6198 T:      git git://anongit.freedesktop.org/drm/drm-misc
6199 F:      Documentation/gpu/vkms.rst
6200 F:      drivers/gpu/drm/vkms/
6201
6202 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
6203 M:      Hans de Goede <hdegoede@redhat.com>
6204 L:      dri-devel@lists.freedesktop.org
6205 S:      Maintained
6206 T:      git git://anongit.freedesktop.org/drm/drm-misc
6207 F:      drivers/gpu/drm/vboxvideo/
6208
6209 DRM DRIVER FOR VMWARE VIRTUAL GPU
6210 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
6211 M:      Zack Rusin <zackr@vmware.com>
6212 L:      dri-devel@lists.freedesktop.org
6213 S:      Supported
6214 T:      git git://anongit.freedesktop.org/drm/drm-misc
6215 F:      drivers/gpu/drm/vmwgfx/
6216 F:      include/uapi/drm/vmwgfx_drm.h
6217
6218 DRM DRIVER FOR WIDECHIPS WS2401 PANELS
6219 M:      Linus Walleij <linus.walleij@linaro.org>
6220 S:      Maintained
6221 T:      git git://anongit.freedesktop.org/drm/drm-misc
6222 F:      Documentation/devicetree/bindings/display/panel/samsung,lms380kf01.yaml
6223 F:      drivers/gpu/drm/panel/panel-widechips-ws2401.c
6224
6225 DRM DRIVERS
6226 M:      David Airlie <airlied@linux.ie>
6227 M:      Daniel Vetter <daniel@ffwll.ch>
6228 L:      dri-devel@lists.freedesktop.org
6229 S:      Maintained
6230 B:      https://gitlab.freedesktop.org/drm
6231 C:      irc://irc.oftc.net/dri-devel
6232 T:      git git://anongit.freedesktop.org/drm/drm
6233 F:      Documentation/devicetree/bindings/display/
6234 F:      Documentation/devicetree/bindings/gpu/
6235 F:      Documentation/gpu/
6236 F:      drivers/gpu/
6237 F:      include/drm/
6238 F:      include/linux/vga*
6239 F:      include/uapi/drm/
6240
6241 DRM DRIVERS AND MISC GPU PATCHES
6242 M:      Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
6243 M:      Maxime Ripard <mripard@kernel.org>
6244 M:      Thomas Zimmermann <tzimmermann@suse.de>
6245 S:      Maintained
6246 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
6247 T:      git git://anongit.freedesktop.org/drm/drm-misc
6248 F:      Documentation/gpu/
6249 F:      drivers/gpu/drm/*
6250 F:      drivers/gpu/vga/
6251 F:      include/drm/drm*
6252 F:      include/linux/vga*
6253 F:      include/uapi/drm/drm*
6254
6255 DRM DRIVERS FOR ALLWINNER A10
6256 M:      Maxime Ripard <mripard@kernel.org>
6257 M:      Chen-Yu Tsai <wens@csie.org>
6258 L:      dri-devel@lists.freedesktop.org
6259 S:      Supported
6260 T:      git git://anongit.freedesktop.org/drm/drm-misc
6261 F:      Documentation/devicetree/bindings/display/allwinner*
6262 F:      drivers/gpu/drm/sun4i/
6263
6264 DRM DRIVERS FOR AMLOGIC SOCS
6265 M:      Neil Armstrong <narmstrong@baylibre.com>
6266 L:      dri-devel@lists.freedesktop.org
6267 L:      linux-amlogic@lists.infradead.org
6268 S:      Supported
6269 W:      http://linux-meson.com/
6270 T:      git git://anongit.freedesktop.org/drm/drm-misc
6271 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
6272 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
6273 F:      Documentation/gpu/meson.rst
6274 F:      drivers/gpu/drm/meson/
6275
6276 DRM DRIVERS FOR ATMEL HLCDC
6277 M:      Sam Ravnborg <sam@ravnborg.org>
6278 M:      Boris Brezillon <bbrezillon@kernel.org>
6279 L:      dri-devel@lists.freedesktop.org
6280 S:      Supported
6281 T:      git git://anongit.freedesktop.org/drm/drm-misc
6282 F:      Documentation/devicetree/bindings/display/atmel/
6283 F:      drivers/gpu/drm/atmel-hlcdc/
6284
6285 DRM DRIVERS FOR BRIDGE CHIPS
6286 M:      Andrzej Hajda <a.hajda@samsung.com>
6287 M:      Neil Armstrong <narmstrong@baylibre.com>
6288 M:      Robert Foss <robert.foss@linaro.org>
6289 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
6290 R:      Jonas Karlman <jonas@kwiboo.se>
6291 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
6292 S:      Maintained
6293 T:      git git://anongit.freedesktop.org/drm/drm-misc
6294 F:      drivers/gpu/drm/bridge/
6295
6296 DRM DRIVERS FOR EXYNOS
6297 M:      Inki Dae <inki.dae@samsung.com>
6298 M:      Joonyoung Shim <jy0922.shim@samsung.com>
6299 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
6300 M:      Kyungmin Park <kyungmin.park@samsung.com>
6301 L:      dri-devel@lists.freedesktop.org
6302 S:      Supported
6303 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
6304 F:      Documentation/devicetree/bindings/display/exynos/
6305 F:      drivers/gpu/drm/exynos/
6306 F:      include/uapi/drm/exynos_drm.h
6307
6308 DRM DRIVERS FOR FREESCALE DCU
6309 M:      Stefan Agner <stefan@agner.ch>
6310 M:      Alison Wang <alison.wang@nxp.com>
6311 L:      dri-devel@lists.freedesktop.org
6312 S:      Supported
6313 T:      git git://anongit.freedesktop.org/drm/drm-misc
6314 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
6315 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
6316 F:      drivers/gpu/drm/fsl-dcu/
6317
6318 DRM DRIVERS FOR FREESCALE IMX
6319 M:      Philipp Zabel <p.zabel@pengutronix.de>
6320 L:      dri-devel@lists.freedesktop.org
6321 S:      Maintained
6322 F:      Documentation/devicetree/bindings/display/imx/
6323 F:      drivers/gpu/drm/imx/
6324 F:      drivers/gpu/ipu-v3/
6325
6326 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
6327 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
6328 L:      dri-devel@lists.freedesktop.org
6329 S:      Maintained
6330 T:      git git://github.com/patjak/drm-gma500
6331 F:      drivers/gpu/drm/gma500/
6332
6333 DRM DRIVERS FOR HISILICON
6334 M:      Xinliang Liu <xinliang.liu@linaro.org>
6335 M:      Tian Tao  <tiantao6@hisilicon.com>
6336 R:      John Stultz <john.stultz@linaro.org>
6337 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
6338 R:      Chen Feng <puck.chen@hisilicon.com>
6339 L:      dri-devel@lists.freedesktop.org
6340 S:      Maintained
6341 T:      git git://anongit.freedesktop.org/drm/drm-misc
6342 F:      Documentation/devicetree/bindings/display/hisilicon/
6343 F:      drivers/gpu/drm/hisilicon/
6344
6345 DRM DRIVER FOR HYPERV SYNTHETIC VIDEO DEVICE
6346 M:      Deepak Rawat <drawat.floss@gmail.com>
6347 L:      linux-hyperv@vger.kernel.org
6348 L:      dri-devel@lists.freedesktop.org
6349 S:      Maintained
6350 T:      git git://anongit.freedesktop.org/drm/drm-misc
6351 F:      drivers/gpu/drm/hyperv
6352
6353 DRM DRIVERS FOR LIMA
6354 M:      Qiang Yu <yuq825@gmail.com>
6355 L:      dri-devel@lists.freedesktop.org
6356 L:      lima@lists.freedesktop.org (moderated for non-subscribers)
6357 S:      Maintained
6358 T:      git git://anongit.freedesktop.org/drm/drm-misc
6359 F:      drivers/gpu/drm/lima/
6360 F:      include/uapi/drm/lima_drm.h
6361
6362 DRM DRIVERS FOR MEDIATEK
6363 M:      Chun-Kuang Hu <chunkuang.hu@kernel.org>
6364 M:      Philipp Zabel <p.zabel@pengutronix.de>
6365 L:      dri-devel@lists.freedesktop.org
6366 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
6367 S:      Supported
6368 F:      Documentation/devicetree/bindings/display/mediatek/
6369 F:      drivers/gpu/drm/mediatek/
6370 F:      drivers/phy/mediatek/phy-mtk-hdmi*
6371 F:      drivers/phy/mediatek/phy-mtk-mipi*
6372
6373 DRM DRIVERS FOR NVIDIA TEGRA
6374 M:      Thierry Reding <thierry.reding@gmail.com>
6375 L:      dri-devel@lists.freedesktop.org
6376 L:      linux-tegra@vger.kernel.org
6377 S:      Supported
6378 T:      git git://anongit.freedesktop.org/tegra/linux.git
6379 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
6380 F:      Documentation/devicetree/bindings/gpu/host1x/
6381 F:      drivers/gpu/drm/tegra/
6382 F:      drivers/gpu/host1x/
6383 F:      include/linux/host1x.h
6384 F:      include/uapi/drm/tegra_drm.h
6385
6386 DRM DRIVERS FOR RENESAS
6387 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6388 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
6389 L:      dri-devel@lists.freedesktop.org
6390 L:      linux-renesas-soc@vger.kernel.org
6391 S:      Supported
6392 T:      git git://linuxtv.org/pinchartl/media drm/du/next
6393 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.yaml
6394 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.yaml
6395 F:      Documentation/devicetree/bindings/display/renesas,du.yaml
6396 F:      drivers/gpu/drm/rcar-du/
6397 F:      drivers/gpu/drm/shmobile/
6398 F:      include/linux/platform_data/shmob_drm.h
6399
6400 DRM DRIVERS FOR ROCKCHIP
6401 M:      Sandy Huang <hjc@rock-chips.com>
6402 M:      Heiko Stübner <heiko@sntech.de>
6403 L:      dri-devel@lists.freedesktop.org
6404 S:      Maintained
6405 T:      git git://anongit.freedesktop.org/drm/drm-misc
6406 F:      Documentation/devicetree/bindings/display/rockchip/
6407 F:      drivers/gpu/drm/rockchip/
6408
6409 DRM DRIVERS FOR STI
6410 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
6411 L:      dri-devel@lists.freedesktop.org
6412 S:      Maintained
6413 T:      git git://anongit.freedesktop.org/drm/drm-misc
6414 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
6415 F:      drivers/gpu/drm/sti
6416
6417 DRM DRIVERS FOR STM
6418 M:      Yannick Fertre <yannick.fertre@foss.st.com>
6419 M:      Philippe Cornu <philippe.cornu@foss.st.com>
6420 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
6421 L:      dri-devel@lists.freedesktop.org
6422 S:      Maintained
6423 T:      git git://anongit.freedesktop.org/drm/drm-misc
6424 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
6425 F:      drivers/gpu/drm/stm
6426
6427 DRM DRIVERS FOR TI KEYSTONE
6428 M:      Jyri Sarha <jyri.sarha@iki.fi>
6429 M:      Tomi Valkeinen <tomba@kernel.org>
6430 L:      dri-devel@lists.freedesktop.org
6431 S:      Maintained
6432 T:      git git://anongit.freedesktop.org/drm/drm-misc
6433 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
6434 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
6435 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
6436 F:      drivers/gpu/drm/tidss/
6437
6438 DRM DRIVERS FOR TI LCDC
6439 M:      Jyri Sarha <jyri.sarha@iki.fi>
6440 R:      Tomi Valkeinen <tomba@kernel.org>
6441 L:      dri-devel@lists.freedesktop.org
6442 S:      Maintained
6443 F:      Documentation/devicetree/bindings/display/tilcdc/
6444 F:      drivers/gpu/drm/tilcdc/
6445
6446 DRM DRIVERS FOR TI OMAP
6447 M:      Tomi Valkeinen <tomba@kernel.org>
6448 L:      dri-devel@lists.freedesktop.org
6449 S:      Maintained
6450 F:      Documentation/devicetree/bindings/display/ti/
6451 F:      drivers/gpu/drm/omapdrm/
6452
6453 DRM DRIVERS FOR V3D
6454 M:      Emma Anholt <emma@anholt.net>
6455 S:      Supported
6456 T:      git git://anongit.freedesktop.org/drm/drm-misc
6457 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.yaml
6458 F:      drivers/gpu/drm/v3d/
6459 F:      include/uapi/drm/v3d_drm.h
6460
6461 DRM DRIVERS FOR VC4
6462 M:      Emma Anholt <emma@anholt.net>
6463 M:      Maxime Ripard <mripard@kernel.org>
6464 S:      Supported
6465 T:      git git://github.com/anholt/linux
6466 T:      git git://anongit.freedesktop.org/drm/drm-misc
6467 F:      Documentation/devicetree/bindings/display/brcm,bcm2835-*.yaml
6468 F:      drivers/gpu/drm/vc4/
6469 F:      include/uapi/drm/vc4_drm.h
6470
6471 DRM DRIVERS FOR VIVANTE GPU IP
6472 M:      Lucas Stach <l.stach@pengutronix.de>
6473 R:      Russell King <linux+etnaviv@armlinux.org.uk>
6474 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
6475 L:      etnaviv@lists.freedesktop.org (moderated for non-subscribers)
6476 L:      dri-devel@lists.freedesktop.org
6477 S:      Maintained
6478 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
6479 F:      drivers/gpu/drm/etnaviv/
6480 F:      include/uapi/drm/etnaviv_drm.h
6481
6482 DRM DRIVERS FOR XEN
6483 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
6484 L:      dri-devel@lists.freedesktop.org
6485 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
6486 S:      Supported
6487 T:      git git://anongit.freedesktop.org/drm/drm-misc
6488 F:      Documentation/gpu/xen-front.rst
6489 F:      drivers/gpu/drm/xen/
6490
6491 DRM DRIVERS FOR XILINX
6492 M:      Hyun Kwon <hyun.kwon@xilinx.com>
6493 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6494 L:      dri-devel@lists.freedesktop.org
6495 S:      Maintained
6496 T:      git git://anongit.freedesktop.org/drm/drm-misc
6497 F:      Documentation/devicetree/bindings/display/xlnx/
6498 F:      drivers/gpu/drm/xlnx/
6499
6500 DRM PANEL DRIVERS
6501 M:      Thierry Reding <thierry.reding@gmail.com>
6502 R:      Sam Ravnborg <sam@ravnborg.org>
6503 L:      dri-devel@lists.freedesktop.org
6504 S:      Maintained
6505 T:      git git://anongit.freedesktop.org/drm/drm-misc
6506 F:      Documentation/devicetree/bindings/display/panel/
6507 F:      drivers/gpu/drm/drm_panel.c
6508 F:      drivers/gpu/drm/panel/
6509 F:      include/drm/drm_panel.h
6510
6511 DRM TTM SUBSYSTEM
6512 M:      Christian Koenig <christian.koenig@amd.com>
6513 M:      Huang Rui <ray.huang@amd.com>
6514 L:      dri-devel@lists.freedesktop.org
6515 S:      Maintained
6516 T:      git git://anongit.freedesktop.org/drm/drm-misc
6517 F:      drivers/gpu/drm/ttm/
6518 F:      include/drm/ttm/
6519
6520 DRM GPU SCHEDULER
6521 M:      Andrey Grodzovsky <andrey.grodzovsky@amd.com>
6522 L:      dri-devel@lists.freedesktop.org
6523 S:      Maintained
6524 T:      git git://anongit.freedesktop.org/drm/drm-misc
6525 F:      drivers/gpu/drm/scheduler/
6526 F:      include/drm/gpu_scheduler.h
6527
6528 DSBR100 USB FM RADIO DRIVER
6529 M:      Alexey Klimov <klimov.linux@gmail.com>
6530 L:      linux-media@vger.kernel.org
6531 S:      Maintained
6532 T:      git git://linuxtv.org/media_tree.git
6533 F:      drivers/media/radio/dsbr100.c
6534
6535 DT3155 MEDIA DRIVER
6536 M:      Hans Verkuil <hverkuil@xs4all.nl>
6537 L:      linux-media@vger.kernel.org
6538 S:      Odd Fixes
6539 W:      https://linuxtv.org
6540 T:      git git://linuxtv.org/media_tree.git
6541 F:      drivers/media/pci/dt3155/
6542
6543 DVB_USB_AF9015 MEDIA DRIVER
6544 M:      Antti Palosaari <crope@iki.fi>
6545 L:      linux-media@vger.kernel.org
6546 S:      Maintained
6547 W:      https://linuxtv.org
6548 W:      http://palosaari.fi/linux/
6549 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6550 T:      git git://linuxtv.org/anttip/media_tree.git
6551 F:      drivers/media/usb/dvb-usb-v2/af9015*
6552
6553 DVB_USB_AF9035 MEDIA DRIVER
6554 M:      Antti Palosaari <crope@iki.fi>
6555 L:      linux-media@vger.kernel.org
6556 S:      Maintained
6557 W:      https://linuxtv.org
6558 W:      http://palosaari.fi/linux/
6559 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6560 T:      git git://linuxtv.org/anttip/media_tree.git
6561 F:      drivers/media/usb/dvb-usb-v2/af9035*
6562
6563 DVB_USB_ANYSEE MEDIA DRIVER
6564 M:      Antti Palosaari <crope@iki.fi>
6565 L:      linux-media@vger.kernel.org
6566 S:      Maintained
6567 W:      https://linuxtv.org
6568 W:      http://palosaari.fi/linux/
6569 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6570 T:      git git://linuxtv.org/anttip/media_tree.git
6571 F:      drivers/media/usb/dvb-usb-v2/anysee*
6572
6573 DVB_USB_AU6610 MEDIA DRIVER
6574 M:      Antti Palosaari <crope@iki.fi>
6575 L:      linux-media@vger.kernel.org
6576 S:      Maintained
6577 W:      https://linuxtv.org
6578 W:      http://palosaari.fi/linux/
6579 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6580 T:      git git://linuxtv.org/anttip/media_tree.git
6581 F:      drivers/media/usb/dvb-usb-v2/au6610*
6582
6583 DVB_USB_CE6230 MEDIA DRIVER
6584 M:      Antti Palosaari <crope@iki.fi>
6585 L:      linux-media@vger.kernel.org
6586 S:      Maintained
6587 W:      https://linuxtv.org
6588 W:      http://palosaari.fi/linux/
6589 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6590 T:      git git://linuxtv.org/anttip/media_tree.git
6591 F:      drivers/media/usb/dvb-usb-v2/ce6230*
6592
6593 DVB_USB_CXUSB MEDIA DRIVER
6594 M:      Michael Krufky <mkrufky@linuxtv.org>
6595 L:      linux-media@vger.kernel.org
6596 S:      Maintained
6597 W:      https://linuxtv.org
6598 W:      http://github.com/mkrufky
6599 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6600 T:      git git://linuxtv.org/media_tree.git
6601 F:      drivers/media/usb/dvb-usb/cxusb*
6602
6603 DVB_USB_EC168 MEDIA DRIVER
6604 M:      Antti Palosaari <crope@iki.fi>
6605 L:      linux-media@vger.kernel.org
6606 S:      Maintained
6607 W:      https://linuxtv.org
6608 W:      http://palosaari.fi/linux/
6609 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6610 T:      git git://linuxtv.org/anttip/media_tree.git
6611 F:      drivers/media/usb/dvb-usb-v2/ec168*
6612
6613 DVB_USB_GL861 MEDIA DRIVER
6614 M:      Antti Palosaari <crope@iki.fi>
6615 L:      linux-media@vger.kernel.org
6616 S:      Maintained
6617 W:      https://linuxtv.org
6618 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6619 T:      git git://linuxtv.org/anttip/media_tree.git
6620 F:      drivers/media/usb/dvb-usb-v2/gl861*
6621
6622 DVB_USB_MXL111SF MEDIA DRIVER
6623 M:      Michael Krufky <mkrufky@linuxtv.org>
6624 L:      linux-media@vger.kernel.org
6625 S:      Maintained
6626 W:      https://linuxtv.org
6627 W:      http://github.com/mkrufky
6628 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6629 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
6630 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
6631
6632 DVB_USB_RTL28XXU MEDIA DRIVER
6633 M:      Antti Palosaari <crope@iki.fi>
6634 L:      linux-media@vger.kernel.org
6635 S:      Maintained
6636 W:      https://linuxtv.org
6637 W:      http://palosaari.fi/linux/
6638 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6639 T:      git git://linuxtv.org/anttip/media_tree.git
6640 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
6641
6642 DVB_USB_V2 MEDIA DRIVER
6643 M:      Antti Palosaari <crope@iki.fi>
6644 L:      linux-media@vger.kernel.org
6645 S:      Maintained
6646 W:      https://linuxtv.org
6647 W:      http://palosaari.fi/linux/
6648 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6649 T:      git git://linuxtv.org/anttip/media_tree.git
6650 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
6651 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
6652
6653 DYNAMIC DEBUG
6654 M:      Jason Baron <jbaron@akamai.com>
6655 S:      Maintained
6656 F:      include/linux/dynamic_debug.h
6657 F:      lib/dynamic_debug.c
6658
6659 DYNAMIC INTERRUPT MODERATION
6660 M:      Tal Gilboa <talgi@nvidia.com>
6661 S:      Maintained
6662 F:      Documentation/networking/net_dim.rst
6663 F:      include/linux/dim.h
6664 F:      lib/dim/
6665
6666 DZ DECSTATION DZ11 SERIAL DRIVER
6667 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
6668 S:      Maintained
6669 F:      drivers/tty/serial/dz.*
6670
6671 E3X0 POWER BUTTON DRIVER
6672 M:      Moritz Fischer <moritz.fischer@ettus.com>
6673 L:      usrp-users@lists.ettus.com
6674 S:      Supported
6675 W:      http://www.ettus.com
6676 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
6677 F:      drivers/input/misc/e3x0-button.c
6678
6679 E4000 MEDIA DRIVER
6680 M:      Antti Palosaari <crope@iki.fi>
6681 L:      linux-media@vger.kernel.org
6682 S:      Maintained
6683 W:      https://linuxtv.org
6684 W:      http://palosaari.fi/linux/
6685 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6686 T:      git git://linuxtv.org/anttip/media_tree.git
6687 F:      drivers/media/tuners/e4000*
6688
6689 EARTH_PT1 MEDIA DRIVER
6690 M:      Akihiro Tsukada <tskd08@gmail.com>
6691 L:      linux-media@vger.kernel.org
6692 S:      Odd Fixes
6693 F:      drivers/media/pci/pt1/
6694
6695 EARTH_PT3 MEDIA DRIVER
6696 M:      Akihiro Tsukada <tskd08@gmail.com>
6697 L:      linux-media@vger.kernel.org
6698 S:      Odd Fixes
6699 F:      drivers/media/pci/pt3/
6700
6701 EC100 MEDIA DRIVER
6702 M:      Antti Palosaari <crope@iki.fi>
6703 L:      linux-media@vger.kernel.org
6704 S:      Maintained
6705 W:      https://linuxtv.org
6706 W:      http://palosaari.fi/linux/
6707 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6708 T:      git git://linuxtv.org/anttip/media_tree.git
6709 F:      drivers/media/dvb-frontends/ec100*
6710
6711 ECRYPT FILE SYSTEM
6712 M:      Tyler Hicks <code@tyhicks.com>
6713 L:      ecryptfs@vger.kernel.org
6714 S:      Odd Fixes
6715 W:      http://ecryptfs.org
6716 W:      https://launchpad.net/ecryptfs
6717 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
6718 F:      Documentation/filesystems/ecryptfs.rst
6719 F:      fs/ecryptfs/
6720
6721 EDAC-AMD64
6722 M:      Yazen Ghannam <yazen.ghannam@amd.com>
6723 L:      linux-edac@vger.kernel.org
6724 S:      Supported
6725 F:      drivers/edac/amd64_edac*
6726 F:      drivers/edac/mce_amd*
6727
6728 EDAC-ARMADA
6729 M:      Jan Luebbe <jlu@pengutronix.de>
6730 L:      linux-edac@vger.kernel.org
6731 S:      Maintained
6732 F:      Documentation/devicetree/bindings/memory-controllers/marvell,mvebu-sdram-controller.yaml
6733 F:      drivers/edac/armada_xp_*
6734
6735 EDAC-AST2500
6736 M:      Stefan Schaeckeler <sschaeck@cisco.com>
6737 S:      Supported
6738 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
6739 F:      drivers/edac/aspeed_edac.c
6740
6741 EDAC-BLUEFIELD
6742 M:      Shravan Kumar Ramani <shravankr@nvidia.com>
6743 S:      Supported
6744 F:      drivers/edac/bluefield_edac.c
6745
6746 EDAC-CALXEDA
6747 M:      Andre Przywara <andre.przywara@arm.com>
6748 L:      linux-edac@vger.kernel.org
6749 S:      Maintained
6750 F:      drivers/edac/highbank*
6751
6752 EDAC-CAVIUM OCTEON
6753 M:      Ralf Baechle <ralf@linux-mips.org>
6754 L:      linux-edac@vger.kernel.org
6755 L:      linux-mips@vger.kernel.org
6756 S:      Supported
6757 F:      drivers/edac/octeon_edac*
6758
6759 EDAC-CAVIUM THUNDERX
6760 M:      Robert Richter <rric@kernel.org>
6761 L:      linux-edac@vger.kernel.org
6762 S:      Odd Fixes
6763 F:      drivers/edac/thunderx_edac*
6764
6765 EDAC-CORE
6766 M:      Borislav Petkov <bp@alien8.de>
6767 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6768 M:      Tony Luck <tony.luck@intel.com>
6769 R:      James Morse <james.morse@arm.com>
6770 R:      Robert Richter <rric@kernel.org>
6771 L:      linux-edac@vger.kernel.org
6772 S:      Supported
6773 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
6774 F:      Documentation/admin-guide/ras.rst
6775 F:      Documentation/driver-api/edac.rst
6776 F:      drivers/edac/
6777 F:      include/linux/edac.h
6778
6779 EDAC-DMC520
6780 M:      Lei Wang <lewan@microsoft.com>
6781 L:      linux-edac@vger.kernel.org
6782 S:      Supported
6783 F:      drivers/edac/dmc520_edac.c
6784
6785 EDAC-E752X
6786 M:      Mark Gross <markgross@kernel.org>
6787 L:      linux-edac@vger.kernel.org
6788 S:      Maintained
6789 F:      drivers/edac/e752x_edac.c
6790
6791 EDAC-E7XXX
6792 L:      linux-edac@vger.kernel.org
6793 S:      Maintained
6794 F:      drivers/edac/e7xxx_edac.c
6795
6796 EDAC-FSL_DDR
6797 M:      York Sun <york.sun@nxp.com>
6798 L:      linux-edac@vger.kernel.org
6799 S:      Maintained
6800 F:      drivers/edac/fsl_ddr_edac.*
6801
6802 EDAC-GHES
6803 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6804 L:      linux-edac@vger.kernel.org
6805 S:      Maintained
6806 F:      drivers/edac/ghes_edac.c
6807
6808 EDAC-I10NM
6809 M:      Tony Luck <tony.luck@intel.com>
6810 L:      linux-edac@vger.kernel.org
6811 S:      Maintained
6812 F:      drivers/edac/i10nm_base.c
6813
6814 EDAC-I3000
6815 L:      linux-edac@vger.kernel.org
6816 S:      Orphan
6817 F:      drivers/edac/i3000_edac.c
6818
6819 EDAC-I5000
6820 L:      linux-edac@vger.kernel.org
6821 S:      Maintained
6822 F:      drivers/edac/i5000_edac.c
6823
6824 EDAC-I5400
6825 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6826 L:      linux-edac@vger.kernel.org
6827 S:      Maintained
6828 F:      drivers/edac/i5400_edac.c
6829
6830 EDAC-I7300
6831 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6832 L:      linux-edac@vger.kernel.org
6833 S:      Maintained
6834 F:      drivers/edac/i7300_edac.c
6835
6836 EDAC-I7CORE
6837 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6838 L:      linux-edac@vger.kernel.org
6839 S:      Maintained
6840 F:      drivers/edac/i7core_edac.c
6841
6842 EDAC-I82443BXGX
6843 M:      Tim Small <tim@buttersideup.com>
6844 L:      linux-edac@vger.kernel.org
6845 S:      Maintained
6846 F:      drivers/edac/i82443bxgx_edac.c
6847
6848 EDAC-I82975X
6849 M:      "Arvind R." <arvino55@gmail.com>
6850 L:      linux-edac@vger.kernel.org
6851 S:      Maintained
6852 F:      drivers/edac/i82975x_edac.c
6853
6854 EDAC-IE31200
6855 M:      Jason Baron <jbaron@akamai.com>
6856 L:      linux-edac@vger.kernel.org
6857 S:      Maintained
6858 F:      drivers/edac/ie31200_edac.c
6859
6860 EDAC-IGEN6
6861 M:      Tony Luck <tony.luck@intel.com>
6862 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6863 L:      linux-edac@vger.kernel.org
6864 S:      Maintained
6865 F:      drivers/edac/igen6_edac.c
6866
6867 EDAC-MPC85XX
6868 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6869 L:      linux-edac@vger.kernel.org
6870 S:      Maintained
6871 F:      drivers/edac/mpc85xx_edac.[ch]
6872
6873 EDAC-PASEMI
6874 M:      Egor Martovetsky <egor@pasemi.com>
6875 L:      linux-edac@vger.kernel.org
6876 S:      Maintained
6877 F:      drivers/edac/pasemi_edac.c
6878
6879 EDAC-PND2
6880 M:      Tony Luck <tony.luck@intel.com>
6881 L:      linux-edac@vger.kernel.org
6882 S:      Maintained
6883 F:      drivers/edac/pnd2_edac.[ch]
6884
6885 EDAC-QCOM
6886 M:      Channagoud Kadabi <ckadabi@codeaurora.org>
6887 M:      Venkata Narendra Kumar Gutta <vnkgutta@codeaurora.org>
6888 L:      linux-arm-msm@vger.kernel.org
6889 L:      linux-edac@vger.kernel.org
6890 S:      Maintained
6891 F:      drivers/edac/qcom_edac.c
6892
6893 EDAC-R82600
6894 M:      Tim Small <tim@buttersideup.com>
6895 L:      linux-edac@vger.kernel.org
6896 S:      Maintained
6897 F:      drivers/edac/r82600_edac.c
6898
6899 EDAC-SBRIDGE
6900 M:      Tony Luck <tony.luck@intel.com>
6901 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6902 L:      linux-edac@vger.kernel.org
6903 S:      Maintained
6904 F:      drivers/edac/sb_edac.c
6905
6906 EDAC-SIFIVE
6907 M:      Yash Shah <yash.shah@sifive.com>
6908 L:      linux-edac@vger.kernel.org
6909 S:      Supported
6910 F:      drivers/edac/sifive_edac.c
6911
6912 EDAC-SKYLAKE
6913 M:      Tony Luck <tony.luck@intel.com>
6914 L:      linux-edac@vger.kernel.org
6915 S:      Maintained
6916 F:      drivers/edac/skx_*.[ch]
6917
6918 EDAC-TI
6919 M:      Tero Kristo <kristo@kernel.org>
6920 L:      linux-edac@vger.kernel.org
6921 S:      Odd Fixes
6922 F:      drivers/edac/ti_edac.c
6923
6924 EDIROL UA-101/UA-1000 DRIVER
6925 M:      Clemens Ladisch <clemens@ladisch.de>
6926 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6927 S:      Maintained
6928 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6929 F:      sound/usb/misc/ua101.c
6930
6931 EFI TEST DRIVER
6932 M:      Ivan Hu <ivan.hu@canonical.com>
6933 M:      Ard Biesheuvel <ardb@kernel.org>
6934 L:      linux-efi@vger.kernel.org
6935 S:      Maintained
6936 F:      drivers/firmware/efi/test/
6937
6938 EFI VARIABLE FILESYSTEM
6939 M:      Matthew Garrett <matthew.garrett@nebula.com>
6940 M:      Jeremy Kerr <jk@ozlabs.org>
6941 M:      Ard Biesheuvel <ardb@kernel.org>
6942 L:      linux-efi@vger.kernel.org
6943 S:      Maintained
6944 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6945 F:      fs/efivarfs/
6946
6947 EFIFB FRAMEBUFFER DRIVER
6948 M:      Peter Jones <pjones@redhat.com>
6949 L:      linux-fbdev@vger.kernel.org
6950 S:      Maintained
6951 F:      drivers/video/fbdev/efifb.c
6952
6953 EFS FILESYSTEM
6954 S:      Orphan
6955 W:      http://aeschi.ch.eu.org/efs/
6956 F:      fs/efs/
6957
6958 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
6959 M:      Douglas Miller <dougmill@linux.ibm.com>
6960 L:      netdev@vger.kernel.org
6961 S:      Maintained
6962 F:      drivers/net/ethernet/ibm/ehea/
6963
6964 EM28XX VIDEO4LINUX DRIVER
6965 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6966 L:      linux-media@vger.kernel.org
6967 S:      Maintained
6968 W:      https://linuxtv.org
6969 T:      git git://linuxtv.org/media_tree.git
6970 F:      Documentation/admin-guide/media/em28xx*
6971 F:      drivers/media/usb/em28xx/
6972
6973 EMBEDDED LINUX
6974 M:      Matt Mackall <mpm@selenic.com>
6975 M:      David Woodhouse <dwmw2@infradead.org>
6976 L:      linux-embedded@vger.kernel.org
6977 S:      Maintained
6978
6979 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
6980 M:      Adrian Hunter <adrian.hunter@intel.com>
6981 M:      Ritesh Harjani <riteshh@codeaurora.org>
6982 M:      Asutosh Das <asutoshd@codeaurora.org>
6983 L:      linux-mmc@vger.kernel.org
6984 S:      Maintained
6985 F:      drivers/mmc/host/cqhci*
6986
6987 EMULEX 10Gbps iSCSI - OneConnect DRIVER
6988 M:      Subbu Seetharaman <subbu.seetharaman@broadcom.com>
6989 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
6990 M:      Jitendra Bhivare <jitendra.bhivare@broadcom.com>
6991 L:      linux-scsi@vger.kernel.org
6992 S:      Supported
6993 W:      http://www.broadcom.com
6994 F:      drivers/scsi/be2iscsi/
6995
6996 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
6997 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
6998 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
6999 M:      Somnath Kotur <somnath.kotur@broadcom.com>
7000 L:      netdev@vger.kernel.org
7001 S:      Supported
7002 W:      http://www.emulex.com
7003 F:      drivers/net/ethernet/emulex/benet/
7004
7005 EMULEX ONECONNECT ROCE DRIVER
7006 M:      Selvin Xavier <selvin.xavier@broadcom.com>
7007 L:      linux-rdma@vger.kernel.org
7008 S:      Odd Fixes
7009 W:      http://www.broadcom.com
7010 F:      drivers/infiniband/hw/ocrdma/
7011 F:      include/uapi/rdma/ocrdma-abi.h
7012
7013 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
7014 M:      James Smart <james.smart@broadcom.com>
7015 M:      Dick Kennedy <dick.kennedy@broadcom.com>
7016 L:      linux-scsi@vger.kernel.org
7017 S:      Supported
7018 W:      http://www.broadcom.com
7019 F:      drivers/scsi/lpfc/
7020
7021 EMULEX/BROADCOM EFCT FC/FCOE SCSI TARGET DRIVER
7022 M:      James Smart <james.smart@broadcom.com>
7023 M:      Ram Vegesna <ram.vegesna@broadcom.com>
7024 L:      linux-scsi@vger.kernel.org
7025 L:      target-devel@vger.kernel.org
7026 S:      Supported
7027 W:      http://www.broadcom.com
7028 F:      drivers/scsi/elx/
7029
7030 ENE CB710 FLASH CARD READER DRIVER
7031 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
7032 S:      Maintained
7033 F:      drivers/misc/cb710/
7034 F:      drivers/mmc/host/cb710-mmc.*
7035 F:      include/linux/cb710.h
7036
7037 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
7038 M:      Maxim Levitsky <maximlevitsky@gmail.com>
7039 S:      Maintained
7040 F:      drivers/media/rc/ene_ir.*
7041
7042 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
7043 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
7044 L:      linuxppc-dev@lists.ozlabs.org
7045 S:      Maintained
7046 F:      drivers/tty/ehv_bytechan.c
7047
7048 EPSON S1D13XXX FRAMEBUFFER DRIVER
7049 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
7050 S:      Maintained
7051 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
7052 F:      drivers/video/fbdev/s1d13xxxfb.c
7053 F:      include/video/s1d13xxxfb.h
7054
7055 EROFS FILE SYSTEM
7056 M:      Gao Xiang <xiang@kernel.org>
7057 M:      Chao Yu <chao@kernel.org>
7058 L:      linux-erofs@lists.ozlabs.org
7059 S:      Maintained
7060 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
7061 F:      Documentation/filesystems/erofs.rst
7062 F:      fs/erofs/
7063 F:      include/trace/events/erofs.h
7064
7065 ERRSEQ ERROR TRACKING INFRASTRUCTURE
7066 M:      Jeff Layton <jlayton@kernel.org>
7067 S:      Maintained
7068 F:      include/linux/errseq.h
7069 F:      lib/errseq.c
7070
7071 ET131X NETWORK DRIVER
7072 M:      Mark Einon <mark.einon@gmail.com>
7073 S:      Odd Fixes
7074 F:      drivers/net/ethernet/agere/
7075
7076 ETAS ES58X CAN/USB DRIVER
7077 M:      Vincent Mailhol <mailhol.vincent@wanadoo.fr>
7078 L:      linux-can@vger.kernel.org
7079 S:      Maintained
7080 F:      drivers/net/can/usb/etas_es58x/
7081
7082 ETHERNET BRIDGE
7083 M:      Roopa Prabhu <roopa@nvidia.com>
7084 M:      Nikolay Aleksandrov <nikolay@nvidia.com>
7085 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
7086 L:      netdev@vger.kernel.org
7087 S:      Maintained
7088 W:      http://www.linuxfoundation.org/en/Net:Bridge
7089 F:      include/linux/netfilter_bridge/
7090 F:      net/bridge/
7091
7092 ETHERNET PHY LIBRARY
7093 M:      Andrew Lunn <andrew@lunn.ch>
7094 M:      Heiner Kallweit <hkallweit1@gmail.com>
7095 R:      Russell King <linux@armlinux.org.uk>
7096 L:      netdev@vger.kernel.org
7097 S:      Maintained
7098 F:      Documentation/ABI/testing/sysfs-class-net-phydev
7099 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
7100 F:      Documentation/devicetree/bindings/net/mdio*
7101 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
7102 F:      Documentation/networking/phy.rst
7103 F:      drivers/net/mdio/
7104 F:      drivers/net/mdio/acpi_mdio.c
7105 F:      drivers/net/mdio/fwnode_mdio.c
7106 F:      drivers/net/mdio/of_mdio.c
7107 F:      drivers/net/pcs/
7108 F:      drivers/net/phy/
7109 F:      include/dt-bindings/net/qca-ar803x.h
7110 F:      include/linux/*mdio*.h
7111 F:      include/linux/mdio/*.h
7112 F:      include/linux/of_net.h
7113 F:      include/linux/phy.h
7114 F:      include/linux/phy_fixed.h
7115 F:      include/linux/platform_data/mdio-bcm-unimac.h
7116 F:      include/linux/platform_data/mdio-gpio.h
7117 F:      include/trace/events/mdio.h
7118 F:      include/uapi/linux/mdio.h
7119 F:      include/uapi/linux/mii.h
7120 F:      net/core/of_net.c
7121
7122 EXEC & BINFMT API
7123 R:      Eric Biederman <ebiederm@xmission.com>
7124 R:      Kees Cook <keescook@chromium.org>
7125 F:      arch/alpha/kernel/binfmt_loader.c
7126 F:      arch/x86/ia32/ia32_aout.c
7127 F:      fs/*binfmt_*.c
7128 F:      fs/exec.c
7129 F:      include/linux/binfmts.h
7130 F:      include/linux/elf.h
7131 F:      include/uapi/linux/binfmts.h
7132 F:      tools/testing/selftests/exec/
7133 N:      asm/elf.h
7134 N:      binfmt
7135
7136 EXFAT FILE SYSTEM
7137 M:      Namjae Jeon <linkinjeon@kernel.org>
7138 M:      Sungjong Seo <sj1557.seo@samsung.com>
7139 L:      linux-fsdevel@vger.kernel.org
7140 S:      Maintained
7141 F:      fs/exfat/
7142
7143 EXT2 FILE SYSTEM
7144 M:      Jan Kara <jack@suse.com>
7145 L:      linux-ext4@vger.kernel.org
7146 S:      Maintained
7147 F:      Documentation/filesystems/ext2.rst
7148 F:      fs/ext2/
7149 F:      include/linux/ext2*
7150
7151 EXT4 FILE SYSTEM
7152 M:      "Theodore Ts'o" <tytso@mit.edu>
7153 M:      Andreas Dilger <adilger.kernel@dilger.ca>
7154 L:      linux-ext4@vger.kernel.org
7155 S:      Maintained
7156 W:      http://ext4.wiki.kernel.org
7157 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
7158 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
7159 F:      Documentation/filesystems/ext4/
7160 F:      fs/ext4/
7161 F:      include/trace/events/ext4.h
7162
7163 Extended Verification Module (EVM)
7164 M:      Mimi Zohar <zohar@linux.ibm.com>
7165 L:      linux-integrity@vger.kernel.org
7166 S:      Supported
7167 F:      security/integrity/evm/
7168
7169 EXTENSIBLE FIRMWARE INTERFACE (EFI)
7170 M:      Ard Biesheuvel <ardb@kernel.org>
7171 L:      linux-efi@vger.kernel.org
7172 S:      Maintained
7173 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7174 F:      Documentation/admin-guide/efi-stub.rst
7175 F:      arch/*/include/asm/efi.h
7176 F:      arch/*/kernel/efi.c
7177 F:      arch/arm/boot/compressed/efi-header.S
7178 F:      arch/arm64/kernel/efi-entry.S
7179 F:      arch/x86/platform/efi/
7180 F:      drivers/firmware/efi/
7181 F:      include/linux/efi*.h
7182
7183 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
7184 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
7185 M:      Chanwoo Choi <cw00.choi@samsung.com>
7186 L:      linux-kernel@vger.kernel.org
7187 S:      Maintained
7188 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
7189 F:      Documentation/devicetree/bindings/extcon/
7190 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
7191 F:      drivers/extcon/
7192 F:      include/linux/extcon.h
7193 F:      include/linux/extcon/
7194
7195 EXTRA BOOT CONFIG
7196 M:      Masami Hiramatsu <mhiramat@kernel.org>
7197 S:      Maintained
7198 F:      Documentation/admin-guide/bootconfig.rst
7199 F:      fs/proc/bootconfig.c
7200 F:      include/linux/bootconfig.h
7201 F:      lib/bootconfig.c
7202 F:      tools/bootconfig/*
7203 F:      tools/bootconfig/scripts/*
7204
7205 EXYNOS DP DRIVER
7206 M:      Jingoo Han <jingoohan1@gmail.com>
7207 L:      dri-devel@lists.freedesktop.org
7208 S:      Maintained
7209 F:      drivers/gpu/drm/exynos/exynos_dp*
7210
7211 EXYNOS SYSMMU (IOMMU) driver
7212 M:      Marek Szyprowski <m.szyprowski@samsung.com>
7213 L:      iommu@lists.linux-foundation.org
7214 S:      Maintained
7215 F:      drivers/iommu/exynos-iommu.c
7216
7217 F2FS FILE SYSTEM
7218 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7219 M:      Chao Yu <chao@kernel.org>
7220 L:      linux-f2fs-devel@lists.sourceforge.net
7221 S:      Maintained
7222 W:      https://f2fs.wiki.kernel.org/
7223 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
7224 F:      Documentation/ABI/testing/sysfs-fs-f2fs
7225 F:      Documentation/filesystems/f2fs.rst
7226 F:      fs/f2fs/
7227 F:      include/linux/f2fs_fs.h
7228 F:      include/trace/events/f2fs.h
7229 F:      include/uapi/linux/f2fs.h
7230
7231 F71805F HARDWARE MONITORING DRIVER
7232 M:      Jean Delvare <jdelvare@suse.com>
7233 L:      linux-hwmon@vger.kernel.org
7234 S:      Maintained
7235 F:      Documentation/hwmon/f71805f.rst
7236 F:      drivers/hwmon/f71805f.c
7237
7238 FADDR2LINE
7239 M:      Josh Poimboeuf <jpoimboe@redhat.com>
7240 S:      Maintained
7241 F:      scripts/faddr2line
7242
7243 FAILOVER MODULE
7244 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
7245 L:      netdev@vger.kernel.org
7246 S:      Supported
7247 F:      Documentation/networking/failover.rst
7248 F:      include/net/failover.h
7249 F:      net/core/failover.c
7250
7251 FANOTIFY
7252 M:      Jan Kara <jack@suse.cz>
7253 R:      Amir Goldstein <amir73il@gmail.com>
7254 R:      Matthew Bobrowski <repnop@google.com>
7255 L:      linux-fsdevel@vger.kernel.org
7256 S:      Maintained
7257 F:      fs/notify/fanotify/
7258 F:      include/linux/fanotify.h
7259 F:      include/uapi/linux/fanotify.h
7260
7261 FARSYNC SYNCHRONOUS DRIVER
7262 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
7263 S:      Supported
7264 W:      http://www.farsite.co.uk/
7265 F:      drivers/net/wan/farsync.*
7266
7267 FAULT INJECTION SUPPORT
7268 M:      Akinobu Mita <akinobu.mita@gmail.com>
7269 S:      Supported
7270 F:      Documentation/fault-injection/
7271 F:      lib/fault-inject.c
7272
7273 FBTFT Framebuffer drivers
7274 L:      dri-devel@lists.freedesktop.org
7275 L:      linux-fbdev@vger.kernel.org
7276 S:      Orphan
7277 F:      drivers/staging/fbtft/
7278
7279 FC0011 TUNER DRIVER
7280 M:      Michael Buesch <m@bues.ch>
7281 L:      linux-media@vger.kernel.org
7282 S:      Maintained
7283 F:      drivers/media/tuners/fc0011.c
7284 F:      drivers/media/tuners/fc0011.h
7285
7286 FC2580 MEDIA DRIVER
7287 M:      Antti Palosaari <crope@iki.fi>
7288 L:      linux-media@vger.kernel.org
7289 S:      Maintained
7290 W:      https://linuxtv.org
7291 W:      http://palosaari.fi/linux/
7292 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7293 T:      git git://linuxtv.org/anttip/media_tree.git
7294 F:      drivers/media/tuners/fc2580*
7295
7296 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
7297 M:      Hannes Reinecke <hare@suse.de>
7298 L:      linux-scsi@vger.kernel.org
7299 S:      Supported
7300 W:      www.Open-FCoE.org
7301 F:      drivers/scsi/fcoe/
7302 F:      drivers/scsi/libfc/
7303 F:      include/scsi/fc/
7304 F:      include/scsi/libfc.h
7305 F:      include/scsi/libfcoe.h
7306 F:      include/uapi/scsi/fc/
7307
7308 FILE LOCKING (flock() and fcntl()/lockf())
7309 M:      Jeff Layton <jlayton@kernel.org>
7310 M:      "J. Bruce Fields" <bfields@fieldses.org>
7311 L:      linux-fsdevel@vger.kernel.org
7312 S:      Maintained
7313 F:      fs/fcntl.c
7314 F:      fs/locks.c
7315 F:      include/linux/fcntl.h
7316 F:      include/uapi/linux/fcntl.h
7317
7318 FILESYSTEM DIRECT ACCESS (DAX)
7319 M:      Dan Williams <dan.j.williams@intel.com>
7320 R:      Matthew Wilcox <willy@infradead.org>
7321 R:      Jan Kara <jack@suse.cz>
7322 L:      linux-fsdevel@vger.kernel.org
7323 L:      nvdimm@lists.linux.dev
7324 S:      Supported
7325 F:      fs/dax.c
7326 F:      include/linux/dax.h
7327 F:      include/trace/events/fs_dax.h
7328
7329 FILESYSTEMS (VFS and infrastructure)
7330 M:      Alexander Viro <viro@zeniv.linux.org.uk>
7331 L:      linux-fsdevel@vger.kernel.org
7332 S:      Maintained
7333 F:      fs/*
7334 F:      include/linux/fs.h
7335 F:      include/linux/fs_types.h
7336 F:      include/uapi/linux/fs.h
7337 F:      include/uapi/linux/openat2.h
7338 X:      fs/io-wq.c
7339 X:      fs/io-wq.h
7340 X:      fs/io_uring.c
7341
7342 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
7343 M:      Riku Voipio <riku.voipio@iki.fi>
7344 L:      linux-hwmon@vger.kernel.org
7345 S:      Maintained
7346 F:      drivers/hwmon/f75375s.c
7347 F:      include/linux/f75375s.h
7348
7349 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
7350 M:      Clemens Ladisch <clemens@ladisch.de>
7351 M:      Takashi Sakamoto <o-takashi@sakamocchi.jp>
7352 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7353 S:      Maintained
7354 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7355 F:      include/uapi/sound/firewire.h
7356 F:      sound/firewire/
7357
7358 FIREWIRE MEDIA DRIVERS (firedtv)
7359 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7360 L:      linux-media@vger.kernel.org
7361 L:      linux1394-devel@lists.sourceforge.net
7362 S:      Maintained
7363 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
7364 F:      drivers/media/firewire/
7365
7366 FIREWIRE SBP-2 TARGET
7367 M:      Chris Boot <bootc@bootc.net>
7368 L:      linux-scsi@vger.kernel.org
7369 L:      target-devel@vger.kernel.org
7370 L:      linux1394-devel@lists.sourceforge.net
7371 S:      Maintained
7372 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
7373 F:      drivers/target/sbp/
7374
7375 FIREWIRE SUBSYSTEM
7376 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7377 L:      linux1394-devel@lists.sourceforge.net
7378 S:      Maintained
7379 W:      http://ieee1394.wiki.kernel.org/
7380 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
7381 F:      drivers/firewire/
7382 F:      include/linux/firewire.h
7383 F:      include/uapi/linux/firewire*.h
7384 F:      tools/firewire/
7385
7386 FIRMWARE FRAMEWORK FOR ARMV8-A
7387 M:      Sudeep Holla <sudeep.holla@arm.com>
7388 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7389 S:      Maintained
7390 F:      drivers/firmware/arm_ffa/
7391 F:      include/linux/arm_ffa.h
7392
7393 FIRMWARE LOADER (request_firmware)
7394 M:      Luis Chamberlain <mcgrof@kernel.org>
7395 L:      linux-kernel@vger.kernel.org
7396 S:      Maintained
7397 F:      Documentation/firmware_class/
7398 F:      drivers/base/firmware_loader/
7399 F:      include/linux/firmware.h
7400
7401 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
7402 M:      Joshua Morris <josh.h.morris@us.ibm.com>
7403 M:      Philip Kelleher <pjk1939@linux.ibm.com>
7404 S:      Maintained
7405 F:      drivers/block/rsxx/
7406
7407 FLEXTIMER FTM-QUADDEC DRIVER
7408 M:      Patrick Havelange <patrick.havelange@essensium.com>
7409 L:      linux-iio@vger.kernel.org
7410 S:      Maintained
7411 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
7412 F:      drivers/counter/ftm-quaddec.c
7413
7414 FLOPPY DRIVER
7415 M:      Denis Efremov <efremov@linux.com>
7416 L:      linux-block@vger.kernel.org
7417 S:      Odd Fixes
7418 F:      drivers/block/floppy.c
7419
7420 FLYSKY FSIA6B RC RECEIVER
7421 M:      Markus Koch <markus@notsyncing.net>
7422 L:      linux-input@vger.kernel.org
7423 S:      Maintained
7424 F:      drivers/input/joystick/fsia6b.c
7425
7426 FOCUSRITE SCARLETT GEN 2/3 MIXER DRIVER
7427 M:      Geoffrey D. Bennett <g@b4.vu>
7428 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7429 S:      Maintained
7430 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7431 F:      sound/usb/mixer_scarlett_gen2.c
7432
7433 FORCEDETH GIGABIT ETHERNET DRIVER
7434 M:      Rain River <rain.1986.08.12@gmail.com>
7435 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
7436 L:      netdev@vger.kernel.org
7437 S:      Maintained
7438 F:      drivers/net/ethernet/nvidia/*
7439
7440 FORTIFY_SOURCE
7441 M:      Kees Cook <keescook@chromium.org>
7442 L:      linux-hardening@vger.kernel.org
7443 S:      Supported
7444 F:      include/linux/fortify-string.h
7445 F:      lib/test_fortify/*
7446 F:      scripts/test_fortify.sh
7447 K:      \b__NO_FORTIFY\b
7448
7449 FPGA DFL DRIVERS
7450 M:      Wu Hao <hao.wu@intel.com>
7451 R:      Tom Rix <trix@redhat.com>
7452 L:      linux-fpga@vger.kernel.org
7453 S:      Maintained
7454 F:      Documentation/ABI/testing/sysfs-bus-dfl*
7455 F:      Documentation/fpga/dfl.rst
7456 F:      drivers/fpga/dfl*
7457 F:      drivers/uio/uio_dfl.c
7458 F:      include/linux/dfl.h
7459 F:      include/uapi/linux/fpga-dfl.h
7460
7461 FPGA MANAGER FRAMEWORK
7462 M:      Moritz Fischer <mdf@kernel.org>
7463 M:      Wu Hao <hao.wu@intel.com>
7464 M:      Xu Yilun <yilun.xu@intel.com>
7465 R:      Tom Rix <trix@redhat.com>
7466 L:      linux-fpga@vger.kernel.org
7467 S:      Maintained
7468 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
7469 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git
7470 F:      Documentation/devicetree/bindings/fpga/
7471 F:      Documentation/driver-api/fpga/
7472 F:      Documentation/fpga/
7473 F:      drivers/fpga/
7474 F:      include/linux/fpga/
7475
7476 FPU EMULATOR
7477 M:      Bill Metzenthen <billm@melbpc.org.au>
7478 S:      Maintained
7479 W:      http://floatingpoint.sourceforge.net/emulator/index.html
7480 F:      arch/x86/math-emu/
7481
7482 FRAMEBUFFER LAYER
7483 L:      dri-devel@lists.freedesktop.org
7484 L:      linux-fbdev@vger.kernel.org
7485 S:      Orphan
7486 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
7487 T:      git git://anongit.freedesktop.org/drm/drm-misc
7488 F:      Documentation/fb/
7489 F:      drivers/video/
7490 F:      include/linux/fb.h
7491 F:      include/uapi/linux/fb.h
7492 F:      include/uapi/video/
7493 F:      include/video/
7494
7495 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
7496 M:      Horia Geantă <horia.geanta@nxp.com>
7497 M:      Pankaj Gupta <pankaj.gupta@nxp.com>
7498 L:      linux-crypto@vger.kernel.org
7499 S:      Maintained
7500 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
7501 F:      drivers/crypto/caam/
7502
7503 FREESCALE COLDFIRE M5441X MMC DRIVER
7504 M:      Angelo Dureghello <angelo.dureghello@timesys.com>
7505 L:      linux-mmc@vger.kernel.org
7506 S:      Maintained
7507 F:      drivers/mmc/host/sdhci-esdhc-mcf.c
7508 F:      include/linux/platform_data/mmc-esdhc-mcf.h
7509
7510 FREESCALE DIU FRAMEBUFFER DRIVER
7511 M:      Timur Tabi <timur@kernel.org>
7512 L:      linux-fbdev@vger.kernel.org
7513 S:      Maintained
7514 F:      drivers/video/fbdev/fsl-diu-fb.*
7515
7516 FREESCALE DMA DRIVER
7517 M:      Li Yang <leoyang.li@nxp.com>
7518 M:      Zhang Wei <zw@zh-kernel.org>
7519 L:      linuxppc-dev@lists.ozlabs.org
7520 S:      Maintained
7521 F:      drivers/dma/fsldma.*
7522
7523 FREESCALE DSPI DRIVER
7524 M:      Vladimir Oltean <olteanv@gmail.com>
7525 L:      linux-spi@vger.kernel.org
7526 S:      Maintained
7527 F:      Documentation/devicetree/bindings/spi/spi-fsl-dspi.txt
7528 F:      drivers/spi/spi-fsl-dspi.c
7529 F:      include/linux/spi/spi-fsl-dspi.h
7530
7531 FREESCALE ENETC ETHERNET DRIVERS
7532 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7533 L:      netdev@vger.kernel.org
7534 S:      Maintained
7535 F:      drivers/net/ethernet/freescale/enetc/
7536
7537 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
7538 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7539 L:      netdev@vger.kernel.org
7540 S:      Maintained
7541 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
7542 F:      drivers/net/ethernet/freescale/gianfar*
7543
7544 FREESCALE GPMI NAND DRIVER
7545 M:      Han Xu <han.xu@nxp.com>
7546 L:      linux-mtd@lists.infradead.org
7547 S:      Maintained
7548 F:      drivers/mtd/nand/raw/gpmi-nand/*
7549
7550 FREESCALE I2C CPM DRIVER
7551 M:      Jochen Friedrich <jochen@scram.de>
7552 L:      linuxppc-dev@lists.ozlabs.org
7553 L:      linux-i2c@vger.kernel.org
7554 S:      Maintained
7555 F:      drivers/i2c/busses/i2c-cpm.c
7556
7557 FREESCALE IMX / MXC FEC DRIVER
7558 M:      Joakim Zhang <qiangqing.zhang@nxp.com>
7559 L:      netdev@vger.kernel.org
7560 S:      Maintained
7561 F:      Documentation/devicetree/bindings/net/fsl,fec.yaml
7562 F:      drivers/net/ethernet/freescale/fec.h
7563 F:      drivers/net/ethernet/freescale/fec_main.c
7564 F:      drivers/net/ethernet/freescale/fec_ptp.c
7565
7566 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
7567 M:      Sascha Hauer <s.hauer@pengutronix.de>
7568 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7569 L:      linux-fbdev@vger.kernel.org
7570 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7571 S:      Maintained
7572 F:      drivers/video/fbdev/imxfb.c
7573 F:      include/linux/platform_data/video-imxfb.h
7574
7575 FREESCALE IMX DDR PMU DRIVER
7576 M:      Frank Li <Frank.li@nxp.com>
7577 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7578 S:      Maintained
7579 F:      Documentation/admin-guide/perf/imx-ddr.rst
7580 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.yaml
7581 F:      drivers/perf/fsl_imx8_ddr_perf.c
7582
7583 FREESCALE IMX I2C DRIVER
7584 M:      Oleksij Rempel <o.rempel@pengutronix.de>
7585 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7586 L:      linux-i2c@vger.kernel.org
7587 S:      Maintained
7588 F:      Documentation/devicetree/bindings/i2c/i2c-imx.yaml
7589 F:      drivers/i2c/busses/i2c-imx.c
7590
7591 FREESCALE IMX LPI2C DRIVER
7592 M:      Dong Aisheng <aisheng.dong@nxp.com>
7593 L:      linux-i2c@vger.kernel.org
7594 L:      linux-imx@nxp.com
7595 S:      Maintained
7596 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.yaml
7597 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
7598
7599 FREESCALE MPC I2C DRIVER
7600 M:      Chris Packham <chris.packham@alliedtelesis.co.nz>
7601 L:      linux-i2c@vger.kernel.org
7602 S:      Maintained
7603 F:      Documentation/devicetree/bindings/i2c/i2c-mpc.yaml
7604 F:      drivers/i2c/busses/i2c-mpc.c
7605
7606 FREESCALE QORIQ DPAA ETHERNET DRIVER
7607 M:      Madalin Bucur <madalin.bucur@nxp.com>
7608 L:      netdev@vger.kernel.org
7609 S:      Maintained
7610 F:      drivers/net/ethernet/freescale/dpaa
7611
7612 FREESCALE QORIQ DPAA FMAN DRIVER
7613 M:      Madalin Bucur <madalin.bucur@nxp.com>
7614 L:      netdev@vger.kernel.org
7615 S:      Maintained
7616 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
7617 F:      drivers/net/ethernet/freescale/fman
7618
7619 FREESCALE QORIQ PTP CLOCK DRIVER
7620 M:      Yangbo Lu <yangbo.lu@nxp.com>
7621 L:      netdev@vger.kernel.org
7622 S:      Maintained
7623 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
7624 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
7625 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
7626 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
7627 F:      drivers/ptp/ptp_qoriq.c
7628 F:      drivers/ptp/ptp_qoriq_debugfs.c
7629 F:      include/linux/fsl/ptp_qoriq.h
7630
7631 FREESCALE QUAD SPI DRIVER
7632 M:      Han Xu <han.xu@nxp.com>
7633 L:      linux-spi@vger.kernel.org
7634 S:      Maintained
7635 F:      Documentation/devicetree/bindings/spi/fsl,spi-fsl-qspi.yaml
7636 F:      drivers/spi/spi-fsl-qspi.c
7637
7638 FREESCALE QUICC ENGINE LIBRARY
7639 M:      Qiang Zhao <qiang.zhao@nxp.com>
7640 L:      linuxppc-dev@lists.ozlabs.org
7641 S:      Maintained
7642 F:      drivers/soc/fsl/qe/
7643 F:      include/soc/fsl/*qe*.h
7644 F:      include/soc/fsl/*ucc*.h
7645
7646 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
7647 M:      Li Yang <leoyang.li@nxp.com>
7648 L:      netdev@vger.kernel.org
7649 L:      linuxppc-dev@lists.ozlabs.org
7650 S:      Maintained
7651 F:      drivers/net/ethernet/freescale/ucc_geth*
7652
7653 FREESCALE QUICC ENGINE UCC HDLC DRIVER
7654 M:      Zhao Qiang <qiang.zhao@nxp.com>
7655 L:      netdev@vger.kernel.org
7656 L:      linuxppc-dev@lists.ozlabs.org
7657 S:      Maintained
7658 F:      drivers/net/wan/fsl_ucc_hdlc*
7659
7660 FREESCALE QUICC ENGINE UCC UART DRIVER
7661 M:      Timur Tabi <timur@kernel.org>
7662 L:      linuxppc-dev@lists.ozlabs.org
7663 S:      Maintained
7664 F:      drivers/tty/serial/ucc_uart.c
7665
7666 FREESCALE SOC DRIVERS
7667 M:      Li Yang <leoyang.li@nxp.com>
7668 L:      linuxppc-dev@lists.ozlabs.org
7669 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7670 S:      Maintained
7671 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.yaml
7672 F:      Documentation/devicetree/bindings/soc/fsl/
7673 F:      drivers/soc/fsl/
7674 F:      include/linux/fsl/
7675
7676 FREESCALE SOC FS_ENET DRIVER
7677 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
7678 L:      linuxppc-dev@lists.ozlabs.org
7679 L:      netdev@vger.kernel.org
7680 S:      Maintained
7681 F:      drivers/net/ethernet/freescale/fs_enet/
7682 F:      include/linux/fs_enet_pd.h
7683
7684 FREESCALE SOC SOUND DRIVERS
7685 M:      Nicolin Chen <nicoleotsuka@gmail.com>
7686 M:      Xiubo Li <Xiubo.Lee@gmail.com>
7687 R:      Fabio Estevam <festevam@gmail.com>
7688 R:      Shengjiu Wang <shengjiu.wang@gmail.com>
7689 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7690 L:      linuxppc-dev@lists.ozlabs.org
7691 S:      Maintained
7692 F:      sound/soc/fsl/fsl*
7693 F:      sound/soc/fsl/imx*
7694 F:      sound/soc/fsl/mpc8610_hpcd.c
7695
7696 FREESCALE USB PERIPHERAL DRIVERS
7697 M:      Li Yang <leoyang.li@nxp.com>
7698 L:      linux-usb@vger.kernel.org
7699 L:      linuxppc-dev@lists.ozlabs.org
7700 S:      Maintained
7701 F:      drivers/usb/gadget/udc/fsl*
7702
7703 FREESCALE USB PHY DRIVER
7704 M:      Ran Wang <ran.wang_1@nxp.com>
7705 L:      linux-usb@vger.kernel.org
7706 L:      linuxppc-dev@lists.ozlabs.org
7707 S:      Maintained
7708 F:      drivers/usb/phy/phy-fsl-usb*
7709
7710 FREEVXFS FILESYSTEM
7711 M:      Christoph Hellwig <hch@infradead.org>
7712 S:      Maintained
7713 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
7714 F:      fs/freevxfs/
7715
7716 FREEZER
7717 M:      "Rafael J. Wysocki" <rafael@kernel.org>
7718 M:      Pavel Machek <pavel@ucw.cz>
7719 L:      linux-pm@vger.kernel.org
7720 S:      Supported
7721 F:      Documentation/power/freezing-of-tasks.rst
7722 F:      include/linux/freezer.h
7723 F:      kernel/freezer.c
7724
7725 FRONTSWAP API
7726 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7727 L:      linux-kernel@vger.kernel.org
7728 S:      Maintained
7729 F:      include/linux/frontswap.h
7730 F:      mm/frontswap.c
7731
7732 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
7733 M:      David Howells <dhowells@redhat.com>
7734 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
7735 S:      Supported
7736 F:      Documentation/filesystems/caching/
7737 F:      fs/fscache/
7738 F:      include/linux/fscache*.h
7739
7740 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
7741 M:      Theodore Y. Ts'o <tytso@mit.edu>
7742 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7743 M:      Eric Biggers <ebiggers@kernel.org>
7744 L:      linux-fscrypt@vger.kernel.org
7745 S:      Supported
7746 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7747 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
7748 F:      Documentation/filesystems/fscrypt.rst
7749 F:      fs/crypto/
7750 F:      include/linux/fscrypt*.h
7751 F:      include/uapi/linux/fscrypt.h
7752
7753 FSI SUBSYSTEM
7754 M:      Jeremy Kerr <jk@ozlabs.org>
7755 M:      Joel Stanley <joel@jms.id.au>
7756 R:      Alistar Popple <alistair@popple.id.au>
7757 R:      Eddie James <eajames@linux.ibm.com>
7758 L:      linux-fsi@lists.ozlabs.org
7759 S:      Supported
7760 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
7761 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
7762 F:      drivers/fsi/
7763 F:      include/linux/fsi*.h
7764 F:      include/trace/events/fsi*.h
7765
7766 FSI-ATTACHED I2C DRIVER
7767 M:      Eddie James <eajames@linux.ibm.com>
7768 L:      linux-i2c@vger.kernel.org
7769 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
7770 S:      Maintained
7771 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
7772 F:      drivers/i2c/busses/i2c-fsi.c
7773
7774 FSI-ATTACHED SPI DRIVER
7775 M:      Eddie James <eajames@linux.ibm.com>
7776 L:      linux-spi@vger.kernel.org
7777 S:      Maintained
7778 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
7779 F:      drivers/spi/spi-fsi.c
7780
7781 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
7782 M:      Jan Kara <jack@suse.cz>
7783 R:      Amir Goldstein <amir73il@gmail.com>
7784 L:      linux-fsdevel@vger.kernel.org
7785 S:      Maintained
7786 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
7787 F:      fs/notify/
7788 F:      include/linux/fsnotify*.h
7789
7790 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
7791 M:      Eric Biggers <ebiggers@kernel.org>
7792 M:      Theodore Y. Ts'o <tytso@mit.edu>
7793 L:      linux-fscrypt@vger.kernel.org
7794 S:      Supported
7795 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7796 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
7797 F:      Documentation/filesystems/fsverity.rst
7798 F:      fs/verity/
7799 F:      include/linux/fsverity.h
7800 F:      include/uapi/linux/fsverity.h
7801
7802 FT260 FTDI USB-HID TO I2C BRIDGE DRIVER
7803 M:      Michael Zaidman <michael.zaidman@gmail.com>
7804 L:      linux-i2c@vger.kernel.org
7805 L:      linux-input@vger.kernel.org
7806 S:      Maintained
7807 F:      drivers/hid/hid-ft260.c
7808
7809 FUJITSU LAPTOP EXTRAS
7810 M:      Jonathan Woithe <jwoithe@just42.net>
7811 L:      platform-driver-x86@vger.kernel.org
7812 S:      Maintained
7813 F:      drivers/platform/x86/fujitsu-laptop.c
7814
7815 FUJITSU M-5MO LS CAMERA ISP DRIVER
7816 M:      Kyungmin Park <kyungmin.park@samsung.com>
7817 M:      Heungjun Kim <riverful.kim@samsung.com>
7818 L:      linux-media@vger.kernel.org
7819 S:      Maintained
7820 F:      drivers/media/i2c/m5mols/
7821 F:      include/media/i2c/m5mols.h
7822
7823 FUJITSU TABLET EXTRAS
7824 M:      Robert Gerlach <khnz@gmx.de>
7825 L:      platform-driver-x86@vger.kernel.org
7826 S:      Maintained
7827 F:      drivers/platform/x86/fujitsu-tablet.c
7828
7829 FUSE: FILESYSTEM IN USERSPACE
7830 M:      Miklos Szeredi <miklos@szeredi.hu>
7831 L:      linux-fsdevel@vger.kernel.org
7832 S:      Maintained
7833 W:      https://github.com/libfuse/
7834 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
7835 F:      Documentation/filesystems/fuse.rst
7836 F:      fs/fuse/
7837 F:      include/uapi/linux/fuse.h
7838
7839 FUTEX SUBSYSTEM
7840 M:      Thomas Gleixner <tglx@linutronix.de>
7841 M:      Ingo Molnar <mingo@redhat.com>
7842 R:      Peter Zijlstra <peterz@infradead.org>
7843 R:      Darren Hart <dvhart@infradead.org>
7844 R:      Davidlohr Bueso <dave@stgolabs.net>
7845 R:      André Almeida <andrealmeid@collabora.com>
7846 L:      linux-kernel@vger.kernel.org
7847 S:      Maintained
7848 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
7849 F:      Documentation/locking/*futex*
7850 F:      include/asm-generic/futex.h
7851 F:      include/linux/futex.h
7852 F:      include/uapi/linux/futex.h
7853 F:      kernel/futex/*
7854 F:      tools/perf/bench/futex*
7855 F:      tools/testing/selftests/futex/
7856
7857 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
7858 M:      Tim Harvey <tharvey@gateworks.com>
7859 M:      Robert Jones <rjones@gateworks.com>
7860 S:      Maintained
7861 F:      Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
7862 F:      drivers/mfd/gateworks-gsc.c
7863 F:      include/linux/mfd/gsc.h
7864 F:      Documentation/hwmon/gsc-hwmon.rst
7865 F:      drivers/hwmon/gsc-hwmon.c
7866 F:      include/linux/platform_data/gsc_hwmon.h
7867
7868 GCC PLUGINS
7869 M:      Kees Cook <keescook@chromium.org>
7870 L:      linux-hardening@vger.kernel.org
7871 S:      Maintained
7872 F:      Documentation/kbuild/gcc-plugins.rst
7873 F:      scripts/Makefile.gcc-plugins
7874 F:      scripts/gcc-plugins/
7875
7876 GCOV BASED KERNEL PROFILING
7877 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
7878 S:      Maintained
7879 F:      Documentation/dev-tools/gcov.rst
7880 F:      kernel/gcov/
7881
7882 GDB KERNEL DEBUGGING HELPER SCRIPTS
7883 M:      Jan Kiszka <jan.kiszka@siemens.com>
7884 M:      Kieran Bingham <kbingham@kernel.org>
7885 S:      Supported
7886 F:      scripts/gdb/
7887
7888 GEMINI CRYPTO DRIVER
7889 M:      Corentin Labbe <clabbe@baylibre.com>
7890 L:      linux-crypto@vger.kernel.org
7891 S:      Maintained
7892 F:      drivers/crypto/gemini/
7893
7894 GEMTEK FM RADIO RECEIVER DRIVER
7895 M:      Hans Verkuil <hverkuil@xs4all.nl>
7896 L:      linux-media@vger.kernel.org
7897 S:      Maintained
7898 W:      https://linuxtv.org
7899 T:      git git://linuxtv.org/media_tree.git
7900 F:      drivers/media/radio/radio-gemtek*
7901
7902 GENERIC ARCHITECTURE TOPOLOGY
7903 M:      Sudeep Holla <sudeep.holla@arm.com>
7904 L:      linux-kernel@vger.kernel.org
7905 S:      Maintained
7906 F:      drivers/base/arch_topology.c
7907 F:      include/linux/arch_topology.h
7908
7909 GENERIC ENTRY CODE
7910 M:      Thomas Gleixner <tglx@linutronix.de>
7911 M:      Peter Zijlstra <peterz@infradead.org>
7912 M:      Andy Lutomirski <luto@kernel.org>
7913 L:      linux-kernel@vger.kernel.org
7914 S:      Maintained
7915 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/entry
7916 F:      include/linux/entry-common.h
7917 F:      include/linux/entry-kvm.h
7918 F:      kernel/entry/
7919
7920 GENERIC GPIO I2C DRIVER
7921 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7922 S:      Supported
7923 F:      drivers/i2c/busses/i2c-gpio.c
7924 F:      include/linux/platform_data/i2c-gpio.h
7925
7926 GENERIC GPIO I2C MULTIPLEXER DRIVER
7927 M:      Peter Korsgaard <peter.korsgaard@barco.com>
7928 L:      linux-i2c@vger.kernel.org
7929 S:      Supported
7930 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
7931 F:      drivers/i2c/muxes/i2c-mux-gpio.c
7932 F:      include/linux/platform_data/i2c-mux-gpio.h
7933
7934 GENERIC HDLC (WAN) DRIVERS
7935 M:      Krzysztof Halasa <khc@pm.waw.pl>
7936 S:      Maintained
7937 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
7938 F:      drivers/net/wan/c101.c
7939 F:      drivers/net/wan/hd6457*
7940 F:      drivers/net/wan/hdlc*
7941 F:      drivers/net/wan/n2.c
7942 F:      drivers/net/wan/pc300too.c
7943 F:      drivers/net/wan/pci200syn.c
7944 F:      drivers/net/wan/wanxl*
7945
7946 GENERIC INCLUDE/ASM HEADER FILES
7947 M:      Arnd Bergmann <arnd@arndb.de>
7948 L:      linux-arch@vger.kernel.org
7949 S:      Maintained
7950 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
7951 F:      include/asm-generic/
7952 F:      include/uapi/asm-generic/
7953
7954 GENERIC PHY FRAMEWORK
7955 M:      Kishon Vijay Abraham I <kishon@ti.com>
7956 M:      Vinod Koul <vkoul@kernel.org>
7957 L:      linux-phy@lists.infradead.org
7958 S:      Supported
7959 Q:      https://patchwork.kernel.org/project/linux-phy/list/
7960 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
7961 F:      Documentation/devicetree/bindings/phy/
7962 F:      drivers/phy/
7963 F:      include/linux/phy/
7964
7965 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
7966 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7967 S:      Supported
7968 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
7969
7970 GENERIC PM DOMAINS
7971 M:      "Rafael J. Wysocki" <rafael@kernel.org>
7972 M:      Kevin Hilman <khilman@kernel.org>
7973 M:      Ulf Hansson <ulf.hansson@linaro.org>
7974 L:      linux-pm@vger.kernel.org
7975 S:      Supported
7976 F:      Documentation/devicetree/bindings/power/power?domain*
7977 F:      drivers/base/power/domain*.c
7978 F:      include/linux/pm_domain.h
7979
7980 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
7981 M:      Eugen Hristev <eugen.hristev@microchip.com>
7982 L:      linux-input@vger.kernel.org
7983 S:      Maintained
7984 F:      drivers/input/touchscreen/resistive-adc-touch.c
7985
7986 GENERIC STRING LIBRARY
7987 R:      Andy Shevchenko <andy@kernel.org>
7988 S:      Maintained
7989 F:      lib/string.c
7990 F:      lib/string_helpers.c
7991 F:      lib/test_string.c
7992 F:      lib/test-string_helpers.c
7993
7994 GENERIC UIO DRIVER FOR PCI DEVICES
7995 M:      "Michael S. Tsirkin" <mst@redhat.com>
7996 L:      kvm@vger.kernel.org
7997 S:      Supported
7998 F:      drivers/uio/uio_pci_generic.c
7999
8000 GENERIC VDSO LIBRARY
8001 M:      Andy Lutomirski <luto@kernel.org>
8002 M:      Thomas Gleixner <tglx@linutronix.de>
8003 M:      Vincenzo Frascino <vincenzo.frascino@arm.com>
8004 L:      linux-kernel@vger.kernel.org
8005 S:      Maintained
8006 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
8007 F:      include/asm-generic/vdso/vsyscall.h
8008 F:      include/vdso/
8009 F:      kernel/time/vsyscall.c
8010 F:      lib/vdso/
8011
8012 GENWQE (IBM Generic Workqueue Card)
8013 M:      Frank Haverkamp <haver@linux.ibm.com>
8014 S:      Supported
8015 F:      drivers/misc/genwqe/
8016
8017 GET_MAINTAINER SCRIPT
8018 M:      Joe Perches <joe@perches.com>
8019 S:      Maintained
8020 F:      scripts/get_maintainer.pl
8021
8022 GFS2 FILE SYSTEM
8023 M:      Bob Peterson <rpeterso@redhat.com>
8024 M:      Andreas Gruenbacher <agruenba@redhat.com>
8025 L:      cluster-devel@redhat.com
8026 S:      Supported
8027 B:      https://bugzilla.kernel.org/enter_bug.cgi?product=File%20System&component=gfs2
8028 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
8029 F:      Documentation/filesystems/gfs2*
8030 F:      fs/gfs2/
8031 F:      include/uapi/linux/gfs2_ondisk.h
8032
8033 GIGABYTE WMI DRIVER
8034 M:      Thomas Weißschuh <thomas@weissschuh.net>
8035 L:      platform-driver-x86@vger.kernel.org
8036 S:      Maintained
8037 F:      drivers/platform/x86/gigabyte-wmi.c
8038
8039 GNSS SUBSYSTEM
8040 M:      Johan Hovold <johan@kernel.org>
8041 S:      Maintained
8042 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
8043 F:      Documentation/ABI/testing/sysfs-class-gnss
8044 F:      Documentation/devicetree/bindings/gnss/
8045 F:      drivers/gnss/
8046 F:      include/linux/gnss.h
8047
8048 GO7007 MPEG CODEC
8049 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
8050 L:      linux-media@vger.kernel.org
8051 S:      Maintained
8052 F:      drivers/media/usb/go7007/
8053
8054 GOODIX TOUCHSCREEN
8055 M:      Bastien Nocera <hadess@hadess.net>
8056 L:      linux-input@vger.kernel.org
8057 S:      Maintained
8058 F:      drivers/input/touchscreen/goodix.c
8059
8060 GOOGLE ETHERNET DRIVERS
8061 M:      Jeroen de Borst <jeroendb@google.com>
8062 R:      Catherine Sullivan <csully@google.com>
8063 R:      David Awogbemila <awogbemila@google.com>
8064 L:      netdev@vger.kernel.org
8065 S:      Supported
8066 F:      Documentation/networking/device_drivers/ethernet/google/gve.rst
8067 F:      drivers/net/ethernet/google
8068
8069 GPD POCKET FAN DRIVER
8070 M:      Hans de Goede <hdegoede@redhat.com>
8071 L:      platform-driver-x86@vger.kernel.org
8072 S:      Maintained
8073 F:      drivers/platform/x86/gpd-pocket-fan.c
8074
8075 GPIO ACPI SUPPORT
8076 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8077 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8078 L:      linux-gpio@vger.kernel.org
8079 L:      linux-acpi@vger.kernel.org
8080 S:      Maintained
8081 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8082 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
8083 F:      drivers/gpio/gpiolib-acpi.c
8084 F:      drivers/gpio/gpiolib-acpi.h
8085
8086 GPIO AGGREGATOR
8087 M:      Geert Uytterhoeven <geert+renesas@glider.be>
8088 L:      linux-gpio@vger.kernel.org
8089 S:      Supported
8090 F:      Documentation/admin-guide/gpio/gpio-aggregator.rst
8091 F:      drivers/gpio/gpio-aggregator.c
8092
8093 GPIO IR Transmitter
8094 M:      Sean Young <sean@mess.org>
8095 L:      linux-media@vger.kernel.org
8096 S:      Maintained
8097 F:      drivers/media/rc/gpio-ir-tx.c
8098
8099 GPIO MOCKUP DRIVER
8100 M:      Bamvor Jian Zhang <bamv2005@gmail.com>
8101 L:      linux-gpio@vger.kernel.org
8102 S:      Maintained
8103 F:      drivers/gpio/gpio-mockup.c
8104 F:      tools/testing/selftests/gpio/
8105
8106 GPIO REGMAP
8107 R:      Michael Walle <michael@walle.cc>
8108 S:      Maintained
8109 F:      drivers/gpio/gpio-regmap.c
8110 F:      include/linux/gpio/regmap.h
8111
8112 GPIO SUBSYSTEM
8113 M:      Linus Walleij <linus.walleij@linaro.org>
8114 M:      Bartosz Golaszewski <brgl@bgdev.pl>
8115 L:      linux-gpio@vger.kernel.org
8116 S:      Maintained
8117 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
8118 F:      Documentation/ABI/obsolete/sysfs-gpio
8119 F:      Documentation/ABI/testing/gpio-cdev
8120 F:      Documentation/admin-guide/gpio/
8121 F:      Documentation/devicetree/bindings/gpio/
8122 F:      Documentation/driver-api/gpio/
8123 F:      drivers/gpio/
8124 F:      include/asm-generic/gpio.h
8125 F:      include/linux/gpio.h
8126 F:      include/linux/gpio/
8127 F:      include/linux/of_gpio.h
8128 F:      include/uapi/linux/gpio.h
8129 F:      tools/gpio/
8130
8131 GRE DEMULTIPLEXER DRIVER
8132 M:      Dmitry Kozlov <xeb@mail.ru>
8133 L:      netdev@vger.kernel.org
8134 S:      Maintained
8135 F:      include/net/gre.h
8136 F:      net/ipv4/gre_demux.c
8137 F:      net/ipv4/gre_offload.c
8138
8139 GRETH 10/100/1G Ethernet MAC device driver
8140 M:      Andreas Larsson <andreas@gaisler.com>
8141 L:      netdev@vger.kernel.org
8142 S:      Maintained
8143 F:      drivers/net/ethernet/aeroflex/
8144
8145 GREYBUS AUDIO PROTOCOLS DRIVERS
8146 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
8147 M:      Mark Greer <mgreer@animalcreek.com>
8148 S:      Maintained
8149 F:      drivers/staging/greybus/audio_apbridgea.c
8150 F:      drivers/staging/greybus/audio_apbridgea.h
8151 F:      drivers/staging/greybus/audio_codec.c
8152 F:      drivers/staging/greybus/audio_codec.h
8153 F:      drivers/staging/greybus/audio_gb.c
8154 F:      drivers/staging/greybus/audio_manager.c
8155 F:      drivers/staging/greybus/audio_manager.h
8156 F:      drivers/staging/greybus/audio_manager_module.c
8157 F:      drivers/staging/greybus/audio_manager_private.h
8158 F:      drivers/staging/greybus/audio_manager_sysfs.c
8159 F:      drivers/staging/greybus/audio_module.c
8160 F:      drivers/staging/greybus/audio_topology.c
8161
8162 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
8163 M:      Viresh Kumar <vireshk@kernel.org>
8164 S:      Maintained
8165 F:      drivers/staging/greybus/authentication.c
8166 F:      drivers/staging/greybus/bootrom.c
8167 F:      drivers/staging/greybus/firmware.h
8168 F:      drivers/staging/greybus/fw-core.c
8169 F:      drivers/staging/greybus/fw-download.c
8170 F:      drivers/staging/greybus/fw-management.c
8171 F:      drivers/staging/greybus/greybus_authentication.h
8172 F:      drivers/staging/greybus/greybus_firmware.h
8173 F:      drivers/staging/greybus/hid.c
8174 F:      drivers/staging/greybus/i2c.c
8175 F:      drivers/staging/greybus/spi.c
8176 F:      drivers/staging/greybus/spilib.c
8177 F:      drivers/staging/greybus/spilib.h
8178
8179 GREYBUS LOOPBACK DRIVER
8180 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
8181 S:      Maintained
8182 F:      drivers/staging/greybus/loopback.c
8183
8184 GREYBUS PLATFORM DRIVERS
8185 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
8186 S:      Maintained
8187 F:      drivers/staging/greybus/arche-apb-ctrl.c
8188 F:      drivers/staging/greybus/arche-platform.c
8189 F:      drivers/staging/greybus/arche_platform.h
8190
8191 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
8192 M:      Rui Miguel Silva <rmfrfs@gmail.com>
8193 S:      Maintained
8194 F:      drivers/staging/greybus/gpio.c
8195 F:      drivers/staging/greybus/light.c
8196 F:      drivers/staging/greybus/power_supply.c
8197 F:      drivers/staging/greybus/sdio.c
8198 F:      drivers/staging/greybus/spi.c
8199 F:      drivers/staging/greybus/spilib.c
8200
8201 GREYBUS SUBSYSTEM
8202 M:      Johan Hovold <johan@kernel.org>
8203 M:      Alex Elder <elder@kernel.org>
8204 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8205 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
8206 S:      Maintained
8207 F:      drivers/greybus/
8208 F:      drivers/staging/greybus/
8209 F:      include/linux/greybus.h
8210 F:      include/linux/greybus/
8211
8212 GREYBUS UART PROTOCOLS DRIVERS
8213 M:      David Lin <dtwlin@gmail.com>
8214 S:      Maintained
8215 F:      drivers/staging/greybus/log.c
8216 F:      drivers/staging/greybus/uart.c
8217
8218 GS1662 VIDEO SERIALIZER
8219 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
8220 L:      linux-media@vger.kernel.org
8221 S:      Maintained
8222 T:      git git://linuxtv.org/media_tree.git
8223 F:      drivers/media/spi/gs1662.c
8224
8225 GSPCA FINEPIX SUBDRIVER
8226 M:      Frank Zago <frank@zago.net>
8227 L:      linux-media@vger.kernel.org
8228 S:      Maintained
8229 T:      git git://linuxtv.org/media_tree.git
8230 F:      drivers/media/usb/gspca/finepix.c
8231
8232 GSPCA GL860 SUBDRIVER
8233 M:      Olivier Lorin <o.lorin@laposte.net>
8234 L:      linux-media@vger.kernel.org
8235 S:      Maintained
8236 T:      git git://linuxtv.org/media_tree.git
8237 F:      drivers/media/usb/gspca/gl860/
8238
8239 GSPCA M5602 SUBDRIVER
8240 M:      Erik Andren <erik.andren@gmail.com>
8241 L:      linux-media@vger.kernel.org
8242 S:      Maintained
8243 T:      git git://linuxtv.org/media_tree.git
8244 F:      drivers/media/usb/gspca/m5602/
8245
8246 GSPCA PAC207 SONIXB SUBDRIVER
8247 M:      Hans Verkuil <hverkuil@xs4all.nl>
8248 L:      linux-media@vger.kernel.org
8249 S:      Odd Fixes
8250 T:      git git://linuxtv.org/media_tree.git
8251 F:      drivers/media/usb/gspca/pac207.c
8252
8253 GSPCA SN9C20X SUBDRIVER
8254 M:      Brian Johnson <brijohn@gmail.com>
8255 L:      linux-media@vger.kernel.org
8256 S:      Maintained
8257 T:      git git://linuxtv.org/media_tree.git
8258 F:      drivers/media/usb/gspca/sn9c20x.c
8259
8260 GSPCA T613 SUBDRIVER
8261 M:      Leandro Costantino <lcostantino@gmail.com>
8262 L:      linux-media@vger.kernel.org
8263 S:      Maintained
8264 T:      git git://linuxtv.org/media_tree.git
8265 F:      drivers/media/usb/gspca/t613.c
8266
8267 GSPCA USB WEBCAM DRIVER
8268 M:      Hans Verkuil <hverkuil@xs4all.nl>
8269 L:      linux-media@vger.kernel.org
8270 S:      Odd Fixes
8271 T:      git git://linuxtv.org/media_tree.git
8272 F:      drivers/media/usb/gspca/
8273
8274 GTP (GPRS Tunneling Protocol)
8275 M:      Pablo Neira Ayuso <pablo@netfilter.org>
8276 M:      Harald Welte <laforge@gnumonks.org>
8277 L:      osmocom-net-gprs@lists.osmocom.org
8278 S:      Maintained
8279 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
8280 F:      drivers/net/gtp.c
8281
8282 GUID PARTITION TABLE (GPT)
8283 M:      Davidlohr Bueso <dave@stgolabs.net>
8284 L:      linux-efi@vger.kernel.org
8285 S:      Maintained
8286 F:      block/partitions/efi.*
8287
8288 H8/300 ARCHITECTURE
8289 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
8290 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
8291 S:      Maintained
8292 W:      http://uclinux-h8.sourceforge.jp
8293 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
8294 F:      arch/h8300/
8295 F:      drivers/clk/h8300/
8296 F:      drivers/clocksource/h8300_*.c
8297 F:      drivers/irqchip/irq-renesas-h8*.c
8298
8299 HABANALABS PCI DRIVER
8300 M:      Oded Gabbay <ogabbay@kernel.org>
8301 S:      Supported
8302 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/linux.git
8303 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
8304 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
8305 F:      drivers/misc/habanalabs/
8306 F:      include/uapi/misc/habanalabs.h
8307
8308 HACKRF MEDIA DRIVER
8309 M:      Antti Palosaari <crope@iki.fi>
8310 L:      linux-media@vger.kernel.org
8311 S:      Maintained
8312 W:      https://linuxtv.org
8313 W:      http://palosaari.fi/linux/
8314 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8315 T:      git git://linuxtv.org/anttip/media_tree.git
8316 F:      drivers/media/usb/hackrf/
8317
8318 HANTRO VPU CODEC DRIVER
8319 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
8320 M:      Philipp Zabel <p.zabel@pengutronix.de>
8321 L:      linux-media@vger.kernel.org
8322 L:      linux-rockchip@lists.infradead.org
8323 S:      Maintained
8324 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
8325 F:      Documentation/devicetree/bindings/media/rockchip-vpu.yaml
8326 F:      drivers/staging/media/hantro/
8327
8328 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
8329 M:      Frank Seidel <frank@f-seidel.de>
8330 L:      platform-driver-x86@vger.kernel.org
8331 S:      Maintained
8332 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
8333 F:      drivers/platform/x86/hdaps.c
8334
8335 HARDWARE MONITORING
8336 M:      Jean Delvare <jdelvare@suse.com>
8337 M:      Guenter Roeck <linux@roeck-us.net>
8338 L:      linux-hwmon@vger.kernel.org
8339 S:      Maintained
8340 W:      http://hwmon.wiki.kernel.org/
8341 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8342 F:      Documentation/ABI/testing/sysfs-class-hwmon
8343 F:      Documentation/devicetree/bindings/hwmon/
8344 F:      Documentation/hwmon/
8345 F:      drivers/hwmon/
8346 F:      include/linux/hwmon*.h
8347 F:      include/trace/events/hwmon*.h
8348 K:      (devm_)?hwmon_device_(un)?register(|_with_groups|_with_info)
8349
8350 HARDWARE RANDOM NUMBER GENERATOR CORE
8351 M:      Matt Mackall <mpm@selenic.com>
8352 M:      Herbert Xu <herbert@gondor.apana.org.au>
8353 L:      linux-crypto@vger.kernel.org
8354 S:      Odd fixes
8355 F:      Documentation/admin-guide/hw_random.rst
8356 F:      Documentation/devicetree/bindings/rng/
8357 F:      drivers/char/hw_random/
8358 F:      include/linux/hw_random.h
8359
8360 HARDWARE SPINLOCK CORE
8361 M:      Ohad Ben-Cohen <ohad@wizery.com>
8362 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
8363 R:      Baolin Wang <baolin.wang7@gmail.com>
8364 L:      linux-remoteproc@vger.kernel.org
8365 S:      Maintained
8366 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
8367 F:      Documentation/devicetree/bindings/hwlock/
8368 F:      Documentation/locking/hwspinlock.rst
8369 F:      drivers/hwspinlock/
8370 F:      include/linux/hwspinlock.h
8371
8372 HARDWARE TRACING FACILITIES
8373 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
8374 S:      Maintained
8375 F:      drivers/hwtracing/
8376
8377 HARMONY SOUND DRIVER
8378 L:      linux-parisc@vger.kernel.org
8379 S:      Maintained
8380 F:      sound/parisc/harmony.*
8381
8382 HDPVR USB VIDEO ENCODER DRIVER
8383 M:      Hans Verkuil <hverkuil@xs4all.nl>
8384 L:      linux-media@vger.kernel.org
8385 S:      Odd Fixes
8386 W:      https://linuxtv.org
8387 T:      git git://linuxtv.org/media_tree.git
8388 F:      drivers/media/usb/hdpvr/
8389
8390 HEWLETT PACKARD ENTERPRISE ILO CHIF DRIVER
8391 M:      Matt Hsiao <matt.hsiao@hpe.com>
8392 S:      Supported
8393 F:      drivers/misc/hpilo.[ch]
8394
8395 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
8396 M:      Jerry Hoemann <jerry.hoemann@hpe.com>
8397 S:      Supported
8398 F:      Documentation/watchdog/hpwdt.rst
8399 F:      drivers/watchdog/hpwdt.c
8400
8401 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
8402 M:      Don Brace <don.brace@microchip.com>
8403 L:      storagedev@microchip.com
8404 L:      linux-scsi@vger.kernel.org
8405 S:      Supported
8406 F:      Documentation/scsi/hpsa.rst
8407 F:      drivers/scsi/hpsa*.[ch]
8408 F:      include/linux/cciss*.h
8409 F:      include/uapi/linux/cciss*.h
8410
8411 HFI1 DRIVER
8412 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
8413 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
8414 L:      linux-rdma@vger.kernel.org
8415 S:      Supported
8416 F:      drivers/infiniband/hw/hfi1
8417
8418 HFS FILESYSTEM
8419 L:      linux-fsdevel@vger.kernel.org
8420 S:      Orphan
8421 F:      Documentation/filesystems/hfs.rst
8422 F:      fs/hfs/
8423
8424 HFSPLUS FILESYSTEM
8425 L:      linux-fsdevel@vger.kernel.org
8426 S:      Orphan
8427 F:      Documentation/filesystems/hfsplus.rst
8428 F:      fs/hfsplus/
8429
8430 HGA FRAMEBUFFER DRIVER
8431 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
8432 L:      linux-nvidia@lists.surfsouth.com
8433 S:      Maintained
8434 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
8435 F:      drivers/video/fbdev/hgafb.c
8436
8437 HIBERNATION (aka Software Suspend, aka swsusp)
8438 M:      "Rafael J. Wysocki" <rafael@kernel.org>
8439 M:      Pavel Machek <pavel@ucw.cz>
8440 L:      linux-pm@vger.kernel.org
8441 S:      Supported
8442 B:      https://bugzilla.kernel.org
8443 F:      arch/*/include/asm/suspend*.h
8444 F:      arch/x86/power/
8445 F:      drivers/base/power/
8446 F:      include/linux/freezer.h
8447 F:      include/linux/pm.h
8448 F:      include/linux/suspend.h
8449 F:      kernel/power/
8450
8451 HID CORE LAYER
8452 M:      Jiri Kosina <jikos@kernel.org>
8453 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
8454 L:      linux-input@vger.kernel.org
8455 S:      Maintained
8456 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
8457 F:      drivers/hid/
8458 F:      include/linux/hid*
8459 F:      include/uapi/linux/hid*
8460
8461 HID PLAYSTATION DRIVER
8462 M:      Roderick Colenbrander <roderick.colenbrander@sony.com>
8463 L:      linux-input@vger.kernel.org
8464 S:      Supported
8465 F:      drivers/hid/hid-playstation.c
8466
8467 HID SENSOR HUB DRIVERS
8468 M:      Jiri Kosina <jikos@kernel.org>
8469 M:      Jonathan Cameron <jic23@kernel.org>
8470 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8471 L:      linux-input@vger.kernel.org
8472 L:      linux-iio@vger.kernel.org
8473 S:      Maintained
8474 F:      Documentation/hid/hid-sensor*
8475 F:      drivers/hid/hid-sensor-*
8476 F:      drivers/iio/*/hid-*
8477 F:      include/linux/hid-sensor-*
8478
8479 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
8480 M:      Thomas Gleixner <tglx@linutronix.de>
8481 L:      linux-kernel@vger.kernel.org
8482 S:      Maintained
8483 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8484 F:      Documentation/timers/
8485 F:      include/linux/clockchips.h
8486 F:      include/linux/hrtimer.h
8487 F:      kernel/time/clockevents.c
8488 F:      kernel/time/hrtimer.c
8489 F:      kernel/time/timer_*.c
8490
8491 HIGH-SPEED SCC DRIVER FOR AX.25
8492 L:      linux-hams@vger.kernel.org
8493 S:      Orphan
8494 F:      drivers/net/hamradio/dmascc.c
8495 F:      drivers/net/hamradio/scc.c
8496
8497 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
8498 M:      HighPoint Linux Team <linux@highpoint-tech.com>
8499 S:      Supported
8500 W:      http://www.highpoint-tech.com
8501 F:      Documentation/scsi/hptiop.rst
8502 F:      drivers/scsi/hptiop.c
8503
8504 HIPPI
8505 M:      Jes Sorensen <jes@trained-monkey.org>
8506 L:      linux-hippi@sunsite.dk
8507 S:      Maintained
8508 F:      drivers/net/hippi/
8509 F:      include/linux/hippidevice.h
8510 F:      include/uapi/linux/if_hippi.h
8511 F:      net/802/hippi.c
8512
8513 HIRSCHMANN HELLCREEK ETHERNET SWITCH DRIVER
8514 M:      Kurt Kanzenbach <kurt@linutronix.de>
8515 L:      netdev@vger.kernel.org
8516 S:      Maintained
8517 F:      Documentation/devicetree/bindings/net/dsa/hirschmann,hellcreek.yaml
8518 F:      drivers/net/dsa/hirschmann/*
8519 F:      include/linux/platform_data/hirschmann-hellcreek.h
8520 F:      net/dsa/tag_hellcreek.c
8521
8522 HISILICON DMA DRIVER
8523 M:      Zhou Wang <wangzhou1@hisilicon.com>
8524 L:      dmaengine@vger.kernel.org
8525 S:      Maintained
8526 F:      drivers/dma/hisi_dma.c
8527
8528 HISILICON GPIO DRIVER
8529 M:      Luo Jiaxing <luojiaxing@huawei.com>
8530 L:      linux-gpio@vger.kernel.org
8531 S:      Maintained
8532 F:      drivers/gpio/gpio-hisi.c
8533
8534 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
8535 M:      Zaibo Xu <xuzaibo@huawei.com>
8536 L:      linux-crypto@vger.kernel.org
8537 S:      Maintained
8538 F:      Documentation/ABI/testing/debugfs-hisi-hpre
8539 F:      drivers/crypto/hisilicon/hpre/hpre.h
8540 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
8541 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
8542
8543 HISILICON I2C CONTROLLER DRIVER
8544 M:      Yicong Yang <yangyicong@hisilicon.com>
8545 L:      linux-i2c@vger.kernel.org
8546 S:      Maintained
8547 W:      https://www.hisilicon.com
8548 F:      drivers/i2c/busses/i2c-hisi.c
8549
8550 HISILICON LPC BUS DRIVER
8551 M:      john.garry@huawei.com
8552 S:      Maintained
8553 W:      http://www.hisilicon.com
8554 F:      Documentation/devicetree/bindings/arm/hisilicon/low-pin-count.yaml
8555 F:      drivers/bus/hisi_lpc.c
8556
8557 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
8558 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
8559 M:      Salil Mehta <salil.mehta@huawei.com>
8560 L:      netdev@vger.kernel.org
8561 S:      Maintained
8562 W:      http://www.hisilicon.com
8563 F:      drivers/net/ethernet/hisilicon/hns3/
8564
8565 HISILICON NETWORK SUBSYSTEM DRIVER
8566 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
8567 M:      Salil Mehta <salil.mehta@huawei.com>
8568 L:      netdev@vger.kernel.org
8569 S:      Maintained
8570 W:      http://www.hisilicon.com
8571 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
8572 F:      drivers/net/ethernet/hisilicon/
8573
8574 HIKEY960 ONBOARD USB GPIO HUB DRIVER
8575 M:      John Stultz <john.stultz@linaro.org>
8576 L:      linux-kernel@vger.kernel.org
8577 S:      Maintained
8578 F:      drivers/misc/hisi_hikey_usb.c
8579
8580 HISILICON PMU DRIVER
8581 M:      Shaokun Zhang <zhangshaokun@hisilicon.com>
8582 S:      Supported
8583 W:      http://www.hisilicon.com
8584 F:      Documentation/admin-guide/perf/hisi-pmu.rst
8585 F:      drivers/perf/hisilicon
8586
8587 HISILICON QM AND ZIP Controller DRIVER
8588 M:      Zhou Wang <wangzhou1@hisilicon.com>
8589 L:      linux-crypto@vger.kernel.org
8590 S:      Maintained
8591 F:      Documentation/ABI/testing/debugfs-hisi-zip
8592 F:      drivers/crypto/hisilicon/qm.c
8593 F:      drivers/crypto/hisilicon/qm.h
8594 F:      drivers/crypto/hisilicon/sgl.c
8595 F:      drivers/crypto/hisilicon/zip/
8596
8597 HISILICON ROCE DRIVER
8598 M:      Wenpeng Liang <liangwenpeng@huawei.com>
8599 M:      Weihang Li <liweihang@huawei.com>
8600 L:      linux-rdma@vger.kernel.org
8601 S:      Maintained
8602 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
8603 F:      drivers/infiniband/hw/hns/
8604
8605 HISILICON SAS Controller
8606 M:      John Garry <john.garry@huawei.com>
8607 S:      Supported
8608 W:      http://www.hisilicon.com
8609 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
8610 F:      drivers/scsi/hisi_sas/
8611
8612 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
8613 M:      Zaibo Xu <xuzaibo@huawei.com>
8614 L:      linux-crypto@vger.kernel.org
8615 S:      Maintained
8616 F:      Documentation/ABI/testing/debugfs-hisi-sec
8617 F:      drivers/crypto/hisilicon/sec2/sec.h
8618 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
8619 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
8620 F:      drivers/crypto/hisilicon/sec2/sec_main.c
8621
8622 HISILICON SPI Controller DRIVER FOR KUNPENG SOCS
8623 M:      Jay Fang <f.fangjian@huawei.com>
8624 L:      linux-spi@vger.kernel.org
8625 S:      Maintained
8626 W:      http://www.hisilicon.com
8627 F:      drivers/spi/spi-hisi-kunpeng.c
8628
8629 HISILICON SPMI CONTROLLER DRIVER FOR HIKEY 970
8630 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8631 L:      linux-kernel@vger.kernel.org
8632 S:      Maintained
8633 F:      Documentation/devicetree/bindings/spmi/hisilicon,hisi-spmi-controller.yaml
8634 F:      drivers/spmi/hisi-spmi-controller.c
8635
8636 HISILICON SPMI PMIC DRIVER FOR HIKEY 6421v600
8637 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8638 L:      linux-kernel@vger.kernel.org
8639 S:      Maintained
8640 F:      Documentation/devicetree/bindings/mfd/hisilicon,hi6421-spmi-pmic.yaml
8641 F:      drivers/mfd/hi6421-spmi-pmic.c
8642
8643 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
8644 M:      Zaibo Xu <xuzaibo@huawei.com>
8645 S:      Maintained
8646 F:      drivers/crypto/hisilicon/trng/trng.c
8647
8648 HISILICON V3XX SPI NOR FLASH Controller Driver
8649 M:      John Garry <john.garry@huawei.com>
8650 S:      Maintained
8651 W:      http://www.hisilicon.com
8652 F:      drivers/spi/spi-hisi-sfc-v3xx.c
8653
8654 HMM - Heterogeneous Memory Management
8655 M:      Jérôme Glisse <jglisse@redhat.com>
8656 L:      linux-mm@kvack.org
8657 S:      Maintained
8658 F:      Documentation/vm/hmm.rst
8659 F:      include/linux/hmm*
8660 F:      lib/test_hmm*
8661 F:      mm/hmm*
8662 F:      tools/testing/selftests/vm/*hmm*
8663
8664 HOST AP DRIVER
8665 M:      Jouni Malinen <j@w1.fi>
8666 L:      linux-wireless@vger.kernel.org
8667 S:      Obsolete
8668 W:      http://w1.fi/hostap-driver.html
8669 F:      drivers/net/wireless/intersil/hostap/
8670
8671 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
8672 L:      platform-driver-x86@vger.kernel.org
8673 S:      Orphan
8674 F:      drivers/platform/x86/tc1100-wmi.c
8675
8676 HPET:   High Precision Event Timers driver
8677 M:      Clemens Ladisch <clemens@ladisch.de>
8678 S:      Maintained
8679 F:      Documentation/timers/hpet.rst
8680 F:      drivers/char/hpet.c
8681 F:      include/linux/hpet.h
8682 F:      include/uapi/linux/hpet.h
8683
8684 HPET:   x86
8685 S:      Orphan
8686 F:      arch/x86/include/asm/hpet.h
8687 F:      arch/x86/kernel/hpet.c
8688
8689 HPFS FILESYSTEM
8690 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
8691 S:      Maintained
8692 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
8693 F:      fs/hpfs/
8694
8695 HSI SUBSYSTEM
8696 M:      Sebastian Reichel <sre@kernel.org>
8697 S:      Maintained
8698 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
8699 F:      Documentation/ABI/testing/sysfs-bus-hsi
8700 F:      Documentation/driver-api/hsi.rst
8701 F:      drivers/hsi/
8702 F:      include/linux/hsi/
8703 F:      include/uapi/linux/hsi/
8704
8705 HSO 3G MODEM DRIVER
8706 L:      linux-usb@vger.kernel.org
8707 S:      Orphan
8708 F:      drivers/net/usb/hso.c
8709
8710 HSR NETWORK PROTOCOL
8711 L:      netdev@vger.kernel.org
8712 S:      Orphan
8713 F:      net/hsr/
8714
8715 HT16K33 LED CONTROLLER DRIVER
8716 M:      Robin van der Gracht <robin@protonic.nl>
8717 S:      Maintained
8718 F:      Documentation/devicetree/bindings/auxdisplay/holtek,ht16k33.yaml
8719 F:      drivers/auxdisplay/ht16k33.c
8720
8721 HTCPEN TOUCHSCREEN DRIVER
8722 M:      Pau Oliva Fora <pof@eslack.org>
8723 L:      linux-input@vger.kernel.org
8724 S:      Maintained
8725 F:      drivers/input/touchscreen/htcpen.c
8726
8727 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
8728 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
8729 L:      linux-iio@vger.kernel.org
8730 S:      Maintained
8731 W:      http://www.st.com/
8732 F:      Documentation/devicetree/bindings/iio/humidity/st,hts221.yaml
8733 F:      drivers/iio/humidity/hts221*
8734
8735 HUAWEI ETHERNET DRIVER
8736 L:      netdev@vger.kernel.org
8737 S:      Orphan
8738 F:      Documentation/networking/device_drivers/ethernet/huawei/hinic.rst
8739 F:      drivers/net/ethernet/huawei/hinic/
8740
8741 HUGETLB FILESYSTEM
8742 M:      Mike Kravetz <mike.kravetz@oracle.com>
8743 L:      linux-mm@kvack.org
8744 S:      Maintained
8745 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
8746 F:      Documentation/admin-guide/mm/hugetlbpage.rst
8747 F:      Documentation/vm/hugetlbfs_reserv.rst
8748 F:      fs/hugetlbfs/
8749 F:      include/linux/hugetlb.h
8750 F:      mm/hugetlb.c
8751
8752 HVA ST MEDIA DRIVER
8753 M:      Jean-Christophe Trotin <jean-christophe.trotin@foss.st.com>
8754 L:      linux-media@vger.kernel.org
8755 S:      Supported
8756 W:      https://linuxtv.org
8757 T:      git git://linuxtv.org/media_tree.git
8758 F:      drivers/media/platform/sti/hva
8759
8760 HWPOISON MEMORY FAILURE HANDLING
8761 M:      Naoya Horiguchi <naoya.horiguchi@nec.com>
8762 L:      linux-mm@kvack.org
8763 S:      Maintained
8764 F:      mm/hwpoison-inject.c
8765 F:      mm/memory-failure.c
8766
8767 HYCON HY46XX TOUCHSCREEN SUPPORT
8768 M:      Giulio Benetti <giulio.benetti@benettiengineering.com>
8769 L:      linux-input@vger.kernel.org
8770 S:      Maintained
8771 F:      Documentation/devicetree/bindings/input/touchscreen/hycon,hy46xx.yaml
8772 F:      drivers/input/touchscreen/hycon-hy46xx.c
8773
8774 HYGON PROCESSOR SUPPORT
8775 M:      Pu Wen <puwen@hygon.cn>
8776 L:      linux-kernel@vger.kernel.org
8777 S:      Maintained
8778 F:      arch/x86/kernel/cpu/hygon.c
8779
8780 HYNIX HI556 SENSOR DRIVER
8781 M:      Shawn Tu <shawnx.tu@intel.com>
8782 L:      linux-media@vger.kernel.org
8783 S:      Maintained
8784 T:      git git://linuxtv.org/media_tree.git
8785 F:      drivers/media/i2c/hi556.c
8786
8787 HYNIX HI846 SENSOR DRIVER
8788 M:      Martin Kepplinger <martin.kepplinger@puri.sm>
8789 L:      linux-media@vger.kernel.org
8790 S:      Maintained
8791 F:      drivers/media/i2c/hi846.c
8792
8793 Hyper-V/Azure CORE AND DRIVERS
8794 M:      "K. Y. Srinivasan" <kys@microsoft.com>
8795 M:      Haiyang Zhang <haiyangz@microsoft.com>
8796 M:      Stephen Hemminger <sthemmin@microsoft.com>
8797 M:      Wei Liu <wei.liu@kernel.org>
8798 M:      Dexuan Cui <decui@microsoft.com>
8799 L:      linux-hyperv@vger.kernel.org
8800 S:      Supported
8801 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
8802 F:      Documentation/ABI/stable/sysfs-bus-vmbus
8803 F:      Documentation/ABI/testing/debugfs-hyperv
8804 F:      Documentation/networking/device_drivers/ethernet/microsoft/netvsc.rst
8805 F:      arch/arm64/hyperv
8806 F:      arch/arm64/include/asm/hyperv-tlfs.h
8807 F:      arch/arm64/include/asm/mshyperv.h
8808 F:      arch/x86/hyperv
8809 F:      arch/x86/include/asm/hyperv-tlfs.h
8810 F:      arch/x86/include/asm/mshyperv.h
8811 F:      arch/x86/include/asm/trace/hyperv.h
8812 F:      arch/x86/kernel/cpu/mshyperv.c
8813 F:      drivers/clocksource/hyperv_timer.c
8814 F:      drivers/hid/hid-hyperv.c
8815 F:      drivers/hv/
8816 F:      drivers/input/serio/hyperv-keyboard.c
8817 F:      drivers/iommu/hyperv-iommu.c
8818 F:      drivers/net/ethernet/microsoft/
8819 F:      drivers/net/hyperv/
8820 F:      drivers/pci/controller/pci-hyperv-intf.c
8821 F:      drivers/pci/controller/pci-hyperv.c
8822 F:      drivers/scsi/storvsc_drv.c
8823 F:      drivers/uio/uio_hv_generic.c
8824 F:      drivers/video/fbdev/hyperv_fb.c
8825 F:      include/asm-generic/hyperv-tlfs.h
8826 F:      include/asm-generic/mshyperv.h
8827 F:      include/clocksource/hyperv_timer.h
8828 F:      include/linux/hyperv.h
8829 F:      include/uapi/linux/hyperv.h
8830 F:      net/vmw_vsock/hyperv_transport.c
8831 F:      tools/hv/
8832
8833 HYPERBUS SUPPORT
8834 M:      Vignesh Raghavendra <vigneshr@ti.com>
8835 L:      linux-mtd@lists.infradead.org
8836 S:      Supported
8837 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
8838 C:      irc://irc.oftc.net/mtd
8839 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
8840 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.yaml
8841 F:      drivers/mtd/hyperbus/
8842 F:      include/linux/mtd/hyperbus.h
8843
8844 HYPERVISOR VIRTUAL CONSOLE DRIVER
8845 L:      linuxppc-dev@lists.ozlabs.org
8846 S:      Odd Fixes
8847 F:      drivers/tty/hvc/
8848
8849 I2C ACPI SUPPORT
8850 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8851 L:      linux-i2c@vger.kernel.org
8852 L:      linux-acpi@vger.kernel.org
8853 S:      Maintained
8854 F:      drivers/i2c/i2c-core-acpi.c
8855
8856 I2C CONTROLLER DRIVER FOR NVIDIA GPU
8857 M:      Ajay Gupta <ajayg@nvidia.com>
8858 L:      linux-i2c@vger.kernel.org
8859 S:      Maintained
8860 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
8861 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
8862
8863 I2C MUXES
8864 M:      Peter Rosin <peda@axentia.se>
8865 L:      linux-i2c@vger.kernel.org
8866 S:      Maintained
8867 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
8868 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
8869 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
8870 F:      Documentation/i2c/i2c-topology.rst
8871 F:      Documentation/i2c/muxes/
8872 F:      drivers/i2c/i2c-mux.c
8873 F:      drivers/i2c/muxes/
8874 F:      include/linux/i2c-mux.h
8875
8876 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
8877 M:      Gregory CLEMENT <gregory.clement@bootlin.com>
8878 L:      linux-i2c@vger.kernel.org
8879 S:      Maintained
8880 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
8881 F:      drivers/i2c/busses/i2c-mv64xxx.c
8882
8883 I2C OVER PARALLEL PORT
8884 M:      Jean Delvare <jdelvare@suse.com>
8885 L:      linux-i2c@vger.kernel.org
8886 S:      Maintained
8887 F:      Documentation/i2c/busses/i2c-parport.rst
8888 F:      drivers/i2c/busses/i2c-parport.c
8889
8890 I2C SUBSYSTEM
8891 M:      Wolfram Sang <wsa@kernel.org>
8892 L:      linux-i2c@vger.kernel.org
8893 S:      Maintained
8894 W:      https://i2c.wiki.kernel.org/
8895 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8896 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8897 F:      Documentation/devicetree/bindings/i2c/i2c.txt
8898 F:      Documentation/i2c/
8899 F:      drivers/i2c/*
8900 F:      include/linux/i2c-dev.h
8901 F:      include/linux/i2c-smbus.h
8902 F:      include/linux/i2c.h
8903 F:      include/uapi/linux/i2c-*.h
8904 F:      include/uapi/linux/i2c.h
8905
8906 I2C SUBSYSTEM HOST DRIVERS
8907 L:      linux-i2c@vger.kernel.org
8908 S:      Odd Fixes
8909 W:      https://i2c.wiki.kernel.org/
8910 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8911 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8912 F:      Documentation/devicetree/bindings/i2c/
8913 F:      drivers/i2c/algos/
8914 F:      drivers/i2c/busses/
8915
8916 I2C-TAOS-EVM DRIVER
8917 M:      Jean Delvare <jdelvare@suse.com>
8918 L:      linux-i2c@vger.kernel.org
8919 S:      Maintained
8920 F:      Documentation/i2c/busses/i2c-taos-evm.rst
8921 F:      drivers/i2c/busses/i2c-taos-evm.c
8922
8923 I2C-TINY-USB DRIVER
8924 M:      Till Harbaum <till@harbaum.org>
8925 L:      linux-i2c@vger.kernel.org
8926 S:      Maintained
8927 W:      http://www.harbaum.org/till/i2c_tiny_usb
8928 F:      drivers/i2c/busses/i2c-tiny-usb.c
8929
8930 I2C/SMBUS CONTROLLER DRIVERS FOR PC
8931 M:      Jean Delvare <jdelvare@suse.com>
8932 L:      linux-i2c@vger.kernel.org
8933 S:      Maintained
8934 F:      Documentation/i2c/busses/i2c-ali1535.rst
8935 F:      Documentation/i2c/busses/i2c-ali1563.rst
8936 F:      Documentation/i2c/busses/i2c-ali15x3.rst
8937 F:      Documentation/i2c/busses/i2c-amd756.rst
8938 F:      Documentation/i2c/busses/i2c-amd8111.rst
8939 F:      Documentation/i2c/busses/i2c-i801.rst
8940 F:      Documentation/i2c/busses/i2c-nforce2.rst
8941 F:      Documentation/i2c/busses/i2c-piix4.rst
8942 F:      Documentation/i2c/busses/i2c-sis5595.rst
8943 F:      Documentation/i2c/busses/i2c-sis630.rst
8944 F:      Documentation/i2c/busses/i2c-sis96x.rst
8945 F:      Documentation/i2c/busses/i2c-via.rst
8946 F:      Documentation/i2c/busses/i2c-viapro.rst
8947 F:      drivers/i2c/busses/i2c-ali1535.c
8948 F:      drivers/i2c/busses/i2c-ali1563.c
8949 F:      drivers/i2c/busses/i2c-ali15x3.c
8950 F:      drivers/i2c/busses/i2c-amd756-s4882.c
8951 F:      drivers/i2c/busses/i2c-amd756.c
8952 F:      drivers/i2c/busses/i2c-amd8111.c
8953 F:      drivers/i2c/busses/i2c-i801.c
8954 F:      drivers/i2c/busses/i2c-isch.c
8955 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
8956 F:      drivers/i2c/busses/i2c-nforce2.c
8957 F:      drivers/i2c/busses/i2c-piix4.c
8958 F:      drivers/i2c/busses/i2c-sis5595.c
8959 F:      drivers/i2c/busses/i2c-sis630.c
8960 F:      drivers/i2c/busses/i2c-sis96x.c
8961 F:      drivers/i2c/busses/i2c-via.c
8962 F:      drivers/i2c/busses/i2c-viapro.c
8963
8964 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
8965 M:      Hans de Goede <hdegoede@redhat.com>
8966 L:      linux-i2c@vger.kernel.org
8967 S:      Maintained
8968 F:      drivers/i2c/busses/i2c-cht-wc.c
8969
8970 I2C/SMBUS ISMT DRIVER
8971 M:      Seth Heasley <seth.heasley@intel.com>
8972 M:      Neil Horman <nhorman@tuxdriver.com>
8973 L:      linux-i2c@vger.kernel.org
8974 F:      Documentation/i2c/busses/i2c-ismt.rst
8975 F:      drivers/i2c/busses/i2c-ismt.c
8976
8977 I2C/SMBUS STUB DRIVER
8978 M:      Jean Delvare <jdelvare@suse.com>
8979 L:      linux-i2c@vger.kernel.org
8980 S:      Maintained
8981 F:      drivers/i2c/i2c-stub.c
8982
8983 I3C DRIVER FOR CADENCE I3C MASTER IP
8984 M:      Przemysław Gaj <pgaj@cadence.com>
8985 S:      Maintained
8986 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.txt
8987 F:      drivers/i3c/master/i3c-master-cdns.c
8988
8989 I3C DRIVER FOR SYNOPSYS DESIGNWARE
8990 M:      Vitor Soares <vitor.soares@synopsys.com>
8991 S:      Maintained
8992 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
8993 F:      drivers/i3c/master/dw*
8994
8995 I3C SUBSYSTEM
8996 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
8997 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
8998 S:      Maintained
8999 C:      irc://chat.freenode.net/linux-i3c
9000 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
9001 F:      Documentation/ABI/testing/sysfs-bus-i3c
9002 F:      Documentation/devicetree/bindings/i3c/
9003 F:      Documentation/driver-api/i3c
9004 F:      drivers/i3c/
9005 F:      include/linux/i3c/
9006
9007 IA64 (Itanium) PLATFORM
9008 L:      linux-ia64@vger.kernel.org
9009 S:      Orphan
9010 F:      Documentation/ia64/
9011 F:      arch/ia64/
9012
9013 IBM Power 842 compression accelerator
9014 M:      Haren Myneni <haren@us.ibm.com>
9015 S:      Supported
9016 F:      crypto/842.c
9017 F:      drivers/crypto/nx/Kconfig
9018 F:      drivers/crypto/nx/Makefile
9019 F:      drivers/crypto/nx/nx-842*
9020 F:      include/linux/sw842.h
9021 F:      lib/842/
9022
9023 IBM Power in-Nest Crypto Acceleration
9024 M:      Breno Leitão <leitao@debian.org>
9025 M:      Nayna Jain <nayna@linux.ibm.com>
9026 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
9027 L:      linux-crypto@vger.kernel.org
9028 S:      Supported
9029 F:      drivers/crypto/nx/Kconfig
9030 F:      drivers/crypto/nx/Makefile
9031 F:      drivers/crypto/nx/nx-aes*
9032 F:      drivers/crypto/nx/nx-sha*
9033 F:      drivers/crypto/nx/nx.*
9034 F:      drivers/crypto/nx/nx_csbcpb.h
9035 F:      drivers/crypto/nx/nx_debugfs.c
9036
9037 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
9038 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9039 L:      linux-pci@vger.kernel.org
9040 L:      linuxppc-dev@lists.ozlabs.org
9041 S:      Supported
9042 F:      drivers/pci/hotplug/rpadlpar*
9043
9044 IBM Power Linux RAID adapter
9045 M:      Brian King <brking@us.ibm.com>
9046 S:      Supported
9047 F:      drivers/scsi/ipr.*
9048
9049 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
9050 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9051 L:      linux-pci@vger.kernel.org
9052 L:      linuxppc-dev@lists.ozlabs.org
9053 S:      Supported
9054 F:      drivers/pci/hotplug/rpaphp*
9055
9056 IBM Power SRIOV Virtual NIC Device Driver
9057 M:      Dany Madden <drt@linux.ibm.com>
9058 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
9059 R:      Thomas Falcon <tlfalcon@linux.ibm.com>
9060 L:      netdev@vger.kernel.org
9061 S:      Supported
9062 F:      drivers/net/ethernet/ibm/ibmvnic.*
9063
9064 IBM Power Virtual Accelerator Switchboard
9065 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
9066 L:      linuxppc-dev@lists.ozlabs.org
9067 S:      Supported
9068 F:      arch/powerpc/include/asm/vas.h
9069 F:      arch/powerpc/platforms/powernv/copy-paste.h
9070 F:      arch/powerpc/platforms/powernv/vas*
9071
9072 IBM Power Virtual Ethernet Device Driver
9073 M:      Cristobal Forno <cforno12@linux.ibm.com>
9074 L:      netdev@vger.kernel.org
9075 S:      Supported
9076 F:      drivers/net/ethernet/ibm/ibmveth.*
9077
9078 IBM Power Virtual FC Device Drivers
9079 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9080 L:      linux-scsi@vger.kernel.org
9081 S:      Supported
9082 F:      drivers/scsi/ibmvscsi/ibmvfc*
9083
9084 IBM Power Virtual Management Channel Driver
9085 M:      Brad Warrum <bwarrum@linux.ibm.com>
9086 M:      Ritu Agarwal <rituagar@linux.ibm.com>
9087 S:      Supported
9088 F:      drivers/misc/ibmvmc.*
9089
9090 IBM Power Virtual SCSI Device Drivers
9091 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9092 L:      linux-scsi@vger.kernel.org
9093 S:      Supported
9094 F:      drivers/scsi/ibmvscsi/ibmvscsi*
9095 F:      include/scsi/viosrp.h
9096
9097 IBM Power Virtual SCSI Device Target Driver
9098 M:      Michael Cyr <mikecyr@linux.ibm.com>
9099 L:      linux-scsi@vger.kernel.org
9100 L:      target-devel@vger.kernel.org
9101 S:      Supported
9102 F:      drivers/scsi/ibmvscsi_tgt/
9103
9104 IBM Power VMX Cryptographic instructions
9105 M:      Breno Leitão <leitao@debian.org>
9106 M:      Nayna Jain <nayna@linux.ibm.com>
9107 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
9108 L:      linux-crypto@vger.kernel.org
9109 S:      Supported
9110 F:      drivers/crypto/vmx/Kconfig
9111 F:      drivers/crypto/vmx/Makefile
9112 F:      drivers/crypto/vmx/aes*
9113 F:      drivers/crypto/vmx/ghash*
9114 F:      drivers/crypto/vmx/ppc-xlate.pl
9115 F:      drivers/crypto/vmx/vmx.c
9116
9117 IBM ServeRAID RAID DRIVER
9118 S:      Orphan
9119 F:      drivers/scsi/ips.*
9120
9121 ICH LPC AND GPIO DRIVER
9122 M:      Peter Tyser <ptyser@xes-inc.com>
9123 S:      Maintained
9124 F:      drivers/gpio/gpio-ich.c
9125 F:      drivers/mfd/lpc_ich.c
9126
9127 ICY I2C DRIVER
9128 M:      Max Staudt <max@enpas.org>
9129 L:      linux-i2c@vger.kernel.org
9130 S:      Maintained
9131 F:      drivers/i2c/busses/i2c-icy.c
9132
9133 IDEAPAD LAPTOP EXTRAS DRIVER
9134 M:      Ike Panhc <ike.pan@canonical.com>
9135 L:      platform-driver-x86@vger.kernel.org
9136 S:      Maintained
9137 W:      http://launchpad.net/ideapad-laptop
9138 F:      drivers/platform/x86/ideapad-laptop.c
9139
9140 IDEAPAD LAPTOP SLIDEBAR DRIVER
9141 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
9142 L:      linux-input@vger.kernel.org
9143 S:      Maintained
9144 W:      https://github.com/o2genum/ideapad-slidebar
9145 F:      drivers/input/misc/ideapad_slidebar.c
9146
9147 IDT VersaClock 5 CLOCK DRIVER
9148 M:      Luca Ceresoli <luca@lucaceresoli.net>
9149 S:      Maintained
9150 F:      Documentation/devicetree/bindings/clock/idt,versaclock5.yaml
9151 F:      drivers/clk/clk-versaclock5.c
9152
9153 IEEE 802.15.4 SUBSYSTEM
9154 M:      Alexander Aring <alex.aring@gmail.com>
9155 M:      Stefan Schmidt <stefan@datenfreihafen.org>
9156 L:      linux-wpan@vger.kernel.org
9157 S:      Maintained
9158 W:      https://linux-wpan.org/
9159 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
9160 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
9161 F:      Documentation/networking/ieee802154.rst
9162 F:      drivers/net/ieee802154/
9163 F:      include/linux/ieee802154.h
9164 F:      include/linux/nl802154.h
9165 F:      include/net/af_ieee802154.h
9166 F:      include/net/cfg802154.h
9167 F:      include/net/ieee802154_netdev.h
9168 F:      include/net/mac802154.h
9169 F:      include/net/nl802154.h
9170 F:      net/ieee802154/
9171 F:      net/mac802154/
9172
9173 IFE PROTOCOL
9174 M:      Yotam Gigi <yotam.gi@gmail.com>
9175 M:      Jamal Hadi Salim <jhs@mojatatu.com>
9176 F:      include/net/ife.h
9177 F:      include/uapi/linux/ife.h
9178 F:      net/ife
9179
9180 IGORPLUG-USB IR RECEIVER
9181 M:      Sean Young <sean@mess.org>
9182 L:      linux-media@vger.kernel.org
9183 S:      Maintained
9184 F:      drivers/media/rc/igorplugusb.c
9185
9186 IGUANAWORKS USB IR TRANSCEIVER
9187 M:      Sean Young <sean@mess.org>
9188 L:      linux-media@vger.kernel.org
9189 S:      Maintained
9190 F:      drivers/media/rc/iguanair.c
9191
9192 IIO DIGITAL POTENTIOMETER DAC
9193 M:      Peter Rosin <peda@axentia.se>
9194 L:      linux-iio@vger.kernel.org
9195 S:      Maintained
9196 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
9197 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.yaml
9198 F:      drivers/iio/dac/dpot-dac.c
9199
9200 IIO ENVELOPE DETECTOR
9201 M:      Peter Rosin <peda@axentia.se>
9202 L:      linux-iio@vger.kernel.org
9203 S:      Maintained
9204 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
9205 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.yaml
9206 F:      drivers/iio/adc/envelope-detector.c
9207
9208 IIO MULTIPLEXER
9209 M:      Peter Rosin <peda@axentia.se>
9210 L:      linux-iio@vger.kernel.org
9211 S:      Maintained
9212 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.yaml
9213 F:      drivers/iio/multiplexer/iio-mux.c
9214
9215 IIO SCMI BASED DRIVER
9216 M:      Jyoti Bhayana <jbhayana@google.com>
9217 L:      linux-iio@vger.kernel.org
9218 S:      Maintained
9219 F:      drivers/iio/common/scmi_sensors/scmi_iio.c
9220
9221 IIO SUBSYSTEM AND DRIVERS
9222 M:      Jonathan Cameron <jic23@kernel.org>
9223 R:      Lars-Peter Clausen <lars@metafoo.de>
9224 L:      linux-iio@vger.kernel.org
9225 S:      Maintained
9226 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
9227 F:      Documentation/ABI/testing/configfs-iio*
9228 F:      Documentation/ABI/testing/sysfs-bus-iio*
9229 F:      Documentation/devicetree/bindings/iio/
9230 F:      drivers/iio/
9231 F:      drivers/staging/iio/
9232 F:      include/linux/iio/
9233 F:      tools/iio/
9234
9235 IIO UNIT CONVERTER
9236 M:      Peter Rosin <peda@axentia.se>
9237 L:      linux-iio@vger.kernel.org
9238 S:      Maintained
9239 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.yaml
9240 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.yaml
9241 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.yaml
9242 F:      drivers/iio/afe/iio-rescale.c
9243
9244 IKANOS/ADI EAGLE ADSL USB DRIVER
9245 M:      Matthieu Castet <castet.matthieu@free.fr>
9246 M:      Stanislaw Gruszka <stf_xl@wp.pl>
9247 S:      Maintained
9248 F:      drivers/usb/atm/ueagle-atm.c
9249
9250 IMGTEC ASCII LCD DRIVER
9251 M:      Paul Burton <paulburton@kernel.org>
9252 S:      Maintained
9253 F:      Documentation/devicetree/bindings/auxdisplay/img,ascii-lcd.yaml
9254 F:      drivers/auxdisplay/img-ascii-lcd.c
9255
9256 IMGTEC IR DECODER DRIVER
9257 S:      Orphan
9258 F:      drivers/media/rc/img-ir/
9259
9260 IMON SOUNDGRAPH USB IR RECEIVER
9261 M:      Sean Young <sean@mess.org>
9262 L:      linux-media@vger.kernel.org
9263 S:      Maintained
9264 F:      drivers/media/rc/imon.c
9265 F:      drivers/media/rc/imon_raw.c
9266
9267 IMS TWINTURBO FRAMEBUFFER DRIVER
9268 L:      linux-fbdev@vger.kernel.org
9269 S:      Orphan
9270 F:      drivers/video/fbdev/imsttfb.c
9271
9272 INA209 HARDWARE MONITOR DRIVER
9273 M:      Guenter Roeck <linux@roeck-us.net>
9274 L:      linux-hwmon@vger.kernel.org
9275 S:      Maintained
9276 F:      Documentation/devicetree/bindings/hwmon/ti,ina2xx.yaml
9277 F:      Documentation/hwmon/ina209.rst
9278 F:      drivers/hwmon/ina209.c
9279
9280 INA2XX HARDWARE MONITOR DRIVER
9281 M:      Guenter Roeck <linux@roeck-us.net>
9282 L:      linux-hwmon@vger.kernel.org
9283 S:      Maintained
9284 F:      Documentation/hwmon/ina2xx.rst
9285 F:      drivers/hwmon/ina2xx.c
9286 F:      include/linux/platform_data/ina2xx.h
9287
9288 INDUSTRY PACK SUBSYSTEM (IPACK)
9289 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
9290 M:      Jens Taprogge <jens.taprogge@taprogge.org>
9291 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9292 L:      industrypack-devel@lists.sourceforge.net
9293 S:      Maintained
9294 W:      http://industrypack.sourceforge.net
9295 F:      drivers/ipack/
9296
9297 INFINEON DPS310 Driver
9298 M:      Eddie James <eajames@linux.ibm.com>
9299 L:      linux-iio@vger.kernel.org
9300 S:      Maintained
9301 F:      drivers/iio/pressure/dps310.c
9302
9303 INFINIBAND SUBSYSTEM
9304 M:      Doug Ledford <dledford@redhat.com>
9305 M:      Jason Gunthorpe <jgg@nvidia.com>
9306 L:      linux-rdma@vger.kernel.org
9307 S:      Supported
9308 W:      https://github.com/linux-rdma/rdma-core
9309 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9310 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
9311 F:      Documentation/devicetree/bindings/infiniband/
9312 F:      Documentation/infiniband/
9313 F:      drivers/infiniband/
9314 F:      include/rdma/
9315 F:      include/trace/events/ib_mad.h
9316 F:      include/trace/events/ib_umad.h
9317 F:      include/uapi/linux/if_infiniband.h
9318 F:      include/uapi/rdma/
9319 F:      samples/bpf/ibumad_kern.c
9320 F:      samples/bpf/ibumad_user.c
9321
9322 INGENIC JZ4780 NAND DRIVER
9323 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
9324 L:      linux-mtd@lists.infradead.org
9325 L:      linux-mips@vger.kernel.org
9326 S:      Maintained
9327 F:      drivers/mtd/nand/raw/ingenic/
9328
9329 INGENIC JZ47xx SoCs
9330 M:      Paul Cercueil <paul@crapouillou.net>
9331 L:      linux-mips@vger.kernel.org
9332 S:      Maintained
9333 F:      arch/mips/boot/dts/ingenic/
9334 F:      arch/mips/generic/board-ingenic.c
9335 F:      arch/mips/include/asm/mach-ingenic/
9336 F:      arch/mips/ingenic/Kconfig
9337 F:      drivers/clk/ingenic/
9338 F:      drivers/dma/dma-jz4780.c
9339 F:      drivers/gpu/drm/ingenic/
9340 F:      drivers/i2c/busses/i2c-jz4780.c
9341 F:      drivers/iio/adc/ingenic-adc.c
9342 F:      drivers/irqchip/irq-ingenic.c
9343 F:      drivers/memory/jz4780-nemc.c
9344 F:      drivers/mmc/host/jz4740_mmc.c
9345 F:      drivers/mtd/nand/raw/ingenic/
9346 F:      drivers/pinctrl/pinctrl-ingenic.c
9347 F:      drivers/power/supply/ingenic-battery.c
9348 F:      drivers/pwm/pwm-jz4740.c
9349 F:      drivers/remoteproc/ingenic_rproc.c
9350 F:      drivers/rtc/rtc-jz4740.c
9351 F:      drivers/tty/serial/8250/8250_ingenic.c
9352 F:      drivers/usb/musb/jz4740.c
9353 F:      drivers/watchdog/jz4740_wdt.c
9354 F:      include/dt-bindings/iio/adc/ingenic,adc.h
9355 F:      include/linux/mfd/ingenic-tcu.h
9356 F:      sound/soc/codecs/jz47*
9357 F:      sound/soc/jz4740/
9358
9359 INOTIFY
9360 M:      Jan Kara <jack@suse.cz>
9361 R:      Amir Goldstein <amir73il@gmail.com>
9362 L:      linux-fsdevel@vger.kernel.org
9363 S:      Maintained
9364 F:      Documentation/filesystems/inotify.rst
9365 F:      fs/notify/inotify/
9366 F:      include/linux/inotify.h
9367 F:      include/uapi/linux/inotify.h
9368
9369 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
9370 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
9371 L:      linux-input@vger.kernel.org
9372 S:      Maintained
9373 Q:      http://patchwork.kernel.org/project/linux-input/list/
9374 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
9375 F:      Documentation/devicetree/bindings/input/
9376 F:      Documentation/devicetree/bindings/serio/
9377 F:      Documentation/input/
9378 F:      drivers/input/
9379 F:      include/linux/input.h
9380 F:      include/linux/input/
9381 F:      include/uapi/linux/input-event-codes.h
9382 F:      include/uapi/linux/input.h
9383
9384 INPUT MULTITOUCH (MT) PROTOCOL
9385 M:      Henrik Rydberg <rydberg@bitmath.org>
9386 L:      linux-input@vger.kernel.org
9387 S:      Odd fixes
9388 F:      Documentation/input/multi-touch-protocol.rst
9389 F:      drivers/input/input-mt.c
9390 K:      \b(ABS|SYN)_MT_
9391
9392 INSIDE SECURE CRYPTO DRIVER
9393 M:      Antoine Tenart <atenart@kernel.org>
9394 L:      linux-crypto@vger.kernel.org
9395 S:      Maintained
9396 F:      drivers/crypto/inside-secure/
9397
9398 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
9399 M:      Mimi Zohar <zohar@linux.ibm.com>
9400 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
9401 L:      linux-integrity@vger.kernel.org
9402 S:      Supported
9403 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
9404 F:      security/integrity/ima/
9405
9406 INTEL 810/815 FRAMEBUFFER DRIVER
9407 M:      Antonino Daplas <adaplas@gmail.com>
9408 L:      linux-fbdev@vger.kernel.org
9409 S:      Maintained
9410 F:      drivers/video/fbdev/i810/
9411
9412 INTEL ASoC DRIVERS
9413 M:      Cezary Rojewski <cezary.rojewski@intel.com>
9414 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
9415 M:      Liam Girdwood <liam.r.girdwood@linux.intel.com>
9416 M:      Jie Yang <yang.jie@linux.intel.com>
9417 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9418 S:      Supported
9419 F:      sound/soc/intel/
9420
9421 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
9422 M:      Hans de Goede <hdegoede@redhat.com>
9423 L:      platform-driver-x86@vger.kernel.org
9424 S:      Maintained
9425 F:      drivers/platform/x86/intel/atomisp2/pm.c
9426
9427 INTEL ATOMISP2 LED DRIVER
9428 M:      Hans de Goede <hdegoede@redhat.com>
9429 L:      platform-driver-x86@vger.kernel.org
9430 S:      Maintained
9431 F:      drivers/platform/x86/intel/atomisp2/led.c
9432
9433 INTEL BIOS SAR INT1092 DRIVER
9434 M:      Shravan Sudhakar <s.shravan@intel.com>
9435 M:      Intel Corporation <linuxwwan@intel.com>
9436 L:      platform-driver-x86@vger.kernel.org
9437 S:      Maintained
9438 F:      drivers/platform/x86/intel/int1092/
9439
9440 INTEL BROXTON PMC DRIVER
9441 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9442 M:      Zha Qipeng <qipeng.zha@intel.com>
9443 S:      Maintained
9444 F:      drivers/mfd/intel_pmc_bxt.c
9445 F:      include/linux/mfd/intel_pmc_bxt.h
9446
9447 INTEL C600 SERIES SAS CONTROLLER DRIVER
9448 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
9449 L:      linux-scsi@vger.kernel.org
9450 S:      Supported
9451 T:      git git://git.code.sf.net/p/intel-sas/isci
9452 F:      drivers/scsi/isci/
9453
9454 INTEL CPU family model numbers
9455 M:      Tony Luck <tony.luck@intel.com>
9456 M:      x86@kernel.org
9457 L:      linux-kernel@vger.kernel.org
9458 S:      Supported
9459 F:      arch/x86/include/asm/intel-family.h
9460
9461 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
9462 M:      Jani Nikula <jani.nikula@linux.intel.com>
9463 M:      Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
9464 M:      Rodrigo Vivi <rodrigo.vivi@intel.com>
9465 L:      intel-gfx@lists.freedesktop.org
9466 S:      Supported
9467 W:      https://01.org/linuxgraphics/
9468 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
9469 B:      https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
9470 C:      irc://irc.oftc.net/intel-gfx
9471 T:      git git://anongit.freedesktop.org/drm-intel
9472 F:      Documentation/gpu/i915.rst
9473 F:      drivers/gpu/drm/i915/
9474 F:      include/drm/i915*
9475 F:      include/uapi/drm/i915_drm.h
9476
9477 INTEL ETHERNET DRIVERS
9478 M:      Jesse Brandeburg <jesse.brandeburg@intel.com>
9479 M:      Tony Nguyen <anthony.l.nguyen@intel.com>
9480 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
9481 S:      Supported
9482 W:      http://www.intel.com/support/feedback.htm
9483 W:      http://e1000.sourceforge.net/
9484 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
9485 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queue.git
9486 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue.git
9487 F:      Documentation/networking/device_drivers/ethernet/intel/
9488 F:      drivers/net/ethernet/intel/
9489 F:      drivers/net/ethernet/intel/*/
9490 F:      include/linux/avf/virtchnl.h
9491 F:      include/linux/net/intel/iidc.h
9492
9493 INTEL ETHERNET PROTOCOL DRIVER FOR RDMA
9494 M:      Mustafa Ismail <mustafa.ismail@intel.com>
9495 M:      Shiraz Saleem <shiraz.saleem@intel.com>
9496 L:      linux-rdma@vger.kernel.org
9497 S:      Supported
9498 F:      drivers/infiniband/hw/irdma/
9499 F:      include/uapi/rdma/irdma-abi.h
9500
9501 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
9502 M:      Maik Broemme <mbroemme@libmpq.org>
9503 L:      linux-fbdev@vger.kernel.org
9504 S:      Maintained
9505 F:      Documentation/fb/intelfb.rst
9506 F:      drivers/video/fbdev/intelfb/
9507
9508 INTEL GPIO DRIVERS
9509 M:      Andy Shevchenko <andy@kernel.org>
9510 L:      linux-gpio@vger.kernel.org
9511 S:      Maintained
9512 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9513 F:      drivers/gpio/gpio-ich.c
9514 F:      drivers/gpio/gpio-merrifield.c
9515 F:      drivers/gpio/gpio-ml-ioh.c
9516 F:      drivers/gpio/gpio-pch.c
9517 F:      drivers/gpio/gpio-sch.c
9518 F:      drivers/gpio/gpio-sodaville.c
9519
9520 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
9521 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
9522 M:      Zhi Wang <zhi.a.wang@intel.com>
9523 L:      intel-gvt-dev@lists.freedesktop.org
9524 L:      intel-gfx@lists.freedesktop.org
9525 S:      Supported
9526 W:      https://01.org/igvt-g
9527 T:      git https://github.com/intel/gvt-linux.git
9528 F:      drivers/gpu/drm/i915/gvt/
9529
9530 INTEL HID EVENT DRIVER
9531 M:      Alex Hung <alex.hung@canonical.com>
9532 L:      platform-driver-x86@vger.kernel.org
9533 S:      Maintained
9534 F:      drivers/platform/x86/intel/hid.c
9535
9536 INTEL I/OAT DMA DRIVER
9537 M:      Dave Jiang <dave.jiang@intel.com>
9538 R:      Dan Williams <dan.j.williams@intel.com>
9539 L:      dmaengine@vger.kernel.org
9540 S:      Supported
9541 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
9542 F:      drivers/dma/ioat*
9543
9544 INTEL IADX DRIVER
9545 M:      Dave Jiang <dave.jiang@intel.com>
9546 L:      dmaengine@vger.kernel.org
9547 S:      Supported
9548 F:      drivers/dma/idxd/*
9549 F:      include/uapi/linux/idxd.h
9550
9551 INTEL IDLE DRIVER
9552 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
9553 M:      Len Brown <lenb@kernel.org>
9554 L:      linux-pm@vger.kernel.org
9555 S:      Supported
9556 B:      https://bugzilla.kernel.org
9557 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
9558 F:      drivers/idle/intel_idle.c
9559
9560 INTEL INTEGRATED SENSOR HUB DRIVER
9561 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9562 M:      Jiri Kosina <jikos@kernel.org>
9563 L:      linux-input@vger.kernel.org
9564 S:      Maintained
9565 F:      drivers/hid/intel-ish-hid/
9566
9567 INTEL IOMMU (VT-d)
9568 M:      David Woodhouse <dwmw2@infradead.org>
9569 M:      Lu Baolu <baolu.lu@linux.intel.com>
9570 L:      iommu@lists.linux-foundation.org
9571 S:      Supported
9572 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9573 F:      drivers/iommu/intel/
9574 F:      include/linux/intel-iommu.h
9575 F:      include/linux/intel-svm.h
9576
9577 INTEL IOP-ADMA DMA DRIVER
9578 R:      Dan Williams <dan.j.williams@intel.com>
9579 S:      Odd fixes
9580 F:      drivers/dma/iop-adma.c
9581
9582 INTEL IPU3 CSI-2 CIO2 DRIVER
9583 M:      Yong Zhi <yong.zhi@intel.com>
9584 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
9585 M:      Bingbu Cao <bingbu.cao@intel.com>
9586 M:      Dan Scally <djrscally@gmail.com>
9587 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
9588 L:      linux-media@vger.kernel.org
9589 S:      Maintained
9590 T:      git git://linuxtv.org/media_tree.git
9591 F:      Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
9592 F:      drivers/media/pci/intel/ipu3/
9593
9594 INTEL IPU3 CSI-2 IMGU DRIVER
9595 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
9596 R:      Bingbu Cao <bingbu.cao@intel.com>
9597 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
9598 L:      linux-media@vger.kernel.org
9599 S:      Maintained
9600 F:      Documentation/admin-guide/media/ipu3.rst
9601 F:      Documentation/admin-guide/media/ipu3_rcb.svg
9602 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
9603 F:      drivers/staging/media/ipu3/
9604
9605 INTEL IXP4XX CRYPTO SUPPORT
9606 M:      Corentin Labbe <clabbe@baylibre.com>
9607 L:      linux-crypto@vger.kernel.org
9608 S:      Maintained
9609 F:      drivers/crypto/ixp4xx_crypto.c
9610
9611 INTEL ISHTP ECLITE DRIVER
9612 M:      Sumesh K Naduvalath <sumesh.k.naduvalath@intel.com>
9613 L:      platform-driver-x86@vger.kernel.org
9614 S:      Supported
9615 F:      drivers/platform/x86/intel/ishtp_eclite.c
9616
9617 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
9618 M:      Krzysztof Halasa <khalasa@piap.pl>
9619 S:      Maintained
9620 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
9621 F:      drivers/net/wan/ixp4xx_hss.c
9622 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
9623 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
9624 F:      include/linux/soc/ixp4xx/npe.h
9625 F:      include/linux/soc/ixp4xx/qmgr.h
9626
9627 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
9628 M:      Deepak Saxena <dsaxena@plexity.net>
9629 S:      Maintained
9630 F:      Documentation/devicetree/bindings/rng/intel,ixp46x-rng.yaml
9631 F:      drivers/char/hw_random/ixp4xx-rng.c
9632
9633 INTEL KEEM BAY DRM DRIVER
9634 M:      Anitha Chrisanthus <anitha.chrisanthus@intel.com>
9635 M:      Edmund Dea <edmund.j.dea@intel.com>
9636 S:      Maintained
9637 F:      Documentation/devicetree/bindings/display/intel,keembay-display.yaml
9638 F:      drivers/gpu/drm/kmb/
9639
9640 INTEL KEEM BAY OCS AES/SM4 CRYPTO DRIVER
9641 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9642 S:      Maintained
9643 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-aes.yaml
9644 F:      drivers/crypto/keembay/Kconfig
9645 F:      drivers/crypto/keembay/Makefile
9646 F:      drivers/crypto/keembay/keembay-ocs-aes-core.c
9647 F:      drivers/crypto/keembay/ocs-aes.c
9648 F:      drivers/crypto/keembay/ocs-aes.h
9649
9650 INTEL KEEM BAY OCS ECC CRYPTO DRIVER
9651 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9652 M:      Prabhjot Khurana <prabhjot.khurana@intel.com>
9653 M:      Mark Gross <mgross@linux.intel.com>
9654 S:      Maintained
9655 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-ecc.yaml
9656 F:      drivers/crypto/keembay/Kconfig
9657 F:      drivers/crypto/keembay/Makefile
9658 F:      drivers/crypto/keembay/keembay-ocs-ecc.c
9659 F:      drivers/crypto/keembay/ocs-ecc-curve-defs.h
9660
9661 INTEL KEEM BAY OCS HCU CRYPTO DRIVER
9662 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9663 M:      Declan Murphy <declan.murphy@intel.com>
9664 S:      Maintained
9665 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-hcu.yaml
9666 F:      drivers/crypto/keembay/Kconfig
9667 F:      drivers/crypto/keembay/Makefile
9668 F:      drivers/crypto/keembay/keembay-ocs-hcu-core.c
9669 F:      drivers/crypto/keembay/ocs-hcu.c
9670 F:      drivers/crypto/keembay/ocs-hcu.h
9671
9672 INTEL MANAGEMENT ENGINE (mei)
9673 M:      Tomas Winkler <tomas.winkler@intel.com>
9674 L:      linux-kernel@vger.kernel.org
9675 S:      Supported
9676 F:      Documentation/driver-api/mei/*
9677 F:      drivers/misc/mei/
9678 F:      drivers/watchdog/mei_wdt.c
9679 F:      include/linux/mei_cl_bus.h
9680 F:      include/uapi/linux/mei.h
9681 F:      samples/mei/*
9682
9683 INTEL MAX 10 BMC MFD DRIVER
9684 M:      Xu Yilun <yilun.xu@intel.com>
9685 R:      Tom Rix <trix@redhat.com>
9686 S:      Maintained
9687 F:      Documentation/ABI/testing/sysfs-driver-intel-m10-bmc
9688 F:      Documentation/hwmon/intel-m10-bmc-hwmon.rst
9689 F:      drivers/hwmon/intel-m10-bmc-hwmon.c
9690 F:      drivers/mfd/intel-m10-bmc.c
9691 F:      include/linux/mfd/intel-m10-bmc.h
9692
9693 INTEL MENLOW THERMAL DRIVER
9694 M:      Sujith Thomas <sujith.thomas@intel.com>
9695 L:      linux-pm@vger.kernel.org
9696 S:      Supported
9697 W:      https://01.org/linux-acpi
9698 F:      drivers/thermal/intel/intel_menlow.c
9699
9700 INTEL P-Unit IPC DRIVER
9701 M:      Zha Qipeng <qipeng.zha@intel.com>
9702 L:      platform-driver-x86@vger.kernel.org
9703 S:      Maintained
9704 F:      arch/x86/include/asm/intel_punit_ipc.h
9705 F:      drivers/platform/x86/intel/punit_ipc.c
9706
9707 INTEL PMC CORE DRIVER
9708 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
9709 M:      David E Box <david.e.box@intel.com>
9710 L:      platform-driver-x86@vger.kernel.org
9711 S:      Maintained
9712 F:      Documentation/ABI/testing/sysfs-platform-intel-pmc
9713 F:      drivers/platform/x86/intel/pmc/
9714
9715 INTEL PMIC GPIO DRIVERS
9716 M:      Andy Shevchenko <andy@kernel.org>
9717 S:      Maintained
9718 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9719 F:      drivers/gpio/gpio-*cove.c
9720
9721 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
9722 M:      Andy Shevchenko <andy@kernel.org>
9723 S:      Maintained
9724 F:      drivers/mfd/intel_soc_pmic*
9725 F:      include/linux/mfd/intel_soc_pmic*
9726
9727 INTEL PMT DRIVER
9728 M:      "David E. Box" <david.e.box@linux.intel.com>
9729 S:      Maintained
9730 F:      drivers/mfd/intel_pmt.c
9731 F:      drivers/platform/x86/intel/pmt/
9732
9733 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
9734 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
9735 L:      linux-wireless@vger.kernel.org
9736 S:      Maintained
9737 F:      Documentation/networking/device_drivers/wifi/intel/ipw2100.rst
9738 F:      Documentation/networking/device_drivers/wifi/intel/ipw2200.rst
9739 F:      drivers/net/wireless/intel/ipw2x00/
9740
9741 INTEL PSTATE DRIVER
9742 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9743 M:      Len Brown <lenb@kernel.org>
9744 L:      linux-pm@vger.kernel.org
9745 S:      Supported
9746 F:      drivers/cpufreq/intel_pstate.c
9747
9748 INTEL QUADRATURE ENCODER PERIPHERAL DRIVER
9749 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
9750 L:      linux-iio@vger.kernel.org
9751 F:      drivers/counter/intel-qep.c
9752
9753 INTEL SCU DRIVERS
9754 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9755 S:      Maintained
9756 F:      arch/x86/include/asm/intel_scu_ipc.h
9757 F:      drivers/platform/x86/intel_scu_*
9758
9759 INTEL SKYLAKE INT3472 ACPI DEVICE DRIVER
9760 M:      Daniel Scally <djrscally@gmail.com>
9761 S:      Maintained
9762 F:      drivers/platform/x86/intel/int3472/
9763
9764 INTEL SPEED SELECT TECHNOLOGY
9765 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9766 L:      platform-driver-x86@vger.kernel.org
9767 S:      Maintained
9768 F:      drivers/platform/x86/intel/speed_select_if/
9769 F:      include/uapi/linux/isst_if.h
9770 F:      tools/power/x86/intel-speed-select/
9771
9772 INTEL STRATIX10 FIRMWARE DRIVERS
9773 M:      Dinh Nguyen <dinguyen@kernel.org>
9774 L:      linux-kernel@vger.kernel.org
9775 S:      Maintained
9776 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
9777 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
9778 F:      drivers/firmware/stratix10-rsu.c
9779 F:      drivers/firmware/stratix10-svc.c
9780 F:      include/linux/firmware/intel/stratix10-smc.h
9781 F:      include/linux/firmware/intel/stratix10-svc-client.h
9782
9783 INTEL TELEMETRY DRIVER
9784 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
9785 M:      "David E. Box" <david.e.box@linux.intel.com>
9786 L:      platform-driver-x86@vger.kernel.org
9787 S:      Maintained
9788 F:      arch/x86/include/asm/intel_telemetry.h
9789 F:      drivers/platform/x86/intel/telemetry/
9790
9791 INTEL UNCORE FREQUENCY CONTROL
9792 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9793 L:      platform-driver-x86@vger.kernel.org
9794 S:      Maintained
9795 F:      drivers/platform/x86/intel/uncore-frequency.c
9796
9797 INTEL VIRTUAL BUTTON DRIVER
9798 M:      AceLan Kao <acelan.kao@canonical.com>
9799 L:      platform-driver-x86@vger.kernel.org
9800 S:      Maintained
9801 F:      drivers/platform/x86/intel/vbtn.c
9802
9803 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
9804 M:      Stanislaw Gruszka <stf_xl@wp.pl>
9805 L:      linux-wireless@vger.kernel.org
9806 S:      Supported
9807 F:      drivers/net/wireless/intel/iwlegacy/
9808
9809 INTEL WIRELESS WIFI LINK (iwlwifi)
9810 M:      Luca Coelho <luciano.coelho@intel.com>
9811 L:      linux-wireless@vger.kernel.org
9812 S:      Supported
9813 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
9814 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
9815 F:      drivers/net/wireless/intel/iwlwifi/
9816
9817 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
9818 M:      Jithu Joseph <jithu.joseph@intel.com>
9819 R:      Maurice Ma <maurice.ma@intel.com>
9820 S:      Maintained
9821 W:      https://slimbootloader.github.io/security/firmware-update.html
9822 F:      drivers/platform/x86/intel/wmi/sbl-fw-update.c
9823
9824 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
9825 L:      Dell.Client.Kernel@dell.com
9826 S:      Maintained
9827 F:      drivers/platform/x86/intel/wmi/thunderbolt.c
9828
9829 INTEL WWAN IOSM DRIVER
9830 M:      M Chetan Kumar <m.chetan.kumar@intel.com>
9831 M:      Intel Corporation <linuxwwan@intel.com>
9832 L:      netdev@vger.kernel.org
9833 S:      Maintained
9834 F:      drivers/net/wwan/iosm/
9835
9836 INTEL(R) TRACE HUB
9837 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
9838 S:      Supported
9839 F:      Documentation/trace/intel_th.rst
9840 F:      drivers/hwtracing/intel_th/
9841 F:      include/linux/intel_th.h
9842
9843 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
9844 M:      Ning Sun <ning.sun@intel.com>
9845 L:      tboot-devel@lists.sourceforge.net
9846 S:      Supported
9847 W:      http://tboot.sourceforge.net
9848 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
9849 F:      Documentation/x86/intel_txt.rst
9850 F:      arch/x86/kernel/tboot.c
9851 F:      include/linux/tboot.h
9852
9853 INTEL SGX
9854 M:      Jarkko Sakkinen <jarkko@kernel.org>
9855 R:      Dave Hansen <dave.hansen@linux.intel.com>
9856 L:      linux-sgx@vger.kernel.org
9857 S:      Supported
9858 Q:      https://patchwork.kernel.org/project/intel-sgx/list/
9859 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/sgx
9860 F:      Documentation/x86/sgx.rst
9861 F:      arch/x86/entry/vdso/vsgx.S
9862 F:      arch/x86/include/asm/sgx.h
9863 F:      arch/x86/include/uapi/asm/sgx.h
9864 F:      arch/x86/kernel/cpu/sgx/*
9865 F:      tools/testing/selftests/sgx/*
9866 K:      \bSGX_
9867
9868 INTERCONNECT API
9869 M:      Georgi Djakov <djakov@kernel.org>
9870 L:      linux-pm@vger.kernel.org
9871 S:      Maintained
9872 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/djakov/icc.git
9873 F:      Documentation/devicetree/bindings/interconnect/
9874 F:      Documentation/driver-api/interconnect.rst
9875 F:      drivers/interconnect/
9876 F:      include/dt-bindings/interconnect/
9877 F:      include/linux/interconnect-provider.h
9878 F:      include/linux/interconnect.h
9879
9880 INTERRUPT COUNTER DRIVER
9881 M:      Oleksij Rempel <o.rempel@pengutronix.de>
9882 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
9883 L:      linux-iio@vger.kernel.org
9884 F:      Documentation/devicetree/bindings/counter/interrupt-counter.yaml
9885 F:      drivers/counter/interrupt-cnt.c
9886
9887 INVENSENSE ICM-426xx IMU DRIVER
9888 M:      Jean-Baptiste Maneyrol <jmaneyrol@invensense.com>
9889 L:      linux-iio@vger.kernel.org
9890 S:      Maintained
9891 W:      https://invensense.tdk.com/
9892 F:      Documentation/devicetree/bindings/iio/imu/invensense,icm42600.yaml
9893 F:      drivers/iio/imu/inv_icm42600/
9894
9895 INVENSENSE MPU-3050 GYROSCOPE DRIVER
9896 M:      Linus Walleij <linus.walleij@linaro.org>
9897 L:      linux-iio@vger.kernel.org
9898 S:      Maintained
9899 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.yaml
9900 F:      drivers/iio/gyro/mpu3050*
9901
9902 IOC3 ETHERNET DRIVER
9903 M:      Ralf Baechle <ralf@linux-mips.org>
9904 L:      linux-mips@vger.kernel.org
9905 S:      Maintained
9906 F:      drivers/net/ethernet/sgi/ioc3-eth.c
9907
9908 IOMAP FILESYSTEM LIBRARY
9909 M:      Christoph Hellwig <hch@infradead.org>
9910 M:      Darrick J. Wong <djwong@kernel.org>
9911 M:      linux-xfs@vger.kernel.org
9912 M:      linux-fsdevel@vger.kernel.org
9913 L:      linux-xfs@vger.kernel.org
9914 L:      linux-fsdevel@vger.kernel.org
9915 S:      Supported
9916 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
9917 F:      fs/iomap/
9918 F:      include/linux/iomap.h
9919
9920 IOMMU DRIVERS
9921 M:      Joerg Roedel <joro@8bytes.org>
9922 M:      Will Deacon <will@kernel.org>
9923 L:      iommu@lists.linux-foundation.org
9924 S:      Maintained
9925 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9926 F:      Documentation/devicetree/bindings/iommu/
9927 F:      Documentation/userspace-api/iommu.rst
9928 F:      drivers/iommu/
9929 F:      include/linux/iommu.h
9930 F:      include/linux/iova.h
9931 F:      include/linux/of_iommu.h
9932 F:      include/uapi/linux/iommu.h
9933
9934 IO_URING
9935 M:      Jens Axboe <axboe@kernel.dk>
9936 R:      Pavel Begunkov <asml.silence@gmail.com>
9937 L:      io-uring@vger.kernel.org
9938 S:      Maintained
9939 T:      git git://git.kernel.dk/linux-block
9940 T:      git git://git.kernel.dk/liburing
9941 F:      fs/io-wq.c
9942 F:      fs/io-wq.h
9943 F:      fs/io_uring.c
9944 F:      include/linux/io_uring.h
9945 F:      include/uapi/linux/io_uring.h
9946 F:      tools/io_uring/
9947
9948 IPMI SUBSYSTEM
9949 M:      Corey Minyard <minyard@acm.org>
9950 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
9951 S:      Supported
9952 W:      http://openipmi.sourceforge.net/
9953 F:      Documentation/driver-api/ipmi.rst
9954 F:      Documentation/devicetree/bindings/ipmi/
9955 F:      drivers/char/ipmi/
9956 F:      include/linux/ipmi*
9957 F:      include/uapi/linux/ipmi*
9958
9959 IPS SCSI RAID DRIVER
9960 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
9961 L:      linux-scsi@vger.kernel.org
9962 S:      Maintained
9963 W:      http://www.adaptec.com/
9964 F:      drivers/scsi/ips*
9965
9966 IPVS
9967 M:      Simon Horman <horms@verge.net.au>
9968 M:      Julian Anastasov <ja@ssi.bg>
9969 L:      netdev@vger.kernel.org
9970 L:      lvs-devel@vger.kernel.org
9971 S:      Maintained
9972 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
9973 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
9974 F:      Documentation/networking/ipvs-sysctl.rst
9975 F:      include/net/ip_vs.h
9976 F:      include/uapi/linux/ip_vs.h
9977 F:      net/netfilter/ipvs/
9978
9979 IPWIRELESS DRIVER
9980 M:      Jiri Kosina <jikos@kernel.org>
9981 M:      David Sterba <dsterba@suse.com>
9982 S:      Odd Fixes
9983 F:      drivers/tty/ipwireless/
9984
9985 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
9986 M:      Marc Zyngier <maz@kernel.org>
9987 S:      Maintained
9988 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9989 F:      Documentation/core-api/irq/irq-domain.rst
9990 F:      include/linux/irqdomain.h
9991 F:      kernel/irq/irqdomain.c
9992 F:      kernel/irq/msi.c
9993
9994 IRQ SUBSYSTEM
9995 M:      Thomas Gleixner <tglx@linutronix.de>
9996 L:      linux-kernel@vger.kernel.org
9997 S:      Maintained
9998 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9999 F:      kernel/irq/
10000
10001 IRQCHIP DRIVERS
10002 M:      Thomas Gleixner <tglx@linutronix.de>
10003 M:      Marc Zyngier <maz@kernel.org>
10004 L:      linux-kernel@vger.kernel.org
10005 S:      Maintained
10006 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10007 F:      Documentation/devicetree/bindings/interrupt-controller/
10008 F:      drivers/irqchip/
10009
10010 ISA
10011 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
10012 S:      Maintained
10013 F:      Documentation/driver-api/isa.rst
10014 F:      drivers/base/isa.c
10015 F:      include/linux/isa.h
10016
10017 ISA RADIO MODULE
10018 M:      Hans Verkuil <hverkuil@xs4all.nl>
10019 L:      linux-media@vger.kernel.org
10020 S:      Maintained
10021 W:      https://linuxtv.org
10022 T:      git git://linuxtv.org/media_tree.git
10023 F:      drivers/media/radio/radio-isa*
10024
10025 ISAPNP
10026 M:      Jaroslav Kysela <perex@perex.cz>
10027 S:      Maintained
10028 F:      Documentation/driver-api/isapnp.rst
10029 F:      drivers/pnp/isapnp/
10030 F:      include/linux/isapnp.h
10031
10032 ISCSI
10033 M:      Lee Duncan <lduncan@suse.com>
10034 M:      Chris Leech <cleech@redhat.com>
10035 L:      open-iscsi@googlegroups.com
10036 L:      linux-scsi@vger.kernel.org
10037 S:      Maintained
10038 W:      www.open-iscsi.com
10039 F:      drivers/scsi/*iscsi*
10040 F:      include/scsi/*iscsi*
10041
10042 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
10043 M:      Peter Jones <pjones@redhat.com>
10044 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
10045 S:      Maintained
10046 F:      drivers/firmware/iscsi_ibft*
10047
10048 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
10049 M:      Sagi Grimberg <sagi@grimberg.me>
10050 M:      Max Gurtovoy <mgurtovoy@nvidia.com>
10051 L:      linux-rdma@vger.kernel.org
10052 S:      Supported
10053 W:      http://www.openfabrics.org
10054 W:      www.open-iscsi.org
10055 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10056 F:      drivers/infiniband/ulp/iser/
10057
10058 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
10059 M:      Sagi Grimberg <sagi@grimberg.me>
10060 L:      linux-rdma@vger.kernel.org
10061 L:      target-devel@vger.kernel.org
10062 S:      Supported
10063 W:      http://www.linux-iscsi.org
10064 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
10065 F:      drivers/infiniband/ulp/isert
10066
10067 ISDN/CMTP OVER BLUETOOTH
10068 M:      Karsten Keil <isdn@linux-pingi.de>
10069 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
10070 L:      netdev@vger.kernel.org
10071 S:      Odd Fixes
10072 W:      http://www.isdn4linux.de
10073 F:      Documentation/isdn/
10074 F:      drivers/isdn/capi/
10075 F:      include/linux/isdn/
10076 F:      include/uapi/linux/isdn/
10077 F:      net/bluetooth/cmtp/
10078
10079 ISDN/mISDN SUBSYSTEM
10080 M:      Karsten Keil <isdn@linux-pingi.de>
10081 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
10082 L:      netdev@vger.kernel.org
10083 S:      Maintained
10084 W:      http://www.isdn4linux.de
10085 F:      drivers/isdn/Kconfig
10086 F:      drivers/isdn/Makefile
10087 F:      drivers/isdn/hardware/
10088 F:      drivers/isdn/mISDN/
10089
10090 IT87 HARDWARE MONITORING DRIVER
10091 M:      Jean Delvare <jdelvare@suse.com>
10092 L:      linux-hwmon@vger.kernel.org
10093 S:      Maintained
10094 F:      Documentation/hwmon/it87.rst
10095 F:      drivers/hwmon/it87.c
10096
10097 IT913X MEDIA DRIVER
10098 M:      Antti Palosaari <crope@iki.fi>
10099 L:      linux-media@vger.kernel.org
10100 S:      Maintained
10101 W:      https://linuxtv.org
10102 W:      http://palosaari.fi/linux/
10103 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10104 T:      git git://linuxtv.org/anttip/media_tree.git
10105 F:      drivers/media/tuners/it913x*
10106
10107 ITE IT66121 HDMI BRIDGE DRIVER
10108 M:      Phong LE <ple@baylibre.com>
10109 M:      Neil Armstrong <narmstrong@baylibre.com>
10110 S:      Maintained
10111 T:      git git://anongit.freedesktop.org/drm/drm-misc
10112 F:      Documentation/devicetree/bindings/display/bridge/ite,it66121.yaml
10113 F:      drivers/gpu/drm/bridge/ite-it66121.c
10114
10115 IVTV VIDEO4LINUX DRIVER
10116 M:      Andy Walls <awalls@md.metrocast.net>
10117 L:      linux-media@vger.kernel.org
10118 S:      Maintained
10119 W:      https://linuxtv.org
10120 T:      git git://linuxtv.org/media_tree.git
10121 F:      Documentation/admin-guide/media/ivtv*
10122 F:      drivers/media/pci/ivtv/
10123 F:      include/uapi/linux/ivtv*
10124
10125 IX2505V MEDIA DRIVER
10126 M:      Malcolm Priestley <tvboxspy@gmail.com>
10127 L:      linux-media@vger.kernel.org
10128 S:      Maintained
10129 W:      https://linuxtv.org
10130 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10131 F:      drivers/media/dvb-frontends/ix2505v*
10132
10133 JAILHOUSE HYPERVISOR INTERFACE
10134 M:      Jan Kiszka <jan.kiszka@siemens.com>
10135 L:      jailhouse-dev@googlegroups.com
10136 S:      Maintained
10137 F:      arch/x86/include/asm/jailhouse_para.h
10138 F:      arch/x86/kernel/jailhouse.c
10139
10140 JC42.4 TEMPERATURE SENSOR DRIVER
10141 M:      Guenter Roeck <linux@roeck-us.net>
10142 L:      linux-hwmon@vger.kernel.org
10143 S:      Maintained
10144 F:      Documentation/devicetree/bindings/hwmon/jedec,jc42.yaml
10145 F:      Documentation/hwmon/jc42.rst
10146 F:      drivers/hwmon/jc42.c
10147
10148 JFS FILESYSTEM
10149 M:      Dave Kleikamp <shaggy@kernel.org>
10150 L:      jfs-discussion@lists.sourceforge.net
10151 S:      Maintained
10152 W:      http://jfs.sourceforge.net/
10153 T:      git git://github.com/kleikamp/linux-shaggy.git
10154 F:      Documentation/admin-guide/jfs.rst
10155 F:      fs/jfs/
10156
10157 JME NETWORK DRIVER
10158 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
10159 L:      netdev@vger.kernel.org
10160 S:      Maintained
10161 F:      drivers/net/ethernet/jme.*
10162
10163 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
10164 M:      David Woodhouse <dwmw2@infradead.org>
10165 M:      Richard Weinberger <richard@nod.at>
10166 L:      linux-mtd@lists.infradead.org
10167 S:      Odd Fixes
10168 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
10169 T:      git git://git.infradead.org/ubifs-2.6.git
10170 F:      fs/jffs2/
10171 F:      include/uapi/linux/jffs2.h
10172
10173 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
10174 M:      "Theodore Ts'o" <tytso@mit.edu>
10175 M:      Jan Kara <jack@suse.com>
10176 L:      linux-ext4@vger.kernel.org
10177 S:      Maintained
10178 F:      fs/jbd2/
10179 F:      include/linux/jbd2.h
10180
10181 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
10182 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
10183 L:      linux-media@vger.kernel.org
10184 L:      linux-renesas-soc@vger.kernel.org
10185 S:      Maintained
10186 F:      drivers/media/platform/rcar_jpu.c
10187
10188 JSM Neo PCI based serial card
10189 L:      linux-serial@vger.kernel.org
10190 S:      Orphan
10191 F:      drivers/tty/serial/jsm/
10192
10193 K10TEMP HARDWARE MONITORING DRIVER
10194 M:      Clemens Ladisch <clemens@ladisch.de>
10195 L:      linux-hwmon@vger.kernel.org
10196 S:      Maintained
10197 F:      Documentation/hwmon/k10temp.rst
10198 F:      drivers/hwmon/k10temp.c
10199
10200 K8TEMP HARDWARE MONITORING DRIVER
10201 M:      Rudolf Marek <r.marek@assembler.cz>
10202 L:      linux-hwmon@vger.kernel.org
10203 S:      Maintained
10204 F:      Documentation/hwmon/k8temp.rst
10205 F:      drivers/hwmon/k8temp.c
10206
10207 KASAN
10208 M:      Andrey Ryabinin <ryabinin.a.a@gmail.com>
10209 R:      Alexander Potapenko <glider@google.com>
10210 R:      Andrey Konovalov <andreyknvl@gmail.com>
10211 R:      Dmitry Vyukov <dvyukov@google.com>
10212 L:      kasan-dev@googlegroups.com
10213 S:      Maintained
10214 F:      Documentation/dev-tools/kasan.rst
10215 F:      arch/*/include/asm/*kasan.h
10216 F:      arch/*/mm/kasan_init*
10217 F:      include/linux/kasan*.h
10218 F:      lib/Kconfig.kasan
10219 F:      lib/test_kasan*.c
10220 F:      mm/kasan/
10221 F:      scripts/Makefile.kasan
10222
10223 KCONFIG
10224 M:      Masahiro Yamada <masahiroy@kernel.org>
10225 L:      linux-kbuild@vger.kernel.org
10226 S:      Maintained
10227 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
10228 F:      Documentation/kbuild/kconfig*
10229 F:      scripts/Kconfig.include
10230 F:      scripts/kconfig/
10231
10232 KCOV
10233 R:      Dmitry Vyukov <dvyukov@google.com>
10234 R:      Andrey Konovalov <andreyknvl@gmail.com>
10235 L:      kasan-dev@googlegroups.com
10236 S:      Maintained
10237 F:      Documentation/dev-tools/kcov.rst
10238 F:      include/linux/kcov.h
10239 F:      include/uapi/linux/kcov.h
10240 F:      kernel/kcov.c
10241 F:      scripts/Makefile.kcov
10242
10243 KCSAN
10244 M:      Marco Elver <elver@google.com>
10245 R:      Dmitry Vyukov <dvyukov@google.com>
10246 L:      kasan-dev@googlegroups.com
10247 S:      Maintained
10248 F:      Documentation/dev-tools/kcsan.rst
10249 F:      include/linux/kcsan*.h
10250 F:      kernel/kcsan/
10251 F:      lib/Kconfig.kcsan
10252 F:      scripts/Makefile.kcsan
10253
10254 KDUMP
10255 M:      Dave Young <dyoung@redhat.com>
10256 M:      Baoquan He <bhe@redhat.com>
10257 R:      Vivek Goyal <vgoyal@redhat.com>
10258 L:      kexec@lists.infradead.org
10259 S:      Maintained
10260 W:      http://lse.sourceforge.net/kdump/
10261 F:      Documentation/admin-guide/kdump/
10262 F:      fs/proc/vmcore.c
10263 F:      include/linux/crash_core.h
10264 F:      include/linux/crash_dump.h
10265 F:      include/uapi/linux/vmcore.h
10266 F:      kernel/crash_*.c
10267
10268 KEENE FM RADIO TRANSMITTER DRIVER
10269 M:      Hans Verkuil <hverkuil@xs4all.nl>
10270 L:      linux-media@vger.kernel.org
10271 S:      Maintained
10272 W:      https://linuxtv.org
10273 T:      git git://linuxtv.org/media_tree.git
10274 F:      drivers/media/radio/radio-keene*
10275
10276 KERNEL AUTOMOUNTER
10277 M:      Ian Kent <raven@themaw.net>
10278 L:      autofs@vger.kernel.org
10279 S:      Maintained
10280 F:      fs/autofs/
10281
10282 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
10283 M:      Masahiro Yamada <masahiroy@kernel.org>
10284 M:      Michal Marek <michal.lkml@markovi.net>
10285 R:      Nick Desaulniers <ndesaulniers@google.com>
10286 L:      linux-kbuild@vger.kernel.org
10287 S:      Maintained
10288 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
10289 F:      Documentation/kbuild/
10290 F:      Makefile
10291 F:      scripts/*vmlinux*
10292 F:      scripts/Kbuild*
10293 F:      scripts/Makefile*
10294 F:      scripts/basic/
10295 F:      scripts/dummy-tools/
10296 F:      scripts/mk*
10297 F:      scripts/mod/
10298 F:      scripts/package/
10299
10300 KERNEL JANITORS
10301 L:      kernel-janitors@vger.kernel.org
10302 S:      Odd Fixes
10303 W:      http://kernelnewbies.org/KernelJanitors
10304
10305 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
10306 M:      "J. Bruce Fields" <bfields@fieldses.org>
10307 M:      Chuck Lever <chuck.lever@oracle.com>
10308 L:      linux-nfs@vger.kernel.org
10309 S:      Supported
10310 W:      http://nfs.sourceforge.net/
10311 T:      git git://linux-nfs.org/~bfields/linux.git
10312 F:      fs/lockd/
10313 F:      fs/nfs_common/
10314 F:      fs/nfsd/
10315 F:      include/linux/lockd/
10316 F:      include/linux/sunrpc/
10317 F:      include/uapi/linux/nfsd/
10318 F:      include/uapi/linux/sunrpc/
10319 F:      net/sunrpc/
10320 F:      Documentation/filesystems/nfs/
10321
10322 KERNEL REGRESSIONS
10323 M:      Thorsten Leemhuis <linux@leemhuis.info>
10324 L:      regressions@lists.linux.dev
10325 S:      Supported
10326
10327 KERNEL SELFTEST FRAMEWORK
10328 M:      Shuah Khan <shuah@kernel.org>
10329 M:      Shuah Khan <skhan@linuxfoundation.org>
10330 L:      linux-kselftest@vger.kernel.org
10331 S:      Maintained
10332 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
10333 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
10334 F:      Documentation/dev-tools/kselftest*
10335 F:      tools/testing/selftests/
10336
10337 KERNEL SMB3 SERVER (KSMBD)
10338 M:      Namjae Jeon <linkinjeon@kernel.org>
10339 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
10340 M:      Steve French <sfrench@samba.org>
10341 M:      Hyunchul Lee <hyc.lee@gmail.com>
10342 L:      linux-cifs@vger.kernel.org
10343 S:      Maintained
10344 T:      git git://git.samba.org/ksmbd.git
10345 F:      fs/ksmbd/
10346 F:      fs/smbfs_common/
10347
10348 KERNEL UNIT TESTING FRAMEWORK (KUnit)
10349 M:      Brendan Higgins <brendanhiggins@google.com>
10350 L:      linux-kselftest@vger.kernel.org
10351 L:      kunit-dev@googlegroups.com
10352 S:      Maintained
10353 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
10354 F:      Documentation/dev-tools/kunit/
10355 F:      include/kunit/
10356 F:      lib/kunit/
10357 F:      tools/testing/kunit/
10358
10359 KERNEL USERMODE HELPER
10360 M:      Luis Chamberlain <mcgrof@kernel.org>
10361 L:      linux-kernel@vger.kernel.org
10362 S:      Maintained
10363 F:      include/linux/umh.h
10364 F:      kernel/umh.c
10365
10366 KERNEL VIRTUAL MACHINE (KVM)
10367 M:      Paolo Bonzini <pbonzini@redhat.com>
10368 L:      kvm@vger.kernel.org
10369 S:      Supported
10370 W:      http://www.linux-kvm.org
10371 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10372 F:      Documentation/virt/kvm/
10373 F:      include/asm-generic/kvm*
10374 F:      include/kvm/iodev.h
10375 F:      include/linux/kvm*
10376 F:      include/trace/events/kvm.h
10377 F:      include/uapi/asm-generic/kvm*
10378 F:      include/uapi/linux/kvm*
10379 F:      tools/kvm/
10380 F:      tools/testing/selftests/kvm/
10381 F:      virt/kvm/*
10382
10383 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
10384 M:      Marc Zyngier <maz@kernel.org>
10385 R:      James Morse <james.morse@arm.com>
10386 R:      Alexandru Elisei <alexandru.elisei@arm.com>
10387 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
10388 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10389 L:      kvmarm@lists.cs.columbia.edu (moderated for non-subscribers)
10390 S:      Maintained
10391 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
10392 F:      arch/arm64/include/asm/kvm*
10393 F:      arch/arm64/include/uapi/asm/kvm*
10394 F:      arch/arm64/kvm/
10395 F:      include/kvm/arm_*
10396 F:      tools/testing/selftests/kvm/*/aarch64/
10397 F:      tools/testing/selftests/kvm/aarch64/
10398
10399 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
10400 M:      Huacai Chen <chenhuacai@kernel.org>
10401 M:      Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
10402 L:      linux-mips@vger.kernel.org
10403 L:      kvm@vger.kernel.org
10404 S:      Maintained
10405 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10406 F:      arch/mips/include/asm/kvm*
10407 F:      arch/mips/include/uapi/asm/kvm*
10408 F:      arch/mips/kvm/
10409
10410 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
10411 L:      linuxppc-dev@lists.ozlabs.org
10412 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git topic/ppc-kvm
10413 F:      arch/powerpc/include/asm/kvm*
10414 F:      arch/powerpc/include/uapi/asm/kvm*
10415 F:      arch/powerpc/kernel/kvm*
10416 F:      arch/powerpc/kvm/
10417
10418 KERNEL VIRTUAL MACHINE FOR RISC-V (KVM/riscv)
10419 M:      Anup Patel <anup.patel@wdc.com>
10420 R:      Atish Patra <atish.patra@wdc.com>
10421 L:      kvm@vger.kernel.org
10422 L:      kvm-riscv@lists.infradead.org
10423 L:      linux-riscv@lists.infradead.org
10424 S:      Maintained
10425 T:      git git://github.com/kvm-riscv/linux.git
10426 F:      arch/riscv/include/asm/kvm*
10427 F:      arch/riscv/include/uapi/asm/kvm*
10428 F:      arch/riscv/kvm/
10429
10430 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
10431 M:      Christian Borntraeger <borntraeger@de.ibm.com>
10432 M:      Janosch Frank <frankja@linux.ibm.com>
10433 R:      David Hildenbrand <david@redhat.com>
10434 R:      Claudio Imbrenda <imbrenda@linux.ibm.com>
10435 L:      kvm@vger.kernel.org
10436 S:      Supported
10437 W:      http://www.ibm.com/developerworks/linux/linux390/
10438 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
10439 F:      Documentation/virt/kvm/s390*
10440 F:      arch/s390/include/asm/gmap.h
10441 F:      arch/s390/include/asm/kvm*
10442 F:      arch/s390/include/uapi/asm/kvm*
10443 F:      arch/s390/kernel/uv.c
10444 F:      arch/s390/kvm/
10445 F:      arch/s390/mm/gmap.c
10446 F:      tools/testing/selftests/kvm/*/s390x/
10447 F:      tools/testing/selftests/kvm/s390x/
10448
10449 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
10450 M:      Paolo Bonzini <pbonzini@redhat.com>
10451 R:      Sean Christopherson <seanjc@google.com>
10452 R:      Vitaly Kuznetsov <vkuznets@redhat.com>
10453 R:      Wanpeng Li <wanpengli@tencent.com>
10454 R:      Jim Mattson <jmattson@google.com>
10455 R:      Joerg Roedel <joro@8bytes.org>
10456 L:      kvm@vger.kernel.org
10457 S:      Supported
10458 W:      http://www.linux-kvm.org
10459 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10460 F:      arch/x86/include/asm/kvm*
10461 F:      arch/x86/include/asm/pvclock-abi.h
10462 F:      arch/x86/include/asm/svm.h
10463 F:      arch/x86/include/asm/vmx*.h
10464 F:      arch/x86/include/uapi/asm/kvm*
10465 F:      arch/x86/include/uapi/asm/svm.h
10466 F:      arch/x86/include/uapi/asm/vmx.h
10467 F:      arch/x86/kernel/kvm.c
10468 F:      arch/x86/kernel/kvmclock.c
10469 F:      arch/x86/kvm/
10470 F:      arch/x86/kvm/*/
10471
10472 KERNFS
10473 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10474 M:      Tejun Heo <tj@kernel.org>
10475 S:      Supported
10476 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
10477 F:      fs/kernfs/
10478 F:      include/linux/kernfs.h
10479
10480 KEXEC
10481 M:      Eric Biederman <ebiederm@xmission.com>
10482 L:      kexec@lists.infradead.org
10483 S:      Maintained
10484 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
10485 F:      include/linux/kexec.h
10486 F:      include/uapi/linux/kexec.h
10487 F:      kernel/kexec*
10488
10489 KEYS-ENCRYPTED
10490 M:      Mimi Zohar <zohar@linux.ibm.com>
10491 L:      linux-integrity@vger.kernel.org
10492 L:      keyrings@vger.kernel.org
10493 S:      Supported
10494 F:      Documentation/security/keys/trusted-encrypted.rst
10495 F:      include/keys/encrypted-type.h
10496 F:      security/keys/encrypted-keys/
10497
10498 KEYS-TRUSTED
10499 M:      James Bottomley <jejb@linux.ibm.com>
10500 M:      Jarkko Sakkinen <jarkko@kernel.org>
10501 M:      Mimi Zohar <zohar@linux.ibm.com>
10502 L:      linux-integrity@vger.kernel.org
10503 L:      keyrings@vger.kernel.org
10504 S:      Supported
10505 F:      Documentation/security/keys/trusted-encrypted.rst
10506 F:      include/keys/trusted-type.h
10507 F:      include/keys/trusted_tpm.h
10508 F:      security/keys/trusted-keys/
10509
10510 KEYS-TRUSTED-TEE
10511 M:      Sumit Garg <sumit.garg@linaro.org>
10512 L:      linux-integrity@vger.kernel.org
10513 L:      keyrings@vger.kernel.org
10514 S:      Supported
10515 F:      include/keys/trusted_tee.h
10516 F:      security/keys/trusted-keys/trusted_tee.c
10517
10518 KEYS/KEYRINGS
10519 M:      David Howells <dhowells@redhat.com>
10520 M:      Jarkko Sakkinen <jarkko@kernel.org>
10521 L:      keyrings@vger.kernel.org
10522 S:      Maintained
10523 F:      Documentation/security/keys/core.rst
10524 F:      include/keys/
10525 F:      include/linux/key-type.h
10526 F:      include/linux/key.h
10527 F:      include/linux/keyctl.h
10528 F:      include/uapi/linux/keyctl.h
10529 F:      security/keys/
10530
10531 KFENCE
10532 M:      Alexander Potapenko <glider@google.com>
10533 M:      Marco Elver <elver@google.com>
10534 R:      Dmitry Vyukov <dvyukov@google.com>
10535 L:      kasan-dev@googlegroups.com
10536 S:      Maintained
10537 F:      Documentation/dev-tools/kfence.rst
10538 F:      arch/*/include/asm/kfence.h
10539 F:      include/linux/kfence.h
10540 F:      lib/Kconfig.kfence
10541 F:      mm/kfence/
10542
10543 KFIFO
10544 M:      Stefani Seibold <stefani@seibold.net>
10545 S:      Maintained
10546 F:      include/linux/kfifo.h
10547 F:      lib/kfifo.c
10548 F:      samples/kfifo/
10549
10550 KGDB / KDB /debug_core
10551 M:      Jason Wessel <jason.wessel@windriver.com>
10552 M:      Daniel Thompson <daniel.thompson@linaro.org>
10553 R:      Douglas Anderson <dianders@chromium.org>
10554 L:      kgdb-bugreport@lists.sourceforge.net
10555 S:      Maintained
10556 W:      http://kgdb.wiki.kernel.org/
10557 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
10558 F:      Documentation/dev-tools/kgdb.rst
10559 F:      drivers/misc/kgdbts.c
10560 F:      drivers/tty/serial/kgdboc.c
10561 F:      include/linux/kdb.h
10562 F:      include/linux/kgdb.h
10563 F:      kernel/debug/
10564
10565 KHADAS MCU MFD DRIVER
10566 M:      Neil Armstrong <narmstrong@baylibre.com>
10567 L:      linux-amlogic@lists.infradead.org
10568 S:      Maintained
10569 F:      Documentation/devicetree/bindings/mfd/khadas,mcu.yaml
10570 F:      drivers/mfd/khadas-mcu.c
10571 F:      include/linux/mfd/khadas-mcu.h
10572 F:      drivers/thermal/khadas_mcu_fan.c
10573
10574 KMEMLEAK
10575 M:      Catalin Marinas <catalin.marinas@arm.com>
10576 S:      Maintained
10577 F:      Documentation/dev-tools/kmemleak.rst
10578 F:      include/linux/kmemleak.h
10579 F:      mm/kmemleak.c
10580 F:      samples/kmemleak/kmemleak-test.c
10581
10582 KMOD KERNEL MODULE LOADER - USERMODE HELPER
10583 M:      Luis Chamberlain <mcgrof@kernel.org>
10584 L:      linux-kernel@vger.kernel.org
10585 S:      Maintained
10586 F:      include/linux/kmod.h
10587 F:      kernel/kmod.c
10588 F:      lib/test_kmod.c
10589 F:      tools/testing/selftests/kmod/
10590
10591 KPROBES
10592 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
10593 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
10594 M:      "David S. Miller" <davem@davemloft.net>
10595 M:      Masami Hiramatsu <mhiramat@kernel.org>
10596 S:      Maintained
10597 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace.git
10598 F:      Documentation/trace/kprobes.rst
10599 F:      include/asm-generic/kprobes.h
10600 F:      include/linux/kprobes.h
10601 F:      kernel/kprobes.c
10602 F:      lib/test_kprobes.c
10603 F:      samples/kprobes
10604
10605 KS0108 LCD CONTROLLER DRIVER
10606 M:      Miguel Ojeda <ojeda@kernel.org>
10607 S:      Maintained
10608 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
10609 F:      drivers/auxdisplay/ks0108.c
10610 F:      include/linux/ks0108.h
10611
10612 KTD253 BACKLIGHT DRIVER
10613 M:      Linus Walleij <linus.walleij@linaro.org>
10614 S:      Maintained
10615 F:      Documentation/devicetree/bindings/leds/backlight/kinetic,ktd253.yaml
10616 F:      drivers/video/backlight/ktd253-backlight.c
10617
10618 KTEST
10619 M:      Steven Rostedt <rostedt@goodmis.org>
10620 M:      John Hawley <warthog9@eaglescrag.net>
10621 S:      Maintained
10622 F:      tools/testing/ktest
10623
10624 L3MDEV
10625 M:      David Ahern <dsahern@kernel.org>
10626 L:      netdev@vger.kernel.org
10627 S:      Maintained
10628 F:      include/net/l3mdev.h
10629 F:      net/l3mdev
10630
10631 L7 BPF FRAMEWORK
10632 M:      John Fastabend <john.fastabend@gmail.com>
10633 M:      Daniel Borkmann <daniel@iogearbox.net>
10634 M:      Jakub Sitnicki <jakub@cloudflare.com>
10635 M:      Lorenz Bauer <lmb@cloudflare.com>
10636 L:      netdev@vger.kernel.org
10637 L:      bpf@vger.kernel.org
10638 S:      Maintained
10639 F:      include/linux/skmsg.h
10640 F:      net/core/skmsg.c
10641 F:      net/core/sock_map.c
10642 F:      net/ipv4/tcp_bpf.c
10643 F:      net/ipv4/udp_bpf.c
10644 F:      net/unix/unix_bpf.c
10645
10646 LANDLOCK SECURITY MODULE
10647 M:      Mickaël Salaün <mic@digikod.net>
10648 L:      linux-security-module@vger.kernel.org
10649 S:      Supported
10650 W:      https://landlock.io
10651 T:      git https://github.com/landlock-lsm/linux.git
10652 F:      Documentation/security/landlock.rst
10653 F:      Documentation/userspace-api/landlock.rst
10654 F:      include/uapi/linux/landlock.h
10655 F:      samples/landlock/
10656 F:      security/landlock/
10657 F:      tools/testing/selftests/landlock/
10658 K:      landlock
10659 K:      LANDLOCK
10660
10661 LANTIQ / INTEL Ethernet drivers
10662 M:      Hauke Mehrtens <hauke@hauke-m.de>
10663 L:      netdev@vger.kernel.org
10664 S:      Maintained
10665 F:      drivers/net/dsa/lantiq_gswip.c
10666 F:      drivers/net/dsa/lantiq_pce.h
10667 F:      drivers/net/ethernet/lantiq_xrx200.c
10668 F:      net/dsa/tag_gswip.c
10669
10670 LANTIQ MIPS ARCHITECTURE
10671 M:      John Crispin <john@phrozen.org>
10672 L:      linux-mips@vger.kernel.org
10673 S:      Maintained
10674 F:      arch/mips/lantiq
10675 F:      drivers/soc/lantiq
10676
10677 LASI 53c700 driver for PARISC
10678 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
10679 L:      linux-scsi@vger.kernel.org
10680 S:      Maintained
10681 F:      Documentation/scsi/53c700.rst
10682 F:      drivers/scsi/53c700*
10683
10684 LEAKING_ADDRESSES
10685 M:      Tobin C. Harding <me@tobin.cc>
10686 M:      Tycho Andersen <tycho@tycho.pizza>
10687 L:      linux-hardening@vger.kernel.org
10688 S:      Maintained
10689 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
10690 F:      scripts/leaking_addresses.pl
10691
10692 LED SUBSYSTEM
10693 M:      Pavel Machek <pavel@ucw.cz>
10694 L:      linux-leds@vger.kernel.org
10695 S:      Maintained
10696 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
10697 F:      Documentation/devicetree/bindings/leds/
10698 F:      drivers/leds/
10699 F:      include/linux/leds.h
10700
10701 LEGACY EEPROM DRIVER
10702 M:      Jean Delvare <jdelvare@suse.com>
10703 S:      Maintained
10704 F:      Documentation/misc-devices/eeprom.rst
10705 F:      drivers/misc/eeprom/eeprom.c
10706
10707 LEGO MINDSTORMS EV3
10708 R:      David Lechner <david@lechnology.com>
10709 S:      Maintained
10710 F:      Documentation/devicetree/bindings/power/supply/lego,ev3-battery.yaml
10711 F:      arch/arm/boot/dts/da850-lego-ev3.dts
10712 F:      drivers/power/supply/lego_ev3_battery.c
10713
10714 LEGO USB Tower driver
10715 M:      Juergen Stuber <starblue@users.sourceforge.net>
10716 L:      legousb-devel@lists.sourceforge.net
10717 S:      Maintained
10718 W:      http://legousb.sourceforge.net/
10719 F:      drivers/usb/misc/legousbtower.c
10720
10721 LG LAPTOP EXTRAS
10722 M:      Matan Ziv-Av <matan@svgalib.org>
10723 L:      platform-driver-x86@vger.kernel.org
10724 S:      Maintained
10725 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
10726 F:      Documentation/admin-guide/laptops/lg-laptop.rst
10727 F:      drivers/platform/x86/lg-laptop.c
10728
10729 LG2160 MEDIA DRIVER
10730 M:      Michael Krufky <mkrufky@linuxtv.org>
10731 L:      linux-media@vger.kernel.org
10732 S:      Maintained
10733 W:      https://linuxtv.org
10734 W:      http://github.com/mkrufky
10735 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10736 T:      git git://linuxtv.org/mkrufky/tuners.git
10737 F:      drivers/media/dvb-frontends/lg2160.*
10738
10739 LGDT3305 MEDIA DRIVER
10740 M:      Michael Krufky <mkrufky@linuxtv.org>
10741 L:      linux-media@vger.kernel.org
10742 S:      Maintained
10743 W:      https://linuxtv.org
10744 W:      http://github.com/mkrufky
10745 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10746 T:      git git://linuxtv.org/mkrufky/tuners.git
10747 F:      drivers/media/dvb-frontends/lgdt3305.*
10748
10749 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
10750 M:      Viresh Kumar <vireshk@kernel.org>
10751 L:      linux-ide@vger.kernel.org
10752 S:      Maintained
10753 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10754 F:      drivers/ata/pata_arasan_cf.c
10755 F:      include/linux/pata_arasan_cf_data.h
10756
10757 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
10758 M:      Linus Walleij <linus.walleij@linaro.org>
10759 L:      linux-ide@vger.kernel.org
10760 S:      Maintained
10761 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10762 F:      drivers/ata/pata_ftide010.c
10763 F:      drivers/ata/sata_gemini.c
10764 F:      drivers/ata/sata_gemini.h
10765
10766 LIBATA SATA AHCI PLATFORM devices support
10767 M:      Hans de Goede <hdegoede@redhat.com>
10768 M:      Jens Axboe <axboe@kernel.dk>
10769 L:      linux-ide@vger.kernel.org
10770 S:      Maintained
10771 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10772 F:      drivers/ata/ahci_platform.c
10773 F:      drivers/ata/libahci_platform.c
10774 F:      include/linux/ahci_platform.h
10775
10776 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
10777 M:      Mikael Pettersson <mikpelinux@gmail.com>
10778 L:      linux-ide@vger.kernel.org
10779 S:      Maintained
10780 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10781 F:      drivers/ata/sata_promise.*
10782
10783 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
10784 M:      Damien Le Moal <damien.lemoal@opensource.wdc.com>
10785 L:      linux-ide@vger.kernel.org
10786 S:      Maintained
10787 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/libata.git
10788 F:      Documentation/devicetree/bindings/ata/
10789 F:      drivers/ata/
10790 F:      include/linux/ata.h
10791 F:      include/linux/libata.h
10792
10793 LIBLOCKDEP
10794 M:      Sasha Levin <alexander.levin@microsoft.com>
10795 S:      Maintained
10796 F:      tools/lib/lockdep/
10797
10798 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
10799 M:      Dan Williams <dan.j.williams@intel.com>
10800 M:      Vishal Verma <vishal.l.verma@intel.com>
10801 M:      Dave Jiang <dave.jiang@intel.com>
10802 L:      nvdimm@lists.linux.dev
10803 S:      Supported
10804 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10805 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10806 F:      drivers/nvdimm/blk.c
10807 F:      drivers/nvdimm/region_devs.c
10808
10809 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
10810 M:      Vishal Verma <vishal.l.verma@intel.com>
10811 M:      Dan Williams <dan.j.williams@intel.com>
10812 M:      Dave Jiang <dave.jiang@intel.com>
10813 L:      nvdimm@lists.linux.dev
10814 S:      Supported
10815 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10816 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10817 F:      drivers/nvdimm/btt*
10818
10819 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
10820 M:      Dan Williams <dan.j.williams@intel.com>
10821 M:      Vishal Verma <vishal.l.verma@intel.com>
10822 M:      Dave Jiang <dave.jiang@intel.com>
10823 L:      nvdimm@lists.linux.dev
10824 S:      Supported
10825 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10826 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10827 F:      drivers/nvdimm/pmem*
10828
10829 LIBNVDIMM: DEVICETREE BINDINGS
10830 M:      Oliver O'Halloran <oohall@gmail.com>
10831 L:      nvdimm@lists.linux.dev
10832 S:      Supported
10833 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10834 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
10835 F:      drivers/nvdimm/of_pmem.c
10836
10837 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
10838 M:      Dan Williams <dan.j.williams@intel.com>
10839 M:      Vishal Verma <vishal.l.verma@intel.com>
10840 M:      Dave Jiang <dave.jiang@intel.com>
10841 M:      Ira Weiny <ira.weiny@intel.com>
10842 L:      nvdimm@lists.linux.dev
10843 S:      Supported
10844 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10845 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10846 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
10847 F:      drivers/acpi/nfit/*
10848 F:      drivers/nvdimm/*
10849 F:      include/linux/libnvdimm.h
10850 F:      include/linux/nd.h
10851 F:      include/uapi/linux/ndctl.h
10852 F:      tools/testing/nvdimm/
10853
10854 LICENSES and SPDX stuff
10855 M:      Thomas Gleixner <tglx@linutronix.de>
10856 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10857 L:      linux-spdx@vger.kernel.org
10858 S:      Maintained
10859 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
10860 F:      COPYING
10861 F:      Documentation/process/license-rules.rst
10862 F:      LICENSES/
10863 F:      scripts/spdxcheck-test.sh
10864 F:      scripts/spdxcheck.py
10865
10866 LINEAR RANGES HELPERS
10867 M:      Mark Brown <broonie@kernel.org>
10868 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
10869 F:      lib/linear_ranges.c
10870 F:      lib/test_linear_ranges.c
10871 F:      include/linux/linear_range.h
10872
10873 LINUX FOR POWER MACINTOSH
10874 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
10875 L:      linuxppc-dev@lists.ozlabs.org
10876 S:      Odd Fixes
10877 F:      arch/powerpc/platforms/powermac/
10878 F:      drivers/macintosh/
10879
10880 LINUX FOR POWERPC (32-BIT AND 64-BIT)
10881 M:      Michael Ellerman <mpe@ellerman.id.au>
10882 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
10883 R:      Paul Mackerras <paulus@samba.org>
10884 L:      linuxppc-dev@lists.ozlabs.org
10885 S:      Supported
10886 W:      https://github.com/linuxppc/wiki/wiki
10887 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
10888 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
10889 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
10890 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
10891 F:      Documentation/devicetree/bindings/powerpc/
10892 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
10893 F:      Documentation/powerpc/
10894 F:      arch/powerpc/
10895 F:      drivers/*/*/*pasemi*
10896 F:      drivers/*/*pasemi*
10897 F:      drivers/char/tpm/tpm_ibmvtpm*
10898 F:      drivers/crypto/nx/
10899 F:      drivers/crypto/vmx/
10900 F:      drivers/i2c/busses/i2c-opal.c
10901 F:      drivers/net/ethernet/ibm/ibmveth.*
10902 F:      drivers/net/ethernet/ibm/ibmvnic.*
10903 F:      drivers/pci/hotplug/pnv_php.c
10904 F:      drivers/pci/hotplug/rpa*
10905 F:      drivers/rtc/rtc-opal.c
10906 F:      drivers/scsi/ibmvscsi/
10907 F:      drivers/tty/hvc/hvc_opal.c
10908 F:      drivers/watchdog/wdrtas.c
10909 F:      tools/testing/selftests/powerpc
10910 N:      /pmac
10911 N:      powermac
10912 N:      powernv
10913 N:      [^a-z0-9]ps3
10914 N:      pseries
10915
10916 LINUX FOR POWERPC EMBEDDED MPC5XXX
10917 M:      Anatolij Gustschin <agust@denx.de>
10918 L:      linuxppc-dev@lists.ozlabs.org
10919 S:      Odd Fixes
10920 F:      arch/powerpc/platforms/512x/
10921 F:      arch/powerpc/platforms/52xx/
10922
10923 LINUX FOR POWERPC EMBEDDED PPC4XX
10924 L:      linuxppc-dev@lists.ozlabs.org
10925 S:      Orphan
10926 F:      arch/powerpc/platforms/40x/
10927 F:      arch/powerpc/platforms/44x/
10928
10929 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
10930 M:      Scott Wood <oss@buserror.net>
10931 L:      linuxppc-dev@lists.ozlabs.org
10932 S:      Odd fixes
10933 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
10934 F:      Documentation/devicetree/bindings/powerpc/fsl/
10935 F:      arch/powerpc/platforms/83xx/
10936 F:      arch/powerpc/platforms/85xx/
10937
10938 LINUX FOR POWERPC EMBEDDED PPC8XX
10939 M:      Christophe Leroy <christophe.leroy@csgroup.eu>
10940 L:      linuxppc-dev@lists.ozlabs.org
10941 S:      Maintained
10942 F:      arch/powerpc/platforms/8xx/
10943
10944 LINUX KERNEL DUMP TEST MODULE (LKDTM)
10945 M:      Kees Cook <keescook@chromium.org>
10946 S:      Maintained
10947 F:      drivers/misc/lkdtm/*
10948 F:      tools/testing/selftests/lkdtm/*
10949
10950 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
10951 M:      Alan Stern <stern@rowland.harvard.edu>
10952 M:      Andrea Parri <parri.andrea@gmail.com>
10953 M:      Will Deacon <will@kernel.org>
10954 M:      Peter Zijlstra <peterz@infradead.org>
10955 M:      Boqun Feng <boqun.feng@gmail.com>
10956 M:      Nicholas Piggin <npiggin@gmail.com>
10957 M:      David Howells <dhowells@redhat.com>
10958 M:      Jade Alglave <j.alglave@ucl.ac.uk>
10959 M:      Luc Maranget <luc.maranget@inria.fr>
10960 M:      "Paul E. McKenney" <paulmck@kernel.org>
10961 R:      Akira Yokosawa <akiyks@gmail.com>
10962 R:      Daniel Lustig <dlustig@nvidia.com>
10963 R:      Joel Fernandes <joel@joelfernandes.org>
10964 L:      linux-kernel@vger.kernel.org
10965 L:      linux-arch@vger.kernel.org
10966 S:      Supported
10967 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
10968 F:      Documentation/atomic_bitops.txt
10969 F:      Documentation/atomic_t.txt
10970 F:      Documentation/core-api/refcount-vs-atomic.rst
10971 F:      Documentation/litmus-tests/
10972 F:      Documentation/memory-barriers.txt
10973 F:      tools/memory-model/
10974
10975 LIS3LV02D ACCELEROMETER DRIVER
10976 M:      Eric Piel <eric.piel@tremplin-utc.net>
10977 S:      Maintained
10978 F:      Documentation/misc-devices/lis3lv02d.rst
10979 F:      drivers/misc/lis3lv02d/
10980 F:      drivers/platform/x86/hp_accel.c
10981
10982 LIST KUNIT TEST
10983 M:      David Gow <davidgow@google.com>
10984 L:      linux-kselftest@vger.kernel.org
10985 L:      kunit-dev@googlegroups.com
10986 S:      Maintained
10987 F:      lib/list-test.c
10988
10989 LITEX PLATFORM
10990 M:      Karol Gugala <kgugala@antmicro.com>
10991 M:      Mateusz Holenko <mholenko@antmicro.com>
10992 S:      Maintained
10993 F:      Documentation/devicetree/bindings/*/litex,*.yaml
10994 F:      arch/openrisc/boot/dts/or1klitex.dts
10995 F:      drivers/soc/litex/litex_soc_ctrl.c
10996 F:      drivers/tty/serial/liteuart.c
10997 F:      include/linux/litex.h
10998
10999 LIVE PATCHING
11000 M:      Josh Poimboeuf <jpoimboe@redhat.com>
11001 M:      Jiri Kosina <jikos@kernel.org>
11002 M:      Miroslav Benes <mbenes@suse.cz>
11003 M:      Petr Mladek <pmladek@suse.com>
11004 R:      Joe Lawrence <joe.lawrence@redhat.com>
11005 L:      live-patching@vger.kernel.org
11006 S:      Maintained
11007 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
11008 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
11009 F:      Documentation/livepatch/
11010 F:      arch/powerpc/include/asm/livepatch.h
11011 F:      arch/s390/include/asm/livepatch.h
11012 F:      arch/x86/include/asm/livepatch.h
11013 F:      include/linux/livepatch.h
11014 F:      kernel/livepatch/
11015 F:      lib/livepatch/
11016 F:      samples/livepatch/
11017 F:      tools/testing/selftests/livepatch/
11018
11019 LLC (802.2)
11020 L:      netdev@vger.kernel.org
11021 S:      Odd fixes
11022 F:      include/linux/llc.h
11023 F:      include/net/llc*
11024 F:      include/uapi/linux/llc.h
11025 F:      net/llc/
11026
11027 LM73 HARDWARE MONITOR DRIVER
11028 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
11029 L:      linux-hwmon@vger.kernel.org
11030 S:      Maintained
11031 F:      drivers/hwmon/lm73.c
11032
11033 LM78 HARDWARE MONITOR DRIVER
11034 M:      Jean Delvare <jdelvare@suse.com>
11035 L:      linux-hwmon@vger.kernel.org
11036 S:      Maintained
11037 F:      Documentation/hwmon/lm78.rst
11038 F:      drivers/hwmon/lm78.c
11039
11040 LM83 HARDWARE MONITOR DRIVER
11041 M:      Jean Delvare <jdelvare@suse.com>
11042 L:      linux-hwmon@vger.kernel.org
11043 S:      Maintained
11044 F:      Documentation/hwmon/lm83.rst
11045 F:      drivers/hwmon/lm83.c
11046
11047 LM90 HARDWARE MONITOR DRIVER
11048 M:      Jean Delvare <jdelvare@suse.com>
11049 L:      linux-hwmon@vger.kernel.org
11050 S:      Maintained
11051 F:      Documentation/devicetree/bindings/hwmon/national,lm90.yaml
11052 F:      Documentation/hwmon/lm90.rst
11053 F:      drivers/hwmon/lm90.c
11054 F:      include/dt-bindings/thermal/lm90.h
11055
11056 LM95234 HARDWARE MONITOR DRIVER
11057 M:      Guenter Roeck <linux@roeck-us.net>
11058 L:      linux-hwmon@vger.kernel.org
11059 S:      Maintained
11060 F:      Documentation/hwmon/lm95234.rst
11061 F:      drivers/hwmon/lm95234.c
11062
11063 LME2510 MEDIA DRIVER
11064 M:      Malcolm Priestley <tvboxspy@gmail.com>
11065 L:      linux-media@vger.kernel.org
11066 S:      Maintained
11067 W:      https://linuxtv.org
11068 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11069 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
11070
11071 LOADPIN SECURITY MODULE
11072 M:      Kees Cook <keescook@chromium.org>
11073 S:      Supported
11074 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
11075 F:      Documentation/admin-guide/LSM/LoadPin.rst
11076 F:      security/loadpin/
11077
11078 LOCKING PRIMITIVES
11079 M:      Peter Zijlstra <peterz@infradead.org>
11080 M:      Ingo Molnar <mingo@redhat.com>
11081 M:      Will Deacon <will@kernel.org>
11082 R:      Waiman Long <longman@redhat.com>
11083 R:      Boqun Feng <boqun.feng@gmail.com> (LOCKDEP)
11084 L:      linux-kernel@vger.kernel.org
11085 S:      Maintained
11086 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
11087 F:      Documentation/locking/
11088 F:      arch/*/include/asm/spinlock*.h
11089 F:      include/linux/lockdep.h
11090 F:      include/linux/mutex*.h
11091 F:      include/linux/rwlock*.h
11092 F:      include/linux/rwsem*.h
11093 F:      include/linux/seqlock.h
11094 F:      include/linux/spinlock*.h
11095 F:      kernel/locking/
11096 F:      lib/locking*.[ch]
11097 X:      kernel/locking/locktorture.c
11098
11099 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
11100 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
11101 L:      linux-ntfs-dev@lists.sourceforge.net
11102 S:      Maintained
11103 W:      http://www.linux-ntfs.org/content/view/19/37/
11104 F:      Documentation/admin-guide/ldm.rst
11105 F:      block/partitions/ldm.*
11106
11107 LOGITECH HID GAMING KEYBOARDS
11108 M:      Hans de Goede <hdegoede@redhat.com>
11109 L:      linux-input@vger.kernel.org
11110 S:      Maintained
11111 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
11112 F:      drivers/hid/hid-lg-g15.c
11113
11114 LONTIUM LT8912B MIPI TO HDMI BRIDGE
11115 M:      Adrien Grassein <adrien.grassein@gmail.com>
11116 S:      Maintained
11117 F:      Documentation/devicetree/bindings/display/bridge/lontium,lt8912b.yaml
11118 F:      drivers/gpu/drm/bridge/lontium-lt8912b.c
11119
11120 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
11121 M:      Sathya Prakash <sathya.prakash@broadcom.com>
11122 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
11123 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
11124 L:      MPT-FusionLinux.pdl@broadcom.com
11125 L:      linux-scsi@vger.kernel.org
11126 S:      Supported
11127 W:      http://www.avagotech.com/support/
11128 F:      drivers/message/fusion/
11129 F:      drivers/scsi/mpt3sas/
11130
11131 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
11132 M:      Matthew Wilcox <willy@infradead.org>
11133 L:      linux-scsi@vger.kernel.org
11134 S:      Maintained
11135 F:      drivers/scsi/sym53c8xx_2/
11136
11137 LTC1660 DAC DRIVER
11138 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
11139 L:      linux-iio@vger.kernel.org
11140 S:      Maintained
11141 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
11142 F:      drivers/iio/dac/ltc1660.c
11143
11144 LTC2947 HARDWARE MONITOR DRIVER
11145 M:      Nuno Sá <nuno.sa@analog.com>
11146 L:      linux-hwmon@vger.kernel.org
11147 S:      Supported
11148 W:      http://ez.analog.com/community/linux-device-drivers
11149 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
11150 F:      drivers/hwmon/ltc2947-core.c
11151 F:      drivers/hwmon/ltc2947-i2c.c
11152 F:      drivers/hwmon/ltc2947-spi.c
11153 F:      drivers/hwmon/ltc2947.h
11154
11155 LTC2983 IIO TEMPERATURE DRIVER
11156 M:      Nuno Sá <nuno.sa@analog.com>
11157 L:      linux-iio@vger.kernel.org
11158 S:      Supported
11159 W:      http://ez.analog.com/community/linux-device-drivers
11160 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
11161 F:      drivers/iio/temperature/ltc2983.c
11162
11163 LTC4261 HARDWARE MONITOR DRIVER
11164 M:      Guenter Roeck <linux@roeck-us.net>
11165 L:      linux-hwmon@vger.kernel.org
11166 S:      Maintained
11167 F:      Documentation/hwmon/ltc4261.rst
11168 F:      drivers/hwmon/ltc4261.c
11169
11170 LTC4306 I2C MULTIPLEXER DRIVER
11171 M:      Michael Hennerich <michael.hennerich@analog.com>
11172 L:      linux-i2c@vger.kernel.org
11173 S:      Supported
11174 W:      http://ez.analog.com/community/linux-device-drivers
11175 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
11176 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
11177
11178 LTP (Linux Test Project)
11179 M:      Mike Frysinger <vapier@gentoo.org>
11180 M:      Cyril Hrubis <chrubis@suse.cz>
11181 M:      Wanlong Gao <wanlong.gao@gmail.com>
11182 M:      Jan Stancek <jstancek@redhat.com>
11183 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
11184 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
11185 L:      ltp@lists.linux.it (subscribers-only)
11186 S:      Maintained
11187 W:      http://linux-test-project.github.io/
11188 T:      git git://github.com/linux-test-project/ltp.git
11189
11190 LYNX PCS MODULE
11191 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
11192 L:      netdev@vger.kernel.org
11193 S:      Supported
11194 F:      drivers/net/pcs/pcs-lynx.c
11195 F:      include/linux/pcs-lynx.h
11196
11197 M68K ARCHITECTURE
11198 M:      Geert Uytterhoeven <geert@linux-m68k.org>
11199 L:      linux-m68k@lists.linux-m68k.org
11200 S:      Maintained
11201 W:      http://www.linux-m68k.org/
11202 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
11203 F:      arch/m68k/
11204 F:      drivers/zorro/
11205
11206 M68K ON APPLE MACINTOSH
11207 M:      Joshua Thompson <funaho@jurai.org>
11208 L:      linux-m68k@lists.linux-m68k.org
11209 S:      Maintained
11210 W:      http://www.mac.linux-m68k.org/
11211 F:      arch/m68k/mac/
11212 F:      drivers/macintosh/adb-iop.c
11213 F:      drivers/macintosh/via-macii.c
11214
11215 M68K ON HP9000/300
11216 M:      Philip Blundell <philb@gnu.org>
11217 S:      Maintained
11218 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
11219 F:      arch/m68k/hp300/
11220
11221 M88DS3103 MEDIA DRIVER
11222 M:      Antti Palosaari <crope@iki.fi>
11223 L:      linux-media@vger.kernel.org
11224 S:      Maintained
11225 W:      https://linuxtv.org
11226 W:      http://palosaari.fi/linux/
11227 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11228 T:      git git://linuxtv.org/anttip/media_tree.git
11229 F:      drivers/media/dvb-frontends/m88ds3103*
11230
11231 M88RS2000 MEDIA DRIVER
11232 M:      Malcolm Priestley <tvboxspy@gmail.com>
11233 L:      linux-media@vger.kernel.org
11234 S:      Maintained
11235 W:      https://linuxtv.org
11236 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11237 F:      drivers/media/dvb-frontends/m88rs2000*
11238
11239 MA901 MASTERKIT USB FM RADIO DRIVER
11240 M:      Alexey Klimov <klimov.linux@gmail.com>
11241 L:      linux-media@vger.kernel.org
11242 S:      Maintained
11243 T:      git git://linuxtv.org/media_tree.git
11244 F:      drivers/media/radio/radio-ma901.c
11245
11246 MAC80211
11247 M:      Johannes Berg <johannes@sipsolutions.net>
11248 L:      linux-wireless@vger.kernel.org
11249 S:      Maintained
11250 W:      https://wireless.wiki.kernel.org/
11251 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
11252 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
11253 F:      Documentation/networking/mac80211-injection.rst
11254 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
11255 F:      drivers/net/wireless/mac80211_hwsim.[ch]
11256 F:      include/net/mac80211.h
11257 F:      net/mac80211/
11258
11259 MAILBOX API
11260 M:      Jassi Brar <jassisinghbrar@gmail.com>
11261 L:      linux-kernel@vger.kernel.org
11262 S:      Maintained
11263 F:      drivers/mailbox/
11264 F:      include/linux/mailbox_client.h
11265 F:      include/linux/mailbox_controller.h
11266 F:      include/dt-bindings/mailbox/
11267 F:      Documentation/devicetree/bindings/mailbox/
11268
11269 MAILBOX ARM MHUv2
11270 M:      Viresh Kumar <viresh.kumar@linaro.org>
11271 M:      Tushar Khandelwal <Tushar.Khandelwal@arm.com>
11272 L:      linux-kernel@vger.kernel.org
11273 S:      Maintained
11274 F:      drivers/mailbox/arm_mhuv2.c
11275 F:      include/linux/mailbox/arm_mhuv2_message.h
11276 F:      Documentation/devicetree/bindings/mailbox/arm,mhuv2.yaml
11277
11278 MANAGEMENT COMPONENT TRANSPORT PROTOCOL (MCTP)
11279 M:      Jeremy Kerr <jk@codeconstruct.com.au>
11280 M:      Matt Johnston <matt@codeconstruct.com.au>
11281 L:      netdev@vger.kernel.org
11282 S:      Maintained
11283 F:      Documentation/networking/mctp.rst
11284 F:      drivers/net/mctp/
11285 F:      include/net/mctp.h
11286 F:      include/net/mctpdevice.h
11287 F:      include/net/netns/mctp.h
11288 F:      net/mctp/
11289
11290 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
11291 M:      Michael Kerrisk <mtk.manpages@gmail.com>
11292 L:      linux-man@vger.kernel.org
11293 S:      Maintained
11294 W:      http://www.kernel.org/doc/man-pages
11295
11296 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
11297 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
11298 L:      linux-mips@vger.kernel.org
11299 S:      Maintained
11300 F:      arch/mips/boot/dts/img/pistachio*
11301
11302 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
11303 M:      Andrew Lunn <andrew@lunn.ch>
11304 M:      Vivien Didelot <vivien.didelot@gmail.com>
11305 L:      netdev@vger.kernel.org
11306 S:      Maintained
11307 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
11308 F:      Documentation/networking/devlink/mv88e6xxx.rst
11309 F:      drivers/net/dsa/mv88e6xxx/
11310 F:      include/linux/dsa/mv88e6xxx.h
11311 F:      include/linux/platform_data/mv88e6xxx.h
11312
11313 MARVELL ARMADA 3700 PHY DRIVERS
11314 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11315 S:      Maintained
11316 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
11317 F:      Documentation/devicetree/bindings/phy/marvell,armada-3700-utmi-phy.yaml
11318 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
11319 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
11320
11321 MARVELL ARMADA DRM SUPPORT
11322 M:      Russell King <linux@armlinux.org.uk>
11323 S:      Maintained
11324 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
11325 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
11326 F:      Documentation/devicetree/bindings/display/armada/
11327 F:      drivers/gpu/drm/armada/
11328 F:      include/uapi/drm/armada_drm.h
11329
11330 MARVELL CRYPTO DRIVER
11331 M:      Boris Brezillon <bbrezillon@kernel.org>
11332 M:      Arnaud Ebalard <arno@natisbad.org>
11333 M:      Srujana Challa <schalla@marvell.com>
11334 L:      linux-crypto@vger.kernel.org
11335 S:      Maintained
11336 F:      drivers/crypto/marvell/
11337 F:      include/linux/soc/marvell/octeontx2/
11338
11339 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
11340 M:      Mirko Lindner <mlindner@marvell.com>
11341 M:      Stephen Hemminger <stephen@networkplumber.org>
11342 L:      netdev@vger.kernel.org
11343 S:      Maintained
11344 F:      drivers/net/ethernet/marvell/sk*
11345
11346 MARVELL LIBERTAS WIRELESS DRIVER
11347 L:      libertas-dev@lists.infradead.org
11348 S:      Orphan
11349 F:      drivers/net/wireless/marvell/libertas/
11350
11351 MARVELL MACCHIATOBIN SUPPORT
11352 M:      Russell King <linux@armlinux.org.uk>
11353 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11354 S:      Maintained
11355 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
11356
11357 MARVELL MV643XX ETHERNET DRIVER
11358 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
11359 L:      netdev@vger.kernel.org
11360 S:      Maintained
11361 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
11362 F:      include/linux/mv643xx.h
11363
11364 MARVELL MV88X3310 PHY DRIVER
11365 M:      Russell King <linux@armlinux.org.uk>
11366 M:      Marek Behún <kabel@kernel.org>
11367 L:      netdev@vger.kernel.org
11368 S:      Maintained
11369 F:      drivers/net/phy/marvell10g.c
11370
11371 MARVELL MVEBU THERMAL DRIVER
11372 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11373 S:      Maintained
11374 F:      drivers/thermal/armada_thermal.c
11375
11376 MARVELL MVNETA ETHERNET DRIVER
11377 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
11378 L:      netdev@vger.kernel.org
11379 S:      Maintained
11380 F:      drivers/net/ethernet/marvell/mvneta.*
11381
11382 MARVELL MVPP2 ETHERNET DRIVER
11383 M:      Marcin Wojtas <mw@semihalf.com>
11384 M:      Russell King <linux@armlinux.org.uk>
11385 L:      netdev@vger.kernel.org
11386 S:      Maintained
11387 F:      Documentation/devicetree/bindings/net/marvell-pp2.txt
11388 F:      drivers/net/ethernet/marvell/mvpp2/
11389
11390 MARVELL MWIFIEX WIRELESS DRIVER
11391 M:      Amitkumar Karwar <amitkarwar@gmail.com>
11392 M:      Ganapathi Bhat <ganapathi017@gmail.com>
11393 M:      Sharvari Harisangam <sharvari.harisangam@nxp.com>
11394 M:      Xinming Hu <huxinming820@gmail.com>
11395 L:      linux-wireless@vger.kernel.org
11396 S:      Maintained
11397 F:      drivers/net/wireless/marvell/mwifiex/
11398
11399 MARVELL MWL8K WIRELESS DRIVER
11400 M:      Lennert Buytenhek <buytenh@wantstofly.org>
11401 L:      linux-wireless@vger.kernel.org
11402 S:      Odd Fixes
11403 F:      drivers/net/wireless/marvell/mwl8k.c
11404
11405 MARVELL NAND CONTROLLER DRIVER
11406 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11407 L:      linux-mtd@lists.infradead.org
11408 S:      Maintained
11409 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
11410 F:      drivers/mtd/nand/raw/marvell_nand.c
11411
11412 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
11413 M:      Sunil Goutham <sgoutham@marvell.com>
11414 M:      Geetha sowjanya <gakula@marvell.com>
11415 M:      Subbaraya Sundeep <sbhatta@marvell.com>
11416 M:      hariprasad <hkelam@marvell.com>
11417 L:      netdev@vger.kernel.org
11418 S:      Supported
11419 F:      drivers/net/ethernet/marvell/octeontx2/nic/
11420 F:      include/linux/soc/marvell/octeontx2/
11421
11422 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
11423 M:      Sunil Goutham <sgoutham@marvell.com>
11424 M:      Linu Cherian <lcherian@marvell.com>
11425 M:      Geetha sowjanya <gakula@marvell.com>
11426 M:      Jerin Jacob <jerinj@marvell.com>
11427 M:      hariprasad <hkelam@marvell.com>
11428 M:      Subbaraya Sundeep <sbhatta@marvell.com>
11429 L:      netdev@vger.kernel.org
11430 S:      Supported
11431 F:      Documentation/networking/device_drivers/ethernet/marvell/octeontx2.rst
11432 F:      drivers/net/ethernet/marvell/octeontx2/af/
11433
11434 MARVELL PRESTERA ETHERNET SWITCH DRIVER
11435 M:      Taras Chornyi <tchornyi@marvell.com>
11436 S:      Supported
11437 W:      https://github.com/Marvell-switching/switchdev-prestera
11438 F:      drivers/net/ethernet/marvell/prestera/
11439
11440 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
11441 M:      Nicolas Pitre <nico@fluxnic.net>
11442 S:      Odd Fixes
11443 F:      drivers/mmc/host/mvsdio.*
11444
11445 MARVELL USB MDIO CONTROLLER DRIVER
11446 M:      Tobias Waldekranz <tobias@waldekranz.com>
11447 L:      netdev@vger.kernel.org
11448 S:      Maintained
11449 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
11450 F:      drivers/net/mdio/mdio-mvusb.c
11451
11452 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
11453 M:      Hu Ziji <huziji@marvell.com>
11454 L:      linux-mmc@vger.kernel.org
11455 S:      Supported
11456 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
11457 F:      drivers/mmc/host/sdhci-xenon*
11458
11459 MATROX FRAMEBUFFER DRIVER
11460 L:      linux-fbdev@vger.kernel.org
11461 S:      Orphan
11462 F:      drivers/video/fbdev/matrox/matroxfb_*
11463 F:      include/uapi/linux/matroxfb.h
11464
11465 MAX15301 DRIVER
11466 M:      Daniel Nilsson <daniel.nilsson@flex.com>
11467 L:      linux-hwmon@vger.kernel.org
11468 S:      Maintained
11469 F:      Documentation/hwmon/max15301.rst
11470 F:      drivers/hwmon/pmbus/max15301.c
11471
11472 MAX16065 HARDWARE MONITOR DRIVER
11473 M:      Guenter Roeck <linux@roeck-us.net>
11474 L:      linux-hwmon@vger.kernel.org
11475 S:      Maintained
11476 F:      Documentation/hwmon/max16065.rst
11477 F:      drivers/hwmon/max16065.c
11478
11479 MAX2175 SDR TUNER DRIVER
11480 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
11481 L:      linux-media@vger.kernel.org
11482 S:      Maintained
11483 T:      git git://linuxtv.org/media_tree.git
11484 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
11485 F:      Documentation/userspace-api/media/drivers/max2175.rst
11486 F:      drivers/media/i2c/max2175*
11487 F:      include/uapi/linux/max2175.h
11488
11489 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
11490 L:      linux-hwmon@vger.kernel.org
11491 S:      Orphan
11492 F:      Documentation/hwmon/max6650.rst
11493 F:      drivers/hwmon/max6650.c
11494
11495 MAX6697 HARDWARE MONITOR DRIVER
11496 M:      Guenter Roeck <linux@roeck-us.net>
11497 L:      linux-hwmon@vger.kernel.org
11498 S:      Maintained
11499 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
11500 F:      Documentation/hwmon/max6697.rst
11501 F:      drivers/hwmon/max6697.c
11502 F:      include/linux/platform_data/max6697.h
11503
11504 MAX9286 QUAD GMSL DESERIALIZER DRIVER
11505 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
11506 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11507 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
11508 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
11509 L:      linux-media@vger.kernel.org
11510 S:      Maintained
11511 F:      Documentation/devicetree/bindings/media/i2c/maxim,max9286.yaml
11512 F:      drivers/media/i2c/max9286.c
11513
11514 MAX9860 MONO AUDIO VOICE CODEC DRIVER
11515 M:      Peter Rosin <peda@axentia.se>
11516 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11517 S:      Maintained
11518 F:      Documentation/devicetree/bindings/sound/max9860.txt
11519 F:      sound/soc/codecs/max9860.*
11520
11521 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
11522 M:      Andreas Klinger <ak@it-klinger.de>
11523 L:      linux-iio@vger.kernel.org
11524 S:      Maintained
11525 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
11526 F:      drivers/iio/proximity/mb1232.c
11527
11528 MAXIM MAX17040 FAMILY FUEL GAUGE DRIVERS
11529 R:      Iskren Chernev <iskren.chernev@gmail.com>
11530 R:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
11531 R:      Marek Szyprowski <m.szyprowski@samsung.com>
11532 R:      Matheus Castello <matheus@castello.eng.br>
11533 L:      linux-pm@vger.kernel.org
11534 S:      Maintained
11535 F:      Documentation/devicetree/bindings/power/supply/maxim,max17040.yaml
11536 F:      drivers/power/supply/max17040_battery.c
11537
11538 MAXIM MAX17042 FAMILY FUEL GAUGE DRIVERS
11539 R:      Hans de Goede <hdegoede@redhat.com>
11540 R:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
11541 R:      Marek Szyprowski <m.szyprowski@samsung.com>
11542 R:      Sebastian Krzyszkowiak <sebastian.krzyszkowiak@puri.sm>
11543 R:      Purism Kernel Team <kernel@puri.sm>
11544 L:      linux-pm@vger.kernel.org
11545 S:      Maintained
11546 F:      Documentation/devicetree/bindings/power/supply/maxim,max17042.yaml
11547 F:      drivers/power/supply/max17042_battery.c
11548
11549 MAXIM MAX77650 PMIC MFD DRIVER
11550 M:      Bartosz Golaszewski <brgl@bgdev.pl>
11551 L:      linux-kernel@vger.kernel.org
11552 S:      Maintained
11553 F:      Documentation/devicetree/bindings/*/*max77650.yaml
11554 F:      Documentation/devicetree/bindings/*/max77650*.yaml
11555 F:      drivers/gpio/gpio-max77650.c
11556 F:      drivers/input/misc/max77650-onkey.c
11557 F:      drivers/leds/leds-max77650.c
11558 F:      drivers/mfd/max77650.c
11559 F:      drivers/power/supply/max77650-charger.c
11560 F:      drivers/regulator/max77650-regulator.c
11561 F:      include/linux/mfd/max77650.h
11562
11563 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
11564 M:      Javier Martinez Canillas <javier@dowhile0.org>
11565 L:      linux-kernel@vger.kernel.org
11566 S:      Supported
11567 F:      Documentation/devicetree/bindings/*/*max77802.txt
11568 F:      drivers/regulator/max77802-regulator.c
11569 F:      include/dt-bindings/*/*max77802.h
11570
11571 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
11572 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
11573 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11574 L:      linux-pm@vger.kernel.org
11575 S:      Supported
11576 F:      drivers/power/supply/max14577_charger.c
11577 F:      drivers/power/supply/max77693_charger.c
11578
11579 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
11580 M:      Chanwoo Choi <cw00.choi@samsung.com>
11581 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
11582 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11583 L:      linux-kernel@vger.kernel.org
11584 S:      Supported
11585 F:      Documentation/devicetree/bindings/*/max77686.txt
11586 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
11587 F:      Documentation/devicetree/bindings/mfd/max14577.txt
11588 F:      Documentation/devicetree/bindings/mfd/max77693.txt
11589 F:      drivers/*/max14577*.c
11590 F:      drivers/*/max77686*.c
11591 F:      drivers/*/max77693*.c
11592 F:      drivers/clk/clk-max77686.c
11593 F:      drivers/extcon/extcon-max14577.c
11594 F:      drivers/extcon/extcon-max77693.c
11595 F:      drivers/rtc/rtc-max77686.c
11596 F:      include/linux/mfd/max14577*.h
11597 F:      include/linux/mfd/max77686*.h
11598 F:      include/linux/mfd/max77693*.h
11599
11600 MAXIRADIO FM RADIO RECEIVER DRIVER
11601 M:      Hans Verkuil <hverkuil@xs4all.nl>
11602 L:      linux-media@vger.kernel.org
11603 S:      Maintained
11604 W:      https://linuxtv.org
11605 T:      git git://linuxtv.org/media_tree.git
11606 F:      drivers/media/radio/radio-maxiradio*
11607
11608 MAXLINEAR ETHERNET PHY DRIVER
11609 M:      Xu Liang <lxu@maxlinear.com>
11610 L:      netdev@vger.kernel.org
11611 S:      Supported
11612 F:      drivers/net/phy/mxl-gpy.c
11613
11614 MCBA MICROCHIP CAN BUS ANALYZER TOOL DRIVER
11615 R:      Yasushi SHOJI <yashi@spacecubics.com>
11616 L:      linux-can@vger.kernel.org
11617 S:      Maintained
11618 F:      drivers/net/can/usb/mcba_usb.c
11619
11620 MCAN MMIO DEVICE DRIVER
11621 M:      Chandrasekar Ramakrishnan <rcsekar@samsung.com>
11622 L:      linux-can@vger.kernel.org
11623 S:      Maintained
11624 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
11625 F:      drivers/net/can/m_can/m_can.c
11626 F:      drivers/net/can/m_can/m_can.h
11627 F:      drivers/net/can/m_can/m_can_platform.c
11628
11629 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
11630 M:      Rishi Gupta <gupt21@gmail.com>
11631 L:      linux-i2c@vger.kernel.org
11632 L:      linux-input@vger.kernel.org
11633 S:      Maintained
11634 F:      drivers/hid/hid-mcp2221.c
11635
11636 MCP251XFD SPI-CAN NETWORK DRIVER
11637 M:      Marc Kleine-Budde <mkl@pengutronix.de>
11638 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
11639 R:      Thomas Kopp <thomas.kopp@microchip.com>
11640 L:      linux-can@vger.kernel.org
11641 S:      Maintained
11642 F:      Documentation/devicetree/bindings/net/can/microchip,mcp251xfd.yaml
11643 F:      drivers/net/can/spi/mcp251xfd/
11644
11645 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
11646 M:      Peter Rosin <peda@axentia.se>
11647 L:      linux-iio@vger.kernel.org
11648 S:      Maintained
11649 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
11650 F:      drivers/iio/potentiometer/mcp4018.c
11651 F:      drivers/iio/potentiometer/mcp4531.c
11652
11653 MCR20A IEEE-802.15.4 RADIO DRIVER
11654 M:      Xue Liu <liuxuenetmail@gmail.com>
11655 L:      linux-wpan@vger.kernel.org
11656 S:      Maintained
11657 W:      https://github.com/xueliu/mcr20a-linux
11658 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
11659 F:      drivers/net/ieee802154/mcr20a.c
11660 F:      drivers/net/ieee802154/mcr20a.h
11661
11662 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
11663 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
11664 L:      linux-iio@vger.kernel.org
11665 S:      Maintained
11666 F:      drivers/iio/dac/cio-dac.c
11667
11668 MEDIA CONTROLLER FRAMEWORK
11669 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
11670 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11671 L:      linux-media@vger.kernel.org
11672 S:      Supported
11673 W:      https://www.linuxtv.org
11674 T:      git git://linuxtv.org/media_tree.git
11675 F:      drivers/media/mc/
11676 F:      include/media/media-*.h
11677 F:      include/uapi/linux/media.h
11678
11679 MEDIA DRIVER FOR FREESCALE IMX PXP
11680 M:      Philipp Zabel <p.zabel@pengutronix.de>
11681 L:      linux-media@vger.kernel.org
11682 S:      Maintained
11683 T:      git git://linuxtv.org/media_tree.git
11684 F:      drivers/media/platform/imx-pxp.[ch]
11685
11686 MEDIA DRIVERS FOR ASCOT2E
11687 M:      Sergey Kozlov <serjk@netup.ru>
11688 M:      Abylay Ospan <aospan@netup.ru>
11689 L:      linux-media@vger.kernel.org
11690 S:      Supported
11691 W:      https://linuxtv.org
11692 W:      http://netup.tv/
11693 T:      git git://linuxtv.org/media_tree.git
11694 F:      drivers/media/dvb-frontends/ascot2e*
11695
11696 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
11697 M:      Jasmin Jessich <jasmin@anw.at>
11698 L:      linux-media@vger.kernel.org
11699 S:      Maintained
11700 W:      https://linuxtv.org
11701 T:      git git://linuxtv.org/media_tree.git
11702 F:      drivers/media/dvb-frontends/cxd2099*
11703
11704 MEDIA DRIVERS FOR CXD2841ER
11705 M:      Sergey Kozlov <serjk@netup.ru>
11706 M:      Abylay Ospan <aospan@netup.ru>
11707 L:      linux-media@vger.kernel.org
11708 S:      Supported
11709 W:      https://linuxtv.org
11710 W:      http://netup.tv/
11711 T:      git git://linuxtv.org/media_tree.git
11712 F:      drivers/media/dvb-frontends/cxd2841er*
11713
11714 MEDIA DRIVERS FOR CXD2880
11715 M:      Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
11716 L:      linux-media@vger.kernel.org
11717 S:      Supported
11718 W:      http://linuxtv.org/
11719 T:      git git://linuxtv.org/media_tree.git
11720 F:      drivers/media/dvb-frontends/cxd2880/*
11721 F:      drivers/media/spi/cxd2880*
11722
11723 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
11724 L:      linux-media@vger.kernel.org
11725 S:      Orphan
11726 W:      https://linuxtv.org
11727 T:      git git://linuxtv.org/media_tree.git
11728 F:      drivers/media/pci/ddbridge/*
11729
11730 MEDIA DRIVERS FOR FREESCALE IMX
11731 M:      Steve Longerbeam <slongerbeam@gmail.com>
11732 M:      Philipp Zabel <p.zabel@pengutronix.de>
11733 L:      linux-media@vger.kernel.org
11734 S:      Maintained
11735 T:      git git://linuxtv.org/media_tree.git
11736 F:      Documentation/admin-guide/media/imx.rst
11737 F:      Documentation/devicetree/bindings/media/imx.txt
11738 F:      drivers/staging/media/imx/
11739 F:      include/linux/imx-media.h
11740 F:      include/media/imx.h
11741
11742 MEDIA DRIVERS FOR FREESCALE IMX7
11743 M:      Rui Miguel Silva <rmfrfs@gmail.com>
11744 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11745 L:      linux-media@vger.kernel.org
11746 S:      Maintained
11747 T:      git git://linuxtv.org/media_tree.git
11748 F:      Documentation/admin-guide/media/imx7.rst
11749 F:      Documentation/devicetree/bindings/media/nxp,imx7-csi.yaml
11750 F:      Documentation/devicetree/bindings/media/nxp,imx7-mipi-csi2.yaml
11751 F:      drivers/staging/media/imx/imx7-media-csi.c
11752 F:      drivers/staging/media/imx/imx7-mipi-csis.c
11753
11754 MEDIA DRIVERS FOR HELENE
11755 M:      Abylay Ospan <aospan@netup.ru>
11756 L:      linux-media@vger.kernel.org
11757 S:      Supported
11758 W:      https://linuxtv.org
11759 W:      http://netup.tv/
11760 T:      git git://linuxtv.org/media_tree.git
11761 F:      drivers/media/dvb-frontends/helene*
11762
11763 MEDIA DRIVERS FOR HORUS3A
11764 M:      Sergey Kozlov <serjk@netup.ru>
11765 M:      Abylay Ospan <aospan@netup.ru>
11766 L:      linux-media@vger.kernel.org
11767 S:      Supported
11768 W:      https://linuxtv.org
11769 W:      http://netup.tv/
11770 T:      git git://linuxtv.org/media_tree.git
11771 F:      drivers/media/dvb-frontends/horus3a*
11772
11773 MEDIA DRIVERS FOR LNBH25
11774 M:      Sergey Kozlov <serjk@netup.ru>
11775 M:      Abylay Ospan <aospan@netup.ru>
11776 L:      linux-media@vger.kernel.org
11777 S:      Supported
11778 W:      https://linuxtv.org
11779 W:      http://netup.tv/
11780 T:      git git://linuxtv.org/media_tree.git
11781 F:      drivers/media/dvb-frontends/lnbh25*
11782
11783 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
11784 L:      linux-media@vger.kernel.org
11785 S:      Orphan
11786 W:      https://linuxtv.org
11787 T:      git git://linuxtv.org/media_tree.git
11788 F:      drivers/media/dvb-frontends/mxl5xx*
11789
11790 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
11791 M:      Sergey Kozlov <serjk@netup.ru>
11792 M:      Abylay Ospan <aospan@netup.ru>
11793 L:      linux-media@vger.kernel.org
11794 S:      Supported
11795 W:      https://linuxtv.org
11796 W:      http://netup.tv/
11797 T:      git git://linuxtv.org/media_tree.git
11798 F:      drivers/media/pci/netup_unidvb/*
11799
11800 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
11801 M:      Dmitry Osipenko <digetx@gmail.com>
11802 L:      linux-media@vger.kernel.org
11803 L:      linux-tegra@vger.kernel.org
11804 S:      Maintained
11805 T:      git git://linuxtv.org/media_tree.git
11806 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
11807 F:      drivers/staging/media/tegra-vde/
11808
11809 MEDIA DRIVERS FOR RENESAS - CEU
11810 M:      Jacopo Mondi <jacopo@jmondi.org>
11811 L:      linux-media@vger.kernel.org
11812 L:      linux-renesas-soc@vger.kernel.org
11813 S:      Supported
11814 T:      git git://linuxtv.org/media_tree.git
11815 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
11816 F:      drivers/media/platform/renesas-ceu.c
11817 F:      include/media/drv-intf/renesas-ceu.h
11818
11819 MEDIA DRIVERS FOR RENESAS - DRIF
11820 M:      Fabrizio Castro <fabrizio.castro.jz@renesas.com>
11821 L:      linux-media@vger.kernel.org
11822 L:      linux-renesas-soc@vger.kernel.org
11823 S:      Supported
11824 T:      git git://linuxtv.org/media_tree.git
11825 F:      Documentation/devicetree/bindings/media/renesas,drif.yaml
11826 F:      drivers/media/platform/rcar_drif.c
11827
11828 MEDIA DRIVERS FOR RENESAS - FCP
11829 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11830 L:      linux-media@vger.kernel.org
11831 L:      linux-renesas-soc@vger.kernel.org
11832 S:      Supported
11833 T:      git git://linuxtv.org/media_tree.git
11834 F:      Documentation/devicetree/bindings/media/renesas,fcp.yaml
11835 F:      drivers/media/platform/rcar-fcp.c
11836 F:      include/media/rcar-fcp.h
11837
11838 MEDIA DRIVERS FOR RENESAS - FDP1
11839 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11840 L:      linux-media@vger.kernel.org
11841 L:      linux-renesas-soc@vger.kernel.org
11842 S:      Supported
11843 T:      git git://linuxtv.org/media_tree.git
11844 F:      Documentation/devicetree/bindings/media/renesas,fdp1.yaml
11845 F:      drivers/media/platform/rcar_fdp1.c
11846
11847 MEDIA DRIVERS FOR RENESAS - VIN
11848 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
11849 L:      linux-media@vger.kernel.org
11850 L:      linux-renesas-soc@vger.kernel.org
11851 S:      Supported
11852 T:      git git://linuxtv.org/media_tree.git
11853 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
11854 F:      Documentation/devicetree/bindings/media/renesas,isp.yaml
11855 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
11856 F:      drivers/media/platform/rcar-isp.c
11857 F:      drivers/media/platform/rcar-vin/
11858
11859 MEDIA DRIVERS FOR RENESAS - VSP1
11860 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11861 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11862 L:      linux-media@vger.kernel.org
11863 L:      linux-renesas-soc@vger.kernel.org
11864 S:      Supported
11865 T:      git git://linuxtv.org/media_tree.git
11866 F:      Documentation/devicetree/bindings/media/renesas,vsp1.yaml
11867 F:      drivers/media/platform/vsp1/
11868
11869 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
11870 L:      linux-media@vger.kernel.org
11871 S:      Orphan
11872 W:      https://linuxtv.org
11873 T:      git git://linuxtv.org/media_tree.git
11874 F:      drivers/media/dvb-frontends/stv0910*
11875
11876 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
11877 L:      linux-media@vger.kernel.org
11878 S:      Orphan
11879 W:      https://linuxtv.org
11880 T:      git git://linuxtv.org/media_tree.git
11881 F:      drivers/media/dvb-frontends/stv6111*
11882
11883 MEDIA DRIVERS FOR STM32 - DCMI
11884 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
11885 L:      linux-media@vger.kernel.org
11886 S:      Supported
11887 T:      git git://linuxtv.org/media_tree.git
11888 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
11889 F:      drivers/media/platform/stm32/stm32-dcmi.c
11890
11891 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
11892 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
11893 L:      linux-media@vger.kernel.org
11894 S:      Maintained
11895 W:      https://linuxtv.org
11896 Q:      http://patchwork.kernel.org/project/linux-media/list/
11897 T:      git git://linuxtv.org/media_tree.git
11898 F:      Documentation/admin-guide/media/
11899 F:      Documentation/devicetree/bindings/media/
11900 F:      Documentation/driver-api/media/
11901 F:      Documentation/userspace-api/media/
11902 F:      drivers/media/
11903 F:      drivers/staging/media/
11904 F:      include/linux/platform_data/media/
11905 F:      include/media/
11906 F:      include/uapi/linux/dvb/
11907 F:      include/uapi/linux/ivtv*
11908 F:      include/uapi/linux/media.h
11909 F:      include/uapi/linux/meye.h
11910 F:      include/uapi/linux/uvcvideo.h
11911 F:      include/uapi/linux/v4l2-*
11912 F:      include/uapi/linux/videodev2.h
11913
11914 MEDIATEK BLUETOOTH DRIVER
11915 M:      Sean Wang <sean.wang@mediatek.com>
11916 L:      linux-bluetooth@vger.kernel.org
11917 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11918 S:      Maintained
11919 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
11920 F:      drivers/bluetooth/btmtkuart.c
11921
11922 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
11923 M:      Sean Wang <sean.wang@mediatek.com>
11924 L:      linux-pm@vger.kernel.org
11925 S:      Maintained
11926 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
11927 F:      drivers/power/reset/mt6323-poweroff.c
11928
11929 MEDIATEK CIR DRIVER
11930 M:      Sean Wang <sean.wang@mediatek.com>
11931 S:      Maintained
11932 F:      drivers/media/rc/mtk-cir.c
11933
11934 MEDIATEK DMA DRIVER
11935 M:      Sean Wang <sean.wang@mediatek.com>
11936 L:      dmaengine@vger.kernel.org
11937 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11938 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11939 S:      Maintained
11940 F:      Documentation/devicetree/bindings/dma/mtk-*
11941 F:      drivers/dma/mediatek/
11942
11943 MEDIATEK ETHERNET DRIVER
11944 M:      Felix Fietkau <nbd@nbd.name>
11945 M:      John Crispin <john@phrozen.org>
11946 M:      Sean Wang <sean.wang@mediatek.com>
11947 M:      Mark Lee <Mark-MC.Lee@mediatek.com>
11948 L:      netdev@vger.kernel.org
11949 S:      Maintained
11950 F:      drivers/net/ethernet/mediatek/
11951
11952 MEDIATEK I2C CONTROLLER DRIVER
11953 M:      Qii Wang <qii.wang@mediatek.com>
11954 L:      linux-i2c@vger.kernel.org
11955 S:      Maintained
11956 F:      Documentation/devicetree/bindings/i2c/i2c-mt65xx.txt
11957 F:      drivers/i2c/busses/i2c-mt65xx.c
11958
11959 MEDIATEK IOMMU DRIVER
11960 M:      Yong Wu <yong.wu@mediatek.com>
11961 L:      iommu@lists.linux-foundation.org
11962 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11963 S:      Supported
11964 F:      Documentation/devicetree/bindings/iommu/mediatek*
11965 F:      drivers/iommu/mtk_iommu*
11966 F:      include/dt-bindings/memory/mt*-port.h
11967
11968 MEDIATEK JPEG DRIVER
11969 M:      Rick Chang <rick.chang@mediatek.com>
11970 M:      Bin Liu <bin.liu@mediatek.com>
11971 S:      Supported
11972 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
11973 F:      drivers/media/platform/mtk-jpeg/
11974
11975 MEDIATEK MDP DRIVER
11976 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
11977 M:      Houlong Wei <houlong.wei@mediatek.com>
11978 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
11979 S:      Supported
11980 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
11981 F:      drivers/media/platform/mtk-mdp/
11982 F:      drivers/media/platform/mtk-vpu/
11983
11984 MEDIATEK MEDIA DRIVER
11985 M:      Tiffany Lin <tiffany.lin@mediatek.com>
11986 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
11987 S:      Supported
11988 F:      Documentation/devicetree/bindings/media/mediatek-vcodec.txt
11989 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
11990 F:      drivers/media/platform/mtk-vcodec/
11991 F:      drivers/media/platform/mtk-vpu/
11992
11993 MEDIATEK MMC/SD/SDIO DRIVER
11994 M:      Chaotian Jing <chaotian.jing@mediatek.com>
11995 S:      Maintained
11996 F:      Documentation/devicetree/bindings/mmc/mtk-sd.yaml
11997 F:      drivers/mmc/host/mtk-sd.c
11998
11999 MEDIATEK MT76 WIRELESS LAN DRIVER
12000 M:      Felix Fietkau <nbd@nbd.name>
12001 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
12002 M:      Ryder Lee <ryder.lee@mediatek.com>
12003 R:      Shayne Chen <shayne.chen@mediatek.com>
12004 R:      Sean Wang <sean.wang@mediatek.com>
12005 L:      linux-wireless@vger.kernel.org
12006 S:      Maintained
12007 F:      drivers/net/wireless/mediatek/mt76/
12008
12009 MEDIATEK MT7601U WIRELESS LAN DRIVER
12010 M:      Jakub Kicinski <kubakici@wp.pl>
12011 L:      linux-wireless@vger.kernel.org
12012 S:      Maintained
12013 F:      drivers/net/wireless/mediatek/mt7601u/
12014
12015 MEDIATEK MT7621 CLOCK DRIVER
12016 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
12017 S:      Maintained
12018 F:      Documentation/devicetree/bindings/clock/mediatek,mt7621-sysc.yaml
12019 F:      drivers/clk/ralink/clk-mt7621.c
12020
12021 MEDIATEK MT7621/28/88 I2C DRIVER
12022 M:      Stefan Roese <sr@denx.de>
12023 L:      linux-i2c@vger.kernel.org
12024 S:      Maintained
12025 F:      Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
12026 F:      drivers/i2c/busses/i2c-mt7621.c
12027
12028 MEDIATEK MT7621 PCIE CONTROLLER DRIVER
12029 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
12030 S:      Maintained
12031 F:      Documentation/devicetree/bindings/pci/mediatek,mt7621-pcie.yaml
12032 F:      drivers/pci/controller/pcie-mt7621.c
12033
12034 MEDIATEK MT7621 PHY PCI DRIVER
12035 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
12036 S:      Maintained
12037 F:      Documentation/devicetree/bindings/phy/mediatek,mt7621-pci-phy.yaml
12038 F:      drivers/phy/ralink/phy-mt7621-pci.c
12039
12040 MEDIATEK NAND CONTROLLER DRIVER
12041 L:      linux-mtd@lists.infradead.org
12042 S:      Orphan
12043 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
12044 F:      drivers/mtd/nand/raw/mtk_*
12045
12046 MEDIATEK PMIC LED DRIVER
12047 M:      Sean Wang <sean.wang@mediatek.com>
12048 S:      Maintained
12049 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
12050 F:      drivers/leds/leds-mt6323.c
12051
12052 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
12053 M:      Sean Wang <sean.wang@mediatek.com>
12054 S:      Maintained
12055 F:      drivers/char/hw_random/mtk-rng.c
12056
12057 MEDIATEK SMI DRIVER
12058 M:      Yong Wu <yong.wu@mediatek.com>
12059 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12060 S:      Supported
12061 F:      Documentation/devicetree/bindings/memory-controllers/mediatek,smi*
12062 F:      drivers/memory/mtk-smi.c
12063 F:      include/soc/mediatek/smi.h
12064
12065 MEDIATEK SWITCH DRIVER
12066 M:      Sean Wang <sean.wang@mediatek.com>
12067 M:      Landen Chao <Landen.Chao@mediatek.com>
12068 M:      DENG Qingfang <dqfext@gmail.com>
12069 L:      netdev@vger.kernel.org
12070 S:      Maintained
12071 F:      drivers/net/dsa/mt7530.*
12072 F:      net/dsa/tag_mtk.c
12073
12074 MEDIATEK USB3 DRD IP DRIVER
12075 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
12076 L:      linux-usb@vger.kernel.org
12077 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12078 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12079 S:      Maintained
12080 F:      Documentation/devicetree/bindings/usb/mediatek,*
12081 F:      drivers/usb/host/xhci-mtk*
12082 F:      drivers/usb/mtu3/
12083
12084 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
12085 M:      Peter Senna Tschudin <peter.senna@gmail.com>
12086 M:      Martin Donnelly <martin.donnelly@ge.com>
12087 M:      Martyn Welch <martyn.welch@collabora.co.uk>
12088 S:      Maintained
12089 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
12090 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
12091
12092 MEGARAID SCSI/SAS DRIVERS
12093 M:      Kashyap Desai <kashyap.desai@broadcom.com>
12094 M:      Sumit Saxena <sumit.saxena@broadcom.com>
12095 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
12096 L:      megaraidlinux.pdl@broadcom.com
12097 L:      linux-scsi@vger.kernel.org
12098 S:      Maintained
12099 W:      http://www.avagotech.com/support/
12100 F:      Documentation/scsi/megaraid.rst
12101 F:      drivers/scsi/megaraid.*
12102 F:      drivers/scsi/megaraid/
12103
12104 MELEXIS MLX90614 DRIVER
12105 M:      Crt Mori <cmo@melexis.com>
12106 L:      linux-iio@vger.kernel.org
12107 S:      Supported
12108 W:      http://www.melexis.com
12109 F:      drivers/iio/temperature/mlx90614.c
12110
12111 MELEXIS MLX90632 DRIVER
12112 M:      Crt Mori <cmo@melexis.com>
12113 L:      linux-iio@vger.kernel.org
12114 S:      Supported
12115 W:      http://www.melexis.com
12116 F:      drivers/iio/temperature/mlx90632.c
12117
12118 MELFAS MIP4 TOUCHSCREEN DRIVER
12119 M:      Sangwon Jee <jeesw@melfas.com>
12120 S:      Supported
12121 W:      http://www.melfas.com
12122 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
12123 F:      drivers/input/touchscreen/melfas_mip4.c
12124
12125 MELLANOX BLUEFIELD I2C DRIVER
12126 M:      Khalil Blaiech <kblaiech@nvidia.com>
12127 L:      linux-i2c@vger.kernel.org
12128 S:      Supported
12129 F:      Documentation/devicetree/bindings/i2c/mellanox,i2c-mlxbf.yaml
12130 F:      drivers/i2c/busses/i2c-mlxbf.c
12131
12132 MELLANOX ETHERNET DRIVER (mlx4_en)
12133 M:      Tariq Toukan <tariqt@nvidia.com>
12134 L:      netdev@vger.kernel.org
12135 S:      Supported
12136 W:      http://www.mellanox.com
12137 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12138 F:      drivers/net/ethernet/mellanox/mlx4/en_*
12139
12140 MELLANOX ETHERNET DRIVER (mlx5e)
12141 M:      Saeed Mahameed <saeedm@nvidia.com>
12142 L:      netdev@vger.kernel.org
12143 S:      Supported
12144 W:      http://www.mellanox.com
12145 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12146 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
12147
12148 MELLANOX ETHERNET INNOVA DRIVERS
12149 R:      Boris Pismenny <borisp@nvidia.com>
12150 L:      netdev@vger.kernel.org
12151 S:      Supported
12152 W:      http://www.mellanox.com
12153 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12154 F:      drivers/net/ethernet/mellanox/mlx5/core/accel/*
12155 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
12156 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
12157 F:      include/linux/mlx5/mlx5_ifc_fpga.h
12158
12159 MELLANOX ETHERNET SWITCH DRIVERS
12160 M:      Jiri Pirko <jiri@nvidia.com>
12161 M:      Ido Schimmel <idosch@nvidia.com>
12162 L:      netdev@vger.kernel.org
12163 S:      Supported
12164 W:      http://www.mellanox.com
12165 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12166 F:      drivers/net/ethernet/mellanox/mlxsw/
12167 F:      tools/testing/selftests/drivers/net/mlxsw/
12168
12169 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
12170 M:      mlxsw@nvidia.com
12171 L:      netdev@vger.kernel.org
12172 S:      Supported
12173 W:      http://www.mellanox.com
12174 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12175 F:      drivers/net/ethernet/mellanox/mlxfw/
12176
12177 MELLANOX HARDWARE PLATFORM SUPPORT
12178 M:      Hans de Goede <hdegoede@redhat.com>
12179 M:      Mark Gross <markgross@kernel.org>
12180 M:      Vadim Pasternak <vadimp@nvidia.com>
12181 L:      platform-driver-x86@vger.kernel.org
12182 S:      Supported
12183 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
12184 F:      drivers/platform/mellanox/
12185 F:      include/linux/platform_data/mlxreg.h
12186
12187 MELLANOX MLX4 core VPI driver
12188 M:      Tariq Toukan <tariqt@nvidia.com>
12189 L:      netdev@vger.kernel.org
12190 L:      linux-rdma@vger.kernel.org
12191 S:      Supported
12192 W:      http://www.mellanox.com
12193 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12194 F:      drivers/net/ethernet/mellanox/mlx4/
12195 F:      include/linux/mlx4/
12196
12197 MELLANOX MLX4 IB driver
12198 M:      Yishai Hadas <yishaih@nvidia.com>
12199 L:      linux-rdma@vger.kernel.org
12200 S:      Supported
12201 W:      http://www.mellanox.com
12202 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
12203 F:      drivers/infiniband/hw/mlx4/
12204 F:      include/linux/mlx4/
12205 F:      include/uapi/rdma/mlx4-abi.h
12206
12207 MELLANOX MLX5 core VPI driver
12208 M:      Saeed Mahameed <saeedm@nvidia.com>
12209 M:      Leon Romanovsky <leonro@nvidia.com>
12210 L:      netdev@vger.kernel.org
12211 L:      linux-rdma@vger.kernel.org
12212 S:      Supported
12213 W:      http://www.mellanox.com
12214 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12215 F:      Documentation/networking/device_drivers/ethernet/mellanox/
12216 F:      drivers/net/ethernet/mellanox/mlx5/core/
12217 F:      include/linux/mlx5/
12218
12219 MELLANOX MLX5 IB driver
12220 M:      Leon Romanovsky <leonro@nvidia.com>
12221 L:      linux-rdma@vger.kernel.org
12222 S:      Supported
12223 W:      http://www.mellanox.com
12224 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
12225 F:      drivers/infiniband/hw/mlx5/
12226 F:      include/linux/mlx5/
12227 F:      include/uapi/rdma/mlx5-abi.h
12228
12229 MELLANOX MLXCPLD I2C AND MUX DRIVER
12230 M:      Vadim Pasternak <vadimp@nvidia.com>
12231 M:      Michael Shych <michaelsh@nvidia.com>
12232 L:      linux-i2c@vger.kernel.org
12233 S:      Supported
12234 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
12235 F:      drivers/i2c/busses/i2c-mlxcpld.c
12236 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
12237
12238 MELLANOX MLXCPLD LED DRIVER
12239 M:      Vadim Pasternak <vadimp@nvidia.com>
12240 L:      linux-leds@vger.kernel.org
12241 S:      Supported
12242 F:      Documentation/leds/leds-mlxcpld.rst
12243 F:      drivers/leds/leds-mlxcpld.c
12244 F:      drivers/leds/leds-mlxreg.c
12245
12246 MELLANOX PLATFORM DRIVER
12247 M:      Vadim Pasternak <vadimp@nvidia.com>
12248 L:      platform-driver-x86@vger.kernel.org
12249 S:      Supported
12250 F:      drivers/platform/x86/mlx-platform.c
12251
12252 MEMBARRIER SUPPORT
12253 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
12254 M:      "Paul E. McKenney" <paulmck@kernel.org>
12255 L:      linux-kernel@vger.kernel.org
12256 S:      Supported
12257 F:      arch/powerpc/include/asm/membarrier.h
12258 F:      include/uapi/linux/membarrier.h
12259 F:      kernel/sched/membarrier.c
12260
12261 MEMBLOCK
12262 M:      Mike Rapoport <rppt@linux.ibm.com>
12263 L:      linux-mm@kvack.org
12264 S:      Maintained
12265 F:      Documentation/core-api/boot-time-mm.rst
12266 F:      include/linux/memblock.h
12267 F:      mm/memblock.c
12268
12269 MEMORY CONTROLLER DRIVERS
12270 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
12271 L:      linux-kernel@vger.kernel.org
12272 S:      Maintained
12273 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git
12274 F:      Documentation/devicetree/bindings/memory-controllers/
12275 F:      drivers/memory/
12276 F:      include/dt-bindings/memory/
12277 F:      include/memory/
12278
12279 MEMORY FREQUENCY SCALING DRIVERS FOR NVIDIA TEGRA
12280 M:      Dmitry Osipenko <digetx@gmail.com>
12281 L:      linux-pm@vger.kernel.org
12282 L:      linux-tegra@vger.kernel.org
12283 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
12284 S:      Maintained
12285 F:      drivers/devfreq/tegra30-devfreq.c
12286
12287 MEMORY MANAGEMENT
12288 M:      Andrew Morton <akpm@linux-foundation.org>
12289 L:      linux-mm@kvack.org
12290 S:      Maintained
12291 W:      http://www.linux-mm.org
12292 T:      quilt https://ozlabs.org/~akpm/mmotm/
12293 T:      quilt https://ozlabs.org/~akpm/mmots/
12294 T:      git git://github.com/hnaz/linux-mm.git
12295 F:      include/linux/gfp.h
12296 F:      include/linux/memory_hotplug.h
12297 F:      include/linux/mm.h
12298 F:      include/linux/mmzone.h
12299 F:      include/linux/pagewalk.h
12300 F:      include/linux/vmalloc.h
12301 F:      mm/
12302 F:      tools/testing/selftests/vm/
12303
12304 MEMORY TECHNOLOGY DEVICES (MTD)
12305 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12306 M:      Richard Weinberger <richard@nod.at>
12307 M:      Vignesh Raghavendra <vigneshr@ti.com>
12308 L:      linux-mtd@lists.infradead.org
12309 S:      Maintained
12310 W:      http://www.linux-mtd.infradead.org/
12311 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
12312 C:      irc://irc.oftc.net/mtd
12313 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
12314 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
12315 F:      Documentation/devicetree/bindings/mtd/
12316 F:      drivers/mtd/
12317 F:      include/linux/mtd/
12318 F:      include/uapi/mtd/
12319
12320 MEN A21 WATCHDOG DRIVER
12321 M:      Johannes Thumshirn <morbidrsa@gmail.com>
12322 L:      linux-watchdog@vger.kernel.org
12323 S:      Maintained
12324 F:      drivers/watchdog/mena21_wdt.c
12325
12326 MEN CHAMELEON BUS (mcb)
12327 M:      Johannes Thumshirn <morbidrsa@gmail.com>
12328 S:      Maintained
12329 F:      Documentation/driver-api/men-chameleon-bus.rst
12330 F:      drivers/mcb/
12331 F:      include/linux/mcb.h
12332
12333 MEN F21BMC (Board Management Controller)
12334 M:      Andreas Werner <andreas.werner@men.de>
12335 S:      Supported
12336 F:      Documentation/hwmon/menf21bmc.rst
12337 F:      drivers/hwmon/menf21bmc_hwmon.c
12338 F:      drivers/leds/leds-menf21bmc.c
12339 F:      drivers/mfd/menf21bmc.c
12340 F:      drivers/watchdog/menf21bmc_wdt.c
12341
12342 MEN Z069 WATCHDOG DRIVER
12343 M:      Johannes Thumshirn <jth@kernel.org>
12344 L:      linux-watchdog@vger.kernel.org
12345 S:      Maintained
12346 F:      drivers/watchdog/menz69_wdt.c
12347
12348 MESON AO CEC DRIVER FOR AMLOGIC SOCS
12349 M:      Neil Armstrong <narmstrong@baylibre.com>
12350 L:      linux-media@vger.kernel.org
12351 L:      linux-amlogic@lists.infradead.org
12352 S:      Supported
12353 W:      http://linux-meson.com/
12354 T:      git git://linuxtv.org/media_tree.git
12355 F:      Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
12356 F:      drivers/media/cec/platform/meson/ao-cec-g12a.c
12357 F:      drivers/media/cec/platform/meson/ao-cec.c
12358
12359 MESON GE2D DRIVER FOR AMLOGIC SOCS
12360 M:      Neil Armstrong <narmstrong@baylibre.com>
12361 L:      linux-media@vger.kernel.org
12362 L:      linux-amlogic@lists.infradead.org
12363 S:      Supported
12364 T:      git git://linuxtv.org/media_tree.git
12365 F:      Documentation/devicetree/bindings/media/amlogic,axg-ge2d.yaml
12366 F:      drivers/media/platform/meson/ge2d/
12367
12368 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
12369 M:      Liang Yang <liang.yang@amlogic.com>
12370 L:      linux-mtd@lists.infradead.org
12371 S:      Maintained
12372 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
12373 F:      drivers/mtd/nand/raw/meson_*
12374
12375 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
12376 M:      Neil Armstrong <narmstrong@baylibre.com>
12377 L:      linux-media@vger.kernel.org
12378 L:      linux-amlogic@lists.infradead.org
12379 S:      Supported
12380 T:      git git://linuxtv.org/media_tree.git
12381 F:      Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
12382 F:      drivers/staging/media/meson/vdec/
12383
12384 METHODE UDPU SUPPORT
12385 M:      Vladimir Vid <vladimir.vid@sartura.hr>
12386 S:      Maintained
12387 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
12388
12389 MHI BUS
12390 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
12391 R:      Hemant Kumar <hemantk@codeaurora.org>
12392 L:      mhi@lists.linux.dev
12393 L:      linux-arm-msm@vger.kernel.org
12394 S:      Maintained
12395 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
12396 F:      Documentation/ABI/stable/sysfs-bus-mhi
12397 F:      Documentation/mhi/
12398 F:      drivers/bus/mhi/
12399 F:      include/linux/mhi.h
12400
12401 MICROBLAZE ARCHITECTURE
12402 M:      Michal Simek <monstr@monstr.eu>
12403 S:      Supported
12404 W:      http://www.monstr.eu/fdt/
12405 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
12406 F:      arch/microblaze/
12407
12408 MICROCHIP AT91 DMA DRIVERS
12409 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
12410 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12411 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12412 L:      dmaengine@vger.kernel.org
12413 S:      Supported
12414 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
12415 F:      drivers/dma/at_hdmac.c
12416 F:      drivers/dma/at_hdmac_regs.h
12417 F:      drivers/dma/at_xdmac.c
12418 F:      include/dt-bindings/dma/at91.h
12419
12420 MICROCHIP AT91 SERIAL DRIVER
12421 M:      Richard Genoud <richard.genoud@gmail.com>
12422 S:      Maintained
12423 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12424 F:      drivers/tty/serial/atmel_serial.c
12425 F:      drivers/tty/serial/atmel_serial.h
12426
12427 MICROCHIP AT91 USART MFD DRIVER
12428 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
12429 L:      linux-kernel@vger.kernel.org
12430 S:      Supported
12431 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12432 F:      drivers/mfd/at91-usart.c
12433 F:      include/dt-bindings/mfd/at91-usart.h
12434
12435 MICROCHIP AT91 USART SPI DRIVER
12436 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
12437 L:      linux-spi@vger.kernel.org
12438 S:      Supported
12439 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12440 F:      drivers/spi/spi-at91-usart.c
12441
12442 MICROCHIP AUDIO ASOC DRIVERS
12443 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12444 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12445 S:      Supported
12446 F:      sound/soc/atmel
12447
12448 MICROCHIP ECC DRIVER
12449 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12450 L:      linux-crypto@vger.kernel.org
12451 S:      Maintained
12452 F:      drivers/crypto/atmel-ecc.*
12453
12454 MICROCHIP EIC DRIVER
12455 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12456 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12457 S:      Supported
12458 F:      drivers/irqchip/irq-mchp-eic.c
12459
12460 MICROCHIP I2C DRIVER
12461 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12462 L:      linux-i2c@vger.kernel.org
12463 S:      Supported
12464 F:      drivers/i2c/busses/i2c-at91-*.c
12465 F:      drivers/i2c/busses/i2c-at91.h
12466
12467 MICROCHIP ISC DRIVER
12468 M:      Eugen Hristev <eugen.hristev@microchip.com>
12469 L:      linux-media@vger.kernel.org
12470 S:      Supported
12471 F:      Documentation/devicetree/bindings/media/atmel,isc.yaml
12472 F:      Documentation/devicetree/bindings/media/microchip,xisc.yaml
12473 F:      drivers/media/platform/atmel/atmel-isc-base.c
12474 F:      drivers/media/platform/atmel/atmel-isc-regs.h
12475 F:      drivers/media/platform/atmel/atmel-isc.h
12476 F:      drivers/media/platform/atmel/atmel-sama5d2-isc.c
12477 F:      drivers/media/platform/atmel/atmel-sama7g5-isc.c
12478 F:      include/linux/atmel-isc-media.h
12479
12480 MICROCHIP ISI DRIVER
12481 M:      Eugen Hristev <eugen.hristev@microchip.com>
12482 L:      linux-media@vger.kernel.org
12483 S:      Supported
12484 F:      drivers/media/platform/atmel/atmel-isi.c
12485 F:      drivers/media/platform/atmel/atmel-isi.h
12486
12487 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
12488 M:      Woojung Huh <woojung.huh@microchip.com>
12489 M:      UNGLinuxDriver@microchip.com
12490 L:      netdev@vger.kernel.org
12491 S:      Maintained
12492 F:      Documentation/devicetree/bindings/net/dsa/microchip,ksz.yaml
12493 F:      drivers/net/dsa/microchip/*
12494 F:      include/linux/platform_data/microchip-ksz.h
12495 F:      net/dsa/tag_ksz.c
12496
12497 MICROCHIP LAN743X ETHERNET DRIVER
12498 M:      Bryan Whitehead <bryan.whitehead@microchip.com>
12499 M:      UNGLinuxDriver@microchip.com
12500 L:      netdev@vger.kernel.org
12501 S:      Maintained
12502 F:      drivers/net/ethernet/microchip/lan743x_*
12503
12504 MICROCHIP LCDFB DRIVER
12505 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
12506 L:      linux-fbdev@vger.kernel.org
12507 S:      Maintained
12508 F:      drivers/video/fbdev/atmel_lcdfb.c
12509 F:      include/video/atmel_lcdc.h
12510
12511 MICROCHIP MCP16502 PMIC DRIVER
12512 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12513 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12514 S:      Supported
12515 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
12516 F:      drivers/regulator/mcp16502.c
12517
12518 MICROCHIP MCP3911 ADC DRIVER
12519 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
12520 M:      Kent Gustavsson <kent@minoris.se>
12521 L:      linux-iio@vger.kernel.org
12522 S:      Supported
12523 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
12524 F:      drivers/iio/adc/mcp3911.c
12525
12526 MICROCHIP MMC/SD/SDIO MCI DRIVER
12527 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
12528 S:      Maintained
12529 F:      drivers/mmc/host/atmel-mci.c
12530
12531 MICROCHIP NAND DRIVER
12532 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12533 L:      linux-mtd@lists.infradead.org
12534 S:      Supported
12535 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
12536 F:      drivers/mtd/nand/raw/atmel/*
12537
12538 MICROCHIP PWM DRIVER
12539 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12540 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12541 L:      linux-pwm@vger.kernel.org
12542 S:      Supported
12543 F:      Documentation/devicetree/bindings/pwm/atmel-pwm.txt
12544 F:      drivers/pwm/pwm-atmel.c
12545
12546 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
12547 M:      Eugen Hristev <eugen.hristev@microchip.com>
12548 L:      linux-iio@vger.kernel.org
12549 S:      Supported
12550 F:      Documentation/devicetree/bindings/iio/adc/atmel,sama5d2-adc.yaml
12551 F:      drivers/iio/adc/at91-sama5d2_adc.c
12552 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
12553
12554 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
12555 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12556 S:      Supported
12557 F:      drivers/power/reset/at91-sama5d2_shdwc.c
12558
12559 MICROCHIP SPI DRIVER
12560 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12561 S:      Supported
12562 F:      drivers/spi/spi-atmel.*
12563
12564 MICROCHIP SSC DRIVER
12565 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12566 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12567 S:      Supported
12568 F:      drivers/misc/atmel-ssc.c
12569 F:      include/linux/atmel-ssc.h
12570
12571 MICROCHIP USB251XB DRIVER
12572 M:      Richard Leitner <richard.leitner@skidata.com>
12573 L:      linux-usb@vger.kernel.org
12574 S:      Maintained
12575 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
12576 F:      drivers/usb/misc/usb251xb.c
12577
12578 MICROCHIP USBA UDC DRIVER
12579 M:      Cristian Birsan <cristian.birsan@microchip.com>
12580 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12581 S:      Supported
12582 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
12583
12584 MICROCHIP WILC1000 WIFI DRIVER
12585 M:      Ajay Singh <ajay.kathat@microchip.com>
12586 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12587 L:      linux-wireless@vger.kernel.org
12588 S:      Supported
12589 F:      drivers/net/wireless/microchip/wilc1000/
12590
12591 MICROSEMI MIPS SOCS
12592 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
12593 M:      UNGLinuxDriver@microchip.com
12594 L:      linux-mips@vger.kernel.org
12595 S:      Supported
12596 F:      Documentation/devicetree/bindings/mips/mscc.txt
12597 F:      Documentation/devicetree/bindings/power/reset/ocelot-reset.txt
12598 F:      arch/mips/boot/dts/mscc/
12599 F:      arch/mips/configs/generic/board-ocelot.config
12600 F:      arch/mips/generic/board-ocelot.c
12601
12602 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
12603 M:      Don Brace <don.brace@microchip.com>
12604 L:      storagedev@microchip.com
12605 L:      linux-scsi@vger.kernel.org
12606 S:      Supported
12607 F:      Documentation/scsi/smartpqi.rst
12608 F:      drivers/scsi/smartpqi/Kconfig
12609 F:      drivers/scsi/smartpqi/Makefile
12610 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
12611 F:      include/linux/cciss*.h
12612 F:      include/uapi/linux/cciss*.h
12613
12614 MICROSOFT SURFACE BATTERY AND AC DRIVERS
12615 M:      Maximilian Luz <luzmaximilian@gmail.com>
12616 L:      linux-pm@vger.kernel.org
12617 L:      platform-driver-x86@vger.kernel.org
12618 S:      Maintained
12619 F:      drivers/power/supply/surface_battery.c
12620 F:      drivers/power/supply/surface_charger.c
12621
12622 MICROSOFT SURFACE DTX DRIVER
12623 M:      Maximilian Luz <luzmaximilian@gmail.com>
12624 L:      platform-driver-x86@vger.kernel.org
12625 S:      Maintained
12626 F:      Documentation/driver-api/surface_aggregator/clients/dtx.rst
12627 F:      drivers/platform/surface/surface_dtx.c
12628 F:      include/uapi/linux/surface_aggregator/dtx.h
12629
12630 MICROSOFT SURFACE GPE LID SUPPORT DRIVER
12631 M:      Maximilian Luz <luzmaximilian@gmail.com>
12632 L:      platform-driver-x86@vger.kernel.org
12633 S:      Maintained
12634 F:      drivers/platform/surface/surface_gpe.c
12635
12636 MICROSOFT SURFACE HARDWARE PLATFORM SUPPORT
12637 M:      Hans de Goede <hdegoede@redhat.com>
12638 M:      Mark Gross <markgross@kernel.org>
12639 M:      Maximilian Luz <luzmaximilian@gmail.com>
12640 L:      platform-driver-x86@vger.kernel.org
12641 S:      Maintained
12642 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
12643 F:      drivers/platform/surface/
12644
12645 MICROSOFT SURFACE HID TRANSPORT DRIVER
12646 M:      Maximilian Luz <luzmaximilian@gmail.com>
12647 L:      linux-input@vger.kernel.org
12648 L:      platform-driver-x86@vger.kernel.org
12649 S:      Maintained
12650 F:      drivers/hid/surface-hid/
12651
12652 MICROSOFT SURFACE HOT-PLUG DRIVER
12653 M:      Maximilian Luz <luzmaximilian@gmail.com>
12654 L:      platform-driver-x86@vger.kernel.org
12655 S:      Maintained
12656 F:      drivers/platform/surface/surface_hotplug.c
12657
12658 MICROSOFT SURFACE PLATFORM PROFILE DRIVER
12659 M:      Maximilian Luz <luzmaximilian@gmail.com>
12660 L:      platform-driver-x86@vger.kernel.org
12661 S:      Maintained
12662 F:      drivers/platform/surface/surface_platform_profile.c
12663
12664 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
12665 M:      Chen Yu <yu.c.chen@intel.com>
12666 L:      platform-driver-x86@vger.kernel.org
12667 S:      Supported
12668 F:      drivers/platform/surface/surfacepro3_button.c
12669
12670 MICROSOFT SURFACE SYSTEM AGGREGATOR SUBSYSTEM
12671 M:      Maximilian Luz <luzmaximilian@gmail.com>
12672 L:      platform-driver-x86@vger.kernel.org
12673 S:      Maintained
12674 W:      https://github.com/linux-surface/surface-aggregator-module
12675 C:      irc://irc.libera.chat/linux-surface
12676 F:      Documentation/driver-api/surface_aggregator/
12677 F:      drivers/platform/surface/aggregator/
12678 F:      drivers/platform/surface/surface_acpi_notify.c
12679 F:      drivers/platform/surface/surface_aggregator_cdev.c
12680 F:      drivers/platform/surface/surface_aggregator_registry.c
12681 F:      include/linux/surface_acpi_notify.h
12682 F:      include/linux/surface_aggregator/
12683 F:      include/uapi/linux/surface_aggregator/
12684
12685 MICROTEK X6 SCANNER
12686 M:      Oliver Neukum <oliver@neukum.org>
12687 S:      Maintained
12688 F:      drivers/usb/image/microtek.*
12689
12690 MIKROTIK CRS3XX 98DX3236 BOARD SUPPORT
12691 M:      Luka Kovacic <luka.kovacic@sartura.hr>
12692 M:      Luka Perkov <luka.perkov@sartura.hr>
12693 S:      Maintained
12694 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s-bit.dts
12695 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s.dts
12696 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s-bit.dts
12697 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s.dts
12698 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s-bit.dts
12699 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s.dts
12700
12701 MIPI CCS, SMIA AND SMIA++ IMAGE SENSOR DRIVER
12702 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
12703 L:      linux-media@vger.kernel.org
12704 S:      Maintained
12705 F:      Documentation/devicetree/bindings/media/i2c/mipi-ccs.yaml
12706 F:      Documentation/driver-api/media/drivers/ccs/
12707 F:      Documentation/userspace-api/media/drivers/ccs.rst
12708 F:      drivers/media/i2c/ccs-pll.c
12709 F:      drivers/media/i2c/ccs-pll.h
12710 F:      drivers/media/i2c/ccs/
12711 F:      include/uapi/linux/ccs.h
12712 F:      include/uapi/linux/smiapp.h
12713
12714 MIPS
12715 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
12716 L:      linux-mips@vger.kernel.org
12717 S:      Maintained
12718 W:      http://www.linux-mips.org/
12719 Q:      https://patchwork.kernel.org/project/linux-mips/list/
12720 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
12721 F:      Documentation/devicetree/bindings/mips/
12722 F:      Documentation/mips/
12723 F:      arch/mips/
12724 F:      drivers/platform/mips/
12725
12726 MIPS BOSTON DEVELOPMENT BOARD
12727 M:      Paul Burton <paulburton@kernel.org>
12728 L:      linux-mips@vger.kernel.org
12729 S:      Maintained
12730 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
12731 F:      arch/mips/boot/dts/img/boston.dts
12732 F:      arch/mips/configs/generic/board-boston.config
12733 F:      drivers/clk/imgtec/clk-boston.c
12734 F:      include/dt-bindings/clock/boston-clock.h
12735
12736 MIPS CORE DRIVERS
12737 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
12738 M:      Serge Semin <fancer.lancer@gmail.com>
12739 L:      linux-mips@vger.kernel.org
12740 S:      Supported
12741 F:      drivers/bus/mips_cdmm.c
12742 F:      drivers/clocksource/mips-gic-timer.c
12743 F:      drivers/cpuidle/cpuidle-cps.c
12744 F:      drivers/irqchip/irq-mips-cpu.c
12745 F:      drivers/irqchip/irq-mips-gic.c
12746
12747 MIPS GENERIC PLATFORM
12748 M:      Paul Burton <paulburton@kernel.org>
12749 L:      linux-mips@vger.kernel.org
12750 S:      Supported
12751 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.yaml
12752 F:      arch/mips/generic/
12753 F:      arch/mips/tools/generic-board-config.sh
12754
12755 MIPS RINT INSTRUCTION EMULATION
12756 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
12757 L:      linux-mips@vger.kernel.org
12758 S:      Supported
12759 F:      arch/mips/math-emu/dp_rint.c
12760 F:      arch/mips/math-emu/sp_rint.c
12761
12762 MIPS/LOONGSON1 ARCHITECTURE
12763 M:      Keguang Zhang <keguang.zhang@gmail.com>
12764 L:      linux-mips@vger.kernel.org
12765 S:      Maintained
12766 F:      arch/mips/include/asm/mach-loongson32/
12767 F:      arch/mips/loongson32/
12768 F:      drivers/*/*/*loongson1*
12769 F:      drivers/*/*loongson1*
12770
12771 MIPS/LOONGSON2EF ARCHITECTURE
12772 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
12773 L:      linux-mips@vger.kernel.org
12774 S:      Maintained
12775 F:      arch/mips/include/asm/mach-loongson2ef/
12776 F:      arch/mips/loongson2ef/
12777 F:      drivers/cpufreq/loongson2_cpufreq.c
12778
12779 MIPS/LOONGSON64 ARCHITECTURE
12780 M:      Huacai Chen <chenhuacai@kernel.org>
12781 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
12782 L:      linux-mips@vger.kernel.org
12783 S:      Maintained
12784 F:      arch/mips/include/asm/mach-loongson64/
12785 F:      arch/mips/loongson64/
12786 F:      drivers/irqchip/irq-loongson*
12787 F:      drivers/platform/mips/cpu_hwmon.c
12788
12789 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
12790 M:      Hans Verkuil <hverkuil@xs4all.nl>
12791 L:      linux-media@vger.kernel.org
12792 S:      Odd Fixes
12793 W:      https://linuxtv.org
12794 T:      git git://linuxtv.org/media_tree.git
12795 F:      drivers/media/radio/radio-miropcm20*
12796
12797 MMP SUPPORT
12798 R:      Lubomir Rintel <lkundrak@v3.sk>
12799 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12800 S:      Odd Fixes
12801 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
12802 F:      arch/arm/boot/dts/mmp*
12803 F:      arch/arm/mach-mmp/
12804 F:      include/linux/soc/mmp/
12805
12806 MMP USB PHY DRIVERS
12807 R:      Lubomir Rintel <lkundrak@v3.sk>
12808 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12809 S:      Maintained
12810 F:      drivers/phy/marvell/phy-mmp3-usb.c
12811 F:      drivers/phy/marvell/phy-pxa-usb.c
12812
12813 MMU GATHER AND TLB INVALIDATION
12814 M:      Will Deacon <will@kernel.org>
12815 M:      "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
12816 M:      Andrew Morton <akpm@linux-foundation.org>
12817 M:      Nick Piggin <npiggin@gmail.com>
12818 M:      Peter Zijlstra <peterz@infradead.org>
12819 L:      linux-arch@vger.kernel.org
12820 L:      linux-mm@kvack.org
12821 S:      Maintained
12822 F:      arch/*/include/asm/tlb.h
12823 F:      include/asm-generic/tlb.h
12824 F:      mm/mmu_gather.c
12825
12826 MN88472 MEDIA DRIVER
12827 M:      Antti Palosaari <crope@iki.fi>
12828 L:      linux-media@vger.kernel.org
12829 S:      Maintained
12830 W:      https://linuxtv.org
12831 W:      http://palosaari.fi/linux/
12832 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12833 F:      drivers/media/dvb-frontends/mn88472*
12834
12835 MN88473 MEDIA DRIVER
12836 M:      Antti Palosaari <crope@iki.fi>
12837 L:      linux-media@vger.kernel.org
12838 S:      Maintained
12839 W:      https://linuxtv.org
12840 W:      http://palosaari.fi/linux/
12841 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12842 F:      drivers/media/dvb-frontends/mn88473*
12843
12844 MODULE SUPPORT
12845 M:      Luis Chamberlain <mcgrof@kernel.org>
12846 M:      Jessica Yu <jeyu@kernel.org>
12847 S:      Maintained
12848 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
12849 F:      include/linux/module.h
12850 F:      kernel/module.c
12851
12852 MONOLITHIC POWER SYSTEM PMIC DRIVER
12853 M:      Saravanan Sekar <sravanhome@gmail.com>
12854 S:      Maintained
12855 F:      Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
12856 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
12857 F:      drivers/iio/adc/mp2629_adc.c
12858 F:      drivers/mfd/mp2629.c
12859 F:      drivers/power/supply/mp2629_charger.c
12860 F:      drivers/regulator/mp5416.c
12861 F:      drivers/regulator/mpq7920.c
12862 F:      drivers/regulator/mpq7920.h
12863 F:      include/linux/mfd/mp2629.h
12864
12865 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
12866 S:      Orphan
12867 W:      http://popies.net/meye/
12868 F:      Documentation/userspace-api/media/drivers/meye*
12869 F:      drivers/media/pci/meye/
12870 F:      include/uapi/linux/meye.h
12871
12872 MOTORCOMM PHY DRIVER
12873 M:      Peter Geis <pgwipeout@gmail.com>
12874 L:      netdev@vger.kernel.org
12875 S:      Maintained
12876 F:      drivers/net/phy/motorcomm.c
12877
12878 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
12879 M:      Jiri Slaby <jirislaby@kernel.org>
12880 S:      Maintained
12881 F:      Documentation/driver-api/serial/moxa-smartio.rst
12882 F:      drivers/tty/mxser.*
12883
12884 MR800 AVERMEDIA USB FM RADIO DRIVER
12885 M:      Alexey Klimov <klimov.linux@gmail.com>
12886 L:      linux-media@vger.kernel.org
12887 S:      Maintained
12888 T:      git git://linuxtv.org/media_tree.git
12889 F:      drivers/media/radio/radio-mr800.c
12890
12891 MRF24J40 IEEE 802.15.4 RADIO DRIVER
12892 M:      Alan Ott <alan@signal11.us>
12893 L:      linux-wpan@vger.kernel.org
12894 S:      Maintained
12895 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
12896 F:      drivers/net/ieee802154/mrf24j40.c
12897
12898 MSI LAPTOP SUPPORT
12899 M:      "Lee, Chun-Yi" <jlee@suse.com>
12900 L:      platform-driver-x86@vger.kernel.org
12901 S:      Maintained
12902 F:      drivers/platform/x86/msi-laptop.c
12903
12904 MSI WMI SUPPORT
12905 L:      platform-driver-x86@vger.kernel.org
12906 S:      Orphan
12907 F:      drivers/platform/x86/msi-wmi.c
12908
12909 MSI001 MEDIA DRIVER
12910 M:      Antti Palosaari <crope@iki.fi>
12911 L:      linux-media@vger.kernel.org
12912 S:      Maintained
12913 W:      https://linuxtv.org
12914 W:      http://palosaari.fi/linux/
12915 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12916 T:      git git://linuxtv.org/anttip/media_tree.git
12917 F:      drivers/media/tuners/msi001*
12918
12919 MSI2500 MEDIA DRIVER
12920 M:      Antti Palosaari <crope@iki.fi>
12921 L:      linux-media@vger.kernel.org
12922 S:      Maintained
12923 W:      https://linuxtv.org
12924 W:      http://palosaari.fi/linux/
12925 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12926 T:      git git://linuxtv.org/anttip/media_tree.git
12927 F:      drivers/media/usb/msi2500/
12928
12929 MSTAR INTERRUPT CONTROLLER DRIVER
12930 M:      Mark-PK Tsai <mark-pk.tsai@mediatek.com>
12931 M:      Daniel Palmer <daniel@thingy.jp>
12932 S:      Maintained
12933 F:      Documentation/devicetree/bindings/interrupt-controller/mstar,mst-intc.yaml
12934 F:      drivers/irqchip/irq-mst-intc.c
12935
12936 MSYSTEMS DISKONCHIP G3 MTD DRIVER
12937 M:      Robert Jarzmik <robert.jarzmik@free.fr>
12938 L:      linux-mtd@lists.infradead.org
12939 S:      Maintained
12940 F:      drivers/mtd/devices/docg3*
12941
12942 MT9M032 APTINA SENSOR DRIVER
12943 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12944 L:      linux-media@vger.kernel.org
12945 S:      Maintained
12946 T:      git git://linuxtv.org/media_tree.git
12947 F:      drivers/media/i2c/mt9m032.c
12948 F:      include/media/i2c/mt9m032.h
12949
12950 MT9P031 APTINA CAMERA SENSOR
12951 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12952 L:      linux-media@vger.kernel.org
12953 S:      Maintained
12954 T:      git git://linuxtv.org/media_tree.git
12955 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9p031.yaml
12956 F:      drivers/media/i2c/mt9p031.c
12957 F:      include/media/i2c/mt9p031.h
12958
12959 MT9T001 APTINA CAMERA SENSOR
12960 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12961 L:      linux-media@vger.kernel.org
12962 S:      Maintained
12963 T:      git git://linuxtv.org/media_tree.git
12964 F:      drivers/media/i2c/mt9t001.c
12965 F:      include/media/i2c/mt9t001.h
12966
12967 MT9T112 APTINA CAMERA SENSOR
12968 M:      Jacopo Mondi <jacopo@jmondi.org>
12969 L:      linux-media@vger.kernel.org
12970 S:      Odd Fixes
12971 T:      git git://linuxtv.org/media_tree.git
12972 F:      drivers/media/i2c/mt9t112.c
12973 F:      include/media/i2c/mt9t112.h
12974
12975 MT9V032 APTINA CAMERA SENSOR
12976 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12977 L:      linux-media@vger.kernel.org
12978 S:      Maintained
12979 T:      git git://linuxtv.org/media_tree.git
12980 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
12981 F:      drivers/media/i2c/mt9v032.c
12982 F:      include/media/i2c/mt9v032.h
12983
12984 MT9V111 APTINA CAMERA SENSOR
12985 M:      Jacopo Mondi <jacopo@jmondi.org>
12986 L:      linux-media@vger.kernel.org
12987 S:      Maintained
12988 T:      git git://linuxtv.org/media_tree.git
12989 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.yaml
12990 F:      drivers/media/i2c/mt9v111.c
12991
12992 MULTIFUNCTION DEVICES (MFD)
12993 M:      Lee Jones <lee.jones@linaro.org>
12994 S:      Supported
12995 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
12996 F:      Documentation/devicetree/bindings/mfd/
12997 F:      drivers/mfd/
12998 F:      include/dt-bindings/mfd/
12999 F:      include/linux/mfd/
13000
13001 MULTIMEDIA CARD (MMC) ETC. OVER SPI
13002 S:      Orphan
13003 F:      drivers/mmc/host/mmc_spi.c
13004 F:      include/linux/spi/mmc_spi.h
13005
13006 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
13007 M:      Ulf Hansson <ulf.hansson@linaro.org>
13008 L:      linux-mmc@vger.kernel.org
13009 S:      Maintained
13010 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
13011 F:      Documentation/devicetree/bindings/mmc/
13012 F:      drivers/mmc/
13013 F:      include/linux/mmc/
13014 F:      include/uapi/linux/mmc/
13015
13016 MULTIPLEXER SUBSYSTEM
13017 M:      Peter Rosin <peda@axentia.se>
13018 S:      Maintained
13019 F:      Documentation/ABI/testing/sysfs-class-mux*
13020 F:      Documentation/devicetree/bindings/mux/
13021 F:      drivers/mux/
13022 F:      include/dt-bindings/mux/
13023 F:      include/linux/mux/
13024
13025 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
13026 M:      Bin Liu <b-liu@ti.com>
13027 L:      linux-usb@vger.kernel.org
13028 S:      Maintained
13029 F:      drivers/usb/musb/
13030
13031 MXL301RF MEDIA DRIVER
13032 M:      Akihiro Tsukada <tskd08@gmail.com>
13033 L:      linux-media@vger.kernel.org
13034 S:      Odd Fixes
13035 F:      drivers/media/tuners/mxl301rf*
13036
13037 MXL5007T MEDIA DRIVER
13038 M:      Michael Krufky <mkrufky@linuxtv.org>
13039 L:      linux-media@vger.kernel.org
13040 S:      Maintained
13041 W:      https://linuxtv.org
13042 W:      http://github.com/mkrufky
13043 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13044 T:      git git://linuxtv.org/mkrufky/tuners.git
13045 F:      drivers/media/tuners/mxl5007t.*
13046
13047 MXSFB DRM DRIVER
13048 M:      Marek Vasut <marex@denx.de>
13049 M:      Stefan Agner <stefan@agner.ch>
13050 L:      dri-devel@lists.freedesktop.org
13051 S:      Supported
13052 T:      git git://anongit.freedesktop.org/drm/drm-misc
13053 F:      Documentation/devicetree/bindings/display/fsl,lcdif.yaml
13054 F:      drivers/gpu/drm/mxsfb/
13055
13056 MYLEX DAC960 PCI RAID Controller
13057 M:      Hannes Reinecke <hare@kernel.org>
13058 L:      linux-scsi@vger.kernel.org
13059 S:      Supported
13060 F:      drivers/scsi/myrb.*
13061 F:      drivers/scsi/myrs.*
13062
13063 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
13064 M:      Chris Lee <christopher.lee@cspi.com>
13065 L:      netdev@vger.kernel.org
13066 S:      Supported
13067 W:      https://www.cspi.com/ethernet-products/support/downloads/
13068 F:      drivers/net/ethernet/myricom/myri10ge/
13069
13070 NAND FLASH SUBSYSTEM
13071 M:      Miquel Raynal <miquel.raynal@bootlin.com>
13072 R:      Richard Weinberger <richard@nod.at>
13073 L:      linux-mtd@lists.infradead.org
13074 S:      Maintained
13075 W:      http://www.linux-mtd.infradead.org/
13076 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
13077 C:      irc://irc.oftc.net/mtd
13078 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
13079 F:      drivers/mtd/nand/
13080 F:      include/linux/mtd/*nand*.h
13081
13082 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
13083 M:      Daniel Mack <zonque@gmail.com>
13084 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13085 S:      Maintained
13086 W:      http://www.native-instruments.com
13087 F:      sound/usb/caiaq/
13088
13089 NATSEMI ETHERNET DRIVER (DP8381x)
13090 S:      Orphan
13091 F:      drivers/net/ethernet/natsemi/natsemi.c
13092
13093 NCR 5380 SCSI DRIVERS
13094 M:      Finn Thain <fthain@linux-m68k.org>
13095 M:      Michael Schmitz <schmitzmic@gmail.com>
13096 L:      linux-scsi@vger.kernel.org
13097 S:      Maintained
13098 F:      Documentation/scsi/g_NCR5380.rst
13099 F:      drivers/scsi/NCR5380.*
13100 F:      drivers/scsi/arm/cumana_1.c
13101 F:      drivers/scsi/arm/oak.c
13102 F:      drivers/scsi/atari_scsi.*
13103 F:      drivers/scsi/dmx3191d.c
13104 F:      drivers/scsi/g_NCR5380.*
13105 F:      drivers/scsi/mac_scsi.*
13106 F:      drivers/scsi/sun3_scsi.*
13107 F:      drivers/scsi/sun3_scsi_vme.c
13108
13109 NCSI LIBRARY
13110 M:      Samuel Mendoza-Jonas <sam@mendozajonas.com>
13111 S:      Maintained
13112 F:      net/ncsi/
13113
13114 NCT6775 HARDWARE MONITOR DRIVER
13115 M:      Guenter Roeck <linux@roeck-us.net>
13116 L:      linux-hwmon@vger.kernel.org
13117 S:      Maintained
13118 F:      Documentation/hwmon/nct6775.rst
13119 F:      drivers/hwmon/nct6775.c
13120
13121 NETDEVSIM
13122 M:      Jakub Kicinski <kuba@kernel.org>
13123 S:      Maintained
13124 F:      drivers/net/netdevsim/*
13125
13126 NETEM NETWORK EMULATOR
13127 M:      Stephen Hemminger <stephen@networkplumber.org>
13128 L:      netdev@vger.kernel.org
13129 S:      Maintained
13130 F:      net/sched/sch_netem.c
13131
13132 NETERION 10GbE DRIVERS (s2io/vxge)
13133 M:      Jon Mason <jdmason@kudzu.us>
13134 L:      netdev@vger.kernel.org
13135 S:      Supported
13136 F:      Documentation/networking/device_drivers/ethernet/neterion/s2io.rst
13137 F:      Documentation/networking/device_drivers/ethernet/neterion/vxge.rst
13138 F:      drivers/net/ethernet/neterion/
13139
13140 NETFILTER
13141 M:      Pablo Neira Ayuso <pablo@netfilter.org>
13142 M:      Jozsef Kadlecsik <kadlec@netfilter.org>
13143 M:      Florian Westphal <fw@strlen.de>
13144 L:      netfilter-devel@vger.kernel.org
13145 L:      coreteam@netfilter.org
13146 S:      Maintained
13147 W:      http://www.netfilter.org/
13148 W:      http://www.iptables.org/
13149 W:      http://www.nftables.org/
13150 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
13151 C:      irc://irc.libera.chat/netfilter
13152 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
13153 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
13154 F:      include/linux/netfilter*
13155 F:      include/linux/netfilter/
13156 F:      include/net/netfilter/
13157 F:      include/uapi/linux/netfilter*
13158 F:      include/uapi/linux/netfilter/
13159 F:      net/*/netfilter.c
13160 F:      net/*/netfilter/
13161 F:      net/bridge/br_netfilter*.c
13162 F:      net/netfilter/
13163
13164 NETROM NETWORK LAYER
13165 M:      Ralf Baechle <ralf@linux-mips.org>
13166 L:      linux-hams@vger.kernel.org
13167 S:      Maintained
13168 W:      http://www.linux-ax25.org/
13169 F:      include/net/netrom.h
13170 F:      include/uapi/linux/netrom.h
13171 F:      net/netrom/
13172
13173 NETRONIX EMBEDDED CONTROLLER
13174 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
13175 S:      Maintained
13176 F:      Documentation/devicetree/bindings/mfd/netronix,ntxec.yaml
13177 F:      drivers/mfd/ntxec.c
13178 F:      drivers/pwm/pwm-ntxec.c
13179 F:      drivers/rtc/rtc-ntxec.c
13180 F:      include/linux/mfd/ntxec.h
13181
13182 NETRONOME ETHERNET DRIVERS
13183 M:      Simon Horman <simon.horman@corigine.com>
13184 R:      Jakub Kicinski <kuba@kernel.org>
13185 L:      oss-drivers@corigine.com
13186 S:      Maintained
13187 F:      drivers/net/ethernet/netronome/
13188
13189 NETWORK BLOCK DEVICE (NBD)
13190 M:      Josef Bacik <josef@toxicpanda.com>
13191 L:      linux-block@vger.kernel.org
13192 L:      nbd@other.debian.org
13193 S:      Maintained
13194 F:      Documentation/admin-guide/blockdev/nbd.rst
13195 F:      drivers/block/nbd.c
13196 F:      include/trace/events/nbd.h
13197 F:      include/uapi/linux/nbd.h
13198
13199 NETWORK DROP MONITOR
13200 M:      Neil Horman <nhorman@tuxdriver.com>
13201 L:      netdev@vger.kernel.org
13202 S:      Maintained
13203 W:      https://fedorahosted.org/dropwatch/
13204 F:      include/uapi/linux/net_dropmon.h
13205 F:      net/core/drop_monitor.c
13206
13207 NETWORKING DRIVERS
13208 M:      "David S. Miller" <davem@davemloft.net>
13209 M:      Jakub Kicinski <kuba@kernel.org>
13210 L:      netdev@vger.kernel.org
13211 S:      Maintained
13212 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13213 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13214 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
13215 F:      Documentation/devicetree/bindings/net/
13216 F:      drivers/connector/
13217 F:      drivers/net/
13218 F:      include/linux/etherdevice.h
13219 F:      include/linux/fcdevice.h
13220 F:      include/linux/fddidevice.h
13221 F:      include/linux/hippidevice.h
13222 F:      include/linux/if_*
13223 F:      include/linux/inetdevice.h
13224 F:      include/linux/netdevice.h
13225 F:      include/uapi/linux/if_*
13226 F:      include/uapi/linux/netdevice.h
13227
13228 NETWORKING DRIVERS (WIRELESS)
13229 M:      Kalle Valo <kvalo@codeaurora.org>
13230 L:      linux-wireless@vger.kernel.org
13231 S:      Maintained
13232 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
13233 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
13234 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
13235 F:      Documentation/devicetree/bindings/net/wireless/
13236 F:      drivers/net/wireless/
13237
13238 NETWORKING [DSA]
13239 M:      Andrew Lunn <andrew@lunn.ch>
13240 M:      Vivien Didelot <vivien.didelot@gmail.com>
13241 M:      Florian Fainelli <f.fainelli@gmail.com>
13242 M:      Vladimir Oltean <olteanv@gmail.com>
13243 S:      Maintained
13244 F:      Documentation/devicetree/bindings/net/dsa/
13245 F:      drivers/net/dsa/
13246 F:      include/linux/dsa/
13247 F:      include/linux/platform_data/dsa.h
13248 F:      include/net/dsa.h
13249 F:      net/dsa/
13250 F:      tools/testing/selftests/drivers/net/dsa/
13251
13252 NETWORKING [GENERAL]
13253 M:      "David S. Miller" <davem@davemloft.net>
13254 M:      Jakub Kicinski <kuba@kernel.org>
13255 L:      netdev@vger.kernel.org
13256 S:      Maintained
13257 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13258 B:      mailto:netdev@vger.kernel.org
13259 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13260 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
13261 F:      Documentation/networking/
13262 F:      include/linux/in.h
13263 F:      include/linux/net.h
13264 F:      include/linux/netdevice.h
13265 F:      include/net/
13266 F:      include/uapi/linux/in.h
13267 F:      include/uapi/linux/net.h
13268 F:      include/uapi/linux/net_namespace.h
13269 F:      include/uapi/linux/netdevice.h
13270 F:      lib/net_utils.c
13271 F:      lib/random32.c
13272 F:      net/
13273 F:      tools/testing/selftests/net/
13274
13275 NETWORKING [IPSEC]
13276 M:      Steffen Klassert <steffen.klassert@secunet.com>
13277 M:      Herbert Xu <herbert@gondor.apana.org.au>
13278 M:      "David S. Miller" <davem@davemloft.net>
13279 L:      netdev@vger.kernel.org
13280 S:      Maintained
13281 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
13282 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
13283 F:      include/net/xfrm.h
13284 F:      include/uapi/linux/xfrm.h
13285 F:      net/ipv4/ah4.c
13286 F:      net/ipv4/esp4*
13287 F:      net/ipv4/ip_vti.c
13288 F:      net/ipv4/ipcomp.c
13289 F:      net/ipv4/xfrm*
13290 F:      net/ipv6/ah6.c
13291 F:      net/ipv6/esp6*
13292 F:      net/ipv6/ip6_vti.c
13293 F:      net/ipv6/ipcomp6.c
13294 F:      net/ipv6/xfrm*
13295 F:      net/key/
13296 F:      net/xfrm/
13297 F:      tools/testing/selftests/net/ipsec.c
13298
13299 NETWORKING [IPv4/IPv6]
13300 M:      "David S. Miller" <davem@davemloft.net>
13301 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
13302 M:      David Ahern <dsahern@kernel.org>
13303 L:      netdev@vger.kernel.org
13304 S:      Maintained
13305 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13306 F:      arch/x86/net/*
13307 F:      include/net/ip*
13308 F:      net/ipv4/
13309 F:      net/ipv6/
13310
13311 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
13312 M:      Paul Moore <paul@paul-moore.com>
13313 L:      netdev@vger.kernel.org
13314 L:      linux-security-module@vger.kernel.org
13315 S:      Maintained
13316 W:      https://github.com/netlabel
13317 F:      Documentation/netlabel/
13318 F:      include/net/calipso.h
13319 F:      include/net/cipso_ipv4.h
13320 F:      include/net/netlabel.h
13321 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
13322 F:      include/uapi/linux/netfilter/xt_SECMARK.h
13323 F:      net/ipv4/cipso_ipv4.c
13324 F:      net/ipv6/calipso.c
13325 F:      net/netfilter/xt_CONNSECMARK.c
13326 F:      net/netfilter/xt_SECMARK.c
13327 F:      net/netlabel/
13328
13329 NETWORKING [MPTCP]
13330 M:      Mat Martineau <mathew.j.martineau@linux.intel.com>
13331 M:      Matthieu Baerts <matthieu.baerts@tessares.net>
13332 L:      netdev@vger.kernel.org
13333 L:      mptcp@lists.linux.dev
13334 S:      Maintained
13335 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
13336 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
13337 F:      Documentation/networking/mptcp-sysctl.rst
13338 F:      include/net/mptcp.h
13339 F:      include/trace/events/mptcp.h
13340 F:      include/uapi/linux/mptcp.h
13341 F:      net/mptcp/
13342 F:      tools/testing/selftests/net/mptcp/
13343
13344 NETWORKING [TCP]
13345 M:      Eric Dumazet <edumazet@google.com>
13346 L:      netdev@vger.kernel.org
13347 S:      Maintained
13348 F:      include/linux/tcp.h
13349 F:      include/net/tcp.h
13350 F:      include/trace/events/tcp.h
13351 F:      include/uapi/linux/tcp.h
13352 F:      net/ipv4/syncookies.c
13353 F:      net/ipv4/tcp*.c
13354 F:      net/ipv6/syncookies.c
13355 F:      net/ipv6/tcp*.c
13356
13357 NETWORKING [TLS]
13358 M:      Boris Pismenny <borisp@nvidia.com>
13359 M:      John Fastabend <john.fastabend@gmail.com>
13360 M:      Daniel Borkmann <daniel@iogearbox.net>
13361 M:      Jakub Kicinski <kuba@kernel.org>
13362 L:      netdev@vger.kernel.org
13363 S:      Maintained
13364 F:      include/net/tls.h
13365 F:      include/uapi/linux/tls.h
13366 F:      net/tls/*
13367
13368 NETWORKING [WIRELESS]
13369 L:      linux-wireless@vger.kernel.org
13370 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
13371
13372 NETXEN (1/10) GbE SUPPORT
13373 M:      Manish Chopra <manishc@marvell.com>
13374 M:      Rahul Verma <rahulv@marvell.com>
13375 M:      GR-Linux-NIC-Dev@marvell.com
13376 L:      netdev@vger.kernel.org
13377 S:      Supported
13378 F:      drivers/net/ethernet/qlogic/netxen/
13379
13380 NET_FAILOVER MODULE
13381 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
13382 L:      netdev@vger.kernel.org
13383 S:      Supported
13384 F:      Documentation/networking/net_failover.rst
13385 F:      drivers/net/net_failover.c
13386 F:      include/net/net_failover.h
13387
13388 NEXTHOP
13389 M:      David Ahern <dsahern@kernel.org>
13390 L:      netdev@vger.kernel.org
13391 S:      Maintained
13392 F:      include/net/netns/nexthop.h
13393 F:      include/net/nexthop.h
13394 F:      include/uapi/linux/nexthop.h
13395 F:      net/ipv4/nexthop.c
13396
13397 NFC SUBSYSTEM
13398 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
13399 L:      linux-nfc@lists.01.org (subscribers-only)
13400 L:      netdev@vger.kernel.org
13401 S:      Maintained
13402 F:      Documentation/devicetree/bindings/net/nfc/
13403 F:      drivers/nfc/
13404 F:      include/linux/platform_data/nfcmrvl.h
13405 F:      include/net/nfc/
13406 F:      include/uapi/linux/nfc.h
13407 F:      net/nfc/
13408
13409 NFC VIRTUAL NCI DEVICE DRIVER
13410 M:      Bongsu Jeon <bongsu.jeon@samsung.com>
13411 L:      netdev@vger.kernel.org
13412 L:      linux-nfc@lists.01.org (subscribers-only)
13413 S:      Supported
13414 F:      drivers/nfc/virtual_ncidev.c
13415 F:      tools/testing/selftests/nci/
13416
13417 NFS, SUNRPC, AND LOCKD CLIENTS
13418 M:      Trond Myklebust <trond.myklebust@hammerspace.com>
13419 M:      Anna Schumaker <anna.schumaker@netapp.com>
13420 L:      linux-nfs@vger.kernel.org
13421 S:      Maintained
13422 W:      http://client.linux-nfs.org
13423 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
13424 F:      fs/lockd/
13425 F:      fs/nfs/
13426 F:      fs/nfs_common/
13427 F:      include/linux/lockd/
13428 F:      include/linux/nfs*
13429 F:      include/linux/sunrpc/
13430 F:      include/uapi/linux/nfs*
13431 F:      include/uapi/linux/sunrpc/
13432 F:      net/sunrpc/
13433 F:      Documentation/filesystems/nfs/
13434
13435 NILFS2 FILESYSTEM
13436 M:      Ryusuke Konishi <konishi.ryusuke@gmail.com>
13437 L:      linux-nilfs@vger.kernel.org
13438 S:      Supported
13439 W:      https://nilfs.sourceforge.io/
13440 W:      https://nilfs.osdn.jp/
13441 T:      git git://github.com/konis/nilfs2.git
13442 F:      Documentation/filesystems/nilfs2.rst
13443 F:      fs/nilfs2/
13444 F:      include/trace/events/nilfs2.h
13445 F:      include/uapi/linux/nilfs2_api.h
13446 F:      include/uapi/linux/nilfs2_ondisk.h
13447
13448 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
13449 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
13450 S:      Maintained
13451 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
13452 F:      Documentation/scsi/NinjaSCSI.rst
13453 F:      drivers/scsi/pcmcia/nsp_*
13454
13455 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
13456 M:      GOTO Masanori <gotom@debian.or.jp>
13457 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
13458 S:      Maintained
13459 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
13460 F:      Documentation/scsi/NinjaSCSI.rst
13461 F:      drivers/scsi/nsp32*
13462
13463 NINTENDO HID DRIVER
13464 M:      Daniel J. Ogorchock <djogorchock@gmail.com>
13465 L:      linux-input@vger.kernel.org
13466 S:      Maintained
13467 F:      drivers/hid/hid-nintendo*
13468
13469 NIOS2 ARCHITECTURE
13470 M:      Dinh Nguyen <dinguyen@kernel.org>
13471 S:      Maintained
13472 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
13473 F:      arch/nios2/
13474
13475 NITRO ENCLAVES (NE)
13476 M:      Andra Paraschiv <andraprs@amazon.com>
13477 M:      Alexandru Vasile <lexnv@amazon.com>
13478 M:      Alexandru Ciobotaru <alcioa@amazon.com>
13479 L:      linux-kernel@vger.kernel.org
13480 S:      Supported
13481 W:      https://aws.amazon.com/ec2/nitro/nitro-enclaves/
13482 F:      Documentation/virt/ne_overview.rst
13483 F:      drivers/virt/nitro_enclaves/
13484 F:      include/linux/nitro_enclaves.h
13485 F:      include/uapi/linux/nitro_enclaves.h
13486 F:      samples/nitro_enclaves/
13487
13488 NOHZ, DYNTICKS SUPPORT
13489 M:      Frederic Weisbecker <fweisbec@gmail.com>
13490 M:      Thomas Gleixner <tglx@linutronix.de>
13491 M:      Ingo Molnar <mingo@kernel.org>
13492 L:      linux-kernel@vger.kernel.org
13493 S:      Maintained
13494 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
13495 F:      include/linux/sched/nohz.h
13496 F:      include/linux/tick.h
13497 F:      kernel/time/tick*.*
13498
13499 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
13500 M:      Pavel Machek <pavel@ucw.cz>
13501 M:      Sakari Ailus <sakari.ailus@iki.fi>
13502 L:      linux-media@vger.kernel.org
13503 S:      Maintained
13504 F:      drivers/media/i2c/ad5820.c
13505 F:      drivers/media/i2c/et8ek8
13506
13507 NOKIA N900 POWER SUPPLY DRIVERS
13508 R:      Pali Rohár <pali@kernel.org>
13509 F:      drivers/power/supply/bq2415x_charger.c
13510 F:      drivers/power/supply/bq27xxx_battery.c
13511 F:      drivers/power/supply/bq27xxx_battery_i2c.c
13512 F:      drivers/power/supply/isp1704_charger.c
13513 F:      drivers/power/supply/rx51_battery.c
13514 F:      include/linux/power/bq2415x_charger.h
13515 F:      include/linux/power/bq27xxx_battery.h
13516
13517 NOLIBC HEADER FILE
13518 M:      Willy Tarreau <w@1wt.eu>
13519 S:      Maintained
13520 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
13521 F:      tools/include/nolibc/
13522
13523 NSDEPS
13524 M:      Matthias Maennich <maennich@google.com>
13525 S:      Maintained
13526 F:      Documentation/core-api/symbol-namespaces.rst
13527 F:      scripts/nsdeps
13528
13529 NTB AMD DRIVER
13530 M:      Sanjay R Mehta <sanju.mehta@amd.com>
13531 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
13532 L:      linux-ntb@googlegroups.com
13533 S:      Supported
13534 F:      drivers/ntb/hw/amd/
13535
13536 NTB DRIVER CORE
13537 M:      Jon Mason <jdmason@kudzu.us>
13538 M:      Dave Jiang <dave.jiang@intel.com>
13539 M:      Allen Hubbe <allenbh@gmail.com>
13540 L:      linux-ntb@googlegroups.com
13541 S:      Supported
13542 W:      https://github.com/jonmason/ntb/wiki
13543 T:      git git://github.com/jonmason/ntb.git
13544 F:      drivers/net/ntb_netdev.c
13545 F:      drivers/ntb/
13546 F:      include/linux/ntb.h
13547 F:      include/linux/ntb_transport.h
13548 F:      tools/testing/selftests/ntb/
13549
13550 NTB IDT DRIVER
13551 M:      Serge Semin <fancer.lancer@gmail.com>
13552 L:      linux-ntb@googlegroups.com
13553 S:      Supported
13554 F:      drivers/ntb/hw/idt/
13555
13556 NTB INTEL DRIVER
13557 M:      Dave Jiang <dave.jiang@intel.com>
13558 L:      linux-ntb@googlegroups.com
13559 S:      Supported
13560 W:      https://github.com/davejiang/linux/wiki
13561 T:      git https://github.com/davejiang/linux.git
13562 F:      drivers/ntb/hw/intel/
13563
13564 NTFS FILESYSTEM
13565 M:      Anton Altaparmakov <anton@tuxera.com>
13566 L:      linux-ntfs-dev@lists.sourceforge.net
13567 S:      Supported
13568 W:      http://www.tuxera.com/
13569 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
13570 F:      Documentation/filesystems/ntfs.rst
13571 F:      fs/ntfs/
13572
13573 NTFS3 FILESYSTEM
13574 M:      Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
13575 L:      ntfs3@lists.linux.dev
13576 S:      Supported
13577 W:      http://www.paragon-software.com/
13578 T:      git https://github.com/Paragon-Software-Group/linux-ntfs3.git
13579 F:      Documentation/filesystems/ntfs3.rst
13580 F:      fs/ntfs3/
13581
13582 NUBUS SUBSYSTEM
13583 M:      Finn Thain <fthain@linux-m68k.org>
13584 L:      linux-m68k@lists.linux-m68k.org
13585 S:      Maintained
13586 F:      arch/*/include/asm/nubus.h
13587 F:      drivers/nubus/
13588 F:      include/linux/nubus.h
13589 F:      include/uapi/linux/nubus.h
13590
13591 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
13592 M:      Antonino Daplas <adaplas@gmail.com>
13593 L:      linux-fbdev@vger.kernel.org
13594 S:      Maintained
13595 F:      drivers/video/fbdev/nvidia/
13596 F:      drivers/video/fbdev/riva/
13597
13598 NVIDIA WMI EC BACKLIGHT DRIVER
13599 M:      Daniel Dadap <ddadap@nvidia.com>
13600 L:      platform-driver-x86@vger.kernel.org
13601 S:      Supported
13602 F:      drivers/platform/x86/nvidia-wmi-ec-backlight.c
13603
13604 NVM EXPRESS DRIVER
13605 M:      Keith Busch <kbusch@kernel.org>
13606 M:      Jens Axboe <axboe@fb.com>
13607 M:      Christoph Hellwig <hch@lst.de>
13608 M:      Sagi Grimberg <sagi@grimberg.me>
13609 L:      linux-nvme@lists.infradead.org
13610 S:      Supported
13611 W:      http://git.infradead.org/nvme.git
13612 T:      git://git.infradead.org/nvme.git
13613 F:      drivers/nvme/host/
13614 F:      include/linux/nvme.h
13615 F:      include/uapi/linux/nvme_ioctl.h
13616
13617 NVM EXPRESS FC TRANSPORT DRIVERS
13618 M:      James Smart <james.smart@broadcom.com>
13619 L:      linux-nvme@lists.infradead.org
13620 S:      Supported
13621 F:      drivers/nvme/host/fc.c
13622 F:      drivers/nvme/target/fc.c
13623 F:      drivers/nvme/target/fcloop.c
13624 F:      include/linux/nvme-fc-driver.h
13625 F:      include/linux/nvme-fc.h
13626
13627 NVM EXPRESS TARGET DRIVER
13628 M:      Christoph Hellwig <hch@lst.de>
13629 M:      Sagi Grimberg <sagi@grimberg.me>
13630 M:      Chaitanya Kulkarni <kch@nvidia.com>
13631 L:      linux-nvme@lists.infradead.org
13632 S:      Supported
13633 W:      http://git.infradead.org/nvme.git
13634 T:      git://git.infradead.org/nvme.git
13635 F:      drivers/nvme/target/
13636
13637 NVMEM FRAMEWORK
13638 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
13639 S:      Maintained
13640 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/srini/nvmem.git
13641 F:      Documentation/ABI/stable/sysfs-bus-nvmem
13642 F:      Documentation/devicetree/bindings/nvmem/
13643 F:      drivers/nvmem/
13644 F:      include/linux/nvmem-consumer.h
13645 F:      include/linux/nvmem-provider.h
13646
13647 NXP C45 TJA11XX PHY DRIVER
13648 M:      Radu Pirea <radu-nicolae.pirea@oss.nxp.com>
13649 L:      netdev@vger.kernel.org
13650 S:      Maintained
13651 F:      drivers/net/phy/nxp-c45-tja11xx.c
13652
13653 NXP FSPI DRIVER
13654 M:      Ashish Kumar <ashish.kumar@nxp.com>
13655 R:      Yogesh Gaur <yogeshgaur.83@gmail.com>
13656 L:      linux-spi@vger.kernel.org
13657 S:      Maintained
13658 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.yaml
13659 F:      drivers/spi/spi-nxp-fspi.c
13660
13661 NXP FXAS21002C DRIVER
13662 M:      Rui Miguel Silva <rmfrfs@gmail.com>
13663 L:      linux-iio@vger.kernel.org
13664 S:      Maintained
13665 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.yaml
13666 F:      drivers/iio/gyro/fxas21002c.h
13667 F:      drivers/iio/gyro/fxas21002c_core.c
13668 F:      drivers/iio/gyro/fxas21002c_i2c.c
13669 F:      drivers/iio/gyro/fxas21002c_spi.c
13670
13671 NXP i.MX CLOCK DRIVERS
13672 M:      Abel Vesa <abel.vesa@nxp.com>
13673 L:      linux-clk@vger.kernel.org
13674 L:      linux-imx@nxp.com
13675 S:      Maintained
13676 F:      drivers/clk/imx/
13677
13678 NXP i.MX 8MQ DCSS DRIVER
13679 M:      Laurentiu Palcu <laurentiu.palcu@oss.nxp.com>
13680 R:      Lucas Stach <l.stach@pengutronix.de>
13681 L:      dri-devel@lists.freedesktop.org
13682 S:      Maintained
13683 F:      Documentation/devicetree/bindings/display/imx/nxp,imx8mq-dcss.yaml
13684 F:      drivers/gpu/drm/imx/dcss/
13685
13686 NXP i.MX 8QXP ADC DRIVER
13687 M:      Cai Huoqing <caihuoqing@baidu.com>
13688 L:      linux-iio@vger.kernel.org
13689 S:      Supported
13690 F:      Documentation/devicetree/bindings/iio/adc/nxp,imx8qxp-adc.yaml
13691 F:      drivers/iio/adc/imx8qxp-adc.c
13692
13693 NXP PF8100/PF8121A/PF8200 PMIC REGULATOR DEVICE DRIVER
13694 M:      Jagan Teki <jagan@amarulasolutions.com>
13695 S:      Maintained
13696 F:      Documentation/devicetree/bindings/regulator/nxp,pf8x00-regulator.yaml
13697 F:      drivers/regulator/pf8x00-regulator.c
13698
13699 NXP PTN5150A CC LOGIC AND EXTCON DRIVER
13700 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
13701 L:      linux-kernel@vger.kernel.org
13702 S:      Maintained
13703 F:      Documentation/devicetree/bindings/extcon/extcon-ptn5150.yaml
13704 F:      drivers/extcon/extcon-ptn5150.c
13705
13706 NXP SGTL5000 DRIVER
13707 M:      Fabio Estevam <festevam@gmail.com>
13708 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13709 S:      Maintained
13710 F:      Documentation/devicetree/bindings/sound/sgtl5000.yaml
13711 F:      sound/soc/codecs/sgtl5000*
13712
13713 NXP SJA1105 ETHERNET SWITCH DRIVER
13714 M:      Vladimir Oltean <olteanv@gmail.com>
13715 L:      linux-kernel@vger.kernel.org
13716 S:      Maintained
13717 F:      drivers/net/dsa/sja1105
13718 F:      drivers/net/pcs/pcs-xpcs-nxp.c
13719
13720 NXP TDA998X DRM DRIVER
13721 M:      Russell King <linux@armlinux.org.uk>
13722 S:      Maintained
13723 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
13724 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
13725 F:      drivers/gpu/drm/i2c/tda998x_drv.c
13726 F:      include/drm/i2c/tda998x.h
13727 F:      include/dt-bindings/display/tda998x.h
13728 K:      "nxp,tda998x"
13729
13730 NXP TFA9879 DRIVER
13731 M:      Peter Rosin <peda@axentia.se>
13732 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13733 S:      Maintained
13734 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
13735 F:      sound/soc/codecs/tfa9879*
13736
13737 NXP/Goodix TFA989X (TFA1) DRIVER
13738 M:      Stephan Gerhold <stephan@gerhold.net>
13739 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13740 S:      Maintained
13741 F:      Documentation/devicetree/bindings/sound/nxp,tfa989x.yaml
13742 F:      sound/soc/codecs/tfa989x.c
13743
13744 NXP-NCI NFC DRIVER
13745 R:      Charles Gorand <charles.gorand@effinnov.com>
13746 L:      linux-nfc@lists.01.org (subscribers-only)
13747 S:      Supported
13748 F:      Documentation/devicetree/bindings/net/nfc/nxp,nci.yaml
13749 F:      drivers/nfc/nxp-nci
13750
13751 NXP i.MX 8QXP/8QM JPEG V4L2 DRIVER
13752 M:      Mirela Rabulea <mirela.rabulea@nxp.com>
13753 R:      NXP Linux Team <linux-imx@nxp.com>
13754 L:      linux-media@vger.kernel.org
13755 S:      Maintained
13756 F:      Documentation/devicetree/bindings/media/nxp,imx8-jpeg.yaml
13757 F:      drivers/media/platform/imx-jpeg
13758
13759 NZXT-KRAKEN2 HARDWARE MONITORING DRIVER
13760 M:      Jonas Malaco <jonas@protocubo.io>
13761 L:      linux-hwmon@vger.kernel.org
13762 S:      Maintained
13763 F:      Documentation/hwmon/nzxt-kraken2.rst
13764 F:      drivers/hwmon/nzxt-kraken2.c
13765
13766 OBJAGG
13767 M:      Jiri Pirko <jiri@nvidia.com>
13768 L:      netdev@vger.kernel.org
13769 S:      Supported
13770 F:      include/linux/objagg.h
13771 F:      lib/objagg.c
13772 F:      lib/test_objagg.c
13773
13774 OBJTOOL
13775 M:      Josh Poimboeuf <jpoimboe@redhat.com>
13776 M:      Peter Zijlstra <peterz@infradead.org>
13777 S:      Supported
13778 F:      tools/objtool/
13779 F:      include/linux/objtool.h
13780
13781 OCELOT ETHERNET SWITCH DRIVER
13782 M:      Vladimir Oltean <vladimir.oltean@nxp.com>
13783 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
13784 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
13785 M:      UNGLinuxDriver@microchip.com
13786 L:      netdev@vger.kernel.org
13787 S:      Supported
13788 F:      drivers/net/dsa/ocelot/*
13789 F:      drivers/net/ethernet/mscc/
13790 F:      include/soc/mscc/ocelot*
13791 F:      net/dsa/tag_ocelot.c
13792 F:      net/dsa/tag_ocelot_8021q.c
13793 F:      tools/testing/selftests/drivers/net/ocelot/*
13794
13795 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
13796 M:      Frederic Barrat <fbarrat@linux.ibm.com>
13797 M:      Andrew Donnellan <ajd@linux.ibm.com>
13798 L:      linuxppc-dev@lists.ozlabs.org
13799 S:      Supported
13800 F:      Documentation/userspace-api/accelerators/ocxl.rst
13801 F:      arch/powerpc/include/asm/pnv-ocxl.h
13802 F:      arch/powerpc/platforms/powernv/ocxl.c
13803 F:      drivers/misc/ocxl/
13804 F:      include/misc/ocxl*
13805 F:      include/uapi/misc/ocxl.h
13806
13807 OMAP AUDIO SUPPORT
13808 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
13809 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
13810 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13811 L:      linux-omap@vger.kernel.org
13812 S:      Maintained
13813 F:      sound/soc/ti/n810.c
13814 F:      sound/soc/ti/omap*
13815 F:      sound/soc/ti/rx51.c
13816 F:      sound/soc/ti/sdma-pcm.*
13817
13818 OMAP CLOCK FRAMEWORK SUPPORT
13819 M:      Paul Walmsley <paul@pwsan.com>
13820 L:      linux-omap@vger.kernel.org
13821 S:      Maintained
13822 F:      arch/arm/*omap*/*clock*
13823
13824 OMAP DEVICE TREE SUPPORT
13825 M:      Benoît Cousson <bcousson@baylibre.com>
13826 M:      Tony Lindgren <tony@atomide.com>
13827 L:      linux-omap@vger.kernel.org
13828 L:      devicetree@vger.kernel.org
13829 S:      Maintained
13830 F:      arch/arm/boot/dts/*am3*
13831 F:      arch/arm/boot/dts/*am4*
13832 F:      arch/arm/boot/dts/*am5*
13833 F:      arch/arm/boot/dts/*dra7*
13834 F:      arch/arm/boot/dts/*omap*
13835 F:      arch/arm/boot/dts/logicpd-som-lv*
13836 F:      arch/arm/boot/dts/logicpd-torpedo*
13837
13838 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
13839 L:      linux-omap@vger.kernel.org
13840 L:      linux-fbdev@vger.kernel.org
13841 S:      Orphan
13842 F:      Documentation/arm/omap/dss.rst
13843 F:      drivers/video/fbdev/omap2/
13844
13845 OMAP FRAMEBUFFER SUPPORT
13846 L:      linux-fbdev@vger.kernel.org
13847 L:      linux-omap@vger.kernel.org
13848 S:      Orphan
13849 F:      drivers/video/fbdev/omap/
13850
13851 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
13852 M:      Roger Quadros <rogerq@kernel.org>
13853 M:      Tony Lindgren <tony@atomide.com>
13854 L:      linux-omap@vger.kernel.org
13855 S:      Maintained
13856 F:      arch/arm/mach-omap2/*gpmc*
13857 F:      drivers/memory/omap-gpmc.c
13858
13859 OMAP GPIO DRIVER
13860 M:      Grygorii Strashko <grygorii.strashko@ti.com>
13861 M:      Santosh Shilimkar <ssantosh@kernel.org>
13862 M:      Kevin Hilman <khilman@kernel.org>
13863 L:      linux-omap@vger.kernel.org
13864 S:      Maintained
13865 F:      Documentation/devicetree/bindings/gpio/ti,omap-gpio.yaml
13866 F:      drivers/gpio/gpio-omap.c
13867
13868 OMAP HARDWARE SPINLOCK SUPPORT
13869 M:      Ohad Ben-Cohen <ohad@wizery.com>
13870 L:      linux-omap@vger.kernel.org
13871 S:      Maintained
13872 F:      drivers/hwspinlock/omap_hwspinlock.c
13873
13874 OMAP HS MMC SUPPORT
13875 L:      linux-mmc@vger.kernel.org
13876 L:      linux-omap@vger.kernel.org
13877 S:      Orphan
13878 F:      drivers/mmc/host/omap_hsmmc.c
13879
13880 OMAP HWMOD DATA
13881 M:      Paul Walmsley <paul@pwsan.com>
13882 L:      linux-omap@vger.kernel.org
13883 S:      Maintained
13884 F:      arch/arm/mach-omap2/omap_hwmod*data*
13885
13886 OMAP HWMOD SUPPORT
13887 M:      Benoît Cousson <bcousson@baylibre.com>
13888 M:      Paul Walmsley <paul@pwsan.com>
13889 L:      linux-omap@vger.kernel.org
13890 S:      Maintained
13891 F:      arch/arm/mach-omap2/omap_hwmod.*
13892
13893 OMAP I2C DRIVER
13894 M:      Vignesh R <vigneshr@ti.com>
13895 L:      linux-omap@vger.kernel.org
13896 L:      linux-i2c@vger.kernel.org
13897 S:      Maintained
13898 F:      Documentation/devicetree/bindings/i2c/ti,omap4-i2c.yaml
13899 F:      drivers/i2c/busses/i2c-omap.c
13900
13901 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
13902 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13903 L:      linux-media@vger.kernel.org
13904 S:      Maintained
13905 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
13906 F:      drivers/media/platform/omap3isp/
13907 F:      drivers/staging/media/omap4iss/
13908
13909 OMAP MMC SUPPORT
13910 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
13911 L:      linux-omap@vger.kernel.org
13912 S:      Odd Fixes
13913 F:      drivers/mmc/host/omap.c
13914
13915 OMAP POWER MANAGEMENT SUPPORT
13916 M:      Kevin Hilman <khilman@kernel.org>
13917 L:      linux-omap@vger.kernel.org
13918 S:      Maintained
13919 F:      arch/arm/*omap*/*pm*
13920 F:      drivers/cpufreq/omap-cpufreq.c
13921
13922 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
13923 M:      Rajendra Nayak <rnayak@codeaurora.org>
13924 M:      Paul Walmsley <paul@pwsan.com>
13925 L:      linux-omap@vger.kernel.org
13926 S:      Maintained
13927 F:      arch/arm/mach-omap2/prm*
13928
13929 OMAP RANDOM NUMBER GENERATOR SUPPORT
13930 M:      Deepak Saxena <dsaxena@plexity.net>
13931 S:      Maintained
13932 F:      drivers/char/hw_random/omap-rng.c
13933
13934 OMAP USB SUPPORT
13935 L:      linux-usb@vger.kernel.org
13936 L:      linux-omap@vger.kernel.org
13937 S:      Orphan
13938 F:      arch/arm/*omap*/usb*
13939 F:      drivers/usb/*/*omap*
13940
13941 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
13942 M:      Mark Jackson <mpfj@newflow.co.uk>
13943 L:      linux-omap@vger.kernel.org
13944 S:      Maintained
13945 F:      arch/arm/boot/dts/am335x-nano.dts
13946
13947 OMAP1 SUPPORT
13948 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
13949 M:      Tony Lindgren <tony@atomide.com>
13950 L:      linux-omap@vger.kernel.org
13951 S:      Maintained
13952 Q:      http://patchwork.kernel.org/project/linux-omap/list/
13953 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
13954 F:      arch/arm/configs/omap1_defconfig
13955 F:      arch/arm/mach-omap1/
13956 F:      arch/arm/plat-omap/
13957 F:      drivers/i2c/busses/i2c-omap.c
13958 F:      include/linux/platform_data/ams-delta-fiq.h
13959 F:      include/linux/platform_data/i2c-omap.h
13960
13961 OMAP2+ SUPPORT
13962 M:      Tony Lindgren <tony@atomide.com>
13963 L:      linux-omap@vger.kernel.org
13964 S:      Maintained
13965 W:      http://www.muru.com/linux/omap/
13966 W:      http://linux.omap.com/
13967 Q:      http://patchwork.kernel.org/project/linux-omap/list/
13968 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
13969 F:      arch/arm/configs/omap2plus_defconfig
13970 F:      arch/arm/mach-omap2/
13971 F:      arch/arm/plat-omap/
13972 F:      drivers/bus/ti-sysc.c
13973 F:      drivers/i2c/busses/i2c-omap.c
13974 F:      drivers/irqchip/irq-omap-intc.c
13975 F:      drivers/mfd/*omap*.c
13976 F:      drivers/mfd/menelaus.c
13977 F:      drivers/mfd/palmas.c
13978 F:      drivers/mfd/tps65217.c
13979 F:      drivers/mfd/tps65218.c
13980 F:      drivers/mfd/tps65910.c
13981 F:      drivers/mfd/twl-core.[ch]
13982 F:      drivers/mfd/twl4030*.c
13983 F:      drivers/mfd/twl6030*.c
13984 F:      drivers/mfd/twl6040*.c
13985 F:      drivers/regulator/palmas-regulator*.c
13986 F:      drivers/regulator/pbias-regulator.c
13987 F:      drivers/regulator/tps65217-regulator.c
13988 F:      drivers/regulator/tps65218-regulator.c
13989 F:      drivers/regulator/tps65910-regulator.c
13990 F:      drivers/regulator/twl-regulator.c
13991 F:      drivers/regulator/twl6030-regulator.c
13992 F:      include/linux/platform_data/i2c-omap.h
13993 F:      include/linux/platform_data/ti-sysc.h
13994
13995 OMFS FILESYSTEM
13996 M:      Bob Copeland <me@bobcopeland.com>
13997 L:      linux-karma-devel@lists.sourceforge.net
13998 S:      Maintained
13999 F:      Documentation/filesystems/omfs.rst
14000 F:      fs/omfs/
14001
14002 OMNIKEY CARDMAN 4000 DRIVER
14003 M:      Harald Welte <laforge@gnumonks.org>
14004 S:      Maintained
14005 F:      drivers/char/pcmcia/cm4000_cs.c
14006 F:      include/linux/cm4000_cs.h
14007 F:      include/uapi/linux/cm4000_cs.h
14008
14009 OMNIKEY CARDMAN 4040 DRIVER
14010 M:      Harald Welte <laforge@gnumonks.org>
14011 S:      Maintained
14012 F:      drivers/char/pcmcia/cm4040_cs.*
14013
14014 OMNIVISION OV02A10 SENSOR DRIVER
14015 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
14016 L:      linux-media@vger.kernel.org
14017 S:      Maintained
14018 T:      git git://linuxtv.org/media_tree.git
14019 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov02a10.yaml
14020 F:      drivers/media/i2c/ov02a10.c
14021
14022 OMNIVISION OV13858 SENSOR DRIVER
14023 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
14024 L:      linux-media@vger.kernel.org
14025 S:      Maintained
14026 T:      git git://linuxtv.org/media_tree.git
14027 F:      drivers/media/i2c/ov13858.c
14028
14029 OMNIVISION OV13B10 SENSOR DRIVER
14030 M:      Arec Kao <arec.kao@intel.com>
14031 L:      linux-media@vger.kernel.org
14032 S:      Maintained
14033 T:      git git://linuxtv.org/media_tree.git
14034 F:      drivers/media/i2c/ov13b10.c
14035
14036 OMNIVISION OV2680 SENSOR DRIVER
14037 M:      Rui Miguel Silva <rmfrfs@gmail.com>
14038 L:      linux-media@vger.kernel.org
14039 S:      Maintained
14040 T:      git git://linuxtv.org/media_tree.git
14041 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov2680.yaml
14042 F:      drivers/media/i2c/ov2680.c
14043
14044 OMNIVISION OV2685 SENSOR DRIVER
14045 M:      Shunqian Zheng <zhengsq@rock-chips.com>
14046 L:      linux-media@vger.kernel.org
14047 S:      Maintained
14048 T:      git git://linuxtv.org/media_tree.git
14049 F:      drivers/media/i2c/ov2685.c
14050
14051 OMNIVISION OV2740 SENSOR DRIVER
14052 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
14053 R:      Shawn Tu <shawnx.tu@intel.com>
14054 R:      Bingbu Cao <bingbu.cao@intel.com>
14055 L:      linux-media@vger.kernel.org
14056 S:      Maintained
14057 T:      git git://linuxtv.org/media_tree.git
14058 F:      drivers/media/i2c/ov2740.c
14059
14060 OMNIVISION OV5640 SENSOR DRIVER
14061 M:      Steve Longerbeam <slongerbeam@gmail.com>
14062 L:      linux-media@vger.kernel.org
14063 S:      Maintained
14064 T:      git git://linuxtv.org/media_tree.git
14065 F:      drivers/media/i2c/ov5640.c
14066
14067 OMNIVISION OV5647 SENSOR DRIVER
14068 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
14069 M:      Jacopo Mondi <jacopo@jmondi.org>
14070 L:      linux-media@vger.kernel.org
14071 S:      Maintained
14072 T:      git git://linuxtv.org/media_tree.git
14073 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5647.yaml
14074 F:      drivers/media/i2c/ov5647.c
14075
14076 OMNIVISION OV5670 SENSOR DRIVER
14077 M:      Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
14078 M:      Hyungwoo Yang <hyungwoo.yang@intel.com>
14079 L:      linux-media@vger.kernel.org
14080 S:      Maintained
14081 T:      git git://linuxtv.org/media_tree.git
14082 F:      drivers/media/i2c/ov5670.c
14083
14084 OMNIVISION OV5675 SENSOR DRIVER
14085 M:      Shawn Tu <shawnx.tu@intel.com>
14086 L:      linux-media@vger.kernel.org
14087 S:      Maintained
14088 T:      git git://linuxtv.org/media_tree.git
14089 F:      drivers/media/i2c/ov5675.c
14090
14091 OMNIVISION OV5695 SENSOR DRIVER
14092 M:      Shunqian Zheng <zhengsq@rock-chips.com>
14093 L:      linux-media@vger.kernel.org
14094 S:      Maintained
14095 T:      git git://linuxtv.org/media_tree.git
14096 F:      drivers/media/i2c/ov5695.c
14097
14098 OMNIVISION OV7670 SENSOR DRIVER
14099 L:      linux-media@vger.kernel.org
14100 S:      Orphan
14101 T:      git git://linuxtv.org/media_tree.git
14102 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
14103 F:      drivers/media/i2c/ov7670.c
14104
14105 OMNIVISION OV772x SENSOR DRIVER
14106 M:      Jacopo Mondi <jacopo@jmondi.org>
14107 L:      linux-media@vger.kernel.org
14108 S:      Odd fixes
14109 T:      git git://linuxtv.org/media_tree.git
14110 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov772x.yaml
14111 F:      drivers/media/i2c/ov772x.c
14112 F:      include/media/i2c/ov772x.h
14113
14114 OMNIVISION OV7740 SENSOR DRIVER
14115 M:      Wenyou Yang <wenyou.yang@microchip.com>
14116 L:      linux-media@vger.kernel.org
14117 S:      Maintained
14118 T:      git git://linuxtv.org/media_tree.git
14119 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
14120 F:      drivers/media/i2c/ov7740.c
14121
14122 OMNIVISION OV8856 SENSOR DRIVER
14123 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
14124 L:      linux-media@vger.kernel.org
14125 S:      Maintained
14126 T:      git git://linuxtv.org/media_tree.git
14127 F:      Documentation/devicetree/bindings/media/i2c/ov8856.yaml
14128 F:      drivers/media/i2c/ov8856.c
14129
14130 OMNIVISION OV9282 SENSOR DRIVER
14131 M:      Paul J. Murphy <paul.j.murphy@intel.com>
14132 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
14133 L:      linux-media@vger.kernel.org
14134 S:      Maintained
14135 T:      git git://linuxtv.org/media_tree.git
14136 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov9282.yaml
14137 F:      drivers/media/i2c/ov9282.c
14138
14139 OMNIVISION OV9640 SENSOR DRIVER
14140 M:      Petr Cvek <petrcvekcz@gmail.com>
14141 L:      linux-media@vger.kernel.org
14142 S:      Maintained
14143 F:      drivers/media/i2c/ov9640.*
14144
14145 OMNIVISION OV9650 SENSOR DRIVER
14146 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
14147 R:      Akinobu Mita <akinobu.mita@gmail.com>
14148 R:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14149 L:      linux-media@vger.kernel.org
14150 S:      Maintained
14151 T:      git git://linuxtv.org/media_tree.git
14152 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
14153 F:      drivers/media/i2c/ov9650.c
14154
14155 OMNIVISION OV9734 SENSOR DRIVER
14156 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
14157 R:      Bingbu Cao <bingbu.cao@intel.com>
14158 L:      linux-media@vger.kernel.org
14159 S:      Maintained
14160 T:      git git://linuxtv.org/media_tree.git
14161 F:      drivers/media/i2c/ov9734.c
14162
14163 ONENAND FLASH DRIVER
14164 M:      Kyungmin Park <kyungmin.park@samsung.com>
14165 L:      linux-mtd@lists.infradead.org
14166 S:      Maintained
14167 F:      drivers/mtd/nand/onenand/
14168 F:      include/linux/mtd/onenand*.h
14169
14170 ONION OMEGA2+ BOARD
14171 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
14172 L:      linux-mips@vger.kernel.org
14173 S:      Maintained
14174 F:      arch/mips/boot/dts/ralink/omega2p.dts
14175
14176 OP-TEE DRIVER
14177 M:      Jens Wiklander <jens.wiklander@linaro.org>
14178 L:      op-tee@lists.trustedfirmware.org
14179 S:      Maintained
14180 F:      Documentation/ABI/testing/sysfs-bus-optee-devices
14181 F:      drivers/tee/optee/
14182
14183 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
14184 M:      Sumit Garg <sumit.garg@linaro.org>
14185 L:      op-tee@lists.trustedfirmware.org
14186 S:      Maintained
14187 F:      drivers/char/hw_random/optee-rng.c
14188
14189 OPA-VNIC DRIVER
14190 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
14191 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
14192 L:      linux-rdma@vger.kernel.org
14193 S:      Supported
14194 F:      drivers/infiniband/ulp/opa_vnic
14195
14196 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
14197 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
14198 M:      Frank Rowand <frowand.list@gmail.com>
14199 L:      devicetree@vger.kernel.org
14200 S:      Maintained
14201 F:      Documentation/devicetree/dynamic-resolution-notes.rst
14202 F:      Documentation/devicetree/overlay-notes.rst
14203 F:      drivers/of/overlay.c
14204 F:      drivers/of/resolver.c
14205 K:      of_overlay_notifier_
14206
14207 OPEN FIRMWARE AND FLATTENED DEVICE TREE
14208 M:      Rob Herring <robh+dt@kernel.org>
14209 M:      Frank Rowand <frowand.list@gmail.com>
14210 L:      devicetree@vger.kernel.org
14211 S:      Maintained
14212 W:      http://www.devicetree.org/
14213 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
14214 F:      Documentation/ABI/testing/sysfs-firmware-ofw
14215 F:      drivers/of/
14216 F:      include/linux/of*.h
14217 F:      scripts/dtc/
14218
14219 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
14220 M:      Rob Herring <robh+dt@kernel.org>
14221 L:      devicetree@vger.kernel.org
14222 S:      Maintained
14223 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
14224 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
14225 F:      Documentation/devicetree/
14226 F:      arch/*/boot/dts/
14227 F:      include/dt-bindings/
14228
14229 OPENCOMPUTE PTP CLOCK DRIVER
14230 M:      Jonathan Lemon <jonathan.lemon@gmail.com>
14231 L:      netdev@vger.kernel.org
14232 S:      Maintained
14233 F:      drivers/ptp/ptp_ocp.c
14234
14235 OPENCORES I2C BUS DRIVER
14236 M:      Peter Korsgaard <peter@korsgaard.com>
14237 M:      Andrew Lunn <andrew@lunn.ch>
14238 L:      linux-i2c@vger.kernel.org
14239 S:      Maintained
14240 F:      Documentation/devicetree/bindings/i2c/i2c-ocores.txt
14241 F:      Documentation/i2c/busses/i2c-ocores.rst
14242 F:      drivers/i2c/busses/i2c-ocores.c
14243 F:      include/linux/platform_data/i2c-ocores.h
14244
14245 OPENRISC ARCHITECTURE
14246 M:      Jonas Bonn <jonas@southpole.se>
14247 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
14248 M:      Stafford Horne <shorne@gmail.com>
14249 L:      openrisc@lists.librecores.org
14250 S:      Maintained
14251 W:      http://openrisc.io
14252 T:      git git://github.com/openrisc/linux.git
14253 F:      Documentation/devicetree/bindings/openrisc/
14254 F:      Documentation/openrisc/
14255 F:      arch/openrisc/
14256 F:      drivers/irqchip/irq-ompic.c
14257 F:      drivers/irqchip/irq-or1k-*
14258
14259 OPENVSWITCH
14260 M:      Pravin B Shelar <pshelar@ovn.org>
14261 L:      netdev@vger.kernel.org
14262 L:      dev@openvswitch.org
14263 S:      Maintained
14264 W:      http://openvswitch.org
14265 F:      include/uapi/linux/openvswitch.h
14266 F:      net/openvswitch/
14267
14268 OPERATING PERFORMANCE POINTS (OPP)
14269 M:      Viresh Kumar <vireshk@kernel.org>
14270 M:      Nishanth Menon <nm@ti.com>
14271 M:      Stephen Boyd <sboyd@kernel.org>
14272 L:      linux-pm@vger.kernel.org
14273 S:      Maintained
14274 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
14275 F:      Documentation/devicetree/bindings/opp/
14276 F:      Documentation/power/opp.rst
14277 F:      drivers/opp/
14278 F:      include/linux/pm_opp.h
14279
14280 OPL4 DRIVER
14281 M:      Clemens Ladisch <clemens@ladisch.de>
14282 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14283 S:      Maintained
14284 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
14285 F:      sound/drivers/opl4/
14286
14287 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
14288 M:      Mark Fasheh <mark@fasheh.com>
14289 M:      Joel Becker <jlbec@evilplan.org>
14290 M:      Joseph Qi <joseph.qi@linux.alibaba.com>
14291 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
14292 S:      Supported
14293 W:      http://ocfs2.wiki.kernel.org
14294 F:      Documentation/filesystems/dlmfs.rst
14295 F:      Documentation/filesystems/ocfs2.rst
14296 F:      fs/ocfs2/
14297
14298 ORANGEFS FILESYSTEM
14299 M:      Mike Marshall <hubcap@omnibond.com>
14300 R:      Martin Brandenburg <martin@omnibond.com>
14301 L:      devel@lists.orangefs.org
14302 S:      Supported
14303 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
14304 F:      Documentation/filesystems/orangefs.rst
14305 F:      fs/orangefs/
14306
14307 ORINOCO DRIVER
14308 L:      linux-wireless@vger.kernel.org
14309 S:      Orphan
14310 W:      https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
14311 W:      http://www.nongnu.org/orinoco/
14312 F:      drivers/net/wireless/intersil/orinoco/
14313
14314 OV2659 OMNIVISION SENSOR DRIVER
14315 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
14316 L:      linux-media@vger.kernel.org
14317 S:      Maintained
14318 W:      https://linuxtv.org
14319 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14320 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
14321 F:      drivers/media/i2c/ov2659.c
14322 F:      include/media/i2c/ov2659.h
14323
14324 OVERLAY FILESYSTEM
14325 M:      Miklos Szeredi <miklos@szeredi.hu>
14326 L:      linux-unionfs@vger.kernel.org
14327 S:      Supported
14328 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
14329 F:      Documentation/filesystems/overlayfs.rst
14330 F:      fs/overlayfs/
14331
14332 P54 WIRELESS DRIVER
14333 M:      Christian Lamparter <chunkeey@googlemail.com>
14334 L:      linux-wireless@vger.kernel.org
14335 S:      Maintained
14336 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
14337 F:      drivers/net/wireless/intersil/p54/
14338
14339 PACKING
14340 M:      Vladimir Oltean <olteanv@gmail.com>
14341 L:      netdev@vger.kernel.org
14342 S:      Supported
14343 F:      Documentation/core-api/packing.rst
14344 F:      include/linux/packing.h
14345 F:      lib/packing.c
14346
14347 PADATA PARALLEL EXECUTION MECHANISM
14348 M:      Steffen Klassert <steffen.klassert@secunet.com>
14349 M:      Daniel Jordan <daniel.m.jordan@oracle.com>
14350 L:      linux-crypto@vger.kernel.org
14351 L:      linux-kernel@vger.kernel.org
14352 S:      Maintained
14353 F:      Documentation/core-api/padata.rst
14354 F:      include/linux/padata.h
14355 F:      kernel/padata.c
14356
14357 PAGE POOL
14358 M:      Jesper Dangaard Brouer <hawk@kernel.org>
14359 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
14360 L:      netdev@vger.kernel.org
14361 S:      Supported
14362 F:      Documentation/networking/page_pool.rst
14363 F:      include/net/page_pool.h
14364 F:      include/trace/events/page_pool.h
14365 F:      net/core/page_pool.c
14366
14367 PANASONIC LAPTOP ACPI EXTRAS DRIVER
14368 M:      Kenneth Chan <kenneth.t.chan@gmail.com>
14369 L:      platform-driver-x86@vger.kernel.org
14370 S:      Maintained
14371 F:      drivers/platform/x86/panasonic-laptop.c
14372
14373 PARALLAX PING IIO SENSOR DRIVER
14374 M:      Andreas Klinger <ak@it-klinger.de>
14375 L:      linux-iio@vger.kernel.org
14376 S:      Maintained
14377 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
14378 F:      drivers/iio/proximity/ping.c
14379
14380 PARALLEL LCD/KEYPAD PANEL DRIVER
14381 M:      Willy Tarreau <willy@haproxy.com>
14382 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
14383 S:      Odd Fixes
14384 F:      Documentation/admin-guide/lcd-panel-cgram.rst
14385 F:      drivers/auxdisplay/panel.c
14386
14387 PARALLEL PORT SUBSYSTEM
14388 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
14389 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
14390 L:      linux-parport@lists.infradead.org (subscribers-only)
14391 S:      Maintained
14392 F:      Documentation/driver-api/parport*.rst
14393 F:      drivers/char/ppdev.c
14394 F:      drivers/parport/
14395 F:      include/linux/parport*.h
14396 F:      include/uapi/linux/ppdev.h
14397
14398 PARAVIRT_OPS INTERFACE
14399 M:      Juergen Gross <jgross@suse.com>
14400 M:      Deep Shah <sdeep@vmware.com>
14401 M:      "VMware, Inc." <pv-drivers@vmware.com>
14402 L:      virtualization@lists.linux-foundation.org
14403 S:      Supported
14404 F:      Documentation/virt/paravirt_ops.rst
14405 F:      arch/*/include/asm/paravirt*.h
14406 F:      arch/*/kernel/paravirt*
14407 F:      include/linux/hypervisor.h
14408
14409 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
14410 M:      Tim Waugh <tim@cyberelk.net>
14411 L:      linux-parport@lists.infradead.org (subscribers-only)
14412 S:      Maintained
14413 F:      Documentation/admin-guide/blockdev/paride.rst
14414 F:      drivers/block/paride/
14415
14416 PARISC ARCHITECTURE
14417 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
14418 M:      Helge Deller <deller@gmx.de>
14419 L:      linux-parisc@vger.kernel.org
14420 S:      Maintained
14421 W:      https://parisc.wiki.kernel.org
14422 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
14423 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
14424 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
14425 F:      Documentation/parisc/
14426 F:      arch/parisc/
14427 F:      drivers/char/agp/parisc-agp.c
14428 F:      drivers/input/misc/hp_sdc_rtc.c
14429 F:      drivers/input/serio/gscps2.c
14430 F:      drivers/input/serio/hp_sdc*
14431 F:      drivers/parisc/
14432 F:      drivers/parport/parport_gsc.*
14433 F:      drivers/tty/serial/8250/8250_gsc.c
14434 F:      drivers/video/console/sti*
14435 F:      drivers/video/fbdev/sti*
14436 F:      drivers/video/logo/logo_parisc*
14437 F:      include/linux/hp_sdc.h
14438
14439 PARMAN
14440 M:      Jiri Pirko <jiri@nvidia.com>
14441 L:      netdev@vger.kernel.org
14442 S:      Supported
14443 F:      include/linux/parman.h
14444 F:      lib/parman.c
14445 F:      lib/test_parman.c
14446
14447 PC ENGINES APU BOARD DRIVER
14448 M:      Enrico Weigelt, metux IT consult <info@metux.net>
14449 S:      Maintained
14450 F:      drivers/platform/x86/pcengines-apuv2.c
14451
14452 PC87360 HARDWARE MONITORING DRIVER
14453 M:      Jim Cromie <jim.cromie@gmail.com>
14454 L:      linux-hwmon@vger.kernel.org
14455 S:      Maintained
14456 F:      Documentation/hwmon/pc87360.rst
14457 F:      drivers/hwmon/pc87360.c
14458
14459 PC8736x GPIO DRIVER
14460 M:      Jim Cromie <jim.cromie@gmail.com>
14461 S:      Maintained
14462 F:      drivers/char/pc8736x_gpio.c
14463
14464 PC87427 HARDWARE MONITORING DRIVER
14465 M:      Jean Delvare <jdelvare@suse.com>
14466 L:      linux-hwmon@vger.kernel.org
14467 S:      Maintained
14468 F:      Documentation/hwmon/pc87427.rst
14469 F:      drivers/hwmon/pc87427.c
14470
14471 PCA9532 LED DRIVER
14472 M:      Riku Voipio <riku.voipio@iki.fi>
14473 S:      Maintained
14474 F:      drivers/leds/leds-pca9532.c
14475 F:      include/linux/leds-pca9532.h
14476
14477 PCA9541 I2C BUS MASTER SELECTOR DRIVER
14478 M:      Guenter Roeck <linux@roeck-us.net>
14479 L:      linux-i2c@vger.kernel.org
14480 S:      Maintained
14481 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
14482
14483 PCDP - PRIMARY CONSOLE AND DEBUG PORT
14484 M:      Khalid Aziz <khalid@gonehiking.org>
14485 S:      Maintained
14486 F:      drivers/firmware/pcdp.*
14487
14488 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
14489 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14490 M:      Pali Rohár <pali@kernel.org>
14491 L:      linux-pci@vger.kernel.org
14492 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14493 S:      Maintained
14494 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
14495 F:      drivers/pci/controller/pci-aardvark.c
14496
14497 PCI DRIVER FOR ALTERA PCIE IP
14498 M:      Joyce Ooi <joyce.ooi@intel.com>
14499 L:      linux-pci@vger.kernel.org
14500 S:      Supported
14501 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
14502 F:      drivers/pci/controller/pcie-altera.c
14503
14504 PCI DRIVER FOR APPLIEDMICRO XGENE
14505 M:      Toan Le <toan@os.amperecomputing.com>
14506 L:      linux-pci@vger.kernel.org
14507 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14508 S:      Maintained
14509 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
14510 F:      drivers/pci/controller/pci-xgene.c
14511
14512 PCI DRIVER FOR ARM VERSATILE PLATFORM
14513 M:      Rob Herring <robh@kernel.org>
14514 L:      linux-pci@vger.kernel.org
14515 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14516 S:      Maintained
14517 F:      Documentation/devicetree/bindings/pci/versatile.yaml
14518 F:      drivers/pci/controller/pci-versatile.c
14519
14520 PCI DRIVER FOR ARMADA 8K
14521 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14522 L:      linux-pci@vger.kernel.org
14523 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14524 S:      Maintained
14525 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
14526 F:      drivers/pci/controller/dwc/pcie-armada8k.c
14527
14528 PCI DRIVER FOR CADENCE PCIE IP
14529 M:      Tom Joseph <tjoseph@cadence.com>
14530 L:      linux-pci@vger.kernel.org
14531 S:      Maintained
14532 F:      Documentation/devicetree/bindings/pci/cdns,*
14533 F:      drivers/pci/controller/cadence/
14534
14535 PCI DRIVER FOR FREESCALE LAYERSCAPE
14536 M:      Minghuan Lian <minghuan.Lian@nxp.com>
14537 M:      Mingkai Hu <mingkai.hu@nxp.com>
14538 M:      Roy Zang <roy.zang@nxp.com>
14539 L:      linuxppc-dev@lists.ozlabs.org
14540 L:      linux-pci@vger.kernel.org
14541 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14542 S:      Maintained
14543 F:      drivers/pci/controller/dwc/*layerscape*
14544
14545 PCI DRIVER FOR GENERIC OF HOSTS
14546 M:      Will Deacon <will@kernel.org>
14547 L:      linux-pci@vger.kernel.org
14548 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14549 S:      Maintained
14550 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
14551 F:      drivers/pci/controller/pci-host-common.c
14552 F:      drivers/pci/controller/pci-host-generic.c
14553
14554 PCI DRIVER FOR IMX6
14555 M:      Richard Zhu <hongxing.zhu@nxp.com>
14556 M:      Lucas Stach <l.stach@pengutronix.de>
14557 L:      linux-pci@vger.kernel.org
14558 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14559 S:      Maintained
14560 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.yaml
14561 F:      drivers/pci/controller/dwc/*imx6*
14562
14563 PCI DRIVER FOR FU740
14564 M:      Paul Walmsley <paul.walmsley@sifive.com>
14565 M:      Greentime Hu <greentime.hu@sifive.com>
14566 L:      linux-pci@vger.kernel.org
14567 S:      Maintained
14568 F:      Documentation/devicetree/bindings/pci/sifive,fu740-pcie.yaml
14569 F:      drivers/pci/controller/dwc/pcie-fu740.c
14570
14571 PCI DRIVER FOR INTEL IXP4XX
14572 M:      Linus Walleij <linus.walleij@linaro.org>
14573 S:      Maintained
14574 F:      Documentation/devicetree/bindings/pci/intel,ixp4xx-pci.yaml
14575 F:      drivers/pci/controller/pci-ixp4xx.c
14576
14577 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
14578 M:      Nirmal Patel <nirmal.patel@linux.intel.com>
14579 R:      Jonathan Derrick <jonathan.derrick@linux.dev>
14580 L:      linux-pci@vger.kernel.org
14581 S:      Supported
14582 F:      drivers/pci/controller/vmd.c
14583
14584 PCI DRIVER FOR MICROSEMI SWITCHTEC
14585 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
14586 M:      Logan Gunthorpe <logang@deltatee.com>
14587 L:      linux-pci@vger.kernel.org
14588 S:      Maintained
14589 F:      Documentation/ABI/testing/sysfs-class-switchtec
14590 F:      Documentation/driver-api/switchtec.rst
14591 F:      drivers/ntb/hw/mscc/
14592 F:      drivers/pci/switch/switchtec*
14593 F:      include/linux/switchtec.h
14594 F:      include/uapi/linux/switchtec_ioctl.h
14595
14596 PCI DRIVER FOR MOBIVEIL PCIE IP
14597 M:      Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
14598 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
14599 L:      linux-pci@vger.kernel.org
14600 S:      Supported
14601 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
14602 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
14603
14604 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
14605 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14606 L:      linux-pci@vger.kernel.org
14607 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14608 S:      Maintained
14609 F:      drivers/pci/controller/*mvebu*
14610
14611 PCI DRIVER FOR NVIDIA TEGRA
14612 M:      Thierry Reding <thierry.reding@gmail.com>
14613 L:      linux-tegra@vger.kernel.org
14614 L:      linux-pci@vger.kernel.org
14615 S:      Supported
14616 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
14617 F:      drivers/pci/controller/pci-tegra.c
14618
14619 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
14620 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
14621 L:      linux-pci@vger.kernel.org
14622 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14623 S:      Maintained
14624 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
14625 F:      drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
14626
14627 PCI DRIVER FOR RENESAS R-CAR
14628 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
14629 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
14630 L:      linux-pci@vger.kernel.org
14631 L:      linux-renesas-soc@vger.kernel.org
14632 S:      Maintained
14633 F:      Documentation/devicetree/bindings/pci/*rcar*
14634 F:      drivers/pci/controller/*rcar*
14635
14636 PCI DRIVER FOR SAMSUNG EXYNOS
14637 M:      Jingoo Han <jingoohan1@gmail.com>
14638 L:      linux-pci@vger.kernel.org
14639 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14640 L:      linux-samsung-soc@vger.kernel.org
14641 S:      Maintained
14642 F:      drivers/pci/controller/dwc/pci-exynos.c
14643
14644 PCI DRIVER FOR SYNOPSYS DESIGNWARE
14645 M:      Jingoo Han <jingoohan1@gmail.com>
14646 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
14647 L:      linux-pci@vger.kernel.org
14648 S:      Maintained
14649 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie.yaml
14650 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie-ep.yaml
14651 F:      drivers/pci/controller/dwc/*designware*
14652
14653 PCI DRIVER FOR TI DRA7XX/J721E
14654 M:      Kishon Vijay Abraham I <kishon@ti.com>
14655 L:      linux-omap@vger.kernel.org
14656 L:      linux-pci@vger.kernel.org
14657 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14658 S:      Supported
14659 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
14660 F:      drivers/pci/controller/cadence/pci-j721e.c
14661 F:      drivers/pci/controller/dwc/pci-dra7xx.c
14662
14663 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
14664 M:      Linus Walleij <linus.walleij@linaro.org>
14665 L:      linux-pci@vger.kernel.org
14666 S:      Maintained
14667 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
14668 F:      drivers/pci/controller/pci-v3-semi.c
14669
14670 PCI ENDPOINT SUBSYSTEM
14671 M:      Kishon Vijay Abraham I <kishon@ti.com>
14672 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
14673 R:      Krzysztof Wilczyński <kw@linux.com>
14674 L:      linux-pci@vger.kernel.org
14675 S:      Supported
14676 Q:      https://patchwork.kernel.org/project/linux-pci/list/
14677 B:      https://bugzilla.kernel.org
14678 C:      irc://irc.oftc.net/linux-pci
14679 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git
14680 F:      Documentation/PCI/endpoint/*
14681 F:      Documentation/misc-devices/pci-endpoint-test.rst
14682 F:      drivers/misc/pci_endpoint_test.c
14683 F:      drivers/pci/endpoint/
14684 F:      tools/pci/
14685
14686 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
14687 M:      Russell Currey <ruscur@russell.cc>
14688 M:      Oliver O'Halloran <oohall@gmail.com>
14689 L:      linuxppc-dev@lists.ozlabs.org
14690 S:      Supported
14691 F:      Documentation/PCI/pci-error-recovery.rst
14692 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
14693 F:      arch/powerpc/include/*/eeh*.h
14694 F:      arch/powerpc/kernel/eeh*.c
14695 F:      arch/powerpc/platforms/*/eeh*.c
14696 F:      drivers/pci/pcie/aer.c
14697 F:      drivers/pci/pcie/dpc.c
14698 F:      drivers/pci/pcie/err.c
14699
14700 PCI ERROR RECOVERY
14701 M:      Linas Vepstas <linasvepstas@gmail.com>
14702 L:      linux-pci@vger.kernel.org
14703 S:      Supported
14704 F:      Documentation/PCI/pci-error-recovery.rst
14705
14706 PCI MSI DRIVER FOR ALTERA MSI IP
14707 M:      Joyce Ooi <joyce.ooi@intel.com>
14708 L:      linux-pci@vger.kernel.org
14709 S:      Supported
14710 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
14711 F:      drivers/pci/controller/pcie-altera-msi.c
14712
14713 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
14714 M:      Toan Le <toan@os.amperecomputing.com>
14715 L:      linux-pci@vger.kernel.org
14716 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14717 S:      Maintained
14718 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
14719 F:      drivers/pci/controller/pci-xgene-msi.c
14720
14721 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
14722 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
14723 R:      Rob Herring <robh@kernel.org>
14724 R:      Krzysztof Wilczyński <kw@linux.com>
14725 L:      linux-pci@vger.kernel.org
14726 S:      Supported
14727 Q:      https://patchwork.kernel.org/project/linux-pci/list/
14728 B:      https://bugzilla.kernel.org
14729 C:      irc://irc.oftc.net/linux-pci
14730 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git
14731 F:      drivers/pci/controller/
14732 F:      drivers/pci/pci-bridge-emul.c
14733 F:      drivers/pci/pci-bridge-emul.h
14734
14735 PCI SUBSYSTEM
14736 M:      Bjorn Helgaas <bhelgaas@google.com>
14737 L:      linux-pci@vger.kernel.org
14738 S:      Supported
14739 Q:      https://patchwork.kernel.org/project/linux-pci/list/
14740 B:      https://bugzilla.kernel.org
14741 C:      irc://irc.oftc.net/linux-pci
14742 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
14743 F:      Documentation/PCI/
14744 F:      Documentation/devicetree/bindings/pci/
14745 F:      arch/x86/kernel/early-quirks.c
14746 F:      arch/x86/kernel/quirks.c
14747 F:      arch/x86/pci/
14748 F:      drivers/acpi/pci*
14749 F:      drivers/pci/
14750 F:      include/asm-generic/pci*
14751 F:      include/linux/of_pci.h
14752 F:      include/linux/pci*
14753 F:      include/uapi/linux/pci*
14754 F:      lib/pci*
14755
14756 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
14757 M:      Jonathan Chocron <jonnyc@amazon.com>
14758 L:      linux-pci@vger.kernel.org
14759 S:      Maintained
14760 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
14761 F:      drivers/pci/controller/dwc/pcie-al.c
14762
14763 PCIE DRIVER FOR AMLOGIC MESON
14764 M:      Yue Wang <yue.wang@Amlogic.com>
14765 L:      linux-pci@vger.kernel.org
14766 L:      linux-amlogic@lists.infradead.org
14767 S:      Maintained
14768 F:      drivers/pci/controller/dwc/pci-meson.c
14769
14770 PCIE DRIVER FOR AXIS ARTPEC
14771 M:      Jesper Nilsson <jesper.nilsson@axis.com>
14772 L:      linux-arm-kernel@axis.com
14773 L:      linux-pci@vger.kernel.org
14774 S:      Maintained
14775 F:      Documentation/devicetree/bindings/pci/axis,artpec*
14776 F:      drivers/pci/controller/dwc/*artpec*
14777
14778 PCIE DRIVER FOR CAVIUM THUNDERX
14779 M:      Robert Richter <rric@kernel.org>
14780 L:      linux-pci@vger.kernel.org
14781 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14782 S:      Odd Fixes
14783 F:      drivers/pci/controller/pci-thunder-*
14784
14785 PCIE DRIVER FOR HISILICON
14786 M:      Zhou Wang <wangzhou1@hisilicon.com>
14787 L:      linux-pci@vger.kernel.org
14788 S:      Maintained
14789 F:      drivers/pci/controller/dwc/pcie-hisi.c
14790
14791 PCIE DRIVER FOR HISILICON KIRIN
14792 M:      Xiaowei Song <songxiaowei@hisilicon.com>
14793 M:      Binghui Wang <wangbinghui@hisilicon.com>
14794 L:      linux-pci@vger.kernel.org
14795 S:      Maintained
14796 F:      Documentation/devicetree/bindings/pci/hisilicon,kirin-pcie.yaml
14797 F:      drivers/pci/controller/dwc/pcie-kirin.c
14798
14799 PCIE DRIVER FOR HISILICON STB
14800 M:      Shawn Guo <shawn.guo@linaro.org>
14801 L:      linux-pci@vger.kernel.org
14802 S:      Maintained
14803 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
14804 F:      drivers/pci/controller/dwc/pcie-histb.c
14805
14806 PCIE DRIVER FOR INTEL KEEM BAY
14807 M:      Srikanth Thokala <srikanth.thokala@intel.com>
14808 L:      linux-pci@vger.kernel.org
14809 S:      Supported
14810 F:      Documentation/devicetree/bindings/pci/intel,keembay-pcie*
14811 F:      drivers/pci/controller/dwc/pcie-keembay.c
14812
14813 PCIE DRIVER FOR INTEL LGM GW SOC
14814 M:      Rahul Tanwar <rtanwar@maxlinear.com>
14815 L:      linux-pci@vger.kernel.org
14816 S:      Maintained
14817 F:      Documentation/devicetree/bindings/pci/intel-gw-pcie.yaml
14818 F:      drivers/pci/controller/dwc/pcie-intel-gw.c
14819
14820 PCIE DRIVER FOR MEDIATEK
14821 M:      Ryder Lee <ryder.lee@mediatek.com>
14822 M:      Jianjun Wang <jianjun.wang@mediatek.com>
14823 L:      linux-pci@vger.kernel.org
14824 L:      linux-mediatek@lists.infradead.org
14825 S:      Supported
14826 F:      Documentation/devicetree/bindings/pci/mediatek*
14827 F:      drivers/pci/controller/*mediatek*
14828
14829 PCIE DRIVER FOR MICROCHIP
14830 M:      Daire McNamara <daire.mcnamara@microchip.com>
14831 L:      linux-pci@vger.kernel.org
14832 S:      Supported
14833 F:      Documentation/devicetree/bindings/pci/microchip*
14834 F:      drivers/pci/controller/*microchip*
14835
14836 PCIE DRIVER FOR QUALCOMM MSM
14837 M:      Stanimir Varbanov <svarbanov@mm-sol.com>
14838 L:      linux-pci@vger.kernel.org
14839 L:      linux-arm-msm@vger.kernel.org
14840 S:      Maintained
14841 F:      drivers/pci/controller/dwc/pcie-qcom.c
14842
14843 PCIE ENDPOINT DRIVER FOR QUALCOMM
14844 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
14845 L:      linux-pci@vger.kernel.org
14846 L:      linux-arm-msm@vger.kernel.org
14847 S:      Maintained
14848 F:      Documentation/devicetree/bindings/pci/qcom,pcie-ep.yaml
14849 F:      drivers/pci/controller/dwc/pcie-qcom-ep.c
14850
14851 PCIE DRIVER FOR ROCKCHIP
14852 M:      Shawn Lin <shawn.lin@rock-chips.com>
14853 L:      linux-pci@vger.kernel.org
14854 L:      linux-rockchip@lists.infradead.org
14855 S:      Maintained
14856 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
14857 F:      drivers/pci/controller/pcie-rockchip*
14858
14859 PCIE DRIVER FOR SOCIONEXT UNIPHIER
14860 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
14861 L:      linux-pci@vger.kernel.org
14862 S:      Maintained
14863 F:      Documentation/devicetree/bindings/pci/uniphier-pcie*
14864 F:      drivers/pci/controller/dwc/pcie-uniphier*
14865
14866 PCIE DRIVER FOR ST SPEAR13XX
14867 M:      Pratyush Anand <pratyush.anand@gmail.com>
14868 L:      linux-pci@vger.kernel.org
14869 S:      Maintained
14870 F:      drivers/pci/controller/dwc/*spear*
14871
14872 PCMCIA SUBSYSTEM
14873 M:      Dominik Brodowski <linux@dominikbrodowski.net>
14874 S:      Odd Fixes
14875 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
14876 F:      Documentation/pcmcia/
14877 F:      drivers/pcmcia/
14878 F:      include/pcmcia/
14879 F:      tools/pcmcia/
14880
14881 PCNET32 NETWORK DRIVER
14882 M:      Don Fry <pcnet32@frontier.com>
14883 L:      netdev@vger.kernel.org
14884 S:      Maintained
14885 F:      drivers/net/ethernet/amd/pcnet32.c
14886
14887 PCRYPT PARALLEL CRYPTO ENGINE
14888 M:      Steffen Klassert <steffen.klassert@secunet.com>
14889 L:      linux-crypto@vger.kernel.org
14890 S:      Maintained
14891 F:      crypto/pcrypt.c
14892 F:      include/crypto/pcrypt.h
14893
14894 PEAQ WMI HOTKEYS DRIVER
14895 M:      Hans de Goede <hdegoede@redhat.com>
14896 L:      platform-driver-x86@vger.kernel.org
14897 S:      Maintained
14898 F:      drivers/platform/x86/peaq-wmi.c
14899
14900 PENSANDO ETHERNET DRIVERS
14901 M:      Shannon Nelson <snelson@pensando.io>
14902 M:      drivers@pensando.io
14903 L:      netdev@vger.kernel.org
14904 S:      Supported
14905 F:      Documentation/networking/device_drivers/ethernet/pensando/ionic.rst
14906 F:      drivers/net/ethernet/pensando/
14907
14908 PER-CPU MEMORY ALLOCATOR
14909 M:      Dennis Zhou <dennis@kernel.org>
14910 M:      Tejun Heo <tj@kernel.org>
14911 M:      Christoph Lameter <cl@linux.com>
14912 L:      linux-mm@kvack.org
14913 S:      Maintained
14914 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
14915 F:      arch/*/include/asm/percpu.h
14916 F:      include/linux/percpu*.h
14917 F:      lib/percpu*.c
14918 F:      mm/percpu*.c
14919
14920 PER-TASK DELAY ACCOUNTING
14921 M:      Balbir Singh <bsingharora@gmail.com>
14922 S:      Maintained
14923 F:      include/linux/delayacct.h
14924 F:      kernel/delayacct.c
14925
14926 PERFORMANCE EVENTS SUBSYSTEM
14927 M:      Peter Zijlstra <peterz@infradead.org>
14928 M:      Ingo Molnar <mingo@redhat.com>
14929 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
14930 R:      Mark Rutland <mark.rutland@arm.com>
14931 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
14932 R:      Jiri Olsa <jolsa@redhat.com>
14933 R:      Namhyung Kim <namhyung@kernel.org>
14934 L:      linux-perf-users@vger.kernel.org
14935 L:      linux-kernel@vger.kernel.org
14936 S:      Supported
14937 W:      https://perf.wiki.kernel.org/
14938 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
14939 F:      arch/*/events/*
14940 F:      arch/*/events/*/*
14941 F:      arch/*/include/asm/perf_event.h
14942 F:      arch/*/kernel/*/*/perf_event*.c
14943 F:      arch/*/kernel/*/perf_event*.c
14944 F:      arch/*/kernel/perf_callchain.c
14945 F:      arch/*/kernel/perf_event*.c
14946 F:      include/linux/perf_event.h
14947 F:      include/uapi/linux/perf_event.h
14948 F:      kernel/events/*
14949 F:      tools/lib/perf/
14950 F:      tools/perf/
14951
14952 PERFORMANCE EVENTS TOOLING ARM64
14953 R:      John Garry <john.garry@huawei.com>
14954 R:      Will Deacon <will@kernel.org>
14955 R:      Mathieu Poirier <mathieu.poirier@linaro.org>
14956 R:      Leo Yan <leo.yan@linaro.org>
14957 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14958 S:      Supported
14959 F:      tools/build/feature/test-libopencsd.c
14960 F:      tools/perf/arch/arm*/
14961 F:      tools/perf/pmu-events/arch/arm64/
14962 F:      tools/perf/util/arm-spe*
14963 F:      tools/perf/util/cs-etm*
14964
14965 PERSONALITY HANDLING
14966 M:      Christoph Hellwig <hch@infradead.org>
14967 L:      linux-abi-devel@lists.sourceforge.net
14968 S:      Maintained
14969 F:      include/linux/personality.h
14970 F:      include/uapi/linux/personality.h
14971
14972 PHOENIX RC FLIGHT CONTROLLER ADAPTER
14973 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
14974 L:      linux-input@vger.kernel.org
14975 S:      Maintained
14976 F:      Documentation/input/devices/pxrc.rst
14977 F:      drivers/input/joystick/pxrc.c
14978
14979 PHONET PROTOCOL
14980 M:      Remi Denis-Courmont <courmisch@gmail.com>
14981 S:      Supported
14982 F:      Documentation/networking/phonet.rst
14983 F:      include/linux/phonet.h
14984 F:      include/net/phonet/
14985 F:      include/uapi/linux/phonet.h
14986 F:      net/phonet/
14987
14988 PHRAM MTD DRIVER
14989 M:      Joern Engel <joern@lazybastard.org>
14990 L:      linux-mtd@lists.infradead.org
14991 S:      Maintained
14992 F:      drivers/mtd/devices/phram.c
14993
14994 PICOLCD HID DRIVER
14995 M:      Bruno Prémont <bonbons@linux-vserver.org>
14996 L:      linux-input@vger.kernel.org
14997 S:      Maintained
14998 F:      drivers/hid/hid-picolcd*
14999
15000 PIDFD API
15001 M:      Christian Brauner <christian@brauner.io>
15002 L:      linux-kernel@vger.kernel.org
15003 S:      Maintained
15004 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
15005 F:      samples/pidfd/
15006 F:      tools/testing/selftests/clone3/
15007 F:      tools/testing/selftests/pid_namespace/
15008 F:      tools/testing/selftests/pidfd/
15009 K:      (?i)pidfd
15010 K:      (?i)clone3
15011 K:      \b(clone_args|kernel_clone_args)\b
15012
15013 PIN CONTROL SUBSYSTEM
15014 M:      Linus Walleij <linus.walleij@linaro.org>
15015 L:      linux-gpio@vger.kernel.org
15016 S:      Maintained
15017 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
15018 F:      Documentation/devicetree/bindings/pinctrl/
15019 F:      Documentation/driver-api/pin-control.rst
15020 F:      drivers/pinctrl/
15021 F:      include/linux/pinctrl/
15022
15023 PIN CONTROLLER - AMD
15024 M:      Basavaraj Natikar <Basavaraj.Natikar@amd.com>
15025 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
15026 S:      Maintained
15027 F:      drivers/pinctrl/pinctrl-amd.c
15028
15029 PIN CONTROLLER - FREESCALE
15030 M:      Dong Aisheng <aisheng.dong@nxp.com>
15031 M:      Fabio Estevam <festevam@gmail.com>
15032 M:      Shawn Guo <shawnguo@kernel.org>
15033 M:      Stefan Agner <stefan@agner.ch>
15034 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
15035 L:      linux-gpio@vger.kernel.org
15036 S:      Maintained
15037 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
15038 F:      drivers/pinctrl/freescale/
15039
15040 PIN CONTROLLER - INTEL
15041 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
15042 M:      Andy Shevchenko <andy@kernel.org>
15043 S:      Maintained
15044 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
15045 F:      drivers/pinctrl/intel/
15046
15047 PIN CONTROLLER - KEEMBAY
15048 M:      Lakshmi Sowjanya D <lakshmi.sowjanya.d@intel.com>
15049 S:      Supported
15050 F:      drivers/pinctrl/pinctrl-keembay*
15051
15052 PIN CONTROLLER - MEDIATEK
15053 M:      Sean Wang <sean.wang@kernel.org>
15054 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
15055 S:      Maintained
15056 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt65xx-pinctrl.yaml
15057 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt6797-pinctrl.yaml
15058 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt7622-pinctrl.yaml
15059 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt8183-pinctrl.yaml
15060 F:      drivers/pinctrl/mediatek/
15061
15062 PIN CONTROLLER - MICROCHIP AT91
15063 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
15064 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15065 L:      linux-gpio@vger.kernel.org
15066 S:      Supported
15067 F:      drivers/gpio/gpio-sama5d2-piobu.c
15068 F:      drivers/pinctrl/pinctrl-at91*
15069
15070 PIN CONTROLLER - QUALCOMM
15071 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
15072 L:      linux-arm-msm@vger.kernel.org
15073 S:      Maintained
15074 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
15075 F:      drivers/pinctrl/qcom/
15076
15077 PIN CONTROLLER - RENESAS
15078 M:      Geert Uytterhoeven <geert+renesas@glider.be>
15079 L:      linux-renesas-soc@vger.kernel.org
15080 S:      Supported
15081 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-pinctrl
15082 F:      Documentation/devicetree/bindings/pinctrl/renesas,*
15083 F:      drivers/pinctrl/renesas/
15084
15085 PIN CONTROLLER - SAMSUNG
15086 M:      Tomasz Figa <tomasz.figa@gmail.com>
15087 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
15088 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15089 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15090 L:      linux-samsung-soc@vger.kernel.org
15091 S:      Maintained
15092 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
15093 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
15094 F:      Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
15095 F:      drivers/pinctrl/samsung/
15096 F:      include/dt-bindings/pinctrl/samsung.h
15097
15098 PIN CONTROLLER - SINGLE
15099 M:      Tony Lindgren <tony@atomide.com>
15100 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
15101 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15102 L:      linux-omap@vger.kernel.org
15103 S:      Maintained
15104 F:      drivers/pinctrl/pinctrl-single.c
15105
15106 PKTCDVD DRIVER
15107 M:      linux-block@vger.kernel.org
15108 S:      Orphan
15109 F:      drivers/block/pktcdvd.c
15110 F:      include/linux/pktcdvd.h
15111 F:      include/uapi/linux/pktcdvd.h
15112
15113 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
15114 M:      Tomasz Duszynski <tduszyns@gmail.com>
15115 S:      Maintained
15116 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
15117 F:      drivers/iio/chemical/pms7003.c
15118
15119 PLDMFW LIBRARY
15120 M:      Jacob Keller <jacob.e.keller@intel.com>
15121 S:      Maintained
15122 F:      Documentation/driver-api/pldmfw/
15123 F:      include/linux/pldmfw.h
15124 F:      lib/pldmfw/
15125
15126 PLX DMA DRIVER
15127 M:      Logan Gunthorpe <logang@deltatee.com>
15128 S:      Maintained
15129 F:      drivers/dma/plx_dma.c
15130
15131 PM6764TR DRIVER
15132 M:      Charles Hsu     <hsu.yungteng@gmail.com>
15133 L:      linux-hwmon@vger.kernel.org
15134 S:      Maintained
15135 F:      Documentation/hwmon/pm6764tr.rst
15136 F:      drivers/hwmon/pmbus/pm6764tr.c
15137
15138 PM-GRAPH UTILITY
15139 M:      "Todd E Brandt" <todd.e.brandt@linux.intel.com>
15140 L:      linux-pm@vger.kernel.org
15141 S:      Supported
15142 W:      https://01.org/pm-graph
15143 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
15144 T:      git git://github.com/intel/pm-graph
15145 F:      tools/power/pm-graph
15146
15147 PMBUS HARDWARE MONITORING DRIVERS
15148 M:      Guenter Roeck <linux@roeck-us.net>
15149 L:      linux-hwmon@vger.kernel.org
15150 S:      Maintained
15151 W:      http://hwmon.wiki.kernel.org/
15152 W:      http://www.roeck-us.net/linux/drivers/
15153 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
15154 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
15155 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
15156 F:      Documentation/hwmon/adm1275.rst
15157 F:      Documentation/hwmon/ibm-cffps.rst
15158 F:      Documentation/hwmon/ir35221.rst
15159 F:      Documentation/hwmon/lm25066.rst
15160 F:      Documentation/hwmon/ltc2978.rst
15161 F:      Documentation/hwmon/ltc3815.rst
15162 F:      Documentation/hwmon/max16064.rst
15163 F:      Documentation/hwmon/max20751.rst
15164 F:      Documentation/hwmon/max31785.rst
15165 F:      Documentation/hwmon/max34440.rst
15166 F:      Documentation/hwmon/max8688.rst
15167 F:      Documentation/hwmon/pmbus-core.rst
15168 F:      Documentation/hwmon/pmbus.rst
15169 F:      Documentation/hwmon/tps40422.rst
15170 F:      Documentation/hwmon/ucd9000.rst
15171 F:      Documentation/hwmon/ucd9200.rst
15172 F:      Documentation/hwmon/zl6100.rst
15173 F:      drivers/hwmon/pmbus/
15174 F:      include/linux/pmbus.h
15175
15176 PMC SIERRA MaxRAID DRIVER
15177 L:      linux-scsi@vger.kernel.org
15178 S:      Orphan
15179 W:      http://www.pmc-sierra.com/
15180 F:      drivers/scsi/pmcraid.*
15181
15182 PMC SIERRA PM8001 DRIVER
15183 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
15184 L:      linux-scsi@vger.kernel.org
15185 S:      Supported
15186 F:      drivers/scsi/pm8001/
15187
15188 PNI RM3100 IIO DRIVER
15189 M:      Song Qiang <songqiang1304521@gmail.com>
15190 L:      linux-iio@vger.kernel.org
15191 S:      Maintained
15192 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.yaml
15193 F:      drivers/iio/magnetometer/rm3100*
15194
15195 PNP SUPPORT
15196 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
15197 L:      linux-acpi@vger.kernel.org
15198 S:      Maintained
15199 F:      drivers/pnp/
15200 F:      include/linux/pnp.h
15201
15202 POSIX CLOCKS and TIMERS
15203 M:      Thomas Gleixner <tglx@linutronix.de>
15204 L:      linux-kernel@vger.kernel.org
15205 S:      Maintained
15206 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
15207 F:      fs/timerfd.c
15208 F:      include/linux/time_namespace.h
15209 F:      include/linux/timer*
15210 F:      kernel/time/*timer*
15211 F:      kernel/time/namespace.c
15212
15213 POWER MANAGEMENT CORE
15214 M:      "Rafael J. Wysocki" <rafael@kernel.org>
15215 L:      linux-pm@vger.kernel.org
15216 S:      Supported
15217 B:      https://bugzilla.kernel.org
15218 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
15219 F:      drivers/base/power/
15220 F:      drivers/powercap/
15221 F:      include/linux/intel_rapl.h
15222 F:      include/linux/pm.h
15223 F:      include/linux/pm_*
15224 F:      include/linux/powercap.h
15225 F:      kernel/configs/nopm.config
15226
15227 DYNAMIC THERMAL POWER MANAGEMENT (DTPM)
15228 M:      Daniel Lezcano <daniel.lezcano@kernel.org>
15229 L:      linux-pm@vger.kernel.org
15230 S:      Supported
15231 B:      https://bugzilla.kernel.org
15232 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
15233 F:      drivers/powercap/dtpm*
15234 F:      include/linux/dtpm.h
15235
15236 POWER STATE COORDINATION INTERFACE (PSCI)
15237 M:      Mark Rutland <mark.rutland@arm.com>
15238 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
15239 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15240 S:      Maintained
15241 F:      drivers/firmware/psci/
15242 F:      include/linux/psci.h
15243 F:      include/uapi/linux/psci.h
15244
15245 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
15246 M:      Sebastian Reichel <sre@kernel.org>
15247 L:      linux-pm@vger.kernel.org
15248 S:      Maintained
15249 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
15250 F:      Documentation/ABI/testing/sysfs-class-power
15251 F:      Documentation/devicetree/bindings/power/supply/
15252 F:      drivers/power/supply/
15253 F:      include/linux/power/
15254 F:      include/linux/power_supply.h
15255
15256 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
15257 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
15258 L:      linuxppc-dev@lists.ozlabs.org
15259 S:      Maintained
15260 F:      drivers/char/powernv-op-panel.c
15261
15262 PPP OVER ATM (RFC 2364)
15263 M:      Mitchell Blank Jr <mitch@sfgoth.com>
15264 S:      Maintained
15265 F:      include/uapi/linux/atmppp.h
15266 F:      net/atm/pppoatm.c
15267
15268 PPP OVER ETHERNET
15269 M:      Michal Ostrowski <mostrows@earthlink.net>
15270 S:      Maintained
15271 F:      drivers/net/ppp/pppoe.c
15272 F:      drivers/net/ppp/pppox.c
15273
15274 PPP OVER L2TP
15275 M:      James Chapman <jchapman@katalix.com>
15276 S:      Maintained
15277 F:      include/linux/if_pppol2tp.h
15278 F:      include/uapi/linux/if_pppol2tp.h
15279 F:      net/l2tp/l2tp_ppp.c
15280
15281 PPP PROTOCOL DRIVERS AND COMPRESSORS
15282 M:      Paul Mackerras <paulus@samba.org>
15283 L:      linux-ppp@vger.kernel.org
15284 S:      Maintained
15285 F:      drivers/net/ppp/ppp_*
15286
15287 PPS SUPPORT
15288 M:      Rodolfo Giometti <giometti@enneenne.com>
15289 L:      linuxpps@ml.enneenne.com (subscribers-only)
15290 S:      Maintained
15291 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
15292 F:      Documentation/ABI/testing/sysfs-pps
15293 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
15294 F:      Documentation/driver-api/pps.rst
15295 F:      drivers/pps/
15296 F:      include/linux/pps*.h
15297 F:      include/uapi/linux/pps.h
15298
15299 PPTP DRIVER
15300 M:      Dmitry Kozlov <xeb@mail.ru>
15301 L:      netdev@vger.kernel.org
15302 S:      Maintained
15303 W:      http://sourceforge.net/projects/accel-pptp
15304 F:      drivers/net/ppp/pptp.c
15305
15306 PRESSURE STALL INFORMATION (PSI)
15307 M:      Johannes Weiner <hannes@cmpxchg.org>
15308 S:      Maintained
15309 F:      include/linux/psi*
15310 F:      kernel/sched/psi.c
15311
15312 PRINTK
15313 M:      Petr Mladek <pmladek@suse.com>
15314 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
15315 R:      Steven Rostedt <rostedt@goodmis.org>
15316 R:      John Ogness <john.ogness@linutronix.de>
15317 S:      Maintained
15318 F:      include/linux/printk.h
15319 F:      kernel/printk/
15320
15321 PRINTK INDEXING
15322 R:      Chris Down <chris@chrisdown.name>
15323 S:      Maintained
15324 F:      kernel/printk/index.c
15325
15326 PROC FILESYSTEM
15327 L:      linux-kernel@vger.kernel.org
15328 L:      linux-fsdevel@vger.kernel.org
15329 S:      Maintained
15330 F:      Documentation/filesystems/proc.rst
15331 F:      fs/proc/
15332 F:      include/linux/proc_fs.h
15333 F:      tools/testing/selftests/proc/
15334
15335 PROC SYSCTL
15336 M:      Luis Chamberlain <mcgrof@kernel.org>
15337 M:      Kees Cook <keescook@chromium.org>
15338 M:      Iurii Zaikin <yzaikin@google.com>
15339 L:      linux-kernel@vger.kernel.org
15340 L:      linux-fsdevel@vger.kernel.org
15341 S:      Maintained
15342 F:      fs/proc/proc_sysctl.c
15343 F:      include/linux/sysctl.h
15344 F:      kernel/sysctl-test.c
15345 F:      kernel/sysctl.c
15346 F:      tools/testing/selftests/sysctl/
15347
15348 PS3 NETWORK SUPPORT
15349 M:      Geoff Levand <geoff@infradead.org>
15350 L:      netdev@vger.kernel.org
15351 L:      linuxppc-dev@lists.ozlabs.org
15352 S:      Maintained
15353 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
15354
15355 PS3 PLATFORM SUPPORT
15356 M:      Geoff Levand <geoff@infradead.org>
15357 L:      linuxppc-dev@lists.ozlabs.org
15358 S:      Maintained
15359 F:      arch/powerpc/boot/ps3*
15360 F:      arch/powerpc/include/asm/lv1call.h
15361 F:      arch/powerpc/include/asm/ps3*.h
15362 F:      arch/powerpc/platforms/ps3/
15363 F:      drivers/*/ps3*
15364 F:      drivers/ps3/
15365 F:      drivers/rtc/rtc-ps3.c
15366 F:      drivers/usb/host/*ps3.c
15367 F:      sound/ppc/snd_ps3*
15368
15369 PS3VRAM DRIVER
15370 M:      Jim Paris <jim@jtan.com>
15371 M:      Geoff Levand <geoff@infradead.org>
15372 L:      linuxppc-dev@lists.ozlabs.org
15373 S:      Maintained
15374 F:      drivers/block/ps3vram.c
15375
15376 PSAMPLE PACKET SAMPLING SUPPORT
15377 M:      Yotam Gigi <yotam.gi@gmail.com>
15378 S:      Maintained
15379 F:      include/net/psample.h
15380 F:      include/uapi/linux/psample.h
15381 F:      net/psample
15382
15383 PSTORE FILESYSTEM
15384 M:      Kees Cook <keescook@chromium.org>
15385 M:      Anton Vorontsov <anton@enomsg.org>
15386 M:      Colin Cross <ccross@android.com>
15387 M:      Tony Luck <tony.luck@intel.com>
15388 S:      Maintained
15389 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
15390 F:      Documentation/admin-guide/ramoops.rst
15391 F:      Documentation/admin-guide/pstore-blk.rst
15392 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.yaml
15393 F:      drivers/acpi/apei/erst.c
15394 F:      drivers/firmware/efi/efi-pstore.c
15395 F:      fs/pstore/
15396 F:      include/linux/pstore*
15397 K:      \b(pstore|ramoops)
15398
15399 PTP HARDWARE CLOCK SUPPORT
15400 M:      Richard Cochran <richardcochran@gmail.com>
15401 L:      netdev@vger.kernel.org
15402 S:      Maintained
15403 W:      http://linuxptp.sourceforge.net/
15404 F:      Documentation/ABI/testing/sysfs-ptp
15405 F:      Documentation/driver-api/ptp.rst
15406 F:      drivers/net/phy/dp83640*
15407 F:      drivers/ptp/*
15408 F:      include/linux/ptp_cl*
15409
15410 PTP VIRTUAL CLOCK SUPPORT
15411 M:      Yangbo Lu <yangbo.lu@nxp.com>
15412 L:      netdev@vger.kernel.org
15413 S:      Maintained
15414 F:      drivers/ptp/ptp_vclock.c
15415 F:      net/ethtool/phc_vclocks.c
15416
15417 PTRACE SUPPORT
15418 M:      Oleg Nesterov <oleg@redhat.com>
15419 S:      Maintained
15420 F:      arch/*/*/ptrace*.c
15421 F:      arch/*/include/asm/ptrace*.h
15422 F:      arch/*/ptrace*.c
15423 F:      include/asm-generic/syscall.h
15424 F:      include/linux/ptrace.h
15425 F:      include/linux/regset.h
15426 F:      include/linux/tracehook.h
15427 F:      include/uapi/linux/ptrace.h
15428 F:      include/uapi/linux/ptrace.h
15429 F:      kernel/ptrace.c
15430
15431 PULSE8-CEC DRIVER
15432 M:      Hans Verkuil <hverkuil@xs4all.nl>
15433 L:      linux-media@vger.kernel.org
15434 S:      Maintained
15435 T:      git git://linuxtv.org/media_tree.git
15436 F:      Documentation/admin-guide/media/pulse8-cec.rst
15437 F:      drivers/media/cec/usb/pulse8/
15438
15439 PVRUSB2 VIDEO4LINUX DRIVER
15440 M:      Mike Isely <isely@pobox.com>
15441 L:      pvrusb2@isely.net       (subscribers-only)
15442 L:      linux-media@vger.kernel.org
15443 S:      Maintained
15444 W:      http://www.isely.net/pvrusb2/
15445 T:      git git://linuxtv.org/media_tree.git
15446 F:      Documentation/driver-api/media/drivers/pvrusb2*
15447 F:      drivers/media/usb/pvrusb2/
15448
15449 PWC WEBCAM DRIVER
15450 M:      Hans Verkuil <hverkuil@xs4all.nl>
15451 L:      linux-media@vger.kernel.org
15452 S:      Odd Fixes
15453 T:      git git://linuxtv.org/media_tree.git
15454 F:      drivers/media/usb/pwc/*
15455 F:      include/trace/events/pwc.h
15456
15457 PWM FAN DRIVER
15458 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
15459 L:      linux-hwmon@vger.kernel.org
15460 S:      Supported
15461 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
15462 F:      Documentation/hwmon/pwm-fan.rst
15463 F:      drivers/hwmon/pwm-fan.c
15464
15465 PWM IR Transmitter
15466 M:      Sean Young <sean@mess.org>
15467 L:      linux-media@vger.kernel.org
15468 S:      Maintained
15469 F:      drivers/media/rc/pwm-ir-tx.c
15470
15471 PWM SUBSYSTEM
15472 M:      Thierry Reding <thierry.reding@gmail.com>
15473 R:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
15474 M:      Lee Jones <lee.jones@linaro.org>
15475 L:      linux-pwm@vger.kernel.org
15476 S:      Maintained
15477 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
15478 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
15479 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
15480 F:      Documentation/devicetree/bindings/pwm/
15481 F:      Documentation/driver-api/pwm.rst
15482 F:      drivers/gpio/gpio-mvebu.c
15483 F:      drivers/pwm/
15484 F:      drivers/video/backlight/pwm_bl.c
15485 F:      include/linux/pwm.h
15486 F:      include/linux/pwm_backlight.h
15487 K:      pwm_(config|apply_state|ops)
15488
15489 PXA GPIO DRIVER
15490 M:      Robert Jarzmik <robert.jarzmik@free.fr>
15491 L:      linux-gpio@vger.kernel.org
15492 S:      Maintained
15493 F:      drivers/gpio/gpio-pxa.c
15494
15495 PXA MMCI DRIVER
15496 S:      Orphan
15497
15498 PXA RTC DRIVER
15499 M:      Robert Jarzmik <robert.jarzmik@free.fr>
15500 L:      linux-rtc@vger.kernel.org
15501 S:      Maintained
15502
15503 PXA2xx/PXA3xx SUPPORT
15504 M:      Daniel Mack <daniel@zonque.org>
15505 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
15506 M:      Robert Jarzmik <robert.jarzmik@free.fr>
15507 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15508 S:      Maintained
15509 T:      git git://github.com/hzhuang1/linux.git
15510 T:      git git://github.com/rjarzmik/linux.git
15511 F:      arch/arm/boot/dts/pxa*
15512 F:      arch/arm/mach-pxa/
15513 F:      drivers/dma/pxa*
15514 F:      drivers/pcmcia/pxa2xx*
15515 F:      drivers/pinctrl/pxa/
15516 F:      drivers/spi/spi-pxa2xx*
15517 F:      drivers/usb/gadget/udc/pxa2*
15518 F:      include/sound/pxa2xx-lib.h
15519 F:      sound/arm/pxa*
15520 F:      sound/soc/pxa/
15521
15522 QAT DRIVER
15523 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
15524 L:      qat-linux@intel.com
15525 S:      Supported
15526 F:      drivers/crypto/qat/
15527
15528 QCOM AUDIO (ASoC) DRIVERS
15529 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
15530 M:      Banajit Goswami <bgoswami@codeaurora.org>
15531 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15532 S:      Supported
15533 F:      sound/soc/codecs/lpass-va-macro.c
15534 F:      sound/soc/codecs/lpass-wsa-macro.*
15535 F:      sound/soc/codecs/msm8916-wcd-analog.c
15536 F:      sound/soc/codecs/msm8916-wcd-digital.c
15537 F:      sound/soc/codecs/wcd9335.*
15538 F:      sound/soc/codecs/wcd934x.c
15539 F:      sound/soc/codecs/wcd-clsh-v2.*
15540 F:      sound/soc/codecs/wsa881x.c
15541 F:      sound/soc/qcom/
15542
15543 QCOM IPA DRIVER
15544 M:      Alex Elder <elder@kernel.org>
15545 L:      netdev@vger.kernel.org
15546 S:      Supported
15547 F:      drivers/net/ipa/
15548
15549 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
15550 M:      Gabriel Somlo <somlo@cmu.edu>
15551 M:      "Michael S. Tsirkin" <mst@redhat.com>
15552 L:      qemu-devel@nongnu.org
15553 S:      Maintained
15554 F:      drivers/firmware/qemu_fw_cfg.c
15555 F:      include/uapi/linux/qemu_fw_cfg.h
15556
15557 QIB DRIVER
15558 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
15559 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
15560 L:      linux-rdma@vger.kernel.org
15561 S:      Supported
15562 F:      drivers/infiniband/hw/qib/
15563
15564 QLOGIC QL41xxx FCOE DRIVER
15565 M:      Saurav Kashyap <skashyap@marvell.com>
15566 M:      Javed Hasan <jhasan@marvell.com>
15567 M:      GR-QLogic-Storage-Upstream@marvell.com
15568 L:      linux-scsi@vger.kernel.org
15569 S:      Supported
15570 F:      drivers/scsi/qedf/
15571
15572 QLOGIC QL41xxx ISCSI DRIVER
15573 M:      Nilesh Javali <njavali@marvell.com>
15574 M:      Manish Rangankar <mrangankar@marvell.com>
15575 M:      GR-QLogic-Storage-Upstream@marvell.com
15576 L:      linux-scsi@vger.kernel.org
15577 S:      Supported
15578 F:      drivers/scsi/qedi/
15579
15580 QLOGIC QL4xxx ETHERNET DRIVER
15581 M:      Ariel Elior <aelior@marvell.com>
15582 M:      GR-everest-linux-l2@marvell.com
15583 L:      netdev@vger.kernel.org
15584 S:      Supported
15585 F:      drivers/net/ethernet/qlogic/qed/
15586 F:      drivers/net/ethernet/qlogic/qede/
15587 F:      include/linux/qed/
15588
15589 QLOGIC QL4xxx RDMA DRIVER
15590 M:      Michal Kalderon <mkalderon@marvell.com>
15591 M:      Ariel Elior <aelior@marvell.com>
15592 L:      linux-rdma@vger.kernel.org
15593 S:      Supported
15594 F:      drivers/infiniband/hw/qedr/
15595 F:      include/uapi/rdma/qedr-abi.h
15596
15597 QLOGIC QLA1280 SCSI DRIVER
15598 M:      Michael Reed <mdr@sgi.com>
15599 L:      linux-scsi@vger.kernel.org
15600 S:      Maintained
15601 F:      drivers/scsi/qla1280.[ch]
15602
15603 QLOGIC QLA2XXX FC-SCSI DRIVER
15604 M:      Nilesh Javali <njavali@marvell.com>
15605 M:      GR-QLogic-Storage-Upstream@marvell.com
15606 L:      linux-scsi@vger.kernel.org
15607 S:      Supported
15608 F:      drivers/scsi/qla2xxx/
15609
15610 QLOGIC QLA3XXX NETWORK DRIVER
15611 M:      GR-Linux-NIC-Dev@marvell.com
15612 L:      netdev@vger.kernel.org
15613 S:      Supported
15614 F:      drivers/net/ethernet/qlogic/qla3xxx.*
15615
15616 QLOGIC QLA4XXX iSCSI DRIVER
15617 M:      Nilesh Javali <njavali@marvell.com>
15618 M:      Manish Rangankar <mrangankar@marvell.com>
15619 M:      GR-QLogic-Storage-Upstream@marvell.com
15620 L:      linux-scsi@vger.kernel.org
15621 S:      Supported
15622 F:      drivers/scsi/qla4xxx/
15623
15624 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
15625 M:      Shahed Shaikh <shshaikh@marvell.com>
15626 M:      Manish Chopra <manishc@marvell.com>
15627 M:      GR-Linux-NIC-Dev@marvell.com
15628 L:      netdev@vger.kernel.org
15629 S:      Supported
15630 F:      drivers/net/ethernet/qlogic/qlcnic/
15631
15632 QLOGIC QLGE 10Gb ETHERNET DRIVER
15633 M:      Manish Chopra <manishc@marvell.com>
15634 M:      GR-Linux-NIC-Dev@marvell.com
15635 M:      Coiby Xu <coiby.xu@gmail.com>
15636 L:      netdev@vger.kernel.org
15637 S:      Supported
15638 F:      Documentation/networking/device_drivers/qlogic/qlge.rst
15639 F:      drivers/staging/qlge/
15640
15641 QM1D1B0004 MEDIA DRIVER
15642 M:      Akihiro Tsukada <tskd08@gmail.com>
15643 L:      linux-media@vger.kernel.org
15644 S:      Odd Fixes
15645 F:      drivers/media/tuners/qm1d1b0004*
15646
15647 QM1D1C0042 MEDIA DRIVER
15648 M:      Akihiro Tsukada <tskd08@gmail.com>
15649 L:      linux-media@vger.kernel.org
15650 S:      Odd Fixes
15651 F:      drivers/media/tuners/qm1d1c0042*
15652
15653 QNX4 FILESYSTEM
15654 M:      Anders Larsen <al@alarsen.net>
15655 S:      Maintained
15656 W:      http://www.alarsen.net/linux/qnx4fs/
15657 F:      fs/qnx4/
15658 F:      include/uapi/linux/qnx4_fs.h
15659 F:      include/uapi/linux/qnxtypes.h
15660
15661 QORIQ DPAA2 FSL-MC BUS DRIVER
15662 M:      Stuart Yoder <stuyoder@gmail.com>
15663 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
15664 L:      linux-kernel@vger.kernel.org
15665 S:      Maintained
15666 F:      Documentation/ABI/stable/sysfs-bus-fsl-mc
15667 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
15668 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/overview.rst
15669 F:      drivers/bus/fsl-mc/
15670 F:      include/uapi/linux/fsl_mc.h
15671
15672 QT1010 MEDIA DRIVER
15673 M:      Antti Palosaari <crope@iki.fi>
15674 L:      linux-media@vger.kernel.org
15675 S:      Maintained
15676 W:      https://linuxtv.org
15677 W:      http://palosaari.fi/linux/
15678 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15679 T:      git git://linuxtv.org/anttip/media_tree.git
15680 F:      drivers/media/tuners/qt1010*
15681
15682 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
15683 M:      Kalle Valo <kvalo@codeaurora.org>
15684 L:      ath10k@lists.infradead.org
15685 S:      Supported
15686 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
15687 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
15688 F:      drivers/net/wireless/ath/ath10k/
15689
15690 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
15691 M:      Kalle Valo <kvalo@codeaurora.org>
15692 L:      ath11k@lists.infradead.org
15693 S:      Supported
15694 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
15695 F:      drivers/net/wireless/ath/ath11k/
15696
15697 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
15698 M:      ath9k-devel@qca.qualcomm.com
15699 L:      linux-wireless@vger.kernel.org
15700 S:      Supported
15701 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
15702 F:      Documentation/devicetree/bindings/net/wireless/qca,ath9k.yaml
15703 F:      drivers/net/wireless/ath/ath9k/
15704
15705 QUALCOMM CAMERA SUBSYSTEM DRIVER
15706 M:      Robert Foss <robert.foss@linaro.org>
15707 M:      Todor Tomov <todor.too@gmail.com>
15708 L:      linux-media@vger.kernel.org
15709 S:      Maintained
15710 F:      Documentation/admin-guide/media/qcom_camss.rst
15711 F:      Documentation/devicetree/bindings/media/*camss*
15712 F:      drivers/media/platform/qcom/camss/
15713
15714 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
15715 M:      Niklas Cassel <nks@flawful.org>
15716 L:      linux-pm@vger.kernel.org
15717 L:      linux-arm-msm@vger.kernel.org
15718 S:      Maintained
15719 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.txt
15720 F:      drivers/soc/qcom/cpr.c
15721
15722 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
15723 M:      Ilia Lin <ilia.lin@kernel.org>
15724 L:      linux-pm@vger.kernel.org
15725 S:      Maintained
15726 F:      Documentation/devicetree/bindings/opp/qcom-nvmem-cpufreq.txt
15727 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
15728
15729 QUALCOMM CRYPTO DRIVERS
15730 M:      Thara Gopinath <thara.gopinath@linaro.org>
15731 L:      linux-crypto@vger.kernel.org
15732 L:      linux-arm-msm@vger.kernel.org
15733 S:      Maintained
15734 F:      drivers/crypto/qce/
15735
15736 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
15737 M:      Timur Tabi <timur@kernel.org>
15738 L:      netdev@vger.kernel.org
15739 S:      Maintained
15740 F:      drivers/net/ethernet/qualcomm/emac/
15741
15742 QUALCOMM ETHQOS ETHERNET DRIVER
15743 M:      Vinod Koul <vkoul@kernel.org>
15744 L:      netdev@vger.kernel.org
15745 S:      Maintained
15746 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
15747 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
15748
15749 QUALCOMM GENERIC INTERFACE I2C DRIVER
15750 M:      Akash Asthana <akashast@codeaurora.org>
15751 M:      Mukesh Savaliya <msavaliy@codeaurora.org>
15752 L:      linux-i2c@vger.kernel.org
15753 L:      linux-arm-msm@vger.kernel.org
15754 S:      Supported
15755 F:      drivers/i2c/busses/i2c-qcom-geni.c
15756
15757 QUALCOMM HEXAGON ARCHITECTURE
15758 M:      Brian Cain <bcain@codeaurora.org>
15759 L:      linux-hexagon@vger.kernel.org
15760 S:      Supported
15761 F:      arch/hexagon/
15762
15763 QUALCOMM HIDMA DRIVER
15764 M:      Sinan Kaya <okaya@kernel.org>
15765 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15766 L:      linux-arm-msm@vger.kernel.org
15767 L:      dmaengine@vger.kernel.org
15768 S:      Supported
15769 F:      drivers/dma/qcom/hidma*
15770
15771 QUALCOMM I2C CCI DRIVER
15772 M:      Loic Poulain <loic.poulain@linaro.org>
15773 M:      Robert Foss <robert.foss@linaro.org>
15774 L:      linux-i2c@vger.kernel.org
15775 L:      linux-arm-msm@vger.kernel.org
15776 S:      Maintained
15777 F:      Documentation/devicetree/bindings/i2c/i2c-qcom-cci.txt
15778 F:      drivers/i2c/busses/i2c-qcom-cci.c
15779
15780 QUALCOMM IOMMU
15781 M:      Rob Clark <robdclark@gmail.com>
15782 L:      iommu@lists.linux-foundation.org
15783 L:      linux-arm-msm@vger.kernel.org
15784 S:      Maintained
15785 F:      drivers/iommu/arm/arm-smmu/qcom_iommu.c
15786
15787 QUALCOMM IPC ROUTER (QRTR) DRIVER
15788 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15789 L:      linux-arm-msm@vger.kernel.org
15790 S:      Maintained
15791 F:      include/trace/events/qrtr.h
15792 F:      include/uapi/linux/qrtr.h
15793 F:      net/qrtr/
15794
15795 QUALCOMM IPCC MAILBOX DRIVER
15796 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15797 L:      linux-arm-msm@vger.kernel.org
15798 S:      Supported
15799 F:      Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
15800 F:      drivers/mailbox/qcom-ipcc.c
15801 F:      include/dt-bindings/mailbox/qcom-ipcc.h
15802
15803 QUALCOMM IPQ4019 USB PHY DRIVER
15804 M:      Robert Marko <robert.marko@sartura.hr>
15805 M:      Luka Perkov <luka.perkov@sartura.hr>
15806 L:      linux-arm-msm@vger.kernel.org
15807 S:      Maintained
15808 F:      Documentation/devicetree/bindings/phy/qcom-usb-ipq4019-phy.yaml
15809 F:      drivers/phy/qualcomm/phy-qcom-ipq4019-usb.c
15810
15811 QUALCOMM IPQ4019 VQMMC REGULATOR DRIVER
15812 M:      Robert Marko <robert.marko@sartura.hr>
15813 M:      Luka Perkov <luka.perkov@sartura.hr>
15814 L:      linux-arm-msm@vger.kernel.org
15815 S:      Maintained
15816 F:      Documentation/devicetree/bindings/regulator/vqmmc-ipq4019-regulator.yaml
15817 F:      drivers/regulator/vqmmc-ipq4019-regulator.c
15818
15819 QUALCOMM NAND CONTROLLER DRIVER
15820 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15821 L:      linux-mtd@lists.infradead.org
15822 L:      linux-arm-msm@vger.kernel.org
15823 S:      Maintained
15824 F:      Documentation/devicetree/bindings/mtd/qcom,nandc.yaml
15825 F:      drivers/mtd/nand/raw/qcom_nandc.c
15826
15827 QUALCOMM RMNET DRIVER
15828 M:      Subash Abhinov Kasiviswanathan <subashab@codeaurora.org>
15829 M:      Sean Tranchetti <stranche@codeaurora.org>
15830 L:      netdev@vger.kernel.org
15831 S:      Maintained
15832 F:      Documentation/networking/device_drivers/cellular/qualcomm/rmnet.rst
15833 F:      drivers/net/ethernet/qualcomm/rmnet/
15834 F:      include/linux/if_rmnet.h
15835
15836 QUALCOMM TSENS THERMAL DRIVER
15837 M:      Amit Kucheria <amitk@kernel.org>
15838 M:      Thara Gopinath <thara.gopinath@linaro.org>
15839 L:      linux-pm@vger.kernel.org
15840 L:      linux-arm-msm@vger.kernel.org
15841 S:      Maintained
15842 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
15843 F:      drivers/thermal/qcom/
15844
15845 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
15846 M:      Stanimir Varbanov <stanimir.varbanov@linaro.org>
15847 L:      linux-media@vger.kernel.org
15848 L:      linux-arm-msm@vger.kernel.org
15849 S:      Maintained
15850 T:      git git://linuxtv.org/media_tree.git
15851 F:      Documentation/devicetree/bindings/media/*venus*
15852 F:      drivers/media/platform/qcom/venus/
15853
15854 QUALCOMM WCN36XX WIRELESS DRIVER
15855 M:      Kalle Valo <kvalo@codeaurora.org>
15856 L:      wcn36xx@lists.infradead.org
15857 S:      Supported
15858 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
15859 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
15860 F:      drivers/net/wireless/ath/wcn36xx/
15861
15862 QUANTENNA QTNFMAC WIRELESS DRIVER
15863 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
15864 R:      Sergey Matyukevich <geomatsi@gmail.com>
15865 L:      linux-wireless@vger.kernel.org
15866 S:      Maintained
15867 F:      drivers/net/wireless/quantenna
15868
15869 RADEON and AMDGPU DRM DRIVERS
15870 M:      Alex Deucher <alexander.deucher@amd.com>
15871 M:      Christian König <christian.koenig@amd.com>
15872 M:      Pan, Xinhui <Xinhui.Pan@amd.com>
15873 L:      amd-gfx@lists.freedesktop.org
15874 S:      Supported
15875 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
15876 B:      https://gitlab.freedesktop.org/drm/amd/-/issues
15877 C:      irc://irc.oftc.net/radeon
15878 F:      drivers/gpu/drm/amd/
15879 F:      drivers/gpu/drm/radeon/
15880 F:      include/uapi/drm/amdgpu_drm.h
15881 F:      include/uapi/drm/radeon_drm.h
15882
15883 RADEON FRAMEBUFFER DISPLAY DRIVER
15884 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
15885 L:      linux-fbdev@vger.kernel.org
15886 S:      Maintained
15887 F:      drivers/video/fbdev/aty/radeon*
15888 F:      include/uapi/linux/radeonfb.h
15889
15890 RADIOSHARK RADIO DRIVER
15891 M:      Hans Verkuil <hverkuil@xs4all.nl>
15892 L:      linux-media@vger.kernel.org
15893 S:      Maintained
15894 T:      git git://linuxtv.org/media_tree.git
15895 F:      drivers/media/radio/radio-shark.c
15896
15897 RADIOSHARK2 RADIO DRIVER
15898 M:      Hans Verkuil <hverkuil@xs4all.nl>
15899 L:      linux-media@vger.kernel.org
15900 S:      Maintained
15901 T:      git git://linuxtv.org/media_tree.git
15902 F:      drivers/media/radio/radio-shark2.c
15903 F:      drivers/media/radio/radio-tea5777.c
15904
15905 RADOS BLOCK DEVICE (RBD)
15906 M:      Ilya Dryomov <idryomov@gmail.com>
15907 R:      Dongsheng Yang <dongsheng.yang@easystack.cn>
15908 L:      ceph-devel@vger.kernel.org
15909 S:      Supported
15910 W:      http://ceph.com/
15911 T:      git git://github.com/ceph/ceph-client.git
15912 F:      Documentation/ABI/testing/sysfs-bus-rbd
15913 F:      drivers/block/rbd.c
15914 F:      drivers/block/rbd_types.h
15915
15916 RAGE128 FRAMEBUFFER DISPLAY DRIVER
15917 M:      Paul Mackerras <paulus@samba.org>
15918 L:      linux-fbdev@vger.kernel.org
15919 S:      Maintained
15920 F:      drivers/video/fbdev/aty/aty128fb.c
15921
15922 RAINSHADOW-CEC DRIVER
15923 M:      Hans Verkuil <hverkuil@xs4all.nl>
15924 L:      linux-media@vger.kernel.org
15925 S:      Maintained
15926 T:      git git://linuxtv.org/media_tree.git
15927 F:      drivers/media/cec/usb/rainshadow/
15928
15929 RALINK MIPS ARCHITECTURE
15930 M:      John Crispin <john@phrozen.org>
15931 L:      linux-mips@vger.kernel.org
15932 S:      Maintained
15933 F:      arch/mips/ralink
15934
15935 RALINK RT2X00 WIRELESS LAN DRIVER
15936 M:      Stanislaw Gruszka <stf_xl@wp.pl>
15937 M:      Helmut Schaa <helmut.schaa@googlemail.com>
15938 L:      linux-wireless@vger.kernel.org
15939 S:      Maintained
15940 F:      drivers/net/wireless/ralink/rt2x00/
15941
15942 RAMDISK RAM BLOCK DEVICE DRIVER
15943 M:      Jens Axboe <axboe@kernel.dk>
15944 S:      Maintained
15945 F:      Documentation/admin-guide/blockdev/ramdisk.rst
15946 F:      drivers/block/brd.c
15947
15948 RANCHU VIRTUAL BOARD FOR MIPS
15949 M:      Miodrag Dinic <miodrag.dinic@mips.com>
15950 L:      linux-mips@vger.kernel.org
15951 S:      Supported
15952 F:      arch/mips/configs/generic/board-ranchu.config
15953 F:      arch/mips/generic/board-ranchu.c
15954
15955 RANDOM NUMBER DRIVER
15956 M:      "Theodore Ts'o" <tytso@mit.edu>
15957 S:      Maintained
15958 F:      drivers/char/random.c
15959
15960 RAPIDIO SUBSYSTEM
15961 M:      Matt Porter <mporter@kernel.crashing.org>
15962 M:      Alexandre Bounine <alex.bou9@gmail.com>
15963 S:      Maintained
15964 F:      drivers/rapidio/
15965
15966 RAS INFRASTRUCTURE
15967 M:      Tony Luck <tony.luck@intel.com>
15968 M:      Borislav Petkov <bp@alien8.de>
15969 L:      linux-edac@vger.kernel.org
15970 S:      Maintained
15971 F:      Documentation/admin-guide/ras.rst
15972 F:      drivers/ras/
15973 F:      include/linux/ras.h
15974 F:      include/ras/ras_event.h
15975
15976 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
15977 L:      linux-wireless@vger.kernel.org
15978 S:      Orphan
15979 F:      drivers/net/wireless/ray*
15980
15981 RC-CORE / LIRC FRAMEWORK
15982 M:      Sean Young <sean@mess.org>
15983 L:      linux-media@vger.kernel.org
15984 S:      Maintained
15985 W:      http://linuxtv.org
15986 T:      git git://linuxtv.org/media_tree.git
15987 F:      Documentation/driver-api/media/rc-core.rst
15988 F:      Documentation/userspace-api/media/rc/
15989 F:      drivers/media/rc/
15990 F:      include/media/rc-map.h
15991 F:      include/media/rc-core.h
15992 F:      include/uapi/linux/lirc.h
15993
15994 RCMM REMOTE CONTROLS DECODER
15995 M:      Patrick Lerda <patrick9876@free.fr>
15996 S:      Maintained
15997 F:      drivers/media/rc/ir-rcmm-decoder.c
15998
15999 RCUTORTURE TEST FRAMEWORK
16000 M:      "Paul E. McKenney" <paulmck@kernel.org>
16001 M:      Josh Triplett <josh@joshtriplett.org>
16002 R:      Steven Rostedt <rostedt@goodmis.org>
16003 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
16004 R:      Lai Jiangshan <jiangshanlai@gmail.com>
16005 L:      rcu@vger.kernel.org
16006 S:      Supported
16007 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
16008 F:      tools/testing/selftests/rcutorture
16009
16010 RDACM20 Camera Sensor
16011 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
16012 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
16013 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
16014 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
16015 L:      linux-media@vger.kernel.org
16016 S:      Maintained
16017 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
16018 F:      drivers/media/i2c/max9271.c
16019 F:      drivers/media/i2c/max9271.h
16020 F:      drivers/media/i2c/rdacm20.c
16021
16022 RDACM21 Camera Sensor
16023 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
16024 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
16025 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
16026 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
16027 L:      linux-media@vger.kernel.org
16028 S:      Maintained
16029 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
16030 F:      drivers/media/i2c/max9271.c
16031 F:      drivers/media/i2c/max9271.h
16032 F:      drivers/media/i2c/rdacm21.c
16033
16034 RDC R-321X SoC
16035 M:      Florian Fainelli <florian@openwrt.org>
16036 S:      Maintained
16037
16038 RDC R6040 FAST ETHERNET DRIVER
16039 M:      Florian Fainelli <f.fainelli@gmail.com>
16040 L:      netdev@vger.kernel.org
16041 S:      Maintained
16042 F:      drivers/net/ethernet/rdc/r6040.c
16043
16044 RDMAVT - RDMA verbs software
16045 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
16046 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
16047 L:      linux-rdma@vger.kernel.org
16048 S:      Supported
16049 F:      drivers/infiniband/sw/rdmavt
16050
16051 RDS - RELIABLE DATAGRAM SOCKETS
16052 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
16053 L:      netdev@vger.kernel.org
16054 L:      linux-rdma@vger.kernel.org
16055 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
16056 S:      Supported
16057 W:      https://oss.oracle.com/projects/rds/
16058 F:      Documentation/networking/rds.rst
16059 F:      net/rds/
16060
16061 RDT - RESOURCE ALLOCATION
16062 M:      Fenghua Yu <fenghua.yu@intel.com>
16063 M:      Reinette Chatre <reinette.chatre@intel.com>
16064 L:      linux-kernel@vger.kernel.org
16065 S:      Supported
16066 F:      Documentation/x86/resctrl*
16067 F:      arch/x86/include/asm/resctrl.h
16068 F:      arch/x86/kernel/cpu/resctrl/
16069 F:      tools/testing/selftests/resctrl/
16070
16071 READ-COPY UPDATE (RCU)
16072 M:      "Paul E. McKenney" <paulmck@kernel.org>
16073 M:      Josh Triplett <josh@joshtriplett.org>
16074 R:      Steven Rostedt <rostedt@goodmis.org>
16075 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
16076 R:      Lai Jiangshan <jiangshanlai@gmail.com>
16077 R:      Joel Fernandes <joel@joelfernandes.org>
16078 L:      rcu@vger.kernel.org
16079 S:      Supported
16080 W:      http://www.rdrop.com/users/paulmck/RCU/
16081 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
16082 F:      Documentation/RCU/
16083 F:      include/linux/rcu*
16084 F:      kernel/rcu/
16085 X:      Documentation/RCU/torture.rst
16086 X:      include/linux/srcu*.h
16087 X:      kernel/rcu/srcu*.c
16088
16089 REAL TIME CLOCK (RTC) SUBSYSTEM
16090 M:      Alessandro Zummo <a.zummo@towertech.it>
16091 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
16092 L:      linux-rtc@vger.kernel.org
16093 S:      Maintained
16094 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
16095 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
16096 F:      Documentation/admin-guide/rtc.rst
16097 F:      Documentation/devicetree/bindings/rtc/
16098 F:      drivers/rtc/
16099 F:      include/linux/platform_data/rtc-*
16100 F:      include/linux/rtc.h
16101 F:      include/linux/rtc/
16102 F:      include/uapi/linux/rtc.h
16103 F:      tools/testing/selftests/rtc/
16104
16105 REALTEK AUDIO CODECS
16106 M:      Oder Chiou <oder_chiou@realtek.com>
16107 S:      Maintained
16108 F:      include/sound/rt*.h
16109 F:      sound/soc/codecs/rt*
16110
16111 REALTEK RTL83xx SMI DSA ROUTER CHIPS
16112 M:      Linus Walleij <linus.walleij@linaro.org>
16113 S:      Maintained
16114 F:      Documentation/devicetree/bindings/net/dsa/realtek-smi.txt
16115 F:      drivers/net/dsa/realtek-smi*
16116 F:      drivers/net/dsa/rtl83*
16117
16118 REALTEK WIRELESS DRIVER (rtlwifi family)
16119 M:      Ping-Ke Shih <pkshih@realtek.com>
16120 L:      linux-wireless@vger.kernel.org
16121 S:      Maintained
16122 W:      https://wireless.wiki.kernel.org/
16123 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
16124 F:      drivers/net/wireless/realtek/rtlwifi/
16125
16126 REALTEK WIRELESS DRIVER (rtw88)
16127 M:      Yan-Hsuan Chuang <tony0620emma@gmail.com>
16128 L:      linux-wireless@vger.kernel.org
16129 S:      Maintained
16130 F:      drivers/net/wireless/realtek/rtw88/
16131
16132 REALTEK WIRELESS DRIVER (rtw89)
16133 M:      Ping-Ke Shih <pkshih@realtek.com>
16134 L:      linux-wireless@vger.kernel.org
16135 S:      Maintained
16136 F:      drivers/net/wireless/realtek/rtw89/
16137
16138 REDPINE WIRELESS DRIVER
16139 M:      Amitkumar Karwar <amitkarwar@gmail.com>
16140 M:      Siva Rebbagondla <siva8118@gmail.com>
16141 L:      linux-wireless@vger.kernel.org
16142 S:      Maintained
16143 F:      drivers/net/wireless/rsi/
16144
16145 REGISTER MAP ABSTRACTION
16146 M:      Mark Brown <broonie@kernel.org>
16147 L:      linux-kernel@vger.kernel.org
16148 S:      Supported
16149 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
16150 F:      Documentation/devicetree/bindings/regmap/
16151 F:      drivers/base/regmap/
16152 F:      include/linux/regmap.h
16153
16154 REISERFS FILE SYSTEM
16155 L:      reiserfs-devel@vger.kernel.org
16156 S:      Supported
16157 F:      fs/reiserfs/
16158
16159 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
16160 M:      Ohad Ben-Cohen <ohad@wizery.com>
16161 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
16162 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
16163 L:      linux-remoteproc@vger.kernel.org
16164 S:      Maintained
16165 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux.git rproc-next
16166 F:      Documentation/ABI/testing/sysfs-class-remoteproc
16167 F:      Documentation/devicetree/bindings/remoteproc/
16168 F:      Documentation/staging/remoteproc.rst
16169 F:      drivers/remoteproc/
16170 F:      include/linux/remoteproc.h
16171 F:      include/linux/remoteproc/
16172
16173 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
16174 M:      Ohad Ben-Cohen <ohad@wizery.com>
16175 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
16176 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
16177 L:      linux-remoteproc@vger.kernel.org
16178 S:      Maintained
16179 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux.git rpmsg-next
16180 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
16181 F:      Documentation/staging/rpmsg.rst
16182 F:      drivers/rpmsg/
16183 F:      include/linux/rpmsg.h
16184 F:      include/linux/rpmsg/
16185 F:      include/uapi/linux/rpmsg.h
16186 F:      samples/rpmsg/
16187
16188 REMOTE PROCESSOR MESSAGING (RPMSG) WWAN CONTROL DRIVER
16189 M:      Stephan Gerhold <stephan@gerhold.net>
16190 L:      netdev@vger.kernel.org
16191 L:      linux-remoteproc@vger.kernel.org
16192 S:      Maintained
16193 F:      drivers/net/wwan/rpmsg_wwan_ctrl.c
16194
16195 RENESAS CLOCK DRIVERS
16196 M:      Geert Uytterhoeven <geert+renesas@glider.be>
16197 L:      linux-renesas-soc@vger.kernel.org
16198 S:      Supported
16199 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-clk
16200 F:      Documentation/devicetree/bindings/clock/renesas,*
16201 F:      drivers/clk/renesas/
16202
16203 RENESAS EMEV2 I2C DRIVER
16204 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
16205 L:      linux-renesas-soc@vger.kernel.org
16206 S:      Supported
16207 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.yaml
16208 F:      drivers/i2c/busses/i2c-emev2.c
16209
16210 RENESAS ETHERNET DRIVERS
16211 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
16212 L:      netdev@vger.kernel.org
16213 L:      linux-renesas-soc@vger.kernel.org
16214 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
16215 F:      drivers/net/ethernet/renesas/
16216 F:      include/linux/sh_eth.h
16217
16218 RENESAS R-CAR GYROADC DRIVER
16219 M:      Marek Vasut <marek.vasut@gmail.com>
16220 L:      linux-iio@vger.kernel.org
16221 S:      Supported
16222 F:      Documentation/devicetree/bindings/iio/adc/renesas,rcar-gyroadc.yaml
16223 F:      drivers/iio/adc/rcar-gyroadc.c
16224
16225 RENESAS R-CAR I2C DRIVERS
16226 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
16227 L:      linux-renesas-soc@vger.kernel.org
16228 S:      Supported
16229 F:      Documentation/devicetree/bindings/i2c/renesas,rcar-i2c.yaml
16230 F:      Documentation/devicetree/bindings/i2c/renesas,rmobile-iic.yaml
16231 F:      drivers/i2c/busses/i2c-rcar.c
16232 F:      drivers/i2c/busses/i2c-sh_mobile.c
16233
16234 RENESAS R-CAR THERMAL DRIVERS
16235 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
16236 L:      linux-renesas-soc@vger.kernel.org
16237 S:      Supported
16238 F:      Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.yaml
16239 F:      Documentation/devicetree/bindings/thermal/rcar-thermal.yaml
16240 F:      drivers/thermal/rcar_gen3_thermal.c
16241 F:      drivers/thermal/rcar_thermal.c
16242
16243 RENESAS RIIC DRIVER
16244 M:      Chris Brandt <chris.brandt@renesas.com>
16245 L:      linux-renesas-soc@vger.kernel.org
16246 S:      Supported
16247 F:      Documentation/devicetree/bindings/i2c/renesas,riic.yaml
16248 F:      drivers/i2c/busses/i2c-riic.c
16249
16250 RENESAS USB PHY DRIVER
16251 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
16252 L:      linux-renesas-soc@vger.kernel.org
16253 S:      Maintained
16254 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
16255
16256 RENESAS RZ/G2L A/D DRIVER
16257 M:      Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
16258 L:      linux-iio@vger.kernel.org
16259 L:      linux-renesas-soc@vger.kernel.org
16260 S:      Supported
16261 F:      Documentation/devicetree/bindings/iio/adc/renesas,rzg2l-adc.yaml
16262 F:      drivers/iio/adc/rzg2l_adc.c
16263
16264 RESET CONTROLLER FRAMEWORK
16265 M:      Philipp Zabel <p.zabel@pengutronix.de>
16266 S:      Maintained
16267 T:      git git://git.pengutronix.de/git/pza/linux
16268 F:      Documentation/devicetree/bindings/reset/
16269 F:      Documentation/driver-api/reset.rst
16270 F:      drivers/reset/
16271 F:      include/dt-bindings/reset/
16272 F:      include/linux/reset-controller.h
16273 F:      include/linux/reset.h
16274 F:      include/linux/reset/
16275 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
16276
16277 RESTARTABLE SEQUENCES SUPPORT
16278 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
16279 M:      Peter Zijlstra <peterz@infradead.org>
16280 M:      "Paul E. McKenney" <paulmck@kernel.org>
16281 M:      Boqun Feng <boqun.feng@gmail.com>
16282 L:      linux-kernel@vger.kernel.org
16283 S:      Supported
16284 F:      include/trace/events/rseq.h
16285 F:      include/uapi/linux/rseq.h
16286 F:      kernel/rseq.c
16287 F:      tools/testing/selftests/rseq/
16288
16289 RFKILL
16290 M:      Johannes Berg <johannes@sipsolutions.net>
16291 L:      linux-wireless@vger.kernel.org
16292 S:      Maintained
16293 W:      https://wireless.wiki.kernel.org/
16294 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
16295 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
16296 F:      Documentation/ABI/stable/sysfs-class-rfkill
16297 F:      Documentation/driver-api/rfkill.rst
16298 F:      include/linux/rfkill.h
16299 F:      include/uapi/linux/rfkill.h
16300 F:      net/rfkill/
16301
16302 RHASHTABLE
16303 M:      Thomas Graf <tgraf@suug.ch>
16304 M:      Herbert Xu <herbert@gondor.apana.org.au>
16305 L:      netdev@vger.kernel.org
16306 S:      Maintained
16307 F:      include/linux/rhashtable-types.h
16308 F:      include/linux/rhashtable.h
16309 F:      lib/rhashtable.c
16310 F:      lib/test_rhashtable.c
16311
16312 RICOH R5C592 MEMORYSTICK DRIVER
16313 M:      Maxim Levitsky <maximlevitsky@gmail.com>
16314 S:      Maintained
16315 F:      drivers/memstick/host/r592.*
16316
16317 RICOH SMARTMEDIA/XD DRIVER
16318 M:      Maxim Levitsky <maximlevitsky@gmail.com>
16319 S:      Maintained
16320 F:      drivers/mtd/nand/raw/r852.c
16321 F:      drivers/mtd/nand/raw/r852.h
16322
16323 RISC-V ARCHITECTURE
16324 M:      Paul Walmsley <paul.walmsley@sifive.com>
16325 M:      Palmer Dabbelt <palmer@dabbelt.com>
16326 M:      Albert Ou <aou@eecs.berkeley.edu>
16327 L:      linux-riscv@lists.infradead.org
16328 S:      Supported
16329 P:      Documentation/riscv/patch-acceptance.rst
16330 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
16331 F:      arch/riscv/
16332 N:      riscv
16333 K:      riscv
16334
16335 RISC-V/MICROCHIP POLARFIRE SOC SUPPORT
16336 M:      Lewis Hanly <lewis.hanly@microchip.com>
16337 L:      linux-riscv@lists.infradead.org
16338 S:      Supported
16339 F:      drivers/mailbox/mailbox-mpfs.c
16340 F:      drivers/soc/microchip/
16341 F:      include/soc/microchip/mpfs.h
16342
16343 RNBD BLOCK DRIVERS
16344 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
16345 M:      Jack Wang <jinpu.wang@ionos.com>
16346 L:      linux-block@vger.kernel.org
16347 S:      Maintained
16348 F:      drivers/block/rnbd/
16349
16350 ROCCAT DRIVERS
16351 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
16352 S:      Maintained
16353 W:      http://sourceforge.net/projects/roccat/
16354 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
16355 F:      drivers/hid/hid-roccat*
16356 F:      include/linux/hid-roccat*
16357
16358 ROCKCHIP I2S TDM DRIVER
16359 M:      Nicolas Frattaroli <frattaroli.nicolas@gmail.com>
16360 L:      linux-rockchip@lists.infradead.org
16361 S:      Maintained
16362 F:      Documentation/devicetree/bindings/sound/rockchip,i2s-tdm.yaml
16363 F:      sound/soc/rockchip/rockchip_i2s_tdm.*
16364
16365 ROCKCHIP ISP V1 DRIVER
16366 M:      Helen Koike <helen.koike@collabora.com>
16367 M:      Dafna Hirschfeld <dafna.hirschfeld@collabora.com>
16368 L:      linux-media@vger.kernel.org
16369 L:      linux-rockchip@lists.infradead.org
16370 S:      Maintained
16371 F:      Documentation/admin-guide/media/rkisp1.rst
16372 F:      Documentation/devicetree/bindings/media/rockchip-isp1.yaml
16373 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-rkisp1.rst
16374 F:      drivers/media/platform/rockchip/rkisp1
16375 F:      include/uapi/linux/rkisp1-config.h
16376
16377 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
16378 M:      Jacob Chen <jacob-chen@iotwrt.com>
16379 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
16380 L:      linux-media@vger.kernel.org
16381 L:      linux-rockchip@lists.infradead.org
16382 S:      Maintained
16383 F:      Documentation/devicetree/bindings/media/rockchip-rga.yaml
16384 F:      drivers/media/platform/rockchip/rga/
16385
16386 ROCKCHIP VIDEO DECODER DRIVER
16387 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
16388 L:      linux-media@vger.kernel.org
16389 L:      linux-rockchip@lists.infradead.org
16390 S:      Maintained
16391 F:      Documentation/devicetree/bindings/media/rockchip,vdec.yaml
16392 F:      drivers/staging/media/rkvdec/
16393
16394 ROCKER DRIVER
16395 M:      Jiri Pirko <jiri@resnulli.us>
16396 L:      netdev@vger.kernel.org
16397 S:      Supported
16398 F:      drivers/net/ethernet/rocker/
16399
16400 ROCKETPORT EXPRESS/INFINITY DRIVER
16401 M:      Kevin Cernekee <cernekee@gmail.com>
16402 L:      linux-serial@vger.kernel.org
16403 S:      Odd Fixes
16404 F:      drivers/tty/serial/rp2.*
16405
16406 ROHM BD99954 CHARGER IC
16407 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
16408 L:      linux-power@fi.rohmeurope.com
16409 S:      Supported
16410 F:      drivers/power/supply/bd99954-charger.c
16411 F:      drivers/power/supply/bd99954-charger.h
16412
16413 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
16414 M:      Tomasz Duszynski <tduszyns@gmail.com>
16415 S:      Maintained
16416 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
16417 F:      drivers/iio/light/bh1750.c
16418
16419 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
16420 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
16421 L:      linux-kernel@vger.kernel.org
16422 L:      linux-renesas-soc@vger.kernel.org
16423 S:      Supported
16424 F:      Documentation/devicetree/bindings/mfd/bd9571mwv.txt
16425 F:      drivers/gpio/gpio-bd9571mwv.c
16426 F:      drivers/mfd/bd9571mwv.c
16427 F:      drivers/regulator/bd9571mwv-regulator.c
16428 F:      include/linux/mfd/bd9571mwv.h
16429
16430 ROHM POWER MANAGEMENT IC DEVICE DRIVERS
16431 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
16432 L:      linux-power@fi.rohmeurope.com
16433 S:      Supported
16434 F:      Documentation/devicetree/bindings/mfd/rohm,bd70528-pmic.txt
16435 F:      Documentation/devicetree/bindings/regulator/rohm,bd70528-regulator.txt
16436 F:      drivers/clk/clk-bd718x7.c
16437 F:      drivers/gpio/gpio-bd70528.c
16438 F:      drivers/gpio/gpio-bd71815.c
16439 F:      drivers/gpio/gpio-bd71828.c
16440 F:      drivers/mfd/rohm-bd70528.c
16441 F:      drivers/mfd/rohm-bd71828.c
16442 F:      drivers/mfd/rohm-bd718x7.c
16443 F:      drivers/mfd/rohm-bd9576.c
16444 F:      drivers/power/supply/bd70528-charger.c
16445 F:      drivers/regulator/bd70528-regulator.c
16446 F:      drivers/regulator/bd71815-regulator.c
16447 F:      drivers/regulator/bd71828-regulator.c
16448 F:      drivers/regulator/bd718x7-regulator.c
16449 F:      drivers/regulator/bd9576-regulator.c
16450 F:      drivers/regulator/rohm-regulator.c
16451 F:      drivers/rtc/rtc-bd70528.c
16452 F:      drivers/watchdog/bd70528_wdt.c
16453 F:      drivers/watchdog/bd9576_wdt.c
16454 F:      include/linux/mfd/rohm-bd70528.h
16455 F:      include/linux/mfd/rohm-bd71815.h
16456 F:      include/linux/mfd/rohm-bd71828.h
16457 F:      include/linux/mfd/rohm-bd718x7.h
16458 F:      include/linux/mfd/rohm-bd957x.h
16459 F:      include/linux/mfd/rohm-generic.h
16460 F:      include/linux/mfd/rohm-shared.h
16461
16462 ROSE NETWORK LAYER
16463 M:      Ralf Baechle <ralf@linux-mips.org>
16464 L:      linux-hams@vger.kernel.org
16465 S:      Maintained
16466 W:      http://www.linux-ax25.org/
16467 F:      include/net/rose.h
16468 F:      include/uapi/linux/rose.h
16469 F:      net/rose/
16470
16471 ROTATION DRIVER FOR ALLWINNER A83T
16472 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
16473 L:      linux-media@vger.kernel.org
16474 S:      Maintained
16475 T:      git git://linuxtv.org/media_tree.git
16476 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
16477 F:      drivers/media/platform/sunxi/sun8i-rotate/
16478
16479 RTL2830 MEDIA DRIVER
16480 M:      Antti Palosaari <crope@iki.fi>
16481 L:      linux-media@vger.kernel.org
16482 S:      Maintained
16483 W:      https://linuxtv.org
16484 W:      http://palosaari.fi/linux/
16485 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16486 T:      git git://linuxtv.org/anttip/media_tree.git
16487 F:      drivers/media/dvb-frontends/rtl2830*
16488
16489 RTL2832 MEDIA DRIVER
16490 M:      Antti Palosaari <crope@iki.fi>
16491 L:      linux-media@vger.kernel.org
16492 S:      Maintained
16493 W:      https://linuxtv.org
16494 W:      http://palosaari.fi/linux/
16495 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16496 T:      git git://linuxtv.org/anttip/media_tree.git
16497 F:      drivers/media/dvb-frontends/rtl2832*
16498
16499 RTL2832_SDR MEDIA DRIVER
16500 M:      Antti Palosaari <crope@iki.fi>
16501 L:      linux-media@vger.kernel.org
16502 S:      Maintained
16503 W:      https://linuxtv.org
16504 W:      http://palosaari.fi/linux/
16505 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16506 T:      git git://linuxtv.org/anttip/media_tree.git
16507 F:      drivers/media/dvb-frontends/rtl2832_sdr*
16508
16509 RTL8180 WIRELESS DRIVER
16510 L:      linux-wireless@vger.kernel.org
16511 S:      Orphan
16512 W:      https://wireless.wiki.kernel.org/
16513 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
16514 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
16515
16516 RTL8187 WIRELESS DRIVER
16517 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
16518 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
16519 M:      Larry Finger <Larry.Finger@lwfinger.net>
16520 L:      linux-wireless@vger.kernel.org
16521 S:      Maintained
16522 W:      https://wireless.wiki.kernel.org/
16523 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
16524 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
16525
16526 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
16527 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
16528 L:      linux-wireless@vger.kernel.org
16529 S:      Maintained
16530 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
16531 F:      drivers/net/wireless/realtek/rtl8xxxu/
16532
16533 RTRS TRANSPORT DRIVERS
16534 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
16535 M:      Jack Wang <jinpu.wang@ionos.com>
16536 L:      linux-rdma@vger.kernel.org
16537 S:      Maintained
16538 F:      drivers/infiniband/ulp/rtrs/
16539
16540 RXRPC SOCKETS (AF_RXRPC)
16541 M:      David Howells <dhowells@redhat.com>
16542 M:      Marc Dionne <marc.dionne@auristor.com>
16543 L:      linux-afs@lists.infradead.org
16544 S:      Supported
16545 W:      https://www.infradead.org/~dhowells/kafs/
16546 F:      Documentation/networking/rxrpc.rst
16547 F:      include/keys/rxrpc-type.h
16548 F:      include/net/af_rxrpc.h
16549 F:      include/trace/events/rxrpc.h
16550 F:      include/uapi/linux/rxrpc.h
16551 F:      net/rxrpc/
16552
16553 S3 SAVAGE FRAMEBUFFER DRIVER
16554 M:      Antonino Daplas <adaplas@gmail.com>
16555 L:      linux-fbdev@vger.kernel.org
16556 S:      Maintained
16557 F:      drivers/video/fbdev/savage/
16558
16559 S390
16560 M:      Heiko Carstens <hca@linux.ibm.com>
16561 M:      Vasily Gorbik <gor@linux.ibm.com>
16562 M:      Christian Borntraeger <borntraeger@de.ibm.com>
16563 R:      Alexander Gordeev <agordeev@linux.ibm.com>
16564 L:      linux-s390@vger.kernel.org
16565 S:      Supported
16566 W:      http://www.ibm.com/developerworks/linux/linux390/
16567 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
16568 F:      Documentation/driver-api/s390-drivers.rst
16569 F:      Documentation/s390/
16570 F:      arch/s390/
16571 F:      drivers/s390/
16572
16573 S390 COMMON I/O LAYER
16574 M:      Vineeth Vijayan <vneethv@linux.ibm.com>
16575 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
16576 L:      linux-s390@vger.kernel.org
16577 S:      Supported
16578 W:      http://www.ibm.com/developerworks/linux/linux390/
16579 F:      drivers/s390/cio/
16580
16581 S390 DASD DRIVER
16582 M:      Stefan Haberland <sth@linux.ibm.com>
16583 M:      Jan Hoeppner <hoeppner@linux.ibm.com>
16584 L:      linux-s390@vger.kernel.org
16585 S:      Supported
16586 W:      http://www.ibm.com/developerworks/linux/linux390/
16587 F:      block/partitions/ibm.c
16588 F:      drivers/s390/block/dasd*
16589 F:      include/linux/dasd_mod.h
16590
16591 S390 IOMMU (PCI)
16592 M:      Matthew Rosato <mjrosato@linux.ibm.com>
16593 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
16594 L:      linux-s390@vger.kernel.org
16595 S:      Supported
16596 W:      http://www.ibm.com/developerworks/linux/linux390/
16597 F:      drivers/iommu/s390-iommu.c
16598
16599 S390 IUCV NETWORK LAYER
16600 M:      Julian Wiedmann <jwi@linux.ibm.com>
16601 M:      Karsten Graul <kgraul@linux.ibm.com>
16602 L:      linux-s390@vger.kernel.org
16603 L:      netdev@vger.kernel.org
16604 S:      Supported
16605 W:      http://www.ibm.com/developerworks/linux/linux390/
16606 F:      drivers/s390/net/*iucv*
16607 F:      include/net/iucv/
16608 F:      net/iucv/
16609
16610 S390 NETWORK DRIVERS
16611 M:      Julian Wiedmann <jwi@linux.ibm.com>
16612 M:      Karsten Graul <kgraul@linux.ibm.com>
16613 L:      linux-s390@vger.kernel.org
16614 L:      netdev@vger.kernel.org
16615 S:      Supported
16616 W:      http://www.ibm.com/developerworks/linux/linux390/
16617 F:      drivers/s390/net/
16618
16619 S390 PCI SUBSYSTEM
16620 M:      Niklas Schnelle <schnelle@linux.ibm.com>
16621 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
16622 L:      linux-s390@vger.kernel.org
16623 S:      Supported
16624 W:      http://www.ibm.com/developerworks/linux/linux390/
16625 F:      arch/s390/pci/
16626 F:      drivers/pci/hotplug/s390_pci_hpc.c
16627 F:      Documentation/s390/pci.rst
16628
16629 S390 VFIO AP DRIVER
16630 M:      Tony Krowiak <akrowiak@linux.ibm.com>
16631 M:      Halil Pasic <pasic@linux.ibm.com>
16632 M:      Jason Herne <jjherne@linux.ibm.com>
16633 L:      linux-s390@vger.kernel.org
16634 S:      Supported
16635 W:      http://www.ibm.com/developerworks/linux/linux390/
16636 F:      Documentation/s390/vfio-ap.rst
16637 F:      drivers/s390/crypto/vfio_ap_drv.c
16638 F:      drivers/s390/crypto/vfio_ap_ops.c
16639 F:      drivers/s390/crypto/vfio_ap_private.h
16640
16641 S390 VFIO-CCW DRIVER
16642 M:      Eric Farman <farman@linux.ibm.com>
16643 M:      Matthew Rosato <mjrosato@linux.ibm.com>
16644 R:      Halil Pasic <pasic@linux.ibm.com>
16645 L:      linux-s390@vger.kernel.org
16646 L:      kvm@vger.kernel.org
16647 S:      Supported
16648 F:      Documentation/s390/vfio-ccw.rst
16649 F:      drivers/s390/cio/vfio_ccw*
16650 F:      include/uapi/linux/vfio_ccw.h
16651
16652 S390 VFIO-PCI DRIVER
16653 M:      Matthew Rosato <mjrosato@linux.ibm.com>
16654 M:      Eric Farman <farman@linux.ibm.com>
16655 L:      linux-s390@vger.kernel.org
16656 L:      kvm@vger.kernel.org
16657 S:      Supported
16658 F:      drivers/vfio/pci/vfio_pci_zdev.c
16659 F:      include/uapi/linux/vfio_zdev.h
16660
16661 S390 ZCRYPT DRIVER
16662 M:      Harald Freudenberger <freude@linux.ibm.com>
16663 L:      linux-s390@vger.kernel.org
16664 S:      Supported
16665 W:      http://www.ibm.com/developerworks/linux/linux390/
16666 F:      drivers/s390/crypto/
16667
16668 S390 ZFCP DRIVER
16669 M:      Steffen Maier <maier@linux.ibm.com>
16670 M:      Benjamin Block <bblock@linux.ibm.com>
16671 L:      linux-s390@vger.kernel.org
16672 S:      Supported
16673 W:      http://www.ibm.com/developerworks/linux/linux390/
16674 F:      drivers/s390/scsi/zfcp_*
16675
16676 S3C ADC BATTERY DRIVER
16677 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16678 L:      linux-samsung-soc@vger.kernel.org
16679 S:      Odd Fixes
16680 F:      drivers/power/supply/s3c_adc_battery.c
16681 F:      include/linux/s3c_adc_battery.h
16682
16683 S3C24XX SD/MMC Driver
16684 M:      Ben Dooks <ben-linux@fluff.org>
16685 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16686 S:      Supported
16687 F:      drivers/mmc/host/s3cmci.*
16688
16689 SAA6588 RDS RECEIVER DRIVER
16690 M:      Hans Verkuil <hverkuil@xs4all.nl>
16691 L:      linux-media@vger.kernel.org
16692 S:      Odd Fixes
16693 W:      https://linuxtv.org
16694 T:      git git://linuxtv.org/media_tree.git
16695 F:      drivers/media/i2c/saa6588*
16696
16697 SAA7134 VIDEO4LINUX DRIVER
16698 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16699 L:      linux-media@vger.kernel.org
16700 S:      Odd fixes
16701 W:      https://linuxtv.org
16702 T:      git git://linuxtv.org/media_tree.git
16703 F:      Documentation/driver-api/media/drivers/saa7134*
16704 F:      drivers/media/pci/saa7134/
16705
16706 SAA7146 VIDEO4LINUX-2 DRIVER
16707 M:      Hans Verkuil <hverkuil@xs4all.nl>
16708 L:      linux-media@vger.kernel.org
16709 S:      Maintained
16710 T:      git git://linuxtv.org/media_tree.git
16711 F:      drivers/media/common/saa7146/
16712 F:      drivers/media/pci/saa7146/
16713 F:      include/media/drv-intf/saa7146*
16714
16715 SAFESETID SECURITY MODULE
16716 M:      Micah Morton <mortonm@chromium.org>
16717 S:      Supported
16718 F:      Documentation/admin-guide/LSM/SafeSetID.rst
16719 F:      security/safesetid/
16720
16721 SAMSUNG AUDIO (ASoC) DRIVERS
16722 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16723 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16724 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16725 S:      Supported
16726 F:      Documentation/devicetree/bindings/sound/samsung*
16727 F:      sound/soc/samsung/
16728
16729 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
16730 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16731 L:      linux-crypto@vger.kernel.org
16732 L:      linux-samsung-soc@vger.kernel.org
16733 S:      Maintained
16734 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
16735 F:      drivers/crypto/exynos-rng.c
16736
16737 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
16738 M:      Łukasz Stelmach <l.stelmach@samsung.com>
16739 L:      linux-samsung-soc@vger.kernel.org
16740 S:      Maintained
16741 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.yaml
16742 F:      drivers/char/hw_random/exynos-trng.c
16743
16744 SAMSUNG FRAMEBUFFER DRIVER
16745 M:      Jingoo Han <jingoohan1@gmail.com>
16746 L:      linux-fbdev@vger.kernel.org
16747 S:      Maintained
16748 F:      drivers/video/fbdev/s3c-fb.c
16749
16750 SAMSUNG INTERCONNECT DRIVERS
16751 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16752 M:      Artur Świgoń <a.swigon@samsung.com>
16753 L:      linux-pm@vger.kernel.org
16754 L:      linux-samsung-soc@vger.kernel.org
16755 S:      Supported
16756 F:      drivers/interconnect/samsung/
16757
16758 SAMSUNG LAPTOP DRIVER
16759 M:      Corentin Chary <corentin.chary@gmail.com>
16760 L:      platform-driver-x86@vger.kernel.org
16761 S:      Maintained
16762 F:      drivers/platform/x86/samsung-laptop.c
16763
16764 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
16765 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16766 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
16767 L:      linux-kernel@vger.kernel.org
16768 L:      linux-samsung-soc@vger.kernel.org
16769 S:      Supported
16770 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.yaml
16771 F:      Documentation/devicetree/bindings/mfd/samsung,s2m*.yaml
16772 F:      Documentation/devicetree/bindings/mfd/samsung,s5m*.yaml
16773 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.yaml
16774 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.yaml
16775 F:      drivers/clk/clk-s2mps11.c
16776 F:      drivers/mfd/sec*.c
16777 F:      drivers/regulator/s2m*.c
16778 F:      drivers/regulator/s5m*.c
16779 F:      drivers/rtc/rtc-s5m.c
16780 F:      include/linux/mfd/samsung/
16781
16782 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
16783 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
16784 L:      linux-media@vger.kernel.org
16785 L:      linux-samsung-soc@vger.kernel.org
16786 S:      Maintained
16787 F:      drivers/media/platform/s3c-camif/
16788 F:      include/media/drv-intf/s3c_camif.h
16789
16790 SAMSUNG S3FWRN5 NFC DRIVER
16791 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16792 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
16793 L:      linux-nfc@lists.01.org (subscribers-only)
16794 S:      Maintained
16795 F:      Documentation/devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml
16796 F:      drivers/nfc/s3fwrn5
16797
16798 SAMSUNG S5C73M3 CAMERA DRIVER
16799 M:      Andrzej Hajda <a.hajda@samsung.com>
16800 L:      linux-media@vger.kernel.org
16801 S:      Supported
16802 F:      drivers/media/i2c/s5c73m3/*
16803
16804 SAMSUNG S5K5BAF CAMERA DRIVER
16805 M:      Andrzej Hajda <a.hajda@samsung.com>
16806 L:      linux-media@vger.kernel.org
16807 S:      Supported
16808 F:      drivers/media/i2c/s5k5baf.c
16809
16810 SAMSUNG S5P Security SubSystem (SSS) DRIVER
16811 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16812 M:      Vladimir Zapolskiy <vz@mleia.com>
16813 L:      linux-crypto@vger.kernel.org
16814 L:      linux-samsung-soc@vger.kernel.org
16815 S:      Maintained
16816 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
16817 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
16818 F:      drivers/crypto/s5p-sss.c
16819
16820 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
16821 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16822 L:      linux-media@vger.kernel.org
16823 S:      Supported
16824 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
16825 F:      drivers/media/platform/exynos4-is/
16826
16827 SAMSUNG SOC CLOCK DRIVERS
16828 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16829 M:      Tomasz Figa <tomasz.figa@gmail.com>
16830 M:      Chanwoo Choi <cw00.choi@samsung.com>
16831 L:      linux-samsung-soc@vger.kernel.org
16832 S:      Supported
16833 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
16834 F:      Documentation/devicetree/bindings/clock/exynos*.txt
16835 F:      Documentation/devicetree/bindings/clock/samsung,*.yaml
16836 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
16837 F:      Documentation/devicetree/bindings/clock/samsung,s5p*
16838 F:      drivers/clk/samsung/
16839 F:      include/dt-bindings/clock/exynos*.h
16840 F:      include/dt-bindings/clock/s3c*.h
16841 F:      include/dt-bindings/clock/s5p*.h
16842 F:      include/dt-bindings/clock/samsung,*.h
16843 F:      include/linux/clk/samsung.h
16844 F:      include/linux/platform_data/clk-s3c2410.h
16845
16846 SAMSUNG SPI DRIVERS
16847 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16848 M:      Andi Shyti <andi@etezian.org>
16849 L:      linux-spi@vger.kernel.org
16850 L:      linux-samsung-soc@vger.kernel.org
16851 S:      Maintained
16852 F:      Documentation/devicetree/bindings/spi/spi-samsung.txt
16853 F:      drivers/spi/spi-s3c*
16854 F:      include/linux/platform_data/spi-s3c64xx.h
16855 F:      include/linux/spi/s3c24xx-fiq.h
16856
16857 SAMSUNG SXGBE DRIVERS
16858 M:      Byungho An <bh74.an@samsung.com>
16859 L:      netdev@vger.kernel.org
16860 S:      Supported
16861 F:      drivers/net/ethernet/samsung/sxgbe/
16862
16863 SAMSUNG THERMAL DRIVER
16864 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
16865 L:      linux-pm@vger.kernel.org
16866 L:      linux-samsung-soc@vger.kernel.org
16867 S:      Supported
16868 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
16869 F:      drivers/thermal/samsung/
16870
16871 SAMSUNG USB2 PHY DRIVER
16872 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16873 L:      linux-kernel@vger.kernel.org
16874 S:      Supported
16875 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
16876 F:      Documentation/driver-api/phy/samsung-usb2.rst
16877 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
16878 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
16879 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
16880 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
16881 F:      drivers/phy/samsung/phy-samsung-usb2.c
16882 F:      drivers/phy/samsung/phy-samsung-usb2.h
16883
16884 SANCLOUD BEAGLEBONE ENHANCED DEVICE TREE
16885 M:      Paul Barker <paul.barker@sancloud.com>
16886 R:      Marc Murphy <marc.murphy@sancloud.com>
16887 S:      Supported
16888 F:      arch/arm/boot/dts/am335x-sancloud*
16889
16890 SC1200 WDT DRIVER
16891 M:      Zwane Mwaikambo <zwanem@gmail.com>
16892 S:      Maintained
16893 F:      drivers/watchdog/sc1200wdt.c
16894
16895 SCHEDULER
16896 M:      Ingo Molnar <mingo@redhat.com>
16897 M:      Peter Zijlstra <peterz@infradead.org>
16898 M:      Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
16899 M:      Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
16900 R:      Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
16901 R:      Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
16902 R:      Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
16903 R:      Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
16904 R:      Daniel Bristot de Oliveira <bristot@redhat.com> (SCHED_DEADLINE)
16905 L:      linux-kernel@vger.kernel.org
16906 S:      Maintained
16907 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
16908 F:      include/linux/preempt.h
16909 F:      include/linux/sched.h
16910 F:      include/linux/wait.h
16911 F:      include/uapi/linux/sched.h
16912 F:      kernel/sched/
16913
16914 SCR24X CHIP CARD INTERFACE DRIVER
16915 M:      Lubomir Rintel <lkundrak@v3.sk>
16916 S:      Supported
16917 F:      drivers/char/pcmcia/scr24x_cs.c
16918
16919 SCSI RDMA PROTOCOL (SRP) INITIATOR
16920 M:      Bart Van Assche <bvanassche@acm.org>
16921 L:      linux-rdma@vger.kernel.org
16922 S:      Supported
16923 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
16924 F:      drivers/infiniband/ulp/srp/
16925 F:      include/scsi/srp.h
16926
16927 SCSI RDMA PROTOCOL (SRP) TARGET
16928 M:      Bart Van Assche <bvanassche@acm.org>
16929 L:      linux-rdma@vger.kernel.org
16930 L:      target-devel@vger.kernel.org
16931 S:      Supported
16932 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
16933 F:      drivers/infiniband/ulp/srpt/
16934
16935 SCSI SG DRIVER
16936 M:      Doug Gilbert <dgilbert@interlog.com>
16937 L:      linux-scsi@vger.kernel.org
16938 S:      Maintained
16939 W:      http://sg.danny.cz/sg
16940 F:      Documentation/scsi/scsi-generic.rst
16941 F:      drivers/scsi/sg.c
16942 F:      include/scsi/sg.h
16943
16944 SCSI SUBSYSTEM
16945 M:      "James E.J. Bottomley" <jejb@linux.ibm.com>
16946 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
16947 L:      linux-scsi@vger.kernel.org
16948 S:      Maintained
16949 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
16950 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
16951 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
16952 F:      Documentation/devicetree/bindings/scsi/
16953 F:      drivers/scsi/
16954 F:      include/scsi/
16955
16956 SCSI TAPE DRIVER
16957 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
16958 L:      linux-scsi@vger.kernel.org
16959 S:      Maintained
16960 F:      Documentation/scsi/st.rst
16961 F:      drivers/scsi/st.*
16962 F:      drivers/scsi/st_*.h
16963
16964 SCSI TARGET CORE USER DRIVER
16965 M:      Bodo Stroesser <bostroesser@gmail.com>
16966 L:      linux-scsi@vger.kernel.org
16967 L:      target-devel@vger.kernel.org
16968 S:      Supported
16969 F:      Documentation/target/tcmu-design.rst
16970 F:      drivers/target/target_core_user.c
16971 F:      include/uapi/linux/target_core_user.h
16972
16973 SCSI TARGET SUBSYSTEM
16974 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
16975 L:      linux-scsi@vger.kernel.org
16976 L:      target-devel@vger.kernel.org
16977 S:      Supported
16978 W:      http://www.linux-iscsi.org
16979 Q:      https://patchwork.kernel.org/project/target-devel/list/
16980 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
16981 F:      Documentation/target/
16982 F:      drivers/target/
16983 F:      include/target/
16984
16985 SCTP PROTOCOL
16986 M:      Vlad Yasevich <vyasevich@gmail.com>
16987 M:      Neil Horman <nhorman@tuxdriver.com>
16988 M:      Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
16989 L:      linux-sctp@vger.kernel.org
16990 S:      Maintained
16991 W:      http://lksctp.sourceforge.net
16992 F:      Documentation/networking/sctp.rst
16993 F:      include/linux/sctp.h
16994 F:      include/net/sctp/
16995 F:      include/uapi/linux/sctp.h
16996 F:      net/sctp/
16997
16998 SCx200 CPU SUPPORT
16999 M:      Jim Cromie <jim.cromie@gmail.com>
17000 S:      Odd Fixes
17001 F:      Documentation/i2c/busses/scx200_acb.rst
17002 F:      arch/x86/platform/scx200/
17003 F:      drivers/i2c/busses/scx200*
17004 F:      drivers/mtd/maps/scx200_docflash.c
17005 F:      drivers/watchdog/scx200_wdt.c
17006 F:      include/linux/scx200.h
17007
17008 SCx200 GPIO DRIVER
17009 M:      Jim Cromie <jim.cromie@gmail.com>
17010 S:      Maintained
17011 F:      drivers/char/scx200_gpio.c
17012 F:      include/linux/scx200_gpio.h
17013
17014 SCx200 HRT CLOCKSOURCE DRIVER
17015 M:      Jim Cromie <jim.cromie@gmail.com>
17016 S:      Maintained
17017 F:      drivers/clocksource/scx200_hrt.c
17018
17019 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
17020 M:      Sascha Sommer <saschasommer@freenet.de>
17021 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
17022 S:      Maintained
17023 F:      drivers/mmc/host/sdricoh_cs.c
17024
17025 SECO BOARDS CEC DRIVER
17026 M:      Ettore Chimenti <ek5.chimenti@gmail.com>
17027 S:      Maintained
17028 F:      drivers/media/cec/platform/seco/seco-cec.c
17029 F:      drivers/media/cec/platform/seco/seco-cec.h
17030
17031 SECURE COMPUTING
17032 M:      Kees Cook <keescook@chromium.org>
17033 R:      Andy Lutomirski <luto@amacapital.net>
17034 R:      Will Drewry <wad@chromium.org>
17035 S:      Supported
17036 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
17037 F:      Documentation/userspace-api/seccomp_filter.rst
17038 F:      include/linux/seccomp.h
17039 F:      include/uapi/linux/seccomp.h
17040 F:      kernel/seccomp.c
17041 F:      tools/testing/selftests/kselftest_harness.h
17042 F:      tools/testing/selftests/seccomp/*
17043 K:      \bsecure_computing
17044 K:      \bTIF_SECCOMP\b
17045
17046 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
17047 M:      Al Cooper <alcooperx@gmail.com>
17048 L:      linux-mmc@vger.kernel.org
17049 L:      bcm-kernel-feedback-list@broadcom.com
17050 S:      Maintained
17051 F:      drivers/mmc/host/sdhci-brcmstb*
17052
17053 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
17054 M:      Adrian Hunter <adrian.hunter@intel.com>
17055 L:      linux-mmc@vger.kernel.org
17056 S:      Maintained
17057 F:      drivers/mmc/host/sdhci*
17058
17059 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
17060 M:      Eugen Hristev <eugen.hristev@microchip.com>
17061 L:      linux-mmc@vger.kernel.org
17062 S:      Supported
17063 F:      drivers/mmc/host/sdhci-of-at91.c
17064
17065 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
17066 M:      Ben Dooks <ben-linux@fluff.org>
17067 M:      Jaehoon Chung <jh80.chung@samsung.com>
17068 L:      linux-mmc@vger.kernel.org
17069 S:      Maintained
17070 F:      drivers/mmc/host/sdhci-s3c*
17071
17072 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
17073 M:      Viresh Kumar <vireshk@kernel.org>
17074 L:      linux-mmc@vger.kernel.org
17075 S:      Maintained
17076 F:      drivers/mmc/host/sdhci-spear.c
17077
17078 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
17079 M:      Kishon Vijay Abraham I <kishon@ti.com>
17080 L:      linux-mmc@vger.kernel.org
17081 S:      Maintained
17082 F:      drivers/mmc/host/sdhci-omap.c
17083
17084 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
17085 M:      Jonathan Derrick <jonathan.derrick@intel.com>
17086 M:      Revanth Rajashekar <revanth.rajashekar@intel.com>
17087 L:      linux-block@vger.kernel.org
17088 S:      Supported
17089 F:      block/opal_proto.h
17090 F:      block/sed*
17091 F:      include/linux/sed*
17092 F:      include/uapi/linux/sed*
17093
17094 SECURITY CONTACT
17095 M:      Security Officers <security@kernel.org>
17096 S:      Supported
17097 F:      Documentation/admin-guide/security-bugs.rst
17098
17099 SECURITY SUBSYSTEM
17100 M:      James Morris <jmorris@namei.org>
17101 M:      "Serge E. Hallyn" <serge@hallyn.com>
17102 L:      linux-security-module@vger.kernel.org (suggested Cc:)
17103 S:      Supported
17104 W:      http://kernsec.org/
17105 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
17106 F:      security/
17107 X:      security/selinux/
17108
17109 SELINUX SECURITY MODULE
17110 M:      Paul Moore <paul@paul-moore.com>
17111 M:      Stephen Smalley <stephen.smalley.work@gmail.com>
17112 M:      Eric Paris <eparis@parisplace.org>
17113 L:      selinux@vger.kernel.org
17114 S:      Supported
17115 W:      https://selinuxproject.org
17116 W:      https://github.com/SELinuxProject
17117 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
17118 F:      Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
17119 F:      Documentation/ABI/obsolete/sysfs-selinux-disable
17120 F:      Documentation/admin-guide/LSM/SELinux.rst
17121 F:      include/trace/events/avc.h
17122 F:      include/uapi/linux/selinux_netlink.h
17123 F:      scripts/selinux/
17124 F:      security/selinux/
17125
17126 SENSABLE PHANTOM
17127 M:      Jiri Slaby <jirislaby@kernel.org>
17128 S:      Maintained
17129 F:      drivers/misc/phantom.c
17130 F:      include/uapi/linux/phantom.h
17131
17132 SENSEAIR SUNRISE 006-0-0007
17133 M:      Jacopo Mondi <jacopo@jmondi.org>
17134 S:      Maintained
17135 F:      Documentation/ABI/testing/sysfs-bus-iio-chemical-sunrise-co2
17136 F:      Documentation/devicetree/bindings/iio/chemical/senseair,sunrise.yaml
17137 F:      drivers/iio/chemical/sunrise_co2.c
17138
17139 SENSIRION SCD30 CARBON DIOXIDE SENSOR DRIVER
17140 M:      Tomasz Duszynski <tomasz.duszynski@octakon.com>
17141 S:      Maintained
17142 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd30.yaml
17143 F:      drivers/iio/chemical/scd30.h
17144 F:      drivers/iio/chemical/scd30_core.c
17145 F:      drivers/iio/chemical/scd30_i2c.c
17146 F:      drivers/iio/chemical/scd30_serial.c
17147
17148 SENSIRION SCD4X CARBON DIOXIDE SENSOR DRIVER
17149 M:      Roan van Dijk <roan@protonic.nl>
17150 S:      Maintained
17151 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd4x.yaml
17152 F:      drivers/iio/chemical/scd4x.c
17153
17154 SENSIRION SGP40 GAS SENSOR DRIVER
17155 M:      Andreas Klinger <ak@it-klinger.de>
17156 S:      Maintained
17157 F:      Documentation/ABI/testing/sysfs-bus-iio-chemical-sgp40
17158 F:      drivers/iio/chemical/sgp40.c
17159
17160 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
17161 M:      Tomasz Duszynski <tduszyns@gmail.com>
17162 S:      Maintained
17163 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
17164 F:      drivers/iio/chemical/sps30.c
17165 F:      drivers/iio/chemical/sps30_i2c.c
17166 F:      drivers/iio/chemical/sps30_serial.c
17167
17168 SERIAL DEVICE BUS
17169 M:      Rob Herring <robh@kernel.org>
17170 L:      linux-serial@vger.kernel.org
17171 S:      Maintained
17172 F:      Documentation/devicetree/bindings/serial/serial.yaml
17173 F:      drivers/tty/serdev/
17174 F:      include/linux/serdev.h
17175
17176 SERIAL DRIVERS
17177 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17178 L:      linux-serial@vger.kernel.org
17179 S:      Maintained
17180 F:      Documentation/devicetree/bindings/serial/
17181 F:      drivers/tty/serial/
17182
17183 SERIAL IR RECEIVER
17184 M:      Sean Young <sean@mess.org>
17185 L:      linux-media@vger.kernel.org
17186 S:      Maintained
17187 F:      drivers/media/rc/serial_ir.c
17188
17189 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
17190 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
17191 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17192 S:      Maintained
17193 F:      Documentation/devicetree/bindings/slimbus/
17194 F:      drivers/slimbus/
17195 F:      include/linux/slimbus.h
17196
17197 SFC NETWORK DRIVER
17198 M:      Edward Cree <ecree.xilinx@gmail.com>
17199 M:      Martin Habets <habetsm.xilinx@gmail.com>
17200 L:      netdev@vger.kernel.org
17201 S:      Supported
17202 F:      drivers/net/ethernet/sfc/
17203
17204 SFF/SFP/SFP+ MODULE SUPPORT
17205 M:      Russell King <linux@armlinux.org.uk>
17206 L:      netdev@vger.kernel.org
17207 S:      Maintained
17208 F:      drivers/net/phy/phylink.c
17209 F:      drivers/net/phy/sfp*
17210 F:      include/linux/mdio/mdio-i2c.h
17211 F:      include/linux/phylink.h
17212 F:      include/linux/sfp.h
17213 K:      phylink\.h|struct\s+phylink|\.phylink|>phylink_|phylink_(autoneg|clear|connect|create|destroy|disconnect|ethtool|helper|mac|mii|of|set|start|stop|test|validate)
17214
17215 SGI GRU DRIVER
17216 M:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
17217 S:      Maintained
17218 F:      drivers/misc/sgi-gru/
17219
17220 SGI XP/XPC/XPNET DRIVER
17221 M:      Robin Holt <robinmholt@gmail.com>
17222 M:      Steve Wahl <steve.wahl@hpe.com>
17223 R:      Mike Travis <mike.travis@hpe.com>
17224 S:      Maintained
17225 F:      drivers/misc/sgi-xp/
17226
17227 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
17228 M:      Karsten Graul <kgraul@linux.ibm.com>
17229 L:      linux-s390@vger.kernel.org
17230 S:      Supported
17231 W:      http://www.ibm.com/developerworks/linux/linux390/
17232 F:      net/smc/
17233
17234 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
17235 M:      Linus Walleij <linus.walleij@linaro.org>
17236 L:      linux-iio@vger.kernel.org
17237 S:      Maintained
17238 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
17239 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
17240 F:      drivers/iio/light/gp2ap002.c
17241
17242 SHARP RJ54N1CB0C SENSOR DRIVER
17243 M:      Jacopo Mondi <jacopo@jmondi.org>
17244 L:      linux-media@vger.kernel.org
17245 S:      Odd fixes
17246 T:      git git://linuxtv.org/media_tree.git
17247 F:      drivers/media/i2c/rj54n1cb0c.c
17248 F:      include/media/i2c/rj54n1cb0c.h
17249
17250 SH_VOU V4L2 OUTPUT DRIVER
17251 L:      linux-media@vger.kernel.org
17252 S:      Orphan
17253 F:      drivers/media/platform/sh_vou.c
17254 F:      include/media/drv-intf/sh_vou.h
17255
17256 SI2157 MEDIA DRIVER
17257 M:      Antti Palosaari <crope@iki.fi>
17258 L:      linux-media@vger.kernel.org
17259 S:      Maintained
17260 W:      https://linuxtv.org
17261 W:      http://palosaari.fi/linux/
17262 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17263 T:      git git://linuxtv.org/anttip/media_tree.git
17264 F:      drivers/media/tuners/si2157*
17265
17266 SI2165 MEDIA DRIVER
17267 M:      Matthias Schwarzott <zzam@gentoo.org>
17268 L:      linux-media@vger.kernel.org
17269 S:      Maintained
17270 W:      https://linuxtv.org
17271 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17272 F:      drivers/media/dvb-frontends/si2165*
17273
17274 SI2168 MEDIA DRIVER
17275 M:      Antti Palosaari <crope@iki.fi>
17276 L:      linux-media@vger.kernel.org
17277 S:      Maintained
17278 W:      https://linuxtv.org
17279 W:      http://palosaari.fi/linux/
17280 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17281 T:      git git://linuxtv.org/anttip/media_tree.git
17282 F:      drivers/media/dvb-frontends/si2168*
17283
17284 SI470X FM RADIO RECEIVER I2C DRIVER
17285 M:      Hans Verkuil <hverkuil@xs4all.nl>
17286 L:      linux-media@vger.kernel.org
17287 S:      Odd Fixes
17288 W:      https://linuxtv.org
17289 T:      git git://linuxtv.org/media_tree.git
17290 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
17291
17292 SI470X FM RADIO RECEIVER USB DRIVER
17293 M:      Hans Verkuil <hverkuil@xs4all.nl>
17294 L:      linux-media@vger.kernel.org
17295 S:      Maintained
17296 W:      https://linuxtv.org
17297 T:      git git://linuxtv.org/media_tree.git
17298 F:      drivers/media/radio/si470x/radio-si470x-common.c
17299 F:      drivers/media/radio/si470x/radio-si470x-usb.c
17300 F:      drivers/media/radio/si470x/radio-si470x.h
17301
17302 SI4713 FM RADIO TRANSMITTER I2C DRIVER
17303 M:      Eduardo Valentin <edubezval@gmail.com>
17304 L:      linux-media@vger.kernel.org
17305 S:      Odd Fixes
17306 W:      https://linuxtv.org
17307 T:      git git://linuxtv.org/media_tree.git
17308 F:      drivers/media/radio/si4713/si4713.?
17309
17310 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
17311 M:      Eduardo Valentin <edubezval@gmail.com>
17312 L:      linux-media@vger.kernel.org
17313 S:      Odd Fixes
17314 W:      https://linuxtv.org
17315 T:      git git://linuxtv.org/media_tree.git
17316 F:      drivers/media/radio/si4713/radio-platform-si4713.c
17317
17318 SI4713 FM RADIO TRANSMITTER USB DRIVER
17319 M:      Hans Verkuil <hverkuil@xs4all.nl>
17320 L:      linux-media@vger.kernel.org
17321 S:      Maintained
17322 W:      https://linuxtv.org
17323 T:      git git://linuxtv.org/media_tree.git
17324 F:      drivers/media/radio/si4713/radio-usb-si4713.c
17325
17326 SIANO DVB DRIVER
17327 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17328 L:      linux-media@vger.kernel.org
17329 S:      Odd fixes
17330 W:      https://linuxtv.org
17331 T:      git git://linuxtv.org/media_tree.git
17332 F:      drivers/media/common/siano/
17333 F:      drivers/media/mmc/siano/
17334 F:      drivers/media/usb/siano/
17335 F:      drivers/media/usb/siano/
17336
17337 SIFIVE DRIVERS
17338 M:      Palmer Dabbelt <palmer@dabbelt.com>
17339 M:      Paul Walmsley <paul.walmsley@sifive.com>
17340 L:      linux-riscv@lists.infradead.org
17341 S:      Supported
17342 T:      git git://github.com/sifive/riscv-linux.git
17343 N:      sifive
17344 K:      [^@]sifive
17345
17346 SIFIVE FU540 SYSTEM-ON-CHIP
17347 M:      Paul Walmsley <paul.walmsley@sifive.com>
17348 M:      Palmer Dabbelt <palmer@dabbelt.com>
17349 L:      linux-riscv@lists.infradead.org
17350 S:      Supported
17351 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
17352 N:      fu540
17353 K:      fu540
17354
17355 SIFIVE PDMA DRIVER
17356 M:      Green Wan <green.wan@sifive.com>
17357 S:      Maintained
17358 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
17359 F:      drivers/dma/sf-pdma/
17360
17361 SILEAD TOUCHSCREEN DRIVER
17362 M:      Hans de Goede <hdegoede@redhat.com>
17363 L:      linux-input@vger.kernel.org
17364 L:      platform-driver-x86@vger.kernel.org
17365 S:      Maintained
17366 F:      drivers/input/touchscreen/silead.c
17367 F:      drivers/platform/x86/touchscreen_dmi.c
17368
17369 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
17370 M:      Jérôme Pouiller <jerome.pouiller@silabs.com>
17371 S:      Supported
17372 F:      drivers/staging/wfx/
17373
17374 SILICON MOTION SM712 FRAME BUFFER DRIVER
17375 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
17376 M:      Teddy Wang <teddy.wang@siliconmotion.com>
17377 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
17378 L:      linux-fbdev@vger.kernel.org
17379 S:      Maintained
17380 F:      Documentation/fb/sm712fb.rst
17381 F:      drivers/video/fbdev/sm712*
17382
17383 SILVACO I3C DUAL-ROLE MASTER
17384 M:      Miquel Raynal <miquel.raynal@bootlin.com>
17385 M:      Conor Culhane <conor.culhane@silvaco.com>
17386 L:      linux-i3c@lists.infradead.org
17387 S:      Maintained
17388 F:      Documentation/devicetree/bindings/i3c/silvaco,i3c-master.yaml
17389 F:      drivers/i3c/master/svc-i3c-master.c
17390
17391 SIMPLEFB FB DRIVER
17392 M:      Hans de Goede <hdegoede@redhat.com>
17393 L:      linux-fbdev@vger.kernel.org
17394 S:      Maintained
17395 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
17396 F:      drivers/video/fbdev/simplefb.c
17397 F:      include/linux/platform_data/simplefb.h
17398
17399 SIMTEC EB110ATX (Chalice CATS)
17400 M:      Simtec Linux Team <linux@simtec.co.uk>
17401 S:      Supported
17402 W:      http://www.simtec.co.uk/products/EB110ATX/
17403
17404 SIMTEC EB2410ITX (BAST)
17405 M:      Simtec Linux Team <linux@simtec.co.uk>
17406 S:      Supported
17407 W:      http://www.simtec.co.uk/products/EB2410ITX/
17408 F:      arch/arm/mach-s3c/bast-ide.c
17409 F:      arch/arm/mach-s3c/bast-irq.c
17410 F:      arch/arm/mach-s3c/mach-bast.c
17411
17412 SIOX
17413 M:      Thorsten Scherer <t.scherer@eckelmann.de>
17414 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
17415 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
17416 S:      Supported
17417 F:      drivers/gpio/gpio-siox.c
17418 F:      drivers/siox/*
17419 F:      include/trace/events/siox.h
17420
17421 SIPHASH PRF ROUTINES
17422 M:      Jason A. Donenfeld <Jason@zx2c4.com>
17423 S:      Maintained
17424 F:      include/linux/siphash.h
17425 F:      lib/siphash.c
17426 F:      lib/test_siphash.c
17427
17428 SIS 190 ETHERNET DRIVER
17429 M:      Francois Romieu <romieu@fr.zoreil.com>
17430 L:      netdev@vger.kernel.org
17431 S:      Maintained
17432 F:      drivers/net/ethernet/sis/sis190.c
17433
17434 SIS 900/7016 FAST ETHERNET DRIVER
17435 M:      Daniele Venzano <venza@brownhat.org>
17436 L:      netdev@vger.kernel.org
17437 S:      Maintained
17438 W:      http://www.brownhat.org/sis900.html
17439 F:      drivers/net/ethernet/sis/sis900.*
17440
17441 SIS FRAMEBUFFER DRIVER
17442 M:      Thomas Winischhofer <thomas@winischhofer.net>
17443 S:      Maintained
17444 W:      http://www.winischhofer.net/linuxsisvga.shtml
17445 F:      Documentation/fb/sisfb.rst
17446 F:      drivers/video/fbdev/sis/
17447 F:      include/video/sisfb.h
17448
17449 SIS I2C TOUCHSCREEN DRIVER
17450 M:      Mika Penttilä <mika.penttila@nextfour.com>
17451 L:      linux-input@vger.kernel.org
17452 S:      Maintained
17453 F:      Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt
17454 F:      drivers/input/touchscreen/sis_i2c.c
17455
17456 SIS USB2VGA DRIVER
17457 M:      Thomas Winischhofer <thomas@winischhofer.net>
17458 S:      Maintained
17459 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
17460 F:      drivers/usb/misc/sisusbvga/
17461
17462 SLAB ALLOCATOR
17463 M:      Christoph Lameter <cl@linux.com>
17464 M:      Pekka Enberg <penberg@kernel.org>
17465 M:      David Rientjes <rientjes@google.com>
17466 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
17467 M:      Andrew Morton <akpm@linux-foundation.org>
17468 M:      Vlastimil Babka <vbabka@suse.cz>
17469 L:      linux-mm@kvack.org
17470 S:      Maintained
17471 F:      include/linux/sl?b*.h
17472 F:      mm/sl?b*
17473
17474 SLEEPABLE READ-COPY UPDATE (SRCU)
17475 M:      Lai Jiangshan <jiangshanlai@gmail.com>
17476 M:      "Paul E. McKenney" <paulmck@kernel.org>
17477 M:      Josh Triplett <josh@joshtriplett.org>
17478 R:      Steven Rostedt <rostedt@goodmis.org>
17479 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
17480 L:      rcu@vger.kernel.org
17481 S:      Supported
17482 W:      http://www.rdrop.com/users/paulmck/RCU/
17483 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17484 F:      include/linux/srcu*.h
17485 F:      kernel/rcu/srcu*.c
17486
17487 SMACK SECURITY MODULE
17488 M:      Casey Schaufler <casey@schaufler-ca.com>
17489 L:      linux-security-module@vger.kernel.org
17490 S:      Maintained
17491 W:      http://schaufler-ca.com
17492 T:      git git://github.com/cschaufler/smack-next
17493 F:      Documentation/admin-guide/LSM/Smack.rst
17494 F:      security/smack/
17495
17496 SMC91x ETHERNET DRIVER
17497 M:      Nicolas Pitre <nico@fluxnic.net>
17498 S:      Odd Fixes
17499 F:      drivers/net/ethernet/smsc/smc91x.*
17500
17501 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
17502 M:      Mark Rutland <mark.rutland@arm.com>
17503 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
17504 M:      Sudeep Holla <sudeep.holla@arm.com>
17505 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17506 S:      Maintained
17507 F:      drivers/firmware/smccc/
17508 F:      include/linux/arm-smccc.h
17509
17510 SMM665 HARDWARE MONITOR DRIVER
17511 M:      Guenter Roeck <linux@roeck-us.net>
17512 L:      linux-hwmon@vger.kernel.org
17513 S:      Maintained
17514 F:      Documentation/hwmon/smm665.rst
17515 F:      drivers/hwmon/smm665.c
17516
17517 SMSC EMC2103 HARDWARE MONITOR DRIVER
17518 M:      Steve Glendinning <steve.glendinning@shawell.net>
17519 L:      linux-hwmon@vger.kernel.org
17520 S:      Maintained
17521 F:      Documentation/hwmon/emc2103.rst
17522 F:      drivers/hwmon/emc2103.c
17523
17524 SMSC SCH5627 HARDWARE MONITOR DRIVER
17525 M:      Hans de Goede <hdegoede@redhat.com>
17526 L:      linux-hwmon@vger.kernel.org
17527 S:      Supported
17528 F:      Documentation/hwmon/sch5627.rst
17529 F:      drivers/hwmon/sch5627.c
17530
17531 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
17532 M:      Steve Glendinning <steve.glendinning@shawell.net>
17533 L:      linux-fbdev@vger.kernel.org
17534 S:      Maintained
17535 F:      drivers/video/fbdev/smscufx.c
17536
17537 SMSC47B397 HARDWARE MONITOR DRIVER
17538 M:      Jean Delvare <jdelvare@suse.com>
17539 L:      linux-hwmon@vger.kernel.org
17540 S:      Maintained
17541 F:      Documentation/hwmon/smsc47b397.rst
17542 F:      drivers/hwmon/smsc47b397.c
17543
17544 SMSC911x ETHERNET DRIVER
17545 M:      Steve Glendinning <steve.glendinning@shawell.net>
17546 L:      netdev@vger.kernel.org
17547 S:      Maintained
17548 F:      drivers/net/ethernet/smsc/smsc911x.*
17549 F:      include/linux/smsc911x.h
17550
17551 SMSC9420 PCI ETHERNET DRIVER
17552 M:      Steve Glendinning <steve.glendinning@shawell.net>
17553 L:      netdev@vger.kernel.org
17554 S:      Maintained
17555 F:      drivers/net/ethernet/smsc/smsc9420.*
17556
17557 SOCIONEXT (SNI) AVE NETWORK DRIVER
17558 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
17559 L:      netdev@vger.kernel.org
17560 S:      Maintained
17561 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
17562 F:      drivers/net/ethernet/socionext/sni_ave.c
17563
17564 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
17565 M:      Jassi Brar <jaswinder.singh@linaro.org>
17566 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
17567 L:      netdev@vger.kernel.org
17568 S:      Maintained
17569 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
17570 F:      drivers/net/ethernet/socionext/netsec.c
17571
17572 SOCIONEXT (SNI) Synquacer SPI DRIVER
17573 M:      Masahisa Kojima <masahisa.kojima@linaro.org>
17574 M:      Jassi Brar <jaswinder.singh@linaro.org>
17575 L:      linux-spi@vger.kernel.org
17576 S:      Maintained
17577 F:      Documentation/devicetree/bindings/spi/spi-synquacer.txt
17578 F:      drivers/spi/spi-synquacer.c
17579
17580 SOCIONEXT SYNQUACER I2C DRIVER
17581 M:      Ard Biesheuvel <ardb@kernel.org>
17582 L:      linux-i2c@vger.kernel.org
17583 S:      Maintained
17584 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
17585 F:      drivers/i2c/busses/i2c-synquacer.c
17586
17587 SOCIONEXT UNIPHIER SOUND DRIVER
17588 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17589 S:      Orphan
17590 F:      sound/soc/uniphier/
17591
17592 SOEKRIS NET48XX LED SUPPORT
17593 M:      Chris Boot <bootc@bootc.net>
17594 S:      Maintained
17595 F:      drivers/leds/leds-net48xx.c
17596
17597 SOFT-IWARP DRIVER (siw)
17598 M:      Bernard Metzler <bmt@zurich.ibm.com>
17599 L:      linux-rdma@vger.kernel.org
17600 S:      Supported
17601 F:      drivers/infiniband/sw/siw/
17602 F:      include/uapi/rdma/siw-abi.h
17603
17604 SOFT-ROCE DRIVER (rxe)
17605 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
17606 L:      linux-rdma@vger.kernel.org
17607 S:      Supported
17608 F:      drivers/infiniband/sw/rxe/
17609 F:      include/uapi/rdma/rdma_user_rxe.h
17610
17611 SOFTLOGIC 6x10 MPEG CODEC
17612 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
17613 M:      Anton Sviridenko <anton@corp.bluecherry.net>
17614 M:      Andrey Utkin <andrey_utkin@fastmail.com>
17615 M:      Ismael Luceno <ismael@iodev.co.uk>
17616 L:      linux-media@vger.kernel.org
17617 S:      Supported
17618 F:      drivers/media/pci/solo6x10/
17619
17620 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
17621 M:      James Morse <james.morse@arm.com>
17622 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17623 S:      Maintained
17624 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
17625 F:      drivers/firmware/arm_sdei.c
17626 F:      include/linux/arm_sdei.h
17627 F:      include/uapi/linux/arm_sdei.h
17628
17629 SOFTWARE NODES
17630 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17631 R:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
17632 L:      linux-acpi@vger.kernel.org
17633 S:      Maintained
17634 F:      drivers/base/swnode.c
17635
17636 SOFTWARE RAID (Multiple Disks) SUPPORT
17637 M:      Song Liu <song@kernel.org>
17638 L:      linux-raid@vger.kernel.org
17639 S:      Supported
17640 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
17641 F:      drivers/md/Kconfig
17642 F:      drivers/md/Makefile
17643 F:      drivers/md/md*
17644 F:      drivers/md/raid*
17645 F:      include/linux/raid/
17646 F:      include/uapi/linux/raid/
17647
17648 SOLIDRUN CLEARFOG SUPPORT
17649 M:      Russell King <linux@armlinux.org.uk>
17650 S:      Maintained
17651 F:      arch/arm/boot/dts/armada-388-clearfog*
17652 F:      arch/arm/boot/dts/armada-38x-solidrun-*
17653
17654 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
17655 M:      Russell King <linux@armlinux.org.uk>
17656 S:      Maintained
17657 F:      arch/arm/boot/dts/imx6*-cubox-i*
17658 F:      arch/arm/boot/dts/imx6*-hummingboard*
17659 F:      arch/arm/boot/dts/imx6*-sr-*
17660
17661 SONIC NETWORK DRIVER
17662 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
17663 L:      netdev@vger.kernel.org
17664 S:      Maintained
17665 F:      drivers/net/ethernet/natsemi/sonic.*
17666
17667 SONICS SILICON BACKPLANE DRIVER (SSB)
17668 M:      Michael Buesch <m@bues.ch>
17669 L:      linux-wireless@vger.kernel.org
17670 S:      Maintained
17671 F:      drivers/ssb/
17672 F:      include/linux/ssb/
17673
17674 SONY IMX208 SENSOR DRIVER
17675 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
17676 L:      linux-media@vger.kernel.org
17677 S:      Maintained
17678 T:      git git://linuxtv.org/media_tree.git
17679 F:      drivers/media/i2c/imx208.c
17680
17681 SONY IMX214 SENSOR DRIVER
17682 M:      Ricardo Ribalda <ribalda@kernel.org>
17683 L:      linux-media@vger.kernel.org
17684 S:      Maintained
17685 T:      git git://linuxtv.org/media_tree.git
17686 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.yaml
17687 F:      drivers/media/i2c/imx214.c
17688
17689 SONY IMX219 SENSOR DRIVER
17690 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
17691 L:      linux-media@vger.kernel.org
17692 S:      Maintained
17693 T:      git git://linuxtv.org/media_tree.git
17694 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
17695 F:      drivers/media/i2c/imx219.c
17696
17697 SONY IMX258 SENSOR DRIVER
17698 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
17699 L:      linux-media@vger.kernel.org
17700 S:      Maintained
17701 T:      git git://linuxtv.org/media_tree.git
17702 F:      Documentation/devicetree/bindings/media/i2c/imx258.yaml
17703 F:      drivers/media/i2c/imx258.c
17704
17705 SONY IMX274 SENSOR DRIVER
17706 M:      Leon Luo <leonl@leopardimaging.com>
17707 L:      linux-media@vger.kernel.org
17708 S:      Maintained
17709 T:      git git://linuxtv.org/media_tree.git
17710 F:      Documentation/devicetree/bindings/media/i2c/sony,imx274.yaml
17711 F:      drivers/media/i2c/imx274.c
17712
17713 SONY IMX290 SENSOR DRIVER
17714 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
17715 L:      linux-media@vger.kernel.org
17716 S:      Maintained
17717 T:      git git://linuxtv.org/media_tree.git
17718 F:      Documentation/devicetree/bindings/media/i2c/imx290.txt
17719 F:      drivers/media/i2c/imx290.c
17720
17721 SONY IMX319 SENSOR DRIVER
17722 M:      Bingbu Cao <bingbu.cao@intel.com>
17723 L:      linux-media@vger.kernel.org
17724 S:      Maintained
17725 T:      git git://linuxtv.org/media_tree.git
17726 F:      drivers/media/i2c/imx319.c
17727
17728 SONY IMX334 SENSOR DRIVER
17729 M:      Paul J. Murphy <paul.j.murphy@intel.com>
17730 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
17731 L:      linux-media@vger.kernel.org
17732 S:      Maintained
17733 T:      git git://linuxtv.org/media_tree.git
17734 F:      Documentation/devicetree/bindings/media/i2c/sony,imx334.yaml
17735 F:      drivers/media/i2c/imx334.c
17736
17737 SONY IMX335 SENSOR DRIVER
17738 M:      Paul J. Murphy <paul.j.murphy@intel.com>
17739 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
17740 L:      linux-media@vger.kernel.org
17741 S:      Maintained
17742 T:      git git://linuxtv.org/media_tree.git
17743 F:      Documentation/devicetree/bindings/media/i2c/sony,imx335.yaml
17744 F:      drivers/media/i2c/imx335.c
17745
17746 SONY IMX355 SENSOR DRIVER
17747 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
17748 L:      linux-media@vger.kernel.org
17749 S:      Maintained
17750 T:      git git://linuxtv.org/media_tree.git
17751 F:      drivers/media/i2c/imx355.c
17752
17753 SONY IMX412 SENSOR DRIVER
17754 M:      Paul J. Murphy <paul.j.murphy@intel.com>
17755 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
17756 L:      linux-media@vger.kernel.org
17757 S:      Maintained
17758 T:      git git://linuxtv.org/media_tree.git
17759 F:      Documentation/devicetree/bindings/media/i2c/sony,imx412.yaml
17760 F:      drivers/media/i2c/imx412.c
17761
17762 SONY MEMORYSTICK SUBSYSTEM
17763 M:      Maxim Levitsky <maximlevitsky@gmail.com>
17764 M:      Alex Dubov <oakad@yahoo.com>
17765 M:      Ulf Hansson <ulf.hansson@linaro.org>
17766 L:      linux-mmc@vger.kernel.org
17767 S:      Maintained
17768 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
17769 F:      drivers/memstick/
17770 F:      include/linux/memstick.h
17771
17772 SONY VAIO CONTROL DEVICE DRIVER
17773 M:      Mattia Dongili <malattia@linux.it>
17774 L:      platform-driver-x86@vger.kernel.org
17775 S:      Maintained
17776 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
17777 F:      Documentation/admin-guide/laptops/sony-laptop.rst
17778 F:      drivers/char/sonypi.c
17779 F:      drivers/platform/x86/sony-laptop.c
17780 F:      include/linux/sony-laptop.h
17781
17782 SOUND
17783 M:      Jaroslav Kysela <perex@perex.cz>
17784 M:      Takashi Iwai <tiwai@suse.com>
17785 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17786 S:      Maintained
17787 W:      http://www.alsa-project.org/
17788 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
17789 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
17790 F:      Documentation/sound/
17791 F:      include/sound/
17792 F:      include/uapi/sound/
17793 F:      sound/
17794
17795 SOUND - COMPRESSED AUDIO
17796 M:      Vinod Koul <vkoul@kernel.org>
17797 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17798 S:      Supported
17799 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
17800 F:      Documentation/sound/designs/compress-offload.rst
17801 F:      include/sound/compress_driver.h
17802 F:      include/uapi/sound/compress_*
17803 F:      sound/core/compress_offload.c
17804 F:      sound/soc/soc-compress.c
17805
17806 SOUND - DMAENGINE HELPERS
17807 M:      Lars-Peter Clausen <lars@metafoo.de>
17808 S:      Supported
17809 F:      include/sound/dmaengine_pcm.h
17810 F:      sound/core/pcm_dmaengine.c
17811 F:      sound/soc/soc-generic-dmaengine-pcm.c
17812
17813 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
17814 M:      Liam Girdwood <lgirdwood@gmail.com>
17815 M:      Mark Brown <broonie@kernel.org>
17816 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17817 S:      Supported
17818 W:      http://alsa-project.org/main/index.php/ASoC
17819 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
17820 F:      Documentation/devicetree/bindings/sound/
17821 F:      Documentation/sound/soc/
17822 F:      include/dt-bindings/sound/
17823 F:      include/sound/soc*
17824 F:      sound/soc/
17825
17826 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
17827 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
17828 M:      Liam Girdwood <lgirdwood@gmail.com>
17829 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
17830 M:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
17831 M:      Daniel Baluta <daniel.baluta@nxp.com>
17832 L:      sound-open-firmware@alsa-project.org (moderated for non-subscribers)
17833 S:      Supported
17834 W:      https://github.com/thesofproject/linux/
17835 F:      sound/soc/sof/
17836
17837 SOUNDWIRE SUBSYSTEM
17838 M:      Vinod Koul <vkoul@kernel.org>
17839 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
17840 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
17841 R:      Sanyog Kale <sanyog.r.kale@intel.com>
17842 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17843 S:      Supported
17844 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire.git
17845 F:      Documentation/driver-api/soundwire/
17846 F:      drivers/soundwire/
17847 F:      include/linux/soundwire/
17848
17849 SP2 MEDIA DRIVER
17850 M:      Olli Salonen <olli.salonen@iki.fi>
17851 L:      linux-media@vger.kernel.org
17852 S:      Maintained
17853 W:      https://linuxtv.org
17854 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17855 F:      drivers/media/dvb-frontends/sp2*
17856
17857 SPARC + UltraSPARC (sparc/sparc64)
17858 M:      "David S. Miller" <davem@davemloft.net>
17859 L:      sparclinux@vger.kernel.org
17860 S:      Maintained
17861 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
17862 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
17863 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
17864 F:      arch/sparc/
17865 F:      drivers/sbus/
17866
17867 SPARC SERIAL DRIVERS
17868 M:      "David S. Miller" <davem@davemloft.net>
17869 L:      sparclinux@vger.kernel.org
17870 S:      Maintained
17871 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
17872 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
17873 F:      drivers/tty/serial/suncore.c
17874 F:      drivers/tty/serial/sunhv.c
17875 F:      drivers/tty/serial/sunsab.c
17876 F:      drivers/tty/serial/sunsab.h
17877 F:      drivers/tty/serial/sunsu.c
17878 F:      drivers/tty/serial/sunzilog.c
17879 F:      drivers/tty/serial/sunzilog.h
17880 F:      drivers/tty/vcc.c
17881 F:      include/linux/sunserialcore.h
17882
17883 SPARSE CHECKER
17884 M:      "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
17885 L:      linux-sparse@vger.kernel.org
17886 S:      Maintained
17887 W:      https://sparse.docs.kernel.org/
17888 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
17889 Q:      https://patchwork.kernel.org/project/linux-sparse/list/
17890 B:      https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
17891 F:      include/linux/compiler.h
17892
17893 SPEAKUP CONSOLE SPEECH DRIVER
17894 M:      William Hubbs <w.d.hubbs@gmail.com>
17895 M:      Chris Brannon <chris@the-brannons.com>
17896 M:      Kirk Reiser <kirk@reisers.ca>
17897 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
17898 L:      speakup@linux-speakup.org
17899 S:      Odd Fixes
17900 W:      http://www.linux-speakup.org/
17901 W:      https://github.com/linux-speakup/speakup
17902 B:      https://github.com/linux-speakup/speakup/issues
17903 F:      drivers/accessibility/speakup/
17904
17905 SPEAR PLATFORM/CLOCK/PINCTRL SUPPORT
17906 M:      Viresh Kumar <vireshk@kernel.org>
17907 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
17908 M:      soc@kernel.org
17909 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17910 S:      Maintained
17911 W:      http://www.st.com/spear
17912 F:      arch/arm/boot/dts/spear*
17913 F:      arch/arm/mach-spear/
17914 F:      drivers/clk/spear/
17915 F:      drivers/pinctrl/spear/
17916
17917 SPI NOR SUBSYSTEM
17918 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
17919 R:      Michael Walle <michael@walle.cc>
17920 R:      Pratyush Yadav <p.yadav@ti.com>
17921 L:      linux-mtd@lists.infradead.org
17922 S:      Maintained
17923 W:      http://www.linux-mtd.infradead.org/
17924 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
17925 C:      irc://irc.oftc.net/mtd
17926 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
17927 F:      Documentation/devicetree/bindings/mtd/jedec,spi-nor.yaml
17928 F:      drivers/mtd/spi-nor/
17929 F:      include/linux/mtd/spi-nor.h
17930
17931 SPI SUBSYSTEM
17932 M:      Mark Brown <broonie@kernel.org>
17933 L:      linux-spi@vger.kernel.org
17934 S:      Maintained
17935 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
17936 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
17937 F:      Documentation/devicetree/bindings/spi/
17938 F:      Documentation/spi/
17939 F:      drivers/spi/
17940 F:      include/linux/spi/
17941 F:      include/uapi/linux/spi/
17942 F:      tools/spi/
17943
17944 SPIDERNET NETWORK DRIVER for CELL
17945 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
17946 M:      Geoff Levand <geoff@infradead.org>
17947 L:      netdev@vger.kernel.org
17948 L:      linuxppc-dev@lists.ozlabs.org
17949 S:      Maintained
17950 F:      Documentation/networking/device_drivers/ethernet/toshiba/spider_net.rst
17951 F:      drivers/net/ethernet/toshiba/spider_net*
17952
17953 SPMI SUBSYSTEM
17954 M:      Stephen Boyd <sboyd@kernel.org>
17955 L:      linux-kernel@vger.kernel.org
17956 S:      Maintained
17957 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sboyd/spmi.git
17958 F:      Documentation/devicetree/bindings/spmi/
17959 F:      drivers/spmi/
17960 F:      include/dt-bindings/spmi/spmi.h
17961 F:      include/linux/spmi.h
17962 F:      include/trace/events/spmi.h
17963
17964 SPU FILE SYSTEM
17965 M:      Jeremy Kerr <jk@ozlabs.org>
17966 L:      linuxppc-dev@lists.ozlabs.org
17967 S:      Supported
17968 W:      http://www.ibm.com/developerworks/power/cell/
17969 F:      Documentation/filesystems/spufs/spufs.rst
17970 F:      arch/powerpc/platforms/cell/spufs/
17971
17972 SQUASHFS FILE SYSTEM
17973 M:      Phillip Lougher <phillip@squashfs.org.uk>
17974 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
17975 S:      Maintained
17976 W:      http://squashfs.org.uk
17977 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
17978 F:      Documentation/filesystems/squashfs.rst
17979 F:      fs/squashfs/
17980
17981 SRM (Alpha) environment access
17982 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
17983 S:      Maintained
17984 F:      arch/alpha/kernel/srm_env.c
17985
17986 ST LSM6DSx IMU IIO DRIVER
17987 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
17988 L:      linux-iio@vger.kernel.org
17989 S:      Maintained
17990 W:      http://www.st.com/
17991 F:      Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml
17992 F:      drivers/iio/imu/st_lsm6dsx/
17993
17994 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
17995 M:      Mickael Guene <mickael.guene@st.com>
17996 L:      linux-media@vger.kernel.org
17997 S:      Maintained
17998 T:      git git://linuxtv.org/media_tree.git
17999 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
18000 F:      drivers/media/i2c/st-mipid02.c
18001
18002 ST STM32 I2C/SMBUS DRIVER
18003 M:      Pierre-Yves MORDRET <pierre-yves.mordret@foss.st.com>
18004 M:      Alain Volmat <alain.volmat@foss.st.com>
18005 L:      linux-i2c@vger.kernel.org
18006 S:      Maintained
18007 F:      drivers/i2c/busses/i2c-stm32*
18008
18009 ST STM32 SPI DRIVER
18010 M:      Alain Volmat <alain.volmat@foss.st.com>
18011 L:      linux-spi@vger.kernel.org
18012 S:      Maintained
18013 F:      drivers/spi/spi-stm32.c
18014
18015 ST STPDDC60 DRIVER
18016 M:      Daniel Nilsson <daniel.nilsson@flex.com>
18017 L:      linux-hwmon@vger.kernel.org
18018 S:      Maintained
18019 F:      Documentation/hwmon/stpddc60.rst
18020 F:      drivers/hwmon/pmbus/stpddc60.c
18021
18022 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
18023 M:      Song Qiang <songqiang1304521@gmail.com>
18024 L:      linux-iio@vger.kernel.org
18025 S:      Maintained
18026 F:      Documentation/devicetree/bindings/iio/proximity/st,vl53l0x.yaml
18027 F:      drivers/iio/proximity/vl53l0x-i2c.c
18028
18029 STABLE BRANCH
18030 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18031 M:      Sasha Levin <sashal@kernel.org>
18032 L:      stable@vger.kernel.org
18033 S:      Supported
18034 F:      Documentation/process/stable-kernel-rules.rst
18035
18036 STAGING - ATOMISP DRIVER
18037 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18038 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
18039 L:      linux-media@vger.kernel.org
18040 S:      Maintained
18041 F:      drivers/staging/media/atomisp/
18042
18043 STAGING - FIELDBUS SUBSYSTEM
18044 M:      Sven Van Asbroeck <TheSven73@gmail.com>
18045 S:      Maintained
18046 F:      drivers/staging/fieldbus/*
18047 F:      drivers/staging/fieldbus/Documentation/
18048
18049 STAGING - HMS ANYBUS-S BUS
18050 M:      Sven Van Asbroeck <TheSven73@gmail.com>
18051 S:      Maintained
18052 F:      drivers/staging/fieldbus/anybuss/
18053
18054 STAGING - INDUSTRIAL IO
18055 M:      Jonathan Cameron <jic23@kernel.org>
18056 L:      linux-iio@vger.kernel.org
18057 S:      Odd Fixes
18058 F:      Documentation/devicetree/bindings/staging/iio/
18059 F:      drivers/staging/iio/
18060
18061 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
18062 M:      Marc Dietrich <marvin24@gmx.de>
18063 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
18064 L:      linux-tegra@vger.kernel.org
18065 S:      Maintained
18066 F:      drivers/staging/nvec/
18067
18068 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
18069 M:      Jens Frederich <jfrederich@gmail.com>
18070 M:      Jon Nettleton <jon.nettleton@gmail.com>
18071 S:      Maintained
18072 W:      http://wiki.laptop.org/go/DCON
18073 F:      drivers/staging/olpc_dcon/
18074
18075 STAGING - REALTEK RTL8188EU DRIVERS
18076 M:      Larry Finger <Larry.Finger@lwfinger.net>
18077 M:      Phillip Potter <phil@philpotter.co.uk>
18078 S:      Supported
18079 F:      drivers/staging/r8188eu/
18080
18081 STAGING - REALTEK RTL8712U DRIVERS
18082 M:      Larry Finger <Larry.Finger@lwfinger.net>
18083 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
18084 S:      Odd Fixes
18085 F:      drivers/staging/rtl8712/
18086
18087 STAGING - SEPS525 LCD CONTROLLER DRIVERS
18088 M:      Michael Hennerich <michael.hennerich@analog.com>
18089 L:      linux-fbdev@vger.kernel.org
18090 S:      Supported
18091 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
18092 F:      drivers/staging/fbtft/fb_seps525.c
18093
18094 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
18095 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
18096 M:      Teddy Wang <teddy.wang@siliconmotion.com>
18097 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
18098 L:      linux-fbdev@vger.kernel.org
18099 S:      Maintained
18100 F:      drivers/staging/sm750fb/
18101
18102 STAGING - VIA VT665X DRIVERS
18103 M:      Forest Bond <forest@alittletooquiet.net>
18104 S:      Odd Fixes
18105 F:      drivers/staging/vt665?/
18106
18107 STAGING SUBSYSTEM
18108 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18109 L:      linux-staging@lists.linux.dev
18110 S:      Supported
18111 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
18112 F:      drivers/staging/
18113
18114 STARFIRE/DURALAN NETWORK DRIVER
18115 M:      Ion Badulescu <ionut@badula.org>
18116 S:      Odd Fixes
18117 F:      drivers/net/ethernet/adaptec/starfire*
18118
18119 STATIC BRANCH/CALL
18120 M:      Peter Zijlstra <peterz@infradead.org>
18121 M:      Josh Poimboeuf <jpoimboe@redhat.com>
18122 M:      Jason Baron <jbaron@akamai.com>
18123 R:      Steven Rostedt <rostedt@goodmis.org>
18124 R:      Ard Biesheuvel <ardb@kernel.org>
18125 S:      Supported
18126 F:      arch/*/include/asm/jump_label*.h
18127 F:      arch/*/include/asm/static_call*.h
18128 F:      arch/*/kernel/jump_label.c
18129 F:      arch/*/kernel/static_call.c
18130 F:      include/linux/jump_label*.h
18131 F:      include/linux/static_call*.h
18132 F:      kernel/jump_label.c
18133 F:      kernel/static_call.c
18134
18135 STI AUDIO (ASoC) DRIVERS
18136 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
18137 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18138 S:      Maintained
18139 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
18140 F:      sound/soc/sti/
18141
18142 STI CEC DRIVER
18143 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
18144 S:      Maintained
18145 F:      Documentation/devicetree/bindings/media/stih-cec.txt
18146 F:      drivers/media/cec/platform/sti/
18147
18148 STK1160 USB VIDEO CAPTURE DRIVER
18149 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
18150 L:      linux-media@vger.kernel.org
18151 S:      Maintained
18152 T:      git git://linuxtv.org/media_tree.git
18153 F:      drivers/media/usb/stk1160/
18154
18155 STM32 AUDIO (ASoC) DRIVERS
18156 M:      Olivier Moysan <olivier.moysan@foss.st.com>
18157 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
18158 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18159 S:      Maintained
18160 F:      Documentation/devicetree/bindings/iio/adc/st,stm32-dfsdm-adc.yaml
18161 F:      Documentation/devicetree/bindings/sound/st,stm32-*.yaml
18162 F:      sound/soc/stm/
18163
18164 STM32 TIMER/LPTIMER DRIVERS
18165 M:      Fabrice Gasnier <fabrice.gasnier@foss.st.com>
18166 S:      Maintained
18167 F:      Documentation/ABI/testing/*timer-stm32
18168 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
18169 F:      drivers/*/stm32-*timer*
18170 F:      drivers/pwm/pwm-stm32*
18171 F:      include/linux/*/stm32-*tim*
18172
18173 STMMAC ETHERNET DRIVER
18174 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
18175 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
18176 M:      Jose Abreu <joabreu@synopsys.com>
18177 L:      netdev@vger.kernel.org
18178 S:      Supported
18179 W:      http://www.stlinux.com
18180 F:      Documentation/networking/device_drivers/ethernet/stmicro/
18181 F:      drivers/net/ethernet/stmicro/stmmac/
18182
18183 SUN3/3X
18184 M:      Sam Creasey <sammy@sammy.net>
18185 S:      Maintained
18186 W:      http://sammy.net/sun3/
18187 F:      arch/m68k/include/asm/sun3*
18188 F:      arch/m68k/kernel/*sun3*
18189 F:      arch/m68k/sun3*/
18190 F:      drivers/net/ethernet/i825xx/sun3*
18191
18192 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
18193 M:      Hans de Goede <hdegoede@redhat.com>
18194 L:      linux-input@vger.kernel.org
18195 S:      Maintained
18196 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
18197 F:      drivers/input/keyboard/sun4i-lradc-keys.c
18198
18199 SUNDANCE NETWORK DRIVER
18200 M:      Denis Kirjanov <kda@linux-powerpc.org>
18201 L:      netdev@vger.kernel.org
18202 S:      Maintained
18203 F:      drivers/net/ethernet/dlink/sundance.c
18204
18205 SUPERH
18206 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
18207 M:      Rich Felker <dalias@libc.org>
18208 L:      linux-sh@vger.kernel.org
18209 S:      Maintained
18210 Q:      http://patchwork.kernel.org/project/linux-sh/list/
18211 F:      Documentation/sh/
18212 F:      arch/sh/
18213 F:      drivers/sh/
18214
18215 SUSPEND TO RAM
18216 M:      "Rafael J. Wysocki" <rafael@kernel.org>
18217 M:      Len Brown <len.brown@intel.com>
18218 M:      Pavel Machek <pavel@ucw.cz>
18219 L:      linux-pm@vger.kernel.org
18220 S:      Supported
18221 B:      https://bugzilla.kernel.org
18222 F:      Documentation/power/
18223 F:      arch/x86/kernel/acpi/
18224 F:      drivers/base/power/
18225 F:      include/linux/freezer.h
18226 F:      include/linux/pm.h
18227 F:      include/linux/suspend.h
18228 F:      kernel/power/
18229
18230 SVGA HANDLING
18231 M:      Martin Mares <mj@ucw.cz>
18232 L:      linux-video@atrey.karlin.mff.cuni.cz
18233 S:      Maintained
18234 F:      Documentation/admin-guide/svga.rst
18235 F:      arch/x86/boot/video*
18236
18237 SWIOTLB SUBSYSTEM
18238 M:      Christoph Hellwig <hch@infradead.org>
18239 L:      iommu@lists.linux-foundation.org
18240 S:      Supported
18241 W:      http://git.infradead.org/users/hch/dma-mapping.git
18242 T:      git git://git.infradead.org/users/hch/dma-mapping.git
18243 F:      arch/*/kernel/pci-swiotlb.c
18244 F:      include/linux/swiotlb.h
18245 F:      kernel/dma/swiotlb.c
18246
18247 SWITCHDEV
18248 M:      Jiri Pirko <jiri@resnulli.us>
18249 M:      Ivan Vecera <ivecera@redhat.com>
18250 L:      netdev@vger.kernel.org
18251 S:      Supported
18252 F:      include/net/switchdev.h
18253 F:      net/switchdev/
18254
18255 SY8106A REGULATOR DRIVER
18256 M:      Icenowy Zheng <icenowy@aosc.io>
18257 S:      Maintained
18258 F:      Documentation/devicetree/bindings/regulator/silergy,sy8106a.yaml
18259 F:      drivers/regulator/sy8106a-regulator.c
18260
18261 SYNC FILE FRAMEWORK
18262 M:      Sumit Semwal <sumit.semwal@linaro.org>
18263 R:      Gustavo Padovan <gustavo@padovan.org>
18264 L:      linux-media@vger.kernel.org
18265 L:      dri-devel@lists.freedesktop.org
18266 S:      Maintained
18267 T:      git git://anongit.freedesktop.org/drm/drm-misc
18268 F:      Documentation/driver-api/sync_file.rst
18269 F:      drivers/dma-buf/dma-fence*
18270 F:      drivers/dma-buf/sw_sync.c
18271 F:      drivers/dma-buf/sync_*
18272 F:      include/linux/sync_file.h
18273 F:      include/uapi/linux/sync_file.h
18274
18275 SYNOPSYS ARC ARCHITECTURE
18276 M:      Vineet Gupta <vgupta@kernel.org>
18277 L:      linux-snps-arc@lists.infradead.org
18278 S:      Supported
18279 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
18280 F:      Documentation/devicetree/bindings/arc/*
18281 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
18282 F:      arch/arc/
18283 F:      drivers/clocksource/arc_timer.c
18284 F:      drivers/tty/serial/arc_uart.c
18285
18286 SYNOPSYS ARC HSDK SDP pll clock driver
18287 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18288 S:      Supported
18289 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
18290 F:      drivers/clk/clk-hsdk-pll.c
18291
18292 SYNOPSYS ARC SDP clock driver
18293 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18294 S:      Supported
18295 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
18296 F:      drivers/clk/axs10x/*
18297
18298 SYNOPSYS ARC SDP platform support
18299 M:      Alexey Brodkin <abrodkin@synopsys.com>
18300 S:      Supported
18301 F:      Documentation/devicetree/bindings/arc/axs10*
18302 F:      arch/arc/boot/dts/ax*
18303 F:      arch/arc/plat-axs10x
18304
18305 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
18306 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18307 S:      Supported
18308 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
18309 F:      drivers/reset/reset-axs10x.c
18310
18311 SYNOPSYS CREG GPIO DRIVER
18312 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18313 S:      Maintained
18314 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
18315 F:      drivers/gpio/gpio-creg-snps.c
18316
18317 SYNOPSYS DESIGNWARE 8250 UART DRIVER
18318 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18319 S:      Maintained
18320 F:      drivers/tty/serial/8250/8250_dw.c
18321 F:      drivers/tty/serial/8250/8250_dwlib.*
18322 F:      drivers/tty/serial/8250/8250_lpss.c
18323
18324 SYNOPSYS DESIGNWARE APB GPIO DRIVER
18325 M:      Hoan Tran <hoan@os.amperecomputing.com>
18326 M:      Serge Semin <fancer.lancer@gmail.com>
18327 L:      linux-gpio@vger.kernel.org
18328 S:      Maintained
18329 F:      Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
18330 F:      drivers/gpio/gpio-dwapb.c
18331
18332 SYNOPSYS DESIGNWARE APB SSI DRIVER
18333 M:      Serge Semin <fancer.lancer@gmail.com>
18334 L:      linux-spi@vger.kernel.org
18335 S:      Supported
18336 F:      Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
18337 F:      drivers/spi/spi-dw*
18338
18339 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
18340 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18341 S:      Maintained
18342 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.yaml
18343 F:      drivers/dma/dw-axi-dmac/
18344
18345 SYNOPSYS DESIGNWARE DMAC DRIVER
18346 M:      Viresh Kumar <vireshk@kernel.org>
18347 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18348 S:      Maintained
18349 F:      Documentation/devicetree/bindings/dma/snps,dma-spear1340.yaml
18350 F:      drivers/dma/dw/
18351 F:      include/dt-bindings/dma/dw-dmac.h
18352 F:      include/linux/dma/dw.h
18353 F:      include/linux/platform_data/dma-dw.h
18354
18355 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
18356 M:      Jose Abreu <Jose.Abreu@synopsys.com>
18357 L:      netdev@vger.kernel.org
18358 S:      Supported
18359 F:      drivers/net/ethernet/synopsys/
18360
18361 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
18362 M:      Jose Abreu <Jose.Abreu@synopsys.com>
18363 L:      netdev@vger.kernel.org
18364 S:      Supported
18365 F:      drivers/net/pcs/pcs-xpcs.c
18366 F:      drivers/net/pcs/pcs-xpcs.h
18367 F:      include/linux/pcs/pcs-xpcs.h
18368
18369 SYNOPSYS DESIGNWARE I2C DRIVER
18370 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
18371 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18372 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
18373 L:      linux-i2c@vger.kernel.org
18374 S:      Maintained
18375 F:      drivers/i2c/busses/i2c-designware-*
18376
18377 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
18378 M:      Jaehoon Chung <jh80.chung@samsung.com>
18379 L:      linux-mmc@vger.kernel.org
18380 S:      Maintained
18381 F:      drivers/mmc/host/dw_mmc*
18382
18383 SYNOPSYS HSDK RESET CONTROLLER DRIVER
18384 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18385 S:      Supported
18386 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
18387 F:      drivers/reset/reset-hsdk.c
18388 F:      include/dt-bindings/reset/snps,hsdk-reset.h
18389
18390 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
18391 M:      Prabu Thangamuthu <prabu.t@synopsys.com>
18392 M:      Manjunath M B <manjumb@synopsys.com>
18393 L:      linux-mmc@vger.kernel.org
18394 S:      Maintained
18395 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
18396
18397 SYSTEM CONFIGURATION (SYSCON)
18398 M:      Lee Jones <lee.jones@linaro.org>
18399 M:      Arnd Bergmann <arnd@arndb.de>
18400 S:      Supported
18401 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
18402 F:      drivers/mfd/syscon.c
18403
18404 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
18405 M:      Sudeep Holla <sudeep.holla@arm.com>
18406 R:      Cristian Marussi <cristian.marussi@arm.com>
18407 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18408 S:      Maintained
18409 F:      Documentation/devicetree/bindings/firmware/arm,sc[mp]i.yaml
18410 F:      drivers/clk/clk-sc[mp]i.c
18411 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
18412 F:      drivers/firmware/arm_scmi/
18413 F:      drivers/firmware/arm_scpi.c
18414 F:      drivers/regulator/scmi-regulator.c
18415 F:      drivers/reset/reset-scmi.c
18416 F:      include/linux/sc[mp]i_protocol.h
18417 F:      include/trace/events/scmi.h
18418 F:      include/uapi/linux/virtio_scmi.h
18419
18420 SYSTEM RESET/SHUTDOWN DRIVERS
18421 M:      Sebastian Reichel <sre@kernel.org>
18422 L:      linux-pm@vger.kernel.org
18423 S:      Maintained
18424 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
18425 F:      Documentation/devicetree/bindings/power/reset/
18426 F:      drivers/power/reset/
18427
18428 SYSTEM TRACE MODULE CLASS
18429 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
18430 S:      Maintained
18431 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
18432 F:      Documentation/trace/stm.rst
18433 F:      drivers/hwtracing/stm/
18434 F:      include/linux/stm.h
18435 F:      include/uapi/linux/stm.h
18436
18437 SYSTEM76 ACPI DRIVER
18438 M:      Jeremy Soller <jeremy@system76.com>
18439 M:      System76 Product Development <productdev@system76.com>
18440 L:      platform-driver-x86@vger.kernel.org
18441 S:      Maintained
18442 F:      drivers/platform/x86/system76_acpi.c
18443
18444 SYSV FILESYSTEM
18445 M:      Christoph Hellwig <hch@infradead.org>
18446 S:      Maintained
18447 F:      Documentation/filesystems/sysv-fs.rst
18448 F:      fs/sysv/
18449 F:      include/linux/sysv_fs.h
18450
18451 TASKSTATS STATISTICS INTERFACE
18452 M:      Balbir Singh <bsingharora@gmail.com>
18453 S:      Maintained
18454 F:      Documentation/accounting/taskstats*
18455 F:      include/linux/taskstats*
18456 F:      kernel/taskstats.c
18457
18458 TC subsystem
18459 M:      Jamal Hadi Salim <jhs@mojatatu.com>
18460 M:      Cong Wang <xiyou.wangcong@gmail.com>
18461 M:      Jiri Pirko <jiri@resnulli.us>
18462 L:      netdev@vger.kernel.org
18463 S:      Maintained
18464 F:      include/net/pkt_cls.h
18465 F:      include/net/pkt_sched.h
18466 F:      include/net/tc_act/
18467 F:      include/uapi/linux/pkt_cls.h
18468 F:      include/uapi/linux/pkt_sched.h
18469 F:      include/uapi/linux/tc_act/
18470 F:      include/uapi/linux/tc_ematch/
18471 F:      net/sched/
18472
18473 TC90522 MEDIA DRIVER
18474 M:      Akihiro Tsukada <tskd08@gmail.com>
18475 L:      linux-media@vger.kernel.org
18476 S:      Odd Fixes
18477 F:      drivers/media/dvb-frontends/tc90522*
18478
18479 TCP LOW PRIORITY MODULE
18480 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
18481 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
18482 S:      Maintained
18483 W:      http://tcp-lp-mod.sourceforge.net/
18484 F:      net/ipv4/tcp_lp.c
18485
18486 TDA10071 MEDIA DRIVER
18487 M:      Antti Palosaari <crope@iki.fi>
18488 L:      linux-media@vger.kernel.org
18489 S:      Maintained
18490 W:      https://linuxtv.org
18491 W:      http://palosaari.fi/linux/
18492 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18493 T:      git git://linuxtv.org/anttip/media_tree.git
18494 F:      drivers/media/dvb-frontends/tda10071*
18495
18496 TDA18212 MEDIA DRIVER
18497 M:      Antti Palosaari <crope@iki.fi>
18498 L:      linux-media@vger.kernel.org
18499 S:      Maintained
18500 W:      https://linuxtv.org
18501 W:      http://palosaari.fi/linux/
18502 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18503 T:      git git://linuxtv.org/anttip/media_tree.git
18504 F:      drivers/media/tuners/tda18212*
18505
18506 TDA18218 MEDIA DRIVER
18507 M:      Antti Palosaari <crope@iki.fi>
18508 L:      linux-media@vger.kernel.org
18509 S:      Maintained
18510 W:      https://linuxtv.org
18511 W:      http://palosaari.fi/linux/
18512 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18513 T:      git git://linuxtv.org/anttip/media_tree.git
18514 F:      drivers/media/tuners/tda18218*
18515
18516 TDA18250 MEDIA DRIVER
18517 M:      Olli Salonen <olli.salonen@iki.fi>
18518 L:      linux-media@vger.kernel.org
18519 S:      Maintained
18520 W:      https://linuxtv.org
18521 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18522 T:      git git://linuxtv.org/media_tree.git
18523 F:      drivers/media/tuners/tda18250*
18524
18525 TDA18271 MEDIA DRIVER
18526 M:      Michael Krufky <mkrufky@linuxtv.org>
18527 L:      linux-media@vger.kernel.org
18528 S:      Maintained
18529 W:      https://linuxtv.org
18530 W:      http://github.com/mkrufky
18531 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18532 T:      git git://linuxtv.org/mkrufky/tuners.git
18533 F:      drivers/media/tuners/tda18271*
18534
18535 TDA1997x MEDIA DRIVER
18536 M:      Tim Harvey <tharvey@gateworks.com>
18537 L:      linux-media@vger.kernel.org
18538 S:      Maintained
18539 W:      https://linuxtv.org
18540 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18541 F:      drivers/media/i2c/tda1997x.*
18542
18543 TDA827x MEDIA DRIVER
18544 M:      Michael Krufky <mkrufky@linuxtv.org>
18545 L:      linux-media@vger.kernel.org
18546 S:      Maintained
18547 W:      https://linuxtv.org
18548 W:      http://github.com/mkrufky
18549 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18550 T:      git git://linuxtv.org/mkrufky/tuners.git
18551 F:      drivers/media/tuners/tda8290.*
18552
18553 TDA8290 MEDIA DRIVER
18554 M:      Michael Krufky <mkrufky@linuxtv.org>
18555 L:      linux-media@vger.kernel.org
18556 S:      Maintained
18557 W:      https://linuxtv.org
18558 W:      http://github.com/mkrufky
18559 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18560 T:      git git://linuxtv.org/mkrufky/tuners.git
18561 F:      drivers/media/tuners/tda8290.*
18562
18563 TDA9840 MEDIA DRIVER
18564 M:      Hans Verkuil <hverkuil@xs4all.nl>
18565 L:      linux-media@vger.kernel.org
18566 S:      Maintained
18567 W:      https://linuxtv.org
18568 T:      git git://linuxtv.org/media_tree.git
18569 F:      drivers/media/i2c/tda9840*
18570
18571 TEA5761 TUNER DRIVER
18572 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18573 L:      linux-media@vger.kernel.org
18574 S:      Odd fixes
18575 W:      https://linuxtv.org
18576 T:      git git://linuxtv.org/media_tree.git
18577 F:      drivers/media/tuners/tea5761.*
18578
18579 TEA5767 TUNER DRIVER
18580 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18581 L:      linux-media@vger.kernel.org
18582 S:      Maintained
18583 W:      https://linuxtv.org
18584 T:      git git://linuxtv.org/media_tree.git
18585 F:      drivers/media/tuners/tea5767.*
18586
18587 TEA6415C MEDIA DRIVER
18588 M:      Hans Verkuil <hverkuil@xs4all.nl>
18589 L:      linux-media@vger.kernel.org
18590 S:      Maintained
18591 W:      https://linuxtv.org
18592 T:      git git://linuxtv.org/media_tree.git
18593 F:      drivers/media/i2c/tea6415c*
18594
18595 TEA6420 MEDIA DRIVER
18596 M:      Hans Verkuil <hverkuil@xs4all.nl>
18597 L:      linux-media@vger.kernel.org
18598 S:      Maintained
18599 W:      https://linuxtv.org
18600 T:      git git://linuxtv.org/media_tree.git
18601 F:      drivers/media/i2c/tea6420*
18602
18603 TEAM DRIVER
18604 M:      Jiri Pirko <jiri@resnulli.us>
18605 L:      netdev@vger.kernel.org
18606 S:      Supported
18607 F:      drivers/net/team/
18608 F:      include/linux/if_team.h
18609 F:      include/uapi/linux/if_team.h
18610
18611 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
18612 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
18613 S:      Maintained
18614 F:      arch/x86/platform/ts5500/
18615
18616 TECHNOTREND USB IR RECEIVER
18617 M:      Sean Young <sean@mess.org>
18618 L:      linux-media@vger.kernel.org
18619 S:      Maintained
18620 F:      drivers/media/rc/ttusbir.c
18621
18622 TECHWELL TW9910 VIDEO DECODER
18623 L:      linux-media@vger.kernel.org
18624 S:      Orphan
18625 F:      drivers/media/i2c/tw9910.c
18626 F:      include/media/i2c/tw9910.h
18627
18628 TEE SUBSYSTEM
18629 M:      Jens Wiklander <jens.wiklander@linaro.org>
18630 R:      Sumit Garg <sumit.garg@linaro.org>
18631 L:      op-tee@lists.trustedfirmware.org
18632 S:      Maintained
18633 F:      Documentation/staging/tee.rst
18634 F:      drivers/tee/
18635 F:      include/linux/tee_drv.h
18636 F:      include/uapi/linux/tee.h
18637
18638 TEGRA ARCHITECTURE SUPPORT
18639 M:      Thierry Reding <thierry.reding@gmail.com>
18640 M:      Jonathan Hunter <jonathanh@nvidia.com>
18641 L:      linux-tegra@vger.kernel.org
18642 S:      Supported
18643 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
18644 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
18645 N:      [^a-z]tegra
18646
18647 TEGRA CLOCK DRIVER
18648 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
18649 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
18650 S:      Supported
18651 F:      drivers/clk/tegra/
18652
18653 TEGRA DMA DRIVERS
18654 M:      Laxman Dewangan <ldewangan@nvidia.com>
18655 M:      Jon Hunter <jonathanh@nvidia.com>
18656 S:      Supported
18657 F:      drivers/dma/tegra*
18658
18659 TEGRA I2C DRIVER
18660 M:      Laxman Dewangan <ldewangan@nvidia.com>
18661 R:      Dmitry Osipenko <digetx@gmail.com>
18662 S:      Supported
18663 F:      drivers/i2c/busses/i2c-tegra.c
18664
18665 TEGRA IOMMU DRIVERS
18666 M:      Thierry Reding <thierry.reding@gmail.com>
18667 R:      Krishna Reddy <vdumpa@nvidia.com>
18668 L:      linux-tegra@vger.kernel.org
18669 S:      Supported
18670 F:      drivers/iommu/arm/arm-smmu/arm-smmu-nvidia.c
18671 F:      drivers/iommu/tegra*
18672
18673 TEGRA KBC DRIVER
18674 M:      Laxman Dewangan <ldewangan@nvidia.com>
18675 S:      Supported
18676 F:      drivers/input/keyboard/tegra-kbc.c
18677
18678 TEGRA NAND DRIVER
18679 M:      Stefan Agner <stefan@agner.ch>
18680 M:      Lucas Stach <dev@lynxeye.de>
18681 S:      Maintained
18682 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
18683 F:      drivers/mtd/nand/raw/tegra_nand.c
18684
18685 TEGRA PWM DRIVER
18686 M:      Thierry Reding <thierry.reding@gmail.com>
18687 S:      Supported
18688 F:      drivers/pwm/pwm-tegra.c
18689
18690 TEGRA SERIAL DRIVER
18691 M:      Laxman Dewangan <ldewangan@nvidia.com>
18692 S:      Supported
18693 F:      drivers/tty/serial/serial-tegra.c
18694
18695 TEGRA SPI DRIVER
18696 M:      Laxman Dewangan <ldewangan@nvidia.com>
18697 S:      Supported
18698 F:      drivers/spi/spi-tegra*
18699
18700 TEGRA QUAD SPI DRIVER
18701 M:      Thierry Reding <thierry.reding@gmail.com>
18702 M:      Jonathan Hunter <jonathanh@nvidia.com>
18703 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
18704 L:      linux-tegra@vger.kernel.org
18705 S:      Maintained
18706 F:      drivers/spi/spi-tegra210-quad.c
18707
18708 TEGRA VIDEO DRIVER
18709 M:      Thierry Reding <thierry.reding@gmail.com>
18710 M:      Jonathan Hunter <jonathanh@nvidia.com>
18711 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
18712 L:      linux-media@vger.kernel.org
18713 L:      linux-tegra@vger.kernel.org
18714 S:      Maintained
18715 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
18716 F:      drivers/staging/media/tegra-video/
18717
18718 TEGRA XUSB PADCTL DRIVER
18719 M:      JC Kuo <jckuo@nvidia.com>
18720 S:      Supported
18721 F:      drivers/phy/tegra/xusb*
18722
18723 TEHUTI ETHERNET DRIVER
18724 M:      Andy Gospodarek <andy@greyhouse.net>
18725 L:      netdev@vger.kernel.org
18726 S:      Supported
18727 F:      drivers/net/ethernet/tehuti/*
18728
18729 TELECOM CLOCK DRIVER FOR MCPL0010
18730 M:      Mark Gross <markgross@kernel.org>
18731 S:      Supported
18732 F:      drivers/char/tlclk.c
18733
18734 TEMPO SEMICONDUCTOR DRIVERS
18735 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
18736 S:      Maintained
18737 F:      Documentation/devicetree/bindings/sound/tscs*.txt
18738 F:      sound/soc/codecs/tscs*.c
18739 F:      sound/soc/codecs/tscs*.h
18740
18741 TENSILICA XTENSA PORT (xtensa)
18742 M:      Chris Zankel <chris@zankel.net>
18743 M:      Max Filippov <jcmvbkbc@gmail.com>
18744 L:      linux-xtensa@linux-xtensa.org
18745 S:      Maintained
18746 T:      git git://github.com/czankel/xtensa-linux.git
18747 F:      arch/xtensa/
18748 F:      drivers/irqchip/irq-xtensa-*
18749
18750 TEXAS INSTRUMENTS ASoC DRIVERS
18751 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
18752 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18753 S:      Maintained
18754 F:      sound/soc/ti/
18755
18756 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
18757 M:      Ricardo Ribalda <ribalda@kernel.org>
18758 L:      linux-iio@vger.kernel.org
18759 S:      Supported
18760 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.yaml
18761 F:      drivers/iio/dac/ti-dac7612.c
18762
18763 TEXAS INSTRUMENTS DMA DRIVERS
18764 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
18765 L:      dmaengine@vger.kernel.org
18766 S:      Maintained
18767 F:      Documentation/devicetree/bindings/dma/ti-dma-crossbar.txt
18768 F:      Documentation/devicetree/bindings/dma/ti-edma.txt
18769 F:      Documentation/devicetree/bindings/dma/ti/
18770 F:      drivers/dma/ti/
18771 X:      drivers/dma/ti/cppi41.c
18772 F:      include/linux/dma/k3-udma-glue.h
18773 F:      include/linux/dma/ti-cppi5.h
18774 F:      include/linux/dma/k3-psil.h
18775
18776 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
18777 M:      Nishanth Menon <nm@ti.com>
18778 M:      Tero Kristo <kristo@kernel.org>
18779 M:      Santosh Shilimkar <ssantosh@kernel.org>
18780 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18781 S:      Maintained
18782 F:      Documentation/devicetree/bindings/arm/keystone/ti,k3-sci-common.yaml
18783 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.yaml
18784 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.yaml
18785 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.yaml
18786 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.yaml
18787 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.yaml
18788 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.yaml
18789 F:      drivers/clk/keystone/sci-clk.c
18790 F:      drivers/firmware/ti_sci*
18791 F:      drivers/irqchip/irq-ti-sci-inta.c
18792 F:      drivers/irqchip/irq-ti-sci-intr.c
18793 F:      drivers/reset/reset-ti-sci.c
18794 F:      drivers/soc/ti/ti_sci_inta_msi.c
18795 F:      drivers/soc/ti/ti_sci_pm_domains.c
18796 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
18797 F:      include/linux/soc/ti/ti_sci_inta_msi.h
18798 F:      include/linux/soc/ti/ti_sci_protocol.h
18799
18800 TEXAS INSTRUMENTS TPS23861 PoE PSE DRIVER
18801 M:      Robert Marko <robert.marko@sartura.hr>
18802 M:      Luka Perkov <luka.perkov@sartura.hr>
18803 L:      linux-hwmon@vger.kernel.org
18804 S:      Maintained
18805 F:      Documentation/devicetree/bindings/hwmon/ti,tps23861.yaml
18806 F:      Documentation/hwmon/tps23861.rst
18807 F:      drivers/hwmon/tps23861.c
18808
18809 TEXAS INSTRUMENTS' TMP117 TEMPERATURE SENSOR DRIVER
18810 M:      Puranjay Mohan <puranjay12@gmail.com>
18811 L:      linux-iio@vger.kernel.org
18812 S:      Supported
18813 F:      Documentation/devicetree/bindings/iio/temperature/ti,tmp117.yaml
18814 F:      drivers/iio/temperature/tmp117.c
18815
18816 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
18817 M:      Hans Verkuil <hverkuil@xs4all.nl>
18818 L:      linux-media@vger.kernel.org
18819 S:      Maintained
18820 W:      https://linuxtv.org
18821 T:      git git://linuxtv.org/media_tree.git
18822 F:      drivers/media/radio/radio-raremono.c
18823
18824 THERMAL
18825 M:      Rafael J. Wysocki <rafael@kernel.org>
18826 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
18827 R:      Amit Kucheria <amitk@kernel.org>
18828 R:      Zhang Rui <rui.zhang@intel.com>
18829 L:      linux-pm@vger.kernel.org
18830 S:      Supported
18831 Q:      https://patchwork.kernel.org/project/linux-pm/list/
18832 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git thermal
18833 F:      Documentation/ABI/testing/sysfs-class-thermal
18834 F:      Documentation/devicetree/bindings/thermal/
18835 F:      Documentation/driver-api/thermal/
18836 F:      drivers/thermal/
18837 F:      include/linux/cpu_cooling.h
18838 F:      include/linux/thermal.h
18839 F:      include/uapi/linux/thermal.h
18840 F:      tools/thermal/
18841
18842 THERMAL DRIVER FOR AMLOGIC SOCS
18843 M:      Guillaume La Roque <glaroque@baylibre.com>
18844 L:      linux-pm@vger.kernel.org
18845 L:      linux-amlogic@lists.infradead.org
18846 S:      Supported
18847 W:      http://linux-meson.com/
18848 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
18849 F:      drivers/thermal/amlogic_thermal.c
18850
18851 THERMAL/CPU_COOLING
18852 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
18853 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
18854 M:      Viresh Kumar <viresh.kumar@linaro.org>
18855 R:      Lukasz Luba <lukasz.luba@arm.com>
18856 L:      linux-pm@vger.kernel.org
18857 S:      Supported
18858 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
18859 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
18860 F:      drivers/thermal/cpufreq_cooling.c
18861 F:      drivers/thermal/cpuidle_cooling.c
18862 F:      include/linux/cpu_cooling.h
18863
18864 THERMAL/POWER_ALLOCATOR
18865 M:      Lukasz Luba <lukasz.luba@arm.com>
18866 L:      linux-pm@vger.kernel.org
18867 S:      Maintained
18868 F:      Documentation/driver-api/thermal/power_allocator.rst
18869 F:      drivers/thermal/gov_power_allocator.c
18870 F:      include/trace/events/thermal_power_allocator.h
18871
18872 THINKPAD ACPI EXTRAS DRIVER
18873 M:      Henrique de Moraes Holschuh <hmh@hmh.eng.br>
18874 L:      ibm-acpi-devel@lists.sourceforge.net
18875 L:      platform-driver-x86@vger.kernel.org
18876 S:      Maintained
18877 W:      http://ibm-acpi.sourceforge.net
18878 W:      http://thinkwiki.org/wiki/Ibm-acpi
18879 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
18880 F:      drivers/platform/x86/thinkpad_acpi.c
18881
18882 THINKPAD LMI DRIVER
18883 M:      Mark Pearson <markpearson@lenovo.com>
18884 L:      platform-driver-x86@vger.kernel.org
18885 S:      Maintained
18886 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
18887 F:      drivers/platform/x86/think-lmi.?
18888
18889 THUNDERBOLT DMA TRAFFIC TEST DRIVER
18890 M:      Isaac Hazan <isaac.hazan@intel.com>
18891 L:      linux-usb@vger.kernel.org
18892 S:      Maintained
18893 F:      drivers/thunderbolt/dma_test.c
18894
18895 THUNDERBOLT DRIVER
18896 M:      Andreas Noever <andreas.noever@gmail.com>
18897 M:      Michael Jamet <michael.jamet@intel.com>
18898 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
18899 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
18900 L:      linux-usb@vger.kernel.org
18901 S:      Maintained
18902 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
18903 F:      Documentation/admin-guide/thunderbolt.rst
18904 F:      drivers/thunderbolt/
18905 F:      include/linux/thunderbolt.h
18906
18907 THUNDERBOLT NETWORK DRIVER
18908 M:      Michael Jamet <michael.jamet@intel.com>
18909 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
18910 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
18911 L:      netdev@vger.kernel.org
18912 S:      Maintained
18913 F:      drivers/net/thunderbolt.c
18914
18915 THUNDERX GPIO DRIVER
18916 M:      Robert Richter <rric@kernel.org>
18917 S:      Odd Fixes
18918 F:      drivers/gpio/gpio-thunderx.c
18919
18920 TI ADS131E0X ADC SERIES DRIVER
18921 M:      Tomislav Denis <tomislav.denis@avl.com>
18922 L:      linux-iio@vger.kernel.org
18923 S:      Maintained
18924 F:      Documentation/devicetree/bindings/iio/adc/ti,ads131e08.yaml
18925 F:      drivers/iio/adc/ti-ads131e08.c
18926
18927 TI AM437X VPFE DRIVER
18928 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
18929 L:      linux-media@vger.kernel.org
18930 S:      Maintained
18931 W:      https://linuxtv.org
18932 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18933 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
18934 F:      drivers/media/platform/am437x/
18935
18936 TI BANDGAP AND THERMAL DRIVER
18937 M:      Eduardo Valentin <edubezval@gmail.com>
18938 M:      Keerthy <j-keerthy@ti.com>
18939 L:      linux-pm@vger.kernel.org
18940 L:      linux-omap@vger.kernel.org
18941 S:      Maintained
18942 F:      drivers/thermal/ti-soc-thermal/
18943
18944 TI BQ27XXX POWER SUPPLY DRIVER
18945 F:      drivers/power/supply/bq27xxx_battery.c
18946 F:      drivers/power/supply/bq27xxx_battery_i2c.c
18947 F:      include/linux/power/bq27xxx_battery.h
18948
18949 TI CDCE706 CLOCK DRIVER
18950 M:      Max Filippov <jcmvbkbc@gmail.com>
18951 S:      Maintained
18952 F:      drivers/clk/clk-cdce706.c
18953
18954 TI CLOCK DRIVER
18955 M:      Tero Kristo <kristo@kernel.org>
18956 L:      linux-omap@vger.kernel.org
18957 S:      Odd Fixes
18958 F:      drivers/clk/ti/
18959 F:      include/linux/clk/ti.h
18960
18961 TI DAVINCI MACHINE SUPPORT
18962 M:      Sekhar Nori <nsekhar@ti.com>
18963 R:      Bartosz Golaszewski <brgl@bgdev.pl>
18964 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18965 S:      Supported
18966 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
18967 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
18968 F:      arch/arm/boot/dts/da850*
18969 F:      arch/arm/mach-davinci/
18970 F:      drivers/i2c/busses/i2c-davinci.c
18971
18972 TI DAVINCI SERIES CLOCK DRIVER
18973 M:      David Lechner <david@lechnology.com>
18974 R:      Sekhar Nori <nsekhar@ti.com>
18975 S:      Maintained
18976 F:      Documentation/devicetree/bindings/clock/ti/davinci/
18977 F:      drivers/clk/davinci/
18978
18979 TI DAVINCI SERIES GPIO DRIVER
18980 M:      Keerthy <j-keerthy@ti.com>
18981 L:      linux-gpio@vger.kernel.org
18982 S:      Maintained
18983 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.yaml
18984 F:      drivers/gpio/gpio-davinci.c
18985
18986 TI DAVINCI SERIES MEDIA DRIVER
18987 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
18988 L:      linux-media@vger.kernel.org
18989 S:      Maintained
18990 W:      https://linuxtv.org
18991 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18992 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
18993 F:      drivers/media/platform/davinci/
18994 F:      include/media/davinci/
18995
18996 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
18997 R:      David Lechner <david@lechnology.com>
18998 L:      linux-iio@vger.kernel.org
18999 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
19000 F:      drivers/counter/ti-eqep.c
19001
19002 TI ETHERNET SWITCH DRIVER (CPSW)
19003 R:      Grygorii Strashko <grygorii.strashko@ti.com>
19004 L:      linux-omap@vger.kernel.org
19005 L:      netdev@vger.kernel.org
19006 S:      Maintained
19007 F:      drivers/net/ethernet/ti/cpsw*
19008 F:      drivers/net/ethernet/ti/davinci*
19009
19010 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
19011 M:      Alex Dubov <oakad@yahoo.com>
19012 S:      Maintained
19013 W:      http://tifmxx.berlios.de/
19014 F:      drivers/memstick/host/tifm_ms.c
19015 F:      drivers/misc/tifm*
19016 F:      drivers/mmc/host/tifm_sd.c
19017 F:      include/linux/tifm.h
19018
19019 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
19020 M:      Santosh Shilimkar <ssantosh@kernel.org>
19021 L:      linux-kernel@vger.kernel.org
19022 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19023 S:      Maintained
19024 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
19025 F:      drivers/soc/ti/*
19026
19027 TI LM49xxx FAMILY ASoC CODEC DRIVERS
19028 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
19029 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
19030 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19031 S:      Maintained
19032 F:      sound/soc/codecs/isabelle*
19033 F:      sound/soc/codecs/lm49453*
19034
19035 TI PCM3060 ASoC CODEC DRIVER
19036 M:      Kirill Marinushkin <kmarinushkin@birdec.com>
19037 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19038 S:      Maintained
19039 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
19040 F:      sound/soc/codecs/pcm3060*
19041
19042 TI TAS571X FAMILY ASoC CODEC DRIVER
19043 M:      Kevin Cernekee <cernekee@chromium.org>
19044 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19045 S:      Odd Fixes
19046 F:      sound/soc/codecs/tas571x*
19047
19048 TI TRF7970A NFC DRIVER
19049 M:      Mark Greer <mgreer@animalcreek.com>
19050 L:      linux-wireless@vger.kernel.org
19051 L:      linux-nfc@lists.01.org (subscribers-only)
19052 S:      Supported
19053 F:      Documentation/devicetree/bindings/net/nfc/ti,trf7970a.yaml
19054 F:      drivers/nfc/trf7970a.c
19055
19056 TI TSC2046 ADC DRIVER
19057 M:      Oleksij Rempel <o.rempel@pengutronix.de>
19058 R:      kernel@pengutronix.de
19059 L:      linux-iio@vger.kernel.org
19060 S:      Maintained
19061 F:      Documentation/devicetree/bindings/iio/adc/ti,tsc2046.yaml
19062 F:      drivers/iio/adc/ti-tsc2046.c
19063
19064 TI TWL4030 SERIES SOC CODEC DRIVER
19065 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
19066 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19067 S:      Maintained
19068 F:      sound/soc/codecs/twl4030*
19069
19070 TI VPE/CAL DRIVERS
19071 M:      Benoit Parrot <bparrot@ti.com>
19072 L:      linux-media@vger.kernel.org
19073 S:      Maintained
19074 W:      http://linuxtv.org/
19075 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19076 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
19077 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
19078 F:      drivers/media/platform/ti-vpe/
19079
19080 TI WILINK WIRELESS DRIVERS
19081 L:      linux-wireless@vger.kernel.org
19082 S:      Orphan
19083 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
19084 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
19085 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
19086 F:      drivers/net/wireless/ti/
19087 F:      include/linux/wl12xx.h
19088
19089 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
19090 M:      John Stultz <john.stultz@linaro.org>
19091 M:      Thomas Gleixner <tglx@linutronix.de>
19092 R:      Stephen Boyd <sboyd@kernel.org>
19093 L:      linux-kernel@vger.kernel.org
19094 S:      Supported
19095 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
19096 F:      include/linux/clocksource.h
19097 F:      include/linux/time.h
19098 F:      include/linux/timex.h
19099 F:      include/uapi/linux/time.h
19100 F:      include/uapi/linux/timex.h
19101 F:      kernel/time/alarmtimer.c
19102 F:      kernel/time/clocksource.c
19103 F:      kernel/time/ntp.c
19104 F:      kernel/time/time*.c
19105 F:      tools/testing/selftests/timers/
19106
19107 TIPC NETWORK LAYER
19108 M:      Jon Maloy <jmaloy@redhat.com>
19109 M:      Ying Xue <ying.xue@windriver.com>
19110 L:      netdev@vger.kernel.org (core kernel code)
19111 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
19112 S:      Maintained
19113 W:      http://tipc.sourceforge.net/
19114 F:      include/uapi/linux/tipc*.h
19115 F:      net/tipc/
19116
19117 TLAN NETWORK DRIVER
19118 M:      Samuel Chessman <chessman@tux.org>
19119 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
19120 S:      Maintained
19121 W:      http://sourceforge.net/projects/tlan/
19122 F:      Documentation/networking/device_drivers/ethernet/ti/tlan.rst
19123 F:      drivers/net/ethernet/ti/tlan.*
19124
19125 TM6000 VIDEO4LINUX DRIVER
19126 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19127 L:      linux-media@vger.kernel.org
19128 S:      Odd fixes
19129 W:      https://linuxtv.org
19130 T:      git git://linuxtv.org/media_tree.git
19131 F:      Documentation/admin-guide/media/tm6000*
19132 F:      drivers/media/usb/tm6000/
19133
19134 TMIO/SDHI MMC DRIVER
19135 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
19136 L:      linux-mmc@vger.kernel.org
19137 S:      Supported
19138 F:      drivers/mmc/host/renesas_sdhi*
19139 F:      drivers/mmc/host/tmio_mmc*
19140 F:      include/linux/mfd/tmio.h
19141
19142 TMP401 HARDWARE MONITOR DRIVER
19143 M:      Guenter Roeck <linux@roeck-us.net>
19144 L:      linux-hwmon@vger.kernel.org
19145 S:      Maintained
19146 F:      Documentation/hwmon/tmp401.rst
19147 F:      drivers/hwmon/tmp401.c
19148
19149 TMP513 HARDWARE MONITOR DRIVER
19150 M:      Eric Tremblay <etremblay@distech-controls.com>
19151 L:      linux-hwmon@vger.kernel.org
19152 S:      Maintained
19153 F:      Documentation/hwmon/tmp513.rst
19154 F:      drivers/hwmon/tmp513.c
19155
19156 TMPFS (SHMEM FILESYSTEM)
19157 M:      Hugh Dickins <hughd@google.com>
19158 L:      linux-mm@kvack.org
19159 S:      Maintained
19160 F:      include/linux/shmem_fs.h
19161 F:      mm/shmem.c
19162
19163 TOMOYO SECURITY MODULE
19164 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
19165 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
19166 L:      tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
19167 L:      tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
19168 L:      tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
19169 L:      tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
19170 S:      Maintained
19171 W:      https://tomoyo.osdn.jp/
19172 F:      security/tomoyo/
19173
19174 TOPSTAR LAPTOP EXTRAS DRIVER
19175 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
19176 L:      platform-driver-x86@vger.kernel.org
19177 S:      Maintained
19178 F:      drivers/platform/x86/topstar-laptop.c
19179
19180 TORTURE-TEST MODULES
19181 M:      Davidlohr Bueso <dave@stgolabs.net>
19182 M:      "Paul E. McKenney" <paulmck@kernel.org>
19183 M:      Josh Triplett <josh@joshtriplett.org>
19184 L:      linux-kernel@vger.kernel.org
19185 S:      Supported
19186 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
19187 F:      Documentation/RCU/torture.rst
19188 F:      kernel/locking/locktorture.c
19189 F:      kernel/rcu/rcuscale.c
19190 F:      kernel/rcu/rcutorture.c
19191 F:      kernel/rcu/refscale.c
19192 F:      kernel/torture.c
19193
19194 TOSHIBA ACPI EXTRAS DRIVER
19195 M:      Azael Avalos <coproscefalo@gmail.com>
19196 L:      platform-driver-x86@vger.kernel.org
19197 S:      Maintained
19198 F:      drivers/platform/x86/toshiba_acpi.c
19199
19200 TOSHIBA BLUETOOTH DRIVER
19201 M:      Azael Avalos <coproscefalo@gmail.com>
19202 L:      platform-driver-x86@vger.kernel.org
19203 S:      Maintained
19204 F:      drivers/platform/x86/toshiba_bluetooth.c
19205
19206 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
19207 M:      Azael Avalos <coproscefalo@gmail.com>
19208 L:      platform-driver-x86@vger.kernel.org
19209 S:      Maintained
19210 F:      drivers/platform/x86/toshiba_haps.c
19211
19212 TOSHIBA SMM DRIVER
19213 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
19214 S:      Maintained
19215 W:      http://www.buzzard.org.uk/toshiba/
19216 F:      drivers/char/toshiba.c
19217 F:      include/linux/toshiba.h
19218 F:      include/uapi/linux/toshiba.h
19219
19220 TOSHIBA TC358743 DRIVER
19221 M:      Mats Randgaard <matrandg@cisco.com>
19222 L:      linux-media@vger.kernel.org
19223 S:      Maintained
19224 F:      drivers/media/i2c/tc358743*
19225 F:      include/media/i2c/tc358743.h
19226
19227 TOSHIBA WMI HOTKEYS DRIVER
19228 M:      Azael Avalos <coproscefalo@gmail.com>
19229 L:      platform-driver-x86@vger.kernel.org
19230 S:      Maintained
19231 F:      drivers/platform/x86/toshiba-wmi.c
19232
19233 TPM DEVICE DRIVER
19234 M:      Peter Huewe <peterhuewe@gmx.de>
19235 M:      Jarkko Sakkinen <jarkko@kernel.org>
19236 R:      Jason Gunthorpe <jgg@ziepe.ca>
19237 L:      linux-integrity@vger.kernel.org
19238 S:      Maintained
19239 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
19240 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
19241 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd.git
19242 F:      drivers/char/tpm/
19243
19244 TRACING
19245 M:      Steven Rostedt <rostedt@goodmis.org>
19246 M:      Ingo Molnar <mingo@redhat.com>
19247 S:      Maintained
19248 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace.git
19249 F:      Documentation/trace/ftrace.rst
19250 F:      arch/*/*/*/ftrace.h
19251 F:      arch/*/kernel/ftrace.c
19252 F:      fs/tracefs/
19253 F:      include/*/ftrace.h
19254 F:      include/linux/trace*.h
19255 F:      include/trace/
19256 F:      kernel/trace/
19257 F:      tools/testing/selftests/ftrace/
19258
19259 TRACING MMIO ACCESSES (MMIOTRACE)
19260 M:      Steven Rostedt <rostedt@goodmis.org>
19261 M:      Ingo Molnar <mingo@kernel.org>
19262 R:      Karol Herbst <karolherbst@gmail.com>
19263 R:      Pekka Paalanen <ppaalanen@gmail.com>
19264 L:      linux-kernel@vger.kernel.org
19265 L:      nouveau@lists.freedesktop.org
19266 S:      Maintained
19267 F:      arch/x86/mm/kmmio.c
19268 F:      arch/x86/mm/mmio-mod.c
19269 F:      arch/x86/mm/testmmiotrace.c
19270 F:      include/linux/mmiotrace.h
19271 F:      kernel/trace/trace_mmiotrace.c
19272
19273 TRACING OS NOISE / LATENCY TRACERS
19274 M:      Steven Rostedt <rostedt@goodmis.org>
19275 M:      Daniel Bristot de Oliveira <bristot@kernel.org>
19276 S:      Maintained
19277 F:      kernel/trace/trace_osnoise.c
19278 F:      include/trace/events/osnoise.h
19279 F:      kernel/trace/trace_hwlat.c
19280 F:      kernel/trace/trace_irqsoff.c
19281 F:      kernel/trace/trace_sched_wakeup.c
19282 F:      Documentation/trace/osnoise-tracer.rst
19283 F:      Documentation/trace/timerlat-tracer.rst
19284 F:      Documentation/trace/hwlat_detector.rst
19285 F:      arch/*/kernel/trace.c
19286
19287 TRADITIONAL CHINESE DOCUMENTATION
19288 M:      Hu Haowen <src.res@email.cn>
19289 L:      linux-doc-tw-discuss@lists.sourceforge.net
19290 S:      Maintained
19291 W:      https://github.com/srcres258/linux-doc
19292 T:      git git://github.com/srcres258/linux-doc.git doc-zh-tw
19293 F:      Documentation/translations/zh_TW/
19294
19295 TRIVIAL PATCHES
19296 M:      Jiri Kosina <trivial@kernel.org>
19297 S:      Maintained
19298 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
19299 K:      ^Subject:.*(?i)trivial
19300
19301 TTY LAYER
19302 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19303 M:      Jiri Slaby <jirislaby@kernel.org>
19304 S:      Supported
19305 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
19306 F:      Documentation/driver-api/serial/
19307 F:      drivers/tty/
19308 F:      drivers/tty/serial/serial_core.c
19309 F:      include/linux/selection.h
19310 F:      include/linux/serial.h
19311 F:      include/linux/serial_core.h
19312 F:      include/linux/sysrq.h
19313 F:      include/linux/tty*.h
19314 F:      include/linux/vt.h
19315 F:      include/linux/vt_*.h
19316 F:      include/uapi/linux/serial.h
19317 F:      include/uapi/linux/serial_core.h
19318 F:      include/uapi/linux/tty.h
19319
19320 TUA9001 MEDIA DRIVER
19321 M:      Antti Palosaari <crope@iki.fi>
19322 L:      linux-media@vger.kernel.org
19323 S:      Maintained
19324 W:      https://linuxtv.org
19325 W:      http://palosaari.fi/linux/
19326 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19327 T:      git git://linuxtv.org/anttip/media_tree.git
19328 F:      drivers/media/tuners/tua9001*
19329
19330 TULIP NETWORK DRIVERS
19331 L:      netdev@vger.kernel.org
19332 L:      linux-parisc@vger.kernel.org
19333 S:      Orphan
19334 F:      drivers/net/ethernet/dec/tulip/
19335
19336 TUN/TAP driver
19337 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
19338 S:      Maintained
19339 W:      http://vtun.sourceforge.net/tun
19340 F:      Documentation/networking/tuntap.rst
19341 F:      arch/um/os-Linux/drivers/
19342
19343 TURBOCHANNEL SUBSYSTEM
19344 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
19345 M:      Ralf Baechle <ralf@linux-mips.org>
19346 L:      linux-mips@vger.kernel.org
19347 S:      Maintained
19348 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
19349 F:      drivers/tc/
19350 F:      include/linux/tc.h
19351
19352 TURBOSTAT UTILITY
19353 M:      "Len Brown" <lenb@kernel.org>
19354 L:      linux-pm@vger.kernel.org
19355 S:      Supported
19356 Q:      https://patchwork.kernel.org/project/linux-pm/list/
19357 B:      https://bugzilla.kernel.org
19358 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
19359 F:      tools/power/x86/turbostat/
19360
19361 TW5864 VIDEO4LINUX DRIVER
19362 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
19363 M:      Anton Sviridenko <anton@corp.bluecherry.net>
19364 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
19365 M:      Andrey Utkin <andrey_utkin@fastmail.com>
19366 L:      linux-media@vger.kernel.org
19367 S:      Supported
19368 F:      drivers/media/pci/tw5864/
19369
19370 TW68 VIDEO4LINUX DRIVER
19371 M:      Hans Verkuil <hverkuil@xs4all.nl>
19372 L:      linux-media@vger.kernel.org
19373 S:      Odd Fixes
19374 W:      https://linuxtv.org
19375 T:      git git://linuxtv.org/media_tree.git
19376 F:      drivers/media/pci/tw68/
19377
19378 TW686X VIDEO4LINUX DRIVER
19379 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
19380 L:      linux-media@vger.kernel.org
19381 S:      Maintained
19382 W:      http://linuxtv.org
19383 T:      git git://linuxtv.org/media_tree.git
19384 F:      drivers/media/pci/tw686x/
19385
19386 UACCE ACCELERATOR FRAMEWORK
19387 M:      Zhangfei Gao <zhangfei.gao@linaro.org>
19388 M:      Zhou Wang <wangzhou1@hisilicon.com>
19389 L:      linux-accelerators@lists.ozlabs.org
19390 L:      linux-kernel@vger.kernel.org
19391 S:      Maintained
19392 F:      Documentation/ABI/testing/sysfs-driver-uacce
19393 F:      Documentation/misc-devices/uacce.rst
19394 F:      drivers/misc/uacce/
19395 F:      include/linux/uacce.h
19396 F:      include/uapi/misc/uacce/
19397
19398 UBI FILE SYSTEM (UBIFS)
19399 M:      Richard Weinberger <richard@nod.at>
19400 L:      linux-mtd@lists.infradead.org
19401 S:      Supported
19402 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
19403 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
19404 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
19405 F:      Documentation/filesystems/ubifs-authentication.rst
19406 F:      Documentation/filesystems/ubifs.rst
19407 F:      fs/ubifs/
19408
19409 UCLINUX (M68KNOMMU AND COLDFIRE)
19410 M:      Greg Ungerer <gerg@linux-m68k.org>
19411 L:      linux-m68k@lists.linux-m68k.org
19412 L:      uclinux-dev@uclinux.org  (subscribers-only)
19413 S:      Maintained
19414 W:      http://www.linux-m68k.org/
19415 W:      http://www.uclinux.org/
19416 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
19417 F:      arch/m68k/*/*_no.*
19418 F:      arch/m68k/68*/
19419 F:      arch/m68k/coldfire/
19420 F:      arch/m68k/include/asm/*_no.*
19421
19422 UDF FILESYSTEM
19423 M:      Jan Kara <jack@suse.com>
19424 S:      Maintained
19425 F:      Documentation/filesystems/udf.rst
19426 F:      fs/udf/
19427
19428 UDRAW TABLET
19429 M:      Bastien Nocera <hadess@hadess.net>
19430 L:      linux-input@vger.kernel.org
19431 S:      Maintained
19432 F:      drivers/hid/hid-udraw-ps3.c
19433
19434 UFS FILESYSTEM
19435 M:      Evgeniy Dushistov <dushistov@mail.ru>
19436 S:      Maintained
19437 F:      Documentation/admin-guide/ufs.rst
19438 F:      fs/ufs/
19439
19440 UHID USERSPACE HID IO DRIVER
19441 M:      David Rheinsberg <david.rheinsberg@gmail.com>
19442 L:      linux-input@vger.kernel.org
19443 S:      Maintained
19444 F:      drivers/hid/uhid.c
19445 F:      include/uapi/linux/uhid.h
19446
19447 ULPI BUS
19448 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19449 L:      linux-usb@vger.kernel.org
19450 S:      Maintained
19451 F:      drivers/usb/common/ulpi.c
19452 F:      include/linux/ulpi/
19453
19454 UNICODE SUBSYSTEM
19455 M:      Gabriel Krisman Bertazi <krisman@collabora.com>
19456 L:      linux-fsdevel@vger.kernel.org
19457 S:      Supported
19458 F:      fs/unicode/
19459
19460 UNIFDEF
19461 M:      Tony Finch <dot@dotat.at>
19462 S:      Maintained
19463 W:      http://dotat.at/prog/unifdef
19464 F:      scripts/unifdef.c
19465
19466 UNIFORM CDROM DRIVER
19467 M:      Phillip Potter <phil@philpotter.co.uk>
19468 S:      Maintained
19469 F:      Documentation/cdrom/
19470 F:      drivers/cdrom/cdrom.c
19471 F:      include/linux/cdrom.h
19472 F:      include/uapi/linux/cdrom.h
19473
19474 UNISYS S-PAR DRIVERS
19475 M:      David Kershner <david.kershner@unisys.com>
19476 L:      sparmaintainer@unisys.com (Unisys internal)
19477 S:      Supported
19478 F:      drivers/staging/unisys/
19479 F:      drivers/visorbus/
19480 F:      include/linux/visorbus.h
19481
19482 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
19483 R:      Alim Akhtar <alim.akhtar@samsung.com>
19484 R:      Avri Altman <avri.altman@wdc.com>
19485 L:      linux-scsi@vger.kernel.org
19486 S:      Supported
19487 F:      Documentation/scsi/ufs.rst
19488 F:      drivers/scsi/ufs/
19489
19490 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
19491 M:      Pedro Sousa <pedrom.sousa@synopsys.com>
19492 L:      linux-scsi@vger.kernel.org
19493 S:      Supported
19494 F:      drivers/scsi/ufs/*dwc*
19495
19496 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
19497 M:      Stanley Chu <stanley.chu@mediatek.com>
19498 L:      linux-scsi@vger.kernel.org
19499 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
19500 S:      Maintained
19501 F:      drivers/scsi/ufs/ufs-mediatek*
19502
19503 UNSORTED BLOCK IMAGES (UBI)
19504 M:      Richard Weinberger <richard@nod.at>
19505 L:      linux-mtd@lists.infradead.org
19506 S:      Supported
19507 W:      http://www.linux-mtd.infradead.org/
19508 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
19509 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
19510 F:      drivers/mtd/ubi/
19511 F:      include/linux/mtd/ubi.h
19512 F:      include/uapi/mtd/ubi-user.h
19513
19514 USB "USBNET" DRIVER FRAMEWORK
19515 M:      Oliver Neukum <oneukum@suse.com>
19516 L:      netdev@vger.kernel.org
19517 S:      Maintained
19518 W:      http://www.linux-usb.org/usbnet
19519 F:      drivers/net/usb/usbnet.c
19520 F:      include/linux/usb/usbnet.h
19521
19522 USB ACM DRIVER
19523 M:      Oliver Neukum <oneukum@suse.com>
19524 L:      linux-usb@vger.kernel.org
19525 S:      Maintained
19526 F:      Documentation/usb/acm.rst
19527 F:      drivers/usb/class/cdc-acm.*
19528
19529 USB APPLE MFI FASTCHARGE DRIVER
19530 M:      Bastien Nocera <hadess@hadess.net>
19531 L:      linux-usb@vger.kernel.org
19532 S:      Maintained
19533 F:      drivers/usb/misc/apple-mfi-fastcharge.c
19534
19535 USB AR5523 WIRELESS DRIVER
19536 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
19537 L:      linux-wireless@vger.kernel.org
19538 S:      Maintained
19539 F:      drivers/net/wireless/ath/ar5523/
19540
19541 USB ATTACHED SCSI
19542 M:      Oliver Neukum <oneukum@suse.com>
19543 L:      linux-usb@vger.kernel.org
19544 L:      linux-scsi@vger.kernel.org
19545 S:      Maintained
19546 F:      drivers/usb/storage/uas.c
19547
19548 USB CDC ETHERNET DRIVER
19549 M:      Oliver Neukum <oliver@neukum.org>
19550 L:      linux-usb@vger.kernel.org
19551 S:      Maintained
19552 F:      drivers/net/usb/cdc_*.c
19553 F:      include/uapi/linux/usb/cdc.h
19554
19555 USB CHAOSKEY DRIVER
19556 M:      Keith Packard <keithp@keithp.com>
19557 L:      linux-usb@vger.kernel.org
19558 S:      Maintained
19559 F:      drivers/usb/misc/chaoskey.c
19560
19561 USB CYPRESS C67X00 DRIVER
19562 L:      linux-usb@vger.kernel.org
19563 S:      Orphan
19564 F:      drivers/usb/c67x00/
19565
19566 USB DAVICOM DM9601 DRIVER
19567 M:      Peter Korsgaard <peter@korsgaard.com>
19568 L:      netdev@vger.kernel.org
19569 S:      Maintained
19570 W:      http://www.linux-usb.org/usbnet
19571 F:      drivers/net/usb/dm9601.c
19572
19573 USB EHCI DRIVER
19574 M:      Alan Stern <stern@rowland.harvard.edu>
19575 L:      linux-usb@vger.kernel.org
19576 S:      Maintained
19577 F:      Documentation/usb/ehci.rst
19578 F:      drivers/usb/host/ehci*
19579
19580 USB GADGET/PERIPHERAL SUBSYSTEM
19581 M:      Felipe Balbi <balbi@kernel.org>
19582 L:      linux-usb@vger.kernel.org
19583 S:      Maintained
19584 W:      http://www.linux-usb.org/gadget
19585 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
19586 F:      drivers/usb/gadget/
19587 F:      include/linux/usb/gadget*
19588
19589 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
19590 M:      Jiri Kosina <jikos@kernel.org>
19591 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
19592 L:      linux-usb@vger.kernel.org
19593 S:      Maintained
19594 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
19595 F:      Documentation/hid/hiddev.rst
19596 F:      drivers/hid/usbhid/
19597
19598 USB INTEL XHCI ROLE MUX DRIVER
19599 M:      Hans de Goede <hdegoede@redhat.com>
19600 L:      linux-usb@vger.kernel.org
19601 S:      Maintained
19602 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
19603
19604 USB IP DRIVER FOR HISILICON KIRIN 960
19605 M:      Yu Chen <chenyu56@huawei.com>
19606 M:      Binghui Wang <wangbinghui@hisilicon.com>
19607 L:      linux-usb@vger.kernel.org
19608 S:      Maintained
19609 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml
19610 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
19611
19612 USB IP DRIVER FOR HISILICON KIRIN 970
19613 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19614 L:      linux-usb@vger.kernel.org
19615 S:      Maintained
19616 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3670-usb3.yaml
19617 F:      drivers/phy/hisilicon/phy-hi3670-usb3.c
19618
19619 USB ISP116X DRIVER
19620 M:      Olav Kongas <ok@artecdesign.ee>
19621 L:      linux-usb@vger.kernel.org
19622 S:      Maintained
19623 F:      drivers/usb/host/isp116x*
19624 F:      include/linux/usb/isp116x.h
19625
19626 USB ISP1760 DRIVER
19627 M:      Rui Miguel Silva <rui.silva@linaro.org>
19628 L:      linux-usb@vger.kernel.org
19629 S:      Maintained
19630 F:      drivers/usb/isp1760/*
19631 F:      Documentation/devicetree/bindings/usb/nxp,isp1760.yaml
19632
19633 USB LAN78XX ETHERNET DRIVER
19634 M:      Woojung Huh <woojung.huh@microchip.com>
19635 M:      UNGLinuxDriver@microchip.com
19636 L:      netdev@vger.kernel.org
19637 S:      Maintained
19638 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
19639 F:      drivers/net/usb/lan78xx.*
19640 F:      include/dt-bindings/net/microchip-lan78xx.h
19641
19642 USB MASS STORAGE DRIVER
19643 M:      Alan Stern <stern@rowland.harvard.edu>
19644 L:      linux-usb@vger.kernel.org
19645 L:      usb-storage@lists.one-eyed-alien.net
19646 S:      Maintained
19647 F:      drivers/usb/storage/
19648
19649 USB MIDI DRIVER
19650 M:      Clemens Ladisch <clemens@ladisch.de>
19651 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19652 S:      Maintained
19653 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
19654 F:      sound/usb/midi.*
19655
19656 USB NETWORKING DRIVERS
19657 L:      linux-usb@vger.kernel.org
19658 S:      Odd Fixes
19659 F:      drivers/net/usb/
19660
19661 USB OHCI DRIVER
19662 M:      Alan Stern <stern@rowland.harvard.edu>
19663 L:      linux-usb@vger.kernel.org
19664 S:      Maintained
19665 F:      Documentation/usb/ohci.rst
19666 F:      drivers/usb/host/ohci*
19667
19668 USB OTG FSM (Finite State Machine)
19669 M:      Peter Chen <peter.chen@kernel.org>
19670 L:      linux-usb@vger.kernel.org
19671 S:      Maintained
19672 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
19673 F:      drivers/usb/common/usb-otg-fsm.c
19674
19675 USB OVER IP DRIVER
19676 M:      Valentina Manea <valentina.manea.m@gmail.com>
19677 M:      Shuah Khan <shuah@kernel.org>
19678 M:      Shuah Khan <skhan@linuxfoundation.org>
19679 L:      linux-usb@vger.kernel.org
19680 S:      Maintained
19681 F:      Documentation/usb/usbip_protocol.rst
19682 F:      drivers/usb/usbip/
19683 F:      tools/testing/selftests/drivers/usb/usbip/
19684 F:      tools/usb/usbip/
19685
19686 USB PEGASUS DRIVER
19687 M:      Petko Manolov <petkan@nucleusys.com>
19688 L:      linux-usb@vger.kernel.org
19689 L:      netdev@vger.kernel.org
19690 S:      Maintained
19691 W:      https://github.com/petkan/pegasus
19692 T:      git git://github.com/petkan/pegasus.git
19693 F:      drivers/net/usb/pegasus.*
19694
19695 USB PHY LAYER
19696 M:      Felipe Balbi <balbi@kernel.org>
19697 L:      linux-usb@vger.kernel.org
19698 S:      Maintained
19699 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
19700 F:      drivers/usb/phy/
19701
19702 USB PRINTER DRIVER (usblp)
19703 M:      Pete Zaitcev <zaitcev@redhat.com>
19704 L:      linux-usb@vger.kernel.org
19705 S:      Supported
19706 F:      drivers/usb/class/usblp.c
19707
19708 USB RAW GADGET DRIVER
19709 R:      Andrey Konovalov <andreyknvl@gmail.com>
19710 L:      linux-usb@vger.kernel.org
19711 S:      Maintained
19712 F:      Documentation/usb/raw-gadget.rst
19713 F:      drivers/usb/gadget/legacy/raw_gadget.c
19714 F:      include/uapi/linux/usb/raw_gadget.h
19715
19716 USB QMI WWAN NETWORK DRIVER
19717 M:      Bjørn Mork <bjorn@mork.no>
19718 L:      netdev@vger.kernel.org
19719 S:      Maintained
19720 F:      Documentation/ABI/testing/sysfs-class-net-qmi
19721 F:      drivers/net/usb/qmi_wwan.c
19722
19723 USB RTL8150 DRIVER
19724 M:      Petko Manolov <petkan@nucleusys.com>
19725 L:      linux-usb@vger.kernel.org
19726 L:      netdev@vger.kernel.org
19727 S:      Maintained
19728 W:      https://github.com/petkan/rtl8150
19729 T:      git git://github.com/petkan/rtl8150.git
19730 F:      drivers/net/usb/rtl8150.c
19731
19732 USB SERIAL SUBSYSTEM
19733 M:      Johan Hovold <johan@kernel.org>
19734 L:      linux-usb@vger.kernel.org
19735 S:      Maintained
19736 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
19737 F:      Documentation/usb/usb-serial.rst
19738 F:      drivers/usb/serial/
19739 F:      include/linux/usb/serial.h
19740
19741 USB SMSC75XX ETHERNET DRIVER
19742 M:      Steve Glendinning <steve.glendinning@shawell.net>
19743 L:      netdev@vger.kernel.org
19744 S:      Maintained
19745 F:      drivers/net/usb/smsc75xx.*
19746
19747 USB SMSC95XX ETHERNET DRIVER
19748 M:      Steve Glendinning <steve.glendinning@shawell.net>
19749 M:      UNGLinuxDriver@microchip.com
19750 L:      netdev@vger.kernel.org
19751 S:      Maintained
19752 F:      drivers/net/usb/smsc95xx.*
19753
19754 USB SUBSYSTEM
19755 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19756 L:      linux-usb@vger.kernel.org
19757 S:      Supported
19758 W:      http://www.linux-usb.org
19759 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
19760 F:      Documentation/devicetree/bindings/usb/
19761 F:      Documentation/usb/
19762 F:      drivers/usb/
19763 F:      include/linux/usb.h
19764 F:      include/linux/usb/
19765
19766 USB TYPEC BUS FOR ALTERNATE MODES
19767 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19768 L:      linux-usb@vger.kernel.org
19769 S:      Maintained
19770 F:      Documentation/ABI/testing/sysfs-bus-typec
19771 F:      Documentation/driver-api/usb/typec_bus.rst
19772 F:      drivers/usb/typec/altmodes/
19773 F:      include/linux/usb/typec_altmode.h
19774
19775 USB TYPEC CLASS
19776 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19777 L:      linux-usb@vger.kernel.org
19778 S:      Maintained
19779 F:      Documentation/ABI/testing/sysfs-class-typec
19780 F:      Documentation/driver-api/usb/typec.rst
19781 F:      drivers/usb/typec/
19782 F:      include/linux/usb/typec.h
19783
19784 USB TYPEC INTEL PMC MUX DRIVER
19785 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19786 L:      linux-usb@vger.kernel.org
19787 S:      Maintained
19788 F:      Documentation/firmware-guide/acpi/intel-pmc-mux.rst
19789 F:      drivers/usb/typec/mux/intel_pmc_mux.c
19790
19791 USB TYPEC PI3USB30532 MUX DRIVER
19792 M:      Hans de Goede <hdegoede@redhat.com>
19793 L:      linux-usb@vger.kernel.org
19794 S:      Maintained
19795 F:      drivers/usb/typec/mux/pi3usb30532.c
19796
19797 USB TYPEC PORT CONTROLLER DRIVERS
19798 M:      Guenter Roeck <linux@roeck-us.net>
19799 L:      linux-usb@vger.kernel.org
19800 S:      Maintained
19801 F:      drivers/usb/typec/tcpm/
19802
19803 USB UHCI DRIVER
19804 M:      Alan Stern <stern@rowland.harvard.edu>
19805 L:      linux-usb@vger.kernel.org
19806 S:      Maintained
19807 F:      drivers/usb/host/uhci*
19808
19809 USB VIDEO CLASS
19810 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19811 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
19812 L:      linux-media@vger.kernel.org
19813 S:      Maintained
19814 W:      http://www.ideasonboard.org/uvc/
19815 T:      git git://linuxtv.org/media_tree.git
19816 F:      drivers/media/usb/uvc/
19817 F:      include/uapi/linux/uvcvideo.h
19818
19819 USB WEBCAM GADGET
19820 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19821 L:      linux-usb@vger.kernel.org
19822 S:      Maintained
19823 F:      drivers/usb/gadget/function/*uvc*
19824 F:      drivers/usb/gadget/legacy/webcam.c
19825 F:      include/uapi/linux/usb/g_uvc.h
19826
19827 USB WIRELESS RNDIS DRIVER (rndis_wlan)
19828 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
19829 L:      linux-wireless@vger.kernel.org
19830 S:      Maintained
19831 F:      drivers/net/wireless/rndis_wlan.c
19832
19833 USB XHCI DRIVER
19834 M:      Mathias Nyman <mathias.nyman@intel.com>
19835 L:      linux-usb@vger.kernel.org
19836 S:      Supported
19837 F:      drivers/usb/host/pci-quirks*
19838 F:      drivers/usb/host/xhci*
19839
19840 USB ZD1201 DRIVER
19841 L:      linux-wireless@vger.kernel.org
19842 S:      Orphan
19843 W:      http://linux-lc100020.sourceforge.net
19844 F:      drivers/net/wireless/zydas/zd1201.*
19845
19846 USB ZR364XX DRIVER
19847 M:      Antoine Jacquet <royale@zerezo.com>
19848 L:      linux-usb@vger.kernel.org
19849 L:      linux-media@vger.kernel.org
19850 S:      Maintained
19851 W:      http://royale.zerezo.com/zr364xx/
19852 T:      git git://linuxtv.org/media_tree.git
19853 F:      Documentation/admin-guide/media/zr364xx*
19854 F:      drivers/media/usb/zr364xx/
19855
19856 USER-MODE LINUX (UML)
19857 M:      Jeff Dike <jdike@addtoit.com>
19858 M:      Richard Weinberger <richard@nod.at>
19859 M:      Anton Ivanov <anton.ivanov@cambridgegreys.com>
19860 L:      linux-um@lists.infradead.org
19861 S:      Maintained
19862 W:      http://user-mode-linux.sourceforge.net
19863 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
19864 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
19865 F:      Documentation/virt/uml/
19866 F:      arch/um/
19867 F:      arch/x86/um/
19868 F:      fs/hostfs/
19869
19870 USERSPACE COPYIN/COPYOUT (UIOVEC)
19871 M:      Alexander Viro <viro@zeniv.linux.org.uk>
19872 S:      Maintained
19873 F:      include/linux/uio.h
19874 F:      lib/iov_iter.c
19875
19876 USERSPACE DMA BUFFER DRIVER
19877 M:      Gerd Hoffmann <kraxel@redhat.com>
19878 L:      dri-devel@lists.freedesktop.org
19879 S:      Maintained
19880 T:      git git://anongit.freedesktop.org/drm/drm-misc
19881 F:      drivers/dma-buf/udmabuf.c
19882 F:      include/uapi/linux/udmabuf.h
19883
19884 USERSPACE I/O (UIO)
19885 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19886 S:      Maintained
19887 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
19888 F:      Documentation/driver-api/uio-howto.rst
19889 F:      drivers/uio/
19890 F:      include/linux/uio_driver.h
19891
19892 UTIL-LINUX PACKAGE
19893 M:      Karel Zak <kzak@redhat.com>
19894 L:      util-linux@vger.kernel.org
19895 S:      Maintained
19896 W:      http://en.wikipedia.org/wiki/Util-linux
19897 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
19898
19899 UUID HELPERS
19900 M:      Christoph Hellwig <hch@lst.de>
19901 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19902 L:      linux-kernel@vger.kernel.org
19903 S:      Maintained
19904 T:      git git://git.infradead.org/users/hch/uuid.git
19905 F:      include/linux/uuid.h
19906 F:      include/uapi/linux/uuid.h
19907 F:      lib/test_uuid.c
19908 F:      lib/uuid.c
19909
19910 UV SYSFS DRIVER
19911 M:      Justin Ernst <justin.ernst@hpe.com>
19912 L:      platform-driver-x86@vger.kernel.org
19913 S:      Maintained
19914 F:      drivers/platform/x86/uv_sysfs.c
19915
19916 UVESAFB DRIVER
19917 M:      Michal Januszewski <spock@gentoo.org>
19918 L:      linux-fbdev@vger.kernel.org
19919 S:      Maintained
19920 W:      https://github.com/mjanusz/v86d
19921 F:      Documentation/fb/uvesafb.rst
19922 F:      drivers/video/fbdev/uvesafb.*
19923
19924 Ux500 CLOCK DRIVERS
19925 M:      Ulf Hansson <ulf.hansson@linaro.org>
19926 L:      linux-clk@vger.kernel.org
19927 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19928 S:      Maintained
19929 F:      drivers/clk/ux500/
19930
19931 VF610 NAND DRIVER
19932 M:      Stefan Agner <stefan@agner.ch>
19933 L:      linux-mtd@lists.infradead.org
19934 S:      Supported
19935 F:      drivers/mtd/nand/raw/vf610_nfc.c
19936
19937 VFAT/FAT/MSDOS FILESYSTEM
19938 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
19939 S:      Maintained
19940 F:      Documentation/filesystems/vfat.rst
19941 F:      fs/fat/
19942
19943 VFIO DRIVER
19944 M:      Alex Williamson <alex.williamson@redhat.com>
19945 R:      Cornelia Huck <cohuck@redhat.com>
19946 L:      kvm@vger.kernel.org
19947 S:      Maintained
19948 T:      git git://github.com/awilliam/linux-vfio.git
19949 F:      Documentation/driver-api/vfio.rst
19950 F:      drivers/vfio/
19951 F:      include/linux/vfio.h
19952 F:      include/linux/vfio_pci_core.h
19953 F:      include/uapi/linux/vfio.h
19954
19955 VFIO FSL-MC DRIVER
19956 M:      Diana Craciun <diana.craciun@oss.nxp.com>
19957 L:      kvm@vger.kernel.org
19958 S:      Maintained
19959 F:      drivers/vfio/fsl-mc/
19960
19961 VFIO MEDIATED DEVICE DRIVERS
19962 M:      Kirti Wankhede <kwankhede@nvidia.com>
19963 L:      kvm@vger.kernel.org
19964 S:      Maintained
19965 F:      Documentation/driver-api/vfio-mediated-device.rst
19966 F:      drivers/vfio/mdev/
19967 F:      include/linux/mdev.h
19968 F:      samples/vfio-mdev/
19969
19970 VFIO PLATFORM DRIVER
19971 M:      Eric Auger <eric.auger@redhat.com>
19972 L:      kvm@vger.kernel.org
19973 S:      Maintained
19974 F:      drivers/vfio/platform/
19975
19976 VGA_SWITCHEROO
19977 R:      Lukas Wunner <lukas@wunner.de>
19978 S:      Maintained
19979 T:      git git://anongit.freedesktop.org/drm/drm-misc
19980 F:      Documentation/gpu/vga-switcheroo.rst
19981 F:      drivers/gpu/vga/vga_switcheroo.c
19982 F:      include/linux/vga_switcheroo.h
19983
19984 VIA RHINE NETWORK DRIVER
19985 S:      Maintained
19986 M:      Kevin Brace <kevinbrace@bracecomputerlab.com>
19987 F:      drivers/net/ethernet/via/via-rhine.c
19988
19989 VIA SD/MMC CARD CONTROLLER DRIVER
19990 M:      Bruce Chang <brucechang@via.com.tw>
19991 M:      Harald Welte <HaraldWelte@viatech.com>
19992 S:      Maintained
19993 F:      drivers/mmc/host/via-sdmmc.c
19994
19995 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
19996 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
19997 L:      linux-fbdev@vger.kernel.org
19998 S:      Maintained
19999 F:      drivers/video/fbdev/via/
20000 F:      include/linux/via-core.h
20001 F:      include/linux/via-gpio.h
20002 F:      include/linux/via_i2c.h
20003
20004 VIA VELOCITY NETWORK DRIVER
20005 M:      Francois Romieu <romieu@fr.zoreil.com>
20006 L:      netdev@vger.kernel.org
20007 S:      Maintained
20008 F:      drivers/net/ethernet/via/via-velocity.*
20009
20010 VICODEC VIRTUAL CODEC DRIVER
20011 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
20012 L:      linux-media@vger.kernel.org
20013 S:      Maintained
20014 W:      https://linuxtv.org
20015 T:      git git://linuxtv.org/media_tree.git
20016 F:      drivers/media/test-drivers/vicodec/*
20017
20018 VIDEO I2C POLLING DRIVER
20019 M:      Matt Ranostay <matt.ranostay@konsulko.com>
20020 L:      linux-media@vger.kernel.org
20021 S:      Maintained
20022 F:      drivers/media/i2c/video-i2c.c
20023
20024 VIDEO MULTIPLEXER DRIVER
20025 M:      Philipp Zabel <p.zabel@pengutronix.de>
20026 L:      linux-media@vger.kernel.org
20027 S:      Maintained
20028 F:      drivers/media/platform/video-mux.c
20029
20030 VIDEOBUF2 FRAMEWORK
20031 M:      Tomasz Figa <tfiga@chromium.org>
20032 M:      Marek Szyprowski <m.szyprowski@samsung.com>
20033 L:      linux-media@vger.kernel.org
20034 S:      Maintained
20035 F:      drivers/media/common/videobuf2/*
20036 F:      include/media/videobuf2-*
20037
20038 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
20039 M:      Helen Koike <helen.koike@collabora.com>
20040 R:      Shuah Khan <skhan@linuxfoundation.org>
20041 L:      linux-media@vger.kernel.org
20042 S:      Maintained
20043 W:      https://linuxtv.org
20044 T:      git git://linuxtv.org/media_tree.git
20045 F:      drivers/media/test-drivers/vimc/*
20046
20047 VIRT LIB
20048 M:      Alex Williamson <alex.williamson@redhat.com>
20049 M:      Paolo Bonzini <pbonzini@redhat.com>
20050 L:      kvm@vger.kernel.org
20051 S:      Supported
20052 F:      virt/lib/
20053
20054 VIRTIO AND VHOST VSOCK DRIVER
20055 M:      Stefan Hajnoczi <stefanha@redhat.com>
20056 M:      Stefano Garzarella <sgarzare@redhat.com>
20057 L:      kvm@vger.kernel.org
20058 L:      virtualization@lists.linux-foundation.org
20059 L:      netdev@vger.kernel.org
20060 S:      Maintained
20061 F:      drivers/vhost/vsock.c
20062 F:      include/linux/virtio_vsock.h
20063 F:      include/uapi/linux/virtio_vsock.h
20064 F:      net/vmw_vsock/virtio_transport.c
20065 F:      net/vmw_vsock/virtio_transport_common.c
20066
20067 VIRTIO BLOCK AND SCSI DRIVERS
20068 M:      "Michael S. Tsirkin" <mst@redhat.com>
20069 M:      Jason Wang <jasowang@redhat.com>
20070 R:      Paolo Bonzini <pbonzini@redhat.com>
20071 R:      Stefan Hajnoczi <stefanha@redhat.com>
20072 L:      virtualization@lists.linux-foundation.org
20073 S:      Maintained
20074 F:      drivers/block/virtio_blk.c
20075 F:      drivers/scsi/virtio_scsi.c
20076 F:      drivers/vhost/scsi.c
20077 F:      include/uapi/linux/virtio_blk.h
20078 F:      include/uapi/linux/virtio_scsi.h
20079
20080 VIRTIO CONSOLE DRIVER
20081 M:      Amit Shah <amit@kernel.org>
20082 L:      virtualization@lists.linux-foundation.org
20083 S:      Maintained
20084 F:      drivers/char/virtio_console.c
20085 F:      include/linux/virtio_console.h
20086 F:      include/uapi/linux/virtio_console.h
20087
20088 VIRTIO CORE AND NET DRIVERS
20089 M:      "Michael S. Tsirkin" <mst@redhat.com>
20090 M:      Jason Wang <jasowang@redhat.com>
20091 L:      virtualization@lists.linux-foundation.org
20092 S:      Maintained
20093 F:      Documentation/devicetree/bindings/virtio/
20094 F:      drivers/block/virtio_blk.c
20095 F:      drivers/crypto/virtio/
20096 F:      drivers/net/virtio_net.c
20097 F:      drivers/vdpa/
20098 F:      drivers/virtio/
20099 F:      include/linux/vdpa.h
20100 F:      include/linux/virtio*.h
20101 F:      include/uapi/linux/virtio_*.h
20102 F:      tools/virtio/
20103
20104 VIRTIO BALLOON
20105 M:      "Michael S. Tsirkin" <mst@redhat.com>
20106 M:      David Hildenbrand <david@redhat.com>
20107 L:      virtualization@lists.linux-foundation.org
20108 S:      Maintained
20109 F:      drivers/virtio/virtio_balloon.c
20110 F:      include/uapi/linux/virtio_balloon.h
20111 F:      include/linux/balloon_compaction.h
20112 F:      mm/balloon_compaction.c
20113
20114 VIRTIO CRYPTO DRIVER
20115 M:      Gonglei <arei.gonglei@huawei.com>
20116 L:      virtualization@lists.linux-foundation.org
20117 L:      linux-crypto@vger.kernel.org
20118 S:      Maintained
20119 F:      drivers/crypto/virtio/
20120 F:      include/uapi/linux/virtio_crypto.h
20121
20122 VIRTIO DRIVERS FOR S390
20123 M:      Cornelia Huck <cohuck@redhat.com>
20124 M:      Halil Pasic <pasic@linux.ibm.com>
20125 L:      linux-s390@vger.kernel.org
20126 L:      virtualization@lists.linux-foundation.org
20127 L:      kvm@vger.kernel.org
20128 S:      Supported
20129 F:      arch/s390/include/uapi/asm/virtio-ccw.h
20130 F:      drivers/s390/virtio/
20131
20132 VIRTIO FILE SYSTEM
20133 M:      Vivek Goyal <vgoyal@redhat.com>
20134 M:      Stefan Hajnoczi <stefanha@redhat.com>
20135 M:      Miklos Szeredi <miklos@szeredi.hu>
20136 L:      virtualization@lists.linux-foundation.org
20137 L:      linux-fsdevel@vger.kernel.org
20138 S:      Supported
20139 W:      https://virtio-fs.gitlab.io/
20140 F:      Documentation/filesystems/virtiofs.rst
20141 F:      fs/fuse/virtio_fs.c
20142 F:      include/uapi/linux/virtio_fs.h
20143
20144 VIRTIO GPIO DRIVER
20145 M:      Enrico Weigelt, metux IT consult <info@metux.net>
20146 M:      Viresh Kumar <vireshk@kernel.org>
20147 L:      linux-gpio@vger.kernel.org
20148 L:      virtualization@lists.linux-foundation.org
20149 S:      Maintained
20150 F:      drivers/gpio/gpio-virtio.c
20151 F:      include/uapi/linux/virtio_gpio.h
20152
20153 VIRTIO GPU DRIVER
20154 M:      David Airlie <airlied@linux.ie>
20155 M:      Gerd Hoffmann <kraxel@redhat.com>
20156 L:      dri-devel@lists.freedesktop.org
20157 L:      virtualization@lists.linux-foundation.org
20158 S:      Maintained
20159 T:      git git://anongit.freedesktop.org/drm/drm-misc
20160 F:      drivers/gpu/drm/virtio/
20161 F:      include/uapi/linux/virtio_gpu.h
20162
20163 VIRTIO HOST (VHOST)
20164 M:      "Michael S. Tsirkin" <mst@redhat.com>
20165 M:      Jason Wang <jasowang@redhat.com>
20166 L:      kvm@vger.kernel.org
20167 L:      virtualization@lists.linux-foundation.org
20168 L:      netdev@vger.kernel.org
20169 S:      Maintained
20170 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
20171 F:      drivers/vhost/
20172 F:      include/linux/vhost_iotlb.h
20173 F:      include/uapi/linux/vhost.h
20174
20175 VIRTIO INPUT DRIVER
20176 M:      Gerd Hoffmann <kraxel@redhat.com>
20177 S:      Maintained
20178 F:      drivers/virtio/virtio_input.c
20179 F:      include/uapi/linux/virtio_input.h
20180
20181 VIRTIO IOMMU DRIVER
20182 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
20183 L:      virtualization@lists.linux-foundation.org
20184 S:      Maintained
20185 F:      drivers/iommu/virtio-iommu.c
20186 F:      include/uapi/linux/virtio_iommu.h
20187
20188 VIRTIO MEM DRIVER
20189 M:      David Hildenbrand <david@redhat.com>
20190 L:      virtualization@lists.linux-foundation.org
20191 S:      Maintained
20192 W:      https://virtio-mem.gitlab.io/
20193 F:      drivers/virtio/virtio_mem.c
20194 F:      include/uapi/linux/virtio_mem.h
20195
20196 VIRTIO SOUND DRIVER
20197 M:      Anton Yakovlev <anton.yakovlev@opensynergy.com>
20198 M:      "Michael S. Tsirkin" <mst@redhat.com>
20199 L:      virtualization@lists.linux-foundation.org
20200 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20201 S:      Maintained
20202 F:      include/uapi/linux/virtio_snd.h
20203 F:      sound/virtio/*
20204
20205 VIRTIO I2C DRIVER
20206 M:      Conghui Chen <conghui.chen@intel.com>
20207 M:      Viresh Kumar <viresh.kumar@linaro.org>
20208 L:      linux-i2c@vger.kernel.org
20209 L:      virtualization@lists.linux-foundation.org
20210 S:      Maintained
20211 F:      drivers/i2c/busses/i2c-virtio.c
20212 F:      include/uapi/linux/virtio_i2c.h
20213
20214 VIRTIO PMEM DRIVER
20215 M:      Pankaj Gupta <pankaj.gupta.linux@gmail.com>
20216 L:      virtualization@lists.linux-foundation.org
20217 S:      Maintained
20218 F:      drivers/nvdimm/virtio_pmem.c
20219 F:      drivers/nvdimm/nd_virtio.c
20220
20221 VIRTUAL BOX GUEST DEVICE DRIVER
20222 M:      Hans de Goede <hdegoede@redhat.com>
20223 M:      Arnd Bergmann <arnd@arndb.de>
20224 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20225 S:      Maintained
20226 F:      drivers/virt/vboxguest/
20227 F:      include/linux/vbox_utils.h
20228 F:      include/uapi/linux/vbox*.h
20229
20230 VIRTUAL BOX SHARED FOLDER VFS DRIVER
20231 M:      Hans de Goede <hdegoede@redhat.com>
20232 L:      linux-fsdevel@vger.kernel.org
20233 S:      Maintained
20234 F:      fs/vboxsf/*
20235
20236 VIRTUAL SERIO DEVICE DRIVER
20237 M:      Stephen Chandler Paul <thatslyude@gmail.com>
20238 S:      Maintained
20239 F:      drivers/input/serio/userio.c
20240 F:      include/uapi/linux/userio.h
20241
20242 VIVID VIRTUAL VIDEO DRIVER
20243 M:      Hans Verkuil <hverkuil@xs4all.nl>
20244 L:      linux-media@vger.kernel.org
20245 S:      Maintained
20246 W:      https://linuxtv.org
20247 T:      git git://linuxtv.org/media_tree.git
20248 F:      drivers/media/test-drivers/vivid/*
20249
20250 VIDTV VIRTUAL DIGITAL TV DRIVER
20251 M:      Daniel W. S. Almeida <dwlsalmeida@gmail.com>
20252 L:      linux-media@vger.kernel.org
20253 S:      Maintained
20254 W:      https://linuxtv.org
20255 T:      git git://linuxtv.org/media_tree.git
20256 F:      drivers/media/test-drivers/vidtv/*
20257
20258 VLYNQ BUS
20259 M:      Florian Fainelli <f.fainelli@gmail.com>
20260 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
20261 S:      Maintained
20262 F:      drivers/vlynq/vlynq.c
20263 F:      include/linux/vlynq.h
20264
20265 VME SUBSYSTEM
20266 M:      Martyn Welch <martyn@welchs.me.uk>
20267 M:      Manohar Vanga <manohar.vanga@gmail.com>
20268 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20269 L:      linux-kernel@vger.kernel.org
20270 S:      Maintained
20271 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
20272 F:      Documentation/driver-api/vme.rst
20273 F:      drivers/staging/vme/
20274 F:      drivers/vme/
20275 F:      include/linux/vme*
20276
20277 VM SOCKETS (AF_VSOCK)
20278 M:      Stefano Garzarella <sgarzare@redhat.com>
20279 L:      virtualization@lists.linux-foundation.org
20280 L:      netdev@vger.kernel.org
20281 S:      Maintained
20282 F:      drivers/net/vsockmon.c
20283 F:      include/net/af_vsock.h
20284 F:      include/uapi/linux/vm_sockets.h
20285 F:      include/uapi/linux/vm_sockets_diag.h
20286 F:      include/uapi/linux/vsockmon.h
20287 F:      net/vmw_vsock/
20288 F:      tools/testing/vsock/
20289
20290 VMWARE BALLOON DRIVER
20291 M:      Nadav Amit <namit@vmware.com>
20292 M:      "VMware, Inc." <pv-drivers@vmware.com>
20293 L:      linux-kernel@vger.kernel.org
20294 S:      Maintained
20295 F:      drivers/misc/vmw_balloon.c
20296
20297 VMWARE HYPERVISOR INTERFACE
20298 M:      Deep Shah <sdeep@vmware.com>
20299 M:      "VMware, Inc." <pv-drivers@vmware.com>
20300 L:      virtualization@lists.linux-foundation.org
20301 S:      Supported
20302 F:      arch/x86/include/asm/vmware.h
20303 F:      arch/x86/kernel/cpu/vmware.c
20304
20305 VMWARE PVRDMA DRIVER
20306 M:      Adit Ranadive <aditr@vmware.com>
20307 M:      VMware PV-Drivers <pv-drivers@vmware.com>
20308 L:      linux-rdma@vger.kernel.org
20309 S:      Maintained
20310 F:      drivers/infiniband/hw/vmw_pvrdma/
20311
20312 VMware PVSCSI driver
20313 M:      Vishal Bhakta <vbhakta@vmware.com>
20314 M:      VMware PV-Drivers <pv-drivers@vmware.com>
20315 L:      linux-scsi@vger.kernel.org
20316 S:      Maintained
20317 F:      drivers/scsi/vmw_pvscsi.c
20318 F:      drivers/scsi/vmw_pvscsi.h
20319
20320 VMWARE VIRTUAL PTP CLOCK DRIVER
20321 M:      Vivek Thampi <vithampi@vmware.com>
20322 M:      "VMware, Inc." <pv-drivers@vmware.com>
20323 L:      netdev@vger.kernel.org
20324 S:      Supported
20325 F:      drivers/ptp/ptp_vmw.c
20326
20327 VMWARE VMCI DRIVER
20328 M:      Jorgen Hansen <jhansen@vmware.com>
20329 M:      Vishnu Dasa <vdasa@vmware.com>
20330 L:      linux-kernel@vger.kernel.org
20331 L:      pv-drivers@vmware.com (private)
20332 S:      Maintained
20333 F:      drivers/misc/vmw_vmci/
20334
20335 VMWARE VMMOUSE SUBDRIVER
20336 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
20337 M:      "VMware, Inc." <pv-drivers@vmware.com>
20338 L:      linux-input@vger.kernel.org
20339 S:      Maintained
20340 F:      drivers/input/mouse/vmmouse.c
20341 F:      drivers/input/mouse/vmmouse.h
20342
20343 VMWARE VMXNET3 ETHERNET DRIVER
20344 M:      Ronak Doshi <doshir@vmware.com>
20345 M:      pv-drivers@vmware.com
20346 L:      netdev@vger.kernel.org
20347 S:      Maintained
20348 F:      drivers/net/vmxnet3/
20349
20350 VOCORE VOCORE2 BOARD
20351 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
20352 L:      linux-mips@vger.kernel.org
20353 S:      Maintained
20354 F:      arch/mips/boot/dts/ralink/vocore2.dts
20355
20356 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
20357 M:      Liam Girdwood <lgirdwood@gmail.com>
20358 M:      Mark Brown <broonie@kernel.org>
20359 L:      linux-kernel@vger.kernel.org
20360 S:      Supported
20361 W:      http://www.slimlogic.co.uk/?p=48
20362 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
20363 F:      Documentation/devicetree/bindings/regulator/
20364 F:      Documentation/power/regulator/
20365 F:      drivers/regulator/
20366 F:      include/dt-bindings/regulator/
20367 F:      include/linux/regulator/
20368 K:      regulator_get_optional
20369
20370 VOLTAGE AND CURRENT REGULATOR IRQ HELPERS
20371 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
20372 F:      drivers/regulator/irq_helpers.c
20373
20374 VRF
20375 M:      David Ahern <dsahern@kernel.org>
20376 L:      netdev@vger.kernel.org
20377 S:      Maintained
20378 F:      Documentation/networking/vrf.rst
20379 F:      drivers/net/vrf.c
20380
20381 VSPRINTF
20382 M:      Petr Mladek <pmladek@suse.com>
20383 M:      Steven Rostedt <rostedt@goodmis.org>
20384 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
20385 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
20386 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
20387 S:      Maintained
20388 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pmladek/printk.git
20389 F:      Documentation/core-api/printk-formats.rst
20390 F:      lib/test_printf.c
20391 F:      lib/test_scanf.c
20392 F:      lib/vsprintf.c
20393
20394 VT1211 HARDWARE MONITOR DRIVER
20395 M:      Juerg Haefliger <juergh@gmail.com>
20396 L:      linux-hwmon@vger.kernel.org
20397 S:      Maintained
20398 F:      Documentation/hwmon/vt1211.rst
20399 F:      drivers/hwmon/vt1211.c
20400
20401 VT8231 HARDWARE MONITOR DRIVER
20402 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
20403 L:      linux-hwmon@vger.kernel.org
20404 S:      Maintained
20405 F:      drivers/hwmon/vt8231.c
20406
20407 VUB300 USB to SDIO/SD/MMC bridge chip
20408 L:      linux-mmc@vger.kernel.org
20409 S:      Orphan
20410 F:      drivers/mmc/host/vub300.c
20411
20412 W1 DALLAS'S 1-WIRE BUS
20413 M:      Evgeniy Polyakov <zbr@ioremap.net>
20414 S:      Maintained
20415 F:      Documentation/devicetree/bindings/w1/
20416 F:      Documentation/w1/
20417 F:      drivers/w1/
20418 F:      include/linux/w1.h
20419
20420 W83791D HARDWARE MONITORING DRIVER
20421 M:      Marc Hulsman <m.hulsman@tudelft.nl>
20422 L:      linux-hwmon@vger.kernel.org
20423 S:      Maintained
20424 F:      Documentation/hwmon/w83791d.rst
20425 F:      drivers/hwmon/w83791d.c
20426
20427 W83793 HARDWARE MONITORING DRIVER
20428 M:      Rudolf Marek <r.marek@assembler.cz>
20429 L:      linux-hwmon@vger.kernel.org
20430 S:      Maintained
20431 F:      Documentation/hwmon/w83793.rst
20432 F:      drivers/hwmon/w83793.c
20433
20434 W83795 HARDWARE MONITORING DRIVER
20435 M:      Jean Delvare <jdelvare@suse.com>
20436 L:      linux-hwmon@vger.kernel.org
20437 S:      Maintained
20438 F:      drivers/hwmon/w83795.c
20439
20440 W83L51xD SD/MMC CARD INTERFACE DRIVER
20441 M:      Pierre Ossman <pierre@ossman.eu>
20442 S:      Maintained
20443 F:      drivers/mmc/host/wbsd.*
20444
20445 WACOM PROTOCOL 4 SERIAL TABLETS
20446 M:      Julian Squires <julian@cipht.net>
20447 M:      Hans de Goede <hdegoede@redhat.com>
20448 L:      linux-input@vger.kernel.org
20449 S:      Maintained
20450 F:      drivers/input/tablet/wacom_serial4.c
20451
20452 WATCHDOG DEVICE DRIVERS
20453 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
20454 M:      Guenter Roeck <linux@roeck-us.net>
20455 L:      linux-watchdog@vger.kernel.org
20456 S:      Maintained
20457 W:      http://www.linux-watchdog.org/
20458 T:      git git://www.linux-watchdog.org/linux-watchdog.git
20459 F:      Documentation/devicetree/bindings/watchdog/
20460 F:      Documentation/watchdog/
20461 F:      drivers/watchdog/
20462 F:      include/linux/watchdog.h
20463 F:      include/uapi/linux/watchdog.h
20464
20465 WHISKEYCOVE PMIC GPIO DRIVER
20466 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
20467 L:      linux-gpio@vger.kernel.org
20468 S:      Maintained
20469 F:      drivers/gpio/gpio-wcove.c
20470
20471 WHWAVE RTC DRIVER
20472 M:      Dianlong Li <long17.cool@163.com>
20473 L:      linux-rtc@vger.kernel.org
20474 S:      Maintained
20475 F:      drivers/rtc/rtc-sd3078.c
20476
20477 WIIMOTE HID DRIVER
20478 M:      David Rheinsberg <david.rheinsberg@gmail.com>
20479 L:      linux-input@vger.kernel.org
20480 S:      Maintained
20481 F:      drivers/hid/hid-wiimote*
20482
20483 WILOCITY WIL6210 WIRELESS DRIVER
20484 M:      Maya Erez <merez@codeaurora.org>
20485 L:      linux-wireless@vger.kernel.org
20486 L:      wil6210@qti.qualcomm.com
20487 S:      Supported
20488 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
20489 F:      drivers/net/wireless/ath/wil6210/
20490
20491 WINBOND CIR DRIVER
20492 M:      David Härdeman <david@hardeman.nu>
20493 S:      Maintained
20494 F:      drivers/media/rc/winbond-cir.c
20495
20496 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
20497 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
20498 L:      linux-watchdog@vger.kernel.org
20499 S:      Maintained
20500 F:      drivers/watchdog/ebc-c384_wdt.c
20501
20502 WINSYSTEMS WS16C48 GPIO DRIVER
20503 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
20504 L:      linux-gpio@vger.kernel.org
20505 S:      Maintained
20506 F:      drivers/gpio/gpio-ws16c48.c
20507
20508 WIREGUARD SECURE NETWORK TUNNEL
20509 M:      Jason A. Donenfeld <Jason@zx2c4.com>
20510 L:      wireguard@lists.zx2c4.com
20511 L:      netdev@vger.kernel.org
20512 S:      Maintained
20513 F:      drivers/net/wireguard/
20514 F:      tools/testing/selftests/wireguard/
20515
20516 WISTRON LAPTOP BUTTON DRIVER
20517 M:      Miloslav Trmac <mitr@volny.cz>
20518 S:      Maintained
20519 F:      drivers/input/misc/wistron_btns.c
20520
20521 WL3501 WIRELESS PCMCIA CARD DRIVER
20522 L:      linux-wireless@vger.kernel.org
20523 S:      Odd fixes
20524 F:      drivers/net/wireless/wl3501*
20525
20526 WOLFSON MICROELECTRONICS DRIVERS
20527 L:      patches@opensource.cirrus.com
20528 S:      Supported
20529 W:      https://github.com/CirrusLogic/linux-drivers/wiki
20530 T:      git https://github.com/CirrusLogic/linux-drivers.git
20531 F:      Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
20532 F:      Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
20533 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
20534 F:      Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
20535 F:      Documentation/devicetree/bindings/sound/wlf,*.yaml
20536 F:      Documentation/devicetree/bindings/sound/wm*
20537 F:      Documentation/hwmon/wm83??.rst
20538 F:      arch/arm/mach-s3c/mach-crag6410*
20539 F:      drivers/clk/clk-wm83*.c
20540 F:      drivers/gpio/gpio-*wm*.c
20541 F:      drivers/gpio/gpio-arizona.c
20542 F:      drivers/hwmon/wm83??-hwmon.c
20543 F:      drivers/input/misc/wm831x-on.c
20544 F:      drivers/input/touchscreen/wm831x-ts.c
20545 F:      drivers/input/touchscreen/wm97*.c
20546 F:      drivers/leds/leds-wm83*.c
20547 F:      drivers/mfd/arizona*
20548 F:      drivers/mfd/cs47l24*
20549 F:      drivers/mfd/wm*.c
20550 F:      drivers/power/supply/wm83*.c
20551 F:      drivers/regulator/arizona*
20552 F:      drivers/regulator/wm8*.c
20553 F:      drivers/rtc/rtc-wm83*.c
20554 F:      drivers/video/backlight/wm83*_bl.c
20555 F:      drivers/watchdog/wm83*_wdt.c
20556 F:      include/linux/mfd/arizona/
20557 F:      include/linux/mfd/wm831x/
20558 F:      include/linux/mfd/wm8350/
20559 F:      include/linux/mfd/wm8400*
20560 F:      include/linux/regulator/arizona*
20561 F:      include/linux/wm97xx.h
20562 F:      include/sound/wm????.h
20563 F:      sound/soc/codecs/arizona*
20564 F:      sound/soc/codecs/cs47l24*
20565 F:      sound/soc/codecs/wm*
20566
20567 WORKQUEUE
20568 M:      Tejun Heo <tj@kernel.org>
20569 R:      Lai Jiangshan <jiangshanlai@gmail.com>
20570 S:      Maintained
20571 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
20572 F:      Documentation/core-api/workqueue.rst
20573 F:      include/linux/workqueue.h
20574 F:      kernel/workqueue.c
20575
20576 WWAN DRIVERS
20577 M:      Loic Poulain <loic.poulain@linaro.org>
20578 M:      Sergey Ryazanov <ryazanov.s.a@gmail.com>
20579 R:      Johannes Berg <johannes@sipsolutions.net>
20580 L:      netdev@vger.kernel.org
20581 S:      Maintained
20582 F:      drivers/net/wwan/
20583 F:      include/linux/wwan.h
20584 F:      include/uapi/linux/wwan.h
20585
20586 X-POWERS AXP288 PMIC DRIVERS
20587 M:      Hans de Goede <hdegoede@redhat.com>
20588 S:      Maintained
20589 F:      drivers/acpi/pmic/intel_pmic_xpower.c
20590 N:      axp288
20591
20592 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
20593 M:      Chen-Yu Tsai <wens@csie.org>
20594 L:      linux-kernel@vger.kernel.org
20595 S:      Maintained
20596 N:      axp[128]
20597
20598 X.25 STACK
20599 M:      Martin Schiller <ms@dev.tdt.de>
20600 L:      linux-x25@vger.kernel.org
20601 S:      Maintained
20602 F:      Documentation/networking/lapb-module.rst
20603 F:      Documentation/networking/x25*
20604 F:      drivers/net/wan/hdlc_x25.c
20605 F:      drivers/net/wan/lapbether.c
20606 F:      include/*/lapb.h
20607 F:      include/net/x25*
20608 F:      include/uapi/linux/x25.h
20609 F:      net/lapb/
20610 F:      net/x25/
20611
20612 X86 ARCHITECTURE (32-BIT AND 64-BIT)
20613 M:      Thomas Gleixner <tglx@linutronix.de>
20614 M:      Ingo Molnar <mingo@redhat.com>
20615 M:      Borislav Petkov <bp@alien8.de>
20616 M:      Dave Hansen <dave.hansen@linux.intel.com>
20617 M:      x86@kernel.org
20618 R:      "H. Peter Anvin" <hpa@zytor.com>
20619 L:      linux-kernel@vger.kernel.org
20620 S:      Maintained
20621 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
20622 F:      Documentation/devicetree/bindings/x86/
20623 F:      Documentation/x86/
20624 F:      arch/x86/
20625
20626 X86 ENTRY CODE
20627 M:      Andy Lutomirski <luto@kernel.org>
20628 L:      linux-kernel@vger.kernel.org
20629 S:      Maintained
20630 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
20631 F:      arch/x86/entry/
20632
20633 X86 MCE INFRASTRUCTURE
20634 M:      Tony Luck <tony.luck@intel.com>
20635 M:      Borislav Petkov <bp@alien8.de>
20636 L:      linux-edac@vger.kernel.org
20637 S:      Maintained
20638 F:      Documentation/ABI/testing/sysfs-mce
20639 F:      Documentation/x86/x86_64/machinecheck.rst
20640 F:      arch/x86/kernel/cpu/mce/*
20641
20642 X86 MICROCODE UPDATE SUPPORT
20643 M:      Borislav Petkov <bp@alien8.de>
20644 S:      Maintained
20645 F:      arch/x86/kernel/cpu/microcode/*
20646
20647 X86 MM
20648 M:      Dave Hansen <dave.hansen@linux.intel.com>
20649 M:      Andy Lutomirski <luto@kernel.org>
20650 M:      Peter Zijlstra <peterz@infradead.org>
20651 L:      linux-kernel@vger.kernel.org
20652 S:      Maintained
20653 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
20654 F:      arch/x86/mm/
20655
20656 X86 PLATFORM DRIVERS
20657 M:      Hans de Goede <hdegoede@redhat.com>
20658 M:      Mark Gross <markgross@kernel.org>
20659 L:      platform-driver-x86@vger.kernel.org
20660 S:      Maintained
20661 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
20662 F:      drivers/platform/olpc/
20663 F:      drivers/platform/x86/
20664
20665 X86 PLATFORM DRIVERS - ARCH
20666 R:      Darren Hart <dvhart@infradead.org>
20667 R:      Andy Shevchenko <andy@infradead.org>
20668 L:      platform-driver-x86@vger.kernel.org
20669 L:      x86@kernel.org
20670 S:      Maintained
20671 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
20672 F:      arch/x86/platform
20673
20674 X86 PLATFORM UV HPE SUPERDOME FLEX
20675 M:      Steve Wahl <steve.wahl@hpe.com>
20676 R:      Mike Travis <mike.travis@hpe.com>
20677 R:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
20678 R:      Russ Anderson <russ.anderson@hpe.com>
20679 S:      Supported
20680 F:      arch/x86/include/asm/uv/
20681 F:      arch/x86/kernel/apic/x2apic_uv_x.c
20682 F:      arch/x86/platform/uv/
20683
20684 X86 VDSO
20685 M:      Andy Lutomirski <luto@kernel.org>
20686 L:      linux-kernel@vger.kernel.org
20687 S:      Maintained
20688 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
20689 F:      arch/x86/entry/vdso/
20690
20691 XARRAY
20692 M:      Matthew Wilcox <willy@infradead.org>
20693 L:      linux-fsdevel@vger.kernel.org
20694 S:      Supported
20695 F:      Documentation/core-api/xarray.rst
20696 F:      include/linux/idr.h
20697 F:      include/linux/xarray.h
20698 F:      lib/idr.c
20699 F:      lib/xarray.c
20700 F:      tools/testing/radix-tree
20701
20702 XBOX DVD IR REMOTE
20703 M:      Benjamin Valentin <benpicco@googlemail.com>
20704 S:      Maintained
20705 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
20706 F:      drivers/media/rc/xbox_remote.c
20707
20708 XC2028/3028 TUNER DRIVER
20709 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
20710 L:      linux-media@vger.kernel.org
20711 S:      Maintained
20712 W:      https://linuxtv.org
20713 T:      git git://linuxtv.org/media_tree.git
20714 F:      drivers/media/tuners/tuner-xc2028.*
20715
20716 XDP (eXpress Data Path)
20717 M:      Alexei Starovoitov <ast@kernel.org>
20718 M:      Daniel Borkmann <daniel@iogearbox.net>
20719 M:      David S. Miller <davem@davemloft.net>
20720 M:      Jakub Kicinski <kuba@kernel.org>
20721 M:      Jesper Dangaard Brouer <hawk@kernel.org>
20722 M:      John Fastabend <john.fastabend@gmail.com>
20723 L:      netdev@vger.kernel.org
20724 L:      bpf@vger.kernel.org
20725 S:      Supported
20726 F:      include/net/xdp.h
20727 F:      include/net/xdp_priv.h
20728 F:      include/trace/events/xdp.h
20729 F:      kernel/bpf/cpumap.c
20730 F:      kernel/bpf/devmap.c
20731 F:      net/core/xdp.c
20732 F:      samples/bpf/xdp*
20733 F:      tools/testing/selftests/bpf/*xdp*
20734 F:      tools/testing/selftests/bpf/*/*xdp*
20735 F:      drivers/net/ethernet/*/*/*/*/*xdp*
20736 F:      drivers/net/ethernet/*/*/*xdp*
20737 K:      (?:\b|_)xdp(?:\b|_)
20738
20739 XDP SOCKETS (AF_XDP)
20740 M:      Björn Töpel <bjorn@kernel.org>
20741 M:      Magnus Karlsson <magnus.karlsson@intel.com>
20742 R:      Jonathan Lemon <jonathan.lemon@gmail.com>
20743 L:      netdev@vger.kernel.org
20744 L:      bpf@vger.kernel.org
20745 S:      Maintained
20746 F:      Documentation/networking/af_xdp.rst
20747 F:      include/net/xdp_sock*
20748 F:      include/net/xsk_buff_pool.h
20749 F:      include/uapi/linux/if_xdp.h
20750 F:      include/uapi/linux/xdp_diag.h
20751 F:      include/net/netns/xdp.h
20752 F:      net/xdp/
20753 F:      samples/bpf/xdpsock*
20754 F:      tools/lib/bpf/xsk*
20755
20756 XEN BLOCK SUBSYSTEM
20757 M:      Roger Pau Monné <roger.pau@citrix.com>
20758 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20759 S:      Supported
20760 F:      drivers/block/xen*
20761 F:      drivers/block/xen-blkback/*
20762
20763 XEN HYPERVISOR ARM
20764 M:      Stefano Stabellini <sstabellini@kernel.org>
20765 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20766 S:      Maintained
20767 F:      arch/arm/include/asm/xen/
20768 F:      arch/arm/xen/
20769
20770 XEN HYPERVISOR ARM64
20771 M:      Stefano Stabellini <sstabellini@kernel.org>
20772 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20773 S:      Maintained
20774 F:      arch/arm64/include/asm/xen/
20775 F:      arch/arm64/xen/
20776
20777 XEN HYPERVISOR INTERFACE
20778 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
20779 M:      Juergen Gross <jgross@suse.com>
20780 R:      Stefano Stabellini <sstabellini@kernel.org>
20781 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20782 S:      Supported
20783 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
20784 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
20785 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
20786 F:      arch/x86/include/asm/pvclock-abi.h
20787 F:      arch/x86/include/asm/xen/
20788 F:      arch/x86/platform/pvh/
20789 F:      arch/x86/xen/
20790 F:      drivers/*/xen-*front.c
20791 F:      drivers/xen/
20792 F:      include/uapi/xen/
20793 F:      include/xen/
20794
20795 XEN NETWORK BACKEND DRIVER
20796 M:      Wei Liu <wei.liu@kernel.org>
20797 M:      Paul Durrant <paul@xen.org>
20798 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20799 L:      netdev@vger.kernel.org
20800 S:      Supported
20801 F:      drivers/net/xen-netback/*
20802
20803 XEN PCI SUBSYSTEM
20804 M:      Juergen Gross <jgross@suse.com>
20805 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20806 S:      Supported
20807 F:      arch/x86/pci/*xen*
20808 F:      drivers/pci/*xen*
20809
20810 XEN PVSCSI DRIVERS
20811 M:      Juergen Gross <jgross@suse.com>
20812 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20813 L:      linux-scsi@vger.kernel.org
20814 S:      Supported
20815 F:      drivers/scsi/xen-scsifront.c
20816 F:      drivers/xen/xen-scsiback.c
20817 F:      include/xen/interface/io/vscsiif.h
20818
20819 XEN SOUND FRONTEND DRIVER
20820 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
20821 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20822 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20823 S:      Supported
20824 F:      sound/xen/*
20825
20826 XEN SWIOTLB SUBSYSTEM
20827 M:      Juergen Gross <jgross@suse.com>
20828 M:      Stefano Stabellini <sstabellini@kernel.org>
20829 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20830 L:      iommu@lists.linux-foundation.org
20831 S:      Supported
20832 F:      arch/x86/xen/*swiotlb*
20833 F:      drivers/xen/*swiotlb*
20834
20835 XFS FILESYSTEM
20836 C:      irc://irc.oftc.net/xfs
20837 M:      Darrick J. Wong <djwong@kernel.org>
20838 M:      linux-xfs@vger.kernel.org
20839 L:      linux-xfs@vger.kernel.org
20840 S:      Supported
20841 W:      http://xfs.org/
20842 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
20843 F:      Documentation/ABI/testing/sysfs-fs-xfs
20844 F:      Documentation/admin-guide/xfs.rst
20845 F:      Documentation/filesystems/xfs-delayed-logging-design.rst
20846 F:      Documentation/filesystems/xfs-self-describing-metadata.rst
20847 F:      fs/xfs/
20848 F:      include/uapi/linux/dqblk_xfs.h
20849 F:      include/uapi/linux/fsmap.h
20850
20851 XILINX AXI ETHERNET DRIVER
20852 M:      Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
20853 S:      Maintained
20854 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
20855
20856 XILINX CAN DRIVER
20857 M:      Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
20858 R:      Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
20859 L:      linux-can@vger.kernel.org
20860 S:      Maintained
20861 F:      Documentation/devicetree/bindings/net/can/xilinx_can.txt
20862 F:      drivers/net/can/xilinx_can.c
20863
20864 XILINX GPIO DRIVER
20865 M:      Shubhrajyoti Datta <shubhrajyoti.datta@xilinx.com>
20866 R:      Srinivas Neeli <srinivas.neeli@xilinx.com>
20867 R:      Michal Simek <michal.simek@xilinx.com>
20868 S:      Maintained
20869 F:      Documentation/devicetree/bindings/gpio/gpio-xilinx.txt
20870 F:      Documentation/devicetree/bindings/gpio/gpio-zynq.yaml
20871 F:      drivers/gpio/gpio-xilinx.c
20872 F:      drivers/gpio/gpio-zynq.c
20873
20874 XILINX SD-FEC IP CORES
20875 M:      Derek Kiernan <derek.kiernan@xilinx.com>
20876 M:      Dragan Cvetic <dragan.cvetic@xilinx.com>
20877 S:      Maintained
20878 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
20879 F:      Documentation/misc-devices/xilinx_sdfec.rst
20880 F:      drivers/misc/Kconfig
20881 F:      drivers/misc/Makefile
20882 F:      drivers/misc/xilinx_sdfec.c
20883 F:      include/uapi/misc/xilinx_sdfec.h
20884
20885 XILINX UARTLITE SERIAL DRIVER
20886 M:      Peter Korsgaard <jacmet@sunsite.dk>
20887 L:      linux-serial@vger.kernel.org
20888 S:      Maintained
20889 F:      drivers/tty/serial/uartlite.c
20890
20891 XILINX VIDEO IP CORES
20892 M:      Hyun Kwon <hyun.kwon@xilinx.com>
20893 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20894 L:      linux-media@vger.kernel.org
20895 S:      Supported
20896 T:      git git://linuxtv.org/media_tree.git
20897 F:      Documentation/devicetree/bindings/media/xilinx/
20898 F:      drivers/media/platform/xilinx/
20899 F:      include/uapi/linux/xilinx-v4l2-controls.h
20900
20901 XILINX ZYNQMP DPDMA DRIVER
20902 M:      Hyun Kwon <hyun.kwon@xilinx.com>
20903 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20904 L:      dmaengine@vger.kernel.org
20905 S:      Supported
20906 F:      Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dpdma.yaml
20907 F:      drivers/dma/xilinx/xilinx_dpdma.c
20908 F:      include/dt-bindings/dma/xlnx-zynqmp-dpdma.h
20909
20910 XILINX ZYNQMP PSGTR PHY DRIVER
20911 M:      Anurag Kumar Vulisha <anurag.kumar.vulisha@xilinx.com>
20912 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20913 L:      linux-kernel@vger.kernel.org
20914 S:      Supported
20915 T:      git https://github.com/Xilinx/linux-xlnx.git
20916 F:      Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml
20917 F:      drivers/phy/xilinx/phy-zynqmp.c
20918
20919 XILLYBUS DRIVER
20920 M:      Eli Billauer <eli.billauer@gmail.com>
20921 L:      linux-kernel@vger.kernel.org
20922 S:      Supported
20923 F:      drivers/char/xillybus/
20924
20925 XLP9XX I2C DRIVER
20926 M:      George Cherian <gcherian@marvell.com>
20927 L:      linux-i2c@vger.kernel.org
20928 S:      Supported
20929 W:      http://www.marvell.com
20930 F:      Documentation/devicetree/bindings/i2c/i2c-xlp9xx.txt
20931 F:      drivers/i2c/busses/i2c-xlp9xx.c
20932
20933 XRA1403 GPIO EXPANDER
20934 M:      Nandor Han <nandor.han@ge.com>
20935 M:      Semi Malinen <semi.malinen@ge.com>
20936 L:      linux-gpio@vger.kernel.org
20937 S:      Maintained
20938 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
20939 F:      drivers/gpio/gpio-xra1403.c
20940
20941 XTENSA XTFPGA PLATFORM SUPPORT
20942 M:      Max Filippov <jcmvbkbc@gmail.com>
20943 L:      linux-xtensa@linux-xtensa.org
20944 S:      Maintained
20945 F:      drivers/spi/spi-xtensa-xtfpga.c
20946 F:      sound/soc/xtensa/xtfpga-i2s.c
20947
20948 YAM DRIVER FOR AX.25
20949 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
20950 L:      linux-hams@vger.kernel.org
20951 S:      Maintained
20952 F:      drivers/net/hamradio/yam*
20953 F:      include/linux/yam.h
20954
20955 YAMA SECURITY MODULE
20956 M:      Kees Cook <keescook@chromium.org>
20957 S:      Supported
20958 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
20959 F:      Documentation/admin-guide/LSM/Yama.rst
20960 F:      security/yama/
20961
20962 YEALINK PHONE DRIVER
20963 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
20964 L:      usbb2k-api-dev@nongnu.org
20965 S:      Maintained
20966 F:      Documentation/input/devices/yealink.rst
20967 F:      drivers/input/misc/yealink.*
20968
20969 Z8530 DRIVER FOR AX.25
20970 M:      Joerg Reuter <jreuter@yaina.de>
20971 L:      linux-hams@vger.kernel.org
20972 S:      Maintained
20973 W:      http://yaina.de/jreuter/
20974 W:      http://www.qsl.net/dl1bke/
20975 F:      Documentation/networking/device_drivers/hamradio/z8530drv.rst
20976 F:      drivers/net/hamradio/*scc.c
20977 F:      drivers/net/hamradio/z8530.h
20978
20979 ZBUD COMPRESSED PAGE ALLOCATOR
20980 M:      Seth Jennings <sjenning@redhat.com>
20981 M:      Dan Streetman <ddstreet@ieee.org>
20982 L:      linux-mm@kvack.org
20983 S:      Maintained
20984 F:      mm/zbud.c
20985
20986 ZD1211RW WIRELESS DRIVER
20987 M:      Ulrich Kunitz <kune@deine-taler.de>
20988 L:      linux-wireless@vger.kernel.org
20989 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
20990 S:      Maintained
20991 W:      http://zd1211.ath.cx/wiki/DriverRewrite
20992 F:      drivers/net/wireless/zydas/zd1211rw/
20993
20994 ZD1301 MEDIA DRIVER
20995 M:      Antti Palosaari <crope@iki.fi>
20996 L:      linux-media@vger.kernel.org
20997 S:      Maintained
20998 W:      https://linuxtv.org/
20999 W:      http://palosaari.fi/linux/
21000 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
21001 F:      drivers/media/usb/dvb-usb-v2/zd1301*
21002
21003 ZD1301_DEMOD MEDIA DRIVER
21004 M:      Antti Palosaari <crope@iki.fi>
21005 L:      linux-media@vger.kernel.org
21006 S:      Maintained
21007 W:      https://linuxtv.org/
21008 W:      http://palosaari.fi/linux/
21009 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
21010 F:      drivers/media/dvb-frontends/zd1301_demod*
21011
21012 ZHAOXIN PROCESSOR SUPPORT
21013 M:      Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
21014 L:      linux-kernel@vger.kernel.org
21015 S:      Maintained
21016 F:      arch/x86/kernel/cpu/zhaoxin.c
21017
21018 ZONEFS FILESYSTEM
21019 M:      Damien Le Moal <damien.lemoal@wdc.com>
21020 M:      Naohiro Aota <naohiro.aota@wdc.com>
21021 R:      Johannes Thumshirn <jth@kernel.org>
21022 L:      linux-fsdevel@vger.kernel.org
21023 S:      Maintained
21024 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
21025 F:      Documentation/filesystems/zonefs.rst
21026 F:      fs/zonefs/
21027
21028 ZPOOL COMPRESSED PAGE STORAGE API
21029 M:      Dan Streetman <ddstreet@ieee.org>
21030 L:      linux-mm@kvack.org
21031 S:      Maintained
21032 F:      include/linux/zpool.h
21033 F:      mm/zpool.c
21034
21035 ZR36067 VIDEO FOR LINUX DRIVER
21036 M:      Corentin Labbe <clabbe@baylibre.com>
21037 L:      mjpeg-users@lists.sourceforge.net
21038 L:      linux-media@vger.kernel.org
21039 S:      Maintained
21040 W:      http://mjpeg.sourceforge.net/driver-zoran/
21041 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
21042 F:      Documentation/driver-api/media/drivers/zoran.rst
21043 F:      drivers/staging/media/zoran/
21044
21045 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
21046 M:      Minchan Kim <minchan@kernel.org>
21047 M:      Nitin Gupta <ngupta@vflare.org>
21048 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
21049 L:      linux-kernel@vger.kernel.org
21050 S:      Maintained
21051 F:      Documentation/admin-guide/blockdev/zram.rst
21052 F:      drivers/block/zram/
21053
21054 ZS DECSTATION Z85C30 SERIAL DRIVER
21055 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
21056 S:      Maintained
21057 F:      drivers/tty/serial/zs.*
21058
21059 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
21060 M:      Minchan Kim <minchan@kernel.org>
21061 M:      Nitin Gupta <ngupta@vflare.org>
21062 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
21063 L:      linux-mm@kvack.org
21064 S:      Maintained
21065 F:      Documentation/vm/zsmalloc.rst
21066 F:      include/linux/zsmalloc.h
21067 F:      mm/zsmalloc.c
21068
21069 ZSWAP COMPRESSED SWAP CACHING
21070 M:      Seth Jennings <sjenning@redhat.com>
21071 M:      Dan Streetman <ddstreet@ieee.org>
21072 M:      Vitaly Wool <vitaly.wool@konsulko.com>
21073 L:      linux-mm@kvack.org
21074 S:      Maintained
21075 F:      mm/zswap.c
21076
21077 THE REST
21078 M:      Linus Torvalds <torvalds@linux-foundation.org>
21079 L:      linux-kernel@vger.kernel.org
21080 S:      Buried alive in reporters
21081 Q:      http://patchwork.kernel.org/project/LKML/list/
21082 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
21083 F:      *
21084 F:      */