Merge tag 'pm-6.3-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
[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 F:      include/linux/group_cpus.h
10781 F:      lib/group_cpus.c
10782
10783 IRQCHIP DRIVERS
10784 M:      Thomas Gleixner <tglx@linutronix.de>
10785 M:      Marc Zyngier <maz@kernel.org>
10786 L:      linux-kernel@vger.kernel.org
10787 S:      Maintained
10788 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10789 F:      Documentation/devicetree/bindings/interrupt-controller/
10790 F:      drivers/irqchip/
10791
10792 ISA
10793 M:      William Breathitt Gray <william.gray@linaro.org>
10794 S:      Maintained
10795 F:      Documentation/driver-api/isa.rst
10796 F:      drivers/base/isa.c
10797 F:      include/linux/isa.h
10798
10799 ISA RADIO MODULE
10800 M:      Hans Verkuil <hverkuil@xs4all.nl>
10801 L:      linux-media@vger.kernel.org
10802 S:      Maintained
10803 W:      https://linuxtv.org
10804 T:      git git://linuxtv.org/media_tree.git
10805 F:      drivers/media/radio/radio-isa*
10806
10807 ISAPNP
10808 M:      Jaroslav Kysela <perex@perex.cz>
10809 S:      Maintained
10810 F:      Documentation/driver-api/isapnp.rst
10811 F:      drivers/pnp/isapnp/
10812 F:      include/linux/isapnp.h
10813
10814 ISCSI
10815 M:      Lee Duncan <lduncan@suse.com>
10816 M:      Chris Leech <cleech@redhat.com>
10817 M:      Mike Christie <michael.christie@oracle.com>
10818 L:      open-iscsi@googlegroups.com
10819 L:      linux-scsi@vger.kernel.org
10820 S:      Maintained
10821 W:      www.open-iscsi.com
10822 F:      drivers/scsi/*iscsi*
10823 F:      include/scsi/*iscsi*
10824
10825 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
10826 M:      Peter Jones <pjones@redhat.com>
10827 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
10828 S:      Maintained
10829 F:      drivers/firmware/iscsi_ibft*
10830
10831 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
10832 M:      Sagi Grimberg <sagi@grimberg.me>
10833 M:      Max Gurtovoy <mgurtovoy@nvidia.com>
10834 L:      linux-rdma@vger.kernel.org
10835 S:      Supported
10836 W:      http://www.openfabrics.org
10837 W:      www.open-iscsi.org
10838 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10839 F:      drivers/infiniband/ulp/iser/
10840
10841 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
10842 M:      Sagi Grimberg <sagi@grimberg.me>
10843 L:      linux-rdma@vger.kernel.org
10844 L:      target-devel@vger.kernel.org
10845 S:      Supported
10846 W:      http://www.linux-iscsi.org
10847 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
10848 F:      drivers/infiniband/ulp/isert
10849
10850 ISDN/CMTP OVER BLUETOOTH
10851 M:      Karsten Keil <isdn@linux-pingi.de>
10852 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
10853 L:      netdev@vger.kernel.org
10854 S:      Odd Fixes
10855 W:      http://www.isdn4linux.de
10856 F:      Documentation/isdn/
10857 F:      drivers/isdn/capi/
10858 F:      include/linux/isdn/
10859 F:      include/uapi/linux/isdn/
10860 F:      net/bluetooth/cmtp/
10861
10862 ISDN/mISDN SUBSYSTEM
10863 M:      Karsten Keil <isdn@linux-pingi.de>
10864 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
10865 L:      netdev@vger.kernel.org
10866 S:      Maintained
10867 W:      http://www.isdn4linux.de
10868 F:      drivers/isdn/Kconfig
10869 F:      drivers/isdn/Makefile
10870 F:      drivers/isdn/hardware/
10871 F:      drivers/isdn/mISDN/
10872
10873 ISOFS FILESYSTEM
10874 M:      Jan Kara <jack@suse.cz>
10875 L:      linux-fsdevel@vger.kernel.org
10876 S:      Maintained
10877 F:      Documentation/filesystems/isofs.rst
10878 F:      fs/isofs/
10879
10880 IT87 HARDWARE MONITORING DRIVER
10881 M:      Jean Delvare <jdelvare@suse.com>
10882 L:      linux-hwmon@vger.kernel.org
10883 S:      Maintained
10884 F:      Documentation/hwmon/it87.rst
10885 F:      drivers/hwmon/it87.c
10886
10887 IT913X MEDIA DRIVER
10888 M:      Antti Palosaari <crope@iki.fi>
10889 L:      linux-media@vger.kernel.org
10890 S:      Maintained
10891 W:      https://linuxtv.org
10892 W:      http://palosaari.fi/linux/
10893 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10894 T:      git git://linuxtv.org/anttip/media_tree.git
10895 F:      drivers/media/tuners/it913x*
10896
10897 ITE IT66121 HDMI BRIDGE DRIVER
10898 M:      Phong LE <ple@baylibre.com>
10899 M:      Neil Armstrong <neil.armstrong@linaro.org>
10900 S:      Maintained
10901 T:      git git://anongit.freedesktop.org/drm/drm-misc
10902 F:      Documentation/devicetree/bindings/display/bridge/ite,it66121.yaml
10903 F:      drivers/gpu/drm/bridge/ite-it66121.c
10904
10905 IVTV VIDEO4LINUX DRIVER
10906 M:      Andy Walls <awalls@md.metrocast.net>
10907 L:      linux-media@vger.kernel.org
10908 S:      Maintained
10909 W:      https://linuxtv.org
10910 T:      git git://linuxtv.org/media_tree.git
10911 F:      Documentation/admin-guide/media/ivtv*
10912 F:      drivers/media/pci/ivtv/
10913 F:      include/uapi/linux/ivtv*
10914
10915 IX2505V MEDIA DRIVER
10916 M:      Malcolm Priestley <tvboxspy@gmail.com>
10917 L:      linux-media@vger.kernel.org
10918 S:      Maintained
10919 W:      https://linuxtv.org
10920 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10921 F:      drivers/media/dvb-frontends/ix2505v*
10922
10923 JAILHOUSE HYPERVISOR INTERFACE
10924 M:      Jan Kiszka <jan.kiszka@siemens.com>
10925 L:      jailhouse-dev@googlegroups.com
10926 S:      Maintained
10927 F:      arch/x86/include/asm/jailhouse_para.h
10928 F:      arch/x86/kernel/jailhouse.c
10929
10930 JC42.4 TEMPERATURE SENSOR DRIVER
10931 M:      Guenter Roeck <linux@roeck-us.net>
10932 L:      linux-hwmon@vger.kernel.org
10933 S:      Maintained
10934 F:      Documentation/devicetree/bindings/hwmon/jedec,jc42.yaml
10935 F:      Documentation/hwmon/jc42.rst
10936 F:      drivers/hwmon/jc42.c
10937
10938 JFS FILESYSTEM
10939 M:      Dave Kleikamp <shaggy@kernel.org>
10940 L:      jfs-discussion@lists.sourceforge.net
10941 S:      Odd Fixes
10942 W:      http://jfs.sourceforge.net/
10943 T:      git https://github.com/kleikamp/linux-shaggy.git
10944 F:      Documentation/admin-guide/jfs.rst
10945 F:      fs/jfs/
10946
10947 JME NETWORK DRIVER
10948 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
10949 L:      netdev@vger.kernel.org
10950 S:      Maintained
10951 F:      drivers/net/ethernet/jme.*
10952
10953 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
10954 M:      David Woodhouse <dwmw2@infradead.org>
10955 M:      Richard Weinberger <richard@nod.at>
10956 L:      linux-mtd@lists.infradead.org
10957 S:      Odd Fixes
10958 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
10959 T:      git git://git.infradead.org/ubifs-2.6.git
10960 F:      fs/jffs2/
10961 F:      include/uapi/linux/jffs2.h
10962
10963 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
10964 M:      "Theodore Ts'o" <tytso@mit.edu>
10965 M:      Jan Kara <jack@suse.com>
10966 L:      linux-ext4@vger.kernel.org
10967 S:      Maintained
10968 F:      fs/jbd2/
10969 F:      include/linux/jbd2.h
10970
10971 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
10972 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
10973 L:      linux-media@vger.kernel.org
10974 L:      linux-renesas-soc@vger.kernel.org
10975 S:      Maintained
10976 F:      drivers/media/platform/renesas/rcar_jpu.c
10977
10978 JSM Neo PCI based serial card
10979 L:      linux-serial@vger.kernel.org
10980 S:      Orphan
10981 F:      drivers/tty/serial/jsm/
10982
10983 K10TEMP HARDWARE MONITORING DRIVER
10984 M:      Clemens Ladisch <clemens@ladisch.de>
10985 L:      linux-hwmon@vger.kernel.org
10986 S:      Maintained
10987 F:      Documentation/hwmon/k10temp.rst
10988 F:      drivers/hwmon/k10temp.c
10989
10990 K8TEMP HARDWARE MONITORING DRIVER
10991 M:      Rudolf Marek <r.marek@assembler.cz>
10992 L:      linux-hwmon@vger.kernel.org
10993 S:      Maintained
10994 F:      Documentation/hwmon/k8temp.rst
10995 F:      drivers/hwmon/k8temp.c
10996
10997 KASAN
10998 M:      Andrey Ryabinin <ryabinin.a.a@gmail.com>
10999 R:      Alexander Potapenko <glider@google.com>
11000 R:      Andrey Konovalov <andreyknvl@gmail.com>
11001 R:      Dmitry Vyukov <dvyukov@google.com>
11002 R:      Vincenzo Frascino <vincenzo.frascino@arm.com>
11003 L:      kasan-dev@googlegroups.com
11004 S:      Maintained
11005 F:      Documentation/dev-tools/kasan.rst
11006 F:      arch/*/include/asm/*kasan.h
11007 F:      arch/*/mm/kasan_init*
11008 F:      include/linux/kasan*.h
11009 F:      lib/Kconfig.kasan
11010 F:      mm/kasan/
11011 F:      scripts/Makefile.kasan
11012
11013 KCONFIG
11014 M:      Masahiro Yamada <masahiroy@kernel.org>
11015 L:      linux-kbuild@vger.kernel.org
11016 S:      Maintained
11017 Q:      https://patchwork.kernel.org/project/linux-kbuild/list/
11018 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
11019 F:      Documentation/kbuild/kconfig*
11020 F:      scripts/Kconfig.include
11021 F:      scripts/kconfig/
11022
11023 KCOV
11024 R:      Dmitry Vyukov <dvyukov@google.com>
11025 R:      Andrey Konovalov <andreyknvl@gmail.com>
11026 L:      kasan-dev@googlegroups.com
11027 S:      Maintained
11028 F:      Documentation/dev-tools/kcov.rst
11029 F:      include/linux/kcov.h
11030 F:      include/uapi/linux/kcov.h
11031 F:      kernel/kcov.c
11032 F:      scripts/Makefile.kcov
11033
11034 KCSAN
11035 M:      Marco Elver <elver@google.com>
11036 R:      Dmitry Vyukov <dvyukov@google.com>
11037 L:      kasan-dev@googlegroups.com
11038 S:      Maintained
11039 F:      Documentation/dev-tools/kcsan.rst
11040 F:      include/linux/kcsan*.h
11041 F:      kernel/kcsan/
11042 F:      lib/Kconfig.kcsan
11043 F:      scripts/Makefile.kcsan
11044
11045 KDUMP
11046 M:      Baoquan He <bhe@redhat.com>
11047 R:      Vivek Goyal <vgoyal@redhat.com>
11048 R:      Dave Young <dyoung@redhat.com>
11049 L:      kexec@lists.infradead.org
11050 S:      Maintained
11051 W:      http://lse.sourceforge.net/kdump/
11052 F:      Documentation/admin-guide/kdump/
11053 F:      fs/proc/vmcore.c
11054 F:      include/linux/crash_core.h
11055 F:      include/linux/crash_dump.h
11056 F:      include/uapi/linux/vmcore.h
11057 F:      kernel/crash_*.c
11058
11059 KEENE FM RADIO TRANSMITTER DRIVER
11060 M:      Hans Verkuil <hverkuil@xs4all.nl>
11061 L:      linux-media@vger.kernel.org
11062 S:      Maintained
11063 W:      https://linuxtv.org
11064 T:      git git://linuxtv.org/media_tree.git
11065 F:      drivers/media/radio/radio-keene*
11066
11067 KERNEL AUTOMOUNTER
11068 M:      Ian Kent <raven@themaw.net>
11069 L:      autofs@vger.kernel.org
11070 S:      Maintained
11071 F:      fs/autofs/
11072
11073 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
11074 M:      Masahiro Yamada <masahiroy@kernel.org>
11075 R:      Nathan Chancellor <nathan@kernel.org>
11076 R:      Nick Desaulniers <ndesaulniers@google.com>
11077 R:      Nicolas Schier <nicolas@fjasle.eu>
11078 L:      linux-kbuild@vger.kernel.org
11079 S:      Maintained
11080 Q:      https://patchwork.kernel.org/project/linux-kbuild/list/
11081 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
11082 F:      Documentation/kbuild/
11083 F:      Makefile
11084 F:      scripts/*vmlinux*
11085 F:      scripts/Kbuild*
11086 F:      scripts/Makefile*
11087 F:      scripts/basic/
11088 F:      scripts/dummy-tools/
11089 F:      scripts/mk*
11090 F:      scripts/mod/
11091 F:      scripts/package/
11092
11093 KERNEL HARDENING (not covered by other areas)
11094 M:      Kees Cook <keescook@chromium.org>
11095 L:      linux-hardening@vger.kernel.org
11096 S:      Supported
11097 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
11098 F:      Documentation/ABI/testing/sysfs-kernel-oops_count
11099 F:      Documentation/ABI/testing/sysfs-kernel-warn_count
11100 F:      include/linux/overflow.h
11101 F:      include/linux/randomize_kstack.h
11102 F:      mm/usercopy.c
11103 K:      \b(add|choose)_random_kstack_offset\b
11104 K:      \b__check_(object_size|heap_object)\b
11105
11106 KERNEL JANITORS
11107 L:      kernel-janitors@vger.kernel.org
11108 S:      Odd Fixes
11109 W:      http://kernelnewbies.org/KernelJanitors
11110
11111 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
11112 M:      Chuck Lever <chuck.lever@oracle.com>
11113 M:      Jeff Layton <jlayton@kernel.org>
11114 L:      linux-nfs@vger.kernel.org
11115 S:      Supported
11116 W:      http://nfs.sourceforge.net/
11117 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/cel/linux.git
11118 F:      fs/exportfs/
11119 F:      fs/lockd/
11120 F:      fs/nfs_common/
11121 F:      fs/nfsd/
11122 F:      include/linux/lockd/
11123 F:      include/linux/sunrpc/
11124 F:      include/trace/events/rpcgss.h
11125 F:      include/trace/events/rpcrdma.h
11126 F:      include/trace/events/sunrpc.h
11127 F:      include/trace/misc/fs.h
11128 F:      include/trace/misc/nfs.h
11129 F:      include/trace/misc/sunrpc.h
11130 F:      include/uapi/linux/nfsd/
11131 F:      include/uapi/linux/sunrpc/
11132 F:      net/sunrpc/
11133 F:      Documentation/filesystems/nfs/
11134
11135 KERNEL REGRESSIONS
11136 M:      Thorsten Leemhuis <linux@leemhuis.info>
11137 L:      regressions@lists.linux.dev
11138 S:      Supported
11139 F:      Documentation/admin-guide/reporting-regressions.rst
11140 F:      Documentation/process/handling-regressions.rst
11141
11142 KERNEL SELFTEST FRAMEWORK
11143 M:      Shuah Khan <shuah@kernel.org>
11144 M:      Shuah Khan <skhan@linuxfoundation.org>
11145 L:      linux-kselftest@vger.kernel.org
11146 S:      Maintained
11147 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
11148 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
11149 F:      Documentation/dev-tools/kselftest*
11150 F:      tools/testing/selftests/
11151
11152 KERNEL SMB3 SERVER (KSMBD)
11153 M:      Namjae Jeon <linkinjeon@kernel.org>
11154 M:      Steve French <sfrench@samba.org>
11155 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
11156 R:      Tom Talpey <tom@talpey.com>
11157 L:      linux-cifs@vger.kernel.org
11158 S:      Maintained
11159 T:      git git://git.samba.org/ksmbd.git
11160 F:      Documentation/filesystems/cifs/ksmbd.rst
11161 F:      fs/ksmbd/
11162 F:      fs/smbfs_common/
11163
11164 KERNEL UNIT TESTING FRAMEWORK (KUnit)
11165 M:      Brendan Higgins <brendanhiggins@google.com>
11166 M:      David Gow <davidgow@google.com>
11167 L:      linux-kselftest@vger.kernel.org
11168 L:      kunit-dev@googlegroups.com
11169 S:      Maintained
11170 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
11171 F:      Documentation/dev-tools/kunit/
11172 F:      include/kunit/
11173 F:      lib/kunit/
11174 F:      tools/testing/kunit/
11175
11176 KERNEL USERMODE HELPER
11177 M:      Luis Chamberlain <mcgrof@kernel.org>
11178 L:      linux-kernel@vger.kernel.org
11179 S:      Maintained
11180 F:      include/linux/umh.h
11181 F:      kernel/umh.c
11182
11183 KERNEL VIRTUAL MACHINE (KVM)
11184 M:      Paolo Bonzini <pbonzini@redhat.com>
11185 L:      kvm@vger.kernel.org
11186 S:      Supported
11187 W:      http://www.linux-kvm.org
11188 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11189 F:      Documentation/virt/kvm/
11190 F:      include/asm-generic/kvm*
11191 F:      include/kvm/iodev.h
11192 F:      include/linux/kvm*
11193 F:      include/trace/events/kvm.h
11194 F:      include/uapi/asm-generic/kvm*
11195 F:      include/uapi/linux/kvm*
11196 F:      tools/kvm/
11197 F:      tools/testing/selftests/kvm/
11198 F:      virt/kvm/*
11199
11200 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
11201 M:      Marc Zyngier <maz@kernel.org>
11202 R:      James Morse <james.morse@arm.com>
11203 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
11204 R:      Oliver Upton <oliver.upton@linux.dev>
11205 R:      Zenghui Yu <yuzenghui@huawei.com>
11206 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11207 L:      kvmarm@lists.linux.dev
11208 L:      kvmarm@lists.cs.columbia.edu (deprecated, moderated for non-subscribers)
11209 S:      Maintained
11210 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
11211 F:      arch/arm64/include/asm/kvm*
11212 F:      arch/arm64/include/uapi/asm/kvm*
11213 F:      arch/arm64/kvm/
11214 F:      include/kvm/arm_*
11215 F:      tools/testing/selftests/kvm/*/aarch64/
11216 F:      tools/testing/selftests/kvm/aarch64/
11217
11218 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
11219 M:      Huacai Chen <chenhuacai@kernel.org>
11220 M:      Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
11221 L:      linux-mips@vger.kernel.org
11222 L:      kvm@vger.kernel.org
11223 S:      Maintained
11224 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11225 F:      arch/mips/include/asm/kvm*
11226 F:      arch/mips/include/uapi/asm/kvm*
11227 F:      arch/mips/kvm/
11228
11229 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
11230 L:      linuxppc-dev@lists.ozlabs.org
11231 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git topic/ppc-kvm
11232 F:      arch/powerpc/include/asm/kvm*
11233 F:      arch/powerpc/include/uapi/asm/kvm*
11234 F:      arch/powerpc/kernel/kvm*
11235 F:      arch/powerpc/kvm/
11236
11237 KERNEL VIRTUAL MACHINE FOR RISC-V (KVM/riscv)
11238 M:      Anup Patel <anup@brainfault.org>
11239 R:      Atish Patra <atishp@atishpatra.org>
11240 L:      kvm@vger.kernel.org
11241 L:      kvm-riscv@lists.infradead.org
11242 L:      linux-riscv@lists.infradead.org
11243 S:      Maintained
11244 T:      git https://github.com/kvm-riscv/linux.git
11245 F:      arch/riscv/include/asm/kvm*
11246 F:      arch/riscv/include/uapi/asm/kvm*
11247 F:      arch/riscv/kvm/
11248 F:      tools/testing/selftests/kvm/*/riscv/
11249
11250 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
11251 M:      Christian Borntraeger <borntraeger@linux.ibm.com>
11252 M:      Janosch Frank <frankja@linux.ibm.com>
11253 M:      Claudio Imbrenda <imbrenda@linux.ibm.com>
11254 R:      David Hildenbrand <david@redhat.com>
11255 L:      kvm@vger.kernel.org
11256 S:      Supported
11257 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
11258 F:      Documentation/virt/kvm/s390*
11259 F:      arch/s390/include/asm/gmap.h
11260 F:      arch/s390/include/asm/kvm*
11261 F:      arch/s390/include/uapi/asm/kvm*
11262 F:      arch/s390/include/uapi/asm/uvdevice.h
11263 F:      arch/s390/kernel/uv.c
11264 F:      arch/s390/kvm/
11265 F:      arch/s390/mm/gmap.c
11266 F:      drivers/s390/char/uvdevice.c
11267 F:      tools/testing/selftests/drivers/s390x/uvdevice/
11268 F:      tools/testing/selftests/kvm/*/s390x/
11269 F:      tools/testing/selftests/kvm/s390x/
11270
11271 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
11272 M:      Sean Christopherson <seanjc@google.com>
11273 M:      Paolo Bonzini <pbonzini@redhat.com>
11274 L:      kvm@vger.kernel.org
11275 S:      Supported
11276 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11277 F:      arch/x86/include/asm/kvm*
11278 F:      arch/x86/include/asm/svm.h
11279 F:      arch/x86/include/asm/vmx*.h
11280 F:      arch/x86/include/uapi/asm/kvm*
11281 F:      arch/x86/include/uapi/asm/svm.h
11282 F:      arch/x86/include/uapi/asm/vmx.h
11283 F:      arch/x86/kvm/
11284 F:      arch/x86/kvm/*/
11285
11286 KVM PARAVIRT (KVM/paravirt)
11287 M:      Paolo Bonzini <pbonzini@redhat.com>
11288 R:      Wanpeng Li <wanpengli@tencent.com>
11289 R:      Vitaly Kuznetsov <vkuznets@redhat.com>
11290 L:      kvm@vger.kernel.org
11291 S:      Supported
11292 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11293 F:      arch/x86/kernel/kvm.c
11294 F:      arch/x86/kernel/kvmclock.c
11295 F:      arch/x86/include/asm/pvclock-abi.h
11296 F:      include/linux/kvm_para.h
11297 F:      include/uapi/linux/kvm_para.h
11298 F:      include/uapi/asm-generic/kvm_para.h
11299 F:      include/asm-generic/kvm_para.h
11300 F:      arch/um/include/asm/kvm_para.h
11301 F:      arch/x86/include/asm/kvm_para.h
11302 F:      arch/x86/include/uapi/asm/kvm_para.h
11303
11304 KVM X86 HYPER-V (KVM/hyper-v)
11305 M:      Vitaly Kuznetsov <vkuznets@redhat.com>
11306 M:      Sean Christopherson <seanjc@google.com>
11307 M:      Paolo Bonzini <pbonzini@redhat.com>
11308 L:      kvm@vger.kernel.org
11309 S:      Supported
11310 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11311 F:      arch/x86/kvm/hyperv.*
11312 F:      arch/x86/kvm/kvm_onhyperv.*
11313 F:      arch/x86/kvm/svm/hyperv.*
11314 F:      arch/x86/kvm/svm/svm_onhyperv.*
11315 F:      arch/x86/kvm/vmx/hyperv.*
11316
11317 KVM X86 Xen (KVM/Xen)
11318 M:      David Woodhouse <dwmw2@infradead.org>
11319 M:      Paul Durrant <paul@xen.org>
11320 M:      Sean Christopherson <seanjc@google.com>
11321 M:      Paolo Bonzini <pbonzini@redhat.com>
11322 L:      kvm@vger.kernel.org
11323 S:      Supported
11324 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11325 F:      arch/x86/kvm/xen.*
11326
11327 KERNFS
11328 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11329 M:      Tejun Heo <tj@kernel.org>
11330 S:      Supported
11331 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
11332 F:      fs/kernfs/
11333 F:      include/linux/kernfs.h
11334
11335 KEXEC
11336 M:      Eric Biederman <ebiederm@xmission.com>
11337 L:      kexec@lists.infradead.org
11338 S:      Maintained
11339 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
11340 F:      include/linux/kexec.h
11341 F:      include/uapi/linux/kexec.h
11342 F:      kernel/kexec*
11343
11344 KEYS-ENCRYPTED
11345 M:      Mimi Zohar <zohar@linux.ibm.com>
11346 L:      linux-integrity@vger.kernel.org
11347 L:      keyrings@vger.kernel.org
11348 S:      Supported
11349 F:      Documentation/security/keys/trusted-encrypted.rst
11350 F:      include/keys/encrypted-type.h
11351 F:      security/keys/encrypted-keys/
11352
11353 KEYS-TRUSTED
11354 M:      James Bottomley <jejb@linux.ibm.com>
11355 M:      Jarkko Sakkinen <jarkko@kernel.org>
11356 M:      Mimi Zohar <zohar@linux.ibm.com>
11357 L:      linux-integrity@vger.kernel.org
11358 L:      keyrings@vger.kernel.org
11359 S:      Supported
11360 F:      Documentation/security/keys/trusted-encrypted.rst
11361 F:      include/keys/trusted-type.h
11362 F:      include/keys/trusted_tpm.h
11363 F:      security/keys/trusted-keys/
11364
11365 KEYS-TRUSTED-TEE
11366 M:      Sumit Garg <sumit.garg@linaro.org>
11367 L:      linux-integrity@vger.kernel.org
11368 L:      keyrings@vger.kernel.org
11369 S:      Supported
11370 F:      include/keys/trusted_tee.h
11371 F:      security/keys/trusted-keys/trusted_tee.c
11372
11373 KEYS-TRUSTED-CAAM
11374 M:      Ahmad Fatoum <a.fatoum@pengutronix.de>
11375 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
11376 L:      linux-integrity@vger.kernel.org
11377 L:      keyrings@vger.kernel.org
11378 S:      Maintained
11379 F:      include/keys/trusted_caam.h
11380 F:      security/keys/trusted-keys/trusted_caam.c
11381
11382 KEYS/KEYRINGS
11383 M:      David Howells <dhowells@redhat.com>
11384 M:      Jarkko Sakkinen <jarkko@kernel.org>
11385 L:      keyrings@vger.kernel.org
11386 S:      Maintained
11387 F:      Documentation/security/keys/core.rst
11388 F:      include/keys/
11389 F:      include/linux/key-type.h
11390 F:      include/linux/key.h
11391 F:      include/linux/keyctl.h
11392 F:      include/uapi/linux/keyctl.h
11393 F:      security/keys/
11394
11395 KEYS/KEYRINGS_INTEGRITY
11396 M:      Jarkko Sakkinen <jarkko@kernel.org>
11397 M:      Mimi Zohar <zohar@linux.ibm.com>
11398 L:      linux-integrity@vger.kernel.org
11399 L:      keyrings@vger.kernel.org
11400 S:      Supported
11401 F:      security/integrity/platform_certs
11402
11403 KFENCE
11404 M:      Alexander Potapenko <glider@google.com>
11405 M:      Marco Elver <elver@google.com>
11406 R:      Dmitry Vyukov <dvyukov@google.com>
11407 L:      kasan-dev@googlegroups.com
11408 S:      Maintained
11409 F:      Documentation/dev-tools/kfence.rst
11410 F:      arch/*/include/asm/kfence.h
11411 F:      include/linux/kfence.h
11412 F:      lib/Kconfig.kfence
11413 F:      mm/kfence/
11414
11415 KFIFO
11416 M:      Stefani Seibold <stefani@seibold.net>
11417 S:      Maintained
11418 F:      include/linux/kfifo.h
11419 F:      lib/kfifo.c
11420 F:      samples/kfifo/
11421
11422 KGDB / KDB /debug_core
11423 M:      Jason Wessel <jason.wessel@windriver.com>
11424 M:      Daniel Thompson <daniel.thompson@linaro.org>
11425 R:      Douglas Anderson <dianders@chromium.org>
11426 L:      kgdb-bugreport@lists.sourceforge.net
11427 S:      Maintained
11428 W:      http://kgdb.wiki.kernel.org/
11429 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
11430 F:      Documentation/dev-tools/kgdb.rst
11431 F:      drivers/misc/kgdbts.c
11432 F:      drivers/tty/serial/kgdboc.c
11433 F:      include/linux/kdb.h
11434 F:      include/linux/kgdb.h
11435 F:      kernel/debug/
11436 F:      kernel/module/kdb.c
11437
11438 KHADAS MCU MFD DRIVER
11439 M:      Neil Armstrong <neil.armstrong@linaro.org>
11440 L:      linux-amlogic@lists.infradead.org
11441 S:      Maintained
11442 F:      Documentation/devicetree/bindings/mfd/khadas,mcu.yaml
11443 F:      drivers/mfd/khadas-mcu.c
11444 F:      include/linux/mfd/khadas-mcu.h
11445 F:      drivers/thermal/khadas_mcu_fan.c
11446
11447 KIONIX/ROHM KX022A ACCELEROMETER
11448 M:      Matti Vaittinen <mazziesaccount@gmail.com>
11449 L:      linux-iio@vger.kernel.org
11450 S:      Supported
11451 F:      drivers/iio/accel/kionix-kx022a*
11452
11453 KMEMLEAK
11454 M:      Catalin Marinas <catalin.marinas@arm.com>
11455 S:      Maintained
11456 F:      Documentation/dev-tools/kmemleak.rst
11457 F:      include/linux/kmemleak.h
11458 F:      mm/kmemleak.c
11459 F:      samples/kmemleak/kmemleak-test.c
11460
11461 KMOD KERNEL MODULE LOADER - USERMODE HELPER
11462 M:      Luis Chamberlain <mcgrof@kernel.org>
11463 L:      linux-kernel@vger.kernel.org
11464 L:      linux-modules@vger.kernel.org
11465 S:      Maintained
11466 F:      include/linux/kmod.h
11467 F:      kernel/kmod.c
11468 F:      lib/test_kmod.c
11469 F:      tools/testing/selftests/kmod/
11470
11471 KMSAN
11472 M:      Alexander Potapenko <glider@google.com>
11473 R:      Marco Elver <elver@google.com>
11474 R:      Dmitry Vyukov <dvyukov@google.com>
11475 L:      kasan-dev@googlegroups.com
11476 S:      Maintained
11477 F:      Documentation/dev-tools/kmsan.rst
11478 F:      arch/*/include/asm/kmsan.h
11479 F:      arch/*/mm/kmsan_*
11480 F:      include/linux/kmsan*.h
11481 F:      lib/Kconfig.kmsan
11482 F:      mm/kmsan/
11483 F:      scripts/Makefile.kmsan
11484
11485 KPROBES
11486 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
11487 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
11488 M:      "David S. Miller" <davem@davemloft.net>
11489 M:      Masami Hiramatsu <mhiramat@kernel.org>
11490 L:      linux-kernel@vger.kernel.org
11491 L:      linux-trace-kernel@vger.kernel.org
11492 Q:      https://patchwork.kernel.org/project/linux-trace-kernel/list/
11493 S:      Maintained
11494 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace.git
11495 F:      Documentation/trace/kprobes.rst
11496 F:      include/asm-generic/kprobes.h
11497 F:      include/linux/kprobes.h
11498 F:      kernel/kprobes.c
11499 F:      lib/test_kprobes.c
11500 F:      samples/kprobes
11501
11502 KS0108 LCD CONTROLLER DRIVER
11503 M:      Miguel Ojeda <ojeda@kernel.org>
11504 S:      Maintained
11505 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
11506 F:      drivers/auxdisplay/ks0108.c
11507 F:      include/linux/ks0108.h
11508
11509 KTD253 BACKLIGHT DRIVER
11510 M:      Linus Walleij <linus.walleij@linaro.org>
11511 S:      Maintained
11512 F:      Documentation/devicetree/bindings/leds/backlight/kinetic,ktd253.yaml
11513 F:      drivers/video/backlight/ktd253-backlight.c
11514
11515 KTEST
11516 M:      Steven Rostedt <rostedt@goodmis.org>
11517 M:      John Hawley <warthog9@eaglescrag.net>
11518 S:      Maintained
11519 F:      tools/testing/ktest
11520
11521 L3MDEV
11522 M:      David Ahern <dsahern@kernel.org>
11523 L:      netdev@vger.kernel.org
11524 S:      Maintained
11525 F:      include/net/l3mdev.h
11526 F:      net/l3mdev
11527
11528 LANDLOCK SECURITY MODULE
11529 M:      Mickaël Salaün <mic@digikod.net>
11530 L:      linux-security-module@vger.kernel.org
11531 S:      Supported
11532 W:      https://landlock.io
11533 T:      git https://github.com/landlock-lsm/linux.git
11534 F:      Documentation/security/landlock.rst
11535 F:      Documentation/userspace-api/landlock.rst
11536 F:      include/uapi/linux/landlock.h
11537 F:      samples/landlock/
11538 F:      security/landlock/
11539 F:      tools/testing/selftests/landlock/
11540 K:      landlock
11541 K:      LANDLOCK
11542
11543 LANTIQ / INTEL Ethernet drivers
11544 M:      Hauke Mehrtens <hauke@hauke-m.de>
11545 L:      netdev@vger.kernel.org
11546 S:      Maintained
11547 F:      drivers/net/dsa/lantiq_gswip.c
11548 F:      drivers/net/dsa/lantiq_pce.h
11549 F:      drivers/net/ethernet/lantiq_xrx200.c
11550 F:      net/dsa/tag_gswip.c
11551
11552 LANTIQ MIPS ARCHITECTURE
11553 M:      John Crispin <john@phrozen.org>
11554 L:      linux-mips@vger.kernel.org
11555 S:      Maintained
11556 F:      arch/mips/lantiq
11557 F:      drivers/soc/lantiq
11558
11559 LASI 53c700 driver for PARISC
11560 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
11561 L:      linux-scsi@vger.kernel.org
11562 S:      Maintained
11563 F:      Documentation/scsi/53c700.rst
11564 F:      drivers/scsi/53c700*
11565
11566 LEAKING_ADDRESSES
11567 M:      Tobin C. Harding <me@tobin.cc>
11568 M:      Tycho Andersen <tycho@tycho.pizza>
11569 L:      linux-hardening@vger.kernel.org
11570 S:      Maintained
11571 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
11572 F:      scripts/leaking_addresses.pl
11573
11574 LED SUBSYSTEM
11575 M:      Pavel Machek <pavel@ucw.cz>
11576 M:      Lee Jones <lee@kernel.org>
11577 L:      linux-leds@vger.kernel.org
11578 S:      Maintained
11579 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
11580 F:      Documentation/devicetree/bindings/leds/
11581 F:      drivers/leds/
11582 F:      include/dt-bindings/leds/
11583 F:      include/linux/leds.h
11584
11585 LEGACY EEPROM DRIVER
11586 M:      Jean Delvare <jdelvare@suse.com>
11587 S:      Maintained
11588 F:      Documentation/misc-devices/eeprom.rst
11589 F:      drivers/misc/eeprom/eeprom.c
11590
11591 LEGO MINDSTORMS EV3
11592 R:      David Lechner <david@lechnology.com>
11593 S:      Maintained
11594 F:      Documentation/devicetree/bindings/power/supply/lego,ev3-battery.yaml
11595 F:      arch/arm/boot/dts/da850-lego-ev3.dts
11596 F:      drivers/power/supply/lego_ev3_battery.c
11597
11598 LEGO USB Tower driver
11599 M:      Juergen Stuber <starblue@users.sourceforge.net>
11600 L:      legousb-devel@lists.sourceforge.net
11601 S:      Maintained
11602 W:      http://legousb.sourceforge.net/
11603 F:      drivers/usb/misc/legousbtower.c
11604
11605 LETSKETCH HID TABLET DRIVER
11606 M:      Hans de Goede <hdegoede@redhat.com>
11607 L:      linux-input@vger.kernel.org
11608 S:      Maintained
11609 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
11610 F:      drivers/hid/hid-letsketch.c
11611
11612 LG LAPTOP EXTRAS
11613 M:      Matan Ziv-Av <matan@svgalib.org>
11614 L:      platform-driver-x86@vger.kernel.org
11615 S:      Maintained
11616 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
11617 F:      Documentation/admin-guide/laptops/lg-laptop.rst
11618 F:      drivers/platform/x86/lg-laptop.c
11619
11620 LG2160 MEDIA DRIVER
11621 M:      Michael Krufky <mkrufky@linuxtv.org>
11622 L:      linux-media@vger.kernel.org
11623 S:      Maintained
11624 W:      https://linuxtv.org
11625 W:      http://github.com/mkrufky
11626 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11627 T:      git git://linuxtv.org/mkrufky/tuners.git
11628 F:      drivers/media/dvb-frontends/lg2160.*
11629
11630 LGDT3305 MEDIA DRIVER
11631 M:      Michael Krufky <mkrufky@linuxtv.org>
11632 L:      linux-media@vger.kernel.org
11633 S:      Maintained
11634 W:      https://linuxtv.org
11635 W:      http://github.com/mkrufky
11636 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11637 T:      git git://linuxtv.org/mkrufky/tuners.git
11638 F:      drivers/media/dvb-frontends/lgdt3305.*
11639
11640 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
11641 M:      Viresh Kumar <vireshk@kernel.org>
11642 L:      linux-ide@vger.kernel.org
11643 S:      Maintained
11644 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11645 F:      drivers/ata/pata_arasan_cf.c
11646 F:      include/linux/pata_arasan_cf_data.h
11647
11648 LIBATA PATA DRIVERS
11649 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
11650 L:      linux-ide@vger.kernel.org
11651 F:      drivers/ata/ata_*.c
11652 F:      drivers/ata/pata_*.c
11653
11654 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
11655 M:      Linus Walleij <linus.walleij@linaro.org>
11656 L:      linux-ide@vger.kernel.org
11657 S:      Maintained
11658 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11659 F:      drivers/ata/pata_ftide010.c
11660 F:      drivers/ata/sata_gemini.c
11661 F:      drivers/ata/sata_gemini.h
11662
11663 LIBATA SATA AHCI PLATFORM devices support
11664 M:      Hans de Goede <hdegoede@redhat.com>
11665 M:      Jens Axboe <axboe@kernel.dk>
11666 L:      linux-ide@vger.kernel.org
11667 S:      Maintained
11668 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11669 F:      drivers/ata/ahci_platform.c
11670 F:      drivers/ata/libahci_platform.c
11671 F:      include/linux/ahci_platform.h
11672
11673 LIBATA SATA AHCI SYNOPSYS DWC CONTROLLER DRIVER
11674 M:      Serge Semin <fancer.lancer@gmail.com>
11675 L:      linux-ide@vger.kernel.org
11676 S:      Maintained
11677 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/libata.git
11678 F:      Documentation/devicetree/bindings/ata/baikal,bt1-ahci.yaml
11679 F:      Documentation/devicetree/bindings/ata/snps,dwc-ahci.yaml
11680 F:      drivers/ata/ahci_dwc.c
11681
11682 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
11683 M:      Mikael Pettersson <mikpelinux@gmail.com>
11684 L:      linux-ide@vger.kernel.org
11685 S:      Maintained
11686 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11687 F:      drivers/ata/sata_promise.*
11688
11689 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
11690 M:      Damien Le Moal <damien.lemoal@opensource.wdc.com>
11691 L:      linux-ide@vger.kernel.org
11692 S:      Maintained
11693 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/libata.git
11694 F:      Documentation/ABI/testing/sysfs-ata
11695 F:      Documentation/devicetree/bindings/ata/
11696 F:      drivers/ata/
11697 F:      include/linux/ata.h
11698 F:      include/linux/libata.h
11699
11700 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
11701 M:      Vishal Verma <vishal.l.verma@intel.com>
11702 M:      Dan Williams <dan.j.williams@intel.com>
11703 M:      Dave Jiang <dave.jiang@intel.com>
11704 L:      nvdimm@lists.linux.dev
11705 S:      Supported
11706 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11707 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11708 F:      drivers/nvdimm/btt*
11709
11710 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
11711 M:      Dan Williams <dan.j.williams@intel.com>
11712 M:      Vishal Verma <vishal.l.verma@intel.com>
11713 M:      Dave Jiang <dave.jiang@intel.com>
11714 L:      nvdimm@lists.linux.dev
11715 S:      Supported
11716 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11717 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11718 F:      drivers/nvdimm/pmem*
11719
11720 LIBNVDIMM: DEVICETREE BINDINGS
11721 M:      Oliver O'Halloran <oohall@gmail.com>
11722 L:      nvdimm@lists.linux.dev
11723 S:      Supported
11724 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11725 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
11726 F:      drivers/nvdimm/of_pmem.c
11727
11728 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
11729 M:      Dan Williams <dan.j.williams@intel.com>
11730 M:      Vishal Verma <vishal.l.verma@intel.com>
11731 M:      Dave Jiang <dave.jiang@intel.com>
11732 M:      Ira Weiny <ira.weiny@intel.com>
11733 L:      nvdimm@lists.linux.dev
11734 S:      Supported
11735 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11736 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11737 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
11738 F:      drivers/acpi/nfit/*
11739 F:      drivers/nvdimm/*
11740 F:      include/linux/libnvdimm.h
11741 F:      include/linux/nd.h
11742 F:      include/uapi/linux/ndctl.h
11743 F:      tools/testing/nvdimm/
11744
11745 LICENSES and SPDX stuff
11746 M:      Thomas Gleixner <tglx@linutronix.de>
11747 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11748 L:      linux-spdx@vger.kernel.org
11749 S:      Maintained
11750 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
11751 F:      COPYING
11752 F:      Documentation/process/license-rules.rst
11753 F:      LICENSES/
11754 F:      scripts/spdxcheck-test.sh
11755 F:      scripts/spdxcheck.py
11756 F:      scripts/spdxexclude
11757
11758 LINEAR RANGES HELPERS
11759 M:      Mark Brown <broonie@kernel.org>
11760 R:      Matti Vaittinen <mazziesaccount@gmail.com>
11761 F:      lib/linear_ranges.c
11762 F:      lib/test_linear_ranges.c
11763 F:      include/linux/linear_range.h
11764
11765 LINUX FOR POWER MACINTOSH
11766 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
11767 L:      linuxppc-dev@lists.ozlabs.org
11768 S:      Odd Fixes
11769 F:      arch/powerpc/platforms/powermac/
11770 F:      drivers/macintosh/
11771
11772 LINUX FOR POWERPC (32-BIT AND 64-BIT)
11773 M:      Michael Ellerman <mpe@ellerman.id.au>
11774 R:      Nicholas Piggin <npiggin@gmail.com>
11775 R:      Christophe Leroy <christophe.leroy@csgroup.eu>
11776 L:      linuxppc-dev@lists.ozlabs.org
11777 S:      Supported
11778 W:      https://github.com/linuxppc/wiki/wiki
11779 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
11780 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
11781 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
11782 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
11783 F:      Documentation/devicetree/bindings/powerpc/
11784 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
11785 F:      Documentation/powerpc/
11786 F:      arch/powerpc/
11787 F:      drivers/*/*/*pasemi*
11788 F:      drivers/*/*pasemi*
11789 F:      drivers/char/tpm/tpm_ibmvtpm*
11790 F:      drivers/crypto/nx/
11791 F:      drivers/crypto/vmx/
11792 F:      drivers/i2c/busses/i2c-opal.c
11793 F:      drivers/net/ethernet/ibm/ibmveth.*
11794 F:      drivers/net/ethernet/ibm/ibmvnic.*
11795 F:      drivers/pci/hotplug/pnv_php.c
11796 F:      drivers/pci/hotplug/rpa*
11797 F:      drivers/rtc/rtc-opal.c
11798 F:      drivers/scsi/ibmvscsi/
11799 F:      drivers/tty/hvc/hvc_opal.c
11800 F:      drivers/watchdog/wdrtas.c
11801 F:      tools/testing/selftests/powerpc
11802 N:      /pmac
11803 N:      powermac
11804 N:      powernv
11805 N:      [^a-z0-9]ps3
11806 N:      pseries
11807
11808 LINUX FOR POWERPC EMBEDDED MPC5XXX
11809 M:      Anatolij Gustschin <agust@denx.de>
11810 L:      linuxppc-dev@lists.ozlabs.org
11811 S:      Odd Fixes
11812 F:      arch/powerpc/platforms/512x/
11813 F:      arch/powerpc/platforms/52xx/
11814
11815 LINUX FOR POWERPC EMBEDDED PPC4XX
11816 L:      linuxppc-dev@lists.ozlabs.org
11817 S:      Orphan
11818 F:      arch/powerpc/platforms/40x/
11819 F:      arch/powerpc/platforms/44x/
11820
11821 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
11822 M:      Scott Wood <oss@buserror.net>
11823 L:      linuxppc-dev@lists.ozlabs.org
11824 S:      Odd fixes
11825 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
11826 F:      Documentation/devicetree/bindings/powerpc/fsl/
11827 F:      arch/powerpc/platforms/83xx/
11828 F:      arch/powerpc/platforms/85xx/
11829
11830 LINUX FOR POWERPC EMBEDDED PPC8XX
11831 M:      Christophe Leroy <christophe.leroy@csgroup.eu>
11832 L:      linuxppc-dev@lists.ozlabs.org
11833 S:      Maintained
11834 F:      arch/powerpc/platforms/8xx/
11835
11836 LINUX KERNEL DUMP TEST MODULE (LKDTM)
11837 M:      Kees Cook <keescook@chromium.org>
11838 S:      Maintained
11839 F:      drivers/misc/lkdtm/*
11840 F:      tools/testing/selftests/lkdtm/*
11841
11842 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
11843 M:      Alan Stern <stern@rowland.harvard.edu>
11844 M:      Andrea Parri <parri.andrea@gmail.com>
11845 M:      Will Deacon <will@kernel.org>
11846 M:      Peter Zijlstra <peterz@infradead.org>
11847 M:      Boqun Feng <boqun.feng@gmail.com>
11848 M:      Nicholas Piggin <npiggin@gmail.com>
11849 M:      David Howells <dhowells@redhat.com>
11850 M:      Jade Alglave <j.alglave@ucl.ac.uk>
11851 M:      Luc Maranget <luc.maranget@inria.fr>
11852 M:      "Paul E. McKenney" <paulmck@kernel.org>
11853 R:      Akira Yokosawa <akiyks@gmail.com>
11854 R:      Daniel Lustig <dlustig@nvidia.com>
11855 R:      Joel Fernandes <joel@joelfernandes.org>
11856 L:      linux-kernel@vger.kernel.org
11857 L:      linux-arch@vger.kernel.org
11858 S:      Supported
11859 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
11860 F:      Documentation/atomic_bitops.txt
11861 F:      Documentation/atomic_t.txt
11862 F:      Documentation/core-api/refcount-vs-atomic.rst
11863 F:      Documentation/litmus-tests/
11864 F:      Documentation/memory-barriers.txt
11865 F:      tools/memory-model/
11866
11867 LIS3LV02D ACCELEROMETER DRIVER
11868 M:      Eric Piel <eric.piel@tremplin-utc.net>
11869 S:      Maintained
11870 F:      Documentation/misc-devices/lis3lv02d.rst
11871 F:      drivers/misc/lis3lv02d/
11872 F:      drivers/platform/x86/hp/hp_accel.c
11873
11874 LIST KUNIT TEST
11875 M:      David Gow <davidgow@google.com>
11876 L:      linux-kselftest@vger.kernel.org
11877 L:      kunit-dev@googlegroups.com
11878 S:      Maintained
11879 F:      lib/list-test.c
11880
11881 LITEX PLATFORM
11882 M:      Karol Gugala <kgugala@antmicro.com>
11883 M:      Mateusz Holenko <mholenko@antmicro.com>
11884 M:      Gabriel Somlo <gsomlo@gmail.com>
11885 M:      Joel Stanley <joel@jms.id.au>
11886 S:      Maintained
11887 F:      Documentation/devicetree/bindings/*/litex,*.yaml
11888 F:      arch/openrisc/boot/dts/or1klitex.dts
11889 F:      include/linux/litex.h
11890 F:      drivers/tty/serial/liteuart.c
11891 F:      drivers/soc/litex/*
11892 F:      drivers/net/ethernet/litex/*
11893 F:      drivers/mmc/host/litex_mmc.c
11894 N:      litex
11895
11896 LIVE PATCHING
11897 M:      Josh Poimboeuf <jpoimboe@kernel.org>
11898 M:      Jiri Kosina <jikos@kernel.org>
11899 M:      Miroslav Benes <mbenes@suse.cz>
11900 M:      Petr Mladek <pmladek@suse.com>
11901 R:      Joe Lawrence <joe.lawrence@redhat.com>
11902 L:      live-patching@vger.kernel.org
11903 S:      Maintained
11904 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
11905 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
11906 F:      Documentation/livepatch/
11907 F:      arch/powerpc/include/asm/livepatch.h
11908 F:      include/linux/livepatch.h
11909 F:      kernel/livepatch/
11910 F:      kernel/module/livepatch.c
11911 F:      lib/livepatch/
11912 F:      samples/livepatch/
11913 F:      tools/testing/selftests/livepatch/
11914
11915 LLC (802.2)
11916 L:      netdev@vger.kernel.org
11917 S:      Odd fixes
11918 F:      include/linux/llc.h
11919 F:      include/net/llc*
11920 F:      include/uapi/linux/llc.h
11921 F:      net/llc/
11922
11923 LM73 HARDWARE MONITOR DRIVER
11924 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
11925 L:      linux-hwmon@vger.kernel.org
11926 S:      Maintained
11927 F:      drivers/hwmon/lm73.c
11928
11929 LM78 HARDWARE MONITOR DRIVER
11930 M:      Jean Delvare <jdelvare@suse.com>
11931 L:      linux-hwmon@vger.kernel.org
11932 S:      Maintained
11933 F:      Documentation/hwmon/lm78.rst
11934 F:      drivers/hwmon/lm78.c
11935
11936 LM83 HARDWARE MONITOR DRIVER
11937 M:      Jean Delvare <jdelvare@suse.com>
11938 L:      linux-hwmon@vger.kernel.org
11939 S:      Maintained
11940 F:      Documentation/hwmon/lm83.rst
11941 F:      drivers/hwmon/lm83.c
11942
11943 LM90 HARDWARE MONITOR DRIVER
11944 M:      Jean Delvare <jdelvare@suse.com>
11945 L:      linux-hwmon@vger.kernel.org
11946 S:      Maintained
11947 F:      Documentation/devicetree/bindings/hwmon/national,lm90.yaml
11948 F:      Documentation/hwmon/lm90.rst
11949 F:      drivers/hwmon/lm90.c
11950 F:      include/dt-bindings/thermal/lm90.h
11951
11952 LM95234 HARDWARE MONITOR DRIVER
11953 M:      Guenter Roeck <linux@roeck-us.net>
11954 L:      linux-hwmon@vger.kernel.org
11955 S:      Maintained
11956 F:      Documentation/hwmon/lm95234.rst
11957 F:      drivers/hwmon/lm95234.c
11958
11959 LME2510 MEDIA DRIVER
11960 M:      Malcolm Priestley <tvboxspy@gmail.com>
11961 L:      linux-media@vger.kernel.org
11962 S:      Maintained
11963 W:      https://linuxtv.org
11964 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11965 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
11966
11967 LOADPIN SECURITY MODULE
11968 M:      Kees Cook <keescook@chromium.org>
11969 S:      Supported
11970 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
11971 F:      Documentation/admin-guide/LSM/LoadPin.rst
11972 F:      security/loadpin/
11973
11974 LOCKING PRIMITIVES
11975 M:      Peter Zijlstra <peterz@infradead.org>
11976 M:      Ingo Molnar <mingo@redhat.com>
11977 M:      Will Deacon <will@kernel.org>
11978 R:      Waiman Long <longman@redhat.com>
11979 R:      Boqun Feng <boqun.feng@gmail.com> (LOCKDEP)
11980 L:      linux-kernel@vger.kernel.org
11981 S:      Maintained
11982 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
11983 F:      Documentation/locking/
11984 F:      arch/*/include/asm/spinlock*.h
11985 F:      include/linux/lockdep.h
11986 F:      include/linux/mutex*.h
11987 F:      include/linux/rwlock*.h
11988 F:      include/linux/rwsem*.h
11989 F:      include/linux/seqlock.h
11990 F:      include/linux/spinlock*.h
11991 F:      kernel/locking/
11992 F:      lib/locking*.[ch]
11993 X:      kernel/locking/locktorture.c
11994
11995 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
11996 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
11997 L:      linux-ntfs-dev@lists.sourceforge.net
11998 S:      Maintained
11999 W:      http://www.linux-ntfs.org/content/view/19/37/
12000 F:      Documentation/admin-guide/ldm.rst
12001 F:      block/partitions/ldm.*
12002
12003 LOGITECH HID GAMING KEYBOARDS
12004 M:      Hans de Goede <hdegoede@redhat.com>
12005 L:      linux-input@vger.kernel.org
12006 S:      Maintained
12007 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
12008 F:      drivers/hid/hid-lg-g15.c
12009
12010 LONTIUM LT8912B MIPI TO HDMI BRIDGE
12011 M:      Adrien Grassein <adrien.grassein@gmail.com>
12012 S:      Maintained
12013 F:      Documentation/devicetree/bindings/display/bridge/lontium,lt8912b.yaml
12014 F:      drivers/gpu/drm/bridge/lontium-lt8912b.c
12015
12016 LOONGARCH
12017 M:      Huacai Chen <chenhuacai@kernel.org>
12018 R:      WANG Xuerui <kernel@xen0n.name>
12019 L:      loongarch@lists.linux.dev
12020 S:      Maintained
12021 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson.git
12022 F:      arch/loongarch/
12023 F:      drivers/*/*loongarch*
12024 F:      Documentation/loongarch/
12025 F:      Documentation/translations/zh_CN/loongarch/
12026
12027 LOONGSON-2 SOC SERIES GUTS DRIVER
12028 M:      Yinbo Zhu <zhuyinbo@loongson.cn>
12029 L:      loongarch@lists.linux.dev
12030 S:      Maintained
12031 F:      Documentation/devicetree/bindings/hwinfo/loongson,ls2k-chipid.yaml
12032 F:      drivers/soc/loongson/loongson2_guts.c
12033
12034 LOONGSON-2 SOC SERIES PINCTRL DRIVER
12035 M:      zhanghongchen <zhanghongchen@loongson.cn>
12036 M:      Yinbo Zhu <zhuyinbo@loongson.cn>
12037 L:      linux-gpio@vger.kernel.org
12038 S:      Maintained
12039 F:      Documentation/devicetree/bindings/pinctrl/loongson,ls2k-pinctrl.yaml
12040 F:      drivers/pinctrl/pinctrl-loongson2.c
12041
12042 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
12043 M:      Sathya Prakash <sathya.prakash@broadcom.com>
12044 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
12045 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
12046 L:      MPT-FusionLinux.pdl@broadcom.com
12047 L:      linux-scsi@vger.kernel.org
12048 S:      Supported
12049 W:      http://www.avagotech.com/support/
12050 F:      drivers/message/fusion/
12051 F:      drivers/scsi/mpt3sas/
12052
12053 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
12054 M:      Matthew Wilcox <willy@infradead.org>
12055 L:      linux-scsi@vger.kernel.org
12056 S:      Maintained
12057 F:      drivers/scsi/sym53c8xx_2/
12058
12059 LTC1660 DAC DRIVER
12060 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
12061 L:      linux-iio@vger.kernel.org
12062 S:      Maintained
12063 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
12064 F:      drivers/iio/dac/ltc1660.c
12065
12066 LTC2688 IIO DAC DRIVER
12067 M:      Nuno Sá <nuno.sa@analog.com>
12068 L:      linux-iio@vger.kernel.org
12069 S:      Supported
12070 W:      https://ez.analog.com/linux-software-drivers
12071 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-ltc2688
12072 F:      Documentation/devicetree/bindings/iio/dac/adi,ltc2688.yaml
12073 F:      drivers/iio/dac/ltc2688.c
12074
12075 LTC2947 HARDWARE MONITOR DRIVER
12076 M:      Nuno Sá <nuno.sa@analog.com>
12077 L:      linux-hwmon@vger.kernel.org
12078 S:      Supported
12079 W:      https://ez.analog.com/linux-software-drivers
12080 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
12081 F:      drivers/hwmon/ltc2947-core.c
12082 F:      drivers/hwmon/ltc2947-i2c.c
12083 F:      drivers/hwmon/ltc2947-spi.c
12084 F:      drivers/hwmon/ltc2947.h
12085
12086 LTC2983 IIO TEMPERATURE DRIVER
12087 M:      Nuno Sá <nuno.sa@analog.com>
12088 L:      linux-iio@vger.kernel.org
12089 S:      Supported
12090 W:      https://ez.analog.com/linux-software-drivers
12091 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
12092 F:      drivers/iio/temperature/ltc2983.c
12093
12094 LTC4261 HARDWARE MONITOR DRIVER
12095 M:      Guenter Roeck <linux@roeck-us.net>
12096 L:      linux-hwmon@vger.kernel.org
12097 S:      Maintained
12098 F:      Documentation/hwmon/ltc4261.rst
12099 F:      drivers/hwmon/ltc4261.c
12100
12101 LTC4306 I2C MULTIPLEXER DRIVER
12102 M:      Michael Hennerich <michael.hennerich@analog.com>
12103 L:      linux-i2c@vger.kernel.org
12104 S:      Supported
12105 W:      https://ez.analog.com/linux-software-drivers
12106 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
12107 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
12108
12109 LTP (Linux Test Project)
12110 M:      Mike Frysinger <vapier@gentoo.org>
12111 M:      Cyril Hrubis <chrubis@suse.cz>
12112 M:      Wanlong Gao <wanlong.gao@gmail.com>
12113 M:      Jan Stancek <jstancek@redhat.com>
12114 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
12115 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
12116 L:      ltp@lists.linux.it (subscribers-only)
12117 S:      Maintained
12118 W:      http://linux-test-project.github.io/
12119 T:      git https://github.com/linux-test-project/ltp.git
12120
12121 LYNX 28G SERDES PHY DRIVER
12122 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
12123 L:      netdev@vger.kernel.org
12124 S:      Supported
12125 F:      Documentation/devicetree/bindings/phy/fsl,lynx-28g.yaml
12126 F:      drivers/phy/freescale/phy-fsl-lynx-28g.c
12127
12128 LYNX PCS MODULE
12129 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
12130 L:      netdev@vger.kernel.org
12131 S:      Supported
12132 F:      drivers/net/pcs/pcs-lynx.c
12133 F:      include/linux/pcs-lynx.h
12134
12135 M68K ARCHITECTURE
12136 M:      Geert Uytterhoeven <geert@linux-m68k.org>
12137 L:      linux-m68k@lists.linux-m68k.org
12138 S:      Maintained
12139 W:      http://www.linux-m68k.org/
12140 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
12141 F:      arch/m68k/
12142 F:      drivers/zorro/
12143
12144 M68K ON APPLE MACINTOSH
12145 M:      Joshua Thompson <funaho@jurai.org>
12146 L:      linux-m68k@lists.linux-m68k.org
12147 S:      Maintained
12148 W:      http://www.mac.linux-m68k.org/
12149 F:      arch/m68k/mac/
12150 F:      drivers/macintosh/adb-iop.c
12151 F:      drivers/macintosh/via-macii.c
12152
12153 M68K ON HP9000/300
12154 M:      Philip Blundell <philb@gnu.org>
12155 S:      Maintained
12156 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
12157 F:      arch/m68k/hp300/
12158
12159 M88DS3103 MEDIA DRIVER
12160 M:      Antti Palosaari <crope@iki.fi>
12161 L:      linux-media@vger.kernel.org
12162 S:      Maintained
12163 W:      https://linuxtv.org
12164 W:      http://palosaari.fi/linux/
12165 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12166 T:      git git://linuxtv.org/anttip/media_tree.git
12167 F:      drivers/media/dvb-frontends/m88ds3103*
12168
12169 M88RS2000 MEDIA DRIVER
12170 M:      Malcolm Priestley <tvboxspy@gmail.com>
12171 L:      linux-media@vger.kernel.org
12172 S:      Maintained
12173 W:      https://linuxtv.org
12174 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12175 F:      drivers/media/dvb-frontends/m88rs2000*
12176
12177 MA901 MASTERKIT USB FM RADIO DRIVER
12178 M:      Alexey Klimov <klimov.linux@gmail.com>
12179 L:      linux-media@vger.kernel.org
12180 S:      Maintained
12181 T:      git git://linuxtv.org/media_tree.git
12182 F:      drivers/media/radio/radio-ma901.c
12183
12184 MAC80211
12185 M:      Johannes Berg <johannes@sipsolutions.net>
12186 L:      linux-wireless@vger.kernel.org
12187 S:      Maintained
12188 W:      https://wireless.wiki.kernel.org/
12189 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
12190 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
12191 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
12192 F:      Documentation/networking/mac80211-injection.rst
12193 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
12194 F:      drivers/net/wireless/mac80211_hwsim.[ch]
12195 F:      include/net/mac80211.h
12196 F:      net/mac80211/
12197
12198 MAILBOX API
12199 M:      Jassi Brar <jassisinghbrar@gmail.com>
12200 L:      linux-kernel@vger.kernel.org
12201 S:      Maintained
12202 F:      drivers/mailbox/
12203 F:      include/linux/mailbox_client.h
12204 F:      include/linux/mailbox_controller.h
12205 F:      include/dt-bindings/mailbox/
12206 F:      Documentation/devicetree/bindings/mailbox/
12207
12208 MAILBOX ARM MHUv2
12209 M:      Viresh Kumar <viresh.kumar@linaro.org>
12210 M:      Tushar Khandelwal <Tushar.Khandelwal@arm.com>
12211 L:      linux-kernel@vger.kernel.org
12212 S:      Maintained
12213 F:      drivers/mailbox/arm_mhuv2.c
12214 F:      include/linux/mailbox/arm_mhuv2_message.h
12215 F:      Documentation/devicetree/bindings/mailbox/arm,mhuv2.yaml
12216
12217 MANAGEMENT COMPONENT TRANSPORT PROTOCOL (MCTP)
12218 M:      Jeremy Kerr <jk@codeconstruct.com.au>
12219 M:      Matt Johnston <matt@codeconstruct.com.au>
12220 L:      netdev@vger.kernel.org
12221 S:      Maintained
12222 F:      Documentation/networking/mctp.rst
12223 F:      drivers/net/mctp/
12224 F:      include/net/mctp.h
12225 F:      include/net/mctpdevice.h
12226 F:      include/net/netns/mctp.h
12227 F:      net/mctp/
12228
12229 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
12230 M:      Michael Kerrisk <mtk.manpages@gmail.com>
12231 L:      linux-man@vger.kernel.org
12232 S:      Maintained
12233 W:      http://www.kernel.org/doc/man-pages
12234
12235 MAPLE TREE
12236 M:      Liam R. Howlett <Liam.Howlett@oracle.com>
12237 L:      linux-mm@kvack.org
12238 S:      Supported
12239 F:      Documentation/core-api/maple_tree.rst
12240 F:      include/linux/maple_tree.h
12241 F:      include/trace/events/maple_tree.h
12242 F:      lib/maple_tree.c
12243 F:      lib/test_maple_tree.c
12244 F:      tools/testing/radix-tree/linux/maple_tree.h
12245 F:      tools/testing/radix-tree/maple.c
12246
12247 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
12248 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
12249 L:      linux-mips@vger.kernel.org
12250 S:      Maintained
12251 F:      arch/mips/boot/dts/img/pistachio*
12252
12253 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
12254 M:      Andrew Lunn <andrew@lunn.ch>
12255 L:      netdev@vger.kernel.org
12256 S:      Maintained
12257 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
12258 F:      Documentation/networking/devlink/mv88e6xxx.rst
12259 F:      drivers/net/dsa/mv88e6xxx/
12260 F:      include/linux/dsa/mv88e6xxx.h
12261 F:      include/linux/platform_data/mv88e6xxx.h
12262
12263 MARVELL ARMADA 3700 PHY DRIVERS
12264 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12265 S:      Maintained
12266 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
12267 F:      Documentation/devicetree/bindings/phy/marvell,armada-3700-utmi-phy.yaml
12268 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
12269 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
12270
12271 MARVELL ARMADA 3700 SERIAL DRIVER
12272 M:      Pali Rohár <pali@kernel.org>
12273 S:      Maintained
12274 F:      Documentation/devicetree/bindings/clock/marvell,armada-3700-uart-clock.yaml
12275 F:      Documentation/devicetree/bindings/serial/mvebu-uart.txt
12276 F:      drivers/tty/serial/mvebu-uart.c
12277
12278 MARVELL ARMADA DRM SUPPORT
12279 M:      Russell King <linux@armlinux.org.uk>
12280 S:      Maintained
12281 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
12282 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
12283 F:      Documentation/devicetree/bindings/display/armada/
12284 F:      drivers/gpu/drm/armada/
12285 F:      include/uapi/drm/armada_drm.h
12286
12287 MARVELL CRYPTO DRIVER
12288 M:      Boris Brezillon <bbrezillon@kernel.org>
12289 M:      Arnaud Ebalard <arno@natisbad.org>
12290 M:      Srujana Challa <schalla@marvell.com>
12291 L:      linux-crypto@vger.kernel.org
12292 S:      Maintained
12293 F:      drivers/crypto/marvell/
12294 F:      include/linux/soc/marvell/octeontx2/
12295
12296 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
12297 M:      Mirko Lindner <mlindner@marvell.com>
12298 M:      Stephen Hemminger <stephen@networkplumber.org>
12299 L:      netdev@vger.kernel.org
12300 S:      Maintained
12301 F:      drivers/net/ethernet/marvell/sk*
12302
12303 MARVELL LIBERTAS WIRELESS DRIVER
12304 L:      libertas-dev@lists.infradead.org
12305 S:      Orphan
12306 F:      drivers/net/wireless/marvell/libertas/
12307
12308 MARVELL MACCHIATOBIN SUPPORT
12309 M:      Russell King <linux@armlinux.org.uk>
12310 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12311 S:      Maintained
12312 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
12313
12314 MARVELL MV643XX ETHERNET DRIVER
12315 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
12316 L:      netdev@vger.kernel.org
12317 S:      Maintained
12318 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
12319 F:      include/linux/mv643xx.h
12320
12321 MARVELL MV88X3310 PHY DRIVER
12322 M:      Russell King <linux@armlinux.org.uk>
12323 M:      Marek Behún <kabel@kernel.org>
12324 L:      netdev@vger.kernel.org
12325 S:      Maintained
12326 F:      drivers/net/phy/marvell10g.c
12327
12328 MARVELL MVEBU THERMAL DRIVER
12329 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12330 S:      Maintained
12331 F:      drivers/thermal/armada_thermal.c
12332
12333 MARVELL MVNETA ETHERNET DRIVER
12334 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
12335 L:      netdev@vger.kernel.org
12336 S:      Maintained
12337 F:      drivers/net/ethernet/marvell/mvneta.*
12338
12339 MARVELL MVPP2 ETHERNET DRIVER
12340 M:      Marcin Wojtas <mw@semihalf.com>
12341 M:      Russell King <linux@armlinux.org.uk>
12342 L:      netdev@vger.kernel.org
12343 S:      Maintained
12344 F:      Documentation/devicetree/bindings/net/marvell,pp2.yaml
12345 F:      drivers/net/ethernet/marvell/mvpp2/
12346
12347 MARVELL MWIFIEX WIRELESS DRIVER
12348 M:      Amitkumar Karwar <amitkarwar@gmail.com>
12349 M:      Ganapathi Bhat <ganapathi017@gmail.com>
12350 M:      Sharvari Harisangam <sharvari.harisangam@nxp.com>
12351 M:      Xinming Hu <huxinming820@gmail.com>
12352 L:      linux-wireless@vger.kernel.org
12353 S:      Maintained
12354 F:      drivers/net/wireless/marvell/mwifiex/
12355
12356 MARVELL MWL8K WIRELESS DRIVER
12357 M:      Lennert Buytenhek <buytenh@wantstofly.org>
12358 L:      linux-wireless@vger.kernel.org
12359 S:      Odd Fixes
12360 F:      drivers/net/wireless/marvell/mwl8k.c
12361
12362 MARVELL NAND CONTROLLER DRIVER
12363 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12364 L:      linux-mtd@lists.infradead.org
12365 S:      Maintained
12366 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
12367 F:      drivers/mtd/nand/raw/marvell_nand.c
12368
12369 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
12370 M:      Sunil Goutham <sgoutham@marvell.com>
12371 M:      Geetha sowjanya <gakula@marvell.com>
12372 M:      Subbaraya Sundeep <sbhatta@marvell.com>
12373 M:      hariprasad <hkelam@marvell.com>
12374 L:      netdev@vger.kernel.org
12375 S:      Supported
12376 F:      drivers/net/ethernet/marvell/octeontx2/nic/
12377 F:      include/linux/soc/marvell/octeontx2/
12378
12379 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
12380 M:      Sunil Goutham <sgoutham@marvell.com>
12381 M:      Linu Cherian <lcherian@marvell.com>
12382 M:      Geetha sowjanya <gakula@marvell.com>
12383 M:      Jerin Jacob <jerinj@marvell.com>
12384 M:      hariprasad <hkelam@marvell.com>
12385 M:      Subbaraya Sundeep <sbhatta@marvell.com>
12386 L:      netdev@vger.kernel.org
12387 S:      Supported
12388 F:      Documentation/networking/device_drivers/ethernet/marvell/octeontx2.rst
12389 F:      drivers/net/ethernet/marvell/octeontx2/af/
12390
12391 MARVELL PRESTERA ETHERNET SWITCH DRIVER
12392 M:      Taras Chornyi <taras.chornyi@plvision.eu>
12393 S:      Supported
12394 W:      https://github.com/Marvell-switching/switchdev-prestera
12395 F:      drivers/net/ethernet/marvell/prestera/
12396
12397 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
12398 M:      Nicolas Pitre <nico@fluxnic.net>
12399 S:      Odd Fixes
12400 F:      drivers/mmc/host/mvsdio.*
12401
12402 MARVELL USB MDIO CONTROLLER DRIVER
12403 M:      Tobias Waldekranz <tobias@waldekranz.com>
12404 L:      netdev@vger.kernel.org
12405 S:      Maintained
12406 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
12407 F:      drivers/net/mdio/mdio-mvusb.c
12408
12409 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
12410 M:      Hu Ziji <huziji@marvell.com>
12411 L:      linux-mmc@vger.kernel.org
12412 S:      Supported
12413 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.yaml
12414 F:      drivers/mmc/host/sdhci-xenon*
12415
12416 MARVELL OCTEON ENDPOINT DRIVER
12417 M:      Veerasenareddy Burru <vburru@marvell.com>
12418 M:      Abhijit Ayarekar <aayarekar@marvell.com>
12419 L:      netdev@vger.kernel.org
12420 S:      Supported
12421 F:      drivers/net/ethernet/marvell/octeon_ep
12422
12423 MATROX FRAMEBUFFER DRIVER
12424 L:      linux-fbdev@vger.kernel.org
12425 S:      Orphan
12426 F:      drivers/video/fbdev/matrox/matroxfb_*
12427 F:      include/uapi/linux/matroxfb.h
12428
12429 MAX15301 DRIVER
12430 M:      Daniel Nilsson <daniel.nilsson@flex.com>
12431 L:      linux-hwmon@vger.kernel.org
12432 S:      Maintained
12433 F:      Documentation/hwmon/max15301.rst
12434 F:      drivers/hwmon/pmbus/max15301.c
12435
12436 MAX16065 HARDWARE MONITOR DRIVER
12437 M:      Guenter Roeck <linux@roeck-us.net>
12438 L:      linux-hwmon@vger.kernel.org
12439 S:      Maintained
12440 F:      Documentation/hwmon/max16065.rst
12441 F:      drivers/hwmon/max16065.c
12442
12443 MAX2175 SDR TUNER DRIVER
12444 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
12445 L:      linux-media@vger.kernel.org
12446 S:      Maintained
12447 T:      git git://linuxtv.org/media_tree.git
12448 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
12449 F:      Documentation/userspace-api/media/drivers/max2175.rst
12450 F:      drivers/media/i2c/max2175*
12451 F:      include/uapi/linux/max2175.h
12452
12453 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
12454 L:      linux-hwmon@vger.kernel.org
12455 S:      Orphan
12456 F:      Documentation/hwmon/max6650.rst
12457 F:      drivers/hwmon/max6650.c
12458
12459 MAX6697 HARDWARE MONITOR DRIVER
12460 M:      Guenter Roeck <linux@roeck-us.net>
12461 L:      linux-hwmon@vger.kernel.org
12462 S:      Maintained
12463 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
12464 F:      Documentation/hwmon/max6697.rst
12465 F:      drivers/hwmon/max6697.c
12466 F:      include/linux/platform_data/max6697.h
12467
12468 MAX9286 QUAD GMSL DESERIALIZER DRIVER
12469 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
12470 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
12471 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
12472 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
12473 L:      linux-media@vger.kernel.org
12474 S:      Maintained
12475 F:      Documentation/devicetree/bindings/media/i2c/maxim,max9286.yaml
12476 F:      drivers/media/i2c/max9286.c
12477
12478 MAX96712 QUAD GMSL2 DESERIALIZER DRIVER
12479 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
12480 L:      linux-media@vger.kernel.org
12481 S:      Maintained
12482 F:      drivers/staging/media/max96712/max96712.c
12483
12484 MAX9860 MONO AUDIO VOICE CODEC DRIVER
12485 M:      Peter Rosin <peda@axentia.se>
12486 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12487 S:      Maintained
12488 F:      Documentation/devicetree/bindings/sound/max9860.txt
12489 F:      sound/soc/codecs/max9860.*
12490
12491 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
12492 M:      Andreas Klinger <ak@it-klinger.de>
12493 L:      linux-iio@vger.kernel.org
12494 S:      Maintained
12495 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
12496 F:      drivers/iio/proximity/mb1232.c
12497
12498 MAXIM MAX11205 DRIVER
12499 M:      Ramona Bolboaca <ramona.bolboaca@analog.com>
12500 L:      linux-iio@vger.kernel.org
12501 S:      Supported
12502 W:      https://ez.analog.com/linux-software-drivers
12503 F:      Documentation/devicetree/bindings/iio/adc/maxim,max11205.yaml
12504 F:      drivers/iio/adc/max11205.c
12505
12506 MAXIM MAX17040 FAMILY FUEL GAUGE DRIVERS
12507 R:      Iskren Chernev <iskren.chernev@gmail.com>
12508 R:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12509 R:      Marek Szyprowski <m.szyprowski@samsung.com>
12510 R:      Matheus Castello <matheus@castello.eng.br>
12511 L:      linux-pm@vger.kernel.org
12512 S:      Maintained
12513 F:      Documentation/devicetree/bindings/power/supply/maxim,max17040.yaml
12514 F:      drivers/power/supply/max17040_battery.c
12515
12516 MAXIM MAX17042 FAMILY FUEL GAUGE DRIVERS
12517 R:      Hans de Goede <hdegoede@redhat.com>
12518 R:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12519 R:      Marek Szyprowski <m.szyprowski@samsung.com>
12520 R:      Sebastian Krzyszkowiak <sebastian.krzyszkowiak@puri.sm>
12521 R:      Purism Kernel Team <kernel@puri.sm>
12522 L:      linux-pm@vger.kernel.org
12523 S:      Maintained
12524 F:      Documentation/devicetree/bindings/power/supply/maxim,max17042.yaml
12525 F:      drivers/power/supply/max17042_battery.c
12526
12527 MAXIM MAX20086 CAMERA POWER PROTECTOR DRIVER
12528 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12529 L:      linux-kernel@vger.kernel.org
12530 S:      Maintained
12531 F:      Documentation/devicetree/bindings/regulator/maxim,max20086.yaml
12532 F:      drivers/regulator/max20086-regulator.c
12533
12534 MAXIM MAX30208 TEMPERATURE SENSOR DRIVER
12535 M:      Rajat Khandelwal <rajat.khandelwal@linux.intel.com>
12536 L:      linux-iio@vger.kernel.org
12537 S:      Maintained
12538 F:      drivers/iio/temperature/max30208.c
12539
12540 MAXIM MAX77650 PMIC MFD DRIVER
12541 M:      Bartosz Golaszewski <brgl@bgdev.pl>
12542 L:      linux-kernel@vger.kernel.org
12543 S:      Maintained
12544 F:      Documentation/devicetree/bindings/*/*max77650.yaml
12545 F:      Documentation/devicetree/bindings/*/max77650*.yaml
12546 F:      drivers/gpio/gpio-max77650.c
12547 F:      drivers/input/misc/max77650-onkey.c
12548 F:      drivers/leds/leds-max77650.c
12549 F:      drivers/mfd/max77650.c
12550 F:      drivers/power/supply/max77650-charger.c
12551 F:      drivers/regulator/max77650-regulator.c
12552 F:      include/linux/mfd/max77650.h
12553
12554 MAXIM MAX77714 PMIC MFD DRIVER
12555 M:      Luca Ceresoli <luca@lucaceresoli.net>
12556 S:      Maintained
12557 F:      Documentation/devicetree/bindings/mfd/maxim,max77714.yaml
12558 F:      drivers/mfd/max77714.c
12559 F:      include/linux/mfd/max77714.h
12560
12561 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
12562 M:      Javier Martinez Canillas <javier@dowhile0.org>
12563 L:      linux-kernel@vger.kernel.org
12564 S:      Supported
12565 F:      Documentation/devicetree/bindings/*/*max77802.yaml
12566 F:      drivers/regulator/max77802-regulator.c
12567 F:      include/dt-bindings/*/*max77802.h
12568
12569 MAXIM MAX77976 BATTERY CHARGER
12570 M:      Luca Ceresoli <luca@lucaceresoli.net>
12571 S:      Supported
12572 F:      Documentation/devicetree/bindings/power/supply/maxim,max77976.yaml
12573 F:      drivers/power/supply/max77976_charger.c
12574
12575 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
12576 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12577 L:      linux-pm@vger.kernel.org
12578 S:      Supported
12579 B:      mailto:linux-samsung-soc@vger.kernel.org
12580 F:      Documentation/devicetree/bindings/power/supply/maxim,max14577.yaml
12581 F:      Documentation/devicetree/bindings/power/supply/maxim,max77693.yaml
12582 F:      drivers/power/supply/max14577_charger.c
12583 F:      drivers/power/supply/max77693_charger.c
12584
12585 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
12586 M:      Chanwoo Choi <cw00.choi@samsung.com>
12587 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12588 L:      linux-kernel@vger.kernel.org
12589 S:      Supported
12590 B:      mailto:linux-samsung-soc@vger.kernel.org
12591 F:      Documentation/devicetree/bindings/*/maxim,max14577.yaml
12592 F:      Documentation/devicetree/bindings/*/maxim,max77686.yaml
12593 F:      Documentation/devicetree/bindings/*/maxim,max77693.yaml
12594 F:      Documentation/devicetree/bindings/*/maxim,max77843.yaml
12595 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
12596 F:      drivers/*/*max77843.c
12597 F:      drivers/*/max14577*.c
12598 F:      drivers/*/max77686*.c
12599 F:      drivers/*/max77693*.c
12600 F:      drivers/clk/clk-max77686.c
12601 F:      drivers/extcon/extcon-max14577.c
12602 F:      drivers/extcon/extcon-max77693.c
12603 F:      drivers/rtc/rtc-max77686.c
12604 F:      include/linux/mfd/max14577*.h
12605 F:      include/linux/mfd/max77686*.h
12606 F:      include/linux/mfd/max77693*.h
12607
12608 MAXIRADIO FM RADIO RECEIVER DRIVER
12609 M:      Hans Verkuil <hverkuil@xs4all.nl>
12610 L:      linux-media@vger.kernel.org
12611 S:      Maintained
12612 W:      https://linuxtv.org
12613 T:      git git://linuxtv.org/media_tree.git
12614 F:      drivers/media/radio/radio-maxiradio*
12615
12616 MAXLINEAR ETHERNET PHY DRIVER
12617 M:      Xu Liang <lxu@maxlinear.com>
12618 L:      netdev@vger.kernel.org
12619 S:      Supported
12620 F:      drivers/net/phy/mxl-gpy.c
12621
12622 MCBA MICROCHIP CAN BUS ANALYZER TOOL DRIVER
12623 R:      Yasushi SHOJI <yashi@spacecubics.com>
12624 L:      linux-can@vger.kernel.org
12625 S:      Maintained
12626 F:      drivers/net/can/usb/mcba_usb.c
12627
12628 MCAN MMIO DEVICE DRIVER
12629 M:      Chandrasekar Ramakrishnan <rcsekar@samsung.com>
12630 L:      linux-can@vger.kernel.org
12631 S:      Maintained
12632 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
12633 F:      drivers/net/can/m_can/m_can.c
12634 F:      drivers/net/can/m_can/m_can.h
12635 F:      drivers/net/can/m_can/m_can_platform.c
12636
12637 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
12638 M:      Rishi Gupta <gupt21@gmail.com>
12639 L:      linux-i2c@vger.kernel.org
12640 L:      linux-input@vger.kernel.org
12641 S:      Maintained
12642 F:      drivers/hid/hid-mcp2221.c
12643
12644 MCP251XFD SPI-CAN NETWORK DRIVER
12645 M:      Marc Kleine-Budde <mkl@pengutronix.de>
12646 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
12647 R:      Thomas Kopp <thomas.kopp@microchip.com>
12648 L:      linux-can@vger.kernel.org
12649 S:      Maintained
12650 F:      Documentation/devicetree/bindings/net/can/microchip,mcp251xfd.yaml
12651 F:      drivers/net/can/spi/mcp251xfd/
12652
12653 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
12654 M:      Peter Rosin <peda@axentia.se>
12655 L:      linux-iio@vger.kernel.org
12656 S:      Maintained
12657 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
12658 F:      drivers/iio/potentiometer/mcp4018.c
12659 F:      drivers/iio/potentiometer/mcp4531.c
12660
12661 MCR20A IEEE-802.15.4 RADIO DRIVER
12662 M:      Xue Liu <liuxuenetmail@gmail.com>
12663 L:      linux-wpan@vger.kernel.org
12664 S:      Maintained
12665 W:      https://github.com/xueliu/mcr20a-linux
12666 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
12667 F:      drivers/net/ieee802154/mcr20a.c
12668 F:      drivers/net/ieee802154/mcr20a.h
12669
12670 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
12671 M:      William Breathitt Gray <william.gray@linaro.org>
12672 L:      linux-iio@vger.kernel.org
12673 S:      Maintained
12674 F:      drivers/iio/dac/cio-dac.c
12675
12676 MEDIA CONTROLLER FRAMEWORK
12677 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
12678 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12679 L:      linux-media@vger.kernel.org
12680 S:      Supported
12681 W:      https://www.linuxtv.org
12682 T:      git git://linuxtv.org/media_tree.git
12683 F:      drivers/media/mc/
12684 F:      include/media/media-*.h
12685 F:      include/uapi/linux/media.h
12686
12687 MEDIA DRIVER FOR FREESCALE IMX PXP
12688 M:      Philipp Zabel <p.zabel@pengutronix.de>
12689 L:      linux-media@vger.kernel.org
12690 S:      Maintained
12691 T:      git git://linuxtv.org/media_tree.git
12692 F:      drivers/media/platform/nxp/imx-pxp.[ch]
12693
12694 MEDIA DRIVERS FOR ASCOT2E
12695 M:      Sergey Kozlov <serjk@netup.ru>
12696 M:      Abylay Ospan <aospan@netup.ru>
12697 L:      linux-media@vger.kernel.org
12698 S:      Supported
12699 W:      https://linuxtv.org
12700 W:      http://netup.tv/
12701 T:      git git://linuxtv.org/media_tree.git
12702 F:      drivers/media/dvb-frontends/ascot2e*
12703
12704 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
12705 M:      Jasmin Jessich <jasmin@anw.at>
12706 L:      linux-media@vger.kernel.org
12707 S:      Maintained
12708 W:      https://linuxtv.org
12709 T:      git git://linuxtv.org/media_tree.git
12710 F:      drivers/media/dvb-frontends/cxd2099*
12711
12712 MEDIA DRIVERS FOR CXD2841ER
12713 M:      Sergey Kozlov <serjk@netup.ru>
12714 M:      Abylay Ospan <aospan@netup.ru>
12715 L:      linux-media@vger.kernel.org
12716 S:      Supported
12717 W:      https://linuxtv.org
12718 W:      http://netup.tv/
12719 T:      git git://linuxtv.org/media_tree.git
12720 F:      drivers/media/dvb-frontends/cxd2841er*
12721
12722 MEDIA DRIVERS FOR CXD2880
12723 M:      Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
12724 L:      linux-media@vger.kernel.org
12725 S:      Supported
12726 W:      http://linuxtv.org/
12727 T:      git git://linuxtv.org/media_tree.git
12728 F:      drivers/media/dvb-frontends/cxd2880/*
12729 F:      drivers/media/spi/cxd2880*
12730
12731 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
12732 L:      linux-media@vger.kernel.org
12733 S:      Orphan
12734 W:      https://linuxtv.org
12735 T:      git git://linuxtv.org/media_tree.git
12736 F:      drivers/media/pci/ddbridge/*
12737
12738 MEDIA DRIVERS FOR FREESCALE IMX
12739 M:      Steve Longerbeam <slongerbeam@gmail.com>
12740 M:      Philipp Zabel <p.zabel@pengutronix.de>
12741 L:      linux-media@vger.kernel.org
12742 S:      Maintained
12743 T:      git git://linuxtv.org/media_tree.git
12744 F:      Documentation/admin-guide/media/imx.rst
12745 F:      Documentation/devicetree/bindings/media/imx.txt
12746 F:      drivers/staging/media/imx/
12747 F:      include/linux/imx-media.h
12748 F:      include/media/imx.h
12749
12750 MEDIA DRIVERS FOR FREESCALE IMX7
12751 M:      Rui Miguel Silva <rmfrfs@gmail.com>
12752 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12753 L:      linux-media@vger.kernel.org
12754 S:      Maintained
12755 T:      git git://linuxtv.org/media_tree.git
12756 F:      Documentation/admin-guide/media/imx7.rst
12757 F:      Documentation/devicetree/bindings/media/nxp,imx-mipi-csi2.yaml
12758 F:      Documentation/devicetree/bindings/media/nxp,imx7-csi.yaml
12759 F:      drivers/media/platform/nxp/imx-mipi-csis.c
12760 F:      drivers/media/platform/nxp/imx7-media-csi.c
12761
12762 MEDIA DRIVERS FOR HELENE
12763 M:      Abylay Ospan <aospan@netup.ru>
12764 L:      linux-media@vger.kernel.org
12765 S:      Supported
12766 W:      https://linuxtv.org
12767 W:      http://netup.tv/
12768 T:      git git://linuxtv.org/media_tree.git
12769 F:      drivers/media/dvb-frontends/helene*
12770
12771 MEDIA DRIVERS FOR HORUS3A
12772 M:      Sergey Kozlov <serjk@netup.ru>
12773 M:      Abylay Ospan <aospan@netup.ru>
12774 L:      linux-media@vger.kernel.org
12775 S:      Supported
12776 W:      https://linuxtv.org
12777 W:      http://netup.tv/
12778 T:      git git://linuxtv.org/media_tree.git
12779 F:      drivers/media/dvb-frontends/horus3a*
12780
12781 MEDIA DRIVERS FOR LNBH25
12782 M:      Sergey Kozlov <serjk@netup.ru>
12783 M:      Abylay Ospan <aospan@netup.ru>
12784 L:      linux-media@vger.kernel.org
12785 S:      Supported
12786 W:      https://linuxtv.org
12787 W:      http://netup.tv/
12788 T:      git git://linuxtv.org/media_tree.git
12789 F:      drivers/media/dvb-frontends/lnbh25*
12790
12791 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
12792 L:      linux-media@vger.kernel.org
12793 S:      Orphan
12794 W:      https://linuxtv.org
12795 T:      git git://linuxtv.org/media_tree.git
12796 F:      drivers/media/dvb-frontends/mxl5xx*
12797
12798 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
12799 M:      Sergey Kozlov <serjk@netup.ru>
12800 M:      Abylay Ospan <aospan@netup.ru>
12801 L:      linux-media@vger.kernel.org
12802 S:      Supported
12803 W:      https://linuxtv.org
12804 W:      http://netup.tv/
12805 T:      git git://linuxtv.org/media_tree.git
12806 F:      drivers/media/pci/netup_unidvb/*
12807
12808 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
12809 M:      Dmitry Osipenko <digetx@gmail.com>
12810 L:      linux-media@vger.kernel.org
12811 L:      linux-tegra@vger.kernel.org
12812 S:      Maintained
12813 T:      git git://linuxtv.org/media_tree.git
12814 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.yaml
12815 F:      drivers/media/platform/nvidia/tegra-vde/
12816
12817 MEDIA DRIVERS FOR RENESAS - CEU
12818 M:      Jacopo Mondi <jacopo@jmondi.org>
12819 L:      linux-media@vger.kernel.org
12820 L:      linux-renesas-soc@vger.kernel.org
12821 S:      Supported
12822 T:      git git://linuxtv.org/media_tree.git
12823 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
12824 F:      drivers/media/platform/renesas/renesas-ceu.c
12825 F:      include/media/drv-intf/renesas-ceu.h
12826
12827 MEDIA DRIVERS FOR RENESAS - DRIF
12828 M:      Fabrizio Castro <fabrizio.castro.jz@renesas.com>
12829 L:      linux-media@vger.kernel.org
12830 L:      linux-renesas-soc@vger.kernel.org
12831 S:      Supported
12832 T:      git git://linuxtv.org/media_tree.git
12833 F:      Documentation/devicetree/bindings/media/renesas,drif.yaml
12834 F:      drivers/media/platform/renesas/rcar_drif.c
12835
12836 MEDIA DRIVERS FOR RENESAS - FCP
12837 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12838 L:      linux-media@vger.kernel.org
12839 L:      linux-renesas-soc@vger.kernel.org
12840 S:      Supported
12841 T:      git git://linuxtv.org/media_tree.git
12842 F:      Documentation/devicetree/bindings/media/renesas,fcp.yaml
12843 F:      drivers/media/platform/renesas/rcar-fcp.c
12844 F:      include/media/rcar-fcp.h
12845
12846 MEDIA DRIVERS FOR RENESAS - FDP1
12847 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
12848 L:      linux-media@vger.kernel.org
12849 L:      linux-renesas-soc@vger.kernel.org
12850 S:      Supported
12851 T:      git git://linuxtv.org/media_tree.git
12852 F:      Documentation/devicetree/bindings/media/renesas,fdp1.yaml
12853 F:      drivers/media/platform/renesas/rcar_fdp1.c
12854
12855 MEDIA DRIVERS FOR RENESAS - VIN
12856 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
12857 L:      linux-media@vger.kernel.org
12858 L:      linux-renesas-soc@vger.kernel.org
12859 S:      Supported
12860 T:      git git://linuxtv.org/media_tree.git
12861 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
12862 F:      Documentation/devicetree/bindings/media/renesas,isp.yaml
12863 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
12864 F:      drivers/media/platform/renesas/rcar-isp.c
12865 F:      drivers/media/platform/renesas/rcar-vin/
12866
12867 MEDIA DRIVERS FOR RENESAS - VSP1
12868 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12869 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
12870 L:      linux-media@vger.kernel.org
12871 L:      linux-renesas-soc@vger.kernel.org
12872 S:      Supported
12873 T:      git git://linuxtv.org/media_tree.git
12874 F:      Documentation/devicetree/bindings/media/renesas,vsp1.yaml
12875 F:      drivers/media/platform/renesas/vsp1/
12876
12877 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
12878 L:      linux-media@vger.kernel.org
12879 S:      Orphan
12880 W:      https://linuxtv.org
12881 T:      git git://linuxtv.org/media_tree.git
12882 F:      drivers/media/dvb-frontends/stv0910*
12883
12884 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
12885 L:      linux-media@vger.kernel.org
12886 S:      Orphan
12887 W:      https://linuxtv.org
12888 T:      git git://linuxtv.org/media_tree.git
12889 F:      drivers/media/dvb-frontends/stv6111*
12890
12891 MEDIA DRIVERS FOR STM32 - DCMI
12892 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
12893 L:      linux-media@vger.kernel.org
12894 S:      Supported
12895 T:      git git://linuxtv.org/media_tree.git
12896 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
12897 F:      drivers/media/platform/st/stm32/stm32-dcmi.c
12898
12899 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
12900 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
12901 L:      linux-media@vger.kernel.org
12902 S:      Maintained
12903 W:      https://linuxtv.org
12904 Q:      http://patchwork.kernel.org/project/linux-media/list/
12905 T:      git git://linuxtv.org/media_tree.git
12906 F:      Documentation/admin-guide/media/
12907 F:      Documentation/devicetree/bindings/media/
12908 F:      Documentation/driver-api/media/
12909 F:      Documentation/userspace-api/media/
12910 F:      drivers/media/
12911 F:      drivers/staging/media/
12912 F:      include/dt-bindings/media/
12913 F:      include/linux/platform_data/media/
12914 F:      include/media/
12915 F:      include/uapi/linux/dvb/
12916 F:      include/uapi/linux/ivtv*
12917 F:      include/uapi/linux/media.h
12918 F:      include/uapi/linux/meye.h
12919 F:      include/uapi/linux/uvcvideo.h
12920 F:      include/uapi/linux/v4l2-*
12921 F:      include/uapi/linux/videodev2.h
12922
12923 MEDIATEK BLUETOOTH DRIVER
12924 M:      Sean Wang <sean.wang@mediatek.com>
12925 L:      linux-bluetooth@vger.kernel.org
12926 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12927 S:      Maintained
12928 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
12929 F:      drivers/bluetooth/btmtkuart.c
12930
12931 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
12932 M:      Sean Wang <sean.wang@mediatek.com>
12933 L:      linux-pm@vger.kernel.org
12934 S:      Maintained
12935 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
12936 F:      drivers/power/reset/mt6323-poweroff.c
12937
12938 MEDIATEK CIR DRIVER
12939 M:      Sean Wang <sean.wang@mediatek.com>
12940 S:      Maintained
12941 F:      drivers/media/rc/mtk-cir.c
12942
12943 MEDIATEK DMA DRIVER
12944 M:      Sean Wang <sean.wang@mediatek.com>
12945 L:      dmaengine@vger.kernel.org
12946 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12947 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12948 S:      Maintained
12949 F:      Documentation/devicetree/bindings/dma/mtk-*
12950 F:      drivers/dma/mediatek/
12951
12952 MEDIATEK ETHERNET DRIVER
12953 M:      Felix Fietkau <nbd@nbd.name>
12954 M:      John Crispin <john@phrozen.org>
12955 M:      Sean Wang <sean.wang@mediatek.com>
12956 M:      Mark Lee <Mark-MC.Lee@mediatek.com>
12957 M:      Lorenzo Bianconi <lorenzo@kernel.org>
12958 L:      netdev@vger.kernel.org
12959 S:      Maintained
12960 F:      drivers/net/ethernet/mediatek/
12961
12962 MEDIATEK I2C CONTROLLER DRIVER
12963 M:      Qii Wang <qii.wang@mediatek.com>
12964 L:      linux-i2c@vger.kernel.org
12965 S:      Maintained
12966 F:      Documentation/devicetree/bindings/i2c/i2c-mt65xx.yaml
12967 F:      drivers/i2c/busses/i2c-mt65xx.c
12968
12969 MEDIATEK IOMMU DRIVER
12970 M:      Yong Wu <yong.wu@mediatek.com>
12971 L:      iommu@lists.linux.dev
12972 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12973 S:      Supported
12974 F:      Documentation/devicetree/bindings/iommu/mediatek*
12975 F:      drivers/iommu/mtk_iommu*
12976 F:      include/dt-bindings/memory/mt*-port.h
12977
12978 MEDIATEK JPEG DRIVER
12979 M:      Bin Liu <bin.liu@mediatek.com>
12980 S:      Supported
12981 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-*.yaml
12982 F:      drivers/media/platform/mediatek/jpeg/
12983
12984 MEDIATEK KEYPAD DRIVER
12985 M:      Mattijs Korpershoek <mkorpershoek@baylibre.com>
12986 S:      Supported
12987 F:      Documentation/devicetree/bindings/input/mediatek,mt6779-keypad.yaml
12988 F:      drivers/input/keyboard/mt6779-keypad.c
12989
12990 MEDIATEK MDP DRIVER
12991 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
12992 M:      Houlong Wei <houlong.wei@mediatek.com>
12993 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
12994 S:      Supported
12995 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
12996 F:      drivers/media/platform/mediatek/mdp/
12997 F:      drivers/media/platform/mediatek/vpu/
12998
12999 MEDIATEK MEDIA DRIVER
13000 M:      Tiffany Lin <tiffany.lin@mediatek.com>
13001 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
13002 M:      Yunfei Dong <yunfei.dong@mediatek.com>
13003 S:      Supported
13004 F:      Documentation/devicetree/bindings/media/mediatek,vcodec*.yaml
13005 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
13006 F:      drivers/media/platform/mediatek/vcodec/
13007 F:      drivers/media/platform/mediatek/vpu/
13008
13009 MEDIATEK MMC/SD/SDIO DRIVER
13010 M:      Chaotian Jing <chaotian.jing@mediatek.com>
13011 S:      Maintained
13012 F:      Documentation/devicetree/bindings/mmc/mtk-sd.yaml
13013 F:      drivers/mmc/host/mtk-sd.c
13014
13015 MEDIATEK MT76 WIRELESS LAN DRIVER
13016 M:      Felix Fietkau <nbd@nbd.name>
13017 M:      Lorenzo Bianconi <lorenzo@kernel.org>
13018 M:      Ryder Lee <ryder.lee@mediatek.com>
13019 R:      Shayne Chen <shayne.chen@mediatek.com>
13020 R:      Sean Wang <sean.wang@mediatek.com>
13021 L:      linux-wireless@vger.kernel.org
13022 S:      Maintained
13023 F:      Documentation/devicetree/bindings/net/wireless/mediatek,mt76.yaml
13024 F:      drivers/net/wireless/mediatek/mt76/
13025
13026 MEDIATEK MT7601U WIRELESS LAN DRIVER
13027 M:      Jakub Kicinski <kuba@kernel.org>
13028 L:      linux-wireless@vger.kernel.org
13029 S:      Maintained
13030 F:      drivers/net/wireless/mediatek/mt7601u/
13031
13032 MEDIATEK MT7621 CLOCK DRIVER
13033 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
13034 S:      Maintained
13035 F:      Documentation/devicetree/bindings/clock/mediatek,mt7621-sysc.yaml
13036 F:      drivers/clk/ralink/clk-mt7621.c
13037
13038 MEDIATEK MT7621/28/88 I2C DRIVER
13039 M:      Stefan Roese <sr@denx.de>
13040 L:      linux-i2c@vger.kernel.org
13041 S:      Maintained
13042 F:      Documentation/devicetree/bindings/i2c/mediatek,mt7621-i2c.yaml
13043 F:      drivers/i2c/busses/i2c-mt7621.c
13044
13045 MEDIATEK MT7621 PCIE CONTROLLER DRIVER
13046 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
13047 S:      Maintained
13048 F:      Documentation/devicetree/bindings/pci/mediatek,mt7621-pcie.yaml
13049 F:      drivers/pci/controller/pcie-mt7621.c
13050
13051 MEDIATEK MT7621 PHY PCI DRIVER
13052 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
13053 S:      Maintained
13054 F:      Documentation/devicetree/bindings/phy/mediatek,mt7621-pci-phy.yaml
13055 F:      drivers/phy/ralink/phy-mt7621-pci.c
13056
13057 MEDIATEK NAND CONTROLLER DRIVER
13058 L:      linux-mtd@lists.infradead.org
13059 S:      Orphan
13060 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
13061 F:      drivers/mtd/nand/raw/mtk_*
13062
13063 MEDIATEK PMIC LED DRIVER
13064 M:      Sean Wang <sean.wang@mediatek.com>
13065 S:      Maintained
13066 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
13067 F:      drivers/leds/leds-mt6323.c
13068
13069 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
13070 M:      Sean Wang <sean.wang@mediatek.com>
13071 S:      Maintained
13072 F:      drivers/char/hw_random/mtk-rng.c
13073
13074 MEDIATEK SMI DRIVER
13075 M:      Yong Wu <yong.wu@mediatek.com>
13076 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
13077 S:      Supported
13078 F:      Documentation/devicetree/bindings/memory-controllers/mediatek,smi*
13079 F:      drivers/memory/mtk-smi.c
13080 F:      include/soc/mediatek/smi.h
13081
13082 MEDIATEK SWITCH DRIVER
13083 M:      Sean Wang <sean.wang@mediatek.com>
13084 M:      Landen Chao <Landen.Chao@mediatek.com>
13085 M:      DENG Qingfang <dqfext@gmail.com>
13086 L:      netdev@vger.kernel.org
13087 S:      Maintained
13088 F:      drivers/net/dsa/mt7530.*
13089 F:      net/dsa/tag_mtk.c
13090
13091 MEDIATEK T7XX 5G WWAN MODEM DRIVER
13092 M:      Chandrashekar Devegowda <chandrashekar.devegowda@intel.com>
13093 M:      Intel Corporation <linuxwwan@intel.com>
13094 R:      Chiranjeevi Rapolu <chiranjeevi.rapolu@linux.intel.com>
13095 R:      Liu Haijun <haijun.liu@mediatek.com>
13096 R:      M Chetan Kumar <m.chetan.kumar@linux.intel.com>
13097 R:      Ricardo Martinez <ricardo.martinez@linux.intel.com>
13098 L:      netdev@vger.kernel.org
13099 S:      Supported
13100 F:      drivers/net/wwan/t7xx/
13101
13102 MEDIATEK USB3 DRD IP DRIVER
13103 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
13104 L:      linux-usb@vger.kernel.org
13105 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13106 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
13107 S:      Maintained
13108 F:      Documentation/devicetree/bindings/usb/mediatek,*
13109 F:      drivers/usb/host/xhci-mtk*
13110 F:      drivers/usb/mtu3/
13111
13112 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
13113 M:      Peter Senna Tschudin <peter.senna@gmail.com>
13114 M:      Martin Donnelly <martin.donnelly@ge.com>
13115 M:      Martyn Welch <martyn.welch@collabora.co.uk>
13116 S:      Maintained
13117 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
13118 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
13119
13120 MEGARAID SCSI/SAS DRIVERS
13121 M:      Kashyap Desai <kashyap.desai@broadcom.com>
13122 M:      Sumit Saxena <sumit.saxena@broadcom.com>
13123 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
13124 L:      megaraidlinux.pdl@broadcom.com
13125 L:      linux-scsi@vger.kernel.org
13126 S:      Maintained
13127 W:      http://www.avagotech.com/support/
13128 F:      Documentation/scsi/megaraid.rst
13129 F:      drivers/scsi/megaraid.*
13130 F:      drivers/scsi/megaraid/
13131
13132 MELEXIS MLX90614 DRIVER
13133 M:      Crt Mori <cmo@melexis.com>
13134 L:      linux-iio@vger.kernel.org
13135 S:      Supported
13136 W:      http://www.melexis.com
13137 F:      drivers/iio/temperature/mlx90614.c
13138
13139 MELEXIS MLX90632 DRIVER
13140 M:      Crt Mori <cmo@melexis.com>
13141 L:      linux-iio@vger.kernel.org
13142 S:      Supported
13143 W:      http://www.melexis.com
13144 F:      drivers/iio/temperature/mlx90632.c
13145
13146 MELFAS MIP4 TOUCHSCREEN DRIVER
13147 M:      Sangwon Jee <jeesw@melfas.com>
13148 S:      Supported
13149 W:      http://www.melfas.com
13150 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
13151 F:      drivers/input/touchscreen/melfas_mip4.c
13152
13153 MELLANOX BLUEFIELD I2C DRIVER
13154 M:      Khalil Blaiech <kblaiech@nvidia.com>
13155 M:      Asmaa Mnebhi <asmaa@nvidia.com>
13156 L:      linux-i2c@vger.kernel.org
13157 S:      Supported
13158 F:      drivers/i2c/busses/i2c-mlxbf.c
13159
13160 MELLANOX ETHERNET DRIVER (mlx4_en)
13161 M:      Tariq Toukan <tariqt@nvidia.com>
13162 L:      netdev@vger.kernel.org
13163 S:      Supported
13164 W:      http://www.mellanox.com
13165 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13166 F:      drivers/net/ethernet/mellanox/mlx4/en_*
13167
13168 MELLANOX ETHERNET DRIVER (mlx5e)
13169 M:      Saeed Mahameed <saeedm@nvidia.com>
13170 L:      netdev@vger.kernel.org
13171 S:      Supported
13172 W:      http://www.mellanox.com
13173 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13174 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
13175
13176 MELLANOX ETHERNET INNOVA DRIVERS
13177 R:      Boris Pismenny <borisp@nvidia.com>
13178 L:      netdev@vger.kernel.org
13179 S:      Supported
13180 W:      http://www.mellanox.com
13181 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13182 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
13183 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
13184 F:      include/linux/mlx5/mlx5_ifc_fpga.h
13185
13186 MELLANOX ETHERNET SWITCH DRIVERS
13187 M:      Ido Schimmel <idosch@nvidia.com>
13188 M:      Petr Machata <petrm@nvidia.com>
13189 L:      netdev@vger.kernel.org
13190 S:      Supported
13191 W:      http://www.mellanox.com
13192 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13193 F:      drivers/net/ethernet/mellanox/mlxsw/
13194 F:      tools/testing/selftests/drivers/net/mlxsw/
13195
13196 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
13197 M:      mlxsw@nvidia.com
13198 L:      netdev@vger.kernel.org
13199 S:      Supported
13200 W:      http://www.mellanox.com
13201 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13202 F:      drivers/net/ethernet/mellanox/mlxfw/
13203
13204 MELLANOX HARDWARE PLATFORM SUPPORT
13205 M:      Hans de Goede <hdegoede@redhat.com>
13206 M:      Mark Gross <markgross@kernel.org>
13207 M:      Vadim Pasternak <vadimp@nvidia.com>
13208 L:      platform-driver-x86@vger.kernel.org
13209 S:      Supported
13210 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
13211 F:      drivers/platform/mellanox/
13212 F:      include/linux/platform_data/mlxreg.h
13213
13214 MELLANOX MLX4 core VPI driver
13215 M:      Tariq Toukan <tariqt@nvidia.com>
13216 L:      netdev@vger.kernel.org
13217 L:      linux-rdma@vger.kernel.org
13218 S:      Supported
13219 W:      http://www.mellanox.com
13220 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13221 F:      drivers/net/ethernet/mellanox/mlx4/
13222 F:      include/linux/mlx4/
13223
13224 MELLANOX MLX4 IB driver
13225 M:      Yishai Hadas <yishaih@nvidia.com>
13226 L:      linux-rdma@vger.kernel.org
13227 S:      Supported
13228 W:      http://www.mellanox.com
13229 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
13230 F:      drivers/infiniband/hw/mlx4/
13231 F:      include/linux/mlx4/
13232 F:      include/uapi/rdma/mlx4-abi.h
13233
13234 MELLANOX MLX5 core VPI driver
13235 M:      Saeed Mahameed <saeedm@nvidia.com>
13236 M:      Leon Romanovsky <leonro@nvidia.com>
13237 L:      netdev@vger.kernel.org
13238 L:      linux-rdma@vger.kernel.org
13239 S:      Supported
13240 W:      http://www.mellanox.com
13241 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13242 F:      Documentation/networking/device_drivers/ethernet/mellanox/
13243 F:      drivers/net/ethernet/mellanox/mlx5/core/
13244 F:      include/linux/mlx5/
13245
13246 MELLANOX MLX5 IB driver
13247 M:      Leon Romanovsky <leonro@nvidia.com>
13248 L:      linux-rdma@vger.kernel.org
13249 S:      Supported
13250 W:      http://www.mellanox.com
13251 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
13252 F:      drivers/infiniband/hw/mlx5/
13253 F:      include/linux/mlx5/
13254 F:      include/uapi/rdma/mlx5-abi.h
13255
13256 MELLANOX MLXCPLD I2C AND MUX DRIVER
13257 M:      Vadim Pasternak <vadimp@nvidia.com>
13258 M:      Michael Shych <michaelsh@nvidia.com>
13259 L:      linux-i2c@vger.kernel.org
13260 S:      Supported
13261 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
13262 F:      drivers/i2c/busses/i2c-mlxcpld.c
13263 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
13264
13265 MELLANOX MLXCPLD LED DRIVER
13266 M:      Vadim Pasternak <vadimp@nvidia.com>
13267 L:      linux-leds@vger.kernel.org
13268 S:      Supported
13269 F:      Documentation/leds/leds-mlxcpld.rst
13270 F:      drivers/leds/leds-mlxcpld.c
13271 F:      drivers/leds/leds-mlxreg.c
13272
13273 MELLANOX PLATFORM DRIVER
13274 M:      Vadim Pasternak <vadimp@nvidia.com>
13275 L:      platform-driver-x86@vger.kernel.org
13276 S:      Supported
13277 F:      drivers/platform/x86/mlx-platform.c
13278
13279 MEMBARRIER SUPPORT
13280 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
13281 M:      "Paul E. McKenney" <paulmck@kernel.org>
13282 L:      linux-kernel@vger.kernel.org
13283 S:      Supported
13284 F:      arch/powerpc/include/asm/membarrier.h
13285 F:      include/uapi/linux/membarrier.h
13286 F:      kernel/sched/membarrier.c
13287
13288 MEMBLOCK
13289 M:      Mike Rapoport <rppt@kernel.org>
13290 L:      linux-mm@kvack.org
13291 S:      Maintained
13292 F:      Documentation/core-api/boot-time-mm.rst
13293 F:      include/linux/memblock.h
13294 F:      mm/memblock.c
13295 F:      tools/testing/memblock/
13296
13297 MEMORY CONTROLLER DRIVERS
13298 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
13299 L:      linux-kernel@vger.kernel.org
13300 S:      Maintained
13301 B:      mailto:krzysztof.kozlowski@linaro.org
13302 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git
13303 F:      Documentation/devicetree/bindings/memory-controllers/
13304 F:      drivers/memory/
13305 F:      include/dt-bindings/memory/
13306 F:      include/memory/
13307
13308 MEMORY FREQUENCY SCALING DRIVERS FOR NVIDIA TEGRA
13309 M:      Dmitry Osipenko <digetx@gmail.com>
13310 L:      linux-pm@vger.kernel.org
13311 L:      linux-tegra@vger.kernel.org
13312 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
13313 S:      Maintained
13314 F:      drivers/devfreq/tegra30-devfreq.c
13315
13316 MEMORY MANAGEMENT
13317 M:      Andrew Morton <akpm@linux-foundation.org>
13318 L:      linux-mm@kvack.org
13319 S:      Maintained
13320 W:      http://www.linux-mm.org
13321 T:      git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
13322 T:      quilt git://git.kernel.org/pub/scm/linux/kernel/git/akpm/25-new
13323 F:      include/linux/gfp.h
13324 F:      include/linux/gfp_types.h
13325 F:      include/linux/memory_hotplug.h
13326 F:      include/linux/mm.h
13327 F:      include/linux/mmzone.h
13328 F:      include/linux/pagewalk.h
13329 F:      mm/
13330 F:      tools/testing/selftests/vm/
13331
13332 VMALLOC
13333 M:      Andrew Morton <akpm@linux-foundation.org>
13334 R:      Uladzislau Rezki <urezki@gmail.com>
13335 R:      Christoph Hellwig <hch@infradead.org>
13336 L:      linux-mm@kvack.org
13337 S:      Maintained
13338 W:      http://www.linux-mm.org
13339 T:      git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
13340 F:      include/linux/vmalloc.h
13341 F:      mm/vmalloc.c
13342
13343 MEMORY HOT(UN)PLUG
13344 M:      David Hildenbrand <david@redhat.com>
13345 M:      Oscar Salvador <osalvador@suse.de>
13346 L:      linux-mm@kvack.org
13347 S:      Maintained
13348 F:      Documentation/admin-guide/mm/memory-hotplug.rst
13349 F:      Documentation/core-api/memory-hotplug.rst
13350 F:      drivers/base/memory.c
13351 F:      include/linux/memory_hotplug.h
13352 F:      mm/memory_hotplug.c
13353 F:      tools/testing/selftests/memory-hotplug/
13354
13355 MEMORY TECHNOLOGY DEVICES (MTD)
13356 M:      Miquel Raynal <miquel.raynal@bootlin.com>
13357 M:      Richard Weinberger <richard@nod.at>
13358 M:      Vignesh Raghavendra <vigneshr@ti.com>
13359 L:      linux-mtd@lists.infradead.org
13360 S:      Maintained
13361 W:      http://www.linux-mtd.infradead.org/
13362 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
13363 C:      irc://irc.oftc.net/mtd
13364 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
13365 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
13366 F:      Documentation/devicetree/bindings/mtd/
13367 F:      drivers/mtd/
13368 F:      include/linux/mtd/
13369 F:      include/uapi/mtd/
13370
13371 MEMSENSING MICROSYSTEMS MSA311 DRIVER
13372 M:      Dmitry Rokosov <ddrokosov@sberdevices.ru>
13373 L:      linux-iio@vger.kernel.org
13374 S:      Maintained
13375 F:      Documentation/devicetree/bindings/iio/accel/memsensing,msa311.yaml
13376 F:      drivers/iio/accel/msa311.c
13377
13378 MEN A21 WATCHDOG DRIVER
13379 M:      Johannes Thumshirn <morbidrsa@gmail.com>
13380 L:      linux-watchdog@vger.kernel.org
13381 S:      Maintained
13382 F:      drivers/watchdog/mena21_wdt.c
13383
13384 MEN CHAMELEON BUS (mcb)
13385 M:      Johannes Thumshirn <morbidrsa@gmail.com>
13386 S:      Maintained
13387 F:      Documentation/driver-api/men-chameleon-bus.rst
13388 F:      drivers/mcb/
13389 F:      include/linux/mcb.h
13390
13391 MEN F21BMC (Board Management Controller)
13392 M:      Andreas Werner <andreas.werner@men.de>
13393 S:      Supported
13394 F:      Documentation/hwmon/menf21bmc.rst
13395 F:      drivers/hwmon/menf21bmc_hwmon.c
13396 F:      drivers/leds/leds-menf21bmc.c
13397 F:      drivers/mfd/menf21bmc.c
13398 F:      drivers/watchdog/menf21bmc_wdt.c
13399
13400 MEN Z069 WATCHDOG DRIVER
13401 M:      Johannes Thumshirn <jth@kernel.org>
13402 L:      linux-watchdog@vger.kernel.org
13403 S:      Maintained
13404 F:      drivers/watchdog/menz69_wdt.c
13405
13406 MESON AO CEC DRIVER FOR AMLOGIC SOCS
13407 M:      Neil Armstrong <neil.armstrong@linaro.org>
13408 L:      linux-media@vger.kernel.org
13409 L:      linux-amlogic@lists.infradead.org
13410 S:      Supported
13411 W:      http://linux-meson.com/
13412 T:      git git://linuxtv.org/media_tree.git
13413 F:      Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
13414 F:      drivers/media/cec/platform/meson/ao-cec-g12a.c
13415 F:      drivers/media/cec/platform/meson/ao-cec.c
13416
13417 MESON GE2D DRIVER FOR AMLOGIC SOCS
13418 M:      Neil Armstrong <neil.armstrong@linaro.org>
13419 L:      linux-media@vger.kernel.org
13420 L:      linux-amlogic@lists.infradead.org
13421 S:      Supported
13422 T:      git git://linuxtv.org/media_tree.git
13423 F:      Documentation/devicetree/bindings/media/amlogic,axg-ge2d.yaml
13424 F:      drivers/media/platform/amlogic/meson-ge2d/
13425
13426 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
13427 M:      Liang Yang <liang.yang@amlogic.com>
13428 L:      linux-mtd@lists.infradead.org
13429 S:      Maintained
13430 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.yaml
13431 F:      drivers/mtd/nand/raw/meson_*
13432
13433 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
13434 M:      Neil Armstrong <neil.armstrong@linaro.org>
13435 L:      linux-media@vger.kernel.org
13436 L:      linux-amlogic@lists.infradead.org
13437 S:      Supported
13438 T:      git git://linuxtv.org/media_tree.git
13439 F:      Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
13440 F:      drivers/staging/media/meson/vdec/
13441
13442 METHODE UDPU SUPPORT
13443 M:      Vladimir Vid <vladimir.vid@sartura.hr>
13444 S:      Maintained
13445 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
13446
13447 MHI BUS
13448 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
13449 L:      mhi@lists.linux.dev
13450 L:      linux-arm-msm@vger.kernel.org
13451 S:      Maintained
13452 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
13453 F:      Documentation/ABI/stable/sysfs-bus-mhi
13454 F:      Documentation/mhi/
13455 F:      drivers/bus/mhi/
13456 F:      include/linux/mhi.h
13457
13458 MICROBLAZE ARCHITECTURE
13459 M:      Michal Simek <monstr@monstr.eu>
13460 S:      Supported
13461 W:      http://www.monstr.eu/fdt/
13462 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
13463 F:      arch/microblaze/
13464
13465 MICROCHIP AT91 DMA DRIVERS
13466 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
13467 M:      Tudor Ambarus <tudor.ambarus@linaro.org>
13468 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13469 L:      dmaengine@vger.kernel.org
13470 S:      Supported
13471 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
13472 F:      drivers/dma/at_hdmac.c
13473 F:      drivers/dma/at_xdmac.c
13474 F:      include/dt-bindings/dma/at91.h
13475
13476 MICROCHIP AT91 SERIAL DRIVER
13477 M:      Richard Genoud <richard.genoud@gmail.com>
13478 S:      Maintained
13479 F:      Documentation/devicetree/bindings/serial/atmel,at91-usart.yaml
13480 F:      drivers/tty/serial/atmel_serial.c
13481 F:      drivers/tty/serial/atmel_serial.h
13482
13483 MICROCHIP AT91 USART MFD DRIVER
13484 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
13485 L:      linux-kernel@vger.kernel.org
13486 S:      Supported
13487 F:      Documentation/devicetree/bindings/serial/atmel,at91-usart.yaml
13488 F:      drivers/mfd/at91-usart.c
13489 F:      include/dt-bindings/mfd/at91-usart.h
13490
13491 MICROCHIP AT91 USART SPI DRIVER
13492 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
13493 L:      linux-spi@vger.kernel.org
13494 S:      Supported
13495 F:      Documentation/devicetree/bindings/serial/atmel,at91-usart.yaml
13496 F:      drivers/spi/spi-at91-usart.c
13497
13498 MICROCHIP AUDIO ASOC DRIVERS
13499 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
13500 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13501 S:      Supported
13502 F:      sound/soc/atmel
13503
13504 MICROCHIP CSI2DC DRIVER
13505 M:      Eugen Hristev <eugen.hristev@microchip.com>
13506 L:      linux-media@vger.kernel.org
13507 S:      Supported
13508 F:      Documentation/devicetree/bindings/media/microchip,csi2dc.yaml
13509 F:      drivers/media/platform/microchip/microchip-csi2dc.c
13510
13511 MICROCHIP ECC DRIVER
13512 M:      Tudor Ambarus <tudor.ambarus@linaro.org>
13513 L:      linux-crypto@vger.kernel.org
13514 S:      Maintained
13515 F:      drivers/crypto/atmel-ecc.*
13516
13517 MICROCHIP EIC DRIVER
13518 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13519 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13520 S:      Supported
13521 F:      drivers/irqchip/irq-mchp-eic.c
13522
13523 MICROCHIP I2C DRIVER
13524 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
13525 L:      linux-i2c@vger.kernel.org
13526 S:      Supported
13527 F:      drivers/i2c/busses/i2c-at91-*.c
13528 F:      drivers/i2c/busses/i2c-at91.h
13529
13530 MICROCHIP ISC DRIVER
13531 M:      Eugen Hristev <eugen.hristev@microchip.com>
13532 L:      linux-media@vger.kernel.org
13533 S:      Supported
13534 F:      Documentation/devicetree/bindings/media/atmel,isc.yaml
13535 F:      Documentation/devicetree/bindings/media/microchip,xisc.yaml
13536 F:      drivers/staging/media/deprecated/atmel/atmel-isc*
13537 F:      drivers/staging/media/deprecated/atmel/atmel-sama*-isc*
13538 F:      drivers/media/platform/microchip/microchip-isc*
13539 F:      drivers/media/platform/microchip/microchip-sama*-isc*
13540 F:      include/linux/atmel-isc-media.h
13541
13542 MICROCHIP ISI DRIVER
13543 M:      Eugen Hristev <eugen.hristev@microchip.com>
13544 L:      linux-media@vger.kernel.org
13545 S:      Supported
13546 F:      drivers/media/platform/atmel/atmel-isi.c
13547 F:      drivers/media/platform/atmel/atmel-isi.h
13548
13549 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
13550 M:      Woojung Huh <woojung.huh@microchip.com>
13551 M:      UNGLinuxDriver@microchip.com
13552 L:      netdev@vger.kernel.org
13553 S:      Maintained
13554 F:      Documentation/devicetree/bindings/net/dsa/microchip,ksz.yaml
13555 F:      Documentation/devicetree/bindings/net/dsa/microchip,lan937x.yaml
13556 F:      drivers/net/dsa/microchip/*
13557 F:      include/linux/platform_data/microchip-ksz.h
13558 F:      net/dsa/tag_ksz.c
13559
13560 MICROCHIP LAN87xx/LAN937x T1 PHY DRIVER
13561 M:      Arun Ramadoss <arun.ramadoss@microchip.com>
13562 R:      UNGLinuxDriver@microchip.com
13563 L:      netdev@vger.kernel.org
13564 S:      Maintained
13565 F:      drivers/net/phy/microchip_t1.c
13566
13567 MICROCHIP LAN743X ETHERNET DRIVER
13568 M:      Bryan Whitehead <bryan.whitehead@microchip.com>
13569 M:      UNGLinuxDriver@microchip.com
13570 L:      netdev@vger.kernel.org
13571 S:      Maintained
13572 F:      drivers/net/ethernet/microchip/lan743x_*
13573
13574 MICROCHIP LAN966X ETHERNET DRIVER
13575 M:      Horatiu Vultur <horatiu.vultur@microchip.com>
13576 M:      UNGLinuxDriver@microchip.com
13577 L:      netdev@vger.kernel.org
13578 S:      Maintained
13579 F:      drivers/net/ethernet/microchip/lan966x/*
13580
13581 MICROCHIP LCDFB DRIVER
13582 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
13583 L:      linux-fbdev@vger.kernel.org
13584 S:      Maintained
13585 F:      drivers/video/fbdev/atmel_lcdfb.c
13586 F:      include/video/atmel_lcdc.h
13587
13588 MICROCHIP MCP16502 PMIC DRIVER
13589 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13590 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13591 S:      Supported
13592 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
13593 F:      drivers/regulator/mcp16502.c
13594
13595 MICROCHIP MCP3911 ADC DRIVER
13596 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
13597 M:      Kent Gustavsson <kent@minoris.se>
13598 L:      linux-iio@vger.kernel.org
13599 S:      Maintained
13600 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
13601 F:      drivers/iio/adc/mcp3911.c
13602
13603 MICROCHIP MMC/SD/SDIO MCI DRIVER
13604 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
13605 S:      Maintained
13606 F:      drivers/mmc/host/atmel-mci.c
13607
13608 MICROCHIP NAND DRIVER
13609 M:      Tudor Ambarus <tudor.ambarus@linaro.org>
13610 L:      linux-mtd@lists.infradead.org
13611 S:      Supported
13612 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
13613 F:      drivers/mtd/nand/raw/atmel/*
13614
13615 MICROCHIP PCI1XXXX GP DRIVER
13616 M:      Kumaravel Thiagarajan <kumaravel.thiagarajan@microchip.com>
13617 L:      linux-gpio@vger.kernel.org
13618 S:      Supported
13619 F:      drivers/misc/mchp_pci1xxxx/mchp_pci1xxxx_gp.c
13620 F:      drivers/misc/mchp_pci1xxxx/mchp_pci1xxxx_gp.h
13621 F:      drivers/misc/mchp_pci1xxxx/mchp_pci1xxxx_gpio.c
13622
13623 MICROCHIP OTPC DRIVER
13624 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13625 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13626 S:      Supported
13627 F:      Documentation/devicetree/bindings/nvmem/microchip,sama7g5-otpc.yaml
13628 F:      drivers/nvmem/microchip-otpc.c
13629 F:      include/dt-bindings/nvmem/microchip,sama7g5-otpc.h
13630
13631 MICROCHIP PCI1XXXX I2C DRIVER
13632 M:      Tharun Kumar P <tharunkumar.pasumarthi@microchip.com>
13633 M:      Kumaravel Thiagarajan <kumaravel.thiagarajan@microchip.com>
13634 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
13635 L:      linux-i2c@vger.kernel.org
13636 S:      Maintained
13637 F:      drivers/i2c/busses/i2c-mchp-pci1xxxx.c
13638
13639 MICROCHIP PWM DRIVER
13640 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13641 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13642 L:      linux-pwm@vger.kernel.org
13643 S:      Supported
13644 F:      Documentation/devicetree/bindings/pwm/atmel,at91sam-pwm.yaml
13645 F:      drivers/pwm/pwm-atmel.c
13646
13647 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
13648 M:      Eugen Hristev <eugen.hristev@microchip.com>
13649 L:      linux-iio@vger.kernel.org
13650 S:      Supported
13651 F:      Documentation/devicetree/bindings/iio/adc/atmel,sama5d2-adc.yaml
13652 F:      drivers/iio/adc/at91-sama5d2_adc.c
13653 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
13654
13655 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
13656 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13657 S:      Supported
13658 F:      drivers/power/reset/at91-sama5d2_shdwc.c
13659
13660 MICROCHIP SPI DRIVER
13661 M:      Tudor Ambarus <tudor.ambarus@linaro.org>
13662 S:      Supported
13663 F:      drivers/spi/spi-atmel.*
13664
13665 MICROCHIP SSC DRIVER
13666 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
13667 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13668 S:      Supported
13669 F:      drivers/misc/atmel-ssc.c
13670 F:      include/linux/atmel-ssc.h
13671
13672 MICROCHIP SOC DRIVERS
13673 M:      Conor Dooley <conor@kernel.org>
13674 S:      Supported
13675 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/conor/linux.git/
13676 F:      drivers/soc/microchip/
13677
13678 MICROCHIP USB251XB DRIVER
13679 M:      Richard Leitner <richard.leitner@skidata.com>
13680 L:      linux-usb@vger.kernel.org
13681 S:      Maintained
13682 F:      Documentation/devicetree/bindings/usb/usb251xb.yaml
13683 F:      drivers/usb/misc/usb251xb.c
13684
13685 MICROCHIP USBA UDC DRIVER
13686 M:      Cristian Birsan <cristian.birsan@microchip.com>
13687 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13688 S:      Supported
13689 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
13690
13691 MICROCHIP WILC1000 WIFI DRIVER
13692 M:      Ajay Singh <ajay.kathat@microchip.com>
13693 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13694 L:      linux-wireless@vger.kernel.org
13695 S:      Supported
13696 F:      drivers/net/wireless/microchip/wilc1000/
13697
13698 MICROSEMI MIPS SOCS
13699 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
13700 M:      UNGLinuxDriver@microchip.com
13701 L:      linux-mips@vger.kernel.org
13702 S:      Supported
13703 F:      Documentation/devicetree/bindings/mips/mscc.txt
13704 F:      Documentation/devicetree/bindings/phy/mscc,vsc7514-serdes.yaml
13705 F:      Documentation/devicetree/bindings/power/reset/ocelot-reset.txt
13706 F:      arch/mips/boot/dts/mscc/
13707 F:      arch/mips/configs/generic/board-ocelot.config
13708 F:      arch/mips/generic/board-ocelot.c
13709
13710 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
13711 M:      Don Brace <don.brace@microchip.com>
13712 L:      storagedev@microchip.com
13713 L:      linux-scsi@vger.kernel.org
13714 S:      Supported
13715 F:      Documentation/scsi/smartpqi.rst
13716 F:      drivers/scsi/smartpqi/Kconfig
13717 F:      drivers/scsi/smartpqi/Makefile
13718 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
13719 F:      include/linux/cciss*.h
13720 F:      include/uapi/linux/cciss*.h
13721
13722 MICROSOFT MANA RDMA DRIVER
13723 M:      Long Li <longli@microsoft.com>
13724 M:      Ajay Sharma <sharmaajay@microsoft.com>
13725 L:      linux-rdma@vger.kernel.org
13726 S:      Supported
13727 F:      drivers/infiniband/hw/mana/
13728 F:      include/net/mana
13729 F:      include/uapi/rdma/mana-abi.h
13730
13731 MICROSOFT SURFACE AGGREGATOR TABLET-MODE SWITCH
13732 M:      Maximilian Luz <luzmaximilian@gmail.com>
13733 L:      platform-driver-x86@vger.kernel.org
13734 S:      Maintained
13735 F:      drivers/platform/surface/surface_aggregator_tabletsw.c
13736
13737 MICROSOFT SURFACE BATTERY AND AC DRIVERS
13738 M:      Maximilian Luz <luzmaximilian@gmail.com>
13739 L:      linux-pm@vger.kernel.org
13740 L:      platform-driver-x86@vger.kernel.org
13741 S:      Maintained
13742 F:      drivers/power/supply/surface_battery.c
13743 F:      drivers/power/supply/surface_charger.c
13744
13745 MICROSOFT SURFACE DTX DRIVER
13746 M:      Maximilian Luz <luzmaximilian@gmail.com>
13747 L:      platform-driver-x86@vger.kernel.org
13748 S:      Maintained
13749 F:      Documentation/driver-api/surface_aggregator/clients/dtx.rst
13750 F:      drivers/platform/surface/surface_dtx.c
13751 F:      include/uapi/linux/surface_aggregator/dtx.h
13752
13753 MICROSOFT SURFACE GPE LID SUPPORT DRIVER
13754 M:      Maximilian Luz <luzmaximilian@gmail.com>
13755 L:      platform-driver-x86@vger.kernel.org
13756 S:      Maintained
13757 F:      drivers/platform/surface/surface_gpe.c
13758
13759 MICROSOFT SURFACE HARDWARE PLATFORM SUPPORT
13760 M:      Hans de Goede <hdegoede@redhat.com>
13761 M:      Mark Gross <markgross@kernel.org>
13762 M:      Maximilian Luz <luzmaximilian@gmail.com>
13763 L:      platform-driver-x86@vger.kernel.org
13764 S:      Maintained
13765 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
13766 F:      drivers/platform/surface/
13767
13768 MICROSOFT SURFACE HID TRANSPORT DRIVER
13769 M:      Maximilian Luz <luzmaximilian@gmail.com>
13770 L:      linux-input@vger.kernel.org
13771 L:      platform-driver-x86@vger.kernel.org
13772 S:      Maintained
13773 F:      drivers/hid/surface-hid/
13774
13775 MICROSOFT SURFACE HOT-PLUG DRIVER
13776 M:      Maximilian Luz <luzmaximilian@gmail.com>
13777 L:      platform-driver-x86@vger.kernel.org
13778 S:      Maintained
13779 F:      drivers/platform/surface/surface_hotplug.c
13780
13781 MICROSOFT SURFACE PLATFORM PROFILE DRIVER
13782 M:      Maximilian Luz <luzmaximilian@gmail.com>
13783 L:      platform-driver-x86@vger.kernel.org
13784 S:      Maintained
13785 F:      drivers/platform/surface/surface_platform_profile.c
13786
13787 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
13788 M:      Chen Yu <yu.c.chen@intel.com>
13789 L:      platform-driver-x86@vger.kernel.org
13790 S:      Supported
13791 F:      drivers/platform/surface/surfacepro3_button.c
13792
13793 MICROSOFT SURFACE SYSTEM AGGREGATOR SUBSYSTEM
13794 M:      Maximilian Luz <luzmaximilian@gmail.com>
13795 L:      platform-driver-x86@vger.kernel.org
13796 S:      Maintained
13797 W:      https://github.com/linux-surface/surface-aggregator-module
13798 C:      irc://irc.libera.chat/linux-surface
13799 F:      Documentation/driver-api/surface_aggregator/
13800 F:      drivers/platform/surface/aggregator/
13801 F:      drivers/platform/surface/surface_acpi_notify.c
13802 F:      drivers/platform/surface/surface_aggregator_cdev.c
13803 F:      drivers/platform/surface/surface_aggregator_registry.c
13804 F:      include/linux/surface_acpi_notify.h
13805 F:      include/linux/surface_aggregator/
13806 F:      include/uapi/linux/surface_aggregator/
13807
13808 MICROSOFT SURFACE SYSTEM AGGREGATOR HUB DRIVER
13809 M:      Maximilian Luz <luzmaximilian@gmail.com>
13810 L:      platform-driver-x86@vger.kernel.org
13811 S:      Maintained
13812 F:      drivers/platform/surface/surface_aggregator_hub.c
13813
13814 MICROTEK X6 SCANNER
13815 M:      Oliver Neukum <oliver@neukum.org>
13816 S:      Maintained
13817 F:      drivers/usb/image/microtek.*
13818
13819 MIKROTIK CRS3XX 98DX3236 BOARD SUPPORT
13820 M:      Luka Kovacic <luka.kovacic@sartura.hr>
13821 M:      Luka Perkov <luka.perkov@sartura.hr>
13822 S:      Maintained
13823 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s-bit.dts
13824 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s.dts
13825 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s-bit.dts
13826 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s.dts
13827 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s-bit.dts
13828 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s.dts
13829
13830 MIPI CCS, SMIA AND SMIA++ IMAGE SENSOR DRIVER
13831 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
13832 L:      linux-media@vger.kernel.org
13833 S:      Maintained
13834 F:      Documentation/devicetree/bindings/media/i2c/mipi-ccs.yaml
13835 F:      Documentation/driver-api/media/drivers/ccs/
13836 F:      Documentation/userspace-api/media/drivers/ccs.rst
13837 F:      drivers/media/i2c/ccs-pll.c
13838 F:      drivers/media/i2c/ccs-pll.h
13839 F:      drivers/media/i2c/ccs/
13840 F:      include/uapi/linux/ccs.h
13841 F:      include/uapi/linux/smiapp.h
13842
13843 MIPS
13844 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
13845 L:      linux-mips@vger.kernel.org
13846 S:      Maintained
13847 W:      http://www.linux-mips.org/
13848 Q:      https://patchwork.kernel.org/project/linux-mips/list/
13849 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
13850 F:      Documentation/devicetree/bindings/mips/
13851 F:      Documentation/mips/
13852 F:      arch/mips/
13853 F:      drivers/platform/mips/
13854 F:      include/dt-bindings/mips/
13855
13856 MIPS BOSTON DEVELOPMENT BOARD
13857 M:      Paul Burton <paulburton@kernel.org>
13858 L:      linux-mips@vger.kernel.org
13859 S:      Maintained
13860 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
13861 F:      arch/mips/boot/dts/img/boston.dts
13862 F:      arch/mips/configs/generic/board-boston.config
13863 F:      drivers/clk/imgtec/clk-boston.c
13864 F:      include/dt-bindings/clock/boston-clock.h
13865
13866 MIPS CORE DRIVERS
13867 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
13868 M:      Serge Semin <fancer.lancer@gmail.com>
13869 L:      linux-mips@vger.kernel.org
13870 S:      Supported
13871 F:      drivers/bus/mips_cdmm.c
13872 F:      drivers/clocksource/mips-gic-timer.c
13873 F:      drivers/cpuidle/cpuidle-cps.c
13874 F:      drivers/irqchip/irq-mips-cpu.c
13875 F:      drivers/irqchip/irq-mips-gic.c
13876
13877 MIPS GENERIC PLATFORM
13878 M:      Paul Burton <paulburton@kernel.org>
13879 L:      linux-mips@vger.kernel.org
13880 S:      Supported
13881 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.yaml
13882 F:      arch/mips/generic/
13883 F:      arch/mips/tools/generic-board-config.sh
13884
13885 MIPS RINT INSTRUCTION EMULATION
13886 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
13887 L:      linux-mips@vger.kernel.org
13888 S:      Supported
13889 F:      arch/mips/math-emu/dp_rint.c
13890 F:      arch/mips/math-emu/sp_rint.c
13891
13892 MIPS/LOONGSON1 ARCHITECTURE
13893 M:      Keguang Zhang <keguang.zhang@gmail.com>
13894 L:      linux-mips@vger.kernel.org
13895 S:      Maintained
13896 F:      arch/mips/include/asm/mach-loongson32/
13897 F:      arch/mips/loongson32/
13898 F:      drivers/*/*/*loongson1*
13899 F:      drivers/*/*loongson1*
13900
13901 MIPS/LOONGSON2EF ARCHITECTURE
13902 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
13903 L:      linux-mips@vger.kernel.org
13904 S:      Maintained
13905 F:      arch/mips/include/asm/mach-loongson2ef/
13906 F:      arch/mips/loongson2ef/
13907 F:      drivers/cpufreq/loongson2_cpufreq.c
13908
13909 MIPS/LOONGSON64 ARCHITECTURE
13910 M:      Huacai Chen <chenhuacai@kernel.org>
13911 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
13912 L:      linux-mips@vger.kernel.org
13913 S:      Maintained
13914 F:      arch/mips/include/asm/mach-loongson64/
13915 F:      arch/mips/loongson64/
13916 F:      drivers/irqchip/irq-loongson*
13917 F:      drivers/platform/mips/cpu_hwmon.c
13918
13919 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
13920 M:      Hans Verkuil <hverkuil@xs4all.nl>
13921 L:      linux-media@vger.kernel.org
13922 S:      Odd Fixes
13923 W:      https://linuxtv.org
13924 T:      git git://linuxtv.org/media_tree.git
13925 F:      drivers/media/radio/radio-miropcm20*
13926
13927 MMP SUPPORT
13928 R:      Lubomir Rintel <lkundrak@v3.sk>
13929 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13930 S:      Odd Fixes
13931 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
13932 F:      arch/arm/boot/dts/mmp*
13933 F:      arch/arm/mach-mmp/
13934 F:      include/linux/soc/mmp/
13935
13936 MMP USB PHY DRIVERS
13937 R:      Lubomir Rintel <lkundrak@v3.sk>
13938 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13939 S:      Maintained
13940 F:      drivers/phy/marvell/phy-mmp3-usb.c
13941 F:      drivers/phy/marvell/phy-pxa-usb.c
13942
13943 MMU GATHER AND TLB INVALIDATION
13944 M:      Will Deacon <will@kernel.org>
13945 M:      "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
13946 M:      Andrew Morton <akpm@linux-foundation.org>
13947 M:      Nick Piggin <npiggin@gmail.com>
13948 M:      Peter Zijlstra <peterz@infradead.org>
13949 L:      linux-arch@vger.kernel.org
13950 L:      linux-mm@kvack.org
13951 S:      Maintained
13952 F:      arch/*/include/asm/tlb.h
13953 F:      include/asm-generic/tlb.h
13954 F:      mm/mmu_gather.c
13955
13956 MN88472 MEDIA DRIVER
13957 M:      Antti Palosaari <crope@iki.fi>
13958 L:      linux-media@vger.kernel.org
13959 S:      Maintained
13960 W:      https://linuxtv.org
13961 W:      http://palosaari.fi/linux/
13962 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13963 F:      drivers/media/dvb-frontends/mn88472*
13964
13965 MN88473 MEDIA DRIVER
13966 M:      Antti Palosaari <crope@iki.fi>
13967 L:      linux-media@vger.kernel.org
13968 S:      Maintained
13969 W:      https://linuxtv.org
13970 W:      http://palosaari.fi/linux/
13971 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13972 F:      drivers/media/dvb-frontends/mn88473*
13973
13974 MODULE SUPPORT
13975 M:      Luis Chamberlain <mcgrof@kernel.org>
13976 L:      linux-modules@vger.kernel.org
13977 L:      linux-kernel@vger.kernel.org
13978 S:      Maintained
13979 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux.git modules-next
13980 F:      include/linux/module.h
13981 F:      kernel/module/
13982 F:      scripts/module*
13983
13984 MONOLITHIC POWER SYSTEM PMIC DRIVER
13985 M:      Saravanan Sekar <sravanhome@gmail.com>
13986 S:      Maintained
13987 F:      Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
13988 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
13989 F:      drivers/iio/adc/mp2629_adc.c
13990 F:      drivers/mfd/mp2629.c
13991 F:      drivers/power/supply/mp2629_charger.c
13992 F:      drivers/regulator/mp5416.c
13993 F:      drivers/regulator/mpq7920.c
13994 F:      drivers/regulator/mpq7920.h
13995 F:      include/linux/mfd/mp2629.h
13996
13997 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
13998 S:      Orphan
13999 W:      http://popies.net/meye/
14000 F:      Documentation/userspace-api/media/drivers/meye*
14001 F:      drivers/staging/media/deprecated/meye/
14002 F:      include/uapi/linux/meye.h
14003
14004 MOTORCOMM PHY DRIVER
14005 M:      Peter Geis <pgwipeout@gmail.com>
14006 M:      Frank <Frank.Sae@motor-comm.com>
14007 L:      netdev@vger.kernel.org
14008 S:      Maintained
14009 F:      drivers/net/phy/motorcomm.c
14010
14011 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
14012 M:      Jiri Slaby <jirislaby@kernel.org>
14013 S:      Maintained
14014 F:      Documentation/driver-api/tty/moxa-smartio.rst
14015 F:      drivers/tty/mxser.*
14016
14017 MR800 AVERMEDIA USB FM RADIO DRIVER
14018 M:      Alexey Klimov <klimov.linux@gmail.com>
14019 L:      linux-media@vger.kernel.org
14020 S:      Maintained
14021 T:      git git://linuxtv.org/media_tree.git
14022 F:      drivers/media/radio/radio-mr800.c
14023
14024 MRF24J40 IEEE 802.15.4 RADIO DRIVER
14025 M:      Alan Ott <alan@signal11.us>
14026 L:      linux-wpan@vger.kernel.org
14027 S:      Maintained
14028 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
14029 F:      drivers/net/ieee802154/mrf24j40.c
14030
14031 MSI LAPTOP SUPPORT
14032 M:      "Lee, Chun-Yi" <jlee@suse.com>
14033 L:      platform-driver-x86@vger.kernel.org
14034 S:      Maintained
14035 F:      drivers/platform/x86/msi-laptop.c
14036
14037 MSI WMI SUPPORT
14038 L:      platform-driver-x86@vger.kernel.org
14039 S:      Orphan
14040 F:      drivers/platform/x86/msi-wmi.c
14041
14042 MSI001 MEDIA DRIVER
14043 M:      Antti Palosaari <crope@iki.fi>
14044 L:      linux-media@vger.kernel.org
14045 S:      Maintained
14046 W:      https://linuxtv.org
14047 W:      http://palosaari.fi/linux/
14048 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14049 T:      git git://linuxtv.org/anttip/media_tree.git
14050 F:      drivers/media/tuners/msi001*
14051
14052 MSI2500 MEDIA DRIVER
14053 M:      Antti Palosaari <crope@iki.fi>
14054 L:      linux-media@vger.kernel.org
14055 S:      Maintained
14056 W:      https://linuxtv.org
14057 W:      http://palosaari.fi/linux/
14058 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14059 T:      git git://linuxtv.org/anttip/media_tree.git
14060 F:      drivers/media/usb/msi2500/
14061
14062 MSTAR INTERRUPT CONTROLLER DRIVER
14063 M:      Mark-PK Tsai <mark-pk.tsai@mediatek.com>
14064 M:      Daniel Palmer <daniel@thingy.jp>
14065 S:      Maintained
14066 F:      Documentation/devicetree/bindings/interrupt-controller/mstar,mst-intc.yaml
14067 F:      drivers/irqchip/irq-mst-intc.c
14068
14069 MSYSTEMS DISKONCHIP G3 MTD DRIVER
14070 M:      Robert Jarzmik <robert.jarzmik@free.fr>
14071 L:      linux-mtd@lists.infradead.org
14072 S:      Maintained
14073 F:      drivers/mtd/devices/docg3*
14074
14075 MT9M032 APTINA SENSOR DRIVER
14076 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
14077 L:      linux-media@vger.kernel.org
14078 S:      Maintained
14079 T:      git git://linuxtv.org/media_tree.git
14080 F:      drivers/media/i2c/mt9m032.c
14081 F:      include/media/i2c/mt9m032.h
14082
14083 MT9P031 APTINA CAMERA SENSOR
14084 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
14085 L:      linux-media@vger.kernel.org
14086 S:      Maintained
14087 T:      git git://linuxtv.org/media_tree.git
14088 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9p031.yaml
14089 F:      drivers/media/i2c/mt9p031.c
14090 F:      include/media/i2c/mt9p031.h
14091
14092 MT9T001 APTINA CAMERA SENSOR
14093 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
14094 L:      linux-media@vger.kernel.org
14095 S:      Maintained
14096 T:      git git://linuxtv.org/media_tree.git
14097 F:      drivers/media/i2c/mt9t001.c
14098 F:      include/media/i2c/mt9t001.h
14099
14100 MT9T112 APTINA CAMERA SENSOR
14101 M:      Jacopo Mondi <jacopo@jmondi.org>
14102 L:      linux-media@vger.kernel.org
14103 S:      Odd Fixes
14104 T:      git git://linuxtv.org/media_tree.git
14105 F:      drivers/media/i2c/mt9t112.c
14106 F:      include/media/i2c/mt9t112.h
14107
14108 MT9V032 APTINA CAMERA SENSOR
14109 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
14110 L:      linux-media@vger.kernel.org
14111 S:      Maintained
14112 T:      git git://linuxtv.org/media_tree.git
14113 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
14114 F:      drivers/media/i2c/mt9v032.c
14115 F:      include/media/i2c/mt9v032.h
14116
14117 MT9V111 APTINA CAMERA SENSOR
14118 M:      Jacopo Mondi <jacopo@jmondi.org>
14119 L:      linux-media@vger.kernel.org
14120 S:      Maintained
14121 T:      git git://linuxtv.org/media_tree.git
14122 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.yaml
14123 F:      drivers/media/i2c/mt9v111.c
14124
14125 MULTIFUNCTION DEVICES (MFD)
14126 M:      Lee Jones <lee@kernel.org>
14127 S:      Supported
14128 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
14129 F:      Documentation/devicetree/bindings/mfd/
14130 F:      drivers/mfd/
14131 F:      include/dt-bindings/mfd/
14132 F:      include/linux/mfd/
14133
14134 MULTIMEDIA CARD (MMC) ETC. OVER SPI
14135 S:      Orphan
14136 F:      drivers/mmc/host/mmc_spi.c
14137 F:      include/linux/spi/mmc_spi.h
14138
14139 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
14140 M:      Ulf Hansson <ulf.hansson@linaro.org>
14141 L:      linux-mmc@vger.kernel.org
14142 S:      Maintained
14143 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
14144 F:      Documentation/devicetree/bindings/mmc/
14145 F:      drivers/mmc/
14146 F:      include/linux/mmc/
14147 F:      include/uapi/linux/mmc/
14148
14149 MULTIPLEXER SUBSYSTEM
14150 M:      Peter Rosin <peda@axentia.se>
14151 S:      Maintained
14152 F:      Documentation/ABI/testing/sysfs-class-mux*
14153 F:      Documentation/devicetree/bindings/mux/
14154 F:      drivers/mux/
14155 F:      include/dt-bindings/mux/
14156 F:      include/linux/mux/
14157
14158 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
14159 M:      Bin Liu <b-liu@ti.com>
14160 L:      linux-usb@vger.kernel.org
14161 S:      Maintained
14162 F:      drivers/usb/musb/
14163
14164 MXL301RF MEDIA DRIVER
14165 M:      Akihiro Tsukada <tskd08@gmail.com>
14166 L:      linux-media@vger.kernel.org
14167 S:      Odd Fixes
14168 F:      drivers/media/tuners/mxl301rf*
14169
14170 MXL5007T MEDIA DRIVER
14171 M:      Michael Krufky <mkrufky@linuxtv.org>
14172 L:      linux-media@vger.kernel.org
14173 S:      Maintained
14174 W:      https://linuxtv.org
14175 W:      http://github.com/mkrufky
14176 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14177 T:      git git://linuxtv.org/mkrufky/tuners.git
14178 F:      drivers/media/tuners/mxl5007t.*
14179
14180 MXSFB DRM DRIVER
14181 M:      Marek Vasut <marex@denx.de>
14182 M:      Stefan Agner <stefan@agner.ch>
14183 L:      dri-devel@lists.freedesktop.org
14184 S:      Supported
14185 T:      git git://anongit.freedesktop.org/drm/drm-misc
14186 F:      Documentation/devicetree/bindings/display/fsl,lcdif.yaml
14187 F:      drivers/gpu/drm/mxsfb/
14188
14189 MYLEX DAC960 PCI RAID Controller
14190 M:      Hannes Reinecke <hare@kernel.org>
14191 L:      linux-scsi@vger.kernel.org
14192 S:      Supported
14193 F:      drivers/scsi/myrb.*
14194 F:      drivers/scsi/myrs.*
14195
14196 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
14197 M:      Chris Lee <christopher.lee@cspi.com>
14198 L:      netdev@vger.kernel.org
14199 S:      Supported
14200 W:      https://www.cspi.com/ethernet-products/support/downloads/
14201 F:      drivers/net/ethernet/myricom/myri10ge/
14202
14203 NAND FLASH SUBSYSTEM
14204 M:      Miquel Raynal <miquel.raynal@bootlin.com>
14205 R:      Richard Weinberger <richard@nod.at>
14206 L:      linux-mtd@lists.infradead.org
14207 S:      Maintained
14208 W:      http://www.linux-mtd.infradead.org/
14209 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
14210 C:      irc://irc.oftc.net/mtd
14211 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
14212 F:      drivers/mtd/nand/
14213 F:      include/linux/mtd/*nand*.h
14214
14215 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
14216 M:      Daniel Mack <zonque@gmail.com>
14217 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14218 S:      Maintained
14219 W:      http://www.native-instruments.com
14220 F:      sound/usb/caiaq/
14221
14222 NATSEMI ETHERNET DRIVER (DP8381x)
14223 S:      Orphan
14224 F:      drivers/net/ethernet/natsemi/natsemi.c
14225
14226 NCR 5380 SCSI DRIVERS
14227 M:      Finn Thain <fthain@linux-m68k.org>
14228 M:      Michael Schmitz <schmitzmic@gmail.com>
14229 L:      linux-scsi@vger.kernel.org
14230 S:      Maintained
14231 F:      Documentation/scsi/g_NCR5380.rst
14232 F:      drivers/scsi/NCR5380.*
14233 F:      drivers/scsi/arm/cumana_1.c
14234 F:      drivers/scsi/arm/oak.c
14235 F:      drivers/scsi/atari_scsi.*
14236 F:      drivers/scsi/dmx3191d.c
14237 F:      drivers/scsi/g_NCR5380.*
14238 F:      drivers/scsi/mac_scsi.*
14239 F:      drivers/scsi/sun3_scsi.*
14240 F:      drivers/scsi/sun3_scsi_vme.c
14241
14242 NCSI LIBRARY
14243 M:      Samuel Mendoza-Jonas <sam@mendozajonas.com>
14244 S:      Maintained
14245 F:      net/ncsi/
14246
14247 NCT6775 HARDWARE MONITOR DRIVER - CORE & PLATFORM DRIVER
14248 M:      Guenter Roeck <linux@roeck-us.net>
14249 L:      linux-hwmon@vger.kernel.org
14250 S:      Maintained
14251 F:      Documentation/hwmon/nct6775.rst
14252 F:      drivers/hwmon/nct6775-core.c
14253 F:      drivers/hwmon/nct6775-platform.c
14254 F:      drivers/hwmon/nct6775.h
14255
14256 NCT6775 HARDWARE MONITOR DRIVER - I2C DRIVER
14257 M:      Zev Weiss <zev@bewilderbeest.net>
14258 L:      linux-hwmon@vger.kernel.org
14259 S:      Maintained
14260 F:      Documentation/devicetree/bindings/hwmon/nuvoton,nct6775.yaml
14261 F:      drivers/hwmon/nct6775-i2c.c
14262
14263 NETDEVSIM
14264 M:      Jakub Kicinski <kuba@kernel.org>
14265 S:      Maintained
14266 F:      drivers/net/netdevsim/*
14267
14268 NETEM NETWORK EMULATOR
14269 M:      Stephen Hemminger <stephen@networkplumber.org>
14270 L:      netdev@vger.kernel.org
14271 S:      Maintained
14272 F:      net/sched/sch_netem.c
14273
14274 NETERION 10GbE DRIVERS (s2io)
14275 M:      Jon Mason <jdmason@kudzu.us>
14276 L:      netdev@vger.kernel.org
14277 S:      Supported
14278 F:      Documentation/networking/device_drivers/ethernet/neterion/s2io.rst
14279 F:      drivers/net/ethernet/neterion/
14280
14281 NETFILTER
14282 M:      Pablo Neira Ayuso <pablo@netfilter.org>
14283 M:      Jozsef Kadlecsik <kadlec@netfilter.org>
14284 M:      Florian Westphal <fw@strlen.de>
14285 L:      netfilter-devel@vger.kernel.org
14286 L:      coreteam@netfilter.org
14287 S:      Maintained
14288 W:      http://www.netfilter.org/
14289 W:      http://www.iptables.org/
14290 W:      http://www.nftables.org/
14291 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
14292 C:      irc://irc.libera.chat/netfilter
14293 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf.git
14294 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf-next.git
14295 F:      include/linux/netfilter*
14296 F:      include/linux/netfilter/
14297 F:      include/net/netfilter/
14298 F:      include/uapi/linux/netfilter*
14299 F:      include/uapi/linux/netfilter/
14300 F:      net/*/netfilter.c
14301 F:      net/*/netfilter/
14302 F:      net/bridge/br_netfilter*.c
14303 F:      net/netfilter/
14304
14305 NETROM NETWORK LAYER
14306 M:      Ralf Baechle <ralf@linux-mips.org>
14307 L:      linux-hams@vger.kernel.org
14308 S:      Maintained
14309 W:      http://www.linux-ax25.org/
14310 F:      include/net/netrom.h
14311 F:      include/uapi/linux/netrom.h
14312 F:      net/netrom/
14313
14314 NETRONIX EMBEDDED CONTROLLER
14315 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
14316 S:      Maintained
14317 F:      Documentation/devicetree/bindings/mfd/netronix,ntxec.yaml
14318 F:      drivers/mfd/ntxec.c
14319 F:      drivers/pwm/pwm-ntxec.c
14320 F:      drivers/rtc/rtc-ntxec.c
14321 F:      include/linux/mfd/ntxec.h
14322
14323 NETRONOME ETHERNET DRIVERS
14324 M:      Simon Horman <simon.horman@corigine.com>
14325 R:      Jakub Kicinski <kuba@kernel.org>
14326 L:      oss-drivers@corigine.com
14327 S:      Maintained
14328 F:      drivers/net/ethernet/netronome/
14329
14330 NETWORK BLOCK DEVICE (NBD)
14331 M:      Josef Bacik <josef@toxicpanda.com>
14332 L:      linux-block@vger.kernel.org
14333 L:      nbd@other.debian.org
14334 S:      Maintained
14335 F:      Documentation/admin-guide/blockdev/nbd.rst
14336 F:      drivers/block/nbd.c
14337 F:      include/trace/events/nbd.h
14338 F:      include/uapi/linux/nbd.h
14339
14340 NETWORK DROP MONITOR
14341 M:      Neil Horman <nhorman@tuxdriver.com>
14342 L:      netdev@vger.kernel.org
14343 S:      Maintained
14344 W:      https://fedorahosted.org/dropwatch/
14345 F:      include/uapi/linux/net_dropmon.h
14346 F:      net/core/drop_monitor.c
14347
14348 NETWORKING DRIVERS
14349 M:      "David S. Miller" <davem@davemloft.net>
14350 M:      Eric Dumazet <edumazet@google.com>
14351 M:      Jakub Kicinski <kuba@kernel.org>
14352 M:      Paolo Abeni <pabeni@redhat.com>
14353 L:      netdev@vger.kernel.org
14354 S:      Maintained
14355 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
14356 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
14357 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
14358 F:      Documentation/devicetree/bindings/net/
14359 F:      drivers/connector/
14360 F:      drivers/net/
14361 F:      include/dt-bindings/net/
14362 F:      include/linux/etherdevice.h
14363 F:      include/linux/fcdevice.h
14364 F:      include/linux/fddidevice.h
14365 F:      include/linux/hippidevice.h
14366 F:      include/linux/if_*
14367 F:      include/linux/inetdevice.h
14368 F:      include/linux/netdevice.h
14369 F:      include/uapi/linux/if_*
14370 F:      include/uapi/linux/netdevice.h
14371
14372 NETWORKING DRIVERS (WIRELESS)
14373 M:      Kalle Valo <kvalo@kernel.org>
14374 L:      linux-wireless@vger.kernel.org
14375 S:      Maintained
14376 W:      https://wireless.wiki.kernel.org/
14377 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
14378 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
14379 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
14380 F:      Documentation/devicetree/bindings/net/wireless/
14381 F:      drivers/net/wireless/
14382
14383 NETWORKING [DSA]
14384 M:      Andrew Lunn <andrew@lunn.ch>
14385 M:      Florian Fainelli <f.fainelli@gmail.com>
14386 M:      Vladimir Oltean <olteanv@gmail.com>
14387 S:      Maintained
14388 F:      Documentation/devicetree/bindings/net/dsa/
14389 F:      drivers/net/dsa/
14390 F:      include/linux/dsa/
14391 F:      include/linux/platform_data/dsa.h
14392 F:      include/net/dsa.h
14393 F:      net/dsa/
14394 F:      tools/testing/selftests/drivers/net/dsa/
14395
14396 NETWORKING [GENERAL]
14397 M:      "David S. Miller" <davem@davemloft.net>
14398 M:      Eric Dumazet <edumazet@google.com>
14399 M:      Jakub Kicinski <kuba@kernel.org>
14400 M:      Paolo Abeni <pabeni@redhat.com>
14401 L:      netdev@vger.kernel.org
14402 S:      Maintained
14403 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
14404 B:      mailto:netdev@vger.kernel.org
14405 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
14406 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
14407 F:      Documentation/networking/
14408 F:      Documentation/process/maintainer-netdev.rst
14409 F:      include/linux/in.h
14410 F:      include/linux/net.h
14411 F:      include/linux/netdevice.h
14412 F:      include/net/
14413 F:      include/uapi/linux/in.h
14414 F:      include/uapi/linux/net.h
14415 F:      include/uapi/linux/net_namespace.h
14416 F:      include/uapi/linux/netdevice.h
14417 F:      lib/net_utils.c
14418 F:      lib/random32.c
14419 F:      net/
14420 F:      tools/testing/selftests/net/
14421
14422 NETWORKING [IPSEC]
14423 M:      Steffen Klassert <steffen.klassert@secunet.com>
14424 M:      Herbert Xu <herbert@gondor.apana.org.au>
14425 M:      "David S. Miller" <davem@davemloft.net>
14426 L:      netdev@vger.kernel.org
14427 S:      Maintained
14428 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
14429 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
14430 F:      include/net/xfrm.h
14431 F:      include/uapi/linux/xfrm.h
14432 F:      net/ipv4/ah4.c
14433 F:      net/ipv4/esp4*
14434 F:      net/ipv4/ip_vti.c
14435 F:      net/ipv4/ipcomp.c
14436 F:      net/ipv4/xfrm*
14437 F:      net/ipv6/ah6.c
14438 F:      net/ipv6/esp6*
14439 F:      net/ipv6/ip6_vti.c
14440 F:      net/ipv6/ipcomp6.c
14441 F:      net/ipv6/xfrm*
14442 F:      net/key/
14443 F:      net/xfrm/
14444 F:      tools/testing/selftests/net/ipsec.c
14445
14446 NETWORKING [IPv4/IPv6]
14447 M:      "David S. Miller" <davem@davemloft.net>
14448 M:      David Ahern <dsahern@kernel.org>
14449 L:      netdev@vger.kernel.org
14450 S:      Maintained
14451 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
14452 F:      arch/x86/net/*
14453 F:      include/linux/ip.h
14454 F:      include/linux/ipv6*
14455 F:      include/net/fib*
14456 F:      include/net/ip*
14457 F:      include/net/route.h
14458 F:      net/ipv4/
14459 F:      net/ipv6/
14460
14461 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
14462 M:      Paul Moore <paul@paul-moore.com>
14463 L:      netdev@vger.kernel.org
14464 L:      linux-security-module@vger.kernel.org
14465 S:      Maintained
14466 W:      https://github.com/netlabel
14467 F:      Documentation/netlabel/
14468 F:      include/net/calipso.h
14469 F:      include/net/cipso_ipv4.h
14470 F:      include/net/netlabel.h
14471 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
14472 F:      include/uapi/linux/netfilter/xt_SECMARK.h
14473 F:      net/ipv4/cipso_ipv4.c
14474 F:      net/ipv6/calipso.c
14475 F:      net/netfilter/xt_CONNSECMARK.c
14476 F:      net/netfilter/xt_SECMARK.c
14477 F:      net/netlabel/
14478
14479 NETWORKING [MPTCP]
14480 M:      Matthieu Baerts <matthieu.baerts@tessares.net>
14481 L:      netdev@vger.kernel.org
14482 L:      mptcp@lists.linux.dev
14483 S:      Maintained
14484 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
14485 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
14486 F:      Documentation/networking/mptcp-sysctl.rst
14487 F:      include/net/mptcp.h
14488 F:      include/trace/events/mptcp.h
14489 F:      include/uapi/linux/mptcp.h
14490 F:      net/mptcp/
14491 F:      tools/testing/selftests/bpf/*/*mptcp*.c
14492 F:      tools/testing/selftests/net/mptcp/
14493
14494 NETWORKING [TCP]
14495 M:      Eric Dumazet <edumazet@google.com>
14496 L:      netdev@vger.kernel.org
14497 S:      Maintained
14498 F:      include/linux/tcp.h
14499 F:      include/net/tcp.h
14500 F:      include/trace/events/tcp.h
14501 F:      include/uapi/linux/tcp.h
14502 F:      net/ipv4/syncookies.c
14503 F:      net/ipv4/tcp*.c
14504 F:      net/ipv6/syncookies.c
14505 F:      net/ipv6/tcp*.c
14506
14507 NETWORKING [TLS]
14508 M:      Boris Pismenny <borisp@nvidia.com>
14509 M:      John Fastabend <john.fastabend@gmail.com>
14510 M:      Jakub Kicinski <kuba@kernel.org>
14511 L:      netdev@vger.kernel.org
14512 S:      Maintained
14513 F:      include/net/tls.h
14514 F:      include/uapi/linux/tls.h
14515 F:      net/tls/*
14516
14517 NETXEN (1/10) GbE SUPPORT
14518 M:      Manish Chopra <manishc@marvell.com>
14519 M:      Rahul Verma <rahulv@marvell.com>
14520 M:      GR-Linux-NIC-Dev@marvell.com
14521 L:      netdev@vger.kernel.org
14522 S:      Supported
14523 F:      drivers/net/ethernet/qlogic/netxen/
14524
14525 NET_FAILOVER MODULE
14526 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
14527 L:      netdev@vger.kernel.org
14528 S:      Supported
14529 F:      Documentation/networking/net_failover.rst
14530 F:      drivers/net/net_failover.c
14531 F:      include/net/net_failover.h
14532
14533 NEXTHOP
14534 M:      David Ahern <dsahern@kernel.org>
14535 L:      netdev@vger.kernel.org
14536 S:      Maintained
14537 F:      include/net/netns/nexthop.h
14538 F:      include/net/nexthop.h
14539 F:      include/uapi/linux/nexthop.h
14540 F:      net/ipv4/nexthop.c
14541
14542 NFC SUBSYSTEM
14543 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
14544 L:      linux-nfc@lists.01.org (subscribers-only)
14545 L:      netdev@vger.kernel.org
14546 S:      Maintained
14547 B:      mailto:linux-nfc@lists.01.org
14548 F:      Documentation/devicetree/bindings/net/nfc/
14549 F:      drivers/nfc/
14550 F:      include/linux/platform_data/nfcmrvl.h
14551 F:      include/net/nfc/
14552 F:      include/uapi/linux/nfc.h
14553 F:      net/nfc/
14554
14555 NFC VIRTUAL NCI DEVICE DRIVER
14556 M:      Bongsu Jeon <bongsu.jeon@samsung.com>
14557 L:      netdev@vger.kernel.org
14558 L:      linux-nfc@lists.01.org (subscribers-only)
14559 S:      Supported
14560 F:      drivers/nfc/virtual_ncidev.c
14561 F:      tools/testing/selftests/nci/
14562
14563 NFS, SUNRPC, AND LOCKD CLIENTS
14564 M:      Trond Myklebust <trond.myklebust@hammerspace.com>
14565 M:      Anna Schumaker <anna@kernel.org>
14566 L:      linux-nfs@vger.kernel.org
14567 S:      Maintained
14568 W:      http://client.linux-nfs.org
14569 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
14570 F:      fs/lockd/
14571 F:      fs/nfs/
14572 F:      fs/nfs_common/
14573 F:      include/linux/lockd/
14574 F:      include/linux/nfs*
14575 F:      include/linux/sunrpc/
14576 F:      include/uapi/linux/nfs*
14577 F:      include/uapi/linux/sunrpc/
14578 F:      net/sunrpc/
14579 F:      Documentation/filesystems/nfs/
14580
14581 NILFS2 FILESYSTEM
14582 M:      Ryusuke Konishi <konishi.ryusuke@gmail.com>
14583 L:      linux-nilfs@vger.kernel.org
14584 S:      Supported
14585 W:      https://nilfs.sourceforge.io/
14586 W:      https://nilfs.osdn.jp/
14587 T:      git https://github.com/konis/nilfs2.git
14588 F:      Documentation/filesystems/nilfs2.rst
14589 F:      fs/nilfs2/
14590 F:      include/trace/events/nilfs2.h
14591 F:      include/uapi/linux/nilfs2_api.h
14592 F:      include/uapi/linux/nilfs2_ondisk.h
14593
14594 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
14595 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
14596 S:      Maintained
14597 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
14598 F:      Documentation/scsi/NinjaSCSI.rst
14599 F:      drivers/scsi/pcmcia/nsp_*
14600
14601 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
14602 M:      GOTO Masanori <gotom@debian.or.jp>
14603 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
14604 S:      Maintained
14605 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
14606 F:      Documentation/scsi/NinjaSCSI.rst
14607 F:      drivers/scsi/nsp32*
14608
14609 NINTENDO HID DRIVER
14610 M:      Daniel J. Ogorchock <djogorchock@gmail.com>
14611 L:      linux-input@vger.kernel.org
14612 S:      Maintained
14613 F:      drivers/hid/hid-nintendo*
14614
14615 NIOS2 ARCHITECTURE
14616 M:      Dinh Nguyen <dinguyen@kernel.org>
14617 S:      Maintained
14618 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
14619 F:      arch/nios2/
14620
14621 NITRO ENCLAVES (NE)
14622 M:      Alexandru Ciobotaru <alcioa@amazon.com>
14623 L:      linux-kernel@vger.kernel.org
14624 L:      The AWS Nitro Enclaves Team <aws-nitro-enclaves-devel@amazon.com>
14625 S:      Supported
14626 W:      https://aws.amazon.com/ec2/nitro/nitro-enclaves/
14627 F:      Documentation/virt/ne_overview.rst
14628 F:      drivers/virt/nitro_enclaves/
14629 F:      include/linux/nitro_enclaves.h
14630 F:      include/uapi/linux/nitro_enclaves.h
14631 F:      samples/nitro_enclaves/
14632
14633 NOHZ, DYNTICKS SUPPORT
14634 M:      Frederic Weisbecker <fweisbec@gmail.com>
14635 M:      Thomas Gleixner <tglx@linutronix.de>
14636 M:      Ingo Molnar <mingo@kernel.org>
14637 L:      linux-kernel@vger.kernel.org
14638 S:      Maintained
14639 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
14640 F:      include/linux/sched/nohz.h
14641 F:      include/linux/tick.h
14642 F:      kernel/time/tick*.*
14643
14644 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
14645 M:      Pavel Machek <pavel@ucw.cz>
14646 M:      Sakari Ailus <sakari.ailus@iki.fi>
14647 L:      linux-media@vger.kernel.org
14648 S:      Maintained
14649 F:      drivers/media/i2c/ad5820.c
14650 F:      drivers/media/i2c/et8ek8
14651
14652 NOKIA N900 POWER SUPPLY DRIVERS
14653 R:      Pali Rohár <pali@kernel.org>
14654 F:      drivers/power/supply/bq2415x_charger.c
14655 F:      drivers/power/supply/bq27xxx_battery.c
14656 F:      drivers/power/supply/bq27xxx_battery_i2c.c
14657 F:      drivers/power/supply/isp1704_charger.c
14658 F:      drivers/power/supply/rx51_battery.c
14659 F:      include/linux/power/bq2415x_charger.h
14660 F:      include/linux/power/bq27xxx_battery.h
14661
14662 NOLIBC HEADER FILE
14663 M:      Willy Tarreau <w@1wt.eu>
14664 S:      Maintained
14665 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
14666 F:      tools/include/nolibc/
14667 F:      tools/testing/selftests/nolibc/
14668
14669 NSDEPS
14670 M:      Matthias Maennich <maennich@google.com>
14671 S:      Maintained
14672 F:      Documentation/core-api/symbol-namespaces.rst
14673 F:      scripts/nsdeps
14674
14675 NTB AMD DRIVER
14676 M:      Sanjay R Mehta <sanju.mehta@amd.com>
14677 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
14678 L:      ntb@lists.linux.dev
14679 S:      Supported
14680 F:      drivers/ntb/hw/amd/
14681
14682 NTB DRIVER CORE
14683 M:      Jon Mason <jdmason@kudzu.us>
14684 M:      Dave Jiang <dave.jiang@intel.com>
14685 M:      Allen Hubbe <allenbh@gmail.com>
14686 L:      ntb@lists.linux.dev
14687 S:      Supported
14688 W:      https://github.com/jonmason/ntb/wiki
14689 T:      git git://github.com/jonmason/ntb.git
14690 F:      drivers/net/ntb_netdev.c
14691 F:      drivers/ntb/
14692 F:      drivers/pci/endpoint/functions/pci-epf-*ntb.c
14693 F:      include/linux/ntb.h
14694 F:      include/linux/ntb_transport.h
14695 F:      tools/testing/selftests/ntb/
14696
14697 NTB IDT DRIVER
14698 M:      Serge Semin <fancer.lancer@gmail.com>
14699 L:      ntb@lists.linux.dev
14700 S:      Supported
14701 F:      drivers/ntb/hw/idt/
14702
14703 NTB INTEL DRIVER
14704 M:      Dave Jiang <dave.jiang@intel.com>
14705 L:      ntb@lists.linux.dev
14706 S:      Supported
14707 W:      https://github.com/davejiang/linux/wiki
14708 T:      git https://github.com/davejiang/linux.git
14709 F:      drivers/ntb/hw/intel/
14710
14711 NTFS FILESYSTEM
14712 M:      Anton Altaparmakov <anton@tuxera.com>
14713 L:      linux-ntfs-dev@lists.sourceforge.net
14714 S:      Supported
14715 W:      http://www.tuxera.com/
14716 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
14717 F:      Documentation/filesystems/ntfs.rst
14718 F:      fs/ntfs/
14719
14720 NTFS3 FILESYSTEM
14721 M:      Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
14722 L:      ntfs3@lists.linux.dev
14723 S:      Supported
14724 W:      http://www.paragon-software.com/
14725 T:      git https://github.com/Paragon-Software-Group/linux-ntfs3.git
14726 F:      Documentation/filesystems/ntfs3.rst
14727 F:      fs/ntfs3/
14728
14729 NUBUS SUBSYSTEM
14730 M:      Finn Thain <fthain@linux-m68k.org>
14731 L:      linux-m68k@lists.linux-m68k.org
14732 S:      Maintained
14733 F:      arch/*/include/asm/nubus.h
14734 F:      drivers/nubus/
14735 F:      include/linux/nubus.h
14736 F:      include/uapi/linux/nubus.h
14737
14738 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
14739 M:      Antonino Daplas <adaplas@gmail.com>
14740 L:      linux-fbdev@vger.kernel.org
14741 S:      Maintained
14742 F:      drivers/video/fbdev/nvidia/
14743 F:      drivers/video/fbdev/riva/
14744
14745 NVIDIA WMI EC BACKLIGHT DRIVER
14746 M:      Daniel Dadap <ddadap@nvidia.com>
14747 L:      platform-driver-x86@vger.kernel.org
14748 S:      Supported
14749 F:      drivers/platform/x86/nvidia-wmi-ec-backlight.c
14750 F:      include/linux/platform_data/x86/nvidia-wmi-ec-backlight.h
14751
14752 NVM EXPRESS DRIVER
14753 M:      Keith Busch <kbusch@kernel.org>
14754 M:      Jens Axboe <axboe@fb.com>
14755 M:      Christoph Hellwig <hch@lst.de>
14756 M:      Sagi Grimberg <sagi@grimberg.me>
14757 L:      linux-nvme@lists.infradead.org
14758 S:      Supported
14759 W:      http://git.infradead.org/nvme.git
14760 T:      git://git.infradead.org/nvme.git
14761 F:      Documentation/nvme/
14762 F:      drivers/nvme/host/
14763 F:      drivers/nvme/common/
14764 F:      include/linux/nvme.h
14765 F:      include/linux/nvme-*.h
14766 F:      include/uapi/linux/nvme_ioctl.h
14767
14768 NVM EXPRESS FABRICS AUTHENTICATION
14769 M:      Hannes Reinecke <hare@suse.de>
14770 L:      linux-nvme@lists.infradead.org
14771 S:      Supported
14772 F:      drivers/nvme/host/auth.c
14773 F:      drivers/nvme/target/auth.c
14774 F:      drivers/nvme/target/fabrics-cmd-auth.c
14775 F:      include/linux/nvme-auth.h
14776
14777 NVM EXPRESS HARDWARE MONITORING SUPPORT
14778 M:      Guenter Roeck <linux@roeck-us.net>
14779 L:      linux-nvme@lists.infradead.org
14780 S:      Supported
14781 F:      drivers/nvme/host/hwmon.c
14782
14783 NVM EXPRESS FC TRANSPORT DRIVERS
14784 M:      James Smart <james.smart@broadcom.com>
14785 L:      linux-nvme@lists.infradead.org
14786 S:      Supported
14787 F:      drivers/nvme/host/fc.c
14788 F:      drivers/nvme/target/fc.c
14789 F:      drivers/nvme/target/fcloop.c
14790 F:      include/linux/nvme-fc-driver.h
14791 F:      include/linux/nvme-fc.h
14792
14793 NVM EXPRESS TARGET DRIVER
14794 M:      Christoph Hellwig <hch@lst.de>
14795 M:      Sagi Grimberg <sagi@grimberg.me>
14796 M:      Chaitanya Kulkarni <kch@nvidia.com>
14797 L:      linux-nvme@lists.infradead.org
14798 S:      Supported
14799 W:      http://git.infradead.org/nvme.git
14800 T:      git://git.infradead.org/nvme.git
14801 F:      drivers/nvme/target/
14802
14803 NVMEM FRAMEWORK
14804 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
14805 S:      Maintained
14806 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/srini/nvmem.git
14807 F:      Documentation/ABI/stable/sysfs-bus-nvmem
14808 F:      Documentation/devicetree/bindings/nvmem/
14809 F:      drivers/nvmem/
14810 F:      include/linux/nvmem-consumer.h
14811 F:      include/linux/nvmem-provider.h
14812
14813 NXP C45 TJA11XX PHY DRIVER
14814 M:      Radu Pirea <radu-nicolae.pirea@oss.nxp.com>
14815 L:      netdev@vger.kernel.org
14816 S:      Maintained
14817 F:      drivers/net/phy/nxp-c45-tja11xx.c
14818
14819 NXP FSPI DRIVER
14820 M:      Han Xu <han.xu@nxp.com>
14821 M:      Haibo Chen <haibo.chen@nxp.com>
14822 R:      Yogesh Gaur <yogeshgaur.83@gmail.com>
14823 L:      linux-spi@vger.kernel.org
14824 S:      Maintained
14825 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.yaml
14826 F:      drivers/spi/spi-nxp-fspi.c
14827
14828 NXP FXAS21002C DRIVER
14829 M:      Rui Miguel Silva <rmfrfs@gmail.com>
14830 L:      linux-iio@vger.kernel.org
14831 S:      Maintained
14832 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.yaml
14833 F:      drivers/iio/gyro/fxas21002c.h
14834 F:      drivers/iio/gyro/fxas21002c_core.c
14835 F:      drivers/iio/gyro/fxas21002c_i2c.c
14836 F:      drivers/iio/gyro/fxas21002c_spi.c
14837
14838 NXP i.MX CLOCK DRIVERS
14839 M:      Abel Vesa <abelvesa@kernel.org>
14840 L:      linux-clk@vger.kernel.org
14841 L:      linux-imx@nxp.com
14842 S:      Maintained
14843 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelvesa/linux.git clk/imx
14844 F:      Documentation/devicetree/bindings/clock/imx*
14845 F:      drivers/clk/imx/
14846 F:      include/dt-bindings/clock/imx*
14847
14848 NXP i.MX 8MQ DCSS DRIVER
14849 M:      Laurentiu Palcu <laurentiu.palcu@oss.nxp.com>
14850 R:      Lucas Stach <l.stach@pengutronix.de>
14851 L:      dri-devel@lists.freedesktop.org
14852 S:      Maintained
14853 F:      Documentation/devicetree/bindings/display/imx/nxp,imx8mq-dcss.yaml
14854 F:      drivers/gpu/drm/imx/dcss/
14855
14856 NXP i.MX 8QXP ADC DRIVER
14857 M:      Cai Huoqing <cai.huoqing@linux.dev>
14858 M:      Haibo Chen <haibo.chen@nxp.com>
14859 L:      linux-imx@nxp.com
14860 L:      linux-iio@vger.kernel.org
14861 S:      Maintained
14862 F:      Documentation/devicetree/bindings/iio/adc/nxp,imx8qxp-adc.yaml
14863 F:      drivers/iio/adc/imx8qxp-adc.c
14864
14865 NXP i.MX 7D/6SX/6UL AND VF610 ADC DRIVER
14866 M:      Haibo Chen <haibo.chen@nxp.com>
14867 L:      linux-iio@vger.kernel.org
14868 L:      linux-imx@nxp.com
14869 S:      Maintained
14870 F:      Documentation/devicetree/bindings/iio/adc/fsl,imx7d-adc.yaml
14871 F:      Documentation/devicetree/bindings/iio/adc/fsl,vf610-adc.yaml
14872 F:      drivers/iio/adc/imx7d_adc.c
14873 F:      drivers/iio/adc/vf610_adc.c
14874
14875 NXP PF8100/PF8121A/PF8200 PMIC REGULATOR DEVICE DRIVER
14876 M:      Jagan Teki <jagan@amarulasolutions.com>
14877 S:      Maintained
14878 F:      Documentation/devicetree/bindings/regulator/nxp,pf8x00-regulator.yaml
14879 F:      drivers/regulator/pf8x00-regulator.c
14880
14881 NXP PTN5150A CC LOGIC AND EXTCON DRIVER
14882 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
14883 L:      linux-kernel@vger.kernel.org
14884 S:      Maintained
14885 F:      Documentation/devicetree/bindings/extcon/extcon-ptn5150.yaml
14886 F:      drivers/extcon/extcon-ptn5150.c
14887
14888 NXP SGTL5000 DRIVER
14889 M:      Fabio Estevam <festevam@gmail.com>
14890 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14891 S:      Maintained
14892 F:      Documentation/devicetree/bindings/sound/sgtl5000.yaml
14893 F:      sound/soc/codecs/sgtl5000*
14894
14895 NXP SJA1105 ETHERNET SWITCH DRIVER
14896 M:      Vladimir Oltean <olteanv@gmail.com>
14897 L:      linux-kernel@vger.kernel.org
14898 S:      Maintained
14899 F:      drivers/net/dsa/sja1105
14900 F:      drivers/net/pcs/pcs-xpcs-nxp.c
14901
14902 NXP TDA998X DRM DRIVER
14903 M:      Russell King <linux@armlinux.org.uk>
14904 S:      Maintained
14905 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
14906 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
14907 F:      drivers/gpu/drm/i2c/tda998x_drv.c
14908 F:      include/drm/i2c/tda998x.h
14909 F:      include/dt-bindings/display/tda998x.h
14910 K:      "nxp,tda998x"
14911
14912 NXP TFA9879 DRIVER
14913 M:      Peter Rosin <peda@axentia.se>
14914 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14915 S:      Maintained
14916 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
14917 F:      sound/soc/codecs/tfa9879*
14918
14919 NXP/Goodix TFA989X (TFA1) DRIVER
14920 M:      Stephan Gerhold <stephan@gerhold.net>
14921 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14922 S:      Maintained
14923 F:      Documentation/devicetree/bindings/sound/nxp,tfa989x.yaml
14924 F:      sound/soc/codecs/tfa989x.c
14925
14926 NXP-NCI NFC DRIVER
14927 L:      linux-nfc@lists.01.org (subscribers-only)
14928 S:      Orphan
14929 F:      Documentation/devicetree/bindings/net/nfc/nxp,nci.yaml
14930 F:      drivers/nfc/nxp-nci
14931
14932 NXP i.MX 8MP DW100 V4L2 DRIVER
14933 M:      Xavier Roumegue <xavier.roumegue@oss.nxp.com>
14934 L:      linux-media@vger.kernel.org
14935 S:      Maintained
14936 F:      Documentation/devicetree/bindings/media/nxp,dw100.yaml
14937 F:      Documentation/userspace-api/media/drivers/dw100.rst
14938 F:      drivers/media/platform/nxp/dw100/
14939 F:      include/uapi/linux/dw100.h
14940
14941 NXP i.MX 8QXP/8QM JPEG V4L2 DRIVER
14942 M:      Mirela Rabulea <mirela.rabulea@nxp.com>
14943 R:      NXP Linux Team <linux-imx@nxp.com>
14944 L:      linux-media@vger.kernel.org
14945 S:      Maintained
14946 F:      Documentation/devicetree/bindings/media/nxp,imx8-jpeg.yaml
14947 F:      drivers/media/platform/nxp/imx-jpeg
14948
14949 NZXT-KRAKEN2 HARDWARE MONITORING DRIVER
14950 M:      Jonas Malaco <jonas@protocubo.io>
14951 L:      linux-hwmon@vger.kernel.org
14952 S:      Maintained
14953 F:      Documentation/hwmon/nzxt-kraken2.rst
14954 F:      drivers/hwmon/nzxt-kraken2.c
14955
14956 NZXT-SMART2 HARDWARE MONITORING DRIVER
14957 M:      Aleksandr Mezin <mezin.alexander@gmail.com>
14958 L:      linux-hwmon@vger.kernel.org
14959 S:      Maintained
14960 F:      Documentation/hwmon/nzxt-smart2.rst
14961 F:      drivers/hwmon/nzxt-smart2.c
14962
14963 OBJAGG
14964 M:      Jiri Pirko <jiri@nvidia.com>
14965 L:      netdev@vger.kernel.org
14966 S:      Supported
14967 F:      include/linux/objagg.h
14968 F:      lib/objagg.c
14969 F:      lib/test_objagg.c
14970
14971 OBJTOOL
14972 M:      Josh Poimboeuf <jpoimboe@kernel.org>
14973 M:      Peter Zijlstra <peterz@infradead.org>
14974 S:      Supported
14975 F:      tools/objtool/
14976 F:      include/linux/objtool.h
14977
14978 OCELOT ETHERNET SWITCH DRIVER
14979 M:      Vladimir Oltean <vladimir.oltean@nxp.com>
14980 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
14981 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
14982 M:      UNGLinuxDriver@microchip.com
14983 L:      netdev@vger.kernel.org
14984 S:      Supported
14985 F:      drivers/net/dsa/ocelot/*
14986 F:      drivers/net/ethernet/mscc/
14987 F:      include/soc/mscc/ocelot*
14988 F:      net/dsa/tag_ocelot.c
14989 F:      net/dsa/tag_ocelot_8021q.c
14990 F:      tools/testing/selftests/drivers/net/ocelot/*
14991
14992 OCELOT EXTERNAL SWITCH CONTROL
14993 M:      Colin Foster <colin.foster@in-advantage.com>
14994 S:      Supported
14995 F:      Documentation/devicetree/bindings/mfd/mscc,ocelot.yaml
14996 F:      drivers/mfd/ocelot*
14997 F:      include/linux/mfd/ocelot.h
14998
14999 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
15000 M:      Frederic Barrat <fbarrat@linux.ibm.com>
15001 M:      Andrew Donnellan <ajd@linux.ibm.com>
15002 L:      linuxppc-dev@lists.ozlabs.org
15003 S:      Supported
15004 F:      Documentation/userspace-api/accelerators/ocxl.rst
15005 F:      arch/powerpc/include/asm/pnv-ocxl.h
15006 F:      arch/powerpc/platforms/powernv/ocxl.c
15007 F:      drivers/misc/ocxl/
15008 F:      include/misc/ocxl*
15009 F:      include/uapi/misc/ocxl.h
15010
15011 OMAP AUDIO SUPPORT
15012 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
15013 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
15014 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15015 L:      linux-omap@vger.kernel.org
15016 S:      Maintained
15017 F:      sound/soc/ti/n810.c
15018 F:      sound/soc/ti/omap*
15019 F:      sound/soc/ti/rx51.c
15020 F:      sound/soc/ti/sdma-pcm.*
15021
15022 OMAP CLOCK FRAMEWORK SUPPORT
15023 M:      Paul Walmsley <paul@pwsan.com>
15024 L:      linux-omap@vger.kernel.org
15025 S:      Maintained
15026 F:      arch/arm/*omap*/*clock*
15027
15028 OMAP DEVICE TREE SUPPORT
15029 M:      Benoît Cousson <bcousson@baylibre.com>
15030 M:      Tony Lindgren <tony@atomide.com>
15031 L:      linux-omap@vger.kernel.org
15032 L:      devicetree@vger.kernel.org
15033 S:      Maintained
15034 F:      arch/arm/boot/dts/*am3*
15035 F:      arch/arm/boot/dts/*am4*
15036 F:      arch/arm/boot/dts/*am5*
15037 F:      arch/arm/boot/dts/*dra7*
15038 F:      arch/arm/boot/dts/*omap*
15039 F:      arch/arm/boot/dts/logicpd-som-lv*
15040 F:      arch/arm/boot/dts/logicpd-torpedo*
15041
15042 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
15043 L:      linux-omap@vger.kernel.org
15044 L:      linux-fbdev@vger.kernel.org
15045 S:      Orphan
15046 F:      Documentation/arm/omap/dss.rst
15047 F:      drivers/video/fbdev/omap2/
15048
15049 OMAP FRAMEBUFFER SUPPORT
15050 L:      linux-fbdev@vger.kernel.org
15051 L:      linux-omap@vger.kernel.org
15052 S:      Orphan
15053 F:      drivers/video/fbdev/omap/
15054
15055 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
15056 M:      Roger Quadros <rogerq@kernel.org>
15057 M:      Tony Lindgren <tony@atomide.com>
15058 L:      linux-omap@vger.kernel.org
15059 S:      Maintained
15060 F:      arch/arm/mach-omap2/*gpmc*
15061 F:      drivers/memory/omap-gpmc.c
15062
15063 OMAP GPIO DRIVER
15064 M:      Grygorii Strashko <grygorii.strashko@ti.com>
15065 M:      Santosh Shilimkar <ssantosh@kernel.org>
15066 M:      Kevin Hilman <khilman@kernel.org>
15067 L:      linux-omap@vger.kernel.org
15068 S:      Maintained
15069 F:      Documentation/devicetree/bindings/gpio/ti,omap-gpio.yaml
15070 F:      drivers/gpio/gpio-omap.c
15071
15072 OMAP HARDWARE SPINLOCK SUPPORT
15073 M:      Ohad Ben-Cohen <ohad@wizery.com>
15074 L:      linux-omap@vger.kernel.org
15075 S:      Maintained
15076 F:      drivers/hwspinlock/omap_hwspinlock.c
15077
15078 OMAP HS MMC SUPPORT
15079 L:      linux-mmc@vger.kernel.org
15080 L:      linux-omap@vger.kernel.org
15081 S:      Orphan
15082 F:      drivers/mmc/host/omap_hsmmc.c
15083
15084 OMAP HWMOD DATA
15085 M:      Paul Walmsley <paul@pwsan.com>
15086 L:      linux-omap@vger.kernel.org
15087 S:      Maintained
15088 F:      arch/arm/mach-omap2/omap_hwmod*data*
15089
15090 OMAP HWMOD SUPPORT
15091 M:      Benoît Cousson <bcousson@baylibre.com>
15092 M:      Paul Walmsley <paul@pwsan.com>
15093 L:      linux-omap@vger.kernel.org
15094 S:      Maintained
15095 F:      arch/arm/mach-omap2/omap_hwmod.*
15096
15097 OMAP I2C DRIVER
15098 M:      Vignesh R <vigneshr@ti.com>
15099 L:      linux-omap@vger.kernel.org
15100 L:      linux-i2c@vger.kernel.org
15101 S:      Maintained
15102 F:      Documentation/devicetree/bindings/i2c/ti,omap4-i2c.yaml
15103 F:      drivers/i2c/busses/i2c-omap.c
15104
15105 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
15106 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
15107 L:      linux-media@vger.kernel.org
15108 S:      Maintained
15109 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
15110 F:      drivers/media/platform/ti/omap3isp/
15111 F:      drivers/staging/media/omap4iss/
15112
15113 OMAP MMC SUPPORT
15114 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
15115 L:      linux-omap@vger.kernel.org
15116 S:      Odd Fixes
15117 F:      drivers/mmc/host/omap.c
15118
15119 OMAP POWER MANAGEMENT SUPPORT
15120 M:      Kevin Hilman <khilman@kernel.org>
15121 L:      linux-omap@vger.kernel.org
15122 S:      Maintained
15123 F:      arch/arm/*omap*/*pm*
15124 F:      drivers/cpufreq/omap-cpufreq.c
15125
15126 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
15127 M:      Paul Walmsley <paul@pwsan.com>
15128 L:      linux-omap@vger.kernel.org
15129 S:      Maintained
15130 F:      arch/arm/mach-omap2/prm*
15131
15132 OMAP RANDOM NUMBER GENERATOR SUPPORT
15133 M:      Deepak Saxena <dsaxena@plexity.net>
15134 S:      Maintained
15135 F:      drivers/char/hw_random/omap-rng.c
15136
15137 OMAP USB SUPPORT
15138 L:      linux-usb@vger.kernel.org
15139 L:      linux-omap@vger.kernel.org
15140 S:      Orphan
15141 F:      arch/arm/*omap*/usb*
15142 F:      drivers/usb/*/*omap*
15143
15144 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
15145 M:      Mark Jackson <mpfj@newflow.co.uk>
15146 L:      linux-omap@vger.kernel.org
15147 S:      Maintained
15148 F:      arch/arm/boot/dts/am335x-nano.dts
15149
15150 OMAP1 SUPPORT
15151 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
15152 M:      Janusz Krzysztofik <jmkrzyszt@gmail.com>
15153 M:      Tony Lindgren <tony@atomide.com>
15154 L:      linux-omap@vger.kernel.org
15155 S:      Maintained
15156 Q:      http://patchwork.kernel.org/project/linux-omap/list/
15157 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
15158 F:      arch/arm/configs/omap1_defconfig
15159 F:      arch/arm/mach-omap1/
15160 F:      drivers/i2c/busses/i2c-omap.c
15161 F:      include/linux/platform_data/ams-delta-fiq.h
15162 F:      include/linux/platform_data/i2c-omap.h
15163
15164 OMAP2+ SUPPORT
15165 M:      Tony Lindgren <tony@atomide.com>
15166 L:      linux-omap@vger.kernel.org
15167 S:      Maintained
15168 W:      http://www.muru.com/linux/omap/
15169 W:      http://linux.omap.com/
15170 Q:      http://patchwork.kernel.org/project/linux-omap/list/
15171 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
15172 F:      arch/arm/configs/omap2plus_defconfig
15173 F:      arch/arm/mach-omap2/
15174 F:      drivers/bus/ti-sysc.c
15175 F:      drivers/i2c/busses/i2c-omap.c
15176 F:      drivers/irqchip/irq-omap-intc.c
15177 F:      drivers/mfd/*omap*.c
15178 F:      drivers/mfd/menelaus.c
15179 F:      drivers/mfd/palmas.c
15180 F:      drivers/mfd/tps65217.c
15181 F:      drivers/mfd/tps65218.c
15182 F:      drivers/mfd/tps65219.c
15183 F:      drivers/mfd/tps65910.c
15184 F:      drivers/mfd/twl-core.[ch]
15185 F:      drivers/mfd/twl4030*.c
15186 F:      drivers/mfd/twl6030*.c
15187 F:      drivers/mfd/twl6040*.c
15188 F:      drivers/regulator/palmas-regulator*.c
15189 F:      drivers/regulator/pbias-regulator.c
15190 F:      drivers/regulator/tps65217-regulator.c
15191 F:      drivers/regulator/tps65218-regulator.c
15192 F:      drivers/regulator/tps65219-regulator.c
15193 F:      drivers/regulator/tps65910-regulator.c
15194 F:      drivers/regulator/twl-regulator.c
15195 F:      drivers/regulator/twl6030-regulator.c
15196 F:      include/linux/platform_data/i2c-omap.h
15197 F:      include/linux/platform_data/ti-sysc.h
15198
15199 OMFS FILESYSTEM
15200 M:      Bob Copeland <me@bobcopeland.com>
15201 L:      linux-karma-devel@lists.sourceforge.net
15202 S:      Maintained
15203 F:      Documentation/filesystems/omfs.rst
15204 F:      fs/omfs/
15205
15206 OMNIKEY CARDMAN 4000 DRIVER
15207 M:      Harald Welte <laforge@gnumonks.org>
15208 S:      Maintained
15209 F:      drivers/char/pcmcia/cm4000_cs.c
15210 F:      include/linux/cm4000_cs.h
15211 F:      include/uapi/linux/cm4000_cs.h
15212
15213 OMNIKEY CARDMAN 4040 DRIVER
15214 M:      Harald Welte <laforge@gnumonks.org>
15215 S:      Maintained
15216 F:      drivers/char/pcmcia/cm4040_cs.*
15217
15218 OMNIVISION OG01A1B SENSOR DRIVER
15219 M:      Shawn Tu <shawnx.tu@intel.com>
15220 L:      linux-media@vger.kernel.org
15221 S:      Maintained
15222 F:      drivers/media/i2c/og01a1b.c
15223
15224 OMNIVISION OV02A10 SENSOR DRIVER
15225 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
15226 L:      linux-media@vger.kernel.org
15227 S:      Maintained
15228 T:      git git://linuxtv.org/media_tree.git
15229 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov02a10.yaml
15230 F:      drivers/media/i2c/ov02a10.c
15231
15232 OMNIVISION OV08D10 SENSOR DRIVER
15233 M:      Jimmy Su <jimmy.su@intel.com>
15234 L:      linux-media@vger.kernel.org
15235 S:      Maintained
15236 T:      git git://linuxtv.org/media_tree.git
15237 F:      drivers/media/i2c/ov08d10.c
15238
15239 OMNIVISION OV08X40 SENSOR DRIVER
15240 M:      Jason Chen <jason.z.chen@intel.com>
15241 L:      linux-media@vger.kernel.org
15242 S:      Maintained
15243 T:      git git://linuxtv.org/media_tree.git
15244 F:      drivers/media/i2c/ov08x40.c
15245
15246 OMNIVISION OV13858 SENSOR DRIVER
15247 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
15248 L:      linux-media@vger.kernel.org
15249 S:      Maintained
15250 T:      git git://linuxtv.org/media_tree.git
15251 F:      drivers/media/i2c/ov13858.c
15252
15253 OMNIVISION OV13B10 SENSOR DRIVER
15254 M:      Arec Kao <arec.kao@intel.com>
15255 L:      linux-media@vger.kernel.org
15256 S:      Maintained
15257 T:      git git://linuxtv.org/media_tree.git
15258 F:      drivers/media/i2c/ov13b10.c
15259
15260 OMNIVISION OV2680 SENSOR DRIVER
15261 M:      Rui Miguel Silva <rmfrfs@gmail.com>
15262 L:      linux-media@vger.kernel.org
15263 S:      Maintained
15264 T:      git git://linuxtv.org/media_tree.git
15265 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov2680.yaml
15266 F:      drivers/media/i2c/ov2680.c
15267
15268 OMNIVISION OV2685 SENSOR DRIVER
15269 M:      Shunqian Zheng <zhengsq@rock-chips.com>
15270 L:      linux-media@vger.kernel.org
15271 S:      Maintained
15272 T:      git git://linuxtv.org/media_tree.git
15273 F:      drivers/media/i2c/ov2685.c
15274
15275 OMNIVISION OV2740 SENSOR DRIVER
15276 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
15277 R:      Shawn Tu <shawnx.tu@intel.com>
15278 R:      Bingbu Cao <bingbu.cao@intel.com>
15279 L:      linux-media@vger.kernel.org
15280 S:      Maintained
15281 T:      git git://linuxtv.org/media_tree.git
15282 F:      drivers/media/i2c/ov2740.c
15283
15284 OMNIVISION OV4689 SENSOR DRIVER
15285 M:      Mikhail Rudenko <mike.rudenko@gmail.com>
15286 L:      linux-media@vger.kernel.org
15287 S:      Maintained
15288 T:      git git://linuxtv.org/media_tree.git
15289 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov4689.yaml
15290 F:      drivers/media/i2c/ov5647.c
15291
15292 OMNIVISION OV5640 SENSOR DRIVER
15293 M:      Steve Longerbeam <slongerbeam@gmail.com>
15294 L:      linux-media@vger.kernel.org
15295 S:      Maintained
15296 T:      git git://linuxtv.org/media_tree.git
15297 F:      drivers/media/i2c/ov5640.c
15298
15299 OMNIVISION OV5647 SENSOR DRIVER
15300 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
15301 M:      Jacopo Mondi <jacopo@jmondi.org>
15302 L:      linux-media@vger.kernel.org
15303 S:      Maintained
15304 T:      git git://linuxtv.org/media_tree.git
15305 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5647.yaml
15306 F:      drivers/media/i2c/ov5647.c
15307
15308 OMNIVISION OV5670 SENSOR DRIVER
15309 M:      Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
15310 L:      linux-media@vger.kernel.org
15311 S:      Maintained
15312 T:      git git://linuxtv.org/media_tree.git
15313 F:      drivers/media/i2c/ov5670.c
15314
15315 OMNIVISION OV5675 SENSOR DRIVER
15316 M:      Shawn Tu <shawnx.tu@intel.com>
15317 L:      linux-media@vger.kernel.org
15318 S:      Maintained
15319 T:      git git://linuxtv.org/media_tree.git
15320 F:      drivers/media/i2c/ov5675.c
15321
15322 OMNIVISION OV5693 SENSOR DRIVER
15323 M:      Daniel Scally <djrscally@gmail.com>
15324 L:      linux-media@vger.kernel.org
15325 S:      Maintained
15326 T:      git git://linuxtv.org/media_tree.git
15327 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5693.yaml
15328 F:      drivers/media/i2c/ov5693.c
15329
15330 OMNIVISION OV5695 SENSOR DRIVER
15331 M:      Shunqian Zheng <zhengsq@rock-chips.com>
15332 L:      linux-media@vger.kernel.org
15333 S:      Maintained
15334 T:      git git://linuxtv.org/media_tree.git
15335 F:      drivers/media/i2c/ov5695.c
15336
15337 OMNIVISION OV7670 SENSOR DRIVER
15338 L:      linux-media@vger.kernel.org
15339 S:      Orphan
15340 T:      git git://linuxtv.org/media_tree.git
15341 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
15342 F:      drivers/media/i2c/ov7670.c
15343
15344 OMNIVISION OV772x SENSOR DRIVER
15345 M:      Jacopo Mondi <jacopo@jmondi.org>
15346 L:      linux-media@vger.kernel.org
15347 S:      Odd fixes
15348 T:      git git://linuxtv.org/media_tree.git
15349 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov772x.yaml
15350 F:      drivers/media/i2c/ov772x.c
15351 F:      include/media/i2c/ov772x.h
15352
15353 OMNIVISION OV7740 SENSOR DRIVER
15354 M:      Wenyou Yang <wenyou.yang@microchip.com>
15355 L:      linux-media@vger.kernel.org
15356 S:      Maintained
15357 T:      git git://linuxtv.org/media_tree.git
15358 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
15359 F:      drivers/media/i2c/ov7740.c
15360
15361 OMNIVISION OV8856 SENSOR DRIVER
15362 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
15363 L:      linux-media@vger.kernel.org
15364 S:      Maintained
15365 T:      git git://linuxtv.org/media_tree.git
15366 F:      Documentation/devicetree/bindings/media/i2c/ov8856.yaml
15367 F:      drivers/media/i2c/ov8856.c
15368
15369 OMNIVISION OV9282 SENSOR DRIVER
15370 M:      Paul J. Murphy <paul.j.murphy@intel.com>
15371 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
15372 L:      linux-media@vger.kernel.org
15373 S:      Maintained
15374 T:      git git://linuxtv.org/media_tree.git
15375 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov9282.yaml
15376 F:      drivers/media/i2c/ov9282.c
15377
15378 OMNIVISION OV9640 SENSOR DRIVER
15379 M:      Petr Cvek <petrcvekcz@gmail.com>
15380 L:      linux-media@vger.kernel.org
15381 S:      Maintained
15382 F:      drivers/media/i2c/ov9640.*
15383
15384 OMNIVISION OV9650 SENSOR DRIVER
15385 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
15386 R:      Akinobu Mita <akinobu.mita@gmail.com>
15387 R:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15388 L:      linux-media@vger.kernel.org
15389 S:      Maintained
15390 T:      git git://linuxtv.org/media_tree.git
15391 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
15392 F:      drivers/media/i2c/ov9650.c
15393
15394 OMNIVISION OV9734 SENSOR DRIVER
15395 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
15396 R:      Bingbu Cao <bingbu.cao@intel.com>
15397 L:      linux-media@vger.kernel.org
15398 S:      Maintained
15399 T:      git git://linuxtv.org/media_tree.git
15400 F:      drivers/media/i2c/ov9734.c
15401
15402 ONBOARD USB HUB DRIVER
15403 M:      Matthias Kaehlcke <mka@chromium.org>
15404 L:      linux-usb@vger.kernel.org
15405 S:      Maintained
15406 F:      Documentation/ABI/testing/sysfs-bus-platform-onboard-usb-hub
15407 F:      drivers/usb/misc/onboard_usb_hub.c
15408
15409 ONENAND FLASH DRIVER
15410 M:      Kyungmin Park <kyungmin.park@samsung.com>
15411 L:      linux-mtd@lists.infradead.org
15412 S:      Maintained
15413 F:      drivers/mtd/nand/onenand/
15414 F:      include/linux/mtd/onenand*.h
15415
15416 ONEXPLAYER FAN DRIVER
15417 M:      Joaquín Ignacio Aramendía <samsagax@gmail.com>
15418 L:      linux-hwmon@vger.kernel.org
15419 S:      Maintained
15420 F:      drivers/hwmon/oxp-sensors.c
15421
15422 ONION OMEGA2+ BOARD
15423 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
15424 L:      linux-mips@vger.kernel.org
15425 S:      Maintained
15426 F:      arch/mips/boot/dts/ralink/omega2p.dts
15427
15428 OP-TEE DRIVER
15429 M:      Jens Wiklander <jens.wiklander@linaro.org>
15430 L:      op-tee@lists.trustedfirmware.org
15431 S:      Maintained
15432 F:      Documentation/ABI/testing/sysfs-bus-optee-devices
15433 F:      drivers/tee/optee/
15434
15435 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
15436 M:      Sumit Garg <sumit.garg@linaro.org>
15437 L:      op-tee@lists.trustedfirmware.org
15438 S:      Maintained
15439 F:      drivers/char/hw_random/optee-rng.c
15440
15441 OP-TEE RTC DRIVER
15442 M:      Clément Léger <clement.leger@bootlin.com>
15443 L:      linux-rtc@vger.kernel.org
15444 S:      Maintained
15445 F:      drivers/rtc/rtc-optee.c
15446
15447 OPA-VNIC DRIVER
15448 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
15449 L:      linux-rdma@vger.kernel.org
15450 S:      Supported
15451 F:      drivers/infiniband/ulp/opa_vnic
15452
15453 OPEN FIRMWARE AND FLATTENED DEVICE TREE
15454 M:      Rob Herring <robh+dt@kernel.org>
15455 M:      Frank Rowand <frowand.list@gmail.com>
15456 L:      devicetree@vger.kernel.org
15457 S:      Maintained
15458 C:      irc://irc.libera.chat/devicetree
15459 W:      http://www.devicetree.org/
15460 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
15461 F:      Documentation/ABI/testing/sysfs-firmware-ofw
15462 F:      drivers/of/
15463 F:      include/linux/of*.h
15464 F:      scripts/dtc/
15465 K:      of_overlay_notifier_
15466 K:      of_overlay_fdt_apply
15467 K:      of_overlay_remove
15468
15469 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
15470 M:      Rob Herring <robh+dt@kernel.org>
15471 M:      Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>
15472 L:      devicetree@vger.kernel.org
15473 S:      Maintained
15474 C:      irc://irc.libera.chat/devicetree
15475 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
15476 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
15477 F:      Documentation/devicetree/
15478 F:      arch/*/boot/dts/
15479 F:      include/dt-bindings/
15480
15481 OPENCOMPUTE PTP CLOCK DRIVER
15482 M:      Jonathan Lemon <jonathan.lemon@gmail.com>
15483 M:      Vadim Fedorenko <vadfed@fb.com>
15484 L:      netdev@vger.kernel.org
15485 S:      Maintained
15486 F:      drivers/ptp/ptp_ocp.c
15487
15488 OPENCORES I2C BUS DRIVER
15489 M:      Peter Korsgaard <peter@korsgaard.com>
15490 M:      Andrew Lunn <andrew@lunn.ch>
15491 L:      linux-i2c@vger.kernel.org
15492 S:      Maintained
15493 F:      Documentation/devicetree/bindings/i2c/opencores,i2c-ocores.yaml
15494 F:      Documentation/i2c/busses/i2c-ocores.rst
15495 F:      drivers/i2c/busses/i2c-ocores.c
15496 F:      include/linux/platform_data/i2c-ocores.h
15497
15498 OPENRISC ARCHITECTURE
15499 M:      Jonas Bonn <jonas@southpole.se>
15500 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
15501 M:      Stafford Horne <shorne@gmail.com>
15502 L:      linux-openrisc@vger.kernel.org
15503 S:      Maintained
15504 W:      http://openrisc.io
15505 T:      git https://github.com/openrisc/linux.git
15506 F:      Documentation/devicetree/bindings/openrisc/
15507 F:      Documentation/openrisc/
15508 F:      arch/openrisc/
15509 F:      drivers/irqchip/irq-ompic.c
15510 F:      drivers/irqchip/irq-or1k-*
15511
15512 OPENVSWITCH
15513 M:      Pravin B Shelar <pshelar@ovn.org>
15514 L:      netdev@vger.kernel.org
15515 L:      dev@openvswitch.org
15516 S:      Maintained
15517 W:      http://openvswitch.org
15518 F:      include/uapi/linux/openvswitch.h
15519 F:      net/openvswitch/
15520 F:      tools/testing/selftests/net/openvswitch/
15521
15522 OPERATING PERFORMANCE POINTS (OPP)
15523 M:      Viresh Kumar <vireshk@kernel.org>
15524 M:      Nishanth Menon <nm@ti.com>
15525 M:      Stephen Boyd <sboyd@kernel.org>
15526 L:      linux-pm@vger.kernel.org
15527 S:      Maintained
15528 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
15529 F:      Documentation/devicetree/bindings/opp/
15530 F:      Documentation/power/opp.rst
15531 F:      drivers/opp/
15532 F:      include/linux/pm_opp.h
15533
15534 OPL4 DRIVER
15535 M:      Clemens Ladisch <clemens@ladisch.de>
15536 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15537 S:      Maintained
15538 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
15539 F:      sound/drivers/opl4/
15540
15541 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
15542 M:      Mark Fasheh <mark@fasheh.com>
15543 M:      Joel Becker <jlbec@evilplan.org>
15544 M:      Joseph Qi <joseph.qi@linux.alibaba.com>
15545 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
15546 S:      Supported
15547 W:      http://ocfs2.wiki.kernel.org
15548 F:      Documentation/filesystems/dlmfs.rst
15549 F:      Documentation/filesystems/ocfs2.rst
15550 F:      fs/ocfs2/
15551
15552 ORANGEFS FILESYSTEM
15553 M:      Mike Marshall <hubcap@omnibond.com>
15554 R:      Martin Brandenburg <martin@omnibond.com>
15555 L:      devel@lists.orangefs.org
15556 S:      Supported
15557 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
15558 F:      Documentation/filesystems/orangefs.rst
15559 F:      fs/orangefs/
15560
15561 ORINOCO DRIVER
15562 L:      linux-wireless@vger.kernel.org
15563 S:      Orphan
15564 W:      https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
15565 W:      http://www.nongnu.org/orinoco/
15566 F:      drivers/net/wireless/intersil/orinoco/
15567
15568 OV2659 OMNIVISION SENSOR DRIVER
15569 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
15570 L:      linux-media@vger.kernel.org
15571 S:      Maintained
15572 W:      https://linuxtv.org
15573 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15574 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
15575 F:      drivers/media/i2c/ov2659.c
15576 F:      include/media/i2c/ov2659.h
15577
15578 OVERLAY FILESYSTEM
15579 M:      Miklos Szeredi <miklos@szeredi.hu>
15580 L:      linux-unionfs@vger.kernel.org
15581 S:      Supported
15582 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
15583 F:      Documentation/filesystems/overlayfs.rst
15584 F:      fs/overlayfs/
15585
15586 P54 WIRELESS DRIVER
15587 M:      Christian Lamparter <chunkeey@googlemail.com>
15588 L:      linux-wireless@vger.kernel.org
15589 S:      Maintained
15590 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
15591 F:      drivers/net/wireless/intersil/p54/
15592
15593 PACKET SOCKETS
15594 M:      Willem de Bruijn <willemdebruijn.kernel@gmail.com>
15595 S:      Maintained
15596 F:      include/uapi/linux/if_packet.h
15597 F:      net/packet/af_packet.c
15598
15599 PACKING
15600 M:      Vladimir Oltean <olteanv@gmail.com>
15601 L:      netdev@vger.kernel.org
15602 S:      Supported
15603 F:      Documentation/core-api/packing.rst
15604 F:      include/linux/packing.h
15605 F:      lib/packing.c
15606
15607 PADATA PARALLEL EXECUTION MECHANISM
15608 M:      Steffen Klassert <steffen.klassert@secunet.com>
15609 M:      Daniel Jordan <daniel.m.jordan@oracle.com>
15610 L:      linux-crypto@vger.kernel.org
15611 L:      linux-kernel@vger.kernel.org
15612 S:      Maintained
15613 F:      Documentation/core-api/padata.rst
15614 F:      include/linux/padata.h
15615 F:      kernel/padata.c
15616
15617 PAGE CACHE
15618 M:      Matthew Wilcox (Oracle) <willy@infradead.org>
15619 L:      linux-fsdevel@vger.kernel.org
15620 S:      Supported
15621 T:      git git://git.infradead.org/users/willy/pagecache.git
15622 F:      Documentation/filesystems/locking.rst
15623 F:      Documentation/filesystems/vfs.rst
15624 F:      include/linux/pagemap.h
15625 F:      mm/filemap.c
15626 F:      mm/page-writeback.c
15627 F:      mm/readahead.c
15628 F:      mm/truncate.c
15629
15630 PAGE POOL
15631 M:      Jesper Dangaard Brouer <hawk@kernel.org>
15632 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
15633 L:      netdev@vger.kernel.org
15634 S:      Supported
15635 F:      Documentation/networking/page_pool.rst
15636 F:      include/net/page_pool.h
15637 F:      include/trace/events/page_pool.h
15638 F:      net/core/page_pool.c
15639
15640 PAGE TABLE CHECK
15641 M:      Pasha Tatashin <pasha.tatashin@soleen.com>
15642 M:      Andrew Morton <akpm@linux-foundation.org>
15643 L:      linux-mm@kvack.org
15644 S:      Maintained
15645 F:      Documentation/mm/page_table_check.rst
15646 F:      include/linux/page_table_check.h
15647 F:      mm/page_table_check.c
15648
15649 PANASONIC LAPTOP ACPI EXTRAS DRIVER
15650 M:      Kenneth Chan <kenneth.t.chan@gmail.com>
15651 L:      platform-driver-x86@vger.kernel.org
15652 S:      Maintained
15653 F:      drivers/platform/x86/panasonic-laptop.c
15654
15655 PARALLAX PING IIO SENSOR DRIVER
15656 M:      Andreas Klinger <ak@it-klinger.de>
15657 L:      linux-iio@vger.kernel.org
15658 S:      Maintained
15659 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
15660 F:      drivers/iio/proximity/ping.c
15661
15662 PARALLEL LCD/KEYPAD PANEL DRIVER
15663 M:      Willy Tarreau <willy@haproxy.com>
15664 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
15665 S:      Odd Fixes
15666 F:      Documentation/admin-guide/lcd-panel-cgram.rst
15667 F:      drivers/auxdisplay/panel.c
15668
15669 PARALLEL PORT SUBSYSTEM
15670 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
15671 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
15672 L:      linux-parport@lists.infradead.org (subscribers-only)
15673 S:      Maintained
15674 F:      Documentation/driver-api/parport*.rst
15675 F:      drivers/char/ppdev.c
15676 F:      drivers/parport/
15677 F:      include/linux/parport*.h
15678 F:      include/uapi/linux/ppdev.h
15679
15680 PARAVIRT_OPS INTERFACE
15681 M:      Juergen Gross <jgross@suse.com>
15682 M:      Srivatsa S. Bhat (VMware) <srivatsa@csail.mit.edu>
15683 R:      Alexey Makhalov <amakhalov@vmware.com>
15684 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
15685 L:      virtualization@lists.linux-foundation.org
15686 L:      x86@kernel.org
15687 S:      Supported
15688 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
15689 F:      Documentation/virt/paravirt_ops.rst
15690 F:      arch/*/include/asm/paravirt*.h
15691 F:      arch/*/kernel/paravirt*
15692 F:      include/linux/hypervisor.h
15693
15694 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
15695 M:      Tim Waugh <tim@cyberelk.net>
15696 L:      linux-parport@lists.infradead.org (subscribers-only)
15697 S:      Maintained
15698 F:      Documentation/admin-guide/blockdev/paride.rst
15699 F:      drivers/block/paride/
15700
15701 PARISC ARCHITECTURE
15702 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
15703 M:      Helge Deller <deller@gmx.de>
15704 L:      linux-parisc@vger.kernel.org
15705 S:      Maintained
15706 W:      https://parisc.wiki.kernel.org
15707 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
15708 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
15709 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
15710 F:      Documentation/parisc/
15711 F:      arch/parisc/
15712 F:      drivers/char/agp/parisc-agp.c
15713 F:      drivers/input/misc/hp_sdc_rtc.c
15714 F:      drivers/input/serio/gscps2.c
15715 F:      drivers/input/serio/hp_sdc*
15716 F:      drivers/parisc/
15717 F:      drivers/parport/parport_gsc.*
15718 F:      drivers/tty/serial/8250/8250_parisc.c
15719 F:      drivers/video/console/sti*
15720 F:      drivers/video/fbdev/sti*
15721 F:      drivers/video/logo/logo_parisc*
15722 F:      include/linux/hp_sdc.h
15723
15724 PARMAN
15725 M:      Jiri Pirko <jiri@nvidia.com>
15726 L:      netdev@vger.kernel.org
15727 S:      Supported
15728 F:      include/linux/parman.h
15729 F:      lib/parman.c
15730 F:      lib/test_parman.c
15731
15732 PC ENGINES APU BOARD DRIVER
15733 M:      Enrico Weigelt, metux IT consult <info@metux.net>
15734 S:      Maintained
15735 F:      drivers/platform/x86/pcengines-apuv2.c
15736
15737 PC87360 HARDWARE MONITORING DRIVER
15738 M:      Jim Cromie <jim.cromie@gmail.com>
15739 L:      linux-hwmon@vger.kernel.org
15740 S:      Maintained
15741 F:      Documentation/hwmon/pc87360.rst
15742 F:      drivers/hwmon/pc87360.c
15743
15744 PC8736x GPIO DRIVER
15745 M:      Jim Cromie <jim.cromie@gmail.com>
15746 S:      Maintained
15747 F:      drivers/char/pc8736x_gpio.c
15748
15749 PC87427 HARDWARE MONITORING DRIVER
15750 M:      Jean Delvare <jdelvare@suse.com>
15751 L:      linux-hwmon@vger.kernel.org
15752 S:      Maintained
15753 F:      Documentation/hwmon/pc87427.rst
15754 F:      drivers/hwmon/pc87427.c
15755
15756 PCA9532 LED DRIVER
15757 M:      Riku Voipio <riku.voipio@iki.fi>
15758 S:      Maintained
15759 F:      drivers/leds/leds-pca9532.c
15760 F:      include/linux/leds-pca9532.h
15761
15762 PCA9541 I2C BUS MASTER SELECTOR DRIVER
15763 M:      Guenter Roeck <linux@roeck-us.net>
15764 L:      linux-i2c@vger.kernel.org
15765 S:      Maintained
15766 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
15767
15768 PCDP - PRIMARY CONSOLE AND DEBUG PORT
15769 M:      Khalid Aziz <khalid@gonehiking.org>
15770 S:      Maintained
15771 F:      drivers/firmware/pcdp.*
15772
15773 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
15774 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
15775 M:      Pali Rohár <pali@kernel.org>
15776 L:      linux-pci@vger.kernel.org
15777 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15778 S:      Maintained
15779 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
15780 F:      drivers/pci/controller/pci-aardvark.c
15781
15782 PCI DRIVER FOR ALTERA PCIE IP
15783 M:      Joyce Ooi <joyce.ooi@intel.com>
15784 L:      linux-pci@vger.kernel.org
15785 S:      Supported
15786 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
15787 F:      drivers/pci/controller/pcie-altera.c
15788
15789 PCI DRIVER FOR APPLIEDMICRO XGENE
15790 M:      Toan Le <toan@os.amperecomputing.com>
15791 L:      linux-pci@vger.kernel.org
15792 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15793 S:      Maintained
15794 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
15795 F:      drivers/pci/controller/pci-xgene.c
15796
15797 PCI DRIVER FOR ARM VERSATILE PLATFORM
15798 M:      Rob Herring <robh@kernel.org>
15799 L:      linux-pci@vger.kernel.org
15800 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15801 S:      Maintained
15802 F:      Documentation/devicetree/bindings/pci/versatile.yaml
15803 F:      drivers/pci/controller/pci-versatile.c
15804
15805 PCI DRIVER FOR ARMADA 8K
15806 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
15807 L:      linux-pci@vger.kernel.org
15808 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15809 S:      Maintained
15810 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
15811 F:      drivers/pci/controller/dwc/pcie-armada8k.c
15812
15813 PCI DRIVER FOR CADENCE PCIE IP
15814 M:      Tom Joseph <tjoseph@cadence.com>
15815 L:      linux-pci@vger.kernel.org
15816 S:      Maintained
15817 F:      Documentation/devicetree/bindings/pci/cdns,*
15818 F:      drivers/pci/controller/cadence/
15819
15820 PCI DRIVER FOR FREESCALE LAYERSCAPE
15821 M:      Minghuan Lian <minghuan.Lian@nxp.com>
15822 M:      Mingkai Hu <mingkai.hu@nxp.com>
15823 M:      Roy Zang <roy.zang@nxp.com>
15824 L:      linuxppc-dev@lists.ozlabs.org
15825 L:      linux-pci@vger.kernel.org
15826 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15827 S:      Maintained
15828 F:      drivers/pci/controller/dwc/*layerscape*
15829
15830 PCI DRIVER FOR GENERIC OF HOSTS
15831 M:      Will Deacon <will@kernel.org>
15832 L:      linux-pci@vger.kernel.org
15833 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15834 S:      Maintained
15835 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
15836 F:      drivers/pci/controller/pci-host-common.c
15837 F:      drivers/pci/controller/pci-host-generic.c
15838
15839 PCI DRIVER FOR IMX6
15840 M:      Richard Zhu <hongxing.zhu@nxp.com>
15841 M:      Lucas Stach <l.stach@pengutronix.de>
15842 L:      linux-pci@vger.kernel.org
15843 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15844 S:      Maintained
15845 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.yaml
15846 F:      drivers/pci/controller/dwc/*imx6*
15847
15848 PCI DRIVER FOR FU740
15849 M:      Paul Walmsley <paul.walmsley@sifive.com>
15850 M:      Greentime Hu <greentime.hu@sifive.com>
15851 L:      linux-pci@vger.kernel.org
15852 S:      Maintained
15853 F:      Documentation/devicetree/bindings/pci/sifive,fu740-pcie.yaml
15854 F:      drivers/pci/controller/dwc/pcie-fu740.c
15855
15856 PCI DRIVER FOR INTEL IXP4XX
15857 M:      Linus Walleij <linus.walleij@linaro.org>
15858 S:      Maintained
15859 F:      Documentation/devicetree/bindings/pci/intel,ixp4xx-pci.yaml
15860 F:      drivers/pci/controller/pci-ixp4xx.c
15861
15862 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
15863 M:      Nirmal Patel <nirmal.patel@linux.intel.com>
15864 R:      Jonathan Derrick <jonathan.derrick@linux.dev>
15865 L:      linux-pci@vger.kernel.org
15866 S:      Supported
15867 F:      drivers/pci/controller/vmd.c
15868
15869 PCI DRIVER FOR MICROSEMI SWITCHTEC
15870 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
15871 M:      Logan Gunthorpe <logang@deltatee.com>
15872 L:      linux-pci@vger.kernel.org
15873 S:      Maintained
15874 F:      Documentation/ABI/testing/sysfs-class-switchtec
15875 F:      Documentation/driver-api/switchtec.rst
15876 F:      drivers/ntb/hw/mscc/
15877 F:      drivers/pci/switch/switchtec*
15878 F:      include/linux/switchtec.h
15879 F:      include/uapi/linux/switchtec_ioctl.h
15880
15881 PCI DRIVER FOR MOBIVEIL PCIE IP
15882 M:      Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
15883 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
15884 L:      linux-pci@vger.kernel.org
15885 S:      Supported
15886 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
15887 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
15888
15889 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
15890 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
15891 M:      Pali Rohár <pali@kernel.org>
15892 L:      linux-pci@vger.kernel.org
15893 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15894 S:      Maintained
15895 F:      drivers/pci/controller/*mvebu*
15896
15897 PCI DRIVER FOR NVIDIA TEGRA
15898 M:      Thierry Reding <thierry.reding@gmail.com>
15899 L:      linux-tegra@vger.kernel.org
15900 L:      linux-pci@vger.kernel.org
15901 S:      Supported
15902 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
15903 F:      drivers/pci/controller/pci-tegra.c
15904
15905 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
15906 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
15907 L:      linux-pci@vger.kernel.org
15908 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15909 S:      Maintained
15910 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
15911 F:      drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
15912
15913 PCI DRIVER FOR RENESAS R-CAR
15914 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
15915 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
15916 L:      linux-pci@vger.kernel.org
15917 L:      linux-renesas-soc@vger.kernel.org
15918 S:      Maintained
15919 F:      Documentation/devicetree/bindings/pci/*rcar*
15920 F:      drivers/pci/controller/*rcar*
15921
15922 PCI DRIVER FOR SAMSUNG EXYNOS
15923 M:      Jingoo Han <jingoohan1@gmail.com>
15924 L:      linux-pci@vger.kernel.org
15925 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15926 L:      linux-samsung-soc@vger.kernel.org
15927 S:      Maintained
15928 F:      drivers/pci/controller/dwc/pci-exynos.c
15929
15930 PCI DRIVER FOR SYNOPSYS DESIGNWARE
15931 M:      Jingoo Han <jingoohan1@gmail.com>
15932 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
15933 L:      linux-pci@vger.kernel.org
15934 S:      Maintained
15935 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie.yaml
15936 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie-ep.yaml
15937 F:      drivers/pci/controller/dwc/*designware*
15938
15939 PCI DRIVER FOR TI DRA7XX/J721E
15940 M:      Vignesh Raghavendra <vigneshr@ti.com>
15941 L:      linux-omap@vger.kernel.org
15942 L:      linux-pci@vger.kernel.org
15943 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15944 S:      Supported
15945 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
15946 F:      drivers/pci/controller/cadence/pci-j721e.c
15947 F:      drivers/pci/controller/dwc/pci-dra7xx.c
15948
15949 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
15950 M:      Linus Walleij <linus.walleij@linaro.org>
15951 L:      linux-pci@vger.kernel.org
15952 S:      Maintained
15953 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
15954 F:      drivers/pci/controller/pci-v3-semi.c
15955
15956 PCI ENDPOINT SUBSYSTEM
15957 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
15958 M:      Krzysztof Wilczyński <kw@linux.com>
15959 R:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15960 R:      Kishon Vijay Abraham I <kishon@kernel.org>
15961 L:      linux-pci@vger.kernel.org
15962 S:      Supported
15963 Q:      https://patchwork.kernel.org/project/linux-pci/list/
15964 B:      https://bugzilla.kernel.org
15965 C:      irc://irc.oftc.net/linux-pci
15966 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pci/pci.git
15967 F:      Documentation/PCI/endpoint/*
15968 F:      Documentation/misc-devices/pci-endpoint-test.rst
15969 F:      drivers/misc/pci_endpoint_test.c
15970 F:      drivers/pci/endpoint/
15971 F:      tools/pci/
15972
15973 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
15974 M:      Mahesh J Salgaonkar <mahesh@linux.ibm.com>
15975 R:      Oliver O'Halloran <oohall@gmail.com>
15976 L:      linuxppc-dev@lists.ozlabs.org
15977 S:      Supported
15978 F:      Documentation/PCI/pci-error-recovery.rst
15979 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
15980 F:      arch/powerpc/include/*/eeh*.h
15981 F:      arch/powerpc/kernel/eeh*.c
15982 F:      arch/powerpc/platforms/*/eeh*.c
15983 F:      drivers/pci/pcie/aer.c
15984 F:      drivers/pci/pcie/dpc.c
15985 F:      drivers/pci/pcie/err.c
15986
15987 PCI ERROR RECOVERY
15988 M:      Linas Vepstas <linasvepstas@gmail.com>
15989 L:      linux-pci@vger.kernel.org
15990 S:      Supported
15991 F:      Documentation/PCI/pci-error-recovery.rst
15992
15993 PCI PEER-TO-PEER DMA (P2PDMA)
15994 M:      Bjorn Helgaas <bhelgaas@google.com>
15995 M:      Logan Gunthorpe <logang@deltatee.com>
15996 L:      linux-pci@vger.kernel.org
15997 S:      Supported
15998 Q:      https://patchwork.kernel.org/project/linux-pci/list/
15999 B:      https://bugzilla.kernel.org
16000 C:      irc://irc.oftc.net/linux-pci
16001 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pci/pci.git
16002 F:      Documentation/driver-api/pci/p2pdma.rst
16003 F:      drivers/pci/p2pdma.c
16004 F:      include/linux/pci-p2pdma.h
16005
16006 PCI MSI DRIVER FOR ALTERA MSI IP
16007 M:      Joyce Ooi <joyce.ooi@intel.com>
16008 L:      linux-pci@vger.kernel.org
16009 S:      Supported
16010 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
16011 F:      drivers/pci/controller/pcie-altera-msi.c
16012
16013 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
16014 M:      Toan Le <toan@os.amperecomputing.com>
16015 L:      linux-pci@vger.kernel.org
16016 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16017 S:      Maintained
16018 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
16019 F:      drivers/pci/controller/pci-xgene-msi.c
16020
16021 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
16022 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
16023 M:      Krzysztof Wilczyński <kw@linux.com>
16024 R:      Rob Herring <robh@kernel.org>
16025 L:      linux-pci@vger.kernel.org
16026 S:      Supported
16027 Q:      https://patchwork.kernel.org/project/linux-pci/list/
16028 B:      https://bugzilla.kernel.org
16029 C:      irc://irc.oftc.net/linux-pci
16030 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pci/pci.git
16031 F:      Documentation/devicetree/bindings/pci/
16032 F:      drivers/pci/controller/
16033 F:      drivers/pci/pci-bridge-emul.c
16034 F:      drivers/pci/pci-bridge-emul.h
16035
16036 PCI SUBSYSTEM
16037 M:      Bjorn Helgaas <bhelgaas@google.com>
16038 L:      linux-pci@vger.kernel.org
16039 S:      Supported
16040 Q:      https://patchwork.kernel.org/project/linux-pci/list/
16041 B:      https://bugzilla.kernel.org
16042 C:      irc://irc.oftc.net/linux-pci
16043 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pci/pci.git
16044 F:      Documentation/PCI/
16045 F:      Documentation/devicetree/bindings/pci/
16046 F:      arch/x86/kernel/early-quirks.c
16047 F:      arch/x86/kernel/quirks.c
16048 F:      arch/x86/pci/
16049 F:      drivers/acpi/pci*
16050 F:      drivers/pci/
16051 F:      include/asm-generic/pci*
16052 F:      include/linux/of_pci.h
16053 F:      include/linux/pci*
16054 F:      include/uapi/linux/pci*
16055 F:      lib/pci*
16056
16057 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
16058 M:      Jonathan Chocron <jonnyc@amazon.com>
16059 L:      linux-pci@vger.kernel.org
16060 S:      Maintained
16061 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
16062 F:      drivers/pci/controller/dwc/pcie-al.c
16063
16064 PCIE DRIVER FOR AMLOGIC MESON
16065 M:      Yue Wang <yue.wang@Amlogic.com>
16066 L:      linux-pci@vger.kernel.org
16067 L:      linux-amlogic@lists.infradead.org
16068 S:      Maintained
16069 F:      drivers/pci/controller/dwc/pci-meson.c
16070
16071 PCIE DRIVER FOR AXIS ARTPEC
16072 M:      Jesper Nilsson <jesper.nilsson@axis.com>
16073 L:      linux-arm-kernel@axis.com
16074 L:      linux-pci@vger.kernel.org
16075 S:      Maintained
16076 F:      Documentation/devicetree/bindings/pci/axis,artpec*
16077 F:      drivers/pci/controller/dwc/*artpec*
16078
16079 PCIE DRIVER FOR CAVIUM THUNDERX
16080 M:      Robert Richter <rric@kernel.org>
16081 L:      linux-pci@vger.kernel.org
16082 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16083 S:      Odd Fixes
16084 F:      drivers/pci/controller/pci-thunder-*
16085
16086 PCIE DRIVER FOR HISILICON
16087 M:      Zhou Wang <wangzhou1@hisilicon.com>
16088 L:      linux-pci@vger.kernel.org
16089 S:      Maintained
16090 F:      drivers/pci/controller/dwc/pcie-hisi.c
16091
16092 PCIE DRIVER FOR HISILICON KIRIN
16093 M:      Xiaowei Song <songxiaowei@hisilicon.com>
16094 M:      Binghui Wang <wangbinghui@hisilicon.com>
16095 L:      linux-pci@vger.kernel.org
16096 S:      Maintained
16097 F:      Documentation/devicetree/bindings/pci/hisilicon,kirin-pcie.yaml
16098 F:      drivers/pci/controller/dwc/pcie-kirin.c
16099
16100 PCIE DRIVER FOR HISILICON STB
16101 M:      Shawn Guo <shawn.guo@linaro.org>
16102 L:      linux-pci@vger.kernel.org
16103 S:      Maintained
16104 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
16105 F:      drivers/pci/controller/dwc/pcie-histb.c
16106
16107 PCIE DRIVER FOR INTEL KEEM BAY
16108 M:      Srikanth Thokala <srikanth.thokala@intel.com>
16109 L:      linux-pci@vger.kernel.org
16110 S:      Supported
16111 F:      Documentation/devicetree/bindings/pci/intel,keembay-pcie*
16112 F:      drivers/pci/controller/dwc/pcie-keembay.c
16113
16114 PCIE DRIVER FOR INTEL LGM GW SOC
16115 M:      Rahul Tanwar <rtanwar@maxlinear.com>
16116 L:      linux-pci@vger.kernel.org
16117 S:      Maintained
16118 F:      Documentation/devicetree/bindings/pci/intel-gw-pcie.yaml
16119 F:      drivers/pci/controller/dwc/pcie-intel-gw.c
16120
16121 PCIE DRIVER FOR MEDIATEK
16122 M:      Ryder Lee <ryder.lee@mediatek.com>
16123 M:      Jianjun Wang <jianjun.wang@mediatek.com>
16124 L:      linux-pci@vger.kernel.org
16125 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
16126 S:      Supported
16127 F:      Documentation/devicetree/bindings/pci/mediatek*
16128 F:      drivers/pci/controller/*mediatek*
16129
16130 PCIE DRIVER FOR MICROCHIP
16131 M:      Daire McNamara <daire.mcnamara@microchip.com>
16132 L:      linux-pci@vger.kernel.org
16133 S:      Supported
16134 F:      Documentation/devicetree/bindings/pci/microchip*
16135 F:      drivers/pci/controller/*microchip*
16136
16137 PCIE DRIVER FOR QUALCOMM MSM
16138 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16139 L:      linux-pci@vger.kernel.org
16140 L:      linux-arm-msm@vger.kernel.org
16141 S:      Maintained
16142 F:      drivers/pci/controller/dwc/pcie-qcom.c
16143
16144 PCIE ENDPOINT DRIVER FOR QUALCOMM
16145 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16146 L:      linux-pci@vger.kernel.org
16147 L:      linux-arm-msm@vger.kernel.org
16148 S:      Maintained
16149 F:      Documentation/devicetree/bindings/pci/qcom,pcie-ep.yaml
16150 F:      drivers/pci/controller/dwc/pcie-qcom-ep.c
16151
16152 PCIE DRIVER FOR ROCKCHIP
16153 M:      Shawn Lin <shawn.lin@rock-chips.com>
16154 L:      linux-pci@vger.kernel.org
16155 L:      linux-rockchip@lists.infradead.org
16156 S:      Maintained
16157 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
16158 F:      drivers/pci/controller/pcie-rockchip*
16159
16160 PCIE DRIVER FOR SOCIONEXT UNIPHIER
16161 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
16162 L:      linux-pci@vger.kernel.org
16163 S:      Maintained
16164 F:      Documentation/devicetree/bindings/pci/socionext,uniphier-pcie*
16165 F:      drivers/pci/controller/dwc/pcie-uniphier*
16166
16167 PCIE DRIVER FOR ST SPEAR13XX
16168 M:      Pratyush Anand <pratyush.anand@gmail.com>
16169 L:      linux-pci@vger.kernel.org
16170 S:      Maintained
16171 F:      drivers/pci/controller/dwc/*spear*
16172
16173 PCI DRIVER FOR XILINX VERSAL CPM
16174 M:      Bharat Kumar Gogada <bharat.kumar.gogada@amd.com>
16175 M:      Michal Simek <michal.simek@amd.com>
16176 L:      linux-pci@vger.kernel.org
16177 S:      Maintained
16178 F:      Documentation/devicetree/bindings/pci/xilinx-versal-cpm.yaml
16179 F:      drivers/pci/controller/pcie-xilinx-cpm.c
16180
16181 PCMCIA SUBSYSTEM
16182 M:      Dominik Brodowski <linux@dominikbrodowski.net>
16183 S:      Odd Fixes
16184 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/linux.git
16185 F:      Documentation/pcmcia/
16186 F:      drivers/pcmcia/
16187 F:      include/pcmcia/
16188 F:      tools/pcmcia/
16189
16190 PCNET32 NETWORK DRIVER
16191 M:      Don Fry <pcnet32@frontier.com>
16192 L:      netdev@vger.kernel.org
16193 S:      Maintained
16194 F:      drivers/net/ethernet/amd/pcnet32.c
16195
16196 PCRYPT PARALLEL CRYPTO ENGINE
16197 M:      Steffen Klassert <steffen.klassert@secunet.com>
16198 L:      linux-crypto@vger.kernel.org
16199 S:      Maintained
16200 F:      crypto/pcrypt.c
16201 F:      include/crypto/pcrypt.h
16202
16203 PEAQ WMI HOTKEYS DRIVER
16204 M:      Hans de Goede <hdegoede@redhat.com>
16205 L:      platform-driver-x86@vger.kernel.org
16206 S:      Maintained
16207 F:      drivers/platform/x86/peaq-wmi.c
16208
16209 PECI HARDWARE MONITORING DRIVERS
16210 M:      Iwona Winiarska <iwona.winiarska@intel.com>
16211 L:      linux-hwmon@vger.kernel.org
16212 S:      Supported
16213 F:      Documentation/hwmon/peci-cputemp.rst
16214 F:      Documentation/hwmon/peci-dimmtemp.rst
16215 F:      drivers/hwmon/peci/
16216
16217 PECI SUBSYSTEM
16218 M:      Iwona Winiarska <iwona.winiarska@intel.com>
16219 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
16220 S:      Supported
16221 F:      Documentation/devicetree/bindings/peci/
16222 F:      Documentation/peci/
16223 F:      drivers/peci/
16224 F:      include/linux/peci-cpu.h
16225 F:      include/linux/peci.h
16226
16227 PENSANDO ETHERNET DRIVERS
16228 M:      Shannon Nelson <shannon.nelson@amd.com>
16229 M:      Brett Creeley <brett.creeley@amd.com>
16230 M:      drivers@pensando.io
16231 L:      netdev@vger.kernel.org
16232 S:      Supported
16233 F:      Documentation/networking/device_drivers/ethernet/pensando/ionic.rst
16234 F:      drivers/net/ethernet/pensando/
16235
16236 PER-CPU MEMORY ALLOCATOR
16237 M:      Dennis Zhou <dennis@kernel.org>
16238 M:      Tejun Heo <tj@kernel.org>
16239 M:      Christoph Lameter <cl@linux.com>
16240 L:      linux-mm@kvack.org
16241 S:      Maintained
16242 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
16243 F:      arch/*/include/asm/percpu.h
16244 F:      include/linux/percpu*.h
16245 F:      lib/percpu*.c
16246 F:      mm/percpu*.c
16247
16248 PER-TASK DELAY ACCOUNTING
16249 M:      Balbir Singh <bsingharora@gmail.com>
16250 S:      Maintained
16251 F:      include/linux/delayacct.h
16252 F:      kernel/delayacct.c
16253
16254 PERFORMANCE EVENTS SUBSYSTEM
16255 M:      Peter Zijlstra <peterz@infradead.org>
16256 M:      Ingo Molnar <mingo@redhat.com>
16257 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
16258 R:      Mark Rutland <mark.rutland@arm.com>
16259 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
16260 R:      Jiri Olsa <jolsa@kernel.org>
16261 R:      Namhyung Kim <namhyung@kernel.org>
16262 L:      linux-perf-users@vger.kernel.org
16263 L:      linux-kernel@vger.kernel.org
16264 S:      Supported
16265 W:      https://perf.wiki.kernel.org/
16266 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
16267 F:      arch/*/events/*
16268 F:      arch/*/events/*/*
16269 F:      arch/*/include/asm/perf_event.h
16270 F:      arch/*/kernel/*/*/perf_event*.c
16271 F:      arch/*/kernel/*/perf_event*.c
16272 F:      arch/*/kernel/perf_callchain.c
16273 F:      arch/*/kernel/perf_event*.c
16274 F:      include/linux/perf_event.h
16275 F:      include/uapi/linux/perf_event.h
16276 F:      kernel/events/*
16277 F:      tools/lib/perf/
16278 F:      tools/perf/
16279
16280 PERFORMANCE EVENTS TOOLING ARM64
16281 R:      John Garry <john.g.garry@oracle.com>
16282 R:      Will Deacon <will@kernel.org>
16283 R:      James Clark <james.clark@arm.com>
16284 R:      Mike Leach <mike.leach@linaro.org>
16285 R:      Leo Yan <leo.yan@linaro.org>
16286 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16287 S:      Supported
16288 F:      tools/build/feature/test-libopencsd.c
16289 F:      tools/perf/arch/arm*/
16290 F:      tools/perf/pmu-events/arch/arm64/
16291 F:      tools/perf/util/arm-spe*
16292 F:      tools/perf/util/cs-etm*
16293
16294 PERSONALITY HANDLING
16295 M:      Christoph Hellwig <hch@infradead.org>
16296 L:      linux-abi-devel@lists.sourceforge.net
16297 S:      Maintained
16298 F:      include/linux/personality.h
16299 F:      include/uapi/linux/personality.h
16300
16301 PHOENIX RC FLIGHT CONTROLLER ADAPTER
16302 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
16303 L:      linux-input@vger.kernel.org
16304 S:      Maintained
16305 F:      Documentation/input/devices/pxrc.rst
16306 F:      drivers/input/joystick/pxrc.c
16307
16308 PHONET PROTOCOL
16309 M:      Remi Denis-Courmont <courmisch@gmail.com>
16310 S:      Supported
16311 F:      Documentation/networking/phonet.rst
16312 F:      include/linux/phonet.h
16313 F:      include/net/phonet/
16314 F:      include/uapi/linux/phonet.h
16315 F:      net/phonet/
16316
16317 PHRAM MTD DRIVER
16318 M:      Joern Engel <joern@lazybastard.org>
16319 L:      linux-mtd@lists.infradead.org
16320 S:      Maintained
16321 F:      drivers/mtd/devices/phram.c
16322
16323 PICOLCD HID DRIVER
16324 M:      Bruno Prémont <bonbons@linux-vserver.org>
16325 L:      linux-input@vger.kernel.org
16326 S:      Maintained
16327 F:      drivers/hid/hid-picolcd*
16328
16329 PIDFD API
16330 M:      Christian Brauner <christian@brauner.io>
16331 L:      linux-kernel@vger.kernel.org
16332 S:      Maintained
16333 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
16334 F:      samples/pidfd/
16335 F:      tools/testing/selftests/clone3/
16336 F:      tools/testing/selftests/pid_namespace/
16337 F:      tools/testing/selftests/pidfd/
16338 K:      (?i)pidfd
16339 K:      (?i)clone3
16340 K:      \b(clone_args|kernel_clone_args)\b
16341
16342 PIN CONTROL SUBSYSTEM
16343 M:      Linus Walleij <linus.walleij@linaro.org>
16344 L:      linux-gpio@vger.kernel.org
16345 S:      Maintained
16346 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
16347 F:      Documentation/devicetree/bindings/pinctrl/
16348 F:      Documentation/driver-api/pin-control.rst
16349 F:      drivers/pinctrl/
16350 F:      include/dt-bindings/pinctrl/
16351 F:      include/linux/pinctrl/
16352
16353 PIN CONTROLLER - AMD
16354 M:      Basavaraj Natikar <Basavaraj.Natikar@amd.com>
16355 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
16356 S:      Maintained
16357 F:      drivers/pinctrl/pinctrl-amd.c
16358
16359 PIN CONTROLLER - FREESCALE
16360 M:      Dong Aisheng <aisheng.dong@nxp.com>
16361 M:      Fabio Estevam <festevam@gmail.com>
16362 M:      Shawn Guo <shawnguo@kernel.org>
16363 M:      Jacky Bai <ping.bai@nxp.com>
16364 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
16365 L:      linux-gpio@vger.kernel.org
16366 S:      Maintained
16367 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
16368 F:      drivers/pinctrl/freescale/
16369
16370 PIN CONTROLLER - INTEL
16371 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
16372 M:      Andy Shevchenko <andy@kernel.org>
16373 S:      Supported
16374 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
16375 F:      drivers/pinctrl/intel/
16376
16377 PIN CONTROLLER - KEEMBAY
16378 M:      Lakshmi Sowjanya D <lakshmi.sowjanya.d@intel.com>
16379 S:      Supported
16380 F:      drivers/pinctrl/pinctrl-keembay*
16381
16382 PIN CONTROLLER - MEDIATEK
16383 M:      Sean Wang <sean.wang@kernel.org>
16384 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
16385 S:      Maintained
16386 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt65xx-pinctrl.yaml
16387 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt6779-pinctrl.yaml
16388 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt7622-pinctrl.yaml
16389 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt8183-pinctrl.yaml
16390 F:      drivers/pinctrl/mediatek/
16391
16392 PIN CONTROLLER - MICROCHIP AT91
16393 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
16394 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16395 L:      linux-gpio@vger.kernel.org
16396 S:      Supported
16397 F:      drivers/gpio/gpio-sama5d2-piobu.c
16398 F:      drivers/pinctrl/pinctrl-at91*
16399
16400 PIN CONTROLLER - QUALCOMM
16401 M:      Bjorn Andersson <andersson@kernel.org>
16402 L:      linux-arm-msm@vger.kernel.org
16403 S:      Maintained
16404 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
16405 F:      drivers/pinctrl/qcom/
16406
16407 PIN CONTROLLER - RENESAS
16408 M:      Geert Uytterhoeven <geert+renesas@glider.be>
16409 L:      linux-renesas-soc@vger.kernel.org
16410 S:      Supported
16411 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-pinctrl
16412 F:      Documentation/devicetree/bindings/pinctrl/renesas,*
16413 F:      drivers/pinctrl/renesas/
16414
16415 PIN CONTROLLER - SAMSUNG
16416 M:      Tomasz Figa <tomasz.figa@gmail.com>
16417 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
16418 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16419 R:      Alim Akhtar <alim.akhtar@samsung.com>
16420 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16421 L:      linux-samsung-soc@vger.kernel.org
16422 S:      Maintained
16423 C:      irc://irc.libera.chat/linux-exynos
16424 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
16425 B:      mailto:linux-samsung-soc@vger.kernel.org
16426 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
16427 F:      Documentation/devicetree/bindings/pinctrl/samsung,pinctrl*yaml
16428 F:      drivers/pinctrl/samsung/
16429 F:      include/dt-bindings/pinctrl/samsung.h
16430
16431 PIN CONTROLLER - SINGLE
16432 M:      Tony Lindgren <tony@atomide.com>
16433 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
16434 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16435 L:      linux-omap@vger.kernel.org
16436 S:      Maintained
16437 F:      drivers/pinctrl/pinctrl-single.c
16438
16439 PIN CONTROLLER - THUNDERBAY
16440 M:      Lakshmi Sowjanya D <lakshmi.sowjanya.d@intel.com>
16441 S:      Supported
16442 F:      drivers/pinctrl/pinctrl-thunderbay.c
16443
16444 PIN CONTROLLER - SUNPLUS / TIBBO
16445 M:      Dvorkin Dmitry <dvorkin@tibbo.com>
16446 M:      Wells Lu <wellslutw@gmail.com>
16447 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16448 S:      Maintained
16449 W:      https://sunplus.atlassian.net/wiki/spaces/doc/overview
16450 F:      Documentation/devicetree/bindings/pinctrl/sunplus,*
16451 F:      drivers/pinctrl/sunplus/
16452 F:      include/dt-bindings/pinctrl/sppctl*.h
16453
16454 PINE64 PINEPHONE KEYBOARD DRIVER
16455 M:      Samuel Holland <samuel@sholland.org>
16456 S:      Supported
16457 F:      Documentation/devicetree/bindings/input/pine64,pinephone-keyboard.yaml
16458 F:      drivers/input/keyboard/pinephone-keyboard.c
16459
16460 PKTCDVD DRIVER
16461 M:      linux-block@vger.kernel.org
16462 S:      Orphan
16463 F:      drivers/block/pktcdvd.c
16464 F:      include/linux/pktcdvd.h
16465 F:      include/uapi/linux/pktcdvd.h
16466
16467 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
16468 M:      Tomasz Duszynski <tduszyns@gmail.com>
16469 S:      Maintained
16470 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
16471 F:      drivers/iio/chemical/pms7003.c
16472
16473 PLDMFW LIBRARY
16474 M:      Jacob Keller <jacob.e.keller@intel.com>
16475 S:      Maintained
16476 F:      Documentation/driver-api/pldmfw/
16477 F:      include/linux/pldmfw.h
16478 F:      lib/pldmfw/
16479
16480 PLX DMA DRIVER
16481 M:      Logan Gunthorpe <logang@deltatee.com>
16482 S:      Maintained
16483 F:      drivers/dma/plx_dma.c
16484
16485 PM6764TR DRIVER
16486 M:      Charles Hsu     <hsu.yungteng@gmail.com>
16487 L:      linux-hwmon@vger.kernel.org
16488 S:      Maintained
16489 F:      Documentation/hwmon/pm6764tr.rst
16490 F:      drivers/hwmon/pmbus/pm6764tr.c
16491
16492 PM-GRAPH UTILITY
16493 M:      "Todd E Brandt" <todd.e.brandt@linux.intel.com>
16494 L:      linux-pm@vger.kernel.org
16495 S:      Supported
16496 W:      https://01.org/pm-graph
16497 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
16498 T:      git git://github.com/intel/pm-graph
16499 F:      tools/power/pm-graph
16500
16501 PMBUS HARDWARE MONITORING DRIVERS
16502 M:      Guenter Roeck <linux@roeck-us.net>
16503 L:      linux-hwmon@vger.kernel.org
16504 S:      Maintained
16505 W:      http://hwmon.wiki.kernel.org/
16506 W:      http://www.roeck-us.net/linux/drivers/
16507 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
16508 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
16509 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
16510 F:      Documentation/hwmon/adm1275.rst
16511 F:      Documentation/hwmon/ibm-cffps.rst
16512 F:      Documentation/hwmon/ir35221.rst
16513 F:      Documentation/hwmon/lm25066.rst
16514 F:      Documentation/hwmon/ltc2978.rst
16515 F:      Documentation/hwmon/ltc3815.rst
16516 F:      Documentation/hwmon/max16064.rst
16517 F:      Documentation/hwmon/max20751.rst
16518 F:      Documentation/hwmon/max31785.rst
16519 F:      Documentation/hwmon/max34440.rst
16520 F:      Documentation/hwmon/max8688.rst
16521 F:      Documentation/hwmon/pmbus-core.rst
16522 F:      Documentation/hwmon/pmbus.rst
16523 F:      Documentation/hwmon/tps40422.rst
16524 F:      Documentation/hwmon/ucd9000.rst
16525 F:      Documentation/hwmon/ucd9200.rst
16526 F:      Documentation/hwmon/zl6100.rst
16527 F:      drivers/hwmon/pmbus/
16528 F:      include/linux/pmbus.h
16529
16530 PMC SIERRA MaxRAID DRIVER
16531 L:      linux-scsi@vger.kernel.org
16532 S:      Orphan
16533 W:      http://www.pmc-sierra.com/
16534 F:      drivers/scsi/pmcraid.*
16535
16536 PMC SIERRA PM8001 DRIVER
16537 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
16538 L:      linux-scsi@vger.kernel.org
16539 S:      Supported
16540 F:      drivers/scsi/pm8001/
16541
16542 PNI RM3100 IIO DRIVER
16543 M:      Song Qiang <songqiang1304521@gmail.com>
16544 L:      linux-iio@vger.kernel.org
16545 S:      Maintained
16546 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.yaml
16547 F:      drivers/iio/magnetometer/rm3100*
16548
16549 PNP SUPPORT
16550 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
16551 L:      linux-acpi@vger.kernel.org
16552 S:      Maintained
16553 F:      drivers/pnp/
16554 F:      include/linux/pnp.h
16555
16556 POSIX CLOCKS and TIMERS
16557 M:      Thomas Gleixner <tglx@linutronix.de>
16558 L:      linux-kernel@vger.kernel.org
16559 S:      Maintained
16560 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
16561 F:      fs/timerfd.c
16562 F:      include/linux/time_namespace.h
16563 F:      include/linux/timer*
16564 F:      kernel/time/*timer*
16565 F:      kernel/time/namespace.c
16566
16567 POWER MANAGEMENT CORE
16568 M:      "Rafael J. Wysocki" <rafael@kernel.org>
16569 L:      linux-pm@vger.kernel.org
16570 S:      Supported
16571 B:      https://bugzilla.kernel.org
16572 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
16573 F:      drivers/base/power/
16574 F:      drivers/powercap/
16575 F:      include/linux/intel_rapl.h
16576 F:      include/linux/pm.h
16577 F:      include/linux/pm_*
16578 F:      include/linux/powercap.h
16579 F:      kernel/configs/nopm.config
16580
16581 DYNAMIC THERMAL POWER MANAGEMENT (DTPM)
16582 M:      Daniel Lezcano <daniel.lezcano@kernel.org>
16583 L:      linux-pm@vger.kernel.org
16584 S:      Supported
16585 B:      https://bugzilla.kernel.org
16586 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
16587 F:      drivers/powercap/dtpm*
16588 F:      include/linux/dtpm.h
16589
16590 POWER STATE COORDINATION INTERFACE (PSCI)
16591 M:      Mark Rutland <mark.rutland@arm.com>
16592 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
16593 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16594 S:      Maintained
16595 F:      drivers/firmware/psci/
16596 F:      include/linux/psci.h
16597 F:      include/uapi/linux/psci.h
16598
16599 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
16600 M:      Sebastian Reichel <sre@kernel.org>
16601 L:      linux-pm@vger.kernel.org
16602 S:      Maintained
16603 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
16604 F:      Documentation/ABI/testing/sysfs-class-power
16605 F:      Documentation/devicetree/bindings/power/supply/
16606 F:      drivers/power/supply/
16607 F:      include/linux/power/
16608 F:      include/linux/power_supply.h
16609
16610 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
16611 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
16612 L:      linuxppc-dev@lists.ozlabs.org
16613 S:      Maintained
16614 F:      drivers/char/powernv-op-panel.c
16615
16616 PPP OVER ATM (RFC 2364)
16617 M:      Mitchell Blank Jr <mitch@sfgoth.com>
16618 S:      Maintained
16619 F:      include/uapi/linux/atmppp.h
16620 F:      net/atm/pppoatm.c
16621
16622 PPP OVER ETHERNET
16623 M:      Michal Ostrowski <mostrows@earthlink.net>
16624 S:      Maintained
16625 F:      drivers/net/ppp/pppoe.c
16626 F:      drivers/net/ppp/pppox.c
16627
16628 PPP OVER L2TP
16629 M:      James Chapman <jchapman@katalix.com>
16630 S:      Maintained
16631 F:      include/linux/if_pppol2tp.h
16632 F:      include/uapi/linux/if_pppol2tp.h
16633 F:      net/l2tp/l2tp_ppp.c
16634
16635 PPP PROTOCOL DRIVERS AND COMPRESSORS
16636 M:      Paul Mackerras <paulus@samba.org>
16637 L:      linux-ppp@vger.kernel.org
16638 S:      Maintained
16639 F:      drivers/net/ppp/ppp_*
16640
16641 PPS SUPPORT
16642 M:      Rodolfo Giometti <giometti@enneenne.com>
16643 L:      linuxpps@ml.enneenne.com (subscribers-only)
16644 S:      Maintained
16645 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
16646 F:      Documentation/ABI/testing/sysfs-pps
16647 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
16648 F:      Documentation/driver-api/pps.rst
16649 F:      drivers/pps/
16650 F:      include/linux/pps*.h
16651 F:      include/uapi/linux/pps.h
16652
16653 PPTP DRIVER
16654 M:      Dmitry Kozlov <xeb@mail.ru>
16655 L:      netdev@vger.kernel.org
16656 S:      Maintained
16657 W:      http://sourceforge.net/projects/accel-pptp
16658 F:      drivers/net/ppp/pptp.c
16659
16660 PRESSURE STALL INFORMATION (PSI)
16661 M:      Johannes Weiner <hannes@cmpxchg.org>
16662 M:      Suren Baghdasaryan <surenb@google.com>
16663 S:      Maintained
16664 F:      include/linux/psi*
16665 F:      kernel/sched/psi.c
16666
16667 PRINTK
16668 M:      Petr Mladek <pmladek@suse.com>
16669 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
16670 R:      Steven Rostedt <rostedt@goodmis.org>
16671 R:      John Ogness <john.ogness@linutronix.de>
16672 S:      Maintained
16673 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux.git
16674 F:      include/linux/printk.h
16675 F:      kernel/printk/
16676
16677 PRINTK INDEXING
16678 R:      Chris Down <chris@chrisdown.name>
16679 S:      Maintained
16680 F:      Documentation/core-api/printk-index.rst
16681 F:      kernel/printk/index.c
16682 K:      printk_index
16683
16684 PROC FILESYSTEM
16685 L:      linux-kernel@vger.kernel.org
16686 L:      linux-fsdevel@vger.kernel.org
16687 S:      Maintained
16688 F:      Documentation/filesystems/proc.rst
16689 F:      fs/proc/
16690 F:      include/linux/proc_fs.h
16691 F:      tools/testing/selftests/proc/
16692
16693 PROC SYSCTL
16694 M:      Luis Chamberlain <mcgrof@kernel.org>
16695 M:      Kees Cook <keescook@chromium.org>
16696 M:      Iurii Zaikin <yzaikin@google.com>
16697 L:      linux-kernel@vger.kernel.org
16698 L:      linux-fsdevel@vger.kernel.org
16699 S:      Maintained
16700 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux.git sysctl-next
16701 F:      fs/proc/proc_sysctl.c
16702 F:      include/linux/sysctl.h
16703 F:      kernel/sysctl-test.c
16704 F:      kernel/sysctl.c
16705 F:      tools/testing/selftests/sysctl/
16706
16707 PS3 NETWORK SUPPORT
16708 M:      Geoff Levand <geoff@infradead.org>
16709 L:      netdev@vger.kernel.org
16710 L:      linuxppc-dev@lists.ozlabs.org
16711 S:      Maintained
16712 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
16713
16714 PS3 PLATFORM SUPPORT
16715 M:      Geoff Levand <geoff@infradead.org>
16716 L:      linuxppc-dev@lists.ozlabs.org
16717 S:      Maintained
16718 F:      arch/powerpc/boot/ps3*
16719 F:      arch/powerpc/include/asm/lv1call.h
16720 F:      arch/powerpc/include/asm/ps3*.h
16721 F:      arch/powerpc/platforms/ps3/
16722 F:      drivers/*/ps3*
16723 F:      drivers/ps3/
16724 F:      drivers/rtc/rtc-ps3.c
16725 F:      drivers/usb/host/*ps3.c
16726 F:      sound/ppc/snd_ps3*
16727
16728 PS3VRAM DRIVER
16729 M:      Jim Paris <jim@jtan.com>
16730 M:      Geoff Levand <geoff@infradead.org>
16731 L:      linuxppc-dev@lists.ozlabs.org
16732 S:      Maintained
16733 F:      drivers/block/ps3vram.c
16734
16735 PSAMPLE PACKET SAMPLING SUPPORT
16736 M:      Yotam Gigi <yotam.gi@gmail.com>
16737 S:      Maintained
16738 F:      include/net/psample.h
16739 F:      include/uapi/linux/psample.h
16740 F:      net/psample
16741
16742 PSTORE FILESYSTEM
16743 M:      Kees Cook <keescook@chromium.org>
16744 R:      Tony Luck <tony.luck@intel.com>
16745 R:      Guilherme G. Piccoli <gpiccoli@igalia.com>
16746 L:      linux-hardening@vger.kernel.org
16747 S:      Supported
16748 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
16749 F:      Documentation/admin-guide/ramoops.rst
16750 F:      Documentation/admin-guide/pstore-blk.rst
16751 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.yaml
16752 F:      drivers/acpi/apei/erst.c
16753 F:      drivers/firmware/efi/efi-pstore.c
16754 F:      fs/pstore/
16755 F:      include/linux/pstore*
16756 K:      \b(pstore|ramoops)
16757
16758 PTP HARDWARE CLOCK SUPPORT
16759 M:      Richard Cochran <richardcochran@gmail.com>
16760 L:      netdev@vger.kernel.org
16761 S:      Maintained
16762 W:      http://linuxptp.sourceforge.net/
16763 F:      Documentation/ABI/testing/sysfs-ptp
16764 F:      Documentation/driver-api/ptp.rst
16765 F:      drivers/net/phy/dp83640*
16766 F:      drivers/ptp/*
16767 F:      include/linux/ptp_cl*
16768 K:      (?:\b|_)ptp(?:\b|_)
16769
16770 PTP VIRTUAL CLOCK SUPPORT
16771 M:      Yangbo Lu <yangbo.lu@nxp.com>
16772 L:      netdev@vger.kernel.org
16773 S:      Maintained
16774 F:      drivers/ptp/ptp_vclock.c
16775 F:      net/ethtool/phc_vclocks.c
16776
16777 PTRACE SUPPORT
16778 M:      Oleg Nesterov <oleg@redhat.com>
16779 S:      Maintained
16780 F:      arch/*/*/ptrace*.c
16781 F:      arch/*/include/asm/ptrace*.h
16782 F:      arch/*/ptrace*.c
16783 F:      include/asm-generic/syscall.h
16784 F:      include/linux/ptrace.h
16785 F:      include/linux/regset.h
16786 F:      include/uapi/linux/ptrace.h
16787 F:      kernel/ptrace.c
16788
16789 PULSE8-CEC DRIVER
16790 M:      Hans Verkuil <hverkuil@xs4all.nl>
16791 L:      linux-media@vger.kernel.org
16792 S:      Maintained
16793 T:      git git://linuxtv.org/media_tree.git
16794 F:      drivers/media/cec/usb/pulse8/
16795
16796 PURELIFI PLFXLC DRIVER
16797 M:      Srinivasan Raju <srini.raju@purelifi.com>
16798 L:      linux-wireless@vger.kernel.org
16799 S:      Supported
16800 F:      drivers/net/wireless/purelifi/plfxlc/
16801
16802 PVRUSB2 VIDEO4LINUX DRIVER
16803 M:      Mike Isely <isely@pobox.com>
16804 L:      pvrusb2@isely.net       (subscribers-only)
16805 L:      linux-media@vger.kernel.org
16806 S:      Maintained
16807 W:      http://www.isely.net/pvrusb2/
16808 T:      git git://linuxtv.org/media_tree.git
16809 F:      Documentation/driver-api/media/drivers/pvrusb2*
16810 F:      drivers/media/usb/pvrusb2/
16811
16812 PWC WEBCAM DRIVER
16813 M:      Hans Verkuil <hverkuil@xs4all.nl>
16814 L:      linux-media@vger.kernel.org
16815 S:      Odd Fixes
16816 T:      git git://linuxtv.org/media_tree.git
16817 F:      drivers/media/usb/pwc/*
16818 F:      include/trace/events/pwc.h
16819
16820 PWM IR Transmitter
16821 M:      Sean Young <sean@mess.org>
16822 L:      linux-media@vger.kernel.org
16823 S:      Maintained
16824 F:      Documentation/devicetree/bindings/leds/irled/pwm-ir-tx.yaml
16825 F:      drivers/media/rc/pwm-ir-tx.c
16826
16827 PWM SUBSYSTEM
16828 M:      Thierry Reding <thierry.reding@gmail.com>
16829 R:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
16830 L:      linux-pwm@vger.kernel.org
16831 S:      Maintained
16832 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
16833 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
16834 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.yaml
16835 F:      Documentation/devicetree/bindings/pwm/
16836 F:      Documentation/driver-api/pwm.rst
16837 F:      drivers/gpio/gpio-mvebu.c
16838 F:      drivers/pwm/
16839 F:      drivers/video/backlight/pwm_bl.c
16840 F:      include/dt-bindings/pwm/
16841 F:      include/linux/pwm.h
16842 F:      include/linux/pwm_backlight.h
16843 K:      pwm_(config|apply_state|ops)
16844
16845 PXA GPIO DRIVER
16846 M:      Robert Jarzmik <robert.jarzmik@free.fr>
16847 L:      linux-gpio@vger.kernel.org
16848 S:      Maintained
16849 F:      drivers/gpio/gpio-pxa.c
16850
16851 PXA MMCI DRIVER
16852 S:      Orphan
16853
16854 PXA RTC DRIVER
16855 M:      Robert Jarzmik <robert.jarzmik@free.fr>
16856 L:      linux-rtc@vger.kernel.org
16857 S:      Maintained
16858
16859 PXA2xx/PXA3xx SUPPORT
16860 M:      Daniel Mack <daniel@zonque.org>
16861 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
16862 M:      Robert Jarzmik <robert.jarzmik@free.fr>
16863 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16864 S:      Maintained
16865 T:      git git://github.com/hzhuang1/linux.git
16866 T:      git git://github.com/rjarzmik/linux.git
16867 F:      arch/arm/boot/dts/pxa*
16868 F:      arch/arm/mach-pxa/
16869 F:      drivers/dma/pxa*
16870 F:      drivers/pcmcia/pxa2xx*
16871 F:      drivers/pinctrl/pxa/
16872 F:      drivers/spi/spi-pxa2xx*
16873 F:      drivers/usb/gadget/udc/pxa2*
16874 F:      include/sound/pxa2xx-lib.h
16875 F:      sound/arm/pxa*
16876 F:      sound/soc/pxa/
16877
16878 QAT DRIVER
16879 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
16880 L:      qat-linux@intel.com
16881 S:      Supported
16882 F:      drivers/crypto/qat/
16883
16884 QCOM AUDIO (ASoC) DRIVERS
16885 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
16886 M:      Banajit Goswami <bgoswami@quicinc.com>
16887 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16888 S:      Supported
16889 F:      Documentation/devicetree/bindings/soc/qcom/qcom,apr*
16890 F:      Documentation/devicetree/bindings/sound/qcom,*
16891 F:      drivers/soc/qcom/apr.c
16892 F:      include/dt-bindings/sound/qcom,wcd9335.h
16893 F:      sound/soc/codecs/lpass-rx-macro.*
16894 F:      sound/soc/codecs/lpass-tx-macro.*
16895 F:      sound/soc/codecs/lpass-va-macro.c
16896 F:      sound/soc/codecs/lpass-wsa-macro.*
16897 F:      sound/soc/codecs/msm8916-wcd-analog.c
16898 F:      sound/soc/codecs/msm8916-wcd-digital.c
16899 F:      sound/soc/codecs/wcd9335.*
16900 F:      sound/soc/codecs/wcd934x.c
16901 F:      sound/soc/codecs/wcd-clsh-v2.*
16902 F:      sound/soc/codecs/wcd-mbhc-v2.*
16903 F:      sound/soc/codecs/wsa881x.c
16904 F:      sound/soc/codecs/wsa883x.c
16905 F:      sound/soc/qcom/
16906
16907 QCOM EMBEDDED USB DEBUGGER (EUD)
16908 M:      Souradeep Chowdhury <quic_schowdhu@quicinc.com>
16909 L:      linux-arm-msm@vger.kernel.org
16910 S:      Maintained
16911 F:      Documentation/ABI/testing/sysfs-driver-eud
16912 F:      Documentation/devicetree/bindings/soc/qcom/qcom,eud.yaml
16913 F:      drivers/usb/misc/qcom_eud.c
16914
16915 QCOM IPA DRIVER
16916 M:      Alex Elder <elder@kernel.org>
16917 L:      netdev@vger.kernel.org
16918 S:      Supported
16919 F:      drivers/net/ipa/
16920
16921 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
16922 M:      Gabriel Somlo <somlo@cmu.edu>
16923 M:      "Michael S. Tsirkin" <mst@redhat.com>
16924 L:      qemu-devel@nongnu.org
16925 S:      Maintained
16926 F:      drivers/firmware/qemu_fw_cfg.c
16927 F:      include/uapi/linux/qemu_fw_cfg.h
16928
16929 QIB DRIVER
16930 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
16931 L:      linux-rdma@vger.kernel.org
16932 S:      Supported
16933 F:      drivers/infiniband/hw/qib/
16934
16935 QLOGIC QL41xxx FCOE DRIVER
16936 M:      Saurav Kashyap <skashyap@marvell.com>
16937 M:      Javed Hasan <jhasan@marvell.com>
16938 M:      GR-QLogic-Storage-Upstream@marvell.com
16939 L:      linux-scsi@vger.kernel.org
16940 S:      Supported
16941 F:      drivers/scsi/qedf/
16942
16943 QLOGIC QL41xxx ISCSI DRIVER
16944 M:      Nilesh Javali <njavali@marvell.com>
16945 M:      Manish Rangankar <mrangankar@marvell.com>
16946 M:      GR-QLogic-Storage-Upstream@marvell.com
16947 L:      linux-scsi@vger.kernel.org
16948 S:      Supported
16949 F:      drivers/scsi/qedi/
16950
16951 QLOGIC QL4xxx ETHERNET DRIVER
16952 M:      Ariel Elior <aelior@marvell.com>
16953 M:      Manish Chopra <manishc@marvell.com>
16954 L:      netdev@vger.kernel.org
16955 S:      Supported
16956 F:      drivers/net/ethernet/qlogic/qed/
16957 F:      drivers/net/ethernet/qlogic/qede/
16958 F:      include/linux/qed/
16959
16960 QLOGIC QL4xxx RDMA DRIVER
16961 M:      Michal Kalderon <mkalderon@marvell.com>
16962 M:      Ariel Elior <aelior@marvell.com>
16963 L:      linux-rdma@vger.kernel.org
16964 S:      Supported
16965 F:      drivers/infiniband/hw/qedr/
16966 F:      include/uapi/rdma/qedr-abi.h
16967
16968 QLOGIC QLA1280 SCSI DRIVER
16969 M:      Michael Reed <mdr@sgi.com>
16970 L:      linux-scsi@vger.kernel.org
16971 S:      Maintained
16972 F:      drivers/scsi/qla1280.[ch]
16973
16974 QLOGIC QLA2XXX FC-SCSI DRIVER
16975 M:      Nilesh Javali <njavali@marvell.com>
16976 M:      GR-QLogic-Storage-Upstream@marvell.com
16977 L:      linux-scsi@vger.kernel.org
16978 S:      Supported
16979 F:      drivers/scsi/qla2xxx/
16980
16981 QLOGIC QLA3XXX NETWORK DRIVER
16982 M:      GR-Linux-NIC-Dev@marvell.com
16983 L:      netdev@vger.kernel.org
16984 S:      Supported
16985 F:      drivers/net/ethernet/qlogic/qla3xxx.*
16986
16987 QLOGIC QLA4XXX iSCSI DRIVER
16988 M:      Nilesh Javali <njavali@marvell.com>
16989 M:      Manish Rangankar <mrangankar@marvell.com>
16990 M:      GR-QLogic-Storage-Upstream@marvell.com
16991 L:      linux-scsi@vger.kernel.org
16992 S:      Supported
16993 F:      drivers/scsi/qla4xxx/
16994
16995 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
16996 M:      Shahed Shaikh <shshaikh@marvell.com>
16997 M:      Manish Chopra <manishc@marvell.com>
16998 M:      GR-Linux-NIC-Dev@marvell.com
16999 L:      netdev@vger.kernel.org
17000 S:      Supported
17001 F:      drivers/net/ethernet/qlogic/qlcnic/
17002
17003 QLOGIC QLGE 10Gb ETHERNET DRIVER
17004 M:      Manish Chopra <manishc@marvell.com>
17005 M:      GR-Linux-NIC-Dev@marvell.com
17006 M:      Coiby Xu <coiby.xu@gmail.com>
17007 L:      netdev@vger.kernel.org
17008 S:      Supported
17009 F:      Documentation/networking/device_drivers/qlogic/qlge.rst
17010 F:      drivers/staging/qlge/
17011
17012 QM1D1B0004 MEDIA DRIVER
17013 M:      Akihiro Tsukada <tskd08@gmail.com>
17014 L:      linux-media@vger.kernel.org
17015 S:      Odd Fixes
17016 F:      drivers/media/tuners/qm1d1b0004*
17017
17018 QM1D1C0042 MEDIA DRIVER
17019 M:      Akihiro Tsukada <tskd08@gmail.com>
17020 L:      linux-media@vger.kernel.org
17021 S:      Odd Fixes
17022 F:      drivers/media/tuners/qm1d1c0042*
17023
17024 QNX4 FILESYSTEM
17025 M:      Anders Larsen <al@alarsen.net>
17026 S:      Maintained
17027 W:      http://www.alarsen.net/linux/qnx4fs/
17028 F:      fs/qnx4/
17029 F:      include/uapi/linux/qnx4_fs.h
17030 F:      include/uapi/linux/qnxtypes.h
17031
17032 QORIQ DPAA2 FSL-MC BUS DRIVER
17033 M:      Stuart Yoder <stuyoder@gmail.com>
17034 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
17035 L:      linux-kernel@vger.kernel.org
17036 S:      Maintained
17037 F:      Documentation/ABI/stable/sysfs-bus-fsl-mc
17038 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
17039 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/overview.rst
17040 F:      drivers/bus/fsl-mc/
17041 F:      include/uapi/linux/fsl_mc.h
17042
17043 QT1010 MEDIA DRIVER
17044 M:      Antti Palosaari <crope@iki.fi>
17045 L:      linux-media@vger.kernel.org
17046 S:      Maintained
17047 W:      https://linuxtv.org
17048 W:      http://palosaari.fi/linux/
17049 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17050 T:      git git://linuxtv.org/anttip/media_tree.git
17051 F:      drivers/media/tuners/qt1010*
17052
17053 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
17054 M:      Kalle Valo <kvalo@kernel.org>
17055 L:      ath10k@lists.infradead.org
17056 S:      Supported
17057 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
17058 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
17059 F:      drivers/net/wireless/ath/ath10k/
17060 F:      Documentation/devicetree/bindings/net/wireless/qcom,ath10k.txt
17061
17062 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
17063 M:      Kalle Valo <kvalo@kernel.org>
17064 L:      ath11k@lists.infradead.org
17065 S:      Supported
17066 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
17067 F:      Documentation/devicetree/bindings/net/wireless/qcom,ath11k.yaml
17068 F:      drivers/net/wireless/ath/ath11k/
17069
17070 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
17071 M:      Toke Høiland-Jørgensen <toke@toke.dk>
17072 L:      linux-wireless@vger.kernel.org
17073 S:      Maintained
17074 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
17075 F:      Documentation/devicetree/bindings/net/wireless/qca,ath9k.yaml
17076 F:      drivers/net/wireless/ath/ath9k/
17077
17078 QUALCOMM BAM-DMUX WWAN NETWORK DRIVER
17079 M:      Stephan Gerhold <stephan@gerhold.net>
17080 L:      netdev@vger.kernel.org
17081 L:      linux-arm-msm@vger.kernel.org
17082 S:      Maintained
17083 F:      Documentation/devicetree/bindings/net/qcom,bam-dmux.yaml
17084 F:      drivers/net/wwan/qcom_bam_dmux.c
17085
17086 QUALCOMM CAMERA SUBSYSTEM DRIVER
17087 M:      Robert Foss <rfoss@kernel.org>
17088 M:      Todor Tomov <todor.too@gmail.com>
17089 L:      linux-media@vger.kernel.org
17090 S:      Maintained
17091 F:      Documentation/admin-guide/media/qcom_camss.rst
17092 F:      Documentation/devicetree/bindings/media/*camss*
17093 F:      drivers/media/platform/qcom/camss/
17094
17095 QUALCOMM CLOCK DRIVERS
17096 M:      Bjorn Andersson <andersson@kernel.org>
17097 L:      linux-arm-msm@vger.kernel.org
17098 S:      Supported
17099 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
17100 F:      Documentation/devicetree/bindings/clock/qcom,*
17101 F:      drivers/clk/qcom/
17102 F:      include/dt-bindings/clock/qcom,*
17103
17104 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
17105 M:      Niklas Cassel <nks@flawful.org>
17106 L:      linux-pm@vger.kernel.org
17107 L:      linux-arm-msm@vger.kernel.org
17108 S:      Maintained
17109 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.yaml
17110 F:      drivers/soc/qcom/cpr.c
17111
17112 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
17113 M:      Ilia Lin <ilia.lin@kernel.org>
17114 L:      linux-pm@vger.kernel.org
17115 S:      Maintained
17116 F:      Documentation/devicetree/bindings/cpufreq/qcom-cpufreq-nvmem.yaml
17117 F:      Documentation/devicetree/bindings/opp/opp-v2-kryo-cpu.yaml
17118 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
17119
17120 QUALCOMM CRYPTO DRIVERS
17121 M:      Thara Gopinath <thara.gopinath@gmail.com>
17122 L:      linux-crypto@vger.kernel.org
17123 L:      linux-arm-msm@vger.kernel.org
17124 S:      Maintained
17125 F:      drivers/crypto/qce/
17126
17127 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
17128 M:      Timur Tabi <timur@kernel.org>
17129 L:      netdev@vger.kernel.org
17130 S:      Maintained
17131 F:      drivers/net/ethernet/qualcomm/emac/
17132
17133 QUALCOMM ETHQOS ETHERNET DRIVER
17134 M:      Vinod Koul <vkoul@kernel.org>
17135 R:      Bhupesh Sharma <bhupesh.sharma@linaro.org>
17136 L:      netdev@vger.kernel.org
17137 S:      Maintained
17138 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
17139 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
17140
17141 QUALCOMM FASTRPC DRIVER
17142 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
17143 M:      Amol Maheshwari <amahesh@qti.qualcomm.com>
17144 L:      linux-arm-msm@vger.kernel.org
17145 S:      Maintained
17146 F:      Documentation/devicetree/bindings/misc/qcom,fastrpc.yaml
17147 F:      drivers/misc/fastrpc.c
17148 F:      include/uapi/misc/fastrpc.h
17149
17150 QUALCOMM HEXAGON ARCHITECTURE
17151 M:      Brian Cain <bcain@quicinc.com>
17152 L:      linux-hexagon@vger.kernel.org
17153 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bcain/linux.git
17154 S:      Supported
17155 F:      arch/hexagon/
17156
17157 QUALCOMM HIDMA DRIVER
17158 M:      Sinan Kaya <okaya@kernel.org>
17159 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17160 L:      linux-arm-msm@vger.kernel.org
17161 L:      dmaengine@vger.kernel.org
17162 S:      Supported
17163 F:      drivers/dma/qcom/hidma*
17164
17165 QUALCOMM I2C CCI DRIVER
17166 M:      Loic Poulain <loic.poulain@linaro.org>
17167 M:      Robert Foss <rfoss@kernel.org>
17168 L:      linux-i2c@vger.kernel.org
17169 L:      linux-arm-msm@vger.kernel.org
17170 S:      Maintained
17171 F:      Documentation/devicetree/bindings/i2c/qcom,i2c-cci.yaml
17172 F:      drivers/i2c/busses/i2c-qcom-cci.c
17173
17174 QUALCOMM INTERCONNECT BWMON DRIVER
17175 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17176 L:      linux-arm-msm@vger.kernel.org
17177 S:      Maintained
17178 F:      Documentation/devicetree/bindings/interconnect/qcom,msm8998-bwmon.yaml
17179 F:      drivers/soc/qcom/icc-bwmon.c
17180
17181 QUALCOMM IOMMU
17182 M:      Rob Clark <robdclark@gmail.com>
17183 L:      iommu@lists.linux.dev
17184 L:      linux-arm-msm@vger.kernel.org
17185 S:      Maintained
17186 F:      drivers/iommu/arm/arm-smmu/qcom_iommu.c
17187
17188 QUALCOMM IPC ROUTER (QRTR) DRIVER
17189 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
17190 L:      linux-arm-msm@vger.kernel.org
17191 S:      Maintained
17192 F:      include/trace/events/qrtr.h
17193 F:      include/uapi/linux/qrtr.h
17194 F:      net/qrtr/
17195
17196 QUALCOMM IPCC MAILBOX DRIVER
17197 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
17198 L:      linux-arm-msm@vger.kernel.org
17199 S:      Supported
17200 F:      Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
17201 F:      drivers/mailbox/qcom-ipcc.c
17202 F:      include/dt-bindings/mailbox/qcom-ipcc.h
17203
17204 QUALCOMM IPQ4019 USB PHY DRIVER
17205 M:      Robert Marko <robert.marko@sartura.hr>
17206 M:      Luka Perkov <luka.perkov@sartura.hr>
17207 L:      linux-arm-msm@vger.kernel.org
17208 S:      Maintained
17209 F:      Documentation/devicetree/bindings/phy/qcom-usb-ipq4019-phy.yaml
17210 F:      drivers/phy/qualcomm/phy-qcom-ipq4019-usb.c
17211
17212 QUALCOMM IPQ4019 VQMMC REGULATOR DRIVER
17213 M:      Robert Marko <robert.marko@sartura.hr>
17214 M:      Luka Perkov <luka.perkov@sartura.hr>
17215 L:      linux-arm-msm@vger.kernel.org
17216 S:      Maintained
17217 F:      Documentation/devicetree/bindings/regulator/vqmmc-ipq4019-regulator.yaml
17218 F:      drivers/regulator/vqmmc-ipq4019-regulator.c
17219
17220 QUALCOMM NAND CONTROLLER DRIVER
17221 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
17222 L:      linux-mtd@lists.infradead.org
17223 L:      linux-arm-msm@vger.kernel.org
17224 S:      Maintained
17225 F:      Documentation/devicetree/bindings/mtd/qcom,nandc.yaml
17226 F:      drivers/mtd/nand/raw/qcom_nandc.c
17227
17228 QUALCOMM RMNET DRIVER
17229 M:      Subash Abhinov Kasiviswanathan <quic_subashab@quicinc.com>
17230 M:      Sean Tranchetti <quic_stranche@quicinc.com>
17231 L:      netdev@vger.kernel.org
17232 S:      Maintained
17233 F:      Documentation/networking/device_drivers/cellular/qualcomm/rmnet.rst
17234 F:      drivers/net/ethernet/qualcomm/rmnet/
17235 F:      include/linux/if_rmnet.h
17236
17237 QUALCOMM TSENS THERMAL DRIVER
17238 M:      Amit Kucheria <amitk@kernel.org>
17239 M:      Thara Gopinath <thara.gopinath@gmail.com>
17240 L:      linux-pm@vger.kernel.org
17241 L:      linux-arm-msm@vger.kernel.org
17242 S:      Maintained
17243 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
17244 F:      drivers/thermal/qcom/
17245
17246 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
17247 M:      Stanimir Varbanov <stanimir.k.varbanov@gmail.com>
17248 M:      Vikash Garodia <quic_vgarodia@quicinc.com>
17249 L:      linux-media@vger.kernel.org
17250 L:      linux-arm-msm@vger.kernel.org
17251 S:      Maintained
17252 T:      git git://linuxtv.org/media_tree.git
17253 F:      Documentation/devicetree/bindings/media/*venus*
17254 F:      drivers/media/platform/qcom/venus/
17255
17256 QUALCOMM WCN36XX WIRELESS DRIVER
17257 M:      Loic Poulain <loic.poulain@linaro.org>
17258 L:      wcn36xx@lists.infradead.org
17259 S:      Supported
17260 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
17261 F:      drivers/net/wireless/ath/wcn36xx/
17262
17263 QUANTENNA QTNFMAC WIRELESS DRIVER
17264 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
17265 R:      Sergey Matyukevich <geomatsi@gmail.com>
17266 L:      linux-wireless@vger.kernel.org
17267 S:      Maintained
17268 F:      drivers/net/wireless/quantenna
17269
17270 RADEON and AMDGPU DRM DRIVERS
17271 M:      Alex Deucher <alexander.deucher@amd.com>
17272 M:      Christian König <christian.koenig@amd.com>
17273 M:      Pan, Xinhui <Xinhui.Pan@amd.com>
17274 L:      amd-gfx@lists.freedesktop.org
17275 S:      Supported
17276 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
17277 B:      https://gitlab.freedesktop.org/drm/amd/-/issues
17278 C:      irc://irc.oftc.net/radeon
17279 F:      Documentation/gpu/amdgpu/
17280 F:      drivers/gpu/drm/amd/
17281 F:      drivers/gpu/drm/radeon/
17282 F:      include/uapi/drm/amdgpu_drm.h
17283 F:      include/uapi/drm/radeon_drm.h
17284
17285 RADEON FRAMEBUFFER DISPLAY DRIVER
17286 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
17287 L:      linux-fbdev@vger.kernel.org
17288 S:      Maintained
17289 F:      drivers/video/fbdev/aty/radeon*
17290 F:      include/uapi/linux/radeonfb.h
17291
17292 RADIOSHARK RADIO DRIVER
17293 M:      Hans Verkuil <hverkuil@xs4all.nl>
17294 L:      linux-media@vger.kernel.org
17295 S:      Maintained
17296 T:      git git://linuxtv.org/media_tree.git
17297 F:      drivers/media/radio/radio-shark.c
17298
17299 RADIOSHARK2 RADIO DRIVER
17300 M:      Hans Verkuil <hverkuil@xs4all.nl>
17301 L:      linux-media@vger.kernel.org
17302 S:      Maintained
17303 T:      git git://linuxtv.org/media_tree.git
17304 F:      drivers/media/radio/radio-shark2.c
17305 F:      drivers/media/radio/radio-tea5777.c
17306
17307 RADOS BLOCK DEVICE (RBD)
17308 M:      Ilya Dryomov <idryomov@gmail.com>
17309 R:      Dongsheng Yang <dongsheng.yang@easystack.cn>
17310 L:      ceph-devel@vger.kernel.org
17311 S:      Supported
17312 W:      http://ceph.com/
17313 T:      git https://github.com/ceph/ceph-client.git
17314 F:      Documentation/ABI/testing/sysfs-bus-rbd
17315 F:      drivers/block/rbd.c
17316 F:      drivers/block/rbd_types.h
17317
17318 RAGE128 FRAMEBUFFER DISPLAY DRIVER
17319 M:      Paul Mackerras <paulus@samba.org>
17320 L:      linux-fbdev@vger.kernel.org
17321 S:      Maintained
17322 F:      drivers/video/fbdev/aty/aty128fb.c
17323
17324 RAINSHADOW-CEC DRIVER
17325 M:      Hans Verkuil <hverkuil@xs4all.nl>
17326 L:      linux-media@vger.kernel.org
17327 S:      Maintained
17328 T:      git git://linuxtv.org/media_tree.git
17329 F:      drivers/media/cec/usb/rainshadow/
17330
17331 RALINK MIPS ARCHITECTURE
17332 M:      John Crispin <john@phrozen.org>
17333 L:      linux-mips@vger.kernel.org
17334 S:      Maintained
17335 F:      arch/mips/ralink
17336
17337 RALINK MT7621 MIPS ARCHITECTURE
17338 M:      Arınç ÜNAL <arinc.unal@arinc9.com>
17339 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
17340 L:      linux-mips@vger.kernel.org
17341 S:      Maintained
17342 F:      arch/mips/boot/dts/ralink/mt7621*
17343
17344 RALINK PINCTRL DRIVER
17345 M:      Arınç ÜNAL <arinc.unal@arinc9.com>
17346 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
17347 L:      linux-mips@vger.kernel.org
17348 S:      Maintained
17349 F:      drivers/pinctrl/ralink/
17350
17351 RALINK RT2X00 WIRELESS LAN DRIVER
17352 M:      Stanislaw Gruszka <stf_xl@wp.pl>
17353 M:      Helmut Schaa <helmut.schaa@googlemail.com>
17354 L:      linux-wireless@vger.kernel.org
17355 S:      Maintained
17356 F:      drivers/net/wireless/ralink/rt2x00/
17357
17358 RAMDISK RAM BLOCK DEVICE DRIVER
17359 M:      Jens Axboe <axboe@kernel.dk>
17360 S:      Maintained
17361 F:      Documentation/admin-guide/blockdev/ramdisk.rst
17362 F:      drivers/block/brd.c
17363
17364 RANCHU VIRTUAL BOARD FOR MIPS
17365 M:      Miodrag Dinic <miodrag.dinic@mips.com>
17366 L:      linux-mips@vger.kernel.org
17367 S:      Supported
17368 F:      arch/mips/configs/generic/board-ranchu.config
17369 F:      arch/mips/generic/board-ranchu.c
17370
17371 RANDOM NUMBER DRIVER
17372 M:      "Theodore Ts'o" <tytso@mit.edu>
17373 M:      Jason A. Donenfeld <Jason@zx2c4.com>
17374 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/crng/random.git
17375 S:      Maintained
17376 F:      drivers/char/random.c
17377 F:      drivers/virt/vmgenid.c
17378
17379 RAPIDIO SUBSYSTEM
17380 M:      Matt Porter <mporter@kernel.crashing.org>
17381 M:      Alexandre Bounine <alex.bou9@gmail.com>
17382 S:      Maintained
17383 F:      drivers/rapidio/
17384
17385 RAS INFRASTRUCTURE
17386 M:      Tony Luck <tony.luck@intel.com>
17387 M:      Borislav Petkov <bp@alien8.de>
17388 L:      linux-edac@vger.kernel.org
17389 S:      Maintained
17390 F:      Documentation/admin-guide/ras.rst
17391 F:      drivers/ras/
17392 F:      include/linux/ras.h
17393 F:      include/ras/ras_event.h
17394
17395 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
17396 L:      linux-wireless@vger.kernel.org
17397 S:      Orphan
17398 F:      drivers/net/wireless/ray*
17399
17400 RC-CORE / LIRC FRAMEWORK
17401 M:      Sean Young <sean@mess.org>
17402 L:      linux-media@vger.kernel.org
17403 S:      Maintained
17404 W:      http://linuxtv.org
17405 T:      git git://linuxtv.org/media_tree.git
17406 F:      Documentation/driver-api/media/rc-core.rst
17407 F:      Documentation/userspace-api/media/rc/
17408 F:      drivers/media/rc/
17409 F:      include/media/rc-map.h
17410 F:      include/media/rc-core.h
17411 F:      include/uapi/linux/lirc.h
17412
17413 RCMM REMOTE CONTROLS DECODER
17414 M:      Patrick Lerda <patrick9876@free.fr>
17415 S:      Maintained
17416 F:      drivers/media/rc/ir-rcmm-decoder.c
17417
17418 RCUTORTURE TEST FRAMEWORK
17419 M:      "Paul E. McKenney" <paulmck@kernel.org>
17420 M:      Josh Triplett <josh@joshtriplett.org>
17421 R:      Steven Rostedt <rostedt@goodmis.org>
17422 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
17423 R:      Lai Jiangshan <jiangshanlai@gmail.com>
17424 L:      rcu@vger.kernel.org
17425 S:      Supported
17426 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17427 F:      tools/testing/selftests/rcutorture
17428
17429 RDACM20 Camera Sensor
17430 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
17431 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
17432 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
17433 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
17434 L:      linux-media@vger.kernel.org
17435 S:      Maintained
17436 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
17437 F:      drivers/media/i2c/max9271.c
17438 F:      drivers/media/i2c/max9271.h
17439 F:      drivers/media/i2c/rdacm20.c
17440
17441 RDACM21 Camera Sensor
17442 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
17443 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
17444 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
17445 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
17446 L:      linux-media@vger.kernel.org
17447 S:      Maintained
17448 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
17449 F:      drivers/media/i2c/max9271.c
17450 F:      drivers/media/i2c/max9271.h
17451 F:      drivers/media/i2c/rdacm21.c
17452
17453 RDC R-321X SoC
17454 M:      Florian Fainelli <florian@openwrt.org>
17455 S:      Maintained
17456
17457 RDC R6040 FAST ETHERNET DRIVER
17458 M:      Florian Fainelli <f.fainelli@gmail.com>
17459 L:      netdev@vger.kernel.org
17460 S:      Maintained
17461 F:      drivers/net/ethernet/rdc/r6040.c
17462
17463 RDMAVT - RDMA verbs software
17464 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
17465 L:      linux-rdma@vger.kernel.org
17466 S:      Supported
17467 F:      drivers/infiniband/sw/rdmavt
17468
17469 RDS - RELIABLE DATAGRAM SOCKETS
17470 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
17471 L:      netdev@vger.kernel.org
17472 L:      linux-rdma@vger.kernel.org
17473 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
17474 S:      Supported
17475 W:      https://oss.oracle.com/projects/rds/
17476 F:      Documentation/networking/rds.rst
17477 F:      net/rds/
17478
17479 RDT - RESOURCE ALLOCATION
17480 M:      Fenghua Yu <fenghua.yu@intel.com>
17481 M:      Reinette Chatre <reinette.chatre@intel.com>
17482 L:      linux-kernel@vger.kernel.org
17483 S:      Supported
17484 F:      Documentation/x86/resctrl*
17485 F:      arch/x86/include/asm/resctrl.h
17486 F:      arch/x86/kernel/cpu/resctrl/
17487 F:      tools/testing/selftests/resctrl/
17488
17489 READ-COPY UPDATE (RCU)
17490 M:      "Paul E. McKenney" <paulmck@kernel.org>
17491 M:      Frederic Weisbecker <frederic@kernel.org> (kernel/rcu/tree_nocb.h)
17492 M:      Neeraj Upadhyay <quic_neeraju@quicinc.com> (kernel/rcu/tasks.h)
17493 M:      Josh Triplett <josh@joshtriplett.org>
17494 R:      Steven Rostedt <rostedt@goodmis.org>
17495 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
17496 R:      Lai Jiangshan <jiangshanlai@gmail.com>
17497 R:      Joel Fernandes <joel@joelfernandes.org>
17498 L:      rcu@vger.kernel.org
17499 S:      Supported
17500 W:      http://www.rdrop.com/users/paulmck/RCU/
17501 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17502 F:      Documentation/RCU/
17503 F:      include/linux/rcu*
17504 F:      kernel/rcu/
17505 X:      Documentation/RCU/torture.rst
17506 X:      include/linux/srcu*.h
17507 X:      kernel/rcu/srcu*.c
17508
17509 REAL TIME CLOCK (RTC) SUBSYSTEM
17510 M:      Alessandro Zummo <a.zummo@towertech.it>
17511 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
17512 L:      linux-rtc@vger.kernel.org
17513 S:      Maintained
17514 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
17515 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
17516 F:      Documentation/admin-guide/rtc.rst
17517 F:      Documentation/devicetree/bindings/rtc/
17518 F:      drivers/rtc/
17519 F:      include/linux/platform_data/rtc-*
17520 F:      include/linux/rtc.h
17521 F:      include/linux/rtc/
17522 F:      include/uapi/linux/rtc.h
17523 F:      tools/testing/selftests/rtc/
17524
17525 REALTEK AUDIO CODECS
17526 M:      Oder Chiou <oder_chiou@realtek.com>
17527 S:      Maintained
17528 F:      include/sound/rt*.h
17529 F:      sound/soc/codecs/rt*
17530
17531 REALTEK OTTO WATCHDOG
17532 M:      Sander Vanheule <sander@svanheule.net>
17533 L:      linux-watchdog@vger.kernel.org
17534 S:      Maintained
17535 F:      Documentation/devicetree/bindings/watchdog/realtek,otto-wdt.yaml
17536 F:      drivers/watchdog/realtek_otto_wdt.c
17537
17538 REALTEK RTL83xx SMI DSA ROUTER CHIPS
17539 M:      Linus Walleij <linus.walleij@linaro.org>
17540 M:      Alvin Šipraga <alsi@bang-olufsen.dk>
17541 S:      Maintained
17542 F:      Documentation/devicetree/bindings/net/dsa/realtek.yaml
17543 F:      drivers/net/dsa/realtek/*
17544
17545 REALTEK WIRELESS DRIVER (rtlwifi family)
17546 M:      Ping-Ke Shih <pkshih@realtek.com>
17547 L:      linux-wireless@vger.kernel.org
17548 S:      Maintained
17549 W:      https://wireless.wiki.kernel.org/
17550 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
17551 F:      drivers/net/wireless/realtek/rtlwifi/
17552
17553 REALTEK WIRELESS DRIVER (rtw88)
17554 M:      Yan-Hsuan Chuang <tony0620emma@gmail.com>
17555 L:      linux-wireless@vger.kernel.org
17556 S:      Maintained
17557 F:      drivers/net/wireless/realtek/rtw88/
17558
17559 REALTEK WIRELESS DRIVER (rtw89)
17560 M:      Ping-Ke Shih <pkshih@realtek.com>
17561 L:      linux-wireless@vger.kernel.org
17562 S:      Maintained
17563 F:      drivers/net/wireless/realtek/rtw89/
17564
17565 REDPINE WIRELESS DRIVER
17566 L:      linux-wireless@vger.kernel.org
17567 S:      Orphan
17568 F:      drivers/net/wireless/rsi/
17569
17570 REGISTER MAP ABSTRACTION
17571 M:      Mark Brown <broonie@kernel.org>
17572 L:      linux-kernel@vger.kernel.org
17573 S:      Supported
17574 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
17575 F:      Documentation/devicetree/bindings/regmap/
17576 F:      drivers/base/regmap/
17577 F:      include/linux/regmap.h
17578
17579 REISERFS FILE SYSTEM
17580 L:      reiserfs-devel@vger.kernel.org
17581 S:      Supported
17582 F:      fs/reiserfs/
17583
17584 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
17585 M:      Bjorn Andersson <andersson@kernel.org>
17586 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
17587 L:      linux-remoteproc@vger.kernel.org
17588 S:      Maintained
17589 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux.git rproc-next
17590 F:      Documentation/ABI/testing/sysfs-class-remoteproc
17591 F:      Documentation/devicetree/bindings/remoteproc/
17592 F:      Documentation/staging/remoteproc.rst
17593 F:      drivers/remoteproc/
17594 F:      include/linux/remoteproc.h
17595 F:      include/linux/remoteproc/
17596
17597 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
17598 M:      Bjorn Andersson <andersson@kernel.org>
17599 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
17600 L:      linux-remoteproc@vger.kernel.org
17601 S:      Maintained
17602 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux.git rpmsg-next
17603 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
17604 F:      Documentation/staging/rpmsg.rst
17605 F:      drivers/rpmsg/
17606 F:      include/linux/rpmsg.h
17607 F:      include/linux/rpmsg/
17608 F:      include/uapi/linux/rpmsg.h
17609 F:      samples/rpmsg/
17610
17611 REMOTE PROCESSOR MESSAGING (RPMSG) WWAN CONTROL DRIVER
17612 M:      Stephan Gerhold <stephan@gerhold.net>
17613 L:      netdev@vger.kernel.org
17614 L:      linux-remoteproc@vger.kernel.org
17615 S:      Maintained
17616 F:      drivers/net/wwan/rpmsg_wwan_ctrl.c
17617
17618 RENESAS CLOCK DRIVERS
17619 M:      Geert Uytterhoeven <geert+renesas@glider.be>
17620 L:      linux-renesas-soc@vger.kernel.org
17621 S:      Supported
17622 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-clk
17623 F:      Documentation/devicetree/bindings/clock/renesas,*
17624 F:      drivers/clk/renesas/
17625
17626 RENESAS EMEV2 I2C DRIVER
17627 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
17628 L:      linux-renesas-soc@vger.kernel.org
17629 S:      Supported
17630 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.yaml
17631 F:      drivers/i2c/busses/i2c-emev2.c
17632
17633 RENESAS ETHERNET DRIVERS
17634 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
17635 L:      netdev@vger.kernel.org
17636 L:      linux-renesas-soc@vger.kernel.org
17637 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
17638 F:      drivers/net/ethernet/renesas/
17639 F:      include/linux/sh_eth.h
17640
17641 RENESAS R-CAR GYROADC DRIVER
17642 M:      Marek Vasut <marek.vasut@gmail.com>
17643 L:      linux-iio@vger.kernel.org
17644 S:      Supported
17645 F:      Documentation/devicetree/bindings/iio/adc/renesas,rcar-gyroadc.yaml
17646 F:      drivers/iio/adc/rcar-gyroadc.c
17647
17648 RENESAS R-CAR I2C DRIVERS
17649 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
17650 L:      linux-renesas-soc@vger.kernel.org
17651 S:      Supported
17652 F:      Documentation/devicetree/bindings/i2c/renesas,rcar-i2c.yaml
17653 F:      Documentation/devicetree/bindings/i2c/renesas,rmobile-iic.yaml
17654 F:      drivers/i2c/busses/i2c-rcar.c
17655 F:      drivers/i2c/busses/i2c-sh_mobile.c
17656
17657 RENESAS R-CAR SATA DRIVER
17658 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
17659 S:      Supported
17660 L:      linux-ide@vger.kernel.org
17661 L:      linux-renesas-soc@vger.kernel.org
17662 F:      Documentation/devicetree/bindings/ata/renesas,rcar-sata.yaml
17663 F:      drivers/ata/sata_rcar.c
17664
17665 RENESAS R-CAR THERMAL DRIVERS
17666 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
17667 L:      linux-renesas-soc@vger.kernel.org
17668 S:      Supported
17669 F:      Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.yaml
17670 F:      Documentation/devicetree/bindings/thermal/rcar-thermal.yaml
17671 F:      drivers/thermal/rcar_gen3_thermal.c
17672 F:      drivers/thermal/rcar_thermal.c
17673
17674 RENESAS RIIC DRIVER
17675 M:      Chris Brandt <chris.brandt@renesas.com>
17676 L:      linux-renesas-soc@vger.kernel.org
17677 S:      Supported
17678 F:      Documentation/devicetree/bindings/i2c/renesas,riic.yaml
17679 F:      drivers/i2c/busses/i2c-riic.c
17680
17681 RENESAS USB PHY DRIVER
17682 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
17683 L:      linux-renesas-soc@vger.kernel.org
17684 S:      Maintained
17685 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
17686
17687 RENESAS RZ/G2L A/D DRIVER
17688 M:      Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
17689 L:      linux-iio@vger.kernel.org
17690 L:      linux-renesas-soc@vger.kernel.org
17691 S:      Supported
17692 F:      Documentation/devicetree/bindings/iio/adc/renesas,rzg2l-adc.yaml
17693 F:      drivers/iio/adc/rzg2l_adc.c
17694
17695 RENESAS RZ/N1 A5PSW SWITCH DRIVER
17696 M:      Clément Léger <clement.leger@bootlin.com>
17697 L:      linux-renesas-soc@vger.kernel.org
17698 L:      netdev@vger.kernel.org
17699 S:      Maintained
17700 F:      Documentation/devicetree/bindings/net/dsa/renesas,rzn1-a5psw.yaml
17701 F:      Documentation/devicetree/bindings/net/pcs/renesas,rzn1-miic.yaml
17702 F:      drivers/net/dsa/rzn1_a5psw*
17703 F:      drivers/net/pcs/pcs-rzn1-miic.c
17704 F:      include/dt-bindings/net/pcs-rzn1-miic.h
17705 F:      include/linux/pcs-rzn1-miic.h
17706 F:      net/dsa/tag_rzn1_a5psw.c
17707
17708 RENESAS RZ/N1 RTC CONTROLLER DRIVER
17709 M:      Miquel Raynal <miquel.raynal@bootlin.com>
17710 L:      linux-rtc@vger.kernel.org
17711 L:      linux-renesas-soc@vger.kernel.org
17712 S:      Maintained
17713 F:      Documentation/devicetree/bindings/rtc/renesas,rzn1-rtc.yaml
17714 F:      drivers/rtc/rtc-rzn1.c
17715
17716 RENESAS R-CAR GEN3 & RZ/N1 NAND CONTROLLER DRIVER
17717 M:      Miquel Raynal <miquel.raynal@bootlin.com>
17718 L:      linux-mtd@lists.infradead.org
17719 L:      linux-renesas-soc@vger.kernel.org
17720 S:      Maintained
17721 F:      Documentation/devicetree/bindings/mtd/renesas-nandc.yaml
17722 F:      drivers/mtd/nand/raw/renesas-nand-controller.c
17723
17724 RENESAS VERSACLOCK 7 CLOCK DRIVER
17725 M:      Alex Helms <alexander.helms.jy@renesas.com>
17726 S:      Maintained
17727 F:      Documentation/devicetree/bindings/clock/renesas,versaclock7.yaml
17728 F:      drivers/clk/clk-versaclock7.c
17729
17730 RESET CONTROLLER FRAMEWORK
17731 M:      Philipp Zabel <p.zabel@pengutronix.de>
17732 S:      Maintained
17733 T:      git git://git.pengutronix.de/git/pza/linux
17734 F:      Documentation/devicetree/bindings/reset/
17735 F:      Documentation/driver-api/reset.rst
17736 F:      drivers/reset/
17737 F:      include/dt-bindings/reset/
17738 F:      include/linux/reset-controller.h
17739 F:      include/linux/reset.h
17740 F:      include/linux/reset/
17741 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
17742
17743 RESTARTABLE SEQUENCES SUPPORT
17744 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
17745 M:      Peter Zijlstra <peterz@infradead.org>
17746 M:      "Paul E. McKenney" <paulmck@kernel.org>
17747 M:      Boqun Feng <boqun.feng@gmail.com>
17748 L:      linux-kernel@vger.kernel.org
17749 S:      Supported
17750 F:      include/trace/events/rseq.h
17751 F:      include/uapi/linux/rseq.h
17752 F:      kernel/rseq.c
17753 F:      tools/testing/selftests/rseq/
17754
17755 RFKILL
17756 M:      Johannes Berg <johannes@sipsolutions.net>
17757 L:      linux-wireless@vger.kernel.org
17758 S:      Maintained
17759 W:      https://wireless.wiki.kernel.org/
17760 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
17761 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
17762 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
17763 F:      Documentation/ABI/stable/sysfs-class-rfkill
17764 F:      Documentation/driver-api/rfkill.rst
17765 F:      include/linux/rfkill.h
17766 F:      include/uapi/linux/rfkill.h
17767 F:      net/rfkill/
17768
17769 RHASHTABLE
17770 M:      Thomas Graf <tgraf@suug.ch>
17771 M:      Herbert Xu <herbert@gondor.apana.org.au>
17772 L:      netdev@vger.kernel.org
17773 S:      Maintained
17774 F:      include/linux/rhashtable-types.h
17775 F:      include/linux/rhashtable.h
17776 F:      lib/rhashtable.c
17777 F:      lib/test_rhashtable.c
17778
17779 RICOH R5C592 MEMORYSTICK DRIVER
17780 M:      Maxim Levitsky <maximlevitsky@gmail.com>
17781 S:      Maintained
17782 F:      drivers/memstick/host/r592.*
17783
17784 RICOH SMARTMEDIA/XD DRIVER
17785 M:      Maxim Levitsky <maximlevitsky@gmail.com>
17786 S:      Maintained
17787 F:      drivers/mtd/nand/raw/r852.c
17788 F:      drivers/mtd/nand/raw/r852.h
17789
17790 RISC-V PMU DRIVERS
17791 M:      Atish Patra <atishp@atishpatra.org>
17792 R:      Anup Patel <anup@brainfault.org>
17793 L:      linux-riscv@lists.infradead.org
17794 S:      Supported
17795 F:      drivers/perf/riscv_pmu.c
17796 F:      drivers/perf/riscv_pmu_legacy.c
17797 F:      drivers/perf/riscv_pmu_sbi.c
17798
17799 RISC-V ARCHITECTURE
17800 M:      Paul Walmsley <paul.walmsley@sifive.com>
17801 M:      Palmer Dabbelt <palmer@dabbelt.com>
17802 M:      Albert Ou <aou@eecs.berkeley.edu>
17803 L:      linux-riscv@lists.infradead.org
17804 S:      Supported
17805 Q:      https://patchwork.kernel.org/project/linux-riscv/list/
17806 C:      irc://irc.libera.chat/riscv
17807 P:      Documentation/riscv/patch-acceptance.rst
17808 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
17809 F:      arch/riscv/
17810 N:      riscv
17811 K:      riscv
17812
17813 RISC-V MICROCHIP FPGA SUPPORT
17814 M:      Conor Dooley <conor.dooley@microchip.com>
17815 M:      Daire McNamara <daire.mcnamara@microchip.com>
17816 L:      linux-riscv@lists.infradead.org
17817 S:      Supported
17818 F:      Documentation/devicetree/bindings/clock/microchip,mpfs*.yaml
17819 F:      Documentation/devicetree/bindings/gpio/microchip,mpfs-gpio.yaml
17820 F:      Documentation/devicetree/bindings/i2c/microchip,corei2c.yaml
17821 F:      Documentation/devicetree/bindings/mailbox/microchip,mpfs-mailbox.yaml
17822 F:      Documentation/devicetree/bindings/net/can/microchip,mpfs-can.yaml
17823 F:      Documentation/devicetree/bindings/pwm/microchip,corepwm.yaml
17824 F:      Documentation/devicetree/bindings/riscv/microchip.yaml
17825 F:      Documentation/devicetree/bindings/soc/microchip/microchip,mpfs-sys-controller.yaml
17826 F:      Documentation/devicetree/bindings/spi/microchip,mpfs-spi.yaml
17827 F:      Documentation/devicetree/bindings/usb/microchip,mpfs-musb.yaml
17828 F:      arch/riscv/boot/dts/microchip/
17829 F:      drivers/char/hw_random/mpfs-rng.c
17830 F:      drivers/clk/microchip/clk-mpfs.c
17831 F:      drivers/i2c/busses/i2c-microchip-corei2c.c
17832 F:      drivers/mailbox/mailbox-mpfs.c
17833 F:      drivers/pci/controller/pcie-microchip-host.c
17834 F:      drivers/reset/reset-mpfs.c
17835 F:      drivers/rtc/rtc-mpfs.c
17836 F:      drivers/soc/microchip/mpfs-sys-controller.c
17837 F:      drivers/spi/spi-microchip-core-qspi.c
17838 F:      drivers/spi/spi-microchip-core.c
17839 F:      drivers/usb/musb/mpfs.c
17840 F:      include/soc/microchip/mpfs.h
17841
17842 RISC-V MISC SOC SUPPORT
17843 M:      Conor Dooley <conor@kernel.org>
17844 L:      linux-riscv@lists.infradead.org
17845 S:      Maintained
17846 Q:      https://patchwork.kernel.org/project/linux-riscv/list/
17847 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/conor/linux.git/
17848 F:      Documentation/devicetree/bindings/riscv/
17849 F:      arch/riscv/boot/dts/
17850
17851 RNBD BLOCK DRIVERS
17852 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
17853 M:      Jack Wang <jinpu.wang@ionos.com>
17854 L:      linux-block@vger.kernel.org
17855 S:      Maintained
17856 F:      drivers/block/rnbd/
17857
17858 ROCCAT DRIVERS
17859 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
17860 S:      Maintained
17861 W:      http://sourceforge.net/projects/roccat/
17862 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
17863 F:      drivers/hid/hid-roccat*
17864 F:      include/linux/hid-roccat*
17865
17866 ROCKCHIP CRYPTO DRIVERS
17867 M:      Corentin Labbe <clabbe@baylibre.com>
17868 L:      linux-crypto@vger.kernel.org
17869 S:      Maintained
17870 F:      Documentation/devicetree/bindings/crypto/rockchip,rk3288-crypto.yaml
17871 F:      drivers/crypto/rockchip/
17872
17873 ROCKCHIP I2S TDM DRIVER
17874 M:      Nicolas Frattaroli <frattaroli.nicolas@gmail.com>
17875 L:      linux-rockchip@lists.infradead.org
17876 S:      Maintained
17877 F:      Documentation/devicetree/bindings/sound/rockchip,i2s-tdm.yaml
17878 F:      sound/soc/rockchip/rockchip_i2s_tdm.*
17879
17880 ROCKCHIP ISP V1 DRIVER
17881 M:      Dafna Hirschfeld <dafna@fastmail.com>
17882 L:      linux-media@vger.kernel.org
17883 L:      linux-rockchip@lists.infradead.org
17884 S:      Maintained
17885 F:      Documentation/admin-guide/media/rkisp1.rst
17886 F:      Documentation/devicetree/bindings/media/rockchip-isp1.yaml
17887 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-rkisp1.rst
17888 F:      drivers/media/platform/rockchip/rkisp1
17889 F:      include/uapi/linux/rkisp1-config.h
17890
17891 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
17892 M:      Jacob Chen <jacob-chen@iotwrt.com>
17893 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
17894 L:      linux-media@vger.kernel.org
17895 L:      linux-rockchip@lists.infradead.org
17896 S:      Maintained
17897 F:      Documentation/devicetree/bindings/media/rockchip-rga.yaml
17898 F:      drivers/media/platform/rockchip/rga/
17899
17900 ROCKCHIP VIDEO DECODER DRIVER
17901 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
17902 L:      linux-media@vger.kernel.org
17903 L:      linux-rockchip@lists.infradead.org
17904 S:      Maintained
17905 F:      Documentation/devicetree/bindings/media/rockchip,vdec.yaml
17906 F:      drivers/staging/media/rkvdec/
17907
17908 ROCKER DRIVER
17909 M:      Jiri Pirko <jiri@resnulli.us>
17910 L:      netdev@vger.kernel.org
17911 S:      Supported
17912 F:      drivers/net/ethernet/rocker/
17913
17914 ROCKETPORT EXPRESS/INFINITY DRIVER
17915 M:      Kevin Cernekee <cernekee@gmail.com>
17916 L:      linux-serial@vger.kernel.org
17917 S:      Odd Fixes
17918 F:      drivers/tty/serial/rp2.*
17919
17920 ROHM BD99954 CHARGER IC
17921 M:      Matti Vaittinen <mazziesaccount@gmail.com>
17922 S:      Supported
17923 F:      drivers/power/supply/bd99954-charger.c
17924 F:      drivers/power/supply/bd99954-charger.h
17925
17926 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
17927 M:      Tomasz Duszynski <tduszyns@gmail.com>
17928 S:      Maintained
17929 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
17930 F:      drivers/iio/light/bh1750.c
17931
17932 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
17933 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
17934 L:      linux-kernel@vger.kernel.org
17935 L:      linux-renesas-soc@vger.kernel.org
17936 S:      Supported
17937 F:      Documentation/devicetree/bindings/mfd/rohm,bd9571mwv.yaml
17938 F:      drivers/gpio/gpio-bd9571mwv.c
17939 F:      drivers/mfd/bd9571mwv.c
17940 F:      drivers/regulator/bd9571mwv-regulator.c
17941 F:      include/linux/mfd/bd9571mwv.h
17942
17943 ROHM POWER MANAGEMENT IC DEVICE DRIVERS
17944 M:      Matti Vaittinen <mazziesaccount@gmail.com>
17945 S:      Supported
17946 F:      drivers/clk/clk-bd718x7.c
17947 F:      drivers/gpio/gpio-bd71815.c
17948 F:      drivers/gpio/gpio-bd71828.c
17949 F:      drivers/mfd/rohm-bd71828.c
17950 F:      drivers/mfd/rohm-bd718x7.c
17951 F:      drivers/mfd/rohm-bd9576.c
17952 F:      drivers/regulator/bd71815-regulator.c
17953 F:      drivers/regulator/bd71828-regulator.c
17954 F:      drivers/regulator/bd718x7-regulator.c
17955 F:      drivers/regulator/bd9576-regulator.c
17956 F:      drivers/regulator/rohm-regulator.c
17957 F:      drivers/rtc/rtc-bd70528.c
17958 F:      drivers/watchdog/bd9576_wdt.c
17959 F:      include/linux/mfd/rohm-bd71815.h
17960 F:      include/linux/mfd/rohm-bd71828.h
17961 F:      include/linux/mfd/rohm-bd718x7.h
17962 F:      include/linux/mfd/rohm-bd957x.h
17963 F:      include/linux/mfd/rohm-generic.h
17964 F:      include/linux/mfd/rohm-shared.h
17965
17966 ROSE NETWORK LAYER
17967 M:      Ralf Baechle <ralf@linux-mips.org>
17968 L:      linux-hams@vger.kernel.org
17969 S:      Maintained
17970 W:      http://www.linux-ax25.org/
17971 F:      include/net/rose.h
17972 F:      include/uapi/linux/rose.h
17973 F:      net/rose/
17974
17975 ROTATION DRIVER FOR ALLWINNER A83T
17976 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
17977 L:      linux-media@vger.kernel.org
17978 S:      Maintained
17979 T:      git git://linuxtv.org/media_tree.git
17980 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
17981 F:      drivers/media/platform/sunxi/sun8i-rotate/
17982
17983 RPMSG TTY DRIVER
17984 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
17985 L:      linux-remoteproc@vger.kernel.org
17986 S:      Maintained
17987 F:      drivers/tty/rpmsg_tty.c
17988
17989 RTL2830 MEDIA DRIVER
17990 M:      Antti Palosaari <crope@iki.fi>
17991 L:      linux-media@vger.kernel.org
17992 S:      Maintained
17993 W:      https://linuxtv.org
17994 W:      http://palosaari.fi/linux/
17995 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17996 T:      git git://linuxtv.org/anttip/media_tree.git
17997 F:      drivers/media/dvb-frontends/rtl2830*
17998
17999 RTL2832 MEDIA DRIVER
18000 M:      Antti Palosaari <crope@iki.fi>
18001 L:      linux-media@vger.kernel.org
18002 S:      Maintained
18003 W:      https://linuxtv.org
18004 W:      http://palosaari.fi/linux/
18005 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18006 T:      git git://linuxtv.org/anttip/media_tree.git
18007 F:      drivers/media/dvb-frontends/rtl2832*
18008
18009 RTL2832_SDR MEDIA DRIVER
18010 M:      Antti Palosaari <crope@iki.fi>
18011 L:      linux-media@vger.kernel.org
18012 S:      Maintained
18013 W:      https://linuxtv.org
18014 W:      http://palosaari.fi/linux/
18015 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18016 T:      git git://linuxtv.org/anttip/media_tree.git
18017 F:      drivers/media/dvb-frontends/rtl2832_sdr*
18018
18019 RTL8180 WIRELESS DRIVER
18020 L:      linux-wireless@vger.kernel.org
18021 S:      Orphan
18022 W:      https://wireless.wiki.kernel.org/
18023 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
18024 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
18025
18026 RTL8187 WIRELESS DRIVER
18027 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
18028 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
18029 M:      Larry Finger <Larry.Finger@lwfinger.net>
18030 L:      linux-wireless@vger.kernel.org
18031 S:      Maintained
18032 W:      https://wireless.wiki.kernel.org/
18033 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
18034 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
18035
18036 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
18037 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
18038 L:      linux-wireless@vger.kernel.org
18039 S:      Maintained
18040 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
18041 F:      drivers/net/wireless/realtek/rtl8xxxu/
18042
18043 RTRS TRANSPORT DRIVERS
18044 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
18045 M:      Jack Wang <jinpu.wang@ionos.com>
18046 L:      linux-rdma@vger.kernel.org
18047 S:      Maintained
18048 F:      drivers/infiniband/ulp/rtrs/
18049
18050 RUNTIME VERIFICATION (RV)
18051 M:      Daniel Bristot de Oliveira <bristot@kernel.org>
18052 M:      Steven Rostedt <rostedt@goodmis.org>
18053 L:      linux-trace-devel@vger.kernel.org
18054 S:      Maintained
18055 F:      Documentation/trace/rv/
18056 F:      include/linux/rv.h
18057 F:      include/rv/
18058 F:      kernel/trace/rv/
18059 F:      tools/verification/
18060
18061 RUST
18062 M:      Miguel Ojeda <ojeda@kernel.org>
18063 M:      Alex Gaynor <alex.gaynor@gmail.com>
18064 M:      Wedson Almeida Filho <wedsonaf@gmail.com>
18065 R:      Boqun Feng <boqun.feng@gmail.com>
18066 R:      Gary Guo <gary@garyguo.net>
18067 R:      Björn Roy Baron <bjorn3_gh@protonmail.com>
18068 L:      rust-for-linux@vger.kernel.org
18069 S:      Supported
18070 W:      https://github.com/Rust-for-Linux/linux
18071 B:      https://github.com/Rust-for-Linux/linux/issues
18072 C:      zulip://rust-for-linux.zulipchat.com
18073 T:      git https://github.com/Rust-for-Linux/linux.git rust-next
18074 F:      Documentation/rust/
18075 F:      rust/
18076 F:      samples/rust/
18077 F:      scripts/*rust*
18078 K:      \b(?i:rust)\b
18079
18080 RXRPC SOCKETS (AF_RXRPC)
18081 M:      David Howells <dhowells@redhat.com>
18082 M:      Marc Dionne <marc.dionne@auristor.com>
18083 L:      linux-afs@lists.infradead.org
18084 S:      Supported
18085 W:      https://www.infradead.org/~dhowells/kafs/
18086 F:      Documentation/networking/rxrpc.rst
18087 F:      include/keys/rxrpc-type.h
18088 F:      include/net/af_rxrpc.h
18089 F:      include/trace/events/rxrpc.h
18090 F:      include/uapi/linux/rxrpc.h
18091 F:      net/rxrpc/
18092
18093 S3 SAVAGE FRAMEBUFFER DRIVER
18094 M:      Antonino Daplas <adaplas@gmail.com>
18095 L:      linux-fbdev@vger.kernel.org
18096 S:      Maintained
18097 F:      drivers/video/fbdev/savage/
18098
18099 S390 ARCHITECTURE
18100 M:      Heiko Carstens <hca@linux.ibm.com>
18101 M:      Vasily Gorbik <gor@linux.ibm.com>
18102 M:      Alexander Gordeev <agordeev@linux.ibm.com>
18103 R:      Christian Borntraeger <borntraeger@linux.ibm.com>
18104 R:      Sven Schnelle <svens@linux.ibm.com>
18105 L:      linux-s390@vger.kernel.org
18106 S:      Supported
18107 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
18108 F:      Documentation/driver-api/s390-drivers.rst
18109 F:      Documentation/s390/
18110 F:      arch/s390/
18111 F:      drivers/s390/
18112
18113 S390 COMMON I/O LAYER
18114 M:      Vineeth Vijayan <vneethv@linux.ibm.com>
18115 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
18116 L:      linux-s390@vger.kernel.org
18117 S:      Supported
18118 F:      drivers/s390/cio/
18119
18120 S390 DASD DRIVER
18121 M:      Stefan Haberland <sth@linux.ibm.com>
18122 M:      Jan Hoeppner <hoeppner@linux.ibm.com>
18123 L:      linux-s390@vger.kernel.org
18124 S:      Supported
18125 F:      block/partitions/ibm.c
18126 F:      drivers/s390/block/dasd*
18127 F:      include/linux/dasd_mod.h
18128
18129 S390 IOMMU (PCI)
18130 M:      Matthew Rosato <mjrosato@linux.ibm.com>
18131 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
18132 L:      linux-s390@vger.kernel.org
18133 S:      Supported
18134 F:      drivers/iommu/s390-iommu.c
18135
18136 S390 IUCV NETWORK LAYER
18137 M:      Alexandra Winter <wintera@linux.ibm.com>
18138 M:      Wenjia Zhang <wenjia@linux.ibm.com>
18139 L:      linux-s390@vger.kernel.org
18140 L:      netdev@vger.kernel.org
18141 S:      Supported
18142 F:      drivers/s390/net/*iucv*
18143 F:      include/net/iucv/
18144 F:      net/iucv/
18145
18146 S390 NETWORK DRIVERS
18147 M:      Alexandra Winter <wintera@linux.ibm.com>
18148 M:      Wenjia Zhang <wenjia@linux.ibm.com>
18149 L:      linux-s390@vger.kernel.org
18150 L:      netdev@vger.kernel.org
18151 S:      Supported
18152 F:      drivers/s390/net/
18153
18154 S390 MM
18155 M:      Alexander Gordeev <agordeev@linux.ibm.com>
18156 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
18157 L:      linux-s390@vger.kernel.org
18158 S:      Supported
18159 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
18160 F:      arch/s390/include/asm/pgtable.h
18161 F:      arch/s390/mm
18162
18163 S390 PCI SUBSYSTEM
18164 M:      Niklas Schnelle <schnelle@linux.ibm.com>
18165 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
18166 L:      linux-s390@vger.kernel.org
18167 S:      Supported
18168 F:      arch/s390/pci/
18169 F:      drivers/pci/hotplug/s390_pci_hpc.c
18170 F:      Documentation/s390/pci.rst
18171
18172 S390 VFIO AP DRIVER
18173 M:      Tony Krowiak <akrowiak@linux.ibm.com>
18174 M:      Halil Pasic <pasic@linux.ibm.com>
18175 M:      Jason Herne <jjherne@linux.ibm.com>
18176 L:      linux-s390@vger.kernel.org
18177 S:      Supported
18178 F:      Documentation/s390/vfio-ap*
18179 F:      drivers/s390/crypto/vfio_ap*
18180
18181 S390 VFIO-CCW DRIVER
18182 M:      Eric Farman <farman@linux.ibm.com>
18183 M:      Matthew Rosato <mjrosato@linux.ibm.com>
18184 R:      Halil Pasic <pasic@linux.ibm.com>
18185 L:      linux-s390@vger.kernel.org
18186 L:      kvm@vger.kernel.org
18187 S:      Supported
18188 F:      Documentation/s390/vfio-ccw.rst
18189 F:      drivers/s390/cio/vfio_ccw*
18190 F:      include/uapi/linux/vfio_ccw.h
18191
18192 S390 VFIO-PCI DRIVER
18193 M:      Matthew Rosato <mjrosato@linux.ibm.com>
18194 M:      Eric Farman <farman@linux.ibm.com>
18195 L:      linux-s390@vger.kernel.org
18196 L:      kvm@vger.kernel.org
18197 S:      Supported
18198 F:      arch/s390/kvm/pci*
18199 F:      drivers/vfio/pci/vfio_pci_zdev.c
18200 F:      include/uapi/linux/vfio_zdev.h
18201
18202 S390 ZCRYPT DRIVER
18203 M:      Harald Freudenberger <freude@linux.ibm.com>
18204 L:      linux-s390@vger.kernel.org
18205 S:      Supported
18206 F:      drivers/s390/crypto/
18207
18208 S390 ZFCP DRIVER
18209 M:      Steffen Maier <maier@linux.ibm.com>
18210 M:      Benjamin Block <bblock@linux.ibm.com>
18211 L:      linux-s390@vger.kernel.org
18212 S:      Supported
18213 F:      drivers/s390/scsi/zfcp_*
18214
18215 SAA6588 RDS RECEIVER DRIVER
18216 M:      Hans Verkuil <hverkuil@xs4all.nl>
18217 L:      linux-media@vger.kernel.org
18218 S:      Odd Fixes
18219 W:      https://linuxtv.org
18220 T:      git git://linuxtv.org/media_tree.git
18221 F:      drivers/media/i2c/saa6588*
18222
18223 SAA7134 VIDEO4LINUX DRIVER
18224 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18225 L:      linux-media@vger.kernel.org
18226 S:      Odd fixes
18227 W:      https://linuxtv.org
18228 T:      git git://linuxtv.org/media_tree.git
18229 F:      Documentation/driver-api/media/drivers/saa7134*
18230 F:      drivers/media/pci/saa7134/
18231
18232 SAA7146 VIDEO4LINUX-2 DRIVER
18233 M:      Hans Verkuil <hverkuil@xs4all.nl>
18234 L:      linux-media@vger.kernel.org
18235 S:      Maintained
18236 T:      git git://linuxtv.org/media_tree.git
18237 F:      drivers/staging/media/deprecated/saa7146/
18238
18239 SAFESETID SECURITY MODULE
18240 M:      Micah Morton <mortonm@chromium.org>
18241 S:      Supported
18242 F:      Documentation/admin-guide/LSM/SafeSetID.rst
18243 F:      security/safesetid/
18244
18245 SAMSUNG AUDIO (ASoC) DRIVERS
18246 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18247 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18248 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18249 S:      Supported
18250 B:      mailto:linux-samsung-soc@vger.kernel.org
18251 F:      Documentation/devicetree/bindings/sound/samsung*
18252 F:      sound/soc/samsung/
18253
18254 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
18255 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18256 L:      linux-crypto@vger.kernel.org
18257 L:      linux-samsung-soc@vger.kernel.org
18258 S:      Maintained
18259 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
18260 F:      drivers/crypto/exynos-rng.c
18261
18262 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
18263 M:      Łukasz Stelmach <l.stelmach@samsung.com>
18264 L:      linux-samsung-soc@vger.kernel.org
18265 S:      Maintained
18266 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.yaml
18267 F:      drivers/char/hw_random/exynos-trng.c
18268
18269 SAMSUNG FRAMEBUFFER DRIVER
18270 M:      Jingoo Han <jingoohan1@gmail.com>
18271 L:      linux-fbdev@vger.kernel.org
18272 S:      Maintained
18273 F:      drivers/video/fbdev/s3c-fb.c
18274
18275 SAMSUNG INTERCONNECT DRIVERS
18276 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18277 M:      Artur Świgoń <a.swigon@samsung.com>
18278 L:      linux-pm@vger.kernel.org
18279 L:      linux-samsung-soc@vger.kernel.org
18280 S:      Supported
18281 F:      drivers/interconnect/samsung/
18282
18283 SAMSUNG LAPTOP DRIVER
18284 M:      Corentin Chary <corentin.chary@gmail.com>
18285 L:      platform-driver-x86@vger.kernel.org
18286 S:      Maintained
18287 F:      drivers/platform/x86/samsung-laptop.c
18288
18289 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
18290 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18291 L:      linux-kernel@vger.kernel.org
18292 L:      linux-samsung-soc@vger.kernel.org
18293 S:      Supported
18294 B:      mailto:linux-samsung-soc@vger.kernel.org
18295 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.yaml
18296 F:      Documentation/devicetree/bindings/mfd/samsung,s2m*.yaml
18297 F:      Documentation/devicetree/bindings/mfd/samsung,s5m*.yaml
18298 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.yaml
18299 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.yaml
18300 F:      drivers/clk/clk-s2mps11.c
18301 F:      drivers/mfd/sec*.c
18302 F:      drivers/regulator/s2m*.c
18303 F:      drivers/regulator/s5m*.c
18304 F:      drivers/rtc/rtc-s5m.c
18305 F:      include/linux/mfd/samsung/
18306
18307 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
18308 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
18309 L:      linux-media@vger.kernel.org
18310 L:      linux-samsung-soc@vger.kernel.org
18311 S:      Maintained
18312 F:      drivers/media/platform/samsung/s3c-camif/
18313 F:      include/media/drv-intf/s3c_camif.h
18314
18315 SAMSUNG S3FWRN5 NFC DRIVER
18316 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18317 L:      linux-nfc@lists.01.org (subscribers-only)
18318 S:      Maintained
18319 F:      Documentation/devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml
18320 F:      drivers/nfc/s3fwrn5
18321
18322 SAMSUNG S5C73M3 CAMERA DRIVER
18323 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18324 M:      Andrzej Hajda <andrzej.hajda@intel.com>
18325 L:      linux-media@vger.kernel.org
18326 S:      Supported
18327 F:      drivers/media/i2c/s5c73m3/*
18328
18329 SAMSUNG S5K5BAF CAMERA DRIVER
18330 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18331 M:      Andrzej Hajda <andrzej.hajda@intel.com>
18332 L:      linux-media@vger.kernel.org
18333 S:      Supported
18334 F:      drivers/media/i2c/s5k5baf.c
18335
18336 SAMSUNG S5P Security SubSystem (SSS) DRIVER
18337 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18338 M:      Vladimir Zapolskiy <vz@mleia.com>
18339 L:      linux-crypto@vger.kernel.org
18340 L:      linux-samsung-soc@vger.kernel.org
18341 S:      Maintained
18342 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
18343 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
18344 F:      drivers/crypto/s5p-sss.c
18345
18346 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
18347 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18348 L:      linux-media@vger.kernel.org
18349 S:      Supported
18350 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
18351 F:      drivers/media/platform/samsung/exynos4-is/
18352
18353 SAMSUNG SOC CLOCK DRIVERS
18354 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18355 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18356 M:      Tomasz Figa <tomasz.figa@gmail.com>
18357 M:      Chanwoo Choi <cw00.choi@samsung.com>
18358 R:      Alim Akhtar <alim.akhtar@samsung.com>
18359 L:      linux-samsung-soc@vger.kernel.org
18360 S:      Supported
18361 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux.git
18362 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
18363 F:      Documentation/devicetree/bindings/clock/samsung,*.yaml
18364 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
18365 F:      drivers/clk/samsung/
18366 F:      include/dt-bindings/clock/exynos*.h
18367 F:      include/dt-bindings/clock/s5p*.h
18368 F:      include/dt-bindings/clock/samsung,*.h
18369 F:      include/linux/clk/samsung.h
18370
18371 SAMSUNG SPI DRIVERS
18372 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18373 M:      Andi Shyti <andi@etezian.org>
18374 L:      linux-spi@vger.kernel.org
18375 L:      linux-samsung-soc@vger.kernel.org
18376 S:      Maintained
18377 F:      Documentation/devicetree/bindings/spi/samsung,spi*.yaml
18378 F:      drivers/spi/spi-s3c*
18379 F:      include/linux/platform_data/spi-s3c64xx.h
18380
18381 SAMSUNG SXGBE DRIVERS
18382 M:      Byungho An <bh74.an@samsung.com>
18383 L:      netdev@vger.kernel.org
18384 S:      Supported
18385 F:      drivers/net/ethernet/samsung/sxgbe/
18386
18387 SAMSUNG THERMAL DRIVER
18388 M:      Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
18389 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18390 L:      linux-pm@vger.kernel.org
18391 L:      linux-samsung-soc@vger.kernel.org
18392 S:      Maintained
18393 F:      Documentation/devicetree/bindings/thermal/samsung,exynos-thermal.yaml
18394 F:      drivers/thermal/samsung/
18395
18396 SAMSUNG USB2 PHY DRIVER
18397 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18398 L:      linux-kernel@vger.kernel.org
18399 S:      Supported
18400 F:      Documentation/devicetree/bindings/phy/samsung,usb2-phy.yaml
18401 F:      Documentation/driver-api/phy/samsung-usb2.rst
18402 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
18403 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
18404 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
18405 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
18406 F:      drivers/phy/samsung/phy-samsung-usb2.c
18407 F:      drivers/phy/samsung/phy-samsung-usb2.h
18408
18409 SANCLOUD BEAGLEBONE ENHANCED DEVICE TREE
18410 M:      Paul Barker <paul.barker@sancloud.com>
18411 R:      Marc Murphy <marc.murphy@sancloud.com>
18412 S:      Supported
18413 F:      arch/arm/boot/dts/am335x-sancloud*
18414
18415 SC1200 WDT DRIVER
18416 M:      Zwane Mwaikambo <zwanem@gmail.com>
18417 S:      Maintained
18418 F:      drivers/watchdog/sc1200wdt.c
18419
18420 SCHEDULER
18421 M:      Ingo Molnar <mingo@redhat.com>
18422 M:      Peter Zijlstra <peterz@infradead.org>
18423 M:      Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
18424 M:      Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
18425 R:      Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
18426 R:      Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
18427 R:      Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
18428 R:      Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
18429 R:      Daniel Bristot de Oliveira <bristot@redhat.com> (SCHED_DEADLINE)
18430 R:      Valentin Schneider <vschneid@redhat.com> (TOPOLOGY)
18431 L:      linux-kernel@vger.kernel.org
18432 S:      Maintained
18433 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
18434 F:      include/linux/preempt.h
18435 F:      include/linux/sched.h
18436 F:      include/linux/wait.h
18437 F:      include/uapi/linux/sched.h
18438 F:      kernel/sched/
18439
18440 SCR24X CHIP CARD INTERFACE DRIVER
18441 M:      Lubomir Rintel <lkundrak@v3.sk>
18442 S:      Supported
18443 F:      drivers/char/pcmcia/scr24x_cs.c
18444
18445 SCSI RDMA PROTOCOL (SRP) INITIATOR
18446 M:      Bart Van Assche <bvanassche@acm.org>
18447 L:      linux-rdma@vger.kernel.org
18448 S:      Supported
18449 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
18450 F:      drivers/infiniband/ulp/srp/
18451 F:      include/scsi/srp.h
18452
18453 SCSI RDMA PROTOCOL (SRP) TARGET
18454 M:      Bart Van Assche <bvanassche@acm.org>
18455 L:      linux-rdma@vger.kernel.org
18456 L:      target-devel@vger.kernel.org
18457 S:      Supported
18458 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
18459 F:      drivers/infiniband/ulp/srpt/
18460
18461 SCSI SG DRIVER
18462 M:      Doug Gilbert <dgilbert@interlog.com>
18463 L:      linux-scsi@vger.kernel.org
18464 S:      Maintained
18465 W:      http://sg.danny.cz/sg
18466 F:      Documentation/scsi/scsi-generic.rst
18467 F:      drivers/scsi/sg.c
18468 F:      include/scsi/sg.h
18469
18470 SCSI SUBSYSTEM
18471 M:      "James E.J. Bottomley" <jejb@linux.ibm.com>
18472 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
18473 L:      linux-scsi@vger.kernel.org
18474 S:      Maintained
18475 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
18476 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
18477 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
18478 F:      Documentation/devicetree/bindings/scsi/
18479 F:      drivers/scsi/
18480 F:      drivers/ufs/
18481 F:      include/scsi/
18482
18483 SCSI TAPE DRIVER
18484 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
18485 L:      linux-scsi@vger.kernel.org
18486 S:      Maintained
18487 F:      Documentation/scsi/st.rst
18488 F:      drivers/scsi/st.*
18489 F:      drivers/scsi/st_*.h
18490
18491 SCSI TARGET CORE USER DRIVER
18492 M:      Bodo Stroesser <bostroesser@gmail.com>
18493 L:      linux-scsi@vger.kernel.org
18494 L:      target-devel@vger.kernel.org
18495 S:      Supported
18496 F:      Documentation/target/tcmu-design.rst
18497 F:      drivers/target/target_core_user.c
18498 F:      include/uapi/linux/target_core_user.h
18499
18500 SCSI TARGET SUBSYSTEM
18501 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
18502 L:      linux-scsi@vger.kernel.org
18503 L:      target-devel@vger.kernel.org
18504 S:      Supported
18505 W:      http://www.linux-iscsi.org
18506 Q:      https://patchwork.kernel.org/project/target-devel/list/
18507 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
18508 F:      Documentation/target/
18509 F:      drivers/target/
18510 F:      include/target/
18511
18512 SCTP PROTOCOL
18513 M:      Neil Horman <nhorman@tuxdriver.com>
18514 M:      Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
18515 M:      Xin Long <lucien.xin@gmail.com>
18516 L:      linux-sctp@vger.kernel.org
18517 S:      Maintained
18518 W:      http://lksctp.sourceforge.net
18519 F:      Documentation/networking/sctp.rst
18520 F:      include/linux/sctp.h
18521 F:      include/net/sctp/
18522 F:      include/uapi/linux/sctp.h
18523 F:      net/sctp/
18524
18525 SCx200 CPU SUPPORT
18526 M:      Jim Cromie <jim.cromie@gmail.com>
18527 S:      Odd Fixes
18528 F:      Documentation/i2c/busses/scx200_acb.rst
18529 F:      arch/x86/platform/scx200/
18530 F:      drivers/i2c/busses/scx200*
18531 F:      drivers/mtd/maps/scx200_docflash.c
18532 F:      drivers/watchdog/scx200_wdt.c
18533 F:      include/linux/scx200.h
18534
18535 SCx200 GPIO DRIVER
18536 M:      Jim Cromie <jim.cromie@gmail.com>
18537 S:      Maintained
18538 F:      drivers/char/scx200_gpio.c
18539 F:      include/linux/scx200_gpio.h
18540
18541 SCx200 HRT CLOCKSOURCE DRIVER
18542 M:      Jim Cromie <jim.cromie@gmail.com>
18543 S:      Maintained
18544 F:      drivers/clocksource/scx200_hrt.c
18545
18546 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
18547 M:      Sascha Sommer <saschasommer@freenet.de>
18548 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
18549 S:      Maintained
18550 F:      drivers/mmc/host/sdricoh_cs.c
18551
18552 SECO BOARDS CEC DRIVER
18553 M:      Ettore Chimenti <ek5.chimenti@gmail.com>
18554 S:      Maintained
18555 F:      drivers/media/cec/platform/seco/seco-cec.c
18556 F:      drivers/media/cec/platform/seco/seco-cec.h
18557
18558 SECURE COMPUTING
18559 M:      Kees Cook <keescook@chromium.org>
18560 R:      Andy Lutomirski <luto@amacapital.net>
18561 R:      Will Drewry <wad@chromium.org>
18562 S:      Supported
18563 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/seccomp
18564 F:      Documentation/userspace-api/seccomp_filter.rst
18565 F:      include/linux/seccomp.h
18566 F:      include/uapi/linux/seccomp.h
18567 F:      kernel/seccomp.c
18568 F:      tools/testing/selftests/kselftest_harness.h
18569 F:      tools/testing/selftests/seccomp/*
18570 K:      \bsecure_computing
18571 K:      \bTIF_SECCOMP\b
18572
18573 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
18574 M:      Kamal Dasu <kdasu.kdev@gmail.com>
18575 M:      Al Cooper <alcooperx@gmail.com>
18576 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
18577 L:      linux-mmc@vger.kernel.org
18578 S:      Maintained
18579 F:      drivers/mmc/host/sdhci-brcmstb*
18580
18581 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
18582 M:      Adrian Hunter <adrian.hunter@intel.com>
18583 L:      linux-mmc@vger.kernel.org
18584 S:      Supported
18585 F:      Documentation/devicetree/bindings/mmc/sdhci-common.yaml
18586 F:      drivers/mmc/host/sdhci*
18587
18588 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
18589 M:      Eugen Hristev <eugen.hristev@microchip.com>
18590 L:      linux-mmc@vger.kernel.org
18591 S:      Supported
18592 F:      drivers/mmc/host/sdhci-of-at91.c
18593
18594 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
18595 M:      Ben Dooks <ben-linux@fluff.org>
18596 M:      Jaehoon Chung <jh80.chung@samsung.com>
18597 L:      linux-mmc@vger.kernel.org
18598 S:      Maintained
18599 F:      drivers/mmc/host/sdhci-s3c*
18600
18601 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
18602 M:      Viresh Kumar <vireshk@kernel.org>
18603 L:      linux-mmc@vger.kernel.org
18604 S:      Maintained
18605 F:      drivers/mmc/host/sdhci-spear.c
18606
18607 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
18608 M:      Vignesh Raghavendra <vigneshr@ti.com>
18609 L:      linux-mmc@vger.kernel.org
18610 S:      Maintained
18611 F:      drivers/mmc/host/sdhci-omap.c
18612
18613 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) NXP i.MX DRIVER
18614 M:      Haibo Chen <haibo.chen@nxp.com>
18615 L:      linux-imx@nxp.com
18616 L:      linux-mmc@vger.kernel.org
18617 S:      Maintained
18618 F:      drivers/mmc/host/sdhci-esdhc-imx.c
18619
18620 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
18621 M:      Jonathan Derrick <jonathan.derrick@linux.dev>
18622 L:      linux-block@vger.kernel.org
18623 S:      Supported
18624 F:      block/opal_proto.h
18625 F:      block/sed*
18626 F:      include/linux/sed*
18627 F:      include/uapi/linux/sed*
18628
18629 SECURITY CONTACT
18630 M:      Security Officers <security@kernel.org>
18631 S:      Supported
18632 F:      Documentation/admin-guide/security-bugs.rst
18633
18634 SECURITY SUBSYSTEM
18635 M:      Paul Moore <paul@paul-moore.com>
18636 M:      James Morris <jmorris@namei.org>
18637 M:      "Serge E. Hallyn" <serge@hallyn.com>
18638 L:      linux-security-module@vger.kernel.org (suggested Cc:)
18639 S:      Supported
18640 W:      http://kernsec.org/
18641 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/lsm.git
18642 F:      security/
18643 X:      security/selinux/
18644
18645 SELINUX SECURITY MODULE
18646 M:      Paul Moore <paul@paul-moore.com>
18647 M:      Stephen Smalley <stephen.smalley.work@gmail.com>
18648 M:      Eric Paris <eparis@parisplace.org>
18649 L:      selinux@vger.kernel.org
18650 S:      Supported
18651 W:      https://selinuxproject.org
18652 W:      https://github.com/SELinuxProject
18653 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
18654 F:      Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
18655 F:      Documentation/ABI/obsolete/sysfs-selinux-disable
18656 F:      Documentation/admin-guide/LSM/SELinux.rst
18657 F:      include/trace/events/avc.h
18658 F:      include/uapi/linux/selinux_netlink.h
18659 F:      scripts/selinux/
18660 F:      security/selinux/
18661
18662 SENSABLE PHANTOM
18663 M:      Jiri Slaby <jirislaby@kernel.org>
18664 S:      Maintained
18665 F:      drivers/misc/phantom.c
18666 F:      include/uapi/linux/phantom.h
18667
18668 SENSEAIR SUNRISE 006-0-0007
18669 M:      Jacopo Mondi <jacopo@jmondi.org>
18670 S:      Maintained
18671 F:      Documentation/ABI/testing/sysfs-bus-iio-chemical-sunrise-co2
18672 F:      Documentation/devicetree/bindings/iio/chemical/senseair,sunrise.yaml
18673 F:      drivers/iio/chemical/sunrise_co2.c
18674
18675 SENSIRION SCD30 CARBON DIOXIDE SENSOR DRIVER
18676 M:      Tomasz Duszynski <tomasz.duszynski@octakon.com>
18677 S:      Maintained
18678 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd30.yaml
18679 F:      drivers/iio/chemical/scd30.h
18680 F:      drivers/iio/chemical/scd30_core.c
18681 F:      drivers/iio/chemical/scd30_i2c.c
18682 F:      drivers/iio/chemical/scd30_serial.c
18683
18684 SENSIRION SCD4X CARBON DIOXIDE SENSOR DRIVER
18685 M:      Roan van Dijk <roan@protonic.nl>
18686 S:      Maintained
18687 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd4x.yaml
18688 F:      drivers/iio/chemical/scd4x.c
18689
18690 SENSIRION SGP40 GAS SENSOR DRIVER
18691 M:      Andreas Klinger <ak@it-klinger.de>
18692 S:      Maintained
18693 F:      Documentation/ABI/testing/sysfs-bus-iio-chemical-sgp40
18694 F:      drivers/iio/chemical/sgp40.c
18695
18696 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
18697 M:      Tomasz Duszynski <tduszyns@gmail.com>
18698 S:      Maintained
18699 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
18700 F:      drivers/iio/chemical/sps30.c
18701 F:      drivers/iio/chemical/sps30_i2c.c
18702 F:      drivers/iio/chemical/sps30_serial.c
18703
18704 SERIAL DEVICE BUS
18705 M:      Rob Herring <robh@kernel.org>
18706 L:      linux-serial@vger.kernel.org
18707 S:      Maintained
18708 F:      Documentation/devicetree/bindings/serial/serial.yaml
18709 F:      drivers/tty/serdev/
18710 F:      include/linux/serdev.h
18711
18712 SERIAL DRIVERS
18713 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18714 L:      linux-serial@vger.kernel.org
18715 S:      Maintained
18716 F:      Documentation/devicetree/bindings/serial/
18717 F:      drivers/tty/serial/
18718
18719 SERIAL IR RECEIVER
18720 M:      Sean Young <sean@mess.org>
18721 L:      linux-media@vger.kernel.org
18722 S:      Maintained
18723 F:      drivers/media/rc/serial_ir.c
18724
18725 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
18726 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
18727 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18728 S:      Maintained
18729 F:      Documentation/devicetree/bindings/slimbus/
18730 F:      drivers/slimbus/
18731 F:      include/linux/slimbus.h
18732
18733 SFC NETWORK DRIVER
18734 M:      Edward Cree <ecree.xilinx@gmail.com>
18735 M:      Martin Habets <habetsm.xilinx@gmail.com>
18736 L:      netdev@vger.kernel.org
18737 S:      Supported
18738 F:      drivers/net/ethernet/sfc/
18739
18740 SFF/SFP/SFP+ MODULE SUPPORT
18741 M:      Russell King <linux@armlinux.org.uk>
18742 L:      netdev@vger.kernel.org
18743 S:      Maintained
18744 F:      Documentation/devicetree/bindings/net/sff,sfp.yaml
18745 F:      drivers/net/phy/phylink.c
18746 F:      drivers/net/phy/sfp*
18747 F:      include/linux/mdio/mdio-i2c.h
18748 F:      include/linux/phylink.h
18749 F:      include/linux/sfp.h
18750 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)
18751
18752 SGI GRU DRIVER
18753 M:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
18754 S:      Maintained
18755 F:      drivers/misc/sgi-gru/
18756
18757 SGI XP/XPC/XPNET DRIVER
18758 M:      Robin Holt <robinmholt@gmail.com>
18759 M:      Steve Wahl <steve.wahl@hpe.com>
18760 R:      Mike Travis <mike.travis@hpe.com>
18761 S:      Maintained
18762 F:      drivers/misc/sgi-xp/
18763
18764 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
18765 M:      Karsten Graul <kgraul@linux.ibm.com>
18766 M:      Wenjia Zhang <wenjia@linux.ibm.com>
18767 M:      Jan Karcher <jaka@linux.ibm.com>
18768 L:      linux-s390@vger.kernel.org
18769 S:      Supported
18770 F:      net/smc/
18771
18772 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
18773 M:      Linus Walleij <linus.walleij@linaro.org>
18774 L:      linux-iio@vger.kernel.org
18775 S:      Maintained
18776 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
18777 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
18778 F:      drivers/iio/light/gp2ap002.c
18779
18780 SHARP RJ54N1CB0C SENSOR DRIVER
18781 M:      Jacopo Mondi <jacopo@jmondi.org>
18782 L:      linux-media@vger.kernel.org
18783 S:      Odd fixes
18784 T:      git git://linuxtv.org/media_tree.git
18785 F:      drivers/media/i2c/rj54n1cb0c.c
18786 F:      include/media/i2c/rj54n1cb0c.h
18787
18788 SH_VOU V4L2 OUTPUT DRIVER
18789 L:      linux-media@vger.kernel.org
18790 S:      Orphan
18791 F:      drivers/media/platform/renesas/sh_vou.c
18792 F:      include/media/drv-intf/sh_vou.h
18793
18794 SI2157 MEDIA DRIVER
18795 M:      Antti Palosaari <crope@iki.fi>
18796 L:      linux-media@vger.kernel.org
18797 S:      Maintained
18798 W:      https://linuxtv.org
18799 W:      http://palosaari.fi/linux/
18800 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18801 T:      git git://linuxtv.org/anttip/media_tree.git
18802 F:      drivers/media/tuners/si2157*
18803
18804 SI2165 MEDIA DRIVER
18805 M:      Matthias Schwarzott <zzam@gentoo.org>
18806 L:      linux-media@vger.kernel.org
18807 S:      Maintained
18808 W:      https://linuxtv.org
18809 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18810 F:      drivers/media/dvb-frontends/si2165*
18811
18812 SI2168 MEDIA DRIVER
18813 M:      Antti Palosaari <crope@iki.fi>
18814 L:      linux-media@vger.kernel.org
18815 S:      Maintained
18816 W:      https://linuxtv.org
18817 W:      http://palosaari.fi/linux/
18818 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18819 T:      git git://linuxtv.org/anttip/media_tree.git
18820 F:      drivers/media/dvb-frontends/si2168*
18821
18822 SI470X FM RADIO RECEIVER I2C DRIVER
18823 M:      Hans Verkuil <hverkuil@xs4all.nl>
18824 L:      linux-media@vger.kernel.org
18825 S:      Odd Fixes
18826 W:      https://linuxtv.org
18827 T:      git git://linuxtv.org/media_tree.git
18828 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
18829
18830 SI470X FM RADIO RECEIVER USB DRIVER
18831 M:      Hans Verkuil <hverkuil@xs4all.nl>
18832 L:      linux-media@vger.kernel.org
18833 S:      Maintained
18834 W:      https://linuxtv.org
18835 T:      git git://linuxtv.org/media_tree.git
18836 F:      drivers/media/radio/si470x/radio-si470x-common.c
18837 F:      drivers/media/radio/si470x/radio-si470x-usb.c
18838 F:      drivers/media/radio/si470x/radio-si470x.h
18839
18840 SI4713 FM RADIO TRANSMITTER I2C DRIVER
18841 M:      Eduardo Valentin <edubezval@gmail.com>
18842 L:      linux-media@vger.kernel.org
18843 S:      Odd Fixes
18844 W:      https://linuxtv.org
18845 T:      git git://linuxtv.org/media_tree.git
18846 F:      drivers/media/radio/si4713/si4713.?
18847
18848 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
18849 M:      Eduardo Valentin <edubezval@gmail.com>
18850 L:      linux-media@vger.kernel.org
18851 S:      Odd Fixes
18852 W:      https://linuxtv.org
18853 T:      git git://linuxtv.org/media_tree.git
18854 F:      drivers/media/radio/si4713/radio-platform-si4713.c
18855
18856 SI4713 FM RADIO TRANSMITTER USB DRIVER
18857 M:      Hans Verkuil <hverkuil@xs4all.nl>
18858 L:      linux-media@vger.kernel.org
18859 S:      Maintained
18860 W:      https://linuxtv.org
18861 T:      git git://linuxtv.org/media_tree.git
18862 F:      drivers/media/radio/si4713/radio-usb-si4713.c
18863
18864 SIANO DVB DRIVER
18865 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18866 L:      linux-media@vger.kernel.org
18867 S:      Odd fixes
18868 W:      https://linuxtv.org
18869 T:      git git://linuxtv.org/media_tree.git
18870 F:      drivers/media/common/siano/
18871 F:      drivers/media/mmc/siano/
18872 F:      drivers/media/usb/siano/
18873 F:      drivers/media/usb/siano/
18874
18875 SIFIVE DRIVERS
18876 M:      Palmer Dabbelt <palmer@dabbelt.com>
18877 M:      Paul Walmsley <paul.walmsley@sifive.com>
18878 L:      linux-riscv@lists.infradead.org
18879 S:      Supported
18880 N:      sifive
18881 K:      [^@]sifive
18882
18883 SIFIVE FU540 SYSTEM-ON-CHIP
18884 M:      Paul Walmsley <paul.walmsley@sifive.com>
18885 M:      Palmer Dabbelt <palmer@dabbelt.com>
18886 L:      linux-riscv@lists.infradead.org
18887 S:      Supported
18888 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
18889 N:      fu540
18890 K:      fu540
18891
18892 SIFIVE PDMA DRIVER
18893 M:      Green Wan <green.wan@sifive.com>
18894 S:      Maintained
18895 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
18896 F:      drivers/dma/sf-pdma/
18897
18898 SIFIVE SOC DRIVERS
18899 M:      Conor Dooley <conor@kernel.org>
18900 L:      linux-riscv@lists.infradead.org
18901 S:      Maintained
18902 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/conor/linux.git/
18903 F:      drivers/soc/sifive/
18904
18905 SILEAD TOUCHSCREEN DRIVER
18906 M:      Hans de Goede <hdegoede@redhat.com>
18907 L:      linux-input@vger.kernel.org
18908 L:      platform-driver-x86@vger.kernel.org
18909 S:      Maintained
18910 F:      drivers/input/touchscreen/silead.c
18911 F:      drivers/platform/x86/touchscreen_dmi.c
18912
18913 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
18914 M:      Jérôme Pouiller <jerome.pouiller@silabs.com>
18915 S:      Supported
18916 F:      Documentation/devicetree/bindings/net/wireless/silabs,wfx.yaml
18917 F:      drivers/net/wireless/silabs/wfx/
18918
18919 SILICON MOTION SM712 FRAME BUFFER DRIVER
18920 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
18921 M:      Teddy Wang <teddy.wang@siliconmotion.com>
18922 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
18923 L:      linux-fbdev@vger.kernel.org
18924 S:      Maintained
18925 F:      Documentation/fb/sm712fb.rst
18926 F:      drivers/video/fbdev/sm712*
18927
18928 SILVACO I3C DUAL-ROLE MASTER
18929 M:      Miquel Raynal <miquel.raynal@bootlin.com>
18930 M:      Conor Culhane <conor.culhane@silvaco.com>
18931 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
18932 S:      Maintained
18933 F:      Documentation/devicetree/bindings/i3c/silvaco,i3c-master.yaml
18934 F:      drivers/i3c/master/svc-i3c-master.c
18935
18936 SIMPLEFB FB DRIVER
18937 M:      Hans de Goede <hdegoede@redhat.com>
18938 L:      linux-fbdev@vger.kernel.org
18939 S:      Maintained
18940 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
18941 F:      drivers/video/fbdev/simplefb.c
18942 F:      include/linux/platform_data/simplefb.h
18943
18944 SIMTEC EB110ATX (Chalice CATS)
18945 M:      Simtec Linux Team <linux@simtec.co.uk>
18946 S:      Supported
18947 W:      http://www.simtec.co.uk/products/EB110ATX/
18948
18949 SIOX
18950 M:      Thorsten Scherer <t.scherer@eckelmann.de>
18951 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
18952 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
18953 S:      Supported
18954 F:      drivers/gpio/gpio-siox.c
18955 F:      drivers/siox/*
18956 F:      include/trace/events/siox.h
18957
18958 SIPHASH PRF ROUTINES
18959 M:      Jason A. Donenfeld <Jason@zx2c4.com>
18960 S:      Maintained
18961 F:      include/linux/siphash.h
18962 F:      lib/siphash.c
18963 F:      lib/siphash_kunit.c
18964
18965 SIS 190 ETHERNET DRIVER
18966 M:      Francois Romieu <romieu@fr.zoreil.com>
18967 L:      netdev@vger.kernel.org
18968 S:      Maintained
18969 F:      drivers/net/ethernet/sis/sis190.c
18970
18971 SIS 900/7016 FAST ETHERNET DRIVER
18972 M:      Daniele Venzano <venza@brownhat.org>
18973 L:      netdev@vger.kernel.org
18974 S:      Maintained
18975 W:      http://www.brownhat.org/sis900.html
18976 F:      drivers/net/ethernet/sis/sis900.*
18977
18978 SIS FRAMEBUFFER DRIVER
18979 M:      Thomas Winischhofer <thomas@winischhofer.net>
18980 S:      Maintained
18981 W:      http://www.winischhofer.net/linuxsisvga.shtml
18982 F:      Documentation/fb/sisfb.rst
18983 F:      drivers/video/fbdev/sis/
18984 F:      include/video/sisfb.h
18985
18986 SIS I2C TOUCHSCREEN DRIVER
18987 M:      Mika Penttilä <mpenttil@redhat.com>
18988 L:      linux-input@vger.kernel.org
18989 S:      Maintained
18990 F:      Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt
18991 F:      drivers/input/touchscreen/sis_i2c.c
18992
18993 SIS USB2VGA DRIVER
18994 M:      Thomas Winischhofer <thomas@winischhofer.net>
18995 S:      Maintained
18996 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
18997 F:      drivers/usb/misc/sisusbvga/
18998
18999 SL28 CPLD MFD DRIVER
19000 M:      Michael Walle <michael@walle.cc>
19001 S:      Maintained
19002 F:      Documentation/devicetree/bindings/gpio/kontron,sl28cpld-gpio.yaml
19003 F:      Documentation/devicetree/bindings/hwmon/kontron,sl28cpld-hwmon.yaml
19004 F:      Documentation/devicetree/bindings/interrupt-controller/kontron,sl28cpld-intc.yaml
19005 F:      Documentation/devicetree/bindings/mfd/kontron,sl28cpld.yaml
19006 F:      Documentation/devicetree/bindings/pwm/kontron,sl28cpld-pwm.yaml
19007 F:      Documentation/devicetree/bindings/watchdog/kontron,sl28cpld-wdt.yaml
19008 F:      drivers/gpio/gpio-sl28cpld.c
19009 F:      drivers/hwmon/sl28cpld-hwmon.c
19010 F:      drivers/irqchip/irq-sl28cpld.c
19011 F:      drivers/pwm/pwm-sl28cpld.c
19012 F:      drivers/watchdog/sl28cpld_wdt.c
19013
19014 SLAB ALLOCATOR
19015 M:      Christoph Lameter <cl@linux.com>
19016 M:      Pekka Enberg <penberg@kernel.org>
19017 M:      David Rientjes <rientjes@google.com>
19018 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
19019 M:      Andrew Morton <akpm@linux-foundation.org>
19020 M:      Vlastimil Babka <vbabka@suse.cz>
19021 R:      Roman Gushchin <roman.gushchin@linux.dev>
19022 R:      Hyeonggon Yoo <42.hyeyoo@gmail.com>
19023 L:      linux-mm@kvack.org
19024 S:      Maintained
19025 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vbabka/slab.git
19026 F:      include/linux/sl?b*.h
19027 F:      mm/sl?b*
19028
19029 SLCAN CAN NETWORK DRIVER
19030 M:      Dario Binacchi <dario.binacchi@amarulasolutions.com>
19031 L:      linux-can@vger.kernel.org
19032 S:      Maintained
19033 F:      drivers/net/can/slcan/
19034
19035 SLEEPABLE READ-COPY UPDATE (SRCU)
19036 M:      Lai Jiangshan <jiangshanlai@gmail.com>
19037 M:      "Paul E. McKenney" <paulmck@kernel.org>
19038 M:      Josh Triplett <josh@joshtriplett.org>
19039 R:      Steven Rostedt <rostedt@goodmis.org>
19040 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
19041 L:      rcu@vger.kernel.org
19042 S:      Supported
19043 W:      http://www.rdrop.com/users/paulmck/RCU/
19044 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
19045 F:      include/linux/srcu*.h
19046 F:      kernel/rcu/srcu*.c
19047
19048 SMACK SECURITY MODULE
19049 M:      Casey Schaufler <casey@schaufler-ca.com>
19050 L:      linux-security-module@vger.kernel.org
19051 S:      Maintained
19052 W:      http://schaufler-ca.com
19053 T:      git git://github.com/cschaufler/smack-next
19054 F:      Documentation/admin-guide/LSM/Smack.rst
19055 F:      security/smack/
19056
19057 SMC91x ETHERNET DRIVER
19058 M:      Nicolas Pitre <nico@fluxnic.net>
19059 S:      Odd Fixes
19060 F:      drivers/net/ethernet/smsc/smc91x.*
19061
19062 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
19063 M:      Mark Rutland <mark.rutland@arm.com>
19064 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
19065 M:      Sudeep Holla <sudeep.holla@arm.com>
19066 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19067 S:      Maintained
19068 F:      drivers/firmware/smccc/
19069 F:      include/linux/arm-smccc.h
19070
19071 SMM665 HARDWARE MONITOR DRIVER
19072 M:      Guenter Roeck <linux@roeck-us.net>
19073 L:      linux-hwmon@vger.kernel.org
19074 S:      Maintained
19075 F:      Documentation/hwmon/smm665.rst
19076 F:      drivers/hwmon/smm665.c
19077
19078 SMSC EMC2103 HARDWARE MONITOR DRIVER
19079 M:      Steve Glendinning <steve.glendinning@shawell.net>
19080 L:      linux-hwmon@vger.kernel.org
19081 S:      Maintained
19082 F:      Documentation/hwmon/emc2103.rst
19083 F:      drivers/hwmon/emc2103.c
19084
19085 SMSC SCH5627 HARDWARE MONITOR DRIVER
19086 M:      Hans de Goede <hdegoede@redhat.com>
19087 L:      linux-hwmon@vger.kernel.org
19088 S:      Supported
19089 F:      Documentation/hwmon/sch5627.rst
19090 F:      drivers/hwmon/sch5627.c
19091
19092 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
19093 M:      Steve Glendinning <steve.glendinning@shawell.net>
19094 L:      linux-fbdev@vger.kernel.org
19095 S:      Maintained
19096 F:      drivers/video/fbdev/smscufx.c
19097
19098 SMSC47B397 HARDWARE MONITOR DRIVER
19099 M:      Jean Delvare <jdelvare@suse.com>
19100 L:      linux-hwmon@vger.kernel.org
19101 S:      Maintained
19102 F:      Documentation/hwmon/smsc47b397.rst
19103 F:      drivers/hwmon/smsc47b397.c
19104
19105 SMSC911x ETHERNET DRIVER
19106 M:      Steve Glendinning <steve.glendinning@shawell.net>
19107 L:      netdev@vger.kernel.org
19108 S:      Maintained
19109 F:      drivers/net/ethernet/smsc/smsc911x.*
19110 F:      include/linux/smsc911x.h
19111
19112 SMSC9420 PCI ETHERNET DRIVER
19113 M:      Steve Glendinning <steve.glendinning@shawell.net>
19114 L:      netdev@vger.kernel.org
19115 S:      Maintained
19116 F:      drivers/net/ethernet/smsc/smsc9420.*
19117
19118 SOCIONEXT (SNI) AVE NETWORK DRIVER
19119 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
19120 L:      netdev@vger.kernel.org
19121 S:      Maintained
19122 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
19123 F:      drivers/net/ethernet/socionext/sni_ave.c
19124
19125 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
19126 M:      Jassi Brar <jaswinder.singh@linaro.org>
19127 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
19128 L:      netdev@vger.kernel.org
19129 S:      Maintained
19130 F:      Documentation/devicetree/bindings/net/socionext,synquacer-netsec.yaml
19131 F:      drivers/net/ethernet/socionext/netsec.c
19132
19133 SOCIONEXT (SNI) Synquacer SPI DRIVER
19134 M:      Masahisa Kojima <masahisa.kojima@linaro.org>
19135 M:      Jassi Brar <jaswinder.singh@linaro.org>
19136 L:      linux-spi@vger.kernel.org
19137 S:      Maintained
19138 F:      Documentation/devicetree/bindings/spi/socionext,synquacer-spi.yaml
19139 F:      drivers/spi/spi-synquacer.c
19140
19141 SOCIONEXT SYNQUACER I2C DRIVER
19142 M:      Ard Biesheuvel <ardb@kernel.org>
19143 L:      linux-i2c@vger.kernel.org
19144 S:      Maintained
19145 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
19146 F:      drivers/i2c/busses/i2c-synquacer.c
19147
19148 SOCIONEXT UNIPHIER SOUND DRIVER
19149 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19150 S:      Orphan
19151 F:      sound/soc/uniphier/
19152
19153 SOCKET TIMESTAMPING
19154 M:      Willem de Bruijn <willemdebruijn.kernel@gmail.com>
19155 S:      Maintained
19156 F:      Documentation/networking/timestamping.rst
19157 F:      include/uapi/linux/net_tstamp.h
19158 F:      tools/testing/selftests/net/so_txtime.c
19159
19160 SOEKRIS NET48XX LED SUPPORT
19161 M:      Chris Boot <bootc@bootc.net>
19162 S:      Maintained
19163 F:      drivers/leds/leds-net48xx.c
19164
19165 SOFT-IWARP DRIVER (siw)
19166 M:      Bernard Metzler <bmt@zurich.ibm.com>
19167 L:      linux-rdma@vger.kernel.org
19168 S:      Supported
19169 F:      drivers/infiniband/sw/siw/
19170 F:      include/uapi/rdma/siw-abi.h
19171
19172 SOFT-ROCE DRIVER (rxe)
19173 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
19174 L:      linux-rdma@vger.kernel.org
19175 S:      Supported
19176 F:      drivers/infiniband/sw/rxe/
19177 F:      include/uapi/rdma/rdma_user_rxe.h
19178
19179 SOFTLOGIC 6x10 MPEG CODEC
19180 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
19181 M:      Anton Sviridenko <anton@corp.bluecherry.net>
19182 M:      Andrey Utkin <andrey_utkin@fastmail.com>
19183 M:      Ismael Luceno <ismael@iodev.co.uk>
19184 L:      linux-media@vger.kernel.org
19185 S:      Supported
19186 F:      drivers/media/pci/solo6x10/
19187
19188 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
19189 M:      James Morse <james.morse@arm.com>
19190 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19191 S:      Maintained
19192 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
19193 F:      drivers/firmware/arm_sdei.c
19194 F:      include/linux/arm_sdei.h
19195 F:      include/uapi/linux/arm_sdei.h
19196
19197 SOFTWARE NODES AND DEVICE PROPERTIES
19198 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19199 R:      Daniel Scally <djrscally@gmail.com>
19200 R:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19201 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
19202 L:      linux-acpi@vger.kernel.org
19203 S:      Maintained
19204 F:      drivers/base/property.c
19205 F:      drivers/base/swnode.c
19206 F:      include/linux/fwnode.h
19207 F:      include/linux/property.h
19208
19209 SOFTWARE RAID (Multiple Disks) SUPPORT
19210 M:      Song Liu <song@kernel.org>
19211 L:      linux-raid@vger.kernel.org
19212 S:      Supported
19213 Q:      https://patchwork.kernel.org/project/linux-raid/list/
19214 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
19215 F:      drivers/md/Kconfig
19216 F:      drivers/md/Makefile
19217 F:      drivers/md/md*
19218 F:      drivers/md/raid*
19219 F:      include/linux/raid/
19220 F:      include/uapi/linux/raid/
19221
19222 SOLIDRUN CLEARFOG SUPPORT
19223 M:      Russell King <linux@armlinux.org.uk>
19224 S:      Maintained
19225 F:      arch/arm/boot/dts/armada-388-clearfog*
19226 F:      arch/arm/boot/dts/armada-38x-solidrun-*
19227
19228 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
19229 M:      Russell King <linux@armlinux.org.uk>
19230 S:      Maintained
19231 F:      arch/arm/boot/dts/imx6*-cubox-i*
19232 F:      arch/arm/boot/dts/imx6*-hummingboard*
19233 F:      arch/arm/boot/dts/imx6*-sr-*
19234
19235 SONIC NETWORK DRIVER
19236 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
19237 L:      netdev@vger.kernel.org
19238 S:      Maintained
19239 F:      drivers/net/ethernet/natsemi/sonic.*
19240
19241 SONICS SILICON BACKPLANE DRIVER (SSB)
19242 M:      Michael Buesch <m@bues.ch>
19243 L:      linux-wireless@vger.kernel.org
19244 S:      Maintained
19245 F:      drivers/ssb/
19246 F:      include/linux/ssb/
19247
19248 SONY IMX208 SENSOR DRIVER
19249 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
19250 L:      linux-media@vger.kernel.org
19251 S:      Maintained
19252 T:      git git://linuxtv.org/media_tree.git
19253 F:      drivers/media/i2c/imx208.c
19254
19255 SONY IMX214 SENSOR DRIVER
19256 M:      Ricardo Ribalda <ribalda@kernel.org>
19257 L:      linux-media@vger.kernel.org
19258 S:      Maintained
19259 T:      git git://linuxtv.org/media_tree.git
19260 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.yaml
19261 F:      drivers/media/i2c/imx214.c
19262
19263 SONY IMX219 SENSOR DRIVER
19264 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
19265 L:      linux-media@vger.kernel.org
19266 S:      Maintained
19267 T:      git git://linuxtv.org/media_tree.git
19268 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
19269 F:      drivers/media/i2c/imx219.c
19270
19271 SONY IMX258 SENSOR DRIVER
19272 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
19273 L:      linux-media@vger.kernel.org
19274 S:      Maintained
19275 T:      git git://linuxtv.org/media_tree.git
19276 F:      Documentation/devicetree/bindings/media/i2c/imx258.yaml
19277 F:      drivers/media/i2c/imx258.c
19278
19279 SONY IMX274 SENSOR DRIVER
19280 M:      Leon Luo <leonl@leopardimaging.com>
19281 L:      linux-media@vger.kernel.org
19282 S:      Maintained
19283 T:      git git://linuxtv.org/media_tree.git
19284 F:      Documentation/devicetree/bindings/media/i2c/sony,imx274.yaml
19285 F:      drivers/media/i2c/imx274.c
19286
19287 SONY IMX290 SENSOR DRIVER
19288 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
19289 L:      linux-media@vger.kernel.org
19290 S:      Maintained
19291 T:      git git://linuxtv.org/media_tree.git
19292 F:      Documentation/devicetree/bindings/media/i2c/sony,imx290.yaml
19293 F:      drivers/media/i2c/imx290.c
19294
19295 SONY IMX319 SENSOR DRIVER
19296 M:      Bingbu Cao <bingbu.cao@intel.com>
19297 L:      linux-media@vger.kernel.org
19298 S:      Maintained
19299 T:      git git://linuxtv.org/media_tree.git
19300 F:      drivers/media/i2c/imx319.c
19301
19302 SONY IMX334 SENSOR DRIVER
19303 M:      Paul J. Murphy <paul.j.murphy@intel.com>
19304 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
19305 L:      linux-media@vger.kernel.org
19306 S:      Maintained
19307 T:      git git://linuxtv.org/media_tree.git
19308 F:      Documentation/devicetree/bindings/media/i2c/sony,imx334.yaml
19309 F:      drivers/media/i2c/imx334.c
19310
19311 SONY IMX335 SENSOR DRIVER
19312 M:      Paul J. Murphy <paul.j.murphy@intel.com>
19313 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
19314 L:      linux-media@vger.kernel.org
19315 S:      Maintained
19316 T:      git git://linuxtv.org/media_tree.git
19317 F:      Documentation/devicetree/bindings/media/i2c/sony,imx335.yaml
19318 F:      drivers/media/i2c/imx335.c
19319
19320 SONY IMX355 SENSOR DRIVER
19321 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
19322 L:      linux-media@vger.kernel.org
19323 S:      Maintained
19324 T:      git git://linuxtv.org/media_tree.git
19325 F:      drivers/media/i2c/imx355.c
19326
19327 SONY IMX412 SENSOR DRIVER
19328 M:      Paul J. Murphy <paul.j.murphy@intel.com>
19329 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
19330 L:      linux-media@vger.kernel.org
19331 S:      Maintained
19332 T:      git git://linuxtv.org/media_tree.git
19333 F:      Documentation/devicetree/bindings/media/i2c/sony,imx412.yaml
19334 F:      drivers/media/i2c/imx412.c
19335
19336 SONY MEMORYSTICK SUBSYSTEM
19337 M:      Maxim Levitsky <maximlevitsky@gmail.com>
19338 M:      Alex Dubov <oakad@yahoo.com>
19339 M:      Ulf Hansson <ulf.hansson@linaro.org>
19340 L:      linux-mmc@vger.kernel.org
19341 S:      Maintained
19342 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
19343 F:      drivers/memstick/
19344 F:      include/linux/memstick.h
19345
19346 SONY VAIO CONTROL DEVICE DRIVER
19347 M:      Mattia Dongili <malattia@linux.it>
19348 L:      platform-driver-x86@vger.kernel.org
19349 S:      Maintained
19350 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
19351 F:      Documentation/admin-guide/laptops/sony-laptop.rst
19352 F:      drivers/char/sonypi.c
19353 F:      drivers/platform/x86/sony-laptop.c
19354 F:      include/linux/sony-laptop.h
19355
19356 SOUND
19357 M:      Jaroslav Kysela <perex@perex.cz>
19358 M:      Takashi Iwai <tiwai@suse.com>
19359 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19360 S:      Maintained
19361 W:      http://www.alsa-project.org/
19362 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
19363 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
19364 F:      Documentation/sound/
19365 F:      include/sound/
19366 F:      include/uapi/sound/
19367 F:      sound/
19368 F:      tools/testing/selftests/alsa
19369
19370 SOUND - COMPRESSED AUDIO
19371 M:      Vinod Koul <vkoul@kernel.org>
19372 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19373 S:      Supported
19374 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
19375 F:      Documentation/sound/designs/compress-offload.rst
19376 F:      include/sound/compress_driver.h
19377 F:      include/uapi/sound/compress_*
19378 F:      sound/core/compress_offload.c
19379 F:      sound/soc/soc-compress.c
19380
19381 SOUND - DMAENGINE HELPERS
19382 M:      Lars-Peter Clausen <lars@metafoo.de>
19383 S:      Supported
19384 F:      include/sound/dmaengine_pcm.h
19385 F:      sound/core/pcm_dmaengine.c
19386 F:      sound/soc/soc-generic-dmaengine-pcm.c
19387
19388 SOUND - ALSA SELFTESTS
19389 M:      Mark Brown <broonie@kernel.org>
19390 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19391 L:      linux-kselftest@vger.kernel.org
19392 S:      Supported
19393 F:      tools/testing/selftests/alsa
19394
19395 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
19396 M:      Liam Girdwood <lgirdwood@gmail.com>
19397 M:      Mark Brown <broonie@kernel.org>
19398 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19399 S:      Supported
19400 W:      http://alsa-project.org/main/index.php/ASoC
19401 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
19402 F:      Documentation/devicetree/bindings/sound/
19403 F:      Documentation/sound/soc/
19404 F:      include/dt-bindings/sound/
19405 F:      include/sound/soc*
19406 F:      sound/soc/
19407
19408 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
19409 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
19410 M:      Liam Girdwood <lgirdwood@gmail.com>
19411 M:      Peter Ujfalusi <peter.ujfalusi@linux.intel.com>
19412 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
19413 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
19414 R:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
19415 M:      Daniel Baluta <daniel.baluta@nxp.com>
19416 L:      sound-open-firmware@alsa-project.org (moderated for non-subscribers)
19417 S:      Supported
19418 W:      https://github.com/thesofproject/linux/
19419 F:      sound/soc/sof/
19420
19421 SOUNDWIRE SUBSYSTEM
19422 M:      Vinod Koul <vkoul@kernel.org>
19423 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
19424 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
19425 R:      Sanyog Kale <sanyog.r.kale@intel.com>
19426 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19427 S:      Supported
19428 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire.git
19429 F:      Documentation/driver-api/soundwire/
19430 F:      drivers/soundwire/
19431 F:      include/linux/soundwire/
19432
19433 SP2 MEDIA DRIVER
19434 M:      Olli Salonen <olli.salonen@iki.fi>
19435 L:      linux-media@vger.kernel.org
19436 S:      Maintained
19437 W:      https://linuxtv.org
19438 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19439 F:      drivers/media/dvb-frontends/sp2*
19440
19441 SPANISH DOCUMENTATION
19442 M:      Carlos Bilbao <carlos.bilbao@amd.com>
19443 S:      Maintained
19444 F:      Documentation/translations/sp_SP/
19445
19446 SPARC + UltraSPARC (sparc/sparc64)
19447 M:      "David S. Miller" <davem@davemloft.net>
19448 L:      sparclinux@vger.kernel.org
19449 S:      Maintained
19450 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
19451 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
19452 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
19453 F:      arch/sparc/
19454 F:      drivers/sbus/
19455
19456 SPARC SERIAL DRIVERS
19457 M:      "David S. Miller" <davem@davemloft.net>
19458 L:      sparclinux@vger.kernel.org
19459 S:      Maintained
19460 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
19461 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
19462 F:      drivers/tty/serial/suncore.c
19463 F:      drivers/tty/serial/sunhv.c
19464 F:      drivers/tty/serial/sunsab.c
19465 F:      drivers/tty/serial/sunsab.h
19466 F:      drivers/tty/serial/sunsu.c
19467 F:      drivers/tty/serial/sunzilog.c
19468 F:      drivers/tty/serial/sunzilog.h
19469 F:      drivers/tty/vcc.c
19470 F:      include/linux/sunserialcore.h
19471
19472 SPARSE CHECKER
19473 M:      "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
19474 L:      linux-sparse@vger.kernel.org
19475 S:      Maintained
19476 W:      https://sparse.docs.kernel.org/
19477 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
19478 Q:      https://patchwork.kernel.org/project/linux-sparse/list/
19479 B:      https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
19480 F:      include/linux/compiler.h
19481
19482 SPEAKUP CONSOLE SPEECH DRIVER
19483 M:      William Hubbs <w.d.hubbs@gmail.com>
19484 M:      Chris Brannon <chris@the-brannons.com>
19485 M:      Kirk Reiser <kirk@reisers.ca>
19486 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
19487 L:      speakup@linux-speakup.org
19488 S:      Odd Fixes
19489 W:      http://www.linux-speakup.org/
19490 W:      https://github.com/linux-speakup/speakup
19491 B:      https://github.com/linux-speakup/speakup/issues
19492 F:      drivers/accessibility/speakup/
19493
19494 SPEAR PLATFORM/CLOCK/PINCTRL SUPPORT
19495 M:      Viresh Kumar <vireshk@kernel.org>
19496 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
19497 M:      soc@kernel.org
19498 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19499 S:      Maintained
19500 W:      http://www.st.com/spear
19501 F:      arch/arm/boot/dts/spear*
19502 F:      arch/arm/mach-spear/
19503 F:      drivers/clk/spear/
19504 F:      drivers/pinctrl/spear/
19505
19506 SPI NOR SUBSYSTEM
19507 M:      Tudor Ambarus <tudor.ambarus@linaro.org>
19508 M:      Pratyush Yadav <pratyush@kernel.org>
19509 R:      Michael Walle <michael@walle.cc>
19510 L:      linux-mtd@lists.infradead.org
19511 S:      Maintained
19512 W:      http://www.linux-mtd.infradead.org/
19513 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
19514 C:      irc://irc.oftc.net/mtd
19515 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
19516 F:      Documentation/devicetree/bindings/mtd/jedec,spi-nor.yaml
19517 F:      drivers/mtd/spi-nor/
19518 F:      include/linux/mtd/spi-nor.h
19519
19520 SPI SUBSYSTEM
19521 M:      Mark Brown <broonie@kernel.org>
19522 L:      linux-spi@vger.kernel.org
19523 S:      Maintained
19524 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
19525 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
19526 F:      Documentation/devicetree/bindings/spi/
19527 F:      Documentation/spi/
19528 F:      drivers/spi/
19529 F:      include/linux/spi/
19530 F:      include/uapi/linux/spi/
19531 F:      tools/spi/
19532
19533 SPIDERNET NETWORK DRIVER for CELL
19534 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
19535 M:      Geoff Levand <geoff@infradead.org>
19536 L:      netdev@vger.kernel.org
19537 L:      linuxppc-dev@lists.ozlabs.org
19538 S:      Maintained
19539 F:      Documentation/networking/device_drivers/ethernet/toshiba/spider_net.rst
19540 F:      drivers/net/ethernet/toshiba/spider_net*
19541
19542 SPMI SUBSYSTEM
19543 M:      Stephen Boyd <sboyd@kernel.org>
19544 L:      linux-kernel@vger.kernel.org
19545 S:      Maintained
19546 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sboyd/spmi.git
19547 F:      Documentation/devicetree/bindings/spmi/
19548 F:      drivers/spmi/
19549 F:      include/dt-bindings/spmi/spmi.h
19550 F:      include/linux/spmi.h
19551 F:      include/trace/events/spmi.h
19552
19553 SPU FILE SYSTEM
19554 M:      Jeremy Kerr <jk@ozlabs.org>
19555 L:      linuxppc-dev@lists.ozlabs.org
19556 S:      Supported
19557 W:      http://www.ibm.com/developerworks/power/cell/
19558 F:      Documentation/filesystems/spufs/spufs.rst
19559 F:      arch/powerpc/platforms/cell/spufs/
19560
19561 SQUASHFS FILE SYSTEM
19562 M:      Phillip Lougher <phillip@squashfs.org.uk>
19563 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
19564 S:      Maintained
19565 W:      http://squashfs.org.uk
19566 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
19567 F:      Documentation/filesystems/squashfs.rst
19568 F:      fs/squashfs/
19569
19570 SRM (Alpha) environment access
19571 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
19572 S:      Maintained
19573 F:      arch/alpha/kernel/srm_env.c
19574
19575 ST LSM6DSx IMU IIO DRIVER
19576 M:      Lorenzo Bianconi <lorenzo@kernel.org>
19577 L:      linux-iio@vger.kernel.org
19578 S:      Maintained
19579 W:      http://www.st.com/
19580 F:      Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml
19581 F:      drivers/iio/imu/st_lsm6dsx/
19582
19583 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
19584 M:      Benjamin Mugnier <benjamin.mugnier@foss.st.com>
19585 M:      Sylvain Petinot <sylvain.petinot@foss.st.com>
19586 L:      linux-media@vger.kernel.org
19587 S:      Maintained
19588 T:      git git://linuxtv.org/media_tree.git
19589 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.yaml
19590 F:      drivers/media/i2c/st-mipid02.c
19591
19592 ST STM32 I2C/SMBUS DRIVER
19593 M:      Pierre-Yves MORDRET <pierre-yves.mordret@foss.st.com>
19594 M:      Alain Volmat <alain.volmat@foss.st.com>
19595 L:      linux-i2c@vger.kernel.org
19596 S:      Maintained
19597 F:      drivers/i2c/busses/i2c-stm32*
19598
19599 ST STM32 SPI DRIVER
19600 M:      Alain Volmat <alain.volmat@foss.st.com>
19601 L:      linux-spi@vger.kernel.org
19602 S:      Maintained
19603 F:      drivers/spi/spi-stm32.c
19604
19605 ST STPDDC60 DRIVER
19606 M:      Daniel Nilsson <daniel.nilsson@flex.com>
19607 L:      linux-hwmon@vger.kernel.org
19608 S:      Maintained
19609 F:      Documentation/hwmon/stpddc60.rst
19610 F:      drivers/hwmon/pmbus/stpddc60.c
19611
19612 ST VGXY61 DRIVER
19613 M:      Benjamin Mugnier <benjamin.mugnier@foss.st.com>
19614 M:      Sylvain Petinot <sylvain.petinot@foss.st.com>
19615 L:      linux-media@vger.kernel.org
19616 S:      Maintained
19617 T:      git git://linuxtv.org/media_tree.git
19618 F:      Documentation/devicetree/bindings/media/i2c/st,st-vgxy61.yaml
19619 F:      Documentation/userspace-api/media/drivers/st-vgxy61.rst
19620 F:      drivers/media/i2c/st-vgxy61.c
19621
19622 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
19623 M:      Song Qiang <songqiang1304521@gmail.com>
19624 L:      linux-iio@vger.kernel.org
19625 S:      Maintained
19626 F:      Documentation/devicetree/bindings/iio/proximity/st,vl53l0x.yaml
19627 F:      drivers/iio/proximity/vl53l0x-i2c.c
19628
19629 STABLE BRANCH
19630 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19631 M:      Sasha Levin <sashal@kernel.org>
19632 L:      stable@vger.kernel.org
19633 S:      Supported
19634 F:      Documentation/process/stable-kernel-rules.rst
19635
19636 STAGING - ATOMISP DRIVER
19637 M:      Hans de Goede <hdegoede@redhat.com>
19638 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19639 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
19640 L:      linux-media@vger.kernel.org
19641 S:      Maintained
19642 F:      drivers/staging/media/atomisp/
19643
19644 STAGING - FIELDBUS SUBSYSTEM
19645 M:      Sven Van Asbroeck <TheSven73@gmail.com>
19646 S:      Maintained
19647 F:      drivers/staging/fieldbus/*
19648 F:      drivers/staging/fieldbus/Documentation/
19649
19650 STAGING - HMS ANYBUS-S BUS
19651 M:      Sven Van Asbroeck <TheSven73@gmail.com>
19652 S:      Maintained
19653 F:      drivers/staging/fieldbus/anybuss/
19654
19655 STAGING - INDUSTRIAL IO
19656 M:      Jonathan Cameron <jic23@kernel.org>
19657 L:      linux-iio@vger.kernel.org
19658 S:      Odd Fixes
19659 F:      Documentation/devicetree/bindings/staging/iio/
19660 F:      drivers/staging/iio/
19661
19662 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
19663 M:      Marc Dietrich <marvin24@gmx.de>
19664 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
19665 L:      linux-tegra@vger.kernel.org
19666 S:      Maintained
19667 F:      drivers/staging/nvec/
19668
19669 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
19670 M:      Jens Frederich <jfrederich@gmail.com>
19671 M:      Jon Nettleton <jon.nettleton@gmail.com>
19672 S:      Maintained
19673 W:      http://wiki.laptop.org/go/DCON
19674 F:      drivers/staging/olpc_dcon/
19675
19676 STAGING - REALTEK RTL8188EU DRIVERS
19677 M:      Larry Finger <Larry.Finger@lwfinger.net>
19678 M:      Phillip Potter <phil@philpotter.co.uk>
19679 R:      Pavel Skripkin <paskripkin@gmail.com>
19680 S:      Supported
19681 F:      drivers/staging/r8188eu/
19682
19683 STAGING - REALTEK RTL8712U DRIVERS
19684 M:      Larry Finger <Larry.Finger@lwfinger.net>
19685 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
19686 S:      Odd Fixes
19687 F:      drivers/staging/rtl8712/
19688
19689 STAGING - SEPS525 LCD CONTROLLER DRIVERS
19690 M:      Michael Hennerich <michael.hennerich@analog.com>
19691 L:      linux-fbdev@vger.kernel.org
19692 S:      Supported
19693 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
19694 F:      drivers/staging/fbtft/fb_seps525.c
19695
19696 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
19697 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
19698 M:      Teddy Wang <teddy.wang@siliconmotion.com>
19699 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
19700 L:      linux-fbdev@vger.kernel.org
19701 S:      Maintained
19702 F:      drivers/staging/sm750fb/
19703
19704 STAGING - VIA VT665X DRIVERS
19705 M:      Forest Bond <forest@alittletooquiet.net>
19706 S:      Odd Fixes
19707 F:      drivers/staging/vt665?/
19708
19709 STAGING SUBSYSTEM
19710 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19711 L:      linux-staging@lists.linux.dev
19712 S:      Supported
19713 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
19714 F:      drivers/staging/
19715
19716 STARFIRE/DURALAN NETWORK DRIVER
19717 M:      Ion Badulescu <ionut@badula.org>
19718 S:      Odd Fixes
19719 F:      drivers/net/ethernet/adaptec/starfire*
19720
19721 STARFIVE DEVICETREES
19722 M:      Emil Renner Berthing <kernel@esmil.dk>
19723 S:      Maintained
19724 F:      arch/riscv/boot/dts/starfive/
19725
19726 STARFIVE JH7100 CLOCK DRIVERS
19727 M:      Emil Renner Berthing <kernel@esmil.dk>
19728 S:      Maintained
19729 F:      Documentation/devicetree/bindings/clock/starfive,jh7100-*.yaml
19730 F:      drivers/clk/starfive/clk-starfive-jh7100*
19731 F:      include/dt-bindings/clock/starfive-jh7100*.h
19732
19733 STARFIVE JH7100 PINCTRL DRIVER
19734 M:      Emil Renner Berthing <kernel@esmil.dk>
19735 L:      linux-gpio@vger.kernel.org
19736 S:      Maintained
19737 F:      Documentation/devicetree/bindings/pinctrl/starfive,jh7100-pinctrl.yaml
19738 F:      drivers/pinctrl/starfive/
19739 F:      include/dt-bindings/pinctrl/pinctrl-starfive-jh7100.h
19740
19741 STARFIVE JH7100 RESET CONTROLLER DRIVER
19742 M:      Emil Renner Berthing <kernel@esmil.dk>
19743 S:      Maintained
19744 F:      Documentation/devicetree/bindings/reset/starfive,jh7100-reset.yaml
19745 F:      drivers/reset/reset-starfive-jh7100.c
19746 F:      include/dt-bindings/reset/starfive-jh7100.h
19747
19748 STATIC BRANCH/CALL
19749 M:      Peter Zijlstra <peterz@infradead.org>
19750 M:      Josh Poimboeuf <jpoimboe@kernel.org>
19751 M:      Jason Baron <jbaron@akamai.com>
19752 R:      Steven Rostedt <rostedt@goodmis.org>
19753 R:      Ard Biesheuvel <ardb@kernel.org>
19754 S:      Supported
19755 F:      arch/*/include/asm/jump_label*.h
19756 F:      arch/*/include/asm/static_call*.h
19757 F:      arch/*/kernel/jump_label.c
19758 F:      arch/*/kernel/static_call.c
19759 F:      include/linux/jump_label*.h
19760 F:      include/linux/static_call*.h
19761 F:      kernel/jump_label.c
19762 F:      kernel/static_call.c
19763
19764 STI AUDIO (ASoC) DRIVERS
19765 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
19766 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19767 S:      Maintained
19768 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
19769 F:      sound/soc/sti/
19770
19771 STI CEC DRIVER
19772 M:      Alain Volmat <alain.volmat@foss.st.com>
19773 S:      Maintained
19774 F:      Documentation/devicetree/bindings/media/stih-cec.txt
19775 F:      drivers/media/cec/platform/sti/
19776
19777 STK1160 USB VIDEO CAPTURE DRIVER
19778 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
19779 L:      linux-media@vger.kernel.org
19780 S:      Maintained
19781 T:      git git://linuxtv.org/media_tree.git
19782 F:      drivers/media/usb/stk1160/
19783
19784 STM32 AUDIO (ASoC) DRIVERS
19785 M:      Olivier Moysan <olivier.moysan@foss.st.com>
19786 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
19787 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19788 S:      Maintained
19789 F:      Documentation/devicetree/bindings/iio/adc/st,stm32-dfsdm-adc.yaml
19790 F:      Documentation/devicetree/bindings/sound/st,stm32-*.yaml
19791 F:      sound/soc/stm/
19792
19793 STM32 TIMER/LPTIMER DRIVERS
19794 M:      Fabrice Gasnier <fabrice.gasnier@foss.st.com>
19795 S:      Maintained
19796 F:      Documentation/ABI/testing/*timer-stm32
19797 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
19798 F:      drivers/*/stm32-*timer*
19799 F:      drivers/pwm/pwm-stm32*
19800 F:      include/linux/*/stm32-*tim*
19801
19802 STMMAC ETHERNET DRIVER
19803 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
19804 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
19805 M:      Jose Abreu <joabreu@synopsys.com>
19806 L:      netdev@vger.kernel.org
19807 S:      Supported
19808 W:      http://www.stlinux.com
19809 F:      Documentation/networking/device_drivers/ethernet/stmicro/
19810 F:      drivers/net/ethernet/stmicro/stmmac/
19811
19812 SUN3/3X
19813 M:      Sam Creasey <sammy@sammy.net>
19814 S:      Maintained
19815 W:      http://sammy.net/sun3/
19816 F:      arch/m68k/include/asm/sun3*
19817 F:      arch/m68k/kernel/*sun3*
19818 F:      arch/m68k/sun3*/
19819 F:      drivers/net/ethernet/i825xx/sun3*
19820
19821 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
19822 M:      Hans de Goede <hdegoede@redhat.com>
19823 L:      linux-input@vger.kernel.org
19824 S:      Maintained
19825 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
19826 F:      drivers/input/keyboard/sun4i-lradc-keys.c
19827
19828 SUNDANCE NETWORK DRIVER
19829 M:      Denis Kirjanov <kda@linux-powerpc.org>
19830 L:      netdev@vger.kernel.org
19831 S:      Maintained
19832 F:      drivers/net/ethernet/dlink/sundance.c
19833
19834 SUN HAPPY MEAL ETHERNET DRIVER
19835 M:      Sean Anderson <seanga2@gmail.com>
19836 S:      Maintained
19837 F:      drivers/net/ethernet/sun/sunhme.*
19838
19839 SUNPLUS ETHERNET DRIVER
19840 M:      Wells Lu <wellslutw@gmail.com>
19841 L:      netdev@vger.kernel.org
19842 S:      Maintained
19843 W:      https://sunplus.atlassian.net/wiki/spaces/doc/overview
19844 F:      Documentation/devicetree/bindings/net/sunplus,sp7021-emac.yaml
19845 F:      drivers/net/ethernet/sunplus/
19846
19847 SUNPLUS MMC DRIVER
19848 M:      Tony Huang <tonyhuang.sunplus@gmail.com>
19849 M:      Li-hao Kuo <lhjeff911@gmail.com>
19850 S:      Maintained
19851 F:      Documentation/devicetree/bindings/mmc/sunplus,mmc.yaml
19852 F:      drivers/mmc/host/sunplus-mmc.c
19853
19854 SUNPLUS OCOTP DRIVER
19855 M:      Vincent Shih <vincent.sunplus@gmail.com>
19856 S:      Maintained
19857 F:      Documentation/devicetree/bindings/nvmem/sunplus,sp7021-ocotp.yaml
19858 F:      drivers/nvmem/sunplus-ocotp.c
19859
19860 SUNPLUS USB2 PHY DRIVER
19861 M:      Vincent Shih <vincent.sunplus@gmail.com>
19862 L:      linux-usb@vger.kernel.org
19863 S:      Maintained
19864 F:      Documentation/devicetree/bindings/phy/sunplus,sp7021-usb2-phy.yaml
19865 F:      drivers/phy/sunplus/Kconfig
19866 F:      drivers/phy/sunplus/Makefile
19867 F:      drivers/phy/sunplus/phy-sunplus-usb2.c
19868
19869 SUNPLUS PWM DRIVER
19870 M:      Hammer Hsieh <hammerh0314@gmail.com>
19871 S:      Maintained
19872 F:      Documentation/devicetree/bindings/pwm/sunplus,sp7021-pwm.yaml
19873 F:      drivers/pwm/pwm-sunplus.c
19874
19875 SUNPLUS RTC DRIVER
19876 M:      Vincent Shih <vincent.sunplus@gmail.com>
19877 L:      linux-rtc@vger.kernel.org
19878 S:      Maintained
19879 F:      Documentation/devicetree/bindings/rtc/sunplus,sp7021-rtc.yaml
19880 F:      drivers/rtc/rtc-sunplus.c
19881
19882 SUNPLUS SPI CONTROLLER INTERFACE DRIVER
19883 M:      Li-hao Kuo <lhjeff911@gmail.com>
19884 L:      linux-spi@vger.kernel.org
19885 S:      Maintained
19886 F:      Documentation/devicetree/bindings/spi/spi-sunplus-sp7021.yaml
19887 F:      drivers/spi/spi-sunplus-sp7021.c
19888
19889 SUNPLUS UART DRIVER
19890 M:      Hammer Hsieh <hammerh0314@gmail.com>
19891 S:      Maintained
19892 F:      Documentation/devicetree/bindings/serial/sunplus,sp7021-uart.yaml
19893 F:      drivers/tty/serial/sunplus-uart.c
19894
19895 SUNPLUS WATCHDOG DRIVER
19896 M:      Xiantao Hu <xt.hu@cqplus1.com>
19897 L:      linux-watchdog@vger.kernel.org
19898 S:      Maintained
19899 F:      Documentation/devicetree/bindings/watchdog/sunplus,sp7021-wdt.yaml
19900 F:      drivers/watchdog/sunplus_wdt.c
19901
19902 SUPERH
19903 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
19904 M:      Rich Felker <dalias@libc.org>
19905 M:      John Paul Adrian Glaubitz <glaubitz@physik.fu-berlin.de>
19906 L:      linux-sh@vger.kernel.org
19907 S:      Maintained
19908 Q:      http://patchwork.kernel.org/project/linux-sh/list/
19909 F:      Documentation/sh/
19910 F:      arch/sh/
19911 F:      drivers/sh/
19912
19913 SUSPEND TO RAM
19914 M:      "Rafael J. Wysocki" <rafael@kernel.org>
19915 M:      Len Brown <len.brown@intel.com>
19916 M:      Pavel Machek <pavel@ucw.cz>
19917 L:      linux-pm@vger.kernel.org
19918 S:      Supported
19919 B:      https://bugzilla.kernel.org
19920 F:      Documentation/power/
19921 F:      arch/x86/kernel/acpi/
19922 F:      drivers/base/power/
19923 F:      include/linux/freezer.h
19924 F:      include/linux/pm.h
19925 F:      include/linux/suspend.h
19926 F:      kernel/power/
19927
19928 SVGA HANDLING
19929 M:      Martin Mares <mj@ucw.cz>
19930 L:      linux-video@atrey.karlin.mff.cuni.cz
19931 S:      Maintained
19932 F:      Documentation/admin-guide/svga.rst
19933 F:      arch/x86/boot/video*
19934
19935 SWITCHDEV
19936 M:      Jiri Pirko <jiri@resnulli.us>
19937 M:      Ivan Vecera <ivecera@redhat.com>
19938 L:      netdev@vger.kernel.org
19939 S:      Supported
19940 F:      include/net/switchdev.h
19941 F:      net/switchdev/
19942
19943 SY8106A REGULATOR DRIVER
19944 M:      Icenowy Zheng <icenowy@aosc.io>
19945 S:      Maintained
19946 F:      Documentation/devicetree/bindings/regulator/silergy,sy8106a.yaml
19947 F:      drivers/regulator/sy8106a-regulator.c
19948
19949 SYNC FILE FRAMEWORK
19950 M:      Sumit Semwal <sumit.semwal@linaro.org>
19951 R:      Gustavo Padovan <gustavo@padovan.org>
19952 L:      linux-media@vger.kernel.org
19953 L:      dri-devel@lists.freedesktop.org
19954 S:      Maintained
19955 T:      git git://anongit.freedesktop.org/drm/drm-misc
19956 F:      Documentation/driver-api/sync_file.rst
19957 F:      drivers/dma-buf/dma-fence*
19958 F:      drivers/dma-buf/sw_sync.c
19959 F:      drivers/dma-buf/sync_*
19960 F:      include/linux/sync_file.h
19961 F:      include/uapi/linux/sync_file.h
19962
19963 SYNOPSYS ARC ARCHITECTURE
19964 M:      Vineet Gupta <vgupta@kernel.org>
19965 L:      linux-snps-arc@lists.infradead.org
19966 S:      Supported
19967 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
19968 F:      Documentation/arc/
19969 F:      Documentation/devicetree/bindings/arc/*
19970 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
19971 F:      arch/arc/
19972 F:      drivers/clocksource/arc_timer.c
19973 F:      drivers/tty/serial/arc_uart.c
19974
19975 SYNOPSYS ARC HSDK SDP pll clock driver
19976 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19977 S:      Supported
19978 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
19979 F:      drivers/clk/clk-hsdk-pll.c
19980
19981 SYNOPSYS ARC SDP clock driver
19982 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19983 S:      Supported
19984 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
19985 F:      drivers/clk/axs10x/*
19986
19987 SYNOPSYS ARC SDP platform support
19988 M:      Alexey Brodkin <abrodkin@synopsys.com>
19989 S:      Supported
19990 F:      Documentation/devicetree/bindings/arc/axs10*
19991 F:      arch/arc/boot/dts/ax*
19992 F:      arch/arc/plat-axs10x
19993
19994 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
19995 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19996 S:      Supported
19997 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.yaml
19998 F:      drivers/reset/reset-axs10x.c
19999
20000 SYNOPSYS CREG GPIO DRIVER
20001 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
20002 S:      Maintained
20003 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
20004 F:      drivers/gpio/gpio-creg-snps.c
20005
20006 SYNOPSYS DESIGNWARE 8250 UART DRIVER
20007 M:      Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
20008 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
20009 S:      Supported
20010 F:      drivers/tty/serial/8250/8250_dw.c
20011 F:      drivers/tty/serial/8250/8250_dwlib.*
20012 F:      drivers/tty/serial/8250/8250_lpss.c
20013
20014 SYNOPSYS DESIGNWARE APB GPIO DRIVER
20015 M:      Hoan Tran <hoan@os.amperecomputing.com>
20016 M:      Serge Semin <fancer.lancer@gmail.com>
20017 L:      linux-gpio@vger.kernel.org
20018 S:      Maintained
20019 F:      Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
20020 F:      drivers/gpio/gpio-dwapb.c
20021
20022 SYNOPSYS DESIGNWARE APB SSI DRIVER
20023 M:      Serge Semin <fancer.lancer@gmail.com>
20024 L:      linux-spi@vger.kernel.org
20025 S:      Supported
20026 F:      Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
20027 F:      drivers/spi/spi-dw*
20028
20029 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
20030 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
20031 S:      Maintained
20032 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.yaml
20033 F:      drivers/dma/dw-axi-dmac/
20034
20035 SYNOPSYS DESIGNWARE DMAC DRIVER
20036 M:      Viresh Kumar <vireshk@kernel.org>
20037 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
20038 S:      Maintained
20039 F:      Documentation/devicetree/bindings/dma/renesas,rzn1-dmamux.yaml
20040 F:      Documentation/devicetree/bindings/dma/snps,dma-spear1340.yaml
20041 F:      drivers/dma/dw/
20042 F:      include/dt-bindings/dma/dw-dmac.h
20043 F:      include/linux/dma/dw.h
20044 F:      include/linux/platform_data/dma-dw.h
20045
20046 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
20047 M:      Jose Abreu <Jose.Abreu@synopsys.com>
20048 L:      netdev@vger.kernel.org
20049 S:      Supported
20050 F:      drivers/net/ethernet/synopsys/
20051
20052 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
20053 M:      Jose Abreu <Jose.Abreu@synopsys.com>
20054 L:      netdev@vger.kernel.org
20055 S:      Supported
20056 F:      drivers/net/pcs/pcs-xpcs.c
20057 F:      drivers/net/pcs/pcs-xpcs.h
20058 F:      include/linux/pcs/pcs-xpcs.h
20059
20060 SYNOPSYS DESIGNWARE I2C DRIVER
20061 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
20062 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
20063 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
20064 R:      Jan Dabros <jsd@semihalf.com>
20065 L:      linux-i2c@vger.kernel.org
20066 S:      Supported
20067 F:      drivers/i2c/busses/i2c-designware-*
20068
20069 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
20070 M:      Jaehoon Chung <jh80.chung@samsung.com>
20071 L:      linux-mmc@vger.kernel.org
20072 S:      Maintained
20073 F:      drivers/mmc/host/dw_mmc*
20074
20075 SYNOPSYS HSDK RESET CONTROLLER DRIVER
20076 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
20077 S:      Supported
20078 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
20079 F:      drivers/reset/reset-hsdk.c
20080 F:      include/dt-bindings/reset/snps,hsdk-reset.h
20081
20082 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
20083 M:      Prabu Thangamuthu <prabu.t@synopsys.com>
20084 M:      Manjunath M B <manjumb@synopsys.com>
20085 L:      linux-mmc@vger.kernel.org
20086 S:      Maintained
20087 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
20088
20089 SYSTEM CONFIGURATION (SYSCON)
20090 M:      Lee Jones <lee@kernel.org>
20091 M:      Arnd Bergmann <arnd@arndb.de>
20092 S:      Supported
20093 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
20094 F:      drivers/mfd/syscon.c
20095
20096 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
20097 M:      Sudeep Holla <sudeep.holla@arm.com>
20098 R:      Cristian Marussi <cristian.marussi@arm.com>
20099 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
20100 S:      Maintained
20101 F:      Documentation/devicetree/bindings/firmware/arm,sc[mp]i.yaml
20102 F:      drivers/clk/clk-sc[mp]i.c
20103 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
20104 F:      drivers/firmware/arm_scmi/
20105 F:      drivers/firmware/arm_scpi.c
20106 F:      drivers/powercap/arm_scmi_powercap.c
20107 F:      drivers/regulator/scmi-regulator.c
20108 F:      drivers/reset/reset-scmi.c
20109 F:      include/linux/sc[mp]i_protocol.h
20110 F:      include/trace/events/scmi.h
20111 F:      include/uapi/linux/virtio_scmi.h
20112
20113 SYSTEM RESET/SHUTDOWN DRIVERS
20114 M:      Sebastian Reichel <sre@kernel.org>
20115 L:      linux-pm@vger.kernel.org
20116 S:      Maintained
20117 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
20118 F:      Documentation/devicetree/bindings/power/reset/
20119 F:      drivers/power/reset/
20120
20121 SYSTEM TRACE MODULE CLASS
20122 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
20123 S:      Maintained
20124 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
20125 F:      Documentation/trace/stm.rst
20126 F:      drivers/hwtracing/stm/
20127 F:      include/linux/stm.h
20128 F:      include/uapi/linux/stm.h
20129
20130 SYSTEM76 ACPI DRIVER
20131 M:      Jeremy Soller <jeremy@system76.com>
20132 M:      System76 Product Development <productdev@system76.com>
20133 L:      platform-driver-x86@vger.kernel.org
20134 S:      Maintained
20135 F:      drivers/platform/x86/system76_acpi.c
20136
20137 SYSV FILESYSTEM
20138 S:      Orphan
20139 F:      Documentation/filesystems/sysv-fs.rst
20140 F:      fs/sysv/
20141 F:      include/linux/sysv_fs.h
20142
20143 TASKSTATS STATISTICS INTERFACE
20144 M:      Balbir Singh <bsingharora@gmail.com>
20145 S:      Maintained
20146 F:      Documentation/accounting/taskstats*
20147 F:      include/linux/taskstats*
20148 F:      kernel/taskstats.c
20149
20150 TC subsystem
20151 M:      Jamal Hadi Salim <jhs@mojatatu.com>
20152 M:      Cong Wang <xiyou.wangcong@gmail.com>
20153 M:      Jiri Pirko <jiri@resnulli.us>
20154 L:      netdev@vger.kernel.org
20155 S:      Maintained
20156 F:      include/net/pkt_cls.h
20157 F:      include/net/pkt_sched.h
20158 F:      include/net/tc_act/
20159 F:      include/uapi/linux/pkt_cls.h
20160 F:      include/uapi/linux/pkt_sched.h
20161 F:      include/uapi/linux/tc_act/
20162 F:      include/uapi/linux/tc_ematch/
20163 F:      net/sched/
20164 F:      tools/testing/selftests/tc-testing
20165
20166 TC90522 MEDIA DRIVER
20167 M:      Akihiro Tsukada <tskd08@gmail.com>
20168 L:      linux-media@vger.kernel.org
20169 S:      Odd Fixes
20170 F:      drivers/media/dvb-frontends/tc90522*
20171
20172 TCP LOW PRIORITY MODULE
20173 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
20174 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
20175 S:      Maintained
20176 W:      http://tcp-lp-mod.sourceforge.net/
20177 F:      net/ipv4/tcp_lp.c
20178
20179 TDA10071 MEDIA DRIVER
20180 M:      Antti Palosaari <crope@iki.fi>
20181 L:      linux-media@vger.kernel.org
20182 S:      Maintained
20183 W:      https://linuxtv.org
20184 W:      http://palosaari.fi/linux/
20185 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20186 T:      git git://linuxtv.org/anttip/media_tree.git
20187 F:      drivers/media/dvb-frontends/tda10071*
20188
20189 TDA18212 MEDIA DRIVER
20190 M:      Antti Palosaari <crope@iki.fi>
20191 L:      linux-media@vger.kernel.org
20192 S:      Maintained
20193 W:      https://linuxtv.org
20194 W:      http://palosaari.fi/linux/
20195 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20196 T:      git git://linuxtv.org/anttip/media_tree.git
20197 F:      drivers/media/tuners/tda18212*
20198
20199 TDA18218 MEDIA DRIVER
20200 M:      Antti Palosaari <crope@iki.fi>
20201 L:      linux-media@vger.kernel.org
20202 S:      Maintained
20203 W:      https://linuxtv.org
20204 W:      http://palosaari.fi/linux/
20205 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20206 T:      git git://linuxtv.org/anttip/media_tree.git
20207 F:      drivers/media/tuners/tda18218*
20208
20209 TDA18250 MEDIA DRIVER
20210 M:      Olli Salonen <olli.salonen@iki.fi>
20211 L:      linux-media@vger.kernel.org
20212 S:      Maintained
20213 W:      https://linuxtv.org
20214 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20215 T:      git git://linuxtv.org/media_tree.git
20216 F:      drivers/media/tuners/tda18250*
20217
20218 TDA18271 MEDIA DRIVER
20219 M:      Michael Krufky <mkrufky@linuxtv.org>
20220 L:      linux-media@vger.kernel.org
20221 S:      Maintained
20222 W:      https://linuxtv.org
20223 W:      http://github.com/mkrufky
20224 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20225 T:      git git://linuxtv.org/mkrufky/tuners.git
20226 F:      drivers/media/tuners/tda18271*
20227
20228 TDA1997x MEDIA DRIVER
20229 M:      Tim Harvey <tharvey@gateworks.com>
20230 L:      linux-media@vger.kernel.org
20231 S:      Maintained
20232 W:      https://linuxtv.org
20233 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20234 F:      drivers/media/i2c/tda1997x.*
20235
20236 TDA827x MEDIA DRIVER
20237 M:      Michael Krufky <mkrufky@linuxtv.org>
20238 L:      linux-media@vger.kernel.org
20239 S:      Maintained
20240 W:      https://linuxtv.org
20241 W:      http://github.com/mkrufky
20242 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20243 T:      git git://linuxtv.org/mkrufky/tuners.git
20244 F:      drivers/media/tuners/tda8290.*
20245
20246 TDA8290 MEDIA DRIVER
20247 M:      Michael Krufky <mkrufky@linuxtv.org>
20248 L:      linux-media@vger.kernel.org
20249 S:      Maintained
20250 W:      https://linuxtv.org
20251 W:      http://github.com/mkrufky
20252 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20253 T:      git git://linuxtv.org/mkrufky/tuners.git
20254 F:      drivers/media/tuners/tda8290.*
20255
20256 TDA9840 MEDIA DRIVER
20257 M:      Hans Verkuil <hverkuil@xs4all.nl>
20258 L:      linux-media@vger.kernel.org
20259 S:      Maintained
20260 W:      https://linuxtv.org
20261 T:      git git://linuxtv.org/media_tree.git
20262 F:      drivers/media/i2c/tda9840*
20263
20264 TEA5761 TUNER DRIVER
20265 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
20266 L:      linux-media@vger.kernel.org
20267 S:      Odd fixes
20268 W:      https://linuxtv.org
20269 T:      git git://linuxtv.org/media_tree.git
20270 F:      drivers/media/tuners/tea5761.*
20271
20272 TEA5767 TUNER DRIVER
20273 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
20274 L:      linux-media@vger.kernel.org
20275 S:      Maintained
20276 W:      https://linuxtv.org
20277 T:      git git://linuxtv.org/media_tree.git
20278 F:      drivers/media/tuners/tea5767.*
20279
20280 TEA6415C MEDIA DRIVER
20281 M:      Hans Verkuil <hverkuil@xs4all.nl>
20282 L:      linux-media@vger.kernel.org
20283 S:      Maintained
20284 W:      https://linuxtv.org
20285 T:      git git://linuxtv.org/media_tree.git
20286 F:      drivers/media/i2c/tea6415c*
20287
20288 TEA6420 MEDIA DRIVER
20289 M:      Hans Verkuil <hverkuil@xs4all.nl>
20290 L:      linux-media@vger.kernel.org
20291 S:      Maintained
20292 W:      https://linuxtv.org
20293 T:      git git://linuxtv.org/media_tree.git
20294 F:      drivers/media/i2c/tea6420*
20295
20296 TEAM DRIVER
20297 M:      Jiri Pirko <jiri@resnulli.us>
20298 L:      netdev@vger.kernel.org
20299 S:      Supported
20300 F:      drivers/net/team/
20301 F:      include/linux/if_team.h
20302 F:      include/uapi/linux/if_team.h
20303 F:      tools/testing/selftests/drivers/net/team/
20304
20305 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
20306 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
20307 S:      Maintained
20308 F:      arch/x86/platform/ts5500/
20309
20310 TECHNOTREND USB IR RECEIVER
20311 M:      Sean Young <sean@mess.org>
20312 L:      linux-media@vger.kernel.org
20313 S:      Maintained
20314 F:      drivers/media/rc/ttusbir.c
20315
20316 TECHWELL TW9910 VIDEO DECODER
20317 L:      linux-media@vger.kernel.org
20318 S:      Orphan
20319 F:      drivers/media/i2c/tw9910.c
20320 F:      include/media/i2c/tw9910.h
20321
20322 TEE SUBSYSTEM
20323 M:      Jens Wiklander <jens.wiklander@linaro.org>
20324 R:      Sumit Garg <sumit.garg@linaro.org>
20325 L:      op-tee@lists.trustedfirmware.org
20326 S:      Maintained
20327 F:      Documentation/staging/tee.rst
20328 F:      drivers/tee/
20329 F:      include/linux/tee_drv.h
20330 F:      include/uapi/linux/tee.h
20331
20332 TEGRA ARCHITECTURE SUPPORT
20333 M:      Thierry Reding <thierry.reding@gmail.com>
20334 M:      Jonathan Hunter <jonathanh@nvidia.com>
20335 L:      linux-tegra@vger.kernel.org
20336 S:      Supported
20337 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
20338 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
20339 N:      [^a-z]tegra
20340
20341 TEGRA CLOCK DRIVER
20342 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
20343 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
20344 S:      Supported
20345 F:      drivers/clk/tegra/
20346
20347 TEGRA DMA DRIVERS
20348 M:      Laxman Dewangan <ldewangan@nvidia.com>
20349 M:      Jon Hunter <jonathanh@nvidia.com>
20350 S:      Supported
20351 F:      drivers/dma/tegra*
20352
20353 TEGRA I2C DRIVER
20354 M:      Laxman Dewangan <ldewangan@nvidia.com>
20355 R:      Dmitry Osipenko <digetx@gmail.com>
20356 S:      Supported
20357 F:      drivers/i2c/busses/i2c-tegra.c
20358
20359 TEGRA IOMMU DRIVERS
20360 M:      Thierry Reding <thierry.reding@gmail.com>
20361 R:      Krishna Reddy <vdumpa@nvidia.com>
20362 L:      linux-tegra@vger.kernel.org
20363 S:      Supported
20364 F:      drivers/iommu/arm/arm-smmu/arm-smmu-nvidia.c
20365 F:      drivers/iommu/tegra*
20366
20367 TEGRA KBC DRIVER
20368 M:      Laxman Dewangan <ldewangan@nvidia.com>
20369 S:      Supported
20370 F:      drivers/input/keyboard/tegra-kbc.c
20371
20372 TEGRA NAND DRIVER
20373 M:      Stefan Agner <stefan@agner.ch>
20374 M:      Lucas Stach <dev@lynxeye.de>
20375 S:      Maintained
20376 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
20377 F:      drivers/mtd/nand/raw/tegra_nand.c
20378
20379 TEGRA PWM DRIVER
20380 M:      Thierry Reding <thierry.reding@gmail.com>
20381 S:      Supported
20382 F:      drivers/pwm/pwm-tegra.c
20383
20384 TEGRA SERIAL DRIVER
20385 M:      Laxman Dewangan <ldewangan@nvidia.com>
20386 S:      Supported
20387 F:      drivers/tty/serial/serial-tegra.c
20388
20389 TEGRA SPI DRIVER
20390 M:      Laxman Dewangan <ldewangan@nvidia.com>
20391 S:      Supported
20392 F:      drivers/spi/spi-tegra*
20393
20394 TEGRA QUAD SPI DRIVER
20395 M:      Thierry Reding <thierry.reding@gmail.com>
20396 M:      Jonathan Hunter <jonathanh@nvidia.com>
20397 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
20398 L:      linux-tegra@vger.kernel.org
20399 S:      Maintained
20400 F:      drivers/spi/spi-tegra210-quad.c
20401
20402 TEGRA VIDEO DRIVER
20403 M:      Thierry Reding <thierry.reding@gmail.com>
20404 M:      Jonathan Hunter <jonathanh@nvidia.com>
20405 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
20406 L:      linux-media@vger.kernel.org
20407 L:      linux-tegra@vger.kernel.org
20408 S:      Maintained
20409 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.yaml
20410 F:      drivers/staging/media/tegra-video/
20411
20412 TEGRA XUSB PADCTL DRIVER
20413 M:      JC Kuo <jckuo@nvidia.com>
20414 S:      Supported
20415 F:      drivers/phy/tegra/xusb*
20416
20417 TEHUTI ETHERNET DRIVER
20418 M:      Andy Gospodarek <andy@greyhouse.net>
20419 L:      netdev@vger.kernel.org
20420 S:      Supported
20421 F:      drivers/net/ethernet/tehuti/*
20422
20423 TELECOM CLOCK DRIVER FOR MCPL0010
20424 M:      Mark Gross <markgross@kernel.org>
20425 S:      Supported
20426 F:      drivers/char/tlclk.c
20427
20428 TEMPO SEMICONDUCTOR DRIVERS
20429 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
20430 S:      Maintained
20431 F:      Documentation/devicetree/bindings/sound/tscs*.txt
20432 F:      sound/soc/codecs/tscs*.c
20433 F:      sound/soc/codecs/tscs*.h
20434
20435 TENSILICA XTENSA PORT (xtensa)
20436 M:      Chris Zankel <chris@zankel.net>
20437 M:      Max Filippov <jcmvbkbc@gmail.com>
20438 L:      linux-xtensa@linux-xtensa.org
20439 S:      Maintained
20440 T:      git https://github.com/jcmvbkbc/linux-xtensa.git
20441 F:      arch/xtensa/
20442 F:      drivers/irqchip/irq-xtensa-*
20443
20444 TEXAS INSTRUMENTS ASoC DRIVERS
20445 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
20446 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20447 S:      Maintained
20448 F:      Documentation/devicetree/bindings/sound/davinci-mcasp-audio.yaml
20449 F:      sound/soc/ti/
20450
20451 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
20452 M:      Ricardo Ribalda <ribalda@kernel.org>
20453 L:      linux-iio@vger.kernel.org
20454 S:      Supported
20455 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.yaml
20456 F:      drivers/iio/dac/ti-dac7612.c
20457
20458 TEXAS INSTRUMENTS DMA DRIVERS
20459 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
20460 L:      dmaengine@vger.kernel.org
20461 S:      Maintained
20462 F:      Documentation/devicetree/bindings/dma/ti-dma-crossbar.txt
20463 F:      Documentation/devicetree/bindings/dma/ti-edma.txt
20464 F:      Documentation/devicetree/bindings/dma/ti/
20465 F:      drivers/dma/ti/
20466 X:      drivers/dma/ti/cppi41.c
20467 F:      include/linux/dma/k3-udma-glue.h
20468 F:      include/linux/dma/ti-cppi5.h
20469 F:      include/linux/dma/k3-psil.h
20470
20471 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
20472 M:      Nishanth Menon <nm@ti.com>
20473 M:      Tero Kristo <kristo@kernel.org>
20474 M:      Santosh Shilimkar <ssantosh@kernel.org>
20475 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
20476 S:      Maintained
20477 F:      Documentation/devicetree/bindings/arm/keystone/ti,k3-sci-common.yaml
20478 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.yaml
20479 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.yaml
20480 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.yaml
20481 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.yaml
20482 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.yaml
20483 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.yaml
20484 F:      drivers/clk/keystone/sci-clk.c
20485 F:      drivers/firmware/ti_sci*
20486 F:      drivers/irqchip/irq-ti-sci-inta.c
20487 F:      drivers/irqchip/irq-ti-sci-intr.c
20488 F:      drivers/reset/reset-ti-sci.c
20489 F:      drivers/soc/ti/ti_sci_inta_msi.c
20490 F:      drivers/soc/ti/ti_sci_pm_domains.c
20491 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
20492 F:      include/linux/soc/ti/ti_sci_inta_msi.h
20493 F:      include/linux/soc/ti/ti_sci_protocol.h
20494
20495 TEXAS INSTRUMENTS TPS23861 PoE PSE DRIVER
20496 M:      Robert Marko <robert.marko@sartura.hr>
20497 M:      Luka Perkov <luka.perkov@sartura.hr>
20498 L:      linux-hwmon@vger.kernel.org
20499 S:      Maintained
20500 F:      Documentation/devicetree/bindings/hwmon/ti,tps23861.yaml
20501 F:      Documentation/hwmon/tps23861.rst
20502 F:      drivers/hwmon/tps23861.c
20503
20504 TEXAS INSTRUMENTS' TMP117 TEMPERATURE SENSOR DRIVER
20505 M:      Puranjay Mohan <puranjay12@gmail.com>
20506 L:      linux-iio@vger.kernel.org
20507 S:      Supported
20508 F:      Documentation/devicetree/bindings/iio/temperature/ti,tmp117.yaml
20509 F:      drivers/iio/temperature/tmp117.c
20510
20511 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
20512 M:      Hans Verkuil <hverkuil@xs4all.nl>
20513 L:      linux-media@vger.kernel.org
20514 S:      Maintained
20515 W:      https://linuxtv.org
20516 T:      git git://linuxtv.org/media_tree.git
20517 F:      drivers/media/radio/radio-raremono.c
20518
20519 THERMAL
20520 M:      Rafael J. Wysocki <rafael@kernel.org>
20521 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
20522 R:      Amit Kucheria <amitk@kernel.org>
20523 R:      Zhang Rui <rui.zhang@intel.com>
20524 L:      linux-pm@vger.kernel.org
20525 S:      Supported
20526 Q:      https://patchwork.kernel.org/project/linux-pm/list/
20527 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git thermal
20528 F:      Documentation/ABI/testing/sysfs-class-thermal
20529 F:      Documentation/devicetree/bindings/thermal/
20530 F:      Documentation/driver-api/thermal/
20531 F:      drivers/thermal/
20532 F:      include/dt-bindings/thermal/
20533 F:      include/linux/cpu_cooling.h
20534 F:      include/linux/thermal.h
20535 F:      include/uapi/linux/thermal.h
20536 F:      tools/lib/thermal/
20537 F:      tools/thermal/
20538
20539 THERMAL DRIVER FOR AMLOGIC SOCS
20540 M:      Guillaume La Roque <glaroque@baylibre.com>
20541 L:      linux-pm@vger.kernel.org
20542 L:      linux-amlogic@lists.infradead.org
20543 S:      Supported
20544 W:      http://linux-meson.com/
20545 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
20546 F:      drivers/thermal/amlogic_thermal.c
20547
20548 THERMAL/CPU_COOLING
20549 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
20550 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
20551 M:      Viresh Kumar <viresh.kumar@linaro.org>
20552 R:      Lukasz Luba <lukasz.luba@arm.com>
20553 L:      linux-pm@vger.kernel.org
20554 S:      Supported
20555 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
20556 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
20557 F:      drivers/thermal/cpufreq_cooling.c
20558 F:      drivers/thermal/cpuidle_cooling.c
20559 F:      include/linux/cpu_cooling.h
20560
20561 THERMAL/POWER_ALLOCATOR
20562 M:      Lukasz Luba <lukasz.luba@arm.com>
20563 L:      linux-pm@vger.kernel.org
20564 S:      Maintained
20565 F:      Documentation/driver-api/thermal/power_allocator.rst
20566 F:      drivers/thermal/gov_power_allocator.c
20567 F:      include/trace/events/thermal_power_allocator.h
20568
20569 THINKPAD ACPI EXTRAS DRIVER
20570 M:      Henrique de Moraes Holschuh <hmh@hmh.eng.br>
20571 L:      ibm-acpi-devel@lists.sourceforge.net
20572 L:      platform-driver-x86@vger.kernel.org
20573 S:      Maintained
20574 W:      http://ibm-acpi.sourceforge.net
20575 W:      http://thinkwiki.org/wiki/Ibm-acpi
20576 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
20577 F:      drivers/platform/x86/thinkpad_acpi.c
20578
20579 THINKPAD LMI DRIVER
20580 M:      Mark Pearson <markpearson@lenovo.com>
20581 L:      platform-driver-x86@vger.kernel.org
20582 S:      Maintained
20583 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
20584 F:      drivers/platform/x86/think-lmi.?
20585
20586 THUNDERBOLT DMA TRAFFIC TEST DRIVER
20587 M:      Isaac Hazan <isaac.hazan@intel.com>
20588 L:      linux-usb@vger.kernel.org
20589 S:      Maintained
20590 F:      drivers/thunderbolt/dma_test.c
20591
20592 THUNDERBOLT DRIVER
20593 M:      Andreas Noever <andreas.noever@gmail.com>
20594 M:      Michael Jamet <michael.jamet@intel.com>
20595 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
20596 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
20597 L:      linux-usb@vger.kernel.org
20598 S:      Maintained
20599 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
20600 F:      Documentation/admin-guide/thunderbolt.rst
20601 F:      drivers/thunderbolt/
20602 F:      include/linux/thunderbolt.h
20603
20604 THUNDERBOLT NETWORK DRIVER
20605 M:      Michael Jamet <michael.jamet@intel.com>
20606 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
20607 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
20608 L:      netdev@vger.kernel.org
20609 S:      Maintained
20610 F:      drivers/net/thunderbolt.c
20611
20612 THUNDERX GPIO DRIVER
20613 M:      Robert Richter <rric@kernel.org>
20614 S:      Odd Fixes
20615 F:      drivers/gpio/gpio-thunderx.c
20616
20617 TI AM437X VPFE DRIVER
20618 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
20619 L:      linux-media@vger.kernel.org
20620 S:      Maintained
20621 W:      https://linuxtv.org
20622 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20623 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
20624 F:      drivers/media/platform/ti/am437x/
20625
20626 TI BANDGAP AND THERMAL DRIVER
20627 M:      Eduardo Valentin <edubezval@gmail.com>
20628 M:      Keerthy <j-keerthy@ti.com>
20629 L:      linux-pm@vger.kernel.org
20630 L:      linux-omap@vger.kernel.org
20631 S:      Maintained
20632 F:      drivers/thermal/ti-soc-thermal/
20633
20634 TI BQ27XXX POWER SUPPLY DRIVER
20635 F:      drivers/power/supply/bq27xxx_battery.c
20636 F:      drivers/power/supply/bq27xxx_battery_i2c.c
20637 F:      include/linux/power/bq27xxx_battery.h
20638
20639 TI CDCE706 CLOCK DRIVER
20640 M:      Max Filippov <jcmvbkbc@gmail.com>
20641 S:      Maintained
20642 F:      drivers/clk/clk-cdce706.c
20643
20644 TI CLOCK DRIVER
20645 M:      Tero Kristo <kristo@kernel.org>
20646 L:      linux-omap@vger.kernel.org
20647 S:      Odd Fixes
20648 F:      drivers/clk/ti/
20649 F:      include/linux/clk/ti.h
20650
20651 TI DAVINCI MACHINE SUPPORT
20652 M:      Sekhar Nori <nsekhar@ti.com>
20653 R:      Bartosz Golaszewski <brgl@bgdev.pl>
20654 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
20655 S:      Supported
20656 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
20657 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
20658 F:      arch/arm/boot/dts/da850*
20659 F:      arch/arm/mach-davinci/
20660 F:      drivers/i2c/busses/i2c-davinci.c
20661
20662 TI DAVINCI SERIES CLOCK DRIVER
20663 M:      David Lechner <david@lechnology.com>
20664 R:      Sekhar Nori <nsekhar@ti.com>
20665 S:      Maintained
20666 F:      Documentation/devicetree/bindings/clock/ti/davinci/
20667 F:      drivers/clk/davinci/
20668 F:      include/linux/clk/davinci.h
20669
20670 TI DAVINCI SERIES GPIO DRIVER
20671 M:      Keerthy <j-keerthy@ti.com>
20672 L:      linux-gpio@vger.kernel.org
20673 S:      Maintained
20674 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.yaml
20675 F:      drivers/gpio/gpio-davinci.c
20676
20677 TI DAVINCI SERIES MEDIA DRIVER
20678 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
20679 L:      linux-media@vger.kernel.org
20680 S:      Maintained
20681 W:      https://linuxtv.org
20682 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20683 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
20684 F:      drivers/media/platform/ti/davinci/
20685 F:      include/media/davinci/
20686
20687 TI ENHANCED CAPTURE (eCAP) DRIVER
20688 M:      Vignesh Raghavendra <vigneshr@ti.com>
20689 R:      Julien Panis <jpanis@baylibre.com>
20690 L:      linux-iio@vger.kernel.org
20691 L:      linux-omap@vger.kernel.org
20692 S:      Maintained
20693 F:      Documentation/devicetree/bindings/counter/ti,am62-ecap-capture.yaml
20694 F:      drivers/counter/ti-ecap-capture.c
20695
20696 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
20697 R:      David Lechner <david@lechnology.com>
20698 L:      linux-iio@vger.kernel.org
20699 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
20700 F:      drivers/counter/ti-eqep.c
20701
20702 TI ETHERNET SWITCH DRIVER (CPSW)
20703 R:      Grygorii Strashko <grygorii.strashko@ti.com>
20704 L:      linux-omap@vger.kernel.org
20705 L:      netdev@vger.kernel.org
20706 S:      Maintained
20707 F:      drivers/net/ethernet/ti/cpsw*
20708 F:      drivers/net/ethernet/ti/davinci*
20709
20710 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
20711 M:      Alex Dubov <oakad@yahoo.com>
20712 S:      Maintained
20713 W:      http://tifmxx.berlios.de/
20714 F:      drivers/memstick/host/tifm_ms.c
20715 F:      drivers/misc/tifm*
20716 F:      drivers/mmc/host/tifm_sd.c
20717 F:      include/linux/tifm.h
20718
20719 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
20720 M:      Nishanth Menon <nm@ti.com>
20721 M:      Santosh Shilimkar <ssantosh@kernel.org>
20722 L:      linux-kernel@vger.kernel.org
20723 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
20724 S:      Maintained
20725 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
20726 F:      drivers/soc/ti/*
20727
20728 TI LM49xxx FAMILY ASoC CODEC DRIVERS
20729 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
20730 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
20731 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20732 S:      Maintained
20733 F:      sound/soc/codecs/isabelle*
20734 F:      sound/soc/codecs/lm49453*
20735
20736 TI PCM3060 ASoC CODEC DRIVER
20737 M:      Kirill Marinushkin <kmarinushkin@birdec.com>
20738 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20739 S:      Maintained
20740 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
20741 F:      sound/soc/codecs/pcm3060*
20742
20743 TI TAS571X FAMILY ASoC CODEC DRIVER
20744 M:      Kevin Cernekee <cernekee@chromium.org>
20745 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20746 S:      Odd Fixes
20747 F:      sound/soc/codecs/tas571x*
20748
20749 TI TRF7970A NFC DRIVER
20750 M:      Mark Greer <mgreer@animalcreek.com>
20751 L:      linux-wireless@vger.kernel.org
20752 L:      linux-nfc@lists.01.org (subscribers-only)
20753 S:      Supported
20754 F:      Documentation/devicetree/bindings/net/nfc/ti,trf7970a.yaml
20755 F:      drivers/nfc/trf7970a.c
20756
20757 TI TSC2046 ADC DRIVER
20758 M:      Oleksij Rempel <o.rempel@pengutronix.de>
20759 R:      kernel@pengutronix.de
20760 L:      linux-iio@vger.kernel.org
20761 S:      Maintained
20762 F:      Documentation/devicetree/bindings/iio/adc/ti,tsc2046.yaml
20763 F:      drivers/iio/adc/ti-tsc2046.c
20764
20765 TI TWL4030 SERIES SOC CODEC DRIVER
20766 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
20767 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20768 S:      Maintained
20769 F:      sound/soc/codecs/twl4030*
20770
20771 TI VPE/CAL DRIVERS
20772 M:      Benoit Parrot <bparrot@ti.com>
20773 L:      linux-media@vger.kernel.org
20774 S:      Maintained
20775 W:      http://linuxtv.org/
20776 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20777 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
20778 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
20779 F:      drivers/media/platform/ti/cal/
20780 F:      drivers/media/platform/ti/vpe/
20781
20782 TI WILINK WIRELESS DRIVERS
20783 L:      linux-wireless@vger.kernel.org
20784 S:      Orphan
20785 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
20786 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
20787 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
20788 F:      drivers/net/wireless/ti/
20789
20790 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
20791 M:      John Stultz <jstultz@google.com>
20792 M:      Thomas Gleixner <tglx@linutronix.de>
20793 R:      Stephen Boyd <sboyd@kernel.org>
20794 L:      linux-kernel@vger.kernel.org
20795 S:      Supported
20796 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
20797 F:      include/linux/clocksource.h
20798 F:      include/linux/time.h
20799 F:      include/linux/timex.h
20800 F:      include/uapi/linux/time.h
20801 F:      include/uapi/linux/timex.h
20802 F:      kernel/time/alarmtimer.c
20803 F:      kernel/time/clocksource.c
20804 F:      kernel/time/ntp.c
20805 F:      kernel/time/time*.c
20806 F:      tools/testing/selftests/timers/
20807
20808 TIPC NETWORK LAYER
20809 M:      Jon Maloy <jmaloy@redhat.com>
20810 M:      Ying Xue <ying.xue@windriver.com>
20811 L:      netdev@vger.kernel.org (core kernel code)
20812 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
20813 S:      Maintained
20814 W:      http://tipc.sourceforge.net/
20815 F:      include/uapi/linux/tipc*.h
20816 F:      net/tipc/
20817
20818 TLAN NETWORK DRIVER
20819 M:      Samuel Chessman <chessman@tux.org>
20820 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
20821 S:      Maintained
20822 W:      http://sourceforge.net/projects/tlan/
20823 F:      Documentation/networking/device_drivers/ethernet/ti/tlan.rst
20824 F:      drivers/net/ethernet/ti/tlan.*
20825
20826 TM6000 VIDEO4LINUX DRIVER
20827 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
20828 L:      linux-media@vger.kernel.org
20829 S:      Odd fixes
20830 W:      https://linuxtv.org
20831 T:      git git://linuxtv.org/media_tree.git
20832 F:      Documentation/admin-guide/media/tm6000*
20833 F:      drivers/staging/media/deprecated/tm6000/
20834
20835 TMIO/SDHI MMC DRIVER
20836 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
20837 L:      linux-mmc@vger.kernel.org
20838 L:      linux-renesas-soc@vger.kernel.org
20839 S:      Supported
20840 F:      drivers/mmc/host/renesas_sdhi*
20841 F:      drivers/mmc/host/tmio_mmc*
20842 F:      include/linux/mfd/tmio.h
20843
20844 TMP401 HARDWARE MONITOR DRIVER
20845 M:      Guenter Roeck <linux@roeck-us.net>
20846 L:      linux-hwmon@vger.kernel.org
20847 S:      Maintained
20848 F:      Documentation/devicetree/bindings/hwmon/ti,tmp401.yaml
20849 F:      Documentation/hwmon/tmp401.rst
20850 F:      drivers/hwmon/tmp401.c
20851
20852 TMP464 HARDWARE MONITOR DRIVER
20853 M:      Agathe Porte <agathe.porte@nokia.com>
20854 M:      Guenter Roeck <linux@roeck-us.net>
20855 L:      linux-hwmon@vger.kernel.org
20856 S:      Maintained
20857 F:      Documentation/devicetree/bindings/hwmon/ti,tmp464.yaml
20858 F:      Documentation/hwmon/tmp464.rst
20859 F:      drivers/hwmon/tmp464.c
20860
20861 TMP513 HARDWARE MONITOR DRIVER
20862 M:      Eric Tremblay <etremblay@distech-controls.com>
20863 L:      linux-hwmon@vger.kernel.org
20864 S:      Maintained
20865 F:      Documentation/hwmon/tmp513.rst
20866 F:      drivers/hwmon/tmp513.c
20867
20868 TMPFS (SHMEM FILESYSTEM)
20869 M:      Hugh Dickins <hughd@google.com>
20870 L:      linux-mm@kvack.org
20871 S:      Maintained
20872 F:      include/linux/shmem_fs.h
20873 F:      mm/shmem.c
20874
20875 TOMOYO SECURITY MODULE
20876 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
20877 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
20878 L:      tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
20879 L:      tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
20880 L:      tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
20881 L:      tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
20882 S:      Maintained
20883 W:      https://tomoyo.osdn.jp/
20884 F:      security/tomoyo/
20885
20886 TOPSTAR LAPTOP EXTRAS DRIVER
20887 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
20888 L:      platform-driver-x86@vger.kernel.org
20889 S:      Maintained
20890 F:      drivers/platform/x86/topstar-laptop.c
20891
20892 TORTURE-TEST MODULES
20893 M:      Davidlohr Bueso <dave@stgolabs.net>
20894 M:      "Paul E. McKenney" <paulmck@kernel.org>
20895 M:      Josh Triplett <josh@joshtriplett.org>
20896 L:      linux-kernel@vger.kernel.org
20897 S:      Supported
20898 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
20899 F:      Documentation/RCU/torture.rst
20900 F:      kernel/locking/locktorture.c
20901 F:      kernel/rcu/rcuscale.c
20902 F:      kernel/rcu/rcutorture.c
20903 F:      kernel/rcu/refscale.c
20904 F:      kernel/torture.c
20905
20906 TOSHIBA ACPI EXTRAS DRIVER
20907 M:      Azael Avalos <coproscefalo@gmail.com>
20908 L:      platform-driver-x86@vger.kernel.org
20909 S:      Maintained
20910 F:      drivers/platform/x86/toshiba_acpi.c
20911
20912 TOSHIBA BLUETOOTH DRIVER
20913 M:      Azael Avalos <coproscefalo@gmail.com>
20914 L:      platform-driver-x86@vger.kernel.org
20915 S:      Maintained
20916 F:      drivers/platform/x86/toshiba_bluetooth.c
20917
20918 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
20919 M:      Azael Avalos <coproscefalo@gmail.com>
20920 L:      platform-driver-x86@vger.kernel.org
20921 S:      Maintained
20922 F:      drivers/platform/x86/toshiba_haps.c
20923
20924 TOSHIBA SMM DRIVER
20925 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
20926 S:      Maintained
20927 W:      http://www.buzzard.org.uk/toshiba/
20928 F:      drivers/char/toshiba.c
20929 F:      include/linux/toshiba.h
20930 F:      include/uapi/linux/toshiba.h
20931
20932 TOSHIBA TC358743 DRIVER
20933 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
20934 L:      linux-media@vger.kernel.org
20935 S:      Maintained
20936 F:      Documentation/devicetree/bindings/media/i2c/tc358743.txt
20937 F:      drivers/media/i2c/tc358743*
20938 F:      include/media/i2c/tc358743.h
20939
20940 TOSHIBA WMI HOTKEYS DRIVER
20941 M:      Azael Avalos <coproscefalo@gmail.com>
20942 L:      platform-driver-x86@vger.kernel.org
20943 S:      Maintained
20944 F:      drivers/platform/x86/toshiba-wmi.c
20945
20946 TPM DEVICE DRIVER
20947 M:      Peter Huewe <peterhuewe@gmx.de>
20948 M:      Jarkko Sakkinen <jarkko@kernel.org>
20949 R:      Jason Gunthorpe <jgg@ziepe.ca>
20950 L:      linux-integrity@vger.kernel.org
20951 S:      Maintained
20952 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
20953 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
20954 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd.git
20955 F:      drivers/char/tpm/
20956
20957 TPS546D24 DRIVER
20958 M:      Duke Du <dukedu83@gmail.com>
20959 L:      linux-hwmon@vger.kernel.org
20960 S:      Maintained
20961 F:      Documentation/hwmon/tps546d24.rst
20962 F:      drivers/hwmon/pmbus/tps546d24.c
20963
20964 TRACING
20965 M:      Steven Rostedt <rostedt@goodmis.org>
20966 M:      Masami Hiramatsu <mhiramat@kernel.org>
20967 L:      linux-kernel@vger.kernel.org
20968 L:      linux-trace-kernel@vger.kernel.org
20969 Q:      https://patchwork.kernel.org/project/linux-trace-kernel/list/
20970 S:      Maintained
20971 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace.git
20972 F:      Documentation/trace/*
20973 F:      fs/tracefs/
20974 F:      include/linux/trace*.h
20975 F:      include/trace/
20976 F:      kernel/trace/
20977 F:      scripts/tracing/
20978 F:      tools/testing/selftests/ftrace/
20979
20980 TRACING MMIO ACCESSES (MMIOTRACE)
20981 M:      Steven Rostedt <rostedt@goodmis.org>
20982 M:      Masami Hiramatsu <mhiramat@kernel.org>
20983 R:      Karol Herbst <karolherbst@gmail.com>
20984 R:      Pekka Paalanen <ppaalanen@gmail.com>
20985 L:      linux-kernel@vger.kernel.org
20986 L:      nouveau@lists.freedesktop.org
20987 S:      Maintained
20988 F:      arch/x86/mm/kmmio.c
20989 F:      arch/x86/mm/mmio-mod.c
20990 F:      arch/x86/mm/testmmiotrace.c
20991 F:      include/linux/mmiotrace.h
20992 F:      kernel/trace/trace_mmiotrace.c
20993
20994 TRACING OS NOISE / LATENCY TRACERS
20995 M:      Steven Rostedt <rostedt@goodmis.org>
20996 M:      Daniel Bristot de Oliveira <bristot@kernel.org>
20997 S:      Maintained
20998 F:      kernel/trace/trace_osnoise.c
20999 F:      include/trace/events/osnoise.h
21000 F:      kernel/trace/trace_hwlat.c
21001 F:      kernel/trace/trace_irqsoff.c
21002 F:      kernel/trace/trace_sched_wakeup.c
21003 F:      Documentation/trace/osnoise-tracer.rst
21004 F:      Documentation/trace/timerlat-tracer.rst
21005 F:      Documentation/trace/hwlat_detector.rst
21006 F:      arch/*/kernel/trace.c
21007
21008 Real-time Linux Analysis (RTLA) tools
21009 M:      Daniel Bristot de Oliveira <bristot@kernel.org>
21010 M:      Steven Rostedt <rostedt@goodmis.org>
21011 L:      linux-trace-devel@vger.kernel.org
21012 S:      Maintained
21013 F:      Documentation/tools/rtla/
21014 F:      tools/tracing/rtla/
21015
21016 TRADITIONAL CHINESE DOCUMENTATION
21017 M:      Hu Haowen <src.res@email.cn>
21018 L:      linux-doc-tw-discuss@lists.sourceforge.net (moderated for non-subscribers)
21019 S:      Maintained
21020 W:      https://github.com/srcres258/linux-doc
21021 T:      git git://github.com/srcres258/linux-doc.git doc-zh-tw
21022 F:      Documentation/translations/zh_TW/
21023
21024 TTY LAYER
21025 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
21026 M:      Jiri Slaby <jirislaby@kernel.org>
21027 S:      Supported
21028 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
21029 F:      Documentation/driver-api/serial/
21030 F:      drivers/tty/
21031 F:      drivers/tty/serial/serial_core.c
21032 F:      include/linux/selection.h
21033 F:      include/linux/serial.h
21034 F:      include/linux/serial_core.h
21035 F:      include/linux/sysrq.h
21036 F:      include/linux/tty*.h
21037 F:      include/linux/vt.h
21038 F:      include/linux/vt_*.h
21039 F:      include/uapi/linux/serial.h
21040 F:      include/uapi/linux/serial_core.h
21041 F:      include/uapi/linux/tty.h
21042
21043 TUA9001 MEDIA DRIVER
21044 M:      Antti Palosaari <crope@iki.fi>
21045 L:      linux-media@vger.kernel.org
21046 S:      Maintained
21047 W:      https://linuxtv.org
21048 W:      http://palosaari.fi/linux/
21049 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
21050 T:      git git://linuxtv.org/anttip/media_tree.git
21051 F:      drivers/media/tuners/tua9001*
21052
21053 TULIP NETWORK DRIVERS
21054 L:      netdev@vger.kernel.org
21055 L:      linux-parisc@vger.kernel.org
21056 S:      Orphan
21057 F:      drivers/net/ethernet/dec/tulip/
21058
21059 TUN/TAP driver
21060 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
21061 S:      Maintained
21062 W:      http://vtun.sourceforge.net/tun
21063 F:      Documentation/networking/tuntap.rst
21064 F:      arch/um/os-Linux/drivers/
21065
21066 TURBOCHANNEL SUBSYSTEM
21067 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
21068 M:      Ralf Baechle <ralf@linux-mips.org>
21069 L:      linux-mips@vger.kernel.org
21070 S:      Maintained
21071 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
21072 F:      drivers/tc/
21073 F:      include/linux/tc.h
21074
21075 TURBOSTAT UTILITY
21076 M:      "Len Brown" <lenb@kernel.org>
21077 L:      linux-pm@vger.kernel.org
21078 S:      Supported
21079 Q:      https://patchwork.kernel.org/project/linux-pm/list/
21080 B:      https://bugzilla.kernel.org
21081 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
21082 F:      tools/power/x86/turbostat/
21083
21084 TW5864 VIDEO4LINUX DRIVER
21085 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
21086 M:      Anton Sviridenko <anton@corp.bluecherry.net>
21087 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
21088 M:      Andrey Utkin <andrey_utkin@fastmail.com>
21089 L:      linux-media@vger.kernel.org
21090 S:      Supported
21091 F:      drivers/media/pci/tw5864/
21092
21093 TW68 VIDEO4LINUX DRIVER
21094 M:      Hans Verkuil <hverkuil@xs4all.nl>
21095 L:      linux-media@vger.kernel.org
21096 S:      Odd Fixes
21097 W:      https://linuxtv.org
21098 T:      git git://linuxtv.org/media_tree.git
21099 F:      drivers/media/pci/tw68/
21100
21101 TW686X VIDEO4LINUX DRIVER
21102 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
21103 L:      linux-media@vger.kernel.org
21104 S:      Maintained
21105 W:      http://linuxtv.org
21106 T:      git git://linuxtv.org/media_tree.git
21107 F:      drivers/media/pci/tw686x/
21108
21109 U-BOOT ENVIRONMENT VARIABLES
21110 M:      Rafał Miłecki <rafal@milecki.pl>
21111 S:      Maintained
21112 F:      Documentation/devicetree/bindings/nvmem/u-boot,env.yaml
21113 F:      drivers/nvmem/u-boot-env.c
21114
21115 UACCE ACCELERATOR FRAMEWORK
21116 M:      Zhangfei Gao <zhangfei.gao@linaro.org>
21117 M:      Zhou Wang <wangzhou1@hisilicon.com>
21118 L:      linux-accelerators@lists.ozlabs.org
21119 L:      linux-kernel@vger.kernel.org
21120 S:      Maintained
21121 F:      Documentation/ABI/testing/sysfs-driver-uacce
21122 F:      Documentation/misc-devices/uacce.rst
21123 F:      drivers/misc/uacce/
21124 F:      include/linux/uacce.h
21125 F:      include/uapi/misc/uacce/
21126
21127 UBI FILE SYSTEM (UBIFS)
21128 M:      Richard Weinberger <richard@nod.at>
21129 L:      linux-mtd@lists.infradead.org
21130 S:      Supported
21131 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
21132 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
21133 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
21134 F:      Documentation/ABI/testing/sysfs-fs-ubifs
21135 F:      Documentation/filesystems/ubifs-authentication.rst
21136 F:      Documentation/filesystems/ubifs.rst
21137 F:      fs/ubifs/
21138
21139 UBLK USERSPACE BLOCK DRIVER
21140 M:      Ming Lei <ming.lei@redhat.com>
21141 L:      linux-block@vger.kernel.org
21142 S:      Maintained
21143 F:      Documentation/block/ublk.rst
21144 F:      drivers/block/ublk_drv.c
21145 F:      include/uapi/linux/ublk_cmd.h
21146
21147 UCLINUX (M68KNOMMU AND COLDFIRE)
21148 M:      Greg Ungerer <gerg@linux-m68k.org>
21149 L:      linux-m68k@lists.linux-m68k.org
21150 L:      uclinux-dev@uclinux.org  (subscribers-only)
21151 S:      Maintained
21152 W:      http://www.linux-m68k.org/
21153 W:      http://www.uclinux.org/
21154 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
21155 F:      arch/m68k/*/*_no.*
21156 F:      arch/m68k/68*/
21157 F:      arch/m68k/coldfire/
21158 F:      arch/m68k/include/asm/*_no.*
21159
21160 UDF FILESYSTEM
21161 M:      Jan Kara <jack@suse.com>
21162 S:      Maintained
21163 F:      Documentation/filesystems/udf.rst
21164 F:      fs/udf/
21165
21166 UDRAW TABLET
21167 M:      Bastien Nocera <hadess@hadess.net>
21168 L:      linux-input@vger.kernel.org
21169 S:      Maintained
21170 F:      drivers/hid/hid-udraw-ps3.c
21171
21172 UFS FILESYSTEM
21173 M:      Evgeniy Dushistov <dushistov@mail.ru>
21174 S:      Maintained
21175 F:      Documentation/admin-guide/ufs.rst
21176 F:      fs/ufs/
21177
21178 UHID USERSPACE HID IO DRIVER
21179 M:      David Rheinsberg <david.rheinsberg@gmail.com>
21180 L:      linux-input@vger.kernel.org
21181 S:      Maintained
21182 F:      drivers/hid/uhid.c
21183 F:      include/uapi/linux/uhid.h
21184
21185 ULPI BUS
21186 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
21187 L:      linux-usb@vger.kernel.org
21188 S:      Maintained
21189 F:      drivers/usb/common/ulpi.c
21190 F:      include/linux/ulpi/
21191
21192 UNICODE SUBSYSTEM
21193 M:      Gabriel Krisman Bertazi <krisman@collabora.com>
21194 L:      linux-fsdevel@vger.kernel.org
21195 S:      Supported
21196 F:      fs/unicode/
21197
21198 UNIFDEF
21199 M:      Tony Finch <dot@dotat.at>
21200 S:      Maintained
21201 W:      http://dotat.at/prog/unifdef
21202 F:      scripts/unifdef.c
21203
21204 UNIFORM CDROM DRIVER
21205 M:      Phillip Potter <phil@philpotter.co.uk>
21206 S:      Maintained
21207 F:      Documentation/cdrom/
21208 F:      drivers/cdrom/cdrom.c
21209 F:      include/linux/cdrom.h
21210 F:      include/uapi/linux/cdrom.h
21211
21212 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
21213 R:      Alim Akhtar <alim.akhtar@samsung.com>
21214 R:      Avri Altman <avri.altman@wdc.com>
21215 R:      Bart Van Assche <bvanassche@acm.org>
21216 L:      linux-scsi@vger.kernel.org
21217 S:      Supported
21218 F:      Documentation/devicetree/bindings/ufs/
21219 F:      Documentation/scsi/ufs.rst
21220 F:      drivers/ufs/core/
21221
21222 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
21223 M:      Pedro Sousa <pedrom.sousa@synopsys.com>
21224 L:      linux-scsi@vger.kernel.org
21225 S:      Supported
21226 F:      drivers/ufs/host/*dwc*
21227
21228 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
21229 M:      Stanley Chu <stanley.chu@mediatek.com>
21230 L:      linux-scsi@vger.kernel.org
21231 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
21232 S:      Maintained
21233 F:      drivers/ufs/host/ufs-mediatek*
21234
21235 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER RENESAS HOOKS
21236 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
21237 L:      linux-renesas-soc@vger.kernel.org
21238 L:      linux-scsi@vger.kernel.org
21239 S:      Maintained
21240 F:      drivers/ufs/host/ufs-renesas.c
21241
21242 UNSORTED BLOCK IMAGES (UBI)
21243 M:      Richard Weinberger <richard@nod.at>
21244 L:      linux-mtd@lists.infradead.org
21245 S:      Supported
21246 W:      http://www.linux-mtd.infradead.org/
21247 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
21248 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
21249 F:      drivers/mtd/ubi/
21250 F:      include/linux/mtd/ubi.h
21251 F:      include/uapi/mtd/ubi-user.h
21252
21253 USB "USBNET" DRIVER FRAMEWORK
21254 M:      Oliver Neukum <oneukum@suse.com>
21255 L:      netdev@vger.kernel.org
21256 S:      Maintained
21257 W:      http://www.linux-usb.org/usbnet
21258 F:      drivers/net/usb/usbnet.c
21259 F:      include/linux/usb/usbnet.h
21260
21261 USB ACM DRIVER
21262 M:      Oliver Neukum <oneukum@suse.com>
21263 L:      linux-usb@vger.kernel.org
21264 S:      Maintained
21265 F:      Documentation/usb/acm.rst
21266 F:      drivers/usb/class/cdc-acm.*
21267
21268 USB APPLE MFI FASTCHARGE DRIVER
21269 M:      Bastien Nocera <hadess@hadess.net>
21270 L:      linux-usb@vger.kernel.org
21271 S:      Maintained
21272 F:      drivers/usb/misc/apple-mfi-fastcharge.c
21273
21274 USB AR5523 WIRELESS DRIVER
21275 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
21276 L:      linux-wireless@vger.kernel.org
21277 S:      Maintained
21278 F:      drivers/net/wireless/ath/ar5523/
21279
21280 USB ATTACHED SCSI
21281 M:      Oliver Neukum <oneukum@suse.com>
21282 L:      linux-usb@vger.kernel.org
21283 L:      linux-scsi@vger.kernel.org
21284 S:      Maintained
21285 F:      drivers/usb/storage/uas.c
21286
21287 USB CDC ETHERNET DRIVER
21288 M:      Oliver Neukum <oliver@neukum.org>
21289 L:      linux-usb@vger.kernel.org
21290 S:      Maintained
21291 F:      drivers/net/usb/cdc_*.c
21292 F:      include/uapi/linux/usb/cdc.h
21293
21294 USB CHAOSKEY DRIVER
21295 M:      Keith Packard <keithp@keithp.com>
21296 L:      linux-usb@vger.kernel.org
21297 S:      Maintained
21298 F:      drivers/usb/misc/chaoskey.c
21299
21300 USB CYPRESS C67X00 DRIVER
21301 L:      linux-usb@vger.kernel.org
21302 S:      Orphan
21303 F:      drivers/usb/c67x00/
21304
21305 USB DAVICOM DM9601 DRIVER
21306 M:      Peter Korsgaard <peter@korsgaard.com>
21307 L:      netdev@vger.kernel.org
21308 S:      Maintained
21309 W:      http://www.linux-usb.org/usbnet
21310 F:      drivers/net/usb/dm9601.c
21311
21312 USB EHCI DRIVER
21313 M:      Alan Stern <stern@rowland.harvard.edu>
21314 L:      linux-usb@vger.kernel.org
21315 S:      Maintained
21316 F:      Documentation/usb/ehci.rst
21317 F:      drivers/usb/host/ehci*
21318
21319 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
21320 M:      Jiri Kosina <jikos@kernel.org>
21321 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
21322 L:      linux-usb@vger.kernel.org
21323 S:      Maintained
21324 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
21325 F:      Documentation/hid/hiddev.rst
21326 F:      drivers/hid/usbhid/
21327
21328 USB INTEL XHCI ROLE MUX DRIVER
21329 M:      Hans de Goede <hdegoede@redhat.com>
21330 L:      linux-usb@vger.kernel.org
21331 S:      Maintained
21332 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
21333
21334 USB IP DRIVER FOR HISILICON KIRIN 960
21335 M:      Yu Chen <chenyu56@huawei.com>
21336 M:      Binghui Wang <wangbinghui@hisilicon.com>
21337 L:      linux-usb@vger.kernel.org
21338 S:      Maintained
21339 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml
21340 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
21341
21342 USB IP DRIVER FOR HISILICON KIRIN 970
21343 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
21344 L:      linux-usb@vger.kernel.org
21345 S:      Maintained
21346 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3670-usb3.yaml
21347 F:      drivers/phy/hisilicon/phy-hi3670-usb3.c
21348
21349 USB ISP116X DRIVER
21350 M:      Olav Kongas <ok@artecdesign.ee>
21351 L:      linux-usb@vger.kernel.org
21352 S:      Maintained
21353 F:      drivers/usb/host/isp116x*
21354 F:      include/linux/usb/isp116x.h
21355
21356 USB ISP1760 DRIVER
21357 M:      Rui Miguel Silva <rui.silva@linaro.org>
21358 L:      linux-usb@vger.kernel.org
21359 S:      Maintained
21360 F:      drivers/usb/isp1760/*
21361 F:      Documentation/devicetree/bindings/usb/nxp,isp1760.yaml
21362
21363 USB LAN78XX ETHERNET DRIVER
21364 M:      Woojung Huh <woojung.huh@microchip.com>
21365 M:      UNGLinuxDriver@microchip.com
21366 L:      netdev@vger.kernel.org
21367 S:      Maintained
21368 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
21369 F:      drivers/net/usb/lan78xx.*
21370 F:      include/dt-bindings/net/microchip-lan78xx.h
21371
21372 USB MASS STORAGE DRIVER
21373 M:      Alan Stern <stern@rowland.harvard.edu>
21374 L:      linux-usb@vger.kernel.org
21375 L:      usb-storage@lists.one-eyed-alien.net
21376 S:      Maintained
21377 F:      drivers/usb/storage/
21378
21379 USB MIDI DRIVER
21380 M:      Clemens Ladisch <clemens@ladisch.de>
21381 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
21382 S:      Maintained
21383 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
21384 F:      sound/usb/midi.*
21385
21386 USB NETWORKING DRIVERS
21387 L:      linux-usb@vger.kernel.org
21388 S:      Odd Fixes
21389 F:      drivers/net/usb/
21390
21391 USB OHCI DRIVER
21392 M:      Alan Stern <stern@rowland.harvard.edu>
21393 L:      linux-usb@vger.kernel.org
21394 S:      Maintained
21395 F:      Documentation/usb/ohci.rst
21396 F:      drivers/usb/host/ohci*
21397
21398 USB OTG FSM (Finite State Machine)
21399 M:      Peter Chen <peter.chen@kernel.org>
21400 L:      linux-usb@vger.kernel.org
21401 S:      Maintained
21402 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
21403 F:      drivers/usb/common/usb-otg-fsm.c
21404
21405 USB OVER IP DRIVER
21406 M:      Valentina Manea <valentina.manea.m@gmail.com>
21407 M:      Shuah Khan <shuah@kernel.org>
21408 M:      Shuah Khan <skhan@linuxfoundation.org>
21409 L:      linux-usb@vger.kernel.org
21410 S:      Maintained
21411 F:      Documentation/usb/usbip_protocol.rst
21412 F:      drivers/usb/usbip/
21413 F:      tools/testing/selftests/drivers/usb/usbip/
21414 F:      tools/usb/usbip/
21415
21416 USB PEGASUS DRIVER
21417 M:      Petko Manolov <petkan@nucleusys.com>
21418 L:      linux-usb@vger.kernel.org
21419 L:      netdev@vger.kernel.org
21420 S:      Maintained
21421 W:      https://github.com/petkan/pegasus
21422 T:      git https://github.com/petkan/pegasus.git
21423 F:      drivers/net/usb/pegasus.*
21424
21425 USB PRINTER DRIVER (usblp)
21426 M:      Pete Zaitcev <zaitcev@redhat.com>
21427 L:      linux-usb@vger.kernel.org
21428 S:      Supported
21429 F:      drivers/usb/class/usblp.c
21430
21431 USB RAW GADGET DRIVER
21432 R:      Andrey Konovalov <andreyknvl@gmail.com>
21433 L:      linux-usb@vger.kernel.org
21434 S:      Maintained
21435 F:      Documentation/usb/raw-gadget.rst
21436 F:      drivers/usb/gadget/legacy/raw_gadget.c
21437 F:      include/uapi/linux/usb/raw_gadget.h
21438
21439 USB QMI WWAN NETWORK DRIVER
21440 M:      Bjørn Mork <bjorn@mork.no>
21441 L:      netdev@vger.kernel.org
21442 S:      Maintained
21443 F:      Documentation/ABI/testing/sysfs-class-net-qmi
21444 F:      drivers/net/usb/qmi_wwan.c
21445
21446 USB RTL8150 DRIVER
21447 M:      Petko Manolov <petkan@nucleusys.com>
21448 L:      linux-usb@vger.kernel.org
21449 L:      netdev@vger.kernel.org
21450 S:      Maintained
21451 W:      https://github.com/petkan/rtl8150
21452 T:      git https://github.com/petkan/rtl8150.git
21453 F:      drivers/net/usb/rtl8150.c
21454
21455 USB SERIAL SUBSYSTEM
21456 M:      Johan Hovold <johan@kernel.org>
21457 L:      linux-usb@vger.kernel.org
21458 S:      Maintained
21459 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
21460 F:      Documentation/usb/usb-serial.rst
21461 F:      drivers/usb/serial/
21462 F:      include/linux/usb/serial.h
21463
21464 USB SMSC75XX ETHERNET DRIVER
21465 M:      Steve Glendinning <steve.glendinning@shawell.net>
21466 L:      netdev@vger.kernel.org
21467 S:      Maintained
21468 F:      drivers/net/usb/smsc75xx.*
21469
21470 USB SMSC95XX ETHERNET DRIVER
21471 M:      Steve Glendinning <steve.glendinning@shawell.net>
21472 M:      UNGLinuxDriver@microchip.com
21473 L:      netdev@vger.kernel.org
21474 S:      Maintained
21475 F:      drivers/net/usb/smsc95xx.*
21476
21477 USB SUBSYSTEM
21478 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
21479 L:      linux-usb@vger.kernel.org
21480 S:      Supported
21481 W:      http://www.linux-usb.org
21482 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
21483 F:      Documentation/devicetree/bindings/usb/
21484 F:      Documentation/usb/
21485 F:      drivers/usb/
21486 F:      include/dt-bindings/usb/
21487 F:      include/linux/usb.h
21488 F:      include/linux/usb/
21489
21490 USB TYPEC BUS FOR ALTERNATE MODES
21491 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
21492 L:      linux-usb@vger.kernel.org
21493 S:      Maintained
21494 F:      Documentation/ABI/testing/sysfs-bus-typec
21495 F:      Documentation/driver-api/usb/typec_bus.rst
21496 F:      drivers/usb/typec/altmodes/
21497 F:      include/linux/usb/typec_altmode.h
21498
21499 USB TYPEC CLASS
21500 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
21501 L:      linux-usb@vger.kernel.org
21502 S:      Maintained
21503 F:      Documentation/ABI/testing/sysfs-class-typec
21504 F:      Documentation/driver-api/usb/typec.rst
21505 F:      drivers/usb/typec/
21506 F:      include/linux/usb/typec.h
21507
21508 USB TYPEC INTEL PMC MUX DRIVER
21509 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
21510 L:      linux-usb@vger.kernel.org
21511 S:      Maintained
21512 F:      Documentation/firmware-guide/acpi/intel-pmc-mux.rst
21513 F:      drivers/usb/typec/mux/intel_pmc_mux.c
21514
21515 USB TYPEC PI3USB30532 MUX DRIVER
21516 M:      Hans de Goede <hdegoede@redhat.com>
21517 L:      linux-usb@vger.kernel.org
21518 S:      Maintained
21519 F:      drivers/usb/typec/mux/pi3usb30532.c
21520
21521 USB TYPEC PORT CONTROLLER DRIVERS
21522 M:      Guenter Roeck <linux@roeck-us.net>
21523 L:      linux-usb@vger.kernel.org
21524 S:      Maintained
21525 F:      drivers/usb/typec/tcpm/
21526
21527 USB UHCI DRIVER
21528 M:      Alan Stern <stern@rowland.harvard.edu>
21529 L:      linux-usb@vger.kernel.org
21530 S:      Maintained
21531 F:      drivers/usb/host/uhci*
21532
21533 USB VIDEO CLASS
21534 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
21535 L:      linux-media@vger.kernel.org
21536 S:      Maintained
21537 W:      http://www.ideasonboard.org/uvc/
21538 T:      git git://linuxtv.org/media_tree.git
21539 F:      drivers/media/usb/uvc/
21540 F:      include/uapi/linux/uvcvideo.h
21541
21542 USB WEBCAM GADGET
21543 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
21544 M:      Daniel Scally <dan.scally@ideasonboard.com>
21545 L:      linux-usb@vger.kernel.org
21546 S:      Maintained
21547 F:      drivers/usb/gadget/function/*uvc*
21548 F:      drivers/usb/gadget/legacy/webcam.c
21549 F:      include/uapi/linux/usb/g_uvc.h
21550
21551 USB WIRELESS RNDIS DRIVER (rndis_wlan)
21552 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
21553 L:      linux-wireless@vger.kernel.org
21554 S:      Maintained
21555 F:      drivers/net/wireless/rndis_wlan.c
21556
21557 USB XHCI DRIVER
21558 M:      Mathias Nyman <mathias.nyman@intel.com>
21559 L:      linux-usb@vger.kernel.org
21560 S:      Supported
21561 F:      drivers/usb/host/pci-quirks*
21562 F:      drivers/usb/host/xhci*
21563
21564 USB ZD1201 DRIVER
21565 L:      linux-wireless@vger.kernel.org
21566 S:      Orphan
21567 W:      http://linux-lc100020.sourceforge.net
21568 F:      drivers/net/wireless/zydas/zd1201.*
21569
21570 USB ZR364XX DRIVER
21571 M:      Antoine Jacquet <royale@zerezo.com>
21572 L:      linux-usb@vger.kernel.org
21573 L:      linux-media@vger.kernel.org
21574 S:      Maintained
21575 W:      http://royale.zerezo.com/zr364xx/
21576 T:      git git://linuxtv.org/media_tree.git
21577 F:      Documentation/admin-guide/media/zr364xx*
21578 F:      drivers/staging/media/deprecated/zr364xx/
21579
21580 USER DATAGRAM PROTOCOL (UDP)
21581 M:      Willem de Bruijn <willemdebruijn.kernel@gmail.com>
21582 S:      Maintained
21583 F:      include/linux/udp.h
21584 F:      net/ipv4/udp.c
21585 F:      net/ipv6/udp.c
21586
21587 USER-MODE LINUX (UML)
21588 M:      Richard Weinberger <richard@nod.at>
21589 M:      Anton Ivanov <anton.ivanov@cambridgegreys.com>
21590 M:      Johannes Berg <johannes@sipsolutions.net>
21591 L:      linux-um@lists.infradead.org
21592 S:      Maintained
21593 W:      http://user-mode-linux.sourceforge.net
21594 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
21595 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/uml/linux.git next
21596 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/uml/linux.git fixes
21597 F:      Documentation/virt/uml/
21598 F:      arch/um/
21599 F:      arch/x86/um/
21600 F:      fs/hostfs/
21601
21602 USERSPACE COPYIN/COPYOUT (UIOVEC)
21603 M:      Alexander Viro <viro@zeniv.linux.org.uk>
21604 S:      Maintained
21605 F:      include/linux/uio.h
21606 F:      lib/iov_iter.c
21607
21608 USERSPACE DMA BUFFER DRIVER
21609 M:      Gerd Hoffmann <kraxel@redhat.com>
21610 L:      dri-devel@lists.freedesktop.org
21611 S:      Maintained
21612 T:      git git://anongit.freedesktop.org/drm/drm-misc
21613 F:      drivers/dma-buf/udmabuf.c
21614 F:      include/uapi/linux/udmabuf.h
21615
21616 USERSPACE I/O (UIO)
21617 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
21618 S:      Maintained
21619 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
21620 F:      Documentation/driver-api/uio-howto.rst
21621 F:      drivers/uio/
21622 F:      include/linux/uio_driver.h
21623
21624 UTIL-LINUX PACKAGE
21625 M:      Karel Zak <kzak@redhat.com>
21626 L:      util-linux@vger.kernel.org
21627 S:      Maintained
21628 W:      http://en.wikipedia.org/wiki/Util-linux
21629 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
21630
21631 UUID HELPERS
21632 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
21633 L:      linux-kernel@vger.kernel.org
21634 S:      Maintained
21635 F:      include/linux/uuid.h
21636 F:      include/uapi/linux/uuid.h
21637 F:      lib/test_uuid.c
21638 F:      lib/uuid.c
21639
21640 UV SYSFS DRIVER
21641 M:      Justin Ernst <justin.ernst@hpe.com>
21642 L:      platform-driver-x86@vger.kernel.org
21643 S:      Maintained
21644 F:      drivers/platform/x86/uv_sysfs.c
21645
21646 UVESAFB DRIVER
21647 M:      Michal Januszewski <spock@gentoo.org>
21648 L:      linux-fbdev@vger.kernel.org
21649 S:      Maintained
21650 W:      https://github.com/mjanusz/v86d
21651 F:      Documentation/fb/uvesafb.rst
21652 F:      drivers/video/fbdev/uvesafb.*
21653
21654 Ux500 CLOCK DRIVERS
21655 M:      Ulf Hansson <ulf.hansson@linaro.org>
21656 L:      linux-clk@vger.kernel.org
21657 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
21658 S:      Maintained
21659 F:      drivers/clk/ux500/
21660
21661 VF610 NAND DRIVER
21662 M:      Stefan Agner <stefan@agner.ch>
21663 L:      linux-mtd@lists.infradead.org
21664 S:      Supported
21665 F:      drivers/mtd/nand/raw/vf610_nfc.c
21666
21667 VFAT/FAT/MSDOS FILESYSTEM
21668 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
21669 S:      Maintained
21670 F:      Documentation/filesystems/vfat.rst
21671 F:      fs/fat/
21672 F:      tools/testing/selftests/filesystems/fat/
21673
21674 VFIO DRIVER
21675 M:      Alex Williamson <alex.williamson@redhat.com>
21676 R:      Cornelia Huck <cohuck@redhat.com>
21677 L:      kvm@vger.kernel.org
21678 S:      Maintained
21679 T:      git https://github.com/awilliam/linux-vfio.git
21680 F:      Documentation/ABI/testing/sysfs-devices-vfio-dev
21681 F:      Documentation/driver-api/vfio.rst
21682 F:      drivers/vfio/
21683 F:      include/linux/vfio.h
21684 F:      include/linux/vfio_pci_core.h
21685 F:      include/uapi/linux/vfio.h
21686
21687 VFIO FSL-MC DRIVER
21688 M:      Diana Craciun <diana.craciun@oss.nxp.com>
21689 L:      kvm@vger.kernel.org
21690 S:      Maintained
21691 F:      drivers/vfio/fsl-mc/
21692
21693 VFIO HISILICON PCI DRIVER
21694 M:      Longfang Liu <liulongfang@huawei.com>
21695 M:      Shameer Kolothum <shameerali.kolothum.thodi@huawei.com>
21696 L:      kvm@vger.kernel.org
21697 S:      Maintained
21698 F:      drivers/vfio/pci/hisilicon/
21699
21700 VFIO MEDIATED DEVICE DRIVERS
21701 M:      Kirti Wankhede <kwankhede@nvidia.com>
21702 L:      kvm@vger.kernel.org
21703 S:      Maintained
21704 F:      Documentation/driver-api/vfio-mediated-device.rst
21705 F:      drivers/vfio/mdev/
21706 F:      include/linux/mdev.h
21707 F:      samples/vfio-mdev/
21708
21709 VFIO PCI DEVICE SPECIFIC DRIVERS
21710 R:      Jason Gunthorpe <jgg@nvidia.com>
21711 R:      Yishai Hadas <yishaih@nvidia.com>
21712 R:      Shameer Kolothum <shameerali.kolothum.thodi@huawei.com>
21713 R:      Kevin Tian <kevin.tian@intel.com>
21714 L:      kvm@vger.kernel.org
21715 S:      Maintained
21716 P:      Documentation/driver-api/vfio-pci-device-specific-driver-acceptance.rst
21717 F:      drivers/vfio/pci/*/
21718
21719 VFIO PLATFORM DRIVER
21720 M:      Eric Auger <eric.auger@redhat.com>
21721 L:      kvm@vger.kernel.org
21722 S:      Maintained
21723 F:      drivers/vfio/platform/
21724
21725 VFIO MLX5 PCI DRIVER
21726 M:      Yishai Hadas <yishaih@nvidia.com>
21727 L:      kvm@vger.kernel.org
21728 S:      Maintained
21729 F:      drivers/vfio/pci/mlx5/
21730
21731 VGA_SWITCHEROO
21732 R:      Lukas Wunner <lukas@wunner.de>
21733 S:      Maintained
21734 T:      git git://anongit.freedesktop.org/drm/drm-misc
21735 F:      Documentation/gpu/vga-switcheroo.rst
21736 F:      drivers/gpu/vga/vga_switcheroo.c
21737 F:      include/linux/vga_switcheroo.h
21738
21739 VIA RHINE NETWORK DRIVER
21740 S:      Maintained
21741 M:      Kevin Brace <kevinbrace@bracecomputerlab.com>
21742 F:      drivers/net/ethernet/via/via-rhine.c
21743
21744 VIA SD/MMC CARD CONTROLLER DRIVER
21745 M:      Bruce Chang <brucechang@via.com.tw>
21746 M:      Harald Welte <HaraldWelte@viatech.com>
21747 S:      Maintained
21748 F:      drivers/mmc/host/via-sdmmc.c
21749
21750 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
21751 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
21752 L:      linux-fbdev@vger.kernel.org
21753 S:      Maintained
21754 F:      drivers/video/fbdev/via/
21755 F:      include/linux/via-core.h
21756 F:      include/linux/via-gpio.h
21757 F:      include/linux/via_i2c.h
21758
21759 VIA VELOCITY NETWORK DRIVER
21760 M:      Francois Romieu <romieu@fr.zoreil.com>
21761 L:      netdev@vger.kernel.org
21762 S:      Maintained
21763 F:      drivers/net/ethernet/via/via-velocity.*
21764
21765 VICODEC VIRTUAL CODEC DRIVER
21766 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
21767 L:      linux-media@vger.kernel.org
21768 S:      Maintained
21769 W:      https://linuxtv.org
21770 T:      git git://linuxtv.org/media_tree.git
21771 F:      drivers/media/test-drivers/vicodec/*
21772
21773 VIDEO I2C POLLING DRIVER
21774 M:      Matt Ranostay <matt.ranostay@konsulko.com>
21775 L:      linux-media@vger.kernel.org
21776 S:      Maintained
21777 F:      drivers/media/i2c/video-i2c.c
21778
21779 VIDEO MULTIPLEXER DRIVER
21780 M:      Philipp Zabel <p.zabel@pengutronix.de>
21781 L:      linux-media@vger.kernel.org
21782 S:      Maintained
21783 F:      drivers/media/platform/video-mux.c
21784
21785 VIDEOBUF2 FRAMEWORK
21786 M:      Tomasz Figa <tfiga@chromium.org>
21787 M:      Marek Szyprowski <m.szyprowski@samsung.com>
21788 L:      linux-media@vger.kernel.org
21789 S:      Maintained
21790 F:      drivers/media/common/videobuf2/*
21791 F:      include/media/videobuf2-*
21792
21793 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
21794 M:      Shuah Khan <skhan@linuxfoundation.org>
21795 R:      Kieran Bingham <kieran.bingham@ideasonboard.com>
21796 L:      linux-media@vger.kernel.org
21797 S:      Maintained
21798 W:      https://linuxtv.org
21799 T:      git git://linuxtv.org/media_tree.git
21800 F:      drivers/media/test-drivers/vimc/*
21801
21802 VIRT LIB
21803 M:      Alex Williamson <alex.williamson@redhat.com>
21804 M:      Paolo Bonzini <pbonzini@redhat.com>
21805 L:      kvm@vger.kernel.org
21806 S:      Supported
21807 F:      virt/lib/
21808
21809 VIRTIO AND VHOST VSOCK DRIVER
21810 M:      Stefan Hajnoczi <stefanha@redhat.com>
21811 M:      Stefano Garzarella <sgarzare@redhat.com>
21812 L:      kvm@vger.kernel.org
21813 L:      virtualization@lists.linux-foundation.org
21814 L:      netdev@vger.kernel.org
21815 S:      Maintained
21816 F:      drivers/vhost/vsock.c
21817 F:      include/linux/virtio_vsock.h
21818 F:      include/uapi/linux/virtio_vsock.h
21819 F:      net/vmw_vsock/virtio_transport.c
21820 F:      net/vmw_vsock/virtio_transport_common.c
21821
21822 VIRTIO BLOCK AND SCSI DRIVERS
21823 M:      "Michael S. Tsirkin" <mst@redhat.com>
21824 M:      Jason Wang <jasowang@redhat.com>
21825 R:      Paolo Bonzini <pbonzini@redhat.com>
21826 R:      Stefan Hajnoczi <stefanha@redhat.com>
21827 L:      virtualization@lists.linux-foundation.org
21828 S:      Maintained
21829 F:      drivers/block/virtio_blk.c
21830 F:      drivers/scsi/virtio_scsi.c
21831 F:      drivers/vhost/scsi.c
21832 F:      include/uapi/linux/virtio_blk.h
21833 F:      include/uapi/linux/virtio_scsi.h
21834
21835 VIRTIO CONSOLE DRIVER
21836 M:      Amit Shah <amit@kernel.org>
21837 L:      virtualization@lists.linux-foundation.org
21838 S:      Maintained
21839 F:      drivers/char/virtio_console.c
21840 F:      include/linux/virtio_console.h
21841 F:      include/uapi/linux/virtio_console.h
21842
21843 VIRTIO CORE AND NET DRIVERS
21844 M:      "Michael S. Tsirkin" <mst@redhat.com>
21845 M:      Jason Wang <jasowang@redhat.com>
21846 L:      virtualization@lists.linux-foundation.org
21847 S:      Maintained
21848 F:      Documentation/ABI/testing/sysfs-bus-vdpa
21849 F:      Documentation/ABI/testing/sysfs-class-vduse
21850 F:      Documentation/devicetree/bindings/virtio/
21851 F:      drivers/block/virtio_blk.c
21852 F:      drivers/crypto/virtio/
21853 F:      drivers/net/virtio_net.c
21854 F:      drivers/vdpa/
21855 F:      drivers/virtio/
21856 F:      include/linux/vdpa.h
21857 F:      include/linux/virtio*.h
21858 F:      include/uapi/linux/virtio_*.h
21859 F:      tools/virtio/
21860
21861 VISL VIRTUAL STATELESS DECODER DRIVER
21862 M:      Daniel Almeida <daniel.almeida@collabora.com>
21863 L:      linux-media@vger.kernel.org
21864 S:      Supported
21865 F:      drivers/media/test-drivers/visl
21866
21867 IFCVF VIRTIO DATA PATH ACCELERATOR
21868 R:      Zhu Lingshan <lingshan.zhu@intel.com>
21869 F:      drivers/vdpa/ifcvf/
21870
21871 VIRTIO BALLOON
21872 M:      "Michael S. Tsirkin" <mst@redhat.com>
21873 M:      David Hildenbrand <david@redhat.com>
21874 L:      virtualization@lists.linux-foundation.org
21875 S:      Maintained
21876 F:      drivers/virtio/virtio_balloon.c
21877 F:      include/uapi/linux/virtio_balloon.h
21878 F:      include/linux/balloon_compaction.h
21879 F:      mm/balloon_compaction.c
21880
21881 VIRTIO CRYPTO DRIVER
21882 M:      Gonglei <arei.gonglei@huawei.com>
21883 L:      virtualization@lists.linux-foundation.org
21884 L:      linux-crypto@vger.kernel.org
21885 S:      Maintained
21886 F:      drivers/crypto/virtio/
21887 F:      include/uapi/linux/virtio_crypto.h
21888
21889 VIRTIO DRIVERS FOR S390
21890 M:      Cornelia Huck <cohuck@redhat.com>
21891 M:      Halil Pasic <pasic@linux.ibm.com>
21892 M:      Eric Farman <farman@linux.ibm.com>
21893 L:      linux-s390@vger.kernel.org
21894 L:      virtualization@lists.linux-foundation.org
21895 L:      kvm@vger.kernel.org
21896 S:      Supported
21897 F:      arch/s390/include/uapi/asm/virtio-ccw.h
21898 F:      drivers/s390/virtio/
21899
21900 VIRTIO FILE SYSTEM
21901 M:      Vivek Goyal <vgoyal@redhat.com>
21902 M:      Stefan Hajnoczi <stefanha@redhat.com>
21903 M:      Miklos Szeredi <miklos@szeredi.hu>
21904 L:      virtualization@lists.linux-foundation.org
21905 L:      linux-fsdevel@vger.kernel.org
21906 S:      Supported
21907 W:      https://virtio-fs.gitlab.io/
21908 F:      Documentation/filesystems/virtiofs.rst
21909 F:      fs/fuse/virtio_fs.c
21910 F:      include/uapi/linux/virtio_fs.h
21911
21912 VIRTIO GPIO DRIVER
21913 M:      Enrico Weigelt, metux IT consult <info@metux.net>
21914 M:      Viresh Kumar <vireshk@kernel.org>
21915 L:      linux-gpio@vger.kernel.org
21916 L:      virtualization@lists.linux-foundation.org
21917 S:      Maintained
21918 F:      drivers/gpio/gpio-virtio.c
21919 F:      include/uapi/linux/virtio_gpio.h
21920
21921 VIRTIO GPU DRIVER
21922 M:      David Airlie <airlied@redhat.com>
21923 M:      Gerd Hoffmann <kraxel@redhat.com>
21924 R:      Gurchetan Singh <gurchetansingh@chromium.org>
21925 R:      Chia-I Wu <olvaffe@gmail.com>
21926 L:      dri-devel@lists.freedesktop.org
21927 L:      virtualization@lists.linux-foundation.org
21928 S:      Maintained
21929 T:      git git://anongit.freedesktop.org/drm/drm-misc
21930 F:      drivers/gpu/drm/virtio/
21931 F:      include/uapi/linux/virtio_gpu.h
21932
21933 VIRTIO HOST (VHOST)
21934 M:      "Michael S. Tsirkin" <mst@redhat.com>
21935 M:      Jason Wang <jasowang@redhat.com>
21936 L:      kvm@vger.kernel.org
21937 L:      virtualization@lists.linux-foundation.org
21938 L:      netdev@vger.kernel.org
21939 S:      Maintained
21940 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
21941 F:      drivers/vhost/
21942 F:      include/linux/vhost_iotlb.h
21943 F:      include/uapi/linux/vhost.h
21944
21945 VIRTIO INPUT DRIVER
21946 M:      Gerd Hoffmann <kraxel@redhat.com>
21947 S:      Maintained
21948 F:      drivers/virtio/virtio_input.c
21949 F:      include/uapi/linux/virtio_input.h
21950
21951 VIRTIO IOMMU DRIVER
21952 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
21953 L:      virtualization@lists.linux-foundation.org
21954 S:      Maintained
21955 F:      drivers/iommu/virtio-iommu.c
21956 F:      include/uapi/linux/virtio_iommu.h
21957
21958 VIRTIO MEM DRIVER
21959 M:      David Hildenbrand <david@redhat.com>
21960 L:      virtualization@lists.linux-foundation.org
21961 S:      Maintained
21962 W:      https://virtio-mem.gitlab.io/
21963 F:      drivers/virtio/virtio_mem.c
21964 F:      include/uapi/linux/virtio_mem.h
21965
21966 VIRTIO SOUND DRIVER
21967 M:      Anton Yakovlev <anton.yakovlev@opensynergy.com>
21968 M:      "Michael S. Tsirkin" <mst@redhat.com>
21969 L:      virtualization@lists.linux-foundation.org
21970 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
21971 S:      Maintained
21972 F:      include/uapi/linux/virtio_snd.h
21973 F:      sound/virtio/*
21974
21975 VIRTIO I2C DRIVER
21976 M:      Conghui Chen <conghui.chen@intel.com>
21977 M:      Viresh Kumar <viresh.kumar@linaro.org>
21978 L:      linux-i2c@vger.kernel.org
21979 L:      virtualization@lists.linux-foundation.org
21980 S:      Maintained
21981 F:      drivers/i2c/busses/i2c-virtio.c
21982 F:      include/uapi/linux/virtio_i2c.h
21983
21984 VIRTIO PMEM DRIVER
21985 M:      Pankaj Gupta <pankaj.gupta.linux@gmail.com>
21986 L:      virtualization@lists.linux-foundation.org
21987 S:      Maintained
21988 F:      drivers/nvdimm/virtio_pmem.c
21989 F:      drivers/nvdimm/nd_virtio.c
21990
21991 VIRTUAL BOX GUEST DEVICE DRIVER
21992 M:      Hans de Goede <hdegoede@redhat.com>
21993 M:      Arnd Bergmann <arnd@arndb.de>
21994 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
21995 S:      Maintained
21996 F:      drivers/virt/vboxguest/
21997 F:      include/linux/vbox_utils.h
21998 F:      include/uapi/linux/vbox*.h
21999
22000 VIRTUAL BOX SHARED FOLDER VFS DRIVER
22001 M:      Hans de Goede <hdegoede@redhat.com>
22002 L:      linux-fsdevel@vger.kernel.org
22003 S:      Maintained
22004 F:      fs/vboxsf/*
22005
22006 VIRTUAL SERIO DEVICE DRIVER
22007 M:      Stephen Chandler Paul <thatslyude@gmail.com>
22008 S:      Maintained
22009 F:      drivers/input/serio/userio.c
22010 F:      include/uapi/linux/userio.h
22011
22012 VIVID VIRTUAL VIDEO DRIVER
22013 M:      Hans Verkuil <hverkuil@xs4all.nl>
22014 L:      linux-media@vger.kernel.org
22015 S:      Maintained
22016 W:      https://linuxtv.org
22017 T:      git git://linuxtv.org/media_tree.git
22018 F:      drivers/media/test-drivers/vivid/*
22019
22020 VIDTV VIRTUAL DIGITAL TV DRIVER
22021 M:      Daniel W. S. Almeida <dwlsalmeida@gmail.com>
22022 L:      linux-media@vger.kernel.org
22023 S:      Maintained
22024 W:      https://linuxtv.org
22025 T:      git git://linuxtv.org/media_tree.git
22026 F:      drivers/media/test-drivers/vidtv/*
22027
22028 VLYNQ BUS
22029 M:      Florian Fainelli <f.fainelli@gmail.com>
22030 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
22031 S:      Maintained
22032 F:      drivers/vlynq/vlynq.c
22033 F:      include/linux/vlynq.h
22034
22035 VME SUBSYSTEM
22036 M:      Martyn Welch <martyn@welchs.me.uk>
22037 M:      Manohar Vanga <manohar.vanga@gmail.com>
22038 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
22039 L:      linux-kernel@vger.kernel.org
22040 S:      Odd fixes
22041 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
22042 F:      Documentation/driver-api/vme.rst
22043 F:      drivers/staging/vme_user/
22044
22045 VM SOCKETS (AF_VSOCK)
22046 M:      Stefano Garzarella <sgarzare@redhat.com>
22047 L:      virtualization@lists.linux-foundation.org
22048 L:      netdev@vger.kernel.org
22049 S:      Maintained
22050 F:      drivers/net/vsockmon.c
22051 F:      include/net/af_vsock.h
22052 F:      include/uapi/linux/vm_sockets.h
22053 F:      include/uapi/linux/vm_sockets_diag.h
22054 F:      include/uapi/linux/vsockmon.h
22055 F:      net/vmw_vsock/
22056 F:      tools/testing/vsock/
22057
22058 VMWARE BALLOON DRIVER
22059 M:      Nadav Amit <namit@vmware.com>
22060 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22061 L:      linux-kernel@vger.kernel.org
22062 S:      Supported
22063 F:      drivers/misc/vmw_balloon.c
22064
22065 VMWARE HYPERVISOR INTERFACE
22066 M:      Srivatsa S. Bhat (VMware) <srivatsa@csail.mit.edu>
22067 M:      Alexey Makhalov <amakhalov@vmware.com>
22068 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22069 L:      virtualization@lists.linux-foundation.org
22070 L:      x86@kernel.org
22071 S:      Supported
22072 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vmware
22073 F:      arch/x86/include/asm/vmware.h
22074 F:      arch/x86/kernel/cpu/vmware.c
22075
22076 VMWARE PVRDMA DRIVER
22077 M:      Bryan Tan <bryantan@vmware.com>
22078 M:      Vishnu Dasa <vdasa@vmware.com>
22079 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22080 L:      linux-rdma@vger.kernel.org
22081 S:      Supported
22082 F:      drivers/infiniband/hw/vmw_pvrdma/
22083
22084 VMWARE PVSCSI DRIVER
22085 M:      Vishal Bhakta <vbhakta@vmware.com>
22086 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22087 L:      linux-scsi@vger.kernel.org
22088 S:      Supported
22089 F:      drivers/scsi/vmw_pvscsi.c
22090 F:      drivers/scsi/vmw_pvscsi.h
22091
22092 VMWARE VIRTUAL PTP CLOCK DRIVER
22093 M:      Srivatsa S. Bhat (VMware) <srivatsa@csail.mit.edu>
22094 M:      Deep Shah <sdeep@vmware.com>
22095 R:      Alexey Makhalov <amakhalov@vmware.com>
22096 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22097 L:      netdev@vger.kernel.org
22098 S:      Supported
22099 F:      drivers/ptp/ptp_vmw.c
22100
22101 VMWARE VMCI DRIVER
22102 M:      Bryan Tan <bryantan@vmware.com>
22103 M:      Vishnu Dasa <vdasa@vmware.com>
22104 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22105 L:      linux-kernel@vger.kernel.org
22106 S:      Supported
22107 F:      drivers/misc/vmw_vmci/
22108 F:      include/linux/vmw_vmci*
22109
22110 VMWARE VMMOUSE SUBDRIVER
22111 M:      Zack Rusin <zackr@vmware.com>
22112 R:      VMware Graphics Reviewers <linux-graphics-maintainer@vmware.com>
22113 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22114 L:      linux-input@vger.kernel.org
22115 S:      Supported
22116 F:      drivers/input/mouse/vmmouse.c
22117 F:      drivers/input/mouse/vmmouse.h
22118
22119 VMWARE VMXNET3 ETHERNET DRIVER
22120 M:      Ronak Doshi <doshir@vmware.com>
22121 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22122 L:      netdev@vger.kernel.org
22123 S:      Supported
22124 F:      drivers/net/vmxnet3/
22125
22126 VMWARE VSOCK VMCI TRANSPORT DRIVER
22127 M:      Bryan Tan <bryantan@vmware.com>
22128 M:      Vishnu Dasa <vdasa@vmware.com>
22129 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22130 L:      linux-kernel@vger.kernel.org
22131 S:      Supported
22132 F:      net/vmw_vsock/vmci_transport*
22133
22134 VOCORE VOCORE2 BOARD
22135 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
22136 L:      linux-mips@vger.kernel.org
22137 S:      Maintained
22138 F:      arch/mips/boot/dts/ralink/vocore2.dts
22139
22140 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
22141 M:      Liam Girdwood <lgirdwood@gmail.com>
22142 M:      Mark Brown <broonie@kernel.org>
22143 L:      linux-kernel@vger.kernel.org
22144 S:      Supported
22145 W:      http://www.slimlogic.co.uk/?p=48
22146 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
22147 F:      Documentation/devicetree/bindings/regulator/
22148 F:      Documentation/power/regulator/
22149 F:      drivers/regulator/
22150 F:      include/dt-bindings/regulator/
22151 F:      include/linux/regulator/
22152 K:      regulator_get_optional
22153
22154 VOLTAGE AND CURRENT REGULATOR IRQ HELPERS
22155 R:      Matti Vaittinen <mazziesaccount@gmail.com>
22156 F:      drivers/regulator/irq_helpers.c
22157
22158 VRF
22159 M:      David Ahern <dsahern@kernel.org>
22160 L:      netdev@vger.kernel.org
22161 S:      Maintained
22162 F:      Documentation/networking/vrf.rst
22163 F:      drivers/net/vrf.c
22164
22165 VSPRINTF
22166 M:      Petr Mladek <pmladek@suse.com>
22167 M:      Steven Rostedt <rostedt@goodmis.org>
22168 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
22169 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
22170 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
22171 S:      Maintained
22172 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux.git
22173 F:      Documentation/core-api/printk-formats.rst
22174 F:      lib/test_printf.c
22175 F:      lib/test_scanf.c
22176 F:      lib/vsprintf.c
22177
22178 VT1211 HARDWARE MONITOR DRIVER
22179 M:      Juerg Haefliger <juergh@proton.me>
22180 L:      linux-hwmon@vger.kernel.org
22181 S:      Maintained
22182 F:      Documentation/hwmon/vt1211.rst
22183 F:      drivers/hwmon/vt1211.c
22184
22185 VT8231 HARDWARE MONITOR DRIVER
22186 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
22187 L:      linux-hwmon@vger.kernel.org
22188 S:      Maintained
22189 F:      drivers/hwmon/vt8231.c
22190
22191 VUB300 USB to SDIO/SD/MMC bridge chip
22192 L:      linux-mmc@vger.kernel.org
22193 S:      Orphan
22194 F:      drivers/mmc/host/vub300.c
22195
22196 W1 DALLAS'S 1-WIRE BUS
22197 M:      Evgeniy Polyakov <zbr@ioremap.net>
22198 S:      Maintained
22199 F:      Documentation/devicetree/bindings/w1/
22200 F:      Documentation/w1/
22201 F:      drivers/w1/
22202 F:      include/linux/w1.h
22203
22204 W83791D HARDWARE MONITORING DRIVER
22205 M:      Marc Hulsman <m.hulsman@tudelft.nl>
22206 L:      linux-hwmon@vger.kernel.org
22207 S:      Maintained
22208 F:      Documentation/hwmon/w83791d.rst
22209 F:      drivers/hwmon/w83791d.c
22210
22211 W83793 HARDWARE MONITORING DRIVER
22212 M:      Rudolf Marek <r.marek@assembler.cz>
22213 L:      linux-hwmon@vger.kernel.org
22214 S:      Maintained
22215 F:      Documentation/hwmon/w83793.rst
22216 F:      drivers/hwmon/w83793.c
22217
22218 W83795 HARDWARE MONITORING DRIVER
22219 M:      Jean Delvare <jdelvare@suse.com>
22220 L:      linux-hwmon@vger.kernel.org
22221 S:      Maintained
22222 F:      drivers/hwmon/w83795.c
22223
22224 W83L51xD SD/MMC CARD INTERFACE DRIVER
22225 M:      Pierre Ossman <pierre@ossman.eu>
22226 S:      Maintained
22227 F:      drivers/mmc/host/wbsd.*
22228
22229 WACOM PROTOCOL 4 SERIAL TABLETS
22230 M:      Julian Squires <julian@cipht.net>
22231 M:      Hans de Goede <hdegoede@redhat.com>
22232 L:      linux-input@vger.kernel.org
22233 S:      Maintained
22234 F:      drivers/input/tablet/wacom_serial4.c
22235
22236 WANGXUN ETHERNET DRIVER
22237 M:      Jiawen Wu <jiawenwu@trustnetic.com>
22238 M:      Mengyuan Lou <mengyuanlou@net-swift.com>
22239 W:      https://www.net-swift.com
22240 L:      netdev@vger.kernel.org
22241 S:      Maintained
22242 F:      Documentation/networking/device_drivers/ethernet/wangxun/*
22243 F:      drivers/net/ethernet/wangxun/
22244
22245 WATCHDOG DEVICE DRIVERS
22246 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
22247 M:      Guenter Roeck <linux@roeck-us.net>
22248 L:      linux-watchdog@vger.kernel.org
22249 S:      Maintained
22250 W:      http://www.linux-watchdog.org/
22251 T:      git git://www.linux-watchdog.org/linux-watchdog.git
22252 F:      Documentation/devicetree/bindings/watchdog/
22253 F:      Documentation/watchdog/
22254 F:      drivers/watchdog/
22255 F:      include/linux/watchdog.h
22256 F:      include/uapi/linux/watchdog.h
22257 F:      include/trace/events/watchdog.h
22258
22259 WHISKEYCOVE PMIC GPIO DRIVER
22260 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
22261 L:      linux-gpio@vger.kernel.org
22262 S:      Maintained
22263 F:      drivers/gpio/gpio-wcove.c
22264
22265 WHWAVE RTC DRIVER
22266 M:      Dianlong Li <long17.cool@163.com>
22267 L:      linux-rtc@vger.kernel.org
22268 S:      Maintained
22269 F:      drivers/rtc/rtc-sd3078.c
22270
22271 WIIMOTE HID DRIVER
22272 M:      David Rheinsberg <david.rheinsberg@gmail.com>
22273 L:      linux-input@vger.kernel.org
22274 S:      Maintained
22275 F:      drivers/hid/hid-wiimote*
22276
22277 WILOCITY WIL6210 WIRELESS DRIVER
22278 L:      linux-wireless@vger.kernel.org
22279 S:      Orphan
22280 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
22281 F:      drivers/net/wireless/ath/wil6210/
22282
22283 WINBOND CIR DRIVER
22284 M:      David Härdeman <david@hardeman.nu>
22285 S:      Maintained
22286 F:      drivers/media/rc/winbond-cir.c
22287
22288 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
22289 M:      William Breathitt Gray <william.gray@linaro.org>
22290 L:      linux-watchdog@vger.kernel.org
22291 S:      Maintained
22292 F:      drivers/watchdog/ebc-c384_wdt.c
22293
22294 WINSYSTEMS WS16C48 GPIO DRIVER
22295 M:      William Breathitt Gray <william.gray@linaro.org>
22296 L:      linux-gpio@vger.kernel.org
22297 S:      Maintained
22298 F:      drivers/gpio/gpio-ws16c48.c
22299
22300 WIREGUARD SECURE NETWORK TUNNEL
22301 M:      Jason A. Donenfeld <Jason@zx2c4.com>
22302 L:      wireguard@lists.zx2c4.com
22303 L:      netdev@vger.kernel.org
22304 S:      Maintained
22305 F:      drivers/net/wireguard/
22306 F:      tools/testing/selftests/wireguard/
22307
22308 WISTRON LAPTOP BUTTON DRIVER
22309 M:      Miloslav Trmac <mitr@volny.cz>
22310 S:      Maintained
22311 F:      drivers/input/misc/wistron_btns.c
22312
22313 WL3501 WIRELESS PCMCIA CARD DRIVER
22314 L:      linux-wireless@vger.kernel.org
22315 S:      Odd fixes
22316 F:      drivers/net/wireless/wl3501*
22317
22318 WOLFSON MICROELECTRONICS DRIVERS
22319 L:      patches@opensource.cirrus.com
22320 S:      Supported
22321 W:      https://github.com/CirrusLogic/linux-drivers/wiki
22322 T:      git https://github.com/CirrusLogic/linux-drivers.git
22323 F:      Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
22324 F:      Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
22325 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
22326 F:      Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
22327 F:      Documentation/devicetree/bindings/sound/wlf,*.yaml
22328 F:      Documentation/devicetree/bindings/sound/wm*
22329 F:      Documentation/hwmon/wm83??.rst
22330 F:      arch/arm/mach-s3c/mach-crag6410*
22331 F:      drivers/clk/clk-wm83*.c
22332 F:      drivers/gpio/gpio-*wm*.c
22333 F:      drivers/gpio/gpio-arizona.c
22334 F:      drivers/hwmon/wm83??-hwmon.c
22335 F:      drivers/input/misc/wm831x-on.c
22336 F:      drivers/input/touchscreen/wm831x-ts.c
22337 F:      drivers/input/touchscreen/wm97*.c
22338 F:      drivers/leds/leds-wm83*.c
22339 F:      drivers/mfd/arizona*
22340 F:      drivers/mfd/cs47l24*
22341 F:      drivers/mfd/wm*.c
22342 F:      drivers/power/supply/wm83*.c
22343 F:      drivers/regulator/arizona*
22344 F:      drivers/regulator/wm8*.c
22345 F:      drivers/rtc/rtc-wm83*.c
22346 F:      drivers/video/backlight/wm83*_bl.c
22347 F:      drivers/watchdog/wm83*_wdt.c
22348 F:      include/linux/mfd/arizona/
22349 F:      include/linux/mfd/wm831x/
22350 F:      include/linux/mfd/wm8350/
22351 F:      include/linux/mfd/wm8400*
22352 F:      include/linux/regulator/arizona*
22353 F:      include/linux/wm97xx.h
22354 F:      include/sound/wm????.h
22355 F:      sound/soc/codecs/arizona*
22356 F:      sound/soc/codecs/cs47l24*
22357 F:      sound/soc/codecs/wm*
22358
22359 WORKQUEUE
22360 M:      Tejun Heo <tj@kernel.org>
22361 R:      Lai Jiangshan <jiangshanlai@gmail.com>
22362 S:      Maintained
22363 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
22364 F:      Documentation/core-api/workqueue.rst
22365 F:      include/linux/workqueue.h
22366 F:      kernel/workqueue.c
22367
22368 WWAN DRIVERS
22369 M:      Loic Poulain <loic.poulain@linaro.org>
22370 M:      Sergey Ryazanov <ryazanov.s.a@gmail.com>
22371 R:      Johannes Berg <johannes@sipsolutions.net>
22372 L:      netdev@vger.kernel.org
22373 S:      Maintained
22374 F:      drivers/net/wwan/
22375 F:      include/linux/wwan.h
22376 F:      include/uapi/linux/wwan.h
22377
22378 X-POWERS AXP288 PMIC DRIVERS
22379 M:      Hans de Goede <hdegoede@redhat.com>
22380 S:      Maintained
22381 F:      drivers/acpi/pmic/intel_pmic_xpower.c
22382 N:      axp288
22383
22384 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
22385 M:      Chen-Yu Tsai <wens@csie.org>
22386 L:      linux-kernel@vger.kernel.org
22387 S:      Maintained
22388 N:      axp[128]
22389
22390 X.25 STACK
22391 M:      Martin Schiller <ms@dev.tdt.de>
22392 L:      linux-x25@vger.kernel.org
22393 S:      Maintained
22394 F:      Documentation/networking/lapb-module.rst
22395 F:      Documentation/networking/x25*
22396 F:      drivers/net/wan/hdlc_x25.c
22397 F:      drivers/net/wan/lapbether.c
22398 F:      include/*/lapb.h
22399 F:      include/net/x25*
22400 F:      include/uapi/linux/x25.h
22401 F:      net/lapb/
22402 F:      net/x25/
22403
22404 X86 ARCHITECTURE (32-BIT AND 64-BIT)
22405 M:      Thomas Gleixner <tglx@linutronix.de>
22406 M:      Ingo Molnar <mingo@redhat.com>
22407 M:      Borislav Petkov <bp@alien8.de>
22408 M:      Dave Hansen <dave.hansen@linux.intel.com>
22409 M:      x86@kernel.org
22410 R:      "H. Peter Anvin" <hpa@zytor.com>
22411 L:      linux-kernel@vger.kernel.org
22412 S:      Maintained
22413 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
22414 F:      Documentation/devicetree/bindings/x86/
22415 F:      Documentation/x86/
22416 F:      arch/x86/
22417
22418 X86 ENTRY CODE
22419 M:      Andy Lutomirski <luto@kernel.org>
22420 L:      linux-kernel@vger.kernel.org
22421 S:      Maintained
22422 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
22423 F:      arch/x86/entry/
22424
22425 X86 MCE INFRASTRUCTURE
22426 M:      Tony Luck <tony.luck@intel.com>
22427 M:      Borislav Petkov <bp@alien8.de>
22428 L:      linux-edac@vger.kernel.org
22429 S:      Maintained
22430 F:      Documentation/ABI/testing/sysfs-mce
22431 F:      Documentation/x86/x86_64/machinecheck.rst
22432 F:      arch/x86/kernel/cpu/mce/*
22433
22434 X86 MICROCODE UPDATE SUPPORT
22435 M:      Borislav Petkov <bp@alien8.de>
22436 S:      Maintained
22437 F:      arch/x86/kernel/cpu/microcode/*
22438
22439 X86 MM
22440 M:      Dave Hansen <dave.hansen@linux.intel.com>
22441 M:      Andy Lutomirski <luto@kernel.org>
22442 M:      Peter Zijlstra <peterz@infradead.org>
22443 L:      linux-kernel@vger.kernel.org
22444 S:      Maintained
22445 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
22446 F:      arch/x86/mm/
22447
22448 X86 PLATFORM ANDROID TABLETS DSDT FIXUP DRIVER
22449 M:      Hans de Goede <hdegoede@redhat.com>
22450 L:      platform-driver-x86@vger.kernel.org
22451 S:      Maintained
22452 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
22453 F:      drivers/platform/x86/x86-android-tablets.c
22454
22455 X86 PLATFORM DRIVERS
22456 M:      Hans de Goede <hdegoede@redhat.com>
22457 M:      Mark Gross <markgross@kernel.org>
22458 L:      platform-driver-x86@vger.kernel.org
22459 S:      Maintained
22460 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
22461 F:      drivers/platform/olpc/
22462 F:      drivers/platform/x86/
22463
22464 X86 PLATFORM DRIVERS - ARCH
22465 R:      Darren Hart <dvhart@infradead.org>
22466 R:      Andy Shevchenko <andy@infradead.org>
22467 L:      platform-driver-x86@vger.kernel.org
22468 L:      x86@kernel.org
22469 S:      Maintained
22470 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
22471 F:      arch/x86/platform
22472
22473 X86 PLATFORM UV HPE SUPERDOME FLEX
22474 M:      Steve Wahl <steve.wahl@hpe.com>
22475 R:      Mike Travis <mike.travis@hpe.com>
22476 R:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
22477 R:      Russ Anderson <russ.anderson@hpe.com>
22478 S:      Supported
22479 F:      arch/x86/include/asm/uv/
22480 F:      arch/x86/kernel/apic/x2apic_uv_x.c
22481 F:      arch/x86/platform/uv/
22482
22483 X86 STACK UNWINDING
22484 M:      Josh Poimboeuf <jpoimboe@kernel.org>
22485 M:      Peter Zijlstra <peterz@infradead.org>
22486 S:      Supported
22487 F:      arch/x86/include/asm/unwind*.h
22488 F:      arch/x86/kernel/dumpstack.c
22489 F:      arch/x86/kernel/stacktrace.c
22490 F:      arch/x86/kernel/unwind_*.c
22491
22492 X86 VDSO
22493 M:      Andy Lutomirski <luto@kernel.org>
22494 L:      linux-kernel@vger.kernel.org
22495 S:      Maintained
22496 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
22497 F:      arch/x86/entry/vdso/
22498
22499 XARRAY
22500 M:      Matthew Wilcox <willy@infradead.org>
22501 L:      linux-fsdevel@vger.kernel.org
22502 S:      Supported
22503 F:      Documentation/core-api/xarray.rst
22504 F:      include/linux/idr.h
22505 F:      include/linux/xarray.h
22506 F:      lib/idr.c
22507 F:      lib/xarray.c
22508 F:      tools/testing/radix-tree
22509
22510 XBOX DVD IR REMOTE
22511 M:      Benjamin Valentin <benpicco@googlemail.com>
22512 S:      Maintained
22513 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
22514 F:      drivers/media/rc/xbox_remote.c
22515
22516 XC2028/3028 TUNER DRIVER
22517 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
22518 L:      linux-media@vger.kernel.org
22519 S:      Maintained
22520 W:      https://linuxtv.org
22521 T:      git git://linuxtv.org/media_tree.git
22522 F:      drivers/media/tuners/xc2028.*
22523
22524 XDP (eXpress Data Path)
22525 M:      Alexei Starovoitov <ast@kernel.org>
22526 M:      Daniel Borkmann <daniel@iogearbox.net>
22527 M:      David S. Miller <davem@davemloft.net>
22528 M:      Jakub Kicinski <kuba@kernel.org>
22529 M:      Jesper Dangaard Brouer <hawk@kernel.org>
22530 M:      John Fastabend <john.fastabend@gmail.com>
22531 L:      netdev@vger.kernel.org
22532 L:      bpf@vger.kernel.org
22533 S:      Supported
22534 F:      include/net/xdp.h
22535 F:      include/net/xdp_priv.h
22536 F:      include/trace/events/xdp.h
22537 F:      kernel/bpf/cpumap.c
22538 F:      kernel/bpf/devmap.c
22539 F:      net/core/xdp.c
22540 F:      samples/bpf/xdp*
22541 F:      tools/testing/selftests/bpf/*xdp*
22542 F:      tools/testing/selftests/bpf/*/*xdp*
22543 F:      drivers/net/ethernet/*/*/*/*/*xdp*
22544 F:      drivers/net/ethernet/*/*/*xdp*
22545 K:      (?:\b|_)xdp(?:\b|_)
22546
22547 XDP SOCKETS (AF_XDP)
22548 M:      Björn Töpel <bjorn@kernel.org>
22549 M:      Magnus Karlsson <magnus.karlsson@intel.com>
22550 M:      Maciej Fijalkowski <maciej.fijalkowski@intel.com>
22551 R:      Jonathan Lemon <jonathan.lemon@gmail.com>
22552 L:      netdev@vger.kernel.org
22553 L:      bpf@vger.kernel.org
22554 S:      Maintained
22555 F:      Documentation/networking/af_xdp.rst
22556 F:      include/net/xdp_sock*
22557 F:      include/net/xsk_buff_pool.h
22558 F:      include/uapi/linux/if_xdp.h
22559 F:      include/uapi/linux/xdp_diag.h
22560 F:      include/net/netns/xdp.h
22561 F:      net/xdp/
22562 F:      tools/testing/selftests/bpf/*xsk*
22563
22564 XEN BLOCK SUBSYSTEM
22565 M:      Roger Pau Monné <roger.pau@citrix.com>
22566 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22567 S:      Supported
22568 F:      drivers/block/xen*
22569 F:      drivers/block/xen-blkback/*
22570
22571 XEN HYPERVISOR ARM
22572 M:      Stefano Stabellini <sstabellini@kernel.org>
22573 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22574 S:      Maintained
22575 F:      arch/arm/include/asm/xen/
22576 F:      arch/arm/xen/
22577
22578 XEN HYPERVISOR ARM64
22579 M:      Stefano Stabellini <sstabellini@kernel.org>
22580 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22581 S:      Maintained
22582 F:      arch/arm64/include/asm/xen/
22583 F:      arch/arm64/xen/
22584
22585 XEN HYPERVISOR INTERFACE
22586 M:      Juergen Gross <jgross@suse.com>
22587 M:      Stefano Stabellini <sstabellini@kernel.org>
22588 R:      Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>
22589 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22590 S:      Supported
22591 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
22592 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
22593 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
22594 F:      drivers/*/xen-*front.c
22595 F:      drivers/xen/
22596 F:      include/uapi/xen/
22597 F:      include/xen/
22598 F:      kernel/configs/xen.config
22599
22600 XEN HYPERVISOR X86
22601 M:      Juergen Gross <jgross@suse.com>
22602 R:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
22603 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22604 S:      Supported
22605 F:      arch/x86/configs/xen.config
22606 F:      arch/x86/include/asm/pvclock-abi.h
22607 F:      arch/x86/include/asm/xen/
22608 F:      arch/x86/platform/pvh/
22609 F:      arch/x86/xen/
22610
22611 XEN NETWORK BACKEND DRIVER
22612 M:      Wei Liu <wei.liu@kernel.org>
22613 M:      Paul Durrant <paul@xen.org>
22614 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22615 L:      netdev@vger.kernel.org
22616 S:      Supported
22617 F:      drivers/net/xen-netback/*
22618
22619 XEN PCI SUBSYSTEM
22620 M:      Juergen Gross <jgross@suse.com>
22621 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22622 S:      Supported
22623 F:      arch/x86/pci/*xen*
22624 F:      drivers/pci/*xen*
22625
22626 XEN PVSCSI DRIVERS
22627 M:      Juergen Gross <jgross@suse.com>
22628 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22629 L:      linux-scsi@vger.kernel.org
22630 S:      Supported
22631 F:      drivers/scsi/xen-scsifront.c
22632 F:      drivers/xen/xen-scsiback.c
22633 F:      include/xen/interface/io/vscsiif.h
22634
22635 XEN PVUSB DRIVER
22636 M:      Juergen Gross <jgross@suse.com>
22637 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22638 L:      linux-usb@vger.kernel.org
22639 S:      Supported
22640 F:      drivers/usb/host/xen*
22641 F:      include/xen/interface/io/usbif.h
22642
22643 XEN SOUND FRONTEND DRIVER
22644 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
22645 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22646 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
22647 S:      Supported
22648 F:      sound/xen/*
22649
22650 XEN SWIOTLB SUBSYSTEM
22651 M:      Juergen Gross <jgross@suse.com>
22652 M:      Stefano Stabellini <sstabellini@kernel.org>
22653 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22654 L:      iommu@lists.linux.dev
22655 S:      Supported
22656 F:      arch/*/include/asm/xen/swiotlb-xen.h
22657 F:      drivers/xen/swiotlb-xen.c
22658 F:      include/xen/arm/swiotlb-xen.h
22659 F:      include/xen/swiotlb-xen.h
22660
22661 XFS FILESYSTEM
22662 C:      irc://irc.oftc.net/xfs
22663 M:      Darrick J. Wong <djwong@kernel.org>
22664 L:      linux-xfs@vger.kernel.org
22665 S:      Supported
22666 W:      http://xfs.org/
22667 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
22668 F:      Documentation/ABI/testing/sysfs-fs-xfs
22669 F:      Documentation/admin-guide/xfs.rst
22670 F:      Documentation/filesystems/xfs-delayed-logging-design.rst
22671 F:      Documentation/filesystems/xfs-self-describing-metadata.rst
22672 F:      fs/xfs/
22673 F:      include/uapi/linux/dqblk_xfs.h
22674 F:      include/uapi/linux/fsmap.h
22675
22676 XILINX AMS DRIVER
22677 M:      Anand Ashok Dumbre <anand.ashok.dumbre@xilinx.com>
22678 L:      linux-iio@vger.kernel.org
22679 S:      Maintained
22680 F:      Documentation/devicetree/bindings/iio/adc/xlnx,zynqmp-ams.yaml
22681 F:      drivers/iio/adc/xilinx-ams.c
22682
22683 XILINX AXI ETHERNET DRIVER
22684 M:      Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
22685 S:      Maintained
22686 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
22687
22688 XILINX CAN DRIVER
22689 M:      Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
22690 R:      Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
22691 L:      linux-can@vger.kernel.org
22692 S:      Maintained
22693 F:      Documentation/devicetree/bindings/net/can/xilinx,can.yaml
22694 F:      drivers/net/can/xilinx_can.c
22695
22696 XILINX GPIO DRIVER
22697 M:      Shubhrajyoti Datta <shubhrajyoti.datta@xilinx.com>
22698 R:      Srinivas Neeli <srinivas.neeli@xilinx.com>
22699 R:      Michal Simek <michal.simek@xilinx.com>
22700 S:      Maintained
22701 F:      Documentation/devicetree/bindings/gpio/xlnx,gpio-xilinx.yaml
22702 F:      Documentation/devicetree/bindings/gpio/gpio-zynq.yaml
22703 F:      drivers/gpio/gpio-xilinx.c
22704 F:      drivers/gpio/gpio-zynq.c
22705
22706 XILINX SD-FEC IP CORES
22707 M:      Derek Kiernan <derek.kiernan@xilinx.com>
22708 M:      Dragan Cvetic <dragan.cvetic@xilinx.com>
22709 S:      Maintained
22710 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
22711 F:      Documentation/misc-devices/xilinx_sdfec.rst
22712 F:      drivers/misc/Kconfig
22713 F:      drivers/misc/Makefile
22714 F:      drivers/misc/xilinx_sdfec.c
22715 F:      include/uapi/misc/xilinx_sdfec.h
22716
22717 XILINX PWM DRIVER
22718 M:      Sean Anderson <sean.anderson@seco.com>
22719 S:      Maintained
22720 F:      drivers/pwm/pwm-xilinx.c
22721 F:      include/clocksource/timer-xilinx.h
22722
22723 XILINX UARTLITE SERIAL DRIVER
22724 M:      Peter Korsgaard <jacmet@sunsite.dk>
22725 L:      linux-serial@vger.kernel.org
22726 S:      Maintained
22727 F:      drivers/tty/serial/uartlite.c
22728
22729 XILINX VIDEO IP CORES
22730 M:      Hyun Kwon <hyun.kwon@xilinx.com>
22731 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
22732 L:      linux-media@vger.kernel.org
22733 S:      Supported
22734 T:      git git://linuxtv.org/media_tree.git
22735 F:      Documentation/devicetree/bindings/media/xilinx/
22736 F:      drivers/media/platform/xilinx/
22737 F:      include/uapi/linux/xilinx-v4l2-controls.h
22738
22739 XILINX ZYNQMP DPDMA DRIVER
22740 M:      Hyun Kwon <hyun.kwon@xilinx.com>
22741 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
22742 L:      dmaengine@vger.kernel.org
22743 S:      Supported
22744 F:      Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dpdma.yaml
22745 F:      drivers/dma/xilinx/xilinx_dpdma.c
22746 F:      include/dt-bindings/dma/xlnx-zynqmp-dpdma.h
22747
22748 XILINX ZYNQMP OCM EDAC DRIVER
22749 M:      Shubhrajyoti Datta <shubhrajyoti.datta@amd.com>
22750 M:      Sai Krishna Potthuri <sai.krishna.potthuri@amd.com>
22751 S:      Maintained
22752 F:      Documentation/devicetree/bindings/memory-controllers/xlnx,zynqmp-ocmc-1.0.yaml
22753 F:      drivers/edac/zynqmp_edac.c
22754
22755 XILINX ZYNQMP PSGTR PHY DRIVER
22756 M:      Anurag Kumar Vulisha <anurag.kumar.vulisha@xilinx.com>
22757 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
22758 L:      linux-kernel@vger.kernel.org
22759 S:      Supported
22760 T:      git https://github.com/Xilinx/linux-xlnx.git
22761 F:      Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml
22762 F:      drivers/phy/xilinx/phy-zynqmp.c
22763
22764 XILINX ZYNQMP SHA3 DRIVER
22765 M:      Harsha <harsha.harsha@xilinx.com>
22766 S:      Maintained
22767 F:      drivers/crypto/xilinx/zynqmp-sha.c
22768
22769 XILINX EVENT MANAGEMENT DRIVER
22770 M:      Abhyuday Godhasara <abhyuday.godhasara@xilinx.com>
22771 S:      Maintained
22772 F:      drivers/soc/xilinx/xlnx_event_manager.c
22773 F:      include/linux/firmware/xlnx-event-manager.h
22774
22775 XILLYBUS DRIVER
22776 M:      Eli Billauer <eli.billauer@gmail.com>
22777 L:      linux-kernel@vger.kernel.org
22778 S:      Supported
22779 F:      drivers/char/xillybus/
22780
22781 XLP9XX I2C DRIVER
22782 M:      George Cherian <gcherian@marvell.com>
22783 L:      linux-i2c@vger.kernel.org
22784 S:      Supported
22785 W:      http://www.marvell.com
22786 F:      drivers/i2c/busses/i2c-xlp9xx.c
22787
22788 XRA1403 GPIO EXPANDER
22789 M:      Nandor Han <nandor.han@ge.com>
22790 M:      Semi Malinen <semi.malinen@ge.com>
22791 L:      linux-gpio@vger.kernel.org
22792 S:      Maintained
22793 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
22794 F:      drivers/gpio/gpio-xra1403.c
22795
22796 XTENSA XTFPGA PLATFORM SUPPORT
22797 M:      Max Filippov <jcmvbkbc@gmail.com>
22798 L:      linux-xtensa@linux-xtensa.org
22799 S:      Maintained
22800 F:      drivers/spi/spi-xtensa-xtfpga.c
22801 F:      sound/soc/xtensa/xtfpga-i2s.c
22802
22803 YAM DRIVER FOR AX.25
22804 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
22805 L:      linux-hams@vger.kernel.org
22806 S:      Maintained
22807 F:      drivers/net/hamradio/yam*
22808 F:      include/linux/yam.h
22809
22810 YAMA SECURITY MODULE
22811 M:      Kees Cook <keescook@chromium.org>
22812 S:      Supported
22813 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
22814 F:      Documentation/admin-guide/LSM/Yama.rst
22815 F:      security/yama/
22816
22817 YEALINK PHONE DRIVER
22818 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
22819 L:      usbb2k-api-dev@nongnu.org
22820 S:      Maintained
22821 F:      Documentation/input/devices/yealink.rst
22822 F:      drivers/input/misc/yealink.*
22823
22824 Z8530 DRIVER FOR AX.25
22825 M:      Joerg Reuter <jreuter@yaina.de>
22826 L:      linux-hams@vger.kernel.org
22827 S:      Maintained
22828 W:      http://yaina.de/jreuter/
22829 W:      http://www.qsl.net/dl1bke/
22830 F:      Documentation/networking/device_drivers/hamradio/z8530drv.rst
22831 F:      drivers/net/hamradio/*scc.c
22832 F:      drivers/net/hamradio/z8530.h
22833
22834 ZBUD COMPRESSED PAGE ALLOCATOR
22835 M:      Seth Jennings <sjenning@redhat.com>
22836 M:      Dan Streetman <ddstreet@ieee.org>
22837 L:      linux-mm@kvack.org
22838 S:      Maintained
22839 F:      mm/zbud.c
22840
22841 Z3FOLD COMPRESSED PAGE ALLOCATOR
22842 M:      Vitaly Wool <vitaly.wool@konsulko.com>
22843 R:      Miaohe Lin <linmiaohe@huawei.com>
22844 L:      linux-mm@kvack.org
22845 S:      Maintained
22846 F:      mm/z3fold.c
22847
22848 ZD1211RW WIRELESS DRIVER
22849 M:      Ulrich Kunitz <kune@deine-taler.de>
22850 L:      linux-wireless@vger.kernel.org
22851 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
22852 S:      Maintained
22853 W:      http://zd1211.ath.cx/wiki/DriverRewrite
22854 F:      drivers/net/wireless/zydas/zd1211rw/
22855
22856 ZD1301 MEDIA DRIVER
22857 M:      Antti Palosaari <crope@iki.fi>
22858 L:      linux-media@vger.kernel.org
22859 S:      Maintained
22860 W:      https://linuxtv.org/
22861 W:      http://palosaari.fi/linux/
22862 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
22863 F:      drivers/media/usb/dvb-usb-v2/zd1301*
22864
22865 ZD1301_DEMOD MEDIA DRIVER
22866 M:      Antti Palosaari <crope@iki.fi>
22867 L:      linux-media@vger.kernel.org
22868 S:      Maintained
22869 W:      https://linuxtv.org/
22870 W:      http://palosaari.fi/linux/
22871 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
22872 F:      drivers/media/dvb-frontends/zd1301_demod*
22873
22874 ZHAOXIN PROCESSOR SUPPORT
22875 M:      Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
22876 L:      linux-kernel@vger.kernel.org
22877 S:      Maintained
22878 F:      arch/x86/kernel/cpu/zhaoxin.c
22879
22880 ZONEFS FILESYSTEM
22881 M:      Damien Le Moal <damien.lemoal@opensource.wdc.com>
22882 M:      Naohiro Aota <naohiro.aota@wdc.com>
22883 R:      Johannes Thumshirn <jth@kernel.org>
22884 L:      linux-fsdevel@vger.kernel.org
22885 S:      Maintained
22886 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
22887 F:      Documentation/filesystems/zonefs.rst
22888 F:      fs/zonefs/
22889
22890 ZPOOL COMPRESSED PAGE STORAGE API
22891 M:      Dan Streetman <ddstreet@ieee.org>
22892 L:      linux-mm@kvack.org
22893 S:      Maintained
22894 F:      include/linux/zpool.h
22895 F:      mm/zpool.c
22896
22897 ZR36067 VIDEO FOR LINUX DRIVER
22898 M:      Corentin Labbe <clabbe@baylibre.com>
22899 L:      mjpeg-users@lists.sourceforge.net
22900 L:      linux-media@vger.kernel.org
22901 S:      Maintained
22902 W:      http://mjpeg.sourceforge.net/driver-zoran/
22903 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
22904 F:      Documentation/driver-api/media/drivers/zoran.rst
22905 F:      drivers/media/pci/zoran/
22906
22907 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
22908 M:      Minchan Kim <minchan@kernel.org>
22909 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
22910 L:      linux-kernel@vger.kernel.org
22911 S:      Maintained
22912 F:      Documentation/admin-guide/blockdev/zram.rst
22913 F:      drivers/block/zram/
22914
22915 ZS DECSTATION Z85C30 SERIAL DRIVER
22916 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
22917 S:      Maintained
22918 F:      drivers/tty/serial/zs.*
22919
22920 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
22921 M:      Minchan Kim <minchan@kernel.org>
22922 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
22923 L:      linux-mm@kvack.org
22924 S:      Maintained
22925 F:      Documentation/mm/zsmalloc.rst
22926 F:      include/linux/zsmalloc.h
22927 F:      mm/zsmalloc.c
22928
22929 ZSTD
22930 M:      Nick Terrell <terrelln@fb.com>
22931 S:      Maintained
22932 B:      https://github.com/facebook/zstd/issues
22933 T:      git https://github.com/terrelln/linux.git
22934 F:      include/linux/zstd*
22935 F:      lib/zstd/
22936 F:      lib/decompress_unzstd.c
22937 F:      crypto/zstd.c
22938 N:      zstd
22939 K:      zstd
22940
22941 ZSWAP COMPRESSED SWAP CACHING
22942 M:      Seth Jennings <sjenning@redhat.com>
22943 M:      Dan Streetman <ddstreet@ieee.org>
22944 M:      Vitaly Wool <vitaly.wool@konsulko.com>
22945 L:      linux-mm@kvack.org
22946 S:      Maintained
22947 F:      mm/zswap.c
22948
22949 THE REST
22950 M:      Linus Torvalds <torvalds@linux-foundation.org>
22951 L:      linux-kernel@vger.kernel.org
22952 S:      Buried alive in reporters
22953 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
22954 F:      *
22955 F:      */