Merge tag 'timers-core-2023-02-20' of git://git.kernel.org/pub/scm/linux/kernel/git...
[platform/kernel/linux-rpi.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 L:      linux-bluetooth@vger.kernel.org
175 L:      linux-wpan@vger.kernel.org
176 S:      Maintained
177 F:      Documentation/networking/6lowpan.rst
178 F:      include/net/6lowpan.h
179 F:      net/6lowpan/
180
181 6PACK NETWORK DRIVER FOR AX.25
182 M:      Andreas Koensgen <ajk@comnets.uni-bremen.de>
183 L:      linux-hams@vger.kernel.org
184 S:      Maintained
185 F:      drivers/net/hamradio/6pack.c
186
187 802.11 (including CFG80211/NL80211)
188 M:      Johannes Berg <johannes@sipsolutions.net>
189 L:      linux-wireless@vger.kernel.org
190 S:      Maintained
191 W:      https://wireless.wiki.kernel.org/
192 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
193 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
194 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-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:      include/uapi/linux/wireless.h
204 F:      net/wireless/
205
206 8169 10/100/1000 GIGABIT ETHERNET DRIVER
207 M:      Heiner Kallweit <hkallweit1@gmail.com>
208 M:      nic_swsd@realtek.com
209 L:      netdev@vger.kernel.org
210 S:      Maintained
211 F:      drivers/net/ethernet/realtek/r8169*
212
213 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
214 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
215 L:      linux-serial@vger.kernel.org
216 S:      Maintained
217 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
218 F:      drivers/tty/serial/8250*
219 F:      include/linux/serial_8250.h
220
221 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
222 L:      netdev@vger.kernel.org
223 S:      Orphan / Obsolete
224 F:      drivers/net/ethernet/8390/
225
226 9P FILE SYSTEM
227 M:      Eric Van Hensbergen <ericvh@gmail.com>
228 M:      Latchesar Ionkov <lucho@ionkov.net>
229 M:      Dominique Martinet <asmadeus@codewreck.org>
230 R:      Christian Schoenebeck <linux_oss@crudebyte.com>
231 L:      v9fs-developer@lists.sourceforge.net
232 S:      Maintained
233 W:      http://swik.net/v9fs
234 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
235 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
236 T:      git git://github.com/martinetd/linux.git
237 F:      Documentation/filesystems/9p.rst
238 F:      fs/9p/
239 F:      include/net/9p/
240 F:      include/trace/events/9p.h
241 F:      include/uapi/linux/virtio_9p.h
242 F:      net/9p/
243
244 A64FX DIAG DRIVER
245 M:      Hitomi Hasegawa <hasegawa-hitomi@fujitsu.com>
246 S:      Supported
247 F:      drivers/soc/fujitsu/a64fx-diag.c
248
249 A8293 MEDIA DRIVER
250 M:      Antti Palosaari <crope@iki.fi>
251 L:      linux-media@vger.kernel.org
252 S:      Maintained
253 W:      https://linuxtv.org
254 W:      http://palosaari.fi/linux/
255 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
256 T:      git git://linuxtv.org/anttip/media_tree.git
257 F:      drivers/media/dvb-frontends/a8293*
258
259 AACRAID SCSI RAID DRIVER
260 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
261 L:      linux-scsi@vger.kernel.org
262 S:      Supported
263 W:      http://www.adaptec.com/
264 F:      Documentation/scsi/aacraid.rst
265 F:      drivers/scsi/aacraid/
266
267 AB8500 BATTERY AND CHARGER DRIVERS
268 M:      Linus Walleij <linus.walleij@linaro.org>
269 F:      Documentation/devicetree/bindings/power/supply/*ab8500*
270 F:      drivers/power/supply/*ab8500*
271
272 ABI/API
273 L:      linux-api@vger.kernel.org
274 F:      include/linux/syscalls.h
275 F:      kernel/sys_ni.c
276 X:      include/uapi/
277 X:      arch/*/include/uapi/
278
279 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
280 M:      Hans de Goede <hdegoede@redhat.com>
281 L:      linux-hwmon@vger.kernel.org
282 S:      Maintained
283 F:      drivers/hwmon/abituguru.c
284
285 ABIT UGURU 3 HARDWARE MONITOR DRIVER
286 M:      Alistair John Strachan <alistair@devzero.co.uk>
287 L:      linux-hwmon@vger.kernel.org
288 S:      Maintained
289 F:      drivers/hwmon/abituguru3.c
290
291 ACCES 104-DIO-48E GPIO DRIVER
292 M:      William Breathitt Gray <william.gray@linaro.org>
293 L:      linux-gpio@vger.kernel.org
294 S:      Maintained
295 F:      drivers/gpio/gpio-104-dio-48e.c
296
297 ACCES 104-IDI-48 GPIO DRIVER
298 M:      William Breathitt Gray <william.gray@linaro.org>
299 L:      linux-gpio@vger.kernel.org
300 S:      Maintained
301 F:      drivers/gpio/gpio-104-idi-48.c
302
303 ACCES 104-IDIO-16 GPIO DRIVER
304 M:      William Breathitt Gray <william.gray@linaro.org>
305 L:      linux-gpio@vger.kernel.org
306 S:      Maintained
307 F:      drivers/gpio/gpio-104-idio-16.c
308
309 ACCES 104-QUAD-8 DRIVER
310 M:      William Breathitt Gray <william.gray@linaro.org>
311 L:      linux-iio@vger.kernel.org
312 S:      Maintained
313 F:      drivers/counter/104-quad-8.c
314
315 ACCES IDIO-16 GPIO LIBRARY
316 M:      William Breathitt Gray <william.gray@linaro.org>
317 L:      linux-gpio@vger.kernel.org
318 S:      Maintained
319 F:      drivers/gpio/gpio-idio-16.c
320 F:      drivers/gpio/gpio-idio-16.h
321
322 ACCES PCI-IDIO-16 GPIO DRIVER
323 M:      William Breathitt Gray <william.gray@linaro.org>
324 L:      linux-gpio@vger.kernel.org
325 S:      Maintained
326 F:      drivers/gpio/gpio-pci-idio-16.c
327
328 ACCES PCIe-IDIO-24 GPIO DRIVER
329 M:      William Breathitt Gray <william.gray@linaro.org>
330 L:      linux-gpio@vger.kernel.org
331 S:      Maintained
332 F:      drivers/gpio/gpio-pcie-idio-24.c
333
334 ACENIC DRIVER
335 M:      Jes Sorensen <jes@trained-monkey.org>
336 L:      linux-acenic@sunsite.dk
337 S:      Maintained
338 F:      drivers/net/ethernet/alteon/acenic*
339
340 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
341 M:      Peter Kaestle <peter@piie.net>
342 L:      platform-driver-x86@vger.kernel.org
343 S:      Maintained
344 W:      http://piie.net/?section=acerhdf
345 F:      drivers/platform/x86/acerhdf.c
346
347 ACER WMI LAPTOP EXTRAS
348 M:      "Lee, Chun-Yi" <jlee@suse.com>
349 L:      platform-driver-x86@vger.kernel.org
350 S:      Maintained
351 F:      drivers/platform/x86/acer-wmi.c
352
353 ACPI
354 M:      "Rafael J. Wysocki" <rafael@kernel.org>
355 R:      Len Brown <lenb@kernel.org>
356 L:      linux-acpi@vger.kernel.org
357 S:      Supported
358 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
359 B:      https://bugzilla.kernel.org
360 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
361 F:      Documentation/ABI/testing/configfs-acpi
362 F:      Documentation/ABI/testing/sysfs-bus-acpi
363 F:      Documentation/firmware-guide/acpi/
364 F:      drivers/acpi/
365 F:      drivers/pci/*/*acpi*
366 F:      drivers/pci/*acpi*
367 F:      drivers/pnp/pnpacpi/
368 F:      include/acpi/
369 F:      include/linux/acpi.h
370 F:      include/linux/fwnode.h
371 F:      tools/power/acpi/
372
373 ACPI APEI
374 M:      "Rafael J. Wysocki" <rafael@kernel.org>
375 R:      Len Brown <lenb@kernel.org>
376 R:      James Morse <james.morse@arm.com>
377 R:      Tony Luck <tony.luck@intel.com>
378 R:      Borislav Petkov <bp@alien8.de>
379 L:      linux-acpi@vger.kernel.org
380 F:      drivers/acpi/apei/
381
382 ACPI COMPONENT ARCHITECTURE (ACPICA)
383 M:      Robert Moore <robert.moore@intel.com>
384 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
385 L:      linux-acpi@vger.kernel.org
386 L:      acpica-devel@lists.linuxfoundation.org
387 S:      Supported
388 W:      https://acpica.org/
389 W:      https://github.com/acpica/acpica/
390 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
391 B:      https://bugzilla.kernel.org
392 B:      https://bugs.acpica.org
393 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
394 F:      drivers/acpi/acpica/
395 F:      include/acpi/
396 F:      tools/power/acpi/
397
398 ACPI FOR ARM64 (ACPI/arm64)
399 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
400 M:      Hanjun Guo <guohanjun@huawei.com>
401 M:      Sudeep Holla <sudeep.holla@arm.com>
402 L:      linux-acpi@vger.kernel.org
403 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
404 S:      Maintained
405 F:      drivers/acpi/arm64
406
407 ACPI SERIAL MULTI INSTANTIATE DRIVER
408 M:      Hans de Goede <hdegoede@redhat.com>
409 L:      platform-driver-x86@vger.kernel.org
410 S:      Maintained
411 F:      drivers/platform/x86/serial-multi-instantiate.c
412
413 ACPI PCC(Platform Communication Channel) MAILBOX DRIVER
414 M:      Sudeep Holla <sudeep.holla@arm.com>
415 L:      linux-acpi@vger.kernel.org
416 S:      Supported
417 F:      drivers/mailbox/pcc.c
418
419 ACPI PMIC DRIVERS
420 M:      "Rafael J. Wysocki" <rafael@kernel.org>
421 M:      Len Brown <lenb@kernel.org>
422 R:      Andy Shevchenko <andy@kernel.org>
423 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
424 L:      linux-acpi@vger.kernel.org
425 S:      Supported
426 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
427 B:      https://bugzilla.kernel.org
428 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
429 F:      drivers/acpi/pmic/
430
431 ACPI THERMAL DRIVER
432 M:      Rafael J. Wysocki <rafael@kernel.org>
433 R:      Zhang Rui <rui.zhang@intel.com>
434 L:      linux-acpi@vger.kernel.org
435 S:      Supported
436 B:      https://bugzilla.kernel.org
437 F:      drivers/acpi/*thermal*
438
439 ACPI VIOT DRIVER
440 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
441 L:      linux-acpi@vger.kernel.org
442 L:      iommu@lists.linux.dev
443 S:      Maintained
444 F:      drivers/acpi/viot.c
445 F:      include/linux/acpi_viot.h
446
447 ACPI WMI DRIVER
448 L:      platform-driver-x86@vger.kernel.org
449 S:      Orphan
450 F:      drivers/platform/x86/wmi.c
451 F:      include/uapi/linux/wmi.h
452
453 ACRN HYPERVISOR SERVICE MODULE
454 M:      Fei Li <fei1.li@intel.com>
455 L:      acrn-dev@lists.projectacrn.org (subscribers-only)
456 S:      Supported
457 W:      https://projectacrn.org
458 F:      Documentation/virt/acrn/
459 F:      drivers/virt/acrn/
460 F:      include/uapi/linux/acrn.h
461
462 AD1889 ALSA SOUND DRIVER
463 L:      linux-parisc@vger.kernel.org
464 S:      Maintained
465 W:      https://parisc.wiki.kernel.org/index.php/AD1889
466 F:      sound/pci/ad1889.*
467
468 AD5110 ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
469 M:      Mugilraj Dhavachelvan <dmugil2000@gmail.com>
470 L:      linux-iio@vger.kernel.org
471 S:      Supported
472 F:      drivers/iio/potentiometer/ad5110.c
473
474 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
475 M:      Michael Hennerich <michael.hennerich@analog.com>
476 S:      Supported
477 W:      http://wiki.analog.com/AD5254
478 W:      https://ez.analog.com/linux-software-drivers
479 F:      drivers/misc/ad525x_dpot.c
480
481 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
482 M:      Michael Hennerich <michael.hennerich@analog.com>
483 S:      Supported
484 W:      http://wiki.analog.com/AD5398
485 W:      https://ez.analog.com/linux-software-drivers
486 F:      drivers/regulator/ad5398.c
487
488 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
489 M:      Michael Hennerich <michael.hennerich@analog.com>
490 S:      Supported
491 W:      http://wiki.analog.com/AD7142
492 W:      https://ez.analog.com/linux-software-drivers
493 F:      drivers/input/misc/ad714x.c
494
495 AD7877 TOUCHSCREEN DRIVER
496 M:      Michael Hennerich <michael.hennerich@analog.com>
497 S:      Supported
498 W:      http://wiki.analog.com/AD7877
499 W:      https://ez.analog.com/linux-software-drivers
500 F:      drivers/input/touchscreen/ad7877.c
501
502 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
503 M:      Michael Hennerich <michael.hennerich@analog.com>
504 S:      Supported
505 W:      http://wiki.analog.com/AD7879
506 W:      https://ez.analog.com/linux-software-drivers
507 F:      drivers/input/touchscreen/ad7879.c
508
509 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
510 M:      Jiri Kosina <jikos@kernel.org>
511 S:      Maintained
512
513 ADF7242 IEEE 802.15.4 RADIO DRIVER
514 M:      Michael Hennerich <michael.hennerich@analog.com>
515 L:      linux-wpan@vger.kernel.org
516 S:      Supported
517 W:      https://wiki.analog.com/ADF7242
518 W:      https://ez.analog.com/linux-software-drivers
519 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
520 F:      drivers/net/ieee802154/adf7242.c
521
522 ADM1025 HARDWARE MONITOR DRIVER
523 M:      Jean Delvare <jdelvare@suse.com>
524 L:      linux-hwmon@vger.kernel.org
525 S:      Maintained
526 F:      Documentation/hwmon/adm1025.rst
527 F:      drivers/hwmon/adm1025.c
528
529 ADM1029 HARDWARE MONITOR DRIVER
530 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
531 L:      linux-hwmon@vger.kernel.org
532 S:      Maintained
533 F:      drivers/hwmon/adm1029.c
534
535 ADM8211 WIRELESS DRIVER
536 L:      linux-wireless@vger.kernel.org
537 S:      Orphan
538 W:      https://wireless.wiki.kernel.org/
539 F:      drivers/net/wireless/admtek/adm8211.*
540
541 ADP1653 FLASH CONTROLLER DRIVER
542 M:      Sakari Ailus <sakari.ailus@iki.fi>
543 L:      linux-media@vger.kernel.org
544 S:      Maintained
545 F:      drivers/media/i2c/adp1653.c
546 F:      include/media/i2c/adp1653.h
547
548 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
549 M:      Michael Hennerich <michael.hennerich@analog.com>
550 S:      Supported
551 W:      http://wiki.analog.com/ADP5520
552 W:      https://ez.analog.com/linux-software-drivers
553 F:      drivers/gpio/gpio-adp5520.c
554 F:      drivers/input/keyboard/adp5520-keys.c
555 F:      drivers/leds/leds-adp5520.c
556 F:      drivers/mfd/adp5520.c
557 F:      drivers/video/backlight/adp5520_bl.c
558
559 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
560 M:      Michael Hennerich <michael.hennerich@analog.com>
561 S:      Supported
562 W:      http://wiki.analog.com/ADP5588
563 W:      https://ez.analog.com/linux-software-drivers
564 F:      Documentation/devicetree/bindings/input/adi,adp5588.yaml
565 F:      drivers/input/keyboard/adp5588-keys.c
566
567 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
568 M:      Michael Hennerich <michael.hennerich@analog.com>
569 S:      Supported
570 W:      http://wiki.analog.com/ADP8860
571 W:      https://ez.analog.com/linux-software-drivers
572 F:      drivers/video/backlight/adp8860_bl.c
573
574 ADT746X FAN DRIVER
575 M:      Colin Leroy <colin@colino.net>
576 S:      Maintained
577 F:      drivers/macintosh/therm_adt746x.c
578
579 ADT7475 HARDWARE MONITOR DRIVER
580 M:      Jean Delvare <jdelvare@suse.com>
581 L:      linux-hwmon@vger.kernel.org
582 S:      Maintained
583 F:      Documentation/hwmon/adt7475.rst
584 F:      drivers/hwmon/adt7475.c
585
586 ADVANSYS SCSI DRIVER
587 M:      Matthew Wilcox <willy@infradead.org>
588 M:      Hannes Reinecke <hare@suse.com>
589 L:      linux-scsi@vger.kernel.org
590 S:      Maintained
591 F:      Documentation/scsi/advansys.rst
592 F:      drivers/scsi/advansys.c
593
594 ADVANTECH SWBTN DRIVER
595 M:      Andrea Ho <Andrea.Ho@advantech.com.tw>
596 L:      platform-driver-x86@vger.kernel.org
597 S:      Maintained
598 F:      drivers/platform/x86/adv_swbutton.c
599
600 ADXL313 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
601 M:      Lucas Stankus <lucas.p.stankus@gmail.com>
602 S:      Supported
603 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl313.yaml
604 F:      drivers/iio/accel/adxl313*
605
606 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
607 M:      Michael Hennerich <michael.hennerich@analog.com>
608 S:      Supported
609 W:      http://wiki.analog.com/ADXL345
610 W:      https://ez.analog.com/linux-software-drivers
611 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl345.yaml
612 F:      drivers/input/misc/adxl34x.c
613
614 ADXL355 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
615 M:      Puranjay Mohan <puranjay12@gmail.com>
616 L:      linux-iio@vger.kernel.org
617 S:      Supported
618 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl355.yaml
619 F:      drivers/iio/accel/adxl355.h
620 F:      drivers/iio/accel/adxl355_core.c
621 F:      drivers/iio/accel/adxl355_i2c.c
622 F:      drivers/iio/accel/adxl355_spi.c
623
624 ADXL367 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
625 M:      Cosmin Tanislav <cosmin.tanislav@analog.com>
626 L:      linux-iio@vger.kernel.org
627 S:      Supported
628 W:      https://ez.analog.com/linux-software-drivers
629 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl367.yaml
630 F:      drivers/iio/accel/adxl367*
631
632 ADXL372 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
633 M:      Michael Hennerich <michael.hennerich@analog.com>
634 S:      Supported
635 W:      https://ez.analog.com/linux-software-drivers
636 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl372.yaml
637 F:      drivers/iio/accel/adxl372.c
638 F:      drivers/iio/accel/adxl372_i2c.c
639 F:      drivers/iio/accel/adxl372_spi.c
640
641 AF9013 MEDIA DRIVER
642 M:      Antti Palosaari <crope@iki.fi>
643 L:      linux-media@vger.kernel.org
644 S:      Maintained
645 W:      https://linuxtv.org
646 W:      http://palosaari.fi/linux/
647 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
648 T:      git git://linuxtv.org/anttip/media_tree.git
649 F:      drivers/media/dvb-frontends/af9013*
650
651 AF9033 MEDIA DRIVER
652 M:      Antti Palosaari <crope@iki.fi>
653 L:      linux-media@vger.kernel.org
654 S:      Maintained
655 W:      https://linuxtv.org
656 W:      http://palosaari.fi/linux/
657 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
658 T:      git git://linuxtv.org/anttip/media_tree.git
659 F:      drivers/media/dvb-frontends/af9033*
660
661 AFFS FILE SYSTEM
662 M:      David Sterba <dsterba@suse.com>
663 L:      linux-fsdevel@vger.kernel.org
664 S:      Odd Fixes
665 F:      Documentation/filesystems/affs.rst
666 F:      fs/affs/
667
668 AFS FILESYSTEM
669 M:      David Howells <dhowells@redhat.com>
670 M:      Marc Dionne <marc.dionne@auristor.com>
671 L:      linux-afs@lists.infradead.org
672 S:      Supported
673 W:      https://www.infradead.org/~dhowells/kafs/
674 F:      Documentation/filesystems/afs.rst
675 F:      fs/afs/
676 F:      include/trace/events/afs.h
677
678 AGPGART DRIVER
679 M:      David Airlie <airlied@redhat.com>
680 L:      dri-devel@lists.freedesktop.org
681 S:      Maintained
682 T:      git git://anongit.freedesktop.org/drm/drm
683 F:      drivers/char/agp/
684 F:      include/linux/agp*
685 F:      include/uapi/linux/agp*
686
687 AHA152X SCSI DRIVER
688 M:      "Juergen E. Fischer" <fischer@norbit.de>
689 L:      linux-scsi@vger.kernel.org
690 S:      Maintained
691 F:      drivers/scsi/aha152x*
692 F:      drivers/scsi/pcmcia/aha152x*
693
694 AIC7XXX / AIC79XX SCSI DRIVER
695 M:      Hannes Reinecke <hare@suse.com>
696 L:      linux-scsi@vger.kernel.org
697 S:      Maintained
698 F:      drivers/scsi/aic7xxx/
699
700 AIMSLAB FM RADIO RECEIVER DRIVER
701 M:      Hans Verkuil <hverkuil@xs4all.nl>
702 L:      linux-media@vger.kernel.org
703 S:      Maintained
704 W:      https://linuxtv.org
705 T:      git git://linuxtv.org/media_tree.git
706 F:      drivers/media/radio/radio-aimslab*
707
708 AIO
709 M:      Benjamin LaHaise <bcrl@kvack.org>
710 L:      linux-aio@kvack.org
711 S:      Supported
712 F:      fs/aio.c
713 F:      include/linux/*aio*.h
714
715 AIRSPY MEDIA DRIVER
716 M:      Antti Palosaari <crope@iki.fi>
717 L:      linux-media@vger.kernel.org
718 S:      Maintained
719 W:      https://linuxtv.org
720 W:      http://palosaari.fi/linux/
721 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
722 T:      git git://linuxtv.org/anttip/media_tree.git
723 F:      drivers/media/usb/airspy/
724
725 ALACRITECH GIGABIT ETHERNET DRIVER
726 M:      Lino Sanfilippo <LinoSanfilippo@gmx.de>
727 S:      Maintained
728 F:      drivers/net/ethernet/alacritech/*
729
730 ALCATEL SPEEDTOUCH USB DRIVER
731 M:      Duncan Sands <duncan.sands@free.fr>
732 L:      linux-usb@vger.kernel.org
733 S:      Maintained
734 W:      http://www.linux-usb.org/SpeedTouch/
735 F:      drivers/usb/atm/speedtch.c
736 F:      drivers/usb/atm/usbatm.c
737
738 ALCHEMY AU1XX0 MMC DRIVER
739 M:      Manuel Lauss <manuel.lauss@gmail.com>
740 S:      Maintained
741 F:      drivers/mmc/host/au1xmmc.c
742
743 ALI1563 I2C DRIVER
744 M:      Rudolf Marek <r.marek@assembler.cz>
745 L:      linux-i2c@vger.kernel.org
746 S:      Maintained
747 F:      Documentation/i2c/busses/i2c-ali1563.rst
748 F:      drivers/i2c/busses/i2c-ali1563.c
749
750 ALIBABA ELASTIC RDMA DRIVER
751 M:      Cheng Xu <chengyou@linux.alibaba.com>
752 M:      Kai Shen <kaishen@linux.alibaba.com>
753 L:      linux-rdma@vger.kernel.org
754 S:      Supported
755 F:      drivers/infiniband/hw/erdma
756 F:      include/uapi/rdma/erdma-abi.h
757
758 ALIBABA PMU DRIVER
759 M:      Shuai Xue <xueshuai@linux.alibaba.com>
760 S:      Supported
761 F:      Documentation/admin-guide/perf/alibaba_pmu.rst
762 F:      drivers/perf/alibaba_uncore_drw_pmu.c
763
764 ALIENWARE WMI DRIVER
765 L:      Dell.Client.Kernel@dell.com
766 S:      Maintained
767 F:      drivers/platform/x86/dell/alienware-wmi.c
768
769 ALLEGRO DVT VIDEO IP CORE DRIVER
770 M:      Michael Tretter <m.tretter@pengutronix.de>
771 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
772 L:      linux-media@vger.kernel.org
773 S:      Maintained
774 F:      Documentation/devicetree/bindings/media/allegro,al5e.yaml
775 F:      drivers/media/platform/allegro-dvt/
776
777 ALLWINNER A10 CSI DRIVER
778 M:      Maxime Ripard <mripard@kernel.org>
779 L:      linux-media@vger.kernel.org
780 S:      Maintained
781 T:      git git://linuxtv.org/media_tree.git
782 F:      Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
783 F:      drivers/media/platform/sunxi/sun4i-csi/
784
785 ALLWINNER A31 CSI DRIVER
786 M:      Yong Deng <yong.deng@magewell.com>
787 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
788 L:      linux-media@vger.kernel.org
789 S:      Maintained
790 T:      git git://linuxtv.org/media_tree.git
791 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
792 F:      drivers/media/platform/sunxi/sun6i-csi/
793
794 ALLWINNER A31 ISP DRIVER
795 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
796 L:      linux-media@vger.kernel.org
797 S:      Maintained
798 T:      git git://linuxtv.org/media_tree.git
799 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-isp.yaml
800 F:      drivers/staging/media/sunxi/sun6i-isp/
801 F:      drivers/staging/media/sunxi/sun6i-isp/uapi/sun6i-isp-config.h
802
803 ALLWINNER A31 MIPI CSI-2 BRIDGE DRIVER
804 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
805 L:      linux-media@vger.kernel.org
806 S:      Maintained
807 T:      git git://linuxtv.org/media_tree.git
808 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-mipi-csi2.yaml
809 F:      drivers/media/platform/sunxi/sun6i-mipi-csi2/
810
811 ALLWINNER CPUFREQ DRIVER
812 M:      Yangtao Li <tiny.windzz@gmail.com>
813 L:      linux-pm@vger.kernel.org
814 S:      Maintained
815 F:      Documentation/devicetree/bindings/opp/allwinner,sun50i-h6-operating-points.yaml
816 F:      drivers/cpufreq/sun50i-cpufreq-nvmem.c
817
818 ALLWINNER CRYPTO DRIVERS
819 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
820 L:      linux-crypto@vger.kernel.org
821 S:      Maintained
822 F:      drivers/crypto/allwinner/
823
824 ALLWINNER HARDWARE SPINLOCK SUPPORT
825 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
826 S:      Maintained
827 F:      Documentation/devicetree/bindings/hwlock/allwinner,sun6i-a31-hwspinlock.yaml
828 F:      drivers/hwspinlock/sun6i_hwspinlock.c
829
830 ALLWINNER THERMAL DRIVER
831 M:      Vasily Khoruzhick <anarsoul@gmail.com>
832 M:      Yangtao Li <tiny.windzz@gmail.com>
833 L:      linux-pm@vger.kernel.org
834 S:      Maintained
835 F:      Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml
836 F:      drivers/thermal/sun8i_thermal.c
837
838 ALLWINNER VPU DRIVER
839 M:      Maxime Ripard <mripard@kernel.org>
840 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
841 L:      linux-media@vger.kernel.org
842 S:      Maintained
843 F:      drivers/staging/media/sunxi/cedrus/
844
845 ALLWINNER DMIC DRIVERS
846 M:      Ban Tao <fengzheng923@gmail.com>
847 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
848 S:      Maintained
849 F:      Documentation/devicetree/bindings/sound/allwinner,sun50i-h6-dmic.yaml
850 F:      sound/soc/sunxi/sun50i-dmic.c
851
852 ALPHA PORT
853 M:      Richard Henderson <richard.henderson@linaro.org>
854 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
855 M:      Matt Turner <mattst88@gmail.com>
856 L:      linux-alpha@vger.kernel.org
857 S:      Odd Fixes
858 F:      arch/alpha/
859
860 ALPS PS/2 TOUCHPAD DRIVER
861 R:      Pali Rohár <pali@kernel.org>
862 F:      drivers/input/mouse/alps.*
863
864 ALTERA I2C CONTROLLER DRIVER
865 M:      Thor Thayer <thor.thayer@linux.intel.com>
866 S:      Maintained
867 F:      Documentation/devicetree/bindings/i2c/i2c-altera.txt
868 F:      drivers/i2c/busses/i2c-altera.c
869
870 ALTERA MAILBOX DRIVER
871 M:      Mun Yew Tham <mun.yew.tham@intel.com>
872 S:      Maintained
873 F:      drivers/mailbox/mailbox-altera.c
874
875 ALTERA MSGDMA IP CORE DRIVER
876 M:      Olivier Dautricourt <olivierdautricourt@gmail.com>
877 R:      Stefan Roese <sr@denx.de>
878 L:      dmaengine@vger.kernel.org
879 S:      Odd Fixes
880 F:      Documentation/devicetree/bindings/dma/altr,msgdma.yaml
881 F:      drivers/dma/altera-msgdma.c
882
883 ALTERA PIO DRIVER
884 M:      Mun Yew Tham <mun.yew.tham@intel.com>
885 L:      linux-gpio@vger.kernel.org
886 S:      Maintained
887 F:      drivers/gpio/gpio-altera.c
888
889 ALTERA SYSTEM MANAGER DRIVER
890 M:      Thor Thayer <thor.thayer@linux.intel.com>
891 S:      Maintained
892 F:      drivers/mfd/altera-sysmgr.c
893 F:      include/linux/mfd/altera-sysmgr.h
894
895 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
896 M:      Thor Thayer <thor.thayer@linux.intel.com>
897 S:      Maintained
898 F:      drivers/gpio/gpio-altera-a10sr.c
899 F:      drivers/mfd/altera-a10sr.c
900 F:      drivers/reset/reset-a10sr.c
901 F:      include/dt-bindings/reset/altr,rst-mgr-a10sr.h
902 F:      include/linux/mfd/altera-a10sr.h
903
904 ALTERA TRIPLE SPEED ETHERNET DRIVER
905 M:      Joyce Ooi <joyce.ooi@intel.com>
906 L:      netdev@vger.kernel.org
907 S:      Maintained
908 F:      drivers/net/ethernet/altera/
909
910 ALTERA TSE PCS
911 M:      Maxime Chevallier <maxime.chevallier@bootlin.com>
912 L:      netdev@vger.kernel.org
913 S:      Supported
914 F:      drivers/net/pcs/pcs-altera-tse.c
915 F:      include/linux/pcs-altera-tse.h
916
917 ALTERA UART/JTAG UART SERIAL DRIVERS
918 M:      Tobias Klauser <tklauser@distanz.ch>
919 L:      linux-serial@vger.kernel.org
920 S:      Maintained
921 F:      drivers/tty/serial/altera_jtaguart.c
922 F:      drivers/tty/serial/altera_uart.c
923 F:      include/linux/altera_jtaguart.h
924 F:      include/linux/altera_uart.h
925
926 AMAZON ANNAPURNA LABS FIC DRIVER
927 M:      Talel Shenhar <talel@amazon.com>
928 S:      Maintained
929 F:      Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
930 F:      drivers/irqchip/irq-al-fic.c
931
932 AMAZON ANNAPURNA LABS MEMORY CONTROLLER EDAC
933 M:      Talel Shenhar <talel@amazon.com>
934 M:      Talel Shenhar <talelshenhar@gmail.com>
935 S:      Maintained
936 F:      Documentation/devicetree/bindings/edac/amazon,al-mc-edac.yaml
937 F:      drivers/edac/al_mc_edac.c
938
939 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
940 M:      Talel Shenhar <talel@amazon.com>
941 S:      Maintained
942 F:      Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
943 F:      drivers/thermal/thermal_mmio.c
944
945 AMAZON ETHERNET DRIVERS
946 M:      Shay Agroskin <shayagr@amazon.com>
947 M:      Arthur Kiyanovski <akiyano@amazon.com>
948 R:      David Arinzon <darinzon@amazon.com>
949 R:      Noam Dagan <ndagan@amazon.com>
950 R:      Saeed Bishara <saeedb@amazon.com>
951 L:      netdev@vger.kernel.org
952 S:      Supported
953 F:      Documentation/networking/device_drivers/ethernet/amazon/ena.rst
954 F:      drivers/net/ethernet/amazon/
955
956 AMAZON RDMA EFA DRIVER
957 M:      Gal Pressman <galpress@amazon.com>
958 R:      Yossi Leybovich <sleybo@amazon.com>
959 L:      linux-rdma@vger.kernel.org
960 S:      Supported
961 Q:      https://patchwork.kernel.org/project/linux-rdma/list/
962 F:      drivers/infiniband/hw/efa/
963 F:      include/uapi/rdma/efa-abi.h
964
965 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
966 M:      Tom Lendacky <thomas.lendacky@amd.com>
967 M:      John Allen <john.allen@amd.com>
968 L:      linux-crypto@vger.kernel.org
969 S:      Supported
970 F:      drivers/crypto/ccp/
971 F:      include/linux/ccp.h
972
973 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER - SEV SUPPORT
974 M:      Brijesh Singh <brijesh.singh@amd.com>
975 M:      Tom Lendacky <thomas.lendacky@amd.com>
976 L:      linux-crypto@vger.kernel.org
977 S:      Supported
978 F:      drivers/crypto/ccp/sev*
979 F:      include/uapi/linux/psp-sev.h
980
981 AMD DISPLAY CORE
982 M:      Harry Wentland <harry.wentland@amd.com>
983 M:      Leo Li <sunpeng.li@amd.com>
984 M:      Rodrigo Siqueira <Rodrigo.Siqueira@amd.com>
985 L:      amd-gfx@lists.freedesktop.org
986 S:      Supported
987 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
988 F:      drivers/gpu/drm/amd/display/
989
990 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
991 M:      Huang Rui <ray.huang@amd.com>
992 L:      linux-hwmon@vger.kernel.org
993 S:      Supported
994 F:      Documentation/hwmon/fam15h_power.rst
995 F:      drivers/hwmon/fam15h_power.c
996
997 AMD FCH GPIO DRIVER
998 M:      Enrico Weigelt, metux IT consult <info@metux.net>
999 L:      linux-gpio@vger.kernel.org
1000 S:      Maintained
1001 F:      drivers/gpio/gpio-amd-fch.c
1002 F:      include/linux/platform_data/gpio/gpio-amd-fch.h
1003
1004 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
1005 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
1006 S:      Orphan
1007 F:      drivers/usb/gadget/udc/amd5536udc.*
1008
1009 AMD GEODE PROCESSOR/CHIPSET SUPPORT
1010 M:      Andres Salomon <dilinger@queued.net>
1011 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
1012 S:      Supported
1013 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
1014 F:      arch/x86/include/asm/geode.h
1015 F:      drivers/char/hw_random/geode-rng.c
1016 F:      drivers/crypto/geode*
1017 F:      drivers/video/fbdev/geode/
1018
1019 AMD IOMMU (AMD-VI)
1020 M:      Joerg Roedel <joro@8bytes.org>
1021 R:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
1022 L:      iommu@lists.linux.dev
1023 S:      Maintained
1024 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
1025 F:      drivers/iommu/amd/
1026 F:      include/linux/amd-iommu.h
1027
1028 AMD KFD
1029 M:      Felix Kuehling <Felix.Kuehling@amd.com>
1030 L:      amd-gfx@lists.freedesktop.org
1031 S:      Supported
1032 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
1033 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
1034 F:      drivers/gpu/drm/amd/amdkfd/
1035 F:      drivers/gpu/drm/amd/include/cik_structs.h
1036 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
1037 F:      drivers/gpu/drm/amd/include/v9_structs.h
1038 F:      drivers/gpu/drm/amd/include/vi_structs.h
1039 F:      include/uapi/linux/kfd_ioctl.h
1040 F:      include/uapi/linux/kfd_sysfs.h
1041
1042 AMD SPI DRIVER
1043 M:      Sanjay R Mehta <sanju.mehta@amd.com>
1044 S:      Maintained
1045 F:      drivers/spi/spi-amd.c
1046
1047 AMD MP2 I2C DRIVER
1048 M:      Elie Morisse <syniurge@gmail.com>
1049 M:      Shyam Sundar S K <shyam-sundar.s-k@amd.com>
1050 L:      linux-i2c@vger.kernel.org
1051 S:      Maintained
1052 F:      drivers/i2c/busses/i2c-amd-mp2*
1053
1054 AMD PMC DRIVER
1055 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
1056 L:      platform-driver-x86@vger.kernel.org
1057 S:      Maintained
1058 F:      drivers/platform/x86/amd/pmc.c
1059
1060 AMD PMF DRIVER
1061 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
1062 L:      platform-driver-x86@vger.kernel.org
1063 S:      Maintained
1064 F:      Documentation/ABI/testing/sysfs-amd-pmf
1065 F:      drivers/platform/x86/amd/pmf/
1066
1067 AMD HSMP DRIVER
1068 M:      Naveen Krishna Chatradhi <naveenkrishna.chatradhi@amd.com>
1069 R:      Carlos Bilbao <carlos.bilbao@amd.com>
1070 L:      platform-driver-x86@vger.kernel.org
1071 S:      Maintained
1072 F:      Documentation/x86/amd_hsmp.rst
1073 F:      arch/x86/include/asm/amd_hsmp.h
1074 F:      arch/x86/include/uapi/asm/amd_hsmp.h
1075 F:      drivers/platform/x86/amd/hsmp.c
1076
1077 AMD POWERPLAY AND SWSMU
1078 M:      Evan Quan <evan.quan@amd.com>
1079 L:      amd-gfx@lists.freedesktop.org
1080 S:      Supported
1081 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
1082 F:      drivers/gpu/drm/amd/pm/
1083
1084 AMD PSTATE DRIVER
1085 M:      Huang Rui <ray.huang@amd.com>
1086 L:      linux-pm@vger.kernel.org
1087 S:      Supported
1088 F:      Documentation/admin-guide/pm/amd-pstate.rst
1089 F:      drivers/cpufreq/amd-pstate*
1090 F:      include/linux/amd-pstate.h
1091 F:      tools/power/x86/amd_pstate_tracer/amd_pstate_trace.py
1092
1093 AMD PTDMA DRIVER
1094 M:      Sanjay R Mehta <sanju.mehta@amd.com>
1095 L:      dmaengine@vger.kernel.org
1096 S:      Maintained
1097 F:      drivers/dma/ptdma/
1098
1099 AMD SEATTLE DEVICE TREE SUPPORT
1100 M:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
1101 M:      Tom Lendacky <thomas.lendacky@amd.com>
1102 S:      Supported
1103 F:      arch/arm64/boot/dts/amd/
1104
1105 AMD XGBE DRIVER
1106 M:      "Shyam Sundar S K" <Shyam-sundar.S-k@amd.com>
1107 L:      netdev@vger.kernel.org
1108 S:      Supported
1109 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
1110 F:      drivers/net/ethernet/amd/xgbe/
1111
1112 AMD SENSOR FUSION HUB DRIVER
1113 M:      Basavaraj Natikar <basavaraj.natikar@amd.com>
1114 L:      linux-input@vger.kernel.org
1115 S:      Maintained
1116 F:      Documentation/hid/amd-sfh*
1117 F:      drivers/hid/amd-sfh-hid/
1118
1119 AMLOGIC DDR PMU DRIVER
1120 M:      Jiucheng Xu <jiucheng.xu@amlogic.com>
1121 L:      linux-amlogic@lists.infradead.org
1122 S:      Supported
1123 W:      http://www.amlogic.com
1124 F:      Documentation/admin-guide/perf/meson-ddr-pmu.rst
1125 F:      Documentation/devicetree/bindings/perf/amlogic,g12-ddr-pmu.yaml
1126 F:      drivers/perf/amlogic/
1127 F:      include/soc/amlogic/
1128
1129 AMPHION VPU CODEC V4L2 DRIVER
1130 M:      Ming Qian <ming.qian@nxp.com>
1131 M:      Shijie Qin <shijie.qin@nxp.com>
1132 M:      Zhou Peng <eagle.zhou@nxp.com>
1133 L:      linux-media@vger.kernel.org
1134 S:      Maintained
1135 F:      Documentation/devicetree/bindings/media/amphion,vpu.yaml
1136 F:      drivers/media/platform/amphion/
1137
1138 AMS AS73211 DRIVER
1139 M:      Christian Eggers <ceggers@arri.de>
1140 L:      linux-iio@vger.kernel.org
1141 S:      Maintained
1142 F:      Documentation/devicetree/bindings/iio/light/ams,as73211.yaml
1143 F:      drivers/iio/light/as73211.c
1144
1145 AMT (Automatic Multicast Tunneling)
1146 M:      Taehee Yoo <ap420073@gmail.com>
1147 L:      netdev@vger.kernel.org
1148 S:      Maintained
1149 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
1150 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
1151 F:      drivers/net/amt.c
1152
1153 ANALOG DEVICES INC AD4130 DRIVER
1154 M:      Cosmin Tanislav <cosmin.tanislav@analog.com>
1155 L:      linux-iio@vger.kernel.org
1156 S:      Supported
1157 W:      http://ez.analog.com/community/linux-device-drivers
1158 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-ad4130
1159 F:      Documentation/devicetree/bindings/iio/adc/adi,ad4130.yaml
1160 F:      drivers/iio/adc/ad4130.c
1161
1162 ANALOG DEVICES INC AD7192 DRIVER
1163 M:      Alexandru Tachici <alexandru.tachici@analog.com>
1164 L:      linux-iio@vger.kernel.org
1165 S:      Supported
1166 W:      https://ez.analog.com/linux-software-drivers
1167 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7192.yaml
1168 F:      drivers/iio/adc/ad7192.c
1169
1170 ANALOG DEVICES INC AD7292 DRIVER
1171 M:      Marcelo Schmitt <marcelo.schmitt1@gmail.com>
1172 L:      linux-iio@vger.kernel.org
1173 S:      Supported
1174 W:      https://ez.analog.com/linux-software-drivers
1175 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
1176 F:      drivers/iio/adc/ad7292.c
1177
1178 ANALOG DEVICES INC AD3552R DRIVER
1179 M:      Nuno Sá <nuno.sa@analog.com>
1180 L:      linux-iio@vger.kernel.org
1181 S:      Supported
1182 W:      https://ez.analog.com/linux-software-drivers
1183 F:      Documentation/devicetree/bindings/iio/dac/adi,ad3552r.yaml
1184 F:      drivers/iio/dac/ad3552r.c
1185
1186 ANALOG DEVICES INC AD7293 DRIVER
1187 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1188 L:      linux-iio@vger.kernel.org
1189 S:      Supported
1190 W:      https://ez.analog.com/linux-software-drivers
1191 F:      Documentation/devicetree/bindings/iio/dac/adi,ad7293.yaml
1192 F:      drivers/iio/dac/ad7293.c
1193
1194 ANALOG DEVICES INC AD7768-1 DRIVER
1195 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1196 L:      linux-iio@vger.kernel.org
1197 S:      Supported
1198 W:      https://ez.analog.com/linux-software-drivers
1199 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.yaml
1200 F:      drivers/iio/adc/ad7768-1.c
1201
1202 ANALOG DEVICES INC AD7780 DRIVER
1203 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1204 M:      Renato Lui Geh <renatogeh@gmail.com>
1205 L:      linux-iio@vger.kernel.org
1206 S:      Supported
1207 W:      https://ez.analog.com/linux-software-drivers
1208 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
1209 F:      drivers/iio/adc/ad7780.c
1210
1211 ANALOG DEVICES INC AD74115 DRIVER
1212 M:      Cosmin Tanislav <cosmin.tanislav@analog.com>
1213 L:      linux-iio@vger.kernel.org
1214 S:      Supported
1215 W:      http://ez.analog.com/community/linux-device-drivers
1216 F:      Documentation/devicetree/bindings/iio/addac/adi,ad74115.yaml
1217 F:      drivers/iio/addac/ad74115.c
1218
1219 ANALOG DEVICES INC AD74413R DRIVER
1220 M:      Cosmin Tanislav <cosmin.tanislav@analog.com>
1221 L:      linux-iio@vger.kernel.org
1222 S:      Supported
1223 W:      https://ez.analog.com/linux-software-drivers
1224 F:      Documentation/devicetree/bindings/iio/addac/adi,ad74413r.yaml
1225 F:      drivers/iio/addac/ad74413r.c
1226 F:      include/dt-bindings/iio/addac/adi,ad74413r.h
1227
1228 ANALOG DEVICES INC AD9389B DRIVER
1229 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1230 L:      linux-media@vger.kernel.org
1231 S:      Maintained
1232 F:      drivers/media/i2c/ad9389b*
1233
1234 ANALOG DEVICES INC ADA4250 DRIVER
1235 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1236 L:      linux-iio@vger.kernel.org
1237 S:      Supported
1238 W:      https://ez.analog.com/linux-software-drivers
1239 F:      Documentation/devicetree/bindings/iio/amplifiers/adi,ada4250.yaml
1240 F:      drivers/iio/amplifiers/ada4250.c
1241
1242 ANALOG DEVICES INC ADF4377 DRIVER
1243 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1244 L:      linux-iio@vger.kernel.org
1245 S:      Supported
1246 W:      https://ez.analog.com/linux-software-drivers
1247 F:      Documentation/devicetree/bindings/iio/frequency/adi,adf4377.yaml
1248 F:      drivers/iio/frequency/adf4377.c
1249
1250 ANALOG DEVICES INC ADGS1408 DRIVER
1251 M:      Mircea Caprioru <mircea.caprioru@analog.com>
1252 S:      Supported
1253 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
1254 F:      drivers/mux/adgs1408.c
1255
1256 ANALOG DEVICES INC ADIN DRIVER
1257 M:      Michael Hennerich <michael.hennerich@analog.com>
1258 L:      netdev@vger.kernel.org
1259 S:      Supported
1260 W:      https://ez.analog.com/linux-software-drivers
1261 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
1262 F:      drivers/net/phy/adin.c
1263
1264 ANALOG DEVICES INC ADIS DRIVER LIBRARY
1265 M:      Nuno Sa <nuno.sa@analog.com>
1266 L:      linux-iio@vger.kernel.org
1267 S:      Supported
1268 F:      drivers/iio/imu/adis.c
1269 F:      drivers/iio/imu/adis_buffer.c
1270 F:      drivers/iio/imu/adis_trigger.c
1271 F:      include/linux/iio/imu/adis.h
1272
1273 ANALOG DEVICES INC ADIS16460 DRIVER
1274 M:      Dragos Bogdan <dragos.bogdan@analog.com>
1275 L:      linux-iio@vger.kernel.org
1276 S:      Supported
1277 W:      https://ez.analog.com/linux-software-drivers
1278 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1279 F:      drivers/iio/imu/adis16460.c
1280
1281 ANALOG DEVICES INC ADIS16475 DRIVER
1282 M:      Nuno Sa <nuno.sa@analog.com>
1283 L:      linux-iio@vger.kernel.org
1284 W:      https://ez.analog.com/linux-software-drivers
1285 S:      Supported
1286 F:      drivers/iio/imu/adis16475.c
1287 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16475.yaml
1288
1289 ANALOG DEVICES INC ADM1177 DRIVER
1290 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1291 L:      linux-hwmon@vger.kernel.org
1292 S:      Supported
1293 W:      https://ez.analog.com/linux-software-drivers
1294 F:      Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1295 F:      drivers/hwmon/adm1177.c
1296
1297 ANALOG DEVICES INC ADMV1013 DRIVER
1298 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1299 L:      linux-iio@vger.kernel.org
1300 S:      Supported
1301 W:      https://ez.analog.com/linux-software-drivers
1302 F:      Documentation/devicetree/bindings/iio/frequency/adi,admv1013.yaml
1303 F:      drivers/iio/frequency/admv1013.c
1304
1305 ANALOG DEVICES INC ADMV8818 DRIVER
1306 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1307 L:      linux-iio@vger.kernel.org
1308 S:      Supported
1309 W:      https://ez.analog.com/linux-software-drivers
1310 F:      Documentation/devicetree/bindings/iio/filter/adi,admv8818.yaml
1311 F:      drivers/iio/filter/admv8818.c
1312
1313 ANALOG DEVICES INC ADMV1014 DRIVER
1314 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1315 L:      linux-iio@vger.kernel.org
1316 S:      Supported
1317 W:      https://ez.analog.com/linux-software-drivers
1318 F:      Documentation/devicetree/bindings/iio/frequency/adi,admv1014.yaml
1319 F:      drivers/iio/frequency/admv1014.c
1320
1321 ANALOG DEVICES INC ADP5061 DRIVER
1322 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1323 L:      linux-pm@vger.kernel.org
1324 S:      Supported
1325 W:      https://ez.analog.com/linux-software-drivers
1326 F:      drivers/power/supply/adp5061.c
1327
1328 ANALOG DEVICES INC ADRF6780 DRIVER
1329 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1330 L:      linux-iio@vger.kernel.org
1331 S:      Supported
1332 W:      https://ez.analog.com/linux-software-drivers
1333 F:      Documentation/devicetree/bindings/iio/frequency/adi,adrf6780.yaml
1334 F:      drivers/iio/frequency/adrf6780.c
1335
1336 ANALOG DEVICES INC ADV7180 DRIVER
1337 M:      Lars-Peter Clausen <lars@metafoo.de>
1338 L:      linux-media@vger.kernel.org
1339 S:      Supported
1340 W:      https://ez.analog.com/linux-software-drivers
1341 F:      drivers/media/i2c/adv7180.c
1342 F:      Documentation/devicetree/bindings/media/i2c/adv7180.yaml
1343
1344 ANALOG DEVICES INC ADV748X DRIVER
1345 M:      Kieran Bingham <kieran.bingham@ideasonboard.com>
1346 L:      linux-media@vger.kernel.org
1347 S:      Maintained
1348 F:      Documentation/devicetree/bindings/media/i2c/adv748x.yaml
1349 F:      drivers/media/i2c/adv748x/*
1350
1351 ANALOG DEVICES INC ADV7511 DRIVER
1352 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1353 L:      linux-media@vger.kernel.org
1354 S:      Maintained
1355 F:      drivers/media/i2c/adv7511*
1356
1357 ANALOG DEVICES INC ADV7604 DRIVER
1358 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1359 L:      linux-media@vger.kernel.org
1360 S:      Maintained
1361 F:      drivers/media/i2c/adv7604*
1362 F:      Documentation/devicetree/bindings/media/i2c/adv7604.yaml
1363
1364 ANALOG DEVICES INC ADV7842 DRIVER
1365 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1366 L:      linux-media@vger.kernel.org
1367 S:      Maintained
1368 F:      drivers/media/i2c/adv7842*
1369
1370 ANALOG DEVICES INC ADXRS290 DRIVER
1371 M:      Nishant Malpani <nish.malpani25@gmail.com>
1372 L:      linux-iio@vger.kernel.org
1373 S:      Supported
1374 F:      drivers/iio/gyro/adxrs290.c
1375 F:      Documentation/devicetree/bindings/iio/gyroscope/adi,adxrs290.yaml
1376
1377 ANALOG DEVICES INC ASOC CODEC DRIVERS
1378 M:      Lars-Peter Clausen <lars@metafoo.de>
1379 M:      Nuno Sá <nuno.sa@analog.com>
1380 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1381 S:      Supported
1382 W:      http://wiki.analog.com/
1383 W:      https://ez.analog.com/linux-software-drivers
1384 F:      sound/soc/codecs/ad1*
1385 F:      sound/soc/codecs/ad7*
1386 F:      sound/soc/codecs/adau*
1387 F:      sound/soc/codecs/adav*
1388 F:      sound/soc/codecs/sigmadsp.*
1389 F:      sound/soc/codecs/ssm*
1390
1391 ANALOG DEVICES INC DMA DRIVERS
1392 M:      Lars-Peter Clausen <lars@metafoo.de>
1393 S:      Supported
1394 W:      https://ez.analog.com/linux-software-drivers
1395 F:      drivers/dma/dma-axi-dmac.c
1396
1397 ANALOG DEVICES INC IIO DRIVERS
1398 M:      Lars-Peter Clausen <lars@metafoo.de>
1399 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1400 S:      Supported
1401 W:      http://wiki.analog.com/
1402 W:      https://ez.analog.com/linux-software-drivers
1403 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1404 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1405 F:      Documentation/devicetree/bindings/iio/*/adi,*
1406 F:      Documentation/devicetree/bindings/iio/adc/lltc,ltc2496.yaml
1407 F:      Documentation/devicetree/bindings/iio/adc/lltc,ltc2497.yaml
1408 F:      drivers/iio/*/ad*
1409 F:      drivers/iio/adc/ltc249*
1410 F:      drivers/iio/amplifiers/hmc425a.c
1411 F:      drivers/staging/iio/*/ad*
1412 X:      drivers/iio/*/adjd*
1413
1414 ANALOG DEVICES INC MAX31760 DRIVER
1415 M:      Ibrahim Tilki <Ibrahim.Tilki@analog.com>
1416 S:      Maintained
1417 W:      http://wiki.analog.com/
1418 W:      https://ez.analog.com/linux-software-drivers
1419 F:      Documentation/devicetree/bindings/hwmon/adi,max31760.yaml
1420 F:      Documentation/hwmon/max31760.rst
1421 F:      drivers/hwmon/max31760.c
1422
1423 ANALOGBITS PLL LIBRARIES
1424 M:      Paul Walmsley <paul.walmsley@sifive.com>
1425 S:      Supported
1426 F:      drivers/clk/analogbits/*
1427 F:      include/linux/clk/analogbits*
1428
1429 ANDROID CONFIG FRAGMENTS
1430 M:      Rob Herring <robh@kernel.org>
1431 S:      Supported
1432 F:      kernel/configs/android*
1433
1434 ANDROID DRIVERS
1435 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1436 M:      Arve Hjønnevåg <arve@android.com>
1437 M:      Todd Kjos <tkjos@android.com>
1438 M:      Martijn Coenen <maco@android.com>
1439 M:      Joel Fernandes <joel@joelfernandes.org>
1440 M:      Christian Brauner <christian@brauner.io>
1441 M:      Carlos Llamas <cmllamas@google.com>
1442 M:      Suren Baghdasaryan <surenb@google.com>
1443 L:      linux-kernel@vger.kernel.org
1444 S:      Supported
1445 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1446 F:      drivers/android/
1447
1448 ANDROID GOLDFISH PIC DRIVER
1449 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1450 S:      Supported
1451 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1452 F:      drivers/irqchip/irq-goldfish-pic.c
1453
1454 ANDROID GOLDFISH RTC DRIVER
1455 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
1456 S:      Supported
1457 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1458 F:      drivers/rtc/rtc-goldfish.c
1459
1460 AOA (Apple Onboard Audio) ALSA DRIVER
1461 M:      Johannes Berg <johannes@sipsolutions.net>
1462 L:      linuxppc-dev@lists.ozlabs.org
1463 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1464 S:      Maintained
1465 F:      sound/aoa/
1466
1467 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1468 M:      William Breathitt Gray <william.gray@linaro.org>
1469 L:      linux-iio@vger.kernel.org
1470 S:      Maintained
1471 F:      drivers/iio/addac/stx104.c
1472
1473 APM DRIVER
1474 M:      Jiri Kosina <jikos@kernel.org>
1475 S:      Odd fixes
1476 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1477 F:      arch/x86/kernel/apm_32.c
1478 F:      drivers/char/apm-emulation.c
1479 F:      include/linux/apm_bios.h
1480 F:      include/uapi/linux/apm_bios.h
1481
1482 APPARMOR SECURITY MODULE
1483 M:      John Johansen <john.johansen@canonical.com>
1484 M:      John Johansen <john@apparmor.net>
1485 L:      apparmor@lists.ubuntu.com (moderated for non-subscribers)
1486 S:      Supported
1487 W:      apparmor.net
1488 B:      https://gitlab.com/apparmor/apparmor-kernel
1489 C:      irc://irc.oftc.net/apparmor
1490 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1491 T:      https://gitlab.com/apparmor/apparmor-kernel.git
1492 F:      Documentation/admin-guide/LSM/apparmor.rst
1493 F:      security/apparmor/
1494
1495 APPLE BCM5974 MULTITOUCH DRIVER
1496 M:      Henrik Rydberg <rydberg@bitmath.org>
1497 L:      linux-input@vger.kernel.org
1498 S:      Odd fixes
1499 F:      drivers/input/mouse/bcm5974.c
1500
1501 APPLE PCIE CONTROLLER DRIVER
1502 M:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1503 M:      Marc Zyngier <maz@kernel.org>
1504 L:      linux-pci@vger.kernel.org
1505 S:      Maintained
1506 F:      drivers/pci/controller/pcie-apple.c
1507
1508 APPLE SMC DRIVER
1509 M:      Henrik Rydberg <rydberg@bitmath.org>
1510 L:      linux-hwmon@vger.kernel.org
1511 S:      Odd fixes
1512 F:      drivers/hwmon/applesmc.c
1513
1514 APPLETALK NETWORK LAYER
1515 L:      netdev@vger.kernel.org
1516 S:      Odd fixes
1517 F:      drivers/net/appletalk/
1518 F:      include/linux/atalk.h
1519 F:      include/uapi/linux/atalk.h
1520 F:      net/appletalk/
1521
1522 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1523 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1524 S:      Supported
1525 F:      arch/arm64/boot/dts/apm/
1526
1527 APPLIED MICRO (APM) X-GENE SOC EDAC
1528 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1529 S:      Supported
1530 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1531 F:      drivers/edac/xgene_edac.c
1532
1533 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1534 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1535 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1536 S:      Supported
1537 F:      drivers/net/ethernet/apm/xgene-v2/
1538
1539 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1540 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1541 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1542 M:      Quan Nguyen <quan@os.amperecomputing.com>
1543 S:      Supported
1544 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1545 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1546 F:      drivers/net/ethernet/apm/xgene/
1547 F:      drivers/net/mdio/mdio-xgene.c
1548
1549 APPLIED MICRO (APM) X-GENE SOC PMU
1550 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1551 S:      Supported
1552 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1553 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1554 F:      drivers/perf/xgene_pmu.c
1555
1556 APTINA CAMERA SENSOR PLL
1557 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1558 L:      linux-media@vger.kernel.org
1559 S:      Maintained
1560 F:      drivers/media/i2c/aptina-pll.*
1561
1562 AQUACOMPUTER D5 NEXT PUMP SENSOR DRIVER
1563 M:      Aleksa Savic <savicaleksa83@gmail.com>
1564 M:      Jack Doan <me@jackdoan.com>
1565 L:      linux-hwmon@vger.kernel.org
1566 S:      Maintained
1567 F:      Documentation/hwmon/aquacomputer_d5next.rst
1568 F:      drivers/hwmon/aquacomputer_d5next.c
1569
1570 AQUANTIA ETHERNET DRIVER (atlantic)
1571 M:      Igor Russkikh <irusskikh@marvell.com>
1572 L:      netdev@vger.kernel.org
1573 S:      Supported
1574 W:      https://www.marvell.com/
1575 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
1576 F:      Documentation/networking/device_drivers/ethernet/aquantia/atlantic.rst
1577 F:      drivers/net/ethernet/aquantia/atlantic/
1578
1579 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1580 M:      Egor Pomozov <epomozov@marvell.com>
1581 L:      netdev@vger.kernel.org
1582 S:      Supported
1583 W:      http://www.aquantia.com
1584 F:      drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1585
1586 AR0521 ON SEMICONDUCTOR CAMERA SENSOR DRIVER
1587 M:      Krzysztof Hałasa <khalasa@piap.pl>
1588 L:      linux-media@vger.kernel.org
1589 S:      Maintained
1590 F:      Documentation/devicetree/bindings/media/i2c/onnn,ar0521.yaml
1591 F:      drivers/media/i2c/ar0521.c
1592
1593 ARASAN NAND CONTROLLER DRIVER
1594 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1595 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1596 L:      linux-mtd@lists.infradead.org
1597 S:      Maintained
1598 F:      Documentation/devicetree/bindings/mtd/arasan,nand-controller.yaml
1599 F:      drivers/mtd/nand/raw/arasan-nand-controller.c
1600
1601 ARC FRAMEBUFFER DRIVER
1602 M:      Jaya Kumar <jayalk@intworks.biz>
1603 S:      Maintained
1604 F:      drivers/video/fbdev/arcfb.c
1605 F:      drivers/video/fbdev/core/fb_defio.c
1606
1607 ARC PGU DRM DRIVER
1608 M:      Alexey Brodkin <abrodkin@synopsys.com>
1609 S:      Supported
1610 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1611 F:      drivers/gpu/drm/tiny/arcpgu.c
1612
1613 ARCNET NETWORK LAYER
1614 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
1615 L:      netdev@vger.kernel.org
1616 S:      Maintained
1617 F:      drivers/net/arcnet/
1618 F:      include/uapi/linux/if_arcnet.h
1619
1620 ARM ARCHITECTED TIMER DRIVER
1621 M:      Mark Rutland <mark.rutland@arm.com>
1622 M:      Marc Zyngier <maz@kernel.org>
1623 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1624 S:      Maintained
1625 F:      arch/arm/include/asm/arch_timer.h
1626 F:      arch/arm64/include/asm/arch_timer.h
1627 F:      drivers/clocksource/arm_arch_timer.c
1628
1629 ARM HDLCD DRM DRIVER
1630 M:      Liviu Dudau <liviu.dudau@arm.com>
1631 S:      Supported
1632 F:      Documentation/devicetree/bindings/display/arm,hdlcd.yaml
1633 F:      drivers/gpu/drm/arm/hdlcd_*
1634
1635 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1636 M:      Linus Walleij <linus.walleij@linaro.org>
1637 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1638 S:      Maintained
1639 F:      Documentation/devicetree/bindings/arm/arm,integrator.yaml
1640 F:      Documentation/devicetree/bindings/arm/arm,realview.yaml
1641 F:      Documentation/devicetree/bindings/arm/arm,versatile.yaml
1642 F:      Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
1643 F:      Documentation/devicetree/bindings/auxdisplay/arm,versatile-lcd.yaml
1644 F:      Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1645 F:      Documentation/devicetree/bindings/i2c/arm,i2c-versatile.yaml
1646 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1647 F:      Documentation/devicetree/bindings/mtd/mtd-physmap.yaml
1648 F:      arch/arm/boot/dts/arm-realview-*
1649 F:      arch/arm/boot/dts/integrator*
1650 F:      arch/arm/boot/dts/versatile*
1651 F:      arch/arm/mach-versatile/
1652 F:      drivers/bus/arm-integrator-lm.c
1653 F:      drivers/clk/versatile/
1654 F:      drivers/i2c/busses/i2c-versatile.c
1655 F:      drivers/irqchip/irq-versatile-fpga.c
1656 F:      drivers/mtd/maps/physmap-versatile.*
1657 F:      drivers/power/reset/arm-versatile-reboot.c
1658 F:      drivers/soc/versatile/
1659
1660 ARM KOMEDA DRM-KMS DRIVER
1661 M:      James (Qian) Wang <james.qian.wang@arm.com>
1662 M:      Liviu Dudau <liviu.dudau@arm.com>
1663 M:      Mihail Atanassov <mihail.atanassov@arm.com>
1664 L:      Mali DP Maintainers <malidp@foss.arm.com>
1665 S:      Supported
1666 T:      git git://anongit.freedesktop.org/drm/drm-misc
1667 F:      Documentation/devicetree/bindings/display/arm,komeda.yaml
1668 F:      Documentation/gpu/komeda-kms.rst
1669 F:      drivers/gpu/drm/arm/display/include/
1670 F:      drivers/gpu/drm/arm/display/komeda/
1671
1672 ARM MALI PANFROST DRM DRIVER
1673 M:      Rob Herring <robh@kernel.org>
1674 M:      Tomeu Vizoso <tomeu.vizoso@collabora.com>
1675 R:      Steven Price <steven.price@arm.com>
1676 R:      Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
1677 L:      dri-devel@lists.freedesktop.org
1678 S:      Supported
1679 T:      git git://anongit.freedesktop.org/drm/drm-misc
1680 F:      drivers/gpu/drm/panfrost/
1681 F:      include/uapi/drm/panfrost_drm.h
1682
1683 ARM MALI-DP DRM DRIVER
1684 M:      Liviu Dudau <liviu.dudau@arm.com>
1685 M:      Brian Starkey <brian.starkey@arm.com>
1686 L:      Mali DP Maintainers <malidp@foss.arm.com>
1687 S:      Supported
1688 T:      git git://anongit.freedesktop.org/drm/drm-misc
1689 F:      Documentation/devicetree/bindings/display/arm,malidp.yaml
1690 F:      Documentation/gpu/afbc.rst
1691 F:      drivers/gpu/drm/arm/
1692
1693 ARM MFM AND FLOPPY DRIVERS
1694 M:      Ian Molton <spyro@f2s.com>
1695 S:      Maintained
1696 F:      arch/arm/include/asm/floppy.h
1697 F:      arch/arm/mach-rpc/floppydma.S
1698
1699 ARM PMU PROFILING AND DEBUGGING
1700 M:      Will Deacon <will@kernel.org>
1701 M:      Mark Rutland <mark.rutland@arm.com>
1702 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1703 S:      Maintained
1704 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1705 F:      Documentation/devicetree/bindings/perf/
1706 F:      arch/arm*/include/asm/hw_breakpoint.h
1707 F:      arch/arm*/include/asm/perf_event.h
1708 F:      arch/arm*/kernel/hw_breakpoint.c
1709 F:      arch/arm*/kernel/perf_*
1710 F:      drivers/perf/
1711 F:      include/linux/perf/arm_pmu.h
1712
1713 ARM PORT
1714 M:      Russell King <linux@armlinux.org.uk>
1715 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1716 S:      Odd Fixes
1717 W:      http://www.armlinux.org.uk/
1718 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1719 F:      arch/arm/
1720 X:      arch/arm/boot/dts/
1721
1722 ARM PRIMECELL AACI PL041 DRIVER
1723 M:      Russell King <linux@armlinux.org.uk>
1724 S:      Odd Fixes
1725 F:      sound/arm/aaci.*
1726
1727 ARM PRIMECELL BUS SUPPORT
1728 M:      Russell King <linux@armlinux.org.uk>
1729 S:      Odd Fixes
1730 F:      drivers/amba/
1731 F:      include/linux/amba/bus.h
1732
1733 ARM PRIMECELL PL35X NAND CONTROLLER DRIVER
1734 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1735 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1736 L:      linux-mtd@lists.infradead.org
1737 S:      Maintained
1738 F:      Documentation/devicetree/bindings/mtd/arm,pl353-nand-r2p1.yaml
1739 F:      drivers/mtd/nand/raw/pl35x-nand-controller.c
1740
1741 ARM PRIMECELL PL35X SMC DRIVER
1742 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1743 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1744 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1745 S:      Maintained
1746 F:      Documentation/devicetree/bindings/memory-controllers/arm,pl35x-smc.yaml
1747 F:      drivers/memory/pl353-smc.c
1748
1749 ARM PRIMECELL CLCD PL110 DRIVER
1750 M:      Russell King <linux@armlinux.org.uk>
1751 S:      Odd Fixes
1752 F:      drivers/video/fbdev/amba-clcd.*
1753
1754 ARM PRIMECELL KMI PL050 DRIVER
1755 M:      Russell King <linux@armlinux.org.uk>
1756 S:      Odd Fixes
1757 F:      drivers/input/serio/ambakmi.*
1758 F:      include/linux/amba/kmi.h
1759
1760 ARM PRIMECELL MMCI PL180/1 DRIVER
1761 M:      Russell King <linux@armlinux.org.uk>
1762 S:      Odd Fixes
1763 F:      drivers/mmc/host/mmci.*
1764 F:      include/linux/amba/mmci.h
1765
1766 ARM PRIMECELL SSP PL022 SPI DRIVER
1767 M:      Linus Walleij <linus.walleij@linaro.org>
1768 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1769 S:      Maintained
1770 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1771 F:      drivers/spi/spi-pl022.c
1772
1773 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1774 M:      Russell King <linux@armlinux.org.uk>
1775 S:      Odd Fixes
1776 F:      drivers/tty/serial/amba-pl01*.c
1777 F:      include/linux/amba/serial.h
1778
1779 ARM PRIMECELL VIC PL190/PL192 DRIVER
1780 M:      Linus Walleij <linus.walleij@linaro.org>
1781 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1782 S:      Maintained
1783 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.yaml
1784 F:      drivers/irqchip/irq-vic.c
1785
1786 ARM SMC WATCHDOG DRIVER
1787 M:      Julius Werner <jwerner@chromium.org>
1788 R:      Evan Benn <evanbenn@chromium.org>
1789 S:      Maintained
1790 F:      Documentation/devicetree/bindings/watchdog/arm-smc-wdt.yaml
1791 F:      drivers/watchdog/arm_smc_wdt.c
1792
1793 ARM SMMU DRIVERS
1794 M:      Will Deacon <will@kernel.org>
1795 R:      Robin Murphy <robin.murphy@arm.com>
1796 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1797 S:      Maintained
1798 F:      Documentation/devicetree/bindings/iommu/arm,smmu*
1799 F:      drivers/iommu/arm/
1800 F:      drivers/iommu/io-pgtable-arm*
1801
1802 ARM AND ARM64 SoC SUB-ARCHITECTURES (COMMON PARTS)
1803 M:      Arnd Bergmann <arnd@arndb.de>
1804 M:      Olof Johansson <olof@lixom.net>
1805 M:      soc@kernel.org
1806 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1807 S:      Maintained
1808 C:      irc://irc.libera.chat/armlinux
1809 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1810 F:      arch/arm/boot/dts/Makefile
1811 F:      arch/arm64/boot/dts/Makefile
1812
1813 ARM SUB-ARCHITECTURES
1814 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1815 S:      Maintained
1816 C:      irc://irc.libera.chat/armlinux
1817 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1818 F:      arch/arm/mach-*/
1819 F:      arch/arm/plat-*/
1820
1821 ARM/ACTIONS SEMI ARCHITECTURE
1822 M:      Andreas Färber <afaerber@suse.de>
1823 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1824 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1825 L:      linux-actions@lists.infradead.org (moderated for non-subscribers)
1826 S:      Maintained
1827 F:      Documentation/devicetree/bindings/arm/actions.yaml
1828 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1829 F:      Documentation/devicetree/bindings/dma/owl-dma.yaml
1830 F:      Documentation/devicetree/bindings/i2c/i2c-owl.yaml
1831 F:      Documentation/devicetree/bindings/interrupt-controller/actions,owl-sirq.yaml
1832 F:      Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1833 F:      Documentation/devicetree/bindings/net/actions,owl-emac.yaml
1834 F:      Documentation/devicetree/bindings/pinctrl/actions,*
1835 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1836 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1837 F:      arch/arm/boot/dts/owl-*
1838 F:      arch/arm/mach-actions/
1839 F:      arch/arm64/boot/dts/actions/
1840 F:      drivers/clk/actions/
1841 F:      drivers/clocksource/timer-owl*
1842 F:      drivers/dma/owl-dma.c
1843 F:      drivers/i2c/busses/i2c-owl.c
1844 F:      drivers/irqchip/irq-owl-sirq.c
1845 F:      drivers/mmc/host/owl-mmc.c
1846 F:      drivers/net/ethernet/actions/
1847 F:      drivers/pinctrl/actions/*
1848 F:      drivers/soc/actions/
1849 F:      include/dt-bindings/power/owl-*
1850 F:      include/dt-bindings/reset/actions,*
1851 F:      include/linux/soc/actions/
1852 N:      owl
1853
1854 ARM/Allwinner SoC Clock Support
1855 M:      Emilio López <emilio@elopez.com.ar>
1856 S:      Maintained
1857 F:      drivers/clk/sunxi/
1858
1859 ARM/Allwinner sunXi SoC support
1860 M:      Chen-Yu Tsai <wens@csie.org>
1861 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
1862 M:      Samuel Holland <samuel@sholland.org>
1863 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1864 S:      Maintained
1865 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1866 L:      linux-sunxi@lists.linux.dev
1867 F:      arch/arm/mach-sunxi/
1868 F:      arch/arm64/boot/dts/allwinner/
1869 F:      drivers/clk/sunxi-ng/
1870 F:      drivers/pinctrl/sunxi/
1871 F:      drivers/soc/sunxi/
1872 N:      allwinner
1873 N:      sun[x456789]i
1874 N:      sun[25]0i
1875
1876 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1877 M:      Neil Armstrong <neil.armstrong@linaro.org>
1878 M:      Jerome Brunet <jbrunet@baylibre.com>
1879 L:      linux-amlogic@lists.infradead.org
1880 S:      Maintained
1881 F:      Documentation/devicetree/bindings/clock/amlogic*
1882 F:      drivers/clk/meson/
1883 F:      include/dt-bindings/clock/gxbb*
1884 F:      include/dt-bindings/clock/meson*
1885
1886 ARM/Amlogic Meson SoC Crypto Drivers
1887 M:      Corentin Labbe <clabbe@baylibre.com>
1888 L:      linux-crypto@vger.kernel.org
1889 L:      linux-amlogic@lists.infradead.org
1890 S:      Maintained
1891 F:      Documentation/devicetree/bindings/crypto/amlogic*
1892 F:      drivers/crypto/amlogic/
1893
1894 ARM/Amlogic Meson SoC Sound Drivers
1895 M:      Jerome Brunet <jbrunet@baylibre.com>
1896 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1897 S:      Maintained
1898 F:      Documentation/devicetree/bindings/sound/amlogic*
1899 F:      sound/soc/meson/
1900
1901 ARM/Amlogic Meson SoC support
1902 M:      Neil Armstrong <neil.armstrong@linaro.org>
1903 M:      Kevin Hilman <khilman@baylibre.com>
1904 R:      Jerome Brunet <jbrunet@baylibre.com>
1905 R:      Martin Blumenstingl <martin.blumenstingl@googlemail.com>
1906 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1907 L:      linux-amlogic@lists.infradead.org
1908 S:      Maintained
1909 W:      http://linux-meson.com/
1910 F:      arch/arm/boot/dts/meson*
1911 F:      arch/arm/mach-meson/
1912 F:      arch/arm64/boot/dts/amlogic/
1913 F:      drivers/mmc/host/meson*
1914 F:      drivers/pinctrl/meson/
1915 F:      drivers/rtc/rtc-meson*
1916 F:      drivers/soc/amlogic/
1917 N:      meson
1918
1919 ARM/Annapurna Labs ALPINE ARCHITECTURE
1920 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
1921 M:      Antoine Tenart <atenart@kernel.org>
1922 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1923 S:      Maintained
1924 F:      arch/arm/boot/dts/alpine*
1925 F:      arch/arm/mach-alpine/
1926 F:      arch/arm64/boot/dts/amazon/
1927 F:      drivers/*/*alpine*
1928
1929 ARM/APPLE MACHINE SUPPORT
1930 M:      Hector Martin <marcan@marcan.st>
1931 M:      Sven Peter <sven@svenpeter.dev>
1932 R:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1933 L:      asahi@lists.linux.dev
1934 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1935 S:      Maintained
1936 W:      https://asahilinux.org
1937 B:      https://github.com/AsahiLinux/linux/issues
1938 C:      irc://irc.oftc.net/asahi-dev
1939 T:      git https://github.com/AsahiLinux/linux.git
1940 F:      Documentation/devicetree/bindings/arm/apple.yaml
1941 F:      Documentation/devicetree/bindings/arm/apple/*
1942 F:      Documentation/devicetree/bindings/clock/apple,nco.yaml
1943 F:      Documentation/devicetree/bindings/cpufreq/apple,cluster-cpufreq.yaml
1944 F:      Documentation/devicetree/bindings/dma/apple,admac.yaml
1945 F:      Documentation/devicetree/bindings/i2c/apple,i2c.yaml
1946 F:      Documentation/devicetree/bindings/interrupt-controller/apple,*
1947 F:      Documentation/devicetree/bindings/iommu/apple,dart.yaml
1948 F:      Documentation/devicetree/bindings/iommu/apple,sart.yaml
1949 F:      Documentation/devicetree/bindings/mailbox/apple,mailbox.yaml
1950 F:      Documentation/devicetree/bindings/net/bluetooth/brcm,bcm4377-bluetooth.yaml
1951 F:      Documentation/devicetree/bindings/nvme/apple,nvme-ans.yaml
1952 F:      Documentation/devicetree/bindings/nvmem/apple,efuses.yaml
1953 F:      Documentation/devicetree/bindings/pci/apple,pcie.yaml
1954 F:      Documentation/devicetree/bindings/pinctrl/apple,pinctrl.yaml
1955 F:      Documentation/devicetree/bindings/power/apple*
1956 F:      Documentation/devicetree/bindings/watchdog/apple,wdt.yaml
1957 F:      arch/arm64/boot/dts/apple/
1958 F:      drivers/bluetooth/hci_bcm4377.c
1959 F:      drivers/clk/clk-apple-nco.c
1960 F:      drivers/cpufreq/apple-soc-cpufreq.c
1961 F:      drivers/dma/apple-admac.c
1962 F:      drivers/i2c/busses/i2c-pasemi-core.c
1963 F:      drivers/i2c/busses/i2c-pasemi-platform.c
1964 F:      drivers/iommu/apple-dart.c
1965 F:      drivers/iommu/io-pgtable-dart.c
1966 F:      drivers/irqchip/irq-apple-aic.c
1967 F:      drivers/mailbox/apple-mailbox.c
1968 F:      drivers/nvme/host/apple.c
1969 F:      drivers/nvmem/apple-efuses.c
1970 F:      drivers/pinctrl/pinctrl-apple-gpio.c
1971 F:      drivers/soc/apple/*
1972 F:      drivers/watchdog/apple_wdt.c
1973 F:      include/dt-bindings/interrupt-controller/apple-aic.h
1974 F:      include/dt-bindings/pinctrl/apple.h
1975 F:      include/linux/apple-mailbox.h
1976 F:      include/linux/soc/apple/*
1977
1978 ARM/APPLE MACHINE SOUND DRIVERS
1979 M:      Martin Povišer <povik+lin@cutebit.org>
1980 L:      asahi@lists.linux.dev
1981 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1982 S:      Maintained
1983 F:      Documentation/devicetree/bindings/sound/apple,*
1984 F:      sound/soc/apple/*
1985 F:      sound/soc/codecs/cs42l83-i2c.c
1986
1987 ARM/ARTPEC MACHINE SUPPORT
1988 M:      Jesper Nilsson <jesper.nilsson@axis.com>
1989 M:      Lars Persson <lars.persson@axis.com>
1990 L:      linux-arm-kernel@axis.com
1991 S:      Maintained
1992 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1993 F:      arch/arm/boot/dts/artpec6*
1994 F:      arch/arm/mach-artpec
1995 F:      drivers/clk/axis
1996 F:      drivers/crypto/axis
1997 F:      drivers/mmc/host/usdhi6rol0.c
1998 F:      drivers/pinctrl/pinctrl-artpec*
1999
2000 ARM/ASPEED I2C DRIVER
2001 M:      Brendan Higgins <brendanhiggins@google.com>
2002 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
2003 R:      Joel Stanley <joel@jms.id.au>
2004 L:      linux-i2c@vger.kernel.org
2005 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2006 S:      Maintained
2007 F:      Documentation/devicetree/bindings/i2c/aspeed,i2c.yaml
2008 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
2009 F:      drivers/i2c/busses/i2c-aspeed.c
2010 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
2011
2012 ARM/ASPEED MACHINE SUPPORT
2013 M:      Joel Stanley <joel@jms.id.au>
2014 R:      Andrew Jeffery <andrew@aj.id.au>
2015 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2016 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2017 S:      Supported
2018 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
2019 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
2020 F:      Documentation/devicetree/bindings/arm/aspeed/
2021 F:      arch/arm/boot/dts/aspeed-*
2022 F:      arch/arm/mach-aspeed/
2023 N:      aspeed
2024
2025 ARM/BITMAIN ARCHITECTURE
2026 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2027 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2028 S:      Maintained
2029 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
2030 F:      Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
2031 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
2032 F:      arch/arm64/boot/dts/bitmain/
2033 F:      drivers/clk/clk-bm1880.c
2034 F:      drivers/pinctrl/pinctrl-bm1880.c
2035
2036 ARM/CALXEDA HIGHBANK ARCHITECTURE
2037 M:      Andre Przywara <andre.przywara@arm.com>
2038 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2039 S:      Maintained
2040 F:      arch/arm/boot/dts/ecx-*.dts*
2041 F:      arch/arm/boot/dts/highbank.dts
2042 F:      arch/arm/mach-highbank/
2043
2044 ARM/CAVIUM THUNDER NETWORK DRIVER
2045 M:      Sunil Goutham <sgoutham@marvell.com>
2046 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2047 S:      Supported
2048 F:      drivers/net/ethernet/cavium/thunder/
2049
2050 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
2051 M:      Lukasz Majewski <lukma@denx.de>
2052 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2053 S:      Maintained
2054 F:      arch/arm/mach-ep93xx/ts72xx.c
2055
2056 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
2057 M:      Alexander Shiyan <shc_work@mail.ru>
2058 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2059 S:      Odd Fixes
2060 N:      clps711x
2061
2062 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
2063 M:      Lennert Buytenhek <kernel@wantstofly.org>
2064 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2065 S:      Maintained
2066
2067 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
2068 M:      Hartley Sweeten <hsweeten@visionengravers.com>
2069 M:      Alexander Sverdlin <alexander.sverdlin@gmail.com>
2070 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2071 S:      Maintained
2072 F:      arch/arm/boot/compressed/misc-ep93xx.h
2073 F:      arch/arm/mach-ep93xx/
2074
2075 ARM/CLKDEV SUPPORT
2076 M:      Russell King <linux@armlinux.org.uk>
2077 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2078 S:      Maintained
2079 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
2080 F:      drivers/clk/clkdev.c
2081
2082 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
2083 M:      Baruch Siach <baruch@tkos.co.il>
2084 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2085 S:      Maintained
2086 F:      arch/arm/boot/dts/cx92755*
2087 N:      digicolor
2088
2089 ARM/CORESIGHT FRAMEWORK AND DRIVERS
2090 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
2091 M:      Suzuki K Poulose <suzuki.poulose@arm.com>
2092 R:      Mike Leach <mike.leach@linaro.org>
2093 R:      Leo Yan <leo.yan@linaro.org>
2094 L:      coresight@lists.linaro.org (moderated for non-subscribers)
2095 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2096 S:      Maintained
2097 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/coresight/linux.git
2098 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
2099 F:      Documentation/devicetree/bindings/arm/arm,coresight-*.yaml
2100 F:      Documentation/devicetree/bindings/arm/arm,embedded-trace-extension.yaml
2101 F:      Documentation/devicetree/bindings/arm/arm,trace-buffer-extension.yaml
2102 F:      Documentation/trace/coresight/*
2103 F:      drivers/hwtracing/coresight/*
2104 F:      include/dt-bindings/arm/coresight-cti-dt.h
2105 F:      include/linux/coresight*
2106 F:      samples/coresight/*
2107 F:      tools/perf/tests/shell/coresight/*
2108 F:      tools/perf/arch/arm/util/auxtrace.c
2109 F:      tools/perf/arch/arm/util/cs-etm.c
2110 F:      tools/perf/arch/arm/util/cs-etm.h
2111 F:      tools/perf/arch/arm/util/pmu.c
2112 F:      tools/perf/util/cs-etm-decoder/*
2113 F:      tools/perf/util/cs-etm.*
2114
2115 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
2116 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
2117 M:      Linus Walleij <linus.walleij@linaro.org>
2118 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2119 S:      Maintained
2120 T:      git git://github.com/ulli-kroll/linux.git
2121 F:      Documentation/devicetree/bindings/arm/gemini.yaml
2122 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.yaml
2123 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
2124 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.yaml
2125 F:      arch/arm/boot/dts/gemini*
2126 F:      arch/arm/mach-gemini/
2127 F:      drivers/crypto/gemini/
2128 F:      drivers/net/ethernet/cortina/
2129 F:      drivers/pinctrl/pinctrl-gemini.c
2130 F:      drivers/rtc/rtc-ftrtc010.c
2131
2132 ARM/CZ.NIC TURRIS SUPPORT
2133 M:      Marek Behún <kabel@kernel.org>
2134 S:      Maintained
2135 W:      https://www.turris.cz/
2136 F:      Documentation/ABI/testing/debugfs-moxtet
2137 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
2138 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
2139 F:      Documentation/devicetree/bindings/bus/moxtet.txt
2140 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
2141 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
2142 F:      Documentation/devicetree/bindings/leds/cznic,turris-omnia-leds.yaml
2143 F:      Documentation/devicetree/bindings/watchdog/armada-37xx-wdt.txt
2144 F:      drivers/bus/moxtet.c
2145 F:      drivers/firmware/turris-mox-rwtm.c
2146 F:      drivers/leds/leds-turris-omnia.c
2147 F:      drivers/mailbox/armada-37xx-rwtm-mailbox.c
2148 F:      drivers/gpio/gpio-moxtet.c
2149 F:      drivers/watchdog/armada_37xx_wdt.c
2150 F:      include/dt-bindings/bus/moxtet.h
2151 F:      include/linux/armada-37xx-rwtm-mailbox.h
2152 F:      include/linux/moxtet.h
2153
2154 ARM/FARADAY FA526 PORT
2155 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
2156 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2157 S:      Maintained
2158 T:      git git://git.berlios.de/gemini-board
2159 F:      arch/arm/mm/*-fa*
2160
2161 ARM/FOOTBRIDGE ARCHITECTURE
2162 M:      Russell King <linux@armlinux.org.uk>
2163 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2164 S:      Maintained
2165 W:      http://www.armlinux.org.uk/
2166 F:      arch/arm/include/asm/hardware/dec21285.h
2167 F:      arch/arm/mach-footbridge/
2168
2169 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
2170 M:      Shawn Guo <shawnguo@kernel.org>
2171 M:      Sascha Hauer <s.hauer@pengutronix.de>
2172 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
2173 R:      Fabio Estevam <festevam@gmail.com>
2174 R:      NXP Linux Team <linux-imx@nxp.com>
2175 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2176 S:      Maintained
2177 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2178 X:      drivers/media/i2c/
2179 F:      arch/arm64/boot/dts/freescale/
2180 X:      arch/arm64/boot/dts/freescale/fsl-*
2181 X:      arch/arm64/boot/dts/freescale/qoriq-*
2182 N:      imx
2183 N:      mxs
2184
2185 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
2186 M:      Shawn Guo <shawnguo@kernel.org>
2187 M:      Li Yang <leoyang.li@nxp.com>
2188 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2189 S:      Maintained
2190 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2191 F:      arch/arm/boot/dts/ls1021a*
2192 F:      arch/arm64/boot/dts/freescale/fsl-*
2193 F:      arch/arm64/boot/dts/freescale/qoriq-*
2194
2195 ARM/FREESCALE VYBRID ARM ARCHITECTURE
2196 M:      Shawn Guo <shawnguo@kernel.org>
2197 M:      Sascha Hauer <s.hauer@pengutronix.de>
2198 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
2199 R:      Stefan Agner <stefan@agner.ch>
2200 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2201 S:      Maintained
2202 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2203 F:      arch/arm/boot/dts/vf*
2204 F:      arch/arm/mach-imx/*vf610*
2205
2206 ARM/GUMSTIX MACHINE SUPPORT
2207 M:      Steve Sakoman <sakoman@gmail.com>
2208 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2209 S:      Maintained
2210
2211 ARM/HISILICON SOC SUPPORT
2212 M:      Wei Xu <xuwei5@hisilicon.com>
2213 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2214 S:      Supported
2215 W:      http://www.hisilicon.com
2216 T:      git https://github.com/hisilicon/linux-hisi.git
2217 F:      arch/arm/boot/dts/hi3*
2218 F:      arch/arm/boot/dts/hip*
2219 F:      arch/arm/boot/dts/hisi*
2220 F:      arch/arm/mach-hisi/
2221 F:      arch/arm64/boot/dts/hisilicon/
2222
2223 ARM/HP JORNADA 7XX MACHINE SUPPORT
2224 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
2225 S:      Maintained
2226 W:      www.jlime.com
2227 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
2228 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
2229 F:      arch/arm/mach-sa1100/jornada720.c
2230
2231 ARM/HPE GXP ARCHITECTURE
2232 M:      Jean-Marie Verdun <verdun@hpe.com>
2233 M:      Nick Hawkins <nick.hawkins@hpe.com>
2234 S:      Maintained
2235 F:      Documentation/devicetree/bindings/arm/hpe,gxp.yaml
2236 F:      Documentation/devicetree/bindings/spi/hpe,gxp-spifi.yaml
2237 F:      Documentation/devicetree/bindings/timer/hpe,gxp-timer.yaml
2238 F:      arch/arm/boot/dts/hpe-bmc*
2239 F:      arch/arm/boot/dts/hpe-gxp*
2240 F:      arch/arm/mach-hpe/
2241 F:      drivers/clocksource/timer-gxp.c
2242 F:      drivers/spi/spi-gxp.c
2243 F:      drivers/watchdog/gxp-wdt.c
2244
2245 ARM/IGEP MACHINE SUPPORT
2246 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
2247 M:      Javier Martinez Canillas <javier@dowhile0.org>
2248 L:      linux-omap@vger.kernel.org
2249 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2250 S:      Maintained
2251 F:      arch/arm/boot/dts/omap3-igep*
2252
2253 ARM/INTEL IXP4XX ARM ARCHITECTURE
2254 M:      Linus Walleij <linusw@kernel.org>
2255 M:      Imre Kaloz <kaloz@openwrt.org>
2256 M:      Krzysztof Halasa <khalasa@piap.pl>
2257 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2258 S:      Maintained
2259 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
2260 F:      Documentation/devicetree/bindings/bus/intel,ixp4xx-expansion-bus-controller.yaml
2261 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
2262 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
2263 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
2264 F:      arch/arm/boot/dts/intel-ixp*
2265 F:      arch/arm/mach-ixp4xx/
2266 F:      drivers/bus/intel-ixp4xx-eb.c
2267 F:      drivers/clocksource/timer-ixp4xx.c
2268 F:      drivers/crypto/ixp4xx_crypto.c
2269 F:      drivers/gpio/gpio-ixp4xx.c
2270 F:      drivers/irqchip/irq-ixp4xx.c
2271
2272 ARM/INTEL KEEMBAY ARCHITECTURE
2273 M:      Paul J. Murphy <paul.j.murphy@intel.com>
2274 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
2275 S:      Maintained
2276 F:      Documentation/devicetree/bindings/arm/intel,keembay.yaml
2277 F:      arch/arm64/boot/dts/intel/keembay-evm.dts
2278 F:      arch/arm64/boot/dts/intel/keembay-soc.dtsi
2279
2280 ARM/INTEL XSC3 (MANZANO) ARM CORE
2281 M:      Lennert Buytenhek <kernel@wantstofly.org>
2282 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2283 S:      Maintained
2284
2285 ARM/LG1K ARCHITECTURE
2286 M:      Chanho Min <chanho.min@lge.com>
2287 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2288 S:      Maintained
2289 F:      arch/arm64/boot/dts/lg/
2290
2291 ARM/LPC18XX ARCHITECTURE
2292 M:      Vladimir Zapolskiy <vz@mleia.com>
2293 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2294 S:      Maintained
2295 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
2296 F:      arch/arm/boot/dts/lpc43*
2297 F:      drivers/i2c/busses/i2c-lpc2k.c
2298 F:      drivers/memory/pl172.c
2299 F:      drivers/mtd/spi-nor/controllers/nxp-spifi.c
2300 F:      drivers/rtc/rtc-lpc24xx.c
2301 N:      lpc18xx
2302
2303 ARM/LPC32XX SOC SUPPORT
2304 M:      Vladimir Zapolskiy <vz@mleia.com>
2305 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2306 S:      Maintained
2307 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
2308 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
2309 F:      arch/arm/boot/dts/lpc32*
2310 F:      arch/arm/mach-lpc32xx/
2311 F:      drivers/i2c/busses/i2c-pnx.c
2312 F:      drivers/net/ethernet/nxp/lpc_eth.c
2313 F:      drivers/usb/host/ohci-nxp.c
2314 F:      drivers/watchdog/pnx4008_wdt.c
2315 N:      lpc32xx
2316
2317 ARM/Marvell Dove/MV78xx0/Orion SOC support
2318 M:      Andrew Lunn <andrew@lunn.ch>
2319 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2320 M:      Gregory Clement <gregory.clement@bootlin.com>
2321 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2322 S:      Maintained
2323 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2324 F:      Documentation/devicetree/bindings/arm/marvell/marvell,dove.txt
2325 F:      Documentation/devicetree/bindings/arm/marvell/marvell,orion5x.txt
2326 F:      Documentation/devicetree/bindings/soc/dove/
2327 F:      arch/arm/boot/dts/dove*
2328 F:      arch/arm/boot/dts/orion5x*
2329 F:      arch/arm/mach-dove/
2330 F:      arch/arm/mach-mv78xx0/
2331 F:      arch/arm/mach-orion5x/
2332 F:      arch/arm/plat-orion/
2333 F:      drivers/soc/dove/
2334
2335 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2336 M:      Andrew Lunn <andrew@lunn.ch>
2337 M:      Gregory Clement <gregory.clement@bootlin.com>
2338 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2339 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2340 S:      Maintained
2341 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2342 F:      Documentation/devicetree/bindings/arm/marvell/
2343 F:      arch/arm/boot/dts/armada*
2344 F:      arch/arm/boot/dts/kirkwood*
2345 F:      arch/arm/configs/mvebu_*_defconfig
2346 F:      arch/arm/mach-mvebu/
2347 F:      arch/arm64/boot/dts/marvell/armada*
2348 F:      arch/arm64/boot/dts/marvell/cn913*
2349 F:      drivers/cpufreq/armada-37xx-cpufreq.c
2350 F:      drivers/cpufreq/armada-8k-cpufreq.c
2351 F:      drivers/cpufreq/mvebu-cpufreq.c
2352 F:      drivers/irqchip/irq-armada-370-xp.c
2353 F:      drivers/irqchip/irq-mvebu-*
2354 F:      drivers/pinctrl/mvebu/
2355 F:      drivers/rtc/rtc-armada38x.c
2356
2357 ARM/Mediatek RTC DRIVER
2358 M:      Eddie Huang <eddie.huang@mediatek.com>
2359 M:      Sean Wang <sean.wang@mediatek.com>
2360 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2361 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2362 S:      Maintained
2363 F:      Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2364 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2365 F:      drivers/rtc/rtc-mt2712.c
2366 F:      drivers/rtc/rtc-mt6397.c
2367 F:      drivers/rtc/rtc-mt7622.c
2368
2369 ARM/Mediatek SoC support
2370 M:      Matthias Brugger <matthias.bgg@gmail.com>
2371 R:      AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
2372 L:      linux-kernel@vger.kernel.org
2373 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2374 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2375 S:      Maintained
2376 W:      https://mtk.wiki.kernel.org/
2377 C:      irc://irc.libera.chat/linux-mediatek
2378 F:      arch/arm/boot/dts/mt2*
2379 F:      arch/arm/boot/dts/mt6*
2380 F:      arch/arm/boot/dts/mt7*
2381 F:      arch/arm/boot/dts/mt8*
2382 F:      arch/arm/mach-mediatek/
2383 F:      arch/arm64/boot/dts/mediatek/
2384 F:      drivers/soc/mediatek/
2385 N:      mtk
2386 N:      mt[2678]
2387 K:      mediatek
2388
2389 ARM/Mediatek USB3 PHY DRIVER
2390 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
2391 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2392 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2393 S:      Maintained
2394 F:      Documentation/devicetree/bindings/phy/mediatek,*
2395 F:      drivers/phy/mediatek/
2396
2397 ARM/Microchip (AT91) SoC support
2398 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2399 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
2400 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
2401 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2402 S:      Supported
2403 W:      http://www.linux4sam.org
2404 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2405 F:      arch/arm/boot/dts/at91*.dts
2406 F:      arch/arm/boot/dts/at91*.dtsi
2407 F:      arch/arm/boot/dts/sama*.dts
2408 F:      arch/arm/boot/dts/sama*.dtsi
2409 F:      arch/arm/include/debug/at91.S
2410 F:      arch/arm/mach-at91/
2411 F:      drivers/memory/atmel*
2412 F:      drivers/watchdog/sama5d4_wdt.c
2413 F:      include/soc/at91/
2414 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2415 X:      drivers/net/wireless/atmel/
2416 N:      at91
2417 N:      atmel
2418
2419 ARM/Microchip Sparx5 SoC support
2420 M:      Lars Povlsen <lars.povlsen@microchip.com>
2421 M:      Steen Hegelund <Steen.Hegelund@microchip.com>
2422 M:      Daniel Machon <daniel.machon@microchip.com>
2423 M:      UNGLinuxDriver@microchip.com
2424 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2425 S:      Supported
2426 T:      git git://github.com/microchip-ung/linux-upstream.git
2427 F:      arch/arm64/boot/dts/microchip/
2428 F:      drivers/net/ethernet/microchip/vcap/
2429 F:      drivers/pinctrl/pinctrl-microchip-sgpio.c
2430 N:      sparx5
2431
2432 Microchip Timer Counter Block (TCB) Capture Driver
2433 M:      Kamel Bouhara <kamel.bouhara@bootlin.com>
2434 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2435 L:      linux-iio@vger.kernel.org
2436 S:      Maintained
2437 F:      drivers/counter/microchip-tcb-capture.c
2438
2439 ARM/MILBEAUT ARCHITECTURE
2440 M:      Taichi Sugaya <sugaya.taichi@socionext.com>
2441 M:      Takao Orito <orito.takao@socionext.com>
2442 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2443 S:      Maintained
2444 F:      arch/arm/boot/dts/milbeaut*
2445 F:      arch/arm/mach-milbeaut/
2446 N:      milbeaut
2447
2448 ARM/MStar/Sigmastar Armv7 SoC support
2449 M:      Daniel Palmer <daniel@thingy.jp>
2450 M:      Romain Perier <romain.perier@gmail.com>
2451 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2452 S:      Maintained
2453 W:      http://linux-chenxing.org/
2454 T:      git git://github.com/linux-chenxing/linux.git
2455 F:      Documentation/devicetree/bindings/arm/mstar/*
2456 F:      Documentation/devicetree/bindings/clock/mstar,msc313-mpll.yaml
2457 F:      Documentation/devicetree/bindings/gpio/mstar,msc313-gpio.yaml
2458 F:      arch/arm/boot/dts/mstar-*
2459 F:      arch/arm/mach-mstar/
2460 F:      drivers/clk/mstar/
2461 F:      drivers/clocksource/timer-msc313e.c
2462 F:      drivers/gpio/gpio-msc313.c
2463 F:      drivers/rtc/rtc-msc313.c
2464 F:      drivers/watchdog/msc313e_wdt.c
2465 F:      include/dt-bindings/clock/mstar-*
2466 F:      include/dt-bindings/gpio/msc313-gpio.h
2467
2468 ARM/NOMADIK/Ux500 ARCHITECTURES
2469 M:      Linus Walleij <linus.walleij@linaro.org>
2470 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2471 S:      Maintained
2472 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2473 F:      Documentation/devicetree/bindings/arm/ste-*
2474 F:      Documentation/devicetree/bindings/arm/ux500.yaml
2475 F:      Documentation/devicetree/bindings/arm/ux500/
2476 F:      Documentation/devicetree/bindings/i2c/st,nomadik-i2c.yaml
2477 F:      arch/arm/boot/dts/ste-*
2478 F:      arch/arm/mach-nomadik/
2479 F:      arch/arm/mach-ux500/
2480 F:      drivers/clk/clk-nomadik.c
2481 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2482 F:      drivers/dma/ste_dma40*
2483 F:      drivers/hwspinlock/u8500_hsem.c
2484 F:      drivers/i2c/busses/i2c-nomadik.c
2485 F:      drivers/iio/adc/ab8500-gpadc.c
2486 F:      drivers/mfd/ab8500*
2487 F:      drivers/mfd/abx500*
2488 F:      drivers/mfd/db8500*
2489 F:      drivers/pinctrl/nomadik/
2490 F:      drivers/rtc/rtc-ab8500.c
2491 F:      drivers/rtc/rtc-pl031.c
2492 F:      drivers/soc/ux500/
2493
2494 ARM/NUVOTON NPCM ARCHITECTURE
2495 M:      Avi Fishman <avifishman70@gmail.com>
2496 M:      Tomer Maimon <tmaimon77@gmail.com>
2497 M:      Tali Perry <tali.perry1@gmail.com>
2498 R:      Patrick Venture <venture@google.com>
2499 R:      Nancy Yuen <yuenn@google.com>
2500 R:      Benjamin Fair <benjaminfair@google.com>
2501 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2502 S:      Supported
2503 F:      Documentation/devicetree/bindings/*/*/*npcm*
2504 F:      Documentation/devicetree/bindings/*/*npcm*
2505 F:      Documentation/devicetree/bindings/arm/npcm/*
2506 F:      Documentation/devicetree/bindings/rtc/nuvoton,nct3018y.yaml
2507 F:      arch/arm/boot/dts/nuvoton-npcm*
2508 F:      arch/arm/mach-npcm/
2509 F:      arch/arm64/boot/dts/nuvoton/
2510 F:      drivers/*/*npcm*
2511 F:      drivers/*/*/*npcm*
2512 F:      drivers/rtc/rtc-nct3018y.c
2513 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2514 F:      include/dt-bindings/clock/nuvoton,npcm845-clk.h
2515
2516 ARM/NUVOTON WPCM450 ARCHITECTURE
2517 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
2518 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2519 S:      Maintained
2520 W:      https://github.com/neuschaefer/wpcm450/wiki
2521 F:      Documentation/devicetree/bindings/*/*wpcm*
2522 F:      arch/arm/boot/dts/nuvoton-wpcm450*
2523 F:      arch/arm/configs/wpcm450_defconfig
2524 F:      arch/arm/mach-npcm/wpcm450.c
2525 F:      drivers/*/*/*wpcm*
2526 F:      drivers/*/*wpcm*
2527
2528 ARM/NXP S32G ARCHITECTURE
2529 M:      Chester Lin <clin@suse.com>
2530 R:      Andreas Färber <afaerber@suse.de>
2531 R:      Matthias Brugger <mbrugger@suse.com>
2532 R:      NXP S32 Linux Team <s32@nxp.com>
2533 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2534 S:      Maintained
2535 F:      arch/arm64/boot/dts/freescale/s32g*.dts*
2536
2537 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2538 M:      Alexander Clouter <alex@digriz.org.uk>
2539 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2540 S:      Maintained
2541 W:      http://www.digriz.org.uk/ts78xx/kernel
2542 F:      arch/arm/mach-orion5x/ts78xx-*
2543
2544 ARM/OXNAS platform support
2545 M:      Neil Armstrong <neil.armstrong@linaro.org>
2546 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2547 L:      linux-oxnas@groups.io (moderated for non-subscribers)
2548 S:      Maintained
2549 F:      arch/arm/boot/dts/ox8*.dts*
2550 F:      arch/arm/mach-oxnas/
2551 F:      drivers/power/reset/oxnas-restart.c
2552 N:      oxnas
2553
2554 ARM/QUALCOMM SUPPORT
2555 M:      Andy Gross <agross@kernel.org>
2556 M:      Bjorn Andersson <andersson@kernel.org>
2557 R:      Konrad Dybcio <konrad.dybcio@linaro.org>
2558 L:      linux-arm-msm@vger.kernel.org
2559 S:      Maintained
2560 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2561 F:      Documentation/devicetree/bindings/*/qcom*
2562 F:      Documentation/devicetree/bindings/soc/qcom/
2563 F:      arch/arm/boot/dts/qcom-*.dts
2564 F:      arch/arm/boot/dts/qcom-*.dtsi
2565 F:      arch/arm/configs/qcom_defconfig
2566 F:      arch/arm/mach-qcom/
2567 F:      arch/arm64/boot/dts/qcom/
2568 F:      drivers/*/*/qcom*
2569 F:      drivers/*/*/qcom/
2570 F:      drivers/*/pm8???-*
2571 F:      drivers/*/qcom*
2572 F:      drivers/*/qcom/
2573 F:      drivers/bluetooth/btqcomsmd.c
2574 F:      drivers/clocksource/timer-qcom.c
2575 F:      drivers/cpuidle/cpuidle-qcom-spm.c
2576 F:      drivers/extcon/extcon-qcom*
2577 F:      drivers/i2c/busses/i2c-qcom-geni.c
2578 F:      drivers/i2c/busses/i2c-qup.c
2579 F:      drivers/iommu/msm*
2580 F:      drivers/mfd/ssbi.c
2581 F:      drivers/mmc/host/mmci_qcom*
2582 F:      drivers/mmc/host/sdhci-msm.c
2583 F:      drivers/pci/controller/dwc/pcie-qcom.c
2584 F:      drivers/phy/qualcomm/
2585 F:      drivers/power/*/msm*
2586 F:      drivers/reset/reset-qcom-*
2587 F:      drivers/ufs/host/ufs-qcom*
2588 F:      drivers/spi/spi-geni-qcom.c
2589 F:      drivers/spi/spi-qcom-qspi.c
2590 F:      drivers/spi/spi-qup.c
2591 F:      drivers/tty/serial/msm_serial.c
2592 F:      drivers/usb/dwc3/dwc3-qcom.c
2593 F:      include/dt-bindings/*/qcom*
2594 F:      include/linux/*/qcom*
2595 F:      include/linux/soc/qcom/
2596
2597 ARM/RDA MICRO ARCHITECTURE
2598 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2599 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2600 L:      linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2601 S:      Maintained
2602 F:      Documentation/devicetree/bindings/arm/rda.yaml
2603 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2604 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.yaml
2605 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.yaml
2606 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.yaml
2607 F:      arch/arm/boot/dts/rda8810pl-*
2608 F:      drivers/clocksource/timer-rda.c
2609 F:      drivers/gpio/gpio-rda.c
2610 F:      drivers/irqchip/irq-rda-intc.c
2611 F:      drivers/tty/serial/rda-uart.c
2612
2613 ARM/REALTEK ARCHITECTURE
2614 M:      Andreas Färber <afaerber@suse.de>
2615 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2616 L:      linux-realtek-soc@lists.infradead.org (moderated for non-subscribers)
2617 S:      Maintained
2618 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2619 F:      arch/arm/boot/dts/rtd*
2620 F:      arch/arm/mach-realtek/
2621 F:      arch/arm64/boot/dts/realtek/
2622
2623 ARM/RISC-V/RENESAS ARCHITECTURE
2624 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2625 M:      Magnus Damm <magnus.damm@gmail.com>
2626 L:      linux-renesas-soc@vger.kernel.org
2627 S:      Supported
2628 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2629 C:      irc://irc.libera.chat/renesas-soc
2630 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2631 F:      Documentation/devicetree/bindings/hwinfo/renesas,prr.yaml
2632 F:      Documentation/devicetree/bindings/soc/renesas/
2633 F:      arch/arm/boot/dts/emev2*
2634 F:      arch/arm/boot/dts/gr-peach*
2635 F:      arch/arm/boot/dts/iwg20d-q7*
2636 F:      arch/arm/boot/dts/r7s*
2637 F:      arch/arm/boot/dts/r8a*
2638 F:      arch/arm/boot/dts/r9a*
2639 F:      arch/arm/boot/dts/sh*
2640 F:      arch/arm/configs/shmobile_defconfig
2641 F:      arch/arm/include/debug/renesas-scif.S
2642 F:      arch/arm/mach-shmobile/
2643 F:      arch/arm64/boot/dts/renesas/
2644 F:      arch/riscv/boot/dts/renesas/
2645 F:      drivers/soc/renesas/
2646 F:      include/linux/soc/renesas/
2647
2648 ARM/RISCPC ARCHITECTURE
2649 M:      Russell King <linux@armlinux.org.uk>
2650 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2651 S:      Maintained
2652 W:      http://www.armlinux.org.uk/
2653 F:      arch/arm/include/asm/hardware/ioc.h
2654 F:      arch/arm/include/asm/hardware/iomd.h
2655 F:      arch/arm/include/asm/hardware/memc.h
2656 F:      arch/arm/mach-rpc/
2657 F:      drivers/net/ethernet/8390/etherh.c
2658 F:      drivers/net/ethernet/i825xx/ether1*
2659 F:      drivers/net/ethernet/seeq/ether3*
2660 F:      drivers/scsi/arm/
2661
2662 ARM/Rockchip SoC support
2663 M:      Heiko Stuebner <heiko@sntech.de>
2664 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2665 L:      linux-rockchip@lists.infradead.org
2666 S:      Maintained
2667 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2668 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2669 F:      Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2670 F:      Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2671 F:      arch/arm/boot/dts/rk3*
2672 F:      arch/arm/boot/dts/rv11*
2673 F:      arch/arm/mach-rockchip/
2674 F:      drivers/*/*/*rockchip*
2675 F:      drivers/*/*rockchip*
2676 F:      drivers/clk/rockchip/
2677 F:      drivers/i2c/busses/i2c-rk3x.c
2678 F:      sound/soc/rockchip/
2679 N:      rockchip
2680
2681 ARM/SAMSUNG S3C, S5P AND EXYNOS ARM ARCHITECTURES
2682 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
2683 R:      Alim Akhtar <alim.akhtar@samsung.com>
2684 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2685 L:      linux-samsung-soc@vger.kernel.org
2686 S:      Maintained
2687 C:      irc://irc.libera.chat/linux-exynos
2688 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2689 B:      mailto:linux-samsung-soc@vger.kernel.org
2690 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux.git
2691 F:      Documentation/arm/samsung/
2692 F:      Documentation/devicetree/bindings/arm/samsung/
2693 F:      Documentation/devicetree/bindings/hwinfo/samsung,*
2694 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2695 F:      Documentation/devicetree/bindings/soc/samsung/
2696 F:      arch/arm/boot/dts/exynos*
2697 F:      arch/arm/boot/dts/s3c*
2698 F:      arch/arm/boot/dts/s5p*
2699 F:      arch/arm/mach-exynos*/
2700 F:      arch/arm/mach-s3c/
2701 F:      arch/arm/mach-s5p*/
2702 F:      arch/arm64/boot/dts/exynos/
2703 F:      drivers/*/*/*s3c24*
2704 F:      drivers/*/*s3c24*
2705 F:      drivers/*/*s3c64xx*
2706 F:      drivers/*/*s5pv210*
2707 F:      drivers/clocksource/samsung_pwm_timer.c
2708 F:      drivers/memory/samsung/
2709 F:      drivers/pwm/pwm-samsung.c
2710 F:      drivers/soc/samsung/
2711 F:      drivers/tty/serial/samsung*
2712 F:      include/clocksource/samsung_pwm.h
2713 F:      include/linux/platform_data/*s3c*
2714 F:      include/linux/serial_s3c.h
2715 F:      include/linux/soc/samsung/
2716 N:      exynos
2717 N:      s3c64xx
2718 N:      s5pv210
2719
2720 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2721 M:      Łukasz Stelmach <l.stelmach@samsung.com>
2722 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2723 L:      linux-media@vger.kernel.org
2724 S:      Maintained
2725 F:      drivers/media/platform/samsung/s5p-g2d/
2726
2727 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2728 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2729 L:      linux-samsung-soc@vger.kernel.org
2730 L:      linux-media@vger.kernel.org
2731 S:      Maintained
2732 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2733 F:      drivers/media/cec/platform/s5p/
2734
2735 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2736 M:      Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2737 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
2738 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
2739 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2740 L:      linux-media@vger.kernel.org
2741 S:      Maintained
2742 F:      Documentation/devicetree/bindings/media/samsung,s5pv210-jpeg.yaml
2743 F:      drivers/media/platform/samsung/s5p-jpeg/
2744
2745 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2746 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2747 M:      Andrzej Hajda <andrzej.hajda@intel.com>
2748 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2749 L:      linux-media@vger.kernel.org
2750 S:      Maintained
2751 F:      drivers/media/platform/samsung/s5p-mfc/
2752
2753 ARM/SOCFPGA ARCHITECTURE
2754 M:      Dinh Nguyen <dinguyen@kernel.org>
2755 S:      Maintained
2756 W:      http://www.rocketboards.org
2757 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2758 F:      arch/arm/boot/dts/socfpga*
2759 F:      arch/arm/configs/socfpga_defconfig
2760 F:      arch/arm/mach-socfpga/
2761 F:      arch/arm64/boot/dts/altera/
2762 F:      arch/arm64/boot/dts/intel/
2763
2764 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2765 M:      Dinh Nguyen <dinguyen@kernel.org>
2766 S:      Maintained
2767 F:      drivers/clk/socfpga/
2768
2769 ARM/SOCFPGA EDAC SUPPORT
2770 M:      Dinh Nguyen <dinguyen@kernel.org>
2771 S:      Maintained
2772 F:      drivers/edac/altera_edac.[ch]
2773
2774 ARM/SPREADTRUM SoC SUPPORT
2775 M:      Orson Zhai <orsonzhai@gmail.com>
2776 M:      Baolin Wang <baolin.wang7@gmail.com>
2777 M:      Chunyan Zhang <zhang.lyra@gmail.com>
2778 S:      Maintained
2779 F:      arch/arm64/boot/dts/sprd
2780 N:      sprd
2781 N:      sc27xx
2782 N:      sc2731
2783
2784 ARM/STI ARCHITECTURE
2785 M:      Patrice Chotard <patrice.chotard@foss.st.com>
2786 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2787 S:      Maintained
2788 W:      http://www.stlinux.com
2789 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2790 F:      arch/arm/boot/dts/sti*
2791 F:      arch/arm/mach-sti/
2792 F:      drivers/ata/ahci_st.c
2793 F:      drivers/char/hw_random/st-rng.c
2794 F:      drivers/clocksource/arm_global_timer.c
2795 F:      drivers/clocksource/clksrc_st_lpc.c
2796 F:      drivers/cpufreq/sti-cpufreq.c
2797 F:      drivers/dma/st_fdma*
2798 F:      drivers/i2c/busses/i2c-st.c
2799 F:      drivers/media/platform/st/sti/c8sectpfe/
2800 F:      drivers/media/rc/st_rc.c
2801 F:      drivers/mmc/host/sdhci-st.c
2802 F:      drivers/phy/st/phy-miphy28lp.c
2803 F:      drivers/phy/st/phy-stih407-usb.c
2804 F:      drivers/pinctrl/pinctrl-st.c
2805 F:      drivers/remoteproc/st_remoteproc.c
2806 F:      drivers/remoteproc/st_slim_rproc.c
2807 F:      drivers/reset/sti/
2808 F:      drivers/rtc/rtc-st-lpc.c
2809 F:      drivers/tty/serial/st-asc.c
2810 F:      drivers/usb/dwc3/dwc3-st.c
2811 F:      drivers/usb/host/ehci-st.c
2812 F:      drivers/usb/host/ohci-st.c
2813 F:      drivers/watchdog/st_lpc_wdt.c
2814 F:      include/linux/remoteproc/st_slim_rproc.h
2815
2816 ARM/STM32 ARCHITECTURE
2817 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
2818 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
2819 L:      linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2820 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2821 S:      Maintained
2822 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2823 F:      arch/arm/boot/dts/stm32*
2824 F:      arch/arm/mach-stm32/
2825 F:      drivers/clocksource/armv7m_systick.c
2826 N:      stm32
2827 N:      stm
2828
2829 ARM/SUNPLUS SP7021 SOC SUPPORT
2830 M:      Qin Jian <qinjian@cqplus1.com>
2831 L:      linux-arm-kernel@lists.infradead.org (moderated for mon-subscribers)
2832 S:      Maintained
2833 W:      https://sunplus-tibbo.atlassian.net/wiki/spaces/doc/overview
2834 F:      Documentation/devicetree/bindings/arm/sunplus,sp7021.yaml
2835 F:      Documentation/devicetree/bindings/clock/sunplus,sp7021-clkc.yaml
2836 F:      Documentation/devicetree/bindings/interrupt-controller/sunplus,sp7021-intc.yaml
2837 F:      Documentation/devicetree/bindings/reset/sunplus,reset.yaml
2838 F:      arch/arm/boot/dts/sunplus-sp7021*.dts*
2839 F:      arch/arm/configs/sp7021_*defconfig
2840 F:      arch/arm/mach-sunplus/
2841 F:      drivers/irqchip/irq-sp7021-intc.c
2842 F:      drivers/reset/reset-sunplus.c
2843 F:      include/dt-bindings/clock/sunplus,sp7021-clkc.h
2844 F:      include/dt-bindings/reset/sunplus,sp7021-reset.h
2845
2846 ARM/Synaptics SoC support
2847 M:      Jisheng Zhang <jszhang@kernel.org>
2848 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2849 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2850 S:      Maintained
2851 F:      arch/arm/boot/dts/berlin*
2852 F:      arch/arm/mach-berlin/
2853 F:      arch/arm64/boot/dts/synaptics/
2854
2855 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2856 M:      Lennert Buytenhek <kernel@wantstofly.org>
2857 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2858 S:      Maintained
2859
2860 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2861 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
2862 L:      linux-tegra@vger.kernel.org
2863 L:      linux-media@vger.kernel.org
2864 S:      Maintained
2865 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2866 F:      drivers/media/cec/platform/tegra/
2867
2868 ARM/TESLA FSD SoC SUPPORT
2869 M:      Alim Akhtar <alim.akhtar@samsung.com>
2870 M:      linux-fsd@tesla.com
2871 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2872 L:      linux-samsung-soc@vger.kernel.org
2873 S:      Maintained
2874 F:      arch/arm64/boot/dts/tesla/
2875
2876 ARM/TETON BGA MACHINE SUPPORT
2877 M:      "Mark F. Brown" <mark.brown314@gmail.com>
2878 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2879 S:      Maintained
2880
2881 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2882 M:      Santosh Shilimkar <ssantosh@kernel.org>
2883 L:      linux-kernel@vger.kernel.org
2884 S:      Maintained
2885 F:      drivers/memory/*emif*
2886
2887 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2888 M:      Nishanth Menon <nm@ti.com>
2889 M:      Santosh Shilimkar <ssantosh@kernel.org>
2890 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2891 S:      Maintained
2892 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
2893 F:      arch/arm/boot/dts/keystone-*
2894 F:      arch/arm/mach-keystone/
2895
2896 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2897 M:      Santosh Shilimkar <ssantosh@kernel.org>
2898 L:      linux-kernel@vger.kernel.org
2899 S:      Maintained
2900 F:      drivers/clk/keystone/
2901
2902 ARM/TEXAS INSTRUMENT KEYSTONE CLOCKSOURCE
2903 M:      Santosh Shilimkar <ssantosh@kernel.org>
2904 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2905 L:      linux-kernel@vger.kernel.org
2906 S:      Maintained
2907 F:      drivers/clocksource/timer-keystone.c
2908
2909 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2910 M:      Santosh Shilimkar <ssantosh@kernel.org>
2911 L:      linux-kernel@vger.kernel.org
2912 S:      Maintained
2913 F:      drivers/power/reset/keystone-reset.c
2914
2915 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2916 M:      Nishanth Menon <nm@ti.com>
2917 M:      Vignesh Raghavendra <vigneshr@ti.com>
2918 M:      Tero Kristo <kristo@kernel.org>
2919 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2920 S:      Supported
2921 F:      Documentation/devicetree/bindings/arm/ti/k3.yaml
2922 F:      Documentation/devicetree/bindings/hwinfo/ti,k3-socinfo.yaml
2923 F:      arch/arm64/boot/dts/ti/Makefile
2924 F:      arch/arm64/boot/dts/ti/k3-*
2925 F:      include/dt-bindings/pinctrl/k3.h
2926
2927 ARM/TOSHIBA VISCONTI ARCHITECTURE
2928 M:      Nobuhiro Iwamatsu <nobuhiro1.iwamatsu@toshiba.co.jp>
2929 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2930 S:      Supported
2931 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwamatsu/linux-visconti.git
2932 F:      Documentation/devicetree/bindings/arm/toshiba.yaml
2933 F:      Documentation/devicetree/bindings/clock/toshiba,tmpv770x-pipllct.yaml
2934 F:      Documentation/devicetree/bindings/clock/toshiba,tmpv770x-pismu.yaml
2935 F:      Documentation/devicetree/bindings/net/toshiba,visconti-dwmac.yaml
2936 F:      Documentation/devicetree/bindings/gpio/toshiba,gpio-visconti.yaml
2937 F:      Documentation/devicetree/bindings/pci/toshiba,visconti-pcie.yaml
2938 F:      Documentation/devicetree/bindings/pinctrl/toshiba,visconti-pinctrl.yaml
2939 F:      Documentation/devicetree/bindings/watchdog/toshiba,visconti-wdt.yaml
2940 F:      arch/arm64/boot/dts/toshiba/
2941 F:      drivers/clk/visconti/
2942 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-visconti.c
2943 F:      drivers/gpio/gpio-visconti.c
2944 F:      drivers/pci/controller/dwc/pcie-visconti.c
2945 F:      drivers/pinctrl/visconti/
2946 F:      drivers/watchdog/visconti_wdt.c
2947 N:      visconti
2948
2949 ARM/UNIPHIER ARCHITECTURE
2950 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
2951 M:      Masami Hiramatsu <mhiramat@kernel.org>
2952 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2953 S:      Maintained
2954 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2955 F:      Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2956 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2957 F:      arch/arm/boot/dts/uniphier*
2958 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2959 F:      arch/arm/mach-uniphier/
2960 F:      arch/arm/mm/cache-uniphier.c
2961 F:      arch/arm64/boot/dts/socionext/uniphier*
2962 F:      drivers/bus/uniphier-system-bus.c
2963 F:      drivers/clk/uniphier/
2964 F:      drivers/dma/uniphier-mdmac.c
2965 F:      drivers/gpio/gpio-uniphier.c
2966 F:      drivers/i2c/busses/i2c-uniphier*
2967 F:      drivers/irqchip/irq-uniphier-aidet.c
2968 F:      drivers/mmc/host/uniphier-sd.c
2969 F:      drivers/pinctrl/uniphier/
2970 F:      drivers/reset/reset-uniphier.c
2971 F:      drivers/tty/serial/8250/8250_uniphier.c
2972 N:      uniphier
2973
2974 ARM/VERSATILE EXPRESS PLATFORM
2975 M:      Liviu Dudau <liviu.dudau@arm.com>
2976 M:      Sudeep Holla <sudeep.holla@arm.com>
2977 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
2978 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2979 S:      Maintained
2980 F:      */*/*/vexpress*
2981 F:      */*/vexpress*
2982 F:      arch/arm/boot/dts/vexpress*
2983 F:      arch/arm/mach-versatile/
2984 F:      arch/arm64/boot/dts/arm/
2985 F:      drivers/clk/versatile/clk-vexpress-osc.c
2986 F:      drivers/clocksource/timer-versatile.c
2987 N:      mps2
2988
2989 ARM/VFP SUPPORT
2990 M:      Russell King <linux@armlinux.org.uk>
2991 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2992 S:      Maintained
2993 W:      http://www.armlinux.org.uk/
2994 F:      arch/arm/vfp/
2995
2996 ARM/VT8500 ARM ARCHITECTURE
2997 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2998 S:      Orphan
2999 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
3000 F:      arch/arm/mach-vt8500/
3001 F:      drivers/clocksource/timer-vt8500.c
3002 F:      drivers/i2c/busses/i2c-wmt.c
3003 F:      drivers/mmc/host/wmt-sdmmc.c
3004 F:      drivers/pwm/pwm-vt8500.c
3005 F:      drivers/rtc/rtc-vt8500.c
3006 F:      drivers/tty/serial/vt8500_serial.c
3007 F:      drivers/usb/host/ehci-platform.c
3008 F:      drivers/usb/host/uhci-platform.c
3009 F:      drivers/video/fbdev/vt8500lcdfb.*
3010 F:      drivers/video/fbdev/wm8505fb*
3011 F:      drivers/video/fbdev/wmt_ge_rops.*
3012
3013 ARM/ZYNQ ARCHITECTURE
3014 M:      Michal Simek <michal.simek@xilinx.com>
3015 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3016 S:      Supported
3017 W:      http://wiki.xilinx.com
3018 T:      git https://github.com/Xilinx/linux-xlnx.git
3019 F:      Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
3020 F:      Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
3021 F:      Documentation/devicetree/bindings/memory-controllers/snps,dw-umctl2-ddrc.yaml
3022 F:      Documentation/devicetree/bindings/memory-controllers/xlnx,zynq-ddrc-a05.yaml
3023 F:      Documentation/devicetree/bindings/spi/xlnx,zynq-qspi.yaml
3024 F:      arch/arm/mach-zynq/
3025 F:      drivers/clocksource/timer-cadence-ttc.c
3026 F:      drivers/cpuidle/cpuidle-zynq.c
3027 F:      drivers/edac/synopsys_edac.c
3028 F:      drivers/i2c/busses/i2c-cadence.c
3029 F:      drivers/i2c/busses/i2c-xiic.c
3030 F:      drivers/mmc/host/sdhci-of-arasan.c
3031 N:      zynq
3032 N:      xilinx
3033
3034 ARM64 PORT (AARCH64 ARCHITECTURE)
3035 M:      Catalin Marinas <catalin.marinas@arm.com>
3036 M:      Will Deacon <will@kernel.org>
3037 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3038 S:      Maintained
3039 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
3040 F:      Documentation/arm64/
3041 F:      arch/arm64/
3042 F:      tools/testing/selftests/arm64/
3043 X:      arch/arm64/boot/dts/
3044
3045 ARROW SPEEDCHIPS XRS7000 SERIES ETHERNET SWITCH DRIVER
3046 M:      George McCollister <george.mccollister@gmail.com>
3047 L:      netdev@vger.kernel.org
3048 S:      Maintained
3049 F:      Documentation/devicetree/bindings/net/dsa/arrow,xrs700x.yaml
3050 F:      drivers/net/dsa/xrs700x/*
3051 F:      net/dsa/tag_xrs700x.c
3052
3053 AS3645A LED FLASH CONTROLLER DRIVER
3054 M:      Sakari Ailus <sakari.ailus@iki.fi>
3055 L:      linux-leds@vger.kernel.org
3056 S:      Maintained
3057 F:      drivers/leds/flash/leds-as3645a.c
3058
3059 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
3060 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
3061 L:      linux-media@vger.kernel.org
3062 S:      Maintained
3063 T:      git git://linuxtv.org/media_tree.git
3064 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
3065 F:      drivers/media/i2c/ak7375.c
3066
3067 ASAHI KASEI AK8974 DRIVER
3068 M:      Linus Walleij <linus.walleij@linaro.org>
3069 L:      linux-iio@vger.kernel.org
3070 S:      Supported
3071 W:      http://www.akm.com/
3072 F:      drivers/iio/magnetometer/ak8974.c
3073
3074 ASC7621 HARDWARE MONITOR DRIVER
3075 M:      George Joseph <george.joseph@fairview5.com>
3076 L:      linux-hwmon@vger.kernel.org
3077 S:      Maintained
3078 F:      Documentation/hwmon/asc7621.rst
3079 F:      drivers/hwmon/asc7621.c
3080
3081 ASIX AX88796C SPI ETHERNET ADAPTER
3082 M:      Łukasz Stelmach <l.stelmach@samsung.com>
3083 S:      Maintained
3084 F:      Documentation/devicetree/bindings/net/asix,ax88796c.yaml
3085 F:      drivers/net/ethernet/asix/ax88796c_*
3086
3087 ASPEED PECI CONTROLLER
3088 M:      Iwona Winiarska <iwona.winiarska@intel.com>
3089 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3090 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3091 S:      Supported
3092 F:      Documentation/devicetree/bindings/peci/peci-aspeed.yaml
3093 F:      drivers/peci/controller/peci-aspeed.c
3094
3095 ASPEED PINCTRL DRIVERS
3096 M:      Andrew Jeffery <andrew@aj.id.au>
3097 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3098 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3099 L:      linux-gpio@vger.kernel.org
3100 S:      Maintained
3101 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
3102 F:      drivers/pinctrl/aspeed/
3103
3104 ASPEED SCU INTERRUPT CONTROLLER DRIVER
3105 M:      Eddie James <eajames@linux.ibm.com>
3106 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3107 S:      Maintained
3108 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
3109 F:      drivers/irqchip/irq-aspeed-scu-ic.c
3110 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
3111
3112 ASPEED SD/MMC DRIVER
3113 M:      Andrew Jeffery <andrew@aj.id.au>
3114 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3115 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3116 L:      linux-mmc@vger.kernel.org
3117 S:      Maintained
3118 F:      Documentation/devicetree/bindings/mmc/aspeed,sdhci.yaml
3119 F:      drivers/mmc/host/sdhci-of-aspeed*
3120
3121 ASPEED SMC SPI DRIVER
3122 M:      Chin-Ting Kuo <chin-ting_kuo@aspeedtech.com>
3123 M:      Cédric Le Goater <clg@kaod.org>
3124 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3125 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3126 L:      linux-spi@vger.kernel.org
3127 S:      Maintained
3128 F:      Documentation/devicetree/bindings/spi/aspeed,ast2600-fmc.yaml
3129 F:      drivers/spi/spi-aspeed-smc.c
3130
3131 ASPEED VIDEO ENGINE DRIVER
3132 M:      Eddie James <eajames@linux.ibm.com>
3133 L:      linux-media@vger.kernel.org
3134 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3135 S:      Maintained
3136 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
3137 F:      drivers/media/platform/aspeed/
3138
3139 ASPEED USB UDC DRIVER
3140 M:      Neal Liu <neal_liu@aspeedtech.com>
3141 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3142 S:      Maintained
3143 F:      Documentation/devicetree/bindings/usb/aspeed,ast2600-udc.yaml
3144 F:      drivers/usb/gadget/udc/aspeed_udc.c
3145
3146 ASPEED CRYPTO DRIVER
3147 M:      Neal Liu <neal_liu@aspeedtech.com>
3148 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3149 S:      Maintained
3150 F:      Documentation/devicetree/bindings/crypto/aspeed,ast2500-hace.yaml
3151 F:      drivers/crypto/aspeed/
3152
3153 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
3154 M:      Corentin Chary <corentin.chary@gmail.com>
3155 L:      acpi4asus-user@lists.sourceforge.net
3156 L:      platform-driver-x86@vger.kernel.org
3157 S:      Maintained
3158 W:      http://acpi4asus.sf.net
3159 F:      drivers/platform/x86/asus*.c
3160 F:      drivers/platform/x86/eeepc*.c
3161
3162 ASUS TF103C DOCK DRIVER
3163 M:      Hans de Goede <hdegoede@redhat.com>
3164 L:      platform-driver-x86@vger.kernel.org
3165 S:      Maintained
3166 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
3167 F:      drivers/platform/x86/asus-tf103c-dock.c
3168
3169 ASUS WMI HARDWARE MONITOR DRIVER
3170 M:      Ed Brindley <kernel@maidavale.org>
3171 M:      Denis Pauk <pauk.denis@gmail.com>
3172 L:      linux-hwmon@vger.kernel.org
3173 S:      Maintained
3174 F:      drivers/hwmon/asus_wmi_sensors.c
3175
3176 ASUS EC HARDWARE MONITOR DRIVER
3177 M:      Eugene Shalygin <eugene.shalygin@gmail.com>
3178 L:      linux-hwmon@vger.kernel.org
3179 S:      Maintained
3180 F:      drivers/hwmon/asus-ec-sensors.c
3181
3182 ASUS WIRELESS RADIO CONTROL DRIVER
3183 M:      João Paulo Rechi Vita <jprvita@gmail.com>
3184 L:      platform-driver-x86@vger.kernel.org
3185 S:      Maintained
3186 F:      drivers/platform/x86/asus-wireless.c
3187
3188 ASYMMETRIC KEYS
3189 M:      David Howells <dhowells@redhat.com>
3190 L:      keyrings@vger.kernel.org
3191 S:      Maintained
3192 F:      Documentation/crypto/asymmetric-keys.rst
3193 F:      crypto/asymmetric_keys/
3194 F:      include/crypto/pkcs7.h
3195 F:      include/crypto/public_key.h
3196 F:      include/linux/verification.h
3197
3198 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
3199 R:      Dan Williams <dan.j.williams@intel.com>
3200 S:      Odd fixes
3201 W:      http://sourceforge.net/projects/xscaleiop
3202 F:      Documentation/crypto/async-tx-api.rst
3203 F:      crypto/async_tx/
3204 F:      include/linux/async_tx.h
3205
3206 AT24 EEPROM DRIVER
3207 M:      Bartosz Golaszewski <brgl@bgdev.pl>
3208 L:      linux-i2c@vger.kernel.org
3209 S:      Maintained
3210 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
3211 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
3212 F:      drivers/misc/eeprom/at24.c
3213
3214 ATA OVER ETHERNET (AOE) DRIVER
3215 M:      "Justin Sanders" <justin@coraid.com>
3216 S:      Supported
3217 W:      http://www.openaoe.org/
3218 F:      Documentation/admin-guide/aoe/
3219 F:      drivers/block/aoe/
3220
3221 ATC260X PMIC MFD DRIVER
3222 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
3223 M:      Cristian Ciocaltea <cristian.ciocaltea@gmail.com>
3224 L:      linux-actions@lists.infradead.org
3225 S:      Maintained
3226 F:      Documentation/devicetree/bindings/mfd/actions,atc260x.yaml
3227 F:      drivers/input/misc/atc260x-onkey.c
3228 F:      drivers/mfd/atc260*
3229 F:      drivers/power/reset/atc260x-poweroff.c
3230 F:      drivers/regulator/atc260x-regulator.c
3231 F:      include/linux/mfd/atc260x/*
3232
3233 ATHEROS 71XX/9XXX GPIO DRIVER
3234 M:      Alban Bedel <albeu@free.fr>
3235 S:      Maintained
3236 W:      https://github.com/AlbanBedel/linux
3237 T:      git git://github.com/AlbanBedel/linux
3238 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
3239 F:      drivers/gpio/gpio-ath79.c
3240
3241 ATHEROS 71XX/9XXX USB PHY DRIVER
3242 M:      Alban Bedel <albeu@free.fr>
3243 S:      Maintained
3244 W:      https://github.com/AlbanBedel/linux
3245 T:      git git://github.com/AlbanBedel/linux
3246 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
3247 F:      drivers/phy/qualcomm/phy-ath79-usb.c
3248
3249 ATHEROS ATH GENERIC UTILITIES
3250 M:      Kalle Valo <kvalo@kernel.org>
3251 L:      linux-wireless@vger.kernel.org
3252 S:      Supported
3253 F:      drivers/net/wireless/ath/*
3254
3255 ATHEROS ATH5K WIRELESS DRIVER
3256 M:      Jiri Slaby <jirislaby@kernel.org>
3257 M:      Nick Kossifidis <mickflemm@gmail.com>
3258 M:      Luis Chamberlain <mcgrof@kernel.org>
3259 L:      linux-wireless@vger.kernel.org
3260 S:      Maintained
3261 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
3262 F:      drivers/net/wireless/ath/ath5k/
3263
3264 ATHEROS ATH6KL WIRELESS DRIVER
3265 L:      linux-wireless@vger.kernel.org
3266 S:      Orphan
3267 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
3268 F:      drivers/net/wireless/ath/ath6kl/
3269
3270 ATI_REMOTE2 DRIVER
3271 M:      Ville Syrjala <syrjala@sci.fi>
3272 S:      Maintained
3273 F:      drivers/input/misc/ati_remote2.c
3274
3275 ATK0110 HWMON DRIVER
3276 M:      Luca Tettamanti <kronos.it@gmail.com>
3277 L:      linux-hwmon@vger.kernel.org
3278 S:      Maintained
3279 F:      drivers/hwmon/asus_atk0110.c
3280
3281 ATLX ETHERNET DRIVERS
3282 M:      Chris Snook <chris.snook@gmail.com>
3283 L:      netdev@vger.kernel.org
3284 S:      Maintained
3285 W:      http://sourceforge.net/projects/atl1
3286 W:      http://atl1.sourceforge.net
3287 F:      drivers/net/ethernet/atheros/
3288
3289 ATM
3290 M:      Chas Williams <3chas3@gmail.com>
3291 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
3292 L:      netdev@vger.kernel.org
3293 S:      Maintained
3294 W:      http://linux-atm.sourceforge.net
3295 F:      drivers/atm/
3296 F:      include/linux/atm*
3297 F:      include/uapi/linux/atm*
3298
3299 ATMEL MACB ETHERNET DRIVER
3300 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
3301 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
3302 S:      Supported
3303 F:      drivers/net/ethernet/cadence/
3304
3305 ATMEL MAXTOUCH DRIVER
3306 M:      Nick Dyer <nick@shmanahar.org>
3307 S:      Maintained
3308 T:      git git://github.com/ndyer/linux.git
3309 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.yaml
3310 F:      drivers/input/touchscreen/atmel_mxt_ts.c
3311
3312 ATMEL WIRELESS DRIVER
3313 M:      Simon Kelley <simon@thekelleys.org.uk>
3314 L:      linux-wireless@vger.kernel.org
3315 S:      Maintained
3316 W:      http://www.thekelleys.org.uk/atmel
3317 W:      http://atmelwlandriver.sourceforge.net/
3318 F:      drivers/net/wireless/atmel/atmel*
3319
3320 ATOMIC INFRASTRUCTURE
3321 M:      Will Deacon <will@kernel.org>
3322 M:      Peter Zijlstra <peterz@infradead.org>
3323 R:      Boqun Feng <boqun.feng@gmail.com>
3324 R:      Mark Rutland <mark.rutland@arm.com>
3325 L:      linux-kernel@vger.kernel.org
3326 S:      Maintained
3327 F:      arch/*/include/asm/atomic*.h
3328 F:      include/*/atomic*.h
3329 F:      include/linux/refcount.h
3330 F:      Documentation/atomic_*.txt
3331 F:      scripts/atomic/
3332
3333 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
3334 M:      Bradley Grove <linuxdrivers@attotech.com>
3335 L:      linux-scsi@vger.kernel.org
3336 S:      Supported
3337 W:      http://www.attotech.com
3338 F:      drivers/scsi/esas2r
3339
3340 ATUSB IEEE 802.15.4 RADIO DRIVER
3341 M:      Stefan Schmidt <stefan@datenfreihafen.org>
3342 L:      linux-wpan@vger.kernel.org
3343 S:      Maintained
3344 F:      drivers/net/ieee802154/at86rf230.h
3345 F:      drivers/net/ieee802154/atusb.c
3346 F:      drivers/net/ieee802154/atusb.h
3347
3348 AUDIT SUBSYSTEM
3349 M:      Paul Moore <paul@paul-moore.com>
3350 M:      Eric Paris <eparis@redhat.com>
3351 L:      linux-audit@redhat.com (moderated for non-subscribers)
3352 S:      Supported
3353 W:      https://github.com/linux-audit
3354 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
3355 F:      include/asm-generic/audit_*.h
3356 F:      include/linux/audit.h
3357 F:      include/linux/audit_arch.h
3358 F:      include/uapi/linux/audit.h
3359 F:      kernel/audit*
3360 F:      lib/*audit.c
3361
3362 AUXILIARY DISPLAY DRIVERS
3363 M:      Miguel Ojeda <ojeda@kernel.org>
3364 S:      Maintained
3365 F:      Documentation/devicetree/bindings/auxdisplay/
3366 F:      drivers/auxdisplay/
3367 F:      include/linux/cfag12864b.h
3368
3369 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
3370 M:      Andreas Klinger <ak@it-klinger.de>
3371 L:      linux-iio@vger.kernel.org
3372 S:      Maintained
3373 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
3374 F:      drivers/iio/adc/hx711.c
3375
3376 AX.25 NETWORK LAYER
3377 M:      Ralf Baechle <ralf@linux-mips.org>
3378 L:      linux-hams@vger.kernel.org
3379 S:      Maintained
3380 W:      http://www.linux-ax25.org/
3381 F:      include/net/ax25.h
3382 F:      include/uapi/linux/ax25.h
3383 F:      net/ax25/
3384
3385 AXENTIA ARM DEVICES
3386 M:      Peter Rosin <peda@axentia.se>
3387 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3388 S:      Maintained
3389 F:      arch/arm/boot/dts/at91-linea.dtsi
3390 F:      arch/arm/boot/dts/at91-natte.dtsi
3391 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
3392 F:      arch/arm/boot/dts/at91-tse850-3.dts
3393
3394 AXENTIA ASOC DRIVERS
3395 M:      Peter Rosin <peda@axentia.se>
3396 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3397 S:      Maintained
3398 F:      Documentation/devicetree/bindings/sound/axentia,*
3399 F:      sound/soc/atmel/tse850-pcm5142.c
3400
3401 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3402 M:      Nuno Sá <nuno.sa@analog.com>
3403 L:      linux-hwmon@vger.kernel.org
3404 S:      Supported
3405 W:      https://ez.analog.com/linux-software-drivers
3406 F:      Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3407 F:      drivers/hwmon/axi-fan-control.c
3408
3409 AXXIA I2C CONTROLLER
3410 M:      Krzysztof Adamski <krzysztof.adamski@nokia.com>
3411 L:      linux-i2c@vger.kernel.org
3412 S:      Maintained
3413 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3414 F:      drivers/i2c/busses/i2c-axxia.c
3415
3416 AZ6007 DVB DRIVER
3417 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3418 L:      linux-media@vger.kernel.org
3419 S:      Maintained
3420 W:      https://linuxtv.org
3421 T:      git git://linuxtv.org/media_tree.git
3422 F:      drivers/media/usb/dvb-usb-v2/az6007.c
3423
3424 AZTECH FM RADIO RECEIVER DRIVER
3425 M:      Hans Verkuil <hverkuil@xs4all.nl>
3426 L:      linux-media@vger.kernel.org
3427 S:      Maintained
3428 W:      https://linuxtv.org
3429 T:      git git://linuxtv.org/media_tree.git
3430 F:      drivers/media/radio/radio-aztech*
3431
3432 B43 WIRELESS DRIVER
3433 L:      linux-wireless@vger.kernel.org
3434 L:      b43-dev@lists.infradead.org
3435 S:      Odd Fixes
3436 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3437 F:      drivers/net/wireless/broadcom/b43/
3438
3439 B43LEGACY WIRELESS DRIVER
3440 M:      Larry Finger <Larry.Finger@lwfinger.net>
3441 L:      linux-wireless@vger.kernel.org
3442 L:      b43-dev@lists.infradead.org
3443 S:      Maintained
3444 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3445 F:      drivers/net/wireless/broadcom/b43legacy/
3446
3447 BACKLIGHT CLASS/SUBSYSTEM
3448 M:      Lee Jones <lee@kernel.org>
3449 M:      Daniel Thompson <daniel.thompson@linaro.org>
3450 M:      Jingoo Han <jingoohan1@gmail.com>
3451 L:      dri-devel@lists.freedesktop.org
3452 S:      Maintained
3453 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3454 F:      Documentation/ABI/stable/sysfs-class-backlight
3455 F:      Documentation/ABI/testing/sysfs-class-backlight
3456 F:      Documentation/devicetree/bindings/leds/backlight
3457 F:      drivers/video/backlight/
3458 F:      include/linux/backlight.h
3459 F:      include/linux/pwm_backlight.h
3460
3461 BARCO P50 GPIO DRIVER
3462 M:      Santosh Kumar Yadav <santoshkumar.yadav@barco.com>
3463 M:      Peter Korsgaard <peter.korsgaard@barco.com>
3464 S:      Maintained
3465 F:      drivers/platform/x86/barco-p50-gpio.c
3466
3467 BATMAN ADVANCED
3468 M:      Marek Lindner <mareklindner@neomailbox.ch>
3469 M:      Simon Wunderlich <sw@simonwunderlich.de>
3470 M:      Antonio Quartulli <a@unstable.cc>
3471 M:      Sven Eckelmann <sven@narfation.org>
3472 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
3473 S:      Maintained
3474 W:      https://www.open-mesh.org/
3475 Q:      https://patchwork.open-mesh.org/project/batman/list/
3476 B:      https://www.open-mesh.org/projects/batman-adv/issues
3477 C:      ircs://irc.hackint.org/batadv
3478 T:      git https://git.open-mesh.org/linux-merge.git
3479 F:      Documentation/networking/batman-adv.rst
3480 F:      include/uapi/linux/batadv_packet.h
3481 F:      include/uapi/linux/batman_adv.h
3482 F:      net/batman-adv/
3483
3484 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3485 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
3486 L:      linux-hams@vger.kernel.org
3487 S:      Maintained
3488 W:      http://www.baycom.org/~tom/ham/ham.html
3489 F:      drivers/net/hamradio/baycom*
3490
3491 BCACHE (BLOCK LAYER CACHE)
3492 M:      Coly Li <colyli@suse.de>
3493 M:      Kent Overstreet <kent.overstreet@gmail.com>
3494 L:      linux-bcache@vger.kernel.org
3495 S:      Maintained
3496 W:      http://bcache.evilpiepirate.org
3497 C:      irc://irc.oftc.net/bcache
3498 F:      drivers/md/bcache/
3499
3500 BDISP ST MEDIA DRIVER
3501 M:      Fabien Dessenne <fabien.dessenne@foss.st.com>
3502 L:      linux-media@vger.kernel.org
3503 S:      Supported
3504 W:      https://linuxtv.org
3505 T:      git git://linuxtv.org/media_tree.git
3506 F:      drivers/media/platform/st/sti/bdisp
3507
3508 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3509 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
3510 L:      netdev@vger.kernel.org
3511 S:      Maintained
3512 F:      drivers/net/ethernet/ec_bhf.c
3513
3514 BEFS FILE SYSTEM
3515 M:      Luis de Bethencourt <luisbg@kernel.org>
3516 M:      Salah Triki <salah.triki@gmail.com>
3517 S:      Maintained
3518 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3519 F:      Documentation/filesystems/befs.rst
3520 F:      fs/befs/
3521
3522 BFQ I/O SCHEDULER
3523 M:      Paolo Valente <paolo.valente@linaro.org>
3524 M:      Jens Axboe <axboe@kernel.dk>
3525 L:      linux-block@vger.kernel.org
3526 S:      Maintained
3527 F:      Documentation/block/bfq-iosched.rst
3528 F:      block/bfq-*
3529
3530 BFS FILE SYSTEM
3531 M:      "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3532 S:      Maintained
3533 F:      Documentation/filesystems/bfs.rst
3534 F:      fs/bfs/
3535 F:      include/uapi/linux/bfs_fs.h
3536
3537 BITMAP API
3538 M:      Yury Norov <yury.norov@gmail.com>
3539 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
3540 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
3541 S:      Maintained
3542 F:      include/linux/bitmap.h
3543 F:      include/linux/cpumask.h
3544 F:      include/linux/find.h
3545 F:      include/linux/nodemask.h
3546 F:      lib/bitmap.c
3547 F:      lib/cpumask.c
3548 F:      lib/cpumask_kunit.c
3549 F:      lib/find_bit.c
3550 F:      lib/find_bit_benchmark.c
3551 F:      lib/test_bitmap.c
3552 F:      tools/include/linux/bitmap.h
3553 F:      tools/include/linux/find.h
3554 F:      tools/lib/bitmap.c
3555 F:      tools/lib/find_bit.c
3556
3557 BLINKM RGB LED DRIVER
3558 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
3559 S:      Maintained
3560 F:      drivers/leds/leds-blinkm.c
3561
3562 BLOCK LAYER
3563 M:      Jens Axboe <axboe@kernel.dk>
3564 L:      linux-block@vger.kernel.org
3565 S:      Maintained
3566 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3567 F:      Documentation/ABI/stable/sysfs-block
3568 F:      Documentation/block/
3569 F:      block/
3570 F:      drivers/block/
3571 F:      include/linux/bio.h
3572 F:      include/linux/blk*
3573 F:      kernel/trace/blktrace.c
3574 F:      lib/sbitmap.c
3575
3576 BLOCK2MTD DRIVER
3577 M:      Joern Engel <joern@lazybastard.org>
3578 L:      linux-mtd@lists.infradead.org
3579 S:      Maintained
3580 F:      drivers/mtd/devices/block2mtd.c
3581
3582 BLUETOOTH DRIVERS
3583 M:      Marcel Holtmann <marcel@holtmann.org>
3584 M:      Johan Hedberg <johan.hedberg@gmail.com>
3585 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3586 L:      linux-bluetooth@vger.kernel.org
3587 S:      Supported
3588 W:      http://www.bluez.org/
3589 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3590 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3591 F:      drivers/bluetooth/
3592
3593 BLUETOOTH SUBSYSTEM
3594 M:      Marcel Holtmann <marcel@holtmann.org>
3595 M:      Johan Hedberg <johan.hedberg@gmail.com>
3596 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3597 L:      linux-bluetooth@vger.kernel.org
3598 S:      Supported
3599 W:      http://www.bluez.org/
3600 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3601 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3602 F:      include/net/bluetooth/
3603 F:      net/bluetooth/
3604
3605 BONDING DRIVER
3606 M:      Jay Vosburgh <j.vosburgh@gmail.com>
3607 M:      Andy Gospodarek <andy@greyhouse.net>
3608 L:      netdev@vger.kernel.org
3609 S:      Supported
3610 W:      http://sourceforge.net/projects/bonding/
3611 F:      Documentation/networking/bonding.rst
3612 F:      drivers/net/bonding/
3613 F:      include/net/bond*
3614 F:      include/uapi/linux/if_bonding.h
3615 F:      tools/testing/selftests/drivers/net/bonding/
3616
3617 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3618 M:      Dan Robertson <dan@dlrobertson.com>
3619 L:      linux-iio@vger.kernel.org
3620 S:      Maintained
3621 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3622 F:      drivers/iio/accel/bma400*
3623
3624 BPF [GENERAL] (Safe Dynamic Programs and Tools)
3625 M:      Alexei Starovoitov <ast@kernel.org>
3626 M:      Daniel Borkmann <daniel@iogearbox.net>
3627 M:      Andrii Nakryiko <andrii@kernel.org>
3628 R:      Martin KaFai Lau <martin.lau@linux.dev>
3629 R:      Song Liu <song@kernel.org>
3630 R:      Yonghong Song <yhs@fb.com>
3631 R:      John Fastabend <john.fastabend@gmail.com>
3632 R:      KP Singh <kpsingh@kernel.org>
3633 R:      Stanislav Fomichev <sdf@google.com>
3634 R:      Hao Luo <haoluo@google.com>
3635 R:      Jiri Olsa <jolsa@kernel.org>
3636 L:      bpf@vger.kernel.org
3637 S:      Supported
3638 W:      https://bpf.io/
3639 Q:      https://patchwork.kernel.org/project/netdevbpf/list/?delegate=121173
3640 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3641 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3642 F:      Documentation/bpf/
3643 F:      Documentation/networking/filter.rst
3644 F:      Documentation/userspace-api/ebpf/
3645 F:      arch/*/net/*
3646 F:      include/linux/bpf*
3647 F:      include/linux/btf*
3648 F:      include/linux/filter.h
3649 F:      include/trace/events/xdp.h
3650 F:      include/uapi/linux/bpf*
3651 F:      include/uapi/linux/btf*
3652 F:      include/uapi/linux/filter.h
3653 F:      kernel/bpf/
3654 F:      kernel/trace/bpf_trace.c
3655 F:      lib/test_bpf.c
3656 F:      net/bpf/
3657 F:      net/core/filter.c
3658 F:      net/sched/act_bpf.c
3659 F:      net/sched/cls_bpf.c
3660 F:      samples/bpf/
3661 F:      scripts/bpf_doc.py
3662 F:      scripts/pahole-flags.sh
3663 F:      scripts/pahole-version.sh
3664 F:      tools/bpf/
3665 F:      tools/lib/bpf/
3666 F:      tools/testing/selftests/bpf/
3667
3668 BPF JIT for ARM
3669 M:      Shubham Bansal <illusionist.neo@gmail.com>
3670 L:      bpf@vger.kernel.org
3671 S:      Odd Fixes
3672 F:      arch/arm/net/
3673
3674 BPF JIT for ARM64
3675 M:      Daniel Borkmann <daniel@iogearbox.net>
3676 M:      Alexei Starovoitov <ast@kernel.org>
3677 M:      Zi Shen Lim <zlim.lnx@gmail.com>
3678 L:      bpf@vger.kernel.org
3679 S:      Supported
3680 F:      arch/arm64/net/
3681
3682 BPF JIT for MIPS (32-BIT AND 64-BIT)
3683 M:      Johan Almbladh <johan.almbladh@anyfinetworks.com>
3684 M:      Paul Burton <paulburton@kernel.org>
3685 L:      bpf@vger.kernel.org
3686 S:      Maintained
3687 F:      arch/mips/net/
3688
3689 BPF JIT for NFP NICs
3690 M:      Jakub Kicinski <kuba@kernel.org>
3691 L:      bpf@vger.kernel.org
3692 S:      Odd Fixes
3693 F:      drivers/net/ethernet/netronome/nfp/bpf/
3694
3695 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3696 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3697 M:      Michael Ellerman <mpe@ellerman.id.au>
3698 L:      bpf@vger.kernel.org
3699 S:      Supported
3700 F:      arch/powerpc/net/
3701
3702 BPF JIT for RISC-V (32-bit)
3703 M:      Luke Nelson <luke.r.nels@gmail.com>
3704 M:      Xi Wang <xi.wang@gmail.com>
3705 L:      bpf@vger.kernel.org
3706 S:      Maintained
3707 F:      arch/riscv/net/
3708 X:      arch/riscv/net/bpf_jit_comp64.c
3709
3710 BPF JIT for RISC-V (64-bit)
3711 M:      Björn Töpel <bjorn@kernel.org>
3712 L:      bpf@vger.kernel.org
3713 S:      Maintained
3714 F:      arch/riscv/net/
3715 X:      arch/riscv/net/bpf_jit_comp32.c
3716
3717 BPF JIT for S390
3718 M:      Ilya Leoshkevich <iii@linux.ibm.com>
3719 M:      Heiko Carstens <hca@linux.ibm.com>
3720 M:      Vasily Gorbik <gor@linux.ibm.com>
3721 L:      bpf@vger.kernel.org
3722 S:      Supported
3723 F:      arch/s390/net/
3724 X:      arch/s390/net/pnet.c
3725
3726 BPF JIT for SPARC (32-BIT AND 64-BIT)
3727 M:      David S. Miller <davem@davemloft.net>
3728 L:      bpf@vger.kernel.org
3729 S:      Odd Fixes
3730 F:      arch/sparc/net/
3731
3732 BPF JIT for X86 32-BIT
3733 M:      Wang YanQing <udknight@gmail.com>
3734 L:      bpf@vger.kernel.org
3735 S:      Odd Fixes
3736 F:      arch/x86/net/bpf_jit_comp32.c
3737
3738 BPF JIT for X86 64-BIT
3739 M:      Alexei Starovoitov <ast@kernel.org>
3740 M:      Daniel Borkmann <daniel@iogearbox.net>
3741 L:      bpf@vger.kernel.org
3742 S:      Supported
3743 F:      arch/x86/net/
3744 X:      arch/x86/net/bpf_jit_comp32.c
3745
3746 BPF [CORE]
3747 M:      Alexei Starovoitov <ast@kernel.org>
3748 M:      Daniel Borkmann <daniel@iogearbox.net>
3749 R:      John Fastabend <john.fastabend@gmail.com>
3750 L:      bpf@vger.kernel.org
3751 S:      Maintained
3752 F:      kernel/bpf/verifier.c
3753 F:      kernel/bpf/tnum.c
3754 F:      kernel/bpf/core.c
3755 F:      kernel/bpf/syscall.c
3756 F:      kernel/bpf/dispatcher.c
3757 F:      kernel/bpf/trampoline.c
3758 F:      include/linux/bpf*
3759 F:      include/linux/filter.h
3760 F:      include/linux/tnum.h
3761
3762 BPF [BTF]
3763 M:      Martin KaFai Lau <martin.lau@linux.dev>
3764 L:      bpf@vger.kernel.org
3765 S:      Maintained
3766 F:      kernel/bpf/btf.c
3767 F:      include/linux/btf*
3768
3769 BPF [TRACING]
3770 M:      Song Liu <song@kernel.org>
3771 R:      Jiri Olsa <jolsa@kernel.org>
3772 L:      bpf@vger.kernel.org
3773 S:      Maintained
3774 F:      kernel/trace/bpf_trace.c
3775 F:      kernel/bpf/stackmap.c
3776
3777 BPF [NETWORKING] (tc BPF, sock_addr)
3778 M:      Martin KaFai Lau <martin.lau@linux.dev>
3779 M:      Daniel Borkmann <daniel@iogearbox.net>
3780 R:      John Fastabend <john.fastabend@gmail.com>
3781 L:      bpf@vger.kernel.org
3782 L:      netdev@vger.kernel.org
3783 S:      Maintained
3784 F:      net/core/filter.c
3785 F:      net/sched/act_bpf.c
3786 F:      net/sched/cls_bpf.c
3787
3788 BPF [NETWORKING] (struct_ops, reuseport)
3789 M:      Martin KaFai Lau <martin.lau@linux.dev>
3790 L:      bpf@vger.kernel.org
3791 L:      netdev@vger.kernel.org
3792 S:      Maintained
3793 F:      kernel/bpf/bpf_struct*
3794
3795 BPF [SECURITY & LSM] (Security Audit and Enforcement using BPF)
3796 M:      KP Singh <kpsingh@kernel.org>
3797 R:      Florent Revest <revest@chromium.org>
3798 R:      Brendan Jackman <jackmanb@chromium.org>
3799 L:      bpf@vger.kernel.org
3800 S:      Maintained
3801 F:      Documentation/bpf/prog_lsm.rst
3802 F:      include/linux/bpf_lsm.h
3803 F:      kernel/bpf/bpf_lsm.c
3804 F:      security/bpf/
3805
3806 BPF [STORAGE & CGROUPS]
3807 M:      Martin KaFai Lau <martin.lau@linux.dev>
3808 L:      bpf@vger.kernel.org
3809 S:      Maintained
3810 F:      kernel/bpf/cgroup.c
3811 F:      kernel/bpf/*storage.c
3812 F:      kernel/bpf/bpf_lru*
3813
3814 BPF [RINGBUF]
3815 M:      Andrii Nakryiko <andrii@kernel.org>
3816 L:      bpf@vger.kernel.org
3817 S:      Maintained
3818 F:      kernel/bpf/ringbuf.c
3819
3820 BPF [ITERATOR]
3821 M:      Yonghong Song <yhs@fb.com>
3822 L:      bpf@vger.kernel.org
3823 S:      Maintained
3824 F:      kernel/bpf/*iter.c
3825
3826 BPF [L7 FRAMEWORK] (sockmap)
3827 M:      John Fastabend <john.fastabend@gmail.com>
3828 M:      Jakub Sitnicki <jakub@cloudflare.com>
3829 L:      netdev@vger.kernel.org
3830 L:      bpf@vger.kernel.org
3831 S:      Maintained
3832 F:      include/linux/skmsg.h
3833 F:      net/core/skmsg.c
3834 F:      net/core/sock_map.c
3835 F:      net/ipv4/tcp_bpf.c
3836 F:      net/ipv4/udp_bpf.c
3837 F:      net/unix/unix_bpf.c
3838
3839 BPF [LIBRARY] (libbpf)
3840 M:      Andrii Nakryiko <andrii@kernel.org>
3841 L:      bpf@vger.kernel.org
3842 S:      Maintained
3843 F:      tools/lib/bpf/
3844
3845 BPF [TOOLING] (bpftool)
3846 M:      Quentin Monnet <quentin@isovalent.com>
3847 L:      bpf@vger.kernel.org
3848 S:      Maintained
3849 F:      kernel/bpf/disasm.*
3850 F:      tools/bpf/bpftool/
3851
3852 BPF [SELFTESTS] (Test Runners & Infrastructure)
3853 M:      Andrii Nakryiko <andrii@kernel.org>
3854 R:      Mykola Lysenko <mykolal@fb.com>
3855 L:      bpf@vger.kernel.org
3856 S:      Maintained
3857 F:      tools/testing/selftests/bpf/
3858
3859 BPF [MISC]
3860 L:      bpf@vger.kernel.org
3861 S:      Odd Fixes
3862 K:      (?:\b|_)bpf(?:\b|_)
3863
3864 BROADCOM B44 10/100 ETHERNET DRIVER
3865 M:      Michael Chan <michael.chan@broadcom.com>
3866 L:      netdev@vger.kernel.org
3867 S:      Supported
3868 F:      drivers/net/ethernet/broadcom/b44.*
3869
3870 BROADCOM B53/SF2 ETHERNET SWITCH DRIVER
3871 M:      Florian Fainelli <f.fainelli@gmail.com>
3872 L:      netdev@vger.kernel.org
3873 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
3874 S:      Supported
3875 F:      Documentation/devicetree/bindings/net/dsa/brcm,b53.yaml
3876 F:      drivers/net/dsa/b53/*
3877 F:      drivers/net/dsa/bcm_sf2*
3878 F:      include/linux/dsa/brcm.h
3879 F:      include/linux/platform_data/b53.h
3880
3881 BROADCOM BCMBCA ARM ARCHITECTURE
3882 M:      William Zhang <william.zhang@broadcom.com>
3883 M:      Anand Gore <anand.gore@broadcom.com>
3884 M:      Kursad Oney <kursad.oney@broadcom.com>
3885 M:      Florian Fainelli <f.fainelli@gmail.com>
3886 M:      Rafał Miłecki <rafal@milecki.pl>
3887 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3888 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3889 S:      Maintained
3890 T:      git https://github.com/broadcom/stblinux.git
3891 F:      Documentation/devicetree/bindings/arm/bcm/brcm,bcmbca.yaml
3892 F:      arch/arm64/boot/dts/broadcom/bcmbca/*
3893 N:      bcmbca
3894 N:      bcm[9]?47622
3895 N:      bcm[9]?4912
3896 N:      bcm[9]?63138
3897 N:      bcm[9]?63146
3898 N:      bcm[9]?63148
3899 N:      bcm[9]?63158
3900 N:      bcm[9]?63178
3901 N:      bcm[9]?6756
3902 N:      bcm[9]?6813
3903 N:      bcm[9]?6846
3904 N:      bcm[9]?6855
3905 N:      bcm[9]?6856
3906 N:      bcm[9]?6858
3907 N:      bcm[9]?6878
3908
3909 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3910 M:      Florian Fainelli <f.fainelli@gmail.com>
3911 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3912 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3913 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3914 S:      Maintained
3915 T:      git https://github.com/broadcom/stblinux.git
3916 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3917 F:      drivers/pci/controller/pcie-brcmstb.c
3918 F:      drivers/staging/vc04_services
3919 N:      bcm2711
3920 N:      bcm283*
3921 N:      raspberrypi
3922
3923 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3924 M:      Florian Fainelli <f.fainelli@gmail.com>
3925 M:      Ray Jui <rjui@broadcom.com>
3926 M:      Scott Branden <sbranden@broadcom.com>
3927 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3928 S:      Maintained
3929 T:      git https://github.com/broadcom/mach-bcm
3930 F:      arch/arm/mach-bcm/
3931 N:      bcm281*
3932 N:      bcm113*
3933 N:      bcm216*
3934 N:      kona
3935
3936 BROADCOM BCM47XX MIPS ARCHITECTURE
3937 M:      Hauke Mehrtens <hauke@hauke-m.de>
3938 M:      Rafał Miłecki <zajec5@gmail.com>
3939 L:      linux-mips@vger.kernel.org
3940 S:      Maintained
3941 F:      Documentation/devicetree/bindings/mips/brcm/
3942 F:      arch/mips/bcm47xx/*
3943 F:      arch/mips/include/asm/mach-bcm47xx/*
3944
3945 BROADCOM BCM4908 ETHERNET DRIVER
3946 M:      Rafał Miłecki <rafal@milecki.pl>
3947 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3948 L:      netdev@vger.kernel.org
3949 S:      Maintained
3950 F:      Documentation/devicetree/bindings/net/brcm,bcm4908-enet.yaml
3951 F:      drivers/net/ethernet/broadcom/bcm4908_enet.*
3952 F:      drivers/net/ethernet/broadcom/unimac.h
3953
3954 BROADCOM BCM4908 PINMUX DRIVER
3955 M:      Rafał Miłecki <rafal@milecki.pl>
3956 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3957 L:      linux-gpio@vger.kernel.org
3958 S:      Maintained
3959 F:      Documentation/devicetree/bindings/pinctrl/brcm,bcm4908-pinctrl.yaml
3960 F:      drivers/pinctrl/bcm/pinctrl-bcm4908.c
3961
3962 BROADCOM BCM5301X ARM ARCHITECTURE
3963 M:      Florian Fainelli <f.fainelli@gmail.com>
3964 M:      Hauke Mehrtens <hauke@hauke-m.de>
3965 M:      Rafał Miłecki <zajec5@gmail.com>
3966 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3967 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3968 S:      Maintained
3969 F:      arch/arm/boot/dts/bcm470*
3970 F:      arch/arm/boot/dts/bcm5301*
3971 F:      arch/arm/boot/dts/bcm953012*
3972 F:      arch/arm/mach-bcm/bcm_5301x.c
3973
3974 BROADCOM BCM53573 ARM ARCHITECTURE
3975 M:      Florian Fainelli <f.fainelli@gmail.com>
3976 M:      Rafał Miłecki <rafal@milecki.pl>
3977 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3978 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3979 S:      Maintained
3980 F:      arch/arm/boot/dts/bcm47189*
3981 F:      arch/arm/boot/dts/bcm53573*
3982
3983 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3984 M:      Kevin Cernekee <cernekee@gmail.com>
3985 L:      linux-usb@vger.kernel.org
3986 S:      Maintained
3987 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
3988
3989 BROADCOM BCM7XXX ARM ARCHITECTURE
3990 M:      Florian Fainelli <f.fainelli@gmail.com>
3991 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3992 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3993 S:      Maintained
3994 T:      git https://github.com/broadcom/stblinux.git
3995 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3996 F:      arch/arm/boot/dts/bcm7*.dts*
3997 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
3998 F:      arch/arm/mach-bcm/*brcmstb*
3999 F:      arch/arm/mm/cache-b15-rac.c
4000 F:      drivers/bus/brcmstb_gisb.c
4001 F:      drivers/pci/controller/pcie-brcmstb.c
4002 N:      brcmstb
4003 N:      bcm7038
4004 N:      bcm7120
4005
4006 BROADCOM BDC DRIVER
4007 M:      Justin Chen <justinpopo6@gmail.com>
4008 M:      Al Cooper <alcooperx@gmail.com>
4009 L:      linux-usb@vger.kernel.org
4010 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4011 S:      Maintained
4012 F:      Documentation/devicetree/bindings/usb/brcm,bdc.yaml
4013 F:      drivers/usb/gadget/udc/bdc/
4014
4015 BROADCOM BMIPS CPUFREQ DRIVER
4016 M:      Markus Mayer <mmayer@broadcom.com>
4017 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4018 L:      linux-pm@vger.kernel.org
4019 S:      Maintained
4020 F:      drivers/cpufreq/bmips-cpufreq.c
4021
4022 BROADCOM BMIPS MIPS ARCHITECTURE
4023 M:      Florian Fainelli <f.fainelli@gmail.com>
4024 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4025 L:      linux-mips@vger.kernel.org
4026 S:      Maintained
4027 T:      git https://github.com/broadcom/stblinux.git
4028 F:      arch/mips/bmips/*
4029 F:      arch/mips/boot/dts/brcm/bcm*.dts*
4030 F:      arch/mips/include/asm/mach-bmips/*
4031 F:      arch/mips/kernel/*bmips*
4032 F:      drivers/soc/bcm/bcm63xx
4033 F:      drivers/irqchip/irq-bcm63*
4034 F:      drivers/irqchip/irq-bcm7*
4035 F:      drivers/irqchip/irq-brcmstb*
4036 F:      include/linux/bcm963xx_nvram.h
4037 F:      include/linux/bcm963xx_tag.h
4038
4039 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
4040 M:      Rasesh Mody <rmody@marvell.com>
4041 M:      GR-Linux-NIC-Dev@marvell.com
4042 L:      netdev@vger.kernel.org
4043 S:      Supported
4044 F:      drivers/net/ethernet/broadcom/bnx2.*
4045 F:      drivers/net/ethernet/broadcom/bnx2_*
4046
4047 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
4048 M:      Saurav Kashyap <skashyap@marvell.com>
4049 M:      Javed Hasan <jhasan@marvell.com>
4050 M:      GR-QLogic-Storage-Upstream@marvell.com
4051 L:      linux-scsi@vger.kernel.org
4052 S:      Supported
4053 F:      drivers/scsi/bnx2fc/
4054
4055 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
4056 M:      Nilesh Javali <njavali@marvell.com>
4057 M:      Manish Rangankar <mrangankar@marvell.com>
4058 M:      GR-QLogic-Storage-Upstream@marvell.com
4059 L:      linux-scsi@vger.kernel.org
4060 S:      Supported
4061 F:      drivers/scsi/bnx2i/
4062
4063 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
4064 M:      Ariel Elior <aelior@marvell.com>
4065 M:      Sudarsana Kalluru <skalluru@marvell.com>
4066 M:      Manish Chopra <manishc@marvell.com>
4067 L:      netdev@vger.kernel.org
4068 S:      Supported
4069 F:      drivers/net/ethernet/broadcom/bnx2x/
4070
4071 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
4072 M:      Michael Chan <michael.chan@broadcom.com>
4073 L:      netdev@vger.kernel.org
4074 S:      Supported
4075 F:      drivers/firmware/broadcom/tee_bnxt_fw.c
4076 F:      drivers/net/ethernet/broadcom/bnxt/
4077 F:      include/linux/firmware/broadcom/tee_bnxt_fw.h
4078
4079 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
4080 M:      Arend van Spriel <aspriel@gmail.com>
4081 M:      Franky Lin <franky.lin@broadcom.com>
4082 M:      Hante Meuleman <hante.meuleman@broadcom.com>
4083 L:      linux-wireless@vger.kernel.org
4084 L:      brcm80211-dev-list.pdl@broadcom.com
4085 L:      SHA-cyfmac-dev-list@infineon.com
4086 S:      Supported
4087 F:      drivers/net/wireless/broadcom/brcm80211/
4088
4089 BROADCOM BRCMSTB GPIO DRIVER
4090 M:      Doug Berger <opendmb@gmail.com>
4091 M:      Florian Fainelli <f.fainelli@gmail.com>
4092 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4093 S:      Supported
4094 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.yaml
4095 F:      drivers/gpio/gpio-brcmstb.c
4096
4097 BROADCOM BRCMSTB I2C DRIVER
4098 M:      Kamal Dasu <kdasu.kdev@gmail.com>
4099 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4100 L:      linux-i2c@vger.kernel.org
4101 S:      Supported
4102 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
4103 F:      drivers/i2c/busses/i2c-brcmstb.c
4104
4105 BROADCOM BRCMSTB UART DRIVER
4106 M:      Al Cooper <alcooperx@gmail.com>
4107 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4108 L:      linux-serial@vger.kernel.org
4109 S:      Maintained
4110 F:      Documentation/devicetree/bindings/serial/brcm,bcm7271-uart.yaml
4111 F:      drivers/tty/serial/8250/8250_bcm7271.c
4112
4113 BROADCOM BRCMSTB USB EHCI DRIVER
4114 M:      Justin Chen <justinpopo6@gmail.com>
4115 M:      Al Cooper <alcooperx@gmail.com>
4116 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4117 L:      linux-usb@vger.kernel.org
4118 S:      Maintained
4119 F:      Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
4120 F:      drivers/usb/host/ehci-brcm.*
4121
4122 BROADCOM BRCMSTB USB PIN MAP DRIVER
4123 M:      Al Cooper <alcooperx@gmail.com>
4124 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4125 L:      linux-usb@vger.kernel.org
4126 S:      Maintained
4127 F:      Documentation/devicetree/bindings/usb/brcm,usb-pinmap.yaml
4128 F:      drivers/usb/misc/brcmstb-usb-pinmap.c
4129
4130 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
4131 M:      Justin Chen <justinpopo6@gmail.com>
4132 M:      Al Cooper <alcooperx@gmail.com>
4133 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4134 L:      linux-kernel@vger.kernel.org
4135 S:      Maintained
4136 F:      drivers/phy/broadcom/phy-brcm-usb*
4137
4138 BROADCOM ETHERNET PHY DRIVERS
4139 M:      Florian Fainelli <f.fainelli@gmail.com>
4140 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4141 L:      netdev@vger.kernel.org
4142 S:      Supported
4143 F:      Documentation/devicetree/bindings/net/broadcom-bcm87xx.txt
4144 F:      drivers/net/phy/bcm*.[ch]
4145 F:      drivers/net/phy/broadcom.c
4146 F:      include/linux/brcmphy.h
4147
4148 BROADCOM GENET ETHERNET DRIVER
4149 M:      Doug Berger <opendmb@gmail.com>
4150 M:      Florian Fainelli <f.fainelli@gmail.com>
4151 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4152 L:      netdev@vger.kernel.org
4153 S:      Supported
4154 F:      Documentation/devicetree/bindings/net/brcm,bcmgenet.yaml
4155 F:      Documentation/devicetree/bindings/net/brcm,unimac-mdio.yaml
4156 F:      drivers/net/ethernet/broadcom/genet/
4157 F:      drivers/net/ethernet/broadcom/unimac.h
4158 F:      drivers/net/mdio/mdio-bcm-unimac.c
4159 F:      include/linux/platform_data/bcmgenet.h
4160 F:      include/linux/platform_data/mdio-bcm-unimac.h
4161
4162 BROADCOM IPROC ARM ARCHITECTURE
4163 M:      Ray Jui <rjui@broadcom.com>
4164 M:      Scott Branden <sbranden@broadcom.com>
4165 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4166 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4167 S:      Maintained
4168 T:      git https://github.com/broadcom/stblinux.git
4169 F:      arch/arm64/boot/dts/broadcom/northstar2/*
4170 F:      arch/arm64/boot/dts/broadcom/stingray/*
4171 F:      drivers/clk/bcm/clk-ns*
4172 F:      drivers/clk/bcm/clk-sr*
4173 F:      drivers/pinctrl/bcm/pinctrl-ns*
4174 F:      include/dt-bindings/clock/bcm-sr*
4175 N:      iproc
4176 N:      cygnus
4177 N:      bcm[-_]nsp
4178 N:      bcm9113*
4179 N:      bcm9583*
4180 N:      bcm9585*
4181 N:      bcm9586*
4182 N:      bcm988312
4183 N:      bcm113*
4184 N:      bcm583*
4185 N:      bcm585*
4186 N:      bcm586*
4187 N:      bcm88312
4188 N:      hr2
4189 N:      stingray
4190
4191 BROADCOM IPROC GBIT ETHERNET DRIVER
4192 M:      Rafał Miłecki <rafal@milecki.pl>
4193 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4194 L:      netdev@vger.kernel.org
4195 S:      Maintained
4196 F:      Documentation/devicetree/bindings/net/brcm,amac.yaml
4197 F:      drivers/net/ethernet/broadcom/bgmac*
4198 F:      drivers/net/ethernet/broadcom/unimac.h
4199
4200 BROADCOM KONA GPIO DRIVER
4201 M:      Ray Jui <rjui@broadcom.com>
4202 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4203 S:      Supported
4204 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
4205 F:      drivers/gpio/gpio-bcm-kona.c
4206
4207 BROADCOM MPI3 STORAGE CONTROLLER DRIVER
4208 M:      Sathya Prakash Veerichetty <sathya.prakash@broadcom.com>
4209 M:      Kashyap Desai <kashyap.desai@broadcom.com>
4210 M:      Sumit Saxena <sumit.saxena@broadcom.com>
4211 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
4212 L:      mpi3mr-linuxdrv.pdl@broadcom.com
4213 L:      linux-scsi@vger.kernel.org
4214 S:      Supported
4215 W:      https://www.broadcom.com/support/storage
4216 F:      drivers/scsi/mpi3mr/
4217
4218 BROADCOM NETXTREME-E ROCE DRIVER
4219 M:      Selvin Xavier <selvin.xavier@broadcom.com>
4220 L:      linux-rdma@vger.kernel.org
4221 S:      Supported
4222 W:      http://www.broadcom.com
4223 F:      drivers/infiniband/hw/bnxt_re/
4224 F:      include/uapi/rdma/bnxt_re-abi.h
4225
4226 BROADCOM NVRAM DRIVER
4227 M:      Rafał Miłecki <zajec5@gmail.com>
4228 L:      linux-mips@vger.kernel.org
4229 S:      Maintained
4230 F:      drivers/firmware/broadcom/*
4231
4232 BROADCOM PMB (POWER MANAGEMENT BUS) DRIVER
4233 M:      Rafał Miłecki <rafal@milecki.pl>
4234 M:      Florian Fainelli <f.fainelli@gmail.com>
4235 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4236 L:      linux-pm@vger.kernel.org
4237 S:      Maintained
4238 T:      git https://github.com/broadcom/stblinux.git
4239 F:      drivers/soc/bcm/bcm63xx/bcm-pmb.c
4240 F:      include/dt-bindings/soc/bcm-pmb.h
4241
4242 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
4243 M:      Rafał Miłecki <zajec5@gmail.com>
4244 L:      linux-wireless@vger.kernel.org
4245 S:      Maintained
4246 F:      drivers/bcma/
4247 F:      include/linux/bcma/
4248
4249 BROADCOM SPI DRIVER
4250 M:      Kamal Dasu <kdasu.kdev@gmail.com>
4251 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4252 S:      Maintained
4253 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.yaml
4254 F:      drivers/spi/spi-bcm-qspi.*
4255 F:      drivers/spi/spi-brcmstb-qspi.c
4256 F:      drivers/spi/spi-iproc-qspi.c
4257
4258 BROADCOM STB AVS CPUFREQ DRIVER
4259 M:      Markus Mayer <mmayer@broadcom.com>
4260 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4261 L:      linux-pm@vger.kernel.org
4262 S:      Maintained
4263 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
4264 F:      drivers/cpufreq/brcmstb*
4265
4266 BROADCOM STB AVS TMON DRIVER
4267 M:      Markus Mayer <mmayer@broadcom.com>
4268 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4269 L:      linux-pm@vger.kernel.org
4270 S:      Maintained
4271 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.yaml
4272 F:      drivers/thermal/broadcom/brcmstb*
4273
4274 BROADCOM STB DPFE DRIVER
4275 M:      Markus Mayer <mmayer@broadcom.com>
4276 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4277 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4278 S:      Maintained
4279 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.yaml
4280 F:      drivers/memory/brcmstb_dpfe.c
4281
4282 BROADCOM STB NAND FLASH DRIVER
4283 M:      Brian Norris <computersforpeace@gmail.com>
4284 M:      Kamal Dasu <kdasu.kdev@gmail.com>
4285 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4286 L:      linux-mtd@lists.infradead.org
4287 S:      Maintained
4288 F:      drivers/mtd/nand/raw/brcmnand/
4289 F:      include/linux/platform_data/brcmnand.h
4290
4291 BROADCOM STB PCIE DRIVER
4292 M:      Jim Quinlan <jim2101024@gmail.com>
4293 M:      Nicolas Saenz Julienne <nsaenz@kernel.org>
4294 M:      Florian Fainelli <f.fainelli@gmail.com>
4295 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4296 L:      linux-pci@vger.kernel.org
4297 S:      Maintained
4298 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
4299 F:      drivers/pci/controller/pcie-brcmstb.c
4300
4301 BROADCOM SYSTEMPORT ETHERNET DRIVER
4302 M:      Florian Fainelli <f.fainelli@gmail.com>
4303 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4304 L:      netdev@vger.kernel.org
4305 S:      Supported
4306 F:      drivers/net/ethernet/broadcom/bcmsysport.*
4307 F:      drivers/net/ethernet/broadcom/unimac.h
4308 F:      Documentation/devicetree/bindings/net/brcm,systemport.yaml
4309
4310 BROADCOM TG3 GIGABIT ETHERNET DRIVER
4311 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
4312 M:      Prashant Sreedharan <prashant@broadcom.com>
4313 M:      Michael Chan <mchan@broadcom.com>
4314 L:      netdev@vger.kernel.org
4315 S:      Supported
4316 F:      drivers/net/ethernet/broadcom/tg3.*
4317
4318 BROADCOM VK DRIVER
4319 M:      Scott Branden <scott.branden@broadcom.com>
4320 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4321 S:      Supported
4322 F:      drivers/misc/bcm-vk/
4323 F:      include/uapi/linux/misc/bcm_vk.h
4324
4325 BROCADE BFA FC SCSI DRIVER
4326 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
4327 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
4328 L:      linux-scsi@vger.kernel.org
4329 S:      Supported
4330 F:      drivers/scsi/bfa/
4331
4332 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
4333 M:      Rasesh Mody <rmody@marvell.com>
4334 M:      Sudarsana Kalluru <skalluru@marvell.com>
4335 M:      GR-Linux-NIC-Dev@marvell.com
4336 L:      netdev@vger.kernel.org
4337 S:      Supported
4338 F:      drivers/net/ethernet/brocade/bna/
4339
4340 BSG (block layer generic sg v4 driver)
4341 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
4342 L:      linux-scsi@vger.kernel.org
4343 S:      Supported
4344 F:      block/bsg.c
4345 F:      include/linux/bsg.h
4346 F:      include/uapi/linux/bsg.h
4347
4348 BT87X AUDIO DRIVER
4349 M:      Clemens Ladisch <clemens@ladisch.de>
4350 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4351 S:      Maintained
4352 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4353 F:      Documentation/sound/cards/bt87x.rst
4354 F:      sound/pci/bt87x.c
4355
4356 BT8XXGPIO DRIVER
4357 M:      Michael Buesch <m@bues.ch>
4358 S:      Maintained
4359 W:      http://bu3sch.de/btgpio.php
4360 F:      drivers/gpio/gpio-bt8xx.c
4361
4362 BTRFS FILE SYSTEM
4363 M:      Chris Mason <clm@fb.com>
4364 M:      Josef Bacik <josef@toxicpanda.com>
4365 M:      David Sterba <dsterba@suse.com>
4366 L:      linux-btrfs@vger.kernel.org
4367 S:      Maintained
4368 W:      https://btrfs.readthedocs.io
4369 W:      https://btrfs.wiki.kernel.org/
4370 Q:      https://patchwork.kernel.org/project/linux-btrfs/list/
4371 C:      irc://irc.libera.chat/btrfs
4372 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
4373 F:      Documentation/filesystems/btrfs.rst
4374 F:      fs/btrfs/
4375 F:      include/linux/btrfs*
4376 F:      include/trace/events/btrfs.h
4377 F:      include/uapi/linux/btrfs*
4378
4379 BTTV VIDEO4LINUX DRIVER
4380 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4381 L:      linux-media@vger.kernel.org
4382 S:      Odd fixes
4383 W:      https://linuxtv.org
4384 T:      git git://linuxtv.org/media_tree.git
4385 F:      Documentation/driver-api/media/drivers/bttv*
4386 F:      drivers/media/pci/bt8xx/bttv*
4387
4388 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
4389 M:      Chanwoo Choi <cw00.choi@samsung.com>
4390 L:      linux-pm@vger.kernel.org
4391 L:      linux-samsung-soc@vger.kernel.org
4392 S:      Maintained
4393 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4394 F:      Documentation/devicetree/bindings/interconnect/samsung,exynos-bus.yaml
4395 F:      drivers/devfreq/exynos-bus.c
4396
4397 BUSLOGIC SCSI DRIVER
4398 M:      Khalid Aziz <khalid@gonehiking.org>
4399 L:      linux-scsi@vger.kernel.org
4400 S:      Maintained
4401 F:      drivers/scsi/BusLogic.*
4402 F:      drivers/scsi/FlashPoint.*
4403
4404 C-MEDIA CMI8788 DRIVER
4405 M:      Clemens Ladisch <clemens@ladisch.de>
4406 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4407 S:      Maintained
4408 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4409 F:      sound/pci/oxygen/
4410
4411 C-SKY ARCHITECTURE
4412 M:      Guo Ren <guoren@kernel.org>
4413 L:      linux-csky@vger.kernel.org
4414 S:      Supported
4415 T:      git https://github.com/c-sky/csky-linux.git
4416 F:      Documentation/devicetree/bindings/csky/
4417 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
4418 F:      Documentation/devicetree/bindings/timer/csky,*
4419 F:      arch/csky/
4420 F:      drivers/clocksource/timer-gx6605s.c
4421 F:      drivers/clocksource/timer-mp-csky.c
4422 F:      drivers/irqchip/irq-csky-*
4423 N:      csky
4424 K:      csky
4425
4426 CA8210 IEEE-802.15.4 RADIO DRIVER
4427 L:      linux-wpan@vger.kernel.org
4428 S:      Orphan
4429 W:      https://github.com/Cascoda/ca8210-linux.git
4430 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
4431 F:      drivers/net/ieee802154/ca8210.c
4432
4433 CANAAN/KENDRYTE K210 SOC FPIOA DRIVER
4434 M:      Damien Le Moal <damien.lemoal@wdc.com>
4435 L:      linux-riscv@lists.infradead.org
4436 L:      linux-gpio@vger.kernel.org (pinctrl driver)
4437 F:      Documentation/devicetree/bindings/pinctrl/canaan,k210-fpioa.yaml
4438 F:      drivers/pinctrl/pinctrl-k210.c
4439
4440 CANAAN/KENDRYTE K210 SOC RESET CONTROLLER DRIVER
4441 M:      Damien Le Moal <damien.lemoal@wdc.com>
4442 L:      linux-kernel@vger.kernel.org
4443 L:      linux-riscv@lists.infradead.org
4444 S:      Maintained
4445 F:      Documentation/devicetree/bindings/reset/canaan,k210-rst.yaml
4446 F:      drivers/reset/reset-k210.c
4447
4448 CANAAN/KENDRYTE K210 SOC SYSTEM CONTROLLER DRIVER
4449 M:      Damien Le Moal <damien.lemoal@wdc.com>
4450 L:      linux-riscv@lists.infradead.org
4451 S:      Maintained
4452 F:      Documentation/devicetree/bindings/mfd/canaan,k210-sysctl.yaml
4453 F:      drivers/soc/canaan/
4454 F:      include/soc/canaan/
4455
4456 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
4457 M:      David Howells <dhowells@redhat.com>
4458 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
4459 S:      Supported
4460 F:      Documentation/filesystems/caching/cachefiles.rst
4461 F:      fs/cachefiles/
4462
4463 CADENCE MIPI-CSI2 BRIDGES
4464 M:      Maxime Ripard <mripard@kernel.org>
4465 L:      linux-media@vger.kernel.org
4466 S:      Maintained
4467 F:      Documentation/devicetree/bindings/media/cdns,*.txt
4468 F:      drivers/media/platform/cadence/cdns-csi2*
4469
4470 CADENCE NAND DRIVER
4471 L:      linux-mtd@lists.infradead.org
4472 S:      Orphan
4473 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
4474 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
4475
4476 CADENCE USB3 DRD IP DRIVER
4477 M:      Peter Chen <peter.chen@kernel.org>
4478 M:      Pawel Laszczak <pawell@cadence.com>
4479 R:      Roger Quadros <rogerq@kernel.org>
4480 R:      Aswath Govindraju <a-govindraju@ti.com>
4481 L:      linux-usb@vger.kernel.org
4482 S:      Maintained
4483 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4484 F:      Documentation/devicetree/bindings/usb/cdns,usb3.yaml
4485 F:      drivers/usb/cdns3/
4486 X:      drivers/usb/cdns3/cdnsp*
4487
4488 CADENCE USBSSP DRD IP DRIVER
4489 M:      Pawel Laszczak <pawell@cadence.com>
4490 L:      linux-usb@vger.kernel.org
4491 S:      Maintained
4492 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4493 F:      drivers/usb/cdns3/
4494 X:      drivers/usb/cdns3/cdns3*
4495
4496 CADET FM/AM RADIO RECEIVER DRIVER
4497 M:      Hans Verkuil <hverkuil@xs4all.nl>
4498 L:      linux-media@vger.kernel.org
4499 S:      Maintained
4500 W:      https://linuxtv.org
4501 T:      git git://linuxtv.org/media_tree.git
4502 F:      drivers/media/radio/radio-cadet*
4503
4504 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
4505 L:      linux-media@vger.kernel.org
4506 S:      Orphan
4507 T:      git git://linuxtv.org/media_tree.git
4508 F:      Documentation/admin-guide/media/cafe_ccic*
4509 F:      drivers/media/platform/marvell/
4510
4511 CAIF NETWORK LAYER
4512 L:      netdev@vger.kernel.org
4513 S:      Orphan
4514 F:      Documentation/networking/caif/
4515 F:      drivers/net/caif/
4516 F:      include/net/caif/
4517 F:      include/uapi/linux/caif/
4518 F:      net/caif/
4519
4520 CAKE QDISC
4521 M:      Toke Høiland-Jørgensen <toke@toke.dk>
4522 L:      cake@lists.bufferbloat.net (moderated for non-subscribers)
4523 S:      Maintained
4524 F:      net/sched/sch_cake.c
4525
4526 CAN NETWORK DRIVERS
4527 M:      Wolfgang Grandegger <wg@grandegger.com>
4528 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4529 L:      linux-can@vger.kernel.org
4530 S:      Maintained
4531 W:      https://github.com/linux-can
4532 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4533 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4534 F:      Documentation/devicetree/bindings/net/can/
4535 F:      Documentation/devicetree/bindings/phy/ti,tcan104x-can.yaml
4536 F:      drivers/net/can/
4537 F:      drivers/phy/phy-can-transceiver.c
4538 F:      include/linux/can/bittiming.h
4539 F:      include/linux/can/dev.h
4540 F:      include/linux/can/length.h
4541 F:      include/linux/can/platform/
4542 F:      include/linux/can/rx-offload.h
4543 F:      include/uapi/linux/can/error.h
4544 F:      include/uapi/linux/can/netlink.h
4545 F:      include/uapi/linux/can/vxcan.h
4546
4547 CAN NETWORK LAYER
4548 M:      Oliver Hartkopp <socketcan@hartkopp.net>
4549 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4550 L:      linux-can@vger.kernel.org
4551 S:      Maintained
4552 W:      https://github.com/linux-can
4553 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4554 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4555 F:      Documentation/networking/can.rst
4556 F:      include/linux/can/can-ml.h
4557 F:      include/linux/can/core.h
4558 F:      include/linux/can/skb.h
4559 F:      include/net/netns/can.h
4560 F:      include/uapi/linux/can.h
4561 F:      include/uapi/linux/can/bcm.h
4562 F:      include/uapi/linux/can/gw.h
4563 F:      include/uapi/linux/can/isotp.h
4564 F:      include/uapi/linux/can/raw.h
4565 F:      net/can/
4566
4567 CAN-J1939 NETWORK LAYER
4568 M:      Robin van der Gracht <robin@protonic.nl>
4569 M:      Oleksij Rempel <o.rempel@pengutronix.de>
4570 R:      kernel@pengutronix.de
4571 L:      linux-can@vger.kernel.org
4572 S:      Maintained
4573 F:      Documentation/networking/j1939.rst
4574 F:      include/uapi/linux/can/j1939.h
4575 F:      net/can/j1939/
4576
4577 CAPABILITIES
4578 M:      Serge Hallyn <serge@hallyn.com>
4579 L:      linux-security-module@vger.kernel.org
4580 S:      Supported
4581 F:      include/linux/capability.h
4582 F:      include/uapi/linux/capability.h
4583 F:      kernel/capability.c
4584 F:      security/commoncap.c
4585
4586 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
4587 M:      Kevin Tsai <ktsai@capellamicro.com>
4588 S:      Maintained
4589 F:      drivers/iio/light/cm*
4590
4591 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
4592 M:      Christian Lamparter <chunkeey@googlemail.com>
4593 L:      linux-wireless@vger.kernel.org
4594 S:      Maintained
4595 W:      https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
4596 F:      drivers/net/wireless/ath/carl9170/
4597
4598 CAVIUM I2C DRIVER
4599 M:      Robert Richter <rric@kernel.org>
4600 S:      Odd Fixes
4601 W:      http://www.marvell.com
4602 F:      drivers/i2c/busses/i2c-octeon*
4603 F:      drivers/i2c/busses/i2c-thunderx*
4604
4605 CAVIUM LIQUIDIO NETWORK DRIVER
4606 M:      Derek Chickles <dchickles@marvell.com>
4607 M:      Satanand Burla <sburla@marvell.com>
4608 M:      Felix Manlunas <fmanlunas@marvell.com>
4609 L:      netdev@vger.kernel.org
4610 S:      Supported
4611 W:      http://www.marvell.com
4612 F:      drivers/net/ethernet/cavium/liquidio/
4613
4614 CAVIUM MMC DRIVER
4615 M:      Robert Richter <rric@kernel.org>
4616 S:      Odd Fixes
4617 W:      http://www.marvell.com
4618 F:      drivers/mmc/host/cavium*
4619
4620 CAVIUM OCTEON-TX CRYPTO DRIVER
4621 M:      George Cherian <gcherian@marvell.com>
4622 L:      linux-crypto@vger.kernel.org
4623 S:      Supported
4624 W:      http://www.marvell.com
4625 F:      drivers/crypto/cavium/cpt/
4626
4627 CAVIUM THUNDERX2 ARM64 SOC
4628 M:      Robert Richter <rric@kernel.org>
4629 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4630 S:      Odd Fixes
4631 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
4632 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
4633
4634 CBS/ETF/TAPRIO QDISCS
4635 M:      Vinicius Costa Gomes <vinicius.gomes@intel.com>
4636 S:      Maintained
4637 L:      netdev@vger.kernel.org
4638 F:      net/sched/sch_cbs.c
4639 F:      net/sched/sch_etf.c
4640 F:      net/sched/sch_taprio.c
4641
4642 CC2520 IEEE-802.15.4 RADIO DRIVER
4643 M:      Varka Bhadram <varkabhadram@gmail.com>
4644 L:      linux-wpan@vger.kernel.org
4645 S:      Maintained
4646 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
4647 F:      drivers/net/ieee802154/cc2520.c
4648 F:      include/linux/spi/cc2520.h
4649
4650 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
4651 M:      Gilad Ben-Yossef <gilad@benyossef.com>
4652 L:      linux-crypto@vger.kernel.org
4653 S:      Supported
4654 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4655 F:      drivers/crypto/ccree/
4656
4657 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
4658 M:      Hadar Gat <hadar.gat@arm.com>
4659 L:      linux-crypto@vger.kernel.org
4660 S:      Supported
4661 F:      drivers/char/hw_random/cctrng.c
4662 F:      drivers/char/hw_random/cctrng.h
4663 F:      Documentation/devicetree/bindings/rng/arm-cctrng.yaml
4664 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4665
4666 CEC FRAMEWORK
4667 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4668 L:      linux-media@vger.kernel.org
4669 S:      Supported
4670 W:      http://linuxtv.org
4671 T:      git git://linuxtv.org/media_tree.git
4672 F:      Documentation/ABI/testing/debugfs-cec-error-inj
4673 F:      Documentation/devicetree/bindings/media/cec.txt
4674 F:      Documentation/driver-api/media/cec-core.rst
4675 F:      Documentation/userspace-api/media/cec
4676 F:      drivers/media/cec/
4677 F:      drivers/media/rc/keymaps/rc-cec.c
4678 F:      include/media/cec-notifier.h
4679 F:      include/media/cec.h
4680 F:      include/uapi/linux/cec-funcs.h
4681 F:      include/uapi/linux/cec.h
4682
4683 CEC GPIO DRIVER
4684 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4685 L:      linux-media@vger.kernel.org
4686 S:      Supported
4687 W:      http://linuxtv.org
4688 T:      git git://linuxtv.org/media_tree.git
4689 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
4690 F:      drivers/media/cec/platform/cec-gpio/
4691
4692 CELL BROADBAND ENGINE ARCHITECTURE
4693 M:      Arnd Bergmann <arnd@arndb.de>
4694 L:      linuxppc-dev@lists.ozlabs.org
4695 S:      Supported
4696 W:      http://www.ibm.com/developerworks/power/cell/
4697 F:      arch/powerpc/include/asm/cell*.h
4698 F:      arch/powerpc/include/asm/spu*.h
4699 F:      arch/powerpc/include/uapi/asm/spu*.h
4700 F:      arch/powerpc/platforms/cell/
4701
4702 CELLWISE CW2015 BATTERY DRIVER
4703 M:      Tobias Schrammm <t.schramm@manjaro.org>
4704 S:      Maintained
4705 F:      Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
4706 F:      drivers/power/supply/cw2015_battery.c
4707
4708 CEPH COMMON CODE (LIBCEPH)
4709 M:      Ilya Dryomov <idryomov@gmail.com>
4710 M:      Xiubo Li <xiubli@redhat.com>
4711 R:      Jeff Layton <jlayton@kernel.org>
4712 L:      ceph-devel@vger.kernel.org
4713 S:      Supported
4714 W:      http://ceph.com/
4715 T:      git https://github.com/ceph/ceph-client.git
4716 F:      include/linux/ceph/
4717 F:      include/linux/crush/
4718 F:      net/ceph/
4719
4720 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4721 M:      Xiubo Li <xiubli@redhat.com>
4722 M:      Ilya Dryomov <idryomov@gmail.com>
4723 R:      Jeff Layton <jlayton@kernel.org>
4724 L:      ceph-devel@vger.kernel.org
4725 S:      Supported
4726 W:      http://ceph.com/
4727 T:      git https://github.com/ceph/ceph-client.git
4728 F:      Documentation/filesystems/ceph.rst
4729 F:      fs/ceph/
4730
4731 CERTIFICATE HANDLING
4732 M:      David Howells <dhowells@redhat.com>
4733 M:      David Woodhouse <dwmw2@infradead.org>
4734 L:      keyrings@vger.kernel.org
4735 S:      Maintained
4736 F:      Documentation/admin-guide/module-signing.rst
4737 F:      certs/
4738 F:      scripts/sign-file.c
4739 F:      tools/certs/
4740
4741 CFAG12864B LCD DRIVER
4742 M:      Miguel Ojeda <ojeda@kernel.org>
4743 S:      Maintained
4744 F:      drivers/auxdisplay/cfag12864b.c
4745 F:      include/linux/cfag12864b.h
4746
4747 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4748 M:      Miguel Ojeda <ojeda@kernel.org>
4749 S:      Maintained
4750 F:      drivers/auxdisplay/cfag12864bfb.c
4751 F:      include/linux/cfag12864b.h
4752
4753 CHAR and MISC DRIVERS
4754 M:      Arnd Bergmann <arnd@arndb.de>
4755 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4756 S:      Supported
4757 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4758 F:      drivers/char/
4759 F:      drivers/misc/
4760 F:      include/linux/miscdevice.h
4761 X:      drivers/char/agp/
4762 X:      drivers/char/hw_random/
4763 X:      drivers/char/ipmi/
4764 X:      drivers/char/random.c
4765 X:      drivers/char/tpm/
4766
4767 CHECKPATCH
4768 M:      Andy Whitcroft <apw@canonical.com>
4769 M:      Joe Perches <joe@perches.com>
4770 R:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4771 R:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4772 S:      Maintained
4773 F:      scripts/checkpatch.pl
4774
4775 CHECKPATCH DOCUMENTATION
4776 M:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4777 M:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4778 R:      Joe Perches <joe@perches.com>
4779 S:      Maintained
4780 F:      Documentation/dev-tools/checkpatch.rst
4781
4782 CHINESE DOCUMENTATION
4783 M:      Alex Shi <alexs@kernel.org>
4784 M:      Yanteng Si <siyanteng@loongson.cn>
4785 S:      Maintained
4786 F:      Documentation/translations/zh_CN/
4787
4788 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4789 M:      Peter Chen <peter.chen@kernel.org>
4790 L:      linux-usb@vger.kernel.org
4791 S:      Maintained
4792 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4793 F:      drivers/usb/chipidea/
4794
4795 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4796 M:      Hans de Goede <hdegoede@redhat.com>
4797 L:      linux-input@vger.kernel.org
4798 S:      Maintained
4799 F:      Documentation/devicetree/bindings/input/touchscreen/chipone,icn8318.yaml
4800 F:      drivers/input/touchscreen/chipone_icn8318.c
4801
4802 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4803 M:      Hans de Goede <hdegoede@redhat.com>
4804 L:      linux-input@vger.kernel.org
4805 S:      Maintained
4806 F:      drivers/input/touchscreen/chipone_icn8505.c
4807
4808 CHROME HARDWARE PLATFORM SUPPORT
4809 M:      Benson Leung <bleung@chromium.org>
4810 L:      chrome-platform@lists.linux.dev
4811 S:      Maintained
4812 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4813 F:      drivers/platform/chrome/
4814
4815 CHROMEOS EC CODEC DRIVER
4816 M:      Cheng-Yi Chiang <cychiang@chromium.org>
4817 M:      Tzung-Bi Shih <tzungbi@kernel.org>
4818 R:      Guenter Roeck <groeck@chromium.org>
4819 L:      chrome-platform@lists.linux.dev
4820 S:      Maintained
4821 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4822 F:      sound/soc/codecs/cros_ec_codec.*
4823
4824 CHROMEOS EC SUBDRIVERS
4825 M:      Benson Leung <bleung@chromium.org>
4826 R:      Guenter Roeck <groeck@chromium.org>
4827 L:      chrome-platform@lists.linux.dev
4828 S:      Maintained
4829 F:      drivers/power/supply/cros_usbpd-charger.c
4830 N:      cros_ec
4831 N:      cros-ec
4832
4833 CHROMEOS EC USB TYPE-C DRIVER
4834 M:      Prashant Malani <pmalani@chromium.org>
4835 L:      chrome-platform@lists.linux.dev
4836 S:      Maintained
4837 F:      drivers/platform/chrome/cros_ec_typec.c
4838 F:      drivers/platform/chrome/cros_typec_switch.c
4839
4840 CHROMEOS EC USB PD NOTIFY DRIVER
4841 M:      Prashant Malani <pmalani@chromium.org>
4842 L:      chrome-platform@lists.linux.dev
4843 S:      Maintained
4844 F:      drivers/platform/chrome/cros_usbpd_notify.c
4845 F:      include/linux/platform_data/cros_usbpd_notify.h
4846
4847 CHROMEOS HPS DRIVER
4848 M:      Dan Callaghan <dcallagh@chromium.org>
4849 R:      Sami Kyöstilä <skyostil@chromium.org>
4850 S:      Maintained
4851 F:      drivers/platform/chrome/cros_hps_i2c.c
4852
4853 CHRONTEL CH7322 CEC DRIVER
4854 M:      Joe Tessler <jrt@google.com>
4855 L:      linux-media@vger.kernel.org
4856 S:      Maintained
4857 T:      git git://linuxtv.org/media_tree.git
4858 F:      Documentation/devicetree/bindings/media/i2c/chrontel,ch7322.yaml
4859 F:      drivers/media/cec/i2c/ch7322.c
4860
4861 CIRRUS LOGIC AUDIO CODEC DRIVERS
4862 M:      James Schulman <james.schulman@cirrus.com>
4863 M:      David Rhodes <david.rhodes@cirrus.com>
4864 M:      Lucas Tanure <tanureal@opensource.cirrus.com>
4865 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4866 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4867 L:      patches@opensource.cirrus.com
4868 S:      Maintained
4869 F:      Documentation/devicetree/bindings/sound/cirrus,cs*
4870 F:      include/dt-bindings/sound/cs*
4871 F:      sound/pci/hda/cs*
4872 F:      sound/pci/hda/hda_cs_dsp_ctl.*
4873 F:      sound/soc/codecs/cs*
4874
4875 CIRRUS LOGIC DSP FIRMWARE DRIVER
4876 M:      Simon Trimmer <simont@opensource.cirrus.com>
4877 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4878 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4879 L:      patches@opensource.cirrus.com
4880 S:      Supported
4881 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4882 T:      git https://github.com/CirrusLogic/linux-drivers.git
4883 F:      drivers/firmware/cirrus/*
4884 F:      include/linux/firmware/cirrus/*
4885
4886 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4887 M:      Hartley Sweeten <hsweeten@visionengravers.com>
4888 L:      netdev@vger.kernel.org
4889 S:      Maintained
4890 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
4891
4892 CIRRUS LOGIC LOCHNAGAR DRIVER
4893 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4894 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4895 L:      patches@opensource.cirrus.com
4896 S:      Supported
4897 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4898 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4899 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4900 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4901 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4902 F:      Documentation/hwmon/lochnagar.rst
4903 F:      drivers/clk/clk-lochnagar.c
4904 F:      drivers/hwmon/lochnagar-hwmon.c
4905 F:      drivers/mfd/lochnagar-i2c.c
4906 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4907 F:      drivers/regulator/lochnagar-regulator.c
4908 F:      include/dt-bindings/clock/lochnagar.h
4909 F:      include/dt-bindings/pinctrl/lochnagar.h
4910 F:      include/linux/mfd/lochnagar*
4911 F:      sound/soc/codecs/lochnagar-sc.c
4912
4913 CIRRUS LOGIC MADERA CODEC DRIVERS
4914 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4915 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4916 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4917 L:      patches@opensource.cirrus.com
4918 S:      Supported
4919 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4920 T:      git https://github.com/CirrusLogic/linux-drivers.git
4921 F:      Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4922 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4923 F:      Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4924 F:      drivers/gpio/gpio-madera*
4925 F:      drivers/irqchip/irq-madera*
4926 F:      drivers/mfd/cs47l*
4927 F:      drivers/mfd/madera*
4928 F:      drivers/pinctrl/cirrus/*
4929 F:      include/dt-bindings/sound/madera*
4930 F:      include/linux/irqchip/irq-madera*
4931 F:      include/linux/mfd/madera/*
4932 F:      include/sound/madera*
4933 F:      sound/soc/codecs/cs47l*
4934 F:      sound/soc/codecs/madera*
4935
4936 CISCO FCOE HBA DRIVER
4937 M:      Satish Kharat <satishkh@cisco.com>
4938 M:      Sesidhar Baddela <sebaddel@cisco.com>
4939 M:      Karan Tilak Kumar <kartilak@cisco.com>
4940 L:      linux-scsi@vger.kernel.org
4941 S:      Supported
4942 F:      drivers/scsi/fnic/
4943
4944 CISCO SCSI HBA DRIVER
4945 M:      Karan Tilak Kumar <kartilak@cisco.com>
4946 M:      Sesidhar Baddela <sebaddel@cisco.com>
4947 L:      linux-scsi@vger.kernel.org
4948 S:      Supported
4949 F:      drivers/scsi/snic/
4950
4951 CISCO VIC ETHERNET NIC DRIVER
4952 M:      Christian Benvenuti <benve@cisco.com>
4953 M:      Satish Kharat <satishkh@cisco.com>
4954 S:      Supported
4955 F:      drivers/net/ethernet/cisco/enic/
4956
4957 CISCO VIC LOW LATENCY NIC DRIVER
4958 M:      Christian Benvenuti <benve@cisco.com>
4959 M:      Nelson Escobar <neescoba@cisco.com>
4960 S:      Supported
4961 F:      drivers/infiniband/hw/usnic/
4962
4963 CLANG-FORMAT FILE
4964 M:      Miguel Ojeda <ojeda@kernel.org>
4965 S:      Maintained
4966 F:      .clang-format
4967
4968 CLANG/LLVM BUILD SUPPORT
4969 M:      Nathan Chancellor <nathan@kernel.org>
4970 M:      Nick Desaulniers <ndesaulniers@google.com>
4971 R:      Tom Rix <trix@redhat.com>
4972 L:      llvm@lists.linux.dev
4973 S:      Supported
4974 W:      https://clangbuiltlinux.github.io/
4975 B:      https://github.com/ClangBuiltLinux/linux/issues
4976 C:      irc://irc.libera.chat/clangbuiltlinux
4977 F:      Documentation/kbuild/llvm.rst
4978 F:      include/linux/compiler-clang.h
4979 F:      scripts/Makefile.clang
4980 F:      scripts/clang-tools/
4981 K:      \b(?i:clang|llvm)\b
4982
4983 CLANG CONTROL FLOW INTEGRITY SUPPORT
4984 M:      Sami Tolvanen <samitolvanen@google.com>
4985 M:      Kees Cook <keescook@chromium.org>
4986 R:      Nathan Chancellor <nathan@kernel.org>
4987 R:      Nick Desaulniers <ndesaulniers@google.com>
4988 L:      llvm@lists.linux.dev
4989 S:      Supported
4990 B:      https://github.com/ClangBuiltLinux/linux/issues
4991 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
4992 F:      include/linux/cfi.h
4993 F:      kernel/cfi.c
4994
4995 CLK API
4996 M:      Russell King <linux@armlinux.org.uk>
4997 L:      linux-clk@vger.kernel.org
4998 S:      Maintained
4999 F:      include/linux/clk.h
5000
5001 CLOCKSOURCE, CLOCKEVENT DRIVERS
5002 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5003 M:      Thomas Gleixner <tglx@linutronix.de>
5004 L:      linux-kernel@vger.kernel.org
5005 S:      Supported
5006 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
5007 F:      Documentation/devicetree/bindings/timer/
5008 F:      drivers/clocksource/
5009
5010 CMPC ACPI DRIVER
5011 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
5012 M:      Daniel Oliveira Nascimento <don@syst.com.br>
5013 L:      platform-driver-x86@vger.kernel.org
5014 S:      Supported
5015 F:      drivers/platform/x86/classmate-laptop.c
5016
5017 COBALT MEDIA DRIVER
5018 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
5019 L:      linux-media@vger.kernel.org
5020 S:      Supported
5021 W:      https://linuxtv.org
5022 T:      git git://linuxtv.org/media_tree.git
5023 F:      drivers/media/pci/cobalt/
5024
5025 COCCINELLE/Semantic Patches (SmPL)
5026 M:      Julia Lawall <Julia.Lawall@inria.fr>
5027 M:      Nicolas Palix <nicolas.palix@imag.fr>
5028 L:      cocci@inria.fr (moderated for non-subscribers)
5029 S:      Supported
5030 W:      https://coccinelle.gitlabpages.inria.fr/website/
5031 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jlawall/linux.git
5032 F:      Documentation/dev-tools/coccinelle.rst
5033 F:      scripts/coccicheck
5034 F:      scripts/coccinelle/
5035
5036 CODA FILE SYSTEM
5037 M:      Jan Harkes <jaharkes@cs.cmu.edu>
5038 M:      coda@cs.cmu.edu
5039 L:      codalist@coda.cs.cmu.edu
5040 S:      Maintained
5041 W:      http://www.coda.cs.cmu.edu/
5042 F:      Documentation/filesystems/coda.rst
5043 F:      fs/coda/
5044 F:      include/linux/coda*.h
5045 F:      include/uapi/linux/coda*.h
5046
5047 CODA V4L2 MEM2MEM DRIVER
5048 M:      Philipp Zabel <p.zabel@pengutronix.de>
5049 L:      linux-media@vger.kernel.org
5050 S:      Maintained
5051 F:      Documentation/devicetree/bindings/media/coda.yaml
5052 F:      drivers/media/platform/chips-media/
5053
5054 CODE OF CONDUCT
5055 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5056 S:      Supported
5057 F:      Documentation/process/code-of-conduct-interpretation.rst
5058 F:      Documentation/process/code-of-conduct.rst
5059
5060 COMEDI DRIVERS
5061 M:      Ian Abbott <abbotti@mev.co.uk>
5062 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
5063 S:      Odd Fixes
5064 F:      drivers/comedi/
5065 F:      include/linux/comedi/
5066 F:      include/uapi/linux/comedi.h
5067
5068 COMMON CLK FRAMEWORK
5069 M:      Michael Turquette <mturquette@baylibre.com>
5070 M:      Stephen Boyd <sboyd@kernel.org>
5071 L:      linux-clk@vger.kernel.org
5072 S:      Maintained
5073 Q:      http://patchwork.kernel.org/project/linux-clk/list/
5074 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
5075 F:      Documentation/devicetree/bindings/clock/
5076 F:      drivers/clk/
5077 F:      include/dt-bindings/clock/
5078 F:      include/linux/clk-pr*
5079 F:      include/linux/clk/
5080 F:      include/linux/of_clk.h
5081 X:      drivers/clk/clkdev.c
5082
5083 COMMON INTERNET FILE SYSTEM CLIENT (CIFS and SMB3)
5084 M:      Steve French <sfrench@samba.org>
5085 R:      Paulo Alcantara <pc@cjr.nz> (DFS, global name space)
5086 R:      Ronnie Sahlberg <lsahlber@redhat.com> (directory leases, sparse files)
5087 R:      Shyam Prasad N <sprasad@microsoft.com> (multichannel)
5088 R:      Tom Talpey <tom@talpey.com> (RDMA, smbdirect)
5089 L:      linux-cifs@vger.kernel.org
5090 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
5091 S:      Supported
5092 W:      https://wiki.samba.org/index.php/LinuxCIFS
5093 T:      git git://git.samba.org/sfrench/cifs-2.6.git
5094 F:      Documentation/admin-guide/cifs/
5095 F:      fs/cifs/
5096 F:      fs/smbfs_common/
5097 F:      include/uapi/linux/cifs
5098
5099 COMPACTPCI HOTPLUG CORE
5100 M:      Scott Murray <scott@spiteful.org>
5101 L:      linux-pci@vger.kernel.org
5102 S:      Maintained
5103 F:      drivers/pci/hotplug/cpci_hotplug*
5104
5105 COMPACTPCI HOTPLUG GENERIC DRIVER
5106 M:      Scott Murray <scott@spiteful.org>
5107 L:      linux-pci@vger.kernel.org
5108 S:      Maintained
5109 F:      drivers/pci/hotplug/cpcihp_generic.c
5110
5111 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
5112 M:      Scott Murray <scott@spiteful.org>
5113 L:      linux-pci@vger.kernel.org
5114 S:      Maintained
5115 F:      drivers/pci/hotplug/cpcihp_zt5550.*
5116
5117 COMPAL LAPTOP SUPPORT
5118 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
5119 L:      platform-driver-x86@vger.kernel.org
5120 S:      Maintained
5121 F:      drivers/platform/x86/compal-laptop.c
5122
5123 COMPILER ATTRIBUTES
5124 M:      Miguel Ojeda <ojeda@kernel.org>
5125 R:      Nick Desaulniers <ndesaulniers@google.com>
5126 S:      Maintained
5127 F:      include/linux/compiler_attributes.h
5128
5129 COMPUTE EXPRESS LINK (CXL)
5130 M:      Alison Schofield <alison.schofield@intel.com>
5131 M:      Vishal Verma <vishal.l.verma@intel.com>
5132 M:      Ira Weiny <ira.weiny@intel.com>
5133 M:      Ben Widawsky <bwidawsk@kernel.org>
5134 M:      Dan Williams <dan.j.williams@intel.com>
5135 L:      linux-cxl@vger.kernel.org
5136 S:      Maintained
5137 F:      drivers/cxl/
5138 F:      include/uapi/linux/cxl_mem.h
5139
5140 CONEXANT ACCESSRUNNER USB DRIVER
5141 L:      accessrunner-general@lists.sourceforge.net
5142 S:      Orphan
5143 W:      http://accessrunner.sourceforge.net/
5144 F:      drivers/usb/atm/cxacru.c
5145
5146 CONFIGFS
5147 M:      Joel Becker <jlbec@evilplan.org>
5148 M:      Christoph Hellwig <hch@lst.de>
5149 S:      Supported
5150 T:      git git://git.infradead.org/users/hch/configfs.git
5151 F:      fs/configfs/
5152 F:      include/linux/configfs.h
5153 F:      samples/configfs/
5154
5155 CONSOLE SUBSYSTEM
5156 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5157 S:      Supported
5158 F:      drivers/video/console/
5159 F:      include/linux/console*
5160
5161 CONTEXT TRACKING
5162 M:      Frederic Weisbecker <frederic@kernel.org>
5163 M:      "Paul E. McKenney" <paulmck@kernel.org>
5164 S:      Maintained
5165 F:      kernel/context_tracking.c
5166 F:      include/linux/context_tracking*
5167
5168 CONTROL GROUP (CGROUP)
5169 M:      Tejun Heo <tj@kernel.org>
5170 M:      Zefan Li <lizefan.x@bytedance.com>
5171 M:      Johannes Weiner <hannes@cmpxchg.org>
5172 L:      cgroups@vger.kernel.org
5173 S:      Maintained
5174 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
5175 F:      Documentation/admin-guide/cgroup-v1/
5176 F:      Documentation/admin-guide/cgroup-v2.rst
5177 F:      include/linux/cgroup*
5178 F:      kernel/cgroup/
5179 F:      tools/testing/selftests/cgroup/
5180
5181 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
5182 M:      Tejun Heo <tj@kernel.org>
5183 M:      Josef Bacik <josef@toxicpanda.com>
5184 M:      Jens Axboe <axboe@kernel.dk>
5185 L:      cgroups@vger.kernel.org
5186 L:      linux-block@vger.kernel.org
5187 T:      git git://git.kernel.dk/linux-block
5188 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
5189 F:      block/bfq-cgroup.c
5190 F:      block/blk-cgroup.c
5191 F:      block/blk-iocost.c
5192 F:      block/blk-iolatency.c
5193 F:      block/blk-throttle.c
5194 F:      include/linux/blk-cgroup.h
5195
5196 CONTROL GROUP - CPUSET
5197 M:      Waiman Long <longman@redhat.com>
5198 M:      Zefan Li <lizefan.x@bytedance.com>
5199 L:      cgroups@vger.kernel.org
5200 S:      Maintained
5201 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
5202 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
5203 F:      include/linux/cpuset.h
5204 F:      kernel/cgroup/cpuset.c
5205
5206 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
5207 M:      Johannes Weiner <hannes@cmpxchg.org>
5208 M:      Michal Hocko <mhocko@kernel.org>
5209 M:      Roman Gushchin <roman.gushchin@linux.dev>
5210 M:      Shakeel Butt <shakeelb@google.com>
5211 R:      Muchun Song <muchun.song@linux.dev>
5212 L:      cgroups@vger.kernel.org
5213 L:      linux-mm@kvack.org
5214 S:      Maintained
5215 F:      mm/memcontrol.c
5216 F:      mm/swap_cgroup.c
5217 F:      tools/testing/selftests/cgroup/memcg_protection.m
5218 F:      tools/testing/selftests/cgroup/test_kmem.c
5219 F:      tools/testing/selftests/cgroup/test_memcontrol.c
5220
5221 CORETEMP HARDWARE MONITORING DRIVER
5222 M:      Fenghua Yu <fenghua.yu@intel.com>
5223 L:      linux-hwmon@vger.kernel.org
5224 S:      Maintained
5225 F:      Documentation/hwmon/coretemp.rst
5226 F:      drivers/hwmon/coretemp.c
5227
5228 CORSAIR-CPRO HARDWARE MONITOR DRIVER
5229 M:      Marius Zachmann <mail@mariuszachmann.de>
5230 L:      linux-hwmon@vger.kernel.org
5231 S:      Maintained
5232 F:      drivers/hwmon/corsair-cpro.c
5233
5234 CORSAIR-PSU HARDWARE MONITOR DRIVER
5235 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
5236 L:      linux-hwmon@vger.kernel.org
5237 S:      Maintained
5238 F:      Documentation/hwmon/corsair-psu.rst
5239 F:      drivers/hwmon/corsair-psu.c
5240
5241 COUNTER SUBSYSTEM
5242 M:      William Breathitt Gray <william.gray@linaro.org>
5243 L:      linux-iio@vger.kernel.org
5244 S:      Maintained
5245 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wbg/counter.git
5246 F:      Documentation/ABI/testing/sysfs-bus-counter
5247 F:      Documentation/driver-api/generic-counter.rst
5248 F:      drivers/counter/
5249 F:      include/linux/counter.h
5250 F:      include/uapi/linux/counter.h
5251 F:      tools/counter/
5252
5253 CP2615 I2C DRIVER
5254 M:      Bence Csókás <bence98@sch.bme.hu>
5255 S:      Maintained
5256 F:      drivers/i2c/busses/i2c-cp2615.c
5257
5258 CPMAC ETHERNET DRIVER
5259 M:      Florian Fainelli <f.fainelli@gmail.com>
5260 L:      netdev@vger.kernel.org
5261 S:      Maintained
5262 F:      drivers/net/ethernet/ti/cpmac.c
5263
5264 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
5265 M:      Viresh Kumar <viresh.kumar@linaro.org>
5266 M:      Sudeep Holla <sudeep.holla@arm.com>
5267 L:      linux-pm@vger.kernel.org
5268 S:      Maintained
5269 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
5270 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
5271
5272 CPU FREQUENCY SCALING FRAMEWORK
5273 M:      "Rafael J. Wysocki" <rafael@kernel.org>
5274 M:      Viresh Kumar <viresh.kumar@linaro.org>
5275 L:      linux-pm@vger.kernel.org
5276 S:      Maintained
5277 B:      https://bugzilla.kernel.org
5278 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5279 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
5280 F:      Documentation/admin-guide/pm/cpufreq.rst
5281 F:      Documentation/admin-guide/pm/intel_pstate.rst
5282 F:      Documentation/cpu-freq/
5283 F:      Documentation/devicetree/bindings/cpufreq/
5284 F:      drivers/cpufreq/
5285 F:      include/linux/cpufreq.h
5286 F:      include/linux/sched/cpufreq.h
5287 F:      kernel/sched/cpufreq*.c
5288 F:      tools/testing/selftests/cpufreq/
5289
5290 CPU IDLE TIME MANAGEMENT FRAMEWORK
5291 M:      "Rafael J. Wysocki" <rafael@kernel.org>
5292 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5293 L:      linux-pm@vger.kernel.org
5294 S:      Maintained
5295 B:      https://bugzilla.kernel.org
5296 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5297 F:      Documentation/admin-guide/pm/cpuidle.rst
5298 F:      Documentation/driver-api/pm/cpuidle.rst
5299 F:      drivers/cpuidle/
5300 F:      include/linux/cpuidle.h
5301
5302 CPU POWER MONITORING SUBSYSTEM
5303 M:      Thomas Renninger <trenn@suse.com>
5304 M:      Shuah Khan <shuah@kernel.org>
5305 M:      Shuah Khan <skhan@linuxfoundation.org>
5306 L:      linux-pm@vger.kernel.org
5307 S:      Maintained
5308 F:      tools/power/cpupower/
5309
5310 CPUID/MSR DRIVER
5311 M:      "H. Peter Anvin" <hpa@zytor.com>
5312 S:      Maintained
5313 F:      arch/x86/kernel/cpuid.c
5314 F:      arch/x86/kernel/msr.c
5315
5316 CPUIDLE DRIVER - ARM BIG LITTLE
5317 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
5318 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5319 L:      linux-pm@vger.kernel.org
5320 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5321 S:      Maintained
5322 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5323 F:      drivers/cpuidle/cpuidle-big_little.c
5324
5325 CPUIDLE DRIVER - ARM EXYNOS
5326 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5327 R:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
5328 M:      Kukjin Kim <kgene@kernel.org>
5329 L:      linux-pm@vger.kernel.org
5330 L:      linux-samsung-soc@vger.kernel.org
5331 S:      Supported
5332 F:      arch/arm/mach-exynos/pm.c
5333 F:      drivers/cpuidle/cpuidle-exynos.c
5334 F:      include/linux/platform_data/cpuidle-exynos.h
5335
5336 CPUIDLE DRIVER - ARM PSCI
5337 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
5338 M:      Sudeep Holla <sudeep.holla@arm.com>
5339 L:      linux-pm@vger.kernel.org
5340 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5341 S:      Supported
5342 F:      drivers/cpuidle/cpuidle-psci.c
5343
5344 CPUIDLE DRIVER - ARM PSCI PM DOMAIN
5345 M:      Ulf Hansson <ulf.hansson@linaro.org>
5346 L:      linux-pm@vger.kernel.org
5347 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5348 S:      Supported
5349 F:      drivers/cpuidle/cpuidle-psci.h
5350 F:      drivers/cpuidle/cpuidle-psci-domain.c
5351
5352 CPUIDLE DRIVER - DT IDLE PM DOMAIN
5353 M:      Ulf Hansson <ulf.hansson@linaro.org>
5354 L:      linux-pm@vger.kernel.org
5355 S:      Supported
5356 F:      drivers/cpuidle/dt_idle_genpd.c
5357 F:      drivers/cpuidle/dt_idle_genpd.h
5358
5359 CPUIDLE DRIVER - RISC-V SBI
5360 M:      Anup Patel <anup@brainfault.org>
5361 L:      linux-pm@vger.kernel.org
5362 L:      linux-riscv@lists.infradead.org
5363 S:      Maintained
5364 F:      drivers/cpuidle/cpuidle-riscv-sbi.c
5365
5366 CRAMFS FILESYSTEM
5367 M:      Nicolas Pitre <nico@fluxnic.net>
5368 S:      Maintained
5369 F:      Documentation/filesystems/cramfs.rst
5370 F:      fs/cramfs/
5371
5372 CREATIVE SB0540
5373 M:      Bastien Nocera <hadess@hadess.net>
5374 L:      linux-input@vger.kernel.org
5375 S:      Maintained
5376 F:      drivers/hid/hid-creative-sb0540.c
5377
5378 CRYPTO API
5379 M:      Herbert Xu <herbert@gondor.apana.org.au>
5380 M:      "David S. Miller" <davem@davemloft.net>
5381 L:      linux-crypto@vger.kernel.org
5382 S:      Maintained
5383 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
5384 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
5385 F:      Documentation/crypto/
5386 F:      Documentation/devicetree/bindings/crypto/
5387 F:      arch/*/crypto/
5388 F:      crypto/
5389 F:      drivers/crypto/
5390 F:      include/crypto/
5391 F:      include/linux/crypto*
5392 F:      lib/crypto/
5393
5394 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
5395 M:      Neil Horman <nhorman@tuxdriver.com>
5396 L:      linux-crypto@vger.kernel.org
5397 S:      Maintained
5398 F:      crypto/ansi_cprng.c
5399 F:      crypto/rng.c
5400
5401 CS3308 MEDIA DRIVER
5402 M:      Hans Verkuil <hverkuil@xs4all.nl>
5403 L:      linux-media@vger.kernel.org
5404 S:      Odd Fixes
5405 W:      http://linuxtv.org
5406 T:      git git://linuxtv.org/media_tree.git
5407 F:      drivers/media/i2c/cs3308.c
5408
5409 CS5535 Audio ALSA driver
5410 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
5411 S:      Maintained
5412 F:      sound/pci/cs5535audio/
5413
5414 CTU CAN FD DRIVER
5415 M:      Pavel Pisa <pisa@cmp.felk.cvut.cz>
5416 M:      Ondrej Ille <ondrej.ille@gmail.com>
5417 L:      linux-can@vger.kernel.org
5418 S:      Maintained
5419 F:      Documentation/devicetree/bindings/net/can/ctu,ctucanfd.yaml
5420 F:      drivers/net/can/ctucanfd/
5421
5422 CW1200 WLAN driver
5423 M:      Solomon Peachy <pizza@shaftnet.org>
5424 S:      Maintained
5425 F:      drivers/net/wireless/st/cw1200/
5426
5427 CX18 VIDEO4LINUX DRIVER
5428 M:      Andy Walls <awalls@md.metrocast.net>
5429 L:      linux-media@vger.kernel.org
5430 S:      Maintained
5431 W:      https://linuxtv.org
5432 T:      git git://linuxtv.org/media_tree.git
5433 F:      drivers/media/pci/cx18/
5434 F:      include/uapi/linux/ivtv*
5435
5436 CX2341X MPEG ENCODER HELPER MODULE
5437 M:      Hans Verkuil <hverkuil@xs4all.nl>
5438 L:      linux-media@vger.kernel.org
5439 S:      Maintained
5440 W:      https://linuxtv.org
5441 T:      git git://linuxtv.org/media_tree.git
5442 F:      drivers/media/common/cx2341x*
5443 F:      include/media/drv-intf/cx2341x.h
5444
5445 CX24120 MEDIA DRIVER
5446 M:      Jemma Denson <jdenson@gmail.com>
5447 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
5448 L:      linux-media@vger.kernel.org
5449 S:      Maintained
5450 W:      https://linuxtv.org
5451 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5452 F:      drivers/media/dvb-frontends/cx24120*
5453
5454 CX88 VIDEO4LINUX DRIVER
5455 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5456 L:      linux-media@vger.kernel.org
5457 S:      Odd fixes
5458 W:      https://linuxtv.org
5459 T:      git git://linuxtv.org/media_tree.git
5460 F:      Documentation/driver-api/media/drivers/cx88*
5461 F:      drivers/media/pci/cx88/
5462
5463 CXD2820R MEDIA DRIVER
5464 M:      Antti Palosaari <crope@iki.fi>
5465 L:      linux-media@vger.kernel.org
5466 S:      Maintained
5467 W:      https://linuxtv.org
5468 W:      http://palosaari.fi/linux/
5469 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5470 T:      git git://linuxtv.org/anttip/media_tree.git
5471 F:      drivers/media/dvb-frontends/cxd2820r*
5472
5473 CXGB3 ETHERNET DRIVER (CXGB3)
5474 M:      Raju Rangoju <rajur@chelsio.com>
5475 L:      netdev@vger.kernel.org
5476 S:      Supported
5477 W:      http://www.chelsio.com
5478 F:      drivers/net/ethernet/chelsio/cxgb3/
5479
5480 CXGB3 ISCSI DRIVER (CXGB3I)
5481 M:      Varun Prakash <varun@chelsio.com>
5482 L:      linux-scsi@vger.kernel.org
5483 S:      Supported
5484 W:      http://www.chelsio.com
5485 F:      drivers/scsi/cxgbi/cxgb3i
5486
5487 CXGB4 CRYPTO DRIVER (chcr)
5488 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5489 L:      linux-crypto@vger.kernel.org
5490 S:      Supported
5491 W:      http://www.chelsio.com
5492 F:      drivers/crypto/chelsio
5493
5494 CXGB4 INLINE CRYPTO DRIVER
5495 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5496 L:      netdev@vger.kernel.org
5497 S:      Supported
5498 W:      http://www.chelsio.com
5499 F:      drivers/net/ethernet/chelsio/inline_crypto/
5500
5501 CXGB4 ETHERNET DRIVER (CXGB4)
5502 M:      Raju Rangoju <rajur@chelsio.com>
5503 L:      netdev@vger.kernel.org
5504 S:      Supported
5505 W:      http://www.chelsio.com
5506 F:      drivers/net/ethernet/chelsio/cxgb4/
5507
5508 CXGB4 ISCSI DRIVER (CXGB4I)
5509 M:      Varun Prakash <varun@chelsio.com>
5510 L:      linux-scsi@vger.kernel.org
5511 S:      Supported
5512 W:      http://www.chelsio.com
5513 F:      drivers/scsi/cxgbi/cxgb4i
5514
5515 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
5516 M:      Potnuri Bharat Teja <bharat@chelsio.com>
5517 L:      linux-rdma@vger.kernel.org
5518 S:      Supported
5519 W:      http://www.openfabrics.org
5520 F:      drivers/infiniband/hw/cxgb4/
5521 F:      include/uapi/rdma/cxgb4-abi.h
5522
5523 CXGB4VF ETHERNET DRIVER (CXGB4VF)
5524 M:      Raju Rangoju <rajur@chelsio.com>
5525 L:      netdev@vger.kernel.org
5526 S:      Supported
5527 W:      http://www.chelsio.com
5528 F:      drivers/net/ethernet/chelsio/cxgb4vf/
5529
5530 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
5531 M:      Frederic Barrat <fbarrat@linux.ibm.com>
5532 M:      Andrew Donnellan <ajd@linux.ibm.com>
5533 L:      linuxppc-dev@lists.ozlabs.org
5534 S:      Supported
5535 F:      Documentation/ABI/testing/sysfs-class-cxl
5536 F:      Documentation/powerpc/cxl.rst
5537 F:      arch/powerpc/platforms/powernv/pci-cxl.c
5538 F:      drivers/misc/cxl/
5539 F:      include/misc/cxl*
5540 F:      include/uapi/misc/cxl.h
5541
5542 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
5543 M:      Manoj N. Kumar <manoj@linux.ibm.com>
5544 M:      Matthew R. Ochs <mrochs@linux.ibm.com>
5545 M:      Uma Krishnan <ukrishn@linux.ibm.com>
5546 L:      linux-scsi@vger.kernel.org
5547 S:      Supported
5548 F:      Documentation/powerpc/cxlflash.rst
5549 F:      drivers/scsi/cxlflash/
5550 F:      include/uapi/scsi/cxlflash_ioctl.h
5551
5552 CYBERPRO FB DRIVER
5553 M:      Russell King <linux@armlinux.org.uk>
5554 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5555 S:      Maintained
5556 W:      http://www.armlinux.org.uk/
5557 F:      drivers/video/fbdev/cyber2000fb.*
5558
5559 CYCLADES PC300 DRIVER
5560 S:      Orphan
5561 F:      drivers/net/wan/pc300*
5562
5563 CYPRESS_FIRMWARE MEDIA DRIVER
5564 M:      Antti Palosaari <crope@iki.fi>
5565 L:      linux-media@vger.kernel.org
5566 S:      Maintained
5567 W:      https://linuxtv.org
5568 W:      http://palosaari.fi/linux/
5569 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5570 T:      git git://linuxtv.org/anttip/media_tree.git
5571 F:      drivers/media/common/cypress_firmware*
5572
5573 CYPRESS CY8C95X0 PINCTRL DRIVER
5574 M:      Patrick Rudolph <patrick.rudolph@9elements.com>
5575 L:      linux-gpio@vger.kernel.org
5576 S:      Maintained
5577 F:      drivers/pinctrl/pinctrl-cy8c95x0.c
5578
5579 CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
5580 M:      Linus Walleij <linus.walleij@linaro.org>
5581 L:      linux-input@vger.kernel.org
5582 S:      Maintained
5583 F:      drivers/input/touchscreen/cy8ctma140.c
5584
5585 CYPRESS STREETFIGHTER TOUCHKEYS DRIVER
5586 M:      Yassine Oudjana <y.oudjana@protonmail.com>
5587 L:      linux-input@vger.kernel.org
5588 S:      Maintained
5589 F:      Documentation/devicetree/bindings/input/cypress-sf.yaml
5590 F:      drivers/input/keyboard/cypress-sf.c
5591
5592 CYTTSP TOUCHSCREEN DRIVER
5593 M:      Linus Walleij <linus.walleij@linaro.org>
5594 L:      linux-input@vger.kernel.org
5595 S:      Maintained
5596 F:      drivers/input/touchscreen/cyttsp*
5597
5598 D-LINK DIR-685 TOUCHKEYS DRIVER
5599 M:      Linus Walleij <linus.walleij@linaro.org>
5600 L:      linux-input@vger.kernel.org
5601 S:      Supported
5602 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
5603
5604 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
5605 M:      Joshua Kinard <kumba@gentoo.org>
5606 S:      Maintained
5607 F:      drivers/rtc/rtc-ds1685.c
5608 F:      include/linux/rtc/ds1685.h
5609
5610 DAMA SLAVE for AX.25
5611 M:      Joerg Reuter <jreuter@yaina.de>
5612 L:      linux-hams@vger.kernel.org
5613 S:      Maintained
5614 W:      http://yaina.de/jreuter/
5615 W:      http://www.qsl.net/dl1bke/
5616 F:      net/ax25/af_ax25.c
5617 F:      net/ax25/ax25_dev.c
5618 F:      net/ax25/ax25_ds_*
5619 F:      net/ax25/ax25_in.c
5620 F:      net/ax25/ax25_out.c
5621 F:      net/ax25/ax25_timer.c
5622 F:      net/ax25/sysctl_net_ax25.c
5623
5624 DATA ACCESS MONITOR
5625 M:      SeongJae Park <sj@kernel.org>
5626 L:      damon@lists.linux.dev
5627 L:      linux-mm@kvack.org
5628 S:      Maintained
5629 F:      Documentation/ABI/testing/sysfs-kernel-mm-damon
5630 F:      Documentation/admin-guide/mm/damon/
5631 F:      Documentation/mm/damon/
5632 F:      include/linux/damon.h
5633 F:      include/trace/events/damon.h
5634 F:      mm/damon/
5635 F:      tools/testing/selftests/damon/
5636
5637 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
5638 L:      netdev@vger.kernel.org
5639 S:      Orphan
5640 F:      Documentation/networking/device_drivers/ethernet/dec/dmfe.rst
5641 F:      drivers/net/ethernet/dec/tulip/dmfe.c
5642
5643 DC390/AM53C974 SCSI driver
5644 M:      Hannes Reinecke <hare@suse.com>
5645 L:      linux-scsi@vger.kernel.org
5646 S:      Maintained
5647 F:      drivers/scsi/am53c974.c
5648
5649 DC395x SCSI driver
5650 M:      Oliver Neukum <oliver@neukum.org>
5651 M:      Ali Akcaagac <aliakc@web.de>
5652 M:      Jamie Lenehan <lenehan@twibble.org>
5653 L:      dc395x@twibble.org
5654 S:      Maintained
5655 W:      http://twibble.org/dist/dc395x/
5656 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
5657 F:      Documentation/scsi/dc395x.rst
5658 F:      drivers/scsi/dc395x.*
5659
5660 DCCP PROTOCOL
5661 L:      dccp@vger.kernel.org
5662 S:      Orphan
5663 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
5664 F:      include/linux/dccp.h
5665 F:      include/linux/tfrc.h
5666 F:      include/uapi/linux/dccp.h
5667 F:      net/dccp/
5668
5669 DECSTATION PLATFORM SUPPORT
5670 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5671 L:      linux-mips@vger.kernel.org
5672 S:      Maintained
5673 W:      http://www.linux-mips.org/wiki/DECstation
5674 F:      arch/mips/dec/
5675 F:      arch/mips/include/asm/dec/
5676 F:      arch/mips/include/asm/mach-dec/
5677
5678 DEFXX FDDI NETWORK DRIVER
5679 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5680 S:      Maintained
5681 F:      drivers/net/fddi/defxx.*
5682
5683 DEFZA FDDI NETWORK DRIVER
5684 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5685 S:      Maintained
5686 F:      drivers/net/fddi/defza.*
5687
5688 DEINTERLACE DRIVERS FOR ALLWINNER H3
5689 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
5690 L:      linux-media@vger.kernel.org
5691 S:      Maintained
5692 T:      git git://linuxtv.org/media_tree.git
5693 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
5694 F:      drivers/media/platform/sunxi/sun8i-di/
5695
5696 DELL LAPTOP DRIVER
5697 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5698 M:      Pali Rohár <pali@kernel.org>
5699 L:      platform-driver-x86@vger.kernel.org
5700 S:      Maintained
5701 F:      drivers/platform/x86/dell/dell-laptop.c
5702
5703 DELL LAPTOP FREEFALL DRIVER
5704 M:      Pali Rohár <pali@kernel.org>
5705 S:      Maintained
5706 F:      drivers/platform/x86/dell/dell-smo8800.c
5707
5708 DELL LAPTOP RBTN DRIVER
5709 M:      Pali Rohár <pali@kernel.org>
5710 S:      Maintained
5711 F:      drivers/platform/x86/dell/dell-rbtn.*
5712
5713 DELL LAPTOP SMM DRIVER
5714 M:      Pali Rohár <pali@kernel.org>
5715 S:      Maintained
5716 F:      Documentation/ABI/obsolete/procfs-i8k
5717 F:      drivers/hwmon/dell-smm-hwmon.c
5718 F:      include/uapi/linux/i8k.h
5719
5720 DELL REMOTE BIOS UPDATE DRIVER
5721 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5722 L:      platform-driver-x86@vger.kernel.org
5723 S:      Maintained
5724 F:      drivers/platform/x86/dell/dell_rbu.c
5725
5726 DELL SMBIOS DRIVER
5727 M:      Pali Rohár <pali@kernel.org>
5728 L:      Dell.Client.Kernel@dell.com
5729 L:      platform-driver-x86@vger.kernel.org
5730 S:      Maintained
5731 F:      drivers/platform/x86/dell/dell-smbios.*
5732
5733 DELL SMBIOS SMM DRIVER
5734 L:      Dell.Client.Kernel@dell.com
5735 L:      platform-driver-x86@vger.kernel.org
5736 S:      Maintained
5737 F:      drivers/platform/x86/dell/dell-smbios-smm.c
5738
5739 DELL SMBIOS WMI DRIVER
5740 L:      Dell.Client.Kernel@dell.com
5741 L:      platform-driver-x86@vger.kernel.org
5742 S:      Maintained
5743 F:      drivers/platform/x86/dell/dell-smbios-wmi.c
5744 F:      tools/wmi/dell-smbios-example.c
5745
5746 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
5747 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5748 L:      platform-driver-x86@vger.kernel.org
5749 S:      Maintained
5750 F:      Documentation/driver-api/dcdbas.rst
5751 F:      drivers/platform/x86/dell/dcdbas.*
5752
5753 DELL WMI DESCRIPTOR DRIVER
5754 L:      Dell.Client.Kernel@dell.com
5755 S:      Maintained
5756 F:      drivers/platform/x86/dell/dell-wmi-descriptor.c
5757
5758 DELL WMI DDV DRIVER
5759 M:      Armin Wolf <W_Armin@gmx.de>
5760 S:      Maintained
5761 F:      Documentation/ABI/testing/debugfs-dell-wmi-ddv
5762 F:      Documentation/ABI/testing/sysfs-platform-dell-wmi-ddv
5763 F:      drivers/platform/x86/dell/dell-wmi-ddv.c
5764
5765 DELL WMI SYSMAN DRIVER
5766 M:      Divya Bharathi <divya.bharathi@dell.com>
5767 M:      Prasanth Ksr <prasanth.ksr@dell.com>
5768 L:      Dell.Client.Kernel@dell.com
5769 L:      platform-driver-x86@vger.kernel.org
5770 S:      Maintained
5771 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
5772 F:      drivers/platform/x86/dell/dell-wmi-sysman/
5773
5774 DELL WMI NOTIFICATIONS DRIVER
5775 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5776 M:      Pali Rohár <pali@kernel.org>
5777 S:      Maintained
5778 F:      drivers/platform/x86/dell/dell-wmi-base.c
5779
5780 DELL WMI HARDWARE PRIVACY SUPPORT
5781 M:      Perry Yuan <Perry.Yuan@dell.com>
5782 L:      Dell.Client.Kernel@dell.com
5783 L:      platform-driver-x86@vger.kernel.org
5784 S:      Maintained
5785 F:      drivers/platform/x86/dell/dell-wmi-privacy.c
5786
5787 DELTA ST MEDIA DRIVER
5788 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
5789 L:      linux-media@vger.kernel.org
5790 S:      Supported
5791 W:      https://linuxtv.org
5792 T:      git git://linuxtv.org/media_tree.git
5793 F:      drivers/media/platform/st/sti/delta
5794
5795 DELTA AHE-50DC FAN CONTROL MODULE DRIVER
5796 M:      Zev Weiss <zev@bewilderbeest.net>
5797 L:      linux-hwmon@vger.kernel.org
5798 S:      Maintained
5799 F:      drivers/hwmon/pmbus/delta-ahe50dc-fan.c
5800
5801 DELTA DPS920AB PSU DRIVER
5802 M:      Robert Marko <robert.marko@sartura.hr>
5803 L:      linux-hwmon@vger.kernel.org
5804 S:      Maintained
5805 F:      Documentation/hwmon/dps920ab.rst
5806 F:      drivers/hwmon/pmbus/dps920ab.c
5807
5808 DELTA NETWORKS TN48M CPLD DRIVERS
5809 M:      Robert Marko <robert.marko@sartura.hr>
5810 S:      Maintained
5811 F:      Documentation/devicetree/bindings/gpio/delta,tn48m-gpio.yaml
5812 F:      Documentation/devicetree/bindings/mfd/delta,tn48m-cpld.yaml
5813 F:      Documentation/devicetree/bindings/reset/delta,tn48m-reset.yaml
5814 F:      drivers/gpio/gpio-tn48m.c
5815 F:      include/dt-bindings/reset/delta,tn48m-reset.h
5816
5817 DENALI NAND DRIVER
5818 L:      linux-mtd@lists.infradead.org
5819 S:      Orphan
5820 F:      drivers/mtd/nand/raw/denali*
5821
5822 DESIGNWARE EDMA CORE IP DRIVER
5823 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5824 L:      dmaengine@vger.kernel.org
5825 S:      Maintained
5826 F:      drivers/dma/dw-edma/
5827 F:      include/linux/dma/edma.h
5828
5829 DESIGNWARE XDATA IP DRIVER
5830 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5831 L:      linux-pci@vger.kernel.org
5832 S:      Maintained
5833 F:      Documentation/misc-devices/dw-xdata-pcie.rst
5834 F:      drivers/misc/dw-xdata-pcie.c
5835
5836 DESIGNWARE USB2 DRD IP DRIVER
5837 M:      Minas Harutyunyan <hminas@synopsys.com>
5838 L:      linux-usb@vger.kernel.org
5839 S:      Maintained
5840 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5841 F:      drivers/usb/dwc2/
5842
5843 DESIGNWARE USB3 DRD IP DRIVER
5844 M:      Thinh Nguyen <Thinh.Nguyen@synopsys.com>
5845 L:      linux-usb@vger.kernel.org
5846 S:      Maintained
5847 F:      drivers/usb/dwc3/
5848
5849 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
5850 M:      Andreas Klinger <ak@it-klinger.de>
5851 L:      linux-iio@vger.kernel.org
5852 S:      Maintained
5853 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
5854 F:      drivers/iio/proximity/srf*.c
5855
5856 DEVICE COREDUMP (DEV_COREDUMP)
5857 M:      Johannes Berg <johannes@sipsolutions.net>
5858 L:      linux-kernel@vger.kernel.org
5859 S:      Maintained
5860 F:      drivers/base/devcoredump.c
5861 F:      include/linux/devcoredump.h
5862
5863 DEVICE DEPENDENCY HELPER SCRIPT
5864 M:      Saravana Kannan <saravanak@google.com>
5865 L:      linux-kernel@vger.kernel.org
5866 S:      Maintained
5867 F:      scripts/dev-needs.sh
5868
5869 DEVICE DIRECT ACCESS (DAX)
5870 M:      Dan Williams <dan.j.williams@intel.com>
5871 M:      Vishal Verma <vishal.l.verma@intel.com>
5872 M:      Dave Jiang <dave.jiang@intel.com>
5873 L:      nvdimm@lists.linux.dev
5874 S:      Supported
5875 F:      drivers/dax/
5876
5877 DEVICE FREQUENCY (DEVFREQ)
5878 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
5879 M:      Kyungmin Park <kyungmin.park@samsung.com>
5880 M:      Chanwoo Choi <cw00.choi@samsung.com>
5881 L:      linux-pm@vger.kernel.org
5882 S:      Maintained
5883 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5884 F:      Documentation/devicetree/bindings/devfreq/
5885 F:      Documentation/devicetree/bindings/interconnect/mediatek,cci.yaml
5886 F:      drivers/devfreq/
5887 F:      include/linux/devfreq.h
5888 F:      include/trace/events/devfreq.h
5889
5890 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
5891 M:      Chanwoo Choi <cw00.choi@samsung.com>
5892 L:      linux-pm@vger.kernel.org
5893 S:      Supported
5894 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5895 F:      Documentation/devicetree/bindings/devfreq/event/
5896 F:      drivers/devfreq/devfreq-event.c
5897 F:      drivers/devfreq/event/
5898 F:      include/dt-bindings/pmu/exynos_ppmu.h
5899 F:      include/linux/devfreq-event.h
5900
5901 DEVICE NUMBER REGISTRY
5902 M:      Torben Mathiasen <device@lanana.org>
5903 S:      Maintained
5904 W:      http://lanana.org/docs/device-list/index.html
5905
5906 DEVICE RESOURCE MANAGEMENT HELPERS
5907 M:      Hans de Goede <hdegoede@redhat.com>
5908 R:      Matti Vaittinen <mazziesaccount@gmail.com>
5909 S:      Maintained
5910 F:      include/linux/devm-helpers.h
5911
5912 DEVICE-MAPPER  (LVM)
5913 M:      Alasdair Kergon <agk@redhat.com>
5914 M:      Mike Snitzer <snitzer@kernel.org>
5915 M:      dm-devel@redhat.com
5916 L:      dm-devel@redhat.com
5917 S:      Maintained
5918 W:      http://sources.redhat.com/dm
5919 Q:      http://patchwork.kernel.org/project/dm-devel/list/
5920 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
5921 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
5922 F:      Documentation/admin-guide/device-mapper/
5923 F:      drivers/md/Kconfig
5924 F:      drivers/md/Makefile
5925 F:      drivers/md/dm*
5926 F:      drivers/md/persistent-data/
5927 F:      include/linux/device-mapper.h
5928 F:      include/linux/dm-*.h
5929 F:      include/uapi/linux/dm-*.h
5930
5931 DEVLINK
5932 M:      Jiri Pirko <jiri@nvidia.com>
5933 L:      netdev@vger.kernel.org
5934 S:      Supported
5935 F:      Documentation/networking/devlink
5936 F:      include/net/devlink.h
5937 F:      include/uapi/linux/devlink.h
5938 F:      net/core/devlink.c
5939
5940 DH ELECTRONICS IMX6 DHCOM/DHCOR BOARD SUPPORT
5941 M:      Christoph Niedermaier <cniedermaier@dh-electronics.com>
5942 L:      kernel@dh-electronics.com
5943 S:      Maintained
5944 F:      arch/arm/boot/dts/imx6*-dhcom-*
5945 F:      arch/arm/boot/dts/imx6*-dhcor-*
5946
5947 DH ELECTRONICS STM32MP1 DHCOM/DHCOR BOARD SUPPORT
5948 M:      Marek Vasut <marex@denx.de>
5949 L:      kernel@dh-electronics.com
5950 S:      Maintained
5951 F:      arch/arm/boot/dts/stm32mp1*-dhcom-*
5952 F:      arch/arm/boot/dts/stm32mp1*-dhcor-*
5953
5954 DIALOG SEMICONDUCTOR DRIVERS
5955 M:      Support Opensource <support.opensource@diasemi.com>
5956 S:      Supported
5957 W:      http://www.dialog-semiconductor.com/products
5958 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
5959 F:      Documentation/devicetree/bindings/input/dlg,da72??.txt
5960 F:      Documentation/devicetree/bindings/mfd/da90*.txt
5961 F:      Documentation/devicetree/bindings/mfd/da90*.yaml
5962 F:      Documentation/devicetree/bindings/regulator/dlg,da9*.yaml
5963 F:      Documentation/devicetree/bindings/regulator/da92*.txt
5964 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
5965 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
5966 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
5967 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
5968 F:      Documentation/hwmon/da90??.rst
5969 F:      drivers/gpio/gpio-da90??.c
5970 F:      drivers/hwmon/da90??-hwmon.c
5971 F:      drivers/iio/adc/da91??-*.c
5972 F:      drivers/input/misc/da72??.[ch]
5973 F:      drivers/input/misc/da90??_onkey.c
5974 F:      drivers/input/touchscreen/da9052_tsi.c
5975 F:      drivers/leds/leds-da90??.c
5976 F:      drivers/mfd/da903x.c
5977 F:      drivers/mfd/da90??-*.c
5978 F:      drivers/mfd/da91??-*.c
5979 F:      drivers/pinctrl/pinctrl-da90??.c
5980 F:      drivers/power/supply/da9052-battery.c
5981 F:      drivers/power/supply/da91??-*.c
5982 F:      drivers/regulator/da9???-regulator.[ch]
5983 F:      drivers/regulator/slg51000-regulator.[ch]
5984 F:      drivers/rtc/rtc-da90??.c
5985 F:      drivers/thermal/da90??-thermal.c
5986 F:      drivers/video/backlight/da90??_bl.c
5987 F:      drivers/watchdog/da90??_wdt.c
5988 F:      include/dt-bindings/regulator/dlg,da9*-regulator.h
5989 F:      include/linux/mfd/da903x.h
5990 F:      include/linux/mfd/da9052/
5991 F:      include/linux/mfd/da9055/
5992 F:      include/linux/mfd/da9062/
5993 F:      include/linux/mfd/da9063/
5994 F:      include/linux/mfd/da9150/
5995 F:      include/linux/regulator/da9211.h
5996 F:      include/sound/da[79]*.h
5997 F:      sound/soc/codecs/da[79]*.[ch]
5998
5999 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
6000 M:      William Breathitt Gray <william.gray@linaro.org>
6001 L:      linux-gpio@vger.kernel.org
6002 S:      Maintained
6003 F:      drivers/gpio/gpio-gpio-mm.c
6004
6005 DIOLAN U2C-12 I2C DRIVER
6006 M:      Guenter Roeck <linux@roeck-us.net>
6007 L:      linux-i2c@vger.kernel.org
6008 S:      Maintained
6009 F:      drivers/i2c/busses/i2c-diolan-u2c.c
6010
6011 DIRECTORY NOTIFICATION (DNOTIFY)
6012 M:      Jan Kara <jack@suse.cz>
6013 R:      Amir Goldstein <amir73il@gmail.com>
6014 L:      linux-fsdevel@vger.kernel.org
6015 S:      Maintained
6016 F:      Documentation/filesystems/dnotify.rst
6017 F:      fs/notify/dnotify/
6018 F:      include/linux/dnotify.h
6019
6020 DISK GEOMETRY AND PARTITION HANDLING
6021 M:      Andries Brouwer <aeb@cwi.nl>
6022 S:      Maintained
6023 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
6024 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
6025 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
6026
6027 DISKQUOTA
6028 M:      Jan Kara <jack@suse.com>
6029 S:      Maintained
6030 F:      Documentation/filesystems/quota.rst
6031 F:      fs/quota/
6032 F:      include/linux/quota*.h
6033 F:      include/uapi/linux/quota*.h
6034
6035 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
6036 M:      Bernie Thompson <bernie@plugable.com>
6037 L:      linux-fbdev@vger.kernel.org
6038 S:      Maintained
6039 W:      http://plugable.com/category/projects/udlfb/
6040 F:      Documentation/fb/udlfb.rst
6041 F:      drivers/video/fbdev/udlfb.c
6042 F:      include/video/udlfb.h
6043
6044 DISTRIBUTED LOCK MANAGER (DLM)
6045 M:      Christine Caulfield <ccaulfie@redhat.com>
6046 M:      David Teigland <teigland@redhat.com>
6047 L:      cluster-devel@redhat.com
6048 S:      Supported
6049 W:      http://sources.redhat.com/cluster/
6050 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
6051 F:      fs/dlm/
6052
6053 DMA BUFFER SHARING FRAMEWORK
6054 M:      Sumit Semwal <sumit.semwal@linaro.org>
6055 M:      Christian König <christian.koenig@amd.com>
6056 L:      linux-media@vger.kernel.org
6057 L:      dri-devel@lists.freedesktop.org
6058 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
6059 S:      Maintained
6060 T:      git git://anongit.freedesktop.org/drm/drm-misc
6061 F:      Documentation/driver-api/dma-buf.rst
6062 F:      drivers/dma-buf/
6063 F:      include/linux/*fence.h
6064 F:      include/linux/dma-buf.h
6065 F:      include/linux/dma-resv.h
6066 K:      \bdma_(?:buf|fence|resv)\b
6067
6068 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
6069 M:      Vinod Koul <vkoul@kernel.org>
6070 L:      dmaengine@vger.kernel.org
6071 S:      Maintained
6072 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
6073 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git
6074 F:      Documentation/devicetree/bindings/dma/
6075 F:      Documentation/driver-api/dmaengine/
6076 F:      drivers/dma/
6077 F:      include/dt-bindings/dma/
6078 F:      include/linux/dma/
6079 F:      include/linux/dmaengine.h
6080 F:      include/linux/of_dma.h
6081
6082 DMA MAPPING HELPERS
6083 M:      Christoph Hellwig <hch@lst.de>
6084 M:      Marek Szyprowski <m.szyprowski@samsung.com>
6085 R:      Robin Murphy <robin.murphy@arm.com>
6086 L:      iommu@lists.linux.dev
6087 S:      Supported
6088 W:      http://git.infradead.org/users/hch/dma-mapping.git
6089 T:      git git://git.infradead.org/users/hch/dma-mapping.git
6090 F:      include/asm-generic/dma-mapping.h
6091 F:      include/linux/dma-direct.h
6092 F:      include/linux/dma-mapping.h
6093 F:      include/linux/dma-map-ops.h
6094 F:      include/linux/swiotlb.h
6095 F:      kernel/dma/
6096
6097 DMA MAPPING BENCHMARK
6098 M:      Xiang Chen <chenxiang66@hisilicon.com>
6099 L:      iommu@lists.linux.dev
6100 F:      kernel/dma/map_benchmark.c
6101 F:      tools/testing/selftests/dma/
6102
6103 DMA-BUF HEAPS FRAMEWORK
6104 M:      Sumit Semwal <sumit.semwal@linaro.org>
6105 R:      Benjamin Gaignard <benjamin.gaignard@collabora.com>
6106 R:      Liam Mark <lmark@codeaurora.org>
6107 R:      Laura Abbott <labbott@redhat.com>
6108 R:      Brian Starkey <Brian.Starkey@arm.com>
6109 R:      John Stultz <jstultz@google.com>
6110 L:      linux-media@vger.kernel.org
6111 L:      dri-devel@lists.freedesktop.org
6112 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
6113 S:      Maintained
6114 T:      git git://anongit.freedesktop.org/drm/drm-misc
6115 F:      drivers/dma-buf/dma-heap.c
6116 F:      drivers/dma-buf/heaps/*
6117 F:      include/linux/dma-heap.h
6118 F:      include/uapi/linux/dma-heap.h
6119
6120 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
6121 M:      Lukasz Luba <lukasz.luba@arm.com>
6122 L:      linux-pm@vger.kernel.org
6123 L:      linux-samsung-soc@vger.kernel.org
6124 S:      Maintained
6125 F:      Documentation/devicetree/bindings/memory-controllers/samsung,exynos5422-dmc.yaml
6126 F:      drivers/memory/samsung/exynos5422-dmc.c
6127
6128 DME1737 HARDWARE MONITOR DRIVER
6129 M:      Juerg Haefliger <juergh@proton.me>
6130 L:      linux-hwmon@vger.kernel.org
6131 S:      Maintained
6132 F:      Documentation/hwmon/dme1737.rst
6133 F:      drivers/hwmon/dme1737.c
6134
6135 DMI/SMBIOS SUPPORT
6136 M:      Jean Delvare <jdelvare@suse.com>
6137 S:      Maintained
6138 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jdelvare/staging.git dmi-for-next
6139 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
6140 F:      drivers/firmware/dmi-id.c
6141 F:      drivers/firmware/dmi_scan.c
6142 F:      include/linux/dmi.h
6143
6144 DOCUMENTATION
6145 M:      Jonathan Corbet <corbet@lwn.net>
6146 L:      linux-doc@vger.kernel.org
6147 S:      Maintained
6148 P:      Documentation/doc-guide/maintainer-profile.rst
6149 T:      git git://git.lwn.net/linux.git docs-next
6150 F:      Documentation/
6151 F:      scripts/documentation-file-ref-check
6152 F:      scripts/kernel-doc
6153 F:      scripts/sphinx-pre-install
6154 X:      Documentation/ABI/
6155 X:      Documentation/admin-guide/media/
6156 X:      Documentation/devicetree/
6157 X:      Documentation/driver-api/media/
6158 X:      Documentation/firmware-guide/acpi/
6159 X:      Documentation/i2c/
6160 X:      Documentation/power/
6161 X:      Documentation/spi/
6162 X:      Documentation/userspace-api/media/
6163
6164 DOCUMENTATION REPORTING ISSUES
6165 M:      Thorsten Leemhuis <linux@leemhuis.info>
6166 L:      linux-doc@vger.kernel.org
6167 S:      Maintained
6168 F:      Documentation/admin-guide/reporting-issues.rst
6169
6170 DOCUMENTATION SCRIPTS
6171 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6172 L:      linux-doc@vger.kernel.org
6173 S:      Maintained
6174 F:      Documentation/sphinx/parse-headers.pl
6175 F:      scripts/documentation-file-ref-check
6176 F:      scripts/sphinx-pre-install
6177
6178 DOCUMENTATION/ITALIAN
6179 M:      Federico Vaga <federico.vaga@vaga.pv.it>
6180 L:      linux-doc@vger.kernel.org
6181 S:      Maintained
6182 F:      Documentation/translations/it_IT
6183
6184 DOCUMENTATION/JAPANESE
6185 R:      Akira Yokosawa <akiyks@gmail.com>
6186 L:      linux-doc@vger.kernel.org
6187 S:      Maintained
6188 F:      Documentation/translations/ja_JP
6189
6190 DONGWOON DW9714 LENS VOICE COIL DRIVER
6191 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
6192 L:      linux-media@vger.kernel.org
6193 S:      Maintained
6194 T:      git git://linuxtv.org/media_tree.git
6195 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.yaml
6196 F:      drivers/media/i2c/dw9714.c
6197
6198 DONGWOON DW9768 LENS VOICE COIL DRIVER
6199 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
6200 L:      linux-media@vger.kernel.org
6201 S:      Maintained
6202 T:      git git://linuxtv.org/media_tree.git
6203 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9768.yaml
6204 F:      drivers/media/i2c/dw9768.c
6205
6206 DONGWOON DW9807 LENS VOICE COIL DRIVER
6207 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
6208 L:      linux-media@vger.kernel.org
6209 S:      Maintained
6210 T:      git git://linuxtv.org/media_tree.git
6211 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.yaml
6212 F:      drivers/media/i2c/dw9807-vcm.c
6213
6214 DOUBLETALK DRIVER
6215 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
6216 L:      blinux-list@redhat.com
6217 S:      Maintained
6218 F:      drivers/char/dtlk.c
6219 F:      include/linux/dtlk.h
6220
6221 DPAA2 DATAPATH I/O (DPIO) DRIVER
6222 M:      Roy Pledge <Roy.Pledge@nxp.com>
6223 L:      linux-kernel@vger.kernel.org
6224 S:      Maintained
6225 F:      drivers/soc/fsl/dpio
6226
6227 DPAA2 ETHERNET DRIVER
6228 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
6229 L:      netdev@vger.kernel.org
6230 S:      Maintained
6231 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/ethernet-driver.rst
6232 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/mac-phy-support.rst
6233 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
6234 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
6235 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
6236 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
6237 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-xsk*
6238 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
6239 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
6240 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
6241
6242 DPAA2 ETHERNET SWITCH DRIVER
6243 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
6244 L:      netdev@vger.kernel.org
6245 S:      Maintained
6246 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/switch-driver.rst
6247 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-switch*
6248 F:      drivers/net/ethernet/freescale/dpaa2/dpsw*
6249
6250 DRBD DRIVER
6251 M:      Philipp Reisner <philipp.reisner@linbit.com>
6252 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
6253 M:      Christoph Böhmwalder <christoph.boehmwalder@linbit.com>
6254 L:      drbd-dev@lists.linbit.com
6255 S:      Supported
6256 W:      http://www.drbd.org
6257 T:      git git://git.linbit.com/linux-drbd.git
6258 T:      git git://git.linbit.com/drbd-8.4.git
6259 F:      Documentation/admin-guide/blockdev/
6260 F:      drivers/block/drbd/
6261 F:      include/linux/drbd*
6262 F:      lib/lru_cache.c
6263
6264 DRIVER COMPONENT FRAMEWORK
6265 L:      dri-devel@lists.freedesktop.org
6266 F:      drivers/base/component.c
6267 F:      include/linux/component.h
6268
6269 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
6270 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
6271 R:      "Rafael J. Wysocki" <rafael@kernel.org>
6272 S:      Supported
6273 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
6274 F:      Documentation/core-api/kobject.rst
6275 F:      drivers/base/
6276 F:      fs/debugfs/
6277 F:      fs/sysfs/
6278 F:      include/linux/debugfs.h
6279 F:      include/linux/kobj*
6280 F:      lib/kobj*
6281
6282 DRIVERS FOR OMAP ADAPTIVE VOLTAGE SCALING (AVS)
6283 M:      Nishanth Menon <nm@ti.com>
6284 L:      linux-pm@vger.kernel.org
6285 S:      Maintained
6286 F:      drivers/soc/ti/smartreflex.c
6287 F:      include/linux/power/smartreflex.h
6288
6289 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
6290 M:      Maxime Ripard <mripard@kernel.org>
6291 M:      Chen-Yu Tsai <wens@csie.org>
6292 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
6293 L:      dri-devel@lists.freedesktop.org
6294 S:      Supported
6295 T:      git git://anongit.freedesktop.org/drm/drm-misc
6296 F:      drivers/gpu/drm/sun4i/sun8i*
6297
6298 DRM DRIVER FOR ARM PL111 CLCD
6299 M:      Emma Anholt <emma@anholt.net>
6300 S:      Supported
6301 T:      git git://anongit.freedesktop.org/drm/drm-misc
6302 F:      drivers/gpu/drm/pl111/
6303
6304 DRM DRIVER FOR ARM VERSATILE TFT PANELS
6305 M:      Linus Walleij <linus.walleij@linaro.org>
6306 S:      Maintained
6307 T:      git git://anongit.freedesktop.org/drm/drm-misc
6308 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
6309 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
6310
6311 DRM DRIVER FOR ASPEED BMC GFX
6312 M:      Joel Stanley <joel@jms.id.au>
6313 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
6314 S:      Supported
6315 T:      git git://anongit.freedesktop.org/drm/drm-misc
6316 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
6317 F:      drivers/gpu/drm/aspeed/
6318
6319 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
6320 M:      Dave Airlie <airlied@redhat.com>
6321 R:      Thomas Zimmermann <tzimmermann@suse.de>
6322 L:      dri-devel@lists.freedesktop.org
6323 S:      Supported
6324 T:      git git://anongit.freedesktop.org/drm/drm-misc
6325 F:      drivers/gpu/drm/ast/
6326
6327 DRM DRIVER FOR BOCHS VIRTUAL GPU
6328 M:      Gerd Hoffmann <kraxel@redhat.com>
6329 L:      virtualization@lists.linux-foundation.org
6330 S:      Maintained
6331 T:      git git://anongit.freedesktop.org/drm/drm-misc
6332 F:      drivers/gpu/drm/tiny/bochs.c
6333
6334 DRM DRIVER FOR BOE HIMAX8279D PANELS
6335 M:      Jerry Han <hanxu5@huaqin.corp-partner.google.com>
6336 S:      Maintained
6337 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
6338 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
6339
6340 DRM DRIVER FOR CHIPONE ICN6211 MIPI-DSI to RGB CONVERTER BRIDGE
6341 M:      Jagan Teki <jagan@amarulasolutions.com>
6342 S:      Maintained
6343 F:      Documentation/devicetree/bindings/display/bridge/chipone,icn6211.yaml
6344 F:      drivers/gpu/drm/bridge/chipone-icn6211.c
6345
6346 DRM DRIVER FOR EBBG FT8719 PANEL
6347 M:      Joel Selvaraj <jo@jsfamily.in>
6348 S:      Maintained
6349 T:      git git://anongit.freedesktop.org/drm/drm-misc
6350 F:      Documentation/devicetree/bindings/display/panel/ebbg,ft8719.yaml
6351 F:      drivers/gpu/drm/panel/panel-ebbg-ft8719.c
6352
6353 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
6354 M:      Linus Walleij <linus.walleij@linaro.org>
6355 S:      Maintained
6356 T:      git git://anongit.freedesktop.org/drm/drm-misc
6357 F:      drivers/gpu/drm/tve200/
6358
6359 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
6360 M:      Icenowy Zheng <icenowy@aosc.io>
6361 S:      Maintained
6362 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
6363 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
6364
6365 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
6366 M:      Jagan Teki <jagan@amarulasolutions.com>
6367 S:      Maintained
6368 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
6369 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
6370
6371 DRM DRIVER FOR GENERIC EDP PANELS
6372 R:      Douglas Anderson <dianders@chromium.org>
6373 F:      Documentation/devicetree/bindings/display/panel/panel-edp.yaml
6374 F:      drivers/gpu/drm/panel/panel-edp.c
6375
6376 DRM DRIVER FOR GENERIC USB DISPLAY
6377 M:      Noralf Trønnes <noralf@tronnes.org>
6378 S:      Maintained
6379 W:      https://github.com/notro/gud/wiki
6380 T:      git git://anongit.freedesktop.org/drm/drm-misc
6381 F:      drivers/gpu/drm/gud/
6382 F:      include/drm/gud.h
6383
6384 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
6385 M:      Hans de Goede <hdegoede@redhat.com>
6386 S:      Maintained
6387 T:      git git://anongit.freedesktop.org/drm/drm-misc
6388 F:      drivers/gpu/drm/tiny/gm12u320.c
6389
6390 DRM DRIVER FOR HX8357D PANELS
6391 M:      Emma Anholt <emma@anholt.net>
6392 S:      Maintained
6393 T:      git git://anongit.freedesktop.org/drm/drm-misc
6394 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
6395 F:      drivers/gpu/drm/tiny/hx8357d.c
6396
6397 DRM DRIVER FOR ILITEK ILI9225 PANELS
6398 M:      David Lechner <david@lechnology.com>
6399 S:      Maintained
6400 T:      git git://anongit.freedesktop.org/drm/drm-misc
6401 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
6402 F:      drivers/gpu/drm/tiny/ili9225.c
6403
6404 DRM DRIVER FOR ILITEK ILI9486 PANELS
6405 M:      Kamlesh Gurudasani <kamlesh.gurudasani@gmail.com>
6406 S:      Maintained
6407 T:      git git://anongit.freedesktop.org/drm/drm-misc
6408 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
6409 F:      drivers/gpu/drm/tiny/ili9486.c
6410
6411 DRM DRIVER FOR INTEL I810 VIDEO CARDS
6412 S:      Orphan / Obsolete
6413 F:      drivers/gpu/drm/i810/
6414 F:      include/uapi/drm/i810_drm.h
6415
6416 DRM DRIVER FOR JADARD JD9365DA-H3 MIPI-DSI LCD PANELS
6417 M:      Jagan Teki <jagan@edgeble.ai>
6418 S:      Maintained
6419 F:      Documentation/devicetree/bindings/display/panel/jadard,jd9365da-h3.yaml
6420 F:      drivers/gpu/drm/panel/panel-jadard-jd9365da-h3.c
6421
6422 DRM DRIVER FOR LOGICVC DISPLAY CONTROLLER
6423 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
6424 S:      Supported
6425 T:      git git://anongit.freedesktop.org/drm/drm-misc
6426 F:      drivers/gpu/drm/logicvc/
6427
6428 DRM DRIVER FOR LVDS PANELS
6429 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6430 L:      dri-devel@lists.freedesktop.org
6431 T:      git git://anongit.freedesktop.org/drm/drm-misc
6432 S:      Maintained
6433 F:      drivers/gpu/drm/panel/panel-lvds.c
6434 F:      Documentation/devicetree/bindings/display/lvds.yaml
6435 F:      Documentation/devicetree/bindings/display/panel/panel-lvds.yaml
6436
6437 DRM DRIVER FOR MANTIX MLAF057WE51 PANELS
6438 M:      Guido Günther <agx@sigxcpu.org>
6439 R:      Purism Kernel Team <kernel@puri.sm>
6440 S:      Maintained
6441 F:      Documentation/devicetree/bindings/display/panel/mantix,mlaf057we51-x.yaml
6442 F:      drivers/gpu/drm/panel/panel-mantix-mlaf057we51.c
6443
6444 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
6445 S:      Orphan / Obsolete
6446 F:      drivers/gpu/drm/mga/
6447 F:      include/uapi/drm/mga_drm.h
6448
6449 DRM DRIVER FOR MGA G200 GRAPHICS CHIPS
6450 M:      Dave Airlie <airlied@redhat.com>
6451 R:      Thomas Zimmermann <tzimmermann@suse.de>
6452 L:      dri-devel@lists.freedesktop.org
6453 S:      Supported
6454 T:      git git://anongit.freedesktop.org/drm/drm-misc
6455 F:      drivers/gpu/drm/mgag200/
6456
6457 DRM DRIVER FOR MI0283QT
6458 M:      Noralf Trønnes <noralf@tronnes.org>
6459 S:      Maintained
6460 T:      git git://anongit.freedesktop.org/drm/drm-misc
6461 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
6462 F:      drivers/gpu/drm/tiny/mi0283qt.c
6463
6464 DRM DRIVER FOR MIPI DBI compatible panels
6465 M:      Noralf Trønnes <noralf@tronnes.org>
6466 S:      Maintained
6467 W:      https://github.com/notro/panel-mipi-dbi/wiki
6468 T:      git git://anongit.freedesktop.org/drm/drm-misc
6469 F:      Documentation/devicetree/bindings/display/panel/panel-mipi-dbi-spi.yaml
6470 F:      drivers/gpu/drm/tiny/panel-mipi-dbi.c
6471
6472 DRM DRIVER FOR MSM ADRENO GPU
6473 M:      Rob Clark <robdclark@gmail.com>
6474 M:      Abhinav Kumar <quic_abhinavk@quicinc.com>
6475 M:      Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
6476 R:      Sean Paul <sean@poorly.run>
6477 L:      linux-arm-msm@vger.kernel.org
6478 L:      dri-devel@lists.freedesktop.org
6479 L:      freedreno@lists.freedesktop.org
6480 S:      Maintained
6481 T:      git https://gitlab.freedesktop.org/drm/msm.git
6482 F:      Documentation/devicetree/bindings/display/msm/
6483 F:      drivers/gpu/drm/msm/
6484 F:      include/uapi/drm/msm_drm.h
6485
6486 DRM DRIVER FOR NOVATEK NT35510 PANELS
6487 M:      Linus Walleij <linus.walleij@linaro.org>
6488 S:      Maintained
6489 T:      git git://anongit.freedesktop.org/drm/drm-misc
6490 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
6491 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
6492
6493 DRM DRIVER FOR NOVATEK NT35560 PANELS
6494 M:      Linus Walleij <linus.walleij@linaro.org>
6495 S:      Maintained
6496 T:      git git://anongit.freedesktop.org/drm/drm-misc
6497 F:      Documentation/devicetree/bindings/display/panel/sony,acx424akp.yaml
6498 F:      drivers/gpu/drm/panel/panel-novatek-nt35560.c
6499
6500 DRM DRIVER FOR NOVATEK NT36672A PANELS
6501 M:      Sumit Semwal <sumit.semwal@linaro.org>
6502 S:      Maintained
6503 T:      git git://anongit.freedesktop.org/drm/drm-misc
6504 F:      Documentation/devicetree/bindings/display/panel/novatek,nt36672a.yaml
6505 F:      drivers/gpu/drm/panel/panel-novatek-nt36672a.c
6506
6507 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
6508 M:      Ben Skeggs <bskeggs@redhat.com>
6509 M:      Karol Herbst <kherbst@redhat.com>
6510 M:      Lyude Paul <lyude@redhat.com>
6511 L:      dri-devel@lists.freedesktop.org
6512 L:      nouveau@lists.freedesktop.org
6513 S:      Supported
6514 W:      https://nouveau.freedesktop.org/
6515 Q:      https://patchwork.freedesktop.org/project/nouveau/
6516 Q:      https://gitlab.freedesktop.org/drm/nouveau/-/merge_requests
6517 B:      https://gitlab.freedesktop.org/drm/nouveau/-/issues
6518 C:      irc://irc.oftc.net/nouveau
6519 T:      git https://gitlab.freedesktop.org/drm/nouveau.git
6520 F:      drivers/gpu/drm/nouveau/
6521 F:      include/uapi/drm/nouveau_drm.h
6522
6523 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
6524 M:      Stefan Mavrodiev <stefan@olimex.com>
6525 S:      Maintained
6526 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
6527 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
6528
6529 DRM DRIVER FOR PARADE PS8640 BRIDGE CHIP
6530 R:      Douglas Anderson <dianders@chromium.org>
6531 F:      Documentation/devicetree/bindings/display/bridge/ps8640.yaml
6532 F:      drivers/gpu/drm/bridge/parade-ps8640.c
6533
6534 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
6535 M:      Noralf Trønnes <noralf@tronnes.org>
6536 S:      Maintained
6537 T:      git git://anongit.freedesktop.org/drm/drm-misc
6538 F:      Documentation/devicetree/bindings/display/repaper.txt
6539 F:      drivers/gpu/drm/tiny/repaper.c
6540
6541 DRM DRIVER FOR SOLOMON SSD130X OLED DISPLAYS
6542 M:      Javier Martinez Canillas <javierm@redhat.com>
6543 S:      Maintained
6544 T:      git git://anongit.freedesktop.org/drm/drm-misc
6545 F:      Documentation/devicetree/bindings/display/solomon,ssd1307fb.yaml
6546 F:      drivers/gpu/drm/solomon/ssd130x*
6547
6548 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
6549 M:      Dave Airlie <airlied@redhat.com>
6550 M:      Gerd Hoffmann <kraxel@redhat.com>
6551 L:      virtualization@lists.linux-foundation.org
6552 S:      Obsolete
6553 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
6554 T:      git git://anongit.freedesktop.org/drm/drm-misc
6555 F:      drivers/gpu/drm/tiny/cirrus.c
6556
6557 DRM DRIVER FOR QXL VIRTUAL GPU
6558 M:      Dave Airlie <airlied@redhat.com>
6559 M:      Gerd Hoffmann <kraxel@redhat.com>
6560 L:      virtualization@lists.linux-foundation.org
6561 L:      spice-devel@lists.freedesktop.org
6562 S:      Maintained
6563 T:      git git://anongit.freedesktop.org/drm/drm-misc
6564 F:      drivers/gpu/drm/qxl/
6565 F:      include/uapi/drm/qxl_drm.h
6566
6567 DRM DRIVER FOR RAGE 128 VIDEO CARDS
6568 S:      Orphan / Obsolete
6569 F:      drivers/gpu/drm/r128/
6570 F:      include/uapi/drm/r128_drm.h
6571
6572 DRM DRIVER FOR RAYDIUM RM67191 PANELS
6573 M:      Robert Chiras <robert.chiras@nxp.com>
6574 S:      Maintained
6575 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.yaml
6576 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
6577
6578 DRM DRIVER FOR SAMSUNG DB7430 PANELS
6579 M:      Linus Walleij <linus.walleij@linaro.org>
6580 S:      Maintained
6581 T:      git git://anongit.freedesktop.org/drm/drm-misc
6582 F:      Documentation/devicetree/bindings/display/panel/samsung,lms397kf04.yaml
6583 F:      drivers/gpu/drm/panel/panel-samsung-db7430.c
6584
6585 DRM DRIVER FOR SAMSUNG S6D27A1 PANELS
6586 M:      Markuss Broks <markuss.broks@gmail.com>
6587 S:      Maintained
6588 F:      Documentation/devicetree/bindings/display/panel/samsung,s6d27a1.yaml
6589 F:      drivers/gpu/drm/panel/panel-samsung-s6d27a1.c
6590
6591 DRM DRIVER FOR SITRONIX ST7703 PANELS
6592 M:      Guido Günther <agx@sigxcpu.org>
6593 R:      Purism Kernel Team <kernel@puri.sm>
6594 R:      Ondrej Jirman <megous@megous.com>
6595 S:      Maintained
6596 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.yaml
6597 F:      drivers/gpu/drm/panel/panel-sitronix-st7703.c
6598
6599 DRM DRIVER FOR SAVAGE VIDEO CARDS
6600 S:      Orphan / Obsolete
6601 F:      drivers/gpu/drm/savage/
6602 F:      include/uapi/drm/savage_drm.h
6603
6604 DRM DRIVER FOR FIRMWARE FRAMEBUFFERS
6605 M:      Thomas Zimmermann <tzimmermann@suse.de>
6606 M:      Javier Martinez Canillas <javierm@redhat.com>
6607 L:      dri-devel@lists.freedesktop.org
6608 S:      Maintained
6609 T:      git git://anongit.freedesktop.org/drm/drm-misc
6610 F:      drivers/gpu/drm/drm_aperture.c
6611 F:      drivers/gpu/drm/tiny/ofdrm.c
6612 F:      drivers/gpu/drm/tiny/simpledrm.c
6613 F:      drivers/video/aperture.c
6614 F:      drivers/video/nomodeset.c
6615 F:      include/drm/drm_aperture.h
6616 F:      include/linux/aperture.h
6617 F:      include/video/nomodeset.h
6618
6619 DRM DRIVER FOR SIS VIDEO CARDS
6620 S:      Orphan / Obsolete
6621 F:      drivers/gpu/drm/sis/
6622 F:      include/uapi/drm/sis_drm.h
6623
6624 DRM DRIVER FOR SITRONIX ST7586 PANELS
6625 M:      David Lechner <david@lechnology.com>
6626 S:      Maintained
6627 T:      git git://anongit.freedesktop.org/drm/drm-misc
6628 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
6629 F:      drivers/gpu/drm/tiny/st7586.c
6630
6631 DRM DRIVER FOR SITRONIX ST7701 PANELS
6632 M:      Jagan Teki <jagan@amarulasolutions.com>
6633 S:      Maintained
6634 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
6635 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
6636
6637 DRM DRIVER FOR SITRONIX ST7735R PANELS
6638 M:      David Lechner <david@lechnology.com>
6639 S:      Maintained
6640 T:      git git://anongit.freedesktop.org/drm/drm-misc
6641 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
6642 F:      drivers/gpu/drm/tiny/st7735r.c
6643
6644 DRM DRIVER FOR ST-ERICSSON MCDE
6645 M:      Linus Walleij <linus.walleij@linaro.org>
6646 S:      Maintained
6647 T:      git git://anongit.freedesktop.org/drm/drm-misc
6648 F:      Documentation/devicetree/bindings/display/ste,mcde.yaml
6649 F:      drivers/gpu/drm/mcde/
6650
6651 DRM DRIVER FOR TDFX VIDEO CARDS
6652 S:      Orphan / Obsolete
6653 F:      drivers/gpu/drm/tdfx/
6654
6655 DRM DRIVER FOR TI DLPC3433 MIPI DSI TO DMD BRIDGE
6656 M:      Jagan Teki <jagan@amarulasolutions.com>
6657 S:      Maintained
6658 F:      Documentation/devicetree/bindings/display/bridge/ti,dlpc3433.yaml
6659 F:      drivers/gpu/drm/bridge/ti-dlpc3433.c
6660
6661 DRM DRIVER FOR TI SN65DSI86 BRIDGE CHIP
6662 R:      Douglas Anderson <dianders@chromium.org>
6663 F:      Documentation/devicetree/bindings/display/bridge/ti,sn65dsi86.yaml
6664 F:      drivers/gpu/drm/bridge/ti-sn65dsi86.c
6665
6666 DRM DRIVER FOR TPO TPG110 PANELS
6667 M:      Linus Walleij <linus.walleij@linaro.org>
6668 S:      Maintained
6669 T:      git git://anongit.freedesktop.org/drm/drm-misc
6670 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
6671 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
6672
6673 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
6674 M:      Dave Airlie <airlied@redhat.com>
6675 R:      Sean Paul <sean@poorly.run>
6676 R:      Thomas Zimmermann <tzimmermann@suse.de>
6677 L:      dri-devel@lists.freedesktop.org
6678 S:      Supported
6679 T:      git git://anongit.freedesktop.org/drm/drm-misc
6680 F:      drivers/gpu/drm/udl/
6681
6682 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
6683 M:      Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
6684 M:      Melissa Wen <melissa.srw@gmail.com>
6685 R:      Haneen Mohammed <hamohammed.sa@gmail.com>
6686 R:      Daniel Vetter <daniel@ffwll.ch>
6687 L:      dri-devel@lists.freedesktop.org
6688 S:      Maintained
6689 T:      git git://anongit.freedesktop.org/drm/drm-misc
6690 F:      Documentation/gpu/vkms.rst
6691 F:      drivers/gpu/drm/vkms/
6692
6693 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
6694 M:      Hans de Goede <hdegoede@redhat.com>
6695 L:      dri-devel@lists.freedesktop.org
6696 S:      Maintained
6697 T:      git git://anongit.freedesktop.org/drm/drm-misc
6698 F:      drivers/gpu/drm/vboxvideo/
6699
6700 DRM DRIVER FOR VMWARE VIRTUAL GPU
6701 M:      Zack Rusin <zackr@vmware.com>
6702 R:      VMware Graphics Reviewers <linux-graphics-maintainer@vmware.com>
6703 L:      dri-devel@lists.freedesktop.org
6704 S:      Supported
6705 T:      git git://anongit.freedesktop.org/drm/drm-misc
6706 F:      drivers/gpu/drm/vmwgfx/
6707 F:      include/uapi/drm/vmwgfx_drm.h
6708
6709 DRM DRIVER FOR WIDECHIPS WS2401 PANELS
6710 M:      Linus Walleij <linus.walleij@linaro.org>
6711 S:      Maintained
6712 T:      git git://anongit.freedesktop.org/drm/drm-misc
6713 F:      Documentation/devicetree/bindings/display/panel/samsung,lms380kf01.yaml
6714 F:      drivers/gpu/drm/panel/panel-widechips-ws2401.c
6715
6716 DRM DRIVERS
6717 M:      David Airlie <airlied@gmail.com>
6718 M:      Daniel Vetter <daniel@ffwll.ch>
6719 L:      dri-devel@lists.freedesktop.org
6720 S:      Maintained
6721 B:      https://gitlab.freedesktop.org/drm
6722 C:      irc://irc.oftc.net/dri-devel
6723 T:      git git://anongit.freedesktop.org/drm/drm
6724 F:      Documentation/devicetree/bindings/display/
6725 F:      Documentation/devicetree/bindings/gpu/
6726 F:      Documentation/gpu/
6727 F:      drivers/gpu/
6728 F:      include/drm/
6729 F:      include/linux/vga*
6730 F:      include/uapi/drm/
6731
6732 DRM DRIVERS AND MISC GPU PATCHES
6733 M:      Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
6734 M:      Maxime Ripard <mripard@kernel.org>
6735 M:      Thomas Zimmermann <tzimmermann@suse.de>
6736 S:      Maintained
6737 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
6738 T:      git git://anongit.freedesktop.org/drm/drm-misc
6739 F:      Documentation/gpu/
6740 F:      drivers/gpu/drm/*
6741 F:      drivers/gpu/vga/
6742 F:      include/drm/drm*
6743 F:      include/linux/vga*
6744 F:      include/uapi/drm/drm*
6745
6746 DRM COMPUTE ACCELERATORS DRIVERS AND FRAMEWORK
6747 M:      Oded Gabbay <ogabbay@kernel.org>
6748 L:      dri-devel@lists.freedesktop.org
6749 S:      Maintained
6750 C:      irc://irc.oftc.net/dri-devel
6751 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/accel.git
6752 F:      Documentation/accel/
6753 F:      drivers/accel/
6754
6755 DRM DRIVERS FOR ALLWINNER A10
6756 M:      Maxime Ripard <mripard@kernel.org>
6757 M:      Chen-Yu Tsai <wens@csie.org>
6758 L:      dri-devel@lists.freedesktop.org
6759 S:      Supported
6760 T:      git git://anongit.freedesktop.org/drm/drm-misc
6761 F:      Documentation/devicetree/bindings/display/allwinner*
6762 F:      drivers/gpu/drm/sun4i/
6763
6764 DRM DRIVERS FOR AMLOGIC SOCS
6765 M:      Neil Armstrong <neil.armstrong@linaro.org>
6766 L:      dri-devel@lists.freedesktop.org
6767 L:      linux-amlogic@lists.infradead.org
6768 S:      Supported
6769 W:      http://linux-meson.com/
6770 T:      git git://anongit.freedesktop.org/drm/drm-misc
6771 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
6772 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
6773 F:      Documentation/gpu/meson.rst
6774 F:      drivers/gpu/drm/meson/
6775
6776 DRM DRIVERS FOR ATMEL HLCDC
6777 M:      Sam Ravnborg <sam@ravnborg.org>
6778 M:      Boris Brezillon <bbrezillon@kernel.org>
6779 L:      dri-devel@lists.freedesktop.org
6780 S:      Supported
6781 T:      git git://anongit.freedesktop.org/drm/drm-misc
6782 F:      Documentation/devicetree/bindings/display/atmel/
6783 F:      drivers/gpu/drm/atmel-hlcdc/
6784
6785 DRM DRIVERS FOR BRIDGE CHIPS
6786 M:      Andrzej Hajda <andrzej.hajda@intel.com>
6787 M:      Neil Armstrong <neil.armstrong@linaro.org>
6788 M:      Robert Foss <rfoss@kernel.org>
6789 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
6790 R:      Jonas Karlman <jonas@kwiboo.se>
6791 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
6792 S:      Maintained
6793 T:      git git://anongit.freedesktop.org/drm/drm-misc
6794 F:      Documentation/devicetree/bindings/display/bridge/
6795 F:      drivers/gpu/drm/bridge/
6796
6797 DRM DRIVERS FOR EXYNOS
6798 M:      Inki Dae <inki.dae@samsung.com>
6799 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
6800 M:      Kyungmin Park <kyungmin.park@samsung.com>
6801 L:      dri-devel@lists.freedesktop.org
6802 S:      Supported
6803 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
6804 F:      Documentation/devicetree/bindings/display/exynos/
6805 F:      Documentation/devicetree/bindings/display/samsung/
6806 F:      drivers/gpu/drm/exynos/
6807 F:      include/uapi/drm/exynos_drm.h
6808
6809 DRM DRIVERS FOR FREESCALE DCU
6810 M:      Stefan Agner <stefan@agner.ch>
6811 M:      Alison Wang <alison.wang@nxp.com>
6812 L:      dri-devel@lists.freedesktop.org
6813 S:      Supported
6814 T:      git git://anongit.freedesktop.org/drm/drm-misc
6815 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
6816 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
6817 F:      drivers/gpu/drm/fsl-dcu/
6818
6819 DRM DRIVERS FOR FREESCALE IMX
6820 M:      Philipp Zabel <p.zabel@pengutronix.de>
6821 L:      dri-devel@lists.freedesktop.org
6822 S:      Maintained
6823 F:      Documentation/devicetree/bindings/display/imx/
6824 F:      drivers/gpu/drm/imx/
6825 F:      drivers/gpu/ipu-v3/
6826
6827 DRM DRIVERS FOR FREESCALE IMX BRIDGE
6828 M:      Liu Ying <victor.liu@nxp.com>
6829 L:      dri-devel@lists.freedesktop.org
6830 S:      Maintained
6831 F:      Documentation/devicetree/bindings/display/bridge/fsl,imx8qxp-ldb.yaml
6832 F:      Documentation/devicetree/bindings/display/bridge/fsl,imx8qxp-pixel-combiner.yaml
6833 F:      Documentation/devicetree/bindings/display/bridge/fsl,imx8qxp-pixel-link.yaml
6834 F:      Documentation/devicetree/bindings/display/bridge/fsl,imx8qxp-pxl2dpi.yaml
6835 F:      drivers/gpu/drm/bridge/imx/
6836
6837 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
6838 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
6839 L:      dri-devel@lists.freedesktop.org
6840 S:      Maintained
6841 T:      git git://github.com/patjak/drm-gma500
6842 F:      drivers/gpu/drm/gma500/
6843
6844 DRM DRIVERS FOR HISILICON
6845 M:      Xinliang Liu <xinliang.liu@linaro.org>
6846 M:      Tian Tao  <tiantao6@hisilicon.com>
6847 R:      John Stultz <jstultz@google.com>
6848 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
6849 R:      Chen Feng <puck.chen@hisilicon.com>
6850 L:      dri-devel@lists.freedesktop.org
6851 S:      Maintained
6852 T:      git git://anongit.freedesktop.org/drm/drm-misc
6853 F:      Documentation/devicetree/bindings/display/hisilicon/
6854 F:      drivers/gpu/drm/hisilicon/
6855
6856 DRM DRIVER FOR HYPERV SYNTHETIC VIDEO DEVICE
6857 M:      Deepak Rawat <drawat.floss@gmail.com>
6858 L:      linux-hyperv@vger.kernel.org
6859 L:      dri-devel@lists.freedesktop.org
6860 S:      Maintained
6861 T:      git git://anongit.freedesktop.org/drm/drm-misc
6862 F:      drivers/gpu/drm/hyperv
6863
6864 DRM DRIVERS FOR LIMA
6865 M:      Qiang Yu <yuq825@gmail.com>
6866 L:      dri-devel@lists.freedesktop.org
6867 L:      lima@lists.freedesktop.org (moderated for non-subscribers)
6868 S:      Maintained
6869 T:      git git://anongit.freedesktop.org/drm/drm-misc
6870 F:      drivers/gpu/drm/lima/
6871 F:      include/uapi/drm/lima_drm.h
6872
6873 DRM DRIVERS FOR MEDIATEK
6874 M:      Chun-Kuang Hu <chunkuang.hu@kernel.org>
6875 M:      Philipp Zabel <p.zabel@pengutronix.de>
6876 L:      dri-devel@lists.freedesktop.org
6877 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
6878 S:      Supported
6879 F:      Documentation/devicetree/bindings/display/mediatek/
6880 F:      drivers/gpu/drm/mediatek/
6881 F:      drivers/phy/mediatek/phy-mtk-dp.c
6882 F:      drivers/phy/mediatek/phy-mtk-hdmi*
6883 F:      drivers/phy/mediatek/phy-mtk-mipi*
6884
6885 DRM DRIVERS FOR NVIDIA TEGRA
6886 M:      Thierry Reding <thierry.reding@gmail.com>
6887 L:      dri-devel@lists.freedesktop.org
6888 L:      linux-tegra@vger.kernel.org
6889 S:      Supported
6890 T:      git git://anongit.freedesktop.org/tegra/linux.git
6891 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.yaml
6892 F:      Documentation/devicetree/bindings/gpu/host1x/
6893 F:      drivers/gpu/drm/tegra/
6894 F:      drivers/gpu/host1x/
6895 F:      include/linux/host1x.h
6896 F:      include/uapi/drm/tegra_drm.h
6897
6898 DRM DRIVERS FOR RENESAS
6899 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6900 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
6901 L:      dri-devel@lists.freedesktop.org
6902 L:      linux-renesas-soc@vger.kernel.org
6903 S:      Supported
6904 T:      git git://linuxtv.org/pinchartl/media drm/du/next
6905 F:      Documentation/devicetree/bindings/display/bridge/renesas,dsi-csi2-tx.yaml
6906 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.yaml
6907 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.yaml
6908 F:      Documentation/devicetree/bindings/display/renesas,du.yaml
6909 F:      drivers/gpu/drm/rcar-du/
6910 F:      drivers/gpu/drm/shmobile/
6911 F:      include/linux/platform_data/shmob_drm.h
6912
6913 DRM DRIVERS FOR ROCKCHIP
6914 M:      Sandy Huang <hjc@rock-chips.com>
6915 M:      Heiko Stübner <heiko@sntech.de>
6916 L:      dri-devel@lists.freedesktop.org
6917 S:      Maintained
6918 T:      git git://anongit.freedesktop.org/drm/drm-misc
6919 F:      Documentation/devicetree/bindings/display/rockchip/
6920 F:      drivers/gpu/drm/rockchip/
6921
6922 DRM DRIVERS FOR STI
6923 M:      Alain Volmat <alain.volmat@foss.st.com>
6924 L:      dri-devel@lists.freedesktop.org
6925 S:      Maintained
6926 T:      git git://anongit.freedesktop.org/drm/drm-misc
6927 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
6928 F:      drivers/gpu/drm/sti
6929
6930 DRM DRIVERS FOR STM
6931 M:      Yannick Fertre <yannick.fertre@foss.st.com>
6932 M:      Raphael Gallais-Pou <raphael.gallais-pou@foss.st.com>
6933 M:      Philippe Cornu <philippe.cornu@foss.st.com>
6934 L:      dri-devel@lists.freedesktop.org
6935 S:      Maintained
6936 T:      git git://anongit.freedesktop.org/drm/drm-misc
6937 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
6938 F:      drivers/gpu/drm/stm
6939
6940 DRM DRIVERS FOR TI KEYSTONE
6941 M:      Jyri Sarha <jyri.sarha@iki.fi>
6942 M:      Tomi Valkeinen <tomba@kernel.org>
6943 L:      dri-devel@lists.freedesktop.org
6944 S:      Maintained
6945 T:      git git://anongit.freedesktop.org/drm/drm-misc
6946 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
6947 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
6948 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
6949 F:      drivers/gpu/drm/tidss/
6950
6951 DRM DRIVERS FOR TI LCDC
6952 M:      Jyri Sarha <jyri.sarha@iki.fi>
6953 R:      Tomi Valkeinen <tomba@kernel.org>
6954 L:      dri-devel@lists.freedesktop.org
6955 S:      Maintained
6956 F:      Documentation/devicetree/bindings/display/tilcdc/
6957 F:      drivers/gpu/drm/tilcdc/
6958
6959 DRM DRIVERS FOR TI OMAP
6960 M:      Tomi Valkeinen <tomba@kernel.org>
6961 L:      dri-devel@lists.freedesktop.org
6962 S:      Maintained
6963 F:      Documentation/devicetree/bindings/display/ti/
6964 F:      drivers/gpu/drm/omapdrm/
6965
6966 DRM DRIVERS FOR V3D
6967 M:      Emma Anholt <emma@anholt.net>
6968 M:      Melissa Wen <mwen@igalia.com>
6969 S:      Supported
6970 T:      git git://anongit.freedesktop.org/drm/drm-misc
6971 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.yaml
6972 F:      drivers/gpu/drm/v3d/
6973 F:      include/uapi/drm/v3d_drm.h
6974
6975 DRM DRIVERS FOR VC4
6976 M:      Emma Anholt <emma@anholt.net>
6977 M:      Maxime Ripard <mripard@kernel.org>
6978 S:      Supported
6979 T:      git git://github.com/anholt/linux
6980 T:      git git://anongit.freedesktop.org/drm/drm-misc
6981 F:      Documentation/devicetree/bindings/display/brcm,bcm2835-*.yaml
6982 F:      drivers/gpu/drm/vc4/
6983 F:      include/uapi/drm/vc4_drm.h
6984
6985 DRM DRIVERS FOR VIVANTE GPU IP
6986 M:      Lucas Stach <l.stach@pengutronix.de>
6987 R:      Russell King <linux+etnaviv@armlinux.org.uk>
6988 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
6989 L:      etnaviv@lists.freedesktop.org (moderated for non-subscribers)
6990 L:      dri-devel@lists.freedesktop.org
6991 S:      Maintained
6992 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
6993 F:      drivers/gpu/drm/etnaviv/
6994 F:      include/uapi/drm/etnaviv_drm.h
6995
6996 DRM DRIVERS FOR XEN
6997 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
6998 L:      dri-devel@lists.freedesktop.org
6999 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
7000 S:      Supported
7001 T:      git git://anongit.freedesktop.org/drm/drm-misc
7002 F:      Documentation/gpu/xen-front.rst
7003 F:      drivers/gpu/drm/xen/
7004
7005 DRM DRIVERS FOR XILINX
7006 M:      Hyun Kwon <hyun.kwon@xilinx.com>
7007 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7008 L:      dri-devel@lists.freedesktop.org
7009 S:      Maintained
7010 T:      git git://anongit.freedesktop.org/drm/drm-misc
7011 F:      Documentation/devicetree/bindings/display/xlnx/
7012 F:      drivers/gpu/drm/xlnx/
7013
7014 DRM PANEL DRIVERS
7015 M:      Thierry Reding <thierry.reding@gmail.com>
7016 R:      Sam Ravnborg <sam@ravnborg.org>
7017 L:      dri-devel@lists.freedesktop.org
7018 S:      Maintained
7019 T:      git git://anongit.freedesktop.org/drm/drm-misc
7020 F:      Documentation/devicetree/bindings/display/panel/
7021 F:      drivers/gpu/drm/drm_panel.c
7022 F:      drivers/gpu/drm/panel/
7023 F:      include/drm/drm_panel.h
7024
7025 DRM PRIVACY-SCREEN CLASS
7026 M:      Hans de Goede <hdegoede@redhat.com>
7027 L:      dri-devel@lists.freedesktop.org
7028 S:      Maintained
7029 T:      git git://anongit.freedesktop.org/drm/drm-misc
7030 F:      drivers/gpu/drm/drm_privacy_screen*
7031 F:      include/drm/drm_privacy_screen*
7032
7033 DRM TTM SUBSYSTEM
7034 M:      Christian Koenig <christian.koenig@amd.com>
7035 M:      Huang Rui <ray.huang@amd.com>
7036 L:      dri-devel@lists.freedesktop.org
7037 S:      Maintained
7038 T:      git git://anongit.freedesktop.org/drm/drm-misc
7039 F:      drivers/gpu/drm/ttm/
7040 F:      include/drm/ttm/
7041
7042 DRM GPU SCHEDULER
7043 M:      Luben Tuikov <luben.tuikov@amd.com>
7044 L:      dri-devel@lists.freedesktop.org
7045 S:      Maintained
7046 T:      git git://anongit.freedesktop.org/drm/drm-misc
7047 F:      drivers/gpu/drm/scheduler/
7048 F:      include/drm/gpu_scheduler.h
7049
7050 DSBR100 USB FM RADIO DRIVER
7051 M:      Alexey Klimov <klimov.linux@gmail.com>
7052 L:      linux-media@vger.kernel.org
7053 S:      Maintained
7054 T:      git git://linuxtv.org/media_tree.git
7055 F:      drivers/media/radio/dsbr100.c
7056
7057 DT3155 MEDIA DRIVER
7058 M:      Hans Verkuil <hverkuil@xs4all.nl>
7059 L:      linux-media@vger.kernel.org
7060 S:      Odd Fixes
7061 W:      https://linuxtv.org
7062 T:      git git://linuxtv.org/media_tree.git
7063 F:      drivers/media/pci/dt3155/
7064
7065 DVB_USB_AF9015 MEDIA DRIVER
7066 M:      Antti Palosaari <crope@iki.fi>
7067 L:      linux-media@vger.kernel.org
7068 S:      Maintained
7069 W:      https://linuxtv.org
7070 W:      http://palosaari.fi/linux/
7071 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7072 T:      git git://linuxtv.org/anttip/media_tree.git
7073 F:      drivers/media/usb/dvb-usb-v2/af9015*
7074
7075 DVB_USB_AF9035 MEDIA DRIVER
7076 M:      Antti Palosaari <crope@iki.fi>
7077 L:      linux-media@vger.kernel.org
7078 S:      Maintained
7079 W:      https://linuxtv.org
7080 W:      http://palosaari.fi/linux/
7081 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7082 T:      git git://linuxtv.org/anttip/media_tree.git
7083 F:      drivers/media/usb/dvb-usb-v2/af9035*
7084
7085 DVB_USB_ANYSEE MEDIA DRIVER
7086 M:      Antti Palosaari <crope@iki.fi>
7087 L:      linux-media@vger.kernel.org
7088 S:      Maintained
7089 W:      https://linuxtv.org
7090 W:      http://palosaari.fi/linux/
7091 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7092 T:      git git://linuxtv.org/anttip/media_tree.git
7093 F:      drivers/media/usb/dvb-usb-v2/anysee*
7094
7095 DVB_USB_AU6610 MEDIA DRIVER
7096 M:      Antti Palosaari <crope@iki.fi>
7097 L:      linux-media@vger.kernel.org
7098 S:      Maintained
7099 W:      https://linuxtv.org
7100 W:      http://palosaari.fi/linux/
7101 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7102 T:      git git://linuxtv.org/anttip/media_tree.git
7103 F:      drivers/media/usb/dvb-usb-v2/au6610*
7104
7105 DVB_USB_CE6230 MEDIA DRIVER
7106 M:      Antti Palosaari <crope@iki.fi>
7107 L:      linux-media@vger.kernel.org
7108 S:      Maintained
7109 W:      https://linuxtv.org
7110 W:      http://palosaari.fi/linux/
7111 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7112 T:      git git://linuxtv.org/anttip/media_tree.git
7113 F:      drivers/media/usb/dvb-usb-v2/ce6230*
7114
7115 DVB_USB_CXUSB MEDIA DRIVER
7116 M:      Michael Krufky <mkrufky@linuxtv.org>
7117 L:      linux-media@vger.kernel.org
7118 S:      Maintained
7119 W:      https://linuxtv.org
7120 W:      http://github.com/mkrufky
7121 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7122 T:      git git://linuxtv.org/media_tree.git
7123 F:      drivers/media/usb/dvb-usb/cxusb*
7124
7125 DVB_USB_EC168 MEDIA DRIVER
7126 M:      Antti Palosaari <crope@iki.fi>
7127 L:      linux-media@vger.kernel.org
7128 S:      Maintained
7129 W:      https://linuxtv.org
7130 W:      http://palosaari.fi/linux/
7131 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7132 T:      git git://linuxtv.org/anttip/media_tree.git
7133 F:      drivers/media/usb/dvb-usb-v2/ec168*
7134
7135 DVB_USB_GL861 MEDIA DRIVER
7136 M:      Antti Palosaari <crope@iki.fi>
7137 L:      linux-media@vger.kernel.org
7138 S:      Maintained
7139 W:      https://linuxtv.org
7140 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7141 T:      git git://linuxtv.org/anttip/media_tree.git
7142 F:      drivers/media/usb/dvb-usb-v2/gl861*
7143
7144 DVB_USB_MXL111SF MEDIA DRIVER
7145 M:      Michael Krufky <mkrufky@linuxtv.org>
7146 L:      linux-media@vger.kernel.org
7147 S:      Maintained
7148 W:      https://linuxtv.org
7149 W:      http://github.com/mkrufky
7150 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7151 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
7152 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
7153
7154 DVB_USB_RTL28XXU MEDIA DRIVER
7155 M:      Antti Palosaari <crope@iki.fi>
7156 L:      linux-media@vger.kernel.org
7157 S:      Maintained
7158 W:      https://linuxtv.org
7159 W:      http://palosaari.fi/linux/
7160 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7161 T:      git git://linuxtv.org/anttip/media_tree.git
7162 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
7163
7164 DVB_USB_V2 MEDIA DRIVER
7165 M:      Antti Palosaari <crope@iki.fi>
7166 L:      linux-media@vger.kernel.org
7167 S:      Maintained
7168 W:      https://linuxtv.org
7169 W:      http://palosaari.fi/linux/
7170 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7171 T:      git git://linuxtv.org/anttip/media_tree.git
7172 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
7173 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
7174
7175 DYNAMIC DEBUG
7176 M:      Jason Baron <jbaron@akamai.com>
7177 S:      Maintained
7178 F:      include/linux/dynamic_debug.h
7179 F:      lib/dynamic_debug.c
7180 M:      Jim Cromie <jim.cromie@gmail.com>
7181 F:      lib/test_dynamic_debug.c
7182
7183 DYNAMIC INTERRUPT MODERATION
7184 M:      Tal Gilboa <talgi@nvidia.com>
7185 S:      Maintained
7186 F:      Documentation/networking/net_dim.rst
7187 F:      include/linux/dim.h
7188 F:      lib/dim/
7189
7190 DZ DECSTATION DZ11 SERIAL DRIVER
7191 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
7192 S:      Maintained
7193 F:      drivers/tty/serial/dz.*
7194
7195 E3X0 POWER BUTTON DRIVER
7196 M:      Moritz Fischer <moritz.fischer@ettus.com>
7197 L:      usrp-users@lists.ettus.com
7198 S:      Supported
7199 W:      http://www.ettus.com
7200 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
7201 F:      drivers/input/misc/e3x0-button.c
7202
7203 E4000 MEDIA DRIVER
7204 M:      Antti Palosaari <crope@iki.fi>
7205 L:      linux-media@vger.kernel.org
7206 S:      Maintained
7207 W:      https://linuxtv.org
7208 W:      http://palosaari.fi/linux/
7209 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7210 T:      git git://linuxtv.org/anttip/media_tree.git
7211 F:      drivers/media/tuners/e4000*
7212
7213 EARTH_PT1 MEDIA DRIVER
7214 M:      Akihiro Tsukada <tskd08@gmail.com>
7215 L:      linux-media@vger.kernel.org
7216 S:      Odd Fixes
7217 F:      drivers/media/pci/pt1/
7218
7219 EARTH_PT3 MEDIA DRIVER
7220 M:      Akihiro Tsukada <tskd08@gmail.com>
7221 L:      linux-media@vger.kernel.org
7222 S:      Odd Fixes
7223 F:      drivers/media/pci/pt3/
7224
7225 EC100 MEDIA DRIVER
7226 M:      Antti Palosaari <crope@iki.fi>
7227 L:      linux-media@vger.kernel.org
7228 S:      Maintained
7229 W:      https://linuxtv.org
7230 W:      http://palosaari.fi/linux/
7231 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7232 T:      git git://linuxtv.org/anttip/media_tree.git
7233 F:      drivers/media/dvb-frontends/ec100*
7234
7235 ECRYPT FILE SYSTEM
7236 M:      Tyler Hicks <code@tyhicks.com>
7237 L:      ecryptfs@vger.kernel.org
7238 S:      Odd Fixes
7239 W:      http://ecryptfs.org
7240 W:      https://launchpad.net/ecryptfs
7241 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
7242 F:      Documentation/filesystems/ecryptfs.rst
7243 F:      fs/ecryptfs/
7244
7245 EDAC-AMD64
7246 M:      Yazen Ghannam <yazen.ghannam@amd.com>
7247 L:      linux-edac@vger.kernel.org
7248 S:      Supported
7249 F:      drivers/edac/amd64_edac*
7250 F:      drivers/edac/mce_amd*
7251
7252 EDAC-ARMADA
7253 M:      Jan Luebbe <jlu@pengutronix.de>
7254 L:      linux-edac@vger.kernel.org
7255 S:      Maintained
7256 F:      Documentation/devicetree/bindings/memory-controllers/marvell,mvebu-sdram-controller.yaml
7257 F:      drivers/edac/armada_xp_*
7258
7259 EDAC-AST2500
7260 M:      Stefan Schaeckeler <sschaeck@cisco.com>
7261 S:      Supported
7262 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
7263 F:      drivers/edac/aspeed_edac.c
7264
7265 EDAC-BLUEFIELD
7266 M:      Shravan Kumar Ramani <shravankr@nvidia.com>
7267 S:      Supported
7268 F:      drivers/edac/bluefield_edac.c
7269
7270 EDAC-CALXEDA
7271 M:      Andre Przywara <andre.przywara@arm.com>
7272 L:      linux-edac@vger.kernel.org
7273 S:      Maintained
7274 F:      drivers/edac/highbank*
7275
7276 EDAC-CAVIUM OCTEON
7277 M:      Ralf Baechle <ralf@linux-mips.org>
7278 L:      linux-edac@vger.kernel.org
7279 L:      linux-mips@vger.kernel.org
7280 S:      Supported
7281 F:      drivers/edac/octeon_edac*
7282
7283 EDAC-CAVIUM THUNDERX
7284 M:      Robert Richter <rric@kernel.org>
7285 L:      linux-edac@vger.kernel.org
7286 S:      Odd Fixes
7287 F:      drivers/edac/thunderx_edac*
7288
7289 EDAC-CORE
7290 M:      Borislav Petkov <bp@alien8.de>
7291 M:      Tony Luck <tony.luck@intel.com>
7292 R:      James Morse <james.morse@arm.com>
7293 R:      Mauro Carvalho Chehab <mchehab@kernel.org>
7294 R:      Robert Richter <rric@kernel.org>
7295 L:      linux-edac@vger.kernel.org
7296 S:      Supported
7297 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
7298 F:      Documentation/admin-guide/ras.rst
7299 F:      Documentation/driver-api/edac.rst
7300 F:      drivers/edac/
7301 F:      include/linux/edac.h
7302
7303 EDAC-DMC520
7304 M:      Lei Wang <lewan@microsoft.com>
7305 L:      linux-edac@vger.kernel.org
7306 S:      Supported
7307 F:      drivers/edac/dmc520_edac.c
7308
7309 EDAC-E752X
7310 M:      Mark Gross <markgross@kernel.org>
7311 L:      linux-edac@vger.kernel.org
7312 S:      Maintained
7313 F:      drivers/edac/e752x_edac.c
7314
7315 EDAC-E7XXX
7316 L:      linux-edac@vger.kernel.org
7317 S:      Maintained
7318 F:      drivers/edac/e7xxx_edac.c
7319
7320 EDAC-FSL_DDR
7321 M:      York Sun <york.sun@nxp.com>
7322 L:      linux-edac@vger.kernel.org
7323 S:      Maintained
7324 F:      drivers/edac/fsl_ddr_edac.*
7325
7326 EDAC-GHES
7327 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7328 L:      linux-edac@vger.kernel.org
7329 S:      Maintained
7330 F:      drivers/edac/ghes_edac.c
7331
7332 EDAC-I10NM
7333 M:      Tony Luck <tony.luck@intel.com>
7334 L:      linux-edac@vger.kernel.org
7335 S:      Maintained
7336 F:      drivers/edac/i10nm_base.c
7337
7338 EDAC-I3000
7339 L:      linux-edac@vger.kernel.org
7340 S:      Orphan
7341 F:      drivers/edac/i3000_edac.c
7342
7343 EDAC-I5000
7344 L:      linux-edac@vger.kernel.org
7345 S:      Maintained
7346 F:      drivers/edac/i5000_edac.c
7347
7348 EDAC-I5400
7349 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7350 L:      linux-edac@vger.kernel.org
7351 S:      Maintained
7352 F:      drivers/edac/i5400_edac.c
7353
7354 EDAC-I7300
7355 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7356 L:      linux-edac@vger.kernel.org
7357 S:      Maintained
7358 F:      drivers/edac/i7300_edac.c
7359
7360 EDAC-I7CORE
7361 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7362 L:      linux-edac@vger.kernel.org
7363 S:      Maintained
7364 F:      drivers/edac/i7core_edac.c
7365
7366 EDAC-I82443BXGX
7367 M:      Tim Small <tim@buttersideup.com>
7368 L:      linux-edac@vger.kernel.org
7369 S:      Maintained
7370 F:      drivers/edac/i82443bxgx_edac.c
7371
7372 EDAC-I82975X
7373 M:      "Arvind R." <arvino55@gmail.com>
7374 L:      linux-edac@vger.kernel.org
7375 S:      Maintained
7376 F:      drivers/edac/i82975x_edac.c
7377
7378 EDAC-IE31200
7379 M:      Jason Baron <jbaron@akamai.com>
7380 L:      linux-edac@vger.kernel.org
7381 S:      Maintained
7382 F:      drivers/edac/ie31200_edac.c
7383
7384 EDAC-IGEN6
7385 M:      Tony Luck <tony.luck@intel.com>
7386 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
7387 L:      linux-edac@vger.kernel.org
7388 S:      Maintained
7389 F:      drivers/edac/igen6_edac.c
7390
7391 EDAC-MPC85XX
7392 M:      Johannes Thumshirn <morbidrsa@gmail.com>
7393 L:      linux-edac@vger.kernel.org
7394 S:      Maintained
7395 F:      drivers/edac/mpc85xx_edac.[ch]
7396
7397 EDAC-PASEMI
7398 M:      Egor Martovetsky <egor@pasemi.com>
7399 L:      linux-edac@vger.kernel.org
7400 S:      Maintained
7401 F:      drivers/edac/pasemi_edac.c
7402
7403 EDAC-PND2
7404 M:      Tony Luck <tony.luck@intel.com>
7405 L:      linux-edac@vger.kernel.org
7406 S:      Maintained
7407 F:      drivers/edac/pnd2_edac.[ch]
7408
7409 EDAC-QCOM
7410 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
7411 L:      linux-arm-msm@vger.kernel.org
7412 L:      linux-edac@vger.kernel.org
7413 S:      Maintained
7414 F:      drivers/edac/qcom_edac.c
7415
7416 EDAC-R82600
7417 M:      Tim Small <tim@buttersideup.com>
7418 L:      linux-edac@vger.kernel.org
7419 S:      Maintained
7420 F:      drivers/edac/r82600_edac.c
7421
7422 EDAC-SBRIDGE
7423 M:      Tony Luck <tony.luck@intel.com>
7424 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
7425 L:      linux-edac@vger.kernel.org
7426 S:      Maintained
7427 F:      drivers/edac/sb_edac.c
7428
7429 EDAC-SKYLAKE
7430 M:      Tony Luck <tony.luck@intel.com>
7431 L:      linux-edac@vger.kernel.org
7432 S:      Maintained
7433 F:      drivers/edac/skx_*.[ch]
7434
7435 EDAC-TI
7436 M:      Tero Kristo <kristo@kernel.org>
7437 L:      linux-edac@vger.kernel.org
7438 S:      Odd Fixes
7439 F:      drivers/edac/ti_edac.c
7440
7441 EDIROL UA-101/UA-1000 DRIVER
7442 M:      Clemens Ladisch <clemens@ladisch.de>
7443 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7444 S:      Maintained
7445 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7446 F:      sound/usb/misc/ua101.c
7447
7448 EFI TEST DRIVER
7449 M:      Ivan Hu <ivan.hu@canonical.com>
7450 M:      Ard Biesheuvel <ardb@kernel.org>
7451 L:      linux-efi@vger.kernel.org
7452 S:      Maintained
7453 F:      drivers/firmware/efi/test/
7454
7455 EFI VARIABLE FILESYSTEM
7456 M:      Jeremy Kerr <jk@ozlabs.org>
7457 M:      Ard Biesheuvel <ardb@kernel.org>
7458 L:      linux-efi@vger.kernel.org
7459 S:      Maintained
7460 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7461 F:      fs/efivarfs/
7462
7463 EFIFB FRAMEBUFFER DRIVER
7464 M:      Peter Jones <pjones@redhat.com>
7465 L:      linux-fbdev@vger.kernel.org
7466 S:      Maintained
7467 F:      drivers/video/fbdev/efifb.c
7468
7469 EFS FILESYSTEM
7470 S:      Orphan
7471 W:      http://aeschi.ch.eu.org/efs/
7472 F:      fs/efs/
7473
7474 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
7475 M:      Douglas Miller <dougmill@linux.ibm.com>
7476 L:      netdev@vger.kernel.org
7477 S:      Maintained
7478 F:      drivers/net/ethernet/ibm/ehea/
7479
7480 ELM327 CAN NETWORK DRIVER
7481 M:      Max Staudt <max@enpas.org>
7482 L:      linux-can@vger.kernel.org
7483 S:      Maintained
7484 F:      Documentation/networking/device_drivers/can/can327.rst
7485 F:      drivers/net/can/can327.c
7486
7487 EM28XX VIDEO4LINUX DRIVER
7488 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7489 L:      linux-media@vger.kernel.org
7490 S:      Maintained
7491 W:      https://linuxtv.org
7492 T:      git git://linuxtv.org/media_tree.git
7493 F:      Documentation/admin-guide/media/em28xx*
7494 F:      drivers/media/usb/em28xx/
7495
7496 EMBEDDED LINUX
7497 M:      Olivia Mackall <olivia@selenic.com>
7498 M:      David Woodhouse <dwmw2@infradead.org>
7499 L:      linux-embedded@vger.kernel.org
7500 S:      Maintained
7501
7502 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
7503 M:      Adrian Hunter <adrian.hunter@intel.com>
7504 M:      Ritesh Harjani <riteshh@codeaurora.org>
7505 M:      Asutosh Das <asutoshd@codeaurora.org>
7506 L:      linux-mmc@vger.kernel.org
7507 S:      Supported
7508 F:      drivers/mmc/host/cqhci*
7509
7510 EMULEX 10Gbps iSCSI - OneConnect DRIVER
7511 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
7512 L:      linux-scsi@vger.kernel.org
7513 S:      Supported
7514 W:      http://www.broadcom.com
7515 F:      drivers/scsi/be2iscsi/
7516
7517 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
7518 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
7519 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
7520 M:      Somnath Kotur <somnath.kotur@broadcom.com>
7521 L:      netdev@vger.kernel.org
7522 S:      Supported
7523 W:      http://www.emulex.com
7524 F:      drivers/net/ethernet/emulex/benet/
7525
7526 EMULEX ONECONNECT ROCE DRIVER
7527 M:      Selvin Xavier <selvin.xavier@broadcom.com>
7528 L:      linux-rdma@vger.kernel.org
7529 S:      Odd Fixes
7530 W:      http://www.broadcom.com
7531 F:      drivers/infiniband/hw/ocrdma/
7532 F:      include/uapi/rdma/ocrdma-abi.h
7533
7534 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
7535 M:      James Smart <james.smart@broadcom.com>
7536 M:      Dick Kennedy <dick.kennedy@broadcom.com>
7537 L:      linux-scsi@vger.kernel.org
7538 S:      Supported
7539 W:      http://www.broadcom.com
7540 F:      drivers/scsi/lpfc/
7541
7542 EMULEX/BROADCOM EFCT FC/FCOE SCSI TARGET DRIVER
7543 M:      James Smart <james.smart@broadcom.com>
7544 M:      Ram Vegesna <ram.vegesna@broadcom.com>
7545 L:      linux-scsi@vger.kernel.org
7546 L:      target-devel@vger.kernel.org
7547 S:      Supported
7548 W:      http://www.broadcom.com
7549 F:      drivers/scsi/elx/
7550
7551 ENE CB710 FLASH CARD READER DRIVER
7552 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
7553 S:      Maintained
7554 F:      drivers/misc/cb710/
7555 F:      drivers/mmc/host/cb710-mmc.*
7556 F:      include/linux/cb710.h
7557
7558 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
7559 M:      Maxim Levitsky <maximlevitsky@gmail.com>
7560 S:      Maintained
7561 F:      drivers/media/rc/ene_ir.*
7562
7563 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
7564 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
7565 L:      linuxppc-dev@lists.ozlabs.org
7566 S:      Maintained
7567 F:      drivers/tty/ehv_bytechan.c
7568
7569 EPSON S1D13XXX FRAMEBUFFER DRIVER
7570 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
7571 S:      Maintained
7572 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
7573 F:      drivers/video/fbdev/s1d13xxxfb.c
7574 F:      include/video/s1d13xxxfb.h
7575
7576 EROFS FILE SYSTEM
7577 M:      Gao Xiang <xiang@kernel.org>
7578 M:      Chao Yu <chao@kernel.org>
7579 R:      Yue Hu <huyue2@coolpad.com>
7580 R:      Jeffle Xu <jefflexu@linux.alibaba.com>
7581 L:      linux-erofs@lists.ozlabs.org
7582 S:      Maintained
7583 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
7584 F:      Documentation/ABI/testing/sysfs-fs-erofs
7585 F:      Documentation/filesystems/erofs.rst
7586 F:      fs/erofs/
7587 F:      include/trace/events/erofs.h
7588
7589 ERRSEQ ERROR TRACKING INFRASTRUCTURE
7590 M:      Jeff Layton <jlayton@kernel.org>
7591 S:      Maintained
7592 F:      include/linux/errseq.h
7593 F:      lib/errseq.c
7594
7595 ESD CAN/USB DRIVERS
7596 M:      Frank Jungclaus <frank.jungclaus@esd.eu>
7597 R:      socketcan@esd.eu
7598 L:      linux-can@vger.kernel.org
7599 S:      Maintained
7600 F:      drivers/net/can/usb/esd_usb.c
7601
7602 ET131X NETWORK DRIVER
7603 M:      Mark Einon <mark.einon@gmail.com>
7604 S:      Odd Fixes
7605 F:      drivers/net/ethernet/agere/
7606
7607 ETAS ES58X CAN/USB DRIVER
7608 M:      Vincent Mailhol <mailhol.vincent@wanadoo.fr>
7609 L:      linux-can@vger.kernel.org
7610 S:      Maintained
7611 F:      Documentation/networking/devlink/etas_es58x.rst
7612 F:      drivers/net/can/usb/etas_es58x/
7613
7614 ETHERNET BRIDGE
7615 M:      Roopa Prabhu <roopa@nvidia.com>
7616 M:      Nikolay Aleksandrov <razor@blackwall.org>
7617 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
7618 L:      netdev@vger.kernel.org
7619 S:      Maintained
7620 W:      http://www.linuxfoundation.org/en/Net:Bridge
7621 F:      include/linux/netfilter_bridge/
7622 F:      net/bridge/
7623
7624 ETHERNET PHY LIBRARY
7625 M:      Andrew Lunn <andrew@lunn.ch>
7626 M:      Heiner Kallweit <hkallweit1@gmail.com>
7627 R:      Russell King <linux@armlinux.org.uk>
7628 L:      netdev@vger.kernel.org
7629 S:      Maintained
7630 F:      Documentation/ABI/testing/sysfs-class-net-phydev
7631 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
7632 F:      Documentation/devicetree/bindings/net/mdio*
7633 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
7634 F:      Documentation/networking/phy.rst
7635 F:      drivers/net/mdio/
7636 F:      drivers/net/mdio/acpi_mdio.c
7637 F:      drivers/net/mdio/fwnode_mdio.c
7638 F:      drivers/net/mdio/of_mdio.c
7639 F:      drivers/net/pcs/
7640 F:      drivers/net/phy/
7641 F:      include/dt-bindings/net/qca-ar803x.h
7642 F:      include/linux/linkmode.h
7643 F:      include/linux/*mdio*.h
7644 F:      include/linux/mdio/*.h
7645 F:      include/linux/mii.h
7646 F:      include/linux/of_net.h
7647 F:      include/linux/phy.h
7648 F:      include/linux/phy_fixed.h
7649 F:      include/linux/platform_data/mdio-bcm-unimac.h
7650 F:      include/linux/platform_data/mdio-gpio.h
7651 F:      include/trace/events/mdio.h
7652 F:      include/uapi/linux/mdio.h
7653 F:      include/uapi/linux/mii.h
7654 F:      net/core/of_net.c
7655
7656 EXEC & BINFMT API
7657 R:      Eric Biederman <ebiederm@xmission.com>
7658 R:      Kees Cook <keescook@chromium.org>
7659 L:      linux-mm@kvack.org
7660 S:      Supported
7661 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/execve
7662 F:      fs/*binfmt_*.c
7663 F:      fs/exec.c
7664 F:      include/linux/binfmts.h
7665 F:      include/linux/elf.h
7666 F:      include/uapi/linux/binfmts.h
7667 F:      include/uapi/linux/elf.h
7668 F:      tools/testing/selftests/exec/
7669 N:      asm/elf.h
7670 N:      binfmt
7671
7672 EXFAT FILE SYSTEM
7673 M:      Namjae Jeon <linkinjeon@kernel.org>
7674 M:      Sungjong Seo <sj1557.seo@samsung.com>
7675 L:      linux-fsdevel@vger.kernel.org
7676 S:      Maintained
7677 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linkinjeon/exfat.git
7678 F:      fs/exfat/
7679
7680 EXT2 FILE SYSTEM
7681 M:      Jan Kara <jack@suse.com>
7682 L:      linux-ext4@vger.kernel.org
7683 S:      Maintained
7684 F:      Documentation/filesystems/ext2.rst
7685 F:      fs/ext2/
7686 F:      include/linux/ext2*
7687
7688 EXT4 FILE SYSTEM
7689 M:      "Theodore Ts'o" <tytso@mit.edu>
7690 M:      Andreas Dilger <adilger.kernel@dilger.ca>
7691 L:      linux-ext4@vger.kernel.org
7692 S:      Maintained
7693 W:      http://ext4.wiki.kernel.org
7694 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
7695 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
7696 F:      Documentation/filesystems/ext4/
7697 F:      fs/ext4/
7698 F:      include/trace/events/ext4.h
7699
7700 Extended Verification Module (EVM)
7701 M:      Mimi Zohar <zohar@linux.ibm.com>
7702 L:      linux-integrity@vger.kernel.org
7703 S:      Supported
7704 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
7705 F:      security/integrity/evm/
7706 F:      security/integrity/
7707
7708 EXTENSIBLE FIRMWARE INTERFACE (EFI)
7709 M:      Ard Biesheuvel <ardb@kernel.org>
7710 L:      linux-efi@vger.kernel.org
7711 S:      Maintained
7712 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7713 F:      Documentation/admin-guide/efi-stub.rst
7714 F:      arch/*/include/asm/efi.h
7715 F:      arch/*/kernel/efi.c
7716 F:      arch/arm/boot/compressed/efi-header.S
7717 F:      arch/x86/platform/efi/
7718 F:      drivers/firmware/efi/
7719 F:      include/linux/efi*.h
7720
7721 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
7722 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
7723 M:      Chanwoo Choi <cw00.choi@samsung.com>
7724 L:      linux-kernel@vger.kernel.org
7725 S:      Maintained
7726 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
7727 F:      Documentation/devicetree/bindings/extcon/
7728 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
7729 F:      drivers/extcon/
7730 F:      include/linux/extcon.h
7731 F:      include/linux/extcon/
7732
7733 EXTRA BOOT CONFIG
7734 M:      Masami Hiramatsu <mhiramat@kernel.org>
7735 L:      linux-kernel@vger.kernel.org
7736 L:      linux-trace-kernel@vger.kernel.org
7737 Q:      https://patchwork.kernel.org/project/linux-trace-kernel/list/
7738 S:      Maintained
7739 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace.git
7740 F:      Documentation/admin-guide/bootconfig.rst
7741 F:      fs/proc/bootconfig.c
7742 F:      include/linux/bootconfig.h
7743 F:      lib/bootconfig-data.S
7744 F:      lib/bootconfig.c
7745 F:      tools/bootconfig/*
7746 F:      tools/bootconfig/scripts/*
7747
7748 EXYNOS DP DRIVER
7749 M:      Jingoo Han <jingoohan1@gmail.com>
7750 L:      dri-devel@lists.freedesktop.org
7751 S:      Maintained
7752 F:      drivers/gpu/drm/exynos/exynos_dp*
7753
7754 EXYNOS SYSMMU (IOMMU) driver
7755 M:      Marek Szyprowski <m.szyprowski@samsung.com>
7756 L:      iommu@lists.linux.dev
7757 S:      Maintained
7758 F:      drivers/iommu/exynos-iommu.c
7759
7760 F2FS FILE SYSTEM
7761 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7762 M:      Chao Yu <chao@kernel.org>
7763 L:      linux-f2fs-devel@lists.sourceforge.net
7764 S:      Maintained
7765 W:      https://f2fs.wiki.kernel.org/
7766 B:      https://bugzilla.kernel.org/enter_bug.cgi?product=File%20System&component=f2fs
7767 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
7768 F:      Documentation/ABI/testing/sysfs-fs-f2fs
7769 F:      Documentation/filesystems/f2fs.rst
7770 F:      fs/f2fs/
7771 F:      include/linux/f2fs_fs.h
7772 F:      include/trace/events/f2fs.h
7773 F:      include/uapi/linux/f2fs.h
7774
7775 F71805F HARDWARE MONITORING DRIVER
7776 M:      Jean Delvare <jdelvare@suse.com>
7777 L:      linux-hwmon@vger.kernel.org
7778 S:      Maintained
7779 F:      Documentation/hwmon/f71805f.rst
7780 F:      drivers/hwmon/f71805f.c
7781
7782 FADDR2LINE
7783 M:      Josh Poimboeuf <jpoimboe@kernel.org>
7784 S:      Maintained
7785 F:      scripts/faddr2line
7786
7787 FAILOVER MODULE
7788 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
7789 L:      netdev@vger.kernel.org
7790 S:      Supported
7791 F:      Documentation/networking/failover.rst
7792 F:      include/net/failover.h
7793 F:      net/core/failover.c
7794
7795 FANOTIFY
7796 M:      Jan Kara <jack@suse.cz>
7797 R:      Amir Goldstein <amir73il@gmail.com>
7798 R:      Matthew Bobrowski <repnop@google.com>
7799 L:      linux-fsdevel@vger.kernel.org
7800 S:      Maintained
7801 F:      fs/notify/fanotify/
7802 F:      include/linux/fanotify.h
7803 F:      include/uapi/linux/fanotify.h
7804
7805 FARADAY FOTG210 USB2 DUAL-ROLE CONTROLLER
7806 M:      Linus Walleij <linus.walleij@linaro.org>
7807 L:      linux-usb@vger.kernel.org
7808 S:      Maintained
7809 F:      drivers/usb/fotg210/
7810
7811 FARSYNC SYNCHRONOUS DRIVER
7812 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
7813 S:      Supported
7814 W:      http://www.farsite.co.uk/
7815 F:      drivers/net/wan/farsync.*
7816
7817 FAULT INJECTION SUPPORT
7818 M:      Akinobu Mita <akinobu.mita@gmail.com>
7819 S:      Supported
7820 F:      Documentation/fault-injection/
7821 F:      lib/fault-inject.c
7822
7823 FBTFT Framebuffer drivers
7824 L:      dri-devel@lists.freedesktop.org
7825 L:      linux-fbdev@vger.kernel.org
7826 S:      Orphan
7827 F:      drivers/staging/fbtft/
7828
7829 FC0011 TUNER DRIVER
7830 M:      Michael Buesch <m@bues.ch>
7831 L:      linux-media@vger.kernel.org
7832 S:      Maintained
7833 F:      drivers/media/tuners/fc0011.c
7834 F:      drivers/media/tuners/fc0011.h
7835
7836 FC2580 MEDIA DRIVER
7837 M:      Antti Palosaari <crope@iki.fi>
7838 L:      linux-media@vger.kernel.org
7839 S:      Maintained
7840 W:      https://linuxtv.org
7841 W:      http://palosaari.fi/linux/
7842 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7843 T:      git git://linuxtv.org/anttip/media_tree.git
7844 F:      drivers/media/tuners/fc2580*
7845
7846 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
7847 M:      Hannes Reinecke <hare@suse.de>
7848 L:      linux-scsi@vger.kernel.org
7849 S:      Supported
7850 W:      www.Open-FCoE.org
7851 F:      drivers/scsi/fcoe/
7852 F:      drivers/scsi/libfc/
7853 F:      include/scsi/fc/
7854 F:      include/scsi/libfc.h
7855 F:      include/scsi/libfcoe.h
7856 F:      include/uapi/scsi/fc/
7857
7858 FILE LOCKING (flock() and fcntl()/lockf())
7859 M:      Jeff Layton <jlayton@kernel.org>
7860 M:      Chuck Lever <chuck.lever@oracle.com>
7861 L:      linux-fsdevel@vger.kernel.org
7862 S:      Maintained
7863 F:      fs/fcntl.c
7864 F:      fs/locks.c
7865 F:      include/linux/fcntl.h
7866 F:      include/uapi/linux/fcntl.h
7867
7868 FILESYSTEM DIRECT ACCESS (DAX)
7869 M:      Dan Williams <dan.j.williams@intel.com>
7870 R:      Matthew Wilcox <willy@infradead.org>
7871 R:      Jan Kara <jack@suse.cz>
7872 L:      linux-fsdevel@vger.kernel.org
7873 L:      nvdimm@lists.linux.dev
7874 S:      Supported
7875 F:      fs/dax.c
7876 F:      include/linux/dax.h
7877 F:      include/trace/events/fs_dax.h
7878
7879 FILESYSTEMS (VFS and infrastructure)
7880 M:      Alexander Viro <viro@zeniv.linux.org.uk>
7881 L:      linux-fsdevel@vger.kernel.org
7882 S:      Maintained
7883 F:      fs/*
7884 F:      include/linux/fs.h
7885 F:      include/linux/fs_types.h
7886 F:      include/uapi/linux/fs.h
7887 F:      include/uapi/linux/openat2.h
7888
7889 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
7890 M:      Riku Voipio <riku.voipio@iki.fi>
7891 L:      linux-hwmon@vger.kernel.org
7892 S:      Maintained
7893 F:      drivers/hwmon/f75375s.c
7894 F:      include/linux/f75375s.h
7895
7896 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
7897 M:      Clemens Ladisch <clemens@ladisch.de>
7898 M:      Takashi Sakamoto <o-takashi@sakamocchi.jp>
7899 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7900 S:      Maintained
7901 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7902 F:      include/uapi/sound/firewire.h
7903 F:      sound/firewire/
7904
7905 FIREWIRE MEDIA DRIVERS (firedtv)
7906 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7907 L:      linux-media@vger.kernel.org
7908 L:      linux1394-devel@lists.sourceforge.net
7909 S:      Maintained
7910 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
7911 F:      drivers/media/firewire/
7912
7913 FIREWIRE SBP-2 TARGET
7914 M:      Chris Boot <bootc@bootc.net>
7915 L:      linux-scsi@vger.kernel.org
7916 L:      target-devel@vger.kernel.org
7917 L:      linux1394-devel@lists.sourceforge.net
7918 S:      Maintained
7919 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
7920 F:      drivers/target/sbp/
7921
7922 FIREWIRE SUBSYSTEM
7923 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7924 L:      linux1394-devel@lists.sourceforge.net
7925 S:      Maintained
7926 W:      http://ieee1394.wiki.kernel.org/
7927 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
7928 F:      drivers/firewire/
7929 F:      include/linux/firewire.h
7930 F:      include/uapi/linux/firewire*.h
7931 F:      tools/firewire/
7932
7933 FIRMWARE FRAMEWORK FOR ARMV8-A
7934 M:      Sudeep Holla <sudeep.holla@arm.com>
7935 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7936 S:      Maintained
7937 F:      drivers/firmware/arm_ffa/
7938 F:      include/linux/arm_ffa.h
7939
7940 FIRMWARE LOADER (request_firmware)
7941 M:      Luis Chamberlain <mcgrof@kernel.org>
7942 M:      Russ Weight <russell.h.weight@intel.com>
7943 L:      linux-kernel@vger.kernel.org
7944 S:      Maintained
7945 F:      Documentation/firmware_class/
7946 F:      drivers/base/firmware_loader/
7947 F:      include/linux/firmware.h
7948
7949 FLEXTIMER FTM-QUADDEC DRIVER
7950 M:      Patrick Havelange <patrick.havelange@essensium.com>
7951 L:      linux-iio@vger.kernel.org
7952 S:      Maintained
7953 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
7954 F:      drivers/counter/ftm-quaddec.c
7955
7956 FLOPPY DRIVER
7957 M:      Denis Efremov <efremov@linux.com>
7958 L:      linux-block@vger.kernel.org
7959 S:      Odd Fixes
7960 F:      drivers/block/floppy.c
7961
7962 FLYSKY FSIA6B RC RECEIVER
7963 M:      Markus Koch <markus@notsyncing.net>
7964 L:      linux-input@vger.kernel.org
7965 S:      Maintained
7966 F:      drivers/input/joystick/fsia6b.c
7967
7968 FOCUSRITE SCARLETT GEN 2/3 MIXER DRIVER
7969 M:      Geoffrey D. Bennett <g@b4.vu>
7970 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7971 S:      Maintained
7972 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7973 F:      sound/usb/mixer_scarlett_gen2.c
7974
7975 FORCEDETH GIGABIT ETHERNET DRIVER
7976 M:      Rain River <rain.1986.08.12@gmail.com>
7977 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
7978 L:      netdev@vger.kernel.org
7979 S:      Maintained
7980 F:      drivers/net/ethernet/nvidia/*
7981
7982 FORTIFY_SOURCE
7983 M:      Kees Cook <keescook@chromium.org>
7984 L:      linux-hardening@vger.kernel.org
7985 S:      Supported
7986 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
7987 F:      include/linux/fortify-string.h
7988 F:      lib/fortify_kunit.c
7989 F:      lib/memcpy_kunit.c
7990 F:      lib/strscpy_kunit.c
7991 F:      lib/test_fortify/*
7992 F:      scripts/test_fortify.sh
7993 K:      \b__NO_FORTIFY\b
7994
7995 FPGA DFL DRIVERS
7996 M:      Wu Hao <hao.wu@intel.com>
7997 R:      Tom Rix <trix@redhat.com>
7998 L:      linux-fpga@vger.kernel.org
7999 S:      Maintained
8000 F:      Documentation/ABI/testing/sysfs-bus-dfl*
8001 F:      Documentation/fpga/dfl.rst
8002 F:      drivers/fpga/dfl*
8003 F:      drivers/uio/uio_dfl.c
8004 F:      include/linux/dfl.h
8005 F:      include/uapi/linux/fpga-dfl.h
8006
8007 FPGA MANAGER FRAMEWORK
8008 M:      Moritz Fischer <mdf@kernel.org>
8009 M:      Wu Hao <hao.wu@intel.com>
8010 M:      Xu Yilun <yilun.xu@intel.com>
8011 R:      Tom Rix <trix@redhat.com>
8012 L:      linux-fpga@vger.kernel.org
8013 S:      Maintained
8014 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
8015 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/fpga/linux-fpga.git
8016 F:      Documentation/devicetree/bindings/fpga/
8017 F:      Documentation/driver-api/fpga/
8018 F:      Documentation/fpga/
8019 F:      drivers/fpga/
8020 F:      include/linux/fpga/
8021
8022 INTEL MAX10 BMC SECURE UPDATES
8023 M:      Russ Weight <russell.h.weight@intel.com>
8024 L:      linux-fpga@vger.kernel.org
8025 S:      Maintained
8026 F:      Documentation/ABI/testing/sysfs-driver-intel-m10-bmc-sec-update
8027 F:      drivers/fpga/intel-m10-bmc-sec-update.c
8028
8029 MICROCHIP POLARFIRE FPGA DRIVERS
8030 M:      Conor Dooley <conor.dooley@microchip.com>
8031 R:      Ivan Bornyakov <i.bornyakov@metrotek.ru>
8032 L:      linux-fpga@vger.kernel.org
8033 S:      Supported
8034 F:      Documentation/devicetree/bindings/fpga/microchip,mpf-spi-fpga-mgr.yaml
8035 F:      drivers/fpga/microchip-spi.c
8036
8037 FPU EMULATOR
8038 M:      Bill Metzenthen <billm@melbpc.org.au>
8039 S:      Maintained
8040 W:      https://floatingpoint.billm.au/
8041 F:      arch/x86/math-emu/
8042
8043 FRAMEBUFFER CORE
8044 M:      Daniel Vetter <daniel@ffwll.ch>
8045 F:      drivers/video/fbdev/core/
8046 S:      Odd Fixes
8047 T:      git git://anongit.freedesktop.org/drm/drm-misc
8048
8049 FRAMEBUFFER LAYER
8050 M:      Helge Deller <deller@gmx.de>
8051 L:      linux-fbdev@vger.kernel.org
8052 L:      dri-devel@lists.freedesktop.org
8053 S:      Maintained
8054 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
8055 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/linux-fbdev.git
8056 F:      Documentation/fb/
8057 F:      drivers/video/
8058 F:      include/linux/fb.h
8059 F:      include/uapi/linux/fb.h
8060 F:      include/uapi/video/
8061 F:      include/video/
8062
8063 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
8064 M:      Horia Geantă <horia.geanta@nxp.com>
8065 M:      Pankaj Gupta <pankaj.gupta@nxp.com>
8066 M:      Gaurav Jain <gaurav.jain@nxp.com>
8067 L:      linux-crypto@vger.kernel.org
8068 S:      Maintained
8069 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
8070 F:      drivers/crypto/caam/
8071
8072 FREESCALE COLDFIRE M5441X MMC DRIVER
8073 M:      Angelo Dureghello <angelo.dureghello@timesys.com>
8074 L:      linux-mmc@vger.kernel.org
8075 S:      Maintained
8076 F:      drivers/mmc/host/sdhci-esdhc-mcf.c
8077 F:      include/linux/platform_data/mmc-esdhc-mcf.h
8078
8079 FREESCALE DIU FRAMEBUFFER DRIVER
8080 M:      Timur Tabi <timur@kernel.org>
8081 L:      linux-fbdev@vger.kernel.org
8082 S:      Maintained
8083 F:      drivers/video/fbdev/fsl-diu-fb.*
8084
8085 FREESCALE DMA DRIVER
8086 M:      Li Yang <leoyang.li@nxp.com>
8087 M:      Zhang Wei <zw@zh-kernel.org>
8088 L:      linuxppc-dev@lists.ozlabs.org
8089 S:      Maintained
8090 F:      drivers/dma/fsldma.*
8091
8092 FREESCALE DSPI DRIVER
8093 M:      Vladimir Oltean <olteanv@gmail.com>
8094 L:      linux-spi@vger.kernel.org
8095 S:      Maintained
8096 F:      Documentation/devicetree/bindings/spi/spi-fsl-dspi.txt
8097 F:      drivers/spi/spi-fsl-dspi.c
8098 F:      include/linux/spi/spi-fsl-dspi.h
8099
8100 FREESCALE ENETC ETHERNET DRIVERS
8101 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
8102 L:      netdev@vger.kernel.org
8103 S:      Maintained
8104 F:      drivers/net/ethernet/freescale/enetc/
8105
8106 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
8107 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
8108 L:      netdev@vger.kernel.org
8109 S:      Maintained
8110 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
8111 F:      drivers/net/ethernet/freescale/gianfar*
8112
8113 FREESCALE GPMI NAND DRIVER
8114 M:      Han Xu <han.xu@nxp.com>
8115 L:      linux-mtd@lists.infradead.org
8116 S:      Maintained
8117 F:      drivers/mtd/nand/raw/gpmi-nand/*
8118
8119 FREESCALE I2C CPM DRIVER
8120 M:      Jochen Friedrich <jochen@scram.de>
8121 L:      linuxppc-dev@lists.ozlabs.org
8122 L:      linux-i2c@vger.kernel.org
8123 S:      Maintained
8124 F:      drivers/i2c/busses/i2c-cpm.c
8125
8126 FREESCALE IMX / MXC FEC DRIVER
8127 M:      Wei Fang <wei.fang@nxp.com>
8128 R:      Shenwei Wang <shenwei.wang@nxp.com>
8129 R:      Clark Wang <xiaoning.wang@nxp.com>
8130 R:      NXP Linux Team <linux-imx@nxp.com>
8131 L:      netdev@vger.kernel.org
8132 S:      Maintained
8133 F:      Documentation/devicetree/bindings/net/fsl,fec.yaml
8134 F:      drivers/net/ethernet/freescale/fec.h
8135 F:      drivers/net/ethernet/freescale/fec_main.c
8136 F:      drivers/net/ethernet/freescale/fec_ptp.c
8137
8138 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
8139 M:      Sascha Hauer <s.hauer@pengutronix.de>
8140 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
8141 L:      linux-fbdev@vger.kernel.org
8142 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8143 S:      Maintained
8144 F:      drivers/video/fbdev/imxfb.c
8145
8146 FREESCALE IMX DDR PMU DRIVER
8147 M:      Frank Li <Frank.li@nxp.com>
8148 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8149 S:      Maintained
8150 F:      Documentation/admin-guide/perf/imx-ddr.rst
8151 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.yaml
8152 F:      drivers/perf/fsl_imx8_ddr_perf.c
8153
8154 FREESCALE IMX I2C DRIVER
8155 M:      Oleksij Rempel <o.rempel@pengutronix.de>
8156 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
8157 L:      linux-i2c@vger.kernel.org
8158 S:      Maintained
8159 F:      Documentation/devicetree/bindings/i2c/i2c-imx.yaml
8160 F:      drivers/i2c/busses/i2c-imx.c
8161
8162 FREESCALE IMX LPI2C DRIVER
8163 M:      Dong Aisheng <aisheng.dong@nxp.com>
8164 L:      linux-i2c@vger.kernel.org
8165 L:      linux-imx@nxp.com
8166 S:      Maintained
8167 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.yaml
8168 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
8169
8170 FREESCALE MPC I2C DRIVER
8171 M:      Chris Packham <chris.packham@alliedtelesis.co.nz>
8172 L:      linux-i2c@vger.kernel.org
8173 S:      Maintained
8174 F:      Documentation/devicetree/bindings/i2c/i2c-mpc.yaml
8175 F:      drivers/i2c/busses/i2c-mpc.c
8176
8177 FREESCALE QORIQ DPAA ETHERNET DRIVER
8178 M:      Madalin Bucur <madalin.bucur@nxp.com>
8179 L:      netdev@vger.kernel.org
8180 S:      Maintained
8181 F:      drivers/net/ethernet/freescale/dpaa
8182
8183 FREESCALE QORIQ DPAA FMAN DRIVER
8184 M:      Madalin Bucur <madalin.bucur@nxp.com>
8185 L:      netdev@vger.kernel.org
8186 S:      Maintained
8187 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
8188 F:      drivers/net/ethernet/freescale/fman
8189
8190 FREESCALE QORIQ PTP CLOCK DRIVER
8191 M:      Yangbo Lu <yangbo.lu@nxp.com>
8192 L:      netdev@vger.kernel.org
8193 S:      Maintained
8194 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
8195 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
8196 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
8197 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
8198 F:      drivers/ptp/ptp_qoriq.c
8199 F:      drivers/ptp/ptp_qoriq_debugfs.c
8200 F:      include/linux/fsl/ptp_qoriq.h
8201
8202 FREESCALE QUAD SPI DRIVER
8203 M:      Han Xu <han.xu@nxp.com>
8204 L:      linux-spi@vger.kernel.org
8205 S:      Maintained
8206 F:      Documentation/devicetree/bindings/spi/fsl,spi-fsl-qspi.yaml
8207 F:      drivers/spi/spi-fsl-qspi.c
8208
8209 FREESCALE QUICC ENGINE LIBRARY
8210 M:      Qiang Zhao <qiang.zhao@nxp.com>
8211 L:      linuxppc-dev@lists.ozlabs.org
8212 S:      Maintained
8213 F:      drivers/soc/fsl/qe/
8214 F:      include/soc/fsl/qe/
8215
8216 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
8217 M:      Li Yang <leoyang.li@nxp.com>
8218 L:      netdev@vger.kernel.org
8219 L:      linuxppc-dev@lists.ozlabs.org
8220 S:      Maintained
8221 F:      drivers/net/ethernet/freescale/ucc_geth*
8222
8223 FREESCALE QUICC ENGINE UCC HDLC DRIVER
8224 M:      Zhao Qiang <qiang.zhao@nxp.com>
8225 L:      netdev@vger.kernel.org
8226 L:      linuxppc-dev@lists.ozlabs.org
8227 S:      Maintained
8228 F:      drivers/net/wan/fsl_ucc_hdlc*
8229
8230 FREESCALE QUICC ENGINE UCC UART DRIVER
8231 M:      Timur Tabi <timur@kernel.org>
8232 L:      linuxppc-dev@lists.ozlabs.org
8233 S:      Maintained
8234 F:      drivers/tty/serial/ucc_uart.c
8235
8236 FREESCALE SOC DRIVERS
8237 M:      Li Yang <leoyang.li@nxp.com>
8238 L:      linuxppc-dev@lists.ozlabs.org
8239 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8240 S:      Maintained
8241 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.yaml
8242 F:      Documentation/devicetree/bindings/soc/fsl/
8243 F:      drivers/soc/fsl/
8244 F:      include/linux/fsl/
8245 F:      include/soc/fsl/
8246
8247 FREESCALE SOC FS_ENET DRIVER
8248 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
8249 L:      linuxppc-dev@lists.ozlabs.org
8250 L:      netdev@vger.kernel.org
8251 S:      Maintained
8252 F:      drivers/net/ethernet/freescale/fs_enet/
8253 F:      include/linux/fs_enet_pd.h
8254
8255 FREESCALE SOC SOUND DRIVERS
8256 M:      Shengjiu Wang <shengjiu.wang@gmail.com>
8257 M:      Xiubo Li <Xiubo.Lee@gmail.com>
8258 R:      Fabio Estevam <festevam@gmail.com>
8259 R:      Nicolin Chen <nicoleotsuka@gmail.com>
8260 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8261 L:      linuxppc-dev@lists.ozlabs.org
8262 S:      Maintained
8263 F:      sound/soc/fsl/fsl*
8264 F:      sound/soc/fsl/imx*
8265 F:      sound/soc/fsl/mpc8610_hpcd.c
8266
8267 FREESCALE USB PERIPHERAL DRIVERS
8268 M:      Li Yang <leoyang.li@nxp.com>
8269 L:      linux-usb@vger.kernel.org
8270 L:      linuxppc-dev@lists.ozlabs.org
8271 S:      Maintained
8272 F:      drivers/usb/gadget/udc/fsl*
8273
8274 FREESCALE USB PHY DRIVER
8275 M:      Ran Wang <ran.wang_1@nxp.com>
8276 L:      linux-usb@vger.kernel.org
8277 L:      linuxppc-dev@lists.ozlabs.org
8278 S:      Maintained
8279 F:      drivers/usb/phy/phy-fsl-usb*
8280
8281 FREEVXFS FILESYSTEM
8282 M:      Christoph Hellwig <hch@infradead.org>
8283 S:      Maintained
8284 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
8285 F:      fs/freevxfs/
8286
8287 FREEZER
8288 M:      "Rafael J. Wysocki" <rafael@kernel.org>
8289 M:      Pavel Machek <pavel@ucw.cz>
8290 L:      linux-pm@vger.kernel.org
8291 S:      Supported
8292 F:      Documentation/power/freezing-of-tasks.rst
8293 F:      include/linux/freezer.h
8294 F:      kernel/freezer.c
8295
8296 FRONTSWAP API
8297 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
8298 L:      linux-kernel@vger.kernel.org
8299 S:      Maintained
8300 F:      include/linux/frontswap.h
8301 F:      mm/frontswap.c
8302
8303 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
8304 M:      David Howells <dhowells@redhat.com>
8305 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
8306 S:      Supported
8307 F:      Documentation/filesystems/caching/
8308 F:      fs/fscache/
8309 F:      include/linux/fscache*.h
8310
8311 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
8312 M:      Eric Biggers <ebiggers@kernel.org>
8313 M:      Theodore Y. Ts'o <tytso@mit.edu>
8314 M:      Jaegeuk Kim <jaegeuk@kernel.org>
8315 L:      linux-fscrypt@vger.kernel.org
8316 S:      Supported
8317 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
8318 T:      git https://git.kernel.org/pub/scm/fs/fscrypt/linux.git
8319 F:      Documentation/filesystems/fscrypt.rst
8320 F:      fs/crypto/
8321 F:      include/linux/fscrypt.h
8322 F:      include/uapi/linux/fscrypt.h
8323
8324 FSI SUBSYSTEM
8325 M:      Jeremy Kerr <jk@ozlabs.org>
8326 M:      Joel Stanley <joel@jms.id.au>
8327 R:      Alistar Popple <alistair@popple.id.au>
8328 R:      Eddie James <eajames@linux.ibm.com>
8329 L:      linux-fsi@lists.ozlabs.org
8330 S:      Supported
8331 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
8332 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
8333 F:      drivers/fsi/
8334 F:      include/linux/fsi*.h
8335 F:      include/trace/events/fsi*.h
8336
8337 FSI-ATTACHED I2C DRIVER
8338 M:      Eddie James <eajames@linux.ibm.com>
8339 L:      linux-i2c@vger.kernel.org
8340 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
8341 S:      Maintained
8342 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
8343 F:      drivers/i2c/busses/i2c-fsi.c
8344
8345 FSI-ATTACHED SPI DRIVER
8346 M:      Eddie James <eajames@linux.ibm.com>
8347 L:      linux-spi@vger.kernel.org
8348 S:      Maintained
8349 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
8350 F:      drivers/spi/spi-fsi.c
8351
8352 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
8353 M:      Jan Kara <jack@suse.cz>
8354 R:      Amir Goldstein <amir73il@gmail.com>
8355 L:      linux-fsdevel@vger.kernel.org
8356 S:      Maintained
8357 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
8358 F:      fs/notify/
8359 F:      include/linux/fsnotify*.h
8360
8361 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
8362 M:      Eric Biggers <ebiggers@kernel.org>
8363 M:      Theodore Y. Ts'o <tytso@mit.edu>
8364 L:      fsverity@lists.linux.dev
8365 S:      Supported
8366 Q:      https://patchwork.kernel.org/project/fsverity/list/
8367 T:      git https://git.kernel.org/pub/scm/fs/fsverity/linux.git
8368 F:      Documentation/filesystems/fsverity.rst
8369 F:      fs/verity/
8370 F:      include/linux/fsverity.h
8371 F:      include/uapi/linux/fsverity.h
8372
8373 FT260 FTDI USB-HID TO I2C BRIDGE DRIVER
8374 M:      Michael Zaidman <michael.zaidman@gmail.com>
8375 L:      linux-i2c@vger.kernel.org
8376 L:      linux-input@vger.kernel.org
8377 S:      Maintained
8378 F:      drivers/hid/hid-ft260.c
8379
8380 FUJITSU LAPTOP EXTRAS
8381 M:      Jonathan Woithe <jwoithe@just42.net>
8382 L:      platform-driver-x86@vger.kernel.org
8383 S:      Maintained
8384 F:      drivers/platform/x86/fujitsu-laptop.c
8385
8386 FUJITSU M-5MO LS CAMERA ISP DRIVER
8387 M:      Kyungmin Park <kyungmin.park@samsung.com>
8388 M:      Heungjun Kim <riverful.kim@samsung.com>
8389 L:      linux-media@vger.kernel.org
8390 S:      Maintained
8391 F:      drivers/media/i2c/m5mols/
8392 F:      include/media/i2c/m5mols.h
8393
8394 FUJITSU TABLET EXTRAS
8395 M:      Robert Gerlach <khnz@gmx.de>
8396 L:      platform-driver-x86@vger.kernel.org
8397 S:      Maintained
8398 F:      drivers/platform/x86/fujitsu-tablet.c
8399
8400 FUNCTION HOOKS (FTRACE)
8401 M:      Steven Rostedt <rostedt@goodmis.org>
8402 M:      Masami Hiramatsu <mhiramat@kernel.org>
8403 R:      Mark Rutland <mark.rutland@arm.com>
8404 L:      linux-kernel@vger.kernel.org
8405 L:      linux-trace-kernel@vger.kernel.org
8406 Q:      https://patchwork.kernel.org/project/linux-trace-kernel/list/
8407 S:      Maintained
8408 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace.git
8409 F:      Documentation/trace/ftrace*
8410 F:      kernel/trace/ftrace*
8411 F:      kernel/trace/fgraph.c
8412 F:      arch/*/*/*/*ftrace*
8413 F:      arch/*/*/*ftrace*
8414 F:      include/*/ftrace.h
8415 F:      samples/ftrace
8416
8417 FUNGIBLE ETHERNET DRIVERS
8418 M:      Dimitris Michailidis <dmichail@fungible.com>
8419 L:      netdev@vger.kernel.org
8420 S:      Supported
8421 F:      drivers/net/ethernet/fungible/
8422
8423 FUSE: FILESYSTEM IN USERSPACE
8424 M:      Miklos Szeredi <miklos@szeredi.hu>
8425 L:      linux-fsdevel@vger.kernel.org
8426 S:      Maintained
8427 W:      https://github.com/libfuse/
8428 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
8429 F:      Documentation/filesystems/fuse.rst
8430 F:      fs/fuse/
8431 F:      include/uapi/linux/fuse.h
8432
8433 FUTEX SUBSYSTEM
8434 M:      Thomas Gleixner <tglx@linutronix.de>
8435 M:      Ingo Molnar <mingo@redhat.com>
8436 R:      Peter Zijlstra <peterz@infradead.org>
8437 R:      Darren Hart <dvhart@infradead.org>
8438 R:      Davidlohr Bueso <dave@stgolabs.net>
8439 R:      André Almeida <andrealmeid@igalia.com>
8440 L:      linux-kernel@vger.kernel.org
8441 S:      Maintained
8442 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
8443 F:      Documentation/locking/*futex*
8444 F:      include/asm-generic/futex.h
8445 F:      include/linux/futex.h
8446 F:      include/uapi/linux/futex.h
8447 F:      kernel/futex/*
8448 F:      tools/perf/bench/futex*
8449 F:      tools/testing/selftests/futex/
8450
8451 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
8452 M:      Tim Harvey <tharvey@gateworks.com>
8453 S:      Maintained
8454 F:      Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
8455 F:      drivers/mfd/gateworks-gsc.c
8456 F:      include/linux/mfd/gsc.h
8457 F:      Documentation/hwmon/gsc-hwmon.rst
8458 F:      drivers/hwmon/gsc-hwmon.c
8459 F:      include/linux/platform_data/gsc_hwmon.h
8460
8461 GCC PLUGINS
8462 M:      Kees Cook <keescook@chromium.org>
8463 L:      linux-hardening@vger.kernel.org
8464 S:      Maintained
8465 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
8466 F:      Documentation/kbuild/gcc-plugins.rst
8467 F:      scripts/Makefile.gcc-plugins
8468 F:      scripts/gcc-plugins/
8469
8470 GCOV BASED KERNEL PROFILING
8471 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
8472 S:      Maintained
8473 F:      Documentation/dev-tools/gcov.rst
8474 F:      kernel/gcov/
8475
8476 GDB KERNEL DEBUGGING HELPER SCRIPTS
8477 M:      Jan Kiszka <jan.kiszka@siemens.com>
8478 M:      Kieran Bingham <kbingham@kernel.org>
8479 S:      Supported
8480 F:      scripts/gdb/
8481
8482 GEMINI CRYPTO DRIVER
8483 M:      Corentin Labbe <clabbe@baylibre.com>
8484 L:      linux-crypto@vger.kernel.org
8485 S:      Maintained
8486 F:      drivers/crypto/gemini/
8487
8488 GEMTEK FM RADIO RECEIVER DRIVER
8489 M:      Hans Verkuil <hverkuil@xs4all.nl>
8490 L:      linux-media@vger.kernel.org
8491 S:      Maintained
8492 W:      https://linuxtv.org
8493 T:      git git://linuxtv.org/media_tree.git
8494 F:      drivers/media/radio/radio-gemtek*
8495
8496 GENERIC ARCHITECTURE TOPOLOGY
8497 M:      Sudeep Holla <sudeep.holla@arm.com>
8498 L:      linux-kernel@vger.kernel.org
8499 S:      Maintained
8500 F:      drivers/base/arch_topology.c
8501 F:      include/linux/arch_topology.h
8502
8503 GENERIC ENTRY CODE
8504 M:      Thomas Gleixner <tglx@linutronix.de>
8505 M:      Peter Zijlstra <peterz@infradead.org>
8506 M:      Andy Lutomirski <luto@kernel.org>
8507 L:      linux-kernel@vger.kernel.org
8508 S:      Maintained
8509 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/entry
8510 F:      include/linux/entry-common.h
8511 F:      include/linux/entry-kvm.h
8512 F:      kernel/entry/
8513
8514 GENERIC GPIO I2C DRIVER
8515 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
8516 S:      Supported
8517 F:      drivers/i2c/busses/i2c-gpio.c
8518 F:      include/linux/platform_data/i2c-gpio.h
8519
8520 GENERIC GPIO I2C MULTIPLEXER DRIVER
8521 M:      Peter Korsgaard <peter.korsgaard@barco.com>
8522 L:      linux-i2c@vger.kernel.org
8523 S:      Supported
8524 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
8525 F:      drivers/i2c/muxes/i2c-mux-gpio.c
8526 F:      include/linux/platform_data/i2c-mux-gpio.h
8527
8528 GENERIC HDLC (WAN) DRIVERS
8529 M:      Krzysztof Halasa <khc@pm.waw.pl>
8530 S:      Maintained
8531 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
8532 F:      drivers/net/wan/c101.c
8533 F:      drivers/net/wan/hd6457*
8534 F:      drivers/net/wan/hdlc*
8535 F:      drivers/net/wan/n2.c
8536 F:      drivers/net/wan/pc300too.c
8537 F:      drivers/net/wan/pci200syn.c
8538 F:      drivers/net/wan/wanxl*
8539
8540 GENERIC INCLUDE/ASM HEADER FILES
8541 M:      Arnd Bergmann <arnd@arndb.de>
8542 L:      linux-arch@vger.kernel.org
8543 S:      Maintained
8544 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
8545 F:      include/asm-generic/
8546 F:      include/uapi/asm-generic/
8547
8548 GENERIC PHY FRAMEWORK
8549 M:      Vinod Koul <vkoul@kernel.org>
8550 M:      Kishon Vijay Abraham I <kishon@kernel.org>
8551 L:      linux-phy@lists.infradead.org
8552 S:      Supported
8553 Q:      https://patchwork.kernel.org/project/linux-phy/list/
8554 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
8555 F:      Documentation/devicetree/bindings/phy/
8556 F:      drivers/phy/
8557 F:      include/dt-bindings/phy/
8558 F:      include/linux/phy/
8559
8560 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
8561 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
8562 S:      Supported
8563 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
8564
8565 GENERIC PM DOMAINS
8566 M:      "Rafael J. Wysocki" <rafael@kernel.org>
8567 M:      Kevin Hilman <khilman@kernel.org>
8568 M:      Ulf Hansson <ulf.hansson@linaro.org>
8569 L:      linux-pm@vger.kernel.org
8570 S:      Supported
8571 F:      Documentation/devicetree/bindings/power/power?domain*
8572 F:      drivers/base/power/domain*.c
8573 F:      include/linux/pm_domain.h
8574
8575 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
8576 M:      Eugen Hristev <eugen.hristev@microchip.com>
8577 L:      linux-input@vger.kernel.org
8578 S:      Maintained
8579 F:      drivers/input/touchscreen/resistive-adc-touch.c
8580
8581 GENERIC STRING LIBRARY
8582 R:      Andy Shevchenko <andy@kernel.org>
8583 S:      Maintained
8584 F:      lib/string.c
8585 F:      lib/string_helpers.c
8586 F:      lib/test_string.c
8587 F:      lib/test-string_helpers.c
8588
8589 GENERIC UIO DRIVER FOR PCI DEVICES
8590 M:      "Michael S. Tsirkin" <mst@redhat.com>
8591 L:      kvm@vger.kernel.org
8592 S:      Supported
8593 F:      drivers/uio/uio_pci_generic.c
8594
8595 GENERIC VDSO LIBRARY
8596 M:      Andy Lutomirski <luto@kernel.org>
8597 M:      Thomas Gleixner <tglx@linutronix.de>
8598 M:      Vincenzo Frascino <vincenzo.frascino@arm.com>
8599 L:      linux-kernel@vger.kernel.org
8600 S:      Maintained
8601 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
8602 F:      include/asm-generic/vdso/vsyscall.h
8603 F:      include/vdso/
8604 F:      kernel/time/vsyscall.c
8605 F:      lib/vdso/
8606
8607 GENWQE (IBM Generic Workqueue Card)
8608 M:      Frank Haverkamp <haver@linux.ibm.com>
8609 S:      Supported
8610 F:      drivers/misc/genwqe/
8611
8612 GET_MAINTAINER SCRIPT
8613 M:      Joe Perches <joe@perches.com>
8614 S:      Maintained
8615 F:      scripts/get_maintainer.pl
8616
8617 GFS2 FILE SYSTEM
8618 M:      Bob Peterson <rpeterso@redhat.com>
8619 M:      Andreas Gruenbacher <agruenba@redhat.com>
8620 L:      cluster-devel@redhat.com
8621 S:      Supported
8622 B:      https://bugzilla.kernel.org/enter_bug.cgi?product=File%20System&component=gfs2
8623 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
8624 F:      Documentation/filesystems/gfs2*
8625 F:      fs/gfs2/
8626 F:      include/uapi/linux/gfs2_ondisk.h
8627
8628 GIGABYTE WMI DRIVER
8629 M:      Thomas Weißschuh <thomas@weissschuh.net>
8630 L:      platform-driver-x86@vger.kernel.org
8631 S:      Maintained
8632 F:      drivers/platform/x86/gigabyte-wmi.c
8633
8634 GNSS SUBSYSTEM
8635 M:      Johan Hovold <johan@kernel.org>
8636 S:      Maintained
8637 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
8638 F:      Documentation/ABI/testing/sysfs-class-gnss
8639 F:      Documentation/devicetree/bindings/gnss/
8640 F:      drivers/gnss/
8641 F:      include/linux/gnss.h
8642
8643 GO7007 MPEG CODEC
8644 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
8645 L:      linux-media@vger.kernel.org
8646 S:      Maintained
8647 F:      drivers/media/usb/go7007/
8648
8649 GOODIX TOUCHSCREEN
8650 M:      Bastien Nocera <hadess@hadess.net>
8651 M:      Hans de Goede <hdegoede@redhat.com>
8652 L:      linux-input@vger.kernel.org
8653 S:      Maintained
8654 F:      drivers/input/touchscreen/goodix*
8655
8656 GOOGLE ETHERNET DRIVERS
8657 M:      Jeroen de Borst <jeroendb@google.com>
8658 M:      Catherine Sullivan <csully@google.com>
8659 R:      Shailend Chand <shailend@google.com>
8660 L:      netdev@vger.kernel.org
8661 S:      Supported
8662 F:      Documentation/networking/device_drivers/ethernet/google/gve.rst
8663 F:      drivers/net/ethernet/google
8664
8665 GPD POCKET FAN DRIVER
8666 M:      Hans de Goede <hdegoede@redhat.com>
8667 L:      platform-driver-x86@vger.kernel.org
8668 S:      Maintained
8669 F:      drivers/platform/x86/gpd-pocket-fan.c
8670
8671 GPIO ACPI SUPPORT
8672 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8673 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8674 L:      linux-gpio@vger.kernel.org
8675 L:      linux-acpi@vger.kernel.org
8676 S:      Supported
8677 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8678 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
8679 F:      drivers/gpio/gpiolib-acpi.c
8680 F:      drivers/gpio/gpiolib-acpi.h
8681
8682 GPIO AGGREGATOR
8683 M:      Geert Uytterhoeven <geert+renesas@glider.be>
8684 L:      linux-gpio@vger.kernel.org
8685 S:      Supported
8686 F:      Documentation/admin-guide/gpio/gpio-aggregator.rst
8687 F:      drivers/gpio/gpio-aggregator.c
8688
8689 GPIO IR Transmitter
8690 M:      Sean Young <sean@mess.org>
8691 L:      linux-media@vger.kernel.org
8692 S:      Maintained
8693 F:      Documentation/devicetree/bindings/leds/irled/gpio-ir-tx.yaml
8694 F:      drivers/media/rc/gpio-ir-tx.c
8695
8696 GPIO MOCKUP DRIVER
8697 M:      Bamvor Jian Zhang <bamv2005@gmail.com>
8698 L:      linux-gpio@vger.kernel.org
8699 S:      Maintained
8700 F:      drivers/gpio/gpio-mockup.c
8701 F:      tools/testing/selftests/gpio/
8702
8703 GPIO REGMAP
8704 R:      Michael Walle <michael@walle.cc>
8705 S:      Maintained
8706 F:      drivers/gpio/gpio-regmap.c
8707 F:      include/linux/gpio/regmap.h
8708
8709 GPIO SUBSYSTEM
8710 M:      Linus Walleij <linus.walleij@linaro.org>
8711 M:      Bartosz Golaszewski <brgl@bgdev.pl>
8712 L:      linux-gpio@vger.kernel.org
8713 S:      Maintained
8714 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
8715 F:      Documentation/ABI/obsolete/sysfs-gpio
8716 F:      Documentation/ABI/testing/gpio-cdev
8717 F:      Documentation/admin-guide/gpio/
8718 F:      Documentation/devicetree/bindings/gpio/
8719 F:      Documentation/driver-api/gpio/
8720 F:      drivers/gpio/
8721 F:      include/asm-generic/gpio.h
8722 F:      include/dt-bindings/gpio/
8723 F:      include/linux/gpio.h
8724 F:      include/linux/gpio/
8725 F:      include/linux/of_gpio.h
8726 F:      include/uapi/linux/gpio.h
8727 F:      tools/gpio/
8728
8729 GRE DEMULTIPLEXER DRIVER
8730 M:      Dmitry Kozlov <xeb@mail.ru>
8731 L:      netdev@vger.kernel.org
8732 S:      Maintained
8733 F:      include/net/gre.h
8734 F:      net/ipv4/gre_demux.c
8735 F:      net/ipv4/gre_offload.c
8736
8737 GRETH 10/100/1G Ethernet MAC device driver
8738 M:      Andreas Larsson <andreas@gaisler.com>
8739 L:      netdev@vger.kernel.org
8740 S:      Maintained
8741 F:      drivers/net/ethernet/aeroflex/
8742
8743 GREYBUS AUDIO PROTOCOLS DRIVERS
8744 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
8745 M:      Mark Greer <mgreer@animalcreek.com>
8746 S:      Maintained
8747 F:      drivers/staging/greybus/audio_apbridgea.c
8748 F:      drivers/staging/greybus/audio_apbridgea.h
8749 F:      drivers/staging/greybus/audio_codec.c
8750 F:      drivers/staging/greybus/audio_codec.h
8751 F:      drivers/staging/greybus/audio_gb.c
8752 F:      drivers/staging/greybus/audio_manager.c
8753 F:      drivers/staging/greybus/audio_manager.h
8754 F:      drivers/staging/greybus/audio_manager_module.c
8755 F:      drivers/staging/greybus/audio_manager_private.h
8756 F:      drivers/staging/greybus/audio_manager_sysfs.c
8757 F:      drivers/staging/greybus/audio_module.c
8758 F:      drivers/staging/greybus/audio_topology.c
8759
8760 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
8761 M:      Viresh Kumar <vireshk@kernel.org>
8762 S:      Maintained
8763 F:      drivers/staging/greybus/authentication.c
8764 F:      drivers/staging/greybus/bootrom.c
8765 F:      drivers/staging/greybus/firmware.h
8766 F:      drivers/staging/greybus/fw-core.c
8767 F:      drivers/staging/greybus/fw-download.c
8768 F:      drivers/staging/greybus/fw-management.c
8769 F:      drivers/staging/greybus/greybus_authentication.h
8770 F:      drivers/staging/greybus/greybus_firmware.h
8771 F:      drivers/staging/greybus/hid.c
8772 F:      drivers/staging/greybus/i2c.c
8773 F:      drivers/staging/greybus/spi.c
8774 F:      drivers/staging/greybus/spilib.c
8775 F:      drivers/staging/greybus/spilib.h
8776
8777 GREYBUS LOOPBACK DRIVER
8778 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
8779 S:      Maintained
8780 F:      drivers/staging/greybus/loopback.c
8781
8782 GREYBUS PLATFORM DRIVERS
8783 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
8784 S:      Maintained
8785 F:      drivers/staging/greybus/arche-apb-ctrl.c
8786 F:      drivers/staging/greybus/arche-platform.c
8787 F:      drivers/staging/greybus/arche_platform.h
8788
8789 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
8790 M:      Rui Miguel Silva <rmfrfs@gmail.com>
8791 S:      Maintained
8792 F:      drivers/staging/greybus/gpio.c
8793 F:      drivers/staging/greybus/light.c
8794 F:      drivers/staging/greybus/power_supply.c
8795 F:      drivers/staging/greybus/sdio.c
8796 F:      drivers/staging/greybus/spi.c
8797 F:      drivers/staging/greybus/spilib.c
8798
8799 GREYBUS SUBSYSTEM
8800 M:      Johan Hovold <johan@kernel.org>
8801 M:      Alex Elder <elder@kernel.org>
8802 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8803 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
8804 S:      Maintained
8805 F:      drivers/greybus/
8806 F:      drivers/staging/greybus/
8807 F:      include/linux/greybus.h
8808 F:      include/linux/greybus/
8809
8810 GREYBUS UART PROTOCOLS DRIVERS
8811 M:      David Lin <dtwlin@gmail.com>
8812 S:      Maintained
8813 F:      drivers/staging/greybus/log.c
8814 F:      drivers/staging/greybus/uart.c
8815
8816 GS1662 VIDEO SERIALIZER
8817 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
8818 L:      linux-media@vger.kernel.org
8819 S:      Maintained
8820 T:      git git://linuxtv.org/media_tree.git
8821 F:      drivers/media/spi/gs1662.c
8822
8823 GSPCA FINEPIX SUBDRIVER
8824 M:      Frank Zago <frank@zago.net>
8825 L:      linux-media@vger.kernel.org
8826 S:      Maintained
8827 T:      git git://linuxtv.org/media_tree.git
8828 F:      drivers/media/usb/gspca/finepix.c
8829
8830 GSPCA GL860 SUBDRIVER
8831 M:      Olivier Lorin <o.lorin@laposte.net>
8832 L:      linux-media@vger.kernel.org
8833 S:      Maintained
8834 T:      git git://linuxtv.org/media_tree.git
8835 F:      drivers/media/usb/gspca/gl860/
8836
8837 GSPCA M5602 SUBDRIVER
8838 M:      Erik Andren <erik.andren@gmail.com>
8839 L:      linux-media@vger.kernel.org
8840 S:      Maintained
8841 T:      git git://linuxtv.org/media_tree.git
8842 F:      drivers/media/usb/gspca/m5602/
8843
8844 GSPCA PAC207 SONIXB SUBDRIVER
8845 M:      Hans Verkuil <hverkuil@xs4all.nl>
8846 L:      linux-media@vger.kernel.org
8847 S:      Odd Fixes
8848 T:      git git://linuxtv.org/media_tree.git
8849 F:      drivers/media/usb/gspca/pac207.c
8850
8851 GSPCA SN9C20X SUBDRIVER
8852 M:      Brian Johnson <brijohn@gmail.com>
8853 L:      linux-media@vger.kernel.org
8854 S:      Maintained
8855 T:      git git://linuxtv.org/media_tree.git
8856 F:      drivers/media/usb/gspca/sn9c20x.c
8857
8858 GSPCA T613 SUBDRIVER
8859 M:      Leandro Costantino <lcostantino@gmail.com>
8860 L:      linux-media@vger.kernel.org
8861 S:      Maintained
8862 T:      git git://linuxtv.org/media_tree.git
8863 F:      drivers/media/usb/gspca/t613.c
8864
8865 GSPCA USB WEBCAM DRIVER
8866 M:      Hans Verkuil <hverkuil@xs4all.nl>
8867 L:      linux-media@vger.kernel.org
8868 S:      Odd Fixes
8869 T:      git git://linuxtv.org/media_tree.git
8870 F:      drivers/media/usb/gspca/
8871
8872 GTP (GPRS Tunneling Protocol)
8873 M:      Pablo Neira Ayuso <pablo@netfilter.org>
8874 M:      Harald Welte <laforge@gnumonks.org>
8875 L:      osmocom-net-gprs@lists.osmocom.org
8876 S:      Maintained
8877 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
8878 F:      drivers/net/gtp.c
8879
8880 GUID PARTITION TABLE (GPT)
8881 M:      Davidlohr Bueso <dave@stgolabs.net>
8882 L:      linux-efi@vger.kernel.org
8883 S:      Maintained
8884 F:      block/partitions/efi.*
8885
8886 HABANALABS PCI DRIVER
8887 M:      Oded Gabbay <ogabbay@kernel.org>
8888 S:      Supported
8889 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/linux.git
8890 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
8891 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
8892 F:      drivers/misc/habanalabs/
8893 F:      include/trace/events/habanalabs.h
8894 F:      include/uapi/misc/habanalabs.h
8895
8896 HACKRF MEDIA DRIVER
8897 M:      Antti Palosaari <crope@iki.fi>
8898 L:      linux-media@vger.kernel.org
8899 S:      Maintained
8900 W:      https://linuxtv.org
8901 W:      http://palosaari.fi/linux/
8902 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8903 T:      git git://linuxtv.org/anttip/media_tree.git
8904 F:      drivers/media/usb/hackrf/
8905
8906 HANTRO VPU CODEC DRIVER
8907 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
8908 M:      Philipp Zabel <p.zabel@pengutronix.de>
8909 L:      linux-media@vger.kernel.org
8910 L:      linux-rockchip@lists.infradead.org
8911 S:      Maintained
8912 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
8913 F:      Documentation/devicetree/bindings/media/rockchip,rk3568-vepu.yaml
8914 F:      Documentation/devicetree/bindings/media/rockchip-vpu.yaml
8915 F:      drivers/media/platform/verisilicon/
8916
8917 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
8918 M:      Frank Seidel <frank@f-seidel.de>
8919 L:      platform-driver-x86@vger.kernel.org
8920 S:      Maintained
8921 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
8922 F:      drivers/platform/x86/hdaps.c
8923
8924 HARDWARE MONITORING
8925 M:      Jean Delvare <jdelvare@suse.com>
8926 M:      Guenter Roeck <linux@roeck-us.net>
8927 L:      linux-hwmon@vger.kernel.org
8928 S:      Maintained
8929 W:      http://hwmon.wiki.kernel.org/
8930 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8931 F:      Documentation/ABI/testing/sysfs-class-hwmon
8932 F:      Documentation/devicetree/bindings/hwmon/
8933 F:      Documentation/hwmon/
8934 F:      drivers/hwmon/
8935 F:      include/linux/hwmon*.h
8936 F:      include/trace/events/hwmon*.h
8937 K:      (devm_)?hwmon_device_(un)?register(|_with_groups|_with_info)
8938
8939 HARDWARE RANDOM NUMBER GENERATOR CORE
8940 M:      Olivia Mackall <olivia@selenic.com>
8941 M:      Herbert Xu <herbert@gondor.apana.org.au>
8942 L:      linux-crypto@vger.kernel.org
8943 S:      Odd fixes
8944 F:      Documentation/admin-guide/hw_random.rst
8945 F:      Documentation/devicetree/bindings/rng/
8946 F:      drivers/char/hw_random/
8947 F:      include/linux/hw_random.h
8948
8949 HARDWARE SPINLOCK CORE
8950 M:      Ohad Ben-Cohen <ohad@wizery.com>
8951 M:      Bjorn Andersson <andersson@kernel.org>
8952 R:      Baolin Wang <baolin.wang7@gmail.com>
8953 L:      linux-remoteproc@vger.kernel.org
8954 S:      Maintained
8955 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
8956 F:      Documentation/devicetree/bindings/hwlock/
8957 F:      Documentation/locking/hwspinlock.rst
8958 F:      drivers/hwspinlock/
8959 F:      include/linux/hwspinlock.h
8960
8961 HARDWARE TRACING FACILITIES
8962 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
8963 S:      Maintained
8964 F:      drivers/hwtracing/
8965
8966 HARMONY SOUND DRIVER
8967 L:      linux-parisc@vger.kernel.org
8968 S:      Maintained
8969 F:      sound/parisc/harmony.*
8970
8971 HDPVR USB VIDEO ENCODER DRIVER
8972 M:      Hans Verkuil <hverkuil@xs4all.nl>
8973 L:      linux-media@vger.kernel.org
8974 S:      Odd Fixes
8975 W:      https://linuxtv.org
8976 T:      git git://linuxtv.org/media_tree.git
8977 F:      drivers/media/usb/hdpvr/
8978
8979 HEWLETT PACKARD ENTERPRISE ILO CHIF DRIVER
8980 M:      Matt Hsiao <matt.hsiao@hpe.com>
8981 S:      Supported
8982 F:      drivers/misc/hpilo.[ch]
8983
8984 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
8985 M:      Jerry Hoemann <jerry.hoemann@hpe.com>
8986 S:      Supported
8987 F:      Documentation/watchdog/hpwdt.rst
8988 F:      drivers/watchdog/hpwdt.c
8989
8990 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
8991 M:      Don Brace <don.brace@microchip.com>
8992 L:      storagedev@microchip.com
8993 L:      linux-scsi@vger.kernel.org
8994 S:      Supported
8995 F:      Documentation/scsi/hpsa.rst
8996 F:      drivers/scsi/hpsa*.[ch]
8997 F:      include/linux/cciss*.h
8998 F:      include/uapi/linux/cciss*.h
8999
9000 HFI1 DRIVER
9001 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
9002 L:      linux-rdma@vger.kernel.org
9003 S:      Supported
9004 F:      drivers/infiniband/hw/hfi1
9005
9006 HFS FILESYSTEM
9007 L:      linux-fsdevel@vger.kernel.org
9008 S:      Orphan
9009 F:      Documentation/filesystems/hfs.rst
9010 F:      fs/hfs/
9011
9012 HFSPLUS FILESYSTEM
9013 L:      linux-fsdevel@vger.kernel.org
9014 S:      Orphan
9015 F:      Documentation/filesystems/hfsplus.rst
9016 F:      fs/hfsplus/
9017
9018 HGA FRAMEBUFFER DRIVER
9019 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
9020 L:      linux-nvidia@lists.surfsouth.com
9021 S:      Maintained
9022 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
9023 F:      drivers/video/fbdev/hgafb.c
9024
9025 HIBERNATION (aka Software Suspend, aka swsusp)
9026 M:      "Rafael J. Wysocki" <rafael@kernel.org>
9027 M:      Pavel Machek <pavel@ucw.cz>
9028 L:      linux-pm@vger.kernel.org
9029 S:      Supported
9030 B:      https://bugzilla.kernel.org
9031 F:      arch/*/include/asm/suspend*.h
9032 F:      arch/x86/power/
9033 F:      drivers/base/power/
9034 F:      include/linux/freezer.h
9035 F:      include/linux/pm.h
9036 F:      include/linux/suspend.h
9037 F:      kernel/power/
9038
9039 HID CORE LAYER
9040 M:      Jiri Kosina <jikos@kernel.org>
9041 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
9042 L:      linux-input@vger.kernel.org
9043 S:      Maintained
9044 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
9045 F:      drivers/hid/
9046 F:      include/linux/hid*
9047 F:      include/uapi/linux/hid*
9048
9049 HID LOGITECH DRIVERS
9050 R:      Filipe Laíns <lains@riseup.net>
9051 L:      linux-input@vger.kernel.org
9052 S:      Maintained
9053 F:      drivers/hid/hid-logitech-*
9054
9055 HID PLAYSTATION DRIVER
9056 M:      Roderick Colenbrander <roderick.colenbrander@sony.com>
9057 L:      linux-input@vger.kernel.org
9058 S:      Supported
9059 F:      drivers/hid/hid-playstation.c
9060
9061 HID PHOENIX RC FLIGHT CONTROLLER
9062 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
9063 L:      linux-input@vger.kernel.org
9064 S:      Maintained
9065 F:      drivers/hid/hid-pxrc.c
9066
9067 HID SENSOR HUB DRIVERS
9068 M:      Jiri Kosina <jikos@kernel.org>
9069 M:      Jonathan Cameron <jic23@kernel.org>
9070 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9071 L:      linux-input@vger.kernel.org
9072 L:      linux-iio@vger.kernel.org
9073 S:      Maintained
9074 F:      Documentation/hid/hid-sensor*
9075 F:      drivers/hid/hid-sensor-*
9076 F:      drivers/iio/*/hid-*
9077 F:      include/linux/hid-sensor-*
9078
9079 HID VRC-2 CAR CONTROLLER DRIVER
9080 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
9081 L:      linux-input@vger.kernel.org
9082 S:      Maintained
9083 F:      drivers/hid/hid-vrc2.c
9084
9085 HID WACOM DRIVER
9086 M:      Ping Cheng <ping.cheng@wacom.com>
9087 M:      Jason Gerecke  <jason.gerecke@wacom.com>
9088 L:      linux-input@vger.kernel.org
9089 S:      Maintained
9090 F:      drivers/hid/wacom.h
9091 F:      drivers/hid/wacom_*
9092
9093 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
9094 M:      Thomas Gleixner <tglx@linutronix.de>
9095 L:      linux-kernel@vger.kernel.org
9096 S:      Maintained
9097 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
9098 F:      Documentation/timers/
9099 F:      include/linux/clockchips.h
9100 F:      include/linux/hrtimer.h
9101 F:      kernel/time/clockevents.c
9102 F:      kernel/time/hrtimer.c
9103 F:      kernel/time/timer_*.c
9104
9105 HIGH-SPEED SCC DRIVER FOR AX.25
9106 L:      linux-hams@vger.kernel.org
9107 S:      Orphan
9108 F:      drivers/net/hamradio/scc.c
9109
9110 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
9111 M:      HighPoint Linux Team <linux@highpoint-tech.com>
9112 S:      Supported
9113 W:      http://www.highpoint-tech.com
9114 F:      Documentation/scsi/hptiop.rst
9115 F:      drivers/scsi/hptiop.c
9116
9117 HIMAX HX83112B TOUCHSCREEN SUPPORT
9118 M:      Job Noorman <job@noorman.info>
9119 L:      linux-input@vger.kernel.org
9120 S:      Maintained
9121 F:      Documentation/devicetree/bindings/input/touchscreen/himax,hx83112b.yaml
9122 F:      drivers/input/touchscreen/himax_hx83112b.c
9123
9124 HIPPI
9125 M:      Jes Sorensen <jes@trained-monkey.org>
9126 L:      linux-hippi@sunsite.dk
9127 S:      Maintained
9128 F:      drivers/net/hippi/
9129 F:      include/linux/hippidevice.h
9130 F:      include/uapi/linux/if_hippi.h
9131 F:      net/802/hippi.c
9132
9133 HIRSCHMANN HELLCREEK ETHERNET SWITCH DRIVER
9134 M:      Kurt Kanzenbach <kurt@linutronix.de>
9135 L:      netdev@vger.kernel.org
9136 S:      Maintained
9137 F:      Documentation/devicetree/bindings/net/dsa/hirschmann,hellcreek.yaml
9138 F:      drivers/net/dsa/hirschmann/*
9139 F:      include/linux/platform_data/hirschmann-hellcreek.h
9140 F:      net/dsa/tag_hellcreek.c
9141
9142 HISILICON DMA DRIVER
9143 M:      Zhou Wang <wangzhou1@hisilicon.com>
9144 M:      Jie Hai <haijie1@huawei.com>
9145 L:      dmaengine@vger.kernel.org
9146 S:      Maintained
9147 F:      drivers/dma/hisi_dma.c
9148
9149 HISILICON GPIO DRIVER
9150 M:      Jay Fang <f.fangjian@huawei.com>
9151 L:      linux-gpio@vger.kernel.org
9152 S:      Maintained
9153 F:      Documentation/devicetree/bindings/gpio/hisilicon,ascend910-gpio.yaml
9154 F:      drivers/gpio/gpio-hisi.c
9155
9156 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
9157 M:      Longfang Liu <liulongfang@huawei.com>
9158 L:      linux-crypto@vger.kernel.org
9159 S:      Maintained
9160 F:      Documentation/ABI/testing/debugfs-hisi-hpre
9161 F:      drivers/crypto/hisilicon/hpre/hpre.h
9162 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
9163 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
9164
9165 HISILICON I2C CONTROLLER DRIVER
9166 M:      Yicong Yang <yangyicong@hisilicon.com>
9167 L:      linux-i2c@vger.kernel.org
9168 S:      Maintained
9169 W:      https://www.hisilicon.com
9170 F:      Documentation/devicetree/bindings/i2c/hisilicon,ascend910-i2c.yaml
9171 F:      drivers/i2c/busses/i2c-hisi.c
9172
9173 HISILICON LPC BUS DRIVER
9174 M:      Jay Fang <f.fangjian@huawei.com>
9175 S:      Maintained
9176 W:      http://www.hisilicon.com
9177 F:      Documentation/devicetree/bindings/arm/hisilicon/low-pin-count.yaml
9178 F:      drivers/bus/hisi_lpc.c
9179
9180 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
9181 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
9182 M:      Salil Mehta <salil.mehta@huawei.com>
9183 L:      netdev@vger.kernel.org
9184 S:      Maintained
9185 W:      http://www.hisilicon.com
9186 F:      drivers/net/ethernet/hisilicon/hns3/
9187
9188 HISILICON NETWORK SUBSYSTEM DRIVER
9189 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
9190 M:      Salil Mehta <salil.mehta@huawei.com>
9191 L:      netdev@vger.kernel.org
9192 S:      Maintained
9193 W:      http://www.hisilicon.com
9194 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
9195 F:      drivers/net/ethernet/hisilicon/
9196
9197 HIKEY960 ONBOARD USB GPIO HUB DRIVER
9198 M:      John Stultz <jstultz@google.com>
9199 L:      linux-kernel@vger.kernel.org
9200 S:      Maintained
9201 F:      drivers/misc/hisi_hikey_usb.c
9202
9203 HISILICON PMU DRIVER
9204 M:      Shaokun Zhang <zhangshaokun@hisilicon.com>
9205 M:      Jonathan Cameron <jonathan.cameron@huawei.com>
9206 S:      Supported
9207 W:      http://www.hisilicon.com
9208 F:      Documentation/admin-guide/perf/hisi-pcie-pmu.rst
9209 F:      Documentation/admin-guide/perf/hisi-pmu.rst
9210 F:      drivers/perf/hisilicon
9211
9212 HISILICON HNS3 PMU DRIVER
9213 M:      Guangbin Huang <huangguangbin2@huawei.com>
9214 S:      Supported
9215 F:      Documentation/admin-guide/perf/hns3-pmu.rst
9216 F:      drivers/perf/hisilicon/hns3_pmu.c
9217
9218 HISILICON PTT DRIVER
9219 M:      Yicong Yang <yangyicong@hisilicon.com>
9220 L:      linux-kernel@vger.kernel.org
9221 S:      Maintained
9222 F:      Documentation/ABI/testing/sysfs-devices-hisi_ptt
9223 F:      Documentation/trace/hisi-ptt.rst
9224 F:      drivers/hwtracing/ptt/
9225
9226 HISILICON QM DRIVER
9227 M:      Weili Qian <qianweili@huawei.com>
9228 M:      Zhou Wang <wangzhou1@hisilicon.com>
9229 L:      linux-crypto@vger.kernel.org
9230 S:      Maintained
9231 F:      drivers/crypto/hisilicon/Kconfig
9232 F:      drivers/crypto/hisilicon/Makefile
9233 F:      drivers/crypto/hisilicon/qm.c
9234 F:      drivers/crypto/hisilicon/sgl.c
9235 F:      include/linux/hisi_acc_qm.h
9236
9237 HISILICON ZIP Controller DRIVER
9238 M:      Yang Shen <shenyang39@huawei.com>
9239 M:      Zhou Wang <wangzhou1@hisilicon.com>
9240 L:      linux-crypto@vger.kernel.org
9241 S:      Maintained
9242 F:      Documentation/ABI/testing/debugfs-hisi-zip
9243 F:      drivers/crypto/hisilicon/zip/
9244
9245 HISILICON ROCE DRIVER
9246 M:      Haoyue Xu <xuhaoyue1@hisilicon.com>
9247 M:      Wenpeng Liang <liangwenpeng@huawei.com>
9248 L:      linux-rdma@vger.kernel.org
9249 S:      Maintained
9250 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
9251 F:      drivers/infiniband/hw/hns/
9252
9253 HISILICON SAS Controller
9254 M:      Xiang Chen <chenxiang66@hisilicon.com>
9255 S:      Supported
9256 W:      http://www.hisilicon.com
9257 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
9258 F:      drivers/scsi/hisi_sas/
9259
9260 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
9261 M:      Kai Ye <yekai13@huawei.com>
9262 M:      Longfang Liu <liulongfang@huawei.com>
9263 L:      linux-crypto@vger.kernel.org
9264 S:      Maintained
9265 F:      Documentation/ABI/testing/debugfs-hisi-sec
9266 F:      drivers/crypto/hisilicon/sec2/sec.h
9267 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
9268 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
9269 F:      drivers/crypto/hisilicon/sec2/sec_main.c
9270
9271 HISILICON SPI Controller DRIVER FOR KUNPENG SOCS
9272 M:      Jay Fang <f.fangjian@huawei.com>
9273 L:      linux-spi@vger.kernel.org
9274 S:      Maintained
9275 W:      http://www.hisilicon.com
9276 F:      drivers/spi/spi-hisi-kunpeng.c
9277
9278 HISILICON SPMI CONTROLLER DRIVER FOR HIKEY 970
9279 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
9280 L:      linux-kernel@vger.kernel.org
9281 S:      Maintained
9282 F:      Documentation/devicetree/bindings/spmi/hisilicon,hisi-spmi-controller.yaml
9283 F:      drivers/spmi/hisi-spmi-controller.c
9284
9285 HISILICON SPMI PMIC DRIVER FOR HIKEY 6421v600
9286 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
9287 L:      linux-kernel@vger.kernel.org
9288 S:      Maintained
9289 F:      Documentation/devicetree/bindings/mfd/hisilicon,hi6421-spmi-pmic.yaml
9290 F:      drivers/mfd/hi6421-spmi-pmic.c
9291
9292 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
9293 M:      Weili Qian <qianweili@huawei.com>
9294 S:      Maintained
9295 F:      drivers/crypto/hisilicon/trng/trng.c
9296
9297 HISILICON V3XX SPI NOR FLASH Controller Driver
9298 M:      Jay Fang <f.fangjian@huawei.com>
9299 S:      Maintained
9300 W:      http://www.hisilicon.com
9301 F:      drivers/spi/spi-hisi-sfc-v3xx.c
9302
9303 HMM - Heterogeneous Memory Management
9304 M:      Jérôme Glisse <jglisse@redhat.com>
9305 L:      linux-mm@kvack.org
9306 S:      Maintained
9307 F:      Documentation/mm/hmm.rst
9308 F:      include/linux/hmm*
9309 F:      lib/test_hmm*
9310 F:      mm/hmm*
9311 F:      tools/testing/selftests/vm/*hmm*
9312
9313 HOST AP DRIVER
9314 M:      Jouni Malinen <j@w1.fi>
9315 L:      linux-wireless@vger.kernel.org
9316 S:      Obsolete
9317 W:      http://w1.fi/hostap-driver.html
9318 F:      drivers/net/wireless/intersil/hostap/
9319
9320 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
9321 L:      platform-driver-x86@vger.kernel.org
9322 S:      Orphan
9323 F:      drivers/platform/x86/hp/tc1100-wmi.c
9324
9325 HPET:   High Precision Event Timers driver
9326 M:      Clemens Ladisch <clemens@ladisch.de>
9327 S:      Maintained
9328 F:      Documentation/timers/hpet.rst
9329 F:      drivers/char/hpet.c
9330 F:      include/linux/hpet.h
9331 F:      include/uapi/linux/hpet.h
9332
9333 HPET:   x86
9334 S:      Orphan
9335 F:      arch/x86/include/asm/hpet.h
9336 F:      arch/x86/kernel/hpet.c
9337
9338 HPFS FILESYSTEM
9339 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
9340 S:      Maintained
9341 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
9342 F:      fs/hpfs/
9343
9344 HSI SUBSYSTEM
9345 M:      Sebastian Reichel <sre@kernel.org>
9346 S:      Maintained
9347 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
9348 F:      Documentation/ABI/testing/sysfs-bus-hsi
9349 F:      Documentation/driver-api/hsi.rst
9350 F:      drivers/hsi/
9351 F:      include/linux/hsi/
9352 F:      include/uapi/linux/hsi/
9353
9354 HSO 3G MODEM DRIVER
9355 L:      linux-usb@vger.kernel.org
9356 S:      Orphan
9357 F:      drivers/net/usb/hso.c
9358
9359 HSR NETWORK PROTOCOL
9360 L:      netdev@vger.kernel.org
9361 S:      Orphan
9362 F:      net/hsr/
9363
9364 HT16K33 LED CONTROLLER DRIVER
9365 M:      Robin van der Gracht <robin@protonic.nl>
9366 S:      Maintained
9367 F:      Documentation/devicetree/bindings/auxdisplay/holtek,ht16k33.yaml
9368 F:      drivers/auxdisplay/ht16k33.c
9369
9370 HTCPEN TOUCHSCREEN DRIVER
9371 M:      Pau Oliva Fora <pof@eslack.org>
9372 L:      linux-input@vger.kernel.org
9373 S:      Maintained
9374 F:      drivers/input/touchscreen/htcpen.c
9375
9376 HTE SUBSYSTEM
9377 M:      Dipen Patel <dipenp@nvidia.com>
9378 S:      Maintained
9379 F:      Documentation/devicetree/bindings/timestamp/
9380 F:      Documentation/driver-api/hte/
9381 F:      drivers/hte/
9382 F:      include/linux/hte.h
9383
9384 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
9385 M:      Lorenzo Bianconi <lorenzo@kernel.org>
9386 L:      linux-iio@vger.kernel.org
9387 S:      Maintained
9388 W:      http://www.st.com/
9389 F:      Documentation/devicetree/bindings/iio/humidity/st,hts221.yaml
9390 F:      drivers/iio/humidity/hts221*
9391
9392 HUAWEI ETHERNET DRIVER
9393 M:      Cai Huoqing <cai.huoqing@linux.dev>
9394 L:      netdev@vger.kernel.org
9395 S:      Maintained
9396 F:      Documentation/networking/device_drivers/ethernet/huawei/hinic.rst
9397 F:      drivers/net/ethernet/huawei/hinic/
9398
9399 HUGETLB SUBSYSTEM
9400 M:      Mike Kravetz <mike.kravetz@oracle.com>
9401 M:      Muchun Song <muchun.song@linux.dev>
9402 L:      linux-mm@kvack.org
9403 S:      Maintained
9404 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
9405 F:      Documentation/admin-guide/mm/hugetlbpage.rst
9406 F:      Documentation/mm/hugetlbfs_reserv.rst
9407 F:      Documentation/mm/vmemmap_dedup.rst
9408 F:      fs/hugetlbfs/
9409 F:      include/linux/hugetlb.h
9410 F:      mm/hugetlb.c
9411 F:      mm/hugetlb_vmemmap.c
9412 F:      mm/hugetlb_vmemmap.h
9413
9414 HVA ST MEDIA DRIVER
9415 M:      Jean-Christophe Trotin <jean-christophe.trotin@foss.st.com>
9416 L:      linux-media@vger.kernel.org
9417 S:      Supported
9418 W:      https://linuxtv.org
9419 T:      git git://linuxtv.org/media_tree.git
9420 F:      drivers/media/platform/st/sti/hva
9421
9422 HWPOISON MEMORY FAILURE HANDLING
9423 M:      Naoya Horiguchi <naoya.horiguchi@nec.com>
9424 R:      Miaohe Lin <linmiaohe@huawei.com>
9425 L:      linux-mm@kvack.org
9426 S:      Maintained
9427 F:      mm/hwpoison-inject.c
9428 F:      mm/memory-failure.c
9429
9430 HYCON HY46XX TOUCHSCREEN SUPPORT
9431 M:      Giulio Benetti <giulio.benetti@benettiengineering.com>
9432 L:      linux-input@vger.kernel.org
9433 S:      Maintained
9434 F:      Documentation/devicetree/bindings/input/touchscreen/hycon,hy46xx.yaml
9435 F:      drivers/input/touchscreen/hycon-hy46xx.c
9436
9437 HYGON PROCESSOR SUPPORT
9438 M:      Pu Wen <puwen@hygon.cn>
9439 L:      linux-kernel@vger.kernel.org
9440 S:      Maintained
9441 F:      arch/x86/kernel/cpu/hygon.c
9442
9443 HYNIX HI556 SENSOR DRIVER
9444 M:      Shawn Tu <shawnx.tu@intel.com>
9445 L:      linux-media@vger.kernel.org
9446 S:      Maintained
9447 T:      git git://linuxtv.org/media_tree.git
9448 F:      drivers/media/i2c/hi556.c
9449
9450 HYNIX HI846 SENSOR DRIVER
9451 M:      Martin Kepplinger <martin.kepplinger@puri.sm>
9452 L:      linux-media@vger.kernel.org
9453 S:      Maintained
9454 F:      drivers/media/i2c/hi846.c
9455
9456 HYNIX HI847 SENSOR DRIVER
9457 M:      Shawn Tu <shawnx.tu@intel.com>
9458 L:      linux-media@vger.kernel.org
9459 S:      Maintained
9460 F:      drivers/media/i2c/hi847.c
9461
9462 Hyper-V/Azure CORE AND DRIVERS
9463 M:      "K. Y. Srinivasan" <kys@microsoft.com>
9464 M:      Haiyang Zhang <haiyangz@microsoft.com>
9465 M:      Wei Liu <wei.liu@kernel.org>
9466 M:      Dexuan Cui <decui@microsoft.com>
9467 L:      linux-hyperv@vger.kernel.org
9468 S:      Supported
9469 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
9470 F:      Documentation/ABI/stable/sysfs-bus-vmbus
9471 F:      Documentation/ABI/testing/debugfs-hyperv
9472 F:      Documentation/virt/hyperv
9473 F:      Documentation/networking/device_drivers/ethernet/microsoft/netvsc.rst
9474 F:      arch/arm64/hyperv
9475 F:      arch/arm64/include/asm/hyperv-tlfs.h
9476 F:      arch/arm64/include/asm/mshyperv.h
9477 F:      arch/x86/hyperv
9478 F:      arch/x86/include/asm/hyperv-tlfs.h
9479 F:      arch/x86/include/asm/mshyperv.h
9480 F:      arch/x86/include/asm/trace/hyperv.h
9481 F:      arch/x86/kernel/cpu/mshyperv.c
9482 F:      drivers/clocksource/hyperv_timer.c
9483 F:      drivers/hid/hid-hyperv.c
9484 F:      drivers/hv/
9485 F:      drivers/input/serio/hyperv-keyboard.c
9486 F:      drivers/iommu/hyperv-iommu.c
9487 F:      drivers/net/ethernet/microsoft/
9488 F:      drivers/net/hyperv/
9489 F:      drivers/pci/controller/pci-hyperv-intf.c
9490 F:      drivers/pci/controller/pci-hyperv.c
9491 F:      drivers/scsi/storvsc_drv.c
9492 F:      drivers/uio/uio_hv_generic.c
9493 F:      drivers/video/fbdev/hyperv_fb.c
9494 F:      include/asm-generic/hyperv-tlfs.h
9495 F:      include/asm-generic/mshyperv.h
9496 F:      include/clocksource/hyperv_timer.h
9497 F:      include/linux/hyperv.h
9498 F:      include/net/mana
9499 F:      include/uapi/linux/hyperv.h
9500 F:      net/vmw_vsock/hyperv_transport.c
9501 F:      tools/hv/
9502
9503 HYPERBUS SUPPORT
9504 M:      Vignesh Raghavendra <vigneshr@ti.com>
9505 L:      linux-mtd@lists.infradead.org
9506 S:      Supported
9507 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
9508 C:      irc://irc.oftc.net/mtd
9509 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
9510 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.yaml
9511 F:      drivers/mtd/hyperbus/
9512 F:      include/linux/mtd/hyperbus.h
9513
9514 HYPERVISOR VIRTUAL CONSOLE DRIVER
9515 L:      linuxppc-dev@lists.ozlabs.org
9516 S:      Odd Fixes
9517 F:      drivers/tty/hvc/
9518
9519 I2C ACPI SUPPORT
9520 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9521 L:      linux-i2c@vger.kernel.org
9522 L:      linux-acpi@vger.kernel.org
9523 S:      Maintained
9524 F:      drivers/i2c/i2c-core-acpi.c
9525
9526 I2C CONTROLLER DRIVER FOR NVIDIA GPU
9527 M:      Ajay Gupta <ajayg@nvidia.com>
9528 L:      linux-i2c@vger.kernel.org
9529 S:      Maintained
9530 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
9531 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
9532
9533 I2C MUXES
9534 M:      Peter Rosin <peda@axentia.se>
9535 L:      linux-i2c@vger.kernel.org
9536 S:      Maintained
9537 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
9538 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
9539 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
9540 F:      Documentation/i2c/i2c-topology.rst
9541 F:      Documentation/i2c/muxes/
9542 F:      drivers/i2c/i2c-mux.c
9543 F:      drivers/i2c/muxes/
9544 F:      include/linux/i2c-mux.h
9545
9546 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
9547 M:      Gregory CLEMENT <gregory.clement@bootlin.com>
9548 L:      linux-i2c@vger.kernel.org
9549 S:      Maintained
9550 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
9551 F:      drivers/i2c/busses/i2c-mv64xxx.c
9552
9553 I2C OVER PARALLEL PORT
9554 M:      Jean Delvare <jdelvare@suse.com>
9555 L:      linux-i2c@vger.kernel.org
9556 S:      Maintained
9557 F:      Documentation/i2c/busses/i2c-parport.rst
9558 F:      drivers/i2c/busses/i2c-parport.c
9559
9560 I2C SUBSYSTEM
9561 M:      Wolfram Sang <wsa@kernel.org>
9562 L:      linux-i2c@vger.kernel.org
9563 S:      Maintained
9564 W:      https://i2c.wiki.kernel.org/
9565 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
9566 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
9567 F:      Documentation/devicetree/bindings/i2c/i2c.txt
9568 F:      Documentation/i2c/
9569 F:      drivers/i2c/*
9570 F:      include/dt-bindings/i2c/i2c.h
9571 F:      include/linux/i2c-dev.h
9572 F:      include/linux/i2c-smbus.h
9573 F:      include/linux/i2c.h
9574 F:      include/uapi/linux/i2c-*.h
9575 F:      include/uapi/linux/i2c.h
9576
9577 I2C SUBSYSTEM HOST DRIVERS
9578 L:      linux-i2c@vger.kernel.org
9579 S:      Odd Fixes
9580 W:      https://i2c.wiki.kernel.org/
9581 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
9582 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
9583 F:      Documentation/devicetree/bindings/i2c/
9584 F:      drivers/i2c/algos/
9585 F:      drivers/i2c/busses/
9586 F:      include/dt-bindings/i2c/
9587
9588 I2C-TAOS-EVM DRIVER
9589 M:      Jean Delvare <jdelvare@suse.com>
9590 L:      linux-i2c@vger.kernel.org
9591 S:      Maintained
9592 F:      Documentation/i2c/busses/i2c-taos-evm.rst
9593 F:      drivers/i2c/busses/i2c-taos-evm.c
9594
9595 I2C-TINY-USB DRIVER
9596 M:      Till Harbaum <till@harbaum.org>
9597 L:      linux-i2c@vger.kernel.org
9598 S:      Maintained
9599 W:      http://www.harbaum.org/till/i2c_tiny_usb
9600 F:      drivers/i2c/busses/i2c-tiny-usb.c
9601
9602 I2C/SMBUS CONTROLLER DRIVERS FOR PC
9603 M:      Jean Delvare <jdelvare@suse.com>
9604 L:      linux-i2c@vger.kernel.org
9605 S:      Maintained
9606 F:      Documentation/i2c/busses/i2c-ali1535.rst
9607 F:      Documentation/i2c/busses/i2c-ali1563.rst
9608 F:      Documentation/i2c/busses/i2c-ali15x3.rst
9609 F:      Documentation/i2c/busses/i2c-amd756.rst
9610 F:      Documentation/i2c/busses/i2c-amd8111.rst
9611 F:      Documentation/i2c/busses/i2c-i801.rst
9612 F:      Documentation/i2c/busses/i2c-nforce2.rst
9613 F:      Documentation/i2c/busses/i2c-piix4.rst
9614 F:      Documentation/i2c/busses/i2c-sis5595.rst
9615 F:      Documentation/i2c/busses/i2c-sis630.rst
9616 F:      Documentation/i2c/busses/i2c-sis96x.rst
9617 F:      Documentation/i2c/busses/i2c-via.rst
9618 F:      Documentation/i2c/busses/i2c-viapro.rst
9619 F:      drivers/i2c/busses/i2c-ali1535.c
9620 F:      drivers/i2c/busses/i2c-ali1563.c
9621 F:      drivers/i2c/busses/i2c-ali15x3.c
9622 F:      drivers/i2c/busses/i2c-amd756-s4882.c
9623 F:      drivers/i2c/busses/i2c-amd756.c
9624 F:      drivers/i2c/busses/i2c-amd8111.c
9625 F:      drivers/i2c/busses/i2c-i801.c
9626 F:      drivers/i2c/busses/i2c-isch.c
9627 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
9628 F:      drivers/i2c/busses/i2c-nforce2.c
9629 F:      drivers/i2c/busses/i2c-piix4.c
9630 F:      drivers/i2c/busses/i2c-sis5595.c
9631 F:      drivers/i2c/busses/i2c-sis630.c
9632 F:      drivers/i2c/busses/i2c-sis96x.c
9633 F:      drivers/i2c/busses/i2c-via.c
9634 F:      drivers/i2c/busses/i2c-viapro.c
9635
9636 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
9637 M:      Hans de Goede <hdegoede@redhat.com>
9638 L:      linux-i2c@vger.kernel.org
9639 S:      Maintained
9640 F:      drivers/i2c/busses/i2c-cht-wc.c
9641
9642 I2C/SMBUS ISMT DRIVER
9643 M:      Seth Heasley <seth.heasley@intel.com>
9644 M:      Neil Horman <nhorman@tuxdriver.com>
9645 L:      linux-i2c@vger.kernel.org
9646 F:      Documentation/i2c/busses/i2c-ismt.rst
9647 F:      drivers/i2c/busses/i2c-ismt.c
9648
9649 I2C/SMBUS STUB DRIVER
9650 M:      Jean Delvare <jdelvare@suse.com>
9651 L:      linux-i2c@vger.kernel.org
9652 S:      Maintained
9653 F:      drivers/i2c/i2c-stub.c
9654
9655 I3C DRIVER FOR CADENCE I3C MASTER IP
9656 M:      Przemysław Gaj <pgaj@cadence.com>
9657 S:      Maintained
9658 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.yaml
9659 F:      drivers/i3c/master/i3c-master-cdns.c
9660
9661 I3C DRIVER FOR SYNOPSYS DESIGNWARE
9662 S:      Orphan
9663 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.yaml
9664 F:      drivers/i3c/master/dw*
9665
9666 I3C SUBSYSTEM
9667 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
9668 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
9669 S:      Maintained
9670 C:      irc://chat.freenode.net/linux-i3c
9671 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
9672 F:      Documentation/ABI/testing/sysfs-bus-i3c
9673 F:      Documentation/devicetree/bindings/i3c/
9674 F:      Documentation/driver-api/i3c
9675 F:      drivers/i3c/
9676 F:      include/linux/i3c/
9677
9678 IA64 (Itanium) PLATFORM
9679 L:      linux-ia64@vger.kernel.org
9680 S:      Orphan
9681 F:      Documentation/ia64/
9682 F:      arch/ia64/
9683
9684 IBM Operation Panel Input Driver
9685 M:      Eddie James <eajames@linux.ibm.com>
9686 L:      linux-input@vger.kernel.org
9687 S:      Maintained
9688 F:      Documentation/devicetree/bindings/input/ibm,op-panel.yaml
9689 F:      drivers/input/misc/ibm-panel.c
9690
9691 IBM Power 842 compression accelerator
9692 M:      Haren Myneni <haren@us.ibm.com>
9693 S:      Supported
9694 F:      crypto/842.c
9695 F:      drivers/crypto/nx/Kconfig
9696 F:      drivers/crypto/nx/Makefile
9697 F:      drivers/crypto/nx/nx-842*
9698 F:      include/linux/sw842.h
9699 F:      lib/842/
9700
9701 IBM Power in-Nest Crypto Acceleration
9702 M:      Breno Leitão <leitao@debian.org>
9703 M:      Nayna Jain <nayna@linux.ibm.com>
9704 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
9705 L:      linux-crypto@vger.kernel.org
9706 S:      Supported
9707 F:      drivers/crypto/nx/Kconfig
9708 F:      drivers/crypto/nx/Makefile
9709 F:      drivers/crypto/nx/nx-aes*
9710 F:      drivers/crypto/nx/nx-sha*
9711 F:      drivers/crypto/nx/nx.*
9712 F:      drivers/crypto/nx/nx_csbcpb.h
9713 F:      drivers/crypto/nx/nx_debugfs.c
9714
9715 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
9716 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9717 L:      linux-pci@vger.kernel.org
9718 L:      linuxppc-dev@lists.ozlabs.org
9719 S:      Supported
9720 F:      drivers/pci/hotplug/rpadlpar*
9721
9722 IBM Power Linux RAID adapter
9723 M:      Brian King <brking@us.ibm.com>
9724 S:      Supported
9725 F:      drivers/scsi/ipr.*
9726
9727 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
9728 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9729 L:      linux-pci@vger.kernel.org
9730 L:      linuxppc-dev@lists.ozlabs.org
9731 S:      Supported
9732 F:      drivers/pci/hotplug/rpaphp*
9733
9734 IBM Power SRIOV Virtual NIC Device Driver
9735 M:      Haren Myneni <haren@linux.ibm.com>
9736 M:      Rick Lindsley <ricklind@linux.ibm.com>
9737 R:      Nick Child <nnac123@linux.ibm.com>
9738 R:      Dany Madden <danymadden@us.ibm.com>
9739 R:      Thomas Falcon <tlfalcon@linux.ibm.com>
9740 L:      netdev@vger.kernel.org
9741 S:      Supported
9742 F:      drivers/net/ethernet/ibm/ibmvnic.*
9743
9744 IBM Power Virtual Accelerator Switchboard
9745 L:      linuxppc-dev@lists.ozlabs.org
9746 S:      Supported
9747 F:      arch/powerpc/include/asm/vas.h
9748 F:      arch/powerpc/platforms/powernv/copy-paste.h
9749 F:      arch/powerpc/platforms/powernv/vas*
9750
9751 IBM Power Virtual Ethernet Device Driver
9752 M:      Nick Child <nnac123@linux.ibm.com>
9753 L:      netdev@vger.kernel.org
9754 S:      Supported
9755 F:      drivers/net/ethernet/ibm/ibmveth.*
9756
9757 IBM Power Virtual FC Device Drivers
9758 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9759 L:      linux-scsi@vger.kernel.org
9760 S:      Supported
9761 F:      drivers/scsi/ibmvscsi/ibmvfc*
9762
9763 IBM Power Virtual Management Channel Driver
9764 M:      Brad Warrum <bwarrum@linux.ibm.com>
9765 M:      Ritu Agarwal <rituagar@linux.ibm.com>
9766 S:      Supported
9767 F:      drivers/misc/ibmvmc.*
9768
9769 IBM Power Virtual SCSI Device Drivers
9770 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9771 L:      linux-scsi@vger.kernel.org
9772 S:      Supported
9773 F:      drivers/scsi/ibmvscsi/ibmvscsi*
9774 F:      include/scsi/viosrp.h
9775
9776 IBM Power Virtual SCSI Device Target Driver
9777 M:      Michael Cyr <mikecyr@linux.ibm.com>
9778 L:      linux-scsi@vger.kernel.org
9779 L:      target-devel@vger.kernel.org
9780 S:      Supported
9781 F:      drivers/scsi/ibmvscsi_tgt/
9782
9783 IBM Power VMX Cryptographic instructions
9784 M:      Breno Leitão <leitao@debian.org>
9785 M:      Nayna Jain <nayna@linux.ibm.com>
9786 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
9787 L:      linux-crypto@vger.kernel.org
9788 S:      Supported
9789 F:      drivers/crypto/vmx/Kconfig
9790 F:      drivers/crypto/vmx/Makefile
9791 F:      drivers/crypto/vmx/aes*
9792 F:      drivers/crypto/vmx/ghash*
9793 F:      drivers/crypto/vmx/ppc-xlate.pl
9794 F:      drivers/crypto/vmx/vmx.c
9795
9796 IBM ServeRAID RAID DRIVER
9797 S:      Orphan
9798 F:      drivers/scsi/ips.*
9799
9800 ICH LPC AND GPIO DRIVER
9801 M:      Peter Tyser <ptyser@xes-inc.com>
9802 S:      Maintained
9803 F:      drivers/gpio/gpio-ich.c
9804 F:      drivers/mfd/lpc_ich.c
9805
9806 ICY I2C DRIVER
9807 M:      Max Staudt <max@enpas.org>
9808 L:      linux-i2c@vger.kernel.org
9809 S:      Maintained
9810 F:      drivers/i2c/busses/i2c-icy.c
9811
9812 IDEAPAD LAPTOP EXTRAS DRIVER
9813 M:      Ike Panhc <ike.pan@canonical.com>
9814 L:      platform-driver-x86@vger.kernel.org
9815 S:      Maintained
9816 W:      http://launchpad.net/ideapad-laptop
9817 F:      drivers/platform/x86/ideapad-laptop.c
9818
9819 IDEAPAD LAPTOP SLIDEBAR DRIVER
9820 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
9821 L:      linux-input@vger.kernel.org
9822 S:      Maintained
9823 W:      https://github.com/o2genum/ideapad-slidebar
9824 F:      drivers/input/misc/ideapad_slidebar.c
9825
9826 IDMAPPED MOUNTS
9827 M:      Christian Brauner <brauner@kernel.org>
9828 M:      Seth Forshee <sforshee@kernel.org>
9829 L:      linux-fsdevel@vger.kernel.org
9830 S:      Maintained
9831 T:      git://git.kernel.org/pub/scm/linux/kernel/git/vfs/idmapping.git
9832 F:      Documentation/filesystems/idmappings.rst
9833 F:      tools/testing/selftests/mount_setattr/
9834 F:      include/linux/mnt_idmapping.*
9835
9836 IDT VersaClock 5 CLOCK DRIVER
9837 M:      Luca Ceresoli <luca@lucaceresoli.net>
9838 S:      Maintained
9839 F:      Documentation/devicetree/bindings/clock/idt,versaclock5.yaml
9840 F:      drivers/clk/clk-versaclock5.c
9841
9842 IEEE 802.15.4 SUBSYSTEM
9843 M:      Alexander Aring <alex.aring@gmail.com>
9844 M:      Stefan Schmidt <stefan@datenfreihafen.org>
9845 L:      linux-wpan@vger.kernel.org
9846 S:      Maintained
9847 W:      https://linux-wpan.org/
9848 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
9849 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
9850 F:      Documentation/networking/ieee802154.rst
9851 F:      drivers/net/ieee802154/
9852 F:      include/linux/ieee802154.h
9853 F:      include/linux/nl802154.h
9854 F:      include/net/af_ieee802154.h
9855 F:      include/net/cfg802154.h
9856 F:      include/net/ieee802154_netdev.h
9857 F:      include/net/mac802154.h
9858 F:      include/net/nl802154.h
9859 F:      net/ieee802154/
9860 F:      net/mac802154/
9861
9862 IFE PROTOCOL
9863 M:      Yotam Gigi <yotam.gi@gmail.com>
9864 M:      Jamal Hadi Salim <jhs@mojatatu.com>
9865 F:      include/net/ife.h
9866 F:      include/uapi/linux/ife.h
9867 F:      net/ife
9868
9869 IGORPLUG-USB IR RECEIVER
9870 M:      Sean Young <sean@mess.org>
9871 L:      linux-media@vger.kernel.org
9872 S:      Maintained
9873 F:      drivers/media/rc/igorplugusb.c
9874
9875 IGUANAWORKS USB IR TRANSCEIVER
9876 M:      Sean Young <sean@mess.org>
9877 L:      linux-media@vger.kernel.org
9878 S:      Maintained
9879 F:      drivers/media/rc/iguanair.c
9880
9881 IIO DIGITAL POTENTIOMETER DAC
9882 M:      Peter Rosin <peda@axentia.se>
9883 L:      linux-iio@vger.kernel.org
9884 S:      Maintained
9885 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
9886 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.yaml
9887 F:      drivers/iio/dac/dpot-dac.c
9888
9889 IIO ENVELOPE DETECTOR
9890 M:      Peter Rosin <peda@axentia.se>
9891 L:      linux-iio@vger.kernel.org
9892 S:      Maintained
9893 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
9894 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.yaml
9895 F:      drivers/iio/adc/envelope-detector.c
9896
9897 IIO MULTIPLEXER
9898 M:      Peter Rosin <peda@axentia.se>
9899 L:      linux-iio@vger.kernel.org
9900 S:      Maintained
9901 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.yaml
9902 F:      drivers/iio/multiplexer/iio-mux.c
9903
9904 IIO SCMI BASED DRIVER
9905 M:      Jyoti Bhayana <jbhayana@google.com>
9906 L:      linux-iio@vger.kernel.org
9907 S:      Maintained
9908 F:      drivers/iio/common/scmi_sensors/scmi_iio.c
9909
9910 IIO SUBSYSTEM AND DRIVERS
9911 M:      Jonathan Cameron <jic23@kernel.org>
9912 R:      Lars-Peter Clausen <lars@metafoo.de>
9913 L:      linux-iio@vger.kernel.org
9914 S:      Maintained
9915 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
9916 F:      Documentation/ABI/testing/configfs-iio*
9917 F:      Documentation/ABI/testing/sysfs-bus-iio*
9918 F:      Documentation/devicetree/bindings/iio/
9919 F:      drivers/iio/
9920 F:      drivers/staging/iio/
9921 F:      include/dt-bindings/iio/
9922 F:      include/linux/iio/
9923 F:      tools/iio/
9924
9925 IIO UNIT CONVERTER
9926 M:      Peter Rosin <peda@axentia.se>
9927 L:      linux-iio@vger.kernel.org
9928 S:      Maintained
9929 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.yaml
9930 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.yaml
9931 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.yaml
9932 F:      drivers/iio/afe/iio-rescale.c
9933
9934 IKANOS/ADI EAGLE ADSL USB DRIVER
9935 M:      Matthieu Castet <castet.matthieu@free.fr>
9936 M:      Stanislaw Gruszka <stf_xl@wp.pl>
9937 S:      Maintained
9938 F:      drivers/usb/atm/ueagle-atm.c
9939
9940 IMAGIS TOUCHSCREEN DRIVER
9941 M:      Markuss Broks <markuss.broks@gmail.com>
9942 S:      Maintained
9943 F:      Documentation/devicetree/bindings/input/touchscreen/imagis,ist3038c.yaml
9944 F:      drivers/input/touchscreen/imagis.c
9945
9946 IMGTEC ASCII LCD DRIVER
9947 M:      Paul Burton <paulburton@kernel.org>
9948 S:      Maintained
9949 F:      Documentation/devicetree/bindings/auxdisplay/img,ascii-lcd.yaml
9950 F:      drivers/auxdisplay/img-ascii-lcd.c
9951
9952 IMGTEC IR DECODER DRIVER
9953 S:      Orphan
9954 F:      drivers/media/rc/img-ir/
9955
9956 IMON SOUNDGRAPH USB IR RECEIVER
9957 M:      Sean Young <sean@mess.org>
9958 L:      linux-media@vger.kernel.org
9959 S:      Maintained
9960 F:      drivers/media/rc/imon.c
9961 F:      drivers/media/rc/imon_raw.c
9962
9963 IMS TWINTURBO FRAMEBUFFER DRIVER
9964 L:      linux-fbdev@vger.kernel.org
9965 S:      Orphan
9966 F:      drivers/video/fbdev/imsttfb.c
9967
9968 INA209 HARDWARE MONITOR DRIVER
9969 M:      Guenter Roeck <linux@roeck-us.net>
9970 L:      linux-hwmon@vger.kernel.org
9971 S:      Maintained
9972 F:      Documentation/devicetree/bindings/hwmon/ti,ina2xx.yaml
9973 F:      Documentation/hwmon/ina209.rst
9974 F:      drivers/hwmon/ina209.c
9975
9976 INA2XX HARDWARE MONITOR DRIVER
9977 M:      Guenter Roeck <linux@roeck-us.net>
9978 L:      linux-hwmon@vger.kernel.org
9979 S:      Maintained
9980 F:      Documentation/hwmon/ina2xx.rst
9981 F:      drivers/hwmon/ina2xx.c
9982 F:      include/linux/platform_data/ina2xx.h
9983
9984 INDEX OF FURTHER KERNEL DOCUMENTATION
9985 M:      Carlos Bilbao <carlos.bilbao@amd.com>
9986 S:      Maintained
9987 F:      Documentation/process/kernel-docs.rst
9988
9989 INDUSTRY PACK SUBSYSTEM (IPACK)
9990 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
9991 M:      Jens Taprogge <jens.taprogge@taprogge.org>
9992 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9993 L:      industrypack-devel@lists.sourceforge.net
9994 S:      Maintained
9995 W:      http://industrypack.sourceforge.net
9996 F:      drivers/ipack/
9997
9998 INFINEON DPS310 Driver
9999 M:      Eddie James <eajames@linux.ibm.com>
10000 L:      linux-iio@vger.kernel.org
10001 S:      Maintained
10002 F:      drivers/iio/pressure/dps310.c
10003
10004 INFINIBAND SUBSYSTEM
10005 M:      Jason Gunthorpe <jgg@nvidia.com>
10006 M:      Leon Romanovsky <leonro@nvidia.com>
10007 L:      linux-rdma@vger.kernel.org
10008 S:      Supported
10009 W:      https://github.com/linux-rdma/rdma-core
10010 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10011 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
10012 F:      Documentation/devicetree/bindings/infiniband/
10013 F:      Documentation/infiniband/
10014 F:      drivers/infiniband/
10015 F:      include/rdma/
10016 F:      include/trace/events/ib_mad.h
10017 F:      include/trace/events/ib_umad.h
10018 F:      include/trace/misc/rdma.h
10019 F:      include/uapi/linux/if_infiniband.h
10020 F:      include/uapi/rdma/
10021 F:      samples/bpf/ibumad_kern.c
10022 F:      samples/bpf/ibumad_user.c
10023
10024 INGENIC JZ4780 NAND DRIVER
10025 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
10026 L:      linux-mtd@lists.infradead.org
10027 L:      linux-mips@vger.kernel.org
10028 S:      Maintained
10029 F:      drivers/mtd/nand/raw/ingenic/
10030
10031 INGENIC JZ47xx SoCs
10032 M:      Paul Cercueil <paul@crapouillou.net>
10033 L:      linux-mips@vger.kernel.org
10034 S:      Maintained
10035 F:      arch/mips/boot/dts/ingenic/
10036 F:      arch/mips/generic/board-ingenic.c
10037 F:      arch/mips/include/asm/mach-ingenic/
10038 F:      arch/mips/ingenic/Kconfig
10039 F:      drivers/clk/ingenic/
10040 F:      drivers/dma/dma-jz4780.c
10041 F:      drivers/gpu/drm/ingenic/
10042 F:      drivers/i2c/busses/i2c-jz4780.c
10043 F:      drivers/iio/adc/ingenic-adc.c
10044 F:      drivers/irqchip/irq-ingenic.c
10045 F:      drivers/memory/jz4780-nemc.c
10046 F:      drivers/mmc/host/jz4740_mmc.c
10047 F:      drivers/mtd/nand/raw/ingenic/
10048 F:      drivers/pinctrl/pinctrl-ingenic.c
10049 F:      drivers/power/supply/ingenic-battery.c
10050 F:      drivers/pwm/pwm-jz4740.c
10051 F:      drivers/remoteproc/ingenic_rproc.c
10052 F:      drivers/rtc/rtc-jz4740.c
10053 F:      drivers/tty/serial/8250/8250_ingenic.c
10054 F:      drivers/usb/musb/jz4740.c
10055 F:      drivers/watchdog/jz4740_wdt.c
10056 F:      include/dt-bindings/iio/adc/ingenic,adc.h
10057 F:      include/linux/mfd/ingenic-tcu.h
10058 F:      sound/soc/codecs/jz47*
10059 F:      sound/soc/jz4740/
10060
10061 INJOINIC IP5xxx POWER BANK IC DRIVER
10062 M:      Samuel Holland <samuel@sholland.org>
10063 S:      Maintained
10064 F:      drivers/power/supply/ip5xxx_power.c
10065
10066 INOTIFY
10067 M:      Jan Kara <jack@suse.cz>
10068 R:      Amir Goldstein <amir73il@gmail.com>
10069 L:      linux-fsdevel@vger.kernel.org
10070 S:      Maintained
10071 F:      Documentation/filesystems/inotify.rst
10072 F:      fs/notify/inotify/
10073 F:      include/linux/inotify.h
10074 F:      include/uapi/linux/inotify.h
10075
10076 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
10077 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
10078 L:      linux-input@vger.kernel.org
10079 S:      Maintained
10080 Q:      http://patchwork.kernel.org/project/linux-input/list/
10081 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
10082 F:      Documentation/devicetree/bindings/input/
10083 F:      Documentation/devicetree/bindings/serio/
10084 F:      Documentation/input/
10085 F:      drivers/input/
10086 F:      include/dt-bindings/input/
10087 F:      include/linux/input.h
10088 F:      include/linux/input/
10089 F:      include/uapi/linux/input-event-codes.h
10090 F:      include/uapi/linux/input.h
10091
10092 INPUT MULTITOUCH (MT) PROTOCOL
10093 M:      Henrik Rydberg <rydberg@bitmath.org>
10094 L:      linux-input@vger.kernel.org
10095 S:      Odd fixes
10096 F:      Documentation/input/multi-touch-protocol.rst
10097 F:      drivers/input/input-mt.c
10098 K:      \b(ABS|SYN)_MT_
10099
10100 INSIDE SECURE CRYPTO DRIVER
10101 M:      Antoine Tenart <atenart@kernel.org>
10102 L:      linux-crypto@vger.kernel.org
10103 S:      Maintained
10104 F:      drivers/crypto/inside-secure/
10105
10106 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
10107 M:      Mimi Zohar <zohar@linux.ibm.com>
10108 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
10109 L:      linux-integrity@vger.kernel.org
10110 S:      Supported
10111 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
10112 F:      security/integrity/ima/
10113 F:      security/integrity/
10114
10115 INTEL 810/815 FRAMEBUFFER DRIVER
10116 M:      Antonino Daplas <adaplas@gmail.com>
10117 L:      linux-fbdev@vger.kernel.org
10118 S:      Maintained
10119 F:      drivers/video/fbdev/i810/
10120
10121 INTEL 8255 GPIO DRIVER
10122 M:      William Breathitt Gray <william.gray@linaro.org>
10123 L:      linux-gpio@vger.kernel.org
10124 S:      Maintained
10125 F:      drivers/gpio/gpio-i8255.c
10126 F:      drivers/gpio/gpio-i8255.h
10127
10128 INTEL ASoC DRIVERS
10129 M:      Cezary Rojewski <cezary.rojewski@intel.com>
10130 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
10131 M:      Liam Girdwood <liam.r.girdwood@linux.intel.com>
10132 M:      Peter Ujfalusi <peter.ujfalusi@linux.intel.com>
10133 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
10134 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
10135 M:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
10136 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10137 S:      Supported
10138 F:      sound/soc/intel/
10139
10140 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
10141 M:      Hans de Goede <hdegoede@redhat.com>
10142 L:      platform-driver-x86@vger.kernel.org
10143 S:      Maintained
10144 F:      drivers/platform/x86/intel/atomisp2/pm.c
10145
10146 INTEL ATOMISP2 LED DRIVER
10147 M:      Hans de Goede <hdegoede@redhat.com>
10148 L:      platform-driver-x86@vger.kernel.org
10149 S:      Maintained
10150 F:      drivers/platform/x86/intel/atomisp2/led.c
10151
10152 INTEL BIOS SAR INT1092 DRIVER
10153 M:      Shravan Sudhakar <s.shravan@intel.com>
10154 M:      Intel Corporation <linuxwwan@intel.com>
10155 L:      platform-driver-x86@vger.kernel.org
10156 S:      Maintained
10157 F:      drivers/platform/x86/intel/int1092/
10158
10159 INTEL BROXTON PMC DRIVER
10160 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
10161 M:      Zha Qipeng <qipeng.zha@intel.com>
10162 S:      Maintained
10163 F:      drivers/mfd/intel_pmc_bxt.c
10164 F:      include/linux/mfd/intel_pmc_bxt.h
10165
10166 INTEL C600 SERIES SAS CONTROLLER DRIVER
10167 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
10168 L:      linux-scsi@vger.kernel.org
10169 S:      Supported
10170 T:      git git://git.code.sf.net/p/intel-sas/isci
10171 F:      drivers/scsi/isci/
10172
10173 INTEL CPU family model numbers
10174 M:      Tony Luck <tony.luck@intel.com>
10175 M:      x86@kernel.org
10176 L:      linux-kernel@vger.kernel.org
10177 S:      Supported
10178 F:      arch/x86/include/asm/intel-family.h
10179
10180 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
10181 M:      Jani Nikula <jani.nikula@linux.intel.com>
10182 M:      Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
10183 M:      Rodrigo Vivi <rodrigo.vivi@intel.com>
10184 M:      Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>
10185 L:      intel-gfx@lists.freedesktop.org
10186 S:      Supported
10187 W:      https://01.org/linuxgraphics/
10188 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
10189 B:      https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
10190 C:      irc://irc.oftc.net/intel-gfx
10191 T:      git git://anongit.freedesktop.org/drm-intel
10192 F:      Documentation/ABI/testing/sysfs-driver-intel-i915-hwmon
10193 F:      Documentation/gpu/i915.rst
10194 F:      drivers/gpu/drm/i915/
10195 F:      include/drm/i915*
10196 F:      include/uapi/drm/i915_drm.h
10197
10198 INTEL ETHERNET DRIVERS
10199 M:      Jesse Brandeburg <jesse.brandeburg@intel.com>
10200 M:      Tony Nguyen <anthony.l.nguyen@intel.com>
10201 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
10202 S:      Supported
10203 W:      http://www.intel.com/support/feedback.htm
10204 W:      http://e1000.sourceforge.net/
10205 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
10206 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queue.git
10207 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue.git
10208 F:      Documentation/networking/device_drivers/ethernet/intel/
10209 F:      drivers/net/ethernet/intel/
10210 F:      drivers/net/ethernet/intel/*/
10211 F:      include/linux/avf/virtchnl.h
10212 F:      include/linux/net/intel/iidc.h
10213
10214 INTEL ETHERNET PROTOCOL DRIVER FOR RDMA
10215 M:      Mustafa Ismail <mustafa.ismail@intel.com>
10216 M:      Shiraz Saleem <shiraz.saleem@intel.com>
10217 L:      linux-rdma@vger.kernel.org
10218 S:      Supported
10219 F:      drivers/infiniband/hw/irdma/
10220 F:      include/uapi/rdma/irdma-abi.h
10221
10222 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
10223 M:      Maik Broemme <mbroemme@libmpq.org>
10224 L:      linux-fbdev@vger.kernel.org
10225 S:      Maintained
10226 F:      Documentation/fb/intelfb.rst
10227 F:      drivers/video/fbdev/intelfb/
10228
10229 INTEL GPIO DRIVERS
10230 M:      Andy Shevchenko <andy@kernel.org>
10231 L:      linux-gpio@vger.kernel.org
10232 S:      Supported
10233 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
10234 F:      drivers/gpio/gpio-ich.c
10235 F:      drivers/gpio/gpio-merrifield.c
10236 F:      drivers/gpio/gpio-ml-ioh.c
10237 F:      drivers/gpio/gpio-pch.c
10238 F:      drivers/gpio/gpio-sch.c
10239 F:      drivers/gpio/gpio-sodaville.c
10240
10241 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
10242 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
10243 M:      Zhi Wang <zhi.a.wang@intel.com>
10244 L:      intel-gvt-dev@lists.freedesktop.org
10245 L:      intel-gfx@lists.freedesktop.org
10246 S:      Supported
10247 W:      https://01.org/igvt-g
10248 T:      git https://github.com/intel/gvt-linux.git
10249 F:      drivers/gpu/drm/i915/gvt/
10250
10251 INTEL HID EVENT DRIVER
10252 M:      Alex Hung <alexhung@gmail.com>
10253 L:      platform-driver-x86@vger.kernel.org
10254 S:      Maintained
10255 F:      drivers/platform/x86/intel/hid.c
10256
10257 INTEL I/OAT DMA DRIVER
10258 M:      Dave Jiang <dave.jiang@intel.com>
10259 R:      Dan Williams <dan.j.williams@intel.com>
10260 L:      dmaengine@vger.kernel.org
10261 S:      Supported
10262 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
10263 F:      drivers/dma/ioat*
10264
10265 INTEL IDXD DRIVER
10266 M:      Fenghua Yu <fenghua.yu@intel.com>
10267 M:      Dave Jiang <dave.jiang@intel.com>
10268 L:      dmaengine@vger.kernel.org
10269 S:      Supported
10270 F:      drivers/dma/idxd/*
10271 F:      include/uapi/linux/idxd.h
10272
10273 INTEL IDLE DRIVER
10274 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
10275 M:      Len Brown <lenb@kernel.org>
10276 L:      linux-pm@vger.kernel.org
10277 S:      Supported
10278 B:      https://bugzilla.kernel.org
10279 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
10280 F:      drivers/idle/intel_idle.c
10281
10282 INTEL IN FIELD SCAN (IFS) DEVICE
10283 M:      Jithu Joseph <jithu.joseph@intel.com>
10284 R:      Ashok Raj <ashok.raj@intel.com>
10285 R:      Tony Luck <tony.luck@intel.com>
10286 S:      Maintained
10287 F:      drivers/platform/x86/intel/ifs
10288 F:      include/trace/events/intel_ifs.h
10289
10290 INTEL INTEGRATED SENSOR HUB DRIVER
10291 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10292 M:      Jiri Kosina <jikos@kernel.org>
10293 L:      linux-input@vger.kernel.org
10294 S:      Maintained
10295 F:      drivers/hid/intel-ish-hid/
10296
10297 INTEL IOMMU (VT-d)
10298 M:      David Woodhouse <dwmw2@infradead.org>
10299 M:      Lu Baolu <baolu.lu@linux.intel.com>
10300 L:      iommu@lists.linux.dev
10301 S:      Supported
10302 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
10303 F:      drivers/iommu/intel/
10304 F:      include/linux/intel-svm.h
10305
10306 INTEL IPU3 CSI-2 CIO2 DRIVER
10307 M:      Yong Zhi <yong.zhi@intel.com>
10308 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
10309 M:      Bingbu Cao <bingbu.cao@intel.com>
10310 M:      Dan Scally <djrscally@gmail.com>
10311 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
10312 L:      linux-media@vger.kernel.org
10313 S:      Maintained
10314 T:      git git://linuxtv.org/media_tree.git
10315 F:      Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
10316 F:      drivers/media/pci/intel/ipu3/
10317
10318 INTEL IPU3 CSI-2 IMGU DRIVER
10319 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
10320 R:      Bingbu Cao <bingbu.cao@intel.com>
10321 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
10322 L:      linux-media@vger.kernel.org
10323 S:      Maintained
10324 F:      Documentation/admin-guide/media/ipu3.rst
10325 F:      Documentation/admin-guide/media/ipu3_rcb.svg
10326 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
10327 F:      drivers/staging/media/ipu3/
10328
10329 INTEL IXP4XX CRYPTO SUPPORT
10330 M:      Corentin Labbe <clabbe@baylibre.com>
10331 L:      linux-crypto@vger.kernel.org
10332 S:      Maintained
10333 F:      drivers/crypto/ixp4xx_crypto.c
10334
10335 INTEL ISHTP ECLITE DRIVER
10336 M:      Sumesh K Naduvalath <sumesh.k.naduvalath@intel.com>
10337 L:      platform-driver-x86@vger.kernel.org
10338 S:      Supported
10339 F:      drivers/platform/x86/intel/ishtp_eclite.c
10340
10341 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
10342 M:      Krzysztof Halasa <khalasa@piap.pl>
10343 S:      Maintained
10344 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
10345 F:      drivers/net/wan/ixp4xx_hss.c
10346 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
10347 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
10348 F:      include/linux/soc/ixp4xx/npe.h
10349 F:      include/linux/soc/ixp4xx/qmgr.h
10350
10351 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
10352 M:      Deepak Saxena <dsaxena@plexity.net>
10353 S:      Maintained
10354 F:      Documentation/devicetree/bindings/rng/intel,ixp46x-rng.yaml
10355 F:      drivers/char/hw_random/ixp4xx-rng.c
10356
10357 INTEL KEEM BAY DRM DRIVER
10358 M:      Anitha Chrisanthus <anitha.chrisanthus@intel.com>
10359 M:      Edmund Dea <edmund.j.dea@intel.com>
10360 S:      Maintained
10361 F:      Documentation/devicetree/bindings/display/intel,keembay-display.yaml
10362 F:      drivers/gpu/drm/kmb/
10363
10364 INTEL KEEM BAY OCS AES/SM4 CRYPTO DRIVER
10365 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
10366 S:      Maintained
10367 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-aes.yaml
10368 F:      drivers/crypto/keembay/Kconfig
10369 F:      drivers/crypto/keembay/Makefile
10370 F:      drivers/crypto/keembay/keembay-ocs-aes-core.c
10371 F:      drivers/crypto/keembay/ocs-aes.c
10372 F:      drivers/crypto/keembay/ocs-aes.h
10373
10374 INTEL KEEM BAY OCS ECC CRYPTO DRIVER
10375 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
10376 M:      Prabhjot Khurana <prabhjot.khurana@intel.com>
10377 M:      Mark Gross <mgross@linux.intel.com>
10378 S:      Maintained
10379 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-ecc.yaml
10380 F:      drivers/crypto/keembay/Kconfig
10381 F:      drivers/crypto/keembay/Makefile
10382 F:      drivers/crypto/keembay/keembay-ocs-ecc.c
10383
10384 INTEL KEEM BAY OCS HCU CRYPTO DRIVER
10385 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
10386 M:      Declan Murphy <declan.murphy@intel.com>
10387 S:      Maintained
10388 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-hcu.yaml
10389 F:      drivers/crypto/keembay/Kconfig
10390 F:      drivers/crypto/keembay/Makefile
10391 F:      drivers/crypto/keembay/keembay-ocs-hcu-core.c
10392 F:      drivers/crypto/keembay/ocs-hcu.c
10393 F:      drivers/crypto/keembay/ocs-hcu.h
10394
10395 INTEL THUNDER BAY EMMC PHY DRIVER
10396 M:      Nandhini Srikandan <nandhini.srikandan@intel.com>
10397 M:      Rashmi A <rashmi.a@intel.com>
10398 S:      Maintained
10399 F:      Documentation/devicetree/bindings/phy/intel,phy-thunderbay-emmc.yaml
10400 F:      drivers/phy/intel/phy-intel-thunderbay-emmc.c
10401
10402 INTEL MANAGEMENT ENGINE (mei)
10403 M:      Tomas Winkler <tomas.winkler@intel.com>
10404 L:      linux-kernel@vger.kernel.org
10405 S:      Supported
10406 F:      Documentation/driver-api/mei/*
10407 F:      drivers/misc/mei/
10408 F:      drivers/watchdog/mei_wdt.c
10409 F:      include/linux/mei_aux.h
10410 F:      include/linux/mei_cl_bus.h
10411 F:      include/uapi/linux/mei.h
10412 F:      samples/mei/*
10413
10414 INTEL MAX 10 BMC MFD DRIVER
10415 M:      Xu Yilun <yilun.xu@intel.com>
10416 R:      Tom Rix <trix@redhat.com>
10417 S:      Maintained
10418 F:      Documentation/ABI/testing/sysfs-driver-intel-m10-bmc
10419 F:      Documentation/hwmon/intel-m10-bmc-hwmon.rst
10420 F:      drivers/hwmon/intel-m10-bmc-hwmon.c
10421 F:      drivers/mfd/intel-m10-bmc.c
10422 F:      include/linux/mfd/intel-m10-bmc.h
10423
10424 INTEL MENLOW THERMAL DRIVER
10425 M:      Sujith Thomas <sujith.thomas@intel.com>
10426 L:      linux-pm@vger.kernel.org
10427 S:      Supported
10428 F:      drivers/thermal/intel/intel_menlow.c
10429
10430 INTEL P-Unit IPC DRIVER
10431 M:      Zha Qipeng <qipeng.zha@intel.com>
10432 L:      platform-driver-x86@vger.kernel.org
10433 S:      Maintained
10434 F:      arch/x86/include/asm/intel_punit_ipc.h
10435 F:      drivers/platform/x86/intel/punit_ipc.c
10436
10437 INTEL PMC CORE DRIVER
10438 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
10439 M:      David E Box <david.e.box@intel.com>
10440 L:      platform-driver-x86@vger.kernel.org
10441 S:      Maintained
10442 F:      Documentation/ABI/testing/sysfs-platform-intel-pmc
10443 F:      drivers/platform/x86/intel/pmc/
10444
10445 INTEL PMIC GPIO DRIVERS
10446 M:      Andy Shevchenko <andy@kernel.org>
10447 S:      Supported
10448 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
10449 F:      drivers/gpio/gpio-*cove.c
10450
10451 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
10452 M:      Andy Shevchenko <andy@kernel.org>
10453 S:      Supported
10454 F:      drivers/mfd/intel_soc_pmic*
10455 F:      include/linux/mfd/intel_soc_pmic*
10456
10457 INTEL PMT DRIVERS
10458 M:      David E. Box <david.e.box@linux.intel.com>
10459 S:      Supported
10460 F:      drivers/platform/x86/intel/pmt/
10461
10462 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
10463 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
10464 L:      linux-wireless@vger.kernel.org
10465 S:      Maintained
10466 F:      Documentation/networking/device_drivers/wifi/intel/ipw2100.rst
10467 F:      Documentation/networking/device_drivers/wifi/intel/ipw2200.rst
10468 F:      drivers/net/wireless/intel/ipw2x00/
10469
10470 INTEL PSTATE DRIVER
10471 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10472 M:      Len Brown <lenb@kernel.org>
10473 L:      linux-pm@vger.kernel.org
10474 S:      Supported
10475 F:      drivers/cpufreq/intel_pstate.c
10476
10477 INTEL QUADRATURE ENCODER PERIPHERAL DRIVER
10478 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
10479 L:      linux-iio@vger.kernel.org
10480 F:      drivers/counter/intel-qep.c
10481
10482 INTEL SCU DRIVERS
10483 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
10484 S:      Maintained
10485 F:      arch/x86/include/asm/intel_scu_ipc.h
10486 F:      drivers/platform/x86/intel_scu_*
10487
10488 INTEL SDSI DRIVER
10489 M:      David E. Box <david.e.box@linux.intel.com>
10490 S:      Supported
10491 F:      drivers/platform/x86/intel/sdsi.c
10492 F:      tools/arch/x86/intel_sdsi/
10493 F:      tools/testing/selftests/drivers/sdsi/
10494
10495 INTEL SKYLAKE INT3472 ACPI DEVICE DRIVER
10496 M:      Daniel Scally <djrscally@gmail.com>
10497 S:      Maintained
10498 F:      drivers/platform/x86/intel/int3472/
10499
10500 INTEL SPEED SELECT TECHNOLOGY
10501 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10502 L:      platform-driver-x86@vger.kernel.org
10503 S:      Maintained
10504 F:      drivers/platform/x86/intel/speed_select_if/
10505 F:      include/uapi/linux/isst_if.h
10506 F:      tools/power/x86/intel-speed-select/
10507
10508 INTEL STRATIX10 FIRMWARE DRIVERS
10509 M:      Dinh Nguyen <dinguyen@kernel.org>
10510 L:      linux-kernel@vger.kernel.org
10511 S:      Maintained
10512 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
10513 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
10514 F:      drivers/firmware/stratix10-rsu.c
10515 F:      drivers/firmware/stratix10-svc.c
10516 F:      include/linux/firmware/intel/stratix10-smc.h
10517 F:      include/linux/firmware/intel/stratix10-svc-client.h
10518 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
10519
10520 INTEL TELEMETRY DRIVER
10521 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
10522 M:      "David E. Box" <david.e.box@linux.intel.com>
10523 L:      platform-driver-x86@vger.kernel.org
10524 S:      Maintained
10525 F:      arch/x86/include/asm/intel_telemetry.h
10526 F:      drivers/platform/x86/intel/telemetry/
10527
10528 INTEL UNCORE FREQUENCY CONTROL
10529 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10530 L:      platform-driver-x86@vger.kernel.org
10531 S:      Maintained
10532 F:      Documentation/admin-guide/pm/intel_uncore_frequency_scaling.rst
10533 F:      drivers/platform/x86/intel/uncore-frequency/
10534
10535 INTEL VENDOR SPECIFIC EXTENDED CAPABILITIES DRIVER
10536 M:      David E. Box <david.e.box@linux.intel.com>
10537 S:      Supported
10538 F:      drivers/platform/x86/intel/vsec.*
10539
10540 INTEL VIRTUAL BUTTON DRIVER
10541 M:      AceLan Kao <acelan.kao@canonical.com>
10542 L:      platform-driver-x86@vger.kernel.org
10543 S:      Maintained
10544 F:      drivers/platform/x86/intel/vbtn.c
10545
10546 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
10547 M:      Stanislaw Gruszka <stf_xl@wp.pl>
10548 L:      linux-wireless@vger.kernel.org
10549 S:      Supported
10550 F:      drivers/net/wireless/intel/iwlegacy/
10551
10552 INTEL WIRELESS WIFI LINK (iwlwifi)
10553 M:      Gregory Greenman <gregory.greenman@intel.com>
10554 L:      linux-wireless@vger.kernel.org
10555 S:      Supported
10556 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
10557 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
10558 F:      drivers/net/wireless/intel/iwlwifi/
10559
10560 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
10561 M:      Jithu Joseph <jithu.joseph@intel.com>
10562 R:      Maurice Ma <maurice.ma@intel.com>
10563 S:      Maintained
10564 W:      https://slimbootloader.github.io/security/firmware-update.html
10565 F:      drivers/platform/x86/intel/wmi/sbl-fw-update.c
10566
10567 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
10568 L:      Dell.Client.Kernel@dell.com
10569 S:      Maintained
10570 F:      drivers/platform/x86/intel/wmi/thunderbolt.c
10571
10572 INTEL WWAN IOSM DRIVER
10573 M:      M Chetan Kumar <m.chetan.kumar@intel.com>
10574 M:      Intel Corporation <linuxwwan@intel.com>
10575 L:      netdev@vger.kernel.org
10576 S:      Maintained
10577 F:      drivers/net/wwan/iosm/
10578
10579 INTEL(R) TRACE HUB
10580 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
10581 S:      Supported
10582 F:      Documentation/trace/intel_th.rst
10583 F:      drivers/hwtracing/intel_th/
10584 F:      include/linux/intel_th.h
10585
10586 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
10587 M:      Ning Sun <ning.sun@intel.com>
10588 L:      tboot-devel@lists.sourceforge.net
10589 S:      Supported
10590 W:      http://tboot.sourceforge.net
10591 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
10592 F:      Documentation/x86/intel_txt.rst
10593 F:      arch/x86/kernel/tboot.c
10594 F:      include/linux/tboot.h
10595
10596 INTEL SGX
10597 M:      Jarkko Sakkinen <jarkko@kernel.org>
10598 R:      Dave Hansen <dave.hansen@linux.intel.com>
10599 L:      linux-sgx@vger.kernel.org
10600 S:      Supported
10601 Q:      https://patchwork.kernel.org/project/intel-sgx/list/
10602 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/sgx
10603 F:      Documentation/x86/sgx.rst
10604 F:      arch/x86/entry/vdso/vsgx.S
10605 F:      arch/x86/include/asm/sgx.h
10606 F:      arch/x86/include/uapi/asm/sgx.h
10607 F:      arch/x86/kernel/cpu/sgx/*
10608 F:      tools/testing/selftests/sgx/*
10609 K:      \bSGX_
10610
10611 INTERCONNECT API
10612 M:      Georgi Djakov <djakov@kernel.org>
10613 L:      linux-pm@vger.kernel.org
10614 S:      Maintained
10615 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/djakov/icc.git
10616 F:      Documentation/devicetree/bindings/interconnect/
10617 F:      Documentation/driver-api/interconnect.rst
10618 F:      drivers/interconnect/
10619 F:      include/dt-bindings/interconnect/
10620 F:      include/linux/interconnect-provider.h
10621 F:      include/linux/interconnect.h
10622
10623 INTERRUPT COUNTER DRIVER
10624 M:      Oleksij Rempel <o.rempel@pengutronix.de>
10625 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
10626 L:      linux-iio@vger.kernel.org
10627 F:      Documentation/devicetree/bindings/counter/interrupt-counter.yaml
10628 F:      drivers/counter/interrupt-cnt.c
10629
10630 INTERSIL ISL7998X VIDEO DECODER DRIVER
10631 M:      Michael Tretter <m.tretter@pengutronix.de>
10632 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
10633 L:      linux-media@vger.kernel.org
10634 S:      Maintained
10635 F:      Documentation/devicetree/bindings/media/i2c/isil,isl79987.yaml
10636 F:      drivers/media/i2c/isl7998x.c
10637
10638 INVENSENSE ICM-426xx IMU DRIVER
10639 M:      Jean-Baptiste Maneyrol <jmaneyrol@invensense.com>
10640 L:      linux-iio@vger.kernel.org
10641 S:      Maintained
10642 W:      https://invensense.tdk.com/
10643 F:      Documentation/devicetree/bindings/iio/imu/invensense,icm42600.yaml
10644 F:      drivers/iio/imu/inv_icm42600/
10645
10646 INVENSENSE MPU-3050 GYROSCOPE DRIVER
10647 M:      Linus Walleij <linus.walleij@linaro.org>
10648 L:      linux-iio@vger.kernel.org
10649 S:      Maintained
10650 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.yaml
10651 F:      drivers/iio/gyro/mpu3050*
10652
10653 IOC3 ETHERNET DRIVER
10654 M:      Ralf Baechle <ralf@linux-mips.org>
10655 L:      linux-mips@vger.kernel.org
10656 S:      Maintained
10657 F:      drivers/net/ethernet/sgi/ioc3-eth.c
10658
10659 IOMAP FILESYSTEM LIBRARY
10660 M:      Christoph Hellwig <hch@infradead.org>
10661 M:      Darrick J. Wong <djwong@kernel.org>
10662 L:      linux-xfs@vger.kernel.org
10663 L:      linux-fsdevel@vger.kernel.org
10664 S:      Supported
10665 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
10666 F:      fs/iomap/
10667 F:      include/linux/iomap.h
10668
10669 IOMMU DMA-API LAYER
10670 M:      Robin Murphy <robin.murphy@arm.com>
10671 L:      iommu@lists.linux.dev
10672 S:      Maintained
10673 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
10674 F:      drivers/iommu/dma-iommu.c
10675 F:      drivers/iommu/dma-iommu.h
10676 F:      drivers/iommu/iova.c
10677 F:      include/linux/iova.h
10678
10679 IOMMUFD
10680 M:      Jason Gunthorpe <jgg@nvidia.com>
10681 M:      Kevin Tian <kevin.tian@intel.com>
10682 L:      iommu@lists.linux.dev
10683 S:      Maintained
10684 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jgg/iommufd.git
10685 F:      Documentation/userspace-api/iommufd.rst
10686 F:      drivers/iommu/iommufd/
10687 F:      include/linux/iommufd.h
10688 F:      include/uapi/linux/iommufd.h
10689 F:      tools/testing/selftests/iommu/
10690
10691 IOMMU SUBSYSTEM
10692 M:      Joerg Roedel <joro@8bytes.org>
10693 M:      Will Deacon <will@kernel.org>
10694 R:      Robin Murphy <robin.murphy@arm.com>
10695 L:      iommu@lists.linux.dev
10696 S:      Maintained
10697 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
10698 F:      Documentation/devicetree/bindings/iommu/
10699 F:      Documentation/userspace-api/iommu.rst
10700 F:      drivers/iommu/
10701 F:      include/linux/iommu.h
10702 F:      include/linux/iova.h
10703 F:      include/linux/of_iommu.h
10704 F:      include/uapi/linux/iommu.h
10705
10706 IOSYS-MAP HELPERS
10707 M:      Thomas Zimmermann <tzimmermann@suse.de>
10708 L:      dri-devel@lists.freedesktop.org
10709 S:      Maintained
10710 T:      git git://anongit.freedesktop.org/drm/drm-misc
10711 F:      include/linux/iosys-map.h
10712
10713 IO_URING
10714 M:      Jens Axboe <axboe@kernel.dk>
10715 R:      Pavel Begunkov <asml.silence@gmail.com>
10716 L:      io-uring@vger.kernel.org
10717 S:      Maintained
10718 T:      git git://git.kernel.dk/linux-block
10719 T:      git git://git.kernel.dk/liburing
10720 F:      io_uring/
10721 F:      include/linux/io_uring.h
10722 F:      include/linux/io_uring_types.h
10723 F:      include/trace/events/io_uring.h
10724 F:      include/uapi/linux/io_uring.h
10725 F:      tools/io_uring/
10726
10727 IPMI SUBSYSTEM
10728 M:      Corey Minyard <minyard@acm.org>
10729 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
10730 S:      Supported
10731 W:      http://openipmi.sourceforge.net/
10732 T:      git https://github.com/cminyard/linux-ipmi.git for-next
10733 F:      Documentation/driver-api/ipmi.rst
10734 F:      Documentation/devicetree/bindings/ipmi/
10735 F:      drivers/char/ipmi/
10736 F:      include/linux/ipmi*
10737 F:      include/uapi/linux/ipmi*
10738
10739 IPS SCSI RAID DRIVER
10740 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
10741 L:      linux-scsi@vger.kernel.org
10742 S:      Maintained
10743 W:      http://www.adaptec.com/
10744 F:      drivers/scsi/ips*
10745
10746 IPVS
10747 M:      Simon Horman <horms@verge.net.au>
10748 M:      Julian Anastasov <ja@ssi.bg>
10749 L:      netdev@vger.kernel.org
10750 L:      lvs-devel@vger.kernel.org
10751 S:      Maintained
10752 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
10753 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
10754 F:      Documentation/networking/ipvs-sysctl.rst
10755 F:      include/net/ip_vs.h
10756 F:      include/uapi/linux/ip_vs.h
10757 F:      net/netfilter/ipvs/
10758
10759 IPWIRELESS DRIVER
10760 M:      Jiri Kosina <jikos@kernel.org>
10761 M:      David Sterba <dsterba@suse.com>
10762 S:      Odd Fixes
10763 F:      drivers/tty/ipwireless/
10764
10765 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
10766 M:      Marc Zyngier <maz@kernel.org>
10767 S:      Maintained
10768 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10769 F:      Documentation/core-api/irq/irq-domain.rst
10770 F:      include/linux/irqdomain.h
10771 F:      kernel/irq/irqdomain.c
10772 F:      kernel/irq/msi.c
10773
10774 IRQ SUBSYSTEM
10775 M:      Thomas Gleixner <tglx@linutronix.de>
10776 L:      linux-kernel@vger.kernel.org
10777 S:      Maintained
10778 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10779 F:      kernel/irq/
10780
10781 IRQCHIP DRIVERS
10782 M:      Thomas Gleixner <tglx@linutronix.de>
10783 M:      Marc Zyngier <maz@kernel.org>
10784 L:      linux-kernel@vger.kernel.org
10785 S:      Maintained
10786 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10787 F:      Documentation/devicetree/bindings/interrupt-controller/
10788 F:      drivers/irqchip/
10789
10790 ISA
10791 M:      William Breathitt Gray <william.gray@linaro.org>
10792 S:      Maintained
10793 F:      Documentation/driver-api/isa.rst
10794 F:      drivers/base/isa.c
10795 F:      include/linux/isa.h
10796
10797 ISA RADIO MODULE
10798 M:      Hans Verkuil <hverkuil@xs4all.nl>
10799 L:      linux-media@vger.kernel.org
10800 S:      Maintained
10801 W:      https://linuxtv.org
10802 T:      git git://linuxtv.org/media_tree.git
10803 F:      drivers/media/radio/radio-isa*
10804
10805 ISAPNP
10806 M:      Jaroslav Kysela <perex@perex.cz>
10807 S:      Maintained
10808 F:      Documentation/driver-api/isapnp.rst
10809 F:      drivers/pnp/isapnp/
10810 F:      include/linux/isapnp.h
10811
10812 ISCSI
10813 M:      Lee Duncan <lduncan@suse.com>
10814 M:      Chris Leech <cleech@redhat.com>
10815 M:      Mike Christie <michael.christie@oracle.com>
10816 L:      open-iscsi@googlegroups.com
10817 L:      linux-scsi@vger.kernel.org
10818 S:      Maintained
10819 W:      www.open-iscsi.com
10820 F:      drivers/scsi/*iscsi*
10821 F:      include/scsi/*iscsi*
10822
10823 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
10824 M:      Peter Jones <pjones@redhat.com>
10825 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
10826 S:      Maintained
10827 F:      drivers/firmware/iscsi_ibft*
10828
10829 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
10830 M:      Sagi Grimberg <sagi@grimberg.me>
10831 M:      Max Gurtovoy <mgurtovoy@nvidia.com>
10832 L:      linux-rdma@vger.kernel.org
10833 S:      Supported
10834 W:      http://www.openfabrics.org
10835 W:      www.open-iscsi.org
10836 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10837 F:      drivers/infiniband/ulp/iser/
10838
10839 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
10840 M:      Sagi Grimberg <sagi@grimberg.me>
10841 L:      linux-rdma@vger.kernel.org
10842 L:      target-devel@vger.kernel.org
10843 S:      Supported
10844 W:      http://www.linux-iscsi.org
10845 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
10846 F:      drivers/infiniband/ulp/isert
10847
10848 ISDN/CMTP OVER BLUETOOTH
10849 M:      Karsten Keil <isdn@linux-pingi.de>
10850 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
10851 L:      netdev@vger.kernel.org
10852 S:      Odd Fixes
10853 W:      http://www.isdn4linux.de
10854 F:      Documentation/isdn/
10855 F:      drivers/isdn/capi/
10856 F:      include/linux/isdn/
10857 F:      include/uapi/linux/isdn/
10858 F:      net/bluetooth/cmtp/
10859
10860 ISDN/mISDN SUBSYSTEM
10861 M:      Karsten Keil <isdn@linux-pingi.de>
10862 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
10863 L:      netdev@vger.kernel.org
10864 S:      Maintained
10865 W:      http://www.isdn4linux.de
10866 F:      drivers/isdn/Kconfig
10867 F:      drivers/isdn/Makefile
10868 F:      drivers/isdn/hardware/
10869 F:      drivers/isdn/mISDN/
10870
10871 ISOFS FILESYSTEM
10872 M:      Jan Kara <jack@suse.cz>
10873 L:      linux-fsdevel@vger.kernel.org
10874 S:      Maintained
10875 F:      Documentation/filesystems/isofs.rst
10876 F:      fs/isofs/
10877
10878 IT87 HARDWARE MONITORING DRIVER
10879 M:      Jean Delvare <jdelvare@suse.com>
10880 L:      linux-hwmon@vger.kernel.org
10881 S:      Maintained
10882 F:      Documentation/hwmon/it87.rst
10883 F:      drivers/hwmon/it87.c
10884
10885 IT913X MEDIA DRIVER
10886 M:      Antti Palosaari <crope@iki.fi>
10887 L:      linux-media@vger.kernel.org
10888 S:      Maintained
10889 W:      https://linuxtv.org
10890 W:      http://palosaari.fi/linux/
10891 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10892 T:      git git://linuxtv.org/anttip/media_tree.git
10893 F:      drivers/media/tuners/it913x*
10894
10895 ITE IT66121 HDMI BRIDGE DRIVER
10896 M:      Phong LE <ple@baylibre.com>
10897 M:      Neil Armstrong <neil.armstrong@linaro.org>
10898 S:      Maintained
10899 T:      git git://anongit.freedesktop.org/drm/drm-misc
10900 F:      Documentation/devicetree/bindings/display/bridge/ite,it66121.yaml
10901 F:      drivers/gpu/drm/bridge/ite-it66121.c
10902
10903 IVTV VIDEO4LINUX DRIVER
10904 M:      Andy Walls <awalls@md.metrocast.net>
10905 L:      linux-media@vger.kernel.org
10906 S:      Maintained
10907 W:      https://linuxtv.org
10908 T:      git git://linuxtv.org/media_tree.git
10909 F:      Documentation/admin-guide/media/ivtv*
10910 F:      drivers/media/pci/ivtv/
10911 F:      include/uapi/linux/ivtv*
10912
10913 IX2505V MEDIA DRIVER
10914 M:      Malcolm Priestley <tvboxspy@gmail.com>
10915 L:      linux-media@vger.kernel.org
10916 S:      Maintained
10917 W:      https://linuxtv.org
10918 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10919 F:      drivers/media/dvb-frontends/ix2505v*
10920
10921 JAILHOUSE HYPERVISOR INTERFACE
10922 M:      Jan Kiszka <jan.kiszka@siemens.com>
10923 L:      jailhouse-dev@googlegroups.com
10924 S:      Maintained
10925 F:      arch/x86/include/asm/jailhouse_para.h
10926 F:      arch/x86/kernel/jailhouse.c
10927
10928 JC42.4 TEMPERATURE SENSOR DRIVER
10929 M:      Guenter Roeck <linux@roeck-us.net>
10930 L:      linux-hwmon@vger.kernel.org
10931 S:      Maintained
10932 F:      Documentation/devicetree/bindings/hwmon/jedec,jc42.yaml
10933 F:      Documentation/hwmon/jc42.rst
10934 F:      drivers/hwmon/jc42.c
10935
10936 JFS FILESYSTEM
10937 M:      Dave Kleikamp <shaggy@kernel.org>
10938 L:      jfs-discussion@lists.sourceforge.net
10939 S:      Odd Fixes
10940 W:      http://jfs.sourceforge.net/
10941 T:      git https://github.com/kleikamp/linux-shaggy.git
10942 F:      Documentation/admin-guide/jfs.rst
10943 F:      fs/jfs/
10944
10945 JME NETWORK DRIVER
10946 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
10947 L:      netdev@vger.kernel.org
10948 S:      Maintained
10949 F:      drivers/net/ethernet/jme.*
10950
10951 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
10952 M:      David Woodhouse <dwmw2@infradead.org>
10953 M:      Richard Weinberger <richard@nod.at>
10954 L:      linux-mtd@lists.infradead.org
10955 S:      Odd Fixes
10956 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
10957 T:      git git://git.infradead.org/ubifs-2.6.git
10958 F:      fs/jffs2/
10959 F:      include/uapi/linux/jffs2.h
10960
10961 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
10962 M:      "Theodore Ts'o" <tytso@mit.edu>
10963 M:      Jan Kara <jack@suse.com>
10964 L:      linux-ext4@vger.kernel.org
10965 S:      Maintained
10966 F:      fs/jbd2/
10967 F:      include/linux/jbd2.h
10968
10969 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
10970 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
10971 L:      linux-media@vger.kernel.org
10972 L:      linux-renesas-soc@vger.kernel.org
10973 S:      Maintained
10974 F:      drivers/media/platform/renesas/rcar_jpu.c
10975
10976 JSM Neo PCI based serial card
10977 L:      linux-serial@vger.kernel.org
10978 S:      Orphan
10979 F:      drivers/tty/serial/jsm/
10980
10981 K10TEMP HARDWARE MONITORING DRIVER
10982 M:      Clemens Ladisch <clemens@ladisch.de>
10983 L:      linux-hwmon@vger.kernel.org
10984 S:      Maintained
10985 F:      Documentation/hwmon/k10temp.rst
10986 F:      drivers/hwmon/k10temp.c
10987
10988 K8TEMP HARDWARE MONITORING DRIVER
10989 M:      Rudolf Marek <r.marek@assembler.cz>
10990 L:      linux-hwmon@vger.kernel.org
10991 S:      Maintained
10992 F:      Documentation/hwmon/k8temp.rst
10993 F:      drivers/hwmon/k8temp.c
10994
10995 KASAN
10996 M:      Andrey Ryabinin <ryabinin.a.a@gmail.com>
10997 R:      Alexander Potapenko <glider@google.com>
10998 R:      Andrey Konovalov <andreyknvl@gmail.com>
10999 R:      Dmitry Vyukov <dvyukov@google.com>
11000 R:      Vincenzo Frascino <vincenzo.frascino@arm.com>
11001 L:      kasan-dev@googlegroups.com
11002 S:      Maintained
11003 F:      Documentation/dev-tools/kasan.rst
11004 F:      arch/*/include/asm/*kasan.h
11005 F:      arch/*/mm/kasan_init*
11006 F:      include/linux/kasan*.h
11007 F:      lib/Kconfig.kasan
11008 F:      mm/kasan/
11009 F:      scripts/Makefile.kasan
11010
11011 KCONFIG
11012 M:      Masahiro Yamada <masahiroy@kernel.org>
11013 L:      linux-kbuild@vger.kernel.org
11014 S:      Maintained
11015 Q:      https://patchwork.kernel.org/project/linux-kbuild/list/
11016 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
11017 F:      Documentation/kbuild/kconfig*
11018 F:      scripts/Kconfig.include
11019 F:      scripts/kconfig/
11020
11021 KCOV
11022 R:      Dmitry Vyukov <dvyukov@google.com>
11023 R:      Andrey Konovalov <andreyknvl@gmail.com>
11024 L:      kasan-dev@googlegroups.com
11025 S:      Maintained
11026 F:      Documentation/dev-tools/kcov.rst
11027 F:      include/linux/kcov.h
11028 F:      include/uapi/linux/kcov.h
11029 F:      kernel/kcov.c
11030 F:      scripts/Makefile.kcov
11031
11032 KCSAN
11033 M:      Marco Elver <elver@google.com>
11034 R:      Dmitry Vyukov <dvyukov@google.com>
11035 L:      kasan-dev@googlegroups.com
11036 S:      Maintained
11037 F:      Documentation/dev-tools/kcsan.rst
11038 F:      include/linux/kcsan*.h
11039 F:      kernel/kcsan/
11040 F:      lib/Kconfig.kcsan
11041 F:      scripts/Makefile.kcsan
11042
11043 KDUMP
11044 M:      Baoquan He <bhe@redhat.com>
11045 R:      Vivek Goyal <vgoyal@redhat.com>
11046 R:      Dave Young <dyoung@redhat.com>
11047 L:      kexec@lists.infradead.org
11048 S:      Maintained
11049 W:      http://lse.sourceforge.net/kdump/
11050 F:      Documentation/admin-guide/kdump/
11051 F:      fs/proc/vmcore.c
11052 F:      include/linux/crash_core.h
11053 F:      include/linux/crash_dump.h
11054 F:      include/uapi/linux/vmcore.h
11055 F:      kernel/crash_*.c
11056
11057 KEENE FM RADIO TRANSMITTER DRIVER
11058 M:      Hans Verkuil <hverkuil@xs4all.nl>
11059 L:      linux-media@vger.kernel.org
11060 S:      Maintained
11061 W:      https://linuxtv.org
11062 T:      git git://linuxtv.org/media_tree.git
11063 F:      drivers/media/radio/radio-keene*
11064
11065 KERNEL AUTOMOUNTER
11066 M:      Ian Kent <raven@themaw.net>
11067 L:      autofs@vger.kernel.org
11068 S:      Maintained
11069 F:      fs/autofs/
11070
11071 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
11072 M:      Masahiro Yamada <masahiroy@kernel.org>
11073 R:      Nathan Chancellor <nathan@kernel.org>
11074 R:      Nick Desaulniers <ndesaulniers@google.com>
11075 R:      Nicolas Schier <nicolas@fjasle.eu>
11076 L:      linux-kbuild@vger.kernel.org
11077 S:      Maintained
11078 Q:      https://patchwork.kernel.org/project/linux-kbuild/list/
11079 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
11080 F:      Documentation/kbuild/
11081 F:      Makefile
11082 F:      scripts/*vmlinux*
11083 F:      scripts/Kbuild*
11084 F:      scripts/Makefile*
11085 F:      scripts/basic/
11086 F:      scripts/dummy-tools/
11087 F:      scripts/mk*
11088 F:      scripts/mod/
11089 F:      scripts/package/
11090
11091 KERNEL HARDENING (not covered by other areas)
11092 M:      Kees Cook <keescook@chromium.org>
11093 L:      linux-hardening@vger.kernel.org
11094 S:      Supported
11095 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
11096 F:      Documentation/ABI/testing/sysfs-kernel-oops_count
11097 F:      Documentation/ABI/testing/sysfs-kernel-warn_count
11098 F:      include/linux/overflow.h
11099 F:      include/linux/randomize_kstack.h
11100 F:      mm/usercopy.c
11101 K:      \b(add|choose)_random_kstack_offset\b
11102 K:      \b__check_(object_size|heap_object)\b
11103
11104 KERNEL JANITORS
11105 L:      kernel-janitors@vger.kernel.org
11106 S:      Odd Fixes
11107 W:      http://kernelnewbies.org/KernelJanitors
11108
11109 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
11110 M:      Chuck Lever <chuck.lever@oracle.com>
11111 M:      Jeff Layton <jlayton@kernel.org>
11112 L:      linux-nfs@vger.kernel.org
11113 S:      Supported
11114 W:      http://nfs.sourceforge.net/
11115 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/cel/linux.git
11116 F:      fs/exportfs/
11117 F:      fs/lockd/
11118 F:      fs/nfs_common/
11119 F:      fs/nfsd/
11120 F:      include/linux/lockd/
11121 F:      include/linux/sunrpc/
11122 F:      include/trace/events/rpcgss.h
11123 F:      include/trace/events/rpcrdma.h
11124 F:      include/trace/events/sunrpc.h
11125 F:      include/trace/misc/fs.h
11126 F:      include/trace/misc/nfs.h
11127 F:      include/trace/misc/sunrpc.h
11128 F:      include/uapi/linux/nfsd/
11129 F:      include/uapi/linux/sunrpc/
11130 F:      net/sunrpc/
11131 F:      Documentation/filesystems/nfs/
11132
11133 KERNEL REGRESSIONS
11134 M:      Thorsten Leemhuis <linux@leemhuis.info>
11135 L:      regressions@lists.linux.dev
11136 S:      Supported
11137 F:      Documentation/admin-guide/reporting-regressions.rst
11138 F:      Documentation/process/handling-regressions.rst
11139
11140 KERNEL SELFTEST FRAMEWORK
11141 M:      Shuah Khan <shuah@kernel.org>
11142 M:      Shuah Khan <skhan@linuxfoundation.org>
11143 L:      linux-kselftest@vger.kernel.org
11144 S:      Maintained
11145 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
11146 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
11147 F:      Documentation/dev-tools/kselftest*
11148 F:      tools/testing/selftests/
11149
11150 KERNEL SMB3 SERVER (KSMBD)
11151 M:      Namjae Jeon <linkinjeon@kernel.org>
11152 M:      Steve French <sfrench@samba.org>
11153 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
11154 R:      Tom Talpey <tom@talpey.com>
11155 L:      linux-cifs@vger.kernel.org
11156 S:      Maintained
11157 T:      git git://git.samba.org/ksmbd.git
11158 F:      Documentation/filesystems/cifs/ksmbd.rst
11159 F:      fs/ksmbd/
11160 F:      fs/smbfs_common/
11161
11162 KERNEL UNIT TESTING FRAMEWORK (KUnit)
11163 M:      Brendan Higgins <brendanhiggins@google.com>
11164 M:      David Gow <davidgow@google.com>
11165 L:      linux-kselftest@vger.kernel.org
11166 L:      kunit-dev@googlegroups.com
11167 S:      Maintained
11168 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
11169 F:      Documentation/dev-tools/kunit/
11170 F:      include/kunit/
11171 F:      lib/kunit/
11172 F:      tools/testing/kunit/
11173
11174 KERNEL USERMODE HELPER
11175 M:      Luis Chamberlain <mcgrof@kernel.org>
11176 L:      linux-kernel@vger.kernel.org
11177 S:      Maintained
11178 F:      include/linux/umh.h
11179 F:      kernel/umh.c
11180
11181 KERNEL VIRTUAL MACHINE (KVM)
11182 M:      Paolo Bonzini <pbonzini@redhat.com>
11183 L:      kvm@vger.kernel.org
11184 S:      Supported
11185 W:      http://www.linux-kvm.org
11186 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11187 F:      Documentation/virt/kvm/
11188 F:      include/asm-generic/kvm*
11189 F:      include/kvm/iodev.h
11190 F:      include/linux/kvm*
11191 F:      include/trace/events/kvm.h
11192 F:      include/uapi/asm-generic/kvm*
11193 F:      include/uapi/linux/kvm*
11194 F:      tools/kvm/
11195 F:      tools/testing/selftests/kvm/
11196 F:      virt/kvm/*
11197
11198 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
11199 M:      Marc Zyngier <maz@kernel.org>
11200 R:      James Morse <james.morse@arm.com>
11201 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
11202 R:      Oliver Upton <oliver.upton@linux.dev>
11203 R:      Zenghui Yu <yuzenghui@huawei.com>
11204 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11205 L:      kvmarm@lists.linux.dev
11206 L:      kvmarm@lists.cs.columbia.edu (deprecated, moderated for non-subscribers)
11207 S:      Maintained
11208 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
11209 F:      arch/arm64/include/asm/kvm*
11210 F:      arch/arm64/include/uapi/asm/kvm*
11211 F:      arch/arm64/kvm/
11212 F:      include/kvm/arm_*
11213 F:      tools/testing/selftests/kvm/*/aarch64/
11214 F:      tools/testing/selftests/kvm/aarch64/
11215
11216 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
11217 M:      Huacai Chen <chenhuacai@kernel.org>
11218 M:      Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
11219 L:      linux-mips@vger.kernel.org
11220 L:      kvm@vger.kernel.org
11221 S:      Maintained
11222 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11223 F:      arch/mips/include/asm/kvm*
11224 F:      arch/mips/include/uapi/asm/kvm*
11225 F:      arch/mips/kvm/
11226
11227 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
11228 L:      linuxppc-dev@lists.ozlabs.org
11229 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git topic/ppc-kvm
11230 F:      arch/powerpc/include/asm/kvm*
11231 F:      arch/powerpc/include/uapi/asm/kvm*
11232 F:      arch/powerpc/kernel/kvm*
11233 F:      arch/powerpc/kvm/
11234
11235 KERNEL VIRTUAL MACHINE FOR RISC-V (KVM/riscv)
11236 M:      Anup Patel <anup@brainfault.org>
11237 R:      Atish Patra <atishp@atishpatra.org>
11238 L:      kvm@vger.kernel.org
11239 L:      kvm-riscv@lists.infradead.org
11240 L:      linux-riscv@lists.infradead.org
11241 S:      Maintained
11242 T:      git https://github.com/kvm-riscv/linux.git
11243 F:      arch/riscv/include/asm/kvm*
11244 F:      arch/riscv/include/uapi/asm/kvm*
11245 F:      arch/riscv/kvm/
11246 F:      tools/testing/selftests/kvm/*/riscv/
11247
11248 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
11249 M:      Christian Borntraeger <borntraeger@linux.ibm.com>
11250 M:      Janosch Frank <frankja@linux.ibm.com>
11251 M:      Claudio Imbrenda <imbrenda@linux.ibm.com>
11252 R:      David Hildenbrand <david@redhat.com>
11253 L:      kvm@vger.kernel.org
11254 S:      Supported
11255 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
11256 F:      Documentation/virt/kvm/s390*
11257 F:      arch/s390/include/asm/gmap.h
11258 F:      arch/s390/include/asm/kvm*
11259 F:      arch/s390/include/uapi/asm/kvm*
11260 F:      arch/s390/include/uapi/asm/uvdevice.h
11261 F:      arch/s390/kernel/uv.c
11262 F:      arch/s390/kvm/
11263 F:      arch/s390/mm/gmap.c
11264 F:      drivers/s390/char/uvdevice.c
11265 F:      tools/testing/selftests/drivers/s390x/uvdevice/
11266 F:      tools/testing/selftests/kvm/*/s390x/
11267 F:      tools/testing/selftests/kvm/s390x/
11268
11269 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
11270 M:      Sean Christopherson <seanjc@google.com>
11271 M:      Paolo Bonzini <pbonzini@redhat.com>
11272 L:      kvm@vger.kernel.org
11273 S:      Supported
11274 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11275 F:      arch/x86/include/asm/kvm*
11276 F:      arch/x86/include/asm/svm.h
11277 F:      arch/x86/include/asm/vmx*.h
11278 F:      arch/x86/include/uapi/asm/kvm*
11279 F:      arch/x86/include/uapi/asm/svm.h
11280 F:      arch/x86/include/uapi/asm/vmx.h
11281 F:      arch/x86/kvm/
11282 F:      arch/x86/kvm/*/
11283
11284 KVM PARAVIRT (KVM/paravirt)
11285 M:      Paolo Bonzini <pbonzini@redhat.com>
11286 R:      Wanpeng Li <wanpengli@tencent.com>
11287 R:      Vitaly Kuznetsov <vkuznets@redhat.com>
11288 L:      kvm@vger.kernel.org
11289 S:      Supported
11290 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11291 F:      arch/x86/kernel/kvm.c
11292 F:      arch/x86/kernel/kvmclock.c
11293 F:      arch/x86/include/asm/pvclock-abi.h
11294 F:      include/linux/kvm_para.h
11295 F:      include/uapi/linux/kvm_para.h
11296 F:      include/uapi/asm-generic/kvm_para.h
11297 F:      include/asm-generic/kvm_para.h
11298 F:      arch/um/include/asm/kvm_para.h
11299 F:      arch/x86/include/asm/kvm_para.h
11300 F:      arch/x86/include/uapi/asm/kvm_para.h
11301
11302 KVM X86 HYPER-V (KVM/hyper-v)
11303 M:      Vitaly Kuznetsov <vkuznets@redhat.com>
11304 M:      Sean Christopherson <seanjc@google.com>
11305 M:      Paolo Bonzini <pbonzini@redhat.com>
11306 L:      kvm@vger.kernel.org
11307 S:      Supported
11308 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11309 F:      arch/x86/kvm/hyperv.*
11310 F:      arch/x86/kvm/kvm_onhyperv.*
11311 F:      arch/x86/kvm/svm/hyperv.*
11312 F:      arch/x86/kvm/svm/svm_onhyperv.*
11313 F:      arch/x86/kvm/vmx/hyperv.*
11314
11315 KVM X86 Xen (KVM/Xen)
11316 M:      David Woodhouse <dwmw2@infradead.org>
11317 M:      Paul Durrant <paul@xen.org>
11318 M:      Sean Christopherson <seanjc@google.com>
11319 M:      Paolo Bonzini <pbonzini@redhat.com>
11320 L:      kvm@vger.kernel.org
11321 S:      Supported
11322 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11323 F:      arch/x86/kvm/xen.*
11324
11325 KERNFS
11326 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11327 M:      Tejun Heo <tj@kernel.org>
11328 S:      Supported
11329 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
11330 F:      fs/kernfs/
11331 F:      include/linux/kernfs.h
11332
11333 KEXEC
11334 M:      Eric Biederman <ebiederm@xmission.com>
11335 L:      kexec@lists.infradead.org
11336 S:      Maintained
11337 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
11338 F:      include/linux/kexec.h
11339 F:      include/uapi/linux/kexec.h
11340 F:      kernel/kexec*
11341
11342 KEYS-ENCRYPTED
11343 M:      Mimi Zohar <zohar@linux.ibm.com>
11344 L:      linux-integrity@vger.kernel.org
11345 L:      keyrings@vger.kernel.org
11346 S:      Supported
11347 F:      Documentation/security/keys/trusted-encrypted.rst
11348 F:      include/keys/encrypted-type.h
11349 F:      security/keys/encrypted-keys/
11350
11351 KEYS-TRUSTED
11352 M:      James Bottomley <jejb@linux.ibm.com>
11353 M:      Jarkko Sakkinen <jarkko@kernel.org>
11354 M:      Mimi Zohar <zohar@linux.ibm.com>
11355 L:      linux-integrity@vger.kernel.org
11356 L:      keyrings@vger.kernel.org
11357 S:      Supported
11358 F:      Documentation/security/keys/trusted-encrypted.rst
11359 F:      include/keys/trusted-type.h
11360 F:      include/keys/trusted_tpm.h
11361 F:      security/keys/trusted-keys/
11362
11363 KEYS-TRUSTED-TEE
11364 M:      Sumit Garg <sumit.garg@linaro.org>
11365 L:      linux-integrity@vger.kernel.org
11366 L:      keyrings@vger.kernel.org
11367 S:      Supported
11368 F:      include/keys/trusted_tee.h
11369 F:      security/keys/trusted-keys/trusted_tee.c
11370
11371 KEYS-TRUSTED-CAAM
11372 M:      Ahmad Fatoum <a.fatoum@pengutronix.de>
11373 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
11374 L:      linux-integrity@vger.kernel.org
11375 L:      keyrings@vger.kernel.org
11376 S:      Maintained
11377 F:      include/keys/trusted_caam.h
11378 F:      security/keys/trusted-keys/trusted_caam.c
11379
11380 KEYS/KEYRINGS
11381 M:      David Howells <dhowells@redhat.com>
11382 M:      Jarkko Sakkinen <jarkko@kernel.org>
11383 L:      keyrings@vger.kernel.org
11384 S:      Maintained
11385 F:      Documentation/security/keys/core.rst
11386 F:      include/keys/
11387 F:      include/linux/key-type.h
11388 F:      include/linux/key.h
11389 F:      include/linux/keyctl.h
11390 F:      include/uapi/linux/keyctl.h
11391 F:      security/keys/
11392
11393 KEYS/KEYRINGS_INTEGRITY
11394 M:      Jarkko Sakkinen <jarkko@kernel.org>
11395 M:      Mimi Zohar <zohar@linux.ibm.com>
11396 L:      linux-integrity@vger.kernel.org
11397 L:      keyrings@vger.kernel.org
11398 S:      Supported
11399 F:      security/integrity/platform_certs
11400
11401 KFENCE
11402 M:      Alexander Potapenko <glider@google.com>
11403 M:      Marco Elver <elver@google.com>
11404 R:      Dmitry Vyukov <dvyukov@google.com>
11405 L:      kasan-dev@googlegroups.com
11406 S:      Maintained
11407 F:      Documentation/dev-tools/kfence.rst
11408 F:      arch/*/include/asm/kfence.h
11409 F:      include/linux/kfence.h
11410 F:      lib/Kconfig.kfence
11411 F:      mm/kfence/
11412
11413 KFIFO
11414 M:      Stefani Seibold <stefani@seibold.net>
11415 S:      Maintained
11416 F:      include/linux/kfifo.h
11417 F:      lib/kfifo.c
11418 F:      samples/kfifo/
11419
11420 KGDB / KDB /debug_core
11421 M:      Jason Wessel <jason.wessel@windriver.com>
11422 M:      Daniel Thompson <daniel.thompson@linaro.org>
11423 R:      Douglas Anderson <dianders@chromium.org>
11424 L:      kgdb-bugreport@lists.sourceforge.net
11425 S:      Maintained
11426 W:      http://kgdb.wiki.kernel.org/
11427 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
11428 F:      Documentation/dev-tools/kgdb.rst
11429 F:      drivers/misc/kgdbts.c
11430 F:      drivers/tty/serial/kgdboc.c
11431 F:      include/linux/kdb.h
11432 F:      include/linux/kgdb.h
11433 F:      kernel/debug/
11434 F:      kernel/module/kdb.c
11435
11436 KHADAS MCU MFD DRIVER
11437 M:      Neil Armstrong <neil.armstrong@linaro.org>
11438 L:      linux-amlogic@lists.infradead.org
11439 S:      Maintained
11440 F:      Documentation/devicetree/bindings/mfd/khadas,mcu.yaml
11441 F:      drivers/mfd/khadas-mcu.c
11442 F:      include/linux/mfd/khadas-mcu.h
11443 F:      drivers/thermal/khadas_mcu_fan.c
11444
11445 KIONIX/ROHM KX022A ACCELEROMETER
11446 M:      Matti Vaittinen <mazziesaccount@gmail.com>
11447 L:      linux-iio@vger.kernel.org
11448 S:      Supported
11449 F:      drivers/iio/accel/kionix-kx022a*
11450
11451 KMEMLEAK
11452 M:      Catalin Marinas <catalin.marinas@arm.com>
11453 S:      Maintained
11454 F:      Documentation/dev-tools/kmemleak.rst
11455 F:      include/linux/kmemleak.h
11456 F:      mm/kmemleak.c
11457 F:      samples/kmemleak/kmemleak-test.c
11458
11459 KMOD KERNEL MODULE LOADER - USERMODE HELPER
11460 M:      Luis Chamberlain <mcgrof@kernel.org>
11461 L:      linux-kernel@vger.kernel.org
11462 L:      linux-modules@vger.kernel.org
11463 S:      Maintained
11464 F:      include/linux/kmod.h
11465 F:      kernel/kmod.c
11466 F:      lib/test_kmod.c
11467 F:      tools/testing/selftests/kmod/
11468
11469 KMSAN
11470 M:      Alexander Potapenko <glider@google.com>
11471 R:      Marco Elver <elver@google.com>
11472 R:      Dmitry Vyukov <dvyukov@google.com>
11473 L:      kasan-dev@googlegroups.com
11474 S:      Maintained
11475 F:      Documentation/dev-tools/kmsan.rst
11476 F:      arch/*/include/asm/kmsan.h
11477 F:      arch/*/mm/kmsan_*
11478 F:      include/linux/kmsan*.h
11479 F:      lib/Kconfig.kmsan
11480 F:      mm/kmsan/
11481 F:      scripts/Makefile.kmsan
11482
11483 KPROBES
11484 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
11485 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
11486 M:      "David S. Miller" <davem@davemloft.net>
11487 M:      Masami Hiramatsu <mhiramat@kernel.org>
11488 L:      linux-kernel@vger.kernel.org
11489 L:      linux-trace-kernel@vger.kernel.org
11490 Q:      https://patchwork.kernel.org/project/linux-trace-kernel/list/
11491 S:      Maintained
11492 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace.git
11493 F:      Documentation/trace/kprobes.rst
11494 F:      include/asm-generic/kprobes.h
11495 F:      include/linux/kprobes.h
11496 F:      kernel/kprobes.c
11497 F:      lib/test_kprobes.c
11498 F:      samples/kprobes
11499
11500 KS0108 LCD CONTROLLER DRIVER
11501 M:      Miguel Ojeda <ojeda@kernel.org>
11502 S:      Maintained
11503 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
11504 F:      drivers/auxdisplay/ks0108.c
11505 F:      include/linux/ks0108.h
11506
11507 KTD253 BACKLIGHT DRIVER
11508 M:      Linus Walleij <linus.walleij@linaro.org>
11509 S:      Maintained
11510 F:      Documentation/devicetree/bindings/leds/backlight/kinetic,ktd253.yaml
11511 F:      drivers/video/backlight/ktd253-backlight.c
11512
11513 KTEST
11514 M:      Steven Rostedt <rostedt@goodmis.org>
11515 M:      John Hawley <warthog9@eaglescrag.net>
11516 S:      Maintained
11517 F:      tools/testing/ktest
11518
11519 L3MDEV
11520 M:      David Ahern <dsahern@kernel.org>
11521 L:      netdev@vger.kernel.org
11522 S:      Maintained
11523 F:      include/net/l3mdev.h
11524 F:      net/l3mdev
11525
11526 LANDLOCK SECURITY MODULE
11527 M:      Mickaël Salaün <mic@digikod.net>
11528 L:      linux-security-module@vger.kernel.org
11529 S:      Supported
11530 W:      https://landlock.io
11531 T:      git https://github.com/landlock-lsm/linux.git
11532 F:      Documentation/security/landlock.rst
11533 F:      Documentation/userspace-api/landlock.rst
11534 F:      include/uapi/linux/landlock.h
11535 F:      samples/landlock/
11536 F:      security/landlock/
11537 F:      tools/testing/selftests/landlock/
11538 K:      landlock
11539 K:      LANDLOCK
11540
11541 LANTIQ / INTEL Ethernet drivers
11542 M:      Hauke Mehrtens <hauke@hauke-m.de>
11543 L:      netdev@vger.kernel.org
11544 S:      Maintained
11545 F:      drivers/net/dsa/lantiq_gswip.c
11546 F:      drivers/net/dsa/lantiq_pce.h
11547 F:      drivers/net/ethernet/lantiq_xrx200.c
11548 F:      net/dsa/tag_gswip.c
11549
11550 LANTIQ MIPS ARCHITECTURE
11551 M:      John Crispin <john@phrozen.org>
11552 L:      linux-mips@vger.kernel.org
11553 S:      Maintained
11554 F:      arch/mips/lantiq
11555 F:      drivers/soc/lantiq
11556
11557 LASI 53c700 driver for PARISC
11558 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
11559 L:      linux-scsi@vger.kernel.org
11560 S:      Maintained
11561 F:      Documentation/scsi/53c700.rst
11562 F:      drivers/scsi/53c700*
11563
11564 LEAKING_ADDRESSES
11565 M:      Tobin C. Harding <me@tobin.cc>
11566 M:      Tycho Andersen <tycho@tycho.pizza>
11567 L:      linux-hardening@vger.kernel.org
11568 S:      Maintained
11569 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
11570 F:      scripts/leaking_addresses.pl
11571
11572 LED SUBSYSTEM
11573 M:      Pavel Machek <pavel@ucw.cz>
11574 M:      Lee Jones <lee@kernel.org>
11575 L:      linux-leds@vger.kernel.org
11576 S:      Maintained
11577 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
11578 F:      Documentation/devicetree/bindings/leds/
11579 F:      drivers/leds/
11580 F:      include/dt-bindings/leds/
11581 F:      include/linux/leds.h
11582
11583 LEGACY EEPROM DRIVER
11584 M:      Jean Delvare <jdelvare@suse.com>
11585 S:      Maintained
11586 F:      Documentation/misc-devices/eeprom.rst
11587 F:      drivers/misc/eeprom/eeprom.c
11588
11589 LEGO MINDSTORMS EV3
11590 R:      David Lechner <david@lechnology.com>
11591 S:      Maintained
11592 F:      Documentation/devicetree/bindings/power/supply/lego,ev3-battery.yaml
11593 F:      arch/arm/boot/dts/da850-lego-ev3.dts
11594 F:      drivers/power/supply/lego_ev3_battery.c
11595
11596 LEGO USB Tower driver
11597 M:      Juergen Stuber <starblue@users.sourceforge.net>
11598 L:      legousb-devel@lists.sourceforge.net
11599 S:      Maintained
11600 W:      http://legousb.sourceforge.net/
11601 F:      drivers/usb/misc/legousbtower.c
11602
11603 LETSKETCH HID TABLET DRIVER
11604 M:      Hans de Goede <hdegoede@redhat.com>
11605 L:      linux-input@vger.kernel.org
11606 S:      Maintained
11607 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
11608 F:      drivers/hid/hid-letsketch.c
11609
11610 LG LAPTOP EXTRAS
11611 M:      Matan Ziv-Av <matan@svgalib.org>
11612 L:      platform-driver-x86@vger.kernel.org
11613 S:      Maintained
11614 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
11615 F:      Documentation/admin-guide/laptops/lg-laptop.rst
11616 F:      drivers/platform/x86/lg-laptop.c
11617
11618 LG2160 MEDIA DRIVER
11619 M:      Michael Krufky <mkrufky@linuxtv.org>
11620 L:      linux-media@vger.kernel.org
11621 S:      Maintained
11622 W:      https://linuxtv.org
11623 W:      http://github.com/mkrufky
11624 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11625 T:      git git://linuxtv.org/mkrufky/tuners.git
11626 F:      drivers/media/dvb-frontends/lg2160.*
11627
11628 LGDT3305 MEDIA DRIVER
11629 M:      Michael Krufky <mkrufky@linuxtv.org>
11630 L:      linux-media@vger.kernel.org
11631 S:      Maintained
11632 W:      https://linuxtv.org
11633 W:      http://github.com/mkrufky
11634 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11635 T:      git git://linuxtv.org/mkrufky/tuners.git
11636 F:      drivers/media/dvb-frontends/lgdt3305.*
11637
11638 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
11639 M:      Viresh Kumar <vireshk@kernel.org>
11640 L:      linux-ide@vger.kernel.org
11641 S:      Maintained
11642 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11643 F:      drivers/ata/pata_arasan_cf.c
11644 F:      include/linux/pata_arasan_cf_data.h
11645
11646 LIBATA PATA DRIVERS
11647 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
11648 L:      linux-ide@vger.kernel.org
11649 F:      drivers/ata/ata_*.c
11650 F:      drivers/ata/pata_*.c
11651
11652 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
11653 M:      Linus Walleij <linus.walleij@linaro.org>
11654 L:      linux-ide@vger.kernel.org
11655 S:      Maintained
11656 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11657 F:      drivers/ata/pata_ftide010.c
11658 F:      drivers/ata/sata_gemini.c
11659 F:      drivers/ata/sata_gemini.h
11660
11661 LIBATA SATA AHCI PLATFORM devices support
11662 M:      Hans de Goede <hdegoede@redhat.com>
11663 M:      Jens Axboe <axboe@kernel.dk>
11664 L:      linux-ide@vger.kernel.org
11665 S:      Maintained
11666 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11667 F:      drivers/ata/ahci_platform.c
11668 F:      drivers/ata/libahci_platform.c
11669 F:      include/linux/ahci_platform.h
11670
11671 LIBATA SATA AHCI SYNOPSYS DWC CONTROLLER DRIVER
11672 M:      Serge Semin <fancer.lancer@gmail.com>
11673 L:      linux-ide@vger.kernel.org
11674 S:      Maintained
11675 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/libata.git
11676 F:      Documentation/devicetree/bindings/ata/baikal,bt1-ahci.yaml
11677 F:      Documentation/devicetree/bindings/ata/snps,dwc-ahci.yaml
11678 F:      drivers/ata/ahci_dwc.c
11679
11680 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
11681 M:      Mikael Pettersson <mikpelinux@gmail.com>
11682 L:      linux-ide@vger.kernel.org
11683 S:      Maintained
11684 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11685 F:      drivers/ata/sata_promise.*
11686
11687 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
11688 M:      Damien Le Moal <damien.lemoal@opensource.wdc.com>
11689 L:      linux-ide@vger.kernel.org
11690 S:      Maintained
11691 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/libata.git
11692 F:      Documentation/ABI/testing/sysfs-ata
11693 F:      Documentation/devicetree/bindings/ata/
11694 F:      drivers/ata/
11695 F:      include/linux/ata.h
11696 F:      include/linux/libata.h
11697
11698 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
11699 M:      Vishal Verma <vishal.l.verma@intel.com>
11700 M:      Dan Williams <dan.j.williams@intel.com>
11701 M:      Dave Jiang <dave.jiang@intel.com>
11702 L:      nvdimm@lists.linux.dev
11703 S:      Supported
11704 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11705 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11706 F:      drivers/nvdimm/btt*
11707
11708 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
11709 M:      Dan Williams <dan.j.williams@intel.com>
11710 M:      Vishal Verma <vishal.l.verma@intel.com>
11711 M:      Dave Jiang <dave.jiang@intel.com>
11712 L:      nvdimm@lists.linux.dev
11713 S:      Supported
11714 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11715 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11716 F:      drivers/nvdimm/pmem*
11717
11718 LIBNVDIMM: DEVICETREE BINDINGS
11719 M:      Oliver O'Halloran <oohall@gmail.com>
11720 L:      nvdimm@lists.linux.dev
11721 S:      Supported
11722 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11723 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
11724 F:      drivers/nvdimm/of_pmem.c
11725
11726 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
11727 M:      Dan Williams <dan.j.williams@intel.com>
11728 M:      Vishal Verma <vishal.l.verma@intel.com>
11729 M:      Dave Jiang <dave.jiang@intel.com>
11730 M:      Ira Weiny <ira.weiny@intel.com>
11731 L:      nvdimm@lists.linux.dev
11732 S:      Supported
11733 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11734 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11735 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
11736 F:      drivers/acpi/nfit/*
11737 F:      drivers/nvdimm/*
11738 F:      include/linux/libnvdimm.h
11739 F:      include/linux/nd.h
11740 F:      include/uapi/linux/ndctl.h
11741 F:      tools/testing/nvdimm/
11742
11743 LICENSES and SPDX stuff
11744 M:      Thomas Gleixner <tglx@linutronix.de>
11745 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11746 L:      linux-spdx@vger.kernel.org
11747 S:      Maintained
11748 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
11749 F:      COPYING
11750 F:      Documentation/process/license-rules.rst
11751 F:      LICENSES/
11752 F:      scripts/spdxcheck-test.sh
11753 F:      scripts/spdxcheck.py
11754 F:      scripts/spdxexclude
11755
11756 LINEAR RANGES HELPERS
11757 M:      Mark Brown <broonie@kernel.org>
11758 R:      Matti Vaittinen <mazziesaccount@gmail.com>
11759 F:      lib/linear_ranges.c
11760 F:      lib/test_linear_ranges.c
11761 F:      include/linux/linear_range.h
11762
11763 LINUX FOR POWER MACINTOSH
11764 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
11765 L:      linuxppc-dev@lists.ozlabs.org
11766 S:      Odd Fixes
11767 F:      arch/powerpc/platforms/powermac/
11768 F:      drivers/macintosh/
11769
11770 LINUX FOR POWERPC (32-BIT AND 64-BIT)
11771 M:      Michael Ellerman <mpe@ellerman.id.au>
11772 R:      Nicholas Piggin <npiggin@gmail.com>
11773 R:      Christophe Leroy <christophe.leroy@csgroup.eu>
11774 L:      linuxppc-dev@lists.ozlabs.org
11775 S:      Supported
11776 W:      https://github.com/linuxppc/wiki/wiki
11777 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
11778 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
11779 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
11780 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
11781 F:      Documentation/devicetree/bindings/powerpc/
11782 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
11783 F:      Documentation/powerpc/
11784 F:      arch/powerpc/
11785 F:      drivers/*/*/*pasemi*
11786 F:      drivers/*/*pasemi*
11787 F:      drivers/char/tpm/tpm_ibmvtpm*
11788 F:      drivers/crypto/nx/
11789 F:      drivers/crypto/vmx/
11790 F:      drivers/i2c/busses/i2c-opal.c
11791 F:      drivers/net/ethernet/ibm/ibmveth.*
11792 F:      drivers/net/ethernet/ibm/ibmvnic.*
11793 F:      drivers/pci/hotplug/pnv_php.c
11794 F:      drivers/pci/hotplug/rpa*
11795 F:      drivers/rtc/rtc-opal.c
11796 F:      drivers/scsi/ibmvscsi/
11797 F:      drivers/tty/hvc/hvc_opal.c
11798 F:      drivers/watchdog/wdrtas.c
11799 F:      tools/testing/selftests/powerpc
11800 N:      /pmac
11801 N:      powermac
11802 N:      powernv
11803 N:      [^a-z0-9]ps3
11804 N:      pseries
11805
11806 LINUX FOR POWERPC EMBEDDED MPC5XXX
11807 M:      Anatolij Gustschin <agust@denx.de>
11808 L:      linuxppc-dev@lists.ozlabs.org
11809 S:      Odd Fixes
11810 F:      arch/powerpc/platforms/512x/
11811 F:      arch/powerpc/platforms/52xx/
11812
11813 LINUX FOR POWERPC EMBEDDED PPC4XX
11814 L:      linuxppc-dev@lists.ozlabs.org
11815 S:      Orphan
11816 F:      arch/powerpc/platforms/40x/
11817 F:      arch/powerpc/platforms/44x/
11818
11819 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
11820 M:      Scott Wood <oss@buserror.net>
11821 L:      linuxppc-dev@lists.ozlabs.org
11822 S:      Odd fixes
11823 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
11824 F:      Documentation/devicetree/bindings/powerpc/fsl/
11825 F:      arch/powerpc/platforms/83xx/
11826 F:      arch/powerpc/platforms/85xx/
11827
11828 LINUX FOR POWERPC EMBEDDED PPC8XX
11829 M:      Christophe Leroy <christophe.leroy@csgroup.eu>
11830 L:      linuxppc-dev@lists.ozlabs.org
11831 S:      Maintained
11832 F:      arch/powerpc/platforms/8xx/
11833
11834 LINUX KERNEL DUMP TEST MODULE (LKDTM)
11835 M:      Kees Cook <keescook@chromium.org>
11836 S:      Maintained
11837 F:      drivers/misc/lkdtm/*
11838 F:      tools/testing/selftests/lkdtm/*
11839
11840 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
11841 M:      Alan Stern <stern@rowland.harvard.edu>
11842 M:      Andrea Parri <parri.andrea@gmail.com>
11843 M:      Will Deacon <will@kernel.org>
11844 M:      Peter Zijlstra <peterz@infradead.org>
11845 M:      Boqun Feng <boqun.feng@gmail.com>
11846 M:      Nicholas Piggin <npiggin@gmail.com>
11847 M:      David Howells <dhowells@redhat.com>
11848 M:      Jade Alglave <j.alglave@ucl.ac.uk>
11849 M:      Luc Maranget <luc.maranget@inria.fr>
11850 M:      "Paul E. McKenney" <paulmck@kernel.org>
11851 R:      Akira Yokosawa <akiyks@gmail.com>
11852 R:      Daniel Lustig <dlustig@nvidia.com>
11853 R:      Joel Fernandes <joel@joelfernandes.org>
11854 L:      linux-kernel@vger.kernel.org
11855 L:      linux-arch@vger.kernel.org
11856 S:      Supported
11857 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
11858 F:      Documentation/atomic_bitops.txt
11859 F:      Documentation/atomic_t.txt
11860 F:      Documentation/core-api/refcount-vs-atomic.rst
11861 F:      Documentation/litmus-tests/
11862 F:      Documentation/memory-barriers.txt
11863 F:      tools/memory-model/
11864
11865 LIS3LV02D ACCELEROMETER DRIVER
11866 M:      Eric Piel <eric.piel@tremplin-utc.net>
11867 S:      Maintained
11868 F:      Documentation/misc-devices/lis3lv02d.rst
11869 F:      drivers/misc/lis3lv02d/
11870 F:      drivers/platform/x86/hp/hp_accel.c
11871
11872 LIST KUNIT TEST
11873 M:      David Gow <davidgow@google.com>
11874 L:      linux-kselftest@vger.kernel.org
11875 L:      kunit-dev@googlegroups.com
11876 S:      Maintained
11877 F:      lib/list-test.c
11878
11879 LITEX PLATFORM
11880 M:      Karol Gugala <kgugala@antmicro.com>
11881 M:      Mateusz Holenko <mholenko@antmicro.com>
11882 M:      Gabriel Somlo <gsomlo@gmail.com>
11883 M:      Joel Stanley <joel@jms.id.au>
11884 S:      Maintained
11885 F:      Documentation/devicetree/bindings/*/litex,*.yaml
11886 F:      arch/openrisc/boot/dts/or1klitex.dts
11887 F:      include/linux/litex.h
11888 F:      drivers/tty/serial/liteuart.c
11889 F:      drivers/soc/litex/*
11890 F:      drivers/net/ethernet/litex/*
11891 F:      drivers/mmc/host/litex_mmc.c
11892 N:      litex
11893
11894 LIVE PATCHING
11895 M:      Josh Poimboeuf <jpoimboe@kernel.org>
11896 M:      Jiri Kosina <jikos@kernel.org>
11897 M:      Miroslav Benes <mbenes@suse.cz>
11898 M:      Petr Mladek <pmladek@suse.com>
11899 R:      Joe Lawrence <joe.lawrence@redhat.com>
11900 L:      live-patching@vger.kernel.org
11901 S:      Maintained
11902 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
11903 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
11904 F:      Documentation/livepatch/
11905 F:      arch/powerpc/include/asm/livepatch.h
11906 F:      include/linux/livepatch.h
11907 F:      kernel/livepatch/
11908 F:      kernel/module/livepatch.c
11909 F:      lib/livepatch/
11910 F:      samples/livepatch/
11911 F:      tools/testing/selftests/livepatch/
11912
11913 LLC (802.2)
11914 L:      netdev@vger.kernel.org
11915 S:      Odd fixes
11916 F:      include/linux/llc.h
11917 F:      include/net/llc*
11918 F:      include/uapi/linux/llc.h
11919 F:      net/llc/
11920
11921 LM73 HARDWARE MONITOR DRIVER
11922 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
11923 L:      linux-hwmon@vger.kernel.org
11924 S:      Maintained
11925 F:      drivers/hwmon/lm73.c
11926
11927 LM78 HARDWARE MONITOR DRIVER
11928 M:      Jean Delvare <jdelvare@suse.com>
11929 L:      linux-hwmon@vger.kernel.org
11930 S:      Maintained
11931 F:      Documentation/hwmon/lm78.rst
11932 F:      drivers/hwmon/lm78.c
11933
11934 LM83 HARDWARE MONITOR DRIVER
11935 M:      Jean Delvare <jdelvare@suse.com>
11936 L:      linux-hwmon@vger.kernel.org
11937 S:      Maintained
11938 F:      Documentation/hwmon/lm83.rst
11939 F:      drivers/hwmon/lm83.c
11940
11941 LM90 HARDWARE MONITOR DRIVER
11942 M:      Jean Delvare <jdelvare@suse.com>
11943 L:      linux-hwmon@vger.kernel.org
11944 S:      Maintained
11945 F:      Documentation/devicetree/bindings/hwmon/national,lm90.yaml
11946 F:      Documentation/hwmon/lm90.rst
11947 F:      drivers/hwmon/lm90.c
11948 F:      include/dt-bindings/thermal/lm90.h
11949
11950 LM95234 HARDWARE MONITOR DRIVER
11951 M:      Guenter Roeck <linux@roeck-us.net>
11952 L:      linux-hwmon@vger.kernel.org
11953 S:      Maintained
11954 F:      Documentation/hwmon/lm95234.rst
11955 F:      drivers/hwmon/lm95234.c
11956
11957 LME2510 MEDIA DRIVER
11958 M:      Malcolm Priestley <tvboxspy@gmail.com>
11959 L:      linux-media@vger.kernel.org
11960 S:      Maintained
11961 W:      https://linuxtv.org
11962 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11963 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
11964
11965 LOADPIN SECURITY MODULE
11966 M:      Kees Cook <keescook@chromium.org>
11967 S:      Supported
11968 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
11969 F:      Documentation/admin-guide/LSM/LoadPin.rst
11970 F:      security/loadpin/
11971
11972 LOCKING PRIMITIVES
11973 M:      Peter Zijlstra <peterz@infradead.org>
11974 M:      Ingo Molnar <mingo@redhat.com>
11975 M:      Will Deacon <will@kernel.org>
11976 R:      Waiman Long <longman@redhat.com>
11977 R:      Boqun Feng <boqun.feng@gmail.com> (LOCKDEP)
11978 L:      linux-kernel@vger.kernel.org
11979 S:      Maintained
11980 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
11981 F:      Documentation/locking/
11982 F:      arch/*/include/asm/spinlock*.h
11983 F:      include/linux/lockdep.h
11984 F:      include/linux/mutex*.h
11985 F:      include/linux/rwlock*.h
11986 F:      include/linux/rwsem*.h
11987 F:      include/linux/seqlock.h
11988 F:      include/linux/spinlock*.h
11989 F:      kernel/locking/
11990 F:      lib/locking*.[ch]
11991 X:      kernel/locking/locktorture.c
11992
11993 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
11994 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
11995 L:      linux-ntfs-dev@lists.sourceforge.net
11996 S:      Maintained
11997 W:      http://www.linux-ntfs.org/content/view/19/37/
11998 F:      Documentation/admin-guide/ldm.rst
11999 F:      block/partitions/ldm.*
12000
12001 LOGITECH HID GAMING KEYBOARDS
12002 M:      Hans de Goede <hdegoede@redhat.com>
12003 L:      linux-input@vger.kernel.org
12004 S:      Maintained
12005 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
12006 F:      drivers/hid/hid-lg-g15.c
12007
12008 LONTIUM LT8912B MIPI TO HDMI BRIDGE
12009 M:      Adrien Grassein <adrien.grassein@gmail.com>
12010 S:      Maintained
12011 F:      Documentation/devicetree/bindings/display/bridge/lontium,lt8912b.yaml
12012 F:      drivers/gpu/drm/bridge/lontium-lt8912b.c
12013
12014 LOONGARCH
12015 M:      Huacai Chen <chenhuacai@kernel.org>
12016 R:      WANG Xuerui <kernel@xen0n.name>
12017 L:      loongarch@lists.linux.dev
12018 S:      Maintained
12019 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson.git
12020 F:      arch/loongarch/
12021 F:      drivers/*/*loongarch*
12022 F:      Documentation/loongarch/
12023 F:      Documentation/translations/zh_CN/loongarch/
12024
12025 LOONGSON-2 SOC SERIES GUTS DRIVER
12026 M:      Yinbo Zhu <zhuyinbo@loongson.cn>
12027 L:      loongarch@lists.linux.dev
12028 S:      Maintained
12029 F:      Documentation/devicetree/bindings/hwinfo/loongson,ls2k-chipid.yaml
12030 F:      drivers/soc/loongson/loongson2_guts.c
12031
12032 LOONGSON-2 SOC SERIES PINCTRL DRIVER
12033 M:      zhanghongchen <zhanghongchen@loongson.cn>
12034 M:      Yinbo Zhu <zhuyinbo@loongson.cn>
12035 L:      linux-gpio@vger.kernel.org
12036 S:      Maintained
12037 F:      Documentation/devicetree/bindings/pinctrl/loongson,ls2k-pinctrl.yaml
12038 F:      drivers/pinctrl/pinctrl-loongson2.c
12039
12040 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
12041 M:      Sathya Prakash <sathya.prakash@broadcom.com>
12042 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
12043 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
12044 L:      MPT-FusionLinux.pdl@broadcom.com
12045 L:      linux-scsi@vger.kernel.org
12046 S:      Supported
12047 W:      http://www.avagotech.com/support/
12048 F:      drivers/message/fusion/
12049 F:      drivers/scsi/mpt3sas/
12050
12051 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
12052 M:      Matthew Wilcox <willy@infradead.org>
12053 L:      linux-scsi@vger.kernel.org
12054 S:      Maintained
12055 F:      drivers/scsi/sym53c8xx_2/
12056
12057 LTC1660 DAC DRIVER
12058 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
12059 L:      linux-iio@vger.kernel.org
12060 S:      Maintained
12061 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
12062 F:      drivers/iio/dac/ltc1660.c
12063
12064 LTC2688 IIO DAC DRIVER
12065 M:      Nuno Sá <nuno.sa@analog.com>
12066 L:      linux-iio@vger.kernel.org
12067 S:      Supported
12068 W:      https://ez.analog.com/linux-software-drivers
12069 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-ltc2688
12070 F:      Documentation/devicetree/bindings/iio/dac/adi,ltc2688.yaml
12071 F:      drivers/iio/dac/ltc2688.c
12072
12073 LTC2947 HARDWARE MONITOR DRIVER
12074 M:      Nuno Sá <nuno.sa@analog.com>
12075 L:      linux-hwmon@vger.kernel.org
12076 S:      Supported
12077 W:      https://ez.analog.com/linux-software-drivers
12078 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
12079 F:      drivers/hwmon/ltc2947-core.c
12080 F:      drivers/hwmon/ltc2947-i2c.c
12081 F:      drivers/hwmon/ltc2947-spi.c
12082 F:      drivers/hwmon/ltc2947.h
12083
12084 LTC2983 IIO TEMPERATURE DRIVER
12085 M:      Nuno Sá <nuno.sa@analog.com>
12086 L:      linux-iio@vger.kernel.org
12087 S:      Supported
12088 W:      https://ez.analog.com/linux-software-drivers
12089 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
12090 F:      drivers/iio/temperature/ltc2983.c
12091
12092 LTC4261 HARDWARE MONITOR DRIVER
12093 M:      Guenter Roeck <linux@roeck-us.net>
12094 L:      linux-hwmon@vger.kernel.org
12095 S:      Maintained
12096 F:      Documentation/hwmon/ltc4261.rst
12097 F:      drivers/hwmon/ltc4261.c
12098
12099 LTC4306 I2C MULTIPLEXER DRIVER
12100 M:      Michael Hennerich <michael.hennerich@analog.com>
12101 L:      linux-i2c@vger.kernel.org
12102 S:      Supported
12103 W:      https://ez.analog.com/linux-software-drivers
12104 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
12105 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
12106
12107 LTP (Linux Test Project)
12108 M:      Mike Frysinger <vapier@gentoo.org>
12109 M:      Cyril Hrubis <chrubis@suse.cz>
12110 M:      Wanlong Gao <wanlong.gao@gmail.com>
12111 M:      Jan Stancek <jstancek@redhat.com>
12112 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
12113 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
12114 L:      ltp@lists.linux.it (subscribers-only)
12115 S:      Maintained
12116 W:      http://linux-test-project.github.io/
12117 T:      git https://github.com/linux-test-project/ltp.git
12118
12119 LYNX 28G SERDES PHY DRIVER
12120 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
12121 L:      netdev@vger.kernel.org
12122 S:      Supported
12123 F:      Documentation/devicetree/bindings/phy/fsl,lynx-28g.yaml
12124 F:      drivers/phy/freescale/phy-fsl-lynx-28g.c
12125
12126 LYNX PCS MODULE
12127 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
12128 L:      netdev@vger.kernel.org
12129 S:      Supported
12130 F:      drivers/net/pcs/pcs-lynx.c
12131 F:      include/linux/pcs-lynx.h
12132
12133 M68K ARCHITECTURE
12134 M:      Geert Uytterhoeven <geert@linux-m68k.org>
12135 L:      linux-m68k@lists.linux-m68k.org
12136 S:      Maintained
12137 W:      http://www.linux-m68k.org/
12138 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
12139 F:      arch/m68k/
12140 F:      drivers/zorro/
12141
12142 M68K ON APPLE MACINTOSH
12143 M:      Joshua Thompson <funaho@jurai.org>
12144 L:      linux-m68k@lists.linux-m68k.org
12145 S:      Maintained
12146 W:      http://www.mac.linux-m68k.org/
12147 F:      arch/m68k/mac/
12148 F:      drivers/macintosh/adb-iop.c
12149 F:      drivers/macintosh/via-macii.c
12150
12151 M68K ON HP9000/300
12152 M:      Philip Blundell <philb@gnu.org>
12153 S:      Maintained
12154 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
12155 F:      arch/m68k/hp300/
12156
12157 M88DS3103 MEDIA DRIVER
12158 M:      Antti Palosaari <crope@iki.fi>
12159 L:      linux-media@vger.kernel.org
12160 S:      Maintained
12161 W:      https://linuxtv.org
12162 W:      http://palosaari.fi/linux/
12163 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12164 T:      git git://linuxtv.org/anttip/media_tree.git
12165 F:      drivers/media/dvb-frontends/m88ds3103*
12166
12167 M88RS2000 MEDIA DRIVER
12168 M:      Malcolm Priestley <tvboxspy@gmail.com>
12169 L:      linux-media@vger.kernel.org
12170 S:      Maintained
12171 W:      https://linuxtv.org
12172 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12173 F:      drivers/media/dvb-frontends/m88rs2000*
12174
12175 MA901 MASTERKIT USB FM RADIO DRIVER
12176 M:      Alexey Klimov <klimov.linux@gmail.com>
12177 L:      linux-media@vger.kernel.org
12178 S:      Maintained
12179 T:      git git://linuxtv.org/media_tree.git
12180 F:      drivers/media/radio/radio-ma901.c
12181
12182 MAC80211
12183 M:      Johannes Berg <johannes@sipsolutions.net>
12184 L:      linux-wireless@vger.kernel.org
12185 S:      Maintained
12186 W:      https://wireless.wiki.kernel.org/
12187 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
12188 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
12189 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
12190 F:      Documentation/networking/mac80211-injection.rst
12191 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
12192 F:      drivers/net/wireless/mac80211_hwsim.[ch]
12193 F:      include/net/mac80211.h
12194 F:      net/mac80211/
12195
12196 MAILBOX API
12197 M:      Jassi Brar <jassisinghbrar@gmail.com>
12198 L:      linux-kernel@vger.kernel.org
12199 S:      Maintained
12200 F:      drivers/mailbox/
12201 F:      include/linux/mailbox_client.h
12202 F:      include/linux/mailbox_controller.h
12203 F:      include/dt-bindings/mailbox/
12204 F:      Documentation/devicetree/bindings/mailbox/
12205
12206 MAILBOX ARM MHUv2
12207 M:      Viresh Kumar <viresh.kumar@linaro.org>
12208 M:      Tushar Khandelwal <Tushar.Khandelwal@arm.com>
12209 L:      linux-kernel@vger.kernel.org
12210 S:      Maintained
12211 F:      drivers/mailbox/arm_mhuv2.c
12212 F:      include/linux/mailbox/arm_mhuv2_message.h
12213 F:      Documentation/devicetree/bindings/mailbox/arm,mhuv2.yaml
12214
12215 MANAGEMENT COMPONENT TRANSPORT PROTOCOL (MCTP)
12216 M:      Jeremy Kerr <jk@codeconstruct.com.au>
12217 M:      Matt Johnston <matt@codeconstruct.com.au>
12218 L:      netdev@vger.kernel.org
12219 S:      Maintained
12220 F:      Documentation/networking/mctp.rst
12221 F:      drivers/net/mctp/
12222 F:      include/net/mctp.h
12223 F:      include/net/mctpdevice.h
12224 F:      include/net/netns/mctp.h
12225 F:      net/mctp/
12226
12227 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
12228 M:      Michael Kerrisk <mtk.manpages@gmail.com>
12229 L:      linux-man@vger.kernel.org
12230 S:      Maintained
12231 W:      http://www.kernel.org/doc/man-pages
12232
12233 MAPLE TREE
12234 M:      Liam R. Howlett <Liam.Howlett@oracle.com>
12235 L:      linux-mm@kvack.org
12236 S:      Supported
12237 F:      Documentation/core-api/maple_tree.rst
12238 F:      include/linux/maple_tree.h
12239 F:      include/trace/events/maple_tree.h
12240 F:      lib/maple_tree.c
12241 F:      lib/test_maple_tree.c
12242 F:      tools/testing/radix-tree/linux/maple_tree.h
12243 F:      tools/testing/radix-tree/maple.c
12244
12245 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
12246 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
12247 L:      linux-mips@vger.kernel.org
12248 S:      Maintained
12249 F:      arch/mips/boot/dts/img/pistachio*
12250
12251 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
12252 M:      Andrew Lunn <andrew@lunn.ch>
12253 L:      netdev@vger.kernel.org
12254 S:      Maintained
12255 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
12256 F:      Documentation/networking/devlink/mv88e6xxx.rst
12257 F:      drivers/net/dsa/mv88e6xxx/
12258 F:      include/linux/dsa/mv88e6xxx.h
12259 F:      include/linux/platform_data/mv88e6xxx.h
12260
12261 MARVELL ARMADA 3700 PHY DRIVERS
12262 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12263 S:      Maintained
12264 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
12265 F:      Documentation/devicetree/bindings/phy/marvell,armada-3700-utmi-phy.yaml
12266 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
12267 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
12268
12269 MARVELL ARMADA 3700 SERIAL DRIVER
12270 M:      Pali Rohár <pali@kernel.org>
12271 S:      Maintained
12272 F:      Documentation/devicetree/bindings/clock/marvell,armada-3700-uart-clock.yaml
12273 F:      Documentation/devicetree/bindings/serial/mvebu-uart.txt
12274 F:      drivers/tty/serial/mvebu-uart.c
12275
12276 MARVELL ARMADA DRM SUPPORT
12277 M:      Russell King <linux@armlinux.org.uk>
12278 S:      Maintained
12279 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
12280 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
12281 F:      Documentation/devicetree/bindings/display/armada/
12282 F:      drivers/gpu/drm/armada/
12283 F:      include/uapi/drm/armada_drm.h
12284
12285 MARVELL CRYPTO DRIVER
12286 M:      Boris Brezillon <bbrezillon@kernel.org>
12287 M:      Arnaud Ebalard <arno@natisbad.org>
12288 M:      Srujana Challa <schalla@marvell.com>
12289 L:      linux-crypto@vger.kernel.org
12290 S:      Maintained
12291 F:      drivers/crypto/marvell/
12292 F:      include/linux/soc/marvell/octeontx2/
12293
12294 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
12295 M:      Mirko Lindner <mlindner@marvell.com>
12296 M:      Stephen Hemminger <stephen@networkplumber.org>
12297 L:      netdev@vger.kernel.org
12298 S:      Maintained
12299 F:      drivers/net/ethernet/marvell/sk*
12300
12301 MARVELL LIBERTAS WIRELESS DRIVER
12302 L:      libertas-dev@lists.infradead.org
12303 S:      Orphan
12304 F:      drivers/net/wireless/marvell/libertas/
12305
12306 MARVELL MACCHIATOBIN SUPPORT
12307 M:      Russell King <linux@armlinux.org.uk>
12308 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12309 S:      Maintained
12310 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
12311
12312 MARVELL MV643XX ETHERNET DRIVER
12313 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
12314 L:      netdev@vger.kernel.org
12315 S:      Maintained
12316 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
12317 F:      include/linux/mv643xx.h
12318
12319 MARVELL MV88X3310 PHY DRIVER
12320 M:      Russell King <linux@armlinux.org.uk>
12321 M:      Marek Behún <kabel@kernel.org>
12322 L:      netdev@vger.kernel.org
12323 S:      Maintained
12324 F:      drivers/net/phy/marvell10g.c
12325
12326 MARVELL MVEBU THERMAL DRIVER
12327 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12328 S:      Maintained
12329 F:      drivers/thermal/armada_thermal.c
12330
12331 MARVELL MVNETA ETHERNET DRIVER
12332 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
12333 L:      netdev@vger.kernel.org
12334 S:      Maintained
12335 F:      drivers/net/ethernet/marvell/mvneta.*
12336
12337 MARVELL MVPP2 ETHERNET DRIVER
12338 M:      Marcin Wojtas <mw@semihalf.com>
12339 M:      Russell King <linux@armlinux.org.uk>
12340 L:      netdev@vger.kernel.org
12341 S:      Maintained
12342 F:      Documentation/devicetree/bindings/net/marvell,pp2.yaml
12343 F:      drivers/net/ethernet/marvell/mvpp2/
12344
12345 MARVELL MWIFIEX WIRELESS DRIVER
12346 M:      Amitkumar Karwar <amitkarwar@gmail.com>
12347 M:      Ganapathi Bhat <ganapathi017@gmail.com>
12348 M:      Sharvari Harisangam <sharvari.harisangam@nxp.com>
12349 M:      Xinming Hu <huxinming820@gmail.com>
12350 L:      linux-wireless@vger.kernel.org
12351 S:      Maintained
12352 F:      drivers/net/wireless/marvell/mwifiex/
12353
12354 MARVELL MWL8K WIRELESS DRIVER
12355 M:      Lennert Buytenhek <buytenh@wantstofly.org>
12356 L:      linux-wireless@vger.kernel.org
12357 S:      Odd Fixes
12358 F:      drivers/net/wireless/marvell/mwl8k.c
12359
12360 MARVELL NAND CONTROLLER DRIVER
12361 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12362 L:      linux-mtd@lists.infradead.org
12363 S:      Maintained
12364 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
12365 F:      drivers/mtd/nand/raw/marvell_nand.c
12366
12367 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
12368 M:      Sunil Goutham <sgoutham@marvell.com>
12369 M:      Geetha sowjanya <gakula@marvell.com>
12370 M:      Subbaraya Sundeep <sbhatta@marvell.com>
12371 M:      hariprasad <hkelam@marvell.com>
12372 L:      netdev@vger.kernel.org
12373 S:      Supported
12374 F:      drivers/net/ethernet/marvell/octeontx2/nic/
12375 F:      include/linux/soc/marvell/octeontx2/
12376
12377 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
12378 M:      Sunil Goutham <sgoutham@marvell.com>
12379 M:      Linu Cherian <lcherian@marvell.com>
12380 M:      Geetha sowjanya <gakula@marvell.com>
12381 M:      Jerin Jacob <jerinj@marvell.com>
12382 M:      hariprasad <hkelam@marvell.com>
12383 M:      Subbaraya Sundeep <sbhatta@marvell.com>
12384 L:      netdev@vger.kernel.org
12385 S:      Supported
12386 F:      Documentation/networking/device_drivers/ethernet/marvell/octeontx2.rst
12387 F:      drivers/net/ethernet/marvell/octeontx2/af/
12388
12389 MARVELL PRESTERA ETHERNET SWITCH DRIVER
12390 M:      Taras Chornyi <taras.chornyi@plvision.eu>
12391 S:      Supported
12392 W:      https://github.com/Marvell-switching/switchdev-prestera
12393 F:      drivers/net/ethernet/marvell/prestera/
12394
12395 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
12396 M:      Nicolas Pitre <nico@fluxnic.net>
12397 S:      Odd Fixes
12398 F:      drivers/mmc/host/mvsdio.*
12399
12400 MARVELL USB MDIO CONTROLLER DRIVER
12401 M:      Tobias Waldekranz <tobias@waldekranz.com>
12402 L:      netdev@vger.kernel.org
12403 S:      Maintained
12404 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
12405 F:      drivers/net/mdio/mdio-mvusb.c
12406
12407 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
12408 M:      Hu Ziji <huziji@marvell.com>
12409 L:      linux-mmc@vger.kernel.org
12410 S:      Supported
12411 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.yaml
12412 F:      drivers/mmc/host/sdhci-xenon*
12413
12414 MARVELL OCTEON ENDPOINT DRIVER
12415 M:      Veerasenareddy Burru <vburru@marvell.com>
12416 M:      Abhijit Ayarekar <aayarekar@marvell.com>
12417 L:      netdev@vger.kernel.org
12418 S:      Supported
12419 F:      drivers/net/ethernet/marvell/octeon_ep
12420
12421 MATROX FRAMEBUFFER DRIVER
12422 L:      linux-fbdev@vger.kernel.org
12423 S:      Orphan
12424 F:      drivers/video/fbdev/matrox/matroxfb_*
12425 F:      include/uapi/linux/matroxfb.h
12426
12427 MAX15301 DRIVER
12428 M:      Daniel Nilsson <daniel.nilsson@flex.com>
12429 L:      linux-hwmon@vger.kernel.org
12430 S:      Maintained
12431 F:      Documentation/hwmon/max15301.rst
12432 F:      drivers/hwmon/pmbus/max15301.c
12433
12434 MAX16065 HARDWARE MONITOR DRIVER
12435 M:      Guenter Roeck <linux@roeck-us.net>
12436 L:      linux-hwmon@vger.kernel.org
12437 S:      Maintained
12438 F:      Documentation/hwmon/max16065.rst
12439 F:      drivers/hwmon/max16065.c
12440
12441 MAX2175 SDR TUNER DRIVER
12442 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
12443 L:      linux-media@vger.kernel.org
12444 S:      Maintained
12445 T:      git git://linuxtv.org/media_tree.git
12446 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
12447 F:      Documentation/userspace-api/media/drivers/max2175.rst
12448 F:      drivers/media/i2c/max2175*
12449 F:      include/uapi/linux/max2175.h
12450
12451 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
12452 L:      linux-hwmon@vger.kernel.org
12453 S:      Orphan
12454 F:      Documentation/hwmon/max6650.rst
12455 F:      drivers/hwmon/max6650.c
12456
12457 MAX6697 HARDWARE MONITOR DRIVER
12458 M:      Guenter Roeck <linux@roeck-us.net>
12459 L:      linux-hwmon@vger.kernel.org
12460 S:      Maintained
12461 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
12462 F:      Documentation/hwmon/max6697.rst
12463 F:      drivers/hwmon/max6697.c
12464 F:      include/linux/platform_data/max6697.h
12465
12466 MAX9286 QUAD GMSL DESERIALIZER DRIVER
12467 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
12468 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
12469 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
12470 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
12471 L:      linux-media@vger.kernel.org
12472 S:      Maintained
12473 F:      Documentation/devicetree/bindings/media/i2c/maxim,max9286.yaml
12474 F:      drivers/media/i2c/max9286.c
12475
12476 MAX96712 QUAD GMSL2 DESERIALIZER DRIVER
12477 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
12478 L:      linux-media@vger.kernel.org
12479 S:      Maintained
12480 F:      drivers/staging/media/max96712/max96712.c
12481
12482 MAX9860 MONO AUDIO VOICE CODEC DRIVER
12483 M:      Peter Rosin <peda@axentia.se>
12484 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12485 S:      Maintained
12486 F:      Documentation/devicetree/bindings/sound/max9860.txt
12487 F:      sound/soc/codecs/max9860.*
12488
12489 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
12490 M:      Andreas Klinger <ak@it-klinger.de>
12491 L:      linux-iio@vger.kernel.org
12492 S:      Maintained
12493 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
12494 F:      drivers/iio/proximity/mb1232.c
12495
12496 MAXIM MAX11205 DRIVER
12497 M:      Ramona Bolboaca <ramona.bolboaca@analog.com>
12498 L:      linux-iio@vger.kernel.org
12499 S:      Supported
12500 W:      https://ez.analog.com/linux-software-drivers
12501 F:      Documentation/devicetree/bindings/iio/adc/maxim,max11205.yaml
12502 F:      drivers/iio/adc/max11205.c
12503
12504 MAXIM MAX17040 FAMILY FUEL GAUGE DRIVERS
12505 R:      Iskren Chernev <iskren.chernev@gmail.com>
12506 R:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12507 R:      Marek Szyprowski <m.szyprowski@samsung.com>
12508 R:      Matheus Castello <matheus@castello.eng.br>
12509 L:      linux-pm@vger.kernel.org
12510 S:      Maintained
12511 F:      Documentation/devicetree/bindings/power/supply/maxim,max17040.yaml
12512 F:      drivers/power/supply/max17040_battery.c
12513
12514 MAXIM MAX17042 FAMILY FUEL GAUGE DRIVERS
12515 R:      Hans de Goede <hdegoede@redhat.com>
12516 R:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12517 R:      Marek Szyprowski <m.szyprowski@samsung.com>
12518 R:      Sebastian Krzyszkowiak <sebastian.krzyszkowiak@puri.sm>
12519 R:      Purism Kernel Team <kernel@puri.sm>
12520 L:      linux-pm@vger.kernel.org
12521 S:      Maintained
12522 F:      Documentation/devicetree/bindings/power/supply/maxim,max17042.yaml
12523 F:      drivers/power/supply/max17042_battery.c
12524
12525 MAXIM MAX20086 CAMERA POWER PROTECTOR DRIVER
12526 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12527 L:      linux-kernel@vger.kernel.org
12528 S:      Maintained
12529 F:      Documentation/devicetree/bindings/regulator/maxim,max20086.yaml
12530 F:      drivers/regulator/max20086-regulator.c
12531
12532 MAXIM MAX30208 TEMPERATURE SENSOR DRIVER
12533 M:      Rajat Khandelwal <rajat.khandelwal@linux.intel.com>
12534 L:      linux-iio@vger.kernel.org
12535 S:      Maintained
12536 F:      drivers/iio/temperature/max30208.c
12537
12538 MAXIM MAX77650 PMIC MFD DRIVER
12539 M:      Bartosz Golaszewski <brgl@bgdev.pl>
12540 L:      linux-kernel@vger.kernel.org
12541 S:      Maintained
12542 F:      Documentation/devicetree/bindings/*/*max77650.yaml
12543 F:      Documentation/devicetree/bindings/*/max77650*.yaml
12544 F:      drivers/gpio/gpio-max77650.c
12545 F:      drivers/input/misc/max77650-onkey.c
12546 F:      drivers/leds/leds-max77650.c
12547 F:      drivers/mfd/max77650.c
12548 F:      drivers/power/supply/max77650-charger.c
12549 F:      drivers/regulator/max77650-regulator.c
12550 F:      include/linux/mfd/max77650.h
12551
12552 MAXIM MAX77714 PMIC MFD DRIVER
12553 M:      Luca Ceresoli <luca@lucaceresoli.net>
12554 S:      Maintained
12555 F:      Documentation/devicetree/bindings/mfd/maxim,max77714.yaml
12556 F:      drivers/mfd/max77714.c
12557 F:      include/linux/mfd/max77714.h
12558
12559 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
12560 M:      Javier Martinez Canillas <javier@dowhile0.org>
12561 L:      linux-kernel@vger.kernel.org
12562 S:      Supported
12563 F:      Documentation/devicetree/bindings/*/*max77802.yaml
12564 F:      drivers/regulator/max77802-regulator.c
12565 F:      include/dt-bindings/*/*max77802.h
12566
12567 MAXIM MAX77976 BATTERY CHARGER
12568 M:      Luca Ceresoli <luca@lucaceresoli.net>
12569 S:      Supported
12570 F:      Documentation/devicetree/bindings/power/supply/maxim,max77976.yaml
12571 F:      drivers/power/supply/max77976_charger.c
12572
12573 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
12574 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12575 L:      linux-pm@vger.kernel.org
12576 S:      Supported
12577 B:      mailto:linux-samsung-soc@vger.kernel.org
12578 F:      Documentation/devicetree/bindings/power/supply/maxim,max14577.yaml
12579 F:      Documentation/devicetree/bindings/power/supply/maxim,max77693.yaml
12580 F:      drivers/power/supply/max14577_charger.c
12581 F:      drivers/power/supply/max77693_charger.c
12582
12583 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
12584 M:      Chanwoo Choi <cw00.choi@samsung.com>
12585 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12586 L:      linux-kernel@vger.kernel.org
12587 S:      Supported
12588 B:      mailto:linux-samsung-soc@vger.kernel.org
12589 F:      Documentation/devicetree/bindings/*/maxim,max14577.yaml
12590 F:      Documentation/devicetree/bindings/*/maxim,max77686.yaml
12591 F:      Documentation/devicetree/bindings/*/maxim,max77693.yaml
12592 F:      Documentation/devicetree/bindings/*/maxim,max77843.yaml
12593 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
12594 F:      drivers/*/*max77843.c
12595 F:      drivers/*/max14577*.c
12596 F:      drivers/*/max77686*.c
12597 F:      drivers/*/max77693*.c
12598 F:      drivers/clk/clk-max77686.c
12599 F:      drivers/extcon/extcon-max14577.c
12600 F:      drivers/extcon/extcon-max77693.c
12601 F:      drivers/rtc/rtc-max77686.c
12602 F:      include/linux/mfd/max14577*.h
12603 F:      include/linux/mfd/max77686*.h
12604 F:      include/linux/mfd/max77693*.h
12605
12606 MAXIRADIO FM RADIO RECEIVER DRIVER
12607 M:      Hans Verkuil <hverkuil@xs4all.nl>
12608 L:      linux-media@vger.kernel.org
12609 S:      Maintained
12610 W:      https://linuxtv.org
12611 T:      git git://linuxtv.org/media_tree.git
12612 F:      drivers/media/radio/radio-maxiradio*
12613
12614 MAXLINEAR ETHERNET PHY DRIVER
12615 M:      Xu Liang <lxu@maxlinear.com>
12616 L:      netdev@vger.kernel.org
12617 S:      Supported
12618 F:      drivers/net/phy/mxl-gpy.c
12619
12620 MCBA MICROCHIP CAN BUS ANALYZER TOOL DRIVER
12621 R:      Yasushi SHOJI <yashi@spacecubics.com>
12622 L:      linux-can@vger.kernel.org
12623 S:      Maintained
12624 F:      drivers/net/can/usb/mcba_usb.c
12625
12626 MCAN MMIO DEVICE DRIVER
12627 M:      Chandrasekar Ramakrishnan <rcsekar@samsung.com>
12628 L:      linux-can@vger.kernel.org
12629 S:      Maintained
12630 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
12631 F:      drivers/net/can/m_can/m_can.c
12632 F:      drivers/net/can/m_can/m_can.h
12633 F:      drivers/net/can/m_can/m_can_platform.c
12634
12635 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
12636 M:      Rishi Gupta <gupt21@gmail.com>
12637 L:      linux-i2c@vger.kernel.org
12638 L:      linux-input@vger.kernel.org
12639 S:      Maintained
12640 F:      drivers/hid/hid-mcp2221.c
12641
12642 MCP251XFD SPI-CAN NETWORK DRIVER
12643 M:      Marc Kleine-Budde <mkl@pengutronix.de>
12644 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
12645 R:      Thomas Kopp <thomas.kopp@microchip.com>
12646 L:      linux-can@vger.kernel.org
12647 S:      Maintained
12648 F:      Documentation/devicetree/bindings/net/can/microchip,mcp251xfd.yaml
12649 F:      drivers/net/can/spi/mcp251xfd/
12650
12651 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
12652 M:      Peter Rosin <peda@axentia.se>
12653 L:      linux-iio@vger.kernel.org
12654 S:      Maintained
12655 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
12656 F:      drivers/iio/potentiometer/mcp4018.c
12657 F:      drivers/iio/potentiometer/mcp4531.c
12658
12659 MCR20A IEEE-802.15.4 RADIO DRIVER
12660 M:      Xue Liu <liuxuenetmail@gmail.com>
12661 L:      linux-wpan@vger.kernel.org
12662 S:      Maintained
12663 W:      https://github.com/xueliu/mcr20a-linux
12664 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
12665 F:      drivers/net/ieee802154/mcr20a.c
12666 F:      drivers/net/ieee802154/mcr20a.h
12667
12668 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
12669 M:      William Breathitt Gray <william.gray@linaro.org>
12670 L:      linux-iio@vger.kernel.org
12671 S:      Maintained
12672 F:      drivers/iio/dac/cio-dac.c
12673
12674 MEDIA CONTROLLER FRAMEWORK
12675 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
12676 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12677 L:      linux-media@vger.kernel.org
12678 S:      Supported
12679 W:      https://www.linuxtv.org
12680 T:      git git://linuxtv.org/media_tree.git
12681 F:      drivers/media/mc/
12682 F:      include/media/media-*.h
12683 F:      include/uapi/linux/media.h
12684
12685 MEDIA DRIVER FOR FREESCALE IMX PXP
12686 M:      Philipp Zabel <p.zabel@pengutronix.de>
12687 L:      linux-media@vger.kernel.org
12688 S:      Maintained
12689 T:      git git://linuxtv.org/media_tree.git
12690 F:      drivers/media/platform/nxp/imx-pxp.[ch]
12691
12692 MEDIA DRIVERS FOR ASCOT2E
12693 M:      Sergey Kozlov <serjk@netup.ru>
12694 M:      Abylay Ospan <aospan@netup.ru>
12695 L:      linux-media@vger.kernel.org
12696 S:      Supported
12697 W:      https://linuxtv.org
12698 W:      http://netup.tv/
12699 T:      git git://linuxtv.org/media_tree.git
12700 F:      drivers/media/dvb-frontends/ascot2e*
12701
12702 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
12703 M:      Jasmin Jessich <jasmin@anw.at>
12704 L:      linux-media@vger.kernel.org
12705 S:      Maintained
12706 W:      https://linuxtv.org
12707 T:      git git://linuxtv.org/media_tree.git
12708 F:      drivers/media/dvb-frontends/cxd2099*
12709
12710 MEDIA DRIVERS FOR CXD2841ER
12711 M:      Sergey Kozlov <serjk@netup.ru>
12712 M:      Abylay Ospan <aospan@netup.ru>
12713 L:      linux-media@vger.kernel.org
12714 S:      Supported
12715 W:      https://linuxtv.org
12716 W:      http://netup.tv/
12717 T:      git git://linuxtv.org/media_tree.git
12718 F:      drivers/media/dvb-frontends/cxd2841er*
12719
12720 MEDIA DRIVERS FOR CXD2880
12721 M:      Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
12722 L:      linux-media@vger.kernel.org
12723 S:      Supported
12724 W:      http://linuxtv.org/
12725 T:      git git://linuxtv.org/media_tree.git
12726 F:      drivers/media/dvb-frontends/cxd2880/*
12727 F:      drivers/media/spi/cxd2880*
12728
12729 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
12730 L:      linux-media@vger.kernel.org
12731 S:      Orphan
12732 W:      https://linuxtv.org
12733 T:      git git://linuxtv.org/media_tree.git
12734 F:      drivers/media/pci/ddbridge/*
12735
12736 MEDIA DRIVERS FOR FREESCALE IMX
12737 M:      Steve Longerbeam <slongerbeam@gmail.com>
12738 M:      Philipp Zabel <p.zabel@pengutronix.de>
12739 L:      linux-media@vger.kernel.org
12740 S:      Maintained
12741 T:      git git://linuxtv.org/media_tree.git
12742 F:      Documentation/admin-guide/media/imx.rst
12743 F:      Documentation/devicetree/bindings/media/imx.txt
12744 F:      drivers/staging/media/imx/
12745 F:      include/linux/imx-media.h
12746 F:      include/media/imx.h
12747
12748 MEDIA DRIVERS FOR FREESCALE IMX7
12749 M:      Rui Miguel Silva <rmfrfs@gmail.com>
12750 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12751 L:      linux-media@vger.kernel.org
12752 S:      Maintained
12753 T:      git git://linuxtv.org/media_tree.git
12754 F:      Documentation/admin-guide/media/imx7.rst
12755 F:      Documentation/devicetree/bindings/media/nxp,imx-mipi-csi2.yaml
12756 F:      Documentation/devicetree/bindings/media/nxp,imx7-csi.yaml
12757 F:      drivers/media/platform/nxp/imx-mipi-csis.c
12758 F:      drivers/media/platform/nxp/imx7-media-csi.c
12759
12760 MEDIA DRIVERS FOR HELENE
12761 M:      Abylay Ospan <aospan@netup.ru>
12762 L:      linux-media@vger.kernel.org
12763 S:      Supported
12764 W:      https://linuxtv.org
12765 W:      http://netup.tv/
12766 T:      git git://linuxtv.org/media_tree.git
12767 F:      drivers/media/dvb-frontends/helene*
12768
12769 MEDIA DRIVERS FOR HORUS3A
12770 M:      Sergey Kozlov <serjk@netup.ru>
12771 M:      Abylay Ospan <aospan@netup.ru>
12772 L:      linux-media@vger.kernel.org
12773 S:      Supported
12774 W:      https://linuxtv.org
12775 W:      http://netup.tv/
12776 T:      git git://linuxtv.org/media_tree.git
12777 F:      drivers/media/dvb-frontends/horus3a*
12778
12779 MEDIA DRIVERS FOR LNBH25
12780 M:      Sergey Kozlov <serjk@netup.ru>
12781 M:      Abylay Ospan <aospan@netup.ru>
12782 L:      linux-media@vger.kernel.org
12783 S:      Supported
12784 W:      https://linuxtv.org
12785 W:      http://netup.tv/
12786 T:      git git://linuxtv.org/media_tree.git
12787 F:      drivers/media/dvb-frontends/lnbh25*
12788
12789 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
12790 L:      linux-media@vger.kernel.org
12791 S:      Orphan
12792 W:      https://linuxtv.org
12793 T:      git git://linuxtv.org/media_tree.git
12794 F:      drivers/media/dvb-frontends/mxl5xx*
12795
12796 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
12797 M:      Sergey Kozlov <serjk@netup.ru>
12798 M:      Abylay Ospan <aospan@netup.ru>
12799 L:      linux-media@vger.kernel.org
12800 S:      Supported
12801 W:      https://linuxtv.org
12802 W:      http://netup.tv/
12803 T:      git git://linuxtv.org/media_tree.git
12804 F:      drivers/media/pci/netup_unidvb/*
12805
12806 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
12807 M:      Dmitry Osipenko <digetx@gmail.com>
12808 L:      linux-media@vger.kernel.org
12809 L:      linux-tegra@vger.kernel.org
12810 S:      Maintained
12811 T:      git git://linuxtv.org/media_tree.git
12812 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.yaml
12813 F:      drivers/media/platform/nvidia/tegra-vde/
12814
12815 MEDIA DRIVERS FOR RENESAS - CEU
12816 M:      Jacopo Mondi <jacopo@jmondi.org>
12817 L:      linux-media@vger.kernel.org
12818 L:      linux-renesas-soc@vger.kernel.org
12819 S:      Supported
12820 T:      git git://linuxtv.org/media_tree.git
12821 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
12822 F:      drivers/media/platform/renesas/renesas-ceu.c
12823 F:      include/media/drv-intf/renesas-ceu.h
12824
12825 MEDIA DRIVERS FOR RENESAS - DRIF
12826 M:      Fabrizio Castro <fabrizio.castro.jz@renesas.com>
12827 L:      linux-media@vger.kernel.org
12828 L:      linux-renesas-soc@vger.kernel.org
12829 S:      Supported
12830 T:      git git://linuxtv.org/media_tree.git
12831 F:      Documentation/devicetree/bindings/media/renesas,drif.yaml
12832 F:      drivers/media/platform/renesas/rcar_drif.c
12833
12834 MEDIA DRIVERS FOR RENESAS - FCP
12835 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12836 L:      linux-media@vger.kernel.org
12837 L:      linux-renesas-soc@vger.kernel.org
12838 S:      Supported
12839 T:      git git://linuxtv.org/media_tree.git
12840 F:      Documentation/devicetree/bindings/media/renesas,fcp.yaml
12841 F:      drivers/media/platform/renesas/rcar-fcp.c
12842 F:      include/media/rcar-fcp.h
12843
12844 MEDIA DRIVERS FOR RENESAS - FDP1
12845 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
12846 L:      linux-media@vger.kernel.org
12847 L:      linux-renesas-soc@vger.kernel.org
12848 S:      Supported
12849 T:      git git://linuxtv.org/media_tree.git
12850 F:      Documentation/devicetree/bindings/media/renesas,fdp1.yaml
12851 F:      drivers/media/platform/renesas/rcar_fdp1.c
12852
12853 MEDIA DRIVERS FOR RENESAS - VIN
12854 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
12855 L:      linux-media@vger.kernel.org
12856 L:      linux-renesas-soc@vger.kernel.org
12857 S:      Supported
12858 T:      git git://linuxtv.org/media_tree.git
12859 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
12860 F:      Documentation/devicetree/bindings/media/renesas,isp.yaml
12861 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
12862 F:      drivers/media/platform/renesas/rcar-isp.c
12863 F:      drivers/media/platform/renesas/rcar-vin/
12864
12865 MEDIA DRIVERS FOR RENESAS - VSP1
12866 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12867 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
12868 L:      linux-media@vger.kernel.org
12869 L:      linux-renesas-soc@vger.kernel.org
12870 S:      Supported
12871 T:      git git://linuxtv.org/media_tree.git
12872 F:      Documentation/devicetree/bindings/media/renesas,vsp1.yaml
12873 F:      drivers/media/platform/renesas/vsp1/
12874
12875 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
12876 L:      linux-media@vger.kernel.org
12877 S:      Orphan
12878 W:      https://linuxtv.org
12879 T:      git git://linuxtv.org/media_tree.git
12880 F:      drivers/media/dvb-frontends/stv0910*
12881
12882 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
12883 L:      linux-media@vger.kernel.org
12884 S:      Orphan
12885 W:      https://linuxtv.org
12886 T:      git git://linuxtv.org/media_tree.git
12887 F:      drivers/media/dvb-frontends/stv6111*
12888
12889 MEDIA DRIVERS FOR STM32 - DCMI
12890 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
12891 L:      linux-media@vger.kernel.org
12892 S:      Supported
12893 T:      git git://linuxtv.org/media_tree.git
12894 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
12895 F:      drivers/media/platform/st/stm32/stm32-dcmi.c
12896
12897 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
12898 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
12899 L:      linux-media@vger.kernel.org
12900 S:      Maintained
12901 W:      https://linuxtv.org
12902 Q:      http://patchwork.kernel.org/project/linux-media/list/
12903 T:      git git://linuxtv.org/media_tree.git
12904 F:      Documentation/admin-guide/media/
12905 F:      Documentation/devicetree/bindings/media/
12906 F:      Documentation/driver-api/media/
12907 F:      Documentation/userspace-api/media/
12908 F:      drivers/media/
12909 F:      drivers/staging/media/
12910 F:      include/dt-bindings/media/
12911 F:      include/linux/platform_data/media/
12912 F:      include/media/
12913 F:      include/uapi/linux/dvb/
12914 F:      include/uapi/linux/ivtv*
12915 F:      include/uapi/linux/media.h
12916 F:      include/uapi/linux/meye.h
12917 F:      include/uapi/linux/uvcvideo.h
12918 F:      include/uapi/linux/v4l2-*
12919 F:      include/uapi/linux/videodev2.h
12920
12921 MEDIATEK BLUETOOTH DRIVER
12922 M:      Sean Wang <sean.wang@mediatek.com>
12923 L:      linux-bluetooth@vger.kernel.org
12924 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12925 S:      Maintained
12926 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
12927 F:      drivers/bluetooth/btmtkuart.c
12928
12929 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
12930 M:      Sean Wang <sean.wang@mediatek.com>
12931 L:      linux-pm@vger.kernel.org
12932 S:      Maintained
12933 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
12934 F:      drivers/power/reset/mt6323-poweroff.c
12935
12936 MEDIATEK CIR DRIVER
12937 M:      Sean Wang <sean.wang@mediatek.com>
12938 S:      Maintained
12939 F:      drivers/media/rc/mtk-cir.c
12940
12941 MEDIATEK DMA DRIVER
12942 M:      Sean Wang <sean.wang@mediatek.com>
12943 L:      dmaengine@vger.kernel.org
12944 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12945 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12946 S:      Maintained
12947 F:      Documentation/devicetree/bindings/dma/mtk-*
12948 F:      drivers/dma/mediatek/
12949
12950 MEDIATEK ETHERNET DRIVER
12951 M:      Felix Fietkau <nbd@nbd.name>
12952 M:      John Crispin <john@phrozen.org>
12953 M:      Sean Wang <sean.wang@mediatek.com>
12954 M:      Mark Lee <Mark-MC.Lee@mediatek.com>
12955 M:      Lorenzo Bianconi <lorenzo@kernel.org>
12956 L:      netdev@vger.kernel.org
12957 S:      Maintained
12958 F:      drivers/net/ethernet/mediatek/
12959
12960 MEDIATEK I2C CONTROLLER DRIVER
12961 M:      Qii Wang <qii.wang@mediatek.com>
12962 L:      linux-i2c@vger.kernel.org
12963 S:      Maintained
12964 F:      Documentation/devicetree/bindings/i2c/i2c-mt65xx.yaml
12965 F:      drivers/i2c/busses/i2c-mt65xx.c
12966
12967 MEDIATEK IOMMU DRIVER
12968 M:      Yong Wu <yong.wu@mediatek.com>
12969 L:      iommu@lists.linux.dev
12970 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12971 S:      Supported
12972 F:      Documentation/devicetree/bindings/iommu/mediatek*
12973 F:      drivers/iommu/mtk_iommu*
12974 F:      include/dt-bindings/memory/mt*-port.h
12975
12976 MEDIATEK JPEG DRIVER
12977 M:      Bin Liu <bin.liu@mediatek.com>
12978 S:      Supported
12979 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-*.yaml
12980 F:      drivers/media/platform/mediatek/jpeg/
12981
12982 MEDIATEK KEYPAD DRIVER
12983 M:      Mattijs Korpershoek <mkorpershoek@baylibre.com>
12984 S:      Supported
12985 F:      Documentation/devicetree/bindings/input/mediatek,mt6779-keypad.yaml
12986 F:      drivers/input/keyboard/mt6779-keypad.c
12987
12988 MEDIATEK MDP DRIVER
12989 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
12990 M:      Houlong Wei <houlong.wei@mediatek.com>
12991 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
12992 S:      Supported
12993 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
12994 F:      drivers/media/platform/mediatek/mdp/
12995 F:      drivers/media/platform/mediatek/vpu/
12996
12997 MEDIATEK MEDIA DRIVER
12998 M:      Tiffany Lin <tiffany.lin@mediatek.com>
12999 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
13000 M:      Yunfei Dong <yunfei.dong@mediatek.com>
13001 S:      Supported
13002 F:      Documentation/devicetree/bindings/media/mediatek,vcodec*.yaml
13003 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
13004 F:      drivers/media/platform/mediatek/vcodec/
13005 F:      drivers/media/platform/mediatek/vpu/
13006
13007 MEDIATEK MMC/SD/SDIO DRIVER
13008 M:      Chaotian Jing <chaotian.jing@mediatek.com>
13009 S:      Maintained
13010 F:      Documentation/devicetree/bindings/mmc/mtk-sd.yaml
13011 F:      drivers/mmc/host/mtk-sd.c
13012
13013 MEDIATEK MT76 WIRELESS LAN DRIVER
13014 M:      Felix Fietkau <nbd@nbd.name>
13015 M:      Lorenzo Bianconi <lorenzo@kernel.org>
13016 M:      Ryder Lee <ryder.lee@mediatek.com>
13017 R:      Shayne Chen <shayne.chen@mediatek.com>
13018 R:      Sean Wang <sean.wang@mediatek.com>
13019 L:      linux-wireless@vger.kernel.org
13020 S:      Maintained
13021 F:      Documentation/devicetree/bindings/net/wireless/mediatek,mt76.yaml
13022 F:      drivers/net/wireless/mediatek/mt76/
13023
13024 MEDIATEK MT7601U WIRELESS LAN DRIVER
13025 M:      Jakub Kicinski <kuba@kernel.org>
13026 L:      linux-wireless@vger.kernel.org
13027 S:      Maintained
13028 F:      drivers/net/wireless/mediatek/mt7601u/
13029
13030 MEDIATEK MT7621 CLOCK DRIVER
13031 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
13032 S:      Maintained
13033 F:      Documentation/devicetree/bindings/clock/mediatek,mt7621-sysc.yaml
13034 F:      drivers/clk/ralink/clk-mt7621.c
13035
13036 MEDIATEK MT7621/28/88 I2C DRIVER
13037 M:      Stefan Roese <sr@denx.de>
13038 L:      linux-i2c@vger.kernel.org
13039 S:      Maintained
13040 F:      Documentation/devicetree/bindings/i2c/mediatek,mt7621-i2c.yaml
13041 F:      drivers/i2c/busses/i2c-mt7621.c
13042
13043 MEDIATEK MT7621 PCIE CONTROLLER DRIVER
13044 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
13045 S:      Maintained
13046 F:      Documentation/devicetree/bindings/pci/mediatek,mt7621-pcie.yaml
13047 F:      drivers/pci/controller/pcie-mt7621.c
13048
13049 MEDIATEK MT7621 PHY PCI DRIVER
13050 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
13051 S:      Maintained
13052 F:      Documentation/devicetree/bindings/phy/mediatek,mt7621-pci-phy.yaml
13053 F:      drivers/phy/ralink/phy-mt7621-pci.c
13054
13055 MEDIATEK NAND CONTROLLER DRIVER
13056 L:      linux-mtd@lists.infradead.org
13057 S:      Orphan
13058 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
13059 F:      drivers/mtd/nand/raw/mtk_*
13060
13061 MEDIATEK PMIC LED DRIVER
13062 M:      Sean Wang <sean.wang@mediatek.com>
13063 S:      Maintained
13064 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
13065 F:      drivers/leds/leds-mt6323.c
13066
13067 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
13068 M:      Sean Wang <sean.wang@mediatek.com>
13069 S:      Maintained
13070 F:      drivers/char/hw_random/mtk-rng.c
13071
13072 MEDIATEK SMI DRIVER
13073 M:      Yong Wu <yong.wu@mediatek.com>
13074 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
13075 S:      Supported
13076 F:      Documentation/devicetree/bindings/memory-controllers/mediatek,smi*
13077 F:      drivers/memory/mtk-smi.c
13078 F:      include/soc/mediatek/smi.h
13079
13080 MEDIATEK SWITCH DRIVER
13081 M:      Sean Wang <sean.wang@mediatek.com>
13082 M:      Landen Chao <Landen.Chao@mediatek.com>
13083 M:      DENG Qingfang <dqfext@gmail.com>
13084 L:      netdev@vger.kernel.org
13085 S:      Maintained
13086 F:      drivers/net/dsa/mt7530.*
13087 F:      net/dsa/tag_mtk.c
13088
13089 MEDIATEK T7XX 5G WWAN MODEM DRIVER
13090 M:      Chandrashekar Devegowda <chandrashekar.devegowda@intel.com>
13091 M:      Intel Corporation <linuxwwan@intel.com>
13092 R:      Chiranjeevi Rapolu <chiranjeevi.rapolu@linux.intel.com>
13093 R:      Liu Haijun <haijun.liu@mediatek.com>
13094 R:      M Chetan Kumar <m.chetan.kumar@linux.intel.com>
13095 R:      Ricardo Martinez <ricardo.martinez@linux.intel.com>
13096 L:      netdev@vger.kernel.org
13097 S:      Supported
13098 F:      drivers/net/wwan/t7xx/
13099
13100 MEDIATEK USB3 DRD IP DRIVER
13101 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
13102 L:      linux-usb@vger.kernel.org
13103 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13104 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
13105 S:      Maintained
13106 F:      Documentation/devicetree/bindings/usb/mediatek,*
13107 F:      drivers/usb/host/xhci-mtk*
13108 F:      drivers/usb/mtu3/
13109
13110 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
13111 M:      Peter Senna Tschudin <peter.senna@gmail.com>
13112 M:      Martin Donnelly <martin.donnelly@ge.com>
13113 M:      Martyn Welch <martyn.welch@collabora.co.uk>
13114 S:      Maintained
13115 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
13116 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
13117
13118 MEGARAID SCSI/SAS DRIVERS
13119 M:      Kashyap Desai <kashyap.desai@broadcom.com>
13120 M:      Sumit Saxena <sumit.saxena@broadcom.com>
13121 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
13122 L:      megaraidlinux.pdl@broadcom.com
13123 L:      linux-scsi@vger.kernel.org
13124 S:      Maintained
13125 W:      http://www.avagotech.com/support/
13126 F:      Documentation/scsi/megaraid.rst
13127 F:      drivers/scsi/megaraid.*
13128 F:      drivers/scsi/megaraid/
13129
13130 MELEXIS MLX90614 DRIVER
13131 M:      Crt Mori <cmo@melexis.com>
13132 L:      linux-iio@vger.kernel.org
13133 S:      Supported
13134 W:      http://www.melexis.com
13135 F:      drivers/iio/temperature/mlx90614.c
13136
13137 MELEXIS MLX90632 DRIVER
13138 M:      Crt Mori <cmo@melexis.com>
13139 L:      linux-iio@vger.kernel.org
13140 S:      Supported
13141 W:      http://www.melexis.com
13142 F:      drivers/iio/temperature/mlx90632.c
13143
13144 MELFAS MIP4 TOUCHSCREEN DRIVER
13145 M:      Sangwon Jee <jeesw@melfas.com>
13146 S:      Supported
13147 W:      http://www.melfas.com
13148 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
13149 F:      drivers/input/touchscreen/melfas_mip4.c
13150
13151 MELLANOX BLUEFIELD I2C DRIVER
13152 M:      Khalil Blaiech <kblaiech@nvidia.com>
13153 M:      Asmaa Mnebhi <asmaa@nvidia.com>
13154 L:      linux-i2c@vger.kernel.org
13155 S:      Supported
13156 F:      drivers/i2c/busses/i2c-mlxbf.c
13157
13158 MELLANOX ETHERNET DRIVER (mlx4_en)
13159 M:      Tariq Toukan <tariqt@nvidia.com>
13160 L:      netdev@vger.kernel.org
13161 S:      Supported
13162 W:      http://www.mellanox.com
13163 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13164 F:      drivers/net/ethernet/mellanox/mlx4/en_*
13165
13166 MELLANOX ETHERNET DRIVER (mlx5e)
13167 M:      Saeed Mahameed <saeedm@nvidia.com>
13168 L:      netdev@vger.kernel.org
13169 S:      Supported
13170 W:      http://www.mellanox.com
13171 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13172 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
13173
13174 MELLANOX ETHERNET INNOVA DRIVERS
13175 R:      Boris Pismenny <borisp@nvidia.com>
13176 L:      netdev@vger.kernel.org
13177 S:      Supported
13178 W:      http://www.mellanox.com
13179 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13180 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
13181 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
13182 F:      include/linux/mlx5/mlx5_ifc_fpga.h
13183
13184 MELLANOX ETHERNET SWITCH DRIVERS
13185 M:      Ido Schimmel <idosch@nvidia.com>
13186 M:      Petr Machata <petrm@nvidia.com>
13187 L:      netdev@vger.kernel.org
13188 S:      Supported
13189 W:      http://www.mellanox.com
13190 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13191 F:      drivers/net/ethernet/mellanox/mlxsw/
13192 F:      tools/testing/selftests/drivers/net/mlxsw/
13193
13194 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
13195 M:      mlxsw@nvidia.com
13196 L:      netdev@vger.kernel.org
13197 S:      Supported
13198 W:      http://www.mellanox.com
13199 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13200 F:      drivers/net/ethernet/mellanox/mlxfw/
13201
13202 MELLANOX HARDWARE PLATFORM SUPPORT
13203 M:      Hans de Goede <hdegoede@redhat.com>
13204 M:      Mark Gross <markgross@kernel.org>
13205 M:      Vadim Pasternak <vadimp@nvidia.com>
13206 L:      platform-driver-x86@vger.kernel.org
13207 S:      Supported
13208 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
13209 F:      drivers/platform/mellanox/
13210 F:      include/linux/platform_data/mlxreg.h
13211
13212 MELLANOX MLX4 core VPI driver
13213 M:      Tariq Toukan <tariqt@nvidia.com>
13214 L:      netdev@vger.kernel.org
13215 L:      linux-rdma@vger.kernel.org
13216 S:      Supported
13217 W:      http://www.mellanox.com
13218 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13219 F:      drivers/net/ethernet/mellanox/mlx4/
13220 F:      include/linux/mlx4/
13221
13222 MELLANOX MLX4 IB driver
13223 M:      Yishai Hadas <yishaih@nvidia.com>
13224 L:      linux-rdma@vger.kernel.org
13225 S:      Supported
13226 W:      http://www.mellanox.com
13227 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
13228 F:      drivers/infiniband/hw/mlx4/
13229 F:      include/linux/mlx4/
13230 F:      include/uapi/rdma/mlx4-abi.h
13231
13232 MELLANOX MLX5 core VPI driver
13233 M:      Saeed Mahameed <saeedm@nvidia.com>
13234 M:      Leon Romanovsky <leonro@nvidia.com>
13235 L:      netdev@vger.kernel.org
13236 L:      linux-rdma@vger.kernel.org
13237 S:      Supported
13238 W:      http://www.mellanox.com
13239 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13240 F:      Documentation/networking/device_drivers/ethernet/mellanox/
13241 F:      drivers/net/ethernet/mellanox/mlx5/core/
13242 F:      include/linux/mlx5/
13243
13244 MELLANOX MLX5 IB driver
13245 M:      Leon Romanovsky <leonro@nvidia.com>
13246 L:      linux-rdma@vger.kernel.org
13247 S:      Supported
13248 W:      http://www.mellanox.com
13249 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
13250 F:      drivers/infiniband/hw/mlx5/
13251 F:      include/linux/mlx5/
13252 F:      include/uapi/rdma/mlx5-abi.h
13253
13254 MELLANOX MLXCPLD I2C AND MUX DRIVER
13255 M:      Vadim Pasternak <vadimp@nvidia.com>
13256 M:      Michael Shych <michaelsh@nvidia.com>
13257 L:      linux-i2c@vger.kernel.org
13258 S:      Supported
13259 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
13260 F:      drivers/i2c/busses/i2c-mlxcpld.c
13261 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
13262
13263 MELLANOX MLXCPLD LED DRIVER
13264 M:      Vadim Pasternak <vadimp@nvidia.com>
13265 L:      linux-leds@vger.kernel.org
13266 S:      Supported
13267 F:      Documentation/leds/leds-mlxcpld.rst
13268 F:      drivers/leds/leds-mlxcpld.c
13269 F:      drivers/leds/leds-mlxreg.c
13270
13271 MELLANOX PLATFORM DRIVER
13272 M:      Vadim Pasternak <vadimp@nvidia.com>
13273 L:      platform-driver-x86@vger.kernel.org
13274 S:      Supported
13275 F:      drivers/platform/x86/mlx-platform.c
13276
13277 MEMBARRIER SUPPORT
13278 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
13279 M:      "Paul E. McKenney" <paulmck@kernel.org>
13280 L:      linux-kernel@vger.kernel.org
13281 S:      Supported
13282 F:      arch/powerpc/include/asm/membarrier.h
13283 F:      include/uapi/linux/membarrier.h
13284 F:      kernel/sched/membarrier.c
13285
13286 MEMBLOCK
13287 M:      Mike Rapoport <rppt@kernel.org>
13288 L:      linux-mm@kvack.org
13289 S:      Maintained
13290 F:      Documentation/core-api/boot-time-mm.rst
13291 F:      include/linux/memblock.h
13292 F:      mm/memblock.c
13293 F:      tools/testing/memblock/
13294
13295 MEMORY CONTROLLER DRIVERS
13296 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
13297 L:      linux-kernel@vger.kernel.org
13298 S:      Maintained
13299 B:      mailto:krzysztof.kozlowski@linaro.org
13300 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git
13301 F:      Documentation/devicetree/bindings/memory-controllers/
13302 F:      drivers/memory/
13303 F:      include/dt-bindings/memory/
13304 F:      include/memory/
13305
13306 MEMORY FREQUENCY SCALING DRIVERS FOR NVIDIA TEGRA
13307 M:      Dmitry Osipenko <digetx@gmail.com>
13308 L:      linux-pm@vger.kernel.org
13309 L:      linux-tegra@vger.kernel.org
13310 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
13311 S:      Maintained
13312 F:      drivers/devfreq/tegra30-devfreq.c
13313
13314 MEMORY MANAGEMENT
13315 M:      Andrew Morton <akpm@linux-foundation.org>
13316 L:      linux-mm@kvack.org
13317 S:      Maintained
13318 W:      http://www.linux-mm.org
13319 T:      git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
13320 T:      quilt git://git.kernel.org/pub/scm/linux/kernel/git/akpm/25-new
13321 F:      include/linux/gfp.h
13322 F:      include/linux/gfp_types.h
13323 F:      include/linux/memory_hotplug.h
13324 F:      include/linux/mm.h
13325 F:      include/linux/mmzone.h
13326 F:      include/linux/pagewalk.h
13327 F:      mm/
13328 F:      tools/testing/selftests/vm/
13329
13330 VMALLOC
13331 M:      Andrew Morton <akpm@linux-foundation.org>
13332 R:      Uladzislau Rezki <urezki@gmail.com>
13333 R:      Christoph Hellwig <hch@infradead.org>
13334 L:      linux-mm@kvack.org
13335 S:      Maintained
13336 W:      http://www.linux-mm.org
13337 T:      git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
13338 F:      include/linux/vmalloc.h
13339 F:      mm/vmalloc.c
13340
13341 MEMORY HOT(UN)PLUG
13342 M:      David Hildenbrand <david@redhat.com>
13343 M:      Oscar Salvador <osalvador@suse.de>
13344 L:      linux-mm@kvack.org
13345 S:      Maintained
13346 F:      Documentation/admin-guide/mm/memory-hotplug.rst
13347 F:      Documentation/core-api/memory-hotplug.rst
13348 F:      drivers/base/memory.c
13349 F:      include/linux/memory_hotplug.h
13350 F:      mm/memory_hotplug.c
13351 F:      tools/testing/selftests/memory-hotplug/
13352
13353 MEMORY TECHNOLOGY DEVICES (MTD)
13354 M:      Miquel Raynal <miquel.raynal@bootlin.com>
13355 M:      Richard Weinberger <richard@nod.at>
13356 M:      Vignesh Raghavendra <vigneshr@ti.com>
13357 L:      linux-mtd@lists.infradead.org
13358 S:      Maintained
13359 W:      http://www.linux-mtd.infradead.org/
13360 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
13361 C:      irc://irc.oftc.net/mtd
13362 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
13363 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
13364 F:      Documentation/devicetree/bindings/mtd/
13365 F:      drivers/mtd/
13366 F:      include/linux/mtd/
13367 F:      include/uapi/mtd/
13368
13369 MEMSENSING MICROSYSTEMS MSA311 DRIVER
13370 M:      Dmitry Rokosov <ddrokosov@sberdevices.ru>
13371 L:      linux-iio@vger.kernel.org
13372 S:      Maintained
13373 F:      Documentation/devicetree/bindings/iio/accel/memsensing,msa311.yaml
13374 F:      drivers/iio/accel/msa311.c
13375
13376 MEN A21 WATCHDOG DRIVER
13377 M:      Johannes Thumshirn <morbidrsa@gmail.com>
13378 L:      linux-watchdog@vger.kernel.org
13379 S:      Maintained
13380 F:      drivers/watchdog/mena21_wdt.c
13381
13382 MEN CHAMELEON BUS (mcb)
13383 M:      Johannes Thumshirn <morbidrsa@gmail.com>
13384 S:      Maintained
13385 F:      Documentation/driver-api/men-chameleon-bus.rst
13386 F:      drivers/mcb/
13387 F:      include/linux/mcb.h
13388
13389 MEN F21BMC (Board Management Controller)
13390 M:      Andreas Werner <andreas.werner@men.de>
13391 S:      Supported
13392 F:      Documentation/hwmon/menf21bmc.rst
13393 F:      drivers/hwmon/menf21bmc_hwmon.c
13394 F:      drivers/leds/leds-menf21bmc.c
13395 F:      drivers/mfd/menf21bmc.c
13396 F:      drivers/watchdog/menf21bmc_wdt.c
13397
13398 MEN Z069 WATCHDOG DRIVER
13399 M:      Johannes Thumshirn <jth@kernel.org>
13400 L:      linux-watchdog@vger.kernel.org
13401 S:      Maintained
13402 F:      drivers/watchdog/menz69_wdt.c
13403
13404 MESON AO CEC DRIVER FOR AMLOGIC SOCS
13405 M:      Neil Armstrong <neil.armstrong@linaro.org>
13406 L:      linux-media@vger.kernel.org
13407 L:      linux-amlogic@lists.infradead.org
13408 S:      Supported
13409 W:      http://linux-meson.com/
13410 T:      git git://linuxtv.org/media_tree.git
13411 F:      Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
13412 F:      drivers/media/cec/platform/meson/ao-cec-g12a.c
13413 F:      drivers/media/cec/platform/meson/ao-cec.c
13414
13415 MESON GE2D DRIVER FOR AMLOGIC SOCS
13416 M:      Neil Armstrong <neil.armstrong@linaro.org>
13417 L:      linux-media@vger.kernel.org
13418 L:      linux-amlogic@lists.infradead.org
13419 S:      Supported
13420 T:      git git://linuxtv.org/media_tree.git
13421 F:      Documentation/devicetree/bindings/media/amlogic,axg-ge2d.yaml
13422 F:      drivers/media/platform/amlogic/meson-ge2d/
13423
13424 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
13425 M:      Liang Yang <liang.yang@amlogic.com>
13426 L:      linux-mtd@lists.infradead.org
13427 S:      Maintained
13428 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.yaml
13429 F:      drivers/mtd/nand/raw/meson_*
13430
13431 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
13432 M:      Neil Armstrong <neil.armstrong@linaro.org>
13433 L:      linux-media@vger.kernel.org
13434 L:      linux-amlogic@lists.infradead.org
13435 S:      Supported
13436 T:      git git://linuxtv.org/media_tree.git
13437 F:      Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
13438 F:      drivers/staging/media/meson/vdec/
13439
13440 METHODE UDPU SUPPORT
13441 M:      Vladimir Vid <vladimir.vid@sartura.hr>
13442 S:      Maintained
13443 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
13444
13445 MHI BUS
13446 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
13447 L:      mhi@lists.linux.dev
13448 L:      linux-arm-msm@vger.kernel.org
13449 S:      Maintained
13450 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
13451 F:      Documentation/ABI/stable/sysfs-bus-mhi
13452 F:      Documentation/mhi/
13453 F:      drivers/bus/mhi/
13454 F:      include/linux/mhi.h
13455
13456 MICROBLAZE ARCHITECTURE
13457 M:      Michal Simek <monstr@monstr.eu>
13458 S:      Supported
13459 W:      http://www.monstr.eu/fdt/
13460 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
13461 F:      arch/microblaze/
13462
13463 MICROCHIP AT91 DMA DRIVERS
13464 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
13465 M:      Tudor Ambarus <tudor.ambarus@linaro.org>
13466 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13467 L:      dmaengine@vger.kernel.org
13468 S:      Supported
13469 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
13470 F:      drivers/dma/at_hdmac.c
13471 F:      drivers/dma/at_xdmac.c
13472 F:      include/dt-bindings/dma/at91.h
13473
13474 MICROCHIP AT91 SERIAL DRIVER
13475 M:      Richard Genoud <richard.genoud@gmail.com>
13476 S:      Maintained
13477 F:      Documentation/devicetree/bindings/serial/atmel,at91-usart.yaml
13478 F:      drivers/tty/serial/atmel_serial.c
13479 F:      drivers/tty/serial/atmel_serial.h
13480
13481 MICROCHIP AT91 USART MFD DRIVER
13482 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
13483 L:      linux-kernel@vger.kernel.org
13484 S:      Supported
13485 F:      Documentation/devicetree/bindings/serial/atmel,at91-usart.yaml
13486 F:      drivers/mfd/at91-usart.c
13487 F:      include/dt-bindings/mfd/at91-usart.h
13488
13489 MICROCHIP AT91 USART SPI DRIVER
13490 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
13491 L:      linux-spi@vger.kernel.org
13492 S:      Supported
13493 F:      Documentation/devicetree/bindings/serial/atmel,at91-usart.yaml
13494 F:      drivers/spi/spi-at91-usart.c
13495
13496 MICROCHIP AUDIO ASOC DRIVERS
13497 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
13498 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13499 S:      Supported
13500 F:      sound/soc/atmel
13501
13502 MICROCHIP CSI2DC DRIVER
13503 M:      Eugen Hristev <eugen.hristev@microchip.com>
13504 L:      linux-media@vger.kernel.org
13505 S:      Supported
13506 F:      Documentation/devicetree/bindings/media/microchip,csi2dc.yaml
13507 F:      drivers/media/platform/microchip/microchip-csi2dc.c
13508
13509 MICROCHIP ECC DRIVER
13510 M:      Tudor Ambarus <tudor.ambarus@linaro.org>
13511 L:      linux-crypto@vger.kernel.org
13512 S:      Maintained
13513 F:      drivers/crypto/atmel-ecc.*
13514
13515 MICROCHIP EIC DRIVER
13516 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13517 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13518 S:      Supported
13519 F:      drivers/irqchip/irq-mchp-eic.c
13520
13521 MICROCHIP I2C DRIVER
13522 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
13523 L:      linux-i2c@vger.kernel.org
13524 S:      Supported
13525 F:      drivers/i2c/busses/i2c-at91-*.c
13526 F:      drivers/i2c/busses/i2c-at91.h
13527
13528 MICROCHIP ISC DRIVER
13529 M:      Eugen Hristev <eugen.hristev@microchip.com>
13530 L:      linux-media@vger.kernel.org
13531 S:      Supported
13532 F:      Documentation/devicetree/bindings/media/atmel,isc.yaml
13533 F:      Documentation/devicetree/bindings/media/microchip,xisc.yaml
13534 F:      drivers/staging/media/deprecated/atmel/atmel-isc*
13535 F:      drivers/staging/media/deprecated/atmel/atmel-sama*-isc*
13536 F:      drivers/media/platform/microchip/microchip-isc*
13537 F:      drivers/media/platform/microchip/microchip-sama*-isc*
13538 F:      include/linux/atmel-isc-media.h
13539
13540 MICROCHIP ISI DRIVER
13541 M:      Eugen Hristev <eugen.hristev@microchip.com>
13542 L:      linux-media@vger.kernel.org
13543 S:      Supported
13544 F:      drivers/media/platform/atmel/atmel-isi.c
13545 F:      drivers/media/platform/atmel/atmel-isi.h
13546
13547 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
13548 M:      Woojung Huh <woojung.huh@microchip.com>
13549 M:      UNGLinuxDriver@microchip.com
13550 L:      netdev@vger.kernel.org
13551 S:      Maintained
13552 F:      Documentation/devicetree/bindings/net/dsa/microchip,ksz.yaml
13553 F:      Documentation/devicetree/bindings/net/dsa/microchip,lan937x.yaml
13554 F:      drivers/net/dsa/microchip/*
13555 F:      include/linux/platform_data/microchip-ksz.h
13556 F:      net/dsa/tag_ksz.c
13557
13558 MICROCHIP LAN87xx/LAN937x T1 PHY DRIVER
13559 M:      Arun Ramadoss <arun.ramadoss@microchip.com>
13560 R:      UNGLinuxDriver@microchip.com
13561 L:      netdev@vger.kernel.org
13562 S:      Maintained
13563 F:      drivers/net/phy/microchip_t1.c
13564
13565 MICROCHIP LAN743X ETHERNET DRIVER
13566 M:      Bryan Whitehead <bryan.whitehead@microchip.com>
13567 M:      UNGLinuxDriver@microchip.com
13568 L:      netdev@vger.kernel.org
13569 S:      Maintained
13570 F:      drivers/net/ethernet/microchip/lan743x_*
13571
13572 MICROCHIP LAN966X ETHERNET DRIVER
13573 M:      Horatiu Vultur <horatiu.vultur@microchip.com>
13574 M:      UNGLinuxDriver@microchip.com
13575 L:      netdev@vger.kernel.org
13576 S:      Maintained
13577 F:      drivers/net/ethernet/microchip/lan966x/*
13578
13579 MICROCHIP LCDFB DRIVER
13580 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
13581 L:      linux-fbdev@vger.kernel.org
13582 S:      Maintained
13583 F:      drivers/video/fbdev/atmel_lcdfb.c
13584 F:      include/video/atmel_lcdc.h
13585
13586 MICROCHIP MCP16502 PMIC DRIVER
13587 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13588 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13589 S:      Supported
13590 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
13591 F:      drivers/regulator/mcp16502.c
13592
13593 MICROCHIP MCP3911 ADC DRIVER
13594 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
13595 M:      Kent Gustavsson <kent@minoris.se>
13596 L:      linux-iio@vger.kernel.org
13597 S:      Maintained
13598 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
13599 F:      drivers/iio/adc/mcp3911.c
13600
13601 MICROCHIP MMC/SD/SDIO MCI DRIVER
13602 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
13603 S:      Maintained
13604 F:      drivers/mmc/host/atmel-mci.c
13605
13606 MICROCHIP NAND DRIVER
13607 M:      Tudor Ambarus <tudor.ambarus@linaro.org>
13608 L:      linux-mtd@lists.infradead.org
13609 S:      Supported
13610 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
13611 F:      drivers/mtd/nand/raw/atmel/*
13612
13613 MICROCHIP PCI1XXXX GP DRIVER
13614 M:      Kumaravel Thiagarajan <kumaravel.thiagarajan@microchip.com>
13615 L:      linux-gpio@vger.kernel.org
13616 S:      Supported
13617 F:      drivers/misc/mchp_pci1xxxx/mchp_pci1xxxx_gp.c
13618 F:      drivers/misc/mchp_pci1xxxx/mchp_pci1xxxx_gp.h
13619 F:      drivers/misc/mchp_pci1xxxx/mchp_pci1xxxx_gpio.c
13620
13621 MICROCHIP OTPC DRIVER
13622 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13623 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13624 S:      Supported
13625 F:      Documentation/devicetree/bindings/nvmem/microchip,sama7g5-otpc.yaml
13626 F:      drivers/nvmem/microchip-otpc.c
13627 F:      include/dt-bindings/nvmem/microchip,sama7g5-otpc.h
13628
13629 MICROCHIP PCI1XXXX I2C DRIVER
13630 M:      Tharun Kumar P <tharunkumar.pasumarthi@microchip.com>
13631 M:      Kumaravel Thiagarajan <kumaravel.thiagarajan@microchip.com>
13632 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
13633 L:      linux-i2c@vger.kernel.org
13634 S:      Maintained
13635 F:      drivers/i2c/busses/i2c-mchp-pci1xxxx.c
13636
13637 MICROCHIP PWM DRIVER
13638 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13639 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13640 L:      linux-pwm@vger.kernel.org
13641 S:      Supported
13642 F:      Documentation/devicetree/bindings/pwm/atmel,at91sam-pwm.yaml
13643 F:      drivers/pwm/pwm-atmel.c
13644
13645 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
13646 M:      Eugen Hristev <eugen.hristev@microchip.com>
13647 L:      linux-iio@vger.kernel.org
13648 S:      Supported
13649 F:      Documentation/devicetree/bindings/iio/adc/atmel,sama5d2-adc.yaml
13650 F:      drivers/iio/adc/at91-sama5d2_adc.c
13651 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
13652
13653 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
13654 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13655 S:      Supported
13656 F:      drivers/power/reset/at91-sama5d2_shdwc.c
13657
13658 MICROCHIP SPI DRIVER
13659 M:      Tudor Ambarus <tudor.ambarus@linaro.org>
13660 S:      Supported
13661 F:      drivers/spi/spi-atmel.*
13662
13663 MICROCHIP SSC DRIVER
13664 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
13665 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13666 S:      Supported
13667 F:      drivers/misc/atmel-ssc.c
13668 F:      include/linux/atmel-ssc.h
13669
13670 MICROCHIP SOC DRIVERS
13671 M:      Conor Dooley <conor@kernel.org>
13672 S:      Supported
13673 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/conor/linux.git/
13674 F:      drivers/soc/microchip/
13675
13676 MICROCHIP USB251XB DRIVER
13677 M:      Richard Leitner <richard.leitner@skidata.com>
13678 L:      linux-usb@vger.kernel.org
13679 S:      Maintained
13680 F:      Documentation/devicetree/bindings/usb/usb251xb.yaml
13681 F:      drivers/usb/misc/usb251xb.c
13682
13683 MICROCHIP USBA UDC DRIVER
13684 M:      Cristian Birsan <cristian.birsan@microchip.com>
13685 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13686 S:      Supported
13687 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
13688
13689 MICROCHIP WILC1000 WIFI DRIVER
13690 M:      Ajay Singh <ajay.kathat@microchip.com>
13691 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13692 L:      linux-wireless@vger.kernel.org
13693 S:      Supported
13694 F:      drivers/net/wireless/microchip/wilc1000/
13695
13696 MICROSEMI MIPS SOCS
13697 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
13698 M:      UNGLinuxDriver@microchip.com
13699 L:      linux-mips@vger.kernel.org
13700 S:      Supported
13701 F:      Documentation/devicetree/bindings/mips/mscc.txt
13702 F:      Documentation/devicetree/bindings/phy/mscc,vsc7514-serdes.yaml
13703 F:      Documentation/devicetree/bindings/power/reset/ocelot-reset.txt
13704 F:      arch/mips/boot/dts/mscc/
13705 F:      arch/mips/configs/generic/board-ocelot.config
13706 F:      arch/mips/generic/board-ocelot.c
13707
13708 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
13709 M:      Don Brace <don.brace@microchip.com>
13710 L:      storagedev@microchip.com
13711 L:      linux-scsi@vger.kernel.org
13712 S:      Supported
13713 F:      Documentation/scsi/smartpqi.rst
13714 F:      drivers/scsi/smartpqi/Kconfig
13715 F:      drivers/scsi/smartpqi/Makefile
13716 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
13717 F:      include/linux/cciss*.h
13718 F:      include/uapi/linux/cciss*.h
13719
13720 MICROSOFT MANA RDMA DRIVER
13721 M:      Long Li <longli@microsoft.com>
13722 M:      Ajay Sharma <sharmaajay@microsoft.com>
13723 L:      linux-rdma@vger.kernel.org
13724 S:      Supported
13725 F:      drivers/infiniband/hw/mana/
13726 F:      include/net/mana
13727 F:      include/uapi/rdma/mana-abi.h
13728
13729 MICROSOFT SURFACE AGGREGATOR TABLET-MODE SWITCH
13730 M:      Maximilian Luz <luzmaximilian@gmail.com>
13731 L:      platform-driver-x86@vger.kernel.org
13732 S:      Maintained
13733 F:      drivers/platform/surface/surface_aggregator_tabletsw.c
13734
13735 MICROSOFT SURFACE BATTERY AND AC DRIVERS
13736 M:      Maximilian Luz <luzmaximilian@gmail.com>
13737 L:      linux-pm@vger.kernel.org
13738 L:      platform-driver-x86@vger.kernel.org
13739 S:      Maintained
13740 F:      drivers/power/supply/surface_battery.c
13741 F:      drivers/power/supply/surface_charger.c
13742
13743 MICROSOFT SURFACE DTX DRIVER
13744 M:      Maximilian Luz <luzmaximilian@gmail.com>
13745 L:      platform-driver-x86@vger.kernel.org
13746 S:      Maintained
13747 F:      Documentation/driver-api/surface_aggregator/clients/dtx.rst
13748 F:      drivers/platform/surface/surface_dtx.c
13749 F:      include/uapi/linux/surface_aggregator/dtx.h
13750
13751 MICROSOFT SURFACE GPE LID SUPPORT DRIVER
13752 M:      Maximilian Luz <luzmaximilian@gmail.com>
13753 L:      platform-driver-x86@vger.kernel.org
13754 S:      Maintained
13755 F:      drivers/platform/surface/surface_gpe.c
13756
13757 MICROSOFT SURFACE HARDWARE PLATFORM SUPPORT
13758 M:      Hans de Goede <hdegoede@redhat.com>
13759 M:      Mark Gross <markgross@kernel.org>
13760 M:      Maximilian Luz <luzmaximilian@gmail.com>
13761 L:      platform-driver-x86@vger.kernel.org
13762 S:      Maintained
13763 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
13764 F:      drivers/platform/surface/
13765
13766 MICROSOFT SURFACE HID TRANSPORT DRIVER
13767 M:      Maximilian Luz <luzmaximilian@gmail.com>
13768 L:      linux-input@vger.kernel.org
13769 L:      platform-driver-x86@vger.kernel.org
13770 S:      Maintained
13771 F:      drivers/hid/surface-hid/
13772
13773 MICROSOFT SURFACE HOT-PLUG DRIVER
13774 M:      Maximilian Luz <luzmaximilian@gmail.com>
13775 L:      platform-driver-x86@vger.kernel.org
13776 S:      Maintained
13777 F:      drivers/platform/surface/surface_hotplug.c
13778
13779 MICROSOFT SURFACE PLATFORM PROFILE DRIVER
13780 M:      Maximilian Luz <luzmaximilian@gmail.com>
13781 L:      platform-driver-x86@vger.kernel.org
13782 S:      Maintained
13783 F:      drivers/platform/surface/surface_platform_profile.c
13784
13785 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
13786 M:      Chen Yu <yu.c.chen@intel.com>
13787 L:      platform-driver-x86@vger.kernel.org
13788 S:      Supported
13789 F:      drivers/platform/surface/surfacepro3_button.c
13790
13791 MICROSOFT SURFACE SYSTEM AGGREGATOR SUBSYSTEM
13792 M:      Maximilian Luz <luzmaximilian@gmail.com>
13793 L:      platform-driver-x86@vger.kernel.org
13794 S:      Maintained
13795 W:      https://github.com/linux-surface/surface-aggregator-module
13796 C:      irc://irc.libera.chat/linux-surface
13797 F:      Documentation/driver-api/surface_aggregator/
13798 F:      drivers/platform/surface/aggregator/
13799 F:      drivers/platform/surface/surface_acpi_notify.c
13800 F:      drivers/platform/surface/surface_aggregator_cdev.c
13801 F:      drivers/platform/surface/surface_aggregator_registry.c
13802 F:      include/linux/surface_acpi_notify.h
13803 F:      include/linux/surface_aggregator/
13804 F:      include/uapi/linux/surface_aggregator/
13805
13806 MICROSOFT SURFACE SYSTEM AGGREGATOR HUB DRIVER
13807 M:      Maximilian Luz <luzmaximilian@gmail.com>
13808 L:      platform-driver-x86@vger.kernel.org
13809 S:      Maintained
13810 F:      drivers/platform/surface/surface_aggregator_hub.c
13811
13812 MICROTEK X6 SCANNER
13813 M:      Oliver Neukum <oliver@neukum.org>
13814 S:      Maintained
13815 F:      drivers/usb/image/microtek.*
13816
13817 MIKROTIK CRS3XX 98DX3236 BOARD SUPPORT
13818 M:      Luka Kovacic <luka.kovacic@sartura.hr>
13819 M:      Luka Perkov <luka.perkov@sartura.hr>
13820 S:      Maintained
13821 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s-bit.dts
13822 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s.dts
13823 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s-bit.dts
13824 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s.dts
13825 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s-bit.dts
13826 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s.dts
13827
13828 MIPI CCS, SMIA AND SMIA++ IMAGE SENSOR DRIVER
13829 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
13830 L:      linux-media@vger.kernel.org
13831 S:      Maintained
13832 F:      Documentation/devicetree/bindings/media/i2c/mipi-ccs.yaml
13833 F:      Documentation/driver-api/media/drivers/ccs/
13834 F:      Documentation/userspace-api/media/drivers/ccs.rst
13835 F:      drivers/media/i2c/ccs-pll.c
13836 F:      drivers/media/i2c/ccs-pll.h
13837 F:      drivers/media/i2c/ccs/
13838 F:      include/uapi/linux/ccs.h
13839 F:      include/uapi/linux/smiapp.h
13840
13841 MIPS
13842 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
13843 L:      linux-mips@vger.kernel.org
13844 S:      Maintained
13845 W:      http://www.linux-mips.org/
13846 Q:      https://patchwork.kernel.org/project/linux-mips/list/
13847 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
13848 F:      Documentation/devicetree/bindings/mips/
13849 F:      Documentation/mips/
13850 F:      arch/mips/
13851 F:      drivers/platform/mips/
13852 F:      include/dt-bindings/mips/
13853
13854 MIPS BOSTON DEVELOPMENT BOARD
13855 M:      Paul Burton <paulburton@kernel.org>
13856 L:      linux-mips@vger.kernel.org
13857 S:      Maintained
13858 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
13859 F:      arch/mips/boot/dts/img/boston.dts
13860 F:      arch/mips/configs/generic/board-boston.config
13861 F:      drivers/clk/imgtec/clk-boston.c
13862 F:      include/dt-bindings/clock/boston-clock.h
13863
13864 MIPS CORE DRIVERS
13865 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
13866 M:      Serge Semin <fancer.lancer@gmail.com>
13867 L:      linux-mips@vger.kernel.org
13868 S:      Supported
13869 F:      drivers/bus/mips_cdmm.c
13870 F:      drivers/clocksource/mips-gic-timer.c
13871 F:      drivers/cpuidle/cpuidle-cps.c
13872 F:      drivers/irqchip/irq-mips-cpu.c
13873 F:      drivers/irqchip/irq-mips-gic.c
13874
13875 MIPS GENERIC PLATFORM
13876 M:      Paul Burton <paulburton@kernel.org>
13877 L:      linux-mips@vger.kernel.org
13878 S:      Supported
13879 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.yaml
13880 F:      arch/mips/generic/
13881 F:      arch/mips/tools/generic-board-config.sh
13882
13883 MIPS RINT INSTRUCTION EMULATION
13884 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
13885 L:      linux-mips@vger.kernel.org
13886 S:      Supported
13887 F:      arch/mips/math-emu/dp_rint.c
13888 F:      arch/mips/math-emu/sp_rint.c
13889
13890 MIPS/LOONGSON1 ARCHITECTURE
13891 M:      Keguang Zhang <keguang.zhang@gmail.com>
13892 L:      linux-mips@vger.kernel.org
13893 S:      Maintained
13894 F:      arch/mips/include/asm/mach-loongson32/
13895 F:      arch/mips/loongson32/
13896 F:      drivers/*/*/*loongson1*
13897 F:      drivers/*/*loongson1*
13898
13899 MIPS/LOONGSON2EF ARCHITECTURE
13900 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
13901 L:      linux-mips@vger.kernel.org
13902 S:      Maintained
13903 F:      arch/mips/include/asm/mach-loongson2ef/
13904 F:      arch/mips/loongson2ef/
13905 F:      drivers/cpufreq/loongson2_cpufreq.c
13906
13907 MIPS/LOONGSON64 ARCHITECTURE
13908 M:      Huacai Chen <chenhuacai@kernel.org>
13909 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
13910 L:      linux-mips@vger.kernel.org
13911 S:      Maintained
13912 F:      arch/mips/include/asm/mach-loongson64/
13913 F:      arch/mips/loongson64/
13914 F:      drivers/irqchip/irq-loongson*
13915 F:      drivers/platform/mips/cpu_hwmon.c
13916
13917 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
13918 M:      Hans Verkuil <hverkuil@xs4all.nl>
13919 L:      linux-media@vger.kernel.org
13920 S:      Odd Fixes
13921 W:      https://linuxtv.org
13922 T:      git git://linuxtv.org/media_tree.git
13923 F:      drivers/media/radio/radio-miropcm20*
13924
13925 MMP SUPPORT
13926 R:      Lubomir Rintel <lkundrak@v3.sk>
13927 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13928 S:      Odd Fixes
13929 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
13930 F:      arch/arm/boot/dts/mmp*
13931 F:      arch/arm/mach-mmp/
13932 F:      include/linux/soc/mmp/
13933
13934 MMP USB PHY DRIVERS
13935 R:      Lubomir Rintel <lkundrak@v3.sk>
13936 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13937 S:      Maintained
13938 F:      drivers/phy/marvell/phy-mmp3-usb.c
13939 F:      drivers/phy/marvell/phy-pxa-usb.c
13940
13941 MMU GATHER AND TLB INVALIDATION
13942 M:      Will Deacon <will@kernel.org>
13943 M:      "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
13944 M:      Andrew Morton <akpm@linux-foundation.org>
13945 M:      Nick Piggin <npiggin@gmail.com>
13946 M:      Peter Zijlstra <peterz@infradead.org>
13947 L:      linux-arch@vger.kernel.org
13948 L:      linux-mm@kvack.org
13949 S:      Maintained
13950 F:      arch/*/include/asm/tlb.h
13951 F:      include/asm-generic/tlb.h
13952 F:      mm/mmu_gather.c
13953
13954 MN88472 MEDIA DRIVER
13955 M:      Antti Palosaari <crope@iki.fi>
13956 L:      linux-media@vger.kernel.org
13957 S:      Maintained
13958 W:      https://linuxtv.org
13959 W:      http://palosaari.fi/linux/
13960 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13961 F:      drivers/media/dvb-frontends/mn88472*
13962
13963 MN88473 MEDIA DRIVER
13964 M:      Antti Palosaari <crope@iki.fi>
13965 L:      linux-media@vger.kernel.org
13966 S:      Maintained
13967 W:      https://linuxtv.org
13968 W:      http://palosaari.fi/linux/
13969 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13970 F:      drivers/media/dvb-frontends/mn88473*
13971
13972 MODULE SUPPORT
13973 M:      Luis Chamberlain <mcgrof@kernel.org>
13974 L:      linux-modules@vger.kernel.org
13975 L:      linux-kernel@vger.kernel.org
13976 S:      Maintained
13977 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux.git modules-next
13978 F:      include/linux/module.h
13979 F:      kernel/module/
13980 F:      scripts/module*
13981
13982 MONOLITHIC POWER SYSTEM PMIC DRIVER
13983 M:      Saravanan Sekar <sravanhome@gmail.com>
13984 S:      Maintained
13985 F:      Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
13986 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
13987 F:      drivers/iio/adc/mp2629_adc.c
13988 F:      drivers/mfd/mp2629.c
13989 F:      drivers/power/supply/mp2629_charger.c
13990 F:      drivers/regulator/mp5416.c
13991 F:      drivers/regulator/mpq7920.c
13992 F:      drivers/regulator/mpq7920.h
13993 F:      include/linux/mfd/mp2629.h
13994
13995 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
13996 S:      Orphan
13997 W:      http://popies.net/meye/
13998 F:      Documentation/userspace-api/media/drivers/meye*
13999 F:      drivers/staging/media/deprecated/meye/
14000 F:      include/uapi/linux/meye.h
14001
14002 MOTORCOMM PHY DRIVER
14003 M:      Peter Geis <pgwipeout@gmail.com>
14004 M:      Frank <Frank.Sae@motor-comm.com>
14005 L:      netdev@vger.kernel.org
14006 S:      Maintained
14007 F:      drivers/net/phy/motorcomm.c
14008
14009 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
14010 M:      Jiri Slaby <jirislaby@kernel.org>
14011 S:      Maintained
14012 F:      Documentation/driver-api/tty/moxa-smartio.rst
14013 F:      drivers/tty/mxser.*
14014
14015 MR800 AVERMEDIA USB FM RADIO DRIVER
14016 M:      Alexey Klimov <klimov.linux@gmail.com>
14017 L:      linux-media@vger.kernel.org
14018 S:      Maintained
14019 T:      git git://linuxtv.org/media_tree.git
14020 F:      drivers/media/radio/radio-mr800.c
14021
14022 MRF24J40 IEEE 802.15.4 RADIO DRIVER
14023 M:      Alan Ott <alan@signal11.us>
14024 L:      linux-wpan@vger.kernel.org
14025 S:      Maintained
14026 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
14027 F:      drivers/net/ieee802154/mrf24j40.c
14028
14029 MSI LAPTOP SUPPORT
14030 M:      "Lee, Chun-Yi" <jlee@suse.com>
14031 L:      platform-driver-x86@vger.kernel.org
14032 S:      Maintained
14033 F:      drivers/platform/x86/msi-laptop.c
14034
14035 MSI WMI SUPPORT
14036 L:      platform-driver-x86@vger.kernel.org
14037 S:      Orphan
14038 F:      drivers/platform/x86/msi-wmi.c
14039
14040 MSI001 MEDIA DRIVER
14041 M:      Antti Palosaari <crope@iki.fi>
14042 L:      linux-media@vger.kernel.org
14043 S:      Maintained
14044 W:      https://linuxtv.org
14045 W:      http://palosaari.fi/linux/
14046 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14047 T:      git git://linuxtv.org/anttip/media_tree.git
14048 F:      drivers/media/tuners/msi001*
14049
14050 MSI2500 MEDIA DRIVER
14051 M:      Antti Palosaari <crope@iki.fi>
14052 L:      linux-media@vger.kernel.org
14053 S:      Maintained
14054 W:      https://linuxtv.org
14055 W:      http://palosaari.fi/linux/
14056 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14057 T:      git git://linuxtv.org/anttip/media_tree.git
14058 F:      drivers/media/usb/msi2500/
14059
14060 MSTAR INTERRUPT CONTROLLER DRIVER
14061 M:      Mark-PK Tsai <mark-pk.tsai@mediatek.com>
14062 M:      Daniel Palmer <daniel@thingy.jp>
14063 S:      Maintained
14064 F:      Documentation/devicetree/bindings/interrupt-controller/mstar,mst-intc.yaml
14065 F:      drivers/irqchip/irq-mst-intc.c
14066
14067 MSYSTEMS DISKONCHIP G3 MTD DRIVER
14068 M:      Robert Jarzmik <robert.jarzmik@free.fr>
14069 L:      linux-mtd@lists.infradead.org
14070 S:      Maintained
14071 F:      drivers/mtd/devices/docg3*
14072
14073 MT9M032 APTINA SENSOR DRIVER
14074 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
14075 L:      linux-media@vger.kernel.org
14076 S:      Maintained
14077 T:      git git://linuxtv.org/media_tree.git
14078 F:      drivers/media/i2c/mt9m032.c
14079 F:      include/media/i2c/mt9m032.h
14080
14081 MT9P031 APTINA CAMERA SENSOR
14082 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
14083 L:      linux-media@vger.kernel.org
14084 S:      Maintained
14085 T:      git git://linuxtv.org/media_tree.git
14086 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9p031.yaml
14087 F:      drivers/media/i2c/mt9p031.c
14088 F:      include/media/i2c/mt9p031.h
14089
14090 MT9T001 APTINA CAMERA SENSOR
14091 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
14092 L:      linux-media@vger.kernel.org
14093 S:      Maintained
14094 T:      git git://linuxtv.org/media_tree.git
14095 F:      drivers/media/i2c/mt9t001.c
14096 F:      include/media/i2c/mt9t001.h
14097
14098 MT9T112 APTINA CAMERA SENSOR
14099 M:      Jacopo Mondi <jacopo@jmondi.org>
14100 L:      linux-media@vger.kernel.org
14101 S:      Odd Fixes
14102 T:      git git://linuxtv.org/media_tree.git
14103 F:      drivers/media/i2c/mt9t112.c
14104 F:      include/media/i2c/mt9t112.h
14105
14106 MT9V032 APTINA CAMERA SENSOR
14107 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
14108 L:      linux-media@vger.kernel.org
14109 S:      Maintained
14110 T:      git git://linuxtv.org/media_tree.git
14111 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
14112 F:      drivers/media/i2c/mt9v032.c
14113 F:      include/media/i2c/mt9v032.h
14114
14115 MT9V111 APTINA CAMERA SENSOR
14116 M:      Jacopo Mondi <jacopo@jmondi.org>
14117 L:      linux-media@vger.kernel.org
14118 S:      Maintained
14119 T:      git git://linuxtv.org/media_tree.git
14120 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.yaml
14121 F:      drivers/media/i2c/mt9v111.c
14122
14123 MULTIFUNCTION DEVICES (MFD)
14124 M:      Lee Jones <lee@kernel.org>
14125 S:      Supported
14126 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
14127 F:      Documentation/devicetree/bindings/mfd/
14128 F:      drivers/mfd/
14129 F:      include/dt-bindings/mfd/
14130 F:      include/linux/mfd/
14131
14132 MULTIMEDIA CARD (MMC) ETC. OVER SPI
14133 S:      Orphan
14134 F:      drivers/mmc/host/mmc_spi.c
14135 F:      include/linux/spi/mmc_spi.h
14136
14137 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
14138 M:      Ulf Hansson <ulf.hansson@linaro.org>
14139 L:      linux-mmc@vger.kernel.org
14140 S:      Maintained
14141 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
14142 F:      Documentation/devicetree/bindings/mmc/
14143 F:      drivers/mmc/
14144 F:      include/linux/mmc/
14145 F:      include/uapi/linux/mmc/
14146
14147 MULTIPLEXER SUBSYSTEM
14148 M:      Peter Rosin <peda@axentia.se>
14149 S:      Maintained
14150 F:      Documentation/ABI/testing/sysfs-class-mux*
14151 F:      Documentation/devicetree/bindings/mux/
14152 F:      drivers/mux/
14153 F:      include/dt-bindings/mux/
14154 F:      include/linux/mux/
14155
14156 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
14157 M:      Bin Liu <b-liu@ti.com>
14158 L:      linux-usb@vger.kernel.org
14159 S:      Maintained
14160 F:      drivers/usb/musb/
14161
14162 MXL301RF MEDIA DRIVER
14163 M:      Akihiro Tsukada <tskd08@gmail.com>
14164 L:      linux-media@vger.kernel.org
14165 S:      Odd Fixes
14166 F:      drivers/media/tuners/mxl301rf*
14167
14168 MXL5007T MEDIA DRIVER
14169 M:      Michael Krufky <mkrufky@linuxtv.org>
14170 L:      linux-media@vger.kernel.org
14171 S:      Maintained
14172 W:      https://linuxtv.org
14173 W:      http://github.com/mkrufky
14174 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14175 T:      git git://linuxtv.org/mkrufky/tuners.git
14176 F:      drivers/media/tuners/mxl5007t.*
14177
14178 MXSFB DRM DRIVER
14179 M:      Marek Vasut <marex@denx.de>
14180 M:      Stefan Agner <stefan@agner.ch>
14181 L:      dri-devel@lists.freedesktop.org
14182 S:      Supported
14183 T:      git git://anongit.freedesktop.org/drm/drm-misc
14184 F:      Documentation/devicetree/bindings/display/fsl,lcdif.yaml
14185 F:      drivers/gpu/drm/mxsfb/
14186
14187 MYLEX DAC960 PCI RAID Controller
14188 M:      Hannes Reinecke <hare@kernel.org>
14189 L:      linux-scsi@vger.kernel.org
14190 S:      Supported
14191 F:      drivers/scsi/myrb.*
14192 F:      drivers/scsi/myrs.*
14193
14194 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
14195 M:      Chris Lee <christopher.lee@cspi.com>
14196 L:      netdev@vger.kernel.org
14197 S:      Supported
14198 W:      https://www.cspi.com/ethernet-products/support/downloads/
14199 F:      drivers/net/ethernet/myricom/myri10ge/
14200
14201 NAND FLASH SUBSYSTEM
14202 M:      Miquel Raynal <miquel.raynal@bootlin.com>
14203 R:      Richard Weinberger <richard@nod.at>
14204 L:      linux-mtd@lists.infradead.org
14205 S:      Maintained
14206 W:      http://www.linux-mtd.infradead.org/
14207 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
14208 C:      irc://irc.oftc.net/mtd
14209 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
14210 F:      drivers/mtd/nand/
14211 F:      include/linux/mtd/*nand*.h
14212
14213 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
14214 M:      Daniel Mack <zonque@gmail.com>
14215 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14216 S:      Maintained
14217 W:      http://www.native-instruments.com
14218 F:      sound/usb/caiaq/
14219
14220 NATSEMI ETHERNET DRIVER (DP8381x)
14221 S:      Orphan
14222 F:      drivers/net/ethernet/natsemi/natsemi.c
14223
14224 NCR 5380 SCSI DRIVERS
14225 M:      Finn Thain <fthain@linux-m68k.org>
14226 M:      Michael Schmitz <schmitzmic@gmail.com>
14227 L:      linux-scsi@vger.kernel.org
14228 S:      Maintained
14229 F:      Documentation/scsi/g_NCR5380.rst
14230 F:      drivers/scsi/NCR5380.*
14231 F:      drivers/scsi/arm/cumana_1.c
14232 F:      drivers/scsi/arm/oak.c
14233 F:      drivers/scsi/atari_scsi.*
14234 F:      drivers/scsi/dmx3191d.c
14235 F:      drivers/scsi/g_NCR5380.*
14236 F:      drivers/scsi/mac_scsi.*
14237 F:      drivers/scsi/sun3_scsi.*
14238 F:      drivers/scsi/sun3_scsi_vme.c
14239
14240 NCSI LIBRARY
14241 M:      Samuel Mendoza-Jonas <sam@mendozajonas.com>
14242 S:      Maintained
14243 F:      net/ncsi/
14244
14245 NCT6775 HARDWARE MONITOR DRIVER - CORE & PLATFORM DRIVER
14246 M:      Guenter Roeck <linux@roeck-us.net>
14247 L:      linux-hwmon@vger.kernel.org
14248 S:      Maintained
14249 F:      Documentation/hwmon/nct6775.rst
14250 F:      drivers/hwmon/nct6775-core.c
14251 F:      drivers/hwmon/nct6775-platform.c
14252 F:      drivers/hwmon/nct6775.h
14253
14254 NCT6775 HARDWARE MONITOR DRIVER - I2C DRIVER
14255 M:      Zev Weiss <zev@bewilderbeest.net>
14256 L:      linux-hwmon@vger.kernel.org
14257 S:      Maintained
14258 F:      Documentation/devicetree/bindings/hwmon/nuvoton,nct6775.yaml
14259 F:      drivers/hwmon/nct6775-i2c.c
14260
14261 NETDEVSIM
14262 M:      Jakub Kicinski <kuba@kernel.org>
14263 S:      Maintained
14264 F:      drivers/net/netdevsim/*
14265
14266 NETEM NETWORK EMULATOR
14267 M:      Stephen Hemminger <stephen@networkplumber.org>
14268 L:      netdev@vger.kernel.org
14269 S:      Maintained
14270 F:      net/sched/sch_netem.c
14271
14272 NETERION 10GbE DRIVERS (s2io)
14273 M:      Jon Mason <jdmason@kudzu.us>
14274 L:      netdev@vger.kernel.org
14275 S:      Supported
14276 F:      Documentation/networking/device_drivers/ethernet/neterion/s2io.rst
14277 F:      drivers/net/ethernet/neterion/
14278
14279 NETFILTER
14280 M:      Pablo Neira Ayuso <pablo@netfilter.org>
14281 M:      Jozsef Kadlecsik <kadlec@netfilter.org>
14282 M:      Florian Westphal <fw@strlen.de>
14283 L:      netfilter-devel@vger.kernel.org
14284 L:      coreteam@netfilter.org
14285 S:      Maintained
14286 W:      http://www.netfilter.org/
14287 W:      http://www.iptables.org/
14288 W:      http://www.nftables.org/
14289 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
14290 C:      irc://irc.libera.chat/netfilter
14291 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf.git
14292 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf-next.git
14293 F:      include/linux/netfilter*
14294 F:      include/linux/netfilter/
14295 F:      include/net/netfilter/
14296 F:      include/uapi/linux/netfilter*
14297 F:      include/uapi/linux/netfilter/
14298 F:      net/*/netfilter.c
14299 F:      net/*/netfilter/
14300 F:      net/bridge/br_netfilter*.c
14301 F:      net/netfilter/
14302
14303 NETROM NETWORK LAYER
14304 M:      Ralf Baechle <ralf@linux-mips.org>
14305 L:      linux-hams@vger.kernel.org
14306 S:      Maintained
14307 W:      http://www.linux-ax25.org/
14308 F:      include/net/netrom.h
14309 F:      include/uapi/linux/netrom.h
14310 F:      net/netrom/
14311
14312 NETRONIX EMBEDDED CONTROLLER
14313 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
14314 S:      Maintained
14315 F:      Documentation/devicetree/bindings/mfd/netronix,ntxec.yaml
14316 F:      drivers/mfd/ntxec.c
14317 F:      drivers/pwm/pwm-ntxec.c
14318 F:      drivers/rtc/rtc-ntxec.c
14319 F:      include/linux/mfd/ntxec.h
14320
14321 NETRONOME ETHERNET DRIVERS
14322 M:      Simon Horman <simon.horman@corigine.com>
14323 R:      Jakub Kicinski <kuba@kernel.org>
14324 L:      oss-drivers@corigine.com
14325 S:      Maintained
14326 F:      drivers/net/ethernet/netronome/
14327
14328 NETWORK BLOCK DEVICE (NBD)
14329 M:      Josef Bacik <josef@toxicpanda.com>
14330 L:      linux-block@vger.kernel.org
14331 L:      nbd@other.debian.org
14332 S:      Maintained
14333 F:      Documentation/admin-guide/blockdev/nbd.rst
14334 F:      drivers/block/nbd.c
14335 F:      include/trace/events/nbd.h
14336 F:      include/uapi/linux/nbd.h
14337
14338 NETWORK DROP MONITOR
14339 M:      Neil Horman <nhorman@tuxdriver.com>
14340 L:      netdev@vger.kernel.org
14341 S:      Maintained
14342 W:      https://fedorahosted.org/dropwatch/
14343 F:      include/uapi/linux/net_dropmon.h
14344 F:      net/core/drop_monitor.c
14345
14346 NETWORKING DRIVERS
14347 M:      "David S. Miller" <davem@davemloft.net>
14348 M:      Eric Dumazet <edumazet@google.com>
14349 M:      Jakub Kicinski <kuba@kernel.org>
14350 M:      Paolo Abeni <pabeni@redhat.com>
14351 L:      netdev@vger.kernel.org
14352 S:      Maintained
14353 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
14354 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
14355 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
14356 F:      Documentation/devicetree/bindings/net/
14357 F:      drivers/connector/
14358 F:      drivers/net/
14359 F:      include/dt-bindings/net/
14360 F:      include/linux/etherdevice.h
14361 F:      include/linux/fcdevice.h
14362 F:      include/linux/fddidevice.h
14363 F:      include/linux/hippidevice.h
14364 F:      include/linux/if_*
14365 F:      include/linux/inetdevice.h
14366 F:      include/linux/netdevice.h
14367 F:      include/uapi/linux/if_*
14368 F:      include/uapi/linux/netdevice.h
14369
14370 NETWORKING DRIVERS (WIRELESS)
14371 M:      Kalle Valo <kvalo@kernel.org>
14372 L:      linux-wireless@vger.kernel.org
14373 S:      Maintained
14374 W:      https://wireless.wiki.kernel.org/
14375 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
14376 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
14377 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
14378 F:      Documentation/devicetree/bindings/net/wireless/
14379 F:      drivers/net/wireless/
14380
14381 NETWORKING [DSA]
14382 M:      Andrew Lunn <andrew@lunn.ch>
14383 M:      Florian Fainelli <f.fainelli@gmail.com>
14384 M:      Vladimir Oltean <olteanv@gmail.com>
14385 S:      Maintained
14386 F:      Documentation/devicetree/bindings/net/dsa/
14387 F:      drivers/net/dsa/
14388 F:      include/linux/dsa/
14389 F:      include/linux/platform_data/dsa.h
14390 F:      include/net/dsa.h
14391 F:      net/dsa/
14392 F:      tools/testing/selftests/drivers/net/dsa/
14393
14394 NETWORKING [GENERAL]
14395 M:      "David S. Miller" <davem@davemloft.net>
14396 M:      Eric Dumazet <edumazet@google.com>
14397 M:      Jakub Kicinski <kuba@kernel.org>
14398 M:      Paolo Abeni <pabeni@redhat.com>
14399 L:      netdev@vger.kernel.org
14400 S:      Maintained
14401 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
14402 B:      mailto:netdev@vger.kernel.org
14403 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
14404 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
14405 F:      Documentation/networking/
14406 F:      Documentation/process/maintainer-netdev.rst
14407 F:      include/linux/in.h
14408 F:      include/linux/net.h
14409 F:      include/linux/netdevice.h
14410 F:      include/net/
14411 F:      include/uapi/linux/in.h
14412 F:      include/uapi/linux/net.h
14413 F:      include/uapi/linux/net_namespace.h
14414 F:      include/uapi/linux/netdevice.h
14415 F:      lib/net_utils.c
14416 F:      lib/random32.c
14417 F:      net/
14418 F:      tools/testing/selftests/net/
14419
14420 NETWORKING [IPSEC]
14421 M:      Steffen Klassert <steffen.klassert@secunet.com>
14422 M:      Herbert Xu <herbert@gondor.apana.org.au>
14423 M:      "David S. Miller" <davem@davemloft.net>
14424 L:      netdev@vger.kernel.org
14425 S:      Maintained
14426 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
14427 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
14428 F:      include/net/xfrm.h
14429 F:      include/uapi/linux/xfrm.h
14430 F:      net/ipv4/ah4.c
14431 F:      net/ipv4/esp4*
14432 F:      net/ipv4/ip_vti.c
14433 F:      net/ipv4/ipcomp.c
14434 F:      net/ipv4/xfrm*
14435 F:      net/ipv6/ah6.c
14436 F:      net/ipv6/esp6*
14437 F:      net/ipv6/ip6_vti.c
14438 F:      net/ipv6/ipcomp6.c
14439 F:      net/ipv6/xfrm*
14440 F:      net/key/
14441 F:      net/xfrm/
14442 F:      tools/testing/selftests/net/ipsec.c
14443
14444 NETWORKING [IPv4/IPv6]
14445 M:      "David S. Miller" <davem@davemloft.net>
14446 M:      David Ahern <dsahern@kernel.org>
14447 L:      netdev@vger.kernel.org
14448 S:      Maintained
14449 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
14450 F:      arch/x86/net/*
14451 F:      include/linux/ip.h
14452 F:      include/linux/ipv6*
14453 F:      include/net/fib*
14454 F:      include/net/ip*
14455 F:      include/net/route.h
14456 F:      net/ipv4/
14457 F:      net/ipv6/
14458
14459 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
14460 M:      Paul Moore <paul@paul-moore.com>
14461 L:      netdev@vger.kernel.org
14462 L:      linux-security-module@vger.kernel.org
14463 S:      Maintained
14464 W:      https://github.com/netlabel
14465 F:      Documentation/netlabel/
14466 F:      include/net/calipso.h
14467 F:      include/net/cipso_ipv4.h
14468 F:      include/net/netlabel.h
14469 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
14470 F:      include/uapi/linux/netfilter/xt_SECMARK.h
14471 F:      net/ipv4/cipso_ipv4.c
14472 F:      net/ipv6/calipso.c
14473 F:      net/netfilter/xt_CONNSECMARK.c
14474 F:      net/netfilter/xt_SECMARK.c
14475 F:      net/netlabel/
14476
14477 NETWORKING [MPTCP]
14478 M:      Matthieu Baerts <matthieu.baerts@tessares.net>
14479 L:      netdev@vger.kernel.org
14480 L:      mptcp@lists.linux.dev
14481 S:      Maintained
14482 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
14483 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
14484 F:      Documentation/networking/mptcp-sysctl.rst
14485 F:      include/net/mptcp.h
14486 F:      include/trace/events/mptcp.h
14487 F:      include/uapi/linux/mptcp.h
14488 F:      net/mptcp/
14489 F:      tools/testing/selftests/bpf/*/*mptcp*.c
14490 F:      tools/testing/selftests/net/mptcp/
14491
14492 NETWORKING [TCP]
14493 M:      Eric Dumazet <edumazet@google.com>
14494 L:      netdev@vger.kernel.org
14495 S:      Maintained
14496 F:      include/linux/tcp.h
14497 F:      include/net/tcp.h
14498 F:      include/trace/events/tcp.h
14499 F:      include/uapi/linux/tcp.h
14500 F:      net/ipv4/syncookies.c
14501 F:      net/ipv4/tcp*.c
14502 F:      net/ipv6/syncookies.c
14503 F:      net/ipv6/tcp*.c
14504
14505 NETWORKING [TLS]
14506 M:      Boris Pismenny <borisp@nvidia.com>
14507 M:      John Fastabend <john.fastabend@gmail.com>
14508 M:      Jakub Kicinski <kuba@kernel.org>
14509 L:      netdev@vger.kernel.org
14510 S:      Maintained
14511 F:      include/net/tls.h
14512 F:      include/uapi/linux/tls.h
14513 F:      net/tls/*
14514
14515 NETXEN (1/10) GbE SUPPORT
14516 M:      Manish Chopra <manishc@marvell.com>
14517 M:      Rahul Verma <rahulv@marvell.com>
14518 M:      GR-Linux-NIC-Dev@marvell.com
14519 L:      netdev@vger.kernel.org
14520 S:      Supported
14521 F:      drivers/net/ethernet/qlogic/netxen/
14522
14523 NET_FAILOVER MODULE
14524 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
14525 L:      netdev@vger.kernel.org
14526 S:      Supported
14527 F:      Documentation/networking/net_failover.rst
14528 F:      drivers/net/net_failover.c
14529 F:      include/net/net_failover.h
14530
14531 NEXTHOP
14532 M:      David Ahern <dsahern@kernel.org>
14533 L:      netdev@vger.kernel.org
14534 S:      Maintained
14535 F:      include/net/netns/nexthop.h
14536 F:      include/net/nexthop.h
14537 F:      include/uapi/linux/nexthop.h
14538 F:      net/ipv4/nexthop.c
14539
14540 NFC SUBSYSTEM
14541 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
14542 L:      linux-nfc@lists.01.org (subscribers-only)
14543 L:      netdev@vger.kernel.org
14544 S:      Maintained
14545 B:      mailto:linux-nfc@lists.01.org
14546 F:      Documentation/devicetree/bindings/net/nfc/
14547 F:      drivers/nfc/
14548 F:      include/linux/platform_data/nfcmrvl.h
14549 F:      include/net/nfc/
14550 F:      include/uapi/linux/nfc.h
14551 F:      net/nfc/
14552
14553 NFC VIRTUAL NCI DEVICE DRIVER
14554 M:      Bongsu Jeon <bongsu.jeon@samsung.com>
14555 L:      netdev@vger.kernel.org
14556 L:      linux-nfc@lists.01.org (subscribers-only)
14557 S:      Supported
14558 F:      drivers/nfc/virtual_ncidev.c
14559 F:      tools/testing/selftests/nci/
14560
14561 NFS, SUNRPC, AND LOCKD CLIENTS
14562 M:      Trond Myklebust <trond.myklebust@hammerspace.com>
14563 M:      Anna Schumaker <anna@kernel.org>
14564 L:      linux-nfs@vger.kernel.org
14565 S:      Maintained
14566 W:      http://client.linux-nfs.org
14567 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
14568 F:      fs/lockd/
14569 F:      fs/nfs/
14570 F:      fs/nfs_common/
14571 F:      include/linux/lockd/
14572 F:      include/linux/nfs*
14573 F:      include/linux/sunrpc/
14574 F:      include/uapi/linux/nfs*
14575 F:      include/uapi/linux/sunrpc/
14576 F:      net/sunrpc/
14577 F:      Documentation/filesystems/nfs/
14578
14579 NILFS2 FILESYSTEM
14580 M:      Ryusuke Konishi <konishi.ryusuke@gmail.com>
14581 L:      linux-nilfs@vger.kernel.org
14582 S:      Supported
14583 W:      https://nilfs.sourceforge.io/
14584 W:      https://nilfs.osdn.jp/
14585 T:      git https://github.com/konis/nilfs2.git
14586 F:      Documentation/filesystems/nilfs2.rst
14587 F:      fs/nilfs2/
14588 F:      include/trace/events/nilfs2.h
14589 F:      include/uapi/linux/nilfs2_api.h
14590 F:      include/uapi/linux/nilfs2_ondisk.h
14591
14592 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
14593 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
14594 S:      Maintained
14595 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
14596 F:      Documentation/scsi/NinjaSCSI.rst
14597 F:      drivers/scsi/pcmcia/nsp_*
14598
14599 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
14600 M:      GOTO Masanori <gotom@debian.or.jp>
14601 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
14602 S:      Maintained
14603 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
14604 F:      Documentation/scsi/NinjaSCSI.rst
14605 F:      drivers/scsi/nsp32*
14606
14607 NINTENDO HID DRIVER
14608 M:      Daniel J. Ogorchock <djogorchock@gmail.com>
14609 L:      linux-input@vger.kernel.org
14610 S:      Maintained
14611 F:      drivers/hid/hid-nintendo*
14612
14613 NIOS2 ARCHITECTURE
14614 M:      Dinh Nguyen <dinguyen@kernel.org>
14615 S:      Maintained
14616 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
14617 F:      arch/nios2/
14618
14619 NITRO ENCLAVES (NE)
14620 M:      Alexandru Ciobotaru <alcioa@amazon.com>
14621 L:      linux-kernel@vger.kernel.org
14622 L:      The AWS Nitro Enclaves Team <aws-nitro-enclaves-devel@amazon.com>
14623 S:      Supported
14624 W:      https://aws.amazon.com/ec2/nitro/nitro-enclaves/
14625 F:      Documentation/virt/ne_overview.rst
14626 F:      drivers/virt/nitro_enclaves/
14627 F:      include/linux/nitro_enclaves.h
14628 F:      include/uapi/linux/nitro_enclaves.h
14629 F:      samples/nitro_enclaves/
14630
14631 NOHZ, DYNTICKS SUPPORT
14632 M:      Frederic Weisbecker <fweisbec@gmail.com>
14633 M:      Thomas Gleixner <tglx@linutronix.de>
14634 M:      Ingo Molnar <mingo@kernel.org>
14635 L:      linux-kernel@vger.kernel.org
14636 S:      Maintained
14637 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
14638 F:      include/linux/sched/nohz.h
14639 F:      include/linux/tick.h
14640 F:      kernel/time/tick*.*
14641
14642 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
14643 M:      Pavel Machek <pavel@ucw.cz>
14644 M:      Sakari Ailus <sakari.ailus@iki.fi>
14645 L:      linux-media@vger.kernel.org
14646 S:      Maintained
14647 F:      drivers/media/i2c/ad5820.c
14648 F:      drivers/media/i2c/et8ek8
14649
14650 NOKIA N900 POWER SUPPLY DRIVERS
14651 R:      Pali Rohár <pali@kernel.org>
14652 F:      drivers/power/supply/bq2415x_charger.c
14653 F:      drivers/power/supply/bq27xxx_battery.c
14654 F:      drivers/power/supply/bq27xxx_battery_i2c.c
14655 F:      drivers/power/supply/isp1704_charger.c
14656 F:      drivers/power/supply/rx51_battery.c
14657 F:      include/linux/power/bq2415x_charger.h
14658 F:      include/linux/power/bq27xxx_battery.h
14659
14660 NOLIBC HEADER FILE
14661 M:      Willy Tarreau <w@1wt.eu>
14662 S:      Maintained
14663 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
14664 F:      tools/include/nolibc/
14665 F:      tools/testing/selftests/nolibc/
14666
14667 NSDEPS
14668 M:      Matthias Maennich <maennich@google.com>
14669 S:      Maintained
14670 F:      Documentation/core-api/symbol-namespaces.rst
14671 F:      scripts/nsdeps
14672
14673 NTB AMD DRIVER
14674 M:      Sanjay R Mehta <sanju.mehta@amd.com>
14675 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
14676 L:      ntb@lists.linux.dev
14677 S:      Supported
14678 F:      drivers/ntb/hw/amd/
14679
14680 NTB DRIVER CORE
14681 M:      Jon Mason <jdmason@kudzu.us>
14682 M:      Dave Jiang <dave.jiang@intel.com>
14683 M:      Allen Hubbe <allenbh@gmail.com>
14684 L:      ntb@lists.linux.dev
14685 S:      Supported
14686 W:      https://github.com/jonmason/ntb/wiki
14687 T:      git git://github.com/jonmason/ntb.git
14688 F:      drivers/net/ntb_netdev.c
14689 F:      drivers/ntb/
14690 F:      drivers/pci/endpoint/functions/pci-epf-*ntb.c
14691 F:      include/linux/ntb.h
14692 F:      include/linux/ntb_transport.h
14693 F:      tools/testing/selftests/ntb/
14694
14695 NTB IDT DRIVER
14696 M:      Serge Semin <fancer.lancer@gmail.com>
14697 L:      ntb@lists.linux.dev
14698 S:      Supported
14699 F:      drivers/ntb/hw/idt/
14700
14701 NTB INTEL DRIVER
14702 M:      Dave Jiang <dave.jiang@intel.com>
14703 L:      ntb@lists.linux.dev
14704 S:      Supported
14705 W:      https://github.com/davejiang/linux/wiki
14706 T:      git https://github.com/davejiang/linux.git
14707 F:      drivers/ntb/hw/intel/
14708
14709 NTFS FILESYSTEM
14710 M:      Anton Altaparmakov <anton@tuxera.com>
14711 L:      linux-ntfs-dev@lists.sourceforge.net
14712 S:      Supported
14713 W:      http://www.tuxera.com/
14714 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
14715 F:      Documentation/filesystems/ntfs.rst
14716 F:      fs/ntfs/
14717
14718 NTFS3 FILESYSTEM
14719 M:      Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
14720 L:      ntfs3@lists.linux.dev
14721 S:      Supported
14722 W:      http://www.paragon-software.com/
14723 T:      git https://github.com/Paragon-Software-Group/linux-ntfs3.git
14724 F:      Documentation/filesystems/ntfs3.rst
14725 F:      fs/ntfs3/
14726
14727 NUBUS SUBSYSTEM
14728 M:      Finn Thain <fthain@linux-m68k.org>
14729 L:      linux-m68k@lists.linux-m68k.org
14730 S:      Maintained
14731 F:      arch/*/include/asm/nubus.h
14732 F:      drivers/nubus/
14733 F:      include/linux/nubus.h
14734 F:      include/uapi/linux/nubus.h
14735
14736 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
14737 M:      Antonino Daplas <adaplas@gmail.com>
14738 L:      linux-fbdev@vger.kernel.org
14739 S:      Maintained
14740 F:      drivers/video/fbdev/nvidia/
14741 F:      drivers/video/fbdev/riva/
14742
14743 NVIDIA WMI EC BACKLIGHT DRIVER
14744 M:      Daniel Dadap <ddadap@nvidia.com>
14745 L:      platform-driver-x86@vger.kernel.org
14746 S:      Supported
14747 F:      drivers/platform/x86/nvidia-wmi-ec-backlight.c
14748 F:      include/linux/platform_data/x86/nvidia-wmi-ec-backlight.h
14749
14750 NVM EXPRESS DRIVER
14751 M:      Keith Busch <kbusch@kernel.org>
14752 M:      Jens Axboe <axboe@fb.com>
14753 M:      Christoph Hellwig <hch@lst.de>
14754 M:      Sagi Grimberg <sagi@grimberg.me>
14755 L:      linux-nvme@lists.infradead.org
14756 S:      Supported
14757 W:      http://git.infradead.org/nvme.git
14758 T:      git://git.infradead.org/nvme.git
14759 F:      Documentation/nvme/
14760 F:      drivers/nvme/host/
14761 F:      drivers/nvme/common/
14762 F:      include/linux/nvme.h
14763 F:      include/linux/nvme-*.h
14764 F:      include/uapi/linux/nvme_ioctl.h
14765
14766 NVM EXPRESS FABRICS AUTHENTICATION
14767 M:      Hannes Reinecke <hare@suse.de>
14768 L:      linux-nvme@lists.infradead.org
14769 S:      Supported
14770 F:      drivers/nvme/host/auth.c
14771 F:      drivers/nvme/target/auth.c
14772 F:      drivers/nvme/target/fabrics-cmd-auth.c
14773 F:      include/linux/nvme-auth.h
14774
14775 NVM EXPRESS HARDWARE MONITORING SUPPORT
14776 M:      Guenter Roeck <linux@roeck-us.net>
14777 L:      linux-nvme@lists.infradead.org
14778 S:      Supported
14779 F:      drivers/nvme/host/hwmon.c
14780
14781 NVM EXPRESS FC TRANSPORT DRIVERS
14782 M:      James Smart <james.smart@broadcom.com>
14783 L:      linux-nvme@lists.infradead.org
14784 S:      Supported
14785 F:      drivers/nvme/host/fc.c
14786 F:      drivers/nvme/target/fc.c
14787 F:      drivers/nvme/target/fcloop.c
14788 F:      include/linux/nvme-fc-driver.h
14789 F:      include/linux/nvme-fc.h
14790
14791 NVM EXPRESS TARGET DRIVER
14792 M:      Christoph Hellwig <hch@lst.de>
14793 M:      Sagi Grimberg <sagi@grimberg.me>
14794 M:      Chaitanya Kulkarni <kch@nvidia.com>
14795 L:      linux-nvme@lists.infradead.org
14796 S:      Supported
14797 W:      http://git.infradead.org/nvme.git
14798 T:      git://git.infradead.org/nvme.git
14799 F:      drivers/nvme/target/
14800
14801 NVMEM FRAMEWORK
14802 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
14803 S:      Maintained
14804 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/srini/nvmem.git
14805 F:      Documentation/ABI/stable/sysfs-bus-nvmem
14806 F:      Documentation/devicetree/bindings/nvmem/
14807 F:      drivers/nvmem/
14808 F:      include/linux/nvmem-consumer.h
14809 F:      include/linux/nvmem-provider.h
14810
14811 NXP C45 TJA11XX PHY DRIVER
14812 M:      Radu Pirea <radu-nicolae.pirea@oss.nxp.com>
14813 L:      netdev@vger.kernel.org
14814 S:      Maintained
14815 F:      drivers/net/phy/nxp-c45-tja11xx.c
14816
14817 NXP FSPI DRIVER
14818 M:      Han Xu <han.xu@nxp.com>
14819 M:      Haibo Chen <haibo.chen@nxp.com>
14820 R:      Yogesh Gaur <yogeshgaur.83@gmail.com>
14821 L:      linux-spi@vger.kernel.org
14822 S:      Maintained
14823 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.yaml
14824 F:      drivers/spi/spi-nxp-fspi.c
14825
14826 NXP FXAS21002C DRIVER
14827 M:      Rui Miguel Silva <rmfrfs@gmail.com>
14828 L:      linux-iio@vger.kernel.org
14829 S:      Maintained
14830 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.yaml
14831 F:      drivers/iio/gyro/fxas21002c.h
14832 F:      drivers/iio/gyro/fxas21002c_core.c
14833 F:      drivers/iio/gyro/fxas21002c_i2c.c
14834 F:      drivers/iio/gyro/fxas21002c_spi.c
14835
14836 NXP i.MX CLOCK DRIVERS
14837 M:      Abel Vesa <abelvesa@kernel.org>
14838 L:      linux-clk@vger.kernel.org
14839 L:      linux-imx@nxp.com
14840 S:      Maintained
14841 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelvesa/linux.git clk/imx
14842 F:      Documentation/devicetree/bindings/clock/imx*
14843 F:      drivers/clk/imx/
14844 F:      include/dt-bindings/clock/imx*
14845
14846 NXP i.MX 8MQ DCSS DRIVER
14847 M:      Laurentiu Palcu <laurentiu.palcu@oss.nxp.com>
14848 R:      Lucas Stach <l.stach@pengutronix.de>
14849 L:      dri-devel@lists.freedesktop.org
14850 S:      Maintained
14851 F:      Documentation/devicetree/bindings/display/imx/nxp,imx8mq-dcss.yaml
14852 F:      drivers/gpu/drm/imx/dcss/
14853
14854 NXP i.MX 8QXP ADC DRIVER
14855 M:      Cai Huoqing <cai.huoqing@linux.dev>
14856 M:      Haibo Chen <haibo.chen@nxp.com>
14857 L:      linux-imx@nxp.com
14858 L:      linux-iio@vger.kernel.org
14859 S:      Maintained
14860 F:      Documentation/devicetree/bindings/iio/adc/nxp,imx8qxp-adc.yaml
14861 F:      drivers/iio/adc/imx8qxp-adc.c
14862
14863 NXP i.MX 7D/6SX/6UL AND VF610 ADC DRIVER
14864 M:      Haibo Chen <haibo.chen@nxp.com>
14865 L:      linux-iio@vger.kernel.org
14866 L:      linux-imx@nxp.com
14867 S:      Maintained
14868 F:      Documentation/devicetree/bindings/iio/adc/fsl,imx7d-adc.yaml
14869 F:      Documentation/devicetree/bindings/iio/adc/fsl,vf610-adc.yaml
14870 F:      drivers/iio/adc/imx7d_adc.c
14871 F:      drivers/iio/adc/vf610_adc.c
14872
14873 NXP PF8100/PF8121A/PF8200 PMIC REGULATOR DEVICE DRIVER
14874 M:      Jagan Teki <jagan@amarulasolutions.com>
14875 S:      Maintained
14876 F:      Documentation/devicetree/bindings/regulator/nxp,pf8x00-regulator.yaml
14877 F:      drivers/regulator/pf8x00-regulator.c
14878
14879 NXP PTN5150A CC LOGIC AND EXTCON DRIVER
14880 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
14881 L:      linux-kernel@vger.kernel.org
14882 S:      Maintained
14883 F:      Documentation/devicetree/bindings/extcon/extcon-ptn5150.yaml
14884 F:      drivers/extcon/extcon-ptn5150.c
14885
14886 NXP SGTL5000 DRIVER
14887 M:      Fabio Estevam <festevam@gmail.com>
14888 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14889 S:      Maintained
14890 F:      Documentation/devicetree/bindings/sound/sgtl5000.yaml
14891 F:      sound/soc/codecs/sgtl5000*
14892
14893 NXP SJA1105 ETHERNET SWITCH DRIVER
14894 M:      Vladimir Oltean <olteanv@gmail.com>
14895 L:      linux-kernel@vger.kernel.org
14896 S:      Maintained
14897 F:      drivers/net/dsa/sja1105
14898 F:      drivers/net/pcs/pcs-xpcs-nxp.c
14899
14900 NXP TDA998X DRM DRIVER
14901 M:      Russell King <linux@armlinux.org.uk>
14902 S:      Maintained
14903 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
14904 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
14905 F:      drivers/gpu/drm/i2c/tda998x_drv.c
14906 F:      include/drm/i2c/tda998x.h
14907 F:      include/dt-bindings/display/tda998x.h
14908 K:      "nxp,tda998x"
14909
14910 NXP TFA9879 DRIVER
14911 M:      Peter Rosin <peda@axentia.se>
14912 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14913 S:      Maintained
14914 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
14915 F:      sound/soc/codecs/tfa9879*
14916
14917 NXP/Goodix TFA989X (TFA1) DRIVER
14918 M:      Stephan Gerhold <stephan@gerhold.net>
14919 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14920 S:      Maintained
14921 F:      Documentation/devicetree/bindings/sound/nxp,tfa989x.yaml
14922 F:      sound/soc/codecs/tfa989x.c
14923
14924 NXP-NCI NFC DRIVER
14925 L:      linux-nfc@lists.01.org (subscribers-only)
14926 S:      Orphan
14927 F:      Documentation/devicetree/bindings/net/nfc/nxp,nci.yaml
14928 F:      drivers/nfc/nxp-nci
14929
14930 NXP i.MX 8MP DW100 V4L2 DRIVER
14931 M:      Xavier Roumegue <xavier.roumegue@oss.nxp.com>
14932 L:      linux-media@vger.kernel.org
14933 S:      Maintained
14934 F:      Documentation/devicetree/bindings/media/nxp,dw100.yaml
14935 F:      Documentation/userspace-api/media/drivers/dw100.rst
14936 F:      drivers/media/platform/nxp/dw100/
14937 F:      include/uapi/linux/dw100.h
14938
14939 NXP i.MX 8QXP/8QM JPEG V4L2 DRIVER
14940 M:      Mirela Rabulea <mirela.rabulea@nxp.com>
14941 R:      NXP Linux Team <linux-imx@nxp.com>
14942 L:      linux-media@vger.kernel.org
14943 S:      Maintained
14944 F:      Documentation/devicetree/bindings/media/nxp,imx8-jpeg.yaml
14945 F:      drivers/media/platform/nxp/imx-jpeg
14946
14947 NZXT-KRAKEN2 HARDWARE MONITORING DRIVER
14948 M:      Jonas Malaco <jonas@protocubo.io>
14949 L:      linux-hwmon@vger.kernel.org
14950 S:      Maintained
14951 F:      Documentation/hwmon/nzxt-kraken2.rst
14952 F:      drivers/hwmon/nzxt-kraken2.c
14953
14954 NZXT-SMART2 HARDWARE MONITORING DRIVER
14955 M:      Aleksandr Mezin <mezin.alexander@gmail.com>
14956 L:      linux-hwmon@vger.kernel.org
14957 S:      Maintained
14958 F:      Documentation/hwmon/nzxt-smart2.rst
14959 F:      drivers/hwmon/nzxt-smart2.c
14960
14961 OBJAGG
14962 M:      Jiri Pirko <jiri@nvidia.com>
14963 L:      netdev@vger.kernel.org
14964 S:      Supported
14965 F:      include/linux/objagg.h
14966 F:      lib/objagg.c
14967 F:      lib/test_objagg.c
14968
14969 OBJTOOL
14970 M:      Josh Poimboeuf <jpoimboe@kernel.org>
14971 M:      Peter Zijlstra <peterz@infradead.org>
14972 S:      Supported
14973 F:      tools/objtool/
14974 F:      include/linux/objtool.h
14975
14976 OCELOT ETHERNET SWITCH DRIVER
14977 M:      Vladimir Oltean <vladimir.oltean@nxp.com>
14978 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
14979 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
14980 M:      UNGLinuxDriver@microchip.com
14981 L:      netdev@vger.kernel.org
14982 S:      Supported
14983 F:      drivers/net/dsa/ocelot/*
14984 F:      drivers/net/ethernet/mscc/
14985 F:      include/soc/mscc/ocelot*
14986 F:      net/dsa/tag_ocelot.c
14987 F:      net/dsa/tag_ocelot_8021q.c
14988 F:      tools/testing/selftests/drivers/net/ocelot/*
14989
14990 OCELOT EXTERNAL SWITCH CONTROL
14991 M:      Colin Foster <colin.foster@in-advantage.com>
14992 S:      Supported
14993 F:      Documentation/devicetree/bindings/mfd/mscc,ocelot.yaml
14994 F:      drivers/mfd/ocelot*
14995 F:      include/linux/mfd/ocelot.h
14996
14997 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
14998 M:      Frederic Barrat <fbarrat@linux.ibm.com>
14999 M:      Andrew Donnellan <ajd@linux.ibm.com>
15000 L:      linuxppc-dev@lists.ozlabs.org
15001 S:      Supported
15002 F:      Documentation/userspace-api/accelerators/ocxl.rst
15003 F:      arch/powerpc/include/asm/pnv-ocxl.h
15004 F:      arch/powerpc/platforms/powernv/ocxl.c
15005 F:      drivers/misc/ocxl/
15006 F:      include/misc/ocxl*
15007 F:      include/uapi/misc/ocxl.h
15008
15009 OMAP AUDIO SUPPORT
15010 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
15011 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
15012 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15013 L:      linux-omap@vger.kernel.org
15014 S:      Maintained
15015 F:      sound/soc/ti/n810.c
15016 F:      sound/soc/ti/omap*
15017 F:      sound/soc/ti/rx51.c
15018 F:      sound/soc/ti/sdma-pcm.*
15019
15020 OMAP CLOCK FRAMEWORK SUPPORT
15021 M:      Paul Walmsley <paul@pwsan.com>
15022 L:      linux-omap@vger.kernel.org
15023 S:      Maintained
15024 F:      arch/arm/*omap*/*clock*
15025
15026 OMAP DEVICE TREE SUPPORT
15027 M:      Benoît Cousson <bcousson@baylibre.com>
15028 M:      Tony Lindgren <tony@atomide.com>
15029 L:      linux-omap@vger.kernel.org
15030 L:      devicetree@vger.kernel.org
15031 S:      Maintained
15032 F:      arch/arm/boot/dts/*am3*
15033 F:      arch/arm/boot/dts/*am4*
15034 F:      arch/arm/boot/dts/*am5*
15035 F:      arch/arm/boot/dts/*dra7*
15036 F:      arch/arm/boot/dts/*omap*
15037 F:      arch/arm/boot/dts/logicpd-som-lv*
15038 F:      arch/arm/boot/dts/logicpd-torpedo*
15039
15040 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
15041 L:      linux-omap@vger.kernel.org
15042 L:      linux-fbdev@vger.kernel.org
15043 S:      Orphan
15044 F:      Documentation/arm/omap/dss.rst
15045 F:      drivers/video/fbdev/omap2/
15046
15047 OMAP FRAMEBUFFER SUPPORT
15048 L:      linux-fbdev@vger.kernel.org
15049 L:      linux-omap@vger.kernel.org
15050 S:      Orphan
15051 F:      drivers/video/fbdev/omap/
15052
15053 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
15054 M:      Roger Quadros <rogerq@kernel.org>
15055 M:      Tony Lindgren <tony@atomide.com>
15056 L:      linux-omap@vger.kernel.org
15057 S:      Maintained
15058 F:      arch/arm/mach-omap2/*gpmc*
15059 F:      drivers/memory/omap-gpmc.c
15060
15061 OMAP GPIO DRIVER
15062 M:      Grygorii Strashko <grygorii.strashko@ti.com>
15063 M:      Santosh Shilimkar <ssantosh@kernel.org>
15064 M:      Kevin Hilman <khilman@kernel.org>
15065 L:      linux-omap@vger.kernel.org
15066 S:      Maintained
15067 F:      Documentation/devicetree/bindings/gpio/ti,omap-gpio.yaml
15068 F:      drivers/gpio/gpio-omap.c
15069
15070 OMAP HARDWARE SPINLOCK SUPPORT
15071 M:      Ohad Ben-Cohen <ohad@wizery.com>
15072 L:      linux-omap@vger.kernel.org
15073 S:      Maintained
15074 F:      drivers/hwspinlock/omap_hwspinlock.c
15075
15076 OMAP HS MMC SUPPORT
15077 L:      linux-mmc@vger.kernel.org
15078 L:      linux-omap@vger.kernel.org
15079 S:      Orphan
15080 F:      drivers/mmc/host/omap_hsmmc.c
15081
15082 OMAP HWMOD DATA
15083 M:      Paul Walmsley <paul@pwsan.com>
15084 L:      linux-omap@vger.kernel.org
15085 S:      Maintained
15086 F:      arch/arm/mach-omap2/omap_hwmod*data*
15087
15088 OMAP HWMOD SUPPORT
15089 M:      Benoît Cousson <bcousson@baylibre.com>
15090 M:      Paul Walmsley <paul@pwsan.com>
15091 L:      linux-omap@vger.kernel.org
15092 S:      Maintained
15093 F:      arch/arm/mach-omap2/omap_hwmod.*
15094
15095 OMAP I2C DRIVER
15096 M:      Vignesh R <vigneshr@ti.com>
15097 L:      linux-omap@vger.kernel.org
15098 L:      linux-i2c@vger.kernel.org
15099 S:      Maintained
15100 F:      Documentation/devicetree/bindings/i2c/ti,omap4-i2c.yaml
15101 F:      drivers/i2c/busses/i2c-omap.c
15102
15103 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
15104 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
15105 L:      linux-media@vger.kernel.org
15106 S:      Maintained
15107 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
15108 F:      drivers/media/platform/ti/omap3isp/
15109 F:      drivers/staging/media/omap4iss/
15110
15111 OMAP MMC SUPPORT
15112 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
15113 L:      linux-omap@vger.kernel.org
15114 S:      Odd Fixes
15115 F:      drivers/mmc/host/omap.c
15116
15117 OMAP POWER MANAGEMENT SUPPORT
15118 M:      Kevin Hilman <khilman@kernel.org>
15119 L:      linux-omap@vger.kernel.org
15120 S:      Maintained
15121 F:      arch/arm/*omap*/*pm*
15122 F:      drivers/cpufreq/omap-cpufreq.c
15123
15124 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
15125 M:      Paul Walmsley <paul@pwsan.com>
15126 L:      linux-omap@vger.kernel.org
15127 S:      Maintained
15128 F:      arch/arm/mach-omap2/prm*
15129
15130 OMAP RANDOM NUMBER GENERATOR SUPPORT
15131 M:      Deepak Saxena <dsaxena@plexity.net>
15132 S:      Maintained
15133 F:      drivers/char/hw_random/omap-rng.c
15134
15135 OMAP USB SUPPORT
15136 L:      linux-usb@vger.kernel.org
15137 L:      linux-omap@vger.kernel.org
15138 S:      Orphan
15139 F:      arch/arm/*omap*/usb*
15140 F:      drivers/usb/*/*omap*
15141
15142 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
15143 M:      Mark Jackson <mpfj@newflow.co.uk>
15144 L:      linux-omap@vger.kernel.org
15145 S:      Maintained
15146 F:      arch/arm/boot/dts/am335x-nano.dts
15147
15148 OMAP1 SUPPORT
15149 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
15150 M:      Janusz Krzysztofik <jmkrzyszt@gmail.com>
15151 M:      Tony Lindgren <tony@atomide.com>
15152 L:      linux-omap@vger.kernel.org
15153 S:      Maintained
15154 Q:      http://patchwork.kernel.org/project/linux-omap/list/
15155 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
15156 F:      arch/arm/configs/omap1_defconfig
15157 F:      arch/arm/mach-omap1/
15158 F:      drivers/i2c/busses/i2c-omap.c
15159 F:      include/linux/platform_data/ams-delta-fiq.h
15160 F:      include/linux/platform_data/i2c-omap.h
15161
15162 OMAP2+ SUPPORT
15163 M:      Tony Lindgren <tony@atomide.com>
15164 L:      linux-omap@vger.kernel.org
15165 S:      Maintained
15166 W:      http://www.muru.com/linux/omap/
15167 W:      http://linux.omap.com/
15168 Q:      http://patchwork.kernel.org/project/linux-omap/list/
15169 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
15170 F:      arch/arm/configs/omap2plus_defconfig
15171 F:      arch/arm/mach-omap2/
15172 F:      drivers/bus/ti-sysc.c
15173 F:      drivers/i2c/busses/i2c-omap.c
15174 F:      drivers/irqchip/irq-omap-intc.c
15175 F:      drivers/mfd/*omap*.c
15176 F:      drivers/mfd/menelaus.c
15177 F:      drivers/mfd/palmas.c
15178 F:      drivers/mfd/tps65217.c
15179 F:      drivers/mfd/tps65218.c
15180 F:      drivers/mfd/tps65219.c
15181 F:      drivers/mfd/tps65910.c
15182 F:      drivers/mfd/twl-core.[ch]
15183 F:      drivers/mfd/twl4030*.c
15184 F:      drivers/mfd/twl6030*.c
15185 F:      drivers/mfd/twl6040*.c
15186 F:      drivers/regulator/palmas-regulator*.c
15187 F:      drivers/regulator/pbias-regulator.c
15188 F:      drivers/regulator/tps65217-regulator.c
15189 F:      drivers/regulator/tps65218-regulator.c
15190 F:      drivers/regulator/tps65219-regulator.c
15191 F:      drivers/regulator/tps65910-regulator.c
15192 F:      drivers/regulator/twl-regulator.c
15193 F:      drivers/regulator/twl6030-regulator.c
15194 F:      include/linux/platform_data/i2c-omap.h
15195 F:      include/linux/platform_data/ti-sysc.h
15196
15197 OMFS FILESYSTEM
15198 M:      Bob Copeland <me@bobcopeland.com>
15199 L:      linux-karma-devel@lists.sourceforge.net
15200 S:      Maintained
15201 F:      Documentation/filesystems/omfs.rst
15202 F:      fs/omfs/
15203
15204 OMNIKEY CARDMAN 4000 DRIVER
15205 M:      Harald Welte <laforge@gnumonks.org>
15206 S:      Maintained
15207 F:      drivers/char/pcmcia/cm4000_cs.c
15208 F:      include/linux/cm4000_cs.h
15209 F:      include/uapi/linux/cm4000_cs.h
15210
15211 OMNIKEY CARDMAN 4040 DRIVER
15212 M:      Harald Welte <laforge@gnumonks.org>
15213 S:      Maintained
15214 F:      drivers/char/pcmcia/cm4040_cs.*
15215
15216 OMNIVISION OG01A1B SENSOR DRIVER
15217 M:      Shawn Tu <shawnx.tu@intel.com>
15218 L:      linux-media@vger.kernel.org
15219 S:      Maintained
15220 F:      drivers/media/i2c/og01a1b.c
15221
15222 OMNIVISION OV02A10 SENSOR DRIVER
15223 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
15224 L:      linux-media@vger.kernel.org
15225 S:      Maintained
15226 T:      git git://linuxtv.org/media_tree.git
15227 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov02a10.yaml
15228 F:      drivers/media/i2c/ov02a10.c
15229
15230 OMNIVISION OV08D10 SENSOR DRIVER
15231 M:      Jimmy Su <jimmy.su@intel.com>
15232 L:      linux-media@vger.kernel.org
15233 S:      Maintained
15234 T:      git git://linuxtv.org/media_tree.git
15235 F:      drivers/media/i2c/ov08d10.c
15236
15237 OMNIVISION OV08X40 SENSOR DRIVER
15238 M:      Jason Chen <jason.z.chen@intel.com>
15239 L:      linux-media@vger.kernel.org
15240 S:      Maintained
15241 T:      git git://linuxtv.org/media_tree.git
15242 F:      drivers/media/i2c/ov08x40.c
15243
15244 OMNIVISION OV13858 SENSOR DRIVER
15245 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
15246 L:      linux-media@vger.kernel.org
15247 S:      Maintained
15248 T:      git git://linuxtv.org/media_tree.git
15249 F:      drivers/media/i2c/ov13858.c
15250
15251 OMNIVISION OV13B10 SENSOR DRIVER
15252 M:      Arec Kao <arec.kao@intel.com>
15253 L:      linux-media@vger.kernel.org
15254 S:      Maintained
15255 T:      git git://linuxtv.org/media_tree.git
15256 F:      drivers/media/i2c/ov13b10.c
15257
15258 OMNIVISION OV2680 SENSOR DRIVER
15259 M:      Rui Miguel Silva <rmfrfs@gmail.com>
15260 L:      linux-media@vger.kernel.org
15261 S:      Maintained
15262 T:      git git://linuxtv.org/media_tree.git
15263 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov2680.yaml
15264 F:      drivers/media/i2c/ov2680.c
15265
15266 OMNIVISION OV2685 SENSOR DRIVER
15267 M:      Shunqian Zheng <zhengsq@rock-chips.com>
15268 L:      linux-media@vger.kernel.org
15269 S:      Maintained
15270 T:      git git://linuxtv.org/media_tree.git
15271 F:      drivers/media/i2c/ov2685.c
15272
15273 OMNIVISION OV2740 SENSOR DRIVER
15274 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
15275 R:      Shawn Tu <shawnx.tu@intel.com>
15276 R:      Bingbu Cao <bingbu.cao@intel.com>
15277 L:      linux-media@vger.kernel.org
15278 S:      Maintained
15279 T:      git git://linuxtv.org/media_tree.git
15280 F:      drivers/media/i2c/ov2740.c
15281
15282 OMNIVISION OV4689 SENSOR DRIVER
15283 M:      Mikhail Rudenko <mike.rudenko@gmail.com>
15284 L:      linux-media@vger.kernel.org
15285 S:      Maintained
15286 T:      git git://linuxtv.org/media_tree.git
15287 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov4689.yaml
15288 F:      drivers/media/i2c/ov5647.c
15289
15290 OMNIVISION OV5640 SENSOR DRIVER
15291 M:      Steve Longerbeam <slongerbeam@gmail.com>
15292 L:      linux-media@vger.kernel.org
15293 S:      Maintained
15294 T:      git git://linuxtv.org/media_tree.git
15295 F:      drivers/media/i2c/ov5640.c
15296
15297 OMNIVISION OV5647 SENSOR DRIVER
15298 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
15299 M:      Jacopo Mondi <jacopo@jmondi.org>
15300 L:      linux-media@vger.kernel.org
15301 S:      Maintained
15302 T:      git git://linuxtv.org/media_tree.git
15303 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5647.yaml
15304 F:      drivers/media/i2c/ov5647.c
15305
15306 OMNIVISION OV5670 SENSOR DRIVER
15307 M:      Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
15308 L:      linux-media@vger.kernel.org
15309 S:      Maintained
15310 T:      git git://linuxtv.org/media_tree.git
15311 F:      drivers/media/i2c/ov5670.c
15312
15313 OMNIVISION OV5675 SENSOR DRIVER
15314 M:      Shawn Tu <shawnx.tu@intel.com>
15315 L:      linux-media@vger.kernel.org
15316 S:      Maintained
15317 T:      git git://linuxtv.org/media_tree.git
15318 F:      drivers/media/i2c/ov5675.c
15319
15320 OMNIVISION OV5693 SENSOR DRIVER
15321 M:      Daniel Scally <djrscally@gmail.com>
15322 L:      linux-media@vger.kernel.org
15323 S:      Maintained
15324 T:      git git://linuxtv.org/media_tree.git
15325 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5693.yaml
15326 F:      drivers/media/i2c/ov5693.c
15327
15328 OMNIVISION OV5695 SENSOR DRIVER
15329 M:      Shunqian Zheng <zhengsq@rock-chips.com>
15330 L:      linux-media@vger.kernel.org
15331 S:      Maintained
15332 T:      git git://linuxtv.org/media_tree.git
15333 F:      drivers/media/i2c/ov5695.c
15334
15335 OMNIVISION OV7670 SENSOR DRIVER
15336 L:      linux-media@vger.kernel.org
15337 S:      Orphan
15338 T:      git git://linuxtv.org/media_tree.git
15339 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
15340 F:      drivers/media/i2c/ov7670.c
15341
15342 OMNIVISION OV772x SENSOR DRIVER
15343 M:      Jacopo Mondi <jacopo@jmondi.org>
15344 L:      linux-media@vger.kernel.org
15345 S:      Odd fixes
15346 T:      git git://linuxtv.org/media_tree.git
15347 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov772x.yaml
15348 F:      drivers/media/i2c/ov772x.c
15349 F:      include/media/i2c/ov772x.h
15350
15351 OMNIVISION OV7740 SENSOR DRIVER
15352 M:      Wenyou Yang <wenyou.yang@microchip.com>
15353 L:      linux-media@vger.kernel.org
15354 S:      Maintained
15355 T:      git git://linuxtv.org/media_tree.git
15356 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
15357 F:      drivers/media/i2c/ov7740.c
15358
15359 OMNIVISION OV8856 SENSOR DRIVER
15360 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
15361 L:      linux-media@vger.kernel.org
15362 S:      Maintained
15363 T:      git git://linuxtv.org/media_tree.git
15364 F:      Documentation/devicetree/bindings/media/i2c/ov8856.yaml
15365 F:      drivers/media/i2c/ov8856.c
15366
15367 OMNIVISION OV9282 SENSOR DRIVER
15368 M:      Paul J. Murphy <paul.j.murphy@intel.com>
15369 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
15370 L:      linux-media@vger.kernel.org
15371 S:      Maintained
15372 T:      git git://linuxtv.org/media_tree.git
15373 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov9282.yaml
15374 F:      drivers/media/i2c/ov9282.c
15375
15376 OMNIVISION OV9640 SENSOR DRIVER
15377 M:      Petr Cvek <petrcvekcz@gmail.com>
15378 L:      linux-media@vger.kernel.org
15379 S:      Maintained
15380 F:      drivers/media/i2c/ov9640.*
15381
15382 OMNIVISION OV9650 SENSOR DRIVER
15383 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
15384 R:      Akinobu Mita <akinobu.mita@gmail.com>
15385 R:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15386 L:      linux-media@vger.kernel.org
15387 S:      Maintained
15388 T:      git git://linuxtv.org/media_tree.git
15389 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
15390 F:      drivers/media/i2c/ov9650.c
15391
15392 OMNIVISION OV9734 SENSOR DRIVER
15393 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
15394 R:      Bingbu Cao <bingbu.cao@intel.com>
15395 L:      linux-media@vger.kernel.org
15396 S:      Maintained
15397 T:      git git://linuxtv.org/media_tree.git
15398 F:      drivers/media/i2c/ov9734.c
15399
15400 ONBOARD USB HUB DRIVER
15401 M:      Matthias Kaehlcke <mka@chromium.org>
15402 L:      linux-usb@vger.kernel.org
15403 S:      Maintained
15404 F:      Documentation/ABI/testing/sysfs-bus-platform-onboard-usb-hub
15405 F:      drivers/usb/misc/onboard_usb_hub.c
15406
15407 ONENAND FLASH DRIVER
15408 M:      Kyungmin Park <kyungmin.park@samsung.com>
15409 L:      linux-mtd@lists.infradead.org
15410 S:      Maintained
15411 F:      drivers/mtd/nand/onenand/
15412 F:      include/linux/mtd/onenand*.h
15413
15414 ONEXPLAYER FAN DRIVER
15415 M:      Joaquín Ignacio Aramendía <samsagax@gmail.com>
15416 L:      linux-hwmon@vger.kernel.org
15417 S:      Maintained
15418 F:      drivers/hwmon/oxp-sensors.c
15419
15420 ONION OMEGA2+ BOARD
15421 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
15422 L:      linux-mips@vger.kernel.org
15423 S:      Maintained
15424 F:      arch/mips/boot/dts/ralink/omega2p.dts
15425
15426 OP-TEE DRIVER
15427 M:      Jens Wiklander <jens.wiklander@linaro.org>
15428 L:      op-tee@lists.trustedfirmware.org
15429 S:      Maintained
15430 F:      Documentation/ABI/testing/sysfs-bus-optee-devices
15431 F:      drivers/tee/optee/
15432
15433 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
15434 M:      Sumit Garg <sumit.garg@linaro.org>
15435 L:      op-tee@lists.trustedfirmware.org
15436 S:      Maintained
15437 F:      drivers/char/hw_random/optee-rng.c
15438
15439 OP-TEE RTC DRIVER
15440 M:      Clément Léger <clement.leger@bootlin.com>
15441 L:      linux-rtc@vger.kernel.org
15442 S:      Maintained
15443 F:      drivers/rtc/rtc-optee.c
15444
15445 OPA-VNIC DRIVER
15446 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
15447 L:      linux-rdma@vger.kernel.org
15448 S:      Supported
15449 F:      drivers/infiniband/ulp/opa_vnic
15450
15451 OPEN FIRMWARE AND FLATTENED DEVICE TREE
15452 M:      Rob Herring <robh+dt@kernel.org>
15453 M:      Frank Rowand <frowand.list@gmail.com>
15454 L:      devicetree@vger.kernel.org
15455 S:      Maintained
15456 C:      irc://irc.libera.chat/devicetree
15457 W:      http://www.devicetree.org/
15458 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
15459 F:      Documentation/ABI/testing/sysfs-firmware-ofw
15460 F:      drivers/of/
15461 F:      include/linux/of*.h
15462 F:      scripts/dtc/
15463 K:      of_overlay_notifier_
15464 K:      of_overlay_fdt_apply
15465 K:      of_overlay_remove
15466
15467 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
15468 M:      Rob Herring <robh+dt@kernel.org>
15469 M:      Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>
15470 L:      devicetree@vger.kernel.org
15471 S:      Maintained
15472 C:      irc://irc.libera.chat/devicetree
15473 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
15474 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
15475 F:      Documentation/devicetree/
15476 F:      arch/*/boot/dts/
15477 F:      include/dt-bindings/
15478
15479 OPENCOMPUTE PTP CLOCK DRIVER
15480 M:      Jonathan Lemon <jonathan.lemon@gmail.com>
15481 M:      Vadim Fedorenko <vadfed@fb.com>
15482 L:      netdev@vger.kernel.org
15483 S:      Maintained
15484 F:      drivers/ptp/ptp_ocp.c
15485
15486 OPENCORES I2C BUS DRIVER
15487 M:      Peter Korsgaard <peter@korsgaard.com>
15488 M:      Andrew Lunn <andrew@lunn.ch>
15489 L:      linux-i2c@vger.kernel.org
15490 S:      Maintained
15491 F:      Documentation/devicetree/bindings/i2c/opencores,i2c-ocores.yaml
15492 F:      Documentation/i2c/busses/i2c-ocores.rst
15493 F:      drivers/i2c/busses/i2c-ocores.c
15494 F:      include/linux/platform_data/i2c-ocores.h
15495
15496 OPENRISC ARCHITECTURE
15497 M:      Jonas Bonn <jonas@southpole.se>
15498 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
15499 M:      Stafford Horne <shorne@gmail.com>
15500 L:      linux-openrisc@vger.kernel.org
15501 S:      Maintained
15502 W:      http://openrisc.io
15503 T:      git https://github.com/openrisc/linux.git
15504 F:      Documentation/devicetree/bindings/openrisc/
15505 F:      Documentation/openrisc/
15506 F:      arch/openrisc/
15507 F:      drivers/irqchip/irq-ompic.c
15508 F:      drivers/irqchip/irq-or1k-*
15509
15510 OPENVSWITCH
15511 M:      Pravin B Shelar <pshelar@ovn.org>
15512 L:      netdev@vger.kernel.org
15513 L:      dev@openvswitch.org
15514 S:      Maintained
15515 W:      http://openvswitch.org
15516 F:      include/uapi/linux/openvswitch.h
15517 F:      net/openvswitch/
15518 F:      tools/testing/selftests/net/openvswitch/
15519
15520 OPERATING PERFORMANCE POINTS (OPP)
15521 M:      Viresh Kumar <vireshk@kernel.org>
15522 M:      Nishanth Menon <nm@ti.com>
15523 M:      Stephen Boyd <sboyd@kernel.org>
15524 L:      linux-pm@vger.kernel.org
15525 S:      Maintained
15526 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
15527 F:      Documentation/devicetree/bindings/opp/
15528 F:      Documentation/power/opp.rst
15529 F:      drivers/opp/
15530 F:      include/linux/pm_opp.h
15531
15532 OPL4 DRIVER
15533 M:      Clemens Ladisch <clemens@ladisch.de>
15534 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15535 S:      Maintained
15536 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
15537 F:      sound/drivers/opl4/
15538
15539 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
15540 M:      Mark Fasheh <mark@fasheh.com>
15541 M:      Joel Becker <jlbec@evilplan.org>
15542 M:      Joseph Qi <joseph.qi@linux.alibaba.com>
15543 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
15544 S:      Supported
15545 W:      http://ocfs2.wiki.kernel.org
15546 F:      Documentation/filesystems/dlmfs.rst
15547 F:      Documentation/filesystems/ocfs2.rst
15548 F:      fs/ocfs2/
15549
15550 ORANGEFS FILESYSTEM
15551 M:      Mike Marshall <hubcap@omnibond.com>
15552 R:      Martin Brandenburg <martin@omnibond.com>
15553 L:      devel@lists.orangefs.org
15554 S:      Supported
15555 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
15556 F:      Documentation/filesystems/orangefs.rst
15557 F:      fs/orangefs/
15558
15559 ORINOCO DRIVER
15560 L:      linux-wireless@vger.kernel.org
15561 S:      Orphan
15562 W:      https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
15563 W:      http://www.nongnu.org/orinoco/
15564 F:      drivers/net/wireless/intersil/orinoco/
15565
15566 OV2659 OMNIVISION SENSOR DRIVER
15567 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
15568 L:      linux-media@vger.kernel.org
15569 S:      Maintained
15570 W:      https://linuxtv.org
15571 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15572 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
15573 F:      drivers/media/i2c/ov2659.c
15574 F:      include/media/i2c/ov2659.h
15575
15576 OVERLAY FILESYSTEM
15577 M:      Miklos Szeredi <miklos@szeredi.hu>
15578 L:      linux-unionfs@vger.kernel.org
15579 S:      Supported
15580 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
15581 F:      Documentation/filesystems/overlayfs.rst
15582 F:      fs/overlayfs/
15583
15584 P54 WIRELESS DRIVER
15585 M:      Christian Lamparter <chunkeey@googlemail.com>
15586 L:      linux-wireless@vger.kernel.org
15587 S:      Maintained
15588 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
15589 F:      drivers/net/wireless/intersil/p54/
15590
15591 PACKET SOCKETS
15592 M:      Willem de Bruijn <willemdebruijn.kernel@gmail.com>
15593 S:      Maintained
15594 F:      include/uapi/linux/if_packet.h
15595 F:      net/packet/af_packet.c
15596
15597 PACKING
15598 M:      Vladimir Oltean <olteanv@gmail.com>
15599 L:      netdev@vger.kernel.org
15600 S:      Supported
15601 F:      Documentation/core-api/packing.rst
15602 F:      include/linux/packing.h
15603 F:      lib/packing.c
15604
15605 PADATA PARALLEL EXECUTION MECHANISM
15606 M:      Steffen Klassert <steffen.klassert@secunet.com>
15607 M:      Daniel Jordan <daniel.m.jordan@oracle.com>
15608 L:      linux-crypto@vger.kernel.org
15609 L:      linux-kernel@vger.kernel.org
15610 S:      Maintained
15611 F:      Documentation/core-api/padata.rst
15612 F:      include/linux/padata.h
15613 F:      kernel/padata.c
15614
15615 PAGE CACHE
15616 M:      Matthew Wilcox (Oracle) <willy@infradead.org>
15617 L:      linux-fsdevel@vger.kernel.org
15618 S:      Supported
15619 T:      git git://git.infradead.org/users/willy/pagecache.git
15620 F:      Documentation/filesystems/locking.rst
15621 F:      Documentation/filesystems/vfs.rst
15622 F:      include/linux/pagemap.h
15623 F:      mm/filemap.c
15624 F:      mm/page-writeback.c
15625 F:      mm/readahead.c
15626 F:      mm/truncate.c
15627
15628 PAGE POOL
15629 M:      Jesper Dangaard Brouer <hawk@kernel.org>
15630 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
15631 L:      netdev@vger.kernel.org
15632 S:      Supported
15633 F:      Documentation/networking/page_pool.rst
15634 F:      include/net/page_pool.h
15635 F:      include/trace/events/page_pool.h
15636 F:      net/core/page_pool.c
15637
15638 PAGE TABLE CHECK
15639 M:      Pasha Tatashin <pasha.tatashin@soleen.com>
15640 M:      Andrew Morton <akpm@linux-foundation.org>
15641 L:      linux-mm@kvack.org
15642 S:      Maintained
15643 F:      Documentation/mm/page_table_check.rst
15644 F:      include/linux/page_table_check.h
15645 F:      mm/page_table_check.c
15646
15647 PANASONIC LAPTOP ACPI EXTRAS DRIVER
15648 M:      Kenneth Chan <kenneth.t.chan@gmail.com>
15649 L:      platform-driver-x86@vger.kernel.org
15650 S:      Maintained
15651 F:      drivers/platform/x86/panasonic-laptop.c
15652
15653 PARALLAX PING IIO SENSOR DRIVER
15654 M:      Andreas Klinger <ak@it-klinger.de>
15655 L:      linux-iio@vger.kernel.org
15656 S:      Maintained
15657 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
15658 F:      drivers/iio/proximity/ping.c
15659
15660 PARALLEL LCD/KEYPAD PANEL DRIVER
15661 M:      Willy Tarreau <willy@haproxy.com>
15662 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
15663 S:      Odd Fixes
15664 F:      Documentation/admin-guide/lcd-panel-cgram.rst
15665 F:      drivers/auxdisplay/panel.c
15666
15667 PARALLEL PORT SUBSYSTEM
15668 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
15669 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
15670 L:      linux-parport@lists.infradead.org (subscribers-only)
15671 S:      Maintained
15672 F:      Documentation/driver-api/parport*.rst
15673 F:      drivers/char/ppdev.c
15674 F:      drivers/parport/
15675 F:      include/linux/parport*.h
15676 F:      include/uapi/linux/ppdev.h
15677
15678 PARAVIRT_OPS INTERFACE
15679 M:      Juergen Gross <jgross@suse.com>
15680 M:      Srivatsa S. Bhat (VMware) <srivatsa@csail.mit.edu>
15681 R:      Alexey Makhalov <amakhalov@vmware.com>
15682 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
15683 L:      virtualization@lists.linux-foundation.org
15684 L:      x86@kernel.org
15685 S:      Supported
15686 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
15687 F:      Documentation/virt/paravirt_ops.rst
15688 F:      arch/*/include/asm/paravirt*.h
15689 F:      arch/*/kernel/paravirt*
15690 F:      include/linux/hypervisor.h
15691
15692 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
15693 M:      Tim Waugh <tim@cyberelk.net>
15694 L:      linux-parport@lists.infradead.org (subscribers-only)
15695 S:      Maintained
15696 F:      Documentation/admin-guide/blockdev/paride.rst
15697 F:      drivers/block/paride/
15698
15699 PARISC ARCHITECTURE
15700 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
15701 M:      Helge Deller <deller@gmx.de>
15702 L:      linux-parisc@vger.kernel.org
15703 S:      Maintained
15704 W:      https://parisc.wiki.kernel.org
15705 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
15706 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
15707 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
15708 F:      Documentation/parisc/
15709 F:      arch/parisc/
15710 F:      drivers/char/agp/parisc-agp.c
15711 F:      drivers/input/misc/hp_sdc_rtc.c
15712 F:      drivers/input/serio/gscps2.c
15713 F:      drivers/input/serio/hp_sdc*
15714 F:      drivers/parisc/
15715 F:      drivers/parport/parport_gsc.*
15716 F:      drivers/tty/serial/8250/8250_parisc.c
15717 F:      drivers/video/console/sti*
15718 F:      drivers/video/fbdev/sti*
15719 F:      drivers/video/logo/logo_parisc*
15720 F:      include/linux/hp_sdc.h
15721
15722 PARMAN
15723 M:      Jiri Pirko <jiri@nvidia.com>
15724 L:      netdev@vger.kernel.org
15725 S:      Supported
15726 F:      include/linux/parman.h
15727 F:      lib/parman.c
15728 F:      lib/test_parman.c
15729
15730 PC ENGINES APU BOARD DRIVER
15731 M:      Enrico Weigelt, metux IT consult <info@metux.net>
15732 S:      Maintained
15733 F:      drivers/platform/x86/pcengines-apuv2.c
15734
15735 PC87360 HARDWARE MONITORING DRIVER
15736 M:      Jim Cromie <jim.cromie@gmail.com>
15737 L:      linux-hwmon@vger.kernel.org
15738 S:      Maintained
15739 F:      Documentation/hwmon/pc87360.rst
15740 F:      drivers/hwmon/pc87360.c
15741
15742 PC8736x GPIO DRIVER
15743 M:      Jim Cromie <jim.cromie@gmail.com>
15744 S:      Maintained
15745 F:      drivers/char/pc8736x_gpio.c
15746
15747 PC87427 HARDWARE MONITORING DRIVER
15748 M:      Jean Delvare <jdelvare@suse.com>
15749 L:      linux-hwmon@vger.kernel.org
15750 S:      Maintained
15751 F:      Documentation/hwmon/pc87427.rst
15752 F:      drivers/hwmon/pc87427.c
15753
15754 PCA9532 LED DRIVER
15755 M:      Riku Voipio <riku.voipio@iki.fi>
15756 S:      Maintained
15757 F:      drivers/leds/leds-pca9532.c
15758 F:      include/linux/leds-pca9532.h
15759
15760 PCA9541 I2C BUS MASTER SELECTOR DRIVER
15761 M:      Guenter Roeck <linux@roeck-us.net>
15762 L:      linux-i2c@vger.kernel.org
15763 S:      Maintained
15764 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
15765
15766 PCDP - PRIMARY CONSOLE AND DEBUG PORT
15767 M:      Khalid Aziz <khalid@gonehiking.org>
15768 S:      Maintained
15769 F:      drivers/firmware/pcdp.*
15770
15771 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
15772 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
15773 M:      Pali Rohár <pali@kernel.org>
15774 L:      linux-pci@vger.kernel.org
15775 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15776 S:      Maintained
15777 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
15778 F:      drivers/pci/controller/pci-aardvark.c
15779
15780 PCI DRIVER FOR ALTERA PCIE IP
15781 M:      Joyce Ooi <joyce.ooi@intel.com>
15782 L:      linux-pci@vger.kernel.org
15783 S:      Supported
15784 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
15785 F:      drivers/pci/controller/pcie-altera.c
15786
15787 PCI DRIVER FOR APPLIEDMICRO XGENE
15788 M:      Toan Le <toan@os.amperecomputing.com>
15789 L:      linux-pci@vger.kernel.org
15790 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15791 S:      Maintained
15792 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
15793 F:      drivers/pci/controller/pci-xgene.c
15794
15795 PCI DRIVER FOR ARM VERSATILE PLATFORM
15796 M:      Rob Herring <robh@kernel.org>
15797 L:      linux-pci@vger.kernel.org
15798 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15799 S:      Maintained
15800 F:      Documentation/devicetree/bindings/pci/versatile.yaml
15801 F:      drivers/pci/controller/pci-versatile.c
15802
15803 PCI DRIVER FOR ARMADA 8K
15804 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
15805 L:      linux-pci@vger.kernel.org
15806 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15807 S:      Maintained
15808 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
15809 F:      drivers/pci/controller/dwc/pcie-armada8k.c
15810
15811 PCI DRIVER FOR CADENCE PCIE IP
15812 M:      Tom Joseph <tjoseph@cadence.com>
15813 L:      linux-pci@vger.kernel.org
15814 S:      Maintained
15815 F:      Documentation/devicetree/bindings/pci/cdns,*
15816 F:      drivers/pci/controller/cadence/
15817
15818 PCI DRIVER FOR FREESCALE LAYERSCAPE
15819 M:      Minghuan Lian <minghuan.Lian@nxp.com>
15820 M:      Mingkai Hu <mingkai.hu@nxp.com>
15821 M:      Roy Zang <roy.zang@nxp.com>
15822 L:      linuxppc-dev@lists.ozlabs.org
15823 L:      linux-pci@vger.kernel.org
15824 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15825 S:      Maintained
15826 F:      drivers/pci/controller/dwc/*layerscape*
15827
15828 PCI DRIVER FOR GENERIC OF HOSTS
15829 M:      Will Deacon <will@kernel.org>
15830 L:      linux-pci@vger.kernel.org
15831 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15832 S:      Maintained
15833 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
15834 F:      drivers/pci/controller/pci-host-common.c
15835 F:      drivers/pci/controller/pci-host-generic.c
15836
15837 PCI DRIVER FOR IMX6
15838 M:      Richard Zhu <hongxing.zhu@nxp.com>
15839 M:      Lucas Stach <l.stach@pengutronix.de>
15840 L:      linux-pci@vger.kernel.org
15841 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15842 S:      Maintained
15843 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.yaml
15844 F:      drivers/pci/controller/dwc/*imx6*
15845
15846 PCI DRIVER FOR FU740
15847 M:      Paul Walmsley <paul.walmsley@sifive.com>
15848 M:      Greentime Hu <greentime.hu@sifive.com>
15849 L:      linux-pci@vger.kernel.org
15850 S:      Maintained
15851 F:      Documentation/devicetree/bindings/pci/sifive,fu740-pcie.yaml
15852 F:      drivers/pci/controller/dwc/pcie-fu740.c
15853
15854 PCI DRIVER FOR INTEL IXP4XX
15855 M:      Linus Walleij <linus.walleij@linaro.org>
15856 S:      Maintained
15857 F:      Documentation/devicetree/bindings/pci/intel,ixp4xx-pci.yaml
15858 F:      drivers/pci/controller/pci-ixp4xx.c
15859
15860 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
15861 M:      Nirmal Patel <nirmal.patel@linux.intel.com>
15862 R:      Jonathan Derrick <jonathan.derrick@linux.dev>
15863 L:      linux-pci@vger.kernel.org
15864 S:      Supported
15865 F:      drivers/pci/controller/vmd.c
15866
15867 PCI DRIVER FOR MICROSEMI SWITCHTEC
15868 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
15869 M:      Logan Gunthorpe <logang@deltatee.com>
15870 L:      linux-pci@vger.kernel.org
15871 S:      Maintained
15872 F:      Documentation/ABI/testing/sysfs-class-switchtec
15873 F:      Documentation/driver-api/switchtec.rst
15874 F:      drivers/ntb/hw/mscc/
15875 F:      drivers/pci/switch/switchtec*
15876 F:      include/linux/switchtec.h
15877 F:      include/uapi/linux/switchtec_ioctl.h
15878
15879 PCI DRIVER FOR MOBIVEIL PCIE IP
15880 M:      Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
15881 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
15882 L:      linux-pci@vger.kernel.org
15883 S:      Supported
15884 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
15885 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
15886
15887 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
15888 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
15889 M:      Pali Rohár <pali@kernel.org>
15890 L:      linux-pci@vger.kernel.org
15891 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15892 S:      Maintained
15893 F:      drivers/pci/controller/*mvebu*
15894
15895 PCI DRIVER FOR NVIDIA TEGRA
15896 M:      Thierry Reding <thierry.reding@gmail.com>
15897 L:      linux-tegra@vger.kernel.org
15898 L:      linux-pci@vger.kernel.org
15899 S:      Supported
15900 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
15901 F:      drivers/pci/controller/pci-tegra.c
15902
15903 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
15904 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
15905 L:      linux-pci@vger.kernel.org
15906 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15907 S:      Maintained
15908 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
15909 F:      drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
15910
15911 PCI DRIVER FOR RENESAS R-CAR
15912 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
15913 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
15914 L:      linux-pci@vger.kernel.org
15915 L:      linux-renesas-soc@vger.kernel.org
15916 S:      Maintained
15917 F:      Documentation/devicetree/bindings/pci/*rcar*
15918 F:      drivers/pci/controller/*rcar*
15919
15920 PCI DRIVER FOR SAMSUNG EXYNOS
15921 M:      Jingoo Han <jingoohan1@gmail.com>
15922 L:      linux-pci@vger.kernel.org
15923 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15924 L:      linux-samsung-soc@vger.kernel.org
15925 S:      Maintained
15926 F:      drivers/pci/controller/dwc/pci-exynos.c
15927
15928 PCI DRIVER FOR SYNOPSYS DESIGNWARE
15929 M:      Jingoo Han <jingoohan1@gmail.com>
15930 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
15931 L:      linux-pci@vger.kernel.org
15932 S:      Maintained
15933 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie.yaml
15934 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie-ep.yaml
15935 F:      drivers/pci/controller/dwc/*designware*
15936
15937 PCI DRIVER FOR TI DRA7XX/J721E
15938 M:      Vignesh Raghavendra <vigneshr@ti.com>
15939 L:      linux-omap@vger.kernel.org
15940 L:      linux-pci@vger.kernel.org
15941 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15942 S:      Supported
15943 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
15944 F:      drivers/pci/controller/cadence/pci-j721e.c
15945 F:      drivers/pci/controller/dwc/pci-dra7xx.c
15946
15947 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
15948 M:      Linus Walleij <linus.walleij@linaro.org>
15949 L:      linux-pci@vger.kernel.org
15950 S:      Maintained
15951 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
15952 F:      drivers/pci/controller/pci-v3-semi.c
15953
15954 PCI ENDPOINT SUBSYSTEM
15955 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
15956 M:      Krzysztof Wilczyński <kw@linux.com>
15957 R:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15958 R:      Kishon Vijay Abraham I <kishon@kernel.org>
15959 L:      linux-pci@vger.kernel.org
15960 S:      Supported
15961 Q:      https://patchwork.kernel.org/project/linux-pci/list/
15962 B:      https://bugzilla.kernel.org
15963 C:      irc://irc.oftc.net/linux-pci
15964 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pci/pci.git
15965 F:      Documentation/PCI/endpoint/*
15966 F:      Documentation/misc-devices/pci-endpoint-test.rst
15967 F:      drivers/misc/pci_endpoint_test.c
15968 F:      drivers/pci/endpoint/
15969 F:      tools/pci/
15970
15971 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
15972 M:      Mahesh J Salgaonkar <mahesh@linux.ibm.com>
15973 R:      Oliver O'Halloran <oohall@gmail.com>
15974 L:      linuxppc-dev@lists.ozlabs.org
15975 S:      Supported
15976 F:      Documentation/PCI/pci-error-recovery.rst
15977 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
15978 F:      arch/powerpc/include/*/eeh*.h
15979 F:      arch/powerpc/kernel/eeh*.c
15980 F:      arch/powerpc/platforms/*/eeh*.c
15981 F:      drivers/pci/pcie/aer.c
15982 F:      drivers/pci/pcie/dpc.c
15983 F:      drivers/pci/pcie/err.c
15984
15985 PCI ERROR RECOVERY
15986 M:      Linas Vepstas <linasvepstas@gmail.com>
15987 L:      linux-pci@vger.kernel.org
15988 S:      Supported
15989 F:      Documentation/PCI/pci-error-recovery.rst
15990
15991 PCI PEER-TO-PEER DMA (P2PDMA)
15992 M:      Bjorn Helgaas <bhelgaas@google.com>
15993 M:      Logan Gunthorpe <logang@deltatee.com>
15994 L:      linux-pci@vger.kernel.org
15995 S:      Supported
15996 Q:      https://patchwork.kernel.org/project/linux-pci/list/
15997 B:      https://bugzilla.kernel.org
15998 C:      irc://irc.oftc.net/linux-pci
15999 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pci/pci.git
16000 F:      Documentation/driver-api/pci/p2pdma.rst
16001 F:      drivers/pci/p2pdma.c
16002 F:      include/linux/pci-p2pdma.h
16003
16004 PCI MSI DRIVER FOR ALTERA MSI IP
16005 M:      Joyce Ooi <joyce.ooi@intel.com>
16006 L:      linux-pci@vger.kernel.org
16007 S:      Supported
16008 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
16009 F:      drivers/pci/controller/pcie-altera-msi.c
16010
16011 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
16012 M:      Toan Le <toan@os.amperecomputing.com>
16013 L:      linux-pci@vger.kernel.org
16014 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16015 S:      Maintained
16016 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
16017 F:      drivers/pci/controller/pci-xgene-msi.c
16018
16019 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
16020 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
16021 M:      Krzysztof Wilczyński <kw@linux.com>
16022 R:      Rob Herring <robh@kernel.org>
16023 L:      linux-pci@vger.kernel.org
16024 S:      Supported
16025 Q:      https://patchwork.kernel.org/project/linux-pci/list/
16026 B:      https://bugzilla.kernel.org
16027 C:      irc://irc.oftc.net/linux-pci
16028 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pci/pci.git
16029 F:      Documentation/devicetree/bindings/pci/
16030 F:      drivers/pci/controller/
16031 F:      drivers/pci/pci-bridge-emul.c
16032 F:      drivers/pci/pci-bridge-emul.h
16033
16034 PCI SUBSYSTEM
16035 M:      Bjorn Helgaas <bhelgaas@google.com>
16036 L:      linux-pci@vger.kernel.org
16037 S:      Supported
16038 Q:      https://patchwork.kernel.org/project/linux-pci/list/
16039 B:      https://bugzilla.kernel.org
16040 C:      irc://irc.oftc.net/linux-pci
16041 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pci/pci.git
16042 F:      Documentation/PCI/
16043 F:      Documentation/devicetree/bindings/pci/
16044 F:      arch/x86/kernel/early-quirks.c
16045 F:      arch/x86/kernel/quirks.c
16046 F:      arch/x86/pci/
16047 F:      drivers/acpi/pci*
16048 F:      drivers/pci/
16049 F:      include/asm-generic/pci*
16050 F:      include/linux/of_pci.h
16051 F:      include/linux/pci*
16052 F:      include/uapi/linux/pci*
16053 F:      lib/pci*
16054
16055 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
16056 M:      Jonathan Chocron <jonnyc@amazon.com>
16057 L:      linux-pci@vger.kernel.org
16058 S:      Maintained
16059 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
16060 F:      drivers/pci/controller/dwc/pcie-al.c
16061
16062 PCIE DRIVER FOR AMLOGIC MESON
16063 M:      Yue Wang <yue.wang@Amlogic.com>
16064 L:      linux-pci@vger.kernel.org
16065 L:      linux-amlogic@lists.infradead.org
16066 S:      Maintained
16067 F:      drivers/pci/controller/dwc/pci-meson.c
16068
16069 PCIE DRIVER FOR AXIS ARTPEC
16070 M:      Jesper Nilsson <jesper.nilsson@axis.com>
16071 L:      linux-arm-kernel@axis.com
16072 L:      linux-pci@vger.kernel.org
16073 S:      Maintained
16074 F:      Documentation/devicetree/bindings/pci/axis,artpec*
16075 F:      drivers/pci/controller/dwc/*artpec*
16076
16077 PCIE DRIVER FOR CAVIUM THUNDERX
16078 M:      Robert Richter <rric@kernel.org>
16079 L:      linux-pci@vger.kernel.org
16080 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16081 S:      Odd Fixes
16082 F:      drivers/pci/controller/pci-thunder-*
16083
16084 PCIE DRIVER FOR HISILICON
16085 M:      Zhou Wang <wangzhou1@hisilicon.com>
16086 L:      linux-pci@vger.kernel.org
16087 S:      Maintained
16088 F:      drivers/pci/controller/dwc/pcie-hisi.c
16089
16090 PCIE DRIVER FOR HISILICON KIRIN
16091 M:      Xiaowei Song <songxiaowei@hisilicon.com>
16092 M:      Binghui Wang <wangbinghui@hisilicon.com>
16093 L:      linux-pci@vger.kernel.org
16094 S:      Maintained
16095 F:      Documentation/devicetree/bindings/pci/hisilicon,kirin-pcie.yaml
16096 F:      drivers/pci/controller/dwc/pcie-kirin.c
16097
16098 PCIE DRIVER FOR HISILICON STB
16099 M:      Shawn Guo <shawn.guo@linaro.org>
16100 L:      linux-pci@vger.kernel.org
16101 S:      Maintained
16102 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
16103 F:      drivers/pci/controller/dwc/pcie-histb.c
16104
16105 PCIE DRIVER FOR INTEL KEEM BAY
16106 M:      Srikanth Thokala <srikanth.thokala@intel.com>
16107 L:      linux-pci@vger.kernel.org
16108 S:      Supported
16109 F:      Documentation/devicetree/bindings/pci/intel,keembay-pcie*
16110 F:      drivers/pci/controller/dwc/pcie-keembay.c
16111
16112 PCIE DRIVER FOR INTEL LGM GW SOC
16113 M:      Rahul Tanwar <rtanwar@maxlinear.com>
16114 L:      linux-pci@vger.kernel.org
16115 S:      Maintained
16116 F:      Documentation/devicetree/bindings/pci/intel-gw-pcie.yaml
16117 F:      drivers/pci/controller/dwc/pcie-intel-gw.c
16118
16119 PCIE DRIVER FOR MEDIATEK
16120 M:      Ryder Lee <ryder.lee@mediatek.com>
16121 M:      Jianjun Wang <jianjun.wang@mediatek.com>
16122 L:      linux-pci@vger.kernel.org
16123 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
16124 S:      Supported
16125 F:      Documentation/devicetree/bindings/pci/mediatek*
16126 F:      drivers/pci/controller/*mediatek*
16127
16128 PCIE DRIVER FOR MICROCHIP
16129 M:      Daire McNamara <daire.mcnamara@microchip.com>
16130 L:      linux-pci@vger.kernel.org
16131 S:      Supported
16132 F:      Documentation/devicetree/bindings/pci/microchip*
16133 F:      drivers/pci/controller/*microchip*
16134
16135 PCIE DRIVER FOR QUALCOMM MSM
16136 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16137 L:      linux-pci@vger.kernel.org
16138 L:      linux-arm-msm@vger.kernel.org
16139 S:      Maintained
16140 F:      drivers/pci/controller/dwc/pcie-qcom.c
16141
16142 PCIE ENDPOINT DRIVER FOR QUALCOMM
16143 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16144 L:      linux-pci@vger.kernel.org
16145 L:      linux-arm-msm@vger.kernel.org
16146 S:      Maintained
16147 F:      Documentation/devicetree/bindings/pci/qcom,pcie-ep.yaml
16148 F:      drivers/pci/controller/dwc/pcie-qcom-ep.c
16149
16150 PCIE DRIVER FOR ROCKCHIP
16151 M:      Shawn Lin <shawn.lin@rock-chips.com>
16152 L:      linux-pci@vger.kernel.org
16153 L:      linux-rockchip@lists.infradead.org
16154 S:      Maintained
16155 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
16156 F:      drivers/pci/controller/pcie-rockchip*
16157
16158 PCIE DRIVER FOR SOCIONEXT UNIPHIER
16159 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
16160 L:      linux-pci@vger.kernel.org
16161 S:      Maintained
16162 F:      Documentation/devicetree/bindings/pci/socionext,uniphier-pcie*
16163 F:      drivers/pci/controller/dwc/pcie-uniphier*
16164
16165 PCIE DRIVER FOR ST SPEAR13XX
16166 M:      Pratyush Anand <pratyush.anand@gmail.com>
16167 L:      linux-pci@vger.kernel.org
16168 S:      Maintained
16169 F:      drivers/pci/controller/dwc/*spear*
16170
16171 PCI DRIVER FOR XILINX VERSAL CPM
16172 M:      Bharat Kumar Gogada <bharat.kumar.gogada@amd.com>
16173 M:      Michal Simek <michal.simek@amd.com>
16174 L:      linux-pci@vger.kernel.org
16175 S:      Maintained
16176 F:      Documentation/devicetree/bindings/pci/xilinx-versal-cpm.yaml
16177 F:      drivers/pci/controller/pcie-xilinx-cpm.c
16178
16179 PCMCIA SUBSYSTEM
16180 M:      Dominik Brodowski <linux@dominikbrodowski.net>
16181 S:      Odd Fixes
16182 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/linux.git
16183 F:      Documentation/pcmcia/
16184 F:      drivers/pcmcia/
16185 F:      include/pcmcia/
16186 F:      tools/pcmcia/
16187
16188 PCNET32 NETWORK DRIVER
16189 M:      Don Fry <pcnet32@frontier.com>
16190 L:      netdev@vger.kernel.org
16191 S:      Maintained
16192 F:      drivers/net/ethernet/amd/pcnet32.c
16193
16194 PCRYPT PARALLEL CRYPTO ENGINE
16195 M:      Steffen Klassert <steffen.klassert@secunet.com>
16196 L:      linux-crypto@vger.kernel.org
16197 S:      Maintained
16198 F:      crypto/pcrypt.c
16199 F:      include/crypto/pcrypt.h
16200
16201 PEAQ WMI HOTKEYS DRIVER
16202 M:      Hans de Goede <hdegoede@redhat.com>
16203 L:      platform-driver-x86@vger.kernel.org
16204 S:      Maintained
16205 F:      drivers/platform/x86/peaq-wmi.c
16206
16207 PECI HARDWARE MONITORING DRIVERS
16208 M:      Iwona Winiarska <iwona.winiarska@intel.com>
16209 L:      linux-hwmon@vger.kernel.org
16210 S:      Supported
16211 F:      Documentation/hwmon/peci-cputemp.rst
16212 F:      Documentation/hwmon/peci-dimmtemp.rst
16213 F:      drivers/hwmon/peci/
16214
16215 PECI SUBSYSTEM
16216 M:      Iwona Winiarska <iwona.winiarska@intel.com>
16217 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
16218 S:      Supported
16219 F:      Documentation/devicetree/bindings/peci/
16220 F:      Documentation/peci/
16221 F:      drivers/peci/
16222 F:      include/linux/peci-cpu.h
16223 F:      include/linux/peci.h
16224
16225 PENSANDO ETHERNET DRIVERS
16226 M:      Shannon Nelson <shannon.nelson@amd.com>
16227 M:      Brett Creeley <brett.creeley@amd.com>
16228 M:      drivers@pensando.io
16229 L:      netdev@vger.kernel.org
16230 S:      Supported
16231 F:      Documentation/networking/device_drivers/ethernet/pensando/ionic.rst
16232 F:      drivers/net/ethernet/pensando/
16233
16234 PER-CPU MEMORY ALLOCATOR
16235 M:      Dennis Zhou <dennis@kernel.org>
16236 M:      Tejun Heo <tj@kernel.org>
16237 M:      Christoph Lameter <cl@linux.com>
16238 L:      linux-mm@kvack.org
16239 S:      Maintained
16240 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
16241 F:      arch/*/include/asm/percpu.h
16242 F:      include/linux/percpu*.h
16243 F:      lib/percpu*.c
16244 F:      mm/percpu*.c
16245
16246 PER-TASK DELAY ACCOUNTING
16247 M:      Balbir Singh <bsingharora@gmail.com>
16248 S:      Maintained
16249 F:      include/linux/delayacct.h
16250 F:      kernel/delayacct.c
16251
16252 PERFORMANCE EVENTS SUBSYSTEM
16253 M:      Peter Zijlstra <peterz@infradead.org>
16254 M:      Ingo Molnar <mingo@redhat.com>
16255 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
16256 R:      Mark Rutland <mark.rutland@arm.com>
16257 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
16258 R:      Jiri Olsa <jolsa@kernel.org>
16259 R:      Namhyung Kim <namhyung@kernel.org>
16260 L:      linux-perf-users@vger.kernel.org
16261 L:      linux-kernel@vger.kernel.org
16262 S:      Supported
16263 W:      https://perf.wiki.kernel.org/
16264 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
16265 F:      arch/*/events/*
16266 F:      arch/*/events/*/*
16267 F:      arch/*/include/asm/perf_event.h
16268 F:      arch/*/kernel/*/*/perf_event*.c
16269 F:      arch/*/kernel/*/perf_event*.c
16270 F:      arch/*/kernel/perf_callchain.c
16271 F:      arch/*/kernel/perf_event*.c
16272 F:      include/linux/perf_event.h
16273 F:      include/uapi/linux/perf_event.h
16274 F:      kernel/events/*
16275 F:      tools/lib/perf/
16276 F:      tools/perf/
16277
16278 PERFORMANCE EVENTS TOOLING ARM64
16279 R:      John Garry <john.g.garry@oracle.com>
16280 R:      Will Deacon <will@kernel.org>
16281 R:      James Clark <james.clark@arm.com>
16282 R:      Mike Leach <mike.leach@linaro.org>
16283 R:      Leo Yan <leo.yan@linaro.org>
16284 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16285 S:      Supported
16286 F:      tools/build/feature/test-libopencsd.c
16287 F:      tools/perf/arch/arm*/
16288 F:      tools/perf/pmu-events/arch/arm64/
16289 F:      tools/perf/util/arm-spe*
16290 F:      tools/perf/util/cs-etm*
16291
16292 PERSONALITY HANDLING
16293 M:      Christoph Hellwig <hch@infradead.org>
16294 L:      linux-abi-devel@lists.sourceforge.net
16295 S:      Maintained
16296 F:      include/linux/personality.h
16297 F:      include/uapi/linux/personality.h
16298
16299 PHOENIX RC FLIGHT CONTROLLER ADAPTER
16300 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
16301 L:      linux-input@vger.kernel.org
16302 S:      Maintained
16303 F:      Documentation/input/devices/pxrc.rst
16304 F:      drivers/input/joystick/pxrc.c
16305
16306 PHONET PROTOCOL
16307 M:      Remi Denis-Courmont <courmisch@gmail.com>
16308 S:      Supported
16309 F:      Documentation/networking/phonet.rst
16310 F:      include/linux/phonet.h
16311 F:      include/net/phonet/
16312 F:      include/uapi/linux/phonet.h
16313 F:      net/phonet/
16314
16315 PHRAM MTD DRIVER
16316 M:      Joern Engel <joern@lazybastard.org>
16317 L:      linux-mtd@lists.infradead.org
16318 S:      Maintained
16319 F:      drivers/mtd/devices/phram.c
16320
16321 PICOLCD HID DRIVER
16322 M:      Bruno Prémont <bonbons@linux-vserver.org>
16323 L:      linux-input@vger.kernel.org
16324 S:      Maintained
16325 F:      drivers/hid/hid-picolcd*
16326
16327 PIDFD API
16328 M:      Christian Brauner <christian@brauner.io>
16329 L:      linux-kernel@vger.kernel.org
16330 S:      Maintained
16331 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
16332 F:      samples/pidfd/
16333 F:      tools/testing/selftests/clone3/
16334 F:      tools/testing/selftests/pid_namespace/
16335 F:      tools/testing/selftests/pidfd/
16336 K:      (?i)pidfd
16337 K:      (?i)clone3
16338 K:      \b(clone_args|kernel_clone_args)\b
16339
16340 PIN CONTROL SUBSYSTEM
16341 M:      Linus Walleij <linus.walleij@linaro.org>
16342 L:      linux-gpio@vger.kernel.org
16343 S:      Maintained
16344 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
16345 F:      Documentation/devicetree/bindings/pinctrl/
16346 F:      Documentation/driver-api/pin-control.rst
16347 F:      drivers/pinctrl/
16348 F:      include/dt-bindings/pinctrl/
16349 F:      include/linux/pinctrl/
16350
16351 PIN CONTROLLER - AMD
16352 M:      Basavaraj Natikar <Basavaraj.Natikar@amd.com>
16353 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
16354 S:      Maintained
16355 F:      drivers/pinctrl/pinctrl-amd.c
16356
16357 PIN CONTROLLER - FREESCALE
16358 M:      Dong Aisheng <aisheng.dong@nxp.com>
16359 M:      Fabio Estevam <festevam@gmail.com>
16360 M:      Shawn Guo <shawnguo@kernel.org>
16361 M:      Jacky Bai <ping.bai@nxp.com>
16362 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
16363 L:      linux-gpio@vger.kernel.org
16364 S:      Maintained
16365 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
16366 F:      drivers/pinctrl/freescale/
16367
16368 PIN CONTROLLER - INTEL
16369 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
16370 M:      Andy Shevchenko <andy@kernel.org>
16371 S:      Supported
16372 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
16373 F:      drivers/pinctrl/intel/
16374
16375 PIN CONTROLLER - KEEMBAY
16376 M:      Lakshmi Sowjanya D <lakshmi.sowjanya.d@intel.com>
16377 S:      Supported
16378 F:      drivers/pinctrl/pinctrl-keembay*
16379
16380 PIN CONTROLLER - MEDIATEK
16381 M:      Sean Wang <sean.wang@kernel.org>
16382 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
16383 S:      Maintained
16384 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt65xx-pinctrl.yaml
16385 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt6779-pinctrl.yaml
16386 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt7622-pinctrl.yaml
16387 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt8183-pinctrl.yaml
16388 F:      drivers/pinctrl/mediatek/
16389
16390 PIN CONTROLLER - MICROCHIP AT91
16391 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
16392 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16393 L:      linux-gpio@vger.kernel.org
16394 S:      Supported
16395 F:      drivers/gpio/gpio-sama5d2-piobu.c
16396 F:      drivers/pinctrl/pinctrl-at91*
16397
16398 PIN CONTROLLER - QUALCOMM
16399 M:      Bjorn Andersson <andersson@kernel.org>
16400 L:      linux-arm-msm@vger.kernel.org
16401 S:      Maintained
16402 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
16403 F:      drivers/pinctrl/qcom/
16404
16405 PIN CONTROLLER - RENESAS
16406 M:      Geert Uytterhoeven <geert+renesas@glider.be>
16407 L:      linux-renesas-soc@vger.kernel.org
16408 S:      Supported
16409 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-pinctrl
16410 F:      Documentation/devicetree/bindings/pinctrl/renesas,*
16411 F:      drivers/pinctrl/renesas/
16412
16413 PIN CONTROLLER - SAMSUNG
16414 M:      Tomasz Figa <tomasz.figa@gmail.com>
16415 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
16416 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16417 R:      Alim Akhtar <alim.akhtar@samsung.com>
16418 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16419 L:      linux-samsung-soc@vger.kernel.org
16420 S:      Maintained
16421 C:      irc://irc.libera.chat/linux-exynos
16422 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
16423 B:      mailto:linux-samsung-soc@vger.kernel.org
16424 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
16425 F:      Documentation/devicetree/bindings/pinctrl/samsung,pinctrl*yaml
16426 F:      drivers/pinctrl/samsung/
16427 F:      include/dt-bindings/pinctrl/samsung.h
16428
16429 PIN CONTROLLER - SINGLE
16430 M:      Tony Lindgren <tony@atomide.com>
16431 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
16432 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16433 L:      linux-omap@vger.kernel.org
16434 S:      Maintained
16435 F:      drivers/pinctrl/pinctrl-single.c
16436
16437 PIN CONTROLLER - THUNDERBAY
16438 M:      Lakshmi Sowjanya D <lakshmi.sowjanya.d@intel.com>
16439 S:      Supported
16440 F:      drivers/pinctrl/pinctrl-thunderbay.c
16441
16442 PIN CONTROLLER - SUNPLUS / TIBBO
16443 M:      Dvorkin Dmitry <dvorkin@tibbo.com>
16444 M:      Wells Lu <wellslutw@gmail.com>
16445 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16446 S:      Maintained
16447 W:      https://sunplus.atlassian.net/wiki/spaces/doc/overview
16448 F:      Documentation/devicetree/bindings/pinctrl/sunplus,*
16449 F:      drivers/pinctrl/sunplus/
16450 F:      include/dt-bindings/pinctrl/sppctl*.h
16451
16452 PINE64 PINEPHONE KEYBOARD DRIVER
16453 M:      Samuel Holland <samuel@sholland.org>
16454 S:      Supported
16455 F:      Documentation/devicetree/bindings/input/pine64,pinephone-keyboard.yaml
16456 F:      drivers/input/keyboard/pinephone-keyboard.c
16457
16458 PKTCDVD DRIVER
16459 M:      linux-block@vger.kernel.org
16460 S:      Orphan
16461 F:      drivers/block/pktcdvd.c
16462 F:      include/linux/pktcdvd.h
16463 F:      include/uapi/linux/pktcdvd.h
16464
16465 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
16466 M:      Tomasz Duszynski <tduszyns@gmail.com>
16467 S:      Maintained
16468 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
16469 F:      drivers/iio/chemical/pms7003.c
16470
16471 PLDMFW LIBRARY
16472 M:      Jacob Keller <jacob.e.keller@intel.com>
16473 S:      Maintained
16474 F:      Documentation/driver-api/pldmfw/
16475 F:      include/linux/pldmfw.h
16476 F:      lib/pldmfw/
16477
16478 PLX DMA DRIVER
16479 M:      Logan Gunthorpe <logang@deltatee.com>
16480 S:      Maintained
16481 F:      drivers/dma/plx_dma.c
16482
16483 PM6764TR DRIVER
16484 M:      Charles Hsu     <hsu.yungteng@gmail.com>
16485 L:      linux-hwmon@vger.kernel.org
16486 S:      Maintained
16487 F:      Documentation/hwmon/pm6764tr.rst
16488 F:      drivers/hwmon/pmbus/pm6764tr.c
16489
16490 PM-GRAPH UTILITY
16491 M:      "Todd E Brandt" <todd.e.brandt@linux.intel.com>
16492 L:      linux-pm@vger.kernel.org
16493 S:      Supported
16494 W:      https://01.org/pm-graph
16495 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
16496 T:      git git://github.com/intel/pm-graph
16497 F:      tools/power/pm-graph
16498
16499 PMBUS HARDWARE MONITORING DRIVERS
16500 M:      Guenter Roeck <linux@roeck-us.net>
16501 L:      linux-hwmon@vger.kernel.org
16502 S:      Maintained
16503 W:      http://hwmon.wiki.kernel.org/
16504 W:      http://www.roeck-us.net/linux/drivers/
16505 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
16506 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
16507 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
16508 F:      Documentation/hwmon/adm1275.rst
16509 F:      Documentation/hwmon/ibm-cffps.rst
16510 F:      Documentation/hwmon/ir35221.rst
16511 F:      Documentation/hwmon/lm25066.rst
16512 F:      Documentation/hwmon/ltc2978.rst
16513 F:      Documentation/hwmon/ltc3815.rst
16514 F:      Documentation/hwmon/max16064.rst
16515 F:      Documentation/hwmon/max20751.rst
16516 F:      Documentation/hwmon/max31785.rst
16517 F:      Documentation/hwmon/max34440.rst
16518 F:      Documentation/hwmon/max8688.rst
16519 F:      Documentation/hwmon/pmbus-core.rst
16520 F:      Documentation/hwmon/pmbus.rst
16521 F:      Documentation/hwmon/tps40422.rst
16522 F:      Documentation/hwmon/ucd9000.rst
16523 F:      Documentation/hwmon/ucd9200.rst
16524 F:      Documentation/hwmon/zl6100.rst
16525 F:      drivers/hwmon/pmbus/
16526 F:      include/linux/pmbus.h
16527
16528 PMC SIERRA MaxRAID DRIVER
16529 L:      linux-scsi@vger.kernel.org
16530 S:      Orphan
16531 W:      http://www.pmc-sierra.com/
16532 F:      drivers/scsi/pmcraid.*
16533
16534 PMC SIERRA PM8001 DRIVER
16535 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
16536 L:      linux-scsi@vger.kernel.org
16537 S:      Supported
16538 F:      drivers/scsi/pm8001/
16539
16540 PNI RM3100 IIO DRIVER
16541 M:      Song Qiang <songqiang1304521@gmail.com>
16542 L:      linux-iio@vger.kernel.org
16543 S:      Maintained
16544 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.yaml
16545 F:      drivers/iio/magnetometer/rm3100*
16546
16547 PNP SUPPORT
16548 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
16549 L:      linux-acpi@vger.kernel.org
16550 S:      Maintained
16551 F:      drivers/pnp/
16552 F:      include/linux/pnp.h
16553
16554 POSIX CLOCKS and TIMERS
16555 M:      Thomas Gleixner <tglx@linutronix.de>
16556 L:      linux-kernel@vger.kernel.org
16557 S:      Maintained
16558 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
16559 F:      fs/timerfd.c
16560 F:      include/linux/time_namespace.h
16561 F:      include/linux/timer*
16562 F:      kernel/time/*timer*
16563 F:      kernel/time/namespace.c
16564
16565 POWER MANAGEMENT CORE
16566 M:      "Rafael J. Wysocki" <rafael@kernel.org>
16567 L:      linux-pm@vger.kernel.org
16568 S:      Supported
16569 B:      https://bugzilla.kernel.org
16570 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
16571 F:      drivers/base/power/
16572 F:      drivers/powercap/
16573 F:      include/linux/intel_rapl.h
16574 F:      include/linux/pm.h
16575 F:      include/linux/pm_*
16576 F:      include/linux/powercap.h
16577 F:      kernel/configs/nopm.config
16578
16579 DYNAMIC THERMAL POWER MANAGEMENT (DTPM)
16580 M:      Daniel Lezcano <daniel.lezcano@kernel.org>
16581 L:      linux-pm@vger.kernel.org
16582 S:      Supported
16583 B:      https://bugzilla.kernel.org
16584 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
16585 F:      drivers/powercap/dtpm*
16586 F:      include/linux/dtpm.h
16587
16588 POWER STATE COORDINATION INTERFACE (PSCI)
16589 M:      Mark Rutland <mark.rutland@arm.com>
16590 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
16591 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16592 S:      Maintained
16593 F:      drivers/firmware/psci/
16594 F:      include/linux/psci.h
16595 F:      include/uapi/linux/psci.h
16596
16597 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
16598 M:      Sebastian Reichel <sre@kernel.org>
16599 L:      linux-pm@vger.kernel.org
16600 S:      Maintained
16601 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
16602 F:      Documentation/ABI/testing/sysfs-class-power
16603 F:      Documentation/devicetree/bindings/power/supply/
16604 F:      drivers/power/supply/
16605 F:      include/linux/power/
16606 F:      include/linux/power_supply.h
16607
16608 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
16609 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
16610 L:      linuxppc-dev@lists.ozlabs.org
16611 S:      Maintained
16612 F:      drivers/char/powernv-op-panel.c
16613
16614 PPP OVER ATM (RFC 2364)
16615 M:      Mitchell Blank Jr <mitch@sfgoth.com>
16616 S:      Maintained
16617 F:      include/uapi/linux/atmppp.h
16618 F:      net/atm/pppoatm.c
16619
16620 PPP OVER ETHERNET
16621 M:      Michal Ostrowski <mostrows@earthlink.net>
16622 S:      Maintained
16623 F:      drivers/net/ppp/pppoe.c
16624 F:      drivers/net/ppp/pppox.c
16625
16626 PPP OVER L2TP
16627 M:      James Chapman <jchapman@katalix.com>
16628 S:      Maintained
16629 F:      include/linux/if_pppol2tp.h
16630 F:      include/uapi/linux/if_pppol2tp.h
16631 F:      net/l2tp/l2tp_ppp.c
16632
16633 PPP PROTOCOL DRIVERS AND COMPRESSORS
16634 M:      Paul Mackerras <paulus@samba.org>
16635 L:      linux-ppp@vger.kernel.org
16636 S:      Maintained
16637 F:      drivers/net/ppp/ppp_*
16638
16639 PPS SUPPORT
16640 M:      Rodolfo Giometti <giometti@enneenne.com>
16641 L:      linuxpps@ml.enneenne.com (subscribers-only)
16642 S:      Maintained
16643 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
16644 F:      Documentation/ABI/testing/sysfs-pps
16645 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
16646 F:      Documentation/driver-api/pps.rst
16647 F:      drivers/pps/
16648 F:      include/linux/pps*.h
16649 F:      include/uapi/linux/pps.h
16650
16651 PPTP DRIVER
16652 M:      Dmitry Kozlov <xeb@mail.ru>
16653 L:      netdev@vger.kernel.org
16654 S:      Maintained
16655 W:      http://sourceforge.net/projects/accel-pptp
16656 F:      drivers/net/ppp/pptp.c
16657
16658 PRESSURE STALL INFORMATION (PSI)
16659 M:      Johannes Weiner <hannes@cmpxchg.org>
16660 M:      Suren Baghdasaryan <surenb@google.com>
16661 S:      Maintained
16662 F:      include/linux/psi*
16663 F:      kernel/sched/psi.c
16664
16665 PRINTK
16666 M:      Petr Mladek <pmladek@suse.com>
16667 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
16668 R:      Steven Rostedt <rostedt@goodmis.org>
16669 R:      John Ogness <john.ogness@linutronix.de>
16670 S:      Maintained
16671 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux.git
16672 F:      include/linux/printk.h
16673 F:      kernel/printk/
16674
16675 PRINTK INDEXING
16676 R:      Chris Down <chris@chrisdown.name>
16677 S:      Maintained
16678 F:      Documentation/core-api/printk-index.rst
16679 F:      kernel/printk/index.c
16680 K:      printk_index
16681
16682 PROC FILESYSTEM
16683 L:      linux-kernel@vger.kernel.org
16684 L:      linux-fsdevel@vger.kernel.org
16685 S:      Maintained
16686 F:      Documentation/filesystems/proc.rst
16687 F:      fs/proc/
16688 F:      include/linux/proc_fs.h
16689 F:      tools/testing/selftests/proc/
16690
16691 PROC SYSCTL
16692 M:      Luis Chamberlain <mcgrof@kernel.org>
16693 M:      Kees Cook <keescook@chromium.org>
16694 M:      Iurii Zaikin <yzaikin@google.com>
16695 L:      linux-kernel@vger.kernel.org
16696 L:      linux-fsdevel@vger.kernel.org
16697 S:      Maintained
16698 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux.git sysctl-next
16699 F:      fs/proc/proc_sysctl.c
16700 F:      include/linux/sysctl.h
16701 F:      kernel/sysctl-test.c
16702 F:      kernel/sysctl.c
16703 F:      tools/testing/selftests/sysctl/
16704
16705 PS3 NETWORK SUPPORT
16706 M:      Geoff Levand <geoff@infradead.org>
16707 L:      netdev@vger.kernel.org
16708 L:      linuxppc-dev@lists.ozlabs.org
16709 S:      Maintained
16710 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
16711
16712 PS3 PLATFORM SUPPORT
16713 M:      Geoff Levand <geoff@infradead.org>
16714 L:      linuxppc-dev@lists.ozlabs.org
16715 S:      Maintained
16716 F:      arch/powerpc/boot/ps3*
16717 F:      arch/powerpc/include/asm/lv1call.h
16718 F:      arch/powerpc/include/asm/ps3*.h
16719 F:      arch/powerpc/platforms/ps3/
16720 F:      drivers/*/ps3*
16721 F:      drivers/ps3/
16722 F:      drivers/rtc/rtc-ps3.c
16723 F:      drivers/usb/host/*ps3.c
16724 F:      sound/ppc/snd_ps3*
16725
16726 PS3VRAM DRIVER
16727 M:      Jim Paris <jim@jtan.com>
16728 M:      Geoff Levand <geoff@infradead.org>
16729 L:      linuxppc-dev@lists.ozlabs.org
16730 S:      Maintained
16731 F:      drivers/block/ps3vram.c
16732
16733 PSAMPLE PACKET SAMPLING SUPPORT
16734 M:      Yotam Gigi <yotam.gi@gmail.com>
16735 S:      Maintained
16736 F:      include/net/psample.h
16737 F:      include/uapi/linux/psample.h
16738 F:      net/psample
16739
16740 PSTORE FILESYSTEM
16741 M:      Kees Cook <keescook@chromium.org>
16742 R:      Tony Luck <tony.luck@intel.com>
16743 R:      Guilherme G. Piccoli <gpiccoli@igalia.com>
16744 L:      linux-hardening@vger.kernel.org
16745 S:      Supported
16746 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
16747 F:      Documentation/admin-guide/ramoops.rst
16748 F:      Documentation/admin-guide/pstore-blk.rst
16749 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.yaml
16750 F:      drivers/acpi/apei/erst.c
16751 F:      drivers/firmware/efi/efi-pstore.c
16752 F:      fs/pstore/
16753 F:      include/linux/pstore*
16754 K:      \b(pstore|ramoops)
16755
16756 PTP HARDWARE CLOCK SUPPORT
16757 M:      Richard Cochran <richardcochran@gmail.com>
16758 L:      netdev@vger.kernel.org
16759 S:      Maintained
16760 W:      http://linuxptp.sourceforge.net/
16761 F:      Documentation/ABI/testing/sysfs-ptp
16762 F:      Documentation/driver-api/ptp.rst
16763 F:      drivers/net/phy/dp83640*
16764 F:      drivers/ptp/*
16765 F:      include/linux/ptp_cl*
16766 K:      (?:\b|_)ptp(?:\b|_)
16767
16768 PTP VIRTUAL CLOCK SUPPORT
16769 M:      Yangbo Lu <yangbo.lu@nxp.com>
16770 L:      netdev@vger.kernel.org
16771 S:      Maintained
16772 F:      drivers/ptp/ptp_vclock.c
16773 F:      net/ethtool/phc_vclocks.c
16774
16775 PTRACE SUPPORT
16776 M:      Oleg Nesterov <oleg@redhat.com>
16777 S:      Maintained
16778 F:      arch/*/*/ptrace*.c
16779 F:      arch/*/include/asm/ptrace*.h
16780 F:      arch/*/ptrace*.c
16781 F:      include/asm-generic/syscall.h
16782 F:      include/linux/ptrace.h
16783 F:      include/linux/regset.h
16784 F:      include/uapi/linux/ptrace.h
16785 F:      kernel/ptrace.c
16786
16787 PULSE8-CEC DRIVER
16788 M:      Hans Verkuil <hverkuil@xs4all.nl>
16789 L:      linux-media@vger.kernel.org
16790 S:      Maintained
16791 T:      git git://linuxtv.org/media_tree.git
16792 F:      drivers/media/cec/usb/pulse8/
16793
16794 PURELIFI PLFXLC DRIVER
16795 M:      Srinivasan Raju <srini.raju@purelifi.com>
16796 L:      linux-wireless@vger.kernel.org
16797 S:      Supported
16798 F:      drivers/net/wireless/purelifi/plfxlc/
16799
16800 PVRUSB2 VIDEO4LINUX DRIVER
16801 M:      Mike Isely <isely@pobox.com>
16802 L:      pvrusb2@isely.net       (subscribers-only)
16803 L:      linux-media@vger.kernel.org
16804 S:      Maintained
16805 W:      http://www.isely.net/pvrusb2/
16806 T:      git git://linuxtv.org/media_tree.git
16807 F:      Documentation/driver-api/media/drivers/pvrusb2*
16808 F:      drivers/media/usb/pvrusb2/
16809
16810 PWC WEBCAM DRIVER
16811 M:      Hans Verkuil <hverkuil@xs4all.nl>
16812 L:      linux-media@vger.kernel.org
16813 S:      Odd Fixes
16814 T:      git git://linuxtv.org/media_tree.git
16815 F:      drivers/media/usb/pwc/*
16816 F:      include/trace/events/pwc.h
16817
16818 PWM IR Transmitter
16819 M:      Sean Young <sean@mess.org>
16820 L:      linux-media@vger.kernel.org
16821 S:      Maintained
16822 F:      Documentation/devicetree/bindings/leds/irled/pwm-ir-tx.yaml
16823 F:      drivers/media/rc/pwm-ir-tx.c
16824
16825 PWM SUBSYSTEM
16826 M:      Thierry Reding <thierry.reding@gmail.com>
16827 R:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
16828 L:      linux-pwm@vger.kernel.org
16829 S:      Maintained
16830 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
16831 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
16832 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.yaml
16833 F:      Documentation/devicetree/bindings/pwm/
16834 F:      Documentation/driver-api/pwm.rst
16835 F:      drivers/gpio/gpio-mvebu.c
16836 F:      drivers/pwm/
16837 F:      drivers/video/backlight/pwm_bl.c
16838 F:      include/dt-bindings/pwm/
16839 F:      include/linux/pwm.h
16840 F:      include/linux/pwm_backlight.h
16841 K:      pwm_(config|apply_state|ops)
16842
16843 PXA GPIO DRIVER
16844 M:      Robert Jarzmik <robert.jarzmik@free.fr>
16845 L:      linux-gpio@vger.kernel.org
16846 S:      Maintained
16847 F:      drivers/gpio/gpio-pxa.c
16848
16849 PXA MMCI DRIVER
16850 S:      Orphan
16851
16852 PXA RTC DRIVER
16853 M:      Robert Jarzmik <robert.jarzmik@free.fr>
16854 L:      linux-rtc@vger.kernel.org
16855 S:      Maintained
16856
16857 PXA2xx/PXA3xx SUPPORT
16858 M:      Daniel Mack <daniel@zonque.org>
16859 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
16860 M:      Robert Jarzmik <robert.jarzmik@free.fr>
16861 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16862 S:      Maintained
16863 T:      git git://github.com/hzhuang1/linux.git
16864 T:      git git://github.com/rjarzmik/linux.git
16865 F:      arch/arm/boot/dts/pxa*
16866 F:      arch/arm/mach-pxa/
16867 F:      drivers/dma/pxa*
16868 F:      drivers/pcmcia/pxa2xx*
16869 F:      drivers/pinctrl/pxa/
16870 F:      drivers/spi/spi-pxa2xx*
16871 F:      drivers/usb/gadget/udc/pxa2*
16872 F:      include/sound/pxa2xx-lib.h
16873 F:      sound/arm/pxa*
16874 F:      sound/soc/pxa/
16875
16876 QAT DRIVER
16877 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
16878 L:      qat-linux@intel.com
16879 S:      Supported
16880 F:      drivers/crypto/qat/
16881
16882 QCOM AUDIO (ASoC) DRIVERS
16883 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
16884 M:      Banajit Goswami <bgoswami@quicinc.com>
16885 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16886 S:      Supported
16887 F:      Documentation/devicetree/bindings/soc/qcom/qcom,apr*
16888 F:      Documentation/devicetree/bindings/sound/qcom,*
16889 F:      drivers/soc/qcom/apr.c
16890 F:      include/dt-bindings/sound/qcom,wcd9335.h
16891 F:      sound/soc/codecs/lpass-rx-macro.*
16892 F:      sound/soc/codecs/lpass-tx-macro.*
16893 F:      sound/soc/codecs/lpass-va-macro.c
16894 F:      sound/soc/codecs/lpass-wsa-macro.*
16895 F:      sound/soc/codecs/msm8916-wcd-analog.c
16896 F:      sound/soc/codecs/msm8916-wcd-digital.c
16897 F:      sound/soc/codecs/wcd9335.*
16898 F:      sound/soc/codecs/wcd934x.c
16899 F:      sound/soc/codecs/wcd-clsh-v2.*
16900 F:      sound/soc/codecs/wcd-mbhc-v2.*
16901 F:      sound/soc/codecs/wsa881x.c
16902 F:      sound/soc/codecs/wsa883x.c
16903 F:      sound/soc/qcom/
16904
16905 QCOM EMBEDDED USB DEBUGGER (EUD)
16906 M:      Souradeep Chowdhury <quic_schowdhu@quicinc.com>
16907 L:      linux-arm-msm@vger.kernel.org
16908 S:      Maintained
16909 F:      Documentation/ABI/testing/sysfs-driver-eud
16910 F:      Documentation/devicetree/bindings/soc/qcom/qcom,eud.yaml
16911 F:      drivers/usb/misc/qcom_eud.c
16912
16913 QCOM IPA DRIVER
16914 M:      Alex Elder <elder@kernel.org>
16915 L:      netdev@vger.kernel.org
16916 S:      Supported
16917 F:      drivers/net/ipa/
16918
16919 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
16920 M:      Gabriel Somlo <somlo@cmu.edu>
16921 M:      "Michael S. Tsirkin" <mst@redhat.com>
16922 L:      qemu-devel@nongnu.org
16923 S:      Maintained
16924 F:      drivers/firmware/qemu_fw_cfg.c
16925 F:      include/uapi/linux/qemu_fw_cfg.h
16926
16927 QIB DRIVER
16928 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
16929 L:      linux-rdma@vger.kernel.org
16930 S:      Supported
16931 F:      drivers/infiniband/hw/qib/
16932
16933 QLOGIC QL41xxx FCOE DRIVER
16934 M:      Saurav Kashyap <skashyap@marvell.com>
16935 M:      Javed Hasan <jhasan@marvell.com>
16936 M:      GR-QLogic-Storage-Upstream@marvell.com
16937 L:      linux-scsi@vger.kernel.org
16938 S:      Supported
16939 F:      drivers/scsi/qedf/
16940
16941 QLOGIC QL41xxx ISCSI DRIVER
16942 M:      Nilesh Javali <njavali@marvell.com>
16943 M:      Manish Rangankar <mrangankar@marvell.com>
16944 M:      GR-QLogic-Storage-Upstream@marvell.com
16945 L:      linux-scsi@vger.kernel.org
16946 S:      Supported
16947 F:      drivers/scsi/qedi/
16948
16949 QLOGIC QL4xxx ETHERNET DRIVER
16950 M:      Ariel Elior <aelior@marvell.com>
16951 M:      Manish Chopra <manishc@marvell.com>
16952 L:      netdev@vger.kernel.org
16953 S:      Supported
16954 F:      drivers/net/ethernet/qlogic/qed/
16955 F:      drivers/net/ethernet/qlogic/qede/
16956 F:      include/linux/qed/
16957
16958 QLOGIC QL4xxx RDMA DRIVER
16959 M:      Michal Kalderon <mkalderon@marvell.com>
16960 M:      Ariel Elior <aelior@marvell.com>
16961 L:      linux-rdma@vger.kernel.org
16962 S:      Supported
16963 F:      drivers/infiniband/hw/qedr/
16964 F:      include/uapi/rdma/qedr-abi.h
16965
16966 QLOGIC QLA1280 SCSI DRIVER
16967 M:      Michael Reed <mdr@sgi.com>
16968 L:      linux-scsi@vger.kernel.org
16969 S:      Maintained
16970 F:      drivers/scsi/qla1280.[ch]
16971
16972 QLOGIC QLA2XXX FC-SCSI DRIVER
16973 M:      Nilesh Javali <njavali@marvell.com>
16974 M:      GR-QLogic-Storage-Upstream@marvell.com
16975 L:      linux-scsi@vger.kernel.org
16976 S:      Supported
16977 F:      drivers/scsi/qla2xxx/
16978
16979 QLOGIC QLA3XXX NETWORK DRIVER
16980 M:      GR-Linux-NIC-Dev@marvell.com
16981 L:      netdev@vger.kernel.org
16982 S:      Supported
16983 F:      drivers/net/ethernet/qlogic/qla3xxx.*
16984
16985 QLOGIC QLA4XXX iSCSI DRIVER
16986 M:      Nilesh Javali <njavali@marvell.com>
16987 M:      Manish Rangankar <mrangankar@marvell.com>
16988 M:      GR-QLogic-Storage-Upstream@marvell.com
16989 L:      linux-scsi@vger.kernel.org
16990 S:      Supported
16991 F:      drivers/scsi/qla4xxx/
16992
16993 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
16994 M:      Shahed Shaikh <shshaikh@marvell.com>
16995 M:      Manish Chopra <manishc@marvell.com>
16996 M:      GR-Linux-NIC-Dev@marvell.com
16997 L:      netdev@vger.kernel.org
16998 S:      Supported
16999 F:      drivers/net/ethernet/qlogic/qlcnic/
17000
17001 QLOGIC QLGE 10Gb ETHERNET DRIVER
17002 M:      Manish Chopra <manishc@marvell.com>
17003 M:      GR-Linux-NIC-Dev@marvell.com
17004 M:      Coiby Xu <coiby.xu@gmail.com>
17005 L:      netdev@vger.kernel.org
17006 S:      Supported
17007 F:      Documentation/networking/device_drivers/qlogic/qlge.rst
17008 F:      drivers/staging/qlge/
17009
17010 QM1D1B0004 MEDIA DRIVER
17011 M:      Akihiro Tsukada <tskd08@gmail.com>
17012 L:      linux-media@vger.kernel.org
17013 S:      Odd Fixes
17014 F:      drivers/media/tuners/qm1d1b0004*
17015
17016 QM1D1C0042 MEDIA DRIVER
17017 M:      Akihiro Tsukada <tskd08@gmail.com>
17018 L:      linux-media@vger.kernel.org
17019 S:      Odd Fixes
17020 F:      drivers/media/tuners/qm1d1c0042*
17021
17022 QNX4 FILESYSTEM
17023 M:      Anders Larsen <al@alarsen.net>
17024 S:      Maintained
17025 W:      http://www.alarsen.net/linux/qnx4fs/
17026 F:      fs/qnx4/
17027 F:      include/uapi/linux/qnx4_fs.h
17028 F:      include/uapi/linux/qnxtypes.h
17029
17030 QORIQ DPAA2 FSL-MC BUS DRIVER
17031 M:      Stuart Yoder <stuyoder@gmail.com>
17032 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
17033 L:      linux-kernel@vger.kernel.org
17034 S:      Maintained
17035 F:      Documentation/ABI/stable/sysfs-bus-fsl-mc
17036 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
17037 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/overview.rst
17038 F:      drivers/bus/fsl-mc/
17039 F:      include/uapi/linux/fsl_mc.h
17040
17041 QT1010 MEDIA DRIVER
17042 M:      Antti Palosaari <crope@iki.fi>
17043 L:      linux-media@vger.kernel.org
17044 S:      Maintained
17045 W:      https://linuxtv.org
17046 W:      http://palosaari.fi/linux/
17047 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17048 T:      git git://linuxtv.org/anttip/media_tree.git
17049 F:      drivers/media/tuners/qt1010*
17050
17051 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
17052 M:      Kalle Valo <kvalo@kernel.org>
17053 L:      ath10k@lists.infradead.org
17054 S:      Supported
17055 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
17056 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
17057 F:      drivers/net/wireless/ath/ath10k/
17058 F:      Documentation/devicetree/bindings/net/wireless/qcom,ath10k.txt
17059
17060 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
17061 M:      Kalle Valo <kvalo@kernel.org>
17062 L:      ath11k@lists.infradead.org
17063 S:      Supported
17064 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
17065 F:      Documentation/devicetree/bindings/net/wireless/qcom,ath11k.yaml
17066 F:      drivers/net/wireless/ath/ath11k/
17067
17068 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
17069 M:      Toke Høiland-Jørgensen <toke@toke.dk>
17070 L:      linux-wireless@vger.kernel.org
17071 S:      Maintained
17072 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
17073 F:      Documentation/devicetree/bindings/net/wireless/qca,ath9k.yaml
17074 F:      drivers/net/wireless/ath/ath9k/
17075
17076 QUALCOMM BAM-DMUX WWAN NETWORK DRIVER
17077 M:      Stephan Gerhold <stephan@gerhold.net>
17078 L:      netdev@vger.kernel.org
17079 L:      linux-arm-msm@vger.kernel.org
17080 S:      Maintained
17081 F:      Documentation/devicetree/bindings/net/qcom,bam-dmux.yaml
17082 F:      drivers/net/wwan/qcom_bam_dmux.c
17083
17084 QUALCOMM CAMERA SUBSYSTEM DRIVER
17085 M:      Robert Foss <rfoss@kernel.org>
17086 M:      Todor Tomov <todor.too@gmail.com>
17087 L:      linux-media@vger.kernel.org
17088 S:      Maintained
17089 F:      Documentation/admin-guide/media/qcom_camss.rst
17090 F:      Documentation/devicetree/bindings/media/*camss*
17091 F:      drivers/media/platform/qcom/camss/
17092
17093 QUALCOMM CLOCK DRIVERS
17094 M:      Bjorn Andersson <andersson@kernel.org>
17095 L:      linux-arm-msm@vger.kernel.org
17096 S:      Supported
17097 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
17098 F:      Documentation/devicetree/bindings/clock/qcom,*
17099 F:      drivers/clk/qcom/
17100 F:      include/dt-bindings/clock/qcom,*
17101
17102 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
17103 M:      Niklas Cassel <nks@flawful.org>
17104 L:      linux-pm@vger.kernel.org
17105 L:      linux-arm-msm@vger.kernel.org
17106 S:      Maintained
17107 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.yaml
17108 F:      drivers/soc/qcom/cpr.c
17109
17110 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
17111 M:      Ilia Lin <ilia.lin@kernel.org>
17112 L:      linux-pm@vger.kernel.org
17113 S:      Maintained
17114 F:      Documentation/devicetree/bindings/cpufreq/qcom-cpufreq-nvmem.yaml
17115 F:      Documentation/devicetree/bindings/opp/opp-v2-kryo-cpu.yaml
17116 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
17117
17118 QUALCOMM CRYPTO DRIVERS
17119 M:      Thara Gopinath <thara.gopinath@gmail.com>
17120 L:      linux-crypto@vger.kernel.org
17121 L:      linux-arm-msm@vger.kernel.org
17122 S:      Maintained
17123 F:      drivers/crypto/qce/
17124
17125 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
17126 M:      Timur Tabi <timur@kernel.org>
17127 L:      netdev@vger.kernel.org
17128 S:      Maintained
17129 F:      drivers/net/ethernet/qualcomm/emac/
17130
17131 QUALCOMM ETHQOS ETHERNET DRIVER
17132 M:      Vinod Koul <vkoul@kernel.org>
17133 R:      Bhupesh Sharma <bhupesh.sharma@linaro.org>
17134 L:      netdev@vger.kernel.org
17135 S:      Maintained
17136 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
17137 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
17138
17139 QUALCOMM FASTRPC DRIVER
17140 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
17141 M:      Amol Maheshwari <amahesh@qti.qualcomm.com>
17142 L:      linux-arm-msm@vger.kernel.org
17143 S:      Maintained
17144 F:      Documentation/devicetree/bindings/misc/qcom,fastrpc.yaml
17145 F:      drivers/misc/fastrpc.c
17146 F:      include/uapi/misc/fastrpc.h
17147
17148 QUALCOMM HEXAGON ARCHITECTURE
17149 M:      Brian Cain <bcain@quicinc.com>
17150 L:      linux-hexagon@vger.kernel.org
17151 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bcain/linux.git
17152 S:      Supported
17153 F:      arch/hexagon/
17154
17155 QUALCOMM HIDMA DRIVER
17156 M:      Sinan Kaya <okaya@kernel.org>
17157 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17158 L:      linux-arm-msm@vger.kernel.org
17159 L:      dmaengine@vger.kernel.org
17160 S:      Supported
17161 F:      drivers/dma/qcom/hidma*
17162
17163 QUALCOMM I2C CCI DRIVER
17164 M:      Loic Poulain <loic.poulain@linaro.org>
17165 M:      Robert Foss <rfoss@kernel.org>
17166 L:      linux-i2c@vger.kernel.org
17167 L:      linux-arm-msm@vger.kernel.org
17168 S:      Maintained
17169 F:      Documentation/devicetree/bindings/i2c/qcom,i2c-cci.yaml
17170 F:      drivers/i2c/busses/i2c-qcom-cci.c
17171
17172 QUALCOMM INTERCONNECT BWMON DRIVER
17173 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17174 L:      linux-arm-msm@vger.kernel.org
17175 S:      Maintained
17176 F:      Documentation/devicetree/bindings/interconnect/qcom,msm8998-bwmon.yaml
17177 F:      drivers/soc/qcom/icc-bwmon.c
17178
17179 QUALCOMM IOMMU
17180 M:      Rob Clark <robdclark@gmail.com>
17181 L:      iommu@lists.linux.dev
17182 L:      linux-arm-msm@vger.kernel.org
17183 S:      Maintained
17184 F:      drivers/iommu/arm/arm-smmu/qcom_iommu.c
17185
17186 QUALCOMM IPC ROUTER (QRTR) DRIVER
17187 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
17188 L:      linux-arm-msm@vger.kernel.org
17189 S:      Maintained
17190 F:      include/trace/events/qrtr.h
17191 F:      include/uapi/linux/qrtr.h
17192 F:      net/qrtr/
17193
17194 QUALCOMM IPCC MAILBOX DRIVER
17195 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
17196 L:      linux-arm-msm@vger.kernel.org
17197 S:      Supported
17198 F:      Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
17199 F:      drivers/mailbox/qcom-ipcc.c
17200 F:      include/dt-bindings/mailbox/qcom-ipcc.h
17201
17202 QUALCOMM IPQ4019 USB PHY DRIVER
17203 M:      Robert Marko <robert.marko@sartura.hr>
17204 M:      Luka Perkov <luka.perkov@sartura.hr>
17205 L:      linux-arm-msm@vger.kernel.org
17206 S:      Maintained
17207 F:      Documentation/devicetree/bindings/phy/qcom-usb-ipq4019-phy.yaml
17208 F:      drivers/phy/qualcomm/phy-qcom-ipq4019-usb.c
17209
17210 QUALCOMM IPQ4019 VQMMC REGULATOR DRIVER
17211 M:      Robert Marko <robert.marko@sartura.hr>
17212 M:      Luka Perkov <luka.perkov@sartura.hr>
17213 L:      linux-arm-msm@vger.kernel.org
17214 S:      Maintained
17215 F:      Documentation/devicetree/bindings/regulator/vqmmc-ipq4019-regulator.yaml
17216 F:      drivers/regulator/vqmmc-ipq4019-regulator.c
17217
17218 QUALCOMM NAND CONTROLLER DRIVER
17219 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
17220 L:      linux-mtd@lists.infradead.org
17221 L:      linux-arm-msm@vger.kernel.org
17222 S:      Maintained
17223 F:      Documentation/devicetree/bindings/mtd/qcom,nandc.yaml
17224 F:      drivers/mtd/nand/raw/qcom_nandc.c
17225
17226 QUALCOMM RMNET DRIVER
17227 M:      Subash Abhinov Kasiviswanathan <quic_subashab@quicinc.com>
17228 M:      Sean Tranchetti <quic_stranche@quicinc.com>
17229 L:      netdev@vger.kernel.org
17230 S:      Maintained
17231 F:      Documentation/networking/device_drivers/cellular/qualcomm/rmnet.rst
17232 F:      drivers/net/ethernet/qualcomm/rmnet/
17233 F:      include/linux/if_rmnet.h
17234
17235 QUALCOMM TSENS THERMAL DRIVER
17236 M:      Amit Kucheria <amitk@kernel.org>
17237 M:      Thara Gopinath <thara.gopinath@gmail.com>
17238 L:      linux-pm@vger.kernel.org
17239 L:      linux-arm-msm@vger.kernel.org
17240 S:      Maintained
17241 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
17242 F:      drivers/thermal/qcom/
17243
17244 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
17245 M:      Stanimir Varbanov <stanimir.k.varbanov@gmail.com>
17246 M:      Vikash Garodia <quic_vgarodia@quicinc.com>
17247 L:      linux-media@vger.kernel.org
17248 L:      linux-arm-msm@vger.kernel.org
17249 S:      Maintained
17250 T:      git git://linuxtv.org/media_tree.git
17251 F:      Documentation/devicetree/bindings/media/*venus*
17252 F:      drivers/media/platform/qcom/venus/
17253
17254 QUALCOMM WCN36XX WIRELESS DRIVER
17255 M:      Loic Poulain <loic.poulain@linaro.org>
17256 L:      wcn36xx@lists.infradead.org
17257 S:      Supported
17258 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
17259 F:      drivers/net/wireless/ath/wcn36xx/
17260
17261 QUANTENNA QTNFMAC WIRELESS DRIVER
17262 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
17263 R:      Sergey Matyukevich <geomatsi@gmail.com>
17264 L:      linux-wireless@vger.kernel.org
17265 S:      Maintained
17266 F:      drivers/net/wireless/quantenna
17267
17268 RADEON and AMDGPU DRM DRIVERS
17269 M:      Alex Deucher <alexander.deucher@amd.com>
17270 M:      Christian König <christian.koenig@amd.com>
17271 M:      Pan, Xinhui <Xinhui.Pan@amd.com>
17272 L:      amd-gfx@lists.freedesktop.org
17273 S:      Supported
17274 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
17275 B:      https://gitlab.freedesktop.org/drm/amd/-/issues
17276 C:      irc://irc.oftc.net/radeon
17277 F:      Documentation/gpu/amdgpu/
17278 F:      drivers/gpu/drm/amd/
17279 F:      drivers/gpu/drm/radeon/
17280 F:      include/uapi/drm/amdgpu_drm.h
17281 F:      include/uapi/drm/radeon_drm.h
17282
17283 RADEON FRAMEBUFFER DISPLAY DRIVER
17284 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
17285 L:      linux-fbdev@vger.kernel.org
17286 S:      Maintained
17287 F:      drivers/video/fbdev/aty/radeon*
17288 F:      include/uapi/linux/radeonfb.h
17289
17290 RADIOSHARK RADIO DRIVER
17291 M:      Hans Verkuil <hverkuil@xs4all.nl>
17292 L:      linux-media@vger.kernel.org
17293 S:      Maintained
17294 T:      git git://linuxtv.org/media_tree.git
17295 F:      drivers/media/radio/radio-shark.c
17296
17297 RADIOSHARK2 RADIO DRIVER
17298 M:      Hans Verkuil <hverkuil@xs4all.nl>
17299 L:      linux-media@vger.kernel.org
17300 S:      Maintained
17301 T:      git git://linuxtv.org/media_tree.git
17302 F:      drivers/media/radio/radio-shark2.c
17303 F:      drivers/media/radio/radio-tea5777.c
17304
17305 RADOS BLOCK DEVICE (RBD)
17306 M:      Ilya Dryomov <idryomov@gmail.com>
17307 R:      Dongsheng Yang <dongsheng.yang@easystack.cn>
17308 L:      ceph-devel@vger.kernel.org
17309 S:      Supported
17310 W:      http://ceph.com/
17311 T:      git https://github.com/ceph/ceph-client.git
17312 F:      Documentation/ABI/testing/sysfs-bus-rbd
17313 F:      drivers/block/rbd.c
17314 F:      drivers/block/rbd_types.h
17315
17316 RAGE128 FRAMEBUFFER DISPLAY DRIVER
17317 M:      Paul Mackerras <paulus@samba.org>
17318 L:      linux-fbdev@vger.kernel.org
17319 S:      Maintained
17320 F:      drivers/video/fbdev/aty/aty128fb.c
17321
17322 RAINSHADOW-CEC DRIVER
17323 M:      Hans Verkuil <hverkuil@xs4all.nl>
17324 L:      linux-media@vger.kernel.org
17325 S:      Maintained
17326 T:      git git://linuxtv.org/media_tree.git
17327 F:      drivers/media/cec/usb/rainshadow/
17328
17329 RALINK MIPS ARCHITECTURE
17330 M:      John Crispin <john@phrozen.org>
17331 L:      linux-mips@vger.kernel.org
17332 S:      Maintained
17333 F:      arch/mips/ralink
17334
17335 RALINK MT7621 MIPS ARCHITECTURE
17336 M:      Arınç ÜNAL <arinc.unal@arinc9.com>
17337 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
17338 L:      linux-mips@vger.kernel.org
17339 S:      Maintained
17340 F:      arch/mips/boot/dts/ralink/mt7621*
17341
17342 RALINK PINCTRL DRIVER
17343 M:      Arınç ÜNAL <arinc.unal@arinc9.com>
17344 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
17345 L:      linux-mips@vger.kernel.org
17346 S:      Maintained
17347 F:      drivers/pinctrl/ralink/
17348
17349 RALINK RT2X00 WIRELESS LAN DRIVER
17350 M:      Stanislaw Gruszka <stf_xl@wp.pl>
17351 M:      Helmut Schaa <helmut.schaa@googlemail.com>
17352 L:      linux-wireless@vger.kernel.org
17353 S:      Maintained
17354 F:      drivers/net/wireless/ralink/rt2x00/
17355
17356 RAMDISK RAM BLOCK DEVICE DRIVER
17357 M:      Jens Axboe <axboe@kernel.dk>
17358 S:      Maintained
17359 F:      Documentation/admin-guide/blockdev/ramdisk.rst
17360 F:      drivers/block/brd.c
17361
17362 RANCHU VIRTUAL BOARD FOR MIPS
17363 M:      Miodrag Dinic <miodrag.dinic@mips.com>
17364 L:      linux-mips@vger.kernel.org
17365 S:      Supported
17366 F:      arch/mips/configs/generic/board-ranchu.config
17367 F:      arch/mips/generic/board-ranchu.c
17368
17369 RANDOM NUMBER DRIVER
17370 M:      "Theodore Ts'o" <tytso@mit.edu>
17371 M:      Jason A. Donenfeld <Jason@zx2c4.com>
17372 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/crng/random.git
17373 S:      Maintained
17374 F:      drivers/char/random.c
17375 F:      drivers/virt/vmgenid.c
17376
17377 RAPIDIO SUBSYSTEM
17378 M:      Matt Porter <mporter@kernel.crashing.org>
17379 M:      Alexandre Bounine <alex.bou9@gmail.com>
17380 S:      Maintained
17381 F:      drivers/rapidio/
17382
17383 RAS INFRASTRUCTURE
17384 M:      Tony Luck <tony.luck@intel.com>
17385 M:      Borislav Petkov <bp@alien8.de>
17386 L:      linux-edac@vger.kernel.org
17387 S:      Maintained
17388 F:      Documentation/admin-guide/ras.rst
17389 F:      drivers/ras/
17390 F:      include/linux/ras.h
17391 F:      include/ras/ras_event.h
17392
17393 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
17394 L:      linux-wireless@vger.kernel.org
17395 S:      Orphan
17396 F:      drivers/net/wireless/ray*
17397
17398 RC-CORE / LIRC FRAMEWORK
17399 M:      Sean Young <sean@mess.org>
17400 L:      linux-media@vger.kernel.org
17401 S:      Maintained
17402 W:      http://linuxtv.org
17403 T:      git git://linuxtv.org/media_tree.git
17404 F:      Documentation/driver-api/media/rc-core.rst
17405 F:      Documentation/userspace-api/media/rc/
17406 F:      drivers/media/rc/
17407 F:      include/media/rc-map.h
17408 F:      include/media/rc-core.h
17409 F:      include/uapi/linux/lirc.h
17410
17411 RCMM REMOTE CONTROLS DECODER
17412 M:      Patrick Lerda <patrick9876@free.fr>
17413 S:      Maintained
17414 F:      drivers/media/rc/ir-rcmm-decoder.c
17415
17416 RCUTORTURE TEST FRAMEWORK
17417 M:      "Paul E. McKenney" <paulmck@kernel.org>
17418 M:      Josh Triplett <josh@joshtriplett.org>
17419 R:      Steven Rostedt <rostedt@goodmis.org>
17420 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
17421 R:      Lai Jiangshan <jiangshanlai@gmail.com>
17422 L:      rcu@vger.kernel.org
17423 S:      Supported
17424 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17425 F:      tools/testing/selftests/rcutorture
17426
17427 RDACM20 Camera Sensor
17428 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
17429 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
17430 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
17431 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
17432 L:      linux-media@vger.kernel.org
17433 S:      Maintained
17434 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
17435 F:      drivers/media/i2c/max9271.c
17436 F:      drivers/media/i2c/max9271.h
17437 F:      drivers/media/i2c/rdacm20.c
17438
17439 RDACM21 Camera Sensor
17440 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
17441 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
17442 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
17443 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
17444 L:      linux-media@vger.kernel.org
17445 S:      Maintained
17446 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
17447 F:      drivers/media/i2c/max9271.c
17448 F:      drivers/media/i2c/max9271.h
17449 F:      drivers/media/i2c/rdacm21.c
17450
17451 RDC R-321X SoC
17452 M:      Florian Fainelli <florian@openwrt.org>
17453 S:      Maintained
17454
17455 RDC R6040 FAST ETHERNET DRIVER
17456 M:      Florian Fainelli <f.fainelli@gmail.com>
17457 L:      netdev@vger.kernel.org
17458 S:      Maintained
17459 F:      drivers/net/ethernet/rdc/r6040.c
17460
17461 RDMAVT - RDMA verbs software
17462 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
17463 L:      linux-rdma@vger.kernel.org
17464 S:      Supported
17465 F:      drivers/infiniband/sw/rdmavt
17466
17467 RDS - RELIABLE DATAGRAM SOCKETS
17468 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
17469 L:      netdev@vger.kernel.org
17470 L:      linux-rdma@vger.kernel.org
17471 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
17472 S:      Supported
17473 W:      https://oss.oracle.com/projects/rds/
17474 F:      Documentation/networking/rds.rst
17475 F:      net/rds/
17476
17477 RDT - RESOURCE ALLOCATION
17478 M:      Fenghua Yu <fenghua.yu@intel.com>
17479 M:      Reinette Chatre <reinette.chatre@intel.com>
17480 L:      linux-kernel@vger.kernel.org
17481 S:      Supported
17482 F:      Documentation/x86/resctrl*
17483 F:      arch/x86/include/asm/resctrl.h
17484 F:      arch/x86/kernel/cpu/resctrl/
17485 F:      tools/testing/selftests/resctrl/
17486
17487 READ-COPY UPDATE (RCU)
17488 M:      "Paul E. McKenney" <paulmck@kernel.org>
17489 M:      Frederic Weisbecker <frederic@kernel.org> (kernel/rcu/tree_nocb.h)
17490 M:      Neeraj Upadhyay <quic_neeraju@quicinc.com> (kernel/rcu/tasks.h)
17491 M:      Josh Triplett <josh@joshtriplett.org>
17492 R:      Steven Rostedt <rostedt@goodmis.org>
17493 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
17494 R:      Lai Jiangshan <jiangshanlai@gmail.com>
17495 R:      Joel Fernandes <joel@joelfernandes.org>
17496 L:      rcu@vger.kernel.org
17497 S:      Supported
17498 W:      http://www.rdrop.com/users/paulmck/RCU/
17499 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17500 F:      Documentation/RCU/
17501 F:      include/linux/rcu*
17502 F:      kernel/rcu/
17503 X:      Documentation/RCU/torture.rst
17504 X:      include/linux/srcu*.h
17505 X:      kernel/rcu/srcu*.c
17506
17507 REAL TIME CLOCK (RTC) SUBSYSTEM
17508 M:      Alessandro Zummo <a.zummo@towertech.it>
17509 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
17510 L:      linux-rtc@vger.kernel.org
17511 S:      Maintained
17512 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
17513 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
17514 F:      Documentation/admin-guide/rtc.rst
17515 F:      Documentation/devicetree/bindings/rtc/
17516 F:      drivers/rtc/
17517 F:      include/linux/platform_data/rtc-*
17518 F:      include/linux/rtc.h
17519 F:      include/linux/rtc/
17520 F:      include/uapi/linux/rtc.h
17521 F:      tools/testing/selftests/rtc/
17522
17523 REALTEK AUDIO CODECS
17524 M:      Oder Chiou <oder_chiou@realtek.com>
17525 S:      Maintained
17526 F:      include/sound/rt*.h
17527 F:      sound/soc/codecs/rt*
17528
17529 REALTEK OTTO WATCHDOG
17530 M:      Sander Vanheule <sander@svanheule.net>
17531 L:      linux-watchdog@vger.kernel.org
17532 S:      Maintained
17533 F:      Documentation/devicetree/bindings/watchdog/realtek,otto-wdt.yaml
17534 F:      drivers/watchdog/realtek_otto_wdt.c
17535
17536 REALTEK RTL83xx SMI DSA ROUTER CHIPS
17537 M:      Linus Walleij <linus.walleij@linaro.org>
17538 M:      Alvin Šipraga <alsi@bang-olufsen.dk>
17539 S:      Maintained
17540 F:      Documentation/devicetree/bindings/net/dsa/realtek.yaml
17541 F:      drivers/net/dsa/realtek/*
17542
17543 REALTEK WIRELESS DRIVER (rtlwifi family)
17544 M:      Ping-Ke Shih <pkshih@realtek.com>
17545 L:      linux-wireless@vger.kernel.org
17546 S:      Maintained
17547 W:      https://wireless.wiki.kernel.org/
17548 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
17549 F:      drivers/net/wireless/realtek/rtlwifi/
17550
17551 REALTEK WIRELESS DRIVER (rtw88)
17552 M:      Yan-Hsuan Chuang <tony0620emma@gmail.com>
17553 L:      linux-wireless@vger.kernel.org
17554 S:      Maintained
17555 F:      drivers/net/wireless/realtek/rtw88/
17556
17557 REALTEK WIRELESS DRIVER (rtw89)
17558 M:      Ping-Ke Shih <pkshih@realtek.com>
17559 L:      linux-wireless@vger.kernel.org
17560 S:      Maintained
17561 F:      drivers/net/wireless/realtek/rtw89/
17562
17563 REDPINE WIRELESS DRIVER
17564 L:      linux-wireless@vger.kernel.org
17565 S:      Orphan
17566 F:      drivers/net/wireless/rsi/
17567
17568 REGISTER MAP ABSTRACTION
17569 M:      Mark Brown <broonie@kernel.org>
17570 L:      linux-kernel@vger.kernel.org
17571 S:      Supported
17572 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
17573 F:      Documentation/devicetree/bindings/regmap/
17574 F:      drivers/base/regmap/
17575 F:      include/linux/regmap.h
17576
17577 REISERFS FILE SYSTEM
17578 L:      reiserfs-devel@vger.kernel.org
17579 S:      Supported
17580 F:      fs/reiserfs/
17581
17582 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
17583 M:      Bjorn Andersson <andersson@kernel.org>
17584 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
17585 L:      linux-remoteproc@vger.kernel.org
17586 S:      Maintained
17587 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux.git rproc-next
17588 F:      Documentation/ABI/testing/sysfs-class-remoteproc
17589 F:      Documentation/devicetree/bindings/remoteproc/
17590 F:      Documentation/staging/remoteproc.rst
17591 F:      drivers/remoteproc/
17592 F:      include/linux/remoteproc.h
17593 F:      include/linux/remoteproc/
17594
17595 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
17596 M:      Bjorn Andersson <andersson@kernel.org>
17597 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
17598 L:      linux-remoteproc@vger.kernel.org
17599 S:      Maintained
17600 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux.git rpmsg-next
17601 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
17602 F:      Documentation/staging/rpmsg.rst
17603 F:      drivers/rpmsg/
17604 F:      include/linux/rpmsg.h
17605 F:      include/linux/rpmsg/
17606 F:      include/uapi/linux/rpmsg.h
17607 F:      samples/rpmsg/
17608
17609 REMOTE PROCESSOR MESSAGING (RPMSG) WWAN CONTROL DRIVER
17610 M:      Stephan Gerhold <stephan@gerhold.net>
17611 L:      netdev@vger.kernel.org
17612 L:      linux-remoteproc@vger.kernel.org
17613 S:      Maintained
17614 F:      drivers/net/wwan/rpmsg_wwan_ctrl.c
17615
17616 RENESAS CLOCK DRIVERS
17617 M:      Geert Uytterhoeven <geert+renesas@glider.be>
17618 L:      linux-renesas-soc@vger.kernel.org
17619 S:      Supported
17620 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-clk
17621 F:      Documentation/devicetree/bindings/clock/renesas,*
17622 F:      drivers/clk/renesas/
17623
17624 RENESAS EMEV2 I2C DRIVER
17625 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
17626 L:      linux-renesas-soc@vger.kernel.org
17627 S:      Supported
17628 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.yaml
17629 F:      drivers/i2c/busses/i2c-emev2.c
17630
17631 RENESAS ETHERNET DRIVERS
17632 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
17633 L:      netdev@vger.kernel.org
17634 L:      linux-renesas-soc@vger.kernel.org
17635 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
17636 F:      drivers/net/ethernet/renesas/
17637 F:      include/linux/sh_eth.h
17638
17639 RENESAS R-CAR GYROADC DRIVER
17640 M:      Marek Vasut <marek.vasut@gmail.com>
17641 L:      linux-iio@vger.kernel.org
17642 S:      Supported
17643 F:      Documentation/devicetree/bindings/iio/adc/renesas,rcar-gyroadc.yaml
17644 F:      drivers/iio/adc/rcar-gyroadc.c
17645
17646 RENESAS R-CAR I2C DRIVERS
17647 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
17648 L:      linux-renesas-soc@vger.kernel.org
17649 S:      Supported
17650 F:      Documentation/devicetree/bindings/i2c/renesas,rcar-i2c.yaml
17651 F:      Documentation/devicetree/bindings/i2c/renesas,rmobile-iic.yaml
17652 F:      drivers/i2c/busses/i2c-rcar.c
17653 F:      drivers/i2c/busses/i2c-sh_mobile.c
17654
17655 RENESAS R-CAR SATA DRIVER
17656 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
17657 S:      Supported
17658 L:      linux-ide@vger.kernel.org
17659 L:      linux-renesas-soc@vger.kernel.org
17660 F:      Documentation/devicetree/bindings/ata/renesas,rcar-sata.yaml
17661 F:      drivers/ata/sata_rcar.c
17662
17663 RENESAS R-CAR THERMAL DRIVERS
17664 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
17665 L:      linux-renesas-soc@vger.kernel.org
17666 S:      Supported
17667 F:      Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.yaml
17668 F:      Documentation/devicetree/bindings/thermal/rcar-thermal.yaml
17669 F:      drivers/thermal/rcar_gen3_thermal.c
17670 F:      drivers/thermal/rcar_thermal.c
17671
17672 RENESAS RIIC DRIVER
17673 M:      Chris Brandt <chris.brandt@renesas.com>
17674 L:      linux-renesas-soc@vger.kernel.org
17675 S:      Supported
17676 F:      Documentation/devicetree/bindings/i2c/renesas,riic.yaml
17677 F:      drivers/i2c/busses/i2c-riic.c
17678
17679 RENESAS USB PHY DRIVER
17680 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
17681 L:      linux-renesas-soc@vger.kernel.org
17682 S:      Maintained
17683 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
17684
17685 RENESAS RZ/G2L A/D DRIVER
17686 M:      Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
17687 L:      linux-iio@vger.kernel.org
17688 L:      linux-renesas-soc@vger.kernel.org
17689 S:      Supported
17690 F:      Documentation/devicetree/bindings/iio/adc/renesas,rzg2l-adc.yaml
17691 F:      drivers/iio/adc/rzg2l_adc.c
17692
17693 RENESAS RZ/N1 A5PSW SWITCH DRIVER
17694 M:      Clément Léger <clement.leger@bootlin.com>
17695 L:      linux-renesas-soc@vger.kernel.org
17696 L:      netdev@vger.kernel.org
17697 S:      Maintained
17698 F:      Documentation/devicetree/bindings/net/dsa/renesas,rzn1-a5psw.yaml
17699 F:      Documentation/devicetree/bindings/net/pcs/renesas,rzn1-miic.yaml
17700 F:      drivers/net/dsa/rzn1_a5psw*
17701 F:      drivers/net/pcs/pcs-rzn1-miic.c
17702 F:      include/dt-bindings/net/pcs-rzn1-miic.h
17703 F:      include/linux/pcs-rzn1-miic.h
17704 F:      net/dsa/tag_rzn1_a5psw.c
17705
17706 RENESAS RZ/N1 RTC CONTROLLER DRIVER
17707 M:      Miquel Raynal <miquel.raynal@bootlin.com>
17708 L:      linux-rtc@vger.kernel.org
17709 L:      linux-renesas-soc@vger.kernel.org
17710 S:      Maintained
17711 F:      Documentation/devicetree/bindings/rtc/renesas,rzn1-rtc.yaml
17712 F:      drivers/rtc/rtc-rzn1.c
17713
17714 RENESAS R-CAR GEN3 & RZ/N1 NAND CONTROLLER DRIVER
17715 M:      Miquel Raynal <miquel.raynal@bootlin.com>
17716 L:      linux-mtd@lists.infradead.org
17717 L:      linux-renesas-soc@vger.kernel.org
17718 S:      Maintained
17719 F:      Documentation/devicetree/bindings/mtd/renesas-nandc.yaml
17720 F:      drivers/mtd/nand/raw/renesas-nand-controller.c
17721
17722 RENESAS VERSACLOCK 7 CLOCK DRIVER
17723 M:      Alex Helms <alexander.helms.jy@renesas.com>
17724 S:      Maintained
17725 F:      Documentation/devicetree/bindings/clock/renesas,versaclock7.yaml
17726 F:      drivers/clk/clk-versaclock7.c
17727
17728 RESET CONTROLLER FRAMEWORK
17729 M:      Philipp Zabel <p.zabel@pengutronix.de>
17730 S:      Maintained
17731 T:      git git://git.pengutronix.de/git/pza/linux
17732 F:      Documentation/devicetree/bindings/reset/
17733 F:      Documentation/driver-api/reset.rst
17734 F:      drivers/reset/
17735 F:      include/dt-bindings/reset/
17736 F:      include/linux/reset-controller.h
17737 F:      include/linux/reset.h
17738 F:      include/linux/reset/
17739 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
17740
17741 RESTARTABLE SEQUENCES SUPPORT
17742 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
17743 M:      Peter Zijlstra <peterz@infradead.org>
17744 M:      "Paul E. McKenney" <paulmck@kernel.org>
17745 M:      Boqun Feng <boqun.feng@gmail.com>
17746 L:      linux-kernel@vger.kernel.org
17747 S:      Supported
17748 F:      include/trace/events/rseq.h
17749 F:      include/uapi/linux/rseq.h
17750 F:      kernel/rseq.c
17751 F:      tools/testing/selftests/rseq/
17752
17753 RFKILL
17754 M:      Johannes Berg <johannes@sipsolutions.net>
17755 L:      linux-wireless@vger.kernel.org
17756 S:      Maintained
17757 W:      https://wireless.wiki.kernel.org/
17758 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
17759 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
17760 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
17761 F:      Documentation/ABI/stable/sysfs-class-rfkill
17762 F:      Documentation/driver-api/rfkill.rst
17763 F:      include/linux/rfkill.h
17764 F:      include/uapi/linux/rfkill.h
17765 F:      net/rfkill/
17766
17767 RHASHTABLE
17768 M:      Thomas Graf <tgraf@suug.ch>
17769 M:      Herbert Xu <herbert@gondor.apana.org.au>
17770 L:      netdev@vger.kernel.org
17771 S:      Maintained
17772 F:      include/linux/rhashtable-types.h
17773 F:      include/linux/rhashtable.h
17774 F:      lib/rhashtable.c
17775 F:      lib/test_rhashtable.c
17776
17777 RICOH R5C592 MEMORYSTICK DRIVER
17778 M:      Maxim Levitsky <maximlevitsky@gmail.com>
17779 S:      Maintained
17780 F:      drivers/memstick/host/r592.*
17781
17782 RICOH SMARTMEDIA/XD DRIVER
17783 M:      Maxim Levitsky <maximlevitsky@gmail.com>
17784 S:      Maintained
17785 F:      drivers/mtd/nand/raw/r852.c
17786 F:      drivers/mtd/nand/raw/r852.h
17787
17788 RISC-V PMU DRIVERS
17789 M:      Atish Patra <atishp@atishpatra.org>
17790 R:      Anup Patel <anup@brainfault.org>
17791 L:      linux-riscv@lists.infradead.org
17792 S:      Supported
17793 F:      drivers/perf/riscv_pmu.c
17794 F:      drivers/perf/riscv_pmu_legacy.c
17795 F:      drivers/perf/riscv_pmu_sbi.c
17796
17797 RISC-V ARCHITECTURE
17798 M:      Paul Walmsley <paul.walmsley@sifive.com>
17799 M:      Palmer Dabbelt <palmer@dabbelt.com>
17800 M:      Albert Ou <aou@eecs.berkeley.edu>
17801 L:      linux-riscv@lists.infradead.org
17802 S:      Supported
17803 Q:      https://patchwork.kernel.org/project/linux-riscv/list/
17804 C:      irc://irc.libera.chat/riscv
17805 P:      Documentation/riscv/patch-acceptance.rst
17806 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
17807 F:      arch/riscv/
17808 N:      riscv
17809 K:      riscv
17810
17811 RISC-V MICROCHIP FPGA SUPPORT
17812 M:      Conor Dooley <conor.dooley@microchip.com>
17813 M:      Daire McNamara <daire.mcnamara@microchip.com>
17814 L:      linux-riscv@lists.infradead.org
17815 S:      Supported
17816 F:      Documentation/devicetree/bindings/clock/microchip,mpfs*.yaml
17817 F:      Documentation/devicetree/bindings/gpio/microchip,mpfs-gpio.yaml
17818 F:      Documentation/devicetree/bindings/i2c/microchip,corei2c.yaml
17819 F:      Documentation/devicetree/bindings/mailbox/microchip,mpfs-mailbox.yaml
17820 F:      Documentation/devicetree/bindings/net/can/microchip,mpfs-can.yaml
17821 F:      Documentation/devicetree/bindings/pwm/microchip,corepwm.yaml
17822 F:      Documentation/devicetree/bindings/riscv/microchip.yaml
17823 F:      Documentation/devicetree/bindings/soc/microchip/microchip,mpfs-sys-controller.yaml
17824 F:      Documentation/devicetree/bindings/spi/microchip,mpfs-spi.yaml
17825 F:      Documentation/devicetree/bindings/usb/microchip,mpfs-musb.yaml
17826 F:      arch/riscv/boot/dts/microchip/
17827 F:      drivers/char/hw_random/mpfs-rng.c
17828 F:      drivers/clk/microchip/clk-mpfs.c
17829 F:      drivers/i2c/busses/i2c-microchip-corei2c.c
17830 F:      drivers/mailbox/mailbox-mpfs.c
17831 F:      drivers/pci/controller/pcie-microchip-host.c
17832 F:      drivers/reset/reset-mpfs.c
17833 F:      drivers/rtc/rtc-mpfs.c
17834 F:      drivers/soc/microchip/mpfs-sys-controller.c
17835 F:      drivers/spi/spi-microchip-core-qspi.c
17836 F:      drivers/spi/spi-microchip-core.c
17837 F:      drivers/usb/musb/mpfs.c
17838 F:      include/soc/microchip/mpfs.h
17839
17840 RISC-V MISC SOC SUPPORT
17841 M:      Conor Dooley <conor@kernel.org>
17842 L:      linux-riscv@lists.infradead.org
17843 S:      Maintained
17844 Q:      https://patchwork.kernel.org/project/linux-riscv/list/
17845 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/conor/linux.git/
17846 F:      Documentation/devicetree/bindings/riscv/
17847 F:      arch/riscv/boot/dts/
17848
17849 RNBD BLOCK DRIVERS
17850 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
17851 M:      Jack Wang <jinpu.wang@ionos.com>
17852 L:      linux-block@vger.kernel.org
17853 S:      Maintained
17854 F:      drivers/block/rnbd/
17855
17856 ROCCAT DRIVERS
17857 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
17858 S:      Maintained
17859 W:      http://sourceforge.net/projects/roccat/
17860 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
17861 F:      drivers/hid/hid-roccat*
17862 F:      include/linux/hid-roccat*
17863
17864 ROCKCHIP CRYPTO DRIVERS
17865 M:      Corentin Labbe <clabbe@baylibre.com>
17866 L:      linux-crypto@vger.kernel.org
17867 S:      Maintained
17868 F:      Documentation/devicetree/bindings/crypto/rockchip,rk3288-crypto.yaml
17869 F:      drivers/crypto/rockchip/
17870
17871 ROCKCHIP I2S TDM DRIVER
17872 M:      Nicolas Frattaroli <frattaroli.nicolas@gmail.com>
17873 L:      linux-rockchip@lists.infradead.org
17874 S:      Maintained
17875 F:      Documentation/devicetree/bindings/sound/rockchip,i2s-tdm.yaml
17876 F:      sound/soc/rockchip/rockchip_i2s_tdm.*
17877
17878 ROCKCHIP ISP V1 DRIVER
17879 M:      Dafna Hirschfeld <dafna@fastmail.com>
17880 L:      linux-media@vger.kernel.org
17881 L:      linux-rockchip@lists.infradead.org
17882 S:      Maintained
17883 F:      Documentation/admin-guide/media/rkisp1.rst
17884 F:      Documentation/devicetree/bindings/media/rockchip-isp1.yaml
17885 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-rkisp1.rst
17886 F:      drivers/media/platform/rockchip/rkisp1
17887 F:      include/uapi/linux/rkisp1-config.h
17888
17889 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
17890 M:      Jacob Chen <jacob-chen@iotwrt.com>
17891 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
17892 L:      linux-media@vger.kernel.org
17893 L:      linux-rockchip@lists.infradead.org
17894 S:      Maintained
17895 F:      Documentation/devicetree/bindings/media/rockchip-rga.yaml
17896 F:      drivers/media/platform/rockchip/rga/
17897
17898 ROCKCHIP VIDEO DECODER DRIVER
17899 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
17900 L:      linux-media@vger.kernel.org
17901 L:      linux-rockchip@lists.infradead.org
17902 S:      Maintained
17903 F:      Documentation/devicetree/bindings/media/rockchip,vdec.yaml
17904 F:      drivers/staging/media/rkvdec/
17905
17906 ROCKER DRIVER
17907 M:      Jiri Pirko <jiri@resnulli.us>
17908 L:      netdev@vger.kernel.org
17909 S:      Supported
17910 F:      drivers/net/ethernet/rocker/
17911
17912 ROCKETPORT EXPRESS/INFINITY DRIVER
17913 M:      Kevin Cernekee <cernekee@gmail.com>
17914 L:      linux-serial@vger.kernel.org
17915 S:      Odd Fixes
17916 F:      drivers/tty/serial/rp2.*
17917
17918 ROHM BD99954 CHARGER IC
17919 M:      Matti Vaittinen <mazziesaccount@gmail.com>
17920 S:      Supported
17921 F:      drivers/power/supply/bd99954-charger.c
17922 F:      drivers/power/supply/bd99954-charger.h
17923
17924 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
17925 M:      Tomasz Duszynski <tduszyns@gmail.com>
17926 S:      Maintained
17927 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
17928 F:      drivers/iio/light/bh1750.c
17929
17930 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
17931 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
17932 L:      linux-kernel@vger.kernel.org
17933 L:      linux-renesas-soc@vger.kernel.org
17934 S:      Supported
17935 F:      Documentation/devicetree/bindings/mfd/rohm,bd9571mwv.yaml
17936 F:      drivers/gpio/gpio-bd9571mwv.c
17937 F:      drivers/mfd/bd9571mwv.c
17938 F:      drivers/regulator/bd9571mwv-regulator.c
17939 F:      include/linux/mfd/bd9571mwv.h
17940
17941 ROHM POWER MANAGEMENT IC DEVICE DRIVERS
17942 M:      Matti Vaittinen <mazziesaccount@gmail.com>
17943 S:      Supported
17944 F:      drivers/clk/clk-bd718x7.c
17945 F:      drivers/gpio/gpio-bd71815.c
17946 F:      drivers/gpio/gpio-bd71828.c
17947 F:      drivers/mfd/rohm-bd71828.c
17948 F:      drivers/mfd/rohm-bd718x7.c
17949 F:      drivers/mfd/rohm-bd9576.c
17950 F:      drivers/regulator/bd71815-regulator.c
17951 F:      drivers/regulator/bd71828-regulator.c
17952 F:      drivers/regulator/bd718x7-regulator.c
17953 F:      drivers/regulator/bd9576-regulator.c
17954 F:      drivers/regulator/rohm-regulator.c
17955 F:      drivers/rtc/rtc-bd70528.c
17956 F:      drivers/watchdog/bd9576_wdt.c
17957 F:      include/linux/mfd/rohm-bd71815.h
17958 F:      include/linux/mfd/rohm-bd71828.h
17959 F:      include/linux/mfd/rohm-bd718x7.h
17960 F:      include/linux/mfd/rohm-bd957x.h
17961 F:      include/linux/mfd/rohm-generic.h
17962 F:      include/linux/mfd/rohm-shared.h
17963
17964 ROSE NETWORK LAYER
17965 M:      Ralf Baechle <ralf@linux-mips.org>
17966 L:      linux-hams@vger.kernel.org
17967 S:      Maintained
17968 W:      http://www.linux-ax25.org/
17969 F:      include/net/rose.h
17970 F:      include/uapi/linux/rose.h
17971 F:      net/rose/
17972
17973 ROTATION DRIVER FOR ALLWINNER A83T
17974 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
17975 L:      linux-media@vger.kernel.org
17976 S:      Maintained
17977 T:      git git://linuxtv.org/media_tree.git
17978 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
17979 F:      drivers/media/platform/sunxi/sun8i-rotate/
17980
17981 RPMSG TTY DRIVER
17982 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
17983 L:      linux-remoteproc@vger.kernel.org
17984 S:      Maintained
17985 F:      drivers/tty/rpmsg_tty.c
17986
17987 RTL2830 MEDIA DRIVER
17988 M:      Antti Palosaari <crope@iki.fi>
17989 L:      linux-media@vger.kernel.org
17990 S:      Maintained
17991 W:      https://linuxtv.org
17992 W:      http://palosaari.fi/linux/
17993 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17994 T:      git git://linuxtv.org/anttip/media_tree.git
17995 F:      drivers/media/dvb-frontends/rtl2830*
17996
17997 RTL2832 MEDIA DRIVER
17998 M:      Antti Palosaari <crope@iki.fi>
17999 L:      linux-media@vger.kernel.org
18000 S:      Maintained
18001 W:      https://linuxtv.org
18002 W:      http://palosaari.fi/linux/
18003 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18004 T:      git git://linuxtv.org/anttip/media_tree.git
18005 F:      drivers/media/dvb-frontends/rtl2832*
18006
18007 RTL2832_SDR MEDIA DRIVER
18008 M:      Antti Palosaari <crope@iki.fi>
18009 L:      linux-media@vger.kernel.org
18010 S:      Maintained
18011 W:      https://linuxtv.org
18012 W:      http://palosaari.fi/linux/
18013 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18014 T:      git git://linuxtv.org/anttip/media_tree.git
18015 F:      drivers/media/dvb-frontends/rtl2832_sdr*
18016
18017 RTL8180 WIRELESS DRIVER
18018 L:      linux-wireless@vger.kernel.org
18019 S:      Orphan
18020 W:      https://wireless.wiki.kernel.org/
18021 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
18022 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
18023
18024 RTL8187 WIRELESS DRIVER
18025 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
18026 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
18027 M:      Larry Finger <Larry.Finger@lwfinger.net>
18028 L:      linux-wireless@vger.kernel.org
18029 S:      Maintained
18030 W:      https://wireless.wiki.kernel.org/
18031 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
18032 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
18033
18034 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
18035 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
18036 L:      linux-wireless@vger.kernel.org
18037 S:      Maintained
18038 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
18039 F:      drivers/net/wireless/realtek/rtl8xxxu/
18040
18041 RTRS TRANSPORT DRIVERS
18042 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
18043 M:      Jack Wang <jinpu.wang@ionos.com>
18044 L:      linux-rdma@vger.kernel.org
18045 S:      Maintained
18046 F:      drivers/infiniband/ulp/rtrs/
18047
18048 RUNTIME VERIFICATION (RV)
18049 M:      Daniel Bristot de Oliveira <bristot@kernel.org>
18050 M:      Steven Rostedt <rostedt@goodmis.org>
18051 L:      linux-trace-devel@vger.kernel.org
18052 S:      Maintained
18053 F:      Documentation/trace/rv/
18054 F:      include/linux/rv.h
18055 F:      include/rv/
18056 F:      kernel/trace/rv/
18057 F:      tools/verification/
18058
18059 RUST
18060 M:      Miguel Ojeda <ojeda@kernel.org>
18061 M:      Alex Gaynor <alex.gaynor@gmail.com>
18062 M:      Wedson Almeida Filho <wedsonaf@gmail.com>
18063 R:      Boqun Feng <boqun.feng@gmail.com>
18064 R:      Gary Guo <gary@garyguo.net>
18065 R:      Björn Roy Baron <bjorn3_gh@protonmail.com>
18066 L:      rust-for-linux@vger.kernel.org
18067 S:      Supported
18068 W:      https://github.com/Rust-for-Linux/linux
18069 B:      https://github.com/Rust-for-Linux/linux/issues
18070 C:      zulip://rust-for-linux.zulipchat.com
18071 T:      git https://github.com/Rust-for-Linux/linux.git rust-next
18072 F:      Documentation/rust/
18073 F:      rust/
18074 F:      samples/rust/
18075 F:      scripts/*rust*
18076 K:      \b(?i:rust)\b
18077
18078 RXRPC SOCKETS (AF_RXRPC)
18079 M:      David Howells <dhowells@redhat.com>
18080 M:      Marc Dionne <marc.dionne@auristor.com>
18081 L:      linux-afs@lists.infradead.org
18082 S:      Supported
18083 W:      https://www.infradead.org/~dhowells/kafs/
18084 F:      Documentation/networking/rxrpc.rst
18085 F:      include/keys/rxrpc-type.h
18086 F:      include/net/af_rxrpc.h
18087 F:      include/trace/events/rxrpc.h
18088 F:      include/uapi/linux/rxrpc.h
18089 F:      net/rxrpc/
18090
18091 S3 SAVAGE FRAMEBUFFER DRIVER
18092 M:      Antonino Daplas <adaplas@gmail.com>
18093 L:      linux-fbdev@vger.kernel.org
18094 S:      Maintained
18095 F:      drivers/video/fbdev/savage/
18096
18097 S390 ARCHITECTURE
18098 M:      Heiko Carstens <hca@linux.ibm.com>
18099 M:      Vasily Gorbik <gor@linux.ibm.com>
18100 M:      Alexander Gordeev <agordeev@linux.ibm.com>
18101 R:      Christian Borntraeger <borntraeger@linux.ibm.com>
18102 R:      Sven Schnelle <svens@linux.ibm.com>
18103 L:      linux-s390@vger.kernel.org
18104 S:      Supported
18105 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
18106 F:      Documentation/driver-api/s390-drivers.rst
18107 F:      Documentation/s390/
18108 F:      arch/s390/
18109 F:      drivers/s390/
18110
18111 S390 COMMON I/O LAYER
18112 M:      Vineeth Vijayan <vneethv@linux.ibm.com>
18113 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
18114 L:      linux-s390@vger.kernel.org
18115 S:      Supported
18116 F:      drivers/s390/cio/
18117
18118 S390 DASD DRIVER
18119 M:      Stefan Haberland <sth@linux.ibm.com>
18120 M:      Jan Hoeppner <hoeppner@linux.ibm.com>
18121 L:      linux-s390@vger.kernel.org
18122 S:      Supported
18123 F:      block/partitions/ibm.c
18124 F:      drivers/s390/block/dasd*
18125 F:      include/linux/dasd_mod.h
18126
18127 S390 IOMMU (PCI)
18128 M:      Matthew Rosato <mjrosato@linux.ibm.com>
18129 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
18130 L:      linux-s390@vger.kernel.org
18131 S:      Supported
18132 F:      drivers/iommu/s390-iommu.c
18133
18134 S390 IUCV NETWORK LAYER
18135 M:      Alexandra Winter <wintera@linux.ibm.com>
18136 M:      Wenjia Zhang <wenjia@linux.ibm.com>
18137 L:      linux-s390@vger.kernel.org
18138 L:      netdev@vger.kernel.org
18139 S:      Supported
18140 F:      drivers/s390/net/*iucv*
18141 F:      include/net/iucv/
18142 F:      net/iucv/
18143
18144 S390 NETWORK DRIVERS
18145 M:      Alexandra Winter <wintera@linux.ibm.com>
18146 M:      Wenjia Zhang <wenjia@linux.ibm.com>
18147 L:      linux-s390@vger.kernel.org
18148 L:      netdev@vger.kernel.org
18149 S:      Supported
18150 F:      drivers/s390/net/
18151
18152 S390 MM
18153 M:      Alexander Gordeev <agordeev@linux.ibm.com>
18154 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
18155 L:      linux-s390@vger.kernel.org
18156 S:      Supported
18157 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
18158 F:      arch/s390/include/asm/pgtable.h
18159 F:      arch/s390/mm
18160
18161 S390 PCI SUBSYSTEM
18162 M:      Niklas Schnelle <schnelle@linux.ibm.com>
18163 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
18164 L:      linux-s390@vger.kernel.org
18165 S:      Supported
18166 F:      arch/s390/pci/
18167 F:      drivers/pci/hotplug/s390_pci_hpc.c
18168 F:      Documentation/s390/pci.rst
18169
18170 S390 VFIO AP DRIVER
18171 M:      Tony Krowiak <akrowiak@linux.ibm.com>
18172 M:      Halil Pasic <pasic@linux.ibm.com>
18173 M:      Jason Herne <jjherne@linux.ibm.com>
18174 L:      linux-s390@vger.kernel.org
18175 S:      Supported
18176 F:      Documentation/s390/vfio-ap*
18177 F:      drivers/s390/crypto/vfio_ap*
18178
18179 S390 VFIO-CCW DRIVER
18180 M:      Eric Farman <farman@linux.ibm.com>
18181 M:      Matthew Rosato <mjrosato@linux.ibm.com>
18182 R:      Halil Pasic <pasic@linux.ibm.com>
18183 L:      linux-s390@vger.kernel.org
18184 L:      kvm@vger.kernel.org
18185 S:      Supported
18186 F:      Documentation/s390/vfio-ccw.rst
18187 F:      drivers/s390/cio/vfio_ccw*
18188 F:      include/uapi/linux/vfio_ccw.h
18189
18190 S390 VFIO-PCI DRIVER
18191 M:      Matthew Rosato <mjrosato@linux.ibm.com>
18192 M:      Eric Farman <farman@linux.ibm.com>
18193 L:      linux-s390@vger.kernel.org
18194 L:      kvm@vger.kernel.org
18195 S:      Supported
18196 F:      arch/s390/kvm/pci*
18197 F:      drivers/vfio/pci/vfio_pci_zdev.c
18198 F:      include/uapi/linux/vfio_zdev.h
18199
18200 S390 ZCRYPT DRIVER
18201 M:      Harald Freudenberger <freude@linux.ibm.com>
18202 L:      linux-s390@vger.kernel.org
18203 S:      Supported
18204 F:      drivers/s390/crypto/
18205
18206 S390 ZFCP DRIVER
18207 M:      Steffen Maier <maier@linux.ibm.com>
18208 M:      Benjamin Block <bblock@linux.ibm.com>
18209 L:      linux-s390@vger.kernel.org
18210 S:      Supported
18211 F:      drivers/s390/scsi/zfcp_*
18212
18213 SAA6588 RDS RECEIVER DRIVER
18214 M:      Hans Verkuil <hverkuil@xs4all.nl>
18215 L:      linux-media@vger.kernel.org
18216 S:      Odd Fixes
18217 W:      https://linuxtv.org
18218 T:      git git://linuxtv.org/media_tree.git
18219 F:      drivers/media/i2c/saa6588*
18220
18221 SAA7134 VIDEO4LINUX DRIVER
18222 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18223 L:      linux-media@vger.kernel.org
18224 S:      Odd fixes
18225 W:      https://linuxtv.org
18226 T:      git git://linuxtv.org/media_tree.git
18227 F:      Documentation/driver-api/media/drivers/saa7134*
18228 F:      drivers/media/pci/saa7134/
18229
18230 SAA7146 VIDEO4LINUX-2 DRIVER
18231 M:      Hans Verkuil <hverkuil@xs4all.nl>
18232 L:      linux-media@vger.kernel.org
18233 S:      Maintained
18234 T:      git git://linuxtv.org/media_tree.git
18235 F:      drivers/staging/media/deprecated/saa7146/
18236
18237 SAFESETID SECURITY MODULE
18238 M:      Micah Morton <mortonm@chromium.org>
18239 S:      Supported
18240 F:      Documentation/admin-guide/LSM/SafeSetID.rst
18241 F:      security/safesetid/
18242
18243 SAMSUNG AUDIO (ASoC) DRIVERS
18244 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18245 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18246 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18247 S:      Supported
18248 B:      mailto:linux-samsung-soc@vger.kernel.org
18249 F:      Documentation/devicetree/bindings/sound/samsung*
18250 F:      sound/soc/samsung/
18251
18252 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
18253 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18254 L:      linux-crypto@vger.kernel.org
18255 L:      linux-samsung-soc@vger.kernel.org
18256 S:      Maintained
18257 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
18258 F:      drivers/crypto/exynos-rng.c
18259
18260 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
18261 M:      Łukasz Stelmach <l.stelmach@samsung.com>
18262 L:      linux-samsung-soc@vger.kernel.org
18263 S:      Maintained
18264 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.yaml
18265 F:      drivers/char/hw_random/exynos-trng.c
18266
18267 SAMSUNG FRAMEBUFFER DRIVER
18268 M:      Jingoo Han <jingoohan1@gmail.com>
18269 L:      linux-fbdev@vger.kernel.org
18270 S:      Maintained
18271 F:      drivers/video/fbdev/s3c-fb.c
18272
18273 SAMSUNG INTERCONNECT DRIVERS
18274 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18275 M:      Artur Świgoń <a.swigon@samsung.com>
18276 L:      linux-pm@vger.kernel.org
18277 L:      linux-samsung-soc@vger.kernel.org
18278 S:      Supported
18279 F:      drivers/interconnect/samsung/
18280
18281 SAMSUNG LAPTOP DRIVER
18282 M:      Corentin Chary <corentin.chary@gmail.com>
18283 L:      platform-driver-x86@vger.kernel.org
18284 S:      Maintained
18285 F:      drivers/platform/x86/samsung-laptop.c
18286
18287 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
18288 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18289 L:      linux-kernel@vger.kernel.org
18290 L:      linux-samsung-soc@vger.kernel.org
18291 S:      Supported
18292 B:      mailto:linux-samsung-soc@vger.kernel.org
18293 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.yaml
18294 F:      Documentation/devicetree/bindings/mfd/samsung,s2m*.yaml
18295 F:      Documentation/devicetree/bindings/mfd/samsung,s5m*.yaml
18296 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.yaml
18297 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.yaml
18298 F:      drivers/clk/clk-s2mps11.c
18299 F:      drivers/mfd/sec*.c
18300 F:      drivers/regulator/s2m*.c
18301 F:      drivers/regulator/s5m*.c
18302 F:      drivers/rtc/rtc-s5m.c
18303 F:      include/linux/mfd/samsung/
18304
18305 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
18306 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
18307 L:      linux-media@vger.kernel.org
18308 L:      linux-samsung-soc@vger.kernel.org
18309 S:      Maintained
18310 F:      drivers/media/platform/samsung/s3c-camif/
18311 F:      include/media/drv-intf/s3c_camif.h
18312
18313 SAMSUNG S3FWRN5 NFC DRIVER
18314 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18315 L:      linux-nfc@lists.01.org (subscribers-only)
18316 S:      Maintained
18317 F:      Documentation/devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml
18318 F:      drivers/nfc/s3fwrn5
18319
18320 SAMSUNG S5C73M3 CAMERA DRIVER
18321 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18322 M:      Andrzej Hajda <andrzej.hajda@intel.com>
18323 L:      linux-media@vger.kernel.org
18324 S:      Supported
18325 F:      drivers/media/i2c/s5c73m3/*
18326
18327 SAMSUNG S5K5BAF CAMERA DRIVER
18328 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18329 M:      Andrzej Hajda <andrzej.hajda@intel.com>
18330 L:      linux-media@vger.kernel.org
18331 S:      Supported
18332 F:      drivers/media/i2c/s5k5baf.c
18333
18334 SAMSUNG S5P Security SubSystem (SSS) DRIVER
18335 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18336 M:      Vladimir Zapolskiy <vz@mleia.com>
18337 L:      linux-crypto@vger.kernel.org
18338 L:      linux-samsung-soc@vger.kernel.org
18339 S:      Maintained
18340 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
18341 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
18342 F:      drivers/crypto/s5p-sss.c
18343
18344 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
18345 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18346 L:      linux-media@vger.kernel.org
18347 S:      Supported
18348 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
18349 F:      drivers/media/platform/samsung/exynos4-is/
18350
18351 SAMSUNG SOC CLOCK DRIVERS
18352 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18353 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18354 M:      Tomasz Figa <tomasz.figa@gmail.com>
18355 M:      Chanwoo Choi <cw00.choi@samsung.com>
18356 R:      Alim Akhtar <alim.akhtar@samsung.com>
18357 L:      linux-samsung-soc@vger.kernel.org
18358 S:      Supported
18359 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux.git
18360 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
18361 F:      Documentation/devicetree/bindings/clock/samsung,*.yaml
18362 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
18363 F:      drivers/clk/samsung/
18364 F:      include/dt-bindings/clock/exynos*.h
18365 F:      include/dt-bindings/clock/s5p*.h
18366 F:      include/dt-bindings/clock/samsung,*.h
18367 F:      include/linux/clk/samsung.h
18368
18369 SAMSUNG SPI DRIVERS
18370 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18371 M:      Andi Shyti <andi@etezian.org>
18372 L:      linux-spi@vger.kernel.org
18373 L:      linux-samsung-soc@vger.kernel.org
18374 S:      Maintained
18375 F:      Documentation/devicetree/bindings/spi/samsung,spi*.yaml
18376 F:      drivers/spi/spi-s3c*
18377 F:      include/linux/platform_data/spi-s3c64xx.h
18378
18379 SAMSUNG SXGBE DRIVERS
18380 M:      Byungho An <bh74.an@samsung.com>
18381 L:      netdev@vger.kernel.org
18382 S:      Supported
18383 F:      drivers/net/ethernet/samsung/sxgbe/
18384
18385 SAMSUNG THERMAL DRIVER
18386 M:      Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
18387 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18388 L:      linux-pm@vger.kernel.org
18389 L:      linux-samsung-soc@vger.kernel.org
18390 S:      Maintained
18391 F:      Documentation/devicetree/bindings/thermal/samsung,exynos-thermal.yaml
18392 F:      drivers/thermal/samsung/
18393
18394 SAMSUNG USB2 PHY DRIVER
18395 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18396 L:      linux-kernel@vger.kernel.org
18397 S:      Supported
18398 F:      Documentation/devicetree/bindings/phy/samsung,usb2-phy.yaml
18399 F:      Documentation/driver-api/phy/samsung-usb2.rst
18400 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
18401 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
18402 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
18403 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
18404 F:      drivers/phy/samsung/phy-samsung-usb2.c
18405 F:      drivers/phy/samsung/phy-samsung-usb2.h
18406
18407 SANCLOUD BEAGLEBONE ENHANCED DEVICE TREE
18408 M:      Paul Barker <paul.barker@sancloud.com>
18409 R:      Marc Murphy <marc.murphy@sancloud.com>
18410 S:      Supported
18411 F:      arch/arm/boot/dts/am335x-sancloud*
18412
18413 SC1200 WDT DRIVER
18414 M:      Zwane Mwaikambo <zwanem@gmail.com>
18415 S:      Maintained
18416 F:      drivers/watchdog/sc1200wdt.c
18417
18418 SCHEDULER
18419 M:      Ingo Molnar <mingo@redhat.com>
18420 M:      Peter Zijlstra <peterz@infradead.org>
18421 M:      Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
18422 M:      Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
18423 R:      Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
18424 R:      Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
18425 R:      Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
18426 R:      Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
18427 R:      Daniel Bristot de Oliveira <bristot@redhat.com> (SCHED_DEADLINE)
18428 R:      Valentin Schneider <vschneid@redhat.com> (TOPOLOGY)
18429 L:      linux-kernel@vger.kernel.org
18430 S:      Maintained
18431 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
18432 F:      include/linux/preempt.h
18433 F:      include/linux/sched.h
18434 F:      include/linux/wait.h
18435 F:      include/uapi/linux/sched.h
18436 F:      kernel/sched/
18437
18438 SCR24X CHIP CARD INTERFACE DRIVER
18439 M:      Lubomir Rintel <lkundrak@v3.sk>
18440 S:      Supported
18441 F:      drivers/char/pcmcia/scr24x_cs.c
18442
18443 SCSI RDMA PROTOCOL (SRP) INITIATOR
18444 M:      Bart Van Assche <bvanassche@acm.org>
18445 L:      linux-rdma@vger.kernel.org
18446 S:      Supported
18447 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
18448 F:      drivers/infiniband/ulp/srp/
18449 F:      include/scsi/srp.h
18450
18451 SCSI RDMA PROTOCOL (SRP) TARGET
18452 M:      Bart Van Assche <bvanassche@acm.org>
18453 L:      linux-rdma@vger.kernel.org
18454 L:      target-devel@vger.kernel.org
18455 S:      Supported
18456 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
18457 F:      drivers/infiniband/ulp/srpt/
18458
18459 SCSI SG DRIVER
18460 M:      Doug Gilbert <dgilbert@interlog.com>
18461 L:      linux-scsi@vger.kernel.org
18462 S:      Maintained
18463 W:      http://sg.danny.cz/sg
18464 F:      Documentation/scsi/scsi-generic.rst
18465 F:      drivers/scsi/sg.c
18466 F:      include/scsi/sg.h
18467
18468 SCSI SUBSYSTEM
18469 M:      "James E.J. Bottomley" <jejb@linux.ibm.com>
18470 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
18471 L:      linux-scsi@vger.kernel.org
18472 S:      Maintained
18473 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
18474 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
18475 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
18476 F:      Documentation/devicetree/bindings/scsi/
18477 F:      drivers/scsi/
18478 F:      drivers/ufs/
18479 F:      include/scsi/
18480
18481 SCSI TAPE DRIVER
18482 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
18483 L:      linux-scsi@vger.kernel.org
18484 S:      Maintained
18485 F:      Documentation/scsi/st.rst
18486 F:      drivers/scsi/st.*
18487 F:      drivers/scsi/st_*.h
18488
18489 SCSI TARGET CORE USER DRIVER
18490 M:      Bodo Stroesser <bostroesser@gmail.com>
18491 L:      linux-scsi@vger.kernel.org
18492 L:      target-devel@vger.kernel.org
18493 S:      Supported
18494 F:      Documentation/target/tcmu-design.rst
18495 F:      drivers/target/target_core_user.c
18496 F:      include/uapi/linux/target_core_user.h
18497
18498 SCSI TARGET SUBSYSTEM
18499 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
18500 L:      linux-scsi@vger.kernel.org
18501 L:      target-devel@vger.kernel.org
18502 S:      Supported
18503 W:      http://www.linux-iscsi.org
18504 Q:      https://patchwork.kernel.org/project/target-devel/list/
18505 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
18506 F:      Documentation/target/
18507 F:      drivers/target/
18508 F:      include/target/
18509
18510 SCTP PROTOCOL
18511 M:      Neil Horman <nhorman@tuxdriver.com>
18512 M:      Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
18513 M:      Xin Long <lucien.xin@gmail.com>
18514 L:      linux-sctp@vger.kernel.org
18515 S:      Maintained
18516 W:      http://lksctp.sourceforge.net
18517 F:      Documentation/networking/sctp.rst
18518 F:      include/linux/sctp.h
18519 F:      include/net/sctp/
18520 F:      include/uapi/linux/sctp.h
18521 F:      net/sctp/
18522
18523 SCx200 CPU SUPPORT
18524 M:      Jim Cromie <jim.cromie@gmail.com>
18525 S:      Odd Fixes
18526 F:      Documentation/i2c/busses/scx200_acb.rst
18527 F:      arch/x86/platform/scx200/
18528 F:      drivers/i2c/busses/scx200*
18529 F:      drivers/mtd/maps/scx200_docflash.c
18530 F:      drivers/watchdog/scx200_wdt.c
18531 F:      include/linux/scx200.h
18532
18533 SCx200 GPIO DRIVER
18534 M:      Jim Cromie <jim.cromie@gmail.com>
18535 S:      Maintained
18536 F:      drivers/char/scx200_gpio.c
18537 F:      include/linux/scx200_gpio.h
18538
18539 SCx200 HRT CLOCKSOURCE DRIVER
18540 M:      Jim Cromie <jim.cromie@gmail.com>
18541 S:      Maintained
18542 F:      drivers/clocksource/scx200_hrt.c
18543
18544 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
18545 M:      Sascha Sommer <saschasommer@freenet.de>
18546 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
18547 S:      Maintained
18548 F:      drivers/mmc/host/sdricoh_cs.c
18549
18550 SECO BOARDS CEC DRIVER
18551 M:      Ettore Chimenti <ek5.chimenti@gmail.com>
18552 S:      Maintained
18553 F:      drivers/media/cec/platform/seco/seco-cec.c
18554 F:      drivers/media/cec/platform/seco/seco-cec.h
18555
18556 SECURE COMPUTING
18557 M:      Kees Cook <keescook@chromium.org>
18558 R:      Andy Lutomirski <luto@amacapital.net>
18559 R:      Will Drewry <wad@chromium.org>
18560 S:      Supported
18561 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/seccomp
18562 F:      Documentation/userspace-api/seccomp_filter.rst
18563 F:      include/linux/seccomp.h
18564 F:      include/uapi/linux/seccomp.h
18565 F:      kernel/seccomp.c
18566 F:      tools/testing/selftests/kselftest_harness.h
18567 F:      tools/testing/selftests/seccomp/*
18568 K:      \bsecure_computing
18569 K:      \bTIF_SECCOMP\b
18570
18571 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
18572 M:      Kamal Dasu <kdasu.kdev@gmail.com>
18573 M:      Al Cooper <alcooperx@gmail.com>
18574 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
18575 L:      linux-mmc@vger.kernel.org
18576 S:      Maintained
18577 F:      drivers/mmc/host/sdhci-brcmstb*
18578
18579 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
18580 M:      Adrian Hunter <adrian.hunter@intel.com>
18581 L:      linux-mmc@vger.kernel.org
18582 S:      Supported
18583 F:      Documentation/devicetree/bindings/mmc/sdhci-common.yaml
18584 F:      drivers/mmc/host/sdhci*
18585
18586 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
18587 M:      Eugen Hristev <eugen.hristev@microchip.com>
18588 L:      linux-mmc@vger.kernel.org
18589 S:      Supported
18590 F:      drivers/mmc/host/sdhci-of-at91.c
18591
18592 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
18593 M:      Ben Dooks <ben-linux@fluff.org>
18594 M:      Jaehoon Chung <jh80.chung@samsung.com>
18595 L:      linux-mmc@vger.kernel.org
18596 S:      Maintained
18597 F:      drivers/mmc/host/sdhci-s3c*
18598
18599 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
18600 M:      Viresh Kumar <vireshk@kernel.org>
18601 L:      linux-mmc@vger.kernel.org
18602 S:      Maintained
18603 F:      drivers/mmc/host/sdhci-spear.c
18604
18605 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
18606 M:      Vignesh Raghavendra <vigneshr@ti.com>
18607 L:      linux-mmc@vger.kernel.org
18608 S:      Maintained
18609 F:      drivers/mmc/host/sdhci-omap.c
18610
18611 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) NXP i.MX DRIVER
18612 M:      Haibo Chen <haibo.chen@nxp.com>
18613 L:      linux-imx@nxp.com
18614 L:      linux-mmc@vger.kernel.org
18615 S:      Maintained
18616 F:      drivers/mmc/host/sdhci-esdhc-imx.c
18617
18618 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
18619 M:      Jonathan Derrick <jonathan.derrick@linux.dev>
18620 L:      linux-block@vger.kernel.org
18621 S:      Supported
18622 F:      block/opal_proto.h
18623 F:      block/sed*
18624 F:      include/linux/sed*
18625 F:      include/uapi/linux/sed*
18626
18627 SECURITY CONTACT
18628 M:      Security Officers <security@kernel.org>
18629 S:      Supported
18630 F:      Documentation/admin-guide/security-bugs.rst
18631
18632 SECURITY SUBSYSTEM
18633 M:      Paul Moore <paul@paul-moore.com>
18634 M:      James Morris <jmorris@namei.org>
18635 M:      "Serge E. Hallyn" <serge@hallyn.com>
18636 L:      linux-security-module@vger.kernel.org (suggested Cc:)
18637 S:      Supported
18638 W:      http://kernsec.org/
18639 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/lsm.git
18640 F:      security/
18641 X:      security/selinux/
18642
18643 SELINUX SECURITY MODULE
18644 M:      Paul Moore <paul@paul-moore.com>
18645 M:      Stephen Smalley <stephen.smalley.work@gmail.com>
18646 M:      Eric Paris <eparis@parisplace.org>
18647 L:      selinux@vger.kernel.org
18648 S:      Supported
18649 W:      https://selinuxproject.org
18650 W:      https://github.com/SELinuxProject
18651 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
18652 F:      Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
18653 F:      Documentation/ABI/obsolete/sysfs-selinux-disable
18654 F:      Documentation/admin-guide/LSM/SELinux.rst
18655 F:      include/trace/events/avc.h
18656 F:      include/uapi/linux/selinux_netlink.h
18657 F:      scripts/selinux/
18658 F:      security/selinux/
18659
18660 SENSABLE PHANTOM
18661 M:      Jiri Slaby <jirislaby@kernel.org>
18662 S:      Maintained
18663 F:      drivers/misc/phantom.c
18664 F:      include/uapi/linux/phantom.h
18665
18666 SENSEAIR SUNRISE 006-0-0007
18667 M:      Jacopo Mondi <jacopo@jmondi.org>
18668 S:      Maintained
18669 F:      Documentation/ABI/testing/sysfs-bus-iio-chemical-sunrise-co2
18670 F:      Documentation/devicetree/bindings/iio/chemical/senseair,sunrise.yaml
18671 F:      drivers/iio/chemical/sunrise_co2.c
18672
18673 SENSIRION SCD30 CARBON DIOXIDE SENSOR DRIVER
18674 M:      Tomasz Duszynski <tomasz.duszynski@octakon.com>
18675 S:      Maintained
18676 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd30.yaml
18677 F:      drivers/iio/chemical/scd30.h
18678 F:      drivers/iio/chemical/scd30_core.c
18679 F:      drivers/iio/chemical/scd30_i2c.c
18680 F:      drivers/iio/chemical/scd30_serial.c
18681
18682 SENSIRION SCD4X CARBON DIOXIDE SENSOR DRIVER
18683 M:      Roan van Dijk <roan@protonic.nl>
18684 S:      Maintained
18685 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd4x.yaml
18686 F:      drivers/iio/chemical/scd4x.c
18687
18688 SENSIRION SGP40 GAS SENSOR DRIVER
18689 M:      Andreas Klinger <ak@it-klinger.de>
18690 S:      Maintained
18691 F:      Documentation/ABI/testing/sysfs-bus-iio-chemical-sgp40
18692 F:      drivers/iio/chemical/sgp40.c
18693
18694 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
18695 M:      Tomasz Duszynski <tduszyns@gmail.com>
18696 S:      Maintained
18697 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
18698 F:      drivers/iio/chemical/sps30.c
18699 F:      drivers/iio/chemical/sps30_i2c.c
18700 F:      drivers/iio/chemical/sps30_serial.c
18701
18702 SERIAL DEVICE BUS
18703 M:      Rob Herring <robh@kernel.org>
18704 L:      linux-serial@vger.kernel.org
18705 S:      Maintained
18706 F:      Documentation/devicetree/bindings/serial/serial.yaml
18707 F:      drivers/tty/serdev/
18708 F:      include/linux/serdev.h
18709
18710 SERIAL DRIVERS
18711 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18712 L:      linux-serial@vger.kernel.org
18713 S:      Maintained
18714 F:      Documentation/devicetree/bindings/serial/
18715 F:      drivers/tty/serial/
18716
18717 SERIAL IR RECEIVER
18718 M:      Sean Young <sean@mess.org>
18719 L:      linux-media@vger.kernel.org
18720 S:      Maintained
18721 F:      drivers/media/rc/serial_ir.c
18722
18723 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
18724 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
18725 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18726 S:      Maintained
18727 F:      Documentation/devicetree/bindings/slimbus/
18728 F:      drivers/slimbus/
18729 F:      include/linux/slimbus.h
18730
18731 SFC NETWORK DRIVER
18732 M:      Edward Cree <ecree.xilinx@gmail.com>
18733 M:      Martin Habets <habetsm.xilinx@gmail.com>
18734 L:      netdev@vger.kernel.org
18735 S:      Supported
18736 F:      drivers/net/ethernet/sfc/
18737
18738 SFF/SFP/SFP+ MODULE SUPPORT
18739 M:      Russell King <linux@armlinux.org.uk>
18740 L:      netdev@vger.kernel.org
18741 S:      Maintained
18742 F:      Documentation/devicetree/bindings/net/sff,sfp.yaml
18743 F:      drivers/net/phy/phylink.c
18744 F:      drivers/net/phy/sfp*
18745 F:      include/linux/mdio/mdio-i2c.h
18746 F:      include/linux/phylink.h
18747 F:      include/linux/sfp.h
18748 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)
18749
18750 SGI GRU DRIVER
18751 M:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
18752 S:      Maintained
18753 F:      drivers/misc/sgi-gru/
18754
18755 SGI XP/XPC/XPNET DRIVER
18756 M:      Robin Holt <robinmholt@gmail.com>
18757 M:      Steve Wahl <steve.wahl@hpe.com>
18758 R:      Mike Travis <mike.travis@hpe.com>
18759 S:      Maintained
18760 F:      drivers/misc/sgi-xp/
18761
18762 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
18763 M:      Karsten Graul <kgraul@linux.ibm.com>
18764 M:      Wenjia Zhang <wenjia@linux.ibm.com>
18765 M:      Jan Karcher <jaka@linux.ibm.com>
18766 L:      linux-s390@vger.kernel.org
18767 S:      Supported
18768 F:      net/smc/
18769
18770 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
18771 M:      Linus Walleij <linus.walleij@linaro.org>
18772 L:      linux-iio@vger.kernel.org
18773 S:      Maintained
18774 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
18775 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
18776 F:      drivers/iio/light/gp2ap002.c
18777
18778 SHARP RJ54N1CB0C SENSOR DRIVER
18779 M:      Jacopo Mondi <jacopo@jmondi.org>
18780 L:      linux-media@vger.kernel.org
18781 S:      Odd fixes
18782 T:      git git://linuxtv.org/media_tree.git
18783 F:      drivers/media/i2c/rj54n1cb0c.c
18784 F:      include/media/i2c/rj54n1cb0c.h
18785
18786 SH_VOU V4L2 OUTPUT DRIVER
18787 L:      linux-media@vger.kernel.org
18788 S:      Orphan
18789 F:      drivers/media/platform/renesas/sh_vou.c
18790 F:      include/media/drv-intf/sh_vou.h
18791
18792 SI2157 MEDIA DRIVER
18793 M:      Antti Palosaari <crope@iki.fi>
18794 L:      linux-media@vger.kernel.org
18795 S:      Maintained
18796 W:      https://linuxtv.org
18797 W:      http://palosaari.fi/linux/
18798 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18799 T:      git git://linuxtv.org/anttip/media_tree.git
18800 F:      drivers/media/tuners/si2157*
18801
18802 SI2165 MEDIA DRIVER
18803 M:      Matthias Schwarzott <zzam@gentoo.org>
18804 L:      linux-media@vger.kernel.org
18805 S:      Maintained
18806 W:      https://linuxtv.org
18807 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18808 F:      drivers/media/dvb-frontends/si2165*
18809
18810 SI2168 MEDIA DRIVER
18811 M:      Antti Palosaari <crope@iki.fi>
18812 L:      linux-media@vger.kernel.org
18813 S:      Maintained
18814 W:      https://linuxtv.org
18815 W:      http://palosaari.fi/linux/
18816 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18817 T:      git git://linuxtv.org/anttip/media_tree.git
18818 F:      drivers/media/dvb-frontends/si2168*
18819
18820 SI470X FM RADIO RECEIVER I2C DRIVER
18821 M:      Hans Verkuil <hverkuil@xs4all.nl>
18822 L:      linux-media@vger.kernel.org
18823 S:      Odd Fixes
18824 W:      https://linuxtv.org
18825 T:      git git://linuxtv.org/media_tree.git
18826 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
18827
18828 SI470X FM RADIO RECEIVER USB DRIVER
18829 M:      Hans Verkuil <hverkuil@xs4all.nl>
18830 L:      linux-media@vger.kernel.org
18831 S:      Maintained
18832 W:      https://linuxtv.org
18833 T:      git git://linuxtv.org/media_tree.git
18834 F:      drivers/media/radio/si470x/radio-si470x-common.c
18835 F:      drivers/media/radio/si470x/radio-si470x-usb.c
18836 F:      drivers/media/radio/si470x/radio-si470x.h
18837
18838 SI4713 FM RADIO TRANSMITTER I2C DRIVER
18839 M:      Eduardo Valentin <edubezval@gmail.com>
18840 L:      linux-media@vger.kernel.org
18841 S:      Odd Fixes
18842 W:      https://linuxtv.org
18843 T:      git git://linuxtv.org/media_tree.git
18844 F:      drivers/media/radio/si4713/si4713.?
18845
18846 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
18847 M:      Eduardo Valentin <edubezval@gmail.com>
18848 L:      linux-media@vger.kernel.org
18849 S:      Odd Fixes
18850 W:      https://linuxtv.org
18851 T:      git git://linuxtv.org/media_tree.git
18852 F:      drivers/media/radio/si4713/radio-platform-si4713.c
18853
18854 SI4713 FM RADIO TRANSMITTER USB DRIVER
18855 M:      Hans Verkuil <hverkuil@xs4all.nl>
18856 L:      linux-media@vger.kernel.org
18857 S:      Maintained
18858 W:      https://linuxtv.org
18859 T:      git git://linuxtv.org/media_tree.git
18860 F:      drivers/media/radio/si4713/radio-usb-si4713.c
18861
18862 SIANO DVB DRIVER
18863 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18864 L:      linux-media@vger.kernel.org
18865 S:      Odd fixes
18866 W:      https://linuxtv.org
18867 T:      git git://linuxtv.org/media_tree.git
18868 F:      drivers/media/common/siano/
18869 F:      drivers/media/mmc/siano/
18870 F:      drivers/media/usb/siano/
18871 F:      drivers/media/usb/siano/
18872
18873 SIFIVE DRIVERS
18874 M:      Palmer Dabbelt <palmer@dabbelt.com>
18875 M:      Paul Walmsley <paul.walmsley@sifive.com>
18876 L:      linux-riscv@lists.infradead.org
18877 S:      Supported
18878 N:      sifive
18879 K:      [^@]sifive
18880
18881 SIFIVE FU540 SYSTEM-ON-CHIP
18882 M:      Paul Walmsley <paul.walmsley@sifive.com>
18883 M:      Palmer Dabbelt <palmer@dabbelt.com>
18884 L:      linux-riscv@lists.infradead.org
18885 S:      Supported
18886 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
18887 N:      fu540
18888 K:      fu540
18889
18890 SIFIVE PDMA DRIVER
18891 M:      Green Wan <green.wan@sifive.com>
18892 S:      Maintained
18893 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
18894 F:      drivers/dma/sf-pdma/
18895
18896 SIFIVE SOC DRIVERS
18897 M:      Conor Dooley <conor@kernel.org>
18898 L:      linux-riscv@lists.infradead.org
18899 S:      Maintained
18900 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/conor/linux.git/
18901 F:      drivers/soc/sifive/
18902
18903 SILEAD TOUCHSCREEN DRIVER
18904 M:      Hans de Goede <hdegoede@redhat.com>
18905 L:      linux-input@vger.kernel.org
18906 L:      platform-driver-x86@vger.kernel.org
18907 S:      Maintained
18908 F:      drivers/input/touchscreen/silead.c
18909 F:      drivers/platform/x86/touchscreen_dmi.c
18910
18911 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
18912 M:      Jérôme Pouiller <jerome.pouiller@silabs.com>
18913 S:      Supported
18914 F:      Documentation/devicetree/bindings/net/wireless/silabs,wfx.yaml
18915 F:      drivers/net/wireless/silabs/wfx/
18916
18917 SILICON MOTION SM712 FRAME BUFFER DRIVER
18918 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
18919 M:      Teddy Wang <teddy.wang@siliconmotion.com>
18920 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
18921 L:      linux-fbdev@vger.kernel.org
18922 S:      Maintained
18923 F:      Documentation/fb/sm712fb.rst
18924 F:      drivers/video/fbdev/sm712*
18925
18926 SILVACO I3C DUAL-ROLE MASTER
18927 M:      Miquel Raynal <miquel.raynal@bootlin.com>
18928 M:      Conor Culhane <conor.culhane@silvaco.com>
18929 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
18930 S:      Maintained
18931 F:      Documentation/devicetree/bindings/i3c/silvaco,i3c-master.yaml
18932 F:      drivers/i3c/master/svc-i3c-master.c
18933
18934 SIMPLEFB FB DRIVER
18935 M:      Hans de Goede <hdegoede@redhat.com>
18936 L:      linux-fbdev@vger.kernel.org
18937 S:      Maintained
18938 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
18939 F:      drivers/video/fbdev/simplefb.c
18940 F:      include/linux/platform_data/simplefb.h
18941
18942 SIMTEC EB110ATX (Chalice CATS)
18943 M:      Simtec Linux Team <linux@simtec.co.uk>
18944 S:      Supported
18945 W:      http://www.simtec.co.uk/products/EB110ATX/
18946
18947 SIOX
18948 M:      Thorsten Scherer <t.scherer@eckelmann.de>
18949 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
18950 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
18951 S:      Supported
18952 F:      drivers/gpio/gpio-siox.c
18953 F:      drivers/siox/*
18954 F:      include/trace/events/siox.h
18955
18956 SIPHASH PRF ROUTINES
18957 M:      Jason A. Donenfeld <Jason@zx2c4.com>
18958 S:      Maintained
18959 F:      include/linux/siphash.h
18960 F:      lib/siphash.c
18961 F:      lib/siphash_kunit.c
18962
18963 SIS 190 ETHERNET DRIVER
18964 M:      Francois Romieu <romieu@fr.zoreil.com>
18965 L:      netdev@vger.kernel.org
18966 S:      Maintained
18967 F:      drivers/net/ethernet/sis/sis190.c
18968
18969 SIS 900/7016 FAST ETHERNET DRIVER
18970 M:      Daniele Venzano <venza@brownhat.org>
18971 L:      netdev@vger.kernel.org
18972 S:      Maintained
18973 W:      http://www.brownhat.org/sis900.html
18974 F:      drivers/net/ethernet/sis/sis900.*
18975
18976 SIS FRAMEBUFFER DRIVER
18977 M:      Thomas Winischhofer <thomas@winischhofer.net>
18978 S:      Maintained
18979 W:      http://www.winischhofer.net/linuxsisvga.shtml
18980 F:      Documentation/fb/sisfb.rst
18981 F:      drivers/video/fbdev/sis/
18982 F:      include/video/sisfb.h
18983
18984 SIS I2C TOUCHSCREEN DRIVER
18985 M:      Mika Penttilä <mpenttil@redhat.com>
18986 L:      linux-input@vger.kernel.org
18987 S:      Maintained
18988 F:      Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt
18989 F:      drivers/input/touchscreen/sis_i2c.c
18990
18991 SIS USB2VGA DRIVER
18992 M:      Thomas Winischhofer <thomas@winischhofer.net>
18993 S:      Maintained
18994 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
18995 F:      drivers/usb/misc/sisusbvga/
18996
18997 SL28 CPLD MFD DRIVER
18998 M:      Michael Walle <michael@walle.cc>
18999 S:      Maintained
19000 F:      Documentation/devicetree/bindings/gpio/kontron,sl28cpld-gpio.yaml
19001 F:      Documentation/devicetree/bindings/hwmon/kontron,sl28cpld-hwmon.yaml
19002 F:      Documentation/devicetree/bindings/interrupt-controller/kontron,sl28cpld-intc.yaml
19003 F:      Documentation/devicetree/bindings/mfd/kontron,sl28cpld.yaml
19004 F:      Documentation/devicetree/bindings/pwm/kontron,sl28cpld-pwm.yaml
19005 F:      Documentation/devicetree/bindings/watchdog/kontron,sl28cpld-wdt.yaml
19006 F:      drivers/gpio/gpio-sl28cpld.c
19007 F:      drivers/hwmon/sl28cpld-hwmon.c
19008 F:      drivers/irqchip/irq-sl28cpld.c
19009 F:      drivers/pwm/pwm-sl28cpld.c
19010 F:      drivers/watchdog/sl28cpld_wdt.c
19011
19012 SLAB ALLOCATOR
19013 M:      Christoph Lameter <cl@linux.com>
19014 M:      Pekka Enberg <penberg@kernel.org>
19015 M:      David Rientjes <rientjes@google.com>
19016 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
19017 M:      Andrew Morton <akpm@linux-foundation.org>
19018 M:      Vlastimil Babka <vbabka@suse.cz>
19019 R:      Roman Gushchin <roman.gushchin@linux.dev>
19020 R:      Hyeonggon Yoo <42.hyeyoo@gmail.com>
19021 L:      linux-mm@kvack.org
19022 S:      Maintained
19023 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vbabka/slab.git
19024 F:      include/linux/sl?b*.h
19025 F:      mm/sl?b*
19026
19027 SLCAN CAN NETWORK DRIVER
19028 M:      Dario Binacchi <dario.binacchi@amarulasolutions.com>
19029 L:      linux-can@vger.kernel.org
19030 S:      Maintained
19031 F:      drivers/net/can/slcan/
19032
19033 SLEEPABLE READ-COPY UPDATE (SRCU)
19034 M:      Lai Jiangshan <jiangshanlai@gmail.com>
19035 M:      "Paul E. McKenney" <paulmck@kernel.org>
19036 M:      Josh Triplett <josh@joshtriplett.org>
19037 R:      Steven Rostedt <rostedt@goodmis.org>
19038 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
19039 L:      rcu@vger.kernel.org
19040 S:      Supported
19041 W:      http://www.rdrop.com/users/paulmck/RCU/
19042 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
19043 F:      include/linux/srcu*.h
19044 F:      kernel/rcu/srcu*.c
19045
19046 SMACK SECURITY MODULE
19047 M:      Casey Schaufler <casey@schaufler-ca.com>
19048 L:      linux-security-module@vger.kernel.org
19049 S:      Maintained
19050 W:      http://schaufler-ca.com
19051 T:      git git://github.com/cschaufler/smack-next
19052 F:      Documentation/admin-guide/LSM/Smack.rst
19053 F:      security/smack/
19054
19055 SMC91x ETHERNET DRIVER
19056 M:      Nicolas Pitre <nico@fluxnic.net>
19057 S:      Odd Fixes
19058 F:      drivers/net/ethernet/smsc/smc91x.*
19059
19060 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
19061 M:      Mark Rutland <mark.rutland@arm.com>
19062 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
19063 M:      Sudeep Holla <sudeep.holla@arm.com>
19064 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19065 S:      Maintained
19066 F:      drivers/firmware/smccc/
19067 F:      include/linux/arm-smccc.h
19068
19069 SMM665 HARDWARE MONITOR DRIVER
19070 M:      Guenter Roeck <linux@roeck-us.net>
19071 L:      linux-hwmon@vger.kernel.org
19072 S:      Maintained
19073 F:      Documentation/hwmon/smm665.rst
19074 F:      drivers/hwmon/smm665.c
19075
19076 SMSC EMC2103 HARDWARE MONITOR DRIVER
19077 M:      Steve Glendinning <steve.glendinning@shawell.net>
19078 L:      linux-hwmon@vger.kernel.org
19079 S:      Maintained
19080 F:      Documentation/hwmon/emc2103.rst
19081 F:      drivers/hwmon/emc2103.c
19082
19083 SMSC SCH5627 HARDWARE MONITOR DRIVER
19084 M:      Hans de Goede <hdegoede@redhat.com>
19085 L:      linux-hwmon@vger.kernel.org
19086 S:      Supported
19087 F:      Documentation/hwmon/sch5627.rst
19088 F:      drivers/hwmon/sch5627.c
19089
19090 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
19091 M:      Steve Glendinning <steve.glendinning@shawell.net>
19092 L:      linux-fbdev@vger.kernel.org
19093 S:      Maintained
19094 F:      drivers/video/fbdev/smscufx.c
19095
19096 SMSC47B397 HARDWARE MONITOR DRIVER
19097 M:      Jean Delvare <jdelvare@suse.com>
19098 L:      linux-hwmon@vger.kernel.org
19099 S:      Maintained
19100 F:      Documentation/hwmon/smsc47b397.rst
19101 F:      drivers/hwmon/smsc47b397.c
19102
19103 SMSC911x ETHERNET DRIVER
19104 M:      Steve Glendinning <steve.glendinning@shawell.net>
19105 L:      netdev@vger.kernel.org
19106 S:      Maintained
19107 F:      drivers/net/ethernet/smsc/smsc911x.*
19108 F:      include/linux/smsc911x.h
19109
19110 SMSC9420 PCI ETHERNET DRIVER
19111 M:      Steve Glendinning <steve.glendinning@shawell.net>
19112 L:      netdev@vger.kernel.org
19113 S:      Maintained
19114 F:      drivers/net/ethernet/smsc/smsc9420.*
19115
19116 SOCIONEXT (SNI) AVE NETWORK DRIVER
19117 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
19118 L:      netdev@vger.kernel.org
19119 S:      Maintained
19120 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
19121 F:      drivers/net/ethernet/socionext/sni_ave.c
19122
19123 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
19124 M:      Jassi Brar <jaswinder.singh@linaro.org>
19125 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
19126 L:      netdev@vger.kernel.org
19127 S:      Maintained
19128 F:      Documentation/devicetree/bindings/net/socionext,synquacer-netsec.yaml
19129 F:      drivers/net/ethernet/socionext/netsec.c
19130
19131 SOCIONEXT (SNI) Synquacer SPI DRIVER
19132 M:      Masahisa Kojima <masahisa.kojima@linaro.org>
19133 M:      Jassi Brar <jaswinder.singh@linaro.org>
19134 L:      linux-spi@vger.kernel.org
19135 S:      Maintained
19136 F:      Documentation/devicetree/bindings/spi/socionext,synquacer-spi.yaml
19137 F:      drivers/spi/spi-synquacer.c
19138
19139 SOCIONEXT SYNQUACER I2C DRIVER
19140 M:      Ard Biesheuvel <ardb@kernel.org>
19141 L:      linux-i2c@vger.kernel.org
19142 S:      Maintained
19143 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
19144 F:      drivers/i2c/busses/i2c-synquacer.c
19145
19146 SOCIONEXT UNIPHIER SOUND DRIVER
19147 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19148 S:      Orphan
19149 F:      sound/soc/uniphier/
19150
19151 SOCKET TIMESTAMPING
19152 M:      Willem de Bruijn <willemdebruijn.kernel@gmail.com>
19153 S:      Maintained
19154 F:      Documentation/networking/timestamping.rst
19155 F:      include/uapi/linux/net_tstamp.h
19156 F:      tools/testing/selftests/net/so_txtime.c
19157
19158 SOEKRIS NET48XX LED SUPPORT
19159 M:      Chris Boot <bootc@bootc.net>
19160 S:      Maintained
19161 F:      drivers/leds/leds-net48xx.c
19162
19163 SOFT-IWARP DRIVER (siw)
19164 M:      Bernard Metzler <bmt@zurich.ibm.com>
19165 L:      linux-rdma@vger.kernel.org
19166 S:      Supported
19167 F:      drivers/infiniband/sw/siw/
19168 F:      include/uapi/rdma/siw-abi.h
19169
19170 SOFT-ROCE DRIVER (rxe)
19171 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
19172 L:      linux-rdma@vger.kernel.org
19173 S:      Supported
19174 F:      drivers/infiniband/sw/rxe/
19175 F:      include/uapi/rdma/rdma_user_rxe.h
19176
19177 SOFTLOGIC 6x10 MPEG CODEC
19178 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
19179 M:      Anton Sviridenko <anton@corp.bluecherry.net>
19180 M:      Andrey Utkin <andrey_utkin@fastmail.com>
19181 M:      Ismael Luceno <ismael@iodev.co.uk>
19182 L:      linux-media@vger.kernel.org
19183 S:      Supported
19184 F:      drivers/media/pci/solo6x10/
19185
19186 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
19187 M:      James Morse <james.morse@arm.com>
19188 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19189 S:      Maintained
19190 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
19191 F:      drivers/firmware/arm_sdei.c
19192 F:      include/linux/arm_sdei.h
19193 F:      include/uapi/linux/arm_sdei.h
19194
19195 SOFTWARE NODES AND DEVICE PROPERTIES
19196 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19197 R:      Daniel Scally <djrscally@gmail.com>
19198 R:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19199 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
19200 L:      linux-acpi@vger.kernel.org
19201 S:      Maintained
19202 F:      drivers/base/property.c
19203 F:      drivers/base/swnode.c
19204 F:      include/linux/fwnode.h
19205 F:      include/linux/property.h
19206
19207 SOFTWARE RAID (Multiple Disks) SUPPORT
19208 M:      Song Liu <song@kernel.org>
19209 L:      linux-raid@vger.kernel.org
19210 S:      Supported
19211 Q:      https://patchwork.kernel.org/project/linux-raid/list/
19212 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
19213 F:      drivers/md/Kconfig
19214 F:      drivers/md/Makefile
19215 F:      drivers/md/md*
19216 F:      drivers/md/raid*
19217 F:      include/linux/raid/
19218 F:      include/uapi/linux/raid/
19219
19220 SOLIDRUN CLEARFOG SUPPORT
19221 M:      Russell King <linux@armlinux.org.uk>
19222 S:      Maintained
19223 F:      arch/arm/boot/dts/armada-388-clearfog*
19224 F:      arch/arm/boot/dts/armada-38x-solidrun-*
19225
19226 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
19227 M:      Russell King <linux@armlinux.org.uk>
19228 S:      Maintained
19229 F:      arch/arm/boot/dts/imx6*-cubox-i*
19230 F:      arch/arm/boot/dts/imx6*-hummingboard*
19231 F:      arch/arm/boot/dts/imx6*-sr-*
19232
19233 SONIC NETWORK DRIVER
19234 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
19235 L:      netdev@vger.kernel.org
19236 S:      Maintained
19237 F:      drivers/net/ethernet/natsemi/sonic.*
19238
19239 SONICS SILICON BACKPLANE DRIVER (SSB)
19240 M:      Michael Buesch <m@bues.ch>
19241 L:      linux-wireless@vger.kernel.org
19242 S:      Maintained
19243 F:      drivers/ssb/
19244 F:      include/linux/ssb/
19245
19246 SONY IMX208 SENSOR DRIVER
19247 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
19248 L:      linux-media@vger.kernel.org
19249 S:      Maintained
19250 T:      git git://linuxtv.org/media_tree.git
19251 F:      drivers/media/i2c/imx208.c
19252
19253 SONY IMX214 SENSOR DRIVER
19254 M:      Ricardo Ribalda <ribalda@kernel.org>
19255 L:      linux-media@vger.kernel.org
19256 S:      Maintained
19257 T:      git git://linuxtv.org/media_tree.git
19258 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.yaml
19259 F:      drivers/media/i2c/imx214.c
19260
19261 SONY IMX219 SENSOR DRIVER
19262 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
19263 L:      linux-media@vger.kernel.org
19264 S:      Maintained
19265 T:      git git://linuxtv.org/media_tree.git
19266 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
19267 F:      drivers/media/i2c/imx219.c
19268
19269 SONY IMX258 SENSOR DRIVER
19270 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
19271 L:      linux-media@vger.kernel.org
19272 S:      Maintained
19273 T:      git git://linuxtv.org/media_tree.git
19274 F:      Documentation/devicetree/bindings/media/i2c/imx258.yaml
19275 F:      drivers/media/i2c/imx258.c
19276
19277 SONY IMX274 SENSOR DRIVER
19278 M:      Leon Luo <leonl@leopardimaging.com>
19279 L:      linux-media@vger.kernel.org
19280 S:      Maintained
19281 T:      git git://linuxtv.org/media_tree.git
19282 F:      Documentation/devicetree/bindings/media/i2c/sony,imx274.yaml
19283 F:      drivers/media/i2c/imx274.c
19284
19285 SONY IMX290 SENSOR DRIVER
19286 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
19287 L:      linux-media@vger.kernel.org
19288 S:      Maintained
19289 T:      git git://linuxtv.org/media_tree.git
19290 F:      Documentation/devicetree/bindings/media/i2c/sony,imx290.yaml
19291 F:      drivers/media/i2c/imx290.c
19292
19293 SONY IMX319 SENSOR DRIVER
19294 M:      Bingbu Cao <bingbu.cao@intel.com>
19295 L:      linux-media@vger.kernel.org
19296 S:      Maintained
19297 T:      git git://linuxtv.org/media_tree.git
19298 F:      drivers/media/i2c/imx319.c
19299
19300 SONY IMX334 SENSOR DRIVER
19301 M:      Paul J. Murphy <paul.j.murphy@intel.com>
19302 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
19303 L:      linux-media@vger.kernel.org
19304 S:      Maintained
19305 T:      git git://linuxtv.org/media_tree.git
19306 F:      Documentation/devicetree/bindings/media/i2c/sony,imx334.yaml
19307 F:      drivers/media/i2c/imx334.c
19308
19309 SONY IMX335 SENSOR DRIVER
19310 M:      Paul J. Murphy <paul.j.murphy@intel.com>
19311 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
19312 L:      linux-media@vger.kernel.org
19313 S:      Maintained
19314 T:      git git://linuxtv.org/media_tree.git
19315 F:      Documentation/devicetree/bindings/media/i2c/sony,imx335.yaml
19316 F:      drivers/media/i2c/imx335.c
19317
19318 SONY IMX355 SENSOR DRIVER
19319 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
19320 L:      linux-media@vger.kernel.org
19321 S:      Maintained
19322 T:      git git://linuxtv.org/media_tree.git
19323 F:      drivers/media/i2c/imx355.c
19324
19325 SONY IMX412 SENSOR DRIVER
19326 M:      Paul J. Murphy <paul.j.murphy@intel.com>
19327 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
19328 L:      linux-media@vger.kernel.org
19329 S:      Maintained
19330 T:      git git://linuxtv.org/media_tree.git
19331 F:      Documentation/devicetree/bindings/media/i2c/sony,imx412.yaml
19332 F:      drivers/media/i2c/imx412.c
19333
19334 SONY MEMORYSTICK SUBSYSTEM
19335 M:      Maxim Levitsky <maximlevitsky@gmail.com>
19336 M:      Alex Dubov <oakad@yahoo.com>
19337 M:      Ulf Hansson <ulf.hansson@linaro.org>
19338 L:      linux-mmc@vger.kernel.org
19339 S:      Maintained
19340 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
19341 F:      drivers/memstick/
19342 F:      include/linux/memstick.h
19343
19344 SONY VAIO CONTROL DEVICE DRIVER
19345 M:      Mattia Dongili <malattia@linux.it>
19346 L:      platform-driver-x86@vger.kernel.org
19347 S:      Maintained
19348 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
19349 F:      Documentation/admin-guide/laptops/sony-laptop.rst
19350 F:      drivers/char/sonypi.c
19351 F:      drivers/platform/x86/sony-laptop.c
19352 F:      include/linux/sony-laptop.h
19353
19354 SOUND
19355 M:      Jaroslav Kysela <perex@perex.cz>
19356 M:      Takashi Iwai <tiwai@suse.com>
19357 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19358 S:      Maintained
19359 W:      http://www.alsa-project.org/
19360 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
19361 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
19362 F:      Documentation/sound/
19363 F:      include/sound/
19364 F:      include/uapi/sound/
19365 F:      sound/
19366 F:      tools/testing/selftests/alsa
19367
19368 SOUND - COMPRESSED AUDIO
19369 M:      Vinod Koul <vkoul@kernel.org>
19370 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19371 S:      Supported
19372 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
19373 F:      Documentation/sound/designs/compress-offload.rst
19374 F:      include/sound/compress_driver.h
19375 F:      include/uapi/sound/compress_*
19376 F:      sound/core/compress_offload.c
19377 F:      sound/soc/soc-compress.c
19378
19379 SOUND - DMAENGINE HELPERS
19380 M:      Lars-Peter Clausen <lars@metafoo.de>
19381 S:      Supported
19382 F:      include/sound/dmaengine_pcm.h
19383 F:      sound/core/pcm_dmaengine.c
19384 F:      sound/soc/soc-generic-dmaengine-pcm.c
19385
19386 SOUND - ALSA SELFTESTS
19387 M:      Mark Brown <broonie@kernel.org>
19388 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19389 L:      linux-kselftest@vger.kernel.org
19390 S:      Supported
19391 F:      tools/testing/selftests/alsa
19392
19393 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
19394 M:      Liam Girdwood <lgirdwood@gmail.com>
19395 M:      Mark Brown <broonie@kernel.org>
19396 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19397 S:      Supported
19398 W:      http://alsa-project.org/main/index.php/ASoC
19399 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
19400 F:      Documentation/devicetree/bindings/sound/
19401 F:      Documentation/sound/soc/
19402 F:      include/dt-bindings/sound/
19403 F:      include/sound/soc*
19404 F:      sound/soc/
19405
19406 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
19407 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
19408 M:      Liam Girdwood <lgirdwood@gmail.com>
19409 M:      Peter Ujfalusi <peter.ujfalusi@linux.intel.com>
19410 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
19411 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
19412 R:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
19413 M:      Daniel Baluta <daniel.baluta@nxp.com>
19414 L:      sound-open-firmware@alsa-project.org (moderated for non-subscribers)
19415 S:      Supported
19416 W:      https://github.com/thesofproject/linux/
19417 F:      sound/soc/sof/
19418
19419 SOUNDWIRE SUBSYSTEM
19420 M:      Vinod Koul <vkoul@kernel.org>
19421 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
19422 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
19423 R:      Sanyog Kale <sanyog.r.kale@intel.com>
19424 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19425 S:      Supported
19426 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire.git
19427 F:      Documentation/driver-api/soundwire/
19428 F:      drivers/soundwire/
19429 F:      include/linux/soundwire/
19430
19431 SP2 MEDIA DRIVER
19432 M:      Olli Salonen <olli.salonen@iki.fi>
19433 L:      linux-media@vger.kernel.org
19434 S:      Maintained
19435 W:      https://linuxtv.org
19436 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19437 F:      drivers/media/dvb-frontends/sp2*
19438
19439 SPANISH DOCUMENTATION
19440 M:      Carlos Bilbao <carlos.bilbao@amd.com>
19441 S:      Maintained
19442 F:      Documentation/translations/sp_SP/
19443
19444 SPARC + UltraSPARC (sparc/sparc64)
19445 M:      "David S. Miller" <davem@davemloft.net>
19446 L:      sparclinux@vger.kernel.org
19447 S:      Maintained
19448 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
19449 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
19450 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
19451 F:      arch/sparc/
19452 F:      drivers/sbus/
19453
19454 SPARC SERIAL DRIVERS
19455 M:      "David S. Miller" <davem@davemloft.net>
19456 L:      sparclinux@vger.kernel.org
19457 S:      Maintained
19458 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
19459 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
19460 F:      drivers/tty/serial/suncore.c
19461 F:      drivers/tty/serial/sunhv.c
19462 F:      drivers/tty/serial/sunsab.c
19463 F:      drivers/tty/serial/sunsab.h
19464 F:      drivers/tty/serial/sunsu.c
19465 F:      drivers/tty/serial/sunzilog.c
19466 F:      drivers/tty/serial/sunzilog.h
19467 F:      drivers/tty/vcc.c
19468 F:      include/linux/sunserialcore.h
19469
19470 SPARSE CHECKER
19471 M:      "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
19472 L:      linux-sparse@vger.kernel.org
19473 S:      Maintained
19474 W:      https://sparse.docs.kernel.org/
19475 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
19476 Q:      https://patchwork.kernel.org/project/linux-sparse/list/
19477 B:      https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
19478 F:      include/linux/compiler.h
19479
19480 SPEAKUP CONSOLE SPEECH DRIVER
19481 M:      William Hubbs <w.d.hubbs@gmail.com>
19482 M:      Chris Brannon <chris@the-brannons.com>
19483 M:      Kirk Reiser <kirk@reisers.ca>
19484 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
19485 L:      speakup@linux-speakup.org
19486 S:      Odd Fixes
19487 W:      http://www.linux-speakup.org/
19488 W:      https://github.com/linux-speakup/speakup
19489 B:      https://github.com/linux-speakup/speakup/issues
19490 F:      drivers/accessibility/speakup/
19491
19492 SPEAR PLATFORM/CLOCK/PINCTRL SUPPORT
19493 M:      Viresh Kumar <vireshk@kernel.org>
19494 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
19495 M:      soc@kernel.org
19496 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19497 S:      Maintained
19498 W:      http://www.st.com/spear
19499 F:      arch/arm/boot/dts/spear*
19500 F:      arch/arm/mach-spear/
19501 F:      drivers/clk/spear/
19502 F:      drivers/pinctrl/spear/
19503
19504 SPI NOR SUBSYSTEM
19505 M:      Tudor Ambarus <tudor.ambarus@linaro.org>
19506 M:      Pratyush Yadav <pratyush@kernel.org>
19507 R:      Michael Walle <michael@walle.cc>
19508 L:      linux-mtd@lists.infradead.org
19509 S:      Maintained
19510 W:      http://www.linux-mtd.infradead.org/
19511 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
19512 C:      irc://irc.oftc.net/mtd
19513 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
19514 F:      Documentation/devicetree/bindings/mtd/jedec,spi-nor.yaml
19515 F:      drivers/mtd/spi-nor/
19516 F:      include/linux/mtd/spi-nor.h
19517
19518 SPI SUBSYSTEM
19519 M:      Mark Brown <broonie@kernel.org>
19520 L:      linux-spi@vger.kernel.org
19521 S:      Maintained
19522 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
19523 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
19524 F:      Documentation/devicetree/bindings/spi/
19525 F:      Documentation/spi/
19526 F:      drivers/spi/
19527 F:      include/linux/spi/
19528 F:      include/uapi/linux/spi/
19529 F:      tools/spi/
19530
19531 SPIDERNET NETWORK DRIVER for CELL
19532 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
19533 M:      Geoff Levand <geoff@infradead.org>
19534 L:      netdev@vger.kernel.org
19535 L:      linuxppc-dev@lists.ozlabs.org
19536 S:      Maintained
19537 F:      Documentation/networking/device_drivers/ethernet/toshiba/spider_net.rst
19538 F:      drivers/net/ethernet/toshiba/spider_net*
19539
19540 SPMI SUBSYSTEM
19541 M:      Stephen Boyd <sboyd@kernel.org>
19542 L:      linux-kernel@vger.kernel.org
19543 S:      Maintained
19544 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sboyd/spmi.git
19545 F:      Documentation/devicetree/bindings/spmi/
19546 F:      drivers/spmi/
19547 F:      include/dt-bindings/spmi/spmi.h
19548 F:      include/linux/spmi.h
19549 F:      include/trace/events/spmi.h
19550
19551 SPU FILE SYSTEM
19552 M:      Jeremy Kerr <jk@ozlabs.org>
19553 L:      linuxppc-dev@lists.ozlabs.org
19554 S:      Supported
19555 W:      http://www.ibm.com/developerworks/power/cell/
19556 F:      Documentation/filesystems/spufs/spufs.rst
19557 F:      arch/powerpc/platforms/cell/spufs/
19558
19559 SQUASHFS FILE SYSTEM
19560 M:      Phillip Lougher <phillip@squashfs.org.uk>
19561 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
19562 S:      Maintained
19563 W:      http://squashfs.org.uk
19564 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
19565 F:      Documentation/filesystems/squashfs.rst
19566 F:      fs/squashfs/
19567
19568 SRM (Alpha) environment access
19569 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
19570 S:      Maintained
19571 F:      arch/alpha/kernel/srm_env.c
19572
19573 ST LSM6DSx IMU IIO DRIVER
19574 M:      Lorenzo Bianconi <lorenzo@kernel.org>
19575 L:      linux-iio@vger.kernel.org
19576 S:      Maintained
19577 W:      http://www.st.com/
19578 F:      Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml
19579 F:      drivers/iio/imu/st_lsm6dsx/
19580
19581 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
19582 M:      Benjamin Mugnier <benjamin.mugnier@foss.st.com>
19583 M:      Sylvain Petinot <sylvain.petinot@foss.st.com>
19584 L:      linux-media@vger.kernel.org
19585 S:      Maintained
19586 T:      git git://linuxtv.org/media_tree.git
19587 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.yaml
19588 F:      drivers/media/i2c/st-mipid02.c
19589
19590 ST STM32 I2C/SMBUS DRIVER
19591 M:      Pierre-Yves MORDRET <pierre-yves.mordret@foss.st.com>
19592 M:      Alain Volmat <alain.volmat@foss.st.com>
19593 L:      linux-i2c@vger.kernel.org
19594 S:      Maintained
19595 F:      drivers/i2c/busses/i2c-stm32*
19596
19597 ST STM32 SPI DRIVER
19598 M:      Alain Volmat <alain.volmat@foss.st.com>
19599 L:      linux-spi@vger.kernel.org
19600 S:      Maintained
19601 F:      drivers/spi/spi-stm32.c
19602
19603 ST STPDDC60 DRIVER
19604 M:      Daniel Nilsson <daniel.nilsson@flex.com>
19605 L:      linux-hwmon@vger.kernel.org
19606 S:      Maintained
19607 F:      Documentation/hwmon/stpddc60.rst
19608 F:      drivers/hwmon/pmbus/stpddc60.c
19609
19610 ST VGXY61 DRIVER
19611 M:      Benjamin Mugnier <benjamin.mugnier@foss.st.com>
19612 M:      Sylvain Petinot <sylvain.petinot@foss.st.com>
19613 L:      linux-media@vger.kernel.org
19614 S:      Maintained
19615 T:      git git://linuxtv.org/media_tree.git
19616 F:      Documentation/devicetree/bindings/media/i2c/st,st-vgxy61.yaml
19617 F:      Documentation/userspace-api/media/drivers/st-vgxy61.rst
19618 F:      drivers/media/i2c/st-vgxy61.c
19619
19620 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
19621 M:      Song Qiang <songqiang1304521@gmail.com>
19622 L:      linux-iio@vger.kernel.org
19623 S:      Maintained
19624 F:      Documentation/devicetree/bindings/iio/proximity/st,vl53l0x.yaml
19625 F:      drivers/iio/proximity/vl53l0x-i2c.c
19626
19627 STABLE BRANCH
19628 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19629 M:      Sasha Levin <sashal@kernel.org>
19630 L:      stable@vger.kernel.org
19631 S:      Supported
19632 F:      Documentation/process/stable-kernel-rules.rst
19633
19634 STAGING - ATOMISP DRIVER
19635 M:      Hans de Goede <hdegoede@redhat.com>
19636 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19637 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
19638 L:      linux-media@vger.kernel.org
19639 S:      Maintained
19640 F:      drivers/staging/media/atomisp/
19641
19642 STAGING - FIELDBUS SUBSYSTEM
19643 M:      Sven Van Asbroeck <TheSven73@gmail.com>
19644 S:      Maintained
19645 F:      drivers/staging/fieldbus/*
19646 F:      drivers/staging/fieldbus/Documentation/
19647
19648 STAGING - HMS ANYBUS-S BUS
19649 M:      Sven Van Asbroeck <TheSven73@gmail.com>
19650 S:      Maintained
19651 F:      drivers/staging/fieldbus/anybuss/
19652
19653 STAGING - INDUSTRIAL IO
19654 M:      Jonathan Cameron <jic23@kernel.org>
19655 L:      linux-iio@vger.kernel.org
19656 S:      Odd Fixes
19657 F:      Documentation/devicetree/bindings/staging/iio/
19658 F:      drivers/staging/iio/
19659
19660 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
19661 M:      Marc Dietrich <marvin24@gmx.de>
19662 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
19663 L:      linux-tegra@vger.kernel.org
19664 S:      Maintained
19665 F:      drivers/staging/nvec/
19666
19667 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
19668 M:      Jens Frederich <jfrederich@gmail.com>
19669 M:      Jon Nettleton <jon.nettleton@gmail.com>
19670 S:      Maintained
19671 W:      http://wiki.laptop.org/go/DCON
19672 F:      drivers/staging/olpc_dcon/
19673
19674 STAGING - REALTEK RTL8188EU DRIVERS
19675 M:      Larry Finger <Larry.Finger@lwfinger.net>
19676 M:      Phillip Potter <phil@philpotter.co.uk>
19677 R:      Pavel Skripkin <paskripkin@gmail.com>
19678 S:      Supported
19679 F:      drivers/staging/r8188eu/
19680
19681 STAGING - REALTEK RTL8712U DRIVERS
19682 M:      Larry Finger <Larry.Finger@lwfinger.net>
19683 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
19684 S:      Odd Fixes
19685 F:      drivers/staging/rtl8712/
19686
19687 STAGING - SEPS525 LCD CONTROLLER DRIVERS
19688 M:      Michael Hennerich <michael.hennerich@analog.com>
19689 L:      linux-fbdev@vger.kernel.org
19690 S:      Supported
19691 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
19692 F:      drivers/staging/fbtft/fb_seps525.c
19693
19694 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
19695 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
19696 M:      Teddy Wang <teddy.wang@siliconmotion.com>
19697 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
19698 L:      linux-fbdev@vger.kernel.org
19699 S:      Maintained
19700 F:      drivers/staging/sm750fb/
19701
19702 STAGING - VIA VT665X DRIVERS
19703 M:      Forest Bond <forest@alittletooquiet.net>
19704 S:      Odd Fixes
19705 F:      drivers/staging/vt665?/
19706
19707 STAGING SUBSYSTEM
19708 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19709 L:      linux-staging@lists.linux.dev
19710 S:      Supported
19711 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
19712 F:      drivers/staging/
19713
19714 STARFIRE/DURALAN NETWORK DRIVER
19715 M:      Ion Badulescu <ionut@badula.org>
19716 S:      Odd Fixes
19717 F:      drivers/net/ethernet/adaptec/starfire*
19718
19719 STARFIVE DEVICETREES
19720 M:      Emil Renner Berthing <kernel@esmil.dk>
19721 S:      Maintained
19722 F:      arch/riscv/boot/dts/starfive/
19723
19724 STARFIVE JH7100 CLOCK DRIVERS
19725 M:      Emil Renner Berthing <kernel@esmil.dk>
19726 S:      Maintained
19727 F:      Documentation/devicetree/bindings/clock/starfive,jh7100-*.yaml
19728 F:      drivers/clk/starfive/clk-starfive-jh7100*
19729 F:      include/dt-bindings/clock/starfive-jh7100*.h
19730
19731 STARFIVE JH7100 PINCTRL DRIVER
19732 M:      Emil Renner Berthing <kernel@esmil.dk>
19733 L:      linux-gpio@vger.kernel.org
19734 S:      Maintained
19735 F:      Documentation/devicetree/bindings/pinctrl/starfive,jh7100-pinctrl.yaml
19736 F:      drivers/pinctrl/starfive/
19737 F:      include/dt-bindings/pinctrl/pinctrl-starfive-jh7100.h
19738
19739 STARFIVE JH7100 RESET CONTROLLER DRIVER
19740 M:      Emil Renner Berthing <kernel@esmil.dk>
19741 S:      Maintained
19742 F:      Documentation/devicetree/bindings/reset/starfive,jh7100-reset.yaml
19743 F:      drivers/reset/reset-starfive-jh7100.c
19744 F:      include/dt-bindings/reset/starfive-jh7100.h
19745
19746 STATIC BRANCH/CALL
19747 M:      Peter Zijlstra <peterz@infradead.org>
19748 M:      Josh Poimboeuf <jpoimboe@kernel.org>
19749 M:      Jason Baron <jbaron@akamai.com>
19750 R:      Steven Rostedt <rostedt@goodmis.org>
19751 R:      Ard Biesheuvel <ardb@kernel.org>
19752 S:      Supported
19753 F:      arch/*/include/asm/jump_label*.h
19754 F:      arch/*/include/asm/static_call*.h
19755 F:      arch/*/kernel/jump_label.c
19756 F:      arch/*/kernel/static_call.c
19757 F:      include/linux/jump_label*.h
19758 F:      include/linux/static_call*.h
19759 F:      kernel/jump_label.c
19760 F:      kernel/static_call.c
19761
19762 STI AUDIO (ASoC) DRIVERS
19763 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
19764 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19765 S:      Maintained
19766 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
19767 F:      sound/soc/sti/
19768
19769 STI CEC DRIVER
19770 M:      Alain Volmat <alain.volmat@foss.st.com>
19771 S:      Maintained
19772 F:      Documentation/devicetree/bindings/media/stih-cec.txt
19773 F:      drivers/media/cec/platform/sti/
19774
19775 STK1160 USB VIDEO CAPTURE DRIVER
19776 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
19777 L:      linux-media@vger.kernel.org
19778 S:      Maintained
19779 T:      git git://linuxtv.org/media_tree.git
19780 F:      drivers/media/usb/stk1160/
19781
19782 STM32 AUDIO (ASoC) DRIVERS
19783 M:      Olivier Moysan <olivier.moysan@foss.st.com>
19784 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
19785 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19786 S:      Maintained
19787 F:      Documentation/devicetree/bindings/iio/adc/st,stm32-dfsdm-adc.yaml
19788 F:      Documentation/devicetree/bindings/sound/st,stm32-*.yaml
19789 F:      sound/soc/stm/
19790
19791 STM32 TIMER/LPTIMER DRIVERS
19792 M:      Fabrice Gasnier <fabrice.gasnier@foss.st.com>
19793 S:      Maintained
19794 F:      Documentation/ABI/testing/*timer-stm32
19795 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
19796 F:      drivers/*/stm32-*timer*
19797 F:      drivers/pwm/pwm-stm32*
19798 F:      include/linux/*/stm32-*tim*
19799
19800 STMMAC ETHERNET DRIVER
19801 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
19802 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
19803 M:      Jose Abreu <joabreu@synopsys.com>
19804 L:      netdev@vger.kernel.org
19805 S:      Supported
19806 W:      http://www.stlinux.com
19807 F:      Documentation/networking/device_drivers/ethernet/stmicro/
19808 F:      drivers/net/ethernet/stmicro/stmmac/
19809
19810 SUN3/3X
19811 M:      Sam Creasey <sammy@sammy.net>
19812 S:      Maintained
19813 W:      http://sammy.net/sun3/
19814 F:      arch/m68k/include/asm/sun3*
19815 F:      arch/m68k/kernel/*sun3*
19816 F:      arch/m68k/sun3*/
19817 F:      drivers/net/ethernet/i825xx/sun3*
19818
19819 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
19820 M:      Hans de Goede <hdegoede@redhat.com>
19821 L:      linux-input@vger.kernel.org
19822 S:      Maintained
19823 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
19824 F:      drivers/input/keyboard/sun4i-lradc-keys.c
19825
19826 SUNDANCE NETWORK DRIVER
19827 M:      Denis Kirjanov <kda@linux-powerpc.org>
19828 L:      netdev@vger.kernel.org
19829 S:      Maintained
19830 F:      drivers/net/ethernet/dlink/sundance.c
19831
19832 SUN HAPPY MEAL ETHERNET DRIVER
19833 M:      Sean Anderson <seanga2@gmail.com>
19834 S:      Maintained
19835 F:      drivers/net/ethernet/sun/sunhme.*
19836
19837 SUNPLUS ETHERNET DRIVER
19838 M:      Wells Lu <wellslutw@gmail.com>
19839 L:      netdev@vger.kernel.org
19840 S:      Maintained
19841 W:      https://sunplus.atlassian.net/wiki/spaces/doc/overview
19842 F:      Documentation/devicetree/bindings/net/sunplus,sp7021-emac.yaml
19843 F:      drivers/net/ethernet/sunplus/
19844
19845 SUNPLUS MMC DRIVER
19846 M:      Tony Huang <tonyhuang.sunplus@gmail.com>
19847 M:      Li-hao Kuo <lhjeff911@gmail.com>
19848 S:      Maintained
19849 F:      Documentation/devicetree/bindings/mmc/sunplus,mmc.yaml
19850 F:      drivers/mmc/host/sunplus-mmc.c
19851
19852 SUNPLUS OCOTP DRIVER
19853 M:      Vincent Shih <vincent.sunplus@gmail.com>
19854 S:      Maintained
19855 F:      Documentation/devicetree/bindings/nvmem/sunplus,sp7021-ocotp.yaml
19856 F:      drivers/nvmem/sunplus-ocotp.c
19857
19858 SUNPLUS USB2 PHY DRIVER
19859 M:      Vincent Shih <vincent.sunplus@gmail.com>
19860 L:      linux-usb@vger.kernel.org
19861 S:      Maintained
19862 F:      Documentation/devicetree/bindings/phy/sunplus,sp7021-usb2-phy.yaml
19863 F:      drivers/phy/sunplus/Kconfig
19864 F:      drivers/phy/sunplus/Makefile
19865 F:      drivers/phy/sunplus/phy-sunplus-usb2.c
19866
19867 SUNPLUS PWM DRIVER
19868 M:      Hammer Hsieh <hammerh0314@gmail.com>
19869 S:      Maintained
19870 F:      Documentation/devicetree/bindings/pwm/sunplus,sp7021-pwm.yaml
19871 F:      drivers/pwm/pwm-sunplus.c
19872
19873 SUNPLUS RTC DRIVER
19874 M:      Vincent Shih <vincent.sunplus@gmail.com>
19875 L:      linux-rtc@vger.kernel.org
19876 S:      Maintained
19877 F:      Documentation/devicetree/bindings/rtc/sunplus,sp7021-rtc.yaml
19878 F:      drivers/rtc/rtc-sunplus.c
19879
19880 SUNPLUS SPI CONTROLLER INTERFACE DRIVER
19881 M:      Li-hao Kuo <lhjeff911@gmail.com>
19882 L:      linux-spi@vger.kernel.org
19883 S:      Maintained
19884 F:      Documentation/devicetree/bindings/spi/spi-sunplus-sp7021.yaml
19885 F:      drivers/spi/spi-sunplus-sp7021.c
19886
19887 SUNPLUS UART DRIVER
19888 M:      Hammer Hsieh <hammerh0314@gmail.com>
19889 S:      Maintained
19890 F:      Documentation/devicetree/bindings/serial/sunplus,sp7021-uart.yaml
19891 F:      drivers/tty/serial/sunplus-uart.c
19892
19893 SUNPLUS WATCHDOG DRIVER
19894 M:      Xiantao Hu <xt.hu@cqplus1.com>
19895 L:      linux-watchdog@vger.kernel.org
19896 S:      Maintained
19897 F:      Documentation/devicetree/bindings/watchdog/sunplus,sp7021-wdt.yaml
19898 F:      drivers/watchdog/sunplus_wdt.c
19899
19900 SUPERH
19901 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
19902 M:      Rich Felker <dalias@libc.org>
19903 M:      John Paul Adrian Glaubitz <glaubitz@physik.fu-berlin.de>
19904 L:      linux-sh@vger.kernel.org
19905 S:      Maintained
19906 Q:      http://patchwork.kernel.org/project/linux-sh/list/
19907 F:      Documentation/sh/
19908 F:      arch/sh/
19909 F:      drivers/sh/
19910
19911 SUSPEND TO RAM
19912 M:      "Rafael J. Wysocki" <rafael@kernel.org>
19913 M:      Len Brown <len.brown@intel.com>
19914 M:      Pavel Machek <pavel@ucw.cz>
19915 L:      linux-pm@vger.kernel.org
19916 S:      Supported
19917 B:      https://bugzilla.kernel.org
19918 F:      Documentation/power/
19919 F:      arch/x86/kernel/acpi/
19920 F:      drivers/base/power/
19921 F:      include/linux/freezer.h
19922 F:      include/linux/pm.h
19923 F:      include/linux/suspend.h
19924 F:      kernel/power/
19925
19926 SVGA HANDLING
19927 M:      Martin Mares <mj@ucw.cz>
19928 L:      linux-video@atrey.karlin.mff.cuni.cz
19929 S:      Maintained
19930 F:      Documentation/admin-guide/svga.rst
19931 F:      arch/x86/boot/video*
19932
19933 SWITCHDEV
19934 M:      Jiri Pirko <jiri@resnulli.us>
19935 M:      Ivan Vecera <ivecera@redhat.com>
19936 L:      netdev@vger.kernel.org
19937 S:      Supported
19938 F:      include/net/switchdev.h
19939 F:      net/switchdev/
19940
19941 SY8106A REGULATOR DRIVER
19942 M:      Icenowy Zheng <icenowy@aosc.io>
19943 S:      Maintained
19944 F:      Documentation/devicetree/bindings/regulator/silergy,sy8106a.yaml
19945 F:      drivers/regulator/sy8106a-regulator.c
19946
19947 SYNC FILE FRAMEWORK
19948 M:      Sumit Semwal <sumit.semwal@linaro.org>
19949 R:      Gustavo Padovan <gustavo@padovan.org>
19950 L:      linux-media@vger.kernel.org
19951 L:      dri-devel@lists.freedesktop.org
19952 S:      Maintained
19953 T:      git git://anongit.freedesktop.org/drm/drm-misc
19954 F:      Documentation/driver-api/sync_file.rst
19955 F:      drivers/dma-buf/dma-fence*
19956 F:      drivers/dma-buf/sw_sync.c
19957 F:      drivers/dma-buf/sync_*
19958 F:      include/linux/sync_file.h
19959 F:      include/uapi/linux/sync_file.h
19960
19961 SYNOPSYS ARC ARCHITECTURE
19962 M:      Vineet Gupta <vgupta@kernel.org>
19963 L:      linux-snps-arc@lists.infradead.org
19964 S:      Supported
19965 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
19966 F:      Documentation/arc/
19967 F:      Documentation/devicetree/bindings/arc/*
19968 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
19969 F:      arch/arc/
19970 F:      drivers/clocksource/arc_timer.c
19971 F:      drivers/tty/serial/arc_uart.c
19972
19973 SYNOPSYS ARC HSDK SDP pll clock driver
19974 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19975 S:      Supported
19976 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
19977 F:      drivers/clk/clk-hsdk-pll.c
19978
19979 SYNOPSYS ARC SDP clock driver
19980 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19981 S:      Supported
19982 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
19983 F:      drivers/clk/axs10x/*
19984
19985 SYNOPSYS ARC SDP platform support
19986 M:      Alexey Brodkin <abrodkin@synopsys.com>
19987 S:      Supported
19988 F:      Documentation/devicetree/bindings/arc/axs10*
19989 F:      arch/arc/boot/dts/ax*
19990 F:      arch/arc/plat-axs10x
19991
19992 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
19993 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19994 S:      Supported
19995 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.yaml
19996 F:      drivers/reset/reset-axs10x.c
19997
19998 SYNOPSYS CREG GPIO DRIVER
19999 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
20000 S:      Maintained
20001 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
20002 F:      drivers/gpio/gpio-creg-snps.c
20003
20004 SYNOPSYS DESIGNWARE 8250 UART DRIVER
20005 M:      Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
20006 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
20007 S:      Supported
20008 F:      drivers/tty/serial/8250/8250_dw.c
20009 F:      drivers/tty/serial/8250/8250_dwlib.*
20010 F:      drivers/tty/serial/8250/8250_lpss.c
20011
20012 SYNOPSYS DESIGNWARE APB GPIO DRIVER
20013 M:      Hoan Tran <hoan@os.amperecomputing.com>
20014 M:      Serge Semin <fancer.lancer@gmail.com>
20015 L:      linux-gpio@vger.kernel.org
20016 S:      Maintained
20017 F:      Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
20018 F:      drivers/gpio/gpio-dwapb.c
20019
20020 SYNOPSYS DESIGNWARE APB SSI DRIVER
20021 M:      Serge Semin <fancer.lancer@gmail.com>
20022 L:      linux-spi@vger.kernel.org
20023 S:      Supported
20024 F:      Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
20025 F:      drivers/spi/spi-dw*
20026
20027 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
20028 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
20029 S:      Maintained
20030 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.yaml
20031 F:      drivers/dma/dw-axi-dmac/
20032
20033 SYNOPSYS DESIGNWARE DMAC DRIVER
20034 M:      Viresh Kumar <vireshk@kernel.org>
20035 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
20036 S:      Maintained
20037 F:      Documentation/devicetree/bindings/dma/renesas,rzn1-dmamux.yaml
20038 F:      Documentation/devicetree/bindings/dma/snps,dma-spear1340.yaml
20039 F:      drivers/dma/dw/
20040 F:      include/dt-bindings/dma/dw-dmac.h
20041 F:      include/linux/dma/dw.h
20042 F:      include/linux/platform_data/dma-dw.h
20043
20044 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
20045 M:      Jose Abreu <Jose.Abreu@synopsys.com>
20046 L:      netdev@vger.kernel.org
20047 S:      Supported
20048 F:      drivers/net/ethernet/synopsys/
20049
20050 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
20051 M:      Jose Abreu <Jose.Abreu@synopsys.com>
20052 L:      netdev@vger.kernel.org
20053 S:      Supported
20054 F:      drivers/net/pcs/pcs-xpcs.c
20055 F:      drivers/net/pcs/pcs-xpcs.h
20056 F:      include/linux/pcs/pcs-xpcs.h
20057
20058 SYNOPSYS DESIGNWARE I2C DRIVER
20059 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
20060 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
20061 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
20062 R:      Jan Dabros <jsd@semihalf.com>
20063 L:      linux-i2c@vger.kernel.org
20064 S:      Supported
20065 F:      drivers/i2c/busses/i2c-designware-*
20066
20067 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
20068 M:      Jaehoon Chung <jh80.chung@samsung.com>
20069 L:      linux-mmc@vger.kernel.org
20070 S:      Maintained
20071 F:      drivers/mmc/host/dw_mmc*
20072
20073 SYNOPSYS HSDK RESET CONTROLLER DRIVER
20074 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
20075 S:      Supported
20076 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
20077 F:      drivers/reset/reset-hsdk.c
20078 F:      include/dt-bindings/reset/snps,hsdk-reset.h
20079
20080 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
20081 M:      Prabu Thangamuthu <prabu.t@synopsys.com>
20082 M:      Manjunath M B <manjumb@synopsys.com>
20083 L:      linux-mmc@vger.kernel.org
20084 S:      Maintained
20085 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
20086
20087 SYSTEM CONFIGURATION (SYSCON)
20088 M:      Lee Jones <lee@kernel.org>
20089 M:      Arnd Bergmann <arnd@arndb.de>
20090 S:      Supported
20091 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
20092 F:      drivers/mfd/syscon.c
20093
20094 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
20095 M:      Sudeep Holla <sudeep.holla@arm.com>
20096 R:      Cristian Marussi <cristian.marussi@arm.com>
20097 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
20098 S:      Maintained
20099 F:      Documentation/devicetree/bindings/firmware/arm,sc[mp]i.yaml
20100 F:      drivers/clk/clk-sc[mp]i.c
20101 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
20102 F:      drivers/firmware/arm_scmi/
20103 F:      drivers/firmware/arm_scpi.c
20104 F:      drivers/powercap/arm_scmi_powercap.c
20105 F:      drivers/regulator/scmi-regulator.c
20106 F:      drivers/reset/reset-scmi.c
20107 F:      include/linux/sc[mp]i_protocol.h
20108 F:      include/trace/events/scmi.h
20109 F:      include/uapi/linux/virtio_scmi.h
20110
20111 SYSTEM RESET/SHUTDOWN DRIVERS
20112 M:      Sebastian Reichel <sre@kernel.org>
20113 L:      linux-pm@vger.kernel.org
20114 S:      Maintained
20115 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
20116 F:      Documentation/devicetree/bindings/power/reset/
20117 F:      drivers/power/reset/
20118
20119 SYSTEM TRACE MODULE CLASS
20120 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
20121 S:      Maintained
20122 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
20123 F:      Documentation/trace/stm.rst
20124 F:      drivers/hwtracing/stm/
20125 F:      include/linux/stm.h
20126 F:      include/uapi/linux/stm.h
20127
20128 SYSTEM76 ACPI DRIVER
20129 M:      Jeremy Soller <jeremy@system76.com>
20130 M:      System76 Product Development <productdev@system76.com>
20131 L:      platform-driver-x86@vger.kernel.org
20132 S:      Maintained
20133 F:      drivers/platform/x86/system76_acpi.c
20134
20135 SYSV FILESYSTEM
20136 S:      Orphan
20137 F:      Documentation/filesystems/sysv-fs.rst
20138 F:      fs/sysv/
20139 F:      include/linux/sysv_fs.h
20140
20141 TASKSTATS STATISTICS INTERFACE
20142 M:      Balbir Singh <bsingharora@gmail.com>
20143 S:      Maintained
20144 F:      Documentation/accounting/taskstats*
20145 F:      include/linux/taskstats*
20146 F:      kernel/taskstats.c
20147
20148 TC subsystem
20149 M:      Jamal Hadi Salim <jhs@mojatatu.com>
20150 M:      Cong Wang <xiyou.wangcong@gmail.com>
20151 M:      Jiri Pirko <jiri@resnulli.us>
20152 L:      netdev@vger.kernel.org
20153 S:      Maintained
20154 F:      include/net/pkt_cls.h
20155 F:      include/net/pkt_sched.h
20156 F:      include/net/tc_act/
20157 F:      include/uapi/linux/pkt_cls.h
20158 F:      include/uapi/linux/pkt_sched.h
20159 F:      include/uapi/linux/tc_act/
20160 F:      include/uapi/linux/tc_ematch/
20161 F:      net/sched/
20162 F:      tools/testing/selftests/tc-testing
20163
20164 TC90522 MEDIA DRIVER
20165 M:      Akihiro Tsukada <tskd08@gmail.com>
20166 L:      linux-media@vger.kernel.org
20167 S:      Odd Fixes
20168 F:      drivers/media/dvb-frontends/tc90522*
20169
20170 TCP LOW PRIORITY MODULE
20171 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
20172 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
20173 S:      Maintained
20174 W:      http://tcp-lp-mod.sourceforge.net/
20175 F:      net/ipv4/tcp_lp.c
20176
20177 TDA10071 MEDIA DRIVER
20178 M:      Antti Palosaari <crope@iki.fi>
20179 L:      linux-media@vger.kernel.org
20180 S:      Maintained
20181 W:      https://linuxtv.org
20182 W:      http://palosaari.fi/linux/
20183 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20184 T:      git git://linuxtv.org/anttip/media_tree.git
20185 F:      drivers/media/dvb-frontends/tda10071*
20186
20187 TDA18212 MEDIA DRIVER
20188 M:      Antti Palosaari <crope@iki.fi>
20189 L:      linux-media@vger.kernel.org
20190 S:      Maintained
20191 W:      https://linuxtv.org
20192 W:      http://palosaari.fi/linux/
20193 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20194 T:      git git://linuxtv.org/anttip/media_tree.git
20195 F:      drivers/media/tuners/tda18212*
20196
20197 TDA18218 MEDIA DRIVER
20198 M:      Antti Palosaari <crope@iki.fi>
20199 L:      linux-media@vger.kernel.org
20200 S:      Maintained
20201 W:      https://linuxtv.org
20202 W:      http://palosaari.fi/linux/
20203 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20204 T:      git git://linuxtv.org/anttip/media_tree.git
20205 F:      drivers/media/tuners/tda18218*
20206
20207 TDA18250 MEDIA DRIVER
20208 M:      Olli Salonen <olli.salonen@iki.fi>
20209 L:      linux-media@vger.kernel.org
20210 S:      Maintained
20211 W:      https://linuxtv.org
20212 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20213 T:      git git://linuxtv.org/media_tree.git
20214 F:      drivers/media/tuners/tda18250*
20215
20216 TDA18271 MEDIA DRIVER
20217 M:      Michael Krufky <mkrufky@linuxtv.org>
20218 L:      linux-media@vger.kernel.org
20219 S:      Maintained
20220 W:      https://linuxtv.org
20221 W:      http://github.com/mkrufky
20222 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20223 T:      git git://linuxtv.org/mkrufky/tuners.git
20224 F:      drivers/media/tuners/tda18271*
20225
20226 TDA1997x MEDIA DRIVER
20227 M:      Tim Harvey <tharvey@gateworks.com>
20228 L:      linux-media@vger.kernel.org
20229 S:      Maintained
20230 W:      https://linuxtv.org
20231 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20232 F:      drivers/media/i2c/tda1997x.*
20233
20234 TDA827x MEDIA DRIVER
20235 M:      Michael Krufky <mkrufky@linuxtv.org>
20236 L:      linux-media@vger.kernel.org
20237 S:      Maintained
20238 W:      https://linuxtv.org
20239 W:      http://github.com/mkrufky
20240 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20241 T:      git git://linuxtv.org/mkrufky/tuners.git
20242 F:      drivers/media/tuners/tda8290.*
20243
20244 TDA8290 MEDIA DRIVER
20245 M:      Michael Krufky <mkrufky@linuxtv.org>
20246 L:      linux-media@vger.kernel.org
20247 S:      Maintained
20248 W:      https://linuxtv.org
20249 W:      http://github.com/mkrufky
20250 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20251 T:      git git://linuxtv.org/mkrufky/tuners.git
20252 F:      drivers/media/tuners/tda8290.*
20253
20254 TDA9840 MEDIA DRIVER
20255 M:      Hans Verkuil <hverkuil@xs4all.nl>
20256 L:      linux-media@vger.kernel.org
20257 S:      Maintained
20258 W:      https://linuxtv.org
20259 T:      git git://linuxtv.org/media_tree.git
20260 F:      drivers/media/i2c/tda9840*
20261
20262 TEA5761 TUNER DRIVER
20263 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
20264 L:      linux-media@vger.kernel.org
20265 S:      Odd fixes
20266 W:      https://linuxtv.org
20267 T:      git git://linuxtv.org/media_tree.git
20268 F:      drivers/media/tuners/tea5761.*
20269
20270 TEA5767 TUNER DRIVER
20271 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
20272 L:      linux-media@vger.kernel.org
20273 S:      Maintained
20274 W:      https://linuxtv.org
20275 T:      git git://linuxtv.org/media_tree.git
20276 F:      drivers/media/tuners/tea5767.*
20277
20278 TEA6415C MEDIA DRIVER
20279 M:      Hans Verkuil <hverkuil@xs4all.nl>
20280 L:      linux-media@vger.kernel.org
20281 S:      Maintained
20282 W:      https://linuxtv.org
20283 T:      git git://linuxtv.org/media_tree.git
20284 F:      drivers/media/i2c/tea6415c*
20285
20286 TEA6420 MEDIA DRIVER
20287 M:      Hans Verkuil <hverkuil@xs4all.nl>
20288 L:      linux-media@vger.kernel.org
20289 S:      Maintained
20290 W:      https://linuxtv.org
20291 T:      git git://linuxtv.org/media_tree.git
20292 F:      drivers/media/i2c/tea6420*
20293
20294 TEAM DRIVER
20295 M:      Jiri Pirko <jiri@resnulli.us>
20296 L:      netdev@vger.kernel.org
20297 S:      Supported
20298 F:      drivers/net/team/
20299 F:      include/linux/if_team.h
20300 F:      include/uapi/linux/if_team.h
20301 F:      tools/testing/selftests/drivers/net/team/
20302
20303 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
20304 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
20305 S:      Maintained
20306 F:      arch/x86/platform/ts5500/
20307
20308 TECHNOTREND USB IR RECEIVER
20309 M:      Sean Young <sean@mess.org>
20310 L:      linux-media@vger.kernel.org
20311 S:      Maintained
20312 F:      drivers/media/rc/ttusbir.c
20313
20314 TECHWELL TW9910 VIDEO DECODER
20315 L:      linux-media@vger.kernel.org
20316 S:      Orphan
20317 F:      drivers/media/i2c/tw9910.c
20318 F:      include/media/i2c/tw9910.h
20319
20320 TEE SUBSYSTEM
20321 M:      Jens Wiklander <jens.wiklander@linaro.org>
20322 R:      Sumit Garg <sumit.garg@linaro.org>
20323 L:      op-tee@lists.trustedfirmware.org
20324 S:      Maintained
20325 F:      Documentation/staging/tee.rst
20326 F:      drivers/tee/
20327 F:      include/linux/tee_drv.h
20328 F:      include/uapi/linux/tee.h
20329
20330 TEGRA ARCHITECTURE SUPPORT
20331 M:      Thierry Reding <thierry.reding@gmail.com>
20332 M:      Jonathan Hunter <jonathanh@nvidia.com>
20333 L:      linux-tegra@vger.kernel.org
20334 S:      Supported
20335 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
20336 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
20337 N:      [^a-z]tegra
20338
20339 TEGRA CLOCK DRIVER
20340 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
20341 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
20342 S:      Supported
20343 F:      drivers/clk/tegra/
20344
20345 TEGRA DMA DRIVERS
20346 M:      Laxman Dewangan <ldewangan@nvidia.com>
20347 M:      Jon Hunter <jonathanh@nvidia.com>
20348 S:      Supported
20349 F:      drivers/dma/tegra*
20350
20351 TEGRA I2C DRIVER
20352 M:      Laxman Dewangan <ldewangan@nvidia.com>
20353 R:      Dmitry Osipenko <digetx@gmail.com>
20354 S:      Supported
20355 F:      drivers/i2c/busses/i2c-tegra.c
20356
20357 TEGRA IOMMU DRIVERS
20358 M:      Thierry Reding <thierry.reding@gmail.com>
20359 R:      Krishna Reddy <vdumpa@nvidia.com>
20360 L:      linux-tegra@vger.kernel.org
20361 S:      Supported
20362 F:      drivers/iommu/arm/arm-smmu/arm-smmu-nvidia.c
20363 F:      drivers/iommu/tegra*
20364
20365 TEGRA KBC DRIVER
20366 M:      Laxman Dewangan <ldewangan@nvidia.com>
20367 S:      Supported
20368 F:      drivers/input/keyboard/tegra-kbc.c
20369
20370 TEGRA NAND DRIVER
20371 M:      Stefan Agner <stefan@agner.ch>
20372 M:      Lucas Stach <dev@lynxeye.de>
20373 S:      Maintained
20374 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
20375 F:      drivers/mtd/nand/raw/tegra_nand.c
20376
20377 TEGRA PWM DRIVER
20378 M:      Thierry Reding <thierry.reding@gmail.com>
20379 S:      Supported
20380 F:      drivers/pwm/pwm-tegra.c
20381
20382 TEGRA SERIAL DRIVER
20383 M:      Laxman Dewangan <ldewangan@nvidia.com>
20384 S:      Supported
20385 F:      drivers/tty/serial/serial-tegra.c
20386
20387 TEGRA SPI DRIVER
20388 M:      Laxman Dewangan <ldewangan@nvidia.com>
20389 S:      Supported
20390 F:      drivers/spi/spi-tegra*
20391
20392 TEGRA QUAD SPI DRIVER
20393 M:      Thierry Reding <thierry.reding@gmail.com>
20394 M:      Jonathan Hunter <jonathanh@nvidia.com>
20395 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
20396 L:      linux-tegra@vger.kernel.org
20397 S:      Maintained
20398 F:      drivers/spi/spi-tegra210-quad.c
20399
20400 TEGRA VIDEO DRIVER
20401 M:      Thierry Reding <thierry.reding@gmail.com>
20402 M:      Jonathan Hunter <jonathanh@nvidia.com>
20403 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
20404 L:      linux-media@vger.kernel.org
20405 L:      linux-tegra@vger.kernel.org
20406 S:      Maintained
20407 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.yaml
20408 F:      drivers/staging/media/tegra-video/
20409
20410 TEGRA XUSB PADCTL DRIVER
20411 M:      JC Kuo <jckuo@nvidia.com>
20412 S:      Supported
20413 F:      drivers/phy/tegra/xusb*
20414
20415 TEHUTI ETHERNET DRIVER
20416 M:      Andy Gospodarek <andy@greyhouse.net>
20417 L:      netdev@vger.kernel.org
20418 S:      Supported
20419 F:      drivers/net/ethernet/tehuti/*
20420
20421 TELECOM CLOCK DRIVER FOR MCPL0010
20422 M:      Mark Gross <markgross@kernel.org>
20423 S:      Supported
20424 F:      drivers/char/tlclk.c
20425
20426 TEMPO SEMICONDUCTOR DRIVERS
20427 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
20428 S:      Maintained
20429 F:      Documentation/devicetree/bindings/sound/tscs*.txt
20430 F:      sound/soc/codecs/tscs*.c
20431 F:      sound/soc/codecs/tscs*.h
20432
20433 TENSILICA XTENSA PORT (xtensa)
20434 M:      Chris Zankel <chris@zankel.net>
20435 M:      Max Filippov <jcmvbkbc@gmail.com>
20436 L:      linux-xtensa@linux-xtensa.org
20437 S:      Maintained
20438 T:      git https://github.com/jcmvbkbc/linux-xtensa.git
20439 F:      arch/xtensa/
20440 F:      drivers/irqchip/irq-xtensa-*
20441
20442 TEXAS INSTRUMENTS ASoC DRIVERS
20443 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
20444 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20445 S:      Maintained
20446 F:      Documentation/devicetree/bindings/sound/davinci-mcasp-audio.yaml
20447 F:      sound/soc/ti/
20448
20449 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
20450 M:      Ricardo Ribalda <ribalda@kernel.org>
20451 L:      linux-iio@vger.kernel.org
20452 S:      Supported
20453 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.yaml
20454 F:      drivers/iio/dac/ti-dac7612.c
20455
20456 TEXAS INSTRUMENTS DMA DRIVERS
20457 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
20458 L:      dmaengine@vger.kernel.org
20459 S:      Maintained
20460 F:      Documentation/devicetree/bindings/dma/ti-dma-crossbar.txt
20461 F:      Documentation/devicetree/bindings/dma/ti-edma.txt
20462 F:      Documentation/devicetree/bindings/dma/ti/
20463 F:      drivers/dma/ti/
20464 X:      drivers/dma/ti/cppi41.c
20465 F:      include/linux/dma/k3-udma-glue.h
20466 F:      include/linux/dma/ti-cppi5.h
20467 F:      include/linux/dma/k3-psil.h
20468
20469 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
20470 M:      Nishanth Menon <nm@ti.com>
20471 M:      Tero Kristo <kristo@kernel.org>
20472 M:      Santosh Shilimkar <ssantosh@kernel.org>
20473 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
20474 S:      Maintained
20475 F:      Documentation/devicetree/bindings/arm/keystone/ti,k3-sci-common.yaml
20476 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.yaml
20477 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.yaml
20478 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.yaml
20479 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.yaml
20480 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.yaml
20481 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.yaml
20482 F:      drivers/clk/keystone/sci-clk.c
20483 F:      drivers/firmware/ti_sci*
20484 F:      drivers/irqchip/irq-ti-sci-inta.c
20485 F:      drivers/irqchip/irq-ti-sci-intr.c
20486 F:      drivers/reset/reset-ti-sci.c
20487 F:      drivers/soc/ti/ti_sci_inta_msi.c
20488 F:      drivers/soc/ti/ti_sci_pm_domains.c
20489 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
20490 F:      include/linux/soc/ti/ti_sci_inta_msi.h
20491 F:      include/linux/soc/ti/ti_sci_protocol.h
20492
20493 TEXAS INSTRUMENTS TPS23861 PoE PSE DRIVER
20494 M:      Robert Marko <robert.marko@sartura.hr>
20495 M:      Luka Perkov <luka.perkov@sartura.hr>
20496 L:      linux-hwmon@vger.kernel.org
20497 S:      Maintained
20498 F:      Documentation/devicetree/bindings/hwmon/ti,tps23861.yaml
20499 F:      Documentation/hwmon/tps23861.rst
20500 F:      drivers/hwmon/tps23861.c
20501
20502 TEXAS INSTRUMENTS' TMP117 TEMPERATURE SENSOR DRIVER
20503 M:      Puranjay Mohan <puranjay12@gmail.com>
20504 L:      linux-iio@vger.kernel.org
20505 S:      Supported
20506 F:      Documentation/devicetree/bindings/iio/temperature/ti,tmp117.yaml
20507 F:      drivers/iio/temperature/tmp117.c
20508
20509 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
20510 M:      Hans Verkuil <hverkuil@xs4all.nl>
20511 L:      linux-media@vger.kernel.org
20512 S:      Maintained
20513 W:      https://linuxtv.org
20514 T:      git git://linuxtv.org/media_tree.git
20515 F:      drivers/media/radio/radio-raremono.c
20516
20517 THERMAL
20518 M:      Rafael J. Wysocki <rafael@kernel.org>
20519 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
20520 R:      Amit Kucheria <amitk@kernel.org>
20521 R:      Zhang Rui <rui.zhang@intel.com>
20522 L:      linux-pm@vger.kernel.org
20523 S:      Supported
20524 Q:      https://patchwork.kernel.org/project/linux-pm/list/
20525 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git thermal
20526 F:      Documentation/ABI/testing/sysfs-class-thermal
20527 F:      Documentation/devicetree/bindings/thermal/
20528 F:      Documentation/driver-api/thermal/
20529 F:      drivers/thermal/
20530 F:      include/dt-bindings/thermal/
20531 F:      include/linux/cpu_cooling.h
20532 F:      include/linux/thermal.h
20533 F:      include/uapi/linux/thermal.h
20534 F:      tools/lib/thermal/
20535 F:      tools/thermal/
20536
20537 THERMAL DRIVER FOR AMLOGIC SOCS
20538 M:      Guillaume La Roque <glaroque@baylibre.com>
20539 L:      linux-pm@vger.kernel.org
20540 L:      linux-amlogic@lists.infradead.org
20541 S:      Supported
20542 W:      http://linux-meson.com/
20543 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
20544 F:      drivers/thermal/amlogic_thermal.c
20545
20546 THERMAL/CPU_COOLING
20547 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
20548 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
20549 M:      Viresh Kumar <viresh.kumar@linaro.org>
20550 R:      Lukasz Luba <lukasz.luba@arm.com>
20551 L:      linux-pm@vger.kernel.org
20552 S:      Supported
20553 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
20554 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
20555 F:      drivers/thermal/cpufreq_cooling.c
20556 F:      drivers/thermal/cpuidle_cooling.c
20557 F:      include/linux/cpu_cooling.h
20558
20559 THERMAL/POWER_ALLOCATOR
20560 M:      Lukasz Luba <lukasz.luba@arm.com>
20561 L:      linux-pm@vger.kernel.org
20562 S:      Maintained
20563 F:      Documentation/driver-api/thermal/power_allocator.rst
20564 F:      drivers/thermal/gov_power_allocator.c
20565 F:      include/trace/events/thermal_power_allocator.h
20566
20567 THINKPAD ACPI EXTRAS DRIVER
20568 M:      Henrique de Moraes Holschuh <hmh@hmh.eng.br>
20569 L:      ibm-acpi-devel@lists.sourceforge.net
20570 L:      platform-driver-x86@vger.kernel.org
20571 S:      Maintained
20572 W:      http://ibm-acpi.sourceforge.net
20573 W:      http://thinkwiki.org/wiki/Ibm-acpi
20574 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
20575 F:      drivers/platform/x86/thinkpad_acpi.c
20576
20577 THINKPAD LMI DRIVER
20578 M:      Mark Pearson <markpearson@lenovo.com>
20579 L:      platform-driver-x86@vger.kernel.org
20580 S:      Maintained
20581 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
20582 F:      drivers/platform/x86/think-lmi.?
20583
20584 THUNDERBOLT DMA TRAFFIC TEST DRIVER
20585 M:      Isaac Hazan <isaac.hazan@intel.com>
20586 L:      linux-usb@vger.kernel.org
20587 S:      Maintained
20588 F:      drivers/thunderbolt/dma_test.c
20589
20590 THUNDERBOLT DRIVER
20591 M:      Andreas Noever <andreas.noever@gmail.com>
20592 M:      Michael Jamet <michael.jamet@intel.com>
20593 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
20594 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
20595 L:      linux-usb@vger.kernel.org
20596 S:      Maintained
20597 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
20598 F:      Documentation/admin-guide/thunderbolt.rst
20599 F:      drivers/thunderbolt/
20600 F:      include/linux/thunderbolt.h
20601
20602 THUNDERBOLT NETWORK DRIVER
20603 M:      Michael Jamet <michael.jamet@intel.com>
20604 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
20605 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
20606 L:      netdev@vger.kernel.org
20607 S:      Maintained
20608 F:      drivers/net/thunderbolt.c
20609
20610 THUNDERX GPIO DRIVER
20611 M:      Robert Richter <rric@kernel.org>
20612 S:      Odd Fixes
20613 F:      drivers/gpio/gpio-thunderx.c
20614
20615 TI AM437X VPFE DRIVER
20616 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
20617 L:      linux-media@vger.kernel.org
20618 S:      Maintained
20619 W:      https://linuxtv.org
20620 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20621 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
20622 F:      drivers/media/platform/ti/am437x/
20623
20624 TI BANDGAP AND THERMAL DRIVER
20625 M:      Eduardo Valentin <edubezval@gmail.com>
20626 M:      Keerthy <j-keerthy@ti.com>
20627 L:      linux-pm@vger.kernel.org
20628 L:      linux-omap@vger.kernel.org
20629 S:      Maintained
20630 F:      drivers/thermal/ti-soc-thermal/
20631
20632 TI BQ27XXX POWER SUPPLY DRIVER
20633 F:      drivers/power/supply/bq27xxx_battery.c
20634 F:      drivers/power/supply/bq27xxx_battery_i2c.c
20635 F:      include/linux/power/bq27xxx_battery.h
20636
20637 TI CDCE706 CLOCK DRIVER
20638 M:      Max Filippov <jcmvbkbc@gmail.com>
20639 S:      Maintained
20640 F:      drivers/clk/clk-cdce706.c
20641
20642 TI CLOCK DRIVER
20643 M:      Tero Kristo <kristo@kernel.org>
20644 L:      linux-omap@vger.kernel.org
20645 S:      Odd Fixes
20646 F:      drivers/clk/ti/
20647 F:      include/linux/clk/ti.h
20648
20649 TI DAVINCI MACHINE SUPPORT
20650 M:      Sekhar Nori <nsekhar@ti.com>
20651 R:      Bartosz Golaszewski <brgl@bgdev.pl>
20652 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
20653 S:      Supported
20654 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
20655 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
20656 F:      arch/arm/boot/dts/da850*
20657 F:      arch/arm/mach-davinci/
20658 F:      drivers/i2c/busses/i2c-davinci.c
20659
20660 TI DAVINCI SERIES CLOCK DRIVER
20661 M:      David Lechner <david@lechnology.com>
20662 R:      Sekhar Nori <nsekhar@ti.com>
20663 S:      Maintained
20664 F:      Documentation/devicetree/bindings/clock/ti/davinci/
20665 F:      drivers/clk/davinci/
20666 F:      include/linux/clk/davinci.h
20667
20668 TI DAVINCI SERIES GPIO DRIVER
20669 M:      Keerthy <j-keerthy@ti.com>
20670 L:      linux-gpio@vger.kernel.org
20671 S:      Maintained
20672 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.yaml
20673 F:      drivers/gpio/gpio-davinci.c
20674
20675 TI DAVINCI SERIES MEDIA DRIVER
20676 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
20677 L:      linux-media@vger.kernel.org
20678 S:      Maintained
20679 W:      https://linuxtv.org
20680 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20681 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
20682 F:      drivers/media/platform/ti/davinci/
20683 F:      include/media/davinci/
20684
20685 TI ENHANCED CAPTURE (eCAP) DRIVER
20686 M:      Vignesh Raghavendra <vigneshr@ti.com>
20687 R:      Julien Panis <jpanis@baylibre.com>
20688 L:      linux-iio@vger.kernel.org
20689 L:      linux-omap@vger.kernel.org
20690 S:      Maintained
20691 F:      Documentation/devicetree/bindings/counter/ti,am62-ecap-capture.yaml
20692 F:      drivers/counter/ti-ecap-capture.c
20693
20694 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
20695 R:      David Lechner <david@lechnology.com>
20696 L:      linux-iio@vger.kernel.org
20697 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
20698 F:      drivers/counter/ti-eqep.c
20699
20700 TI ETHERNET SWITCH DRIVER (CPSW)
20701 R:      Grygorii Strashko <grygorii.strashko@ti.com>
20702 L:      linux-omap@vger.kernel.org
20703 L:      netdev@vger.kernel.org
20704 S:      Maintained
20705 F:      drivers/net/ethernet/ti/cpsw*
20706 F:      drivers/net/ethernet/ti/davinci*
20707
20708 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
20709 M:      Alex Dubov <oakad@yahoo.com>
20710 S:      Maintained
20711 W:      http://tifmxx.berlios.de/
20712 F:      drivers/memstick/host/tifm_ms.c
20713 F:      drivers/misc/tifm*
20714 F:      drivers/mmc/host/tifm_sd.c
20715 F:      include/linux/tifm.h
20716
20717 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
20718 M:      Nishanth Menon <nm@ti.com>
20719 M:      Santosh Shilimkar <ssantosh@kernel.org>
20720 L:      linux-kernel@vger.kernel.org
20721 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
20722 S:      Maintained
20723 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
20724 F:      drivers/soc/ti/*
20725
20726 TI LM49xxx FAMILY ASoC CODEC DRIVERS
20727 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
20728 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
20729 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20730 S:      Maintained
20731 F:      sound/soc/codecs/isabelle*
20732 F:      sound/soc/codecs/lm49453*
20733
20734 TI PCM3060 ASoC CODEC DRIVER
20735 M:      Kirill Marinushkin <kmarinushkin@birdec.com>
20736 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20737 S:      Maintained
20738 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
20739 F:      sound/soc/codecs/pcm3060*
20740
20741 TI TAS571X FAMILY ASoC CODEC DRIVER
20742 M:      Kevin Cernekee <cernekee@chromium.org>
20743 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20744 S:      Odd Fixes
20745 F:      sound/soc/codecs/tas571x*
20746
20747 TI TRF7970A NFC DRIVER
20748 M:      Mark Greer <mgreer@animalcreek.com>
20749 L:      linux-wireless@vger.kernel.org
20750 L:      linux-nfc@lists.01.org (subscribers-only)
20751 S:      Supported
20752 F:      Documentation/devicetree/bindings/net/nfc/ti,trf7970a.yaml
20753 F:      drivers/nfc/trf7970a.c
20754
20755 TI TSC2046 ADC DRIVER
20756 M:      Oleksij Rempel <o.rempel@pengutronix.de>
20757 R:      kernel@pengutronix.de
20758 L:      linux-iio@vger.kernel.org
20759 S:      Maintained
20760 F:      Documentation/devicetree/bindings/iio/adc/ti,tsc2046.yaml
20761 F:      drivers/iio/adc/ti-tsc2046.c
20762
20763 TI TWL4030 SERIES SOC CODEC DRIVER
20764 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
20765 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20766 S:      Maintained
20767 F:      sound/soc/codecs/twl4030*
20768
20769 TI VPE/CAL DRIVERS
20770 M:      Benoit Parrot <bparrot@ti.com>
20771 L:      linux-media@vger.kernel.org
20772 S:      Maintained
20773 W:      http://linuxtv.org/
20774 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20775 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
20776 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
20777 F:      drivers/media/platform/ti/cal/
20778 F:      drivers/media/platform/ti/vpe/
20779
20780 TI WILINK WIRELESS DRIVERS
20781 L:      linux-wireless@vger.kernel.org
20782 S:      Orphan
20783 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
20784 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
20785 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
20786 F:      drivers/net/wireless/ti/
20787
20788 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
20789 M:      John Stultz <jstultz@google.com>
20790 M:      Thomas Gleixner <tglx@linutronix.de>
20791 R:      Stephen Boyd <sboyd@kernel.org>
20792 L:      linux-kernel@vger.kernel.org
20793 S:      Supported
20794 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
20795 F:      include/linux/clocksource.h
20796 F:      include/linux/time.h
20797 F:      include/linux/timex.h
20798 F:      include/uapi/linux/time.h
20799 F:      include/uapi/linux/timex.h
20800 F:      kernel/time/alarmtimer.c
20801 F:      kernel/time/clocksource.c
20802 F:      kernel/time/ntp.c
20803 F:      kernel/time/time*.c
20804 F:      tools/testing/selftests/timers/
20805
20806 TIPC NETWORK LAYER
20807 M:      Jon Maloy <jmaloy@redhat.com>
20808 M:      Ying Xue <ying.xue@windriver.com>
20809 L:      netdev@vger.kernel.org (core kernel code)
20810 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
20811 S:      Maintained
20812 W:      http://tipc.sourceforge.net/
20813 F:      include/uapi/linux/tipc*.h
20814 F:      net/tipc/
20815
20816 TLAN NETWORK DRIVER
20817 M:      Samuel Chessman <chessman@tux.org>
20818 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
20819 S:      Maintained
20820 W:      http://sourceforge.net/projects/tlan/
20821 F:      Documentation/networking/device_drivers/ethernet/ti/tlan.rst
20822 F:      drivers/net/ethernet/ti/tlan.*
20823
20824 TM6000 VIDEO4LINUX DRIVER
20825 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
20826 L:      linux-media@vger.kernel.org
20827 S:      Odd fixes
20828 W:      https://linuxtv.org
20829 T:      git git://linuxtv.org/media_tree.git
20830 F:      Documentation/admin-guide/media/tm6000*
20831 F:      drivers/staging/media/deprecated/tm6000/
20832
20833 TMIO/SDHI MMC DRIVER
20834 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
20835 L:      linux-mmc@vger.kernel.org
20836 L:      linux-renesas-soc@vger.kernel.org
20837 S:      Supported
20838 F:      drivers/mmc/host/renesas_sdhi*
20839 F:      drivers/mmc/host/tmio_mmc*
20840 F:      include/linux/mfd/tmio.h
20841
20842 TMP401 HARDWARE MONITOR DRIVER
20843 M:      Guenter Roeck <linux@roeck-us.net>
20844 L:      linux-hwmon@vger.kernel.org
20845 S:      Maintained
20846 F:      Documentation/devicetree/bindings/hwmon/ti,tmp401.yaml
20847 F:      Documentation/hwmon/tmp401.rst
20848 F:      drivers/hwmon/tmp401.c
20849
20850 TMP464 HARDWARE MONITOR DRIVER
20851 M:      Agathe Porte <agathe.porte@nokia.com>
20852 M:      Guenter Roeck <linux@roeck-us.net>
20853 L:      linux-hwmon@vger.kernel.org
20854 S:      Maintained
20855 F:      Documentation/devicetree/bindings/hwmon/ti,tmp464.yaml
20856 F:      Documentation/hwmon/tmp464.rst
20857 F:      drivers/hwmon/tmp464.c
20858
20859 TMP513 HARDWARE MONITOR DRIVER
20860 M:      Eric Tremblay <etremblay@distech-controls.com>
20861 L:      linux-hwmon@vger.kernel.org
20862 S:      Maintained
20863 F:      Documentation/hwmon/tmp513.rst
20864 F:      drivers/hwmon/tmp513.c
20865
20866 TMPFS (SHMEM FILESYSTEM)
20867 M:      Hugh Dickins <hughd@google.com>
20868 L:      linux-mm@kvack.org
20869 S:      Maintained
20870 F:      include/linux/shmem_fs.h
20871 F:      mm/shmem.c
20872
20873 TOMOYO SECURITY MODULE
20874 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
20875 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
20876 L:      tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
20877 L:      tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
20878 L:      tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
20879 L:      tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
20880 S:      Maintained
20881 W:      https://tomoyo.osdn.jp/
20882 F:      security/tomoyo/
20883
20884 TOPSTAR LAPTOP EXTRAS DRIVER
20885 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
20886 L:      platform-driver-x86@vger.kernel.org
20887 S:      Maintained
20888 F:      drivers/platform/x86/topstar-laptop.c
20889
20890 TORTURE-TEST MODULES
20891 M:      Davidlohr Bueso <dave@stgolabs.net>
20892 M:      "Paul E. McKenney" <paulmck@kernel.org>
20893 M:      Josh Triplett <josh@joshtriplett.org>
20894 L:      linux-kernel@vger.kernel.org
20895 S:      Supported
20896 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
20897 F:      Documentation/RCU/torture.rst
20898 F:      kernel/locking/locktorture.c
20899 F:      kernel/rcu/rcuscale.c
20900 F:      kernel/rcu/rcutorture.c
20901 F:      kernel/rcu/refscale.c
20902 F:      kernel/torture.c
20903
20904 TOSHIBA ACPI EXTRAS DRIVER
20905 M:      Azael Avalos <coproscefalo@gmail.com>
20906 L:      platform-driver-x86@vger.kernel.org
20907 S:      Maintained
20908 F:      drivers/platform/x86/toshiba_acpi.c
20909
20910 TOSHIBA BLUETOOTH DRIVER
20911 M:      Azael Avalos <coproscefalo@gmail.com>
20912 L:      platform-driver-x86@vger.kernel.org
20913 S:      Maintained
20914 F:      drivers/platform/x86/toshiba_bluetooth.c
20915
20916 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
20917 M:      Azael Avalos <coproscefalo@gmail.com>
20918 L:      platform-driver-x86@vger.kernel.org
20919 S:      Maintained
20920 F:      drivers/platform/x86/toshiba_haps.c
20921
20922 TOSHIBA SMM DRIVER
20923 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
20924 S:      Maintained
20925 W:      http://www.buzzard.org.uk/toshiba/
20926 F:      drivers/char/toshiba.c
20927 F:      include/linux/toshiba.h
20928 F:      include/uapi/linux/toshiba.h
20929
20930 TOSHIBA TC358743 DRIVER
20931 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
20932 L:      linux-media@vger.kernel.org
20933 S:      Maintained
20934 F:      Documentation/devicetree/bindings/media/i2c/tc358743.txt
20935 F:      drivers/media/i2c/tc358743*
20936 F:      include/media/i2c/tc358743.h
20937
20938 TOSHIBA WMI HOTKEYS DRIVER
20939 M:      Azael Avalos <coproscefalo@gmail.com>
20940 L:      platform-driver-x86@vger.kernel.org
20941 S:      Maintained
20942 F:      drivers/platform/x86/toshiba-wmi.c
20943
20944 TPM DEVICE DRIVER
20945 M:      Peter Huewe <peterhuewe@gmx.de>
20946 M:      Jarkko Sakkinen <jarkko@kernel.org>
20947 R:      Jason Gunthorpe <jgg@ziepe.ca>
20948 L:      linux-integrity@vger.kernel.org
20949 S:      Maintained
20950 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
20951 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
20952 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd.git
20953 F:      drivers/char/tpm/
20954
20955 TPS546D24 DRIVER
20956 M:      Duke Du <dukedu83@gmail.com>
20957 L:      linux-hwmon@vger.kernel.org
20958 S:      Maintained
20959 F:      Documentation/hwmon/tps546d24.rst
20960 F:      drivers/hwmon/pmbus/tps546d24.c
20961
20962 TRACING
20963 M:      Steven Rostedt <rostedt@goodmis.org>
20964 M:      Masami Hiramatsu <mhiramat@kernel.org>
20965 L:      linux-kernel@vger.kernel.org
20966 L:      linux-trace-kernel@vger.kernel.org
20967 Q:      https://patchwork.kernel.org/project/linux-trace-kernel/list/
20968 S:      Maintained
20969 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace.git
20970 F:      Documentation/trace/*
20971 F:      fs/tracefs/
20972 F:      include/linux/trace*.h
20973 F:      include/trace/
20974 F:      kernel/trace/
20975 F:      scripts/tracing/
20976 F:      tools/testing/selftests/ftrace/
20977
20978 TRACING MMIO ACCESSES (MMIOTRACE)
20979 M:      Steven Rostedt <rostedt@goodmis.org>
20980 M:      Masami Hiramatsu <mhiramat@kernel.org>
20981 R:      Karol Herbst <karolherbst@gmail.com>
20982 R:      Pekka Paalanen <ppaalanen@gmail.com>
20983 L:      linux-kernel@vger.kernel.org
20984 L:      nouveau@lists.freedesktop.org
20985 S:      Maintained
20986 F:      arch/x86/mm/kmmio.c
20987 F:      arch/x86/mm/mmio-mod.c
20988 F:      arch/x86/mm/testmmiotrace.c
20989 F:      include/linux/mmiotrace.h
20990 F:      kernel/trace/trace_mmiotrace.c
20991
20992 TRACING OS NOISE / LATENCY TRACERS
20993 M:      Steven Rostedt <rostedt@goodmis.org>
20994 M:      Daniel Bristot de Oliveira <bristot@kernel.org>
20995 S:      Maintained
20996 F:      kernel/trace/trace_osnoise.c
20997 F:      include/trace/events/osnoise.h
20998 F:      kernel/trace/trace_hwlat.c
20999 F:      kernel/trace/trace_irqsoff.c
21000 F:      kernel/trace/trace_sched_wakeup.c
21001 F:      Documentation/trace/osnoise-tracer.rst
21002 F:      Documentation/trace/timerlat-tracer.rst
21003 F:      Documentation/trace/hwlat_detector.rst
21004 F:      arch/*/kernel/trace.c
21005
21006 Real-time Linux Analysis (RTLA) tools
21007 M:      Daniel Bristot de Oliveira <bristot@kernel.org>
21008 M:      Steven Rostedt <rostedt@goodmis.org>
21009 L:      linux-trace-devel@vger.kernel.org
21010 S:      Maintained
21011 F:      Documentation/tools/rtla/
21012 F:      tools/tracing/rtla/
21013
21014 TRADITIONAL CHINESE DOCUMENTATION
21015 M:      Hu Haowen <src.res@email.cn>
21016 L:      linux-doc-tw-discuss@lists.sourceforge.net (moderated for non-subscribers)
21017 S:      Maintained
21018 W:      https://github.com/srcres258/linux-doc
21019 T:      git git://github.com/srcres258/linux-doc.git doc-zh-tw
21020 F:      Documentation/translations/zh_TW/
21021
21022 TTY LAYER
21023 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
21024 M:      Jiri Slaby <jirislaby@kernel.org>
21025 S:      Supported
21026 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
21027 F:      Documentation/driver-api/serial/
21028 F:      drivers/tty/
21029 F:      drivers/tty/serial/serial_core.c
21030 F:      include/linux/selection.h
21031 F:      include/linux/serial.h
21032 F:      include/linux/serial_core.h
21033 F:      include/linux/sysrq.h
21034 F:      include/linux/tty*.h
21035 F:      include/linux/vt.h
21036 F:      include/linux/vt_*.h
21037 F:      include/uapi/linux/serial.h
21038 F:      include/uapi/linux/serial_core.h
21039 F:      include/uapi/linux/tty.h
21040
21041 TUA9001 MEDIA DRIVER
21042 M:      Antti Palosaari <crope@iki.fi>
21043 L:      linux-media@vger.kernel.org
21044 S:      Maintained
21045 W:      https://linuxtv.org
21046 W:      http://palosaari.fi/linux/
21047 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
21048 T:      git git://linuxtv.org/anttip/media_tree.git
21049 F:      drivers/media/tuners/tua9001*
21050
21051 TULIP NETWORK DRIVERS
21052 L:      netdev@vger.kernel.org
21053 L:      linux-parisc@vger.kernel.org
21054 S:      Orphan
21055 F:      drivers/net/ethernet/dec/tulip/
21056
21057 TUN/TAP driver
21058 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
21059 S:      Maintained
21060 W:      http://vtun.sourceforge.net/tun
21061 F:      Documentation/networking/tuntap.rst
21062 F:      arch/um/os-Linux/drivers/
21063
21064 TURBOCHANNEL SUBSYSTEM
21065 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
21066 M:      Ralf Baechle <ralf@linux-mips.org>
21067 L:      linux-mips@vger.kernel.org
21068 S:      Maintained
21069 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
21070 F:      drivers/tc/
21071 F:      include/linux/tc.h
21072
21073 TURBOSTAT UTILITY
21074 M:      "Len Brown" <lenb@kernel.org>
21075 L:      linux-pm@vger.kernel.org
21076 S:      Supported
21077 Q:      https://patchwork.kernel.org/project/linux-pm/list/
21078 B:      https://bugzilla.kernel.org
21079 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
21080 F:      tools/power/x86/turbostat/
21081
21082 TW5864 VIDEO4LINUX DRIVER
21083 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
21084 M:      Anton Sviridenko <anton@corp.bluecherry.net>
21085 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
21086 M:      Andrey Utkin <andrey_utkin@fastmail.com>
21087 L:      linux-media@vger.kernel.org
21088 S:      Supported
21089 F:      drivers/media/pci/tw5864/
21090
21091 TW68 VIDEO4LINUX DRIVER
21092 M:      Hans Verkuil <hverkuil@xs4all.nl>
21093 L:      linux-media@vger.kernel.org
21094 S:      Odd Fixes
21095 W:      https://linuxtv.org
21096 T:      git git://linuxtv.org/media_tree.git
21097 F:      drivers/media/pci/tw68/
21098
21099 TW686X VIDEO4LINUX DRIVER
21100 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
21101 L:      linux-media@vger.kernel.org
21102 S:      Maintained
21103 W:      http://linuxtv.org
21104 T:      git git://linuxtv.org/media_tree.git
21105 F:      drivers/media/pci/tw686x/
21106
21107 U-BOOT ENVIRONMENT VARIABLES
21108 M:      Rafał Miłecki <rafal@milecki.pl>
21109 S:      Maintained
21110 F:      Documentation/devicetree/bindings/nvmem/u-boot,env.yaml
21111 F:      drivers/nvmem/u-boot-env.c
21112
21113 UACCE ACCELERATOR FRAMEWORK
21114 M:      Zhangfei Gao <zhangfei.gao@linaro.org>
21115 M:      Zhou Wang <wangzhou1@hisilicon.com>
21116 L:      linux-accelerators@lists.ozlabs.org
21117 L:      linux-kernel@vger.kernel.org
21118 S:      Maintained
21119 F:      Documentation/ABI/testing/sysfs-driver-uacce
21120 F:      Documentation/misc-devices/uacce.rst
21121 F:      drivers/misc/uacce/
21122 F:      include/linux/uacce.h
21123 F:      include/uapi/misc/uacce/
21124
21125 UBI FILE SYSTEM (UBIFS)
21126 M:      Richard Weinberger <richard@nod.at>
21127 L:      linux-mtd@lists.infradead.org
21128 S:      Supported
21129 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
21130 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
21131 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
21132 F:      Documentation/ABI/testing/sysfs-fs-ubifs
21133 F:      Documentation/filesystems/ubifs-authentication.rst
21134 F:      Documentation/filesystems/ubifs.rst
21135 F:      fs/ubifs/
21136
21137 UBLK USERSPACE BLOCK DRIVER
21138 M:      Ming Lei <ming.lei@redhat.com>
21139 L:      linux-block@vger.kernel.org
21140 S:      Maintained
21141 F:      Documentation/block/ublk.rst
21142 F:      drivers/block/ublk_drv.c
21143 F:      include/uapi/linux/ublk_cmd.h
21144
21145 UCLINUX (M68KNOMMU AND COLDFIRE)
21146 M:      Greg Ungerer <gerg@linux-m68k.org>
21147 L:      linux-m68k@lists.linux-m68k.org
21148 L:      uclinux-dev@uclinux.org  (subscribers-only)
21149 S:      Maintained
21150 W:      http://www.linux-m68k.org/
21151 W:      http://www.uclinux.org/
21152 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
21153 F:      arch/m68k/*/*_no.*
21154 F:      arch/m68k/68*/
21155 F:      arch/m68k/coldfire/
21156 F:      arch/m68k/include/asm/*_no.*
21157
21158 UDF FILESYSTEM
21159 M:      Jan Kara <jack@suse.com>
21160 S:      Maintained
21161 F:      Documentation/filesystems/udf.rst
21162 F:      fs/udf/
21163
21164 UDRAW TABLET
21165 M:      Bastien Nocera <hadess@hadess.net>
21166 L:      linux-input@vger.kernel.org
21167 S:      Maintained
21168 F:      drivers/hid/hid-udraw-ps3.c
21169
21170 UFS FILESYSTEM
21171 M:      Evgeniy Dushistov <dushistov@mail.ru>
21172 S:      Maintained
21173 F:      Documentation/admin-guide/ufs.rst
21174 F:      fs/ufs/
21175
21176 UHID USERSPACE HID IO DRIVER
21177 M:      David Rheinsberg <david.rheinsberg@gmail.com>
21178 L:      linux-input@vger.kernel.org
21179 S:      Maintained
21180 F:      drivers/hid/uhid.c
21181 F:      include/uapi/linux/uhid.h
21182
21183 ULPI BUS
21184 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
21185 L:      linux-usb@vger.kernel.org
21186 S:      Maintained
21187 F:      drivers/usb/common/ulpi.c
21188 F:      include/linux/ulpi/
21189
21190 UNICODE SUBSYSTEM
21191 M:      Gabriel Krisman Bertazi <krisman@collabora.com>
21192 L:      linux-fsdevel@vger.kernel.org
21193 S:      Supported
21194 F:      fs/unicode/
21195
21196 UNIFDEF
21197 M:      Tony Finch <dot@dotat.at>
21198 S:      Maintained
21199 W:      http://dotat.at/prog/unifdef
21200 F:      scripts/unifdef.c
21201
21202 UNIFORM CDROM DRIVER
21203 M:      Phillip Potter <phil@philpotter.co.uk>
21204 S:      Maintained
21205 F:      Documentation/cdrom/
21206 F:      drivers/cdrom/cdrom.c
21207 F:      include/linux/cdrom.h
21208 F:      include/uapi/linux/cdrom.h
21209
21210 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
21211 R:      Alim Akhtar <alim.akhtar@samsung.com>
21212 R:      Avri Altman <avri.altman@wdc.com>
21213 R:      Bart Van Assche <bvanassche@acm.org>
21214 L:      linux-scsi@vger.kernel.org
21215 S:      Supported
21216 F:      Documentation/devicetree/bindings/ufs/
21217 F:      Documentation/scsi/ufs.rst
21218 F:      drivers/ufs/core/
21219
21220 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
21221 M:      Pedro Sousa <pedrom.sousa@synopsys.com>
21222 L:      linux-scsi@vger.kernel.org
21223 S:      Supported
21224 F:      drivers/ufs/host/*dwc*
21225
21226 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
21227 M:      Stanley Chu <stanley.chu@mediatek.com>
21228 L:      linux-scsi@vger.kernel.org
21229 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
21230 S:      Maintained
21231 F:      drivers/ufs/host/ufs-mediatek*
21232
21233 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER RENESAS HOOKS
21234 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
21235 L:      linux-renesas-soc@vger.kernel.org
21236 L:      linux-scsi@vger.kernel.org
21237 S:      Maintained
21238 F:      drivers/ufs/host/ufs-renesas.c
21239
21240 UNSORTED BLOCK IMAGES (UBI)
21241 M:      Richard Weinberger <richard@nod.at>
21242 L:      linux-mtd@lists.infradead.org
21243 S:      Supported
21244 W:      http://www.linux-mtd.infradead.org/
21245 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
21246 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
21247 F:      drivers/mtd/ubi/
21248 F:      include/linux/mtd/ubi.h
21249 F:      include/uapi/mtd/ubi-user.h
21250
21251 USB "USBNET" DRIVER FRAMEWORK
21252 M:      Oliver Neukum <oneukum@suse.com>
21253 L:      netdev@vger.kernel.org
21254 S:      Maintained
21255 W:      http://www.linux-usb.org/usbnet
21256 F:      drivers/net/usb/usbnet.c
21257 F:      include/linux/usb/usbnet.h
21258
21259 USB ACM DRIVER
21260 M:      Oliver Neukum <oneukum@suse.com>
21261 L:      linux-usb@vger.kernel.org
21262 S:      Maintained
21263 F:      Documentation/usb/acm.rst
21264 F:      drivers/usb/class/cdc-acm.*
21265
21266 USB APPLE MFI FASTCHARGE DRIVER
21267 M:      Bastien Nocera <hadess@hadess.net>
21268 L:      linux-usb@vger.kernel.org
21269 S:      Maintained
21270 F:      drivers/usb/misc/apple-mfi-fastcharge.c
21271
21272 USB AR5523 WIRELESS DRIVER
21273 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
21274 L:      linux-wireless@vger.kernel.org
21275 S:      Maintained
21276 F:      drivers/net/wireless/ath/ar5523/
21277
21278 USB ATTACHED SCSI
21279 M:      Oliver Neukum <oneukum@suse.com>
21280 L:      linux-usb@vger.kernel.org
21281 L:      linux-scsi@vger.kernel.org
21282 S:      Maintained
21283 F:      drivers/usb/storage/uas.c
21284
21285 USB CDC ETHERNET DRIVER
21286 M:      Oliver Neukum <oliver@neukum.org>
21287 L:      linux-usb@vger.kernel.org
21288 S:      Maintained
21289 F:      drivers/net/usb/cdc_*.c
21290 F:      include/uapi/linux/usb/cdc.h
21291
21292 USB CHAOSKEY DRIVER
21293 M:      Keith Packard <keithp@keithp.com>
21294 L:      linux-usb@vger.kernel.org
21295 S:      Maintained
21296 F:      drivers/usb/misc/chaoskey.c
21297
21298 USB CYPRESS C67X00 DRIVER
21299 L:      linux-usb@vger.kernel.org
21300 S:      Orphan
21301 F:      drivers/usb/c67x00/
21302
21303 USB DAVICOM DM9601 DRIVER
21304 M:      Peter Korsgaard <peter@korsgaard.com>
21305 L:      netdev@vger.kernel.org
21306 S:      Maintained
21307 W:      http://www.linux-usb.org/usbnet
21308 F:      drivers/net/usb/dm9601.c
21309
21310 USB EHCI DRIVER
21311 M:      Alan Stern <stern@rowland.harvard.edu>
21312 L:      linux-usb@vger.kernel.org
21313 S:      Maintained
21314 F:      Documentation/usb/ehci.rst
21315 F:      drivers/usb/host/ehci*
21316
21317 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
21318 M:      Jiri Kosina <jikos@kernel.org>
21319 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
21320 L:      linux-usb@vger.kernel.org
21321 S:      Maintained
21322 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
21323 F:      Documentation/hid/hiddev.rst
21324 F:      drivers/hid/usbhid/
21325
21326 USB INTEL XHCI ROLE MUX DRIVER
21327 M:      Hans de Goede <hdegoede@redhat.com>
21328 L:      linux-usb@vger.kernel.org
21329 S:      Maintained
21330 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
21331
21332 USB IP DRIVER FOR HISILICON KIRIN 960
21333 M:      Yu Chen <chenyu56@huawei.com>
21334 M:      Binghui Wang <wangbinghui@hisilicon.com>
21335 L:      linux-usb@vger.kernel.org
21336 S:      Maintained
21337 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml
21338 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
21339
21340 USB IP DRIVER FOR HISILICON KIRIN 970
21341 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
21342 L:      linux-usb@vger.kernel.org
21343 S:      Maintained
21344 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3670-usb3.yaml
21345 F:      drivers/phy/hisilicon/phy-hi3670-usb3.c
21346
21347 USB ISP116X DRIVER
21348 M:      Olav Kongas <ok@artecdesign.ee>
21349 L:      linux-usb@vger.kernel.org
21350 S:      Maintained
21351 F:      drivers/usb/host/isp116x*
21352 F:      include/linux/usb/isp116x.h
21353
21354 USB ISP1760 DRIVER
21355 M:      Rui Miguel Silva <rui.silva@linaro.org>
21356 L:      linux-usb@vger.kernel.org
21357 S:      Maintained
21358 F:      drivers/usb/isp1760/*
21359 F:      Documentation/devicetree/bindings/usb/nxp,isp1760.yaml
21360
21361 USB LAN78XX ETHERNET DRIVER
21362 M:      Woojung Huh <woojung.huh@microchip.com>
21363 M:      UNGLinuxDriver@microchip.com
21364 L:      netdev@vger.kernel.org
21365 S:      Maintained
21366 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
21367 F:      drivers/net/usb/lan78xx.*
21368 F:      include/dt-bindings/net/microchip-lan78xx.h
21369
21370 USB MASS STORAGE DRIVER
21371 M:      Alan Stern <stern@rowland.harvard.edu>
21372 L:      linux-usb@vger.kernel.org
21373 L:      usb-storage@lists.one-eyed-alien.net
21374 S:      Maintained
21375 F:      drivers/usb/storage/
21376
21377 USB MIDI DRIVER
21378 M:      Clemens Ladisch <clemens@ladisch.de>
21379 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
21380 S:      Maintained
21381 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
21382 F:      sound/usb/midi.*
21383
21384 USB NETWORKING DRIVERS
21385 L:      linux-usb@vger.kernel.org
21386 S:      Odd Fixes
21387 F:      drivers/net/usb/
21388
21389 USB OHCI DRIVER
21390 M:      Alan Stern <stern@rowland.harvard.edu>
21391 L:      linux-usb@vger.kernel.org
21392 S:      Maintained
21393 F:      Documentation/usb/ohci.rst
21394 F:      drivers/usb/host/ohci*
21395
21396 USB OTG FSM (Finite State Machine)
21397 M:      Peter Chen <peter.chen@kernel.org>
21398 L:      linux-usb@vger.kernel.org
21399 S:      Maintained
21400 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
21401 F:      drivers/usb/common/usb-otg-fsm.c
21402
21403 USB OVER IP DRIVER
21404 M:      Valentina Manea <valentina.manea.m@gmail.com>
21405 M:      Shuah Khan <shuah@kernel.org>
21406 M:      Shuah Khan <skhan@linuxfoundation.org>
21407 L:      linux-usb@vger.kernel.org
21408 S:      Maintained
21409 F:      Documentation/usb/usbip_protocol.rst
21410 F:      drivers/usb/usbip/
21411 F:      tools/testing/selftests/drivers/usb/usbip/
21412 F:      tools/usb/usbip/
21413
21414 USB PEGASUS DRIVER
21415 M:      Petko Manolov <petkan@nucleusys.com>
21416 L:      linux-usb@vger.kernel.org
21417 L:      netdev@vger.kernel.org
21418 S:      Maintained
21419 W:      https://github.com/petkan/pegasus
21420 T:      git https://github.com/petkan/pegasus.git
21421 F:      drivers/net/usb/pegasus.*
21422
21423 USB PRINTER DRIVER (usblp)
21424 M:      Pete Zaitcev <zaitcev@redhat.com>
21425 L:      linux-usb@vger.kernel.org
21426 S:      Supported
21427 F:      drivers/usb/class/usblp.c
21428
21429 USB RAW GADGET DRIVER
21430 R:      Andrey Konovalov <andreyknvl@gmail.com>
21431 L:      linux-usb@vger.kernel.org
21432 S:      Maintained
21433 F:      Documentation/usb/raw-gadget.rst
21434 F:      drivers/usb/gadget/legacy/raw_gadget.c
21435 F:      include/uapi/linux/usb/raw_gadget.h
21436
21437 USB QMI WWAN NETWORK DRIVER
21438 M:      Bjørn Mork <bjorn@mork.no>
21439 L:      netdev@vger.kernel.org
21440 S:      Maintained
21441 F:      Documentation/ABI/testing/sysfs-class-net-qmi
21442 F:      drivers/net/usb/qmi_wwan.c
21443
21444 USB RTL8150 DRIVER
21445 M:      Petko Manolov <petkan@nucleusys.com>
21446 L:      linux-usb@vger.kernel.org
21447 L:      netdev@vger.kernel.org
21448 S:      Maintained
21449 W:      https://github.com/petkan/rtl8150
21450 T:      git https://github.com/petkan/rtl8150.git
21451 F:      drivers/net/usb/rtl8150.c
21452
21453 USB SERIAL SUBSYSTEM
21454 M:      Johan Hovold <johan@kernel.org>
21455 L:      linux-usb@vger.kernel.org
21456 S:      Maintained
21457 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
21458 F:      Documentation/usb/usb-serial.rst
21459 F:      drivers/usb/serial/
21460 F:      include/linux/usb/serial.h
21461
21462 USB SMSC75XX ETHERNET DRIVER
21463 M:      Steve Glendinning <steve.glendinning@shawell.net>
21464 L:      netdev@vger.kernel.org
21465 S:      Maintained
21466 F:      drivers/net/usb/smsc75xx.*
21467
21468 USB SMSC95XX ETHERNET DRIVER
21469 M:      Steve Glendinning <steve.glendinning@shawell.net>
21470 M:      UNGLinuxDriver@microchip.com
21471 L:      netdev@vger.kernel.org
21472 S:      Maintained
21473 F:      drivers/net/usb/smsc95xx.*
21474
21475 USB SUBSYSTEM
21476 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
21477 L:      linux-usb@vger.kernel.org
21478 S:      Supported
21479 W:      http://www.linux-usb.org
21480 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
21481 F:      Documentation/devicetree/bindings/usb/
21482 F:      Documentation/usb/
21483 F:      drivers/usb/
21484 F:      include/dt-bindings/usb/
21485 F:      include/linux/usb.h
21486 F:      include/linux/usb/
21487
21488 USB TYPEC BUS FOR ALTERNATE MODES
21489 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
21490 L:      linux-usb@vger.kernel.org
21491 S:      Maintained
21492 F:      Documentation/ABI/testing/sysfs-bus-typec
21493 F:      Documentation/driver-api/usb/typec_bus.rst
21494 F:      drivers/usb/typec/altmodes/
21495 F:      include/linux/usb/typec_altmode.h
21496
21497 USB TYPEC CLASS
21498 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
21499 L:      linux-usb@vger.kernel.org
21500 S:      Maintained
21501 F:      Documentation/ABI/testing/sysfs-class-typec
21502 F:      Documentation/driver-api/usb/typec.rst
21503 F:      drivers/usb/typec/
21504 F:      include/linux/usb/typec.h
21505
21506 USB TYPEC INTEL PMC MUX DRIVER
21507 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
21508 L:      linux-usb@vger.kernel.org
21509 S:      Maintained
21510 F:      Documentation/firmware-guide/acpi/intel-pmc-mux.rst
21511 F:      drivers/usb/typec/mux/intel_pmc_mux.c
21512
21513 USB TYPEC PI3USB30532 MUX DRIVER
21514 M:      Hans de Goede <hdegoede@redhat.com>
21515 L:      linux-usb@vger.kernel.org
21516 S:      Maintained
21517 F:      drivers/usb/typec/mux/pi3usb30532.c
21518
21519 USB TYPEC PORT CONTROLLER DRIVERS
21520 M:      Guenter Roeck <linux@roeck-us.net>
21521 L:      linux-usb@vger.kernel.org
21522 S:      Maintained
21523 F:      drivers/usb/typec/tcpm/
21524
21525 USB UHCI DRIVER
21526 M:      Alan Stern <stern@rowland.harvard.edu>
21527 L:      linux-usb@vger.kernel.org
21528 S:      Maintained
21529 F:      drivers/usb/host/uhci*
21530
21531 USB VIDEO CLASS
21532 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
21533 L:      linux-media@vger.kernel.org
21534 S:      Maintained
21535 W:      http://www.ideasonboard.org/uvc/
21536 T:      git git://linuxtv.org/media_tree.git
21537 F:      drivers/media/usb/uvc/
21538 F:      include/uapi/linux/uvcvideo.h
21539
21540 USB WEBCAM GADGET
21541 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
21542 M:      Daniel Scally <dan.scally@ideasonboard.com>
21543 L:      linux-usb@vger.kernel.org
21544 S:      Maintained
21545 F:      drivers/usb/gadget/function/*uvc*
21546 F:      drivers/usb/gadget/legacy/webcam.c
21547 F:      include/uapi/linux/usb/g_uvc.h
21548
21549 USB WIRELESS RNDIS DRIVER (rndis_wlan)
21550 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
21551 L:      linux-wireless@vger.kernel.org
21552 S:      Maintained
21553 F:      drivers/net/wireless/rndis_wlan.c
21554
21555 USB XHCI DRIVER
21556 M:      Mathias Nyman <mathias.nyman@intel.com>
21557 L:      linux-usb@vger.kernel.org
21558 S:      Supported
21559 F:      drivers/usb/host/pci-quirks*
21560 F:      drivers/usb/host/xhci*
21561
21562 USB ZD1201 DRIVER
21563 L:      linux-wireless@vger.kernel.org
21564 S:      Orphan
21565 W:      http://linux-lc100020.sourceforge.net
21566 F:      drivers/net/wireless/zydas/zd1201.*
21567
21568 USB ZR364XX DRIVER
21569 M:      Antoine Jacquet <royale@zerezo.com>
21570 L:      linux-usb@vger.kernel.org
21571 L:      linux-media@vger.kernel.org
21572 S:      Maintained
21573 W:      http://royale.zerezo.com/zr364xx/
21574 T:      git git://linuxtv.org/media_tree.git
21575 F:      Documentation/admin-guide/media/zr364xx*
21576 F:      drivers/staging/media/deprecated/zr364xx/
21577
21578 USER DATAGRAM PROTOCOL (UDP)
21579 M:      Willem de Bruijn <willemdebruijn.kernel@gmail.com>
21580 S:      Maintained
21581 F:      include/linux/udp.h
21582 F:      net/ipv4/udp.c
21583 F:      net/ipv6/udp.c
21584
21585 USER-MODE LINUX (UML)
21586 M:      Richard Weinberger <richard@nod.at>
21587 M:      Anton Ivanov <anton.ivanov@cambridgegreys.com>
21588 M:      Johannes Berg <johannes@sipsolutions.net>
21589 L:      linux-um@lists.infradead.org
21590 S:      Maintained
21591 W:      http://user-mode-linux.sourceforge.net
21592 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
21593 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/uml/linux.git next
21594 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/uml/linux.git fixes
21595 F:      Documentation/virt/uml/
21596 F:      arch/um/
21597 F:      arch/x86/um/
21598 F:      fs/hostfs/
21599
21600 USERSPACE COPYIN/COPYOUT (UIOVEC)
21601 M:      Alexander Viro <viro@zeniv.linux.org.uk>
21602 S:      Maintained
21603 F:      include/linux/uio.h
21604 F:      lib/iov_iter.c
21605
21606 USERSPACE DMA BUFFER DRIVER
21607 M:      Gerd Hoffmann <kraxel@redhat.com>
21608 L:      dri-devel@lists.freedesktop.org
21609 S:      Maintained
21610 T:      git git://anongit.freedesktop.org/drm/drm-misc
21611 F:      drivers/dma-buf/udmabuf.c
21612 F:      include/uapi/linux/udmabuf.h
21613
21614 USERSPACE I/O (UIO)
21615 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
21616 S:      Maintained
21617 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
21618 F:      Documentation/driver-api/uio-howto.rst
21619 F:      drivers/uio/
21620 F:      include/linux/uio_driver.h
21621
21622 UTIL-LINUX PACKAGE
21623 M:      Karel Zak <kzak@redhat.com>
21624 L:      util-linux@vger.kernel.org
21625 S:      Maintained
21626 W:      http://en.wikipedia.org/wiki/Util-linux
21627 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
21628
21629 UUID HELPERS
21630 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
21631 L:      linux-kernel@vger.kernel.org
21632 S:      Maintained
21633 F:      include/linux/uuid.h
21634 F:      include/uapi/linux/uuid.h
21635 F:      lib/test_uuid.c
21636 F:      lib/uuid.c
21637
21638 UV SYSFS DRIVER
21639 M:      Justin Ernst <justin.ernst@hpe.com>
21640 L:      platform-driver-x86@vger.kernel.org
21641 S:      Maintained
21642 F:      drivers/platform/x86/uv_sysfs.c
21643
21644 UVESAFB DRIVER
21645 M:      Michal Januszewski <spock@gentoo.org>
21646 L:      linux-fbdev@vger.kernel.org
21647 S:      Maintained
21648 W:      https://github.com/mjanusz/v86d
21649 F:      Documentation/fb/uvesafb.rst
21650 F:      drivers/video/fbdev/uvesafb.*
21651
21652 Ux500 CLOCK DRIVERS
21653 M:      Ulf Hansson <ulf.hansson@linaro.org>
21654 L:      linux-clk@vger.kernel.org
21655 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
21656 S:      Maintained
21657 F:      drivers/clk/ux500/
21658
21659 VF610 NAND DRIVER
21660 M:      Stefan Agner <stefan@agner.ch>
21661 L:      linux-mtd@lists.infradead.org
21662 S:      Supported
21663 F:      drivers/mtd/nand/raw/vf610_nfc.c
21664
21665 VFAT/FAT/MSDOS FILESYSTEM
21666 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
21667 S:      Maintained
21668 F:      Documentation/filesystems/vfat.rst
21669 F:      fs/fat/
21670 F:      tools/testing/selftests/filesystems/fat/
21671
21672 VFIO DRIVER
21673 M:      Alex Williamson <alex.williamson@redhat.com>
21674 R:      Cornelia Huck <cohuck@redhat.com>
21675 L:      kvm@vger.kernel.org
21676 S:      Maintained
21677 T:      git https://github.com/awilliam/linux-vfio.git
21678 F:      Documentation/ABI/testing/sysfs-devices-vfio-dev
21679 F:      Documentation/driver-api/vfio.rst
21680 F:      drivers/vfio/
21681 F:      include/linux/vfio.h
21682 F:      include/linux/vfio_pci_core.h
21683 F:      include/uapi/linux/vfio.h
21684
21685 VFIO FSL-MC DRIVER
21686 M:      Diana Craciun <diana.craciun@oss.nxp.com>
21687 L:      kvm@vger.kernel.org
21688 S:      Maintained
21689 F:      drivers/vfio/fsl-mc/
21690
21691 VFIO HISILICON PCI DRIVER
21692 M:      Longfang Liu <liulongfang@huawei.com>
21693 M:      Shameer Kolothum <shameerali.kolothum.thodi@huawei.com>
21694 L:      kvm@vger.kernel.org
21695 S:      Maintained
21696 F:      drivers/vfio/pci/hisilicon/
21697
21698 VFIO MEDIATED DEVICE DRIVERS
21699 M:      Kirti Wankhede <kwankhede@nvidia.com>
21700 L:      kvm@vger.kernel.org
21701 S:      Maintained
21702 F:      Documentation/driver-api/vfio-mediated-device.rst
21703 F:      drivers/vfio/mdev/
21704 F:      include/linux/mdev.h
21705 F:      samples/vfio-mdev/
21706
21707 VFIO PCI DEVICE SPECIFIC DRIVERS
21708 R:      Jason Gunthorpe <jgg@nvidia.com>
21709 R:      Yishai Hadas <yishaih@nvidia.com>
21710 R:      Shameer Kolothum <shameerali.kolothum.thodi@huawei.com>
21711 R:      Kevin Tian <kevin.tian@intel.com>
21712 L:      kvm@vger.kernel.org
21713 S:      Maintained
21714 P:      Documentation/driver-api/vfio-pci-device-specific-driver-acceptance.rst
21715 F:      drivers/vfio/pci/*/
21716
21717 VFIO PLATFORM DRIVER
21718 M:      Eric Auger <eric.auger@redhat.com>
21719 L:      kvm@vger.kernel.org
21720 S:      Maintained
21721 F:      drivers/vfio/platform/
21722
21723 VFIO MLX5 PCI DRIVER
21724 M:      Yishai Hadas <yishaih@nvidia.com>
21725 L:      kvm@vger.kernel.org
21726 S:      Maintained
21727 F:      drivers/vfio/pci/mlx5/
21728
21729 VGA_SWITCHEROO
21730 R:      Lukas Wunner <lukas@wunner.de>
21731 S:      Maintained
21732 T:      git git://anongit.freedesktop.org/drm/drm-misc
21733 F:      Documentation/gpu/vga-switcheroo.rst
21734 F:      drivers/gpu/vga/vga_switcheroo.c
21735 F:      include/linux/vga_switcheroo.h
21736
21737 VIA RHINE NETWORK DRIVER
21738 S:      Maintained
21739 M:      Kevin Brace <kevinbrace@bracecomputerlab.com>
21740 F:      drivers/net/ethernet/via/via-rhine.c
21741
21742 VIA SD/MMC CARD CONTROLLER DRIVER
21743 M:      Bruce Chang <brucechang@via.com.tw>
21744 M:      Harald Welte <HaraldWelte@viatech.com>
21745 S:      Maintained
21746 F:      drivers/mmc/host/via-sdmmc.c
21747
21748 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
21749 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
21750 L:      linux-fbdev@vger.kernel.org
21751 S:      Maintained
21752 F:      drivers/video/fbdev/via/
21753 F:      include/linux/via-core.h
21754 F:      include/linux/via-gpio.h
21755 F:      include/linux/via_i2c.h
21756
21757 VIA VELOCITY NETWORK DRIVER
21758 M:      Francois Romieu <romieu@fr.zoreil.com>
21759 L:      netdev@vger.kernel.org
21760 S:      Maintained
21761 F:      drivers/net/ethernet/via/via-velocity.*
21762
21763 VICODEC VIRTUAL CODEC DRIVER
21764 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
21765 L:      linux-media@vger.kernel.org
21766 S:      Maintained
21767 W:      https://linuxtv.org
21768 T:      git git://linuxtv.org/media_tree.git
21769 F:      drivers/media/test-drivers/vicodec/*
21770
21771 VIDEO I2C POLLING DRIVER
21772 M:      Matt Ranostay <matt.ranostay@konsulko.com>
21773 L:      linux-media@vger.kernel.org
21774 S:      Maintained
21775 F:      drivers/media/i2c/video-i2c.c
21776
21777 VIDEO MULTIPLEXER DRIVER
21778 M:      Philipp Zabel <p.zabel@pengutronix.de>
21779 L:      linux-media@vger.kernel.org
21780 S:      Maintained
21781 F:      drivers/media/platform/video-mux.c
21782
21783 VIDEOBUF2 FRAMEWORK
21784 M:      Tomasz Figa <tfiga@chromium.org>
21785 M:      Marek Szyprowski <m.szyprowski@samsung.com>
21786 L:      linux-media@vger.kernel.org
21787 S:      Maintained
21788 F:      drivers/media/common/videobuf2/*
21789 F:      include/media/videobuf2-*
21790
21791 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
21792 M:      Shuah Khan <skhan@linuxfoundation.org>
21793 R:      Kieran Bingham <kieran.bingham@ideasonboard.com>
21794 L:      linux-media@vger.kernel.org
21795 S:      Maintained
21796 W:      https://linuxtv.org
21797 T:      git git://linuxtv.org/media_tree.git
21798 F:      drivers/media/test-drivers/vimc/*
21799
21800 VIRT LIB
21801 M:      Alex Williamson <alex.williamson@redhat.com>
21802 M:      Paolo Bonzini <pbonzini@redhat.com>
21803 L:      kvm@vger.kernel.org
21804 S:      Supported
21805 F:      virt/lib/
21806
21807 VIRTIO AND VHOST VSOCK DRIVER
21808 M:      Stefan Hajnoczi <stefanha@redhat.com>
21809 M:      Stefano Garzarella <sgarzare@redhat.com>
21810 L:      kvm@vger.kernel.org
21811 L:      virtualization@lists.linux-foundation.org
21812 L:      netdev@vger.kernel.org
21813 S:      Maintained
21814 F:      drivers/vhost/vsock.c
21815 F:      include/linux/virtio_vsock.h
21816 F:      include/uapi/linux/virtio_vsock.h
21817 F:      net/vmw_vsock/virtio_transport.c
21818 F:      net/vmw_vsock/virtio_transport_common.c
21819
21820 VIRTIO BLOCK AND SCSI DRIVERS
21821 M:      "Michael S. Tsirkin" <mst@redhat.com>
21822 M:      Jason Wang <jasowang@redhat.com>
21823 R:      Paolo Bonzini <pbonzini@redhat.com>
21824 R:      Stefan Hajnoczi <stefanha@redhat.com>
21825 L:      virtualization@lists.linux-foundation.org
21826 S:      Maintained
21827 F:      drivers/block/virtio_blk.c
21828 F:      drivers/scsi/virtio_scsi.c
21829 F:      drivers/vhost/scsi.c
21830 F:      include/uapi/linux/virtio_blk.h
21831 F:      include/uapi/linux/virtio_scsi.h
21832
21833 VIRTIO CONSOLE DRIVER
21834 M:      Amit Shah <amit@kernel.org>
21835 L:      virtualization@lists.linux-foundation.org
21836 S:      Maintained
21837 F:      drivers/char/virtio_console.c
21838 F:      include/linux/virtio_console.h
21839 F:      include/uapi/linux/virtio_console.h
21840
21841 VIRTIO CORE AND NET DRIVERS
21842 M:      "Michael S. Tsirkin" <mst@redhat.com>
21843 M:      Jason Wang <jasowang@redhat.com>
21844 L:      virtualization@lists.linux-foundation.org
21845 S:      Maintained
21846 F:      Documentation/ABI/testing/sysfs-bus-vdpa
21847 F:      Documentation/ABI/testing/sysfs-class-vduse
21848 F:      Documentation/devicetree/bindings/virtio/
21849 F:      drivers/block/virtio_blk.c
21850 F:      drivers/crypto/virtio/
21851 F:      drivers/net/virtio_net.c
21852 F:      drivers/vdpa/
21853 F:      drivers/virtio/
21854 F:      include/linux/vdpa.h
21855 F:      include/linux/virtio*.h
21856 F:      include/uapi/linux/virtio_*.h
21857 F:      tools/virtio/
21858
21859 VISL VIRTUAL STATELESS DECODER DRIVER
21860 M:      Daniel Almeida <daniel.almeida@collabora.com>
21861 L:      linux-media@vger.kernel.org
21862 S:      Supported
21863 F:      drivers/media/test-drivers/visl
21864
21865 IFCVF VIRTIO DATA PATH ACCELERATOR
21866 R:      Zhu Lingshan <lingshan.zhu@intel.com>
21867 F:      drivers/vdpa/ifcvf/
21868
21869 VIRTIO BALLOON
21870 M:      "Michael S. Tsirkin" <mst@redhat.com>
21871 M:      David Hildenbrand <david@redhat.com>
21872 L:      virtualization@lists.linux-foundation.org
21873 S:      Maintained
21874 F:      drivers/virtio/virtio_balloon.c
21875 F:      include/uapi/linux/virtio_balloon.h
21876 F:      include/linux/balloon_compaction.h
21877 F:      mm/balloon_compaction.c
21878
21879 VIRTIO CRYPTO DRIVER
21880 M:      Gonglei <arei.gonglei@huawei.com>
21881 L:      virtualization@lists.linux-foundation.org
21882 L:      linux-crypto@vger.kernel.org
21883 S:      Maintained
21884 F:      drivers/crypto/virtio/
21885 F:      include/uapi/linux/virtio_crypto.h
21886
21887 VIRTIO DRIVERS FOR S390
21888 M:      Cornelia Huck <cohuck@redhat.com>
21889 M:      Halil Pasic <pasic@linux.ibm.com>
21890 M:      Eric Farman <farman@linux.ibm.com>
21891 L:      linux-s390@vger.kernel.org
21892 L:      virtualization@lists.linux-foundation.org
21893 L:      kvm@vger.kernel.org
21894 S:      Supported
21895 F:      arch/s390/include/uapi/asm/virtio-ccw.h
21896 F:      drivers/s390/virtio/
21897
21898 VIRTIO FILE SYSTEM
21899 M:      Vivek Goyal <vgoyal@redhat.com>
21900 M:      Stefan Hajnoczi <stefanha@redhat.com>
21901 M:      Miklos Szeredi <miklos@szeredi.hu>
21902 L:      virtualization@lists.linux-foundation.org
21903 L:      linux-fsdevel@vger.kernel.org
21904 S:      Supported
21905 W:      https://virtio-fs.gitlab.io/
21906 F:      Documentation/filesystems/virtiofs.rst
21907 F:      fs/fuse/virtio_fs.c
21908 F:      include/uapi/linux/virtio_fs.h
21909
21910 VIRTIO GPIO DRIVER
21911 M:      Enrico Weigelt, metux IT consult <info@metux.net>
21912 M:      Viresh Kumar <vireshk@kernel.org>
21913 L:      linux-gpio@vger.kernel.org
21914 L:      virtualization@lists.linux-foundation.org
21915 S:      Maintained
21916 F:      drivers/gpio/gpio-virtio.c
21917 F:      include/uapi/linux/virtio_gpio.h
21918
21919 VIRTIO GPU DRIVER
21920 M:      David Airlie <airlied@redhat.com>
21921 M:      Gerd Hoffmann <kraxel@redhat.com>
21922 R:      Gurchetan Singh <gurchetansingh@chromium.org>
21923 R:      Chia-I Wu <olvaffe@gmail.com>
21924 L:      dri-devel@lists.freedesktop.org
21925 L:      virtualization@lists.linux-foundation.org
21926 S:      Maintained
21927 T:      git git://anongit.freedesktop.org/drm/drm-misc
21928 F:      drivers/gpu/drm/virtio/
21929 F:      include/uapi/linux/virtio_gpu.h
21930
21931 VIRTIO HOST (VHOST)
21932 M:      "Michael S. Tsirkin" <mst@redhat.com>
21933 M:      Jason Wang <jasowang@redhat.com>
21934 L:      kvm@vger.kernel.org
21935 L:      virtualization@lists.linux-foundation.org
21936 L:      netdev@vger.kernel.org
21937 S:      Maintained
21938 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
21939 F:      drivers/vhost/
21940 F:      include/linux/vhost_iotlb.h
21941 F:      include/uapi/linux/vhost.h
21942
21943 VIRTIO INPUT DRIVER
21944 M:      Gerd Hoffmann <kraxel@redhat.com>
21945 S:      Maintained
21946 F:      drivers/virtio/virtio_input.c
21947 F:      include/uapi/linux/virtio_input.h
21948
21949 VIRTIO IOMMU DRIVER
21950 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
21951 L:      virtualization@lists.linux-foundation.org
21952 S:      Maintained
21953 F:      drivers/iommu/virtio-iommu.c
21954 F:      include/uapi/linux/virtio_iommu.h
21955
21956 VIRTIO MEM DRIVER
21957 M:      David Hildenbrand <david@redhat.com>
21958 L:      virtualization@lists.linux-foundation.org
21959 S:      Maintained
21960 W:      https://virtio-mem.gitlab.io/
21961 F:      drivers/virtio/virtio_mem.c
21962 F:      include/uapi/linux/virtio_mem.h
21963
21964 VIRTIO SOUND DRIVER
21965 M:      Anton Yakovlev <anton.yakovlev@opensynergy.com>
21966 M:      "Michael S. Tsirkin" <mst@redhat.com>
21967 L:      virtualization@lists.linux-foundation.org
21968 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
21969 S:      Maintained
21970 F:      include/uapi/linux/virtio_snd.h
21971 F:      sound/virtio/*
21972
21973 VIRTIO I2C DRIVER
21974 M:      Conghui Chen <conghui.chen@intel.com>
21975 M:      Viresh Kumar <viresh.kumar@linaro.org>
21976 L:      linux-i2c@vger.kernel.org
21977 L:      virtualization@lists.linux-foundation.org
21978 S:      Maintained
21979 F:      drivers/i2c/busses/i2c-virtio.c
21980 F:      include/uapi/linux/virtio_i2c.h
21981
21982 VIRTIO PMEM DRIVER
21983 M:      Pankaj Gupta <pankaj.gupta.linux@gmail.com>
21984 L:      virtualization@lists.linux-foundation.org
21985 S:      Maintained
21986 F:      drivers/nvdimm/virtio_pmem.c
21987 F:      drivers/nvdimm/nd_virtio.c
21988
21989 VIRTUAL BOX GUEST DEVICE DRIVER
21990 M:      Hans de Goede <hdegoede@redhat.com>
21991 M:      Arnd Bergmann <arnd@arndb.de>
21992 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
21993 S:      Maintained
21994 F:      drivers/virt/vboxguest/
21995 F:      include/linux/vbox_utils.h
21996 F:      include/uapi/linux/vbox*.h
21997
21998 VIRTUAL BOX SHARED FOLDER VFS DRIVER
21999 M:      Hans de Goede <hdegoede@redhat.com>
22000 L:      linux-fsdevel@vger.kernel.org
22001 S:      Maintained
22002 F:      fs/vboxsf/*
22003
22004 VIRTUAL SERIO DEVICE DRIVER
22005 M:      Stephen Chandler Paul <thatslyude@gmail.com>
22006 S:      Maintained
22007 F:      drivers/input/serio/userio.c
22008 F:      include/uapi/linux/userio.h
22009
22010 VIVID VIRTUAL VIDEO DRIVER
22011 M:      Hans Verkuil <hverkuil@xs4all.nl>
22012 L:      linux-media@vger.kernel.org
22013 S:      Maintained
22014 W:      https://linuxtv.org
22015 T:      git git://linuxtv.org/media_tree.git
22016 F:      drivers/media/test-drivers/vivid/*
22017
22018 VIDTV VIRTUAL DIGITAL TV DRIVER
22019 M:      Daniel W. S. Almeida <dwlsalmeida@gmail.com>
22020 L:      linux-media@vger.kernel.org
22021 S:      Maintained
22022 W:      https://linuxtv.org
22023 T:      git git://linuxtv.org/media_tree.git
22024 F:      drivers/media/test-drivers/vidtv/*
22025
22026 VLYNQ BUS
22027 M:      Florian Fainelli <f.fainelli@gmail.com>
22028 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
22029 S:      Maintained
22030 F:      drivers/vlynq/vlynq.c
22031 F:      include/linux/vlynq.h
22032
22033 VME SUBSYSTEM
22034 M:      Martyn Welch <martyn@welchs.me.uk>
22035 M:      Manohar Vanga <manohar.vanga@gmail.com>
22036 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
22037 L:      linux-kernel@vger.kernel.org
22038 S:      Odd fixes
22039 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
22040 F:      Documentation/driver-api/vme.rst
22041 F:      drivers/staging/vme_user/
22042
22043 VM SOCKETS (AF_VSOCK)
22044 M:      Stefano Garzarella <sgarzare@redhat.com>
22045 L:      virtualization@lists.linux-foundation.org
22046 L:      netdev@vger.kernel.org
22047 S:      Maintained
22048 F:      drivers/net/vsockmon.c
22049 F:      include/net/af_vsock.h
22050 F:      include/uapi/linux/vm_sockets.h
22051 F:      include/uapi/linux/vm_sockets_diag.h
22052 F:      include/uapi/linux/vsockmon.h
22053 F:      net/vmw_vsock/
22054 F:      tools/testing/vsock/
22055
22056 VMWARE BALLOON DRIVER
22057 M:      Nadav Amit <namit@vmware.com>
22058 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22059 L:      linux-kernel@vger.kernel.org
22060 S:      Supported
22061 F:      drivers/misc/vmw_balloon.c
22062
22063 VMWARE HYPERVISOR INTERFACE
22064 M:      Srivatsa S. Bhat (VMware) <srivatsa@csail.mit.edu>
22065 M:      Alexey Makhalov <amakhalov@vmware.com>
22066 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22067 L:      virtualization@lists.linux-foundation.org
22068 L:      x86@kernel.org
22069 S:      Supported
22070 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vmware
22071 F:      arch/x86/include/asm/vmware.h
22072 F:      arch/x86/kernel/cpu/vmware.c
22073
22074 VMWARE PVRDMA DRIVER
22075 M:      Bryan Tan <bryantan@vmware.com>
22076 M:      Vishnu Dasa <vdasa@vmware.com>
22077 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22078 L:      linux-rdma@vger.kernel.org
22079 S:      Supported
22080 F:      drivers/infiniband/hw/vmw_pvrdma/
22081
22082 VMWARE PVSCSI DRIVER
22083 M:      Vishal Bhakta <vbhakta@vmware.com>
22084 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22085 L:      linux-scsi@vger.kernel.org
22086 S:      Supported
22087 F:      drivers/scsi/vmw_pvscsi.c
22088 F:      drivers/scsi/vmw_pvscsi.h
22089
22090 VMWARE VIRTUAL PTP CLOCK DRIVER
22091 M:      Srivatsa S. Bhat (VMware) <srivatsa@csail.mit.edu>
22092 M:      Deep Shah <sdeep@vmware.com>
22093 R:      Alexey Makhalov <amakhalov@vmware.com>
22094 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22095 L:      netdev@vger.kernel.org
22096 S:      Supported
22097 F:      drivers/ptp/ptp_vmw.c
22098
22099 VMWARE VMCI DRIVER
22100 M:      Bryan Tan <bryantan@vmware.com>
22101 M:      Vishnu Dasa <vdasa@vmware.com>
22102 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22103 L:      linux-kernel@vger.kernel.org
22104 S:      Supported
22105 F:      drivers/misc/vmw_vmci/
22106 F:      include/linux/vmw_vmci*
22107
22108 VMWARE VMMOUSE SUBDRIVER
22109 M:      Zack Rusin <zackr@vmware.com>
22110 R:      VMware Graphics Reviewers <linux-graphics-maintainer@vmware.com>
22111 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22112 L:      linux-input@vger.kernel.org
22113 S:      Supported
22114 F:      drivers/input/mouse/vmmouse.c
22115 F:      drivers/input/mouse/vmmouse.h
22116
22117 VMWARE VMXNET3 ETHERNET DRIVER
22118 M:      Ronak Doshi <doshir@vmware.com>
22119 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22120 L:      netdev@vger.kernel.org
22121 S:      Supported
22122 F:      drivers/net/vmxnet3/
22123
22124 VMWARE VSOCK VMCI TRANSPORT DRIVER
22125 M:      Bryan Tan <bryantan@vmware.com>
22126 M:      Vishnu Dasa <vdasa@vmware.com>
22127 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22128 L:      linux-kernel@vger.kernel.org
22129 S:      Supported
22130 F:      net/vmw_vsock/vmci_transport*
22131
22132 VOCORE VOCORE2 BOARD
22133 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
22134 L:      linux-mips@vger.kernel.org
22135 S:      Maintained
22136 F:      arch/mips/boot/dts/ralink/vocore2.dts
22137
22138 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
22139 M:      Liam Girdwood <lgirdwood@gmail.com>
22140 M:      Mark Brown <broonie@kernel.org>
22141 L:      linux-kernel@vger.kernel.org
22142 S:      Supported
22143 W:      http://www.slimlogic.co.uk/?p=48
22144 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
22145 F:      Documentation/devicetree/bindings/regulator/
22146 F:      Documentation/power/regulator/
22147 F:      drivers/regulator/
22148 F:      include/dt-bindings/regulator/
22149 F:      include/linux/regulator/
22150 K:      regulator_get_optional
22151
22152 VOLTAGE AND CURRENT REGULATOR IRQ HELPERS
22153 R:      Matti Vaittinen <mazziesaccount@gmail.com>
22154 F:      drivers/regulator/irq_helpers.c
22155
22156 VRF
22157 M:      David Ahern <dsahern@kernel.org>
22158 L:      netdev@vger.kernel.org
22159 S:      Maintained
22160 F:      Documentation/networking/vrf.rst
22161 F:      drivers/net/vrf.c
22162
22163 VSPRINTF
22164 M:      Petr Mladek <pmladek@suse.com>
22165 M:      Steven Rostedt <rostedt@goodmis.org>
22166 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
22167 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
22168 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
22169 S:      Maintained
22170 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux.git
22171 F:      Documentation/core-api/printk-formats.rst
22172 F:      lib/test_printf.c
22173 F:      lib/test_scanf.c
22174 F:      lib/vsprintf.c
22175
22176 VT1211 HARDWARE MONITOR DRIVER
22177 M:      Juerg Haefliger <juergh@proton.me>
22178 L:      linux-hwmon@vger.kernel.org
22179 S:      Maintained
22180 F:      Documentation/hwmon/vt1211.rst
22181 F:      drivers/hwmon/vt1211.c
22182
22183 VT8231 HARDWARE MONITOR DRIVER
22184 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
22185 L:      linux-hwmon@vger.kernel.org
22186 S:      Maintained
22187 F:      drivers/hwmon/vt8231.c
22188
22189 VUB300 USB to SDIO/SD/MMC bridge chip
22190 L:      linux-mmc@vger.kernel.org
22191 S:      Orphan
22192 F:      drivers/mmc/host/vub300.c
22193
22194 W1 DALLAS'S 1-WIRE BUS
22195 M:      Evgeniy Polyakov <zbr@ioremap.net>
22196 S:      Maintained
22197 F:      Documentation/devicetree/bindings/w1/
22198 F:      Documentation/w1/
22199 F:      drivers/w1/
22200 F:      include/linux/w1.h
22201
22202 W83791D HARDWARE MONITORING DRIVER
22203 M:      Marc Hulsman <m.hulsman@tudelft.nl>
22204 L:      linux-hwmon@vger.kernel.org
22205 S:      Maintained
22206 F:      Documentation/hwmon/w83791d.rst
22207 F:      drivers/hwmon/w83791d.c
22208
22209 W83793 HARDWARE MONITORING DRIVER
22210 M:      Rudolf Marek <r.marek@assembler.cz>
22211 L:      linux-hwmon@vger.kernel.org
22212 S:      Maintained
22213 F:      Documentation/hwmon/w83793.rst
22214 F:      drivers/hwmon/w83793.c
22215
22216 W83795 HARDWARE MONITORING DRIVER
22217 M:      Jean Delvare <jdelvare@suse.com>
22218 L:      linux-hwmon@vger.kernel.org
22219 S:      Maintained
22220 F:      drivers/hwmon/w83795.c
22221
22222 W83L51xD SD/MMC CARD INTERFACE DRIVER
22223 M:      Pierre Ossman <pierre@ossman.eu>
22224 S:      Maintained
22225 F:      drivers/mmc/host/wbsd.*
22226
22227 WACOM PROTOCOL 4 SERIAL TABLETS
22228 M:      Julian Squires <julian@cipht.net>
22229 M:      Hans de Goede <hdegoede@redhat.com>
22230 L:      linux-input@vger.kernel.org
22231 S:      Maintained
22232 F:      drivers/input/tablet/wacom_serial4.c
22233
22234 WANGXUN ETHERNET DRIVER
22235 M:      Jiawen Wu <jiawenwu@trustnetic.com>
22236 M:      Mengyuan Lou <mengyuanlou@net-swift.com>
22237 W:      https://www.net-swift.com
22238 L:      netdev@vger.kernel.org
22239 S:      Maintained
22240 F:      Documentation/networking/device_drivers/ethernet/wangxun/*
22241 F:      drivers/net/ethernet/wangxun/
22242
22243 WATCHDOG DEVICE DRIVERS
22244 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
22245 M:      Guenter Roeck <linux@roeck-us.net>
22246 L:      linux-watchdog@vger.kernel.org
22247 S:      Maintained
22248 W:      http://www.linux-watchdog.org/
22249 T:      git git://www.linux-watchdog.org/linux-watchdog.git
22250 F:      Documentation/devicetree/bindings/watchdog/
22251 F:      Documentation/watchdog/
22252 F:      drivers/watchdog/
22253 F:      include/linux/watchdog.h
22254 F:      include/uapi/linux/watchdog.h
22255 F:      include/trace/events/watchdog.h
22256
22257 WHISKEYCOVE PMIC GPIO DRIVER
22258 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
22259 L:      linux-gpio@vger.kernel.org
22260 S:      Maintained
22261 F:      drivers/gpio/gpio-wcove.c
22262
22263 WHWAVE RTC DRIVER
22264 M:      Dianlong Li <long17.cool@163.com>
22265 L:      linux-rtc@vger.kernel.org
22266 S:      Maintained
22267 F:      drivers/rtc/rtc-sd3078.c
22268
22269 WIIMOTE HID DRIVER
22270 M:      David Rheinsberg <david.rheinsberg@gmail.com>
22271 L:      linux-input@vger.kernel.org
22272 S:      Maintained
22273 F:      drivers/hid/hid-wiimote*
22274
22275 WILOCITY WIL6210 WIRELESS DRIVER
22276 L:      linux-wireless@vger.kernel.org
22277 S:      Orphan
22278 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
22279 F:      drivers/net/wireless/ath/wil6210/
22280
22281 WINBOND CIR DRIVER
22282 M:      David Härdeman <david@hardeman.nu>
22283 S:      Maintained
22284 F:      drivers/media/rc/winbond-cir.c
22285
22286 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
22287 M:      William Breathitt Gray <william.gray@linaro.org>
22288 L:      linux-watchdog@vger.kernel.org
22289 S:      Maintained
22290 F:      drivers/watchdog/ebc-c384_wdt.c
22291
22292 WINSYSTEMS WS16C48 GPIO DRIVER
22293 M:      William Breathitt Gray <william.gray@linaro.org>
22294 L:      linux-gpio@vger.kernel.org
22295 S:      Maintained
22296 F:      drivers/gpio/gpio-ws16c48.c
22297
22298 WIREGUARD SECURE NETWORK TUNNEL
22299 M:      Jason A. Donenfeld <Jason@zx2c4.com>
22300 L:      wireguard@lists.zx2c4.com
22301 L:      netdev@vger.kernel.org
22302 S:      Maintained
22303 F:      drivers/net/wireguard/
22304 F:      tools/testing/selftests/wireguard/
22305
22306 WISTRON LAPTOP BUTTON DRIVER
22307 M:      Miloslav Trmac <mitr@volny.cz>
22308 S:      Maintained
22309 F:      drivers/input/misc/wistron_btns.c
22310
22311 WL3501 WIRELESS PCMCIA CARD DRIVER
22312 L:      linux-wireless@vger.kernel.org
22313 S:      Odd fixes
22314 F:      drivers/net/wireless/wl3501*
22315
22316 WOLFSON MICROELECTRONICS DRIVERS
22317 L:      patches@opensource.cirrus.com
22318 S:      Supported
22319 W:      https://github.com/CirrusLogic/linux-drivers/wiki
22320 T:      git https://github.com/CirrusLogic/linux-drivers.git
22321 F:      Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
22322 F:      Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
22323 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
22324 F:      Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
22325 F:      Documentation/devicetree/bindings/sound/wlf,*.yaml
22326 F:      Documentation/devicetree/bindings/sound/wm*
22327 F:      Documentation/hwmon/wm83??.rst
22328 F:      arch/arm/mach-s3c/mach-crag6410*
22329 F:      drivers/clk/clk-wm83*.c
22330 F:      drivers/gpio/gpio-*wm*.c
22331 F:      drivers/gpio/gpio-arizona.c
22332 F:      drivers/hwmon/wm83??-hwmon.c
22333 F:      drivers/input/misc/wm831x-on.c
22334 F:      drivers/input/touchscreen/wm831x-ts.c
22335 F:      drivers/input/touchscreen/wm97*.c
22336 F:      drivers/leds/leds-wm83*.c
22337 F:      drivers/mfd/arizona*
22338 F:      drivers/mfd/cs47l24*
22339 F:      drivers/mfd/wm*.c
22340 F:      drivers/power/supply/wm83*.c
22341 F:      drivers/regulator/arizona*
22342 F:      drivers/regulator/wm8*.c
22343 F:      drivers/rtc/rtc-wm83*.c
22344 F:      drivers/video/backlight/wm83*_bl.c
22345 F:      drivers/watchdog/wm83*_wdt.c
22346 F:      include/linux/mfd/arizona/
22347 F:      include/linux/mfd/wm831x/
22348 F:      include/linux/mfd/wm8350/
22349 F:      include/linux/mfd/wm8400*
22350 F:      include/linux/regulator/arizona*
22351 F:      include/linux/wm97xx.h
22352 F:      include/sound/wm????.h
22353 F:      sound/soc/codecs/arizona*
22354 F:      sound/soc/codecs/cs47l24*
22355 F:      sound/soc/codecs/wm*
22356
22357 WORKQUEUE
22358 M:      Tejun Heo <tj@kernel.org>
22359 R:      Lai Jiangshan <jiangshanlai@gmail.com>
22360 S:      Maintained
22361 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
22362 F:      Documentation/core-api/workqueue.rst
22363 F:      include/linux/workqueue.h
22364 F:      kernel/workqueue.c
22365
22366 WWAN DRIVERS
22367 M:      Loic Poulain <loic.poulain@linaro.org>
22368 M:      Sergey Ryazanov <ryazanov.s.a@gmail.com>
22369 R:      Johannes Berg <johannes@sipsolutions.net>
22370 L:      netdev@vger.kernel.org
22371 S:      Maintained
22372 F:      drivers/net/wwan/
22373 F:      include/linux/wwan.h
22374 F:      include/uapi/linux/wwan.h
22375
22376 X-POWERS AXP288 PMIC DRIVERS
22377 M:      Hans de Goede <hdegoede@redhat.com>
22378 S:      Maintained
22379 F:      drivers/acpi/pmic/intel_pmic_xpower.c
22380 N:      axp288
22381
22382 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
22383 M:      Chen-Yu Tsai <wens@csie.org>
22384 L:      linux-kernel@vger.kernel.org
22385 S:      Maintained
22386 N:      axp[128]
22387
22388 X.25 STACK
22389 M:      Martin Schiller <ms@dev.tdt.de>
22390 L:      linux-x25@vger.kernel.org
22391 S:      Maintained
22392 F:      Documentation/networking/lapb-module.rst
22393 F:      Documentation/networking/x25*
22394 F:      drivers/net/wan/hdlc_x25.c
22395 F:      drivers/net/wan/lapbether.c
22396 F:      include/*/lapb.h
22397 F:      include/net/x25*
22398 F:      include/uapi/linux/x25.h
22399 F:      net/lapb/
22400 F:      net/x25/
22401
22402 X86 ARCHITECTURE (32-BIT AND 64-BIT)
22403 M:      Thomas Gleixner <tglx@linutronix.de>
22404 M:      Ingo Molnar <mingo@redhat.com>
22405 M:      Borislav Petkov <bp@alien8.de>
22406 M:      Dave Hansen <dave.hansen@linux.intel.com>
22407 M:      x86@kernel.org
22408 R:      "H. Peter Anvin" <hpa@zytor.com>
22409 L:      linux-kernel@vger.kernel.org
22410 S:      Maintained
22411 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
22412 F:      Documentation/devicetree/bindings/x86/
22413 F:      Documentation/x86/
22414 F:      arch/x86/
22415
22416 X86 ENTRY CODE
22417 M:      Andy Lutomirski <luto@kernel.org>
22418 L:      linux-kernel@vger.kernel.org
22419 S:      Maintained
22420 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
22421 F:      arch/x86/entry/
22422
22423 X86 MCE INFRASTRUCTURE
22424 M:      Tony Luck <tony.luck@intel.com>
22425 M:      Borislav Petkov <bp@alien8.de>
22426 L:      linux-edac@vger.kernel.org
22427 S:      Maintained
22428 F:      Documentation/ABI/testing/sysfs-mce
22429 F:      Documentation/x86/x86_64/machinecheck.rst
22430 F:      arch/x86/kernel/cpu/mce/*
22431
22432 X86 MICROCODE UPDATE SUPPORT
22433 M:      Borislav Petkov <bp@alien8.de>
22434 S:      Maintained
22435 F:      arch/x86/kernel/cpu/microcode/*
22436
22437 X86 MM
22438 M:      Dave Hansen <dave.hansen@linux.intel.com>
22439 M:      Andy Lutomirski <luto@kernel.org>
22440 M:      Peter Zijlstra <peterz@infradead.org>
22441 L:      linux-kernel@vger.kernel.org
22442 S:      Maintained
22443 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
22444 F:      arch/x86/mm/
22445
22446 X86 PLATFORM ANDROID TABLETS DSDT FIXUP DRIVER
22447 M:      Hans de Goede <hdegoede@redhat.com>
22448 L:      platform-driver-x86@vger.kernel.org
22449 S:      Maintained
22450 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
22451 F:      drivers/platform/x86/x86-android-tablets.c
22452
22453 X86 PLATFORM DRIVERS
22454 M:      Hans de Goede <hdegoede@redhat.com>
22455 M:      Mark Gross <markgross@kernel.org>
22456 L:      platform-driver-x86@vger.kernel.org
22457 S:      Maintained
22458 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
22459 F:      drivers/platform/olpc/
22460 F:      drivers/platform/x86/
22461
22462 X86 PLATFORM DRIVERS - ARCH
22463 R:      Darren Hart <dvhart@infradead.org>
22464 R:      Andy Shevchenko <andy@infradead.org>
22465 L:      platform-driver-x86@vger.kernel.org
22466 L:      x86@kernel.org
22467 S:      Maintained
22468 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
22469 F:      arch/x86/platform
22470
22471 X86 PLATFORM UV HPE SUPERDOME FLEX
22472 M:      Steve Wahl <steve.wahl@hpe.com>
22473 R:      Mike Travis <mike.travis@hpe.com>
22474 R:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
22475 R:      Russ Anderson <russ.anderson@hpe.com>
22476 S:      Supported
22477 F:      arch/x86/include/asm/uv/
22478 F:      arch/x86/kernel/apic/x2apic_uv_x.c
22479 F:      arch/x86/platform/uv/
22480
22481 X86 STACK UNWINDING
22482 M:      Josh Poimboeuf <jpoimboe@kernel.org>
22483 M:      Peter Zijlstra <peterz@infradead.org>
22484 S:      Supported
22485 F:      arch/x86/include/asm/unwind*.h
22486 F:      arch/x86/kernel/dumpstack.c
22487 F:      arch/x86/kernel/stacktrace.c
22488 F:      arch/x86/kernel/unwind_*.c
22489
22490 X86 VDSO
22491 M:      Andy Lutomirski <luto@kernel.org>
22492 L:      linux-kernel@vger.kernel.org
22493 S:      Maintained
22494 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
22495 F:      arch/x86/entry/vdso/
22496
22497 XARRAY
22498 M:      Matthew Wilcox <willy@infradead.org>
22499 L:      linux-fsdevel@vger.kernel.org
22500 S:      Supported
22501 F:      Documentation/core-api/xarray.rst
22502 F:      include/linux/idr.h
22503 F:      include/linux/xarray.h
22504 F:      lib/idr.c
22505 F:      lib/xarray.c
22506 F:      tools/testing/radix-tree
22507
22508 XBOX DVD IR REMOTE
22509 M:      Benjamin Valentin <benpicco@googlemail.com>
22510 S:      Maintained
22511 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
22512 F:      drivers/media/rc/xbox_remote.c
22513
22514 XC2028/3028 TUNER DRIVER
22515 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
22516 L:      linux-media@vger.kernel.org
22517 S:      Maintained
22518 W:      https://linuxtv.org
22519 T:      git git://linuxtv.org/media_tree.git
22520 F:      drivers/media/tuners/xc2028.*
22521
22522 XDP (eXpress Data Path)
22523 M:      Alexei Starovoitov <ast@kernel.org>
22524 M:      Daniel Borkmann <daniel@iogearbox.net>
22525 M:      David S. Miller <davem@davemloft.net>
22526 M:      Jakub Kicinski <kuba@kernel.org>
22527 M:      Jesper Dangaard Brouer <hawk@kernel.org>
22528 M:      John Fastabend <john.fastabend@gmail.com>
22529 L:      netdev@vger.kernel.org
22530 L:      bpf@vger.kernel.org
22531 S:      Supported
22532 F:      include/net/xdp.h
22533 F:      include/net/xdp_priv.h
22534 F:      include/trace/events/xdp.h
22535 F:      kernel/bpf/cpumap.c
22536 F:      kernel/bpf/devmap.c
22537 F:      net/core/xdp.c
22538 F:      samples/bpf/xdp*
22539 F:      tools/testing/selftests/bpf/*xdp*
22540 F:      tools/testing/selftests/bpf/*/*xdp*
22541 F:      drivers/net/ethernet/*/*/*/*/*xdp*
22542 F:      drivers/net/ethernet/*/*/*xdp*
22543 K:      (?:\b|_)xdp(?:\b|_)
22544
22545 XDP SOCKETS (AF_XDP)
22546 M:      Björn Töpel <bjorn@kernel.org>
22547 M:      Magnus Karlsson <magnus.karlsson@intel.com>
22548 M:      Maciej Fijalkowski <maciej.fijalkowski@intel.com>
22549 R:      Jonathan Lemon <jonathan.lemon@gmail.com>
22550 L:      netdev@vger.kernel.org
22551 L:      bpf@vger.kernel.org
22552 S:      Maintained
22553 F:      Documentation/networking/af_xdp.rst
22554 F:      include/net/xdp_sock*
22555 F:      include/net/xsk_buff_pool.h
22556 F:      include/uapi/linux/if_xdp.h
22557 F:      include/uapi/linux/xdp_diag.h
22558 F:      include/net/netns/xdp.h
22559 F:      net/xdp/
22560 F:      tools/testing/selftests/bpf/*xsk*
22561
22562 XEN BLOCK SUBSYSTEM
22563 M:      Roger Pau Monné <roger.pau@citrix.com>
22564 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22565 S:      Supported
22566 F:      drivers/block/xen*
22567 F:      drivers/block/xen-blkback/*
22568
22569 XEN HYPERVISOR ARM
22570 M:      Stefano Stabellini <sstabellini@kernel.org>
22571 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22572 S:      Maintained
22573 F:      arch/arm/include/asm/xen/
22574 F:      arch/arm/xen/
22575
22576 XEN HYPERVISOR ARM64
22577 M:      Stefano Stabellini <sstabellini@kernel.org>
22578 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22579 S:      Maintained
22580 F:      arch/arm64/include/asm/xen/
22581 F:      arch/arm64/xen/
22582
22583 XEN HYPERVISOR INTERFACE
22584 M:      Juergen Gross <jgross@suse.com>
22585 M:      Stefano Stabellini <sstabellini@kernel.org>
22586 R:      Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>
22587 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22588 S:      Supported
22589 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
22590 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
22591 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
22592 F:      drivers/*/xen-*front.c
22593 F:      drivers/xen/
22594 F:      include/uapi/xen/
22595 F:      include/xen/
22596 F:      kernel/configs/xen.config
22597
22598 XEN HYPERVISOR X86
22599 M:      Juergen Gross <jgross@suse.com>
22600 R:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
22601 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22602 S:      Supported
22603 F:      arch/x86/configs/xen.config
22604 F:      arch/x86/include/asm/pvclock-abi.h
22605 F:      arch/x86/include/asm/xen/
22606 F:      arch/x86/platform/pvh/
22607 F:      arch/x86/xen/
22608
22609 XEN NETWORK BACKEND DRIVER
22610 M:      Wei Liu <wei.liu@kernel.org>
22611 M:      Paul Durrant <paul@xen.org>
22612 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22613 L:      netdev@vger.kernel.org
22614 S:      Supported
22615 F:      drivers/net/xen-netback/*
22616
22617 XEN PCI SUBSYSTEM
22618 M:      Juergen Gross <jgross@suse.com>
22619 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22620 S:      Supported
22621 F:      arch/x86/pci/*xen*
22622 F:      drivers/pci/*xen*
22623
22624 XEN PVSCSI DRIVERS
22625 M:      Juergen Gross <jgross@suse.com>
22626 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22627 L:      linux-scsi@vger.kernel.org
22628 S:      Supported
22629 F:      drivers/scsi/xen-scsifront.c
22630 F:      drivers/xen/xen-scsiback.c
22631 F:      include/xen/interface/io/vscsiif.h
22632
22633 XEN PVUSB DRIVER
22634 M:      Juergen Gross <jgross@suse.com>
22635 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22636 L:      linux-usb@vger.kernel.org
22637 S:      Supported
22638 F:      drivers/usb/host/xen*
22639 F:      include/xen/interface/io/usbif.h
22640
22641 XEN SOUND FRONTEND DRIVER
22642 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
22643 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22644 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
22645 S:      Supported
22646 F:      sound/xen/*
22647
22648 XEN SWIOTLB SUBSYSTEM
22649 M:      Juergen Gross <jgross@suse.com>
22650 M:      Stefano Stabellini <sstabellini@kernel.org>
22651 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22652 L:      iommu@lists.linux.dev
22653 S:      Supported
22654 F:      arch/*/include/asm/xen/swiotlb-xen.h
22655 F:      drivers/xen/swiotlb-xen.c
22656 F:      include/xen/arm/swiotlb-xen.h
22657 F:      include/xen/swiotlb-xen.h
22658
22659 XFS FILESYSTEM
22660 C:      irc://irc.oftc.net/xfs
22661 M:      Darrick J. Wong <djwong@kernel.org>
22662 L:      linux-xfs@vger.kernel.org
22663 S:      Supported
22664 W:      http://xfs.org/
22665 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
22666 F:      Documentation/ABI/testing/sysfs-fs-xfs
22667 F:      Documentation/admin-guide/xfs.rst
22668 F:      Documentation/filesystems/xfs-delayed-logging-design.rst
22669 F:      Documentation/filesystems/xfs-self-describing-metadata.rst
22670 F:      fs/xfs/
22671 F:      include/uapi/linux/dqblk_xfs.h
22672 F:      include/uapi/linux/fsmap.h
22673
22674 XILINX AMS DRIVER
22675 M:      Anand Ashok Dumbre <anand.ashok.dumbre@xilinx.com>
22676 L:      linux-iio@vger.kernel.org
22677 S:      Maintained
22678 F:      Documentation/devicetree/bindings/iio/adc/xlnx,zynqmp-ams.yaml
22679 F:      drivers/iio/adc/xilinx-ams.c
22680
22681 XILINX AXI ETHERNET DRIVER
22682 M:      Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
22683 S:      Maintained
22684 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
22685
22686 XILINX CAN DRIVER
22687 M:      Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
22688 R:      Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
22689 L:      linux-can@vger.kernel.org
22690 S:      Maintained
22691 F:      Documentation/devicetree/bindings/net/can/xilinx,can.yaml
22692 F:      drivers/net/can/xilinx_can.c
22693
22694 XILINX GPIO DRIVER
22695 M:      Shubhrajyoti Datta <shubhrajyoti.datta@xilinx.com>
22696 R:      Srinivas Neeli <srinivas.neeli@xilinx.com>
22697 R:      Michal Simek <michal.simek@xilinx.com>
22698 S:      Maintained
22699 F:      Documentation/devicetree/bindings/gpio/xlnx,gpio-xilinx.yaml
22700 F:      Documentation/devicetree/bindings/gpio/gpio-zynq.yaml
22701 F:      drivers/gpio/gpio-xilinx.c
22702 F:      drivers/gpio/gpio-zynq.c
22703
22704 XILINX SD-FEC IP CORES
22705 M:      Derek Kiernan <derek.kiernan@xilinx.com>
22706 M:      Dragan Cvetic <dragan.cvetic@xilinx.com>
22707 S:      Maintained
22708 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
22709 F:      Documentation/misc-devices/xilinx_sdfec.rst
22710 F:      drivers/misc/Kconfig
22711 F:      drivers/misc/Makefile
22712 F:      drivers/misc/xilinx_sdfec.c
22713 F:      include/uapi/misc/xilinx_sdfec.h
22714
22715 XILINX PWM DRIVER
22716 M:      Sean Anderson <sean.anderson@seco.com>
22717 S:      Maintained
22718 F:      drivers/pwm/pwm-xilinx.c
22719 F:      include/clocksource/timer-xilinx.h
22720
22721 XILINX UARTLITE SERIAL DRIVER
22722 M:      Peter Korsgaard <jacmet@sunsite.dk>
22723 L:      linux-serial@vger.kernel.org
22724 S:      Maintained
22725 F:      drivers/tty/serial/uartlite.c
22726
22727 XILINX VIDEO IP CORES
22728 M:      Hyun Kwon <hyun.kwon@xilinx.com>
22729 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
22730 L:      linux-media@vger.kernel.org
22731 S:      Supported
22732 T:      git git://linuxtv.org/media_tree.git
22733 F:      Documentation/devicetree/bindings/media/xilinx/
22734 F:      drivers/media/platform/xilinx/
22735 F:      include/uapi/linux/xilinx-v4l2-controls.h
22736
22737 XILINX ZYNQMP DPDMA DRIVER
22738 M:      Hyun Kwon <hyun.kwon@xilinx.com>
22739 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
22740 L:      dmaengine@vger.kernel.org
22741 S:      Supported
22742 F:      Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dpdma.yaml
22743 F:      drivers/dma/xilinx/xilinx_dpdma.c
22744 F:      include/dt-bindings/dma/xlnx-zynqmp-dpdma.h
22745
22746 XILINX ZYNQMP OCM EDAC DRIVER
22747 M:      Shubhrajyoti Datta <shubhrajyoti.datta@amd.com>
22748 M:      Sai Krishna Potthuri <sai.krishna.potthuri@amd.com>
22749 S:      Maintained
22750 F:      Documentation/devicetree/bindings/memory-controllers/xlnx,zynqmp-ocmc-1.0.yaml
22751 F:      drivers/edac/zynqmp_edac.c
22752
22753 XILINX ZYNQMP PSGTR PHY DRIVER
22754 M:      Anurag Kumar Vulisha <anurag.kumar.vulisha@xilinx.com>
22755 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
22756 L:      linux-kernel@vger.kernel.org
22757 S:      Supported
22758 T:      git https://github.com/Xilinx/linux-xlnx.git
22759 F:      Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml
22760 F:      drivers/phy/xilinx/phy-zynqmp.c
22761
22762 XILINX ZYNQMP SHA3 DRIVER
22763 M:      Harsha <harsha.harsha@xilinx.com>
22764 S:      Maintained
22765 F:      drivers/crypto/xilinx/zynqmp-sha.c
22766
22767 XILINX EVENT MANAGEMENT DRIVER
22768 M:      Abhyuday Godhasara <abhyuday.godhasara@xilinx.com>
22769 S:      Maintained
22770 F:      drivers/soc/xilinx/xlnx_event_manager.c
22771 F:      include/linux/firmware/xlnx-event-manager.h
22772
22773 XILLYBUS DRIVER
22774 M:      Eli Billauer <eli.billauer@gmail.com>
22775 L:      linux-kernel@vger.kernel.org
22776 S:      Supported
22777 F:      drivers/char/xillybus/
22778
22779 XLP9XX I2C DRIVER
22780 M:      George Cherian <gcherian@marvell.com>
22781 L:      linux-i2c@vger.kernel.org
22782 S:      Supported
22783 W:      http://www.marvell.com
22784 F:      drivers/i2c/busses/i2c-xlp9xx.c
22785
22786 XRA1403 GPIO EXPANDER
22787 M:      Nandor Han <nandor.han@ge.com>
22788 M:      Semi Malinen <semi.malinen@ge.com>
22789 L:      linux-gpio@vger.kernel.org
22790 S:      Maintained
22791 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
22792 F:      drivers/gpio/gpio-xra1403.c
22793
22794 XTENSA XTFPGA PLATFORM SUPPORT
22795 M:      Max Filippov <jcmvbkbc@gmail.com>
22796 L:      linux-xtensa@linux-xtensa.org
22797 S:      Maintained
22798 F:      drivers/spi/spi-xtensa-xtfpga.c
22799 F:      sound/soc/xtensa/xtfpga-i2s.c
22800
22801 YAM DRIVER FOR AX.25
22802 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
22803 L:      linux-hams@vger.kernel.org
22804 S:      Maintained
22805 F:      drivers/net/hamradio/yam*
22806 F:      include/linux/yam.h
22807
22808 YAMA SECURITY MODULE
22809 M:      Kees Cook <keescook@chromium.org>
22810 S:      Supported
22811 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
22812 F:      Documentation/admin-guide/LSM/Yama.rst
22813 F:      security/yama/
22814
22815 YEALINK PHONE DRIVER
22816 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
22817 L:      usbb2k-api-dev@nongnu.org
22818 S:      Maintained
22819 F:      Documentation/input/devices/yealink.rst
22820 F:      drivers/input/misc/yealink.*
22821
22822 Z8530 DRIVER FOR AX.25
22823 M:      Joerg Reuter <jreuter@yaina.de>
22824 L:      linux-hams@vger.kernel.org
22825 S:      Maintained
22826 W:      http://yaina.de/jreuter/
22827 W:      http://www.qsl.net/dl1bke/
22828 F:      Documentation/networking/device_drivers/hamradio/z8530drv.rst
22829 F:      drivers/net/hamradio/*scc.c
22830 F:      drivers/net/hamradio/z8530.h
22831
22832 ZBUD COMPRESSED PAGE ALLOCATOR
22833 M:      Seth Jennings <sjenning@redhat.com>
22834 M:      Dan Streetman <ddstreet@ieee.org>
22835 L:      linux-mm@kvack.org
22836 S:      Maintained
22837 F:      mm/zbud.c
22838
22839 Z3FOLD COMPRESSED PAGE ALLOCATOR
22840 M:      Vitaly Wool <vitaly.wool@konsulko.com>
22841 R:      Miaohe Lin <linmiaohe@huawei.com>
22842 L:      linux-mm@kvack.org
22843 S:      Maintained
22844 F:      mm/z3fold.c
22845
22846 ZD1211RW WIRELESS DRIVER
22847 M:      Ulrich Kunitz <kune@deine-taler.de>
22848 L:      linux-wireless@vger.kernel.org
22849 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
22850 S:      Maintained
22851 W:      http://zd1211.ath.cx/wiki/DriverRewrite
22852 F:      drivers/net/wireless/zydas/zd1211rw/
22853
22854 ZD1301 MEDIA DRIVER
22855 M:      Antti Palosaari <crope@iki.fi>
22856 L:      linux-media@vger.kernel.org
22857 S:      Maintained
22858 W:      https://linuxtv.org/
22859 W:      http://palosaari.fi/linux/
22860 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
22861 F:      drivers/media/usb/dvb-usb-v2/zd1301*
22862
22863 ZD1301_DEMOD MEDIA DRIVER
22864 M:      Antti Palosaari <crope@iki.fi>
22865 L:      linux-media@vger.kernel.org
22866 S:      Maintained
22867 W:      https://linuxtv.org/
22868 W:      http://palosaari.fi/linux/
22869 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
22870 F:      drivers/media/dvb-frontends/zd1301_demod*
22871
22872 ZHAOXIN PROCESSOR SUPPORT
22873 M:      Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
22874 L:      linux-kernel@vger.kernel.org
22875 S:      Maintained
22876 F:      arch/x86/kernel/cpu/zhaoxin.c
22877
22878 ZONEFS FILESYSTEM
22879 M:      Damien Le Moal <damien.lemoal@opensource.wdc.com>
22880 M:      Naohiro Aota <naohiro.aota@wdc.com>
22881 R:      Johannes Thumshirn <jth@kernel.org>
22882 L:      linux-fsdevel@vger.kernel.org
22883 S:      Maintained
22884 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
22885 F:      Documentation/filesystems/zonefs.rst
22886 F:      fs/zonefs/
22887
22888 ZPOOL COMPRESSED PAGE STORAGE API
22889 M:      Dan Streetman <ddstreet@ieee.org>
22890 L:      linux-mm@kvack.org
22891 S:      Maintained
22892 F:      include/linux/zpool.h
22893 F:      mm/zpool.c
22894
22895 ZR36067 VIDEO FOR LINUX DRIVER
22896 M:      Corentin Labbe <clabbe@baylibre.com>
22897 L:      mjpeg-users@lists.sourceforge.net
22898 L:      linux-media@vger.kernel.org
22899 S:      Maintained
22900 W:      http://mjpeg.sourceforge.net/driver-zoran/
22901 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
22902 F:      Documentation/driver-api/media/drivers/zoran.rst
22903 F:      drivers/media/pci/zoran/
22904
22905 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
22906 M:      Minchan Kim <minchan@kernel.org>
22907 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
22908 L:      linux-kernel@vger.kernel.org
22909 S:      Maintained
22910 F:      Documentation/admin-guide/blockdev/zram.rst
22911 F:      drivers/block/zram/
22912
22913 ZS DECSTATION Z85C30 SERIAL DRIVER
22914 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
22915 S:      Maintained
22916 F:      drivers/tty/serial/zs.*
22917
22918 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
22919 M:      Minchan Kim <minchan@kernel.org>
22920 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
22921 L:      linux-mm@kvack.org
22922 S:      Maintained
22923 F:      Documentation/mm/zsmalloc.rst
22924 F:      include/linux/zsmalloc.h
22925 F:      mm/zsmalloc.c
22926
22927 ZSTD
22928 M:      Nick Terrell <terrelln@fb.com>
22929 S:      Maintained
22930 B:      https://github.com/facebook/zstd/issues
22931 T:      git https://github.com/terrelln/linux.git
22932 F:      include/linux/zstd*
22933 F:      lib/zstd/
22934 F:      lib/decompress_unzstd.c
22935 F:      crypto/zstd.c
22936 N:      zstd
22937 K:      zstd
22938
22939 ZSWAP COMPRESSED SWAP CACHING
22940 M:      Seth Jennings <sjenning@redhat.com>
22941 M:      Dan Streetman <ddstreet@ieee.org>
22942 M:      Vitaly Wool <vitaly.wool@konsulko.com>
22943 L:      linux-mm@kvack.org
22944 S:      Maintained
22945 F:      mm/zswap.c
22946
22947 THE REST
22948 M:      Linus Torvalds <torvalds@linux-foundation.org>
22949 L:      linux-kernel@vger.kernel.org
22950 S:      Buried alive in reporters
22951 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
22952 F:      *
22953 F:      */