]> Git Repo - linux.git/blob - MAINTAINERS
btrfs: fix deadlock due to page faults during direct IO reads and writes
[linux.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: [email protected], 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 <[email protected]>
148 L:      [email protected]
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 <[email protected]>
155 L:      [email protected]
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 <[email protected]>
161 L:      [email protected]
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" <[email protected]>
168 L:      [email protected]
169 S:      Maintained
170 F:      drivers/scsi/53c700*
171
172 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
173 M:      Alexander Aring <[email protected]>
174 M:      Jukka Rissanen <[email protected]>
175 L:      [email protected]
176 L:      [email protected]
177 S:      Maintained
178 F:      Documentation/networking/6lowpan.rst
179 F:      include/net/6lowpan.h
180 F:      net/6lowpan/
181
182 6PACK NETWORK DRIVER FOR AX.25
183 M:      Andreas Koensgen <[email protected]>
184 L:      [email protected]
185 S:      Maintained
186 F:      drivers/net/hamradio/6pack.c
187
188 802.11 (including CFG80211/NL80211)
189 M:      Johannes Berg <[email protected]>
190 L:      [email protected]
191 S:      Maintained
192 W:      https://wireless.wiki.kernel.org/
193 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
194 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
195 F:      Documentation/driver-api/80211/cfg80211.rst
196 F:      Documentation/networking/regulatory.rst
197 F:      include/linux/ieee80211.h
198 F:      include/net/cfg80211.h
199 F:      include/net/ieee80211_radiotap.h
200 F:      include/net/iw_handler.h
201 F:      include/net/wext.h
202 F:      include/uapi/linux/nl80211.h
203 F:      net/wireless/
204
205 8169 10/100/1000 GIGABIT ETHERNET DRIVER
206 M:      Heiner Kallweit <[email protected]>
207 M:      [email protected]
208 L:      [email protected]
209 S:      Maintained
210 F:      drivers/net/ethernet/realtek/r8169*
211
212 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
213 M:      Greg Kroah-Hartman <[email protected]>
214 L:      [email protected]
215 S:      Maintained
216 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
217 F:      drivers/tty/serial/8250*
218 F:      include/linux/serial_8250.h
219
220 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
221 L:      [email protected]
222 S:      Orphan / Obsolete
223 F:      drivers/net/ethernet/8390/
224
225 9P FILE SYSTEM
226 M:      Eric Van Hensbergen <[email protected]>
227 M:      Latchesar Ionkov <[email protected]>
228 M:      Dominique Martinet <[email protected]>
229 L:      [email protected]
230 S:      Maintained
231 W:      http://swik.net/v9fs
232 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
233 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
234 T:      git git://github.com/martinetd/linux.git
235 F:      Documentation/filesystems/9p.rst
236 F:      fs/9p/
237 F:      include/net/9p/
238 F:      include/trace/events/9p.h
239 F:      include/uapi/linux/virtio_9p.h
240 F:      net/9p/
241
242 A8293 MEDIA DRIVER
243 M:      Antti Palosaari <[email protected]>
244 L:      [email protected]
245 S:      Maintained
246 W:      https://linuxtv.org
247 W:      http://palosaari.fi/linux/
248 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
249 T:      git git://linuxtv.org/anttip/media_tree.git
250 F:      drivers/media/dvb-frontends/a8293*
251
252 AACRAID SCSI RAID DRIVER
253 M:      Adaptec OEM Raid Solutions <[email protected]>
254 L:      [email protected]
255 S:      Supported
256 W:      http://www.adaptec.com/
257 F:      Documentation/scsi/aacraid.rst
258 F:      drivers/scsi/aacraid/
259
260 ABI/API
261 L:      [email protected]
262 F:      include/linux/syscalls.h
263 F:      kernel/sys_ni.c
264 X:      include/uapi/
265 X:      arch/*/include/uapi/
266
267 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
268 M:      Hans de Goede <[email protected]>
269 L:      [email protected]
270 S:      Maintained
271 F:      drivers/hwmon/abituguru.c
272
273 ABIT UGURU 3 HARDWARE MONITOR DRIVER
274 M:      Alistair John Strachan <[email protected]>
275 L:      [email protected]
276 S:      Maintained
277 F:      drivers/hwmon/abituguru3.c
278
279 ACCES 104-DIO-48E GPIO DRIVER
280 M:      William Breathitt Gray <[email protected]>
281 L:      [email protected]
282 S:      Maintained
283 F:      drivers/gpio/gpio-104-dio-48e.c
284
285 ACCES 104-IDI-48 GPIO DRIVER
286 M:      "William Breathitt Gray" <[email protected]>
287 L:      [email protected]
288 S:      Maintained
289 F:      drivers/gpio/gpio-104-idi-48.c
290
291 ACCES 104-IDIO-16 GPIO DRIVER
292 M:      "William Breathitt Gray" <[email protected]>
293 L:      [email protected]
294 S:      Maintained
295 F:      drivers/gpio/gpio-104-idio-16.c
296
297 ACCES 104-QUAD-8 DRIVER
298 M:      William Breathitt Gray <[email protected]>
299 M:      Syed Nayyar Waris <[email protected]>
300 L:      [email protected]
301 S:      Maintained
302 F:      drivers/counter/104-quad-8.c
303
304 ACCES PCI-IDIO-16 GPIO DRIVER
305 M:      William Breathitt Gray <[email protected]>
306 L:      [email protected]
307 S:      Maintained
308 F:      drivers/gpio/gpio-pci-idio-16.c
309
310 ACCES PCIe-IDIO-24 GPIO DRIVER
311 M:      William Breathitt Gray <[email protected]>
312 L:      [email protected]
313 S:      Maintained
314 F:      drivers/gpio/gpio-pcie-idio-24.c
315
316 ACENIC DRIVER
317 M:      Jes Sorensen <[email protected]>
318 L:      [email protected]
319 S:      Maintained
320 F:      drivers/net/ethernet/alteon/acenic*
321
322 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
323 M:      Peter Kaestle <[email protected]>
324 L:      [email protected]
325 S:      Maintained
326 W:      http://piie.net/?section=acerhdf
327 F:      drivers/platform/x86/acerhdf.c
328
329 ACER WMI LAPTOP EXTRAS
330 M:      "Lee, Chun-Yi" <[email protected]>
331 L:      [email protected]
332 S:      Maintained
333 F:      drivers/platform/x86/acer-wmi.c
334
335 ACPI
336 M:      "Rafael J. Wysocki" <[email protected]>
337 M:      Len Brown <[email protected]>
338 L:      [email protected]
339 S:      Supported
340 W:      https://01.org/linux-acpi
341 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
342 B:      https://bugzilla.kernel.org
343 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
344 F:      Documentation/ABI/testing/configfs-acpi
345 F:      Documentation/ABI/testing/sysfs-bus-acpi
346 F:      Documentation/firmware-guide/acpi/
347 F:      drivers/acpi/
348 F:      drivers/pci/*/*acpi*
349 F:      drivers/pci/*acpi*
350 F:      drivers/pnp/pnpacpi/
351 F:      include/acpi/
352 F:      include/linux/acpi.h
353 F:      include/linux/fwnode.h
354 F:      tools/power/acpi/
355
356 ACPI APEI
357 M:      "Rafael J. Wysocki" <[email protected]>
358 M:      Len Brown <[email protected]>
359 R:      James Morse <[email protected]>
360 R:      Tony Luck <[email protected]>
361 R:      Borislav Petkov <[email protected]>
362 L:      [email protected]
363 F:      drivers/acpi/apei/
364
365 ACPI COMPONENT ARCHITECTURE (ACPICA)
366 M:      Robert Moore <[email protected]>
367 M:      "Rafael J. Wysocki" <[email protected]>
368 L:      [email protected]
369 L:      [email protected]
370 S:      Supported
371 W:      https://acpica.org/
372 W:      https://github.com/acpica/acpica/
373 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
374 B:      https://bugzilla.kernel.org
375 B:      https://bugs.acpica.org
376 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
377 F:      drivers/acpi/acpica/
378 F:      include/acpi/
379 F:      tools/power/acpi/
380
381 ACPI FAN DRIVER
382 M:      Zhang Rui <[email protected]>
383 L:      [email protected]
384 S:      Supported
385 W:      https://01.org/linux-acpi
386 B:      https://bugzilla.kernel.org
387 F:      drivers/acpi/fan.c
388
389 ACPI FOR ARM64 (ACPI/arm64)
390 M:      Lorenzo Pieralisi <[email protected]>
391 M:      Hanjun Guo <[email protected]>
392 M:      Sudeep Holla <[email protected]>
393 L:      [email protected]
394 L:      [email protected] (moderated for non-subscribers)
395 S:      Maintained
396 F:      drivers/acpi/arm64
397
398 ACPI I2C MULTI INSTANTIATE DRIVER
399 M:      Hans de Goede <[email protected]>
400 L:      [email protected]
401 S:      Maintained
402 F:      drivers/platform/x86/i2c-multi-instantiate.c
403
404 ACPI PCC(Platform Communication Channel) MAILBOX DRIVER
405 M:      Sudeep Holla <[email protected]>
406 L:      [email protected]
407 S:      Supported
408 F:      drivers/mailbox/pcc.c
409
410 ACPI PMIC DRIVERS
411 M:      "Rafael J. Wysocki" <[email protected]>
412 M:      Len Brown <[email protected]>
413 R:      Andy Shevchenko <[email protected]>
414 R:      Mika Westerberg <[email protected]>
415 L:      [email protected]
416 S:      Supported
417 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
418 B:      https://bugzilla.kernel.org
419 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
420 F:      drivers/acpi/pmic/
421
422 ACPI THERMAL DRIVER
423 M:      Rafael J. Wysocki <[email protected]>
424 R:      Zhang Rui <[email protected]>
425 L:      [email protected]
426 S:      Supported
427 W:      https://01.org/linux-acpi
428 B:      https://bugzilla.kernel.org
429 F:      drivers/acpi/*thermal*
430
431 ACPI VIDEO DRIVER
432 M:      Zhang Rui <[email protected]>
433 L:      [email protected]
434 S:      Supported
435 W:      https://01.org/linux-acpi
436 B:      https://bugzilla.kernel.org
437 F:      drivers/acpi/acpi_video.c
438
439 ACPI VIOT DRIVER
440 M:      Jean-Philippe Brucker <[email protected]>
441 L:      [email protected]
442 L:      [email protected]
443 S:      Maintained
444 F:      drivers/acpi/viot.c
445 F:      include/linux/acpi_viot.h
446
447 ACPI WMI DRIVER
448 L:      [email protected]
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 <[email protected]>
455 L:      [email protected] (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:      [email protected]
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 <[email protected]>
470 L:      [email protected]
471 S:      Supported
472 F:      drivers/iio/potentiometer/ad5110.c
473
474 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
475 M:      Michael Hennerich <[email protected]>
476 S:      Supported
477 W:      http://wiki.analog.com/AD5254
478 W:      http://ez.analog.com/community/linux-device-drivers
479 F:      drivers/misc/ad525x_dpot.c
480
481 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
482 M:      Michael Hennerich <[email protected]>
483 S:      Supported
484 W:      http://wiki.analog.com/AD5398
485 W:      http://ez.analog.com/community/linux-device-drivers
486 F:      drivers/regulator/ad5398.c
487
488 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
489 M:      Michael Hennerich <[email protected]>
490 S:      Supported
491 W:      http://wiki.analog.com/AD7142
492 W:      http://ez.analog.com/community/linux-device-drivers
493 F:      drivers/input/misc/ad714x.c
494
495 AD7877 TOUCHSCREEN DRIVER
496 M:      Michael Hennerich <[email protected]>
497 S:      Supported
498 W:      http://wiki.analog.com/AD7877
499 W:      http://ez.analog.com/community/linux-device-drivers
500 F:      drivers/input/touchscreen/ad7877.c
501
502 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
503 M:      Michael Hennerich <[email protected]>
504 S:      Supported
505 W:      http://wiki.analog.com/AD7879
506 W:      http://ez.analog.com/community/linux-device-drivers
507 F:      drivers/input/touchscreen/ad7879.c
508
509 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
510 M:      Jiri Kosina <[email protected]>
511 S:      Maintained
512
513 ADF7242 IEEE 802.15.4 RADIO DRIVER
514 M:      Michael Hennerich <[email protected]>
515 L:      [email protected]
516 S:      Supported
517 W:      https://wiki.analog.com/ADF7242
518 W:      http://ez.analog.com/community/linux-device-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 <[email protected]>
524 L:      [email protected]
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 <[email protected]>
531 L:      [email protected]
532 S:      Maintained
533 F:      drivers/hwmon/adm1029.c
534
535 ADM8211 WIRELESS DRIVER
536 L:      [email protected]
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 <[email protected]>
543 L:      [email protected]
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 <[email protected]>
550 S:      Supported
551 W:      http://wiki.analog.com/ADP5520
552 W:      http://ez.analog.com/community/linux-device-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 <[email protected]>
561 S:      Supported
562 W:      http://wiki.analog.com/ADP5588
563 W:      http://ez.analog.com/community/linux-device-drivers
564 F:      drivers/gpio/gpio-adp5588.c
565 F:      drivers/input/keyboard/adp5588-keys.c
566
567 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
568 M:      Michael Hennerich <[email protected]>
569 S:      Supported
570 W:      http://wiki.analog.com/ADP8860
571 W:      http://ez.analog.com/community/linux-device-drivers
572 F:      drivers/video/backlight/adp8860_bl.c
573
574 ADT746X FAN DRIVER
575 M:      Colin Leroy <[email protected]>
576 S:      Maintained
577 F:      drivers/macintosh/therm_adt746x.c
578
579 ADT7475 HARDWARE MONITOR DRIVER
580 M:      Jean Delvare <[email protected]>
581 L:      [email protected]
582 S:      Maintained
583 F:      Documentation/hwmon/adt7475.rst
584 F:      drivers/hwmon/adt7475.c
585
586 ADVANSYS SCSI DRIVER
587 M:      Matthew Wilcox <[email protected]>
588 M:      Hannes Reinecke <[email protected]>
589 L:      [email protected]
590 S:      Maintained
591 F:      Documentation/scsi/advansys.rst
592 F:      drivers/scsi/advansys.c
593
594 ADVANTECH SWBTN DRIVER
595 M:      Andrea Ho <[email protected]>
596 L:      [email protected]
597 S:      Maintained
598 F:      drivers/platform/x86/adv_swbutton.c
599
600 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
601 M:      Michael Hennerich <[email protected]>
602 S:      Supported
603 W:      http://wiki.analog.com/ADXL345
604 W:      http://ez.analog.com/community/linux-device-drivers
605 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl345.yaml
606 F:      drivers/input/misc/adxl34x.c
607
608 ADXL372 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
609 M:      Michael Hennerich <[email protected]>
610 S:      Supported
611 W:      http://ez.analog.com/community/linux-device-drivers
612 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl372.yaml
613 F:      drivers/iio/accel/adxl372.c
614 F:      drivers/iio/accel/adxl372_i2c.c
615 F:      drivers/iio/accel/adxl372_spi.c
616
617 AF9013 MEDIA DRIVER
618 M:      Antti Palosaari <[email protected]>
619 L:      [email protected]
620 S:      Maintained
621 W:      https://linuxtv.org
622 W:      http://palosaari.fi/linux/
623 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
624 T:      git git://linuxtv.org/anttip/media_tree.git
625 F:      drivers/media/dvb-frontends/af9013*
626
627 AF9033 MEDIA DRIVER
628 M:      Antti Palosaari <[email protected]>
629 L:      [email protected]
630 S:      Maintained
631 W:      https://linuxtv.org
632 W:      http://palosaari.fi/linux/
633 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
634 T:      git git://linuxtv.org/anttip/media_tree.git
635 F:      drivers/media/dvb-frontends/af9033*
636
637 AFFS FILE SYSTEM
638 M:      David Sterba <[email protected]>
639 L:      [email protected]
640 S:      Odd Fixes
641 F:      Documentation/filesystems/affs.rst
642 F:      fs/affs/
643
644 AFS FILESYSTEM
645 M:      David Howells <[email protected]>
646 M:      Marc Dionne <[email protected]>
647 L:      [email protected]
648 S:      Supported
649 W:      https://www.infradead.org/~dhowells/kafs/
650 F:      Documentation/filesystems/afs.rst
651 F:      fs/afs/
652 F:      include/trace/events/afs.h
653
654 AGPGART DRIVER
655 M:      David Airlie <[email protected]>
656 S:      Maintained
657 T:      git git://anongit.freedesktop.org/drm/drm
658 F:      drivers/char/agp/
659 F:      include/linux/agp*
660 F:      include/uapi/linux/agp*
661
662 AHA152X SCSI DRIVER
663 M:      "Juergen E. Fischer" <[email protected]>
664 L:      [email protected]
665 S:      Maintained
666 F:      drivers/scsi/aha152x*
667 F:      drivers/scsi/pcmcia/aha152x*
668
669 AIC7XXX / AIC79XX SCSI DRIVER
670 M:      Hannes Reinecke <[email protected]>
671 L:      [email protected]
672 S:      Maintained
673 F:      drivers/scsi/aic7xxx/
674
675 AIMSLAB FM RADIO RECEIVER DRIVER
676 M:      Hans Verkuil <[email protected]>
677 L:      [email protected]
678 S:      Maintained
679 W:      https://linuxtv.org
680 T:      git git://linuxtv.org/media_tree.git
681 F:      drivers/media/radio/radio-aimslab*
682
683 AIO
684 M:      Benjamin LaHaise <[email protected]>
685 L:      [email protected]
686 S:      Supported
687 F:      fs/aio.c
688 F:      include/linux/*aio*.h
689
690 AIRSPY MEDIA DRIVER
691 M:      Antti Palosaari <[email protected]>
692 L:      [email protected]
693 S:      Maintained
694 W:      https://linuxtv.org
695 W:      http://palosaari.fi/linux/
696 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
697 T:      git git://linuxtv.org/anttip/media_tree.git
698 F:      drivers/media/usb/airspy/
699
700 ALACRITECH GIGABIT ETHERNET DRIVER
701 M:      Lino Sanfilippo <[email protected]>
702 S:      Maintained
703 F:      drivers/net/ethernet/alacritech/*
704
705 ALCATEL SPEEDTOUCH USB DRIVER
706 M:      Duncan Sands <[email protected]>
707 L:      [email protected]
708 S:      Maintained
709 W:      http://www.linux-usb.org/SpeedTouch/
710 F:      drivers/usb/atm/speedtch.c
711 F:      drivers/usb/atm/usbatm.c
712
713 ALCHEMY AU1XX0 MMC DRIVER
714 M:      Manuel Lauss <[email protected]>
715 S:      Maintained
716 F:      drivers/mmc/host/au1xmmc.c
717
718 ALI1563 I2C DRIVER
719 M:      Rudolf Marek <[email protected]>
720 L:      [email protected]
721 S:      Maintained
722 F:      Documentation/i2c/busses/i2c-ali1563.rst
723 F:      drivers/i2c/busses/i2c-ali1563.c
724
725 ALIENWARE WMI DRIVER
726 L:      [email protected]
727 S:      Maintained
728 F:      drivers/platform/x86/dell/alienware-wmi.c
729
730 ALL SENSORS DLH SERIES PRESSURE SENSORS DRIVER
731 M:      Tomislav Denis <[email protected]>
732 L:      [email protected]
733 S:      Maintained
734 W:      http://www.allsensors.com/
735 F:      Documentation/devicetree/bindings/iio/pressure/asc,dlhl60d.yaml
736 F:      drivers/iio/pressure/dlhl60d.c
737
738 ALLEGRO DVT VIDEO IP CORE DRIVER
739 M:      Michael Tretter <[email protected]>
740 R:      Pengutronix Kernel Team <[email protected]>
741 L:      [email protected]
742 S:      Maintained
743 F:      Documentation/devicetree/bindings/media/allegro,al5e.yaml
744 F:      drivers/media/platform/allegro-dvt/
745
746 ALLWINNER A10 CSI DRIVER
747 M:      Maxime Ripard <[email protected]>
748 L:      [email protected]
749 S:      Maintained
750 T:      git git://linuxtv.org/media_tree.git
751 F:      Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
752 F:      drivers/media/platform/sunxi/sun4i-csi/
753
754 ALLWINNER CPUFREQ DRIVER
755 M:      Yangtao Li <[email protected]>
756 L:      [email protected]
757 S:      Maintained
758 F:      Documentation/devicetree/bindings/opp/allwinner,sun50i-h6-operating-points.yaml
759 F:      drivers/cpufreq/sun50i-cpufreq-nvmem.c
760
761 ALLWINNER CRYPTO DRIVERS
762 M:      Corentin Labbe <[email protected]>
763 L:      [email protected]
764 S:      Maintained
765 F:      drivers/crypto/allwinner/
766
767 ALLWINNER HARDWARE SPINLOCK SUPPORT
768 M:      Wilken Gottwalt <[email protected]>
769 S:      Maintained
770 F:      Documentation/devicetree/bindings/hwlock/allwinner,sun6i-hwspinlock.yaml
771 F:      drivers/hwspinlock/sun6i_hwspinlock.c
772
773 ALLWINNER THERMAL DRIVER
774 M:      Vasily Khoruzhick <[email protected]>
775 M:      Yangtao Li <[email protected]>
776 L:      [email protected]
777 S:      Maintained
778 F:      Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml
779 F:      drivers/thermal/sun8i_thermal.c
780
781 ALLWINNER VPU DRIVER
782 M:      Maxime Ripard <[email protected]>
783 M:      Paul Kocialkowski <[email protected]>
784 L:      [email protected]
785 S:      Maintained
786 F:      drivers/staging/media/sunxi/cedrus/
787
788 ALPHA PORT
789 M:      Richard Henderson <[email protected]>
790 M:      Ivan Kokshaysky <[email protected]>
791 M:      Matt Turner <[email protected]>
792 L:      [email protected]
793 S:      Odd Fixes
794 F:      arch/alpha/
795
796 ALPS PS/2 TOUCHPAD DRIVER
797 R:      Pali Rohár <[email protected]>
798 F:      drivers/input/mouse/alps.*
799
800 ALTERA I2C CONTROLLER DRIVER
801 M:      Thor Thayer <[email protected]>
802 S:      Maintained
803 F:      Documentation/devicetree/bindings/i2c/i2c-altera.txt
804 F:      drivers/i2c/busses/i2c-altera.c
805
806 ALTERA MAILBOX DRIVER
807 M:      Mun Yew Tham <[email protected]>
808 S:      Maintained
809 F:      drivers/mailbox/mailbox-altera.c
810
811 ALTERA MSGDMA IP CORE DRIVER
812 M:      Olivier Dautricourt <[email protected]>
813 R:      Stefan Roese <[email protected]>
814 L:      [email protected]
815 S:      Odd Fixes
816 F:      Documentation/devicetree/bindings/dma/altr,msgdma.yaml
817 F:      drivers/dma/altera-msgdma.c
818
819 ALTERA PIO DRIVER
820 M:      Mun Yew Tham <[email protected]>
821 L:      [email protected]
822 S:      Maintained
823 F:      drivers/gpio/gpio-altera.c
824
825 ALTERA SYSTEM MANAGER DRIVER
826 M:      Thor Thayer <[email protected]>
827 S:      Maintained
828 F:      drivers/mfd/altera-sysmgr.c
829 F:      include/linux/mfd/altera-sysmgr.h
830
831 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
832 M:      Thor Thayer <[email protected]>
833 S:      Maintained
834 F:      drivers/gpio/gpio-altera-a10sr.c
835 F:      drivers/mfd/altera-a10sr.c
836 F:      drivers/reset/reset-a10sr.c
837 F:      include/dt-bindings/reset/altr,rst-mgr-a10sr.h
838 F:      include/linux/mfd/altera-a10sr.h
839
840 ALTERA TRIPLE SPEED ETHERNET DRIVER
841 M:      Joyce Ooi <[email protected]>
842 L:      [email protected]
843 S:      Maintained
844 F:      drivers/net/ethernet/altera/
845
846 ALTERA UART/JTAG UART SERIAL DRIVERS
847 M:      Tobias Klauser <[email protected]>
848 L:      [email protected]
849 S:      Maintained
850 F:      drivers/tty/serial/altera_jtaguart.c
851 F:      drivers/tty/serial/altera_uart.c
852 F:      include/linux/altera_jtaguart.h
853 F:      include/linux/altera_uart.h
854
855 AMAZON ANNAPURNA LABS FIC DRIVER
856 M:      Talel Shenhar <[email protected]>
857 S:      Maintained
858 F:      Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
859 F:      drivers/irqchip/irq-al-fic.c
860
861 AMAZON ANNAPURNA LABS MEMORY CONTROLLER EDAC
862 M:      Talel Shenhar <[email protected]>
863 M:      Talel Shenhar <[email protected]>
864 S:      Maintained
865 F:      Documentation/devicetree/bindings/edac/amazon,al-mc-edac.yaml
866 F:      drivers/edac/al_mc_edac.c
867
868 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
869 M:      Talel Shenhar <[email protected]>
870 S:      Maintained
871 F:      Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
872 F:      drivers/thermal/thermal_mmio.c
873
874 AMAZON ETHERNET DRIVERS
875 M:      Netanel Belgazal <[email protected]>
876 M:      Arthur Kiyanovski <[email protected]>
877 R:      Guy Tzalik <[email protected]>
878 R:      Saeed Bishara <[email protected]>
879 L:      [email protected]
880 S:      Supported
881 F:      Documentation/networking/device_drivers/ethernet/amazon/ena.rst
882 F:      drivers/net/ethernet/amazon/
883
884 AMAZON RDMA EFA DRIVER
885 M:      Gal Pressman <[email protected]>
886 R:      Yossi Leybovich <[email protected]>
887 L:      [email protected]
888 S:      Supported
889 Q:      https://patchwork.kernel.org/project/linux-rdma/list/
890 F:      drivers/infiniband/hw/efa/
891 F:      include/uapi/rdma/efa-abi.h
892
893 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
894 M:      Tom Lendacky <[email protected]>
895 M:      John Allen <[email protected]>
896 L:      [email protected]
897 S:      Supported
898 F:      drivers/crypto/ccp/
899 F:      include/linux/ccp.h
900
901 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER - SEV SUPPORT
902 M:      Brijesh Singh <[email protected]>
903 M:      Tom Lendacky <[email protected]>
904 L:      [email protected]
905 S:      Supported
906 F:      drivers/crypto/ccp/sev*
907 F:      include/uapi/linux/psp-sev.h
908
909 AMD DISPLAY CORE
910 M:      Harry Wentland <[email protected]>
911 M:      Leo Li <[email protected]>
912 L:      [email protected]
913 S:      Supported
914 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
915 F:      drivers/gpu/drm/amd/display/
916
917 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
918 M:      Huang Rui <[email protected]>
919 L:      [email protected]
920 S:      Supported
921 F:      Documentation/hwmon/fam15h_power.rst
922 F:      drivers/hwmon/fam15h_power.c
923
924 AMD FCH GPIO DRIVER
925 M:      Enrico Weigelt, metux IT consult <[email protected]>
926 L:      [email protected]
927 S:      Maintained
928 F:      drivers/gpio/gpio-amd-fch.c
929 F:      include/linux/platform_data/gpio/gpio-amd-fch.h
930
931 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
932 L:      [email protected] (moderated for non-subscribers)
933 S:      Orphan
934 F:      drivers/usb/gadget/udc/amd5536udc.*
935
936 AMD GEODE PROCESSOR/CHIPSET SUPPORT
937 M:      Andres Salomon <[email protected]>
938 L:      [email protected] (moderated for non-subscribers)
939 S:      Supported
940 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
941 F:      arch/x86/include/asm/geode.h
942 F:      drivers/char/hw_random/geode-rng.c
943 F:      drivers/crypto/geode*
944 F:      drivers/video/fbdev/geode/
945
946 AMD IOMMU (AMD-VI)
947 M:      Joerg Roedel <[email protected]>
948 R:      Suravee Suthikulpanit <[email protected]>
949 L:      [email protected]
950 S:      Maintained
951 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
952 F:      drivers/iommu/amd/
953 F:      include/linux/amd-iommu.h
954
955 AMD KFD
956 M:      Felix Kuehling <[email protected]>
957 L:      [email protected]
958 S:      Supported
959 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
960 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
961 F:      drivers/gpu/drm/amd/amdkfd/
962 F:      drivers/gpu/drm/amd/include/cik_structs.h
963 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
964 F:      drivers/gpu/drm/amd/include/v9_structs.h
965 F:      drivers/gpu/drm/amd/include/vi_structs.h
966 F:      include/uapi/linux/kfd_ioctl.h
967
968 AMD SPI DRIVER
969 M:      Sanjay R Mehta <[email protected]>
970 S:      Maintained
971 F:      drivers/spi/spi-amd.c
972
973 AMD MP2 I2C DRIVER
974 M:      Elie Morisse <[email protected]>
975 M:      Nehal Shah <[email protected]>
976 M:      Shyam Sundar S K <[email protected]>
977 L:      [email protected]
978 S:      Maintained
979 F:      drivers/i2c/busses/i2c-amd-mp2*
980
981 AMD PMC DRIVER
982 M:      Shyam Sundar S K <[email protected]>
983 L:      [email protected]
984 S:      Maintained
985 F:      drivers/platform/x86/amd-pmc.*
986
987 AMD POWERPLAY AND SWSMU
988 M:      Evan Quan <[email protected]>
989 L:      [email protected]
990 S:      Supported
991 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
992 F:      drivers/gpu/drm/amd/pm/
993
994 AMD PTDMA DRIVER
995 M:      Sanjay R Mehta <[email protected]>
996 L:      [email protected]
997 S:      Maintained
998 F:      drivers/dma/ptdma/
999
1000 AMD SEATTLE DEVICE TREE SUPPORT
1001 M:      Brijesh Singh <[email protected]>
1002 M:      Suravee Suthikulpanit <[email protected]>
1003 M:      Tom Lendacky <[email protected]>
1004 S:      Supported
1005 F:      arch/arm64/boot/dts/amd/
1006
1007 AMD XGBE DRIVER
1008 M:      Tom Lendacky <[email protected]>
1009 L:      [email protected]
1010 S:      Supported
1011 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
1012 F:      drivers/net/ethernet/amd/xgbe/
1013
1014 AMD SENSOR FUSION HUB DRIVER
1015 M:      Nehal Shah <[email protected]>
1016 M:      Basavaraj Natikar <[email protected]>
1017 L:      [email protected]
1018 S:      Maintained
1019 F:      Documentation/hid/amd-sfh*
1020 F:      drivers/hid/amd-sfh-hid/
1021
1022 AMS AS73211 DRIVER
1023 M:      Christian Eggers <[email protected]>
1024 L:      [email protected]
1025 S:      Maintained
1026 F:      Documentation/devicetree/bindings/iio/light/ams,as73211.yaml
1027 F:      drivers/iio/light/as73211.c
1028
1029 AMT (Automatic Multicast Tunneling)
1030 M:      Taehee Yoo <[email protected]>
1031 L:      [email protected]
1032 S:      Maintained
1033 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
1034 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
1035 F:      drivers/net/amt.c
1036
1037 ANALOG DEVICES INC AD7192 DRIVER
1038 M:      Alexandru Tachici <[email protected]>
1039 L:      [email protected]
1040 S:      Supported
1041 W:      http://ez.analog.com/community/linux-device-drivers
1042 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7192.yaml
1043 F:      drivers/iio/adc/ad7192.c
1044
1045 ANALOG DEVICES INC AD7292 DRIVER
1046 M:      Marcelo Schmitt <[email protected]>
1047 L:      [email protected]
1048 S:      Supported
1049 W:      http://ez.analog.com/community/linux-device-drivers
1050 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
1051 F:      drivers/iio/adc/ad7292.c
1052
1053 ANALOG DEVICES INC AD7768-1 DRIVER
1054 M:      Michael Hennerich <[email protected]>
1055 L:      [email protected]
1056 S:      Supported
1057 W:      http://ez.analog.com/community/linux-device-drivers
1058 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.yaml
1059 F:      drivers/iio/adc/ad7768-1.c
1060
1061 ANALOG DEVICES INC AD7780 DRIVER
1062 M:      Michael Hennerich <[email protected]>
1063 M:      Renato Lui Geh <[email protected]>
1064 L:      [email protected]
1065 S:      Supported
1066 W:      http://ez.analog.com/community/linux-device-drivers
1067 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
1068 F:      drivers/iio/adc/ad7780.c
1069
1070 ANALOG DEVICES INC AD9389B DRIVER
1071 M:      Hans Verkuil <[email protected]>
1072 L:      [email protected]
1073 S:      Maintained
1074 F:      drivers/media/i2c/ad9389b*
1075
1076 ANALOG DEVICES INC ADGS1408 DRIVER
1077 M:      Mircea Caprioru <[email protected]>
1078 S:      Supported
1079 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
1080 F:      drivers/mux/adgs1408.c
1081
1082 ANALOG DEVICES INC ADIN DRIVER
1083 M:      Michael Hennerich <[email protected]>
1084 L:      [email protected]
1085 S:      Supported
1086 W:      http://ez.analog.com/community/linux-device-drivers
1087 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
1088 F:      drivers/net/phy/adin.c
1089
1090 ANALOG DEVICES INC ADIS DRIVER LIBRARY
1091 M:      Nuno Sa <[email protected]>
1092 L:      [email protected]
1093 S:      Supported
1094 F:      drivers/iio/imu/adis.c
1095 F:      include/linux/iio/imu/adis.h
1096
1097 ANALOG DEVICES INC ADIS16460 DRIVER
1098 M:      Dragos Bogdan <[email protected]>
1099 L:      [email protected]
1100 S:      Supported
1101 W:      http://ez.analog.com/community/linux-device-drivers
1102 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1103 F:      drivers/iio/imu/adis16460.c
1104
1105 ANALOG DEVICES INC ADIS16475 DRIVER
1106 M:      Nuno Sa <[email protected]>
1107 L:      [email protected]
1108 W:      http://ez.analog.com/community/linux-device-drivers
1109 S:      Supported
1110 F:      drivers/iio/imu/adis16475.c
1111 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16475.yaml
1112
1113 ANALOG DEVICES INC ADM1177 DRIVER
1114 M:      Michael Hennerich <[email protected]>
1115 L:      [email protected]
1116 S:      Supported
1117 W:      http://ez.analog.com/community/linux-device-drivers
1118 F:      Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1119 F:      drivers/hwmon/adm1177.c
1120
1121 ANALOG DEVICES INC ADP5061 DRIVER
1122 M:      Michael Hennerich <[email protected]>
1123 L:      [email protected]
1124 S:      Supported
1125 W:      http://ez.analog.com/community/linux-device-drivers
1126 F:      drivers/power/supply/adp5061.c
1127
1128 ANALOG DEVICES INC ADV7180 DRIVER
1129 M:      Lars-Peter Clausen <[email protected]>
1130 L:      [email protected]
1131 S:      Supported
1132 W:      http://ez.analog.com/community/linux-device-drivers
1133 F:      drivers/media/i2c/adv7180.c
1134 F:      Documentation/devicetree/bindings/media/i2c/adv7180.yaml
1135
1136 ANALOG DEVICES INC ADV748X DRIVER
1137 M:      Kieran Bingham <[email protected]>
1138 L:      [email protected]
1139 S:      Maintained
1140 F:      drivers/media/i2c/adv748x/*
1141
1142 ANALOG DEVICES INC ADV7511 DRIVER
1143 M:      Hans Verkuil <[email protected]>
1144 L:      [email protected]
1145 S:      Maintained
1146 F:      drivers/media/i2c/adv7511*
1147
1148 ANALOG DEVICES INC ADV7604 DRIVER
1149 M:      Hans Verkuil <[email protected]>
1150 L:      [email protected]
1151 S:      Maintained
1152 F:      drivers/media/i2c/adv7604*
1153 F:      Documentation/devicetree/bindings/media/i2c/adv7604.yaml
1154
1155 ANALOG DEVICES INC ADV7842 DRIVER
1156 M:      Hans Verkuil <[email protected]>
1157 L:      [email protected]
1158 S:      Maintained
1159 F:      drivers/media/i2c/adv7842*
1160
1161 ANALOG DEVICES INC ADXRS290 DRIVER
1162 M:      Nishant Malpani <[email protected]>
1163 L:      [email protected]
1164 S:      Supported
1165 F:      drivers/iio/gyro/adxrs290.c
1166 F:      Documentation/devicetree/bindings/iio/gyroscope/adi,adxrs290.yaml
1167
1168 ANALOG DEVICES INC ASOC CODEC DRIVERS
1169 M:      Lars-Peter Clausen <[email protected]>
1170 M:      Nuno Sá <[email protected]>
1171 L:      [email protected] (moderated for non-subscribers)
1172 S:      Supported
1173 W:      http://wiki.analog.com/
1174 W:      http://ez.analog.com/community/linux-device-drivers
1175 F:      sound/soc/codecs/ad1*
1176 F:      sound/soc/codecs/ad7*
1177 F:      sound/soc/codecs/adau*
1178 F:      sound/soc/codecs/adav*
1179 F:      sound/soc/codecs/sigmadsp.*
1180 F:      sound/soc/codecs/ssm*
1181
1182 ANALOG DEVICES INC DMA DRIVERS
1183 M:      Lars-Peter Clausen <[email protected]>
1184 S:      Supported
1185 W:      http://ez.analog.com/community/linux-device-drivers
1186 F:      drivers/dma/dma-axi-dmac.c
1187
1188 ANALOG DEVICES INC IIO DRIVERS
1189 M:      Lars-Peter Clausen <[email protected]>
1190 M:      Michael Hennerich <[email protected]>
1191 S:      Supported
1192 W:      http://wiki.analog.com/
1193 W:      http://ez.analog.com/community/linux-device-drivers
1194 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1195 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1196 F:      Documentation/devicetree/bindings/iio/*/adi,*
1197 F:      Documentation/devicetree/bindings/iio/dac/adi,ad5758.yaml
1198 F:      drivers/iio/*/ad*
1199 F:      drivers/iio/adc/ltc249*
1200 F:      drivers/iio/amplifiers/hmc425a.c
1201 F:      drivers/staging/iio/*/ad*
1202 X:      drivers/iio/*/adjd*
1203
1204 ANALOGBITS PLL LIBRARIES
1205 M:      Paul Walmsley <[email protected]>
1206 S:      Supported
1207 F:      drivers/clk/analogbits/*
1208 F:      include/linux/clk/analogbits*
1209
1210 ANDES ARCHITECTURE
1211 M:      Nick Hu <[email protected]>
1212 M:      Greentime Hu <[email protected]>
1213 M:      Vincent Chen <[email protected]>
1214 S:      Supported
1215 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/greentime/linux.git
1216 F:      Documentation/devicetree/bindings/interrupt-controller/andestech,ativic32.txt
1217 F:      Documentation/devicetree/bindings/nds32/
1218 F:      arch/nds32/
1219 N:      nds32
1220 K:      nds32
1221
1222 ANDROID CONFIG FRAGMENTS
1223 M:      Rob Herring <[email protected]>
1224 S:      Supported
1225 F:      kernel/configs/android*
1226
1227 ANDROID DRIVERS
1228 M:      Greg Kroah-Hartman <[email protected]>
1229 M:      Arve Hjønnevåg <[email protected]>
1230 M:      Todd Kjos <[email protected]>
1231 M:      Martijn Coenen <[email protected]>
1232 M:      Joel Fernandes <[email protected]>
1233 M:      Christian Brauner <[email protected]>
1234 M:      Hridya Valsaraju <[email protected]>
1235 M:      Suren Baghdasaryan <[email protected]>
1236 L:      [email protected]
1237 S:      Supported
1238 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1239 F:      drivers/android/
1240 F:      drivers/staging/android/
1241
1242 ANDROID GOLDFISH PIC DRIVER
1243 M:      Miodrag Dinic <[email protected]>
1244 S:      Supported
1245 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1246 F:      drivers/irqchip/irq-goldfish-pic.c
1247
1248 ANDROID GOLDFISH RTC DRIVER
1249 M:      Jiaxun Yang <[email protected]>
1250 S:      Supported
1251 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1252 F:      drivers/rtc/rtc-goldfish.c
1253
1254 AOA (Apple Onboard Audio) ALSA DRIVER
1255 M:      Johannes Berg <[email protected]>
1256 L:      [email protected]
1257 L:      [email protected] (moderated for non-subscribers)
1258 S:      Maintained
1259 F:      sound/aoa/
1260
1261 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1262 M:      William Breathitt Gray <[email protected]>
1263 L:      [email protected]
1264 S:      Maintained
1265 F:      drivers/iio/adc/stx104.c
1266
1267 APM DRIVER
1268 M:      Jiri Kosina <[email protected]>
1269 S:      Odd fixes
1270 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1271 F:      arch/x86/kernel/apm_32.c
1272 F:      drivers/char/apm-emulation.c
1273 F:      include/linux/apm_bios.h
1274 F:      include/uapi/linux/apm_bios.h
1275
1276 APPARMOR SECURITY MODULE
1277 M:      John Johansen <[email protected]>
1278 L:      [email protected] (subscribers-only, general discussion)
1279 S:      Supported
1280 W:      wiki.apparmor.net
1281 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1282 F:      Documentation/admin-guide/LSM/apparmor.rst
1283 F:      security/apparmor/
1284
1285 APPLE BCM5974 MULTITOUCH DRIVER
1286 M:      Henrik Rydberg <[email protected]>
1287 L:      [email protected]
1288 S:      Odd fixes
1289 F:      drivers/input/mouse/bcm5974.c
1290
1291 APPLE DART IOMMU DRIVER
1292 M:      Sven Peter <[email protected]>
1293 R:      Alyssa Rosenzweig <[email protected]>
1294 L:      [email protected]
1295 S:      Maintained
1296 F:      Documentation/devicetree/bindings/iommu/apple,dart.yaml
1297 F:      drivers/iommu/apple-dart.c
1298
1299 APPLE SMC DRIVER
1300 M:      Henrik Rydberg <[email protected]>
1301 L:      [email protected]
1302 S:      Odd fixes
1303 F:      drivers/hwmon/applesmc.c
1304
1305 APPLETALK NETWORK LAYER
1306 L:      [email protected]
1307 S:      Odd fixes
1308 F:      drivers/net/appletalk/
1309 F:      include/linux/atalk.h
1310 F:      include/uapi/linux/atalk.h
1311 F:      net/appletalk/
1312
1313 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1314 M:      Khuong Dinh <[email protected]>
1315 S:      Supported
1316 F:      arch/arm64/boot/dts/apm/
1317
1318 APPLIED MICRO (APM) X-GENE SOC EDAC
1319 M:      Khuong Dinh <[email protected]>
1320 S:      Supported
1321 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1322 F:      drivers/edac/xgene_edac.c
1323
1324 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1325 M:      Iyappan Subramanian <[email protected]>
1326 M:      Keyur Chudgar <[email protected]>
1327 S:      Supported
1328 F:      drivers/net/ethernet/apm/xgene-v2/
1329
1330 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1331 M:      Iyappan Subramanian <[email protected]>
1332 M:      Keyur Chudgar <[email protected]>
1333 M:      Quan Nguyen <[email protected]>
1334 S:      Supported
1335 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1336 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1337 F:      drivers/net/ethernet/apm/xgene/
1338 F:      drivers/net/mdio/mdio-xgene.c
1339
1340 APPLIED MICRO (APM) X-GENE SOC PMU
1341 M:      Khuong Dinh <[email protected]>
1342 S:      Supported
1343 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1344 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1345 F:      drivers/perf/xgene_pmu.c
1346
1347 APTINA CAMERA SENSOR PLL
1348 M:      Laurent Pinchart <[email protected]>
1349 L:      [email protected]
1350 S:      Maintained
1351 F:      drivers/media/i2c/aptina-pll.*
1352
1353 AQUACOMPUTER D5 NEXT PUMP SENSOR DRIVER
1354 M:      Aleksa Savic <[email protected]>
1355 L:      [email protected]
1356 S:      Maintained
1357 F:      Documentation/hwmon/aquacomputer_d5next.rst
1358 F:      drivers/hwmon/aquacomputer_d5next.c
1359
1360 AQUANTIA ETHERNET DRIVER (atlantic)
1361 M:      Igor Russkikh <[email protected]>
1362 L:      [email protected]
1363 S:      Supported
1364 W:      https://www.marvell.com/
1365 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
1366 F:      Documentation/networking/device_drivers/ethernet/aquantia/atlantic.rst
1367 F:      drivers/net/ethernet/aquantia/atlantic/
1368
1369 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1370 M:      Egor Pomozov <[email protected]>
1371 L:      [email protected]
1372 S:      Supported
1373 W:      http://www.aquantia.com
1374 F:      drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1375
1376 ARASAN NAND CONTROLLER DRIVER
1377 M:      Miquel Raynal <[email protected]>
1378 M:      Naga Sureshkumar Relli <[email protected]>
1379 L:      [email protected]
1380 S:      Maintained
1381 F:      Documentation/devicetree/bindings/mtd/arasan,nand-controller.yaml
1382 F:      drivers/mtd/nand/raw/arasan-nand-controller.c
1383
1384 ARC FRAMEBUFFER DRIVER
1385 M:      Jaya Kumar <[email protected]>
1386 S:      Maintained
1387 F:      drivers/video/fbdev/arcfb.c
1388 F:      drivers/video/fbdev/core/fb_defio.c
1389
1390 ARC PGU DRM DRIVER
1391 M:      Alexey Brodkin <[email protected]>
1392 S:      Supported
1393 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1394 F:      drivers/gpu/drm/tiny/arcpgu.c
1395
1396 ARCNET NETWORK LAYER
1397 M:      Michael Grzeschik <[email protected]>
1398 L:      [email protected]
1399 S:      Maintained
1400 F:      drivers/net/arcnet/
1401 F:      include/uapi/linux/if_arcnet.h
1402
1403 ARM ARCHITECTED TIMER DRIVER
1404 M:      Mark Rutland <[email protected]>
1405 M:      Marc Zyngier <[email protected]>
1406 L:      [email protected] (moderated for non-subscribers)
1407 S:      Maintained
1408 F:      arch/arm/include/asm/arch_timer.h
1409 F:      arch/arm64/include/asm/arch_timer.h
1410 F:      drivers/clocksource/arm_arch_timer.c
1411
1412 ARM HDLCD DRM DRIVER
1413 M:      Liviu Dudau <[email protected]>
1414 S:      Supported
1415 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
1416 F:      drivers/gpu/drm/arm/hdlcd_*
1417
1418 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1419 M:      Linus Walleij <[email protected]>
1420 L:      [email protected] (moderated for non-subscribers)
1421 S:      Maintained
1422 F:      Documentation/devicetree/bindings/arm/arm,integrator.yaml
1423 F:      Documentation/devicetree/bindings/arm/arm,realview.yaml
1424 F:      Documentation/devicetree/bindings/arm/arm,versatile.yaml
1425 F:      Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
1426 F:      Documentation/devicetree/bindings/auxdisplay/arm,versatile-lcd.yaml
1427 F:      Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1428 F:      Documentation/devicetree/bindings/i2c/i2c-versatile.txt
1429 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1430 F:      Documentation/devicetree/bindings/mtd/arm-versatile.txt
1431 F:      arch/arm/boot/dts/arm-realview-*
1432 F:      arch/arm/boot/dts/integrator*
1433 F:      arch/arm/boot/dts/versatile*
1434 F:      arch/arm/mach-integrator/
1435 F:      arch/arm/mach-realview/
1436 F:      arch/arm/mach-versatile/
1437 F:      arch/arm/plat-versatile/
1438 F:      drivers/bus/arm-integrator-lm.c
1439 F:      drivers/clk/versatile/
1440 F:      drivers/i2c/busses/i2c-versatile.c
1441 F:      drivers/irqchip/irq-versatile-fpga.c
1442 F:      drivers/mtd/maps/physmap-versatile.*
1443 F:      drivers/power/reset/arm-versatile-reboot.c
1444 F:      drivers/soc/versatile/
1445
1446 ARM KOMEDA DRM-KMS DRIVER
1447 M:      James (Qian) Wang <[email protected]>
1448 M:      Liviu Dudau <[email protected]>
1449 M:      Mihail Atanassov <[email protected]>
1450 L:      Mali DP Maintainers <[email protected]>
1451 S:      Supported
1452 T:      git git://anongit.freedesktop.org/drm/drm-misc
1453 F:      Documentation/devicetree/bindings/display/arm,komeda.txt
1454 F:      Documentation/gpu/komeda-kms.rst
1455 F:      drivers/gpu/drm/arm/display/include/
1456 F:      drivers/gpu/drm/arm/display/komeda/
1457
1458 ARM MALI PANFROST DRM DRIVER
1459 M:      Rob Herring <[email protected]>
1460 M:      Tomeu Vizoso <[email protected]>
1461 R:      Steven Price <[email protected]>
1462 R:      Alyssa Rosenzweig <[email protected]>
1463 L:      [email protected]
1464 S:      Supported
1465 T:      git git://anongit.freedesktop.org/drm/drm-misc
1466 F:      drivers/gpu/drm/panfrost/
1467 F:      include/uapi/drm/panfrost_drm.h
1468
1469 ARM MALI-DP DRM DRIVER
1470 M:      Liviu Dudau <[email protected]>
1471 M:      Brian Starkey <[email protected]>
1472 L:      Mali DP Maintainers <[email protected]>
1473 S:      Supported
1474 T:      git git://anongit.freedesktop.org/drm/drm-misc
1475 F:      Documentation/devicetree/bindings/display/arm,malidp.txt
1476 F:      Documentation/gpu/afbc.rst
1477 F:      drivers/gpu/drm/arm/
1478
1479 ARM MFM AND FLOPPY DRIVERS
1480 M:      Ian Molton <[email protected]>
1481 S:      Maintained
1482 F:      arch/arm/include/asm/floppy.h
1483 F:      arch/arm/mach-rpc/floppydma.S
1484
1485 ARM PMU PROFILING AND DEBUGGING
1486 M:      Will Deacon <[email protected]>
1487 M:      Mark Rutland <[email protected]>
1488 L:      [email protected] (moderated for non-subscribers)
1489 S:      Maintained
1490 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1491 F:      Documentation/devicetree/bindings/perf/
1492 F:      arch/arm*/include/asm/hw_breakpoint.h
1493 F:      arch/arm*/include/asm/perf_event.h
1494 F:      arch/arm*/kernel/hw_breakpoint.c
1495 F:      arch/arm*/kernel/perf_*
1496 F:      drivers/perf/
1497 F:      include/linux/perf/arm_pmu.h
1498
1499 ARM PORT
1500 M:      Russell King <[email protected]>
1501 L:      [email protected] (moderated for non-subscribers)
1502 S:      Odd Fixes
1503 W:      http://www.armlinux.org.uk/
1504 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1505 F:      arch/arm/
1506 X:      arch/arm/boot/dts/
1507
1508 ARM PRIMECELL AACI PL041 DRIVER
1509 M:      Russell King <[email protected]>
1510 S:      Odd Fixes
1511 F:      sound/arm/aaci.*
1512
1513 ARM PRIMECELL BUS SUPPORT
1514 M:      Russell King <[email protected]>
1515 S:      Odd Fixes
1516 F:      drivers/amba/
1517 F:      include/linux/amba/bus.h
1518
1519 ARM PRIMECELL PL35X NAND CONTROLLER DRIVER
1520 M:      Miquel Raynal <[email protected]>
1521 M:      Naga Sureshkumar Relli <[email protected]>
1522 L:      [email protected]
1523 S:      Maintained
1524 F:      Documentation/devicetree/bindings/mtd/arm,pl353-nand-r2p1.yaml
1525 F:      drivers/mtd/nand/raw/pl35x-nand-controller.c
1526
1527 ARM PRIMECELL PL35X SMC DRIVER
1528 M:      Miquel Raynal <[email protected]>
1529 M:      Naga Sureshkumar Relli <[email protected]>
1530 L:      [email protected] (moderated for non-subscribers)
1531 S:      Maintained
1532 F:      Documentation/devicetree/bindings/memory-controllers/arm,pl353-smc.yaml
1533 F:      drivers/memory/pl353-smc.c
1534
1535 ARM PRIMECELL CLCD PL110 DRIVER
1536 M:      Russell King <[email protected]>
1537 S:      Odd Fixes
1538 F:      drivers/video/fbdev/amba-clcd.*
1539
1540 ARM PRIMECELL KMI PL050 DRIVER
1541 M:      Russell King <[email protected]>
1542 S:      Odd Fixes
1543 F:      drivers/input/serio/ambakmi.*
1544 F:      include/linux/amba/kmi.h
1545
1546 ARM PRIMECELL MMCI PL180/1 DRIVER
1547 M:      Russell King <[email protected]>
1548 S:      Odd Fixes
1549 F:      drivers/mmc/host/mmci.*
1550 F:      include/linux/amba/mmci.h
1551
1552 ARM PRIMECELL SSP PL022 SPI DRIVER
1553 M:      Linus Walleij <[email protected]>
1554 L:      [email protected] (moderated for non-subscribers)
1555 S:      Maintained
1556 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1557 F:      drivers/spi/spi-pl022.c
1558
1559 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1560 M:      Russell King <[email protected]>
1561 S:      Odd Fixes
1562 F:      drivers/tty/serial/amba-pl01*.c
1563 F:      include/linux/amba/serial.h
1564
1565 ARM PRIMECELL VIC PL190/PL192 DRIVER
1566 M:      Linus Walleij <[email protected]>
1567 L:      [email protected] (moderated for non-subscribers)
1568 S:      Maintained
1569 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.yaml
1570 F:      drivers/irqchip/irq-vic.c
1571
1572 ARM SMC WATCHDOG DRIVER
1573 M:      Julius Werner <[email protected]>
1574 R:      Evan Benn <[email protected]>
1575 S:      Maintained
1576 F:      Documentation/devicetree/bindings/watchdog/arm-smc-wdt.yaml
1577 F:      drivers/watchdog/arm_smc_wdt.c
1578
1579 ARM SMMU DRIVERS
1580 M:      Will Deacon <[email protected]>
1581 R:      Robin Murphy <[email protected]>
1582 L:      [email protected] (moderated for non-subscribers)
1583 S:      Maintained
1584 F:      Documentation/devicetree/bindings/iommu/arm,smmu*
1585 F:      drivers/iommu/arm/
1586 F:      drivers/iommu/io-pgtable-arm*
1587
1588 ARM AND ARM64 SoC SUB-ARCHITECTURES (COMMON PARTS)
1589 M:      Arnd Bergmann <[email protected]>
1590 M:      Olof Johansson <[email protected]>
1591 M:      [email protected]
1592 L:      [email protected] (moderated for non-subscribers)
1593 S:      Maintained
1594 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1595 F:      arch/arm/boot/dts/Makefile
1596 F:      arch/arm64/boot/dts/Makefile
1597
1598 ARM SUB-ARCHITECTURES
1599 L:      [email protected] (moderated for non-subscribers)
1600 S:      Maintained
1601 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1602 F:      arch/arm/mach-*/
1603 F:      arch/arm/plat-*/
1604
1605 ARM/ACTIONS SEMI ARCHITECTURE
1606 M:      Andreas Färber <[email protected]>
1607 M:      Manivannan Sadhasivam <[email protected]>
1608 L:      [email protected] (moderated for non-subscribers)
1609 L:      [email protected] (moderated for non-subscribers)
1610 S:      Maintained
1611 F:      Documentation/devicetree/bindings/arm/actions.yaml
1612 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1613 F:      Documentation/devicetree/bindings/dma/owl-dma.yaml
1614 F:      Documentation/devicetree/bindings/i2c/i2c-owl.yaml
1615 F:      Documentation/devicetree/bindings/interrupt-controller/actions,owl-sirq.yaml
1616 F:      Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1617 F:      Documentation/devicetree/bindings/net/actions,owl-emac.yaml
1618 F:      Documentation/devicetree/bindings/pinctrl/actions,*
1619 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1620 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1621 F:      arch/arm/boot/dts/owl-*
1622 F:      arch/arm/mach-actions/
1623 F:      arch/arm64/boot/dts/actions/
1624 F:      drivers/clk/actions/
1625 F:      drivers/clocksource/timer-owl*
1626 F:      drivers/dma/owl-dma.c
1627 F:      drivers/i2c/busses/i2c-owl.c
1628 F:      drivers/irqchip/irq-owl-sirq.c
1629 F:      drivers/mmc/host/owl-mmc.c
1630 F:      drivers/net/ethernet/actions/
1631 F:      drivers/pinctrl/actions/*
1632 F:      drivers/soc/actions/
1633 F:      include/dt-bindings/power/owl-*
1634 F:      include/dt-bindings/reset/actions,*
1635 F:      include/linux/soc/actions/
1636 N:      owl
1637
1638 ARM/ADS SPHERE MACHINE SUPPORT
1639 M:      Lennert Buytenhek <[email protected]>
1640 L:      [email protected] (moderated for non-subscribers)
1641 S:      Maintained
1642
1643 ARM/AFEB9260 MACHINE SUPPORT
1644 M:      Sergey Lapin <[email protected]>
1645 L:      [email protected] (moderated for non-subscribers)
1646 S:      Maintained
1647
1648 ARM/AJECO 1ARM MACHINE SUPPORT
1649 M:      Lennert Buytenhek <[email protected]>
1650 L:      [email protected] (moderated for non-subscribers)
1651 S:      Maintained
1652
1653 ARM/Allwinner SoC Clock Support
1654 M:      Emilio López <[email protected]>
1655 S:      Maintained
1656 F:      drivers/clk/sunxi/
1657
1658 ARM/Allwinner sunXi SoC support
1659 M:      Maxime Ripard <[email protected]>
1660 M:      Chen-Yu Tsai <[email protected]>
1661 R:      Jernej Skrabec <[email protected]>
1662 L:      [email protected] (moderated for non-subscribers)
1663 S:      Maintained
1664 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1665 L:      [email protected]
1666 F:      arch/arm/mach-sunxi/
1667 F:      arch/arm64/boot/dts/allwinner/
1668 F:      drivers/clk/sunxi-ng/
1669 F:      drivers/pinctrl/sunxi/
1670 F:      drivers/soc/sunxi/
1671 N:      allwinner
1672 N:      sun[x456789]i
1673 N:      sun50i
1674
1675 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1676 M:      Neil Armstrong <[email protected]>
1677 M:      Jerome Brunet <[email protected]>
1678 L:      [email protected]
1679 S:      Maintained
1680 F:      Documentation/devicetree/bindings/clock/amlogic*
1681 F:      drivers/clk/meson/
1682 F:      include/dt-bindings/clock/gxbb*
1683 F:      include/dt-bindings/clock/meson*
1684
1685 ARM/Amlogic Meson SoC Crypto Drivers
1686 M:      Corentin Labbe <[email protected]>
1687 L:      [email protected]
1688 L:      [email protected]
1689 S:      Maintained
1690 F:      Documentation/devicetree/bindings/crypto/amlogic*
1691 F:      drivers/crypto/amlogic/
1692
1693 ARM/Amlogic Meson SoC Sound Drivers
1694 M:      Jerome Brunet <[email protected]>
1695 L:      [email protected] (moderated for non-subscribers)
1696 S:      Maintained
1697 F:      Documentation/devicetree/bindings/sound/amlogic*
1698 F:      sound/soc/meson/
1699
1700 ARM/Amlogic Meson SoC support
1701 M:      Neil Armstrong <[email protected]>
1702 M:      Kevin Hilman <[email protected]>
1703 R:      Jerome Brunet <[email protected]>
1704 R:      Martin Blumenstingl <[email protected]>
1705 L:      [email protected] (moderated for non-subscribers)
1706 L:      [email protected]
1707 S:      Maintained
1708 W:      http://linux-meson.com/
1709 F:      arch/arm/boot/dts/meson*
1710 F:      arch/arm/mach-meson/
1711 F:      arch/arm64/boot/dts/amlogic/
1712 F:      drivers/mmc/host/meson*
1713 F:      drivers/pinctrl/meson/
1714 F:      drivers/rtc/rtc-meson*
1715 F:      drivers/soc/amlogic/
1716 N:      meson
1717
1718 ARM/Annapurna Labs ALPINE ARCHITECTURE
1719 M:      Tsahee Zidenberg <[email protected]>
1720 M:      Antoine Tenart <[email protected]>
1721 L:      [email protected] (moderated for non-subscribers)
1722 S:      Maintained
1723 F:      arch/arm/boot/dts/alpine*
1724 F:      arch/arm/mach-alpine/
1725 F:      arch/arm64/boot/dts/amazon/
1726 F:      drivers/*/*alpine*
1727
1728 ARM/APPLE MACHINE SUPPORT
1729 M:      Hector Martin <[email protected]>
1730 M:      Sven Peter <[email protected]>
1731 R:      Alyssa Rosenzweig <[email protected]>
1732 L:      [email protected] (moderated for non-subscribers)
1733 S:      Maintained
1734 W:      https://asahilinux.org
1735 B:      https://github.com/AsahiLinux/linux/issues
1736 C:      irc://irc.oftc.net/asahi-dev
1737 T:      git https://github.com/AsahiLinux/linux.git
1738 F:      Documentation/devicetree/bindings/arm/apple.yaml
1739 F:      Documentation/devicetree/bindings/interrupt-controller/apple,aic.yaml
1740 F:      Documentation/devicetree/bindings/mailbox/apple,mailbox.yaml
1741 F:      Documentation/devicetree/bindings/pinctrl/apple,pinctrl.yaml
1742 F:      arch/arm64/boot/dts/apple/
1743 F:      drivers/irqchip/irq-apple-aic.c
1744 F:      drivers/mailbox/apple-mailbox.c
1745 F:      include/dt-bindings/interrupt-controller/apple-aic.h
1746 F:      include/dt-bindings/pinctrl/apple.h
1747 F:      include/linux/apple-mailbox.h
1748
1749 ARM/ARTPEC MACHINE SUPPORT
1750 M:      Jesper Nilsson <[email protected]>
1751 M:      Lars Persson <[email protected]>
1752 L:      [email protected]
1753 S:      Maintained
1754 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1755 F:      arch/arm/boot/dts/artpec6*
1756 F:      arch/arm/mach-artpec
1757 F:      drivers/clk/axis
1758 F:      drivers/crypto/axis
1759 F:      drivers/mmc/host/usdhi6rol0.c
1760 F:      drivers/pinctrl/pinctrl-artpec*
1761
1762 ARM/ASPEED I2C DRIVER
1763 M:      Brendan Higgins <[email protected]>
1764 R:      Benjamin Herrenschmidt <[email protected]>
1765 R:      Joel Stanley <[email protected]>
1766 L:      [email protected]
1767 L:      [email protected] (moderated for non-subscribers)
1768 S:      Maintained
1769 F:      Documentation/devicetree/bindings/i2c/i2c-aspeed.txt
1770 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1771 F:      drivers/i2c/busses/i2c-aspeed.c
1772 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1773
1774 ARM/ASPEED MACHINE SUPPORT
1775 M:      Joel Stanley <[email protected]>
1776 R:      Andrew Jeffery <[email protected]>
1777 L:      [email protected] (moderated for non-subscribers)
1778 L:      [email protected] (moderated for non-subscribers)
1779 S:      Supported
1780 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
1781 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1782 F:      arch/arm/boot/dts/aspeed-*
1783 F:      arch/arm/mach-aspeed/
1784 N:      aspeed
1785
1786 ARM/BITMAIN ARCHITECTURE
1787 M:      Manivannan Sadhasivam <[email protected]>
1788 L:      [email protected] (moderated for non-subscribers)
1789 S:      Maintained
1790 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
1791 F:      Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
1792 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1793 F:      arch/arm64/boot/dts/bitmain/
1794 F:      drivers/clk/clk-bm1880.c
1795 F:      drivers/pinctrl/pinctrl-bm1880.c
1796
1797 ARM/CALXEDA HIGHBANK ARCHITECTURE
1798 M:      Andre Przywara <[email protected]>
1799 L:      [email protected] (moderated for non-subscribers)
1800 S:      Maintained
1801 F:      arch/arm/boot/dts/ecx-*.dts*
1802 F:      arch/arm/boot/dts/highbank.dts
1803 F:      arch/arm/mach-highbank/
1804
1805 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1806 M:      Krzysztof Halasa <[email protected]>
1807 S:      Maintained
1808 F:      arch/arm/mach-cns3xxx/
1809
1810 ARM/CAVIUM THUNDER NETWORK DRIVER
1811 M:      Sunil Goutham <[email protected]>
1812 L:      [email protected] (moderated for non-subscribers)
1813 S:      Supported
1814 F:      drivers/net/ethernet/cavium/thunder/
1815
1816 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1817 M:      Lukasz Majewski <[email protected]>
1818 L:      [email protected] (moderated for non-subscribers)
1819 S:      Maintained
1820 F:      arch/arm/mach-ep93xx/ts72xx.c
1821
1822 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1823 M:      Alexander Shiyan <[email protected]>
1824 L:      [email protected] (moderated for non-subscribers)
1825 S:      Odd Fixes
1826 N:      clps711x
1827
1828 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1829 M:      Lennert Buytenhek <[email protected]>
1830 L:      [email protected] (moderated for non-subscribers)
1831 S:      Maintained
1832
1833 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1834 M:      Hartley Sweeten <[email protected]>
1835 M:      Alexander Sverdlin <[email protected]>
1836 L:      [email protected] (moderated for non-subscribers)
1837 S:      Maintained
1838 F:      arch/arm/mach-ep93xx/
1839 F:      arch/arm/mach-ep93xx/include/mach/
1840
1841 ARM/CLKDEV SUPPORT
1842 M:      Russell King <[email protected]>
1843 L:      [email protected] (moderated for non-subscribers)
1844 S:      Maintained
1845 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1846 F:      drivers/clk/clkdev.c
1847
1848 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1849 M:      Baruch Siach <[email protected]>
1850 L:      [email protected] (moderated for non-subscribers)
1851 S:      Maintained
1852 F:      arch/arm/boot/dts/cx92755*
1853 N:      digicolor
1854
1855 ARM/CONTEC MICRO9 MACHINE SUPPORT
1856 M:      Hubert Feurstein <[email protected]>
1857 S:      Maintained
1858 F:      arch/arm/mach-ep93xx/micro9.c
1859
1860 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1861 M:      Mathieu Poirier <[email protected]>
1862 M:      Suzuki K Poulose <[email protected]>
1863 R:      Mike Leach <[email protected]>
1864 R:      Leo Yan <[email protected]>
1865 L:      [email protected] (moderated for non-subscribers)
1866 L:      [email protected] (moderated for non-subscribers)
1867 S:      Maintained
1868 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/coresight/linux.git
1869 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1870 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1871 F:      Documentation/devicetree/bindings/arm/coresight-cti.yaml
1872 F:      Documentation/devicetree/bindings/arm/coresight.txt
1873 F:      Documentation/devicetree/bindings/arm/ete.yaml
1874 F:      Documentation/devicetree/bindings/arm/trbe.yaml
1875 F:      Documentation/trace/coresight/*
1876 F:      drivers/hwtracing/coresight/*
1877 F:      include/dt-bindings/arm/coresight-cti-dt.h
1878 F:      include/linux/coresight*
1879 F:      tools/perf/arch/arm/util/auxtrace.c
1880 F:      tools/perf/arch/arm/util/cs-etm.c
1881 F:      tools/perf/arch/arm/util/cs-etm.h
1882 F:      tools/perf/arch/arm/util/pmu.c
1883 F:      tools/perf/util/cs-etm-decoder/*
1884 F:      tools/perf/util/cs-etm.*
1885
1886 ARM/CORGI MACHINE SUPPORT
1887 M:      Richard Purdie <[email protected]>
1888 S:      Maintained
1889
1890 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1891 M:      Hans Ulli Kroll <[email protected]>
1892 M:      Linus Walleij <[email protected]>
1893 L:      [email protected] (moderated for non-subscribers)
1894 S:      Maintained
1895 T:      git git://github.com/ulli-kroll/linux.git
1896 F:      Documentation/devicetree/bindings/arm/gemini.txt
1897 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
1898 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1899 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.txt
1900 F:      arch/arm/boot/dts/gemini*
1901 F:      arch/arm/mach-gemini/
1902 F:      drivers/crypto/gemini/
1903 F:      drivers/net/ethernet/cortina/
1904 F:      drivers/pinctrl/pinctrl-gemini.c
1905 F:      drivers/rtc/rtc-ftrtc010.c
1906
1907 ARM/CZ.NIC TURRIS SUPPORT
1908 M:      Marek Behún <[email protected]>
1909 S:      Maintained
1910 W:      https://www.turris.cz/
1911 F:      Documentation/ABI/testing/debugfs-moxtet
1912 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
1913 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
1914 F:      Documentation/devicetree/bindings/bus/moxtet.txt
1915 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
1916 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
1917 F:      Documentation/devicetree/bindings/leds/cznic,turris-omnia-leds.yaml
1918 F:      Documentation/devicetree/bindings/watchdog/armada-37xx-wdt.txt
1919 F:      drivers/bus/moxtet.c
1920 F:      drivers/firmware/turris-mox-rwtm.c
1921 F:      drivers/leds/leds-turris-omnia.c
1922 F:      drivers/mailbox/armada-37xx-rwtm-mailbox.c
1923 F:      drivers/gpio/gpio-moxtet.c
1924 F:      drivers/watchdog/armada_37xx_wdt.c
1925 F:      include/dt-bindings/bus/moxtet.h
1926 F:      include/linux/armada-37xx-rwtm-mailbox.h
1927 F:      include/linux/moxtet.h
1928
1929 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1930 M:      Robert Jarzmik <[email protected]>
1931 L:      [email protected] (moderated for non-subscribers)
1932 S:      Maintained
1933 F:      arch/arm/mach-pxa/ezx.c
1934
1935 ARM/FARADAY FA526 PORT
1936 M:      Hans Ulli Kroll <[email protected]>
1937 L:      [email protected] (moderated for non-subscribers)
1938 S:      Maintained
1939 T:      git git://git.berlios.de/gemini-board
1940 F:      arch/arm/mm/*-fa*
1941
1942 ARM/FOOTBRIDGE ARCHITECTURE
1943 M:      Russell King <[email protected]>
1944 L:      [email protected] (moderated for non-subscribers)
1945 S:      Maintained
1946 W:      http://www.armlinux.org.uk/
1947 F:      arch/arm/include/asm/hardware/dec21285.h
1948 F:      arch/arm/mach-footbridge/
1949
1950 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1951 M:      Shawn Guo <[email protected]>
1952 M:      Sascha Hauer <[email protected]>
1953 R:      Pengutronix Kernel Team <[email protected]>
1954 R:      Fabio Estevam <[email protected]>
1955 R:      NXP Linux Team <[email protected]>
1956 L:      [email protected] (moderated for non-subscribers)
1957 S:      Maintained
1958 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1959 X:      drivers/media/i2c/
1960 N:      imx
1961 N:      mxs
1962
1963 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
1964 M:      Shawn Guo <[email protected]>
1965 M:      Li Yang <[email protected]>
1966 L:      [email protected] (moderated for non-subscribers)
1967 S:      Maintained
1968 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1969 F:      arch/arm/boot/dts/ls1021a*
1970 F:      arch/arm64/boot/dts/freescale/fsl-*
1971 F:      arch/arm64/boot/dts/freescale/qoriq-*
1972
1973 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1974 M:      Shawn Guo <[email protected]>
1975 M:      Sascha Hauer <[email protected]>
1976 R:      Pengutronix Kernel Team <[email protected]>
1977 R:      Stefan Agner <[email protected]>
1978 L:      [email protected] (moderated for non-subscribers)
1979 S:      Maintained
1980 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1981 F:      arch/arm/boot/dts/vf*
1982 F:      arch/arm/mach-imx/*vf610*
1983
1984 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1985 M:      Lennert Buytenhek <[email protected]>
1986 L:      [email protected] (moderated for non-subscribers)
1987 S:      Maintained
1988
1989 ARM/GUMSTIX MACHINE SUPPORT
1990 M:      Steve Sakoman <[email protected]>
1991 L:      [email protected] (moderated for non-subscribers)
1992 S:      Maintained
1993
1994 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1995 M:      Philipp Zabel <[email protected]>
1996 M:      Paul Parsons <[email protected]>
1997 L:      [email protected] (moderated for non-subscribers)
1998 S:      Maintained
1999 F:      arch/arm/mach-pxa/hx4700.c
2000 F:      arch/arm/mach-pxa/include/mach/hx4700.h
2001 F:      sound/soc/pxa/hx4700.c
2002
2003 ARM/HISILICON SOC SUPPORT
2004 M:      Wei Xu <[email protected]>
2005 L:      [email protected] (moderated for non-subscribers)
2006 S:      Supported
2007 W:      http://www.hisilicon.com
2008 T:      git git://github.com/hisilicon/linux-hisi.git
2009 F:      arch/arm/boot/dts/hi3*
2010 F:      arch/arm/boot/dts/hip*
2011 F:      arch/arm/boot/dts/hisi*
2012 F:      arch/arm/mach-hisi/
2013 F:      arch/arm64/boot/dts/hisilicon/
2014
2015 ARM/HP JORNADA 7XX MACHINE SUPPORT
2016 M:      Kristoffer Ericson <[email protected]>
2017 S:      Maintained
2018 W:      www.jlime.com
2019 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
2020 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
2021 F:      arch/arm/mach-sa1100/jornada720.c
2022
2023 ARM/IGEP MACHINE SUPPORT
2024 M:      Enric Balletbo i Serra <[email protected]>
2025 M:      Javier Martinez Canillas <[email protected]>
2026 L:      [email protected]
2027 L:      [email protected] (moderated for non-subscribers)
2028 S:      Maintained
2029 F:      arch/arm/boot/dts/omap3-igep*
2030
2031 ARM/INCOME PXA270 SUPPORT
2032 M:      Marek Vasut <[email protected]>
2033 L:      [email protected] (moderated for non-subscribers)
2034 S:      Maintained
2035 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
2036
2037 ARM/INTEL IOP32X ARM ARCHITECTURE
2038 M:      Lennert Buytenhek <[email protected]>
2039 L:      [email protected] (moderated for non-subscribers)
2040 S:      Maintained
2041
2042 ARM/INTEL IQ81342EX MACHINE SUPPORT
2043 M:      Lennert Buytenhek <[email protected]>
2044 L:      [email protected] (moderated for non-subscribers)
2045 S:      Maintained
2046
2047 ARM/INTEL IXDP2850 MACHINE SUPPORT
2048 M:      Lennert Buytenhek <[email protected]>
2049 L:      [email protected] (moderated for non-subscribers)
2050 S:      Maintained
2051
2052 ARM/INTEL IXP4XX ARM ARCHITECTURE
2053 M:      Linus Walleij <[email protected]>
2054 M:      Imre Kaloz <[email protected]>
2055 M:      Krzysztof Halasa <[email protected]>
2056 L:      [email protected] (moderated for non-subscribers)
2057 S:      Maintained
2058 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
2059 F:      Documentation/devicetree/bindings/bus/intel,ixp4xx-expansion-bus-controller.yaml
2060 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
2061 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
2062 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
2063 F:      arch/arm/mach-ixp4xx/
2064 F:      drivers/bus/intel-ixp4xx-eb.c
2065 F:      drivers/clocksource/timer-ixp4xx.c
2066 F:      drivers/crypto/ixp4xx_crypto.c
2067 F:      drivers/gpio/gpio-ixp4xx.c
2068 F:      drivers/irqchip/irq-ixp4xx.c
2069 F:      include/linux/irqchip/irq-ixp4xx.h
2070 F:      include/linux/platform_data/timer-ixp4xx.h
2071
2072 ARM/INTEL KEEMBAY ARCHITECTURE
2073 M:      Paul J. Murphy <[email protected]>
2074 M:      Daniele Alessandrelli <[email protected]>
2075 S:      Maintained
2076 F:      Documentation/devicetree/bindings/arm/intel,keembay.yaml
2077 F:      arch/arm64/boot/dts/intel/keembay-evm.dts
2078 F:      arch/arm64/boot/dts/intel/keembay-soc.dtsi
2079
2080 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
2081 M:      Jonathan Cameron <[email protected]>
2082 L:      [email protected] (moderated for non-subscribers)
2083 S:      Maintained
2084 F:      arch/arm/mach-pxa/stargate2.c
2085 F:      drivers/pcmcia/pxa2xx_stargate2.c
2086
2087 ARM/INTEL XSC3 (MANZANO) ARM CORE
2088 M:      Lennert Buytenhek <[email protected]>
2089 L:      [email protected] (moderated for non-subscribers)
2090 S:      Maintained
2091
2092 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
2093 M:      Lennert Buytenhek <[email protected]>
2094 L:      [email protected] (moderated for non-subscribers)
2095 S:      Maintained
2096
2097 ARM/LG1K ARCHITECTURE
2098 M:      Chanho Min <[email protected]>
2099 L:      [email protected] (moderated for non-subscribers)
2100 S:      Maintained
2101 F:      arch/arm64/boot/dts/lg/
2102
2103 ARM/LOGICPD PXA270 MACHINE SUPPORT
2104 M:      Lennert Buytenhek <[email protected]>
2105 L:      [email protected] (moderated for non-subscribers)
2106 S:      Maintained
2107
2108 ARM/LPC18XX ARCHITECTURE
2109 M:      Vladimir Zapolskiy <[email protected]>
2110 L:      [email protected] (moderated for non-subscribers)
2111 S:      Maintained
2112 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
2113 F:      arch/arm/boot/dts/lpc43*
2114 F:      drivers/i2c/busses/i2c-lpc2k.c
2115 F:      drivers/memory/pl172.c
2116 F:      drivers/mtd/spi-nor/controllers/nxp-spifi.c
2117 F:      drivers/rtc/rtc-lpc24xx.c
2118 N:      lpc18xx
2119
2120 ARM/LPC32XX SOC SUPPORT
2121 M:      Vladimir Zapolskiy <[email protected]>
2122 L:      [email protected] (moderated for non-subscribers)
2123 S:      Maintained
2124 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
2125 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
2126 F:      arch/arm/boot/dts/lpc32*
2127 F:      arch/arm/mach-lpc32xx/
2128 F:      drivers/i2c/busses/i2c-pnx.c
2129 F:      drivers/net/ethernet/nxp/lpc_eth.c
2130 F:      drivers/usb/host/ohci-nxp.c
2131 F:      drivers/watchdog/pnx4008_wdt.c
2132 N:      lpc32xx
2133
2134 ARM/MAGICIAN MACHINE SUPPORT
2135 M:      Philipp Zabel <[email protected]>
2136 S:      Maintained
2137
2138 ARM/Marvell Dove/MV78xx0/Orion SOC support
2139 M:      Andrew Lunn <[email protected]>
2140 M:      Sebastian Hesselbarth <[email protected]>
2141 M:      Gregory Clement <[email protected]>
2142 L:      [email protected] (moderated for non-subscribers)
2143 S:      Maintained
2144 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2145 F:      Documentation/devicetree/bindings/soc/dove/
2146 F:      arch/arm/boot/dts/dove*
2147 F:      arch/arm/boot/dts/orion5x*
2148 F:      arch/arm/mach-dove/
2149 F:      arch/arm/mach-mv78xx0/
2150 F:      arch/arm/mach-orion5x/
2151 F:      arch/arm/plat-orion/
2152 F:      drivers/soc/dove/
2153
2154 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2155 M:      Andrew Lunn <[email protected]>
2156 M:      Gregory Clement <[email protected]>
2157 M:      Sebastian Hesselbarth <[email protected]>
2158 L:      [email protected] (moderated for non-subscribers)
2159 S:      Maintained
2160 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2161 F:      arch/arm/boot/dts/armada*
2162 F:      arch/arm/boot/dts/kirkwood*
2163 F:      arch/arm/configs/mvebu_*_defconfig
2164 F:      arch/arm/mach-mvebu/
2165 F:      arch/arm64/boot/dts/marvell/armada*
2166 F:      arch/arm64/boot/dts/marvell/cn913*
2167 F:      drivers/cpufreq/armada-37xx-cpufreq.c
2168 F:      drivers/cpufreq/armada-8k-cpufreq.c
2169 F:      drivers/cpufreq/mvebu-cpufreq.c
2170 F:      drivers/irqchip/irq-armada-370-xp.c
2171 F:      drivers/irqchip/irq-mvebu-*
2172 F:      drivers/pinctrl/mvebu/
2173 F:      drivers/rtc/rtc-armada38x.c
2174
2175 ARM/Mediatek RTC DRIVER
2176 M:      Eddie Huang <[email protected]>
2177 M:      Sean Wang <[email protected]>
2178 L:      [email protected] (moderated for non-subscribers)
2179 L:      [email protected] (moderated for non-subscribers)
2180 S:      Maintained
2181 F:      Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2182 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2183 F:      drivers/rtc/rtc-mt2712.c
2184 F:      drivers/rtc/rtc-mt6397.c
2185 F:      drivers/rtc/rtc-mt7622.c
2186
2187 ARM/Mediatek SoC support
2188 M:      Matthias Brugger <[email protected]>
2189 L:      [email protected] (moderated for non-subscribers)
2190 L:      [email protected] (moderated for non-subscribers)
2191 S:      Maintained
2192 W:      https://mtk.wiki.kernel.org/
2193 C:      irc://chat.freenode.net/linux-mediatek
2194 F:      arch/arm/boot/dts/mt6*
2195 F:      arch/arm/boot/dts/mt7*
2196 F:      arch/arm/boot/dts/mt8*
2197 F:      arch/arm/mach-mediatek/
2198 F:      arch/arm64/boot/dts/mediatek/
2199 F:      drivers/soc/mediatek/
2200 N:      mtk
2201 N:      mt[678]
2202 K:      mediatek
2203
2204 ARM/Mediatek USB3 PHY DRIVER
2205 M:      Chunfeng Yun <[email protected]>
2206 L:      [email protected] (moderated for non-subscribers)
2207 L:      [email protected] (moderated for non-subscribers)
2208 S:      Maintained
2209 F:      Documentation/devicetree/bindings/phy/mediatek,*
2210 F:      drivers/phy/mediatek/
2211
2212 ARM/Microchip (AT91) SoC support
2213 M:      Nicolas Ferre <[email protected]>
2214 M:      Alexandre Belloni <[email protected]>
2215 M:      Ludovic Desroches <[email protected]>
2216 L:      [email protected] (moderated for non-subscribers)
2217 S:      Supported
2218 W:      http://www.linux4sam.org
2219 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2220 F:      arch/arm/boot/dts/at91*.dts
2221 F:      arch/arm/boot/dts/at91*.dtsi
2222 F:      arch/arm/boot/dts/sama*.dts
2223 F:      arch/arm/boot/dts/sama*.dtsi
2224 F:      arch/arm/include/debug/at91.S
2225 F:      arch/arm/mach-at91/
2226 F:      drivers/memory/atmel*
2227 F:      drivers/watchdog/sama5d4_wdt.c
2228 F:      include/soc/at91/
2229 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2230 X:      drivers/net/wireless/atmel/
2231 N:      at91
2232 N:      atmel
2233
2234 ARM/Microchip Sparx5 SoC support
2235 M:      Lars Povlsen <[email protected]>
2236 M:      Steen Hegelund <[email protected]>
2237 M:      [email protected]
2238 L:      [email protected] (moderated for non-subscribers)
2239 S:      Supported
2240 T:      git git://github.com/microchip-ung/linux-upstream.git
2241 F:      arch/arm64/boot/dts/microchip/
2242 F:      drivers/pinctrl/pinctrl-microchip-sgpio.c
2243 N:      sparx5
2244
2245 Microchip Timer Counter Block (TCB) Capture Driver
2246 M:      Kamel Bouhara <[email protected]>
2247 L:      [email protected] (moderated for non-subscribers)
2248 L:      [email protected]
2249 S:      Maintained
2250 F:      drivers/counter/microchip-tcb-capture.c
2251
2252 ARM/MIOA701 MACHINE SUPPORT
2253 M:      Robert Jarzmik <[email protected]>
2254 L:      [email protected] (moderated for non-subscribers)
2255 S:      Maintained
2256 F:      arch/arm/mach-pxa/mioa701.c
2257
2258 ARM/MStar/Sigmastar Armv7 SoC support
2259 M:      Daniel Palmer <[email protected]>
2260 M:      Romain Perier <[email protected]>
2261 L:      [email protected] (moderated for non-subscribers)
2262 S:      Maintained
2263 W:      http://linux-chenxing.org/
2264 T:      git git://github.com/linux-chenxing/linux.git
2265 F:      Documentation/devicetree/bindings/arm/mstar/*
2266 F:      Documentation/devicetree/bindings/clock/mstar,msc313-mpll.yaml
2267 F:      Documentation/devicetree/bindings/gpio/mstar,msc313-gpio.yaml
2268 F:      arch/arm/boot/dts/mstar-*
2269 F:      arch/arm/mach-mstar/
2270 F:      drivers/clk/mstar/
2271 F:      drivers/gpio/gpio-msc313.c
2272 F:      drivers/watchdog/msc313e_wdt.c
2273 F:      include/dt-bindings/clock/mstar-*
2274 F:      include/dt-bindings/gpio/msc313-gpio.h
2275
2276 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2277 M:      Michael Petchkovsky <[email protected]>
2278 S:      Maintained
2279
2280 ARM/NOMADIK/Ux500 ARCHITECTURES
2281 M:      Linus Walleij <[email protected]>
2282 L:      [email protected] (moderated for non-subscribers)
2283 S:      Maintained
2284 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2285 F:      Documentation/devicetree/bindings/arm/ste-*
2286 F:      Documentation/devicetree/bindings/arm/ux500.yaml
2287 F:      Documentation/devicetree/bindings/arm/ux500/
2288 F:      Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
2289 F:      arch/arm/boot/dts/ste-*
2290 F:      arch/arm/mach-nomadik/
2291 F:      arch/arm/mach-ux500/
2292 F:      drivers/clk/clk-nomadik.c
2293 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2294 F:      drivers/dma/ste_dma40*
2295 F:      drivers/hwspinlock/u8500_hsem.c
2296 F:      drivers/i2c/busses/i2c-nomadik.c
2297 F:      drivers/iio/adc/ab8500-gpadc.c
2298 F:      drivers/mfd/ab8500*
2299 F:      drivers/mfd/abx500*
2300 F:      drivers/mfd/db8500*
2301 F:      drivers/pinctrl/nomadik/
2302 F:      drivers/rtc/rtc-ab8500.c
2303 F:      drivers/rtc/rtc-pl031.c
2304 F:      drivers/soc/ux500/
2305
2306 ARM/NUVOTON NPCM ARCHITECTURE
2307 M:      Avi Fishman <[email protected]>
2308 M:      Tomer Maimon <[email protected]>
2309 M:      Tali Perry <[email protected]>
2310 R:      Patrick Venture <[email protected]>
2311 R:      Nancy Yuen <[email protected]>
2312 R:      Benjamin Fair <[email protected]>
2313 L:      [email protected] (moderated for non-subscribers)
2314 S:      Supported
2315 F:      Documentation/devicetree/bindings/*/*/*npcm*
2316 F:      Documentation/devicetree/bindings/*/*npcm*
2317 F:      arch/arm/boot/dts/nuvoton-npcm*
2318 F:      arch/arm/mach-npcm/
2319 F:      drivers/*/*npcm*
2320 F:      drivers/*/*/*npcm*
2321 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2322
2323 ARM/NUVOTON WPCM450 ARCHITECTURE
2324 M:      Jonathan Neuschäfer <[email protected]>
2325 L:      [email protected] (moderated for non-subscribers)
2326 S:      Maintained
2327 F:      Documentation/devicetree/bindings/*/*wpcm*
2328 F:      arch/arm/boot/dts/nuvoton-wpcm450*
2329 F:      arch/arm/mach-npcm/wpcm450.c
2330 F:      drivers/*/*wpcm*
2331
2332 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2333 L:      [email protected] (subscribers-only)
2334 S:      Orphan
2335 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
2336 F:      arch/arm/mach-s3c/gta02.h
2337 F:      arch/arm/mach-s3c/mach-gta02.c
2338
2339 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2340 M:      Alexander Clouter <[email protected]>
2341 L:      [email protected] (moderated for non-subscribers)
2342 S:      Maintained
2343 W:      http://www.digriz.org.uk/ts78xx/kernel
2344 F:      arch/arm/mach-orion5x/ts78xx-*
2345
2346 ARM/OXNAS platform support
2347 M:      Neil Armstrong <[email protected]>
2348 L:      [email protected] (moderated for non-subscribers)
2349 L:      [email protected] (moderated for non-subscribers)
2350 S:      Maintained
2351 F:      arch/arm/boot/dts/ox8*.dts*
2352 F:      arch/arm/mach-oxnas/
2353 F:      drivers/power/reset/oxnas-restart.c
2354 N:      oxnas
2355
2356 ARM/PALM TREO SUPPORT
2357 M:      Tomas Cech <[email protected]>
2358 L:      [email protected] (moderated for non-subscribers)
2359 S:      Maintained
2360 W:      http://hackndev.com
2361 F:      arch/arm/mach-pxa/palmtreo.*
2362
2363 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2364 M:      Marek Vasut <[email protected]>
2365 L:      [email protected] (moderated for non-subscribers)
2366 S:      Maintained
2367 W:      http://hackndev.com
2368 F:      arch/arm/mach-pxa/include/mach/palmld.h
2369 F:      arch/arm/mach-pxa/include/mach/palmtc.h
2370 F:      arch/arm/mach-pxa/include/mach/palmtx.h
2371 F:      arch/arm/mach-pxa/palmld.c
2372 F:      arch/arm/mach-pxa/palmt5.*
2373 F:      arch/arm/mach-pxa/palmtc.c
2374 F:      arch/arm/mach-pxa/palmte2.*
2375 F:      arch/arm/mach-pxa/palmtx.c
2376
2377 ARM/PALMZ72 SUPPORT
2378 M:      Sergey Lapin <[email protected]>
2379 L:      [email protected] (moderated for non-subscribers)
2380 S:      Maintained
2381 W:      http://hackndev.com
2382 F:      arch/arm/mach-pxa/palmz72.*
2383
2384 ARM/PLEB SUPPORT
2385 M:      Peter Chubb <[email protected]>
2386 S:      Maintained
2387 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2388
2389 ARM/PT DIGITAL BOARD PORT
2390 M:      Stefan Eletzhofer <[email protected]>
2391 L:      [email protected] (moderated for non-subscribers)
2392 S:      Maintained
2393 W:      http://www.armlinux.org.uk/
2394
2395 ARM/QUALCOMM SUPPORT
2396 M:      Andy Gross <[email protected]>
2397 M:      Bjorn Andersson <[email protected]>
2398 L:      [email protected]
2399 S:      Maintained
2400 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2401 F:      Documentation/devicetree/bindings/*/qcom*
2402 F:      Documentation/devicetree/bindings/soc/qcom/
2403 F:      arch/arm/boot/dts/qcom-*.dts
2404 F:      arch/arm/boot/dts/qcom-*.dtsi
2405 F:      arch/arm/mach-qcom/
2406 F:      arch/arm64/boot/dts/qcom/
2407 F:      drivers/*/*/qcom*
2408 F:      drivers/*/*/qcom/
2409 F:      drivers/*/pm8???-*
2410 F:      drivers/*/qcom*
2411 F:      drivers/*/qcom/
2412 F:      drivers/bluetooth/btqcomsmd.c
2413 F:      drivers/clocksource/timer-qcom.c
2414 F:      drivers/cpuidle/cpuidle-qcom-spm.c
2415 F:      drivers/extcon/extcon-qcom*
2416 F:      drivers/i2c/busses/i2c-qcom-geni.c
2417 F:      drivers/i2c/busses/i2c-qup.c
2418 F:      drivers/iommu/msm*
2419 F:      drivers/mfd/ssbi.c
2420 F:      drivers/mmc/host/mmci_qcom*
2421 F:      drivers/mmc/host/sdhci-msm.c
2422 F:      drivers/pci/controller/dwc/pcie-qcom.c
2423 F:      drivers/phy/qualcomm/
2424 F:      drivers/power/*/msm*
2425 F:      drivers/reset/reset-qcom-*
2426 F:      drivers/scsi/ufs/ufs-qcom*
2427 F:      drivers/spi/spi-geni-qcom.c
2428 F:      drivers/spi/spi-qcom-qspi.c
2429 F:      drivers/spi/spi-qup.c
2430 F:      drivers/tty/serial/msm_serial.c
2431 F:      drivers/usb/dwc3/dwc3-qcom.c
2432 F:      include/dt-bindings/*/qcom*
2433 F:      include/linux/*/qcom*
2434 F:      include/linux/soc/qcom/
2435
2436 ARM/RADISYS ENP2611 MACHINE SUPPORT
2437 M:      Lennert Buytenhek <[email protected]>
2438 L:      [email protected] (moderated for non-subscribers)
2439 S:      Maintained
2440
2441 ARM/RDA MICRO ARCHITECTURE
2442 M:      Manivannan Sadhasivam <[email protected]>
2443 L:      [email protected] (moderated for non-subscribers)
2444 L:      [email protected] (moderated for non-subscribers)
2445 S:      Maintained
2446 F:      Documentation/devicetree/bindings/arm/rda.yaml
2447 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2448 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2449 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.txt
2450 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt
2451 F:      arch/arm/boot/dts/rda8810pl-*
2452 F:      drivers/clocksource/timer-rda.c
2453 F:      drivers/gpio/gpio-rda.c
2454 F:      drivers/irqchip/irq-rda-intc.c
2455 F:      drivers/tty/serial/rda-uart.c
2456
2457 ARM/REALTEK ARCHITECTURE
2458 M:      Andreas Färber <[email protected]>
2459 L:      [email protected] (moderated for non-subscribers)
2460 L:      [email protected] (moderated for non-subscribers)
2461 S:      Maintained
2462 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2463 F:      arch/arm/boot/dts/rtd*
2464 F:      arch/arm/mach-realtek/
2465 F:      arch/arm64/boot/dts/realtek/
2466
2467 ARM/RENESAS ARM64 ARCHITECTURE
2468 M:      Geert Uytterhoeven <[email protected]>
2469 M:      Magnus Damm <[email protected]>
2470 L:      [email protected]
2471 S:      Supported
2472 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2473 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2474 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2475 F:      arch/arm64/boot/dts/renesas/
2476 F:      drivers/soc/renesas/
2477 F:      include/linux/soc/renesas/
2478
2479 ARM/RISCPC ARCHITECTURE
2480 M:      Russell King <[email protected]>
2481 L:      [email protected] (moderated for non-subscribers)
2482 S:      Maintained
2483 W:      http://www.armlinux.org.uk/
2484 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
2485 F:      arch/arm/include/asm/hardware/ioc.h
2486 F:      arch/arm/include/asm/hardware/iomd.h
2487 F:      arch/arm/include/asm/hardware/memc.h
2488 F:      arch/arm/mach-rpc/
2489 F:      drivers/net/ethernet/8390/etherh.c
2490 F:      drivers/net/ethernet/i825xx/ether1*
2491 F:      drivers/net/ethernet/seeq/ether3*
2492 F:      drivers/scsi/arm/
2493
2494 ARM/Rockchip SoC support
2495 M:      Heiko Stuebner <[email protected]>
2496 L:      [email protected] (moderated for non-subscribers)
2497 L:      [email protected]
2498 S:      Maintained
2499 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2500 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2501 F:      Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2502 F:      Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2503 F:      arch/arm/boot/dts/rk3*
2504 F:      arch/arm/boot/dts/rv1108*
2505 F:      arch/arm/mach-rockchip/
2506 F:      drivers/*/*/*rockchip*
2507 F:      drivers/*/*rockchip*
2508 F:      drivers/clk/rockchip/
2509 F:      drivers/i2c/busses/i2c-rk3x.c
2510 F:      sound/soc/rockchip/
2511 N:      rockchip
2512
2513 ARM/SAMSUNG S3C, S5P AND EXYNOS ARM ARCHITECTURES
2514 M:      Krzysztof Kozlowski <[email protected]>
2515 L:      [email protected] (moderated for non-subscribers)
2516 L:      [email protected]
2517 S:      Maintained
2518 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2519 F:      Documentation/arm/samsung/
2520 F:      Documentation/devicetree/bindings/arm/samsung/
2521 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2522 F:      arch/arm/boot/dts/exynos*
2523 F:      arch/arm/boot/dts/s3c*
2524 F:      arch/arm/boot/dts/s5p*
2525 F:      arch/arm/mach-exynos*/
2526 F:      arch/arm/mach-s3c/
2527 F:      arch/arm/mach-s5p*/
2528 F:      arch/arm64/boot/dts/exynos/
2529 F:      drivers/*/*/*s3c24*
2530 F:      drivers/*/*s3c24*
2531 F:      drivers/*/*s3c64xx*
2532 F:      drivers/*/*s5pv210*
2533 F:      drivers/clocksource/samsung_pwm_timer.c
2534 F:      drivers/memory/samsung/
2535 F:      drivers/pwm/pwm-samsung.c
2536 F:      drivers/soc/samsung/
2537 F:      drivers/tty/serial/samsung*
2538 F:      include/clocksource/samsung_pwm.h
2539 F:      include/linux/platform_data/*s3c*
2540 F:      include/linux/serial_s3c.h
2541 F:      include/linux/soc/samsung/
2542 N:      exynos
2543 N:      s3c2410
2544 N:      s3c64xx
2545 N:      s5pv210
2546
2547 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2548 M:      Andrzej Hajda <[email protected]>
2549 L:      [email protected] (moderated for non-subscribers)
2550 L:      [email protected]
2551 S:      Maintained
2552 F:      drivers/media/platform/s5p-g2d/
2553
2554 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2555 M:      Marek Szyprowski <[email protected]>
2556 L:      [email protected]
2557 L:      [email protected]
2558 S:      Maintained
2559 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2560 F:      drivers/media/cec/platform/s5p/
2561
2562 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2563 M:      Andrzej Pietrasiewicz <[email protected]>
2564 M:      Jacek Anaszewski <[email protected]>
2565 M:      Sylwester Nawrocki <[email protected]>
2566 L:      [email protected] (moderated for non-subscribers)
2567 L:      [email protected]
2568 S:      Maintained
2569 F:      drivers/media/platform/s5p-jpeg/
2570
2571 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2572 M:      Andrzej Hajda <[email protected]>
2573 L:      [email protected] (moderated for non-subscribers)
2574 L:      [email protected]
2575 S:      Maintained
2576 F:      drivers/media/platform/s5p-mfc/
2577
2578 ARM/SHMOBILE ARM ARCHITECTURE
2579 M:      Geert Uytterhoeven <[email protected]>
2580 M:      Magnus Damm <[email protected]>
2581 L:      [email protected]
2582 S:      Supported
2583 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2584 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2585 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2586 F:      arch/arm/boot/dts/emev2*
2587 F:      arch/arm/boot/dts/gr-peach*
2588 F:      arch/arm/boot/dts/iwg20d-q7*
2589 F:      arch/arm/boot/dts/r7s*
2590 F:      arch/arm/boot/dts/r8a*
2591 F:      arch/arm/boot/dts/r9a*
2592 F:      arch/arm/boot/dts/sh*
2593 F:      arch/arm/configs/shmobile_defconfig
2594 F:      arch/arm/include/debug/renesas-scif.S
2595 F:      arch/arm/mach-shmobile/
2596 F:      drivers/soc/renesas/
2597 F:      include/linux/soc/renesas/
2598
2599 ARM/SOCFPGA ARCHITECTURE
2600 M:      Dinh Nguyen <[email protected]>
2601 S:      Maintained
2602 W:      http://www.rocketboards.org
2603 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2604 F:      arch/arm/boot/dts/socfpga*
2605 F:      arch/arm/configs/socfpga_defconfig
2606 F:      arch/arm/mach-socfpga/
2607 F:      arch/arm64/boot/dts/altera/
2608 F:      arch/arm64/boot/dts/intel/
2609
2610 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2611 M:      Dinh Nguyen <[email protected]>
2612 S:      Maintained
2613 F:      drivers/clk/socfpga/
2614
2615 ARM/SOCFPGA EDAC SUPPORT
2616 M:      Dinh Nguyen <[email protected]>
2617 S:      Maintained
2618 F:      drivers/edac/altera_edac.[ch]
2619
2620 ARM/SPREADTRUM SoC SUPPORT
2621 M:      Orson Zhai <[email protected]>
2622 M:      Baolin Wang <[email protected]>
2623 M:      Chunyan Zhang <[email protected]>
2624 S:      Maintained
2625 F:      arch/arm64/boot/dts/sprd
2626 N:      sprd
2627 N:      sc27xx
2628 N:      sc2731
2629
2630 ARM/STI ARCHITECTURE
2631 M:      Patrice Chotard <[email protected]>
2632 L:      [email protected] (moderated for non-subscribers)
2633 S:      Maintained
2634 W:      http://www.stlinux.com
2635 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2636 F:      arch/arm/boot/dts/sti*
2637 F:      arch/arm/mach-sti/
2638 F:      drivers/ata/ahci_st.c
2639 F:      drivers/char/hw_random/st-rng.c
2640 F:      drivers/clocksource/arm_global_timer.c
2641 F:      drivers/clocksource/clksrc_st_lpc.c
2642 F:      drivers/cpufreq/sti-cpufreq.c
2643 F:      drivers/dma/st_fdma*
2644 F:      drivers/i2c/busses/i2c-st.c
2645 F:      drivers/media/platform/sti/c8sectpfe/
2646 F:      drivers/media/rc/st_rc.c
2647 F:      drivers/mmc/host/sdhci-st.c
2648 F:      drivers/phy/st/phy-miphy28lp.c
2649 F:      drivers/phy/st/phy-stih407-usb.c
2650 F:      drivers/pinctrl/pinctrl-st.c
2651 F:      drivers/remoteproc/st_remoteproc.c
2652 F:      drivers/remoteproc/st_slim_rproc.c
2653 F:      drivers/reset/sti/
2654 F:      drivers/rtc/rtc-st-lpc.c
2655 F:      drivers/tty/serial/st-asc.c
2656 F:      drivers/usb/dwc3/dwc3-st.c
2657 F:      drivers/usb/host/ehci-st.c
2658 F:      drivers/usb/host/ohci-st.c
2659 F:      drivers/watchdog/st_lpc_wdt.c
2660 F:      include/linux/remoteproc/st_slim_rproc.h
2661
2662 ARM/STM32 ARCHITECTURE
2663 M:      Maxime Coquelin <[email protected]>
2664 M:      Alexandre Torgue <[email protected]>
2665 L:      [email protected] (moderated for non-subscribers)
2666 L:      [email protected] (moderated for non-subscribers)
2667 S:      Maintained
2668 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2669 F:      arch/arm/boot/dts/stm32*
2670 F:      arch/arm/mach-stm32/
2671 F:      drivers/clocksource/armv7m_systick.c
2672 N:      stm32
2673 N:      stm
2674
2675 ARM/Synaptics SoC support
2676 M:      Jisheng Zhang <[email protected]>
2677 M:      Sebastian Hesselbarth <[email protected]>
2678 L:      [email protected] (moderated for non-subscribers)
2679 S:      Maintained
2680 F:      arch/arm/boot/dts/berlin*
2681 F:      arch/arm/mach-berlin/
2682 F:      arch/arm64/boot/dts/synaptics/
2683
2684 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2685 M:      Lennert Buytenhek <[email protected]>
2686 L:      [email protected] (moderated for non-subscribers)
2687 S:      Maintained
2688
2689 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2690 M:      Hans Verkuil <[email protected]>
2691 L:      [email protected]
2692 L:      [email protected]
2693 S:      Maintained
2694 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2695 F:      drivers/media/cec/platform/tegra/
2696
2697 ARM/TETON BGA MACHINE SUPPORT
2698 M:      "Mark F. Brown" <[email protected]>
2699 L:      [email protected] (moderated for non-subscribers)
2700 S:      Maintained
2701
2702 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2703 M:      Santosh Shilimkar <[email protected]>
2704 L:      [email protected]
2705 S:      Maintained
2706 F:      drivers/memory/*emif*
2707
2708 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2709 M:      Santosh Shilimkar <[email protected]>
2710 L:      [email protected] (moderated for non-subscribers)
2711 S:      Maintained
2712 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
2713 F:      arch/arm/boot/dts/keystone-*
2714 F:      arch/arm/mach-keystone/
2715
2716 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2717 M:      Santosh Shilimkar <[email protected]>
2718 L:      [email protected]
2719 S:      Maintained
2720 F:      drivers/clk/keystone/
2721
2722 ARM/TEXAS INSTRUMENT KEYSTONE CLOCKSOURCE
2723 M:      Santosh Shilimkar <[email protected]>
2724 L:      [email protected] (moderated for non-subscribers)
2725 L:      [email protected]
2726 S:      Maintained
2727 F:      drivers/clocksource/timer-keystone.c
2728
2729 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2730 M:      Santosh Shilimkar <[email protected]>
2731 L:      [email protected]
2732 S:      Maintained
2733 F:      drivers/power/reset/keystone-reset.c
2734
2735 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2736 M:      Nishanth Menon <[email protected]>
2737 M:      Vignesh Raghavendra <[email protected]>
2738 M:      Tero Kristo <[email protected]>
2739 L:      [email protected] (moderated for non-subscribers)
2740 S:      Supported
2741 F:      Documentation/devicetree/bindings/arm/ti/k3.yaml
2742 F:      arch/arm64/boot/dts/ti/Makefile
2743 F:      arch/arm64/boot/dts/ti/k3-*
2744 F:      include/dt-bindings/pinctrl/k3.h
2745
2746 ARM/THECUS N2100 MACHINE SUPPORT
2747 M:      Lennert Buytenhek <[email protected]>
2748 L:      [email protected] (moderated for non-subscribers)
2749 S:      Maintained
2750
2751 ARM/TOSA MACHINE SUPPORT
2752 M:      Dmitry Eremin-Solenikov <[email protected]>
2753 M:      Dirk Opfer <[email protected]>
2754 S:      Maintained
2755
2756 ARM/TOSHIBA VISCONTI ARCHITECTURE
2757 M:      Nobuhiro Iwamatsu <[email protected]>
2758 L:      [email protected] (moderated for non-subscribers)
2759 S:      Supported
2760 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwamatsu/linux-visconti.git
2761 F:      Documentation/devicetree/bindings/arm/toshiba.yaml
2762 F:      Documentation/devicetree/bindings/net/toshiba,visconti-dwmac.yaml
2763 F:      Documentation/devicetree/bindings/gpio/toshiba,gpio-visconti.yaml
2764 F:      Documentation/devicetree/bindings/pci/toshiba,visconti-pcie.yaml
2765 F:      Documentation/devicetree/bindings/pinctrl/toshiba,tmpv7700-pinctrl.yaml
2766 F:      Documentation/devicetree/bindings/watchdog/toshiba,visconti-wdt.yaml
2767 F:      arch/arm64/boot/dts/toshiba/
2768 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-visconti.c
2769 F:      drivers/gpio/gpio-visconti.c
2770 F:      drivers/pci/controller/dwc/pcie-visconti.c
2771 F:      drivers/pinctrl/visconti/
2772 F:      drivers/watchdog/visconti_wdt.c
2773 N:      visconti
2774
2775 ARM/UNIPHIER ARCHITECTURE
2776 M:      Kunihiko Hayashi <[email protected]>
2777 M:      Masami Hiramatsu <[email protected]>
2778 L:      [email protected] (moderated for non-subscribers)
2779 S:      Maintained
2780 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2781 F:      Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2782 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2783 F:      arch/arm/boot/dts/uniphier*
2784 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2785 F:      arch/arm/mach-uniphier/
2786 F:      arch/arm/mm/cache-uniphier.c
2787 F:      arch/arm64/boot/dts/socionext/uniphier*
2788 F:      drivers/bus/uniphier-system-bus.c
2789 F:      drivers/clk/uniphier/
2790 F:      drivers/dma/uniphier-mdmac.c
2791 F:      drivers/gpio/gpio-uniphier.c
2792 F:      drivers/i2c/busses/i2c-uniphier*
2793 F:      drivers/irqchip/irq-uniphier-aidet.c
2794 F:      drivers/mmc/host/uniphier-sd.c
2795 F:      drivers/pinctrl/uniphier/
2796 F:      drivers/reset/reset-uniphier.c
2797 F:      drivers/tty/serial/8250/8250_uniphier.c
2798 N:      uniphier
2799
2800 ARM/VERSATILE EXPRESS PLATFORM
2801 M:      Liviu Dudau <[email protected]>
2802 M:      Sudeep Holla <[email protected]>
2803 M:      Lorenzo Pieralisi <[email protected]>
2804 L:      [email protected] (moderated for non-subscribers)
2805 S:      Maintained
2806 F:      */*/*/vexpress*
2807 F:      */*/vexpress*
2808 F:      arch/arm/boot/dts/vexpress*
2809 F:      arch/arm/mach-vexpress/
2810 F:      arch/arm64/boot/dts/arm/
2811 F:      drivers/clk/versatile/clk-vexpress-osc.c
2812 F:      drivers/clocksource/timer-versatile.c
2813 N:      mps2
2814
2815 ARM/VFP SUPPORT
2816 M:      Russell King <[email protected]>
2817 L:      [email protected] (moderated for non-subscribers)
2818 S:      Maintained
2819 W:      http://www.armlinux.org.uk/
2820 F:      arch/arm/vfp/
2821
2822 ARM/VOIPAC PXA270 SUPPORT
2823 M:      Marek Vasut <[email protected]>
2824 L:      [email protected] (moderated for non-subscribers)
2825 S:      Maintained
2826 F:      arch/arm/mach-pxa/include/mach/vpac270.h
2827 F:      arch/arm/mach-pxa/vpac270.c
2828
2829 ARM/VT8500 ARM ARCHITECTURE
2830 L:      [email protected] (moderated for non-subscribers)
2831 S:      Orphan
2832 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
2833 F:      arch/arm/mach-vt8500/
2834 F:      drivers/clocksource/timer-vt8500.c
2835 F:      drivers/i2c/busses/i2c-wmt.c
2836 F:      drivers/mmc/host/wmt-sdmmc.c
2837 F:      drivers/pwm/pwm-vt8500.c
2838 F:      drivers/rtc/rtc-vt8500.c
2839 F:      drivers/tty/serial/vt8500_serial.c
2840 F:      drivers/usb/host/ehci-platform.c
2841 F:      drivers/usb/host/uhci-platform.c
2842 F:      drivers/video/fbdev/vt8500lcdfb.*
2843 F:      drivers/video/fbdev/wm8505fb*
2844 F:      drivers/video/fbdev/wmt_ge_rops.*
2845
2846 ARM/ZIPIT Z2 SUPPORT
2847 M:      Marek Vasut <[email protected]>
2848 L:      [email protected] (moderated for non-subscribers)
2849 S:      Maintained
2850 F:      arch/arm/mach-pxa/include/mach/z2.h
2851 F:      arch/arm/mach-pxa/z2.c
2852
2853 ARM/ZYNQ ARCHITECTURE
2854 M:      Michal Simek <[email protected]>
2855 L:      [email protected] (moderated for non-subscribers)
2856 S:      Supported
2857 W:      http://wiki.xilinx.com
2858 T:      git https://github.com/Xilinx/linux-xlnx.git
2859 F:      Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
2860 F:      Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
2861 F:      Documentation/devicetree/bindings/spi/xlnx,zynq-qspi.yaml
2862 F:      arch/arm/mach-zynq/
2863 F:      drivers/clocksource/timer-cadence-ttc.c
2864 F:      drivers/cpuidle/cpuidle-zynq.c
2865 F:      drivers/edac/synopsys_edac.c
2866 F:      drivers/i2c/busses/i2c-cadence.c
2867 F:      drivers/i2c/busses/i2c-xiic.c
2868 F:      drivers/mmc/host/sdhci-of-arasan.c
2869 N:      zynq
2870 N:      xilinx
2871
2872 ARM64 PORT (AARCH64 ARCHITECTURE)
2873 M:      Catalin Marinas <[email protected]>
2874 M:      Will Deacon <[email protected]>
2875 L:      [email protected] (moderated for non-subscribers)
2876 S:      Maintained
2877 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2878 F:      Documentation/arm64/
2879 F:      arch/arm64/
2880 F:      tools/testing/selftests/arm64/
2881 X:      arch/arm64/boot/dts/
2882
2883 ARROW SPEEDCHIPS XRS7000 SERIES ETHERNET SWITCH DRIVER
2884 M:      George McCollister <[email protected]>
2885 L:      [email protected]
2886 S:      Maintained
2887 F:      Documentation/devicetree/bindings/net/dsa/arrow,xrs700x.yaml
2888 F:      drivers/net/dsa/xrs700x/*
2889 F:      net/dsa/tag_xrs700x.c
2890
2891 AS3645A LED FLASH CONTROLLER DRIVER
2892 M:      Sakari Ailus <[email protected]>
2893 L:      [email protected]
2894 S:      Maintained
2895 F:      drivers/leds/flash/leds-as3645a.c
2896
2897 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
2898 M:      Tianshu Qiu <[email protected]>
2899 L:      [email protected]
2900 S:      Maintained
2901 T:      git git://linuxtv.org/media_tree.git
2902 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
2903 F:      drivers/media/i2c/ak7375.c
2904
2905 ASAHI KASEI AK8974 DRIVER
2906 M:      Linus Walleij <[email protected]>
2907 L:      [email protected]
2908 S:      Supported
2909 W:      http://www.akm.com/
2910 F:      drivers/iio/magnetometer/ak8974.c
2911
2912 ASC7621 HARDWARE MONITOR DRIVER
2913 M:      George Joseph <[email protected]>
2914 L:      [email protected]
2915 S:      Maintained
2916 F:      Documentation/hwmon/asc7621.rst
2917 F:      drivers/hwmon/asc7621.c
2918
2919 ASIX AX88796C SPI ETHERNET ADAPTER
2920 M:      Łukasz Stelmach <[email protected]>
2921 S:      Maintained
2922 F:      Documentation/devicetree/bindings/net/asix,ax88796c.yaml
2923 F:      drivers/net/ethernet/asix/ax88796c_*
2924
2925 ASPEED PINCTRL DRIVERS
2926 M:      Andrew Jeffery <[email protected]>
2927 L:      [email protected] (moderated for non-subscribers)
2928 L:      [email protected] (moderated for non-subscribers)
2929 L:      [email protected]
2930 S:      Maintained
2931 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
2932 F:      drivers/pinctrl/aspeed/
2933
2934 ASPEED SCU INTERRUPT CONTROLLER DRIVER
2935 M:      Eddie James <[email protected]>
2936 L:      [email protected] (moderated for non-subscribers)
2937 S:      Maintained
2938 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
2939 F:      drivers/irqchip/irq-aspeed-scu-ic.c
2940 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
2941
2942 ASPEED SD/MMC DRIVER
2943 M:      Andrew Jeffery <[email protected]>
2944 L:      [email protected] (moderated for non-subscribers)
2945 L:      [email protected] (moderated for non-subscribers)
2946 L:      [email protected]
2947 S:      Maintained
2948 F:      Documentation/devicetree/bindings/mmc/aspeed,sdhci.yaml
2949 F:      drivers/mmc/host/sdhci-of-aspeed*
2950
2951 ASPEED VIDEO ENGINE DRIVER
2952 M:      Eddie James <[email protected]>
2953 L:      [email protected]
2954 L:      [email protected] (moderated for non-subscribers)
2955 S:      Maintained
2956 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
2957 F:      drivers/media/platform/aspeed-video.c
2958
2959 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2960 M:      Corentin Chary <[email protected]>
2961 L:      [email protected]
2962 L:      [email protected]
2963 S:      Maintained
2964 W:      http://acpi4asus.sf.net
2965 F:      drivers/platform/x86/asus*.c
2966 F:      drivers/platform/x86/eeepc*.c
2967
2968 ASUS WIRELESS RADIO CONTROL DRIVER
2969 M:      João Paulo Rechi Vita <[email protected]>
2970 L:      [email protected]
2971 S:      Maintained
2972 F:      drivers/platform/x86/asus-wireless.c
2973
2974 ASYMMETRIC KEYS
2975 M:      David Howells <[email protected]>
2976 L:      [email protected]
2977 S:      Maintained
2978 F:      Documentation/crypto/asymmetric-keys.rst
2979 F:      crypto/asymmetric_keys/
2980 F:      include/crypto/pkcs7.h
2981 F:      include/crypto/public_key.h
2982 F:      include/linux/verification.h
2983
2984 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2985 R:      Dan Williams <[email protected]>
2986 S:      Odd fixes
2987 W:      http://sourceforge.net/projects/xscaleiop
2988 F:      Documentation/crypto/async-tx-api.rst
2989 F:      crypto/async_tx/
2990 F:      include/linux/async_tx.h
2991
2992 AT24 EEPROM DRIVER
2993 M:      Bartosz Golaszewski <[email protected]>
2994 L:      [email protected]
2995 S:      Maintained
2996 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
2997 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
2998 F:      drivers/misc/eeprom/at24.c
2999
3000 ATA OVER ETHERNET (AOE) DRIVER
3001 M:      "Justin Sanders" <[email protected]>
3002 S:      Supported
3003 W:      http://www.openaoe.org/
3004 F:      Documentation/admin-guide/aoe/
3005 F:      drivers/block/aoe/
3006
3007 ATC260X PMIC MFD DRIVER
3008 M:      Manivannan Sadhasivam <[email protected]>
3009 M:      Cristian Ciocaltea <[email protected]>
3010 L:      [email protected]
3011 S:      Maintained
3012 F:      Documentation/devicetree/bindings/mfd/actions,atc260x.yaml
3013 F:      drivers/input/misc/atc260x-onkey.c
3014 F:      drivers/mfd/atc260*
3015 F:      drivers/power/reset/atc260x-poweroff.c
3016 F:      drivers/regulator/atc260x-regulator.c
3017 F:      include/linux/mfd/atc260x/*
3018
3019 ATHEROS 71XX/9XXX GPIO DRIVER
3020 M:      Alban Bedel <[email protected]>
3021 S:      Maintained
3022 W:      https://github.com/AlbanBedel/linux
3023 T:      git git://github.com/AlbanBedel/linux
3024 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
3025 F:      drivers/gpio/gpio-ath79.c
3026
3027 ATHEROS 71XX/9XXX USB PHY DRIVER
3028 M:      Alban Bedel <[email protected]>
3029 S:      Maintained
3030 W:      https://github.com/AlbanBedel/linux
3031 T:      git git://github.com/AlbanBedel/linux
3032 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
3033 F:      drivers/phy/qualcomm/phy-ath79-usb.c
3034
3035 ATHEROS ATH GENERIC UTILITIES
3036 M:      Kalle Valo <[email protected]>
3037 L:      [email protected]
3038 S:      Supported
3039 F:      drivers/net/wireless/ath/*
3040
3041 ATHEROS ATH5K WIRELESS DRIVER
3042 M:      Jiri Slaby <[email protected]>
3043 M:      Nick Kossifidis <[email protected]>
3044 M:      Luis Chamberlain <[email protected]>
3045 L:      [email protected]
3046 S:      Maintained
3047 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
3048 F:      drivers/net/wireless/ath/ath5k/
3049
3050 ATHEROS ATH6KL WIRELESS DRIVER
3051 M:      Kalle Valo <[email protected]>
3052 L:      [email protected]
3053 S:      Supported
3054 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
3055 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
3056 F:      drivers/net/wireless/ath/ath6kl/
3057
3058 ATI_REMOTE2 DRIVER
3059 M:      Ville Syrjala <[email protected]>
3060 S:      Maintained
3061 F:      drivers/input/misc/ati_remote2.c
3062
3063 ATK0110 HWMON DRIVER
3064 M:      Luca Tettamanti <[email protected]>
3065 L:      [email protected]
3066 S:      Maintained
3067 F:      drivers/hwmon/asus_atk0110.c
3068
3069 ATLX ETHERNET DRIVERS
3070 M:      Chris Snook <[email protected]>
3071 L:      [email protected]
3072 S:      Maintained
3073 W:      http://sourceforge.net/projects/atl1
3074 W:      http://atl1.sourceforge.net
3075 F:      drivers/net/ethernet/atheros/
3076
3077 ATM
3078 M:      Chas Williams <[email protected]>
3079 L:      [email protected] (moderated for non-subscribers)
3080 L:      [email protected]
3081 S:      Maintained
3082 W:      http://linux-atm.sourceforge.net
3083 F:      drivers/atm/
3084 F:      include/linux/atm*
3085 F:      include/uapi/linux/atm*
3086
3087 ATMEL MACB ETHERNET DRIVER
3088 M:      Nicolas Ferre <[email protected]>
3089 M:      Claudiu Beznea <[email protected]>
3090 S:      Supported
3091 F:      drivers/net/ethernet/cadence/
3092
3093 ATMEL MAXTOUCH DRIVER
3094 M:      Nick Dyer <[email protected]>
3095 S:      Maintained
3096 T:      git git://github.com/ndyer/linux.git
3097 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.yaml
3098 F:      drivers/input/touchscreen/atmel_mxt_ts.c
3099
3100 ATMEL WIRELESS DRIVER
3101 M:      Simon Kelley <[email protected]>
3102 L:      [email protected]
3103 S:      Maintained
3104 W:      http://www.thekelleys.org.uk/atmel
3105 W:      http://atmelwlandriver.sourceforge.net/
3106 F:      drivers/net/wireless/atmel/atmel*
3107
3108 ATOMIC INFRASTRUCTURE
3109 M:      Will Deacon <[email protected]>
3110 M:      Peter Zijlstra <[email protected]>
3111 R:      Boqun Feng <[email protected]>
3112 L:      [email protected]
3113 S:      Maintained
3114 F:      arch/*/include/asm/atomic*.h
3115 F:      include/*/atomic*.h
3116 F:      include/linux/refcount.h
3117 F:      Documentation/atomic_*.txt
3118 F:      scripts/atomic/
3119
3120 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
3121 M:      Bradley Grove <[email protected]>
3122 L:      [email protected]
3123 S:      Supported
3124 W:      http://www.attotech.com
3125 F:      drivers/scsi/esas2r
3126
3127 ATUSB IEEE 802.15.4 RADIO DRIVER
3128 M:      Stefan Schmidt <[email protected]>
3129 L:      [email protected]
3130 S:      Maintained
3131 F:      drivers/net/ieee802154/at86rf230.h
3132 F:      drivers/net/ieee802154/atusb.c
3133 F:      drivers/net/ieee802154/atusb.h
3134
3135 AUDIT SUBSYSTEM
3136 M:      Paul Moore <[email protected]>
3137 M:      Eric Paris <[email protected]>
3138 L:      [email protected] (moderated for non-subscribers)
3139 S:      Supported
3140 W:      https://github.com/linux-audit
3141 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
3142 F:      include/asm-generic/audit_*.h
3143 F:      include/linux/audit.h
3144 F:      include/linux/audit_arch.h
3145 F:      include/uapi/linux/audit.h
3146 F:      kernel/audit*
3147 F:      lib/*audit.c
3148
3149 AUXILIARY DISPLAY DRIVERS
3150 M:      Miguel Ojeda <[email protected]>
3151 S:      Maintained
3152 F:      drivers/auxdisplay/
3153 F:      include/linux/cfag12864b.h
3154
3155 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
3156 M:      Andreas Klinger <[email protected]>
3157 L:      [email protected]
3158 S:      Maintained
3159 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
3160 F:      drivers/iio/adc/hx711.c
3161
3162 AX.25 NETWORK LAYER
3163 M:      Ralf Baechle <[email protected]>
3164 L:      [email protected]
3165 S:      Maintained
3166 W:      http://www.linux-ax25.org/
3167 F:      include/net/ax25.h
3168 F:      include/uapi/linux/ax25.h
3169 F:      net/ax25/
3170
3171 AXENTIA ARM DEVICES
3172 M:      Peter Rosin <[email protected]>
3173 L:      [email protected] (moderated for non-subscribers)
3174 S:      Maintained
3175 F:      arch/arm/boot/dts/at91-linea.dtsi
3176 F:      arch/arm/boot/dts/at91-natte.dtsi
3177 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
3178 F:      arch/arm/boot/dts/at91-tse850-3.dts
3179
3180 AXENTIA ASOC DRIVERS
3181 M:      Peter Rosin <[email protected]>
3182 L:      [email protected] (moderated for non-subscribers)
3183 S:      Maintained
3184 F:      Documentation/devicetree/bindings/sound/axentia,*
3185 F:      sound/soc/atmel/tse850-pcm5142.c
3186
3187 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3188 M:      Nuno Sá <[email protected]>
3189 L:      [email protected]
3190 S:      Supported
3191 W:      http://ez.analog.com/community/linux-device-drivers
3192 F:      Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3193 F:      drivers/hwmon/axi-fan-control.c
3194
3195 AXXIA I2C CONTROLLER
3196 M:      Krzysztof Adamski <[email protected]>
3197 L:      [email protected]
3198 S:      Maintained
3199 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3200 F:      drivers/i2c/busses/i2c-axxia.c
3201
3202 AZ6007 DVB DRIVER
3203 M:      Mauro Carvalho Chehab <[email protected]>
3204 L:      [email protected]
3205 S:      Maintained
3206 W:      https://linuxtv.org
3207 T:      git git://linuxtv.org/media_tree.git
3208 F:      drivers/media/usb/dvb-usb-v2/az6007.c
3209
3210 AZTECH FM RADIO RECEIVER DRIVER
3211 M:      Hans Verkuil <[email protected]>
3212 L:      [email protected]
3213 S:      Maintained
3214 W:      https://linuxtv.org
3215 T:      git git://linuxtv.org/media_tree.git
3216 F:      drivers/media/radio/radio-aztech*
3217
3218 B43 WIRELESS DRIVER
3219 L:      [email protected]
3220 L:      [email protected]
3221 S:      Odd Fixes
3222 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3223 F:      drivers/net/wireless/broadcom/b43/
3224
3225 B43LEGACY WIRELESS DRIVER
3226 M:      Larry Finger <[email protected]>
3227 L:      [email protected]
3228 L:      [email protected]
3229 S:      Maintained
3230 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3231 F:      drivers/net/wireless/broadcom/b43legacy/
3232
3233 BACKLIGHT CLASS/SUBSYSTEM
3234 M:      Lee Jones <[email protected]>
3235 M:      Daniel Thompson <[email protected]>
3236 M:      Jingoo Han <[email protected]>
3237 L:      [email protected]
3238 S:      Maintained
3239 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3240 F:      Documentation/ABI/stable/sysfs-class-backlight
3241 F:      Documentation/ABI/testing/sysfs-class-backlight
3242 F:      Documentation/devicetree/bindings/leds/backlight
3243 F:      drivers/video/backlight/
3244 F:      include/linux/backlight.h
3245 F:      include/linux/pwm_backlight.h
3246
3247 BATMAN ADVANCED
3248 M:      Marek Lindner <[email protected]>
3249 M:      Simon Wunderlich <[email protected]>
3250 M:      Antonio Quartulli <[email protected]>
3251 M:      Sven Eckelmann <[email protected]>
3252 L:      [email protected] (moderated for non-subscribers)
3253 S:      Maintained
3254 W:      https://www.open-mesh.org/
3255 Q:      https://patchwork.open-mesh.org/project/batman/list/
3256 B:      https://www.open-mesh.org/projects/batman-adv/issues
3257 C:      ircs://irc.hackint.org/batadv
3258 T:      git https://git.open-mesh.org/linux-merge.git
3259 F:      Documentation/networking/batman-adv.rst
3260 F:      include/uapi/linux/batadv_packet.h
3261 F:      include/uapi/linux/batman_adv.h
3262 F:      net/batman-adv/
3263
3264 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3265 M:      Thomas Sailer <[email protected]>
3266 L:      [email protected]
3267 S:      Maintained
3268 W:      http://www.baycom.org/~tom/ham/ham.html
3269 F:      drivers/net/hamradio/baycom*
3270
3271 BCACHE (BLOCK LAYER CACHE)
3272 M:      Coly Li <[email protected]>
3273 M:      Kent Overstreet <[email protected]>
3274 L:      [email protected]
3275 S:      Maintained
3276 W:      http://bcache.evilpiepirate.org
3277 C:      irc://irc.oftc.net/bcache
3278 F:      drivers/md/bcache/
3279
3280 BDISP ST MEDIA DRIVER
3281 M:      Fabien Dessenne <[email protected]>
3282 L:      [email protected]
3283 S:      Supported
3284 W:      https://linuxtv.org
3285 T:      git git://linuxtv.org/media_tree.git
3286 F:      drivers/media/platform/sti/bdisp
3287
3288 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3289 M:      Dariusz Marcinkiewicz <[email protected]>
3290 L:      [email protected]
3291 S:      Maintained
3292 F:      drivers/net/ethernet/ec_bhf.c
3293
3294 BEFS FILE SYSTEM
3295 M:      Luis de Bethencourt <[email protected]>
3296 M:      Salah Triki <[email protected]>
3297 S:      Maintained
3298 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3299 F:      Documentation/filesystems/befs.rst
3300 F:      fs/befs/
3301
3302 BFQ I/O SCHEDULER
3303 M:      Paolo Valente <[email protected]>
3304 M:      Jens Axboe <[email protected]>
3305 L:      [email protected]
3306 S:      Maintained
3307 F:      Documentation/block/bfq-iosched.rst
3308 F:      block/bfq-*
3309
3310 BFS FILE SYSTEM
3311 M:      "Tigran A. Aivazian" <[email protected]>
3312 S:      Maintained
3313 F:      Documentation/filesystems/bfs.rst
3314 F:      fs/bfs/
3315 F:      include/uapi/linux/bfs_fs.h
3316
3317 BITMAP API
3318 M:      Yury Norov <[email protected]>
3319 R:      Andy Shevchenko <[email protected]>
3320 R:      Rasmus Villemoes <[email protected]>
3321 S:      Maintained
3322 F:      include/asm-generic/bitops/find.h
3323 F:      include/linux/bitmap.h
3324 F:      lib/bitmap.c
3325 F:      lib/find_bit.c
3326 F:      lib/find_bit_benchmark.c
3327 F:      lib/test_bitmap.c
3328 F:      tools/include/asm-generic/bitops/find.h
3329 F:      tools/include/linux/bitmap.h
3330 F:      tools/lib/bitmap.c
3331 F:      tools/lib/find_bit.c
3332
3333 BLINKM RGB LED DRIVER
3334 M:      Jan-Simon Moeller <[email protected]>
3335 S:      Maintained
3336 F:      drivers/leds/leds-blinkm.c
3337
3338 BLOCK LAYER
3339 M:      Jens Axboe <[email protected]>
3340 L:      [email protected]
3341 S:      Maintained
3342 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3343 F:      block/
3344 F:      drivers/block/
3345 F:      include/linux/blk*
3346 F:      kernel/trace/blktrace.c
3347 F:      lib/sbitmap.c
3348
3349 BLOCK2MTD DRIVER
3350 M:      Joern Engel <[email protected]>
3351 L:      [email protected]
3352 S:      Maintained
3353 F:      drivers/mtd/devices/block2mtd.c
3354
3355 BLUETOOTH DRIVERS
3356 M:      Marcel Holtmann <[email protected]>
3357 M:      Johan Hedberg <[email protected]>
3358 M:      Luiz Augusto von Dentz <[email protected]>
3359 L:      [email protected]
3360 S:      Supported
3361 W:      http://www.bluez.org/
3362 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3363 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3364 F:      drivers/bluetooth/
3365
3366 BLUETOOTH SUBSYSTEM
3367 M:      Marcel Holtmann <[email protected]>
3368 M:      Johan Hedberg <[email protected]>
3369 M:      Luiz Augusto von Dentz <[email protected]>
3370 L:      [email protected]
3371 S:      Supported
3372 W:      http://www.bluez.org/
3373 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3374 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3375 F:      include/net/bluetooth/
3376 F:      net/bluetooth/
3377
3378 BONDING DRIVER
3379 M:      Jay Vosburgh <[email protected]>
3380 M:      Veaceslav Falico <[email protected]>
3381 M:      Andy Gospodarek <[email protected]>
3382 L:      [email protected]
3383 S:      Supported
3384 W:      http://sourceforge.net/projects/bonding/
3385 F:      drivers/net/bonding/
3386 F:      include/net/bonding.h
3387 F:      include/uapi/linux/if_bonding.h
3388
3389 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3390 M:      Dan Robertson <[email protected]>
3391 L:      [email protected]
3392 S:      Maintained
3393 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3394 F:      drivers/iio/accel/bma400*
3395
3396 BPF (Safe dynamic programs and tools)
3397 M:      Alexei Starovoitov <[email protected]>
3398 M:      Daniel Borkmann <[email protected]>
3399 M:      Andrii Nakryiko <[email protected]>
3400 R:      Martin KaFai Lau <[email protected]>
3401 R:      Song Liu <[email protected]>
3402 R:      Yonghong Song <[email protected]>
3403 R:      John Fastabend <[email protected]>
3404 R:      KP Singh <[email protected]>
3405 L:      [email protected]
3406 L:      [email protected]
3407 S:      Supported
3408 W:      https://bpf.io/
3409 Q:      https://patchwork.kernel.org/project/netdevbpf/list/?delegate=121173
3410 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3411 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3412 F:      Documentation/bpf/
3413 F:      Documentation/networking/filter.rst
3414 F:      Documentation/userspace-api/ebpf/
3415 F:      arch/*/net/*
3416 F:      include/linux/bpf*
3417 F:      include/linux/btf*
3418 F:      include/linux/filter.h
3419 F:      include/trace/events/xdp.h
3420 F:      include/uapi/linux/bpf*
3421 F:      include/uapi/linux/btf*
3422 F:      include/uapi/linux/filter.h
3423 F:      kernel/bpf/
3424 F:      kernel/trace/bpf_trace.c
3425 F:      lib/test_bpf.c
3426 F:      net/bpf/
3427 F:      net/core/filter.c
3428 F:      net/sched/act_bpf.c
3429 F:      net/sched/cls_bpf.c
3430 F:      samples/bpf/
3431 F:      scripts/bpf_doc.py
3432 F:      tools/bpf/
3433 F:      tools/lib/bpf/
3434 F:      tools/testing/selftests/bpf/
3435 N:      bpf
3436 K:      bpf
3437
3438 BPF JIT for ARM
3439 M:      Shubham Bansal <[email protected]>
3440 L:      [email protected]
3441 L:      [email protected]
3442 S:      Maintained
3443 F:      arch/arm/net/
3444
3445 BPF JIT for ARM64
3446 M:      Daniel Borkmann <[email protected]>
3447 M:      Alexei Starovoitov <[email protected]>
3448 M:      Zi Shen Lim <[email protected]>
3449 L:      [email protected]
3450 L:      [email protected]
3451 S:      Supported
3452 F:      arch/arm64/net/
3453
3454 BPF JIT for MIPS (32-BIT AND 64-BIT)
3455 M:      Johan Almbladh <[email protected]>
3456 M:      Paul Burton <[email protected]>
3457 L:      [email protected]
3458 L:      [email protected]
3459 S:      Maintained
3460 F:      arch/mips/net/
3461
3462 BPF JIT for NFP NICs
3463 M:      Jakub Kicinski <[email protected]>
3464 L:      [email protected]
3465 L:      [email protected]
3466 S:      Supported
3467 F:      drivers/net/ethernet/netronome/nfp/bpf/
3468
3469 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3470 M:      Naveen N. Rao <[email protected]>
3471 L:      [email protected]
3472 L:      [email protected]
3473 S:      Maintained
3474 F:      arch/powerpc/net/
3475
3476 BPF JIT for RISC-V (32-bit)
3477 M:      Luke Nelson <[email protected]>
3478 M:      Xi Wang <[email protected]>
3479 L:      [email protected]
3480 L:      [email protected]
3481 S:      Maintained
3482 F:      arch/riscv/net/
3483 X:      arch/riscv/net/bpf_jit_comp64.c
3484
3485 BPF JIT for RISC-V (64-bit)
3486 M:      Björn Töpel <[email protected]>
3487 L:      [email protected]
3488 L:      [email protected]
3489 S:      Maintained
3490 F:      arch/riscv/net/
3491 X:      arch/riscv/net/bpf_jit_comp32.c
3492
3493 BPF JIT for S390
3494 M:      Ilya Leoshkevich <[email protected]>
3495 M:      Heiko Carstens <[email protected]>
3496 M:      Vasily Gorbik <[email protected]>
3497 L:      [email protected]
3498 L:      [email protected]
3499 S:      Maintained
3500 F:      arch/s390/net/
3501 X:      arch/s390/net/pnet.c
3502
3503 BPF JIT for SPARC (32-BIT AND 64-BIT)
3504 M:      David S. Miller <[email protected]>
3505 L:      [email protected]
3506 L:      [email protected]
3507 S:      Maintained
3508 F:      arch/sparc/net/
3509
3510 BPF JIT for X86 32-BIT
3511 M:      Wang YanQing <[email protected]>
3512 L:      [email protected]
3513 L:      [email protected]
3514 S:      Maintained
3515 F:      arch/x86/net/bpf_jit_comp32.c
3516
3517 BPF JIT for X86 64-BIT
3518 M:      Alexei Starovoitov <[email protected]>
3519 M:      Daniel Borkmann <[email protected]>
3520 L:      [email protected]
3521 L:      [email protected]
3522 S:      Supported
3523 F:      arch/x86/net/
3524 X:      arch/x86/net/bpf_jit_comp32.c
3525
3526 BPF LSM (Security Audit and Enforcement using BPF)
3527 M:      KP Singh <[email protected]>
3528 R:      Florent Revest <[email protected]>
3529 R:      Brendan Jackman <[email protected]>
3530 L:      [email protected]
3531 S:      Maintained
3532 F:      Documentation/bpf/bpf_lsm.rst
3533 F:      include/linux/bpf_lsm.h
3534 F:      kernel/bpf/bpf_lsm.c
3535 F:      security/bpf/
3536
3537 BROADCOM B44 10/100 ETHERNET DRIVER
3538 M:      Michael Chan <[email protected]>
3539 L:      [email protected]
3540 S:      Supported
3541 F:      drivers/net/ethernet/broadcom/b44.*
3542
3543 BROADCOM B53 ETHERNET SWITCH DRIVER
3544 M:      Florian Fainelli <[email protected]>
3545 L:      [email protected]
3546 L:      [email protected] (subscribers-only)
3547 S:      Supported
3548 F:      Documentation/devicetree/bindings/net/dsa/brcm,b53.yaml
3549 F:      drivers/net/dsa/b53/*
3550 F:      include/linux/dsa/brcm.h
3551 F:      include/linux/platform_data/b53.h
3552
3553 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3554 M:      Nicolas Saenz Julienne <[email protected]>
3555 L:      [email protected]
3556 L:      [email protected] (moderated for non-subscribers)
3557 L:      [email protected] (moderated for non-subscribers)
3558 S:      Maintained
3559 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsaenz/linux-rpi.git
3560 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3561 F:      drivers/pci/controller/pcie-brcmstb.c
3562 F:      drivers/staging/vc04_services
3563 N:      bcm2711
3564 N:      bcm283*
3565
3566 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3567 M:      Florian Fainelli <[email protected]>
3568 M:      Ray Jui <[email protected]>
3569 M:      Scott Branden <[email protected]>
3570 M:      [email protected]
3571 S:      Maintained
3572 T:      git git://github.com/broadcom/mach-bcm
3573 F:      arch/arm/mach-bcm/
3574 N:      bcm281*
3575 N:      bcm113*
3576 N:      bcm216*
3577 N:      kona
3578
3579 BROADCOM BCM47XX MIPS ARCHITECTURE
3580 M:      Hauke Mehrtens <[email protected]>
3581 M:      Rafał Miłecki <[email protected]>
3582 L:      [email protected]
3583 S:      Maintained
3584 F:      Documentation/devicetree/bindings/mips/brcm/
3585 F:      arch/mips/bcm47xx/*
3586 F:      arch/mips/include/asm/mach-bcm47xx/*
3587
3588 BROADCOM BCM4908 ETHERNET DRIVER
3589 M:      Rafał Miłecki <[email protected]>
3590 M:      [email protected]
3591 L:      [email protected]
3592 S:      Maintained
3593 F:      Documentation/devicetree/bindings/net/brcm,bcm4908-enet.yaml
3594 F:      drivers/net/ethernet/broadcom/bcm4908_enet.*
3595 F:      drivers/net/ethernet/broadcom/unimac.h
3596
3597 BROADCOM BCM5301X ARM ARCHITECTURE
3598 M:      Hauke Mehrtens <[email protected]>
3599 M:      Rafał Miłecki <[email protected]>
3600 M:      [email protected]
3601 L:      [email protected] (moderated for non-subscribers)
3602 S:      Maintained
3603 F:      arch/arm/boot/dts/bcm470*
3604 F:      arch/arm/boot/dts/bcm5301*
3605 F:      arch/arm/boot/dts/bcm953012*
3606 F:      arch/arm/mach-bcm/bcm_5301x.c
3607
3608 BROADCOM BCM53573 ARM ARCHITECTURE
3609 M:      Rafał Miłecki <[email protected]>
3610 L:      [email protected]
3611 L:      [email protected] (moderated for non-subscribers)
3612 S:      Maintained
3613 F:      arch/arm/boot/dts/bcm47189*
3614 F:      arch/arm/boot/dts/bcm53573*
3615
3616 BROADCOM BCM63XX ARM ARCHITECTURE
3617 M:      Florian Fainelli <[email protected]>
3618 M:      [email protected]
3619 L:      [email protected] (moderated for non-subscribers)
3620 S:      Maintained
3621 T:      git git://github.com/broadcom/stblinux.git
3622 N:      bcm63xx
3623
3624 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3625 M:      Kevin Cernekee <[email protected]>
3626 L:      [email protected]
3627 S:      Maintained
3628 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
3629
3630 BROADCOM BCM7XXX ARM ARCHITECTURE
3631 M:      Florian Fainelli <[email protected]>
3632 M:      [email protected]
3633 L:      [email protected] (moderated for non-subscribers)
3634 S:      Maintained
3635 T:      git git://github.com/broadcom/stblinux.git
3636 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3637 F:      arch/arm/boot/dts/bcm7*.dts*
3638 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
3639 F:      arch/arm/mach-bcm/*brcmstb*
3640 F:      arch/arm/mm/cache-b15-rac.c
3641 F:      drivers/bus/brcmstb_gisb.c
3642 F:      drivers/pci/controller/pcie-brcmstb.c
3643 N:      brcmstb
3644
3645 BROADCOM BDC DRIVER
3646 M:      Al Cooper <[email protected]>
3647 L:      [email protected]
3648 L:      [email protected]
3649 S:      Maintained
3650 F:      Documentation/devicetree/bindings/usb/brcm,bdc.txt
3651 F:      drivers/usb/gadget/udc/bdc/
3652
3653 BROADCOM BMIPS CPUFREQ DRIVER
3654 M:      Markus Mayer <[email protected]>
3655 M:      [email protected]
3656 L:      [email protected]
3657 S:      Maintained
3658 F:      drivers/cpufreq/bmips-cpufreq.c
3659
3660 BROADCOM BMIPS MIPS ARCHITECTURE
3661 M:      Florian Fainelli <[email protected]>
3662 L:      [email protected]
3663 L:      [email protected]
3664 S:      Maintained
3665 T:      git git://github.com/broadcom/stblinux.git
3666 F:      arch/mips/bmips/*
3667 F:      arch/mips/boot/dts/brcm/bcm*.dts*
3668 F:      arch/mips/include/asm/mach-bmips/*
3669 F:      arch/mips/kernel/*bmips*
3670 F:      drivers/soc/bcm/bcm63xx
3671 F:      drivers/irqchip/irq-bcm63*
3672 F:      drivers/irqchip/irq-bcm7*
3673 F:      drivers/irqchip/irq-brcmstb*
3674 F:      include/linux/bcm963xx_nvram.h
3675 F:      include/linux/bcm963xx_tag.h
3676
3677 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3678 M:      Rasesh Mody <[email protected]>
3679 M:      [email protected]
3680 L:      [email protected]
3681 S:      Supported
3682 F:      drivers/net/ethernet/broadcom/bnx2.*
3683 F:      drivers/net/ethernet/broadcom/bnx2_*
3684
3685 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3686 M:      Saurav Kashyap <[email protected]>
3687 M:      Javed Hasan <[email protected]>
3688 M:      [email protected]
3689 L:      [email protected]
3690 S:      Supported
3691 F:      drivers/scsi/bnx2fc/
3692
3693 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3694 M:      Nilesh Javali <[email protected]>
3695 M:      Manish Rangankar <[email protected]>
3696 M:      [email protected]
3697 L:      [email protected]
3698 S:      Supported
3699 F:      drivers/scsi/bnx2i/
3700
3701 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3702 M:      Ariel Elior <[email protected]>
3703 M:      Sudarsana Kalluru <[email protected]>
3704 M:      [email protected]
3705 L:      [email protected]
3706 S:      Supported
3707 F:      drivers/net/ethernet/broadcom/bnx2x/
3708
3709 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3710 M:      Michael Chan <[email protected]>
3711 L:      [email protected]
3712 S:      Supported
3713 F:      drivers/net/ethernet/broadcom/bnxt/
3714
3715 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3716 M:      Arend van Spriel <[email protected]>
3717 M:      Franky Lin <[email protected]>
3718 M:      Hante Meuleman <[email protected]>
3719 M:      Chi-hsien Lin <[email protected]>
3720 M:      Wright Feng <[email protected]>
3721 M:      Chung-hsien Hsu <[email protected]>
3722 L:      [email protected]
3723 L:      [email protected]
3724 L:      [email protected]
3725 S:      Supported
3726 F:      drivers/net/wireless/broadcom/brcm80211/
3727
3728 BROADCOM BRCMSTB GPIO DRIVER
3729 M:      Gregory Fong <[email protected]>
3730 L:      [email protected]
3731 S:      Supported
3732 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
3733 F:      drivers/gpio/gpio-brcmstb.c
3734
3735 BROADCOM BRCMSTB I2C DRIVER
3736 M:      Kamal Dasu <[email protected]>
3737 L:      [email protected]
3738 L:      [email protected]
3739 S:      Supported
3740 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
3741 F:      drivers/i2c/busses/i2c-brcmstb.c
3742
3743 BROADCOM BRCMSTB UART DRIVER
3744 M:      Al Cooper <[email protected]>
3745 L:      [email protected]
3746 L:      [email protected]
3747 S:      Maintained
3748 F:      Documentation/devicetree/bindings/serial/brcm,bcm7271-uart.yaml
3749 F:      drivers/tty/serial/8250/8250_bcm7271.c
3750
3751 BROADCOM BRCMSTB USB EHCI DRIVER
3752 M:      Al Cooper <[email protected]>
3753 L:      [email protected]
3754 L:      [email protected]
3755 S:      Maintained
3756 F:      Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
3757 F:      drivers/usb/host/ehci-brcm.*
3758
3759 BROADCOM BRCMSTB USB PIN MAP DRIVER
3760 M:      Al Cooper <[email protected]>
3761 L:      [email protected]
3762 L:      [email protected]
3763 S:      Maintained
3764 F:      Documentation/devicetree/bindings/usb/brcm,usb-pinmap.yaml
3765 F:      drivers/usb/misc/brcmstb-usb-pinmap.c
3766
3767 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3768 M:      Al Cooper <[email protected]>
3769 L:      [email protected]
3770 L:      [email protected]
3771 S:      Maintained
3772 F:      drivers/phy/broadcom/phy-brcm-usb*
3773
3774 BROADCOM ETHERNET PHY DRIVERS
3775 M:      Florian Fainelli <[email protected]>
3776 L:      [email protected]
3777 L:      [email protected]
3778 S:      Supported
3779 F:      Documentation/devicetree/bindings/net/broadcom-bcm87xx.txt
3780 F:      drivers/net/phy/bcm*.[ch]
3781 F:      drivers/net/phy/broadcom.c
3782 F:      include/linux/brcmphy.h
3783
3784 BROADCOM GENET ETHERNET DRIVER
3785 M:      Doug Berger <[email protected]>
3786 M:      Florian Fainelli <[email protected]>
3787 L:      [email protected]
3788 L:      [email protected]
3789 S:      Supported
3790 F:      Documentation/devicetree/bindings/net/brcm,bcmgenet.txt
3791 F:      Documentation/devicetree/bindings/net/brcm,unimac-mdio.txt
3792 F:      drivers/net/ethernet/broadcom/genet/
3793 F:      drivers/net/ethernet/broadcom/unimac.h
3794 F:      drivers/net/mdio/mdio-bcm-unimac.c
3795 F:      include/linux/platform_data/bcmgenet.h
3796 F:      include/linux/platform_data/mdio-bcm-unimac.h
3797
3798 BROADCOM IPROC ARM ARCHITECTURE
3799 M:      Ray Jui <[email protected]>
3800 M:      Scott Branden <[email protected]>
3801 M:      [email protected]
3802 L:      [email protected] (moderated for non-subscribers)
3803 S:      Maintained
3804 T:      git git://github.com/broadcom/cygnus-linux.git
3805 F:      arch/arm64/boot/dts/broadcom/northstar2/*
3806 F:      arch/arm64/boot/dts/broadcom/stingray/*
3807 F:      drivers/clk/bcm/clk-ns*
3808 F:      drivers/clk/bcm/clk-sr*
3809 F:      drivers/pinctrl/bcm/pinctrl-ns*
3810 F:      include/dt-bindings/clock/bcm-sr*
3811 N:      iproc
3812 N:      cygnus
3813 N:      bcm[-_]nsp
3814 N:      bcm9113*
3815 N:      bcm9583*
3816 N:      bcm9585*
3817 N:      bcm9586*
3818 N:      bcm988312
3819 N:      bcm113*
3820 N:      bcm583*
3821 N:      bcm585*
3822 N:      bcm586*
3823 N:      bcm88312
3824 N:      hr2
3825 N:      stingray
3826
3827 BROADCOM IPROC GBIT ETHERNET DRIVER
3828 M:      Rafał Miłecki <[email protected]>
3829 M:      [email protected]
3830 L:      [email protected]
3831 S:      Maintained
3832 F:      Documentation/devicetree/bindings/net/brcm,amac.txt
3833 F:      drivers/net/ethernet/broadcom/bgmac*
3834 F:      drivers/net/ethernet/broadcom/unimac.h
3835
3836 BROADCOM KONA GPIO DRIVER
3837 M:      Ray Jui <[email protected]>
3838 L:      [email protected]
3839 S:      Supported
3840 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
3841 F:      drivers/gpio/gpio-bcm-kona.c
3842
3843 BROADCOM MPI3 STORAGE CONTROLLER DRIVER
3844 M:      Sathya Prakash Veerichetty <[email protected]>
3845 M:      Kashyap Desai <[email protected]>
3846 M:      Sumit Saxena <[email protected]>
3847 M:      Sreekanth Reddy <[email protected]>
3848 L:      [email protected]
3849 L:      [email protected]
3850 S:      Supported
3851 W:      https://www.broadcom.com/support/storage
3852 F:      drivers/scsi/mpi3mr/
3853
3854 BROADCOM NETXTREME-E ROCE DRIVER
3855 M:      Selvin Xavier <[email protected]>
3856 L:      [email protected]
3857 S:      Supported
3858 W:      http://www.broadcom.com
3859 F:      drivers/infiniband/hw/bnxt_re/
3860 F:      include/uapi/rdma/bnxt_re-abi.h
3861
3862 BROADCOM NVRAM DRIVER
3863 M:      Rafał Miłecki <[email protected]>
3864 L:      [email protected]
3865 S:      Maintained
3866 F:      drivers/firmware/broadcom/*
3867
3868 BROADCOM PMB (POWER MANAGEMENT BUS) DRIVER
3869 M:      Rafał Miłecki <[email protected]>
3870 M:      Florian Fainelli <[email protected]>
3871 M:      [email protected]
3872 L:      [email protected]
3873 S:      Maintained
3874 T:      git git://github.com/broadcom/stblinux.git
3875 F:      drivers/soc/bcm/bcm63xx/bcm-pmb.c
3876 F:      include/dt-bindings/soc/bcm-pmb.h
3877
3878 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
3879 M:      Rafał Miłecki <[email protected]>
3880 L:      [email protected]
3881 S:      Maintained
3882 F:      drivers/bcma/
3883 F:      include/linux/bcma/
3884
3885 BROADCOM SPI DRIVER
3886 M:      Kamal Dasu <[email protected]>
3887 M:      [email protected]
3888 S:      Maintained
3889 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.yaml
3890 F:      drivers/spi/spi-bcm-qspi.*
3891 F:      drivers/spi/spi-brcmstb-qspi.c
3892 F:      drivers/spi/spi-iproc-qspi.c
3893
3894 BROADCOM STB AVS CPUFREQ DRIVER
3895 M:      Markus Mayer <[email protected]>
3896 M:      [email protected]
3897 L:      [email protected]
3898 S:      Maintained
3899 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
3900 F:      drivers/cpufreq/brcmstb*
3901
3902 BROADCOM STB AVS TMON DRIVER
3903 M:      Markus Mayer <[email protected]>
3904 M:      [email protected]
3905 L:      [email protected]
3906 S:      Maintained
3907 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.txt
3908 F:      drivers/thermal/broadcom/brcmstb*
3909
3910 BROADCOM STB DPFE DRIVER
3911 M:      Markus Mayer <[email protected]>
3912 M:      [email protected]
3913 L:      [email protected] (moderated for non-subscribers)
3914 S:      Maintained
3915 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.yaml
3916 F:      drivers/memory/brcmstb_dpfe.c
3917
3918 BROADCOM STB NAND FLASH DRIVER
3919 M:      Brian Norris <[email protected]>
3920 M:      Kamal Dasu <[email protected]>
3921 L:      [email protected]
3922 L:      [email protected]
3923 S:      Maintained
3924 F:      drivers/mtd/nand/raw/brcmnand/
3925
3926 BROADCOM STB PCIE DRIVER
3927 M:      Jim Quinlan <[email protected]>
3928 M:      Nicolas Saenz Julienne <[email protected]>
3929 M:      Florian Fainelli <[email protected]>
3930 M:      [email protected]
3931 L:      [email protected]
3932 S:      Maintained
3933 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3934 F:      drivers/pci/controller/pcie-brcmstb.c
3935
3936 BROADCOM SYSTEMPORT ETHERNET DRIVER
3937 M:      Florian Fainelli <[email protected]>
3938 L:      [email protected]
3939 L:      [email protected]
3940 S:      Supported
3941 F:      drivers/net/ethernet/broadcom/bcmsysport.*
3942 F:      drivers/net/ethernet/broadcom/unimac.h
3943
3944 BROADCOM TG3 GIGABIT ETHERNET DRIVER
3945 M:      Siva Reddy Kallam <[email protected]>
3946 M:      Prashant Sreedharan <[email protected]>
3947 M:      Michael Chan <[email protected]>
3948 L:      [email protected]
3949 S:      Supported
3950 F:      drivers/net/ethernet/broadcom/tg3.*
3951
3952 BROADCOM VK DRIVER
3953 M:      Scott Branden <[email protected]>
3954 L:      [email protected]
3955 S:      Supported
3956 F:      drivers/misc/bcm-vk/
3957 F:      include/uapi/linux/misc/bcm_vk.h
3958
3959 BROCADE BFA FC SCSI DRIVER
3960 M:      Anil Gurumurthy <[email protected]>
3961 M:      Sudarsana Kalluru <[email protected]>
3962 L:      [email protected]
3963 S:      Supported
3964 F:      drivers/scsi/bfa/
3965
3966 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
3967 M:      Rasesh Mody <[email protected]>
3968 M:      Sudarsana Kalluru <[email protected]>
3969 M:      [email protected]
3970 L:      [email protected]
3971 S:      Supported
3972 F:      drivers/net/ethernet/brocade/bna/
3973
3974 BSG (block layer generic sg v4 driver)
3975 M:      FUJITA Tomonori <[email protected]>
3976 L:      [email protected]
3977 S:      Supported
3978 F:      block/bsg.c
3979 F:      include/linux/bsg.h
3980 F:      include/uapi/linux/bsg.h
3981
3982 BT87X AUDIO DRIVER
3983 M:      Clemens Ladisch <[email protected]>
3984 L:      [email protected] (moderated for non-subscribers)
3985 S:      Maintained
3986 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3987 F:      Documentation/sound/cards/bt87x.rst
3988 F:      sound/pci/bt87x.c
3989
3990 BT8XXGPIO DRIVER
3991 M:      Michael Buesch <[email protected]>
3992 S:      Maintained
3993 W:      http://bu3sch.de/btgpio.php
3994 F:      drivers/gpio/gpio-bt8xx.c
3995
3996 BTRFS FILE SYSTEM
3997 M:      Chris Mason <[email protected]>
3998 M:      Josef Bacik <[email protected]>
3999 M:      David Sterba <[email protected]>
4000 L:      [email protected]
4001 S:      Maintained
4002 W:      http://btrfs.wiki.kernel.org/
4003 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
4004 C:      irc://irc.libera.chat/btrfs
4005 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
4006 F:      Documentation/filesystems/btrfs.rst
4007 F:      fs/btrfs/
4008 F:      include/linux/btrfs*
4009 F:      include/uapi/linux/btrfs*
4010
4011 BTTV VIDEO4LINUX DRIVER
4012 M:      Mauro Carvalho Chehab <[email protected]>
4013 L:      [email protected]
4014 S:      Odd fixes
4015 W:      https://linuxtv.org
4016 T:      git git://linuxtv.org/media_tree.git
4017 F:      Documentation/driver-api/media/drivers/bttv*
4018 F:      drivers/media/pci/bt8xx/bttv*
4019
4020 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
4021 M:      Chanwoo Choi <[email protected]>
4022 L:      [email protected]
4023 L:      [email protected]
4024 S:      Maintained
4025 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4026 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
4027 F:      drivers/devfreq/exynos-bus.c
4028
4029 BUSLOGIC SCSI DRIVER
4030 M:      Khalid Aziz <[email protected]>
4031 L:      [email protected]
4032 S:      Maintained
4033 F:      drivers/scsi/BusLogic.*
4034 F:      drivers/scsi/FlashPoint.*
4035
4036 C-MEDIA CMI8788 DRIVER
4037 M:      Clemens Ladisch <[email protected]>
4038 L:      [email protected] (moderated for non-subscribers)
4039 S:      Maintained
4040 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4041 F:      sound/pci/oxygen/
4042
4043 C-SKY ARCHITECTURE
4044 M:      Guo Ren <[email protected]>
4045 L:      [email protected]
4046 S:      Supported
4047 T:      git https://github.com/c-sky/csky-linux.git
4048 F:      Documentation/devicetree/bindings/csky/
4049 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
4050 F:      Documentation/devicetree/bindings/timer/csky,*
4051 F:      arch/csky/
4052 F:      drivers/clocksource/timer-gx6605s.c
4053 F:      drivers/clocksource/timer-mp-csky.c
4054 F:      drivers/irqchip/irq-csky-*
4055 N:      csky
4056 K:      csky
4057
4058 CA8210 IEEE-802.15.4 RADIO DRIVER
4059 M:      Harry Morris <[email protected]>
4060 L:      [email protected]
4061 S:      Maintained
4062 W:      https://github.com/Cascoda/ca8210-linux.git
4063 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
4064 F:      drivers/net/ieee802154/ca8210.c
4065
4066 CANAAN/KENDRYTE K210 SOC FPIOA DRIVER
4067 M:      Damien Le Moal <[email protected]>
4068 L:      [email protected]
4069 L:      [email protected] (pinctrl driver)
4070 F:      Documentation/devicetree/bindings/pinctrl/canaan,k210-fpioa.yaml
4071 F:      drivers/pinctrl/pinctrl-k210.c
4072
4073 CANAAN/KENDRYTE K210 SOC RESET CONTROLLER DRIVER
4074 M:      Damien Le Moal <[email protected]>
4075 L:      [email protected]
4076 L:      [email protected]
4077 S:      Maintained
4078 F:      Documentation/devicetree/bindings/reset/canaan,k210-rst.yaml
4079 F:      drivers/reset/reset-k210.c
4080
4081 CANAAN/KENDRYTE K210 SOC SYSTEM CONTROLLER DRIVER
4082 M:      Damien Le Moal <[email protected]>
4083 L:      [email protected]
4084 S:      Maintained
4085 F:      Documentation/devicetree/bindings/mfd/canaan,k210-sysctl.yaml
4086 F:      drivers/soc/canaan/
4087 F:      include/soc/canaan/
4088
4089 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
4090 M:      David Howells <[email protected]>
4091 L:      [email protected] (moderated for non-subscribers)
4092 S:      Supported
4093 F:      Documentation/filesystems/caching/cachefiles.rst
4094 F:      fs/cachefiles/
4095
4096 CADENCE MIPI-CSI2 BRIDGES
4097 M:      Maxime Ripard <[email protected]>
4098 L:      [email protected]
4099 S:      Maintained
4100 F:      Documentation/devicetree/bindings/media/cdns,*.txt
4101 F:      drivers/media/platform/cadence/cdns-csi2*
4102
4103 CADENCE NAND DRIVER
4104 L:      [email protected]
4105 S:      Orphan
4106 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
4107 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
4108
4109 CADENCE USB3 DRD IP DRIVER
4110 M:      Peter Chen <[email protected]>
4111 M:      Pawel Laszczak <[email protected]>
4112 R:      Roger Quadros <[email protected]>
4113 R:      Aswath Govindraju <[email protected]>
4114 L:      [email protected]
4115 S:      Maintained
4116 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4117 F:      Documentation/devicetree/bindings/usb/cdns,usb3.yaml
4118 F:      drivers/usb/cdns3/
4119 X:      drivers/usb/cdns3/cdnsp*
4120
4121 CADENCE USBSSP DRD IP DRIVER
4122 M:      Pawel Laszczak <[email protected]>
4123 L:      [email protected]
4124 S:      Maintained
4125 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4126 F:      drivers/usb/cdns3/
4127 X:      drivers/usb/cdns3/cdns3*
4128
4129 CADET FM/AM RADIO RECEIVER DRIVER
4130 M:      Hans Verkuil <[email protected]>
4131 L:      [email protected]
4132 S:      Maintained
4133 W:      https://linuxtv.org
4134 T:      git git://linuxtv.org/media_tree.git
4135 F:      drivers/media/radio/radio-cadet*
4136
4137 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
4138 L:      [email protected]
4139 S:      Orphan
4140 T:      git git://linuxtv.org/media_tree.git
4141 F:      Documentation/admin-guide/media/cafe_ccic*
4142 F:      drivers/media/platform/marvell-ccic/
4143
4144 CAIF NETWORK LAYER
4145 L:      [email protected]
4146 S:      Orphan
4147 F:      Documentation/networking/caif/
4148 F:      drivers/net/caif/
4149 F:      include/net/caif/
4150 F:      include/uapi/linux/caif/
4151 F:      net/caif/
4152
4153 CAKE QDISC
4154 M:      Toke Høiland-Jørgensen <[email protected]>
4155 L:      [email protected] (moderated for non-subscribers)
4156 S:      Maintained
4157 F:      net/sched/sch_cake.c
4158
4159 CAN NETWORK DRIVERS
4160 M:      Wolfgang Grandegger <[email protected]>
4161 M:      Marc Kleine-Budde <[email protected]>
4162 L:      [email protected]
4163 S:      Maintained
4164 W:      https://github.com/linux-can
4165 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4166 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4167 F:      Documentation/devicetree/bindings/net/can/
4168 F:      Documentation/devicetree/bindings/phy/ti,tcan104x-can.yaml
4169 F:      drivers/net/can/
4170 F:      drivers/phy/phy-can-transceiver.c
4171 F:      include/linux/can/bittiming.h
4172 F:      include/linux/can/dev.h
4173 F:      include/linux/can/led.h
4174 F:      include/linux/can/length.h
4175 F:      include/linux/can/platform/
4176 F:      include/linux/can/rx-offload.h
4177 F:      include/uapi/linux/can/error.h
4178 F:      include/uapi/linux/can/netlink.h
4179 F:      include/uapi/linux/can/vxcan.h
4180
4181 CAN NETWORK LAYER
4182 M:      Oliver Hartkopp <[email protected]>
4183 M:      Marc Kleine-Budde <[email protected]>
4184 L:      [email protected]
4185 S:      Maintained
4186 W:      https://github.com/linux-can
4187 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4188 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4189 F:      Documentation/networking/can.rst
4190 F:      include/linux/can/can-ml.h
4191 F:      include/linux/can/core.h
4192 F:      include/linux/can/skb.h
4193 F:      include/net/netns/can.h
4194 F:      include/uapi/linux/can.h
4195 F:      include/uapi/linux/can/bcm.h
4196 F:      include/uapi/linux/can/gw.h
4197 F:      include/uapi/linux/can/isotp.h
4198 F:      include/uapi/linux/can/raw.h
4199 F:      net/can/
4200
4201 CAN-J1939 NETWORK LAYER
4202 M:      Robin van der Gracht <[email protected]>
4203 M:      Oleksij Rempel <[email protected]>
4204 R:      [email protected]
4205 L:      [email protected]
4206 S:      Maintained
4207 F:      Documentation/networking/j1939.rst
4208 F:      include/uapi/linux/can/j1939.h
4209 F:      net/can/j1939/
4210
4211 CAPABILITIES
4212 M:      Serge Hallyn <[email protected]>
4213 L:      [email protected]
4214 S:      Supported
4215 F:      include/linux/capability.h
4216 F:      include/uapi/linux/capability.h
4217 F:      kernel/capability.c
4218 F:      security/commoncap.c
4219
4220 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
4221 M:      Kevin Tsai <[email protected]>
4222 S:      Maintained
4223 F:      drivers/iio/light/cm*
4224
4225 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
4226 M:      Christian Lamparter <[email protected]>
4227 L:      [email protected]
4228 S:      Maintained
4229 W:      https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
4230 F:      drivers/net/wireless/ath/carl9170/
4231
4232 CAVIUM I2C DRIVER
4233 M:      Robert Richter <[email protected]>
4234 S:      Odd Fixes
4235 W:      http://www.marvell.com
4236 F:      drivers/i2c/busses/i2c-octeon*
4237 F:      drivers/i2c/busses/i2c-thunderx*
4238
4239 CAVIUM LIQUIDIO NETWORK DRIVER
4240 M:      Derek Chickles <[email protected]>
4241 M:      Satanand Burla <[email protected]>
4242 M:      Felix Manlunas <[email protected]>
4243 L:      [email protected]
4244 S:      Supported
4245 W:      http://www.marvell.com
4246 F:      drivers/net/ethernet/cavium/liquidio/
4247
4248 CAVIUM MMC DRIVER
4249 M:      Robert Richter <[email protected]>
4250 S:      Odd Fixes
4251 W:      http://www.marvell.com
4252 F:      drivers/mmc/host/cavium*
4253
4254 CAVIUM OCTEON-TX CRYPTO DRIVER
4255 M:      George Cherian <[email protected]>
4256 L:      [email protected]
4257 S:      Supported
4258 W:      http://www.marvell.com
4259 F:      drivers/crypto/cavium/cpt/
4260
4261 CAVIUM THUNDERX2 ARM64 SOC
4262 M:      Robert Richter <[email protected]>
4263 L:      [email protected] (moderated for non-subscribers)
4264 S:      Odd Fixes
4265 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
4266 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
4267
4268 CBS/ETF/TAPRIO QDISCS
4269 M:      Vinicius Costa Gomes <[email protected]>
4270 S:      Maintained
4271 L:      [email protected]
4272 F:      net/sched/sch_cbs.c
4273 F:      net/sched/sch_etf.c
4274 F:      net/sched/sch_taprio.c
4275
4276 CC2520 IEEE-802.15.4 RADIO DRIVER
4277 M:      Varka Bhadram <[email protected]>
4278 L:      [email protected]
4279 S:      Maintained
4280 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
4281 F:      drivers/net/ieee802154/cc2520.c
4282 F:      include/linux/spi/cc2520.h
4283
4284 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
4285 M:      Gilad Ben-Yossef <[email protected]>
4286 L:      [email protected]
4287 S:      Supported
4288 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4289 F:      drivers/crypto/ccree/
4290
4291 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
4292 M:      Hadar Gat <[email protected]>
4293 L:      [email protected]
4294 S:      Supported
4295 F:      drivers/char/hw_random/cctrng.c
4296 F:      drivers/char/hw_random/cctrng.h
4297 F:      Documentation/devicetree/bindings/rng/arm-cctrng.yaml
4298 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4299
4300 CEC FRAMEWORK
4301 M:      Hans Verkuil <[email protected]>
4302 L:      [email protected]
4303 S:      Supported
4304 W:      http://linuxtv.org
4305 T:      git git://linuxtv.org/media_tree.git
4306 F:      Documentation/ABI/testing/debugfs-cec-error-inj
4307 F:      Documentation/devicetree/bindings/media/cec.txt
4308 F:      Documentation/driver-api/media/cec-core.rst
4309 F:      Documentation/userspace-api/media/cec
4310 F:      drivers/media/cec/
4311 F:      drivers/media/rc/keymaps/rc-cec.c
4312 F:      include/media/cec-notifier.h
4313 F:      include/media/cec.h
4314 F:      include/uapi/linux/cec-funcs.h
4315 F:      include/uapi/linux/cec.h
4316
4317 CEC GPIO DRIVER
4318 M:      Hans Verkuil <[email protected]>
4319 L:      [email protected]
4320 S:      Supported
4321 W:      http://linuxtv.org
4322 T:      git git://linuxtv.org/media_tree.git
4323 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
4324 F:      drivers/media/cec/platform/cec-gpio/
4325
4326 CELL BROADBAND ENGINE ARCHITECTURE
4327 M:      Arnd Bergmann <[email protected]>
4328 L:      [email protected]
4329 S:      Supported
4330 W:      http://www.ibm.com/developerworks/power/cell/
4331 F:      arch/powerpc/include/asm/cell*.h
4332 F:      arch/powerpc/include/asm/spu*.h
4333 F:      arch/powerpc/include/uapi/asm/spu*.h
4334 F:      arch/powerpc/platforms/cell/
4335
4336 CELLWISE CW2015 BATTERY DRIVER
4337 M:      Tobias Schrammm <[email protected]>
4338 S:      Maintained
4339 F:      Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
4340 F:      drivers/power/supply/cw2015_battery.c
4341
4342 CEPH COMMON CODE (LIBCEPH)
4343 M:      Ilya Dryomov <[email protected]>
4344 M:      Jeff Layton <[email protected]>
4345 L:      [email protected]
4346 S:      Supported
4347 W:      http://ceph.com/
4348 T:      git git://github.com/ceph/ceph-client.git
4349 F:      include/linux/ceph/
4350 F:      include/linux/crush/
4351 F:      net/ceph/
4352
4353 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4354 M:      Jeff Layton <[email protected]>
4355 M:      Ilya Dryomov <[email protected]>
4356 L:      [email protected]
4357 S:      Supported
4358 W:      http://ceph.com/
4359 T:      git git://github.com/ceph/ceph-client.git
4360 F:      Documentation/filesystems/ceph.rst
4361 F:      fs/ceph/
4362
4363 CERTIFICATE HANDLING
4364 M:      David Howells <[email protected]>
4365 M:      David Woodhouse <[email protected]>
4366 L:      [email protected]
4367 S:      Maintained
4368 F:      Documentation/admin-guide/module-signing.rst
4369 F:      certs/
4370 F:      scripts/extract-cert.c
4371 F:      scripts/sign-file.c
4372
4373 CFAG12864B LCD DRIVER
4374 M:      Miguel Ojeda <[email protected]>
4375 S:      Maintained
4376 F:      drivers/auxdisplay/cfag12864b.c
4377 F:      include/linux/cfag12864b.h
4378
4379 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4380 M:      Miguel Ojeda <[email protected]>
4381 S:      Maintained
4382 F:      drivers/auxdisplay/cfag12864bfb.c
4383 F:      include/linux/cfag12864b.h
4384
4385 CHAR and MISC DRIVERS
4386 M:      Arnd Bergmann <[email protected]>
4387 M:      Greg Kroah-Hartman <[email protected]>
4388 S:      Supported
4389 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4390 F:      drivers/char/
4391 F:      drivers/misc/
4392 F:      include/linux/miscdevice.h
4393 X:      drivers/char/agp/
4394 X:      drivers/char/hw_random/
4395 X:      drivers/char/ipmi/
4396 X:      drivers/char/random.c
4397 X:      drivers/char/tpm/
4398
4399 CHECKPATCH
4400 M:      Andy Whitcroft <[email protected]>
4401 M:      Joe Perches <[email protected]>
4402 R:      Dwaipayan Ray <[email protected]>
4403 R:      Lukas Bulwahn <[email protected]>
4404 S:      Maintained
4405 F:      scripts/checkpatch.pl
4406
4407 CHECKPATCH DOCUMENTATION
4408 M:      Dwaipayan Ray <[email protected]>
4409 M:      Lukas Bulwahn <[email protected]>
4410 R:      Joe Perches <[email protected]>
4411 S:      Maintained
4412 F:      Documentation/dev-tools/checkpatch.rst
4413
4414 CHINESE DOCUMENTATION
4415 M:      Alex Shi <[email protected]>
4416 S:      Maintained
4417 F:      Documentation/translations/zh_CN/
4418
4419 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4420 M:      Peter Chen <[email protected]>
4421 L:      [email protected]
4422 S:      Maintained
4423 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4424 F:      drivers/usb/chipidea/
4425
4426 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4427 M:      Hans de Goede <[email protected]>
4428 L:      [email protected]
4429 S:      Maintained
4430 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
4431 F:      drivers/input/touchscreen/chipone_icn8318.c
4432
4433 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4434 M:      Hans de Goede <[email protected]>
4435 L:      [email protected]
4436 S:      Maintained
4437 F:      drivers/input/touchscreen/chipone_icn8505.c
4438
4439 CHROME HARDWARE PLATFORM SUPPORT
4440 M:      Benson Leung <[email protected]>
4441 M:      Enric Balletbo i Serra <[email protected]>
4442 S:      Maintained
4443 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4444 F:      drivers/platform/chrome/
4445
4446 CHROMEOS EC CODEC DRIVER
4447 M:      Cheng-Yi Chiang <[email protected]>
4448 R:      Enric Balletbo i Serra <[email protected]>
4449 R:      Guenter Roeck <[email protected]>
4450 S:      Maintained
4451 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4452 F:      sound/soc/codecs/cros_ec_codec.*
4453
4454 CHROMEOS EC SUBDRIVERS
4455 M:      Benson Leung <[email protected]>
4456 M:      Enric Balletbo i Serra <[email protected]>
4457 R:      Guenter Roeck <[email protected]>
4458 S:      Maintained
4459 F:      drivers/power/supply/cros_usbpd-charger.c
4460 N:      cros_ec
4461 N:      cros-ec
4462
4463 CHRONTEL CH7322 CEC DRIVER
4464 M:      Joe Tessler <[email protected]>
4465 L:      [email protected]
4466 S:      Maintained
4467 T:      git git://linuxtv.org/media_tree.git
4468 F:      Documentation/devicetree/bindings/media/i2c/chrontel,ch7322.yaml
4469 F:      drivers/media/cec/i2c/ch7322.c
4470
4471 CIRRUS LOGIC AUDIO CODEC DRIVERS
4472 M:      James Schulman <[email protected]>
4473 M:      David Rhodes <[email protected]>
4474 L:      [email protected] (moderated for non-subscribers)
4475 L:      [email protected]
4476 S:      Maintained
4477 F:      sound/soc/codecs/cs*
4478
4479 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4480 M:      Hartley Sweeten <[email protected]>
4481 L:      [email protected]
4482 S:      Maintained
4483 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
4484
4485 CIRRUS LOGIC LOCHNAGAR DRIVER
4486 M:      Charles Keepax <[email protected]>
4487 M:      Richard Fitzgerald <[email protected]>
4488 L:      [email protected]
4489 S:      Supported
4490 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4491 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4492 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4493 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4494 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4495 F:      Documentation/hwmon/lochnagar.rst
4496 F:      drivers/clk/clk-lochnagar.c
4497 F:      drivers/hwmon/lochnagar-hwmon.c
4498 F:      drivers/mfd/lochnagar-i2c.c
4499 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4500 F:      drivers/regulator/lochnagar-regulator.c
4501 F:      include/dt-bindings/clk/lochnagar.h
4502 F:      include/dt-bindings/pinctrl/lochnagar.h
4503 F:      include/linux/mfd/lochnagar*
4504 F:      sound/soc/codecs/lochnagar-sc.c
4505
4506 CIRRUS LOGIC MADERA CODEC DRIVERS
4507 M:      Charles Keepax <[email protected]>
4508 M:      Richard Fitzgerald <[email protected]>
4509 L:      [email protected] (moderated for non-subscribers)
4510 L:      [email protected]
4511 S:      Supported
4512 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4513 T:      git https://github.com/CirrusLogic/linux-drivers.git
4514 F:      Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4515 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4516 F:      Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4517 F:      drivers/gpio/gpio-madera*
4518 F:      drivers/irqchip/irq-madera*
4519 F:      drivers/mfd/cs47l*
4520 F:      drivers/mfd/madera*
4521 F:      drivers/pinctrl/cirrus/*
4522 F:      include/dt-bindings/sound/madera*
4523 F:      include/linux/irqchip/irq-madera*
4524 F:      include/linux/mfd/madera/*
4525 F:      include/sound/madera*
4526 F:      sound/soc/codecs/cs47l*
4527 F:      sound/soc/codecs/madera*
4528
4529 CISCO FCOE HBA DRIVER
4530 M:      Satish Kharat <[email protected]>
4531 M:      Sesidhar Baddela <[email protected]>
4532 M:      Karan Tilak Kumar <[email protected]>
4533 L:      [email protected]
4534 S:      Supported
4535 F:      drivers/scsi/fnic/
4536
4537 CISCO SCSI HBA DRIVER
4538 M:      Karan Tilak Kumar <[email protected]>
4539 M:      Sesidhar Baddela <[email protected]>
4540 L:      [email protected]
4541 S:      Supported
4542 F:      drivers/scsi/snic/
4543
4544 CISCO VIC ETHERNET NIC DRIVER
4545 M:      Christian Benvenuti <[email protected]>
4546 M:      Govindarajulu Varadarajan <[email protected]>
4547 S:      Supported
4548 F:      drivers/net/ethernet/cisco/enic/
4549
4550 CISCO VIC LOW LATENCY NIC DRIVER
4551 M:      Christian Benvenuti <[email protected]>
4552 M:      Nelson Escobar <[email protected]>
4553 S:      Supported
4554 F:      drivers/infiniband/hw/usnic/
4555
4556 CLANG-FORMAT FILE
4557 M:      Miguel Ojeda <[email protected]>
4558 S:      Maintained
4559 F:      .clang-format
4560
4561 CLANG/LLVM BUILD SUPPORT
4562 M:      Nathan Chancellor <[email protected]>
4563 M:      Nick Desaulniers <[email protected]>
4564 L:      [email protected]
4565 S:      Supported
4566 W:      https://clangbuiltlinux.github.io/
4567 B:      https://github.com/ClangBuiltLinux/linux/issues
4568 C:      irc://irc.libera.chat/clangbuiltlinux
4569 F:      Documentation/kbuild/llvm.rst
4570 F:      include/linux/compiler-clang.h
4571 F:      scripts/Makefile.clang
4572 F:      scripts/clang-tools/
4573 K:      \b(?i:clang|llvm)\b
4574
4575 CLANG CONTROL FLOW INTEGRITY SUPPORT
4576 M:      Sami Tolvanen <[email protected]>
4577 M:      Kees Cook <[email protected]>
4578 R:      Nathan Chancellor <[email protected]>
4579 R:      Nick Desaulniers <[email protected]>
4580 L:      [email protected]
4581 S:      Supported
4582 B:      https://github.com/ClangBuiltLinux/linux/issues
4583 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/clang/features
4584 F:      include/linux/cfi.h
4585 F:      kernel/cfi.c
4586
4587 CLEANCACHE API
4588 M:      Konrad Rzeszutek Wilk <[email protected]>
4589 L:      [email protected]
4590 S:      Maintained
4591 F:      include/linux/cleancache.h
4592 F:      mm/cleancache.c
4593
4594 CLK API
4595 M:      Russell King <[email protected]>
4596 L:      [email protected]
4597 S:      Maintained
4598 F:      include/linux/clk.h
4599
4600 CLOCKSOURCE, CLOCKEVENT DRIVERS
4601 M:      Daniel Lezcano <[email protected]>
4602 M:      Thomas Gleixner <[email protected]>
4603 L:      [email protected]
4604 S:      Supported
4605 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4606 F:      Documentation/devicetree/bindings/timer/
4607 F:      drivers/clocksource/
4608
4609 CMPC ACPI DRIVER
4610 M:      Thadeu Lima de Souza Cascardo <[email protected]>
4611 M:      Daniel Oliveira Nascimento <[email protected]>
4612 L:      [email protected]
4613 S:      Supported
4614 F:      drivers/platform/x86/classmate-laptop.c
4615
4616 COBALT MEDIA DRIVER
4617 M:      Hans Verkuil <[email protected]>
4618 L:      [email protected]
4619 S:      Supported
4620 W:      https://linuxtv.org
4621 T:      git git://linuxtv.org/media_tree.git
4622 F:      drivers/media/pci/cobalt/
4623
4624 COCCINELLE/Semantic Patches (SmPL)
4625 M:      Julia Lawall <[email protected]>
4626 M:      Gilles Muller <[email protected]>
4627 M:      Nicolas Palix <[email protected]>
4628 M:      Michal Marek <[email protected]>
4629 L:      [email protected] (moderated for non-subscribers)
4630 S:      Supported
4631 W:      http://coccinelle.lip6.fr/
4632 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
4633 F:      Documentation/dev-tools/coccinelle.rst
4634 F:      scripts/coccicheck
4635 F:      scripts/coccinelle/
4636
4637 CODA FILE SYSTEM
4638 M:      Jan Harkes <[email protected]>
4639 M:      [email protected]
4640 L:      [email protected]
4641 S:      Maintained
4642 W:      http://www.coda.cs.cmu.edu/
4643 F:      Documentation/filesystems/coda.rst
4644 F:      fs/coda/
4645 F:      include/linux/coda*.h
4646 F:      include/uapi/linux/coda*.h
4647
4648 CODA V4L2 MEM2MEM DRIVER
4649 M:      Philipp Zabel <[email protected]>
4650 L:      [email protected]
4651 S:      Maintained
4652 F:      Documentation/devicetree/bindings/media/coda.yaml
4653 F:      drivers/media/platform/coda/
4654
4655 CODE OF CONDUCT
4656 M:      Greg Kroah-Hartman <[email protected]>
4657 S:      Supported
4658 F:      Documentation/process/code-of-conduct-interpretation.rst
4659 F:      Documentation/process/code-of-conduct.rst
4660
4661 COMEDI DRIVERS
4662 M:      Ian Abbott <[email protected]>
4663 M:      H Hartley Sweeten <[email protected]>
4664 S:      Odd Fixes
4665 F:      drivers/comedi/
4666
4667 COMMON CLK FRAMEWORK
4668 M:      Michael Turquette <[email protected]>
4669 M:      Stephen Boyd <[email protected]>
4670 L:      [email protected]
4671 S:      Maintained
4672 Q:      http://patchwork.kernel.org/project/linux-clk/list/
4673 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4674 F:      Documentation/devicetree/bindings/clock/
4675 F:      drivers/clk/
4676 F:      include/linux/clk-pr*
4677 F:      include/linux/clk/
4678 F:      include/linux/of_clk.h
4679 X:      drivers/clk/clkdev.c
4680
4681 COMMON INTERNET FILE SYSTEM CLIENT (CIFS)
4682 M:      Steve French <[email protected]>
4683 L:      [email protected]
4684 L:      [email protected] (moderated for non-subscribers)
4685 S:      Supported
4686 W:      http://linux-cifs.samba.org/
4687 T:      git git://git.samba.org/sfrench/cifs-2.6.git
4688 F:      Documentation/admin-guide/cifs/
4689 F:      fs/cifs/
4690 F:      fs/smbfs_common/
4691
4692 COMPACTPCI HOTPLUG CORE
4693 M:      Scott Murray <[email protected]>
4694 L:      [email protected]
4695 S:      Maintained
4696 F:      drivers/pci/hotplug/cpci_hotplug*
4697
4698 COMPACTPCI HOTPLUG GENERIC DRIVER
4699 M:      Scott Murray <[email protected]>
4700 L:      [email protected]
4701 S:      Maintained
4702 F:      drivers/pci/hotplug/cpcihp_generic.c
4703
4704 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4705 M:      Scott Murray <[email protected]>
4706 L:      [email protected]
4707 S:      Maintained
4708 F:      drivers/pci/hotplug/cpcihp_zt5550.*
4709
4710 COMPAL LAPTOP SUPPORT
4711 M:      Cezary Jackiewicz <[email protected]>
4712 L:      [email protected]
4713 S:      Maintained
4714 F:      drivers/platform/x86/compal-laptop.c
4715
4716 COMPILER ATTRIBUTES
4717 M:      Miguel Ojeda <[email protected]>
4718 R:      Nick Desaulniers <[email protected]>
4719 S:      Maintained
4720 F:      include/linux/compiler_attributes.h
4721
4722 COMPUTE EXPRESS LINK (CXL)
4723 M:      Alison Schofield <[email protected]>
4724 M:      Vishal Verma <[email protected]>
4725 M:      Ira Weiny <[email protected]>
4726 M:      Ben Widawsky <[email protected]>
4727 M:      Dan Williams <[email protected]>
4728 L:      [email protected]
4729 S:      Maintained
4730 F:      drivers/cxl/
4731 F:      include/uapi/linux/cxl_mem.h
4732
4733 CONEXANT ACCESSRUNNER USB DRIVER
4734 L:      [email protected]
4735 S:      Orphan
4736 W:      http://accessrunner.sourceforge.net/
4737 F:      drivers/usb/atm/cxacru.c
4738
4739 CONFIGFS
4740 M:      Joel Becker <[email protected]>
4741 M:      Christoph Hellwig <[email protected]>
4742 S:      Supported
4743 T:      git git://git.infradead.org/users/hch/configfs.git
4744 F:      fs/configfs/
4745 F:      include/linux/configfs.h
4746 F:      samples/configfs/
4747
4748 CONSOLE SUBSYSTEM
4749 M:      Greg Kroah-Hartman <[email protected]>
4750 S:      Supported
4751 F:      drivers/video/console/
4752 F:      include/linux/console*
4753
4754 CONTEXT TRACKING
4755 M:      Frederic Weisbecker <[email protected]>
4756 S:      Maintained
4757 F:      kernel/context_tracking.c
4758 F:      include/linux/context_tracking*
4759
4760 CONTROL GROUP (CGROUP)
4761 M:      Tejun Heo <[email protected]>
4762 M:      Zefan Li <[email protected]>
4763 M:      Johannes Weiner <[email protected]>
4764 L:      [email protected]
4765 S:      Maintained
4766 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4767 F:      Documentation/admin-guide/cgroup-v1/
4768 F:      Documentation/admin-guide/cgroup-v2.rst
4769 F:      include/linux/cgroup*
4770 F:      kernel/cgroup/
4771
4772 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
4773 M:      Tejun Heo <[email protected]>
4774 M:      Jens Axboe <[email protected]>
4775 L:      [email protected]
4776 L:      [email protected]
4777 T:      git git://git.kernel.dk/linux-block
4778 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
4779 F:      block/bfq-cgroup.c
4780 F:      block/blk-cgroup.c
4781 F:      block/blk-iolatency.c
4782 F:      block/blk-throttle.c
4783 F:      include/linux/blk-cgroup.h
4784
4785 CONTROL GROUP - CPUSET
4786 M:      Zefan Li <[email protected]>
4787 L:      [email protected]
4788 S:      Maintained
4789 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4790 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
4791 F:      include/linux/cpuset.h
4792 F:      kernel/cgroup/cpuset.c
4793
4794 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
4795 M:      Johannes Weiner <[email protected]>
4796 M:      Michal Hocko <[email protected]>
4797 M:      Vladimir Davydov <[email protected]>
4798 L:      [email protected]
4799 L:      [email protected]
4800 S:      Maintained
4801 F:      mm/memcontrol.c
4802 F:      mm/swap_cgroup.c
4803
4804 CORETEMP HARDWARE MONITORING DRIVER
4805 M:      Fenghua Yu <[email protected]>
4806 L:      [email protected]
4807 S:      Maintained
4808 F:      Documentation/hwmon/coretemp.rst
4809 F:      drivers/hwmon/coretemp.c
4810
4811 CORSAIR-CPRO HARDWARE MONITOR DRIVER
4812 M:      Marius Zachmann <[email protected]>
4813 L:      [email protected]
4814 S:      Maintained
4815 F:      drivers/hwmon/corsair-cpro.c
4816
4817 CORSAIR-PSU HARDWARE MONITOR DRIVER
4818 M:      Wilken Gottwalt <[email protected]>
4819 L:      [email protected]
4820 S:      Maintained
4821 F:      Documentation/hwmon/corsair-psu.rst
4822 F:      drivers/hwmon/corsair-psu.c
4823
4824 COSA/SRP SYNC SERIAL DRIVER
4825 M:      Jan "Yenya" Kasprzak <[email protected]>
4826 S:      Maintained
4827 W:      http://www.fi.muni.cz/~kas/cosa/
4828 F:      drivers/net/wan/cosa*
4829
4830 COUNTER SUBSYSTEM
4831 M:      William Breathitt Gray <[email protected]>
4832 L:      [email protected]
4833 S:      Maintained
4834 F:      Documentation/ABI/testing/sysfs-bus-counter
4835 F:      Documentation/driver-api/generic-counter.rst
4836 F:      drivers/counter/
4837 F:      include/linux/counter.h
4838 F:      include/linux/counter_enum.h
4839
4840 CP2615 I2C DRIVER
4841 M:      Bence Csókás <[email protected]>
4842 S:      Maintained
4843 F:      drivers/i2c/busses/i2c-cp2615.c
4844
4845 CPMAC ETHERNET DRIVER
4846 M:      Florian Fainelli <[email protected]>
4847 L:      [email protected]
4848 S:      Maintained
4849 F:      drivers/net/ethernet/ti/cpmac.c
4850
4851 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
4852 M:      Viresh Kumar <[email protected]>
4853 M:      Sudeep Holla <[email protected]>
4854 L:      [email protected]
4855 S:      Maintained
4856 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
4857 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
4858
4859 CPU FREQUENCY SCALING FRAMEWORK
4860 M:      "Rafael J. Wysocki" <[email protected]>
4861 M:      Viresh Kumar <[email protected]>
4862 L:      [email protected]
4863 S:      Maintained
4864 B:      https://bugzilla.kernel.org
4865 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4866 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
4867 F:      Documentation/admin-guide/pm/cpufreq.rst
4868 F:      Documentation/admin-guide/pm/intel_pstate.rst
4869 F:      Documentation/cpu-freq/
4870 F:      Documentation/devicetree/bindings/cpufreq/
4871 F:      drivers/cpufreq/
4872 F:      include/linux/cpufreq.h
4873 F:      include/linux/sched/cpufreq.h
4874 F:      kernel/sched/cpufreq*.c
4875 F:      tools/testing/selftests/cpufreq/
4876
4877 CPU IDLE TIME MANAGEMENT FRAMEWORK
4878 M:      "Rafael J. Wysocki" <[email protected]>
4879 M:      Daniel Lezcano <[email protected]>
4880 L:      [email protected]
4881 S:      Maintained
4882 B:      https://bugzilla.kernel.org
4883 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4884 F:      Documentation/admin-guide/pm/cpuidle.rst
4885 F:      Documentation/driver-api/pm/cpuidle.rst
4886 F:      drivers/cpuidle/
4887 F:      include/linux/cpuidle.h
4888
4889 CPU POWER MONITORING SUBSYSTEM
4890 M:      Thomas Renninger <[email protected]>
4891 M:      Shuah Khan <[email protected]>
4892 M:      Shuah Khan <[email protected]>
4893 L:      [email protected]
4894 S:      Maintained
4895 F:      tools/power/cpupower/
4896
4897 CPUID/MSR DRIVER
4898 M:      "H. Peter Anvin" <[email protected]>
4899 S:      Maintained
4900 F:      arch/x86/kernel/cpuid.c
4901 F:      arch/x86/kernel/msr.c
4902
4903 CPUIDLE DRIVER - ARM BIG LITTLE
4904 M:      Lorenzo Pieralisi <[email protected]>
4905 M:      Daniel Lezcano <[email protected]>
4906 L:      [email protected]
4907 L:      [email protected] (moderated for non-subscribers)
4908 S:      Maintained
4909 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4910 F:      drivers/cpuidle/cpuidle-big_little.c
4911
4912 CPUIDLE DRIVER - ARM EXYNOS
4913 M:      Bartlomiej Zolnierkiewicz <[email protected]>
4914 M:      Daniel Lezcano <[email protected]>
4915 M:      Kukjin Kim <[email protected]>
4916 L:      [email protected]
4917 L:      [email protected]
4918 S:      Supported
4919 F:      arch/arm/mach-exynos/pm.c
4920 F:      drivers/cpuidle/cpuidle-exynos.c
4921 F:      include/linux/platform_data/cpuidle-exynos.h
4922
4923 CPUIDLE DRIVER - ARM PSCI
4924 M:      Lorenzo Pieralisi <[email protected]>
4925 M:      Sudeep Holla <[email protected]>
4926 L:      [email protected]
4927 L:      [email protected] (moderated for non-subscribers)
4928 S:      Supported
4929 F:      drivers/cpuidle/cpuidle-psci.c
4930
4931 CPUIDLE DRIVER - ARM PSCI PM DOMAIN
4932 M:      Ulf Hansson <[email protected]>
4933 L:      [email protected]
4934 L:      [email protected] (moderated for non-subscribers)
4935 S:      Supported
4936 F:      drivers/cpuidle/cpuidle-psci.h
4937 F:      drivers/cpuidle/cpuidle-psci-domain.c
4938
4939 CRAMFS FILESYSTEM
4940 M:      Nicolas Pitre <[email protected]>
4941 S:      Maintained
4942 F:      Documentation/filesystems/cramfs.rst
4943 F:      fs/cramfs/
4944
4945 CREATIVE SB0540
4946 M:      Bastien Nocera <[email protected]>
4947 L:      [email protected]
4948 S:      Maintained
4949 F:      drivers/hid/hid-creative-sb0540.c
4950
4951 CRYPTO API
4952 M:      Herbert Xu <[email protected]>
4953 M:      "David S. Miller" <[email protected]>
4954 L:      [email protected]
4955 S:      Maintained
4956 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
4957 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
4958 F:      Documentation/crypto/
4959 F:      Documentation/devicetree/bindings/crypto/
4960 F:      arch/*/crypto/
4961 F:      crypto/
4962 F:      drivers/crypto/
4963 F:      include/crypto/
4964 F:      include/linux/crypto*
4965 F:      lib/crypto/
4966
4967 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
4968 M:      Neil Horman <[email protected]>
4969 L:      [email protected]
4970 S:      Maintained
4971 F:      crypto/ansi_cprng.c
4972 F:      crypto/rng.c
4973
4974 CS3308 MEDIA DRIVER
4975 M:      Hans Verkuil <[email protected]>
4976 L:      [email protected]
4977 S:      Odd Fixes
4978 W:      http://linuxtv.org
4979 T:      git git://linuxtv.org/media_tree.git
4980 F:      drivers/media/i2c/cs3308.c
4981
4982 CS5535 Audio ALSA driver
4983 M:      Jaya Kumar <[email protected]>
4984 S:      Maintained
4985 F:      sound/pci/cs5535audio/
4986
4987 CSI DRIVERS FOR ALLWINNER V3s
4988 M:      Yong Deng <[email protected]>
4989 L:      [email protected]
4990 S:      Maintained
4991 T:      git git://linuxtv.org/media_tree.git
4992 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
4993 F:      drivers/media/platform/sunxi/sun6i-csi/
4994
4995 CW1200 WLAN driver
4996 M:      Solomon Peachy <[email protected]>
4997 S:      Maintained
4998 F:      drivers/net/wireless/st/cw1200/
4999
5000 CX18 VIDEO4LINUX DRIVER
5001 M:      Andy Walls <[email protected]>
5002 L:      [email protected]
5003 S:      Maintained
5004 W:      https://linuxtv.org
5005 T:      git git://linuxtv.org/media_tree.git
5006 F:      drivers/media/pci/cx18/
5007 F:      include/uapi/linux/ivtv*
5008
5009 CX2341X MPEG ENCODER HELPER MODULE
5010 M:      Hans Verkuil <[email protected]>
5011 L:      [email protected]
5012 S:      Maintained
5013 W:      https://linuxtv.org
5014 T:      git git://linuxtv.org/media_tree.git
5015 F:      drivers/media/common/cx2341x*
5016 F:      include/media/drv-intf/cx2341x.h
5017
5018 CX24120 MEDIA DRIVER
5019 M:      Jemma Denson <[email protected]>
5020 M:      Patrick Boettcher <[email protected]>
5021 L:      [email protected]
5022 S:      Maintained
5023 W:      https://linuxtv.org
5024 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5025 F:      drivers/media/dvb-frontends/cx24120*
5026
5027 CX88 VIDEO4LINUX DRIVER
5028 M:      Mauro Carvalho Chehab <[email protected]>
5029 L:      [email protected]
5030 S:      Odd fixes
5031 W:      https://linuxtv.org
5032 T:      git git://linuxtv.org/media_tree.git
5033 F:      Documentation/driver-api/media/drivers/cx88*
5034 F:      drivers/media/pci/cx88/
5035
5036 CXD2820R MEDIA DRIVER
5037 M:      Antti Palosaari <[email protected]>
5038 L:      [email protected]
5039 S:      Maintained
5040 W:      https://linuxtv.org
5041 W:      http://palosaari.fi/linux/
5042 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5043 T:      git git://linuxtv.org/anttip/media_tree.git
5044 F:      drivers/media/dvb-frontends/cxd2820r*
5045
5046 CXGB3 ETHERNET DRIVER (CXGB3)
5047 M:      Raju Rangoju <[email protected]>
5048 L:      [email protected]
5049 S:      Supported
5050 W:      http://www.chelsio.com
5051 F:      drivers/net/ethernet/chelsio/cxgb3/
5052
5053 CXGB3 ISCSI DRIVER (CXGB3I)
5054 M:      Karen Xie <[email protected]>
5055 L:      [email protected]
5056 S:      Supported
5057 W:      http://www.chelsio.com
5058 F:      drivers/scsi/cxgbi/cxgb3i
5059
5060 CXGB4 CRYPTO DRIVER (chcr)
5061 M:      Ayush Sawal <[email protected]>
5062 M:      Vinay Kumar Yadav <[email protected]>
5063 M:      Rohit Maheshwari <[email protected]>
5064 L:      [email protected]
5065 S:      Supported
5066 W:      http://www.chelsio.com
5067 F:      drivers/crypto/chelsio
5068
5069 CXGB4 INLINE CRYPTO DRIVER
5070 M:      Ayush Sawal <[email protected]>
5071 M:      Vinay Kumar Yadav <[email protected]>
5072 M:      Rohit Maheshwari <[email protected]>
5073 L:      [email protected]
5074 S:      Supported
5075 W:      http://www.chelsio.com
5076 F:      drivers/net/ethernet/chelsio/inline_crypto/
5077
5078 CXGB4 ETHERNET DRIVER (CXGB4)
5079 M:      Raju Rangoju <[email protected]>
5080 L:      [email protected]
5081 S:      Supported
5082 W:      http://www.chelsio.com
5083 F:      drivers/net/ethernet/chelsio/cxgb4/
5084
5085 CXGB4 ISCSI DRIVER (CXGB4I)
5086 M:      Karen Xie <[email protected]>
5087 L:      [email protected]
5088 S:      Supported
5089 W:      http://www.chelsio.com
5090 F:      drivers/scsi/cxgbi/cxgb4i
5091
5092 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
5093 M:      Potnuri Bharat Teja <[email protected]>
5094 L:      [email protected]
5095 S:      Supported
5096 W:      http://www.openfabrics.org
5097 F:      drivers/infiniband/hw/cxgb4/
5098 F:      include/uapi/rdma/cxgb4-abi.h
5099
5100 CXGB4VF ETHERNET DRIVER (CXGB4VF)
5101 M:      Raju Rangoju <[email protected]>
5102 L:      [email protected]
5103 S:      Supported
5104 W:      http://www.chelsio.com
5105 F:      drivers/net/ethernet/chelsio/cxgb4vf/
5106
5107 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
5108 M:      Frederic Barrat <[email protected]>
5109 M:      Andrew Donnellan <[email protected]>
5110 L:      [email protected]
5111 S:      Supported
5112 F:      Documentation/ABI/testing/sysfs-class-cxl
5113 F:      Documentation/powerpc/cxl.rst
5114 F:      arch/powerpc/platforms/powernv/pci-cxl.c
5115 F:      drivers/misc/cxl/
5116 F:      include/misc/cxl*
5117 F:      include/uapi/misc/cxl.h
5118
5119 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
5120 M:      Manoj N. Kumar <[email protected]>
5121 M:      Matthew R. Ochs <[email protected]>
5122 M:      Uma Krishnan <[email protected]>
5123 L:      [email protected]
5124 S:      Supported
5125 F:      Documentation/powerpc/cxlflash.rst
5126 F:      drivers/scsi/cxlflash/
5127 F:      include/uapi/scsi/cxlflash_ioctl.h
5128
5129 CYBERPRO FB DRIVER
5130 M:      Russell King <[email protected]>
5131 L:      [email protected] (moderated for non-subscribers)
5132 S:      Maintained
5133 W:      http://www.armlinux.org.uk/
5134 F:      drivers/video/fbdev/cyber2000fb.*
5135
5136 CYCLADES PC300 DRIVER
5137 S:      Orphan
5138 F:      drivers/net/wan/pc300*
5139
5140 CYPRESS_FIRMWARE MEDIA DRIVER
5141 M:      Antti Palosaari <[email protected]>
5142 L:      [email protected]
5143 S:      Maintained
5144 W:      https://linuxtv.org
5145 W:      http://palosaari.fi/linux/
5146 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5147 T:      git git://linuxtv.org/anttip/media_tree.git
5148 F:      drivers/media/common/cypress_firmware*
5149
5150 CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
5151 M:      Linus Walleij <[email protected]>
5152 L:      [email protected]
5153 S:      Maintained
5154 F:      drivers/input/touchscreen/cy8ctma140.c
5155
5156 CYTTSP TOUCHSCREEN DRIVER
5157 M:      Linus Walleij <[email protected]>
5158 L:      [email protected]
5159 S:      Maintained
5160 F:      drivers/input/touchscreen/cyttsp*
5161
5162 D-LINK DIR-685 TOUCHKEYS DRIVER
5163 M:      Linus Walleij <[email protected]>
5164 L:      [email protected]
5165 S:      Supported
5166 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
5167
5168 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
5169 M:      Joshua Kinard <[email protected]>
5170 S:      Maintained
5171 F:      drivers/rtc/rtc-ds1685.c
5172 F:      include/linux/rtc/ds1685.h
5173
5174 DAMA SLAVE for AX.25
5175 M:      Joerg Reuter <[email protected]>
5176 L:      [email protected]
5177 S:      Maintained
5178 W:      http://yaina.de/jreuter/
5179 W:      http://www.qsl.net/dl1bke/
5180 F:      net/ax25/af_ax25.c
5181 F:      net/ax25/ax25_dev.c
5182 F:      net/ax25/ax25_ds_*
5183 F:      net/ax25/ax25_in.c
5184 F:      net/ax25/ax25_out.c
5185 F:      net/ax25/ax25_timer.c
5186 F:      net/ax25/sysctl_net_ax25.c
5187
5188 DATA ACCESS MONITOR
5189 M:      SeongJae Park <[email protected]>
5190 L:      [email protected]
5191 S:      Maintained
5192 F:      Documentation/admin-guide/mm/damon/
5193 F:      Documentation/vm/damon/
5194 F:      include/linux/damon.h
5195 F:      include/trace/events/damon.h
5196 F:      mm/damon/
5197 F:      tools/testing/selftests/damon/
5198
5199 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
5200 L:      [email protected]
5201 S:      Orphan
5202 F:      Documentation/networking/device_drivers/ethernet/dec/dmfe.rst
5203 F:      drivers/net/ethernet/dec/tulip/dmfe.c
5204
5205 DC390/AM53C974 SCSI driver
5206 M:      Hannes Reinecke <[email protected]>
5207 L:      [email protected]
5208 S:      Maintained
5209 F:      drivers/scsi/am53c974.c
5210
5211 DC395x SCSI driver
5212 M:      Oliver Neukum <[email protected]>
5213 M:      Ali Akcaagac <[email protected]>
5214 M:      Jamie Lenehan <[email protected]>
5215 L:      [email protected]
5216 S:      Maintained
5217 W:      http://twibble.org/dist/dc395x/
5218 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
5219 F:      Documentation/scsi/dc395x.rst
5220 F:      drivers/scsi/dc395x.*
5221
5222 DCCP PROTOCOL
5223 L:      [email protected]
5224 S:      Orphan
5225 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
5226 F:      include/linux/dccp.h
5227 F:      include/linux/tfrc.h
5228 F:      include/uapi/linux/dccp.h
5229 F:      net/dccp/
5230
5231 DECnet NETWORK LAYER
5232 L:      [email protected]
5233 S:      Orphan
5234 W:      http://linux-decnet.sourceforge.net
5235 F:      Documentation/networking/decnet.rst
5236 F:      net/decnet/
5237
5238 DECSTATION PLATFORM SUPPORT
5239 M:      "Maciej W. Rozycki" <[email protected]>
5240 L:      [email protected]
5241 S:      Maintained
5242 W:      http://www.linux-mips.org/wiki/DECstation
5243 F:      arch/mips/dec/
5244 F:      arch/mips/include/asm/dec/
5245 F:      arch/mips/include/asm/mach-dec/
5246
5247 DEFXX FDDI NETWORK DRIVER
5248 M:      "Maciej W. Rozycki" <[email protected]>
5249 S:      Maintained
5250 F:      drivers/net/fddi/defxx.*
5251
5252 DEFZA FDDI NETWORK DRIVER
5253 M:      "Maciej W. Rozycki" <[email protected]>
5254 S:      Maintained
5255 F:      drivers/net/fddi/defza.*
5256
5257 DEINTERLACE DRIVERS FOR ALLWINNER H3
5258 M:      Jernej Skrabec <[email protected]>
5259 L:      [email protected]
5260 S:      Maintained
5261 T:      git git://linuxtv.org/media_tree.git
5262 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
5263 F:      drivers/media/platform/sunxi/sun8i-di/
5264
5265 DELL LAPTOP DRIVER
5266 M:      Matthew Garrett <[email protected]>
5267 M:      Pali Rohár <[email protected]>
5268 L:      [email protected]
5269 S:      Maintained
5270 F:      drivers/platform/x86/dell/dell-laptop.c
5271
5272 DELL LAPTOP FREEFALL DRIVER
5273 M:      Pali Rohár <[email protected]>
5274 S:      Maintained
5275 F:      drivers/platform/x86/dell/dell-smo8800.c
5276
5277 DELL LAPTOP RBTN DRIVER
5278 M:      Pali Rohár <[email protected]>
5279 S:      Maintained
5280 F:      drivers/platform/x86/dell/dell-rbtn.*
5281
5282 DELL LAPTOP SMM DRIVER
5283 M:      Pali Rohár <[email protected]>
5284 S:      Maintained
5285 F:      drivers/hwmon/dell-smm-hwmon.c
5286 F:      include/uapi/linux/i8k.h
5287
5288 DELL REMOTE BIOS UPDATE DRIVER
5289 M:      Stuart Hayes <[email protected]>
5290 L:      [email protected]
5291 S:      Maintained
5292 F:      drivers/platform/x86/dell/dell_rbu.c
5293
5294 DELL SMBIOS DRIVER
5295 M:      Pali Rohár <[email protected]>
5296 L:      [email protected]
5297 L:      [email protected]
5298 S:      Maintained
5299 F:      drivers/platform/x86/dell/dell-smbios.*
5300
5301 DELL SMBIOS SMM DRIVER
5302 L:      [email protected]
5303 L:      [email protected]
5304 S:      Maintained
5305 F:      drivers/platform/x86/dell/dell-smbios-smm.c
5306
5307 DELL SMBIOS WMI DRIVER
5308 L:      [email protected]
5309 L:      [email protected]
5310 S:      Maintained
5311 F:      drivers/platform/x86/dell/dell-smbios-wmi.c
5312 F:      tools/wmi/dell-smbios-example.c
5313
5314 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
5315 M:      Stuart Hayes <[email protected]>
5316 L:      [email protected]
5317 S:      Maintained
5318 F:      Documentation/driver-api/dcdbas.rst
5319 F:      drivers/platform/x86/dell/dcdbas.*
5320
5321 DELL WMI DESCRIPTOR DRIVER
5322 L:      [email protected]
5323 S:      Maintained
5324 F:      drivers/platform/x86/dell/dell-wmi-descriptor.c
5325
5326 DELL WMI SYSMAN DRIVER
5327 M:      Divya Bharathi <[email protected]>
5328 M:      Prasanth Ksr <[email protected]>
5329 L:      [email protected]
5330 L:      [email protected]
5331 S:      Maintained
5332 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
5333 F:      drivers/platform/x86/dell/dell-wmi-sysman/
5334
5335 DELL WMI NOTIFICATIONS DRIVER
5336 M:      Matthew Garrett <[email protected]>
5337 M:      Pali Rohár <[email protected]>
5338 S:      Maintained
5339 F:      drivers/platform/x86/dell/dell-wmi-base.c
5340
5341 DELL WMI HARDWARE PRIVACY SUPPORT
5342 M:      Perry Yuan <[email protected]>
5343 L:      [email protected]
5344 L:      [email protected]
5345 S:      Maintained
5346 F:      drivers/platform/x86/dell/dell-wmi-privacy.c
5347
5348 DELTA ST MEDIA DRIVER
5349 M:      Hugues Fruchet <[email protected]>
5350 L:      [email protected]
5351 S:      Supported
5352 W:      https://linuxtv.org
5353 T:      git git://linuxtv.org/media_tree.git
5354 F:      drivers/media/platform/sti/delta
5355
5356 DELTA DPS920AB PSU DRIVER
5357 M:      Robert Marko <[email protected]>
5358 L:      [email protected]
5359 S:      Maintained
5360 F:      Documentation/hwmon/dps920ab.rst
5361 F:      drivers/hwmon/pmbus/dps920ab.c
5362
5363 DENALI NAND DRIVER
5364 L:      [email protected]
5365 S:      Orphan
5366 F:      drivers/mtd/nand/raw/denali*
5367
5368 DESIGNWARE EDMA CORE IP DRIVER
5369 M:      Gustavo Pimentel <[email protected]>
5370 L:      [email protected]
5371 S:      Maintained
5372 F:      drivers/dma/dw-edma/
5373 F:      include/linux/dma/edma.h
5374
5375 DESIGNWARE XDATA IP DRIVER
5376 M:      Gustavo Pimentel <[email protected]>
5377 L:      [email protected]
5378 S:      Maintained
5379 F:      Documentation/misc-devices/dw-xdata-pcie.rst
5380 F:      drivers/misc/dw-xdata-pcie.c
5381
5382 DESIGNWARE USB2 DRD IP DRIVER
5383 M:      Minas Harutyunyan <[email protected]>
5384 L:      [email protected]
5385 S:      Maintained
5386 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5387 F:      drivers/usb/dwc2/
5388
5389 DESIGNWARE USB3 DRD IP DRIVER
5390 M:      Felipe Balbi <[email protected]>
5391 L:      [email protected]
5392 S:      Maintained
5393 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5394 F:      drivers/usb/dwc3/
5395
5396 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
5397 M:      Andreas Klinger <[email protected]>
5398 L:      [email protected]
5399 S:      Maintained
5400 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
5401 F:      drivers/iio/proximity/srf*.c
5402
5403 DEVICE COREDUMP (DEV_COREDUMP)
5404 M:      Johannes Berg <[email protected]>
5405 L:      [email protected]
5406 S:      Maintained
5407 F:      drivers/base/devcoredump.c
5408 F:      include/linux/devcoredump.h
5409
5410 DEVICE DEPENDENCY HELPER SCRIPT
5411 M:      Saravana Kannan <[email protected]>
5412 L:      [email protected]
5413 S:      Maintained
5414 F:      scripts/dev-needs.sh
5415
5416 DEVICE DIRECT ACCESS (DAX)
5417 M:      Dan Williams <[email protected]>
5418 M:      Vishal Verma <[email protected]>
5419 M:      Dave Jiang <[email protected]>
5420 L:      [email protected]
5421 S:      Supported
5422 F:      drivers/dax/
5423
5424 DEVICE FREQUENCY (DEVFREQ)
5425 M:      MyungJoo Ham <[email protected]>
5426 M:      Kyungmin Park <[email protected]>
5427 M:      Chanwoo Choi <[email protected]>
5428 L:      [email protected]
5429 S:      Maintained
5430 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5431 F:      Documentation/devicetree/bindings/devfreq/
5432 F:      drivers/devfreq/
5433 F:      include/linux/devfreq.h
5434 F:      include/trace/events/devfreq.h
5435
5436 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
5437 M:      Chanwoo Choi <[email protected]>
5438 L:      [email protected]
5439 S:      Supported
5440 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5441 F:      Documentation/devicetree/bindings/devfreq/event/
5442 F:      drivers/devfreq/devfreq-event.c
5443 F:      drivers/devfreq/event/
5444 F:      include/dt-bindings/pmu/exynos_ppmu.h
5445 F:      include/linux/devfreq-event.h
5446
5447 DEVICE NUMBER REGISTRY
5448 M:      Torben Mathiasen <[email protected]>
5449 S:      Maintained
5450 W:      http://lanana.org/docs/device-list/index.html
5451
5452 DEVICE RESOURCE MANAGEMENT HELPERS
5453 M:      Hans de Goede <[email protected]>
5454 R:      Matti Vaittinen <[email protected]>
5455 S:      Maintained
5456 F:      include/linux/devm-helpers.h
5457
5458 DEVICE-MAPPER  (LVM)
5459 M:      Alasdair Kergon <[email protected]>
5460 M:      Mike Snitzer <[email protected]>
5461 M:      [email protected]
5462 L:      [email protected]
5463 S:      Maintained
5464 W:      http://sources.redhat.com/dm
5465 Q:      http://patchwork.kernel.org/project/dm-devel/list/
5466 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
5467 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
5468 F:      Documentation/admin-guide/device-mapper/
5469 F:      drivers/md/Kconfig
5470 F:      drivers/md/Makefile
5471 F:      drivers/md/dm*
5472 F:      drivers/md/persistent-data/
5473 F:      include/linux/device-mapper.h
5474 F:      include/linux/dm-*.h
5475 F:      include/uapi/linux/dm-*.h
5476
5477 DEVLINK
5478 M:      Jiri Pirko <[email protected]>
5479 L:      [email protected]
5480 S:      Supported
5481 F:      Documentation/networking/devlink
5482 F:      include/net/devlink.h
5483 F:      include/uapi/linux/devlink.h
5484 F:      net/core/devlink.c
5485
5486 DH ELECTRONICS IMX6 DHCOM BOARD SUPPORT
5487 M:      Christoph Niedermaier <[email protected]>
5488 L:      [email protected]
5489 S:      Maintained
5490 F:      arch/arm/boot/dts/imx6*-dhcom-*
5491
5492 DH ELECTRONICS STM32MP1 DHCOM/DHCOR BOARD SUPPORT
5493 M:      Marek Vasut <[email protected]>
5494 L:      [email protected]
5495 S:      Maintained
5496 F:      arch/arm/boot/dts/stm32mp1*-dhcom-*
5497 F:      arch/arm/boot/dts/stm32mp1*-dhcor-*
5498
5499 DIALOG SEMICONDUCTOR DRIVERS
5500 M:      Support Opensource <[email protected]>
5501 S:      Supported
5502 W:      http://www.dialog-semiconductor.com/products
5503 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
5504 F:      Documentation/devicetree/bindings/input/dlg,da72??.txt
5505 F:      Documentation/devicetree/bindings/mfd/da90*.txt
5506 F:      Documentation/devicetree/bindings/regulator/dlg,da9*.yaml
5507 F:      Documentation/devicetree/bindings/regulator/da92*.txt
5508 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
5509 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
5510 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
5511 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
5512 F:      Documentation/hwmon/da90??.rst
5513 F:      drivers/gpio/gpio-da90??.c
5514 F:      drivers/hwmon/da90??-hwmon.c
5515 F:      drivers/iio/adc/da91??-*.c
5516 F:      drivers/input/misc/da72??.[ch]
5517 F:      drivers/input/misc/da90??_onkey.c
5518 F:      drivers/input/touchscreen/da9052_tsi.c
5519 F:      drivers/leds/leds-da90??.c
5520 F:      drivers/mfd/da903x.c
5521 F:      drivers/mfd/da90??-*.c
5522 F:      drivers/mfd/da91??-*.c
5523 F:      drivers/pinctrl/pinctrl-da90??.c
5524 F:      drivers/power/supply/da9052-battery.c
5525 F:      drivers/power/supply/da91??-*.c
5526 F:      drivers/regulator/da9???-regulator.[ch]
5527 F:      drivers/regulator/slg51000-regulator.[ch]
5528 F:      drivers/rtc/rtc-da90??.c
5529 F:      drivers/thermal/da90??-thermal.c
5530 F:      drivers/video/backlight/da90??_bl.c
5531 F:      drivers/watchdog/da90??_wdt.c
5532 F:      include/dt-bindings/regulator/dlg,da9*-regulator.h
5533 F:      include/linux/mfd/da903x.h
5534 F:      include/linux/mfd/da9052/
5535 F:      include/linux/mfd/da9055/
5536 F:      include/linux/mfd/da9062/
5537 F:      include/linux/mfd/da9063/
5538 F:      include/linux/mfd/da9150/
5539 F:      include/linux/regulator/da9211.h
5540 F:      include/sound/da[79]*.h
5541 F:      sound/soc/codecs/da[79]*.[ch]
5542
5543 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
5544 M:      William Breathitt Gray <[email protected]>
5545 L:      [email protected]
5546 S:      Maintained
5547 F:      drivers/gpio/gpio-gpio-mm.c
5548
5549 DIOLAN U2C-12 I2C DRIVER
5550 M:      Guenter Roeck <[email protected]>
5551 L:      [email protected]
5552 S:      Maintained
5553 F:      drivers/i2c/busses/i2c-diolan-u2c.c
5554
5555 DIRECTORY NOTIFICATION (DNOTIFY)
5556 M:      Jan Kara <[email protected]>
5557 R:      Amir Goldstein <[email protected]>
5558 L:      [email protected]
5559 S:      Maintained
5560 F:      Documentation/filesystems/dnotify.rst
5561 F:      fs/notify/dnotify/
5562 F:      include/linux/dnotify.h
5563
5564 DISK GEOMETRY AND PARTITION HANDLING
5565 M:      Andries Brouwer <[email protected]>
5566 S:      Maintained
5567 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
5568 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
5569 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
5570
5571 DISKQUOTA
5572 M:      Jan Kara <[email protected]>
5573 S:      Maintained
5574 F:      Documentation/filesystems/quota.rst
5575 F:      fs/quota/
5576 F:      include/linux/quota*.h
5577 F:      include/uapi/linux/quota*.h
5578
5579 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
5580 M:      Bernie Thompson <[email protected]>
5581 L:      [email protected]
5582 S:      Maintained
5583 W:      http://plugable.com/category/projects/udlfb/
5584 F:      Documentation/fb/udlfb.rst
5585 F:      drivers/video/fbdev/udlfb.c
5586 F:      include/video/udlfb.h
5587
5588 DISTRIBUTED LOCK MANAGER (DLM)
5589 M:      Christine Caulfield <[email protected]>
5590 M:      David Teigland <[email protected]>
5591 L:      [email protected]
5592 S:      Supported
5593 W:      http://sources.redhat.com/cluster/
5594 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
5595 F:      fs/dlm/
5596
5597 DMA BUFFER SHARING FRAMEWORK
5598 M:      Sumit Semwal <[email protected]>
5599 M:      Christian König <[email protected]>
5600 L:      [email protected]
5601 L:      [email protected]
5602 L:      [email protected] (moderated for non-subscribers)
5603 S:      Maintained
5604 T:      git git://anongit.freedesktop.org/drm/drm-misc
5605 F:      Documentation/driver-api/dma-buf.rst
5606 F:      drivers/dma-buf/
5607 F:      include/linux/*fence.h
5608 F:      include/linux/dma-buf*
5609 F:      include/linux/dma-resv.h
5610 K:      \bdma_(?:buf|fence|resv)\b
5611
5612 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
5613 M:      Vinod Koul <[email protected]>
5614 L:      [email protected]
5615 S:      Maintained
5616 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5617 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git
5618 F:      Documentation/devicetree/bindings/dma/
5619 F:      Documentation/driver-api/dmaengine/
5620 F:      drivers/dma/
5621 F:      include/linux/dma/
5622 F:      include/linux/dmaengine.h
5623 F:      include/linux/of_dma.h
5624
5625 DMA MAPPING HELPERS
5626 M:      Christoph Hellwig <[email protected]>
5627 M:      Marek Szyprowski <[email protected]>
5628 R:      Robin Murphy <[email protected]>
5629 L:      [email protected]
5630 S:      Supported
5631 W:      http://git.infradead.org/users/hch/dma-mapping.git
5632 T:      git git://git.infradead.org/users/hch/dma-mapping.git
5633 F:      include/asm-generic/dma-mapping.h
5634 F:      include/linux/dma-direct.h
5635 F:      include/linux/dma-mapping.h
5636 F:      include/linux/dma-map-ops.h
5637 F:      kernel/dma/
5638
5639 DMA MAPPING BENCHMARK
5640 M:      Barry Song <[email protected]>
5641 L:      [email protected]
5642 F:      kernel/dma/map_benchmark.c
5643 F:      tools/testing/selftests/dma/
5644
5645 DMA-BUF HEAPS FRAMEWORK
5646 M:      Sumit Semwal <[email protected]>
5647 R:      Benjamin Gaignard <[email protected]>
5648 R:      Liam Mark <[email protected]>
5649 R:      Laura Abbott <[email protected]>
5650 R:      Brian Starkey <[email protected]>
5651 R:      John Stultz <[email protected]>
5652 L:      [email protected]
5653 L:      [email protected]
5654 L:      [email protected] (moderated for non-subscribers)
5655 S:      Maintained
5656 T:      git git://anongit.freedesktop.org/drm/drm-misc
5657 F:      drivers/dma-buf/dma-heap.c
5658 F:      drivers/dma-buf/heaps/*
5659 F:      include/linux/dma-heap.h
5660 F:      include/uapi/linux/dma-heap.h
5661
5662 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
5663 M:      Lukasz Luba <[email protected]>
5664 L:      [email protected]
5665 L:      [email protected]
5666 S:      Maintained
5667 F:      Documentation/devicetree/bindings/memory-controllers/samsung,exynos5422-dmc.yaml
5668 F:      drivers/memory/samsung/exynos5422-dmc.c
5669
5670 DME1737 HARDWARE MONITOR DRIVER
5671 M:      Juerg Haefliger <[email protected]>
5672 L:      [email protected]
5673 S:      Maintained
5674 F:      Documentation/hwmon/dme1737.rst
5675 F:      drivers/hwmon/dme1737.c
5676
5677 DMI/SMBIOS SUPPORT
5678 M:      Jean Delvare <[email protected]>
5679 S:      Maintained
5680 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jdelvare/staging.git dmi-for-next
5681 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
5682 F:      drivers/firmware/dmi-id.c
5683 F:      drivers/firmware/dmi_scan.c
5684 F:      include/linux/dmi.h
5685
5686 DOCUMENTATION
5687 M:      Jonathan Corbet <[email protected]>
5688 L:      [email protected]
5689 S:      Maintained
5690 P:      Documentation/doc-guide/maintainer-profile.rst
5691 T:      git git://git.lwn.net/linux.git docs-next
5692 F:      Documentation/
5693 F:      scripts/documentation-file-ref-check
5694 F:      scripts/kernel-doc
5695 F:      scripts/sphinx-pre-install
5696 X:      Documentation/ABI/
5697 X:      Documentation/admin-guide/media/
5698 X:      Documentation/devicetree/
5699 X:      Documentation/driver-api/media/
5700 X:      Documentation/firmware-guide/acpi/
5701 X:      Documentation/i2c/
5702 X:      Documentation/power/
5703 X:      Documentation/spi/
5704 X:      Documentation/userspace-api/media/
5705
5706 DOCUMENTATION REPORTING ISSUES
5707 M:      Thorsten Leemhuis <[email protected]>
5708 L:      [email protected]
5709 S:      Maintained
5710 F:      Documentation/admin-guide/reporting-issues.rst
5711
5712 DOCUMENTATION SCRIPTS
5713 M:      Mauro Carvalho Chehab <[email protected]>
5714 L:      [email protected]
5715 S:      Maintained
5716 F:      Documentation/sphinx/parse-headers.pl
5717 F:      scripts/documentation-file-ref-check
5718 F:      scripts/sphinx-pre-install
5719
5720 DOCUMENTATION/ITALIAN
5721 M:      Federico Vaga <[email protected]>
5722 L:      [email protected]
5723 S:      Maintained
5724 F:      Documentation/translations/it_IT
5725
5726 DONGWOON DW9714 LENS VOICE COIL DRIVER
5727 M:      Sakari Ailus <[email protected]>
5728 L:      [email protected]
5729 S:      Maintained
5730 T:      git git://linuxtv.org/media_tree.git
5731 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
5732 F:      drivers/media/i2c/dw9714.c
5733
5734 DONGWOON DW9768 LENS VOICE COIL DRIVER
5735 M:      Dongchun Zhu <[email protected]>
5736 L:      [email protected]
5737 S:      Maintained
5738 T:      git git://linuxtv.org/media_tree.git
5739 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9768.yaml
5740 F:      drivers/media/i2c/dw9768.c
5741
5742 DONGWOON DW9807 LENS VOICE COIL DRIVER
5743 M:      Sakari Ailus <[email protected]>
5744 L:      [email protected]
5745 S:      Maintained
5746 T:      git git://linuxtv.org/media_tree.git
5747 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
5748 F:      drivers/media/i2c/dw9807-vcm.c
5749
5750 DOUBLETALK DRIVER
5751 M:      "James R. Van Zandt" <[email protected]>
5752 L:      [email protected]
5753 S:      Maintained
5754 F:      drivers/char/dtlk.c
5755 F:      include/linux/dtlk.h
5756
5757 DPAA2 DATAPATH I/O (DPIO) DRIVER
5758 M:      Roy Pledge <[email protected]>
5759 L:      [email protected]
5760 S:      Maintained
5761 F:      drivers/soc/fsl/dpio
5762
5763 DPAA2 ETHERNET DRIVER
5764 M:      Ioana Ciornei <[email protected]>
5765 L:      [email protected]
5766 S:      Maintained
5767 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/ethernet-driver.rst
5768 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/mac-phy-support.rst
5769 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
5770 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
5771 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
5772 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
5773 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
5774 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
5775 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
5776
5777 DPAA2 ETHERNET SWITCH DRIVER
5778 M:      Ioana Ciornei <[email protected]>
5779 L:      [email protected]
5780 S:      Maintained
5781 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/switch-driver.rst
5782 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-switch*
5783 F:      drivers/net/ethernet/freescale/dpaa2/dpsw*
5784
5785 DPT_I2O SCSI RAID DRIVER
5786 M:      Adaptec OEM Raid Solutions <[email protected]>
5787 L:      [email protected]
5788 S:      Maintained
5789 W:      http://www.adaptec.com/
5790 F:      drivers/scsi/dpt*
5791 F:      drivers/scsi/dpt/
5792
5793 DRBD DRIVER
5794 M:      Philipp Reisner <[email protected]>
5795 M:      Lars Ellenberg <[email protected]>
5796 L:      [email protected]
5797 S:      Supported
5798 W:      http://www.drbd.org
5799 T:      git git://git.linbit.com/linux-drbd.git
5800 T:      git git://git.linbit.com/drbd-8.4.git
5801 F:      Documentation/admin-guide/blockdev/
5802 F:      drivers/block/drbd/
5803 F:      lib/lru_cache.c
5804
5805 DRIVER COMPONENT FRAMEWORK
5806 L:      [email protected]
5807 F:      drivers/base/component.c
5808 F:      include/linux/component.h
5809
5810 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
5811 M:      Greg Kroah-Hartman <[email protected]>
5812 R:      "Rafael J. Wysocki" <[email protected]>
5813 S:      Supported
5814 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
5815 F:      Documentation/core-api/kobject.rst
5816 F:      drivers/base/
5817 F:      fs/debugfs/
5818 F:      fs/sysfs/
5819 F:      include/linux/debugfs.h
5820 F:      include/linux/kobj*
5821 F:      lib/kobj*
5822
5823 DRIVERS FOR OMAP ADAPTIVE VOLTAGE SCALING (AVS)
5824 M:      Nishanth Menon <[email protected]>
5825 L:      [email protected]
5826 S:      Maintained
5827 F:      drivers/soc/ti/smartreflex.c
5828 F:      include/linux/power/smartreflex.h
5829
5830 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
5831 M:      Maxime Ripard <[email protected]>
5832 M:      Chen-Yu Tsai <[email protected]>
5833 R:      Jernej Skrabec <[email protected]>
5834 L:      [email protected]
5835 S:      Supported
5836 T:      git git://anongit.freedesktop.org/drm/drm-misc
5837 F:      drivers/gpu/drm/sun4i/sun8i*
5838
5839 DRM DRIVER FOR ARM PL111 CLCD
5840 M:      Emma Anholt <[email protected]>
5841 S:      Supported
5842 T:      git git://anongit.freedesktop.org/drm/drm-misc
5843 F:      drivers/gpu/drm/pl111/
5844
5845 DRM DRIVER FOR ARM VERSATILE TFT PANELS
5846 M:      Linus Walleij <[email protected]>
5847 S:      Maintained
5848 T:      git git://anongit.freedesktop.org/drm/drm-misc
5849 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
5850 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
5851
5852 DRM DRIVER FOR ASPEED BMC GFX
5853 M:      Joel Stanley <[email protected]>
5854 L:      [email protected] (moderated for non-subscribers)
5855 S:      Supported
5856 T:      git git://anongit.freedesktop.org/drm/drm-misc
5857 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
5858 F:      drivers/gpu/drm/aspeed/
5859
5860 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
5861 M:      Dave Airlie <[email protected]>
5862 R:      Thomas Zimmermann <[email protected]>
5863 L:      [email protected]
5864 S:      Supported
5865 T:      git git://anongit.freedesktop.org/drm/drm-misc
5866 F:      drivers/gpu/drm/ast/
5867
5868 DRM DRIVER FOR BOCHS VIRTUAL GPU
5869 M:      Gerd Hoffmann <[email protected]>
5870 L:      [email protected]
5871 S:      Maintained
5872 T:      git git://anongit.freedesktop.org/drm/drm-misc
5873 F:      drivers/gpu/drm/tiny/bochs.c
5874
5875 DRM DRIVER FOR BOE HIMAX8279D PANELS
5876 M:      Jerry Han <[email protected]>
5877 S:      Maintained
5878 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
5879 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
5880
5881 DRM DRIVER FOR CHIPONE ICN6211 MIPI-DSI to RGB CONVERTER BRIDGE
5882 M:      Jagan Teki <[email protected]>
5883 S:      Maintained
5884 F:      Documentation/devicetree/bindings/display/bridge/chipone,icn6211.yaml
5885 F:      drivers/gpu/drm/bridge/chipone-icn6211.c
5886
5887 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
5888 M:      Linus Walleij <[email protected]>
5889 S:      Maintained
5890 T:      git git://anongit.freedesktop.org/drm/drm-misc
5891 F:      drivers/gpu/drm/tve200/
5892
5893 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
5894 M:      Icenowy Zheng <[email protected]>
5895 S:      Maintained
5896 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
5897 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
5898
5899 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
5900 M:      Jagan Teki <[email protected]>
5901 S:      Maintained
5902 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
5903 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
5904
5905 DRM DRIVER FOR GENERIC USB DISPLAY
5906 M:      Noralf Trønnes <[email protected]>
5907 S:      Maintained
5908 W:      https://github.com/notro/gud/wiki
5909 T:      git git://anongit.freedesktop.org/drm/drm-misc
5910 F:      drivers/gpu/drm/gud/
5911 F:      include/drm/gud.h
5912
5913 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
5914 M:      Hans de Goede <[email protected]>
5915 S:      Maintained
5916 T:      git git://anongit.freedesktop.org/drm/drm-misc
5917 F:      drivers/gpu/drm/tiny/gm12u320.c
5918
5919 DRM DRIVER FOR HX8357D PANELS
5920 M:      Emma Anholt <[email protected]>
5921 S:      Maintained
5922 T:      git git://anongit.freedesktop.org/drm/drm-misc
5923 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
5924 F:      drivers/gpu/drm/tiny/hx8357d.c
5925
5926 DRM DRIVER FOR ILITEK ILI9225 PANELS
5927 M:      David Lechner <[email protected]>
5928 S:      Maintained
5929 T:      git git://anongit.freedesktop.org/drm/drm-misc
5930 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
5931 F:      drivers/gpu/drm/tiny/ili9225.c
5932
5933 DRM DRIVER FOR ILITEK ILI9486 PANELS
5934 M:      Kamlesh Gurudasani <[email protected]>
5935 S:      Maintained
5936 T:      git git://anongit.freedesktop.org/drm/drm-misc
5937 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
5938 F:      drivers/gpu/drm/tiny/ili9486.c
5939
5940 DRM DRIVER FOR INTEL I810 VIDEO CARDS
5941 S:      Orphan / Obsolete
5942 F:      drivers/gpu/drm/i810/
5943 F:      include/uapi/drm/i810_drm.h
5944
5945 DRM DRIVER FOR LVDS PANELS
5946 M:      Laurent Pinchart <[email protected]>
5947 L:      [email protected]
5948 T:      git git://anongit.freedesktop.org/drm/drm-misc
5949 S:      Maintained
5950 F:      drivers/gpu/drm/panel/panel-lvds.c
5951 F:      Documentation/devicetree/bindings/display/panel/lvds.yaml
5952
5953 DRM DRIVER FOR MANTIX MLAF057WE51 PANELS
5954 M:      Guido Günther <[email protected]>
5955 R:      Purism Kernel Team <[email protected]>
5956 S:      Maintained
5957 F:      Documentation/devicetree/bindings/display/panel/mantix,mlaf057we51-x.yaml
5958 F:      drivers/gpu/drm/panel/panel-mantix-mlaf057we51.c
5959
5960 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
5961 S:      Orphan / Obsolete
5962 F:      drivers/gpu/drm/mga/
5963 F:      include/uapi/drm/mga_drm.h
5964
5965 DRM DRIVER FOR MGA G200 GRAPHICS CHIPS
5966 M:      Dave Airlie <[email protected]>
5967 R:      Thomas Zimmermann <[email protected]>
5968 L:      [email protected]
5969 S:      Supported
5970 T:      git git://anongit.freedesktop.org/drm/drm-misc
5971 F:      drivers/gpu/drm/mgag200/
5972
5973 DRM DRIVER FOR MI0283QT
5974 M:      Noralf Trønnes <[email protected]>
5975 S:      Maintained
5976 T:      git git://anongit.freedesktop.org/drm/drm-misc
5977 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
5978 F:      drivers/gpu/drm/tiny/mi0283qt.c
5979
5980 DRM DRIVER FOR MSM ADRENO GPU
5981 M:      Rob Clark <[email protected]>
5982 M:      Sean Paul <[email protected]>
5983 L:      [email protected]
5984 L:      [email protected]
5985 L:      [email protected]
5986 S:      Maintained
5987 T:      git https://gitlab.freedesktop.org/drm/msm.git
5988 F:      Documentation/devicetree/bindings/display/msm/
5989 F:      drivers/gpu/drm/msm/
5990 F:      include/uapi/drm/msm_drm.h
5991
5992 DRM DRIVER FOR NOVATEK NT35510 PANELS
5993 M:      Linus Walleij <[email protected]>
5994 S:      Maintained
5995 T:      git git://anongit.freedesktop.org/drm/drm-misc
5996 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
5997 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
5998
5999 DRM DRIVER FOR NOVATEK NT36672A PANELS
6000 M:      Sumit Semwal <[email protected]>
6001 S:      Maintained
6002 T:      git git://anongit.freedesktop.org/drm/drm-misc
6003 F:      Documentation/devicetree/bindings/display/panel/novatek,nt36672a.yaml
6004 F:      drivers/gpu/drm/panel/panel-novatek-nt36672a.c
6005
6006 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
6007 M:      Ben Skeggs <[email protected]>
6008 L:      [email protected]
6009 L:      [email protected]
6010 S:      Supported
6011 T:      git git://github.com/skeggsb/linux
6012 F:      drivers/gpu/drm/nouveau/
6013 F:      include/uapi/drm/nouveau_drm.h
6014
6015 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
6016 M:      Stefan Mavrodiev <[email protected]>
6017 S:      Maintained
6018 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
6019 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
6020
6021 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
6022 M:      Noralf Trønnes <[email protected]>
6023 S:      Maintained
6024 T:      git git://anongit.freedesktop.org/drm/drm-misc
6025 F:      Documentation/devicetree/bindings/display/repaper.txt
6026 F:      drivers/gpu/drm/tiny/repaper.c
6027
6028 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
6029 M:      Dave Airlie <[email protected]>
6030 M:      Gerd Hoffmann <[email protected]>
6031 L:      [email protected]
6032 S:      Obsolete
6033 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
6034 T:      git git://anongit.freedesktop.org/drm/drm-misc
6035 F:      drivers/gpu/drm/tiny/cirrus.c
6036
6037 DRM DRIVER FOR QXL VIRTUAL GPU
6038 M:      Dave Airlie <[email protected]>
6039 M:      Gerd Hoffmann <[email protected]>
6040 L:      [email protected]
6041 L:      [email protected]
6042 S:      Maintained
6043 T:      git git://anongit.freedesktop.org/drm/drm-misc
6044 F:      drivers/gpu/drm/qxl/
6045 F:      include/uapi/drm/qxl_drm.h
6046
6047 DRM DRIVER FOR RAGE 128 VIDEO CARDS
6048 S:      Orphan / Obsolete
6049 F:      drivers/gpu/drm/r128/
6050 F:      include/uapi/drm/r128_drm.h
6051
6052 DRM DRIVER FOR RAYDIUM RM67191 PANELS
6053 M:      Robert Chiras <[email protected]>
6054 S:      Maintained
6055 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.yaml
6056 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
6057
6058 DRM DRIVER FOR SAMSUNG DB7430 PANELS
6059 M:      Linus Walleij <[email protected]>
6060 S:      Maintained
6061 T:      git git://anongit.freedesktop.org/drm/drm-misc
6062 F:      Documentation/devicetree/bindings/display/panel/samsung,lms397kf04.yaml
6063 F:      drivers/gpu/drm/panel/panel-samsung-db7430.c
6064
6065 DRM DRIVER FOR SITRONIX ST7703 PANELS
6066 M:      Guido Günther <[email protected]>
6067 R:      Purism Kernel Team <[email protected]>
6068 R:      Ondrej Jirman <[email protected]>
6069 S:      Maintained
6070 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.yaml
6071 F:      drivers/gpu/drm/panel/panel-sitronix-st7703.c
6072
6073 DRM DRIVER FOR SAVAGE VIDEO CARDS
6074 S:      Orphan / Obsolete
6075 F:      drivers/gpu/drm/savage/
6076 F:      include/uapi/drm/savage_drm.h
6077
6078 DRM DRIVER FOR SIMPLE FRAMEBUFFERS
6079 M:      Thomas Zimmermann <[email protected]>
6080 L:      [email protected]
6081 S:      Maintained
6082 T:      git git://anongit.freedesktop.org/drm/drm-misc
6083 F:      drivers/gpu/drm/tiny/simpledrm.c
6084
6085 DRM DRIVER FOR SIS VIDEO CARDS
6086 S:      Orphan / Obsolete
6087 F:      drivers/gpu/drm/sis/
6088 F:      include/uapi/drm/sis_drm.h
6089
6090 DRM DRIVER FOR SITRONIX ST7586 PANELS
6091 M:      David Lechner <[email protected]>
6092 S:      Maintained
6093 T:      git git://anongit.freedesktop.org/drm/drm-misc
6094 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
6095 F:      drivers/gpu/drm/tiny/st7586.c
6096
6097 DRM DRIVER FOR SITRONIX ST7701 PANELS
6098 M:      Jagan Teki <[email protected]>
6099 S:      Maintained
6100 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
6101 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
6102
6103 DRM DRIVER FOR SITRONIX ST7735R PANELS
6104 M:      David Lechner <[email protected]>
6105 S:      Maintained
6106 T:      git git://anongit.freedesktop.org/drm/drm-misc
6107 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
6108 F:      drivers/gpu/drm/tiny/st7735r.c
6109
6110 DRM DRIVER FOR SONY ACX424AKP PANELS
6111 M:      Linus Walleij <[email protected]>
6112 S:      Maintained
6113 T:      git git://anongit.freedesktop.org/drm/drm-misc
6114 F:      drivers/gpu/drm/panel/panel-sony-acx424akp.c
6115
6116 DRM DRIVER FOR ST-ERICSSON MCDE
6117 M:      Linus Walleij <[email protected]>
6118 S:      Maintained
6119 T:      git git://anongit.freedesktop.org/drm/drm-misc
6120 F:      Documentation/devicetree/bindings/display/ste,mcde.yaml
6121 F:      drivers/gpu/drm/mcde/
6122
6123 DRM DRIVER FOR TDFX VIDEO CARDS
6124 S:      Orphan / Obsolete
6125 F:      drivers/gpu/drm/tdfx/
6126
6127 DRM DRIVER FOR TPO TPG110 PANELS
6128 M:      Linus Walleij <[email protected]>
6129 S:      Maintained
6130 T:      git git://anongit.freedesktop.org/drm/drm-misc
6131 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
6132 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
6133
6134 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
6135 M:      Dave Airlie <[email protected]>
6136 R:      Sean Paul <[email protected]>
6137 R:      Thomas Zimmermann <[email protected]>
6138 L:      [email protected]
6139 S:      Supported
6140 T:      git git://anongit.freedesktop.org/drm/drm-misc
6141 F:      drivers/gpu/drm/udl/
6142
6143 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
6144 M:      Rodrigo Siqueira <[email protected]>
6145 M:      Melissa Wen <[email protected]>
6146 R:      Haneen Mohammed <[email protected]>
6147 R:      Daniel Vetter <[email protected]>
6148 L:      [email protected]
6149 S:      Maintained
6150 T:      git git://anongit.freedesktop.org/drm/drm-misc
6151 F:      Documentation/gpu/vkms.rst
6152 F:      drivers/gpu/drm/vkms/
6153
6154 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
6155 M:      Hans de Goede <[email protected]>
6156 L:      [email protected]
6157 S:      Maintained
6158 T:      git git://anongit.freedesktop.org/drm/drm-misc
6159 F:      drivers/gpu/drm/vboxvideo/
6160
6161 DRM DRIVER FOR VMWARE VIRTUAL GPU
6162 M:      "VMware Graphics" <[email protected]>
6163 M:      Zack Rusin <[email protected]>
6164 L:      [email protected]
6165 S:      Supported
6166 T:      git git://anongit.freedesktop.org/drm/drm-misc
6167 F:      drivers/gpu/drm/vmwgfx/
6168 F:      include/uapi/drm/vmwgfx_drm.h
6169
6170 DRM DRIVER FOR WIDECHIPS WS2401 PANELS
6171 M:      Linus Walleij <[email protected]>
6172 S:      Maintained
6173 T:      git git://anongit.freedesktop.org/drm/drm-misc
6174 F:      Documentation/devicetree/bindings/display/panel/samsung,lms380kf01.yaml
6175 F:      drivers/gpu/drm/panel/panel-widechips-ws2401.c
6176
6177 DRM DRIVERS
6178 M:      David Airlie <[email protected]>
6179 M:      Daniel Vetter <[email protected]>
6180 L:      [email protected]
6181 S:      Maintained
6182 B:      https://gitlab.freedesktop.org/drm
6183 C:      irc://irc.oftc.net/dri-devel
6184 T:      git git://anongit.freedesktop.org/drm/drm
6185 F:      Documentation/devicetree/bindings/display/
6186 F:      Documentation/devicetree/bindings/gpu/
6187 F:      Documentation/gpu/
6188 F:      drivers/gpu/
6189 F:      include/drm/
6190 F:      include/linux/vga*
6191 F:      include/uapi/drm/
6192
6193 DRM DRIVERS AND MISC GPU PATCHES
6194 M:      Maarten Lankhorst <[email protected]>
6195 M:      Maxime Ripard <[email protected]>
6196 M:      Thomas Zimmermann <[email protected]>
6197 S:      Maintained
6198 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
6199 T:      git git://anongit.freedesktop.org/drm/drm-misc
6200 F:      Documentation/gpu/
6201 F:      drivers/gpu/drm/*
6202 F:      drivers/gpu/vga/
6203 F:      include/drm/drm*
6204 F:      include/linux/vga*
6205 F:      include/uapi/drm/drm*
6206
6207 DRM DRIVERS FOR ALLWINNER A10
6208 M:      Maxime Ripard <[email protected]>
6209 M:      Chen-Yu Tsai <[email protected]>
6210 L:      [email protected]
6211 S:      Supported
6212 T:      git git://anongit.freedesktop.org/drm/drm-misc
6213 F:      Documentation/devicetree/bindings/display/allwinner*
6214 F:      drivers/gpu/drm/sun4i/
6215
6216 DRM DRIVERS FOR AMLOGIC SOCS
6217 M:      Neil Armstrong <[email protected]>
6218 L:      [email protected]
6219 L:      [email protected]
6220 S:      Supported
6221 W:      http://linux-meson.com/
6222 T:      git git://anongit.freedesktop.org/drm/drm-misc
6223 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
6224 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
6225 F:      Documentation/gpu/meson.rst
6226 F:      drivers/gpu/drm/meson/
6227
6228 DRM DRIVERS FOR ATMEL HLCDC
6229 M:      Sam Ravnborg <[email protected]>
6230 M:      Boris Brezillon <[email protected]>
6231 L:      [email protected]
6232 S:      Supported
6233 T:      git git://anongit.freedesktop.org/drm/drm-misc
6234 F:      Documentation/devicetree/bindings/display/atmel/
6235 F:      drivers/gpu/drm/atmel-hlcdc/
6236
6237 DRM DRIVERS FOR BRIDGE CHIPS
6238 M:      Andrzej Hajda <[email protected]>
6239 M:      Neil Armstrong <[email protected]>
6240 M:      Robert Foss <[email protected]>
6241 R:      Laurent Pinchart <[email protected]>
6242 R:      Jonas Karlman <[email protected]>
6243 R:      Jernej Skrabec <[email protected]>
6244 S:      Maintained
6245 T:      git git://anongit.freedesktop.org/drm/drm-misc
6246 F:      drivers/gpu/drm/bridge/
6247
6248 DRM DRIVERS FOR EXYNOS
6249 M:      Inki Dae <[email protected]>
6250 M:      Joonyoung Shim <[email protected]>
6251 M:      Seung-Woo Kim <[email protected]>
6252 M:      Kyungmin Park <[email protected]>
6253 L:      [email protected]
6254 S:      Supported
6255 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
6256 F:      Documentation/devicetree/bindings/display/exynos/
6257 F:      drivers/gpu/drm/exynos/
6258 F:      include/uapi/drm/exynos_drm.h
6259
6260 DRM DRIVERS FOR FREESCALE DCU
6261 M:      Stefan Agner <[email protected]>
6262 M:      Alison Wang <[email protected]>
6263 L:      [email protected]
6264 S:      Supported
6265 T:      git git://anongit.freedesktop.org/drm/drm-misc
6266 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
6267 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
6268 F:      drivers/gpu/drm/fsl-dcu/
6269
6270 DRM DRIVERS FOR FREESCALE IMX
6271 M:      Philipp Zabel <[email protected]>
6272 L:      [email protected]
6273 S:      Maintained
6274 F:      Documentation/devicetree/bindings/display/imx/
6275 F:      drivers/gpu/drm/imx/
6276 F:      drivers/gpu/ipu-v3/
6277
6278 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
6279 M:      Patrik Jakobsson <[email protected]>
6280 L:      [email protected]
6281 S:      Maintained
6282 T:      git git://github.com/patjak/drm-gma500
6283 F:      drivers/gpu/drm/gma500/
6284
6285 DRM DRIVERS FOR HISILICON
6286 M:      Xinliang Liu <[email protected]>
6287 M:      Tian Tao  <[email protected]>
6288 R:      John Stultz <[email protected]>
6289 R:      Xinwei Kong <[email protected]>
6290 R:      Chen Feng <[email protected]>
6291 L:      [email protected]
6292 S:      Maintained
6293 T:      git git://anongit.freedesktop.org/drm/drm-misc
6294 F:      Documentation/devicetree/bindings/display/hisilicon/
6295 F:      drivers/gpu/drm/hisilicon/
6296
6297 DRM DRIVER FOR HYPERV SYNTHETIC VIDEO DEVICE
6298 M:      Deepak Rawat <[email protected]>
6299 L:      [email protected]
6300 L:      [email protected]
6301 S:      Maintained
6302 T:      git git://anongit.freedesktop.org/drm/drm-misc
6303 F:      drivers/gpu/drm/hyperv
6304
6305 DRM DRIVERS FOR LIMA
6306 M:      Qiang Yu <[email protected]>
6307 L:      [email protected]
6308 L:      [email protected] (moderated for non-subscribers)
6309 S:      Maintained
6310 T:      git git://anongit.freedesktop.org/drm/drm-misc
6311 F:      drivers/gpu/drm/lima/
6312 F:      include/uapi/drm/lima_drm.h
6313
6314 DRM DRIVERS FOR MEDIATEK
6315 M:      Chun-Kuang Hu <[email protected]>
6316 M:      Philipp Zabel <[email protected]>
6317 L:      [email protected]
6318 L:      [email protected] (moderated for non-subscribers)
6319 S:      Supported
6320 F:      Documentation/devicetree/bindings/display/mediatek/
6321 F:      drivers/gpu/drm/mediatek/
6322 F:      drivers/phy/mediatek/phy-mtk-hdmi*
6323 F:      drivers/phy/mediatek/phy-mtk-mipi*
6324
6325 DRM DRIVERS FOR NVIDIA TEGRA
6326 M:      Thierry Reding <[email protected]>
6327 L:      [email protected]
6328 L:      [email protected]
6329 S:      Supported
6330 T:      git git://anongit.freedesktop.org/tegra/linux.git
6331 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
6332 F:      drivers/gpu/drm/tegra/
6333 F:      drivers/gpu/host1x/
6334 F:      include/linux/host1x.h
6335 F:      include/uapi/drm/tegra_drm.h
6336
6337 DRM DRIVERS FOR RENESAS
6338 M:      Laurent Pinchart <[email protected]>
6339 M:      Kieran Bingham <[email protected]>
6340 L:      [email protected]
6341 L:      [email protected]
6342 S:      Supported
6343 T:      git git://linuxtv.org/pinchartl/media drm/du/next
6344 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.yaml
6345 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.yaml
6346 F:      Documentation/devicetree/bindings/display/renesas,du.yaml
6347 F:      drivers/gpu/drm/rcar-du/
6348 F:      drivers/gpu/drm/shmobile/
6349 F:      include/linux/platform_data/shmob_drm.h
6350
6351 DRM DRIVERS FOR ROCKCHIP
6352 M:      Sandy Huang <[email protected]>
6353 M:      Heiko Stübner <[email protected]>
6354 L:      [email protected]
6355 S:      Maintained
6356 T:      git git://anongit.freedesktop.org/drm/drm-misc
6357 F:      Documentation/devicetree/bindings/display/rockchip/
6358 F:      drivers/gpu/drm/rockchip/
6359
6360 DRM DRIVERS FOR STI
6361 M:      Benjamin Gaignard <[email protected]>
6362 L:      [email protected]
6363 S:      Maintained
6364 T:      git git://anongit.freedesktop.org/drm/drm-misc
6365 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
6366 F:      drivers/gpu/drm/sti
6367
6368 DRM DRIVERS FOR STM
6369 M:      Yannick Fertre <[email protected]>
6370 M:      Philippe Cornu <[email protected]>
6371 M:      Benjamin Gaignard <[email protected]>
6372 L:      [email protected]
6373 S:      Maintained
6374 T:      git git://anongit.freedesktop.org/drm/drm-misc
6375 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
6376 F:      drivers/gpu/drm/stm
6377
6378 DRM DRIVERS FOR TI KEYSTONE
6379 M:      Jyri Sarha <[email protected]>
6380 M:      Tomi Valkeinen <[email protected]>
6381 L:      [email protected]
6382 S:      Maintained
6383 T:      git git://anongit.freedesktop.org/drm/drm-misc
6384 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
6385 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
6386 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
6387 F:      drivers/gpu/drm/tidss/
6388
6389 DRM DRIVERS FOR TI LCDC
6390 M:      Jyri Sarha <[email protected]>
6391 R:      Tomi Valkeinen <[email protected]>
6392 L:      [email protected]
6393 S:      Maintained
6394 F:      Documentation/devicetree/bindings/display/tilcdc/
6395 F:      drivers/gpu/drm/tilcdc/
6396
6397 DRM DRIVERS FOR TI OMAP
6398 M:      Tomi Valkeinen <[email protected]>
6399 L:      [email protected]
6400 S:      Maintained
6401 F:      Documentation/devicetree/bindings/display/ti/
6402 F:      drivers/gpu/drm/omapdrm/
6403
6404 DRM DRIVERS FOR V3D
6405 M:      Emma Anholt <[email protected]>
6406 S:      Supported
6407 T:      git git://anongit.freedesktop.org/drm/drm-misc
6408 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.yaml
6409 F:      drivers/gpu/drm/v3d/
6410 F:      include/uapi/drm/v3d_drm.h
6411
6412 DRM DRIVERS FOR VC4
6413 M:      Emma Anholt <[email protected]>
6414 M:      Maxime Ripard <[email protected]>
6415 S:      Supported
6416 T:      git git://github.com/anholt/linux
6417 T:      git git://anongit.freedesktop.org/drm/drm-misc
6418 F:      Documentation/devicetree/bindings/display/brcm,bcm2835-*.yaml
6419 F:      drivers/gpu/drm/vc4/
6420 F:      include/uapi/drm/vc4_drm.h
6421
6422 DRM DRIVERS FOR VIVANTE GPU IP
6423 M:      Lucas Stach <[email protected]>
6424 R:      Russell King <[email protected]>
6425 R:      Christian Gmeiner <[email protected]>
6426 L:      [email protected] (moderated for non-subscribers)
6427 L:      [email protected]
6428 S:      Maintained
6429 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
6430 F:      drivers/gpu/drm/etnaviv/
6431 F:      include/uapi/drm/etnaviv_drm.h
6432
6433 DRM DRIVERS FOR XEN
6434 M:      Oleksandr Andrushchenko <[email protected]>
6435 L:      [email protected]
6436 L:      [email protected] (moderated for non-subscribers)
6437 S:      Supported
6438 T:      git git://anongit.freedesktop.org/drm/drm-misc
6439 F:      Documentation/gpu/xen-front.rst
6440 F:      drivers/gpu/drm/xen/
6441
6442 DRM DRIVERS FOR XILINX
6443 M:      Hyun Kwon <[email protected]>
6444 M:      Laurent Pinchart <[email protected]>
6445 L:      [email protected]
6446 S:      Maintained
6447 T:      git git://anongit.freedesktop.org/drm/drm-misc
6448 F:      Documentation/devicetree/bindings/display/xlnx/
6449 F:      drivers/gpu/drm/xlnx/
6450
6451 DRM PANEL DRIVERS
6452 M:      Thierry Reding <[email protected]>
6453 R:      Sam Ravnborg <[email protected]>
6454 L:      [email protected]
6455 S:      Maintained
6456 T:      git git://anongit.freedesktop.org/drm/drm-misc
6457 F:      Documentation/devicetree/bindings/display/panel/
6458 F:      drivers/gpu/drm/drm_panel.c
6459 F:      drivers/gpu/drm/panel/
6460 F:      include/drm/drm_panel.h
6461
6462 DRM TTM SUBSYSTEM
6463 M:      Christian Koenig <[email protected]>
6464 M:      Huang Rui <[email protected]>
6465 L:      [email protected]
6466 S:      Maintained
6467 T:      git git://anongit.freedesktop.org/drm/drm-misc
6468 F:      drivers/gpu/drm/ttm/
6469 F:      include/drm/ttm/
6470
6471 DSBR100 USB FM RADIO DRIVER
6472 M:      Alexey Klimov <[email protected]>
6473 L:      [email protected]
6474 S:      Maintained
6475 T:      git git://linuxtv.org/media_tree.git
6476 F:      drivers/media/radio/dsbr100.c
6477
6478 DT3155 MEDIA DRIVER
6479 M:      Hans Verkuil <[email protected]>
6480 L:      [email protected]
6481 S:      Odd Fixes
6482 W:      https://linuxtv.org
6483 T:      git git://linuxtv.org/media_tree.git
6484 F:      drivers/media/pci/dt3155/
6485
6486 DVB_USB_AF9015 MEDIA DRIVER
6487 M:      Antti Palosaari <[email protected]>
6488 L:      [email protected]
6489 S:      Maintained
6490 W:      https://linuxtv.org
6491 W:      http://palosaari.fi/linux/
6492 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6493 T:      git git://linuxtv.org/anttip/media_tree.git
6494 F:      drivers/media/usb/dvb-usb-v2/af9015*
6495
6496 DVB_USB_AF9035 MEDIA DRIVER
6497 M:      Antti Palosaari <[email protected]>
6498 L:      [email protected]
6499 S:      Maintained
6500 W:      https://linuxtv.org
6501 W:      http://palosaari.fi/linux/
6502 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6503 T:      git git://linuxtv.org/anttip/media_tree.git
6504 F:      drivers/media/usb/dvb-usb-v2/af9035*
6505
6506 DVB_USB_ANYSEE MEDIA DRIVER
6507 M:      Antti Palosaari <[email protected]>
6508 L:      [email protected]
6509 S:      Maintained
6510 W:      https://linuxtv.org
6511 W:      http://palosaari.fi/linux/
6512 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6513 T:      git git://linuxtv.org/anttip/media_tree.git
6514 F:      drivers/media/usb/dvb-usb-v2/anysee*
6515
6516 DVB_USB_AU6610 MEDIA DRIVER
6517 M:      Antti Palosaari <[email protected]>
6518 L:      [email protected]
6519 S:      Maintained
6520 W:      https://linuxtv.org
6521 W:      http://palosaari.fi/linux/
6522 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6523 T:      git git://linuxtv.org/anttip/media_tree.git
6524 F:      drivers/media/usb/dvb-usb-v2/au6610*
6525
6526 DVB_USB_CE6230 MEDIA DRIVER
6527 M:      Antti Palosaari <[email protected]>
6528 L:      [email protected]
6529 S:      Maintained
6530 W:      https://linuxtv.org
6531 W:      http://palosaari.fi/linux/
6532 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6533 T:      git git://linuxtv.org/anttip/media_tree.git
6534 F:      drivers/media/usb/dvb-usb-v2/ce6230*
6535
6536 DVB_USB_CXUSB MEDIA DRIVER
6537 M:      Michael Krufky <[email protected]>
6538 L:      [email protected]
6539 S:      Maintained
6540 W:      https://linuxtv.org
6541 W:      http://github.com/mkrufky
6542 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6543 T:      git git://linuxtv.org/media_tree.git
6544 F:      drivers/media/usb/dvb-usb/cxusb*
6545
6546 DVB_USB_EC168 MEDIA DRIVER
6547 M:      Antti Palosaari <[email protected]>
6548 L:      [email protected]
6549 S:      Maintained
6550 W:      https://linuxtv.org
6551 W:      http://palosaari.fi/linux/
6552 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6553 T:      git git://linuxtv.org/anttip/media_tree.git
6554 F:      drivers/media/usb/dvb-usb-v2/ec168*
6555
6556 DVB_USB_GL861 MEDIA DRIVER
6557 M:      Antti Palosaari <[email protected]>
6558 L:      [email protected]
6559 S:      Maintained
6560 W:      https://linuxtv.org
6561 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6562 T:      git git://linuxtv.org/anttip/media_tree.git
6563 F:      drivers/media/usb/dvb-usb-v2/gl861*
6564
6565 DVB_USB_MXL111SF MEDIA DRIVER
6566 M:      Michael Krufky <[email protected]>
6567 L:      [email protected]
6568 S:      Maintained
6569 W:      https://linuxtv.org
6570 W:      http://github.com/mkrufky
6571 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6572 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
6573 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
6574
6575 DVB_USB_RTL28XXU MEDIA DRIVER
6576 M:      Antti Palosaari <[email protected]>
6577 L:      [email protected]
6578 S:      Maintained
6579 W:      https://linuxtv.org
6580 W:      http://palosaari.fi/linux/
6581 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6582 T:      git git://linuxtv.org/anttip/media_tree.git
6583 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
6584
6585 DVB_USB_V2 MEDIA DRIVER
6586 M:      Antti Palosaari <[email protected]>
6587 L:      [email protected]
6588 S:      Maintained
6589 W:      https://linuxtv.org
6590 W:      http://palosaari.fi/linux/
6591 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6592 T:      git git://linuxtv.org/anttip/media_tree.git
6593 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
6594 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
6595
6596 DYNAMIC DEBUG
6597 M:      Jason Baron <[email protected]>
6598 S:      Maintained
6599 F:      include/linux/dynamic_debug.h
6600 F:      lib/dynamic_debug.c
6601
6602 DYNAMIC INTERRUPT MODERATION
6603 M:      Tal Gilboa <[email protected]>
6604 S:      Maintained
6605 F:      Documentation/networking/net_dim.rst
6606 F:      include/linux/dim.h
6607 F:      lib/dim/
6608
6609 DZ DECSTATION DZ11 SERIAL DRIVER
6610 M:      "Maciej W. Rozycki" <[email protected]>
6611 S:      Maintained
6612 F:      drivers/tty/serial/dz.*
6613
6614 E3X0 POWER BUTTON DRIVER
6615 M:      Moritz Fischer <[email protected]>
6616 L:      [email protected]
6617 S:      Supported
6618 W:      http://www.ettus.com
6619 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
6620 F:      drivers/input/misc/e3x0-button.c
6621
6622 E4000 MEDIA DRIVER
6623 M:      Antti Palosaari <[email protected]>
6624 L:      [email protected]
6625 S:      Maintained
6626 W:      https://linuxtv.org
6627 W:      http://palosaari.fi/linux/
6628 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6629 T:      git git://linuxtv.org/anttip/media_tree.git
6630 F:      drivers/media/tuners/e4000*
6631
6632 EARTH_PT1 MEDIA DRIVER
6633 M:      Akihiro Tsukada <[email protected]>
6634 L:      [email protected]
6635 S:      Odd Fixes
6636 F:      drivers/media/pci/pt1/
6637
6638 EARTH_PT3 MEDIA DRIVER
6639 M:      Akihiro Tsukada <[email protected]>
6640 L:      [email protected]
6641 S:      Odd Fixes
6642 F:      drivers/media/pci/pt3/
6643
6644 EC100 MEDIA DRIVER
6645 M:      Antti Palosaari <[email protected]>
6646 L:      [email protected]
6647 S:      Maintained
6648 W:      https://linuxtv.org
6649 W:      http://palosaari.fi/linux/
6650 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6651 T:      git git://linuxtv.org/anttip/media_tree.git
6652 F:      drivers/media/dvb-frontends/ec100*
6653
6654 ECRYPT FILE SYSTEM
6655 M:      Tyler Hicks <[email protected]>
6656 L:      [email protected]
6657 S:      Odd Fixes
6658 W:      http://ecryptfs.org
6659 W:      https://launchpad.net/ecryptfs
6660 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
6661 F:      Documentation/filesystems/ecryptfs.rst
6662 F:      fs/ecryptfs/
6663
6664 EDAC-AMD64
6665 M:      Yazen Ghannam <[email protected]>
6666 L:      [email protected]
6667 S:      Supported
6668 F:      drivers/edac/amd64_edac*
6669 F:      drivers/edac/mce_amd*
6670
6671 EDAC-ARMADA
6672 M:      Jan Luebbe <[email protected]>
6673 L:      [email protected]
6674 S:      Maintained
6675 F:      Documentation/devicetree/bindings/memory-controllers/marvell,mvebu-sdram-controller.yaml
6676 F:      drivers/edac/armada_xp_*
6677
6678 EDAC-AST2500
6679 M:      Stefan Schaeckeler <[email protected]>
6680 S:      Supported
6681 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
6682 F:      drivers/edac/aspeed_edac.c
6683
6684 EDAC-BLUEFIELD
6685 M:      Shravan Kumar Ramani <[email protected]>
6686 S:      Supported
6687 F:      drivers/edac/bluefield_edac.c
6688
6689 EDAC-CALXEDA
6690 M:      Andre Przywara <[email protected]>
6691 L:      [email protected]
6692 S:      Maintained
6693 F:      drivers/edac/highbank*
6694
6695 EDAC-CAVIUM OCTEON
6696 M:      Ralf Baechle <[email protected]>
6697 L:      [email protected]
6698 L:      [email protected]
6699 S:      Supported
6700 F:      drivers/edac/octeon_edac*
6701
6702 EDAC-CAVIUM THUNDERX
6703 M:      Robert Richter <[email protected]>
6704 L:      [email protected]
6705 S:      Odd Fixes
6706 F:      drivers/edac/thunderx_edac*
6707
6708 EDAC-CORE
6709 M:      Borislav Petkov <[email protected]>
6710 M:      Mauro Carvalho Chehab <[email protected]>
6711 M:      Tony Luck <[email protected]>
6712 R:      James Morse <[email protected]>
6713 R:      Robert Richter <[email protected]>
6714 L:      [email protected]
6715 S:      Supported
6716 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
6717 F:      Documentation/admin-guide/ras.rst
6718 F:      Documentation/driver-api/edac.rst
6719 F:      drivers/edac/
6720 F:      include/linux/edac.h
6721
6722 EDAC-DMC520
6723 M:      Lei Wang <[email protected]>
6724 L:      [email protected]
6725 S:      Supported
6726 F:      drivers/edac/dmc520_edac.c
6727
6728 EDAC-E752X
6729 M:      Mark Gross <[email protected]>
6730 L:      [email protected]
6731 S:      Maintained
6732 F:      drivers/edac/e752x_edac.c
6733
6734 EDAC-E7XXX
6735 L:      [email protected]
6736 S:      Maintained
6737 F:      drivers/edac/e7xxx_edac.c
6738
6739 EDAC-FSL_DDR
6740 M:      York Sun <[email protected]>
6741 L:      [email protected]
6742 S:      Maintained
6743 F:      drivers/edac/fsl_ddr_edac.*
6744
6745 EDAC-GHES
6746 M:      Mauro Carvalho Chehab <[email protected]>
6747 L:      [email protected]
6748 S:      Maintained
6749 F:      drivers/edac/ghes_edac.c
6750
6751 EDAC-I10NM
6752 M:      Tony Luck <[email protected]>
6753 L:      [email protected]
6754 S:      Maintained
6755 F:      drivers/edac/i10nm_base.c
6756
6757 EDAC-I3000
6758 L:      [email protected]
6759 S:      Orphan
6760 F:      drivers/edac/i3000_edac.c
6761
6762 EDAC-I5000
6763 L:      [email protected]
6764 S:      Maintained
6765 F:      drivers/edac/i5000_edac.c
6766
6767 EDAC-I5400
6768 M:      Mauro Carvalho Chehab <[email protected]>
6769 L:      [email protected]
6770 S:      Maintained
6771 F:      drivers/edac/i5400_edac.c
6772
6773 EDAC-I7300
6774 M:      Mauro Carvalho Chehab <[email protected]>
6775 L:      [email protected]
6776 S:      Maintained
6777 F:      drivers/edac/i7300_edac.c
6778
6779 EDAC-I7CORE
6780 M:      Mauro Carvalho Chehab <[email protected]>
6781 L:      [email protected]
6782 S:      Maintained
6783 F:      drivers/edac/i7core_edac.c
6784
6785 EDAC-I82443BXGX
6786 M:      Tim Small <[email protected]>
6787 L:      [email protected]
6788 S:      Maintained
6789 F:      drivers/edac/i82443bxgx_edac.c
6790
6791 EDAC-I82975X
6792 M:      "Arvind R." <[email protected]>
6793 L:      [email protected]
6794 S:      Maintained
6795 F:      drivers/edac/i82975x_edac.c
6796
6797 EDAC-IE31200
6798 M:      Jason Baron <[email protected]>
6799 L:      [email protected]
6800 S:      Maintained
6801 F:      drivers/edac/ie31200_edac.c
6802
6803 EDAC-IGEN6
6804 M:      Tony Luck <[email protected]>
6805 R:      Qiuxu Zhuo <[email protected]>
6806 L:      [email protected]
6807 S:      Maintained
6808 F:      drivers/edac/igen6_edac.c
6809
6810 EDAC-MPC85XX
6811 M:      Johannes Thumshirn <[email protected]>
6812 L:      [email protected]
6813 S:      Maintained
6814 F:      drivers/edac/mpc85xx_edac.[ch]
6815
6816 EDAC-PASEMI
6817 M:      Egor Martovetsky <[email protected]>
6818 L:      [email protected]
6819 S:      Maintained
6820 F:      drivers/edac/pasemi_edac.c
6821
6822 EDAC-PND2
6823 M:      Tony Luck <[email protected]>
6824 L:      [email protected]
6825 S:      Maintained
6826 F:      drivers/edac/pnd2_edac.[ch]
6827
6828 EDAC-QCOM
6829 M:      Channagoud Kadabi <[email protected]>
6830 M:      Venkata Narendra Kumar Gutta <[email protected]>
6831 L:      [email protected]
6832 L:      [email protected]
6833 S:      Maintained
6834 F:      drivers/edac/qcom_edac.c
6835
6836 EDAC-R82600
6837 M:      Tim Small <[email protected]>
6838 L:      [email protected]
6839 S:      Maintained
6840 F:      drivers/edac/r82600_edac.c
6841
6842 EDAC-SBRIDGE
6843 M:      Tony Luck <[email protected]>
6844 R:      Qiuxu Zhuo <[email protected]>
6845 L:      [email protected]
6846 S:      Maintained
6847 F:      drivers/edac/sb_edac.c
6848
6849 EDAC-SIFIVE
6850 M:      Yash Shah <[email protected]>
6851 L:      [email protected]
6852 S:      Supported
6853 F:      drivers/edac/sifive_edac.c
6854
6855 EDAC-SKYLAKE
6856 M:      Tony Luck <[email protected]>
6857 L:      [email protected]
6858 S:      Maintained
6859 F:      drivers/edac/skx_*.[ch]
6860
6861 EDAC-TI
6862 M:      Tero Kristo <[email protected]>
6863 L:      [email protected]
6864 S:      Odd Fixes
6865 F:      drivers/edac/ti_edac.c
6866
6867 EDIROL UA-101/UA-1000 DRIVER
6868 M:      Clemens Ladisch <[email protected]>
6869 L:      [email protected] (moderated for non-subscribers)
6870 S:      Maintained
6871 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6872 F:      sound/usb/misc/ua101.c
6873
6874 EFI TEST DRIVER
6875 M:      Ivan Hu <[email protected]>
6876 M:      Ard Biesheuvel <[email protected]>
6877 L:      [email protected]
6878 S:      Maintained
6879 F:      drivers/firmware/efi/test/
6880
6881 EFI VARIABLE FILESYSTEM
6882 M:      Matthew Garrett <[email protected]>
6883 M:      Jeremy Kerr <[email protected]>
6884 M:      Ard Biesheuvel <[email protected]>
6885 L:      [email protected]
6886 S:      Maintained
6887 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6888 F:      fs/efivarfs/
6889
6890 EFIFB FRAMEBUFFER DRIVER
6891 M:      Peter Jones <[email protected]>
6892 L:      [email protected]
6893 S:      Maintained
6894 F:      drivers/video/fbdev/efifb.c
6895
6896 EFS FILESYSTEM
6897 S:      Orphan
6898 W:      http://aeschi.ch.eu.org/efs/
6899 F:      fs/efs/
6900
6901 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
6902 M:      Douglas Miller <[email protected]>
6903 L:      [email protected]
6904 S:      Maintained
6905 F:      drivers/net/ethernet/ibm/ehea/
6906
6907 EM28XX VIDEO4LINUX DRIVER
6908 M:      Mauro Carvalho Chehab <[email protected]>
6909 L:      [email protected]
6910 S:      Maintained
6911 W:      https://linuxtv.org
6912 T:      git git://linuxtv.org/media_tree.git
6913 F:      Documentation/admin-guide/media/em28xx*
6914 F:      drivers/media/usb/em28xx/
6915
6916 EMBEDDED LINUX
6917 M:      Matt Mackall <[email protected]>
6918 M:      David Woodhouse <[email protected]>
6919 L:      [email protected]
6920 S:      Maintained
6921
6922 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
6923 M:      Adrian Hunter <[email protected]>
6924 M:      Ritesh Harjani <[email protected]>
6925 M:      Asutosh Das <[email protected]>
6926 L:      [email protected]
6927 S:      Maintained
6928 F:      drivers/mmc/host/cqhci*
6929
6930 EMULEX 10Gbps iSCSI - OneConnect DRIVER
6931 M:      Subbu Seetharaman <[email protected]>
6932 M:      Ketan Mukadam <[email protected]>
6933 M:      Jitendra Bhivare <[email protected]>
6934 L:      [email protected]
6935 S:      Supported
6936 W:      http://www.broadcom.com
6937 F:      drivers/scsi/be2iscsi/
6938
6939 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
6940 M:      Ajit Khaparde <[email protected]>
6941 M:      Sriharsha Basavapatna <[email protected]>
6942 M:      Somnath Kotur <[email protected]>
6943 L:      [email protected]
6944 S:      Supported
6945 W:      http://www.emulex.com
6946 F:      drivers/net/ethernet/emulex/benet/
6947
6948 EMULEX ONECONNECT ROCE DRIVER
6949 M:      Selvin Xavier <[email protected]>
6950 L:      [email protected]
6951 S:      Odd Fixes
6952 W:      http://www.broadcom.com
6953 F:      drivers/infiniband/hw/ocrdma/
6954 F:      include/uapi/rdma/ocrdma-abi.h
6955
6956 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
6957 M:      James Smart <[email protected]>
6958 M:      Dick Kennedy <[email protected]>
6959 L:      [email protected]
6960 S:      Supported
6961 W:      http://www.broadcom.com
6962 F:      drivers/scsi/lpfc/
6963
6964 EMULEX/BROADCOM EFCT FC/FCOE SCSI TARGET DRIVER
6965 M:      James Smart <[email protected]>
6966 M:      Ram Vegesna <[email protected]>
6967 L:      [email protected]
6968 L:      [email protected]
6969 S:      Supported
6970 W:      http://www.broadcom.com
6971 F:      drivers/scsi/elx/
6972
6973 ENE CB710 FLASH CARD READER DRIVER
6974 M:      Michał Mirosław <[email protected]>
6975 S:      Maintained
6976 F:      drivers/misc/cb710/
6977 F:      drivers/mmc/host/cb710-mmc.*
6978 F:      include/linux/cb710.h
6979
6980 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
6981 M:      Maxim Levitsky <[email protected]>
6982 S:      Maintained
6983 F:      drivers/media/rc/ene_ir.*
6984
6985 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
6986 M:      Laurentiu Tudor <[email protected]>
6987 L:      [email protected]
6988 S:      Maintained
6989 F:      drivers/tty/ehv_bytechan.c
6990
6991 EPSON S1D13XXX FRAMEBUFFER DRIVER
6992 M:      Kristoffer Ericson <[email protected]>
6993 S:      Maintained
6994 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
6995 F:      drivers/video/fbdev/s1d13xxxfb.c
6996 F:      include/video/s1d13xxxfb.h
6997
6998 EROFS FILE SYSTEM
6999 M:      Gao Xiang <[email protected]>
7000 M:      Chao Yu <[email protected]>
7001 L:      [email protected]
7002 S:      Maintained
7003 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
7004 F:      Documentation/filesystems/erofs.rst
7005 F:      fs/erofs/
7006 F:      include/trace/events/erofs.h
7007
7008 ERRSEQ ERROR TRACKING INFRASTRUCTURE
7009 M:      Jeff Layton <[email protected]>
7010 S:      Maintained
7011 F:      include/linux/errseq.h
7012 F:      lib/errseq.c
7013
7014 ET131X NETWORK DRIVER
7015 M:      Mark Einon <[email protected]>
7016 S:      Odd Fixes
7017 F:      drivers/net/ethernet/agere/
7018
7019 ETAS ES58X CAN/USB DRIVER
7020 M:      Vincent Mailhol <[email protected]>
7021 L:      [email protected]
7022 S:      Maintained
7023 F:      drivers/net/can/usb/etas_es58x/
7024
7025 ETHERNET BRIDGE
7026 M:      Roopa Prabhu <[email protected]>
7027 M:      Nikolay Aleksandrov <[email protected]>
7028 L:      [email protected] (moderated for non-subscribers)
7029 L:      [email protected]
7030 S:      Maintained
7031 W:      http://www.linuxfoundation.org/en/Net:Bridge
7032 F:      include/linux/netfilter_bridge/
7033 F:      net/bridge/
7034
7035 ETHERNET PHY LIBRARY
7036 M:      Andrew Lunn <[email protected]>
7037 M:      Heiner Kallweit <[email protected]>
7038 R:      Russell King <[email protected]>
7039 L:      [email protected]
7040 S:      Maintained
7041 F:      Documentation/ABI/testing/sysfs-class-net-phydev
7042 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
7043 F:      Documentation/devicetree/bindings/net/mdio*
7044 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
7045 F:      Documentation/networking/phy.rst
7046 F:      drivers/net/mdio/
7047 F:      drivers/net/mdio/acpi_mdio.c
7048 F:      drivers/net/mdio/fwnode_mdio.c
7049 F:      drivers/net/mdio/of_mdio.c
7050 F:      drivers/net/pcs/
7051 F:      drivers/net/phy/
7052 F:      include/dt-bindings/net/qca-ar803x.h
7053 F:      include/linux/*mdio*.h
7054 F:      include/linux/mdio/*.h
7055 F:      include/linux/of_net.h
7056 F:      include/linux/phy.h
7057 F:      include/linux/phy_fixed.h
7058 F:      include/linux/platform_data/mdio-bcm-unimac.h
7059 F:      include/linux/platform_data/mdio-gpio.h
7060 F:      include/trace/events/mdio.h
7061 F:      include/uapi/linux/mdio.h
7062 F:      include/uapi/linux/mii.h
7063 F:      net/core/of_net.c
7064
7065 EXFAT FILE SYSTEM
7066 M:      Namjae Jeon <[email protected]>
7067 M:      Sungjong Seo <[email protected]>
7068 L:      [email protected]
7069 S:      Maintained
7070 F:      fs/exfat/
7071
7072 EXT2 FILE SYSTEM
7073 M:      Jan Kara <[email protected]>
7074 L:      [email protected]
7075 S:      Maintained
7076 F:      Documentation/filesystems/ext2.rst
7077 F:      fs/ext2/
7078 F:      include/linux/ext2*
7079
7080 EXT4 FILE SYSTEM
7081 M:      "Theodore Ts'o" <[email protected]>
7082 M:      Andreas Dilger <[email protected]>
7083 L:      [email protected]
7084 S:      Maintained
7085 W:      http://ext4.wiki.kernel.org
7086 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
7087 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
7088 F:      Documentation/filesystems/ext4/
7089 F:      fs/ext4/
7090 F:      include/trace/events/ext4.h
7091
7092 Extended Verification Module (EVM)
7093 M:      Mimi Zohar <[email protected]>
7094 L:      [email protected]
7095 S:      Supported
7096 F:      security/integrity/evm/
7097
7098 EXTENSIBLE FIRMWARE INTERFACE (EFI)
7099 M:      Ard Biesheuvel <[email protected]>
7100 L:      [email protected]
7101 S:      Maintained
7102 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7103 F:      Documentation/admin-guide/efi-stub.rst
7104 F:      arch/*/include/asm/efi.h
7105 F:      arch/*/kernel/efi.c
7106 F:      arch/arm/boot/compressed/efi-header.S
7107 F:      arch/arm64/kernel/efi-entry.S
7108 F:      arch/x86/platform/efi/
7109 F:      drivers/firmware/efi/
7110 F:      include/linux/efi*.h
7111
7112 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
7113 M:      MyungJoo Ham <[email protected]>
7114 M:      Chanwoo Choi <[email protected]>
7115 L:      [email protected]
7116 S:      Maintained
7117 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
7118 F:      Documentation/devicetree/bindings/extcon/
7119 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
7120 F:      drivers/extcon/
7121 F:      include/linux/extcon.h
7122 F:      include/linux/extcon/
7123
7124 EXTRA BOOT CONFIG
7125 M:      Masami Hiramatsu <[email protected]>
7126 S:      Maintained
7127 F:      Documentation/admin-guide/bootconfig.rst
7128 F:      fs/proc/bootconfig.c
7129 F:      include/linux/bootconfig.h
7130 F:      lib/bootconfig.c
7131 F:      tools/bootconfig/*
7132 F:      tools/bootconfig/scripts/*
7133
7134 EXYNOS DP DRIVER
7135 M:      Jingoo Han <[email protected]>
7136 L:      [email protected]
7137 S:      Maintained
7138 F:      drivers/gpu/drm/exynos/exynos_dp*
7139
7140 EXYNOS SYSMMU (IOMMU) driver
7141 M:      Marek Szyprowski <[email protected]>
7142 L:      [email protected]
7143 S:      Maintained
7144 F:      drivers/iommu/exynos-iommu.c
7145
7146 F2FS FILE SYSTEM
7147 M:      Jaegeuk Kim <[email protected]>
7148 M:      Chao Yu <[email protected]>
7149 L:      [email protected]
7150 S:      Maintained
7151 W:      https://f2fs.wiki.kernel.org/
7152 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
7153 F:      Documentation/ABI/testing/sysfs-fs-f2fs
7154 F:      Documentation/filesystems/f2fs.rst
7155 F:      fs/f2fs/
7156 F:      include/linux/f2fs_fs.h
7157 F:      include/trace/events/f2fs.h
7158 F:      include/uapi/linux/f2fs.h
7159
7160 F71805F HARDWARE MONITORING DRIVER
7161 M:      Jean Delvare <[email protected]>
7162 L:      [email protected]
7163 S:      Maintained
7164 F:      Documentation/hwmon/f71805f.rst
7165 F:      drivers/hwmon/f71805f.c
7166
7167 FADDR2LINE
7168 M:      Josh Poimboeuf <[email protected]>
7169 S:      Maintained
7170 F:      scripts/faddr2line
7171
7172 FAILOVER MODULE
7173 M:      Sridhar Samudrala <[email protected]>
7174 L:      [email protected]
7175 S:      Supported
7176 F:      Documentation/networking/failover.rst
7177 F:      include/net/failover.h
7178 F:      net/core/failover.c
7179
7180 FANOTIFY
7181 M:      Jan Kara <[email protected]>
7182 R:      Amir Goldstein <[email protected]>
7183 R:      Matthew Bobrowski <[email protected]>
7184 L:      [email protected]
7185 S:      Maintained
7186 F:      fs/notify/fanotify/
7187 F:      include/linux/fanotify.h
7188 F:      include/uapi/linux/fanotify.h
7189
7190 FARSYNC SYNCHRONOUS DRIVER
7191 M:      Kevin Curtis <[email protected]>
7192 S:      Supported
7193 W:      http://www.farsite.co.uk/
7194 F:      drivers/net/wan/farsync.*
7195
7196 FAULT INJECTION SUPPORT
7197 M:      Akinobu Mita <[email protected]>
7198 S:      Supported
7199 F:      Documentation/fault-injection/
7200 F:      lib/fault-inject.c
7201
7202 FBTFT Framebuffer drivers
7203 L:      [email protected]
7204 L:      [email protected]
7205 S:      Orphan
7206 F:      drivers/staging/fbtft/
7207
7208 FC0011 TUNER DRIVER
7209 M:      Michael Buesch <[email protected]>
7210 L:      [email protected]
7211 S:      Maintained
7212 F:      drivers/media/tuners/fc0011.c
7213 F:      drivers/media/tuners/fc0011.h
7214
7215 FC2580 MEDIA DRIVER
7216 M:      Antti Palosaari <[email protected]>
7217 L:      [email protected]
7218 S:      Maintained
7219 W:      https://linuxtv.org
7220 W:      http://palosaari.fi/linux/
7221 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7222 T:      git git://linuxtv.org/anttip/media_tree.git
7223 F:      drivers/media/tuners/fc2580*
7224
7225 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
7226 M:      Hannes Reinecke <[email protected]>
7227 L:      [email protected]
7228 S:      Supported
7229 W:      www.Open-FCoE.org
7230 F:      drivers/scsi/fcoe/
7231 F:      drivers/scsi/libfc/
7232 F:      include/scsi/fc/
7233 F:      include/scsi/libfc.h
7234 F:      include/scsi/libfcoe.h
7235 F:      include/uapi/scsi/fc/
7236
7237 FILE LOCKING (flock() and fcntl()/lockf())
7238 M:      Jeff Layton <[email protected]>
7239 M:      "J. Bruce Fields" <[email protected]>
7240 L:      [email protected]
7241 S:      Maintained
7242 F:      fs/fcntl.c
7243 F:      fs/locks.c
7244 F:      include/linux/fcntl.h
7245 F:      include/uapi/linux/fcntl.h
7246
7247 FILESYSTEM DIRECT ACCESS (DAX)
7248 M:      Dan Williams <[email protected]>
7249 R:      Matthew Wilcox <[email protected]>
7250 R:      Jan Kara <[email protected]>
7251 L:      [email protected]
7252 L:      [email protected]
7253 S:      Supported
7254 F:      fs/dax.c
7255 F:      include/linux/dax.h
7256 F:      include/trace/events/fs_dax.h
7257
7258 FILESYSTEMS (VFS and infrastructure)
7259 M:      Alexander Viro <[email protected]>
7260 L:      [email protected]
7261 S:      Maintained
7262 F:      fs/*
7263 F:      include/linux/fs.h
7264 F:      include/linux/fs_types.h
7265 F:      include/uapi/linux/fs.h
7266 F:      include/uapi/linux/openat2.h
7267 X:      fs/io-wq.c
7268 X:      fs/io-wq.h
7269 X:      fs/io_uring.c
7270
7271 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
7272 M:      Riku Voipio <[email protected]>
7273 L:      [email protected]
7274 S:      Maintained
7275 F:      drivers/hwmon/f75375s.c
7276 F:      include/linux/f75375s.h
7277
7278 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
7279 M:      Clemens Ladisch <[email protected]>
7280 M:      Takashi Sakamoto <[email protected]>
7281 L:      [email protected] (moderated for non-subscribers)
7282 S:      Maintained
7283 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7284 F:      include/uapi/sound/firewire.h
7285 F:      sound/firewire/
7286
7287 FIREWIRE MEDIA DRIVERS (firedtv)
7288 M:      Stefan Richter <[email protected]>
7289 L:      [email protected]
7290 L:      [email protected]
7291 S:      Maintained
7292 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
7293 F:      drivers/media/firewire/
7294
7295 FIREWIRE SBP-2 TARGET
7296 M:      Chris Boot <[email protected]>
7297 L:      [email protected]
7298 L:      [email protected]
7299 L:      [email protected]
7300 S:      Maintained
7301 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
7302 F:      drivers/target/sbp/
7303
7304 FIREWIRE SUBSYSTEM
7305 M:      Stefan Richter <[email protected]>
7306 L:      [email protected]
7307 S:      Maintained
7308 W:      http://ieee1394.wiki.kernel.org/
7309 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
7310 F:      drivers/firewire/
7311 F:      include/linux/firewire.h
7312 F:      include/uapi/linux/firewire*.h
7313 F:      tools/firewire/
7314
7315 FIRMWARE FRAMEWORK FOR ARMV8-A
7316 M:      Sudeep Holla <[email protected]>
7317 L:      [email protected] (moderated for non-subscribers)
7318 S:      Maintained
7319 F:      drivers/firmware/arm_ffa/
7320 F:      include/linux/arm_ffa.h
7321
7322 FIRMWARE LOADER (request_firmware)
7323 M:      Luis Chamberlain <[email protected]>
7324 L:      [email protected]
7325 S:      Maintained
7326 F:      Documentation/firmware_class/
7327 F:      drivers/base/firmware_loader/
7328 F:      include/linux/firmware.h
7329
7330 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
7331 M:      Joshua Morris <[email protected]>
7332 M:      Philip Kelleher <[email protected]>
7333 S:      Maintained
7334 F:      drivers/block/rsxx/
7335
7336 FLEXTIMER FTM-QUADDEC DRIVER
7337 M:      Patrick Havelange <[email protected]>
7338 L:      [email protected]
7339 S:      Maintained
7340 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
7341 F:      drivers/counter/ftm-quaddec.c
7342
7343 FLOPPY DRIVER
7344 M:      Denis Efremov <[email protected]>
7345 L:      [email protected]
7346 S:      Odd Fixes
7347 F:      drivers/block/floppy.c
7348
7349 FLYSKY FSIA6B RC RECEIVER
7350 M:      Markus Koch <[email protected]>
7351 L:      [email protected]
7352 S:      Maintained
7353 F:      drivers/input/joystick/fsia6b.c
7354
7355 FOCUSRITE SCARLETT GEN 2/3 MIXER DRIVER
7356 M:      Geoffrey D. Bennett <[email protected]>
7357 L:      [email protected] (moderated for non-subscribers)
7358 S:      Maintained
7359 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7360 F:      sound/usb/mixer_scarlett_gen2.c
7361
7362 FORCEDETH GIGABIT ETHERNET DRIVER
7363 M:      Rain River <[email protected]>
7364 M:      Zhu Yanjun <[email protected]>
7365 L:      [email protected]
7366 S:      Maintained
7367 F:      drivers/net/ethernet/nvidia/*
7368
7369 FORTIFY_SOURCE
7370 M:      Kees Cook <[email protected]>
7371 L:      [email protected]
7372 S:      Supported
7373 F:      include/linux/fortify-string.h
7374 F:      lib/test_fortify/*
7375 F:      scripts/test_fortify.sh
7376 K:      \b__NO_FORTIFY\b
7377
7378 FPGA DFL DRIVERS
7379 M:      Wu Hao <[email protected]>
7380 R:      Tom Rix <[email protected]>
7381 L:      [email protected]
7382 S:      Maintained
7383 F:      Documentation/ABI/testing/sysfs-bus-dfl*
7384 F:      Documentation/fpga/dfl.rst
7385 F:      drivers/fpga/dfl*
7386 F:      drivers/uio/uio_dfl.c
7387 F:      include/linux/dfl.h
7388 F:      include/uapi/linux/fpga-dfl.h
7389
7390 FPGA MANAGER FRAMEWORK
7391 M:      Moritz Fischer <[email protected]>
7392 M:      Wu Hao <[email protected]>
7393 M:      Xu Yilun <[email protected]>
7394 R:      Tom Rix <[email protected]>
7395 L:      [email protected]
7396 S:      Maintained
7397 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
7398 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git
7399 F:      Documentation/devicetree/bindings/fpga/
7400 F:      Documentation/driver-api/fpga/
7401 F:      Documentation/fpga/
7402 F:      drivers/fpga/
7403 F:      include/linux/fpga/
7404
7405 FPU EMULATOR
7406 M:      Bill Metzenthen <[email protected]>
7407 S:      Maintained
7408 W:      http://floatingpoint.sourceforge.net/emulator/index.html
7409 F:      arch/x86/math-emu/
7410
7411 FRAMEBUFFER LAYER
7412 L:      [email protected]
7413 L:      [email protected]
7414 S:      Orphan
7415 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
7416 T:      git git://anongit.freedesktop.org/drm/drm-misc
7417 F:      Documentation/fb/
7418 F:      drivers/video/
7419 F:      include/linux/fb.h
7420 F:      include/uapi/linux/fb.h
7421 F:      include/uapi/video/
7422 F:      include/video/
7423
7424 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
7425 M:      Horia Geantă <[email protected]>
7426 M:      Pankaj Gupta <[email protected]>
7427 L:      [email protected]
7428 S:      Maintained
7429 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
7430 F:      drivers/crypto/caam/
7431
7432 FREESCALE COLDFIRE M5441X MMC DRIVER
7433 M:      Angelo Dureghello <[email protected]>
7434 L:      [email protected]
7435 S:      Maintained
7436 F:      drivers/mmc/host/sdhci-esdhc-mcf.c
7437 F:      include/linux/platform_data/mmc-esdhc-mcf.h
7438
7439 FREESCALE DIU FRAMEBUFFER DRIVER
7440 M:      Timur Tabi <[email protected]>
7441 L:      [email protected]
7442 S:      Maintained
7443 F:      drivers/video/fbdev/fsl-diu-fb.*
7444
7445 FREESCALE DMA DRIVER
7446 M:      Li Yang <[email protected]>
7447 M:      Zhang Wei <[email protected]>
7448 L:      [email protected]
7449 S:      Maintained
7450 F:      drivers/dma/fsldma.*
7451
7452 FREESCALE DSPI DRIVER
7453 M:      Vladimir Oltean <[email protected]>
7454 L:      [email protected]
7455 S:      Maintained
7456 F:      Documentation/devicetree/bindings/spi/spi-fsl-dspi.txt
7457 F:      drivers/spi/spi-fsl-dspi.c
7458 F:      include/linux/spi/spi-fsl-dspi.h
7459
7460 FREESCALE ENETC ETHERNET DRIVERS
7461 M:      Claudiu Manoil <[email protected]>
7462 L:      [email protected]
7463 S:      Maintained
7464 F:      drivers/net/ethernet/freescale/enetc/
7465
7466 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
7467 M:      Claudiu Manoil <[email protected]>
7468 L:      [email protected]
7469 S:      Maintained
7470 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
7471 F:      drivers/net/ethernet/freescale/gianfar*
7472
7473 FREESCALE GPMI NAND DRIVER
7474 M:      Han Xu <[email protected]>
7475 L:      [email protected]
7476 S:      Maintained
7477 F:      drivers/mtd/nand/raw/gpmi-nand/*
7478
7479 FREESCALE I2C CPM DRIVER
7480 M:      Jochen Friedrich <[email protected]>
7481 L:      [email protected]
7482 L:      [email protected]
7483 S:      Maintained
7484 F:      drivers/i2c/busses/i2c-cpm.c
7485
7486 FREESCALE IMX / MXC FEC DRIVER
7487 M:      Joakim Zhang <[email protected]>
7488 L:      [email protected]
7489 S:      Maintained
7490 F:      Documentation/devicetree/bindings/net/fsl,fec.yaml
7491 F:      drivers/net/ethernet/freescale/fec.h
7492 F:      drivers/net/ethernet/freescale/fec_main.c
7493 F:      drivers/net/ethernet/freescale/fec_ptp.c
7494
7495 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
7496 M:      Sascha Hauer <[email protected]>
7497 R:      Pengutronix Kernel Team <[email protected]>
7498 L:      [email protected]
7499 L:      [email protected] (moderated for non-subscribers)
7500 S:      Maintained
7501 F:      drivers/video/fbdev/imxfb.c
7502 F:      include/linux/platform_data/video-imxfb.h
7503
7504 FREESCALE IMX DDR PMU DRIVER
7505 M:      Frank Li <[email protected]>
7506 L:      [email protected] (moderated for non-subscribers)
7507 S:      Maintained
7508 F:      Documentation/admin-guide/perf/imx-ddr.rst
7509 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.yaml
7510 F:      drivers/perf/fsl_imx8_ddr_perf.c
7511
7512 FREESCALE IMX I2C DRIVER
7513 M:      Oleksij Rempel <[email protected]>
7514 R:      Pengutronix Kernel Team <[email protected]>
7515 L:      [email protected]
7516 S:      Maintained
7517 F:      Documentation/devicetree/bindings/i2c/i2c-imx.yaml
7518 F:      drivers/i2c/busses/i2c-imx.c
7519
7520 FREESCALE IMX LPI2C DRIVER
7521 M:      Dong Aisheng <[email protected]>
7522 L:      [email protected]
7523 L:      [email protected]
7524 S:      Maintained
7525 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.yaml
7526 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
7527
7528 FREESCALE MPC I2C DRIVER
7529 M:      Chris Packham <[email protected]>
7530 L:      [email protected]
7531 S:      Maintained
7532 F:      Documentation/devicetree/bindings/i2c/i2c-mpc.yaml
7533 F:      drivers/i2c/busses/i2c-mpc.c
7534
7535 FREESCALE QORIQ DPAA ETHERNET DRIVER
7536 M:      Madalin Bucur <[email protected]>
7537 L:      [email protected]
7538 S:      Maintained
7539 F:      drivers/net/ethernet/freescale/dpaa
7540
7541 FREESCALE QORIQ DPAA FMAN DRIVER
7542 M:      Madalin Bucur <[email protected]>
7543 L:      [email protected]
7544 S:      Maintained
7545 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
7546 F:      drivers/net/ethernet/freescale/fman
7547
7548 FREESCALE QORIQ PTP CLOCK DRIVER
7549 M:      Yangbo Lu <[email protected]>
7550 L:      [email protected]
7551 S:      Maintained
7552 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
7553 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
7554 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
7555 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
7556 F:      drivers/ptp/ptp_qoriq.c
7557 F:      drivers/ptp/ptp_qoriq_debugfs.c
7558 F:      include/linux/fsl/ptp_qoriq.h
7559
7560 FREESCALE QUAD SPI DRIVER
7561 M:      Han Xu <[email protected]>
7562 L:      [email protected]
7563 S:      Maintained
7564 F:      Documentation/devicetree/bindings/spi/fsl,spi-fsl-qspi.yaml
7565 F:      drivers/spi/spi-fsl-qspi.c
7566
7567 FREESCALE QUICC ENGINE LIBRARY
7568 M:      Qiang Zhao <[email protected]>
7569 L:      [email protected]
7570 S:      Maintained
7571 F:      drivers/soc/fsl/qe/
7572 F:      include/soc/fsl/*qe*.h
7573 F:      include/soc/fsl/*ucc*.h
7574
7575 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
7576 M:      Li Yang <[email protected]>
7577 L:      [email protected]
7578 L:      [email protected]
7579 S:      Maintained
7580 F:      drivers/net/ethernet/freescale/ucc_geth*
7581
7582 FREESCALE QUICC ENGINE UCC HDLC DRIVER
7583 M:      Zhao Qiang <[email protected]>
7584 L:      [email protected]
7585 L:      [email protected]
7586 S:      Maintained
7587 F:      drivers/net/wan/fsl_ucc_hdlc*
7588
7589 FREESCALE QUICC ENGINE UCC UART DRIVER
7590 M:      Timur Tabi <[email protected]>
7591 L:      [email protected]
7592 S:      Maintained
7593 F:      drivers/tty/serial/ucc_uart.c
7594
7595 FREESCALE SOC DRIVERS
7596 M:      Li Yang <[email protected]>
7597 L:      [email protected]
7598 L:      [email protected] (moderated for non-subscribers)
7599 S:      Maintained
7600 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.yaml
7601 F:      Documentation/devicetree/bindings/soc/fsl/
7602 F:      drivers/soc/fsl/
7603 F:      include/linux/fsl/
7604
7605 FREESCALE SOC FS_ENET DRIVER
7606 M:      Pantelis Antoniou <[email protected]>
7607 L:      [email protected]
7608 L:      [email protected]
7609 S:      Maintained
7610 F:      drivers/net/ethernet/freescale/fs_enet/
7611 F:      include/linux/fs_enet_pd.h
7612
7613 FREESCALE SOC SOUND DRIVERS
7614 M:      Nicolin Chen <[email protected]>
7615 M:      Xiubo Li <[email protected]>
7616 R:      Fabio Estevam <[email protected]>
7617 R:      Shengjiu Wang <[email protected]>
7618 L:      [email protected] (moderated for non-subscribers)
7619 L:      [email protected]
7620 S:      Maintained
7621 F:      sound/soc/fsl/fsl*
7622 F:      sound/soc/fsl/imx*
7623 F:      sound/soc/fsl/mpc8610_hpcd.c
7624
7625 FREESCALE USB PERIPHERAL DRIVERS
7626 M:      Li Yang <[email protected]>
7627 L:      [email protected]
7628 L:      [email protected]
7629 S:      Maintained
7630 F:      drivers/usb/gadget/udc/fsl*
7631
7632 FREESCALE USB PHY DRIVER
7633 M:      Ran Wang <[email protected]>
7634 L:      [email protected]
7635 L:      [email protected]
7636 S:      Maintained
7637 F:      drivers/usb/phy/phy-fsl-usb*
7638
7639 FREEVXFS FILESYSTEM
7640 M:      Christoph Hellwig <[email protected]>
7641 S:      Maintained
7642 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
7643 F:      fs/freevxfs/
7644
7645 FREEZER
7646 M:      "Rafael J. Wysocki" <[email protected]>
7647 M:      Pavel Machek <[email protected]>
7648 L:      [email protected]
7649 S:      Supported
7650 F:      Documentation/power/freezing-of-tasks.rst
7651 F:      include/linux/freezer.h
7652 F:      kernel/freezer.c
7653
7654 FRONTSWAP API
7655 M:      Konrad Rzeszutek Wilk <[email protected]>
7656 L:      [email protected]
7657 S:      Maintained
7658 F:      include/linux/frontswap.h
7659 F:      mm/frontswap.c
7660
7661 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
7662 M:      David Howells <[email protected]>
7663 L:      [email protected] (moderated for non-subscribers)
7664 S:      Supported
7665 F:      Documentation/filesystems/caching/
7666 F:      fs/fscache/
7667 F:      include/linux/fscache*.h
7668
7669 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
7670 M:      Theodore Y. Ts'o <[email protected]>
7671 M:      Jaegeuk Kim <[email protected]>
7672 M:      Eric Biggers <[email protected]>
7673 L:      [email protected]
7674 S:      Supported
7675 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7676 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
7677 F:      Documentation/filesystems/fscrypt.rst
7678 F:      fs/crypto/
7679 F:      include/linux/fscrypt*.h
7680 F:      include/uapi/linux/fscrypt.h
7681
7682 FSI SUBSYSTEM
7683 M:      Jeremy Kerr <[email protected]>
7684 M:      Joel Stanley <[email protected]>
7685 R:      Alistar Popple <[email protected]>
7686 R:      Eddie James <[email protected]>
7687 L:      [email protected]
7688 S:      Supported
7689 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
7690 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
7691 F:      drivers/fsi/
7692 F:      include/linux/fsi*.h
7693 F:      include/trace/events/fsi*.h
7694
7695 FSI-ATTACHED I2C DRIVER
7696 M:      Eddie James <[email protected]>
7697 L:      [email protected]
7698 L:      [email protected] (moderated for non-subscribers)
7699 S:      Maintained
7700 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
7701 F:      drivers/i2c/busses/i2c-fsi.c
7702
7703 FSI-ATTACHED SPI DRIVER
7704 M:      Eddie James <[email protected]>
7705 L:      [email protected]
7706 S:      Maintained
7707 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
7708 F:      drivers/spi/spi-fsi.c
7709
7710 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
7711 M:      Jan Kara <[email protected]>
7712 R:      Amir Goldstein <[email protected]>
7713 L:      [email protected]
7714 S:      Maintained
7715 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
7716 F:      fs/notify/
7717 F:      include/linux/fsnotify*.h
7718
7719 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
7720 M:      Eric Biggers <[email protected]>
7721 M:      Theodore Y. Ts'o <[email protected]>
7722 L:      [email protected]
7723 S:      Supported
7724 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7725 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
7726 F:      Documentation/filesystems/fsverity.rst
7727 F:      fs/verity/
7728 F:      include/linux/fsverity.h
7729 F:      include/uapi/linux/fsverity.h
7730
7731 FT260 FTDI USB-HID TO I2C BRIDGE DRIVER
7732 M:      Michael Zaidman <[email protected]>
7733 L:      [email protected]
7734 L:      [email protected]
7735 S:      Maintained
7736 F:      drivers/hid/hid-ft260.c
7737
7738 FUJITSU LAPTOP EXTRAS
7739 M:      Jonathan Woithe <[email protected]>
7740 L:      [email protected]
7741 S:      Maintained
7742 F:      drivers/platform/x86/fujitsu-laptop.c
7743
7744 FUJITSU M-5MO LS CAMERA ISP DRIVER
7745 M:      Kyungmin Park <[email protected]>
7746 M:      Heungjun Kim <[email protected]>
7747 L:      [email protected]
7748 S:      Maintained
7749 F:      drivers/media/i2c/m5mols/
7750 F:      include/media/i2c/m5mols.h
7751
7752 FUJITSU TABLET EXTRAS
7753 M:      Robert Gerlach <[email protected]>
7754 L:      [email protected]
7755 S:      Maintained
7756 F:      drivers/platform/x86/fujitsu-tablet.c
7757
7758 FUSE: FILESYSTEM IN USERSPACE
7759 M:      Miklos Szeredi <[email protected]>
7760 L:      [email protected]
7761 S:      Maintained
7762 W:      https://github.com/libfuse/
7763 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
7764 F:      Documentation/filesystems/fuse.rst
7765 F:      fs/fuse/
7766 F:      include/uapi/linux/fuse.h
7767
7768 FUTEX SUBSYSTEM
7769 M:      Thomas Gleixner <[email protected]>
7770 M:      Ingo Molnar <[email protected]>
7771 R:      Peter Zijlstra <[email protected]>
7772 R:      Darren Hart <[email protected]>
7773 R:      Davidlohr Bueso <[email protected]>
7774 R:      André Almeida <[email protected]>
7775 L:      [email protected]
7776 S:      Maintained
7777 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
7778 F:      Documentation/locking/*futex*
7779 F:      include/asm-generic/futex.h
7780 F:      include/linux/futex.h
7781 F:      include/uapi/linux/futex.h
7782 F:      kernel/futex/*
7783 F:      tools/perf/bench/futex*
7784 F:      tools/testing/selftests/futex/
7785
7786 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
7787 M:      Tim Harvey <[email protected]>
7788 M:      Robert Jones <[email protected]>
7789 S:      Maintained
7790 F:      Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
7791 F:      drivers/mfd/gateworks-gsc.c
7792 F:      include/linux/mfd/gsc.h
7793 F:      Documentation/hwmon/gsc-hwmon.rst
7794 F:      drivers/hwmon/gsc-hwmon.c
7795 F:      include/linux/platform_data/gsc_hwmon.h
7796
7797 GCC PLUGINS
7798 M:      Kees Cook <[email protected]>
7799 L:      [email protected]
7800 S:      Maintained
7801 F:      Documentation/kbuild/gcc-plugins.rst
7802 F:      scripts/Makefile.gcc-plugins
7803 F:      scripts/gcc-plugins/
7804
7805 GCOV BASED KERNEL PROFILING
7806 M:      Peter Oberparleiter <[email protected]>
7807 S:      Maintained
7808 F:      Documentation/dev-tools/gcov.rst
7809 F:      kernel/gcov/
7810
7811 GDB KERNEL DEBUGGING HELPER SCRIPTS
7812 M:      Jan Kiszka <[email protected]>
7813 M:      Kieran Bingham <[email protected]>
7814 S:      Supported
7815 F:      scripts/gdb/
7816
7817 GEMINI CRYPTO DRIVER
7818 M:      Corentin Labbe <[email protected]>
7819 L:      [email protected]
7820 S:      Maintained
7821 F:      drivers/crypto/gemini/
7822
7823 GEMTEK FM RADIO RECEIVER DRIVER
7824 M:      Hans Verkuil <[email protected]>
7825 L:      [email protected]
7826 S:      Maintained
7827 W:      https://linuxtv.org
7828 T:      git git://linuxtv.org/media_tree.git
7829 F:      drivers/media/radio/radio-gemtek*
7830
7831 GENERIC ARCHITECTURE TOPOLOGY
7832 M:      Sudeep Holla <[email protected]>
7833 L:      [email protected]
7834 S:      Maintained
7835 F:      drivers/base/arch_topology.c
7836 F:      include/linux/arch_topology.h
7837
7838 GENERIC ENTRY CODE
7839 M:      Thomas Gleixner <[email protected]>
7840 M:      Peter Zijlstra <[email protected]>
7841 M:      Andy Lutomirski <[email protected]>
7842 L:      [email protected]
7843 S:      Maintained
7844 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/entry
7845 F:      include/linux/entry-common.h
7846 F:      include/linux/entry-kvm.h
7847 F:      kernel/entry/
7848
7849 GENERIC GPIO I2C DRIVER
7850 M:      Wolfram Sang <[email protected]>
7851 S:      Supported
7852 F:      drivers/i2c/busses/i2c-gpio.c
7853 F:      include/linux/platform_data/i2c-gpio.h
7854
7855 GENERIC GPIO I2C MULTIPLEXER DRIVER
7856 M:      Peter Korsgaard <[email protected]>
7857 L:      [email protected]
7858 S:      Supported
7859 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
7860 F:      drivers/i2c/muxes/i2c-mux-gpio.c
7861 F:      include/linux/platform_data/i2c-mux-gpio.h
7862
7863 GENERIC HDLC (WAN) DRIVERS
7864 M:      Krzysztof Halasa <[email protected]>
7865 S:      Maintained
7866 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
7867 F:      drivers/net/wan/c101.c
7868 F:      drivers/net/wan/hd6457*
7869 F:      drivers/net/wan/hdlc*
7870 F:      drivers/net/wan/n2.c
7871 F:      drivers/net/wan/pc300too.c
7872 F:      drivers/net/wan/pci200syn.c
7873 F:      drivers/net/wan/wanxl*
7874
7875 GENERIC INCLUDE/ASM HEADER FILES
7876 M:      Arnd Bergmann <[email protected]>
7877 L:      [email protected]
7878 S:      Maintained
7879 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
7880 F:      include/asm-generic/
7881 F:      include/uapi/asm-generic/
7882
7883 GENERIC PHY FRAMEWORK
7884 M:      Kishon Vijay Abraham I <[email protected]>
7885 M:      Vinod Koul <[email protected]>
7886 L:      [email protected]
7887 S:      Supported
7888 Q:      https://patchwork.kernel.org/project/linux-phy/list/
7889 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
7890 F:      Documentation/devicetree/bindings/phy/
7891 F:      drivers/phy/
7892 F:      include/linux/phy/
7893
7894 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
7895 M:      Wolfram Sang <[email protected]>
7896 S:      Supported
7897 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
7898
7899 GENERIC PM DOMAINS
7900 M:      "Rafael J. Wysocki" <[email protected]>
7901 M:      Kevin Hilman <[email protected]>
7902 M:      Ulf Hansson <[email protected]>
7903 L:      [email protected]
7904 S:      Supported
7905 F:      Documentation/devicetree/bindings/power/power?domain*
7906 F:      drivers/base/power/domain*.c
7907 F:      include/linux/pm_domain.h
7908
7909 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
7910 M:      Eugen Hristev <[email protected]>
7911 L:      [email protected]
7912 S:      Maintained
7913 F:      drivers/input/touchscreen/resistive-adc-touch.c
7914
7915 GENERIC STRING LIBRARY
7916 R:      Andy Shevchenko <[email protected]>
7917 S:      Maintained
7918 F:      lib/string.c
7919 F:      lib/string_helpers.c
7920 F:      lib/test_string.c
7921 F:      lib/test-string_helpers.c
7922
7923 GENERIC UIO DRIVER FOR PCI DEVICES
7924 M:      "Michael S. Tsirkin" <[email protected]>
7925 L:      [email protected]
7926 S:      Supported
7927 F:      drivers/uio/uio_pci_generic.c
7928
7929 GENERIC VDSO LIBRARY
7930 M:      Andy Lutomirski <[email protected]>
7931 M:      Thomas Gleixner <[email protected]>
7932 M:      Vincenzo Frascino <[email protected]>
7933 L:      [email protected]
7934 S:      Maintained
7935 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
7936 F:      include/asm-generic/vdso/vsyscall.h
7937 F:      include/vdso/
7938 F:      kernel/time/vsyscall.c
7939 F:      lib/vdso/
7940
7941 GENWQE (IBM Generic Workqueue Card)
7942 M:      Frank Haverkamp <[email protected]>
7943 S:      Supported
7944 F:      drivers/misc/genwqe/
7945
7946 GET_MAINTAINER SCRIPT
7947 M:      Joe Perches <[email protected]>
7948 S:      Maintained
7949 F:      scripts/get_maintainer.pl
7950
7951 GFS2 FILE SYSTEM
7952 M:      Bob Peterson <[email protected]>
7953 M:      Andreas Gruenbacher <[email protected]>
7954 L:      [email protected]
7955 S:      Supported
7956 B:      https://bugzilla.kernel.org/enter_bug.cgi?product=File%20System&component=gfs2
7957 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
7958 F:      Documentation/filesystems/gfs2*
7959 F:      fs/gfs2/
7960 F:      include/uapi/linux/gfs2_ondisk.h
7961
7962 GIGABYTE WMI DRIVER
7963 M:      Thomas Weißschuh <[email protected]>
7964 L:      [email protected]
7965 S:      Maintained
7966 F:      drivers/platform/x86/gigabyte-wmi.c
7967
7968 GNSS SUBSYSTEM
7969 M:      Johan Hovold <[email protected]>
7970 S:      Maintained
7971 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
7972 F:      Documentation/ABI/testing/sysfs-class-gnss
7973 F:      Documentation/devicetree/bindings/gnss/
7974 F:      drivers/gnss/
7975 F:      include/linux/gnss.h
7976
7977 GO7007 MPEG CODEC
7978 M:      Hans Verkuil <[email protected]>
7979 L:      [email protected]
7980 S:      Maintained
7981 F:      drivers/media/usb/go7007/
7982
7983 GOODIX TOUCHSCREEN
7984 M:      Bastien Nocera <[email protected]>
7985 L:      [email protected]
7986 S:      Maintained
7987 F:      drivers/input/touchscreen/goodix.c
7988
7989 GOOGLE ETHERNET DRIVERS
7990 M:      Jeroen de Borst <[email protected]>
7991 R:      Catherine Sullivan <[email protected]>
7992 R:      David Awogbemila <[email protected]>
7993 L:      [email protected]
7994 S:      Supported
7995 F:      Documentation/networking/device_drivers/ethernet/google/gve.rst
7996 F:      drivers/net/ethernet/google
7997
7998 GPD POCKET FAN DRIVER
7999 M:      Hans de Goede <[email protected]>
8000 L:      [email protected]
8001 S:      Maintained
8002 F:      drivers/platform/x86/gpd-pocket-fan.c
8003
8004 GPIO ACPI SUPPORT
8005 M:      Mika Westerberg <[email protected]>
8006 M:      Andy Shevchenko <[email protected]>
8007 L:      [email protected]
8008 L:      [email protected]
8009 S:      Maintained
8010 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8011 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
8012 F:      drivers/gpio/gpiolib-acpi.c
8013 F:      drivers/gpio/gpiolib-acpi.h
8014
8015 GPIO AGGREGATOR
8016 M:      Geert Uytterhoeven <[email protected]>
8017 L:      [email protected]
8018 S:      Supported
8019 F:      Documentation/admin-guide/gpio/gpio-aggregator.rst
8020 F:      drivers/gpio/gpio-aggregator.c
8021
8022 GPIO IR Transmitter
8023 M:      Sean Young <[email protected]>
8024 L:      [email protected]
8025 S:      Maintained
8026 F:      drivers/media/rc/gpio-ir-tx.c
8027
8028 GPIO MOCKUP DRIVER
8029 M:      Bamvor Jian Zhang <[email protected]>
8030 L:      [email protected]
8031 S:      Maintained
8032 F:      drivers/gpio/gpio-mockup.c
8033 F:      tools/testing/selftests/gpio/
8034
8035 GPIO REGMAP
8036 R:      Michael Walle <[email protected]>
8037 S:      Maintained
8038 F:      drivers/gpio/gpio-regmap.c
8039 F:      include/linux/gpio/regmap.h
8040
8041 GPIO SUBSYSTEM
8042 M:      Linus Walleij <[email protected]>
8043 M:      Bartosz Golaszewski <[email protected]>
8044 L:      [email protected]
8045 S:      Maintained
8046 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
8047 F:      Documentation/ABI/obsolete/sysfs-gpio
8048 F:      Documentation/ABI/testing/gpio-cdev
8049 F:      Documentation/admin-guide/gpio/
8050 F:      Documentation/devicetree/bindings/gpio/
8051 F:      Documentation/driver-api/gpio/
8052 F:      drivers/gpio/
8053 F:      include/asm-generic/gpio.h
8054 F:      include/linux/gpio.h
8055 F:      include/linux/gpio/
8056 F:      include/linux/of_gpio.h
8057 F:      include/uapi/linux/gpio.h
8058 F:      tools/gpio/
8059
8060 GRE DEMULTIPLEXER DRIVER
8061 M:      Dmitry Kozlov <[email protected]>
8062 L:      [email protected]
8063 S:      Maintained
8064 F:      include/net/gre.h
8065 F:      net/ipv4/gre_demux.c
8066 F:      net/ipv4/gre_offload.c
8067
8068 GRETH 10/100/1G Ethernet MAC device driver
8069 M:      Andreas Larsson <[email protected]>
8070 L:      [email protected]
8071 S:      Maintained
8072 F:      drivers/net/ethernet/aeroflex/
8073
8074 GREYBUS AUDIO PROTOCOLS DRIVERS
8075 M:      Vaibhav Agarwal <[email protected]>
8076 M:      Mark Greer <[email protected]>
8077 S:      Maintained
8078 F:      drivers/staging/greybus/audio_apbridgea.c
8079 F:      drivers/staging/greybus/audio_apbridgea.h
8080 F:      drivers/staging/greybus/audio_codec.c
8081 F:      drivers/staging/greybus/audio_codec.h
8082 F:      drivers/staging/greybus/audio_gb.c
8083 F:      drivers/staging/greybus/audio_manager.c
8084 F:      drivers/staging/greybus/audio_manager.h
8085 F:      drivers/staging/greybus/audio_manager_module.c
8086 F:      drivers/staging/greybus/audio_manager_private.h
8087 F:      drivers/staging/greybus/audio_manager_sysfs.c
8088 F:      drivers/staging/greybus/audio_module.c
8089 F:      drivers/staging/greybus/audio_topology.c
8090
8091 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
8092 M:      Viresh Kumar <[email protected]>
8093 S:      Maintained
8094 F:      drivers/staging/greybus/authentication.c
8095 F:      drivers/staging/greybus/bootrom.c
8096 F:      drivers/staging/greybus/firmware.h
8097 F:      drivers/staging/greybus/fw-core.c
8098 F:      drivers/staging/greybus/fw-download.c
8099 F:      drivers/staging/greybus/fw-management.c
8100 F:      drivers/staging/greybus/greybus_authentication.h
8101 F:      drivers/staging/greybus/greybus_firmware.h
8102 F:      drivers/staging/greybus/hid.c
8103 F:      drivers/staging/greybus/i2c.c
8104 F:      drivers/staging/greybus/spi.c
8105 F:      drivers/staging/greybus/spilib.c
8106 F:      drivers/staging/greybus/spilib.h
8107
8108 GREYBUS LOOPBACK DRIVER
8109 M:      Bryan O'Donoghue <[email protected]>
8110 S:      Maintained
8111 F:      drivers/staging/greybus/loopback.c
8112
8113 GREYBUS PLATFORM DRIVERS
8114 M:      Vaibhav Hiremath <[email protected]>
8115 S:      Maintained
8116 F:      drivers/staging/greybus/arche-apb-ctrl.c
8117 F:      drivers/staging/greybus/arche-platform.c
8118 F:      drivers/staging/greybus/arche_platform.h
8119
8120 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
8121 M:      Rui Miguel Silva <[email protected]>
8122 S:      Maintained
8123 F:      drivers/staging/greybus/gpio.c
8124 F:      drivers/staging/greybus/light.c
8125 F:      drivers/staging/greybus/power_supply.c
8126 F:      drivers/staging/greybus/sdio.c
8127 F:      drivers/staging/greybus/spi.c
8128 F:      drivers/staging/greybus/spilib.c
8129
8130 GREYBUS SUBSYSTEM
8131 M:      Johan Hovold <[email protected]>
8132 M:      Alex Elder <[email protected]>
8133 M:      Greg Kroah-Hartman <[email protected]>
8134 L:      [email protected] (moderated for non-subscribers)
8135 S:      Maintained
8136 F:      drivers/greybus/
8137 F:      drivers/staging/greybus/
8138 F:      include/linux/greybus.h
8139 F:      include/linux/greybus/
8140
8141 GREYBUS UART PROTOCOLS DRIVERS
8142 M:      David Lin <[email protected]>
8143 S:      Maintained
8144 F:      drivers/staging/greybus/log.c
8145 F:      drivers/staging/greybus/uart.c
8146
8147 GS1662 VIDEO SERIALIZER
8148 M:      Charles-Antoine Couret <[email protected]>
8149 L:      [email protected]
8150 S:      Maintained
8151 T:      git git://linuxtv.org/media_tree.git
8152 F:      drivers/media/spi/gs1662.c
8153
8154 GSPCA FINEPIX SUBDRIVER
8155 M:      Frank Zago <[email protected]>
8156 L:      [email protected]
8157 S:      Maintained
8158 T:      git git://linuxtv.org/media_tree.git
8159 F:      drivers/media/usb/gspca/finepix.c
8160
8161 GSPCA GL860 SUBDRIVER
8162 M:      Olivier Lorin <[email protected]>
8163 L:      [email protected]
8164 S:      Maintained
8165 T:      git git://linuxtv.org/media_tree.git
8166 F:      drivers/media/usb/gspca/gl860/
8167
8168 GSPCA M5602 SUBDRIVER
8169 M:      Erik Andren <[email protected]>
8170 L:      [email protected]
8171 S:      Maintained
8172 T:      git git://linuxtv.org/media_tree.git
8173 F:      drivers/media/usb/gspca/m5602/
8174
8175 GSPCA PAC207 SONIXB SUBDRIVER
8176 M:      Hans Verkuil <[email protected]>
8177 L:      [email protected]
8178 S:      Odd Fixes
8179 T:      git git://linuxtv.org/media_tree.git
8180 F:      drivers/media/usb/gspca/pac207.c
8181
8182 GSPCA SN9C20X SUBDRIVER
8183 M:      Brian Johnson <[email protected]>
8184 L:      [email protected]
8185 S:      Maintained
8186 T:      git git://linuxtv.org/media_tree.git
8187 F:      drivers/media/usb/gspca/sn9c20x.c
8188
8189 GSPCA T613 SUBDRIVER
8190 M:      Leandro Costantino <[email protected]>
8191 L:      [email protected]
8192 S:      Maintained
8193 T:      git git://linuxtv.org/media_tree.git
8194 F:      drivers/media/usb/gspca/t613.c
8195
8196 GSPCA USB WEBCAM DRIVER
8197 M:      Hans Verkuil <[email protected]>
8198 L:      [email protected]
8199 S:      Odd Fixes
8200 T:      git git://linuxtv.org/media_tree.git
8201 F:      drivers/media/usb/gspca/
8202
8203 GTP (GPRS Tunneling Protocol)
8204 M:      Pablo Neira Ayuso <[email protected]>
8205 M:      Harald Welte <[email protected]>
8206 L:      [email protected]
8207 S:      Maintained
8208 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
8209 F:      drivers/net/gtp.c
8210
8211 GUID PARTITION TABLE (GPT)
8212 M:      Davidlohr Bueso <[email protected]>
8213 L:      [email protected]
8214 S:      Maintained
8215 F:      block/partitions/efi.*
8216
8217 H8/300 ARCHITECTURE
8218 M:      Yoshinori Sato <[email protected]>
8219 L:      [email protected] (moderated for non-subscribers)
8220 S:      Maintained
8221 W:      http://uclinux-h8.sourceforge.jp
8222 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
8223 F:      arch/h8300/
8224 F:      drivers/clk/h8300/
8225 F:      drivers/clocksource/h8300_*.c
8226 F:      drivers/irqchip/irq-renesas-h8*.c
8227
8228 HABANALABS PCI DRIVER
8229 M:      Oded Gabbay <[email protected]>
8230 S:      Supported
8231 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/linux.git
8232 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
8233 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
8234 F:      drivers/misc/habanalabs/
8235 F:      include/uapi/misc/habanalabs.h
8236
8237 HACKRF MEDIA DRIVER
8238 M:      Antti Palosaari <[email protected]>
8239 L:      [email protected]
8240 S:      Maintained
8241 W:      https://linuxtv.org
8242 W:      http://palosaari.fi/linux/
8243 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8244 T:      git git://linuxtv.org/anttip/media_tree.git
8245 F:      drivers/media/usb/hackrf/
8246
8247 HANTRO VPU CODEC DRIVER
8248 M:      Ezequiel Garcia <[email protected]>
8249 M:      Philipp Zabel <[email protected]>
8250 L:      [email protected]
8251 L:      [email protected]
8252 S:      Maintained
8253 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
8254 F:      Documentation/devicetree/bindings/media/rockchip-vpu.yaml
8255 F:      drivers/staging/media/hantro/
8256
8257 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
8258 M:      Frank Seidel <[email protected]>
8259 L:      [email protected]
8260 S:      Maintained
8261 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
8262 F:      drivers/platform/x86/hdaps.c
8263
8264 HARDWARE MONITORING
8265 M:      Jean Delvare <[email protected]>
8266 M:      Guenter Roeck <[email protected]>
8267 L:      [email protected]
8268 S:      Maintained
8269 W:      http://hwmon.wiki.kernel.org/
8270 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8271 F:      Documentation/devicetree/bindings/hwmon/
8272 F:      Documentation/hwmon/
8273 F:      drivers/hwmon/
8274 F:      include/linux/hwmon*.h
8275 F:      include/trace/events/hwmon*.h
8276 K:      (devm_)?hwmon_device_(un)?register(|_with_groups|_with_info)
8277
8278 HARDWARE RANDOM NUMBER GENERATOR CORE
8279 M:      Matt Mackall <[email protected]>
8280 M:      Herbert Xu <[email protected]>
8281 L:      [email protected]
8282 S:      Odd fixes
8283 F:      Documentation/admin-guide/hw_random.rst
8284 F:      Documentation/devicetree/bindings/rng/
8285 F:      drivers/char/hw_random/
8286 F:      include/linux/hw_random.h
8287
8288 HARDWARE SPINLOCK CORE
8289 M:      Ohad Ben-Cohen <[email protected]>
8290 M:      Bjorn Andersson <[email protected]>
8291 R:      Baolin Wang <[email protected]>
8292 L:      [email protected]
8293 S:      Maintained
8294 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
8295 F:      Documentation/devicetree/bindings/hwlock/
8296 F:      Documentation/locking/hwspinlock.rst
8297 F:      drivers/hwspinlock/
8298 F:      include/linux/hwspinlock.h
8299
8300 HARDWARE TRACING FACILITIES
8301 M:      Alexander Shishkin <[email protected]>
8302 S:      Maintained
8303 F:      drivers/hwtracing/
8304
8305 HARMONY SOUND DRIVER
8306 L:      [email protected]
8307 S:      Maintained
8308 F:      sound/parisc/harmony.*
8309
8310 HDPVR USB VIDEO ENCODER DRIVER
8311 M:      Hans Verkuil <[email protected]>
8312 L:      [email protected]
8313 S:      Odd Fixes
8314 W:      https://linuxtv.org
8315 T:      git git://linuxtv.org/media_tree.git
8316 F:      drivers/media/usb/hdpvr/
8317
8318 HEWLETT PACKARD ENTERPRISE ILO CHIF DRIVER
8319 M:      Matt Hsiao <[email protected]>
8320 S:      Supported
8321 F:      drivers/misc/hpilo.[ch]
8322
8323 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
8324 M:      Jerry Hoemann <[email protected]>
8325 S:      Supported
8326 F:      Documentation/watchdog/hpwdt.rst
8327 F:      drivers/watchdog/hpwdt.c
8328
8329 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
8330 M:      Don Brace <[email protected]>
8331 L:      [email protected]
8332 L:      [email protected]
8333 S:      Supported
8334 F:      Documentation/scsi/hpsa.rst
8335 F:      drivers/scsi/hpsa*.[ch]
8336 F:      include/linux/cciss*.h
8337 F:      include/uapi/linux/cciss*.h
8338
8339 HFI1 DRIVER
8340 M:      Mike Marciniszyn <[email protected]>
8341 M:      Dennis Dalessandro <[email protected]>
8342 L:      [email protected]
8343 S:      Supported
8344 F:      drivers/infiniband/hw/hfi1
8345
8346 HFS FILESYSTEM
8347 L:      [email protected]
8348 S:      Orphan
8349 F:      Documentation/filesystems/hfs.rst
8350 F:      fs/hfs/
8351
8352 HFSPLUS FILESYSTEM
8353 L:      [email protected]
8354 S:      Orphan
8355 F:      Documentation/filesystems/hfsplus.rst
8356 F:      fs/hfsplus/
8357
8358 HGA FRAMEBUFFER DRIVER
8359 M:      Ferenc Bakonyi <[email protected]>
8360 L:      [email protected]
8361 S:      Maintained
8362 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
8363 F:      drivers/video/fbdev/hgafb.c
8364
8365 HIBERNATION (aka Software Suspend, aka swsusp)
8366 M:      "Rafael J. Wysocki" <[email protected]>
8367 M:      Pavel Machek <[email protected]>
8368 L:      [email protected]
8369 S:      Supported
8370 B:      https://bugzilla.kernel.org
8371 F:      arch/*/include/asm/suspend*.h
8372 F:      arch/x86/power/
8373 F:      drivers/base/power/
8374 F:      include/linux/freezer.h
8375 F:      include/linux/pm.h
8376 F:      include/linux/suspend.h
8377 F:      kernel/power/
8378
8379 HID CORE LAYER
8380 M:      Jiri Kosina <[email protected]>
8381 M:      Benjamin Tissoires <[email protected]>
8382 L:      [email protected]
8383 S:      Maintained
8384 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
8385 F:      drivers/hid/
8386 F:      include/linux/hid*
8387 F:      include/uapi/linux/hid*
8388
8389 HID PLAYSTATION DRIVER
8390 M:      Roderick Colenbrander <[email protected]>
8391 L:      [email protected]
8392 S:      Supported
8393 F:      drivers/hid/hid-playstation.c
8394
8395 HID SENSOR HUB DRIVERS
8396 M:      Jiri Kosina <[email protected]>
8397 M:      Jonathan Cameron <[email protected]>
8398 M:      Srinivas Pandruvada <[email protected]>
8399 L:      [email protected]
8400 L:      [email protected]
8401 S:      Maintained
8402 F:      Documentation/hid/hid-sensor*
8403 F:      drivers/hid/hid-sensor-*
8404 F:      drivers/iio/*/hid-*
8405 F:      include/linux/hid-sensor-*
8406
8407 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
8408 M:      Thomas Gleixner <[email protected]>
8409 L:      [email protected]
8410 S:      Maintained
8411 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8412 F:      Documentation/timers/
8413 F:      include/linux/clockchips.h
8414 F:      include/linux/hrtimer.h
8415 F:      kernel/time/clockevents.c
8416 F:      kernel/time/hrtimer.c
8417 F:      kernel/time/timer_*.c
8418
8419 HIGH-SPEED SCC DRIVER FOR AX.25
8420 L:      [email protected]
8421 S:      Orphan
8422 F:      drivers/net/hamradio/dmascc.c
8423 F:      drivers/net/hamradio/scc.c
8424
8425 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
8426 M:      HighPoint Linux Team <[email protected]>
8427 S:      Supported
8428 W:      http://www.highpoint-tech.com
8429 F:      Documentation/scsi/hptiop.rst
8430 F:      drivers/scsi/hptiop.c
8431
8432 HIPPI
8433 M:      Jes Sorensen <[email protected]>
8434 L:      [email protected]
8435 S:      Maintained
8436 F:      drivers/net/hippi/
8437 F:      include/linux/hippidevice.h
8438 F:      include/uapi/linux/if_hippi.h
8439 F:      net/802/hippi.c
8440
8441 HIRSCHMANN HELLCREEK ETHERNET SWITCH DRIVER
8442 M:      Kurt Kanzenbach <[email protected]>
8443 L:      [email protected]
8444 S:      Maintained
8445 F:      Documentation/devicetree/bindings/net/dsa/hirschmann,hellcreek.yaml
8446 F:      drivers/net/dsa/hirschmann/*
8447 F:      include/linux/platform_data/hirschmann-hellcreek.h
8448 F:      net/dsa/tag_hellcreek.c
8449
8450 HISILICON DMA DRIVER
8451 M:      Zhou Wang <[email protected]>
8452 L:      [email protected]
8453 S:      Maintained
8454 F:      drivers/dma/hisi_dma.c
8455
8456 HISILICON GPIO DRIVER
8457 M:      Luo Jiaxing <[email protected]>
8458 L:      [email protected]
8459 S:      Maintained
8460 F:      drivers/gpio/gpio-hisi.c
8461
8462 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
8463 M:      Zaibo Xu <[email protected]>
8464 L:      [email protected]
8465 S:      Maintained
8466 F:      Documentation/ABI/testing/debugfs-hisi-hpre
8467 F:      drivers/crypto/hisilicon/hpre/hpre.h
8468 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
8469 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
8470
8471 HISILICON I2C CONTROLLER DRIVER
8472 M:      Yicong Yang <[email protected]>
8473 L:      [email protected]
8474 S:      Maintained
8475 W:      https://www.hisilicon.com
8476 F:      drivers/i2c/busses/i2c-hisi.c
8477
8478 HISILICON LPC BUS DRIVER
8479 M:      [email protected]
8480 S:      Maintained
8481 W:      http://www.hisilicon.com
8482 F:      Documentation/devicetree/bindings/arm/hisilicon/low-pin-count.yaml
8483 F:      drivers/bus/hisi_lpc.c
8484
8485 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
8486 M:      Yisen Zhuang <[email protected]>
8487 M:      Salil Mehta <[email protected]>
8488 L:      [email protected]
8489 S:      Maintained
8490 W:      http://www.hisilicon.com
8491 F:      drivers/net/ethernet/hisilicon/hns3/
8492
8493 HISILICON NETWORK SUBSYSTEM DRIVER
8494 M:      Yisen Zhuang <[email protected]>
8495 M:      Salil Mehta <[email protected]>
8496 L:      [email protected]
8497 S:      Maintained
8498 W:      http://www.hisilicon.com
8499 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
8500 F:      drivers/net/ethernet/hisilicon/
8501
8502 HIKEY960 ONBOARD USB GPIO HUB DRIVER
8503 M:      John Stultz <[email protected]>
8504 L:      [email protected]
8505 S:      Maintained
8506 F:      drivers/misc/hisi_hikey_usb.c
8507 F:      Documentation/devicetree/bindings/misc/hisilicon-hikey-usb.yaml
8508
8509 HISILICON PMU DRIVER
8510 M:      Shaokun Zhang <[email protected]>
8511 S:      Supported
8512 W:      http://www.hisilicon.com
8513 F:      Documentation/admin-guide/perf/hisi-pmu.rst
8514 F:      drivers/perf/hisilicon
8515
8516 HISILICON QM AND ZIP Controller DRIVER
8517 M:      Zhou Wang <[email protected]>
8518 L:      [email protected]
8519 S:      Maintained
8520 F:      Documentation/ABI/testing/debugfs-hisi-zip
8521 F:      drivers/crypto/hisilicon/qm.c
8522 F:      drivers/crypto/hisilicon/qm.h
8523 F:      drivers/crypto/hisilicon/sgl.c
8524 F:      drivers/crypto/hisilicon/zip/
8525
8526 HISILICON ROCE DRIVER
8527 M:      Wenpeng Liang <[email protected]>
8528 M:      Weihang Li <[email protected]>
8529 L:      [email protected]
8530 S:      Maintained
8531 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
8532 F:      drivers/infiniband/hw/hns/
8533
8534 HISILICON SAS Controller
8535 M:      John Garry <[email protected]>
8536 S:      Supported
8537 W:      http://www.hisilicon.com
8538 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
8539 F:      drivers/scsi/hisi_sas/
8540
8541 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
8542 M:      Zaibo Xu <[email protected]>
8543 L:      [email protected]
8544 S:      Maintained
8545 F:      Documentation/ABI/testing/debugfs-hisi-sec
8546 F:      drivers/crypto/hisilicon/sec2/sec.h
8547 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
8548 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
8549 F:      drivers/crypto/hisilicon/sec2/sec_main.c
8550
8551 HISILICON SPI Controller DRIVER FOR KUNPENG SOCS
8552 M:      Jay Fang <[email protected]>
8553 L:      [email protected]
8554 S:      Maintained
8555 W:      http://www.hisilicon.com
8556 F:      drivers/spi/spi-hisi-kunpeng.c
8557
8558 HISILICON SPMI CONTROLLER DRIVER FOR HIKEY 970
8559 M:      Mauro Carvalho Chehab <[email protected]>
8560 L:      [email protected]
8561 S:      Maintained
8562 F:      Documentation/devicetree/bindings/spmi/hisilicon,hisi-spmi-controller.yaml
8563 F:      drivers/spmi/hisi-spmi-controller.c
8564
8565 HISILICON SPMI PMIC DRIVER FOR HIKEY 6421v600
8566 M:      Mauro Carvalho Chehab <[email protected]>
8567 L:      [email protected]
8568 S:      Maintained
8569 F:      Documentation/devicetree/bindings/mfd/hisilicon,hi6421-spmi-pmic.yaml
8570 F:      drivers/mfd/hi6421-spmi-pmic.c
8571
8572 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
8573 M:      Zaibo Xu <[email protected]>
8574 S:      Maintained
8575 F:      drivers/crypto/hisilicon/trng/trng.c
8576
8577 HISILICON V3XX SPI NOR FLASH Controller Driver
8578 M:      John Garry <[email protected]>
8579 S:      Maintained
8580 W:      http://www.hisilicon.com
8581 F:      drivers/spi/spi-hisi-sfc-v3xx.c
8582
8583 HMM - Heterogeneous Memory Management
8584 M:      Jérôme Glisse <[email protected]>
8585 L:      [email protected]
8586 S:      Maintained
8587 F:      Documentation/vm/hmm.rst
8588 F:      include/linux/hmm*
8589 F:      lib/test_hmm*
8590 F:      mm/hmm*
8591 F:      tools/testing/selftests/vm/*hmm*
8592
8593 HOST AP DRIVER
8594 M:      Jouni Malinen <[email protected]>
8595 L:      [email protected]
8596 S:      Obsolete
8597 W:      http://w1.fi/hostap-driver.html
8598 F:      drivers/net/wireless/intersil/hostap/
8599
8600 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
8601 L:      [email protected]
8602 S:      Orphan
8603 F:      drivers/platform/x86/tc1100-wmi.c
8604
8605 HPET:   High Precision Event Timers driver
8606 M:      Clemens Ladisch <[email protected]>
8607 S:      Maintained
8608 F:      Documentation/timers/hpet.rst
8609 F:      drivers/char/hpet.c
8610 F:      include/linux/hpet.h
8611 F:      include/uapi/linux/hpet.h
8612
8613 HPET:   x86
8614 S:      Orphan
8615 F:      arch/x86/include/asm/hpet.h
8616 F:      arch/x86/kernel/hpet.c
8617
8618 HPFS FILESYSTEM
8619 M:      Mikulas Patocka <[email protected]>
8620 S:      Maintained
8621 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
8622 F:      fs/hpfs/
8623
8624 HSI SUBSYSTEM
8625 M:      Sebastian Reichel <[email protected]>
8626 S:      Maintained
8627 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
8628 F:      Documentation/ABI/testing/sysfs-bus-hsi
8629 F:      Documentation/driver-api/hsi.rst
8630 F:      drivers/hsi/
8631 F:      include/linux/hsi/
8632 F:      include/uapi/linux/hsi/
8633
8634 HSO 3G MODEM DRIVER
8635 L:      [email protected]
8636 S:      Orphan
8637 F:      drivers/net/usb/hso.c
8638
8639 HSR NETWORK PROTOCOL
8640 L:      [email protected]
8641 S:      Orphan
8642 F:      net/hsr/
8643
8644 HT16K33 LED CONTROLLER DRIVER
8645 M:      Robin van der Gracht <[email protected]>
8646 S:      Maintained
8647 F:      Documentation/devicetree/bindings/auxdisplay/holtek,ht16k33.yaml
8648 F:      drivers/auxdisplay/ht16k33.c
8649
8650 HTCPEN TOUCHSCREEN DRIVER
8651 M:      Pau Oliva Fora <[email protected]>
8652 L:      [email protected]
8653 S:      Maintained
8654 F:      drivers/input/touchscreen/htcpen.c
8655
8656 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
8657 M:      Lorenzo Bianconi <[email protected]>
8658 L:      [email protected]
8659 S:      Maintained
8660 W:      http://www.st.com/
8661 F:      Documentation/devicetree/bindings/iio/humidity/st,hts221.yaml
8662 F:      drivers/iio/humidity/hts221*
8663
8664 HUAWEI ETHERNET DRIVER
8665 L:      [email protected]
8666 S:      Orphan
8667 F:      Documentation/networking/device_drivers/ethernet/huawei/hinic.rst
8668 F:      drivers/net/ethernet/huawei/hinic/
8669
8670 HUGETLB FILESYSTEM
8671 M:      Mike Kravetz <[email protected]>
8672 L:      [email protected]
8673 S:      Maintained
8674 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
8675 F:      Documentation/admin-guide/mm/hugetlbpage.rst
8676 F:      Documentation/vm/hugetlbfs_reserv.rst
8677 F:      fs/hugetlbfs/
8678 F:      include/linux/hugetlb.h
8679 F:      mm/hugetlb.c
8680
8681 HVA ST MEDIA DRIVER
8682 M:      Jean-Christophe Trotin <[email protected]>
8683 L:      [email protected]
8684 S:      Supported
8685 W:      https://linuxtv.org
8686 T:      git git://linuxtv.org/media_tree.git
8687 F:      drivers/media/platform/sti/hva
8688
8689 HWPOISON MEMORY FAILURE HANDLING
8690 M:      Naoya Horiguchi <[email protected]>
8691 L:      [email protected]
8692 S:      Maintained
8693 F:      mm/hwpoison-inject.c
8694 F:      mm/memory-failure.c
8695
8696 HYCON HY46XX TOUCHSCREEN SUPPORT
8697 M:      Giulio Benetti <[email protected]>
8698 L:      [email protected]
8699 S:      Maintained
8700 F:      Documentation/devicetree/bindings/input/touchscreen/hycon,hy46xx.yaml
8701 F:      drivers/input/touchscreen/hycon-hy46xx.c
8702
8703 HYGON PROCESSOR SUPPORT
8704 M:      Pu Wen <[email protected]>
8705 L:      [email protected]
8706 S:      Maintained
8707 F:      arch/x86/kernel/cpu/hygon.c
8708
8709 HYNIX HI556 SENSOR DRIVER
8710 M:      Shawn Tu <[email protected]>
8711 L:      [email protected]
8712 S:      Maintained
8713 T:      git git://linuxtv.org/media_tree.git
8714 F:      drivers/media/i2c/hi556.c
8715
8716 HYNIX HI846 SENSOR DRIVER
8717 M:      Martin Kepplinger <[email protected]>
8718 L:      [email protected]
8719 S:      Maintained
8720 F:      drivers/media/i2c/hi846.c
8721
8722 Hyper-V/Azure CORE AND DRIVERS
8723 M:      "K. Y. Srinivasan" <[email protected]>
8724 M:      Haiyang Zhang <[email protected]>
8725 M:      Stephen Hemminger <[email protected]>
8726 M:      Wei Liu <[email protected]>
8727 M:      Dexuan Cui <[email protected]>
8728 L:      [email protected]
8729 S:      Supported
8730 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
8731 F:      Documentation/ABI/stable/sysfs-bus-vmbus
8732 F:      Documentation/ABI/testing/debugfs-hyperv
8733 F:      Documentation/networking/device_drivers/ethernet/microsoft/netvsc.rst
8734 F:      arch/arm64/hyperv
8735 F:      arch/arm64/include/asm/hyperv-tlfs.h
8736 F:      arch/arm64/include/asm/mshyperv.h
8737 F:      arch/x86/hyperv
8738 F:      arch/x86/include/asm/hyperv-tlfs.h
8739 F:      arch/x86/include/asm/mshyperv.h
8740 F:      arch/x86/include/asm/trace/hyperv.h
8741 F:      arch/x86/kernel/cpu/mshyperv.c
8742 F:      drivers/clocksource/hyperv_timer.c
8743 F:      drivers/hid/hid-hyperv.c
8744 F:      drivers/hv/
8745 F:      drivers/input/serio/hyperv-keyboard.c
8746 F:      drivers/iommu/hyperv-iommu.c
8747 F:      drivers/net/ethernet/microsoft/
8748 F:      drivers/net/hyperv/
8749 F:      drivers/pci/controller/pci-hyperv-intf.c
8750 F:      drivers/pci/controller/pci-hyperv.c
8751 F:      drivers/scsi/storvsc_drv.c
8752 F:      drivers/uio/uio_hv_generic.c
8753 F:      drivers/video/fbdev/hyperv_fb.c
8754 F:      include/asm-generic/hyperv-tlfs.h
8755 F:      include/asm-generic/mshyperv.h
8756 F:      include/clocksource/hyperv_timer.h
8757 F:      include/linux/hyperv.h
8758 F:      include/uapi/linux/hyperv.h
8759 F:      net/vmw_vsock/hyperv_transport.c
8760 F:      tools/hv/
8761
8762 HYPERBUS SUPPORT
8763 M:      Vignesh Raghavendra <[email protected]>
8764 L:      [email protected]
8765 S:      Supported
8766 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
8767 C:      irc://irc.oftc.net/mtd
8768 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
8769 F:      Documentation/devicetree/bindings/mtd/cypress,hyperflash.txt
8770 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.txt
8771 F:      drivers/mtd/hyperbus/
8772 F:      include/linux/mtd/hyperbus.h
8773
8774 HYPERVISOR VIRTUAL CONSOLE DRIVER
8775 L:      [email protected]
8776 S:      Odd Fixes
8777 F:      drivers/tty/hvc/
8778
8779 I2C ACPI SUPPORT
8780 M:      Mika Westerberg <[email protected]>
8781 L:      [email protected]
8782 L:      [email protected]
8783 S:      Maintained
8784 F:      drivers/i2c/i2c-core-acpi.c
8785
8786 I2C CONTROLLER DRIVER FOR NVIDIA GPU
8787 M:      Ajay Gupta <[email protected]>
8788 L:      [email protected]
8789 S:      Maintained
8790 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
8791 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
8792
8793 I2C MUXES
8794 M:      Peter Rosin <[email protected]>
8795 L:      [email protected]
8796 S:      Maintained
8797 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
8798 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
8799 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
8800 F:      Documentation/i2c/i2c-topology.rst
8801 F:      Documentation/i2c/muxes/
8802 F:      drivers/i2c/i2c-mux.c
8803 F:      drivers/i2c/muxes/
8804 F:      include/linux/i2c-mux.h
8805
8806 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
8807 M:      Gregory CLEMENT <[email protected]>
8808 L:      [email protected]
8809 S:      Maintained
8810 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
8811 F:      drivers/i2c/busses/i2c-mv64xxx.c
8812
8813 I2C OVER PARALLEL PORT
8814 M:      Jean Delvare <[email protected]>
8815 L:      [email protected]
8816 S:      Maintained
8817 F:      Documentation/i2c/busses/i2c-parport.rst
8818 F:      drivers/i2c/busses/i2c-parport.c
8819
8820 I2C SUBSYSTEM
8821 M:      Wolfram Sang <[email protected]>
8822 L:      [email protected]
8823 S:      Maintained
8824 W:      https://i2c.wiki.kernel.org/
8825 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8826 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8827 F:      Documentation/devicetree/bindings/i2c/i2c.txt
8828 F:      Documentation/i2c/
8829 F:      drivers/i2c/*
8830 F:      include/linux/i2c-dev.h
8831 F:      include/linux/i2c-smbus.h
8832 F:      include/linux/i2c.h
8833 F:      include/uapi/linux/i2c-*.h
8834 F:      include/uapi/linux/i2c.h
8835
8836 I2C SUBSYSTEM HOST DRIVERS
8837 L:      [email protected]
8838 S:      Odd Fixes
8839 W:      https://i2c.wiki.kernel.org/
8840 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8841 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8842 F:      Documentation/devicetree/bindings/i2c/
8843 F:      drivers/i2c/algos/
8844 F:      drivers/i2c/busses/
8845
8846 I2C-TAOS-EVM DRIVER
8847 M:      Jean Delvare <[email protected]>
8848 L:      [email protected]
8849 S:      Maintained
8850 F:      Documentation/i2c/busses/i2c-taos-evm.rst
8851 F:      drivers/i2c/busses/i2c-taos-evm.c
8852
8853 I2C-TINY-USB DRIVER
8854 M:      Till Harbaum <[email protected]>
8855 L:      [email protected]
8856 S:      Maintained
8857 W:      http://www.harbaum.org/till/i2c_tiny_usb
8858 F:      drivers/i2c/busses/i2c-tiny-usb.c
8859
8860 I2C/SMBUS CONTROLLER DRIVERS FOR PC
8861 M:      Jean Delvare <[email protected]>
8862 L:      [email protected]
8863 S:      Maintained
8864 F:      Documentation/i2c/busses/i2c-ali1535.rst
8865 F:      Documentation/i2c/busses/i2c-ali1563.rst
8866 F:      Documentation/i2c/busses/i2c-ali15x3.rst
8867 F:      Documentation/i2c/busses/i2c-amd756.rst
8868 F:      Documentation/i2c/busses/i2c-amd8111.rst
8869 F:      Documentation/i2c/busses/i2c-i801.rst
8870 F:      Documentation/i2c/busses/i2c-nforce2.rst
8871 F:      Documentation/i2c/busses/i2c-piix4.rst
8872 F:      Documentation/i2c/busses/i2c-sis5595.rst
8873 F:      Documentation/i2c/busses/i2c-sis630.rst
8874 F:      Documentation/i2c/busses/i2c-sis96x.rst
8875 F:      Documentation/i2c/busses/i2c-via.rst
8876 F:      Documentation/i2c/busses/i2c-viapro.rst
8877 F:      drivers/i2c/busses/i2c-ali1535.c
8878 F:      drivers/i2c/busses/i2c-ali1563.c
8879 F:      drivers/i2c/busses/i2c-ali15x3.c
8880 F:      drivers/i2c/busses/i2c-amd756-s4882.c
8881 F:      drivers/i2c/busses/i2c-amd756.c
8882 F:      drivers/i2c/busses/i2c-amd8111.c
8883 F:      drivers/i2c/busses/i2c-i801.c
8884 F:      drivers/i2c/busses/i2c-isch.c
8885 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
8886 F:      drivers/i2c/busses/i2c-nforce2.c
8887 F:      drivers/i2c/busses/i2c-piix4.c
8888 F:      drivers/i2c/busses/i2c-sis5595.c
8889 F:      drivers/i2c/busses/i2c-sis630.c
8890 F:      drivers/i2c/busses/i2c-sis96x.c
8891 F:      drivers/i2c/busses/i2c-via.c
8892 F:      drivers/i2c/busses/i2c-viapro.c
8893
8894 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
8895 M:      Hans de Goede <[email protected]>
8896 L:      [email protected]
8897 S:      Maintained
8898 F:      drivers/i2c/busses/i2c-cht-wc.c
8899
8900 I2C/SMBUS ISMT DRIVER
8901 M:      Seth Heasley <[email protected]>
8902 M:      Neil Horman <[email protected]>
8903 L:      [email protected]
8904 F:      Documentation/i2c/busses/i2c-ismt.rst
8905 F:      drivers/i2c/busses/i2c-ismt.c
8906
8907 I2C/SMBUS STUB DRIVER
8908 M:      Jean Delvare <[email protected]>
8909 L:      [email protected]
8910 S:      Maintained
8911 F:      drivers/i2c/i2c-stub.c
8912
8913 I3C DRIVER FOR CADENCE I3C MASTER IP
8914 M:      Przemysław Gaj <[email protected]>
8915 S:      Maintained
8916 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.txt
8917 F:      drivers/i3c/master/i3c-master-cdns.c
8918
8919 I3C DRIVER FOR SYNOPSYS DESIGNWARE
8920 M:      Vitor Soares <[email protected]>
8921 S:      Maintained
8922 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
8923 F:      drivers/i3c/master/dw*
8924
8925 I3C SUBSYSTEM
8926 M:      Alexandre Belloni <[email protected]>
8927 L:      [email protected] (moderated for non-subscribers)
8928 S:      Maintained
8929 C:      irc://chat.freenode.net/linux-i3c
8930 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
8931 F:      Documentation/ABI/testing/sysfs-bus-i3c
8932 F:      Documentation/devicetree/bindings/i3c/
8933 F:      Documentation/driver-api/i3c
8934 F:      drivers/i3c/
8935 F:      include/linux/i3c/
8936
8937 IA64 (Itanium) PLATFORM
8938 L:      [email protected]
8939 S:      Orphan
8940 F:      Documentation/ia64/
8941 F:      arch/ia64/
8942
8943 IBM Power 842 compression accelerator
8944 M:      Haren Myneni <[email protected]>
8945 S:      Supported
8946 F:      crypto/842.c
8947 F:      drivers/crypto/nx/Kconfig
8948 F:      drivers/crypto/nx/Makefile
8949 F:      drivers/crypto/nx/nx-842*
8950 F:      include/linux/sw842.h
8951 F:      lib/842/
8952
8953 IBM Power in-Nest Crypto Acceleration
8954 M:      Breno Leitão <[email protected]>
8955 M:      Nayna Jain <[email protected]>
8956 M:      Paulo Flabiano Smorigo <[email protected]>
8957 L:      [email protected]
8958 S:      Supported
8959 F:      drivers/crypto/nx/Kconfig
8960 F:      drivers/crypto/nx/Makefile
8961 F:      drivers/crypto/nx/nx-aes*
8962 F:      drivers/crypto/nx/nx-sha*
8963 F:      drivers/crypto/nx/nx.*
8964 F:      drivers/crypto/nx/nx_csbcpb.h
8965 F:      drivers/crypto/nx/nx_debugfs.c
8966
8967 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
8968 M:      Tyrel Datwyler <[email protected]>
8969 L:      [email protected]
8970 L:      [email protected]
8971 S:      Supported
8972 F:      drivers/pci/hotplug/rpadlpar*
8973
8974 IBM Power Linux RAID adapter
8975 M:      Brian King <[email protected]>
8976 S:      Supported
8977 F:      drivers/scsi/ipr.*
8978
8979 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
8980 M:      Tyrel Datwyler <[email protected]>
8981 L:      [email protected]
8982 L:      [email protected]
8983 S:      Supported
8984 F:      drivers/pci/hotplug/rpaphp*
8985
8986 IBM Power SRIOV Virtual NIC Device Driver
8987 M:      Dany Madden <[email protected]>
8988 M:      Sukadev Bhattiprolu <[email protected]>
8989 R:      Thomas Falcon <[email protected]>
8990 L:      [email protected]
8991 S:      Supported
8992 F:      drivers/net/ethernet/ibm/ibmvnic.*
8993
8994 IBM Power Virtual Accelerator Switchboard
8995 M:      Sukadev Bhattiprolu <[email protected]>
8996 L:      [email protected]
8997 S:      Supported
8998 F:      arch/powerpc/include/asm/vas.h
8999 F:      arch/powerpc/platforms/powernv/copy-paste.h
9000 F:      arch/powerpc/platforms/powernv/vas*
9001
9002 IBM Power Virtual Ethernet Device Driver
9003 M:      Cristobal Forno <[email protected]>
9004 L:      [email protected]
9005 S:      Supported
9006 F:      drivers/net/ethernet/ibm/ibmveth.*
9007
9008 IBM Power Virtual FC Device Drivers
9009 M:      Tyrel Datwyler <[email protected]>
9010 L:      [email protected]
9011 S:      Supported
9012 F:      drivers/scsi/ibmvscsi/ibmvfc*
9013
9014 IBM Power Virtual Management Channel Driver
9015 M:      Brad Warrum <[email protected]>
9016 M:      Ritu Agarwal <[email protected]>
9017 S:      Supported
9018 F:      drivers/misc/ibmvmc.*
9019
9020 IBM Power Virtual SCSI Device Drivers
9021 M:      Tyrel Datwyler <[email protected]>
9022 L:      [email protected]
9023 S:      Supported
9024 F:      drivers/scsi/ibmvscsi/ibmvscsi*
9025 F:      include/scsi/viosrp.h
9026
9027 IBM Power Virtual SCSI Device Target Driver
9028 M:      Michael Cyr <[email protected]>
9029 L:      [email protected]
9030 L:      [email protected]
9031 S:      Supported
9032 F:      drivers/scsi/ibmvscsi_tgt/
9033
9034 IBM Power VMX Cryptographic instructions
9035 M:      Breno Leitão <[email protected]>
9036 M:      Nayna Jain <[email protected]>
9037 M:      Paulo Flabiano Smorigo <[email protected]>
9038 L:      [email protected]
9039 S:      Supported
9040 F:      drivers/crypto/vmx/Kconfig
9041 F:      drivers/crypto/vmx/Makefile
9042 F:      drivers/crypto/vmx/aes*
9043 F:      drivers/crypto/vmx/ghash*
9044 F:      drivers/crypto/vmx/ppc-xlate.pl
9045 F:      drivers/crypto/vmx/vmx.c
9046
9047 IBM ServeRAID RAID DRIVER
9048 S:      Orphan
9049 F:      drivers/scsi/ips.*
9050
9051 ICH LPC AND GPIO DRIVER
9052 M:      Peter Tyser <[email protected]>
9053 S:      Maintained
9054 F:      drivers/gpio/gpio-ich.c
9055 F:      drivers/mfd/lpc_ich.c
9056
9057 ICY I2C DRIVER
9058 M:      Max Staudt <[email protected]>
9059 L:      [email protected]
9060 S:      Maintained
9061 F:      drivers/i2c/busses/i2c-icy.c
9062
9063 IDEAPAD LAPTOP EXTRAS DRIVER
9064 M:      Ike Panhc <[email protected]>
9065 L:      [email protected]
9066 S:      Maintained
9067 W:      http://launchpad.net/ideapad-laptop
9068 F:      drivers/platform/x86/ideapad-laptop.c
9069
9070 IDEAPAD LAPTOP SLIDEBAR DRIVER
9071 M:      Andrey Moiseev <[email protected]>
9072 L:      [email protected]
9073 S:      Maintained
9074 W:      https://github.com/o2genum/ideapad-slidebar
9075 F:      drivers/input/misc/ideapad_slidebar.c
9076
9077 IDT VersaClock 5 CLOCK DRIVER
9078 M:      Luca Ceresoli <[email protected]>
9079 S:      Maintained
9080 F:      Documentation/devicetree/bindings/clock/idt,versaclock5.yaml
9081 F:      drivers/clk/clk-versaclock5.c
9082
9083 IEEE 802.15.4 SUBSYSTEM
9084 M:      Alexander Aring <[email protected]>
9085 M:      Stefan Schmidt <[email protected]>
9086 L:      [email protected]
9087 S:      Maintained
9088 W:      https://linux-wpan.org/
9089 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
9090 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
9091 F:      Documentation/networking/ieee802154.rst
9092 F:      drivers/net/ieee802154/
9093 F:      include/linux/ieee802154.h
9094 F:      include/linux/nl802154.h
9095 F:      include/net/af_ieee802154.h
9096 F:      include/net/cfg802154.h
9097 F:      include/net/ieee802154_netdev.h
9098 F:      include/net/mac802154.h
9099 F:      include/net/nl802154.h
9100 F:      net/ieee802154/
9101 F:      net/mac802154/
9102
9103 IFE PROTOCOL
9104 M:      Yotam Gigi <[email protected]>
9105 M:      Jamal Hadi Salim <[email protected]>
9106 F:      include/net/ife.h
9107 F:      include/uapi/linux/ife.h
9108 F:      net/ife
9109
9110 IGORPLUG-USB IR RECEIVER
9111 M:      Sean Young <[email protected]>
9112 L:      [email protected]
9113 S:      Maintained
9114 F:      drivers/media/rc/igorplugusb.c
9115
9116 IGUANAWORKS USB IR TRANSCEIVER
9117 M:      Sean Young <[email protected]>
9118 L:      [email protected]
9119 S:      Maintained
9120 F:      drivers/media/rc/iguanair.c
9121
9122 IIO DIGITAL POTENTIOMETER DAC
9123 M:      Peter Rosin <[email protected]>
9124 L:      [email protected]
9125 S:      Maintained
9126 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
9127 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.yaml
9128 F:      drivers/iio/dac/dpot-dac.c
9129
9130 IIO ENVELOPE DETECTOR
9131 M:      Peter Rosin <[email protected]>
9132 L:      [email protected]
9133 S:      Maintained
9134 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
9135 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.yaml
9136 F:      drivers/iio/adc/envelope-detector.c
9137
9138 IIO MULTIPLEXER
9139 M:      Peter Rosin <[email protected]>
9140 L:      [email protected]
9141 S:      Maintained
9142 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.yaml
9143 F:      drivers/iio/multiplexer/iio-mux.c
9144
9145 IIO SCMI BASED DRIVER
9146 M:      Jyoti Bhayana <[email protected]>
9147 L:      [email protected]
9148 S:      Maintained
9149 F:      drivers/iio/common/scmi_sensors/scmi_iio.c
9150
9151 IIO SUBSYSTEM AND DRIVERS
9152 M:      Jonathan Cameron <[email protected]>
9153 R:      Lars-Peter Clausen <[email protected]>
9154 L:      [email protected]
9155 S:      Maintained
9156 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
9157 F:      Documentation/ABI/testing/configfs-iio*
9158 F:      Documentation/ABI/testing/sysfs-bus-iio*
9159 F:      Documentation/devicetree/bindings/iio/
9160 F:      drivers/iio/
9161 F:      drivers/staging/iio/
9162 F:      include/linux/iio/
9163 F:      tools/iio/
9164
9165 IIO UNIT CONVERTER
9166 M:      Peter Rosin <[email protected]>
9167 L:      [email protected]
9168 S:      Maintained
9169 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.yaml
9170 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.yaml
9171 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.yaml
9172 F:      drivers/iio/afe/iio-rescale.c
9173
9174 IKANOS/ADI EAGLE ADSL USB DRIVER
9175 M:      Matthieu Castet <[email protected]>
9176 M:      Stanislaw Gruszka <[email protected]>
9177 S:      Maintained
9178 F:      drivers/usb/atm/ueagle-atm.c
9179
9180 IMGTEC ASCII LCD DRIVER
9181 M:      Paul Burton <[email protected]>
9182 S:      Maintained
9183 F:      Documentation/devicetree/bindings/auxdisplay/img,ascii-lcd.yaml
9184 F:      drivers/auxdisplay/img-ascii-lcd.c
9185
9186 IMGTEC IR DECODER DRIVER
9187 S:      Orphan
9188 F:      drivers/media/rc/img-ir/
9189
9190 IMON SOUNDGRAPH USB IR RECEIVER
9191 M:      Sean Young <[email protected]>
9192 L:      [email protected]
9193 S:      Maintained
9194 F:      drivers/media/rc/imon.c
9195 F:      drivers/media/rc/imon_raw.c
9196
9197 IMS TWINTURBO FRAMEBUFFER DRIVER
9198 L:      [email protected]
9199 S:      Orphan
9200 F:      drivers/video/fbdev/imsttfb.c
9201
9202 INA209 HARDWARE MONITOR DRIVER
9203 M:      Guenter Roeck <[email protected]>
9204 L:      [email protected]
9205 S:      Maintained
9206 F:      Documentation/devicetree/bindings/hwmon/ti,ina2xx.yaml
9207 F:      Documentation/hwmon/ina209.rst
9208 F:      drivers/hwmon/ina209.c
9209
9210 INA2XX HARDWARE MONITOR DRIVER
9211 M:      Guenter Roeck <[email protected]>
9212 L:      [email protected]
9213 S:      Maintained
9214 F:      Documentation/hwmon/ina2xx.rst
9215 F:      drivers/hwmon/ina2xx.c
9216 F:      include/linux/platform_data/ina2xx.h
9217
9218 INDUSTRY PACK SUBSYSTEM (IPACK)
9219 M:      Samuel Iglesias Gonsalvez <[email protected]>
9220 M:      Jens Taprogge <[email protected]>
9221 M:      Greg Kroah-Hartman <[email protected]>
9222 L:      [email protected]
9223 S:      Maintained
9224 W:      http://industrypack.sourceforge.net
9225 F:      drivers/ipack/
9226
9227 INFINEON DPS310 Driver
9228 M:      Eddie James <[email protected]>
9229 L:      [email protected]
9230 S:      Maintained
9231 F:      drivers/iio/pressure/dps310.c
9232
9233 INFINIBAND SUBSYSTEM
9234 M:      Doug Ledford <[email protected]>
9235 M:      Jason Gunthorpe <[email protected]>
9236 L:      [email protected]
9237 S:      Supported
9238 W:      https://github.com/linux-rdma/rdma-core
9239 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9240 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
9241 F:      Documentation/devicetree/bindings/infiniband/
9242 F:      Documentation/infiniband/
9243 F:      drivers/infiniband/
9244 F:      include/rdma/
9245 F:      include/trace/events/ib_mad.h
9246 F:      include/trace/events/ib_umad.h
9247 F:      include/uapi/linux/if_infiniband.h
9248 F:      include/uapi/rdma/
9249 F:      samples/bpf/ibumad_kern.c
9250 F:      samples/bpf/ibumad_user.c
9251
9252 INGENIC JZ4780 NAND DRIVER
9253 M:      Harvey Hunt <[email protected]>
9254 L:      [email protected]
9255 L:      [email protected]
9256 S:      Maintained
9257 F:      drivers/mtd/nand/raw/ingenic/
9258
9259 INGENIC JZ47xx SoCs
9260 M:      Paul Cercueil <[email protected]>
9261 L:      [email protected]
9262 S:      Maintained
9263 F:      arch/mips/boot/dts/ingenic/
9264 F:      arch/mips/generic/board-ingenic.c
9265 F:      arch/mips/include/asm/mach-ingenic/
9266 F:      arch/mips/ingenic/Kconfig
9267 F:      drivers/clk/ingenic/
9268 F:      drivers/dma/dma-jz4780.c
9269 F:      drivers/gpu/drm/ingenic/
9270 F:      drivers/i2c/busses/i2c-jz4780.c
9271 F:      drivers/iio/adc/ingenic-adc.c
9272 F:      drivers/irqchip/irq-ingenic.c
9273 F:      drivers/memory/jz4780-nemc.c
9274 F:      drivers/mmc/host/jz4740_mmc.c
9275 F:      drivers/mtd/nand/raw/ingenic/
9276 F:      drivers/pinctrl/pinctrl-ingenic.c
9277 F:      drivers/power/supply/ingenic-battery.c
9278 F:      drivers/pwm/pwm-jz4740.c
9279 F:      drivers/remoteproc/ingenic_rproc.c
9280 F:      drivers/rtc/rtc-jz4740.c
9281 F:      drivers/tty/serial/8250/8250_ingenic.c
9282 F:      drivers/usb/musb/jz4740.c
9283 F:      drivers/watchdog/jz4740_wdt.c
9284 F:      include/dt-bindings/iio/adc/ingenic,adc.h
9285 F:      include/linux/mfd/ingenic-tcu.h
9286 F:      sound/soc/codecs/jz47*
9287 F:      sound/soc/jz4740/
9288
9289 INOTIFY
9290 M:      Jan Kara <[email protected]>
9291 R:      Amir Goldstein <[email protected]>
9292 L:      [email protected]
9293 S:      Maintained
9294 F:      Documentation/filesystems/inotify.rst
9295 F:      fs/notify/inotify/
9296 F:      include/linux/inotify.h
9297 F:      include/uapi/linux/inotify.h
9298
9299 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
9300 M:      Dmitry Torokhov <[email protected]>
9301 L:      [email protected]
9302 S:      Maintained
9303 Q:      http://patchwork.kernel.org/project/linux-input/list/
9304 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
9305 F:      Documentation/devicetree/bindings/input/
9306 F:      Documentation/devicetree/bindings/serio/
9307 F:      Documentation/input/
9308 F:      drivers/input/
9309 F:      include/linux/input.h
9310 F:      include/linux/input/
9311 F:      include/uapi/linux/input-event-codes.h
9312 F:      include/uapi/linux/input.h
9313
9314 INPUT MULTITOUCH (MT) PROTOCOL
9315 M:      Henrik Rydberg <[email protected]>
9316 L:      [email protected]
9317 S:      Odd fixes
9318 F:      Documentation/input/multi-touch-protocol.rst
9319 F:      drivers/input/input-mt.c
9320 K:      \b(ABS|SYN)_MT_
9321
9322 INSIDE SECURE CRYPTO DRIVER
9323 M:      Antoine Tenart <[email protected]>
9324 L:      [email protected]
9325 S:      Maintained
9326 F:      drivers/crypto/inside-secure/
9327
9328 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
9329 M:      Mimi Zohar <[email protected]>
9330 M:      Dmitry Kasatkin <[email protected]>
9331 L:      [email protected]
9332 S:      Supported
9333 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
9334 F:      security/integrity/ima/
9335
9336 INTEL 810/815 FRAMEBUFFER DRIVER
9337 M:      Antonino Daplas <[email protected]>
9338 L:      [email protected]
9339 S:      Maintained
9340 F:      drivers/video/fbdev/i810/
9341
9342 INTEL ASoC DRIVERS
9343 M:      Cezary Rojewski <[email protected]>
9344 M:      Pierre-Louis Bossart <[email protected]>
9345 M:      Liam Girdwood <[email protected]>
9346 M:      Jie Yang <[email protected]>
9347 L:      [email protected] (moderated for non-subscribers)
9348 S:      Supported
9349 F:      sound/soc/intel/
9350
9351 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
9352 M:      Hans de Goede <[email protected]>
9353 L:      [email protected]
9354 S:      Maintained
9355 F:      drivers/platform/x86/intel/atomisp2/pm.c
9356
9357 INTEL ATOMISP2 LED DRIVER
9358 M:      Hans de Goede <[email protected]>
9359 L:      [email protected]
9360 S:      Maintained
9361 F:      drivers/platform/x86/intel/atomisp2/led.c
9362
9363 INTEL BIOS SAR INT1092 DRIVER
9364 M:      Shravan Sudhakar <[email protected]>
9365 M:      Intel Corporation <[email protected]>
9366 L:      [email protected]
9367 S:      Maintained
9368 F:      drivers/platform/x86/intel/int1092/
9369
9370 INTEL BROXTON PMC DRIVER
9371 M:      Mika Westerberg <[email protected]>
9372 M:      Zha Qipeng <[email protected]>
9373 S:      Maintained
9374 F:      drivers/mfd/intel_pmc_bxt.c
9375 F:      include/linux/mfd/intel_pmc_bxt.h
9376
9377 INTEL C600 SERIES SAS CONTROLLER DRIVER
9378 M:      Artur Paszkiewicz <[email protected]>
9379 L:      [email protected]
9380 S:      Supported
9381 T:      git git://git.code.sf.net/p/intel-sas/isci
9382 F:      drivers/scsi/isci/
9383
9384 INTEL CPU family model numbers
9385 M:      Tony Luck <[email protected]>
9386 M:      [email protected]
9387 L:      [email protected]
9388 S:      Supported
9389 F:      arch/x86/include/asm/intel-family.h
9390
9391 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
9392 M:      Jani Nikula <[email protected]>
9393 M:      Joonas Lahtinen <[email protected]>
9394 M:      Rodrigo Vivi <[email protected]>
9395 L:      [email protected]
9396 S:      Supported
9397 W:      https://01.org/linuxgraphics/
9398 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
9399 B:      https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
9400 C:      irc://irc.oftc.net/intel-gfx
9401 T:      git git://anongit.freedesktop.org/drm-intel
9402 F:      Documentation/gpu/i915.rst
9403 F:      drivers/gpu/drm/i915/
9404 F:      include/drm/i915*
9405 F:      include/uapi/drm/i915_drm.h
9406
9407 INTEL ETHERNET DRIVERS
9408 M:      Jesse Brandeburg <[email protected]>
9409 M:      Tony Nguyen <[email protected]>
9410 L:      [email protected] (moderated for non-subscribers)
9411 S:      Supported
9412 W:      http://www.intel.com/support/feedback.htm
9413 W:      http://e1000.sourceforge.net/
9414 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
9415 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queue.git
9416 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue.git
9417 F:      Documentation/networking/device_drivers/ethernet/intel/
9418 F:      drivers/net/ethernet/intel/
9419 F:      drivers/net/ethernet/intel/*/
9420 F:      include/linux/avf/virtchnl.h
9421 F:      include/linux/net/intel/iidc.h
9422
9423 INTEL ETHERNET PROTOCOL DRIVER FOR RDMA
9424 M:      Mustafa Ismail <[email protected]>
9425 M:      Shiraz Saleem <[email protected]>
9426 L:      [email protected]
9427 S:      Supported
9428 F:      drivers/infiniband/hw/irdma/
9429 F:      include/uapi/rdma/irdma-abi.h
9430
9431 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
9432 M:      Maik Broemme <[email protected]>
9433 L:      [email protected]
9434 S:      Maintained
9435 F:      Documentation/fb/intelfb.rst
9436 F:      drivers/video/fbdev/intelfb/
9437
9438 INTEL GPIO DRIVERS
9439 M:      Andy Shevchenko <[email protected]>
9440 L:      [email protected]
9441 S:      Maintained
9442 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9443 F:      drivers/gpio/gpio-ich.c
9444 F:      drivers/gpio/gpio-merrifield.c
9445 F:      drivers/gpio/gpio-ml-ioh.c
9446 F:      drivers/gpio/gpio-pch.c
9447 F:      drivers/gpio/gpio-sch.c
9448 F:      drivers/gpio/gpio-sodaville.c
9449
9450 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
9451 M:      Zhenyu Wang <[email protected]>
9452 M:      Zhi Wang <[email protected]>
9453 L:      [email protected]
9454 L:      [email protected]
9455 S:      Supported
9456 W:      https://01.org/igvt-g
9457 T:      git https://github.com/intel/gvt-linux.git
9458 F:      drivers/gpu/drm/i915/gvt/
9459
9460 INTEL HID EVENT DRIVER
9461 M:      Alex Hung <[email protected]>
9462 L:      [email protected]
9463 S:      Maintained
9464 F:      drivers/platform/x86/intel/hid.c
9465
9466 INTEL I/OAT DMA DRIVER
9467 M:      Dave Jiang <[email protected]>
9468 R:      Dan Williams <[email protected]>
9469 L:      [email protected]
9470 S:      Supported
9471 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
9472 F:      drivers/dma/ioat*
9473
9474 INTEL IADX DRIVER
9475 M:      Dave Jiang <[email protected]>
9476 L:      [email protected]
9477 S:      Supported
9478 F:      drivers/dma/idxd/*
9479 F:      include/uapi/linux/idxd.h
9480
9481 INTEL IDLE DRIVER
9482 M:      Jacob Pan <[email protected]>
9483 M:      Len Brown <[email protected]>
9484 L:      [email protected]
9485 S:      Supported
9486 B:      https://bugzilla.kernel.org
9487 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
9488 F:      drivers/idle/intel_idle.c
9489
9490 INTEL INTEGRATED SENSOR HUB DRIVER
9491 M:      Srinivas Pandruvada <[email protected]>
9492 M:      Jiri Kosina <[email protected]>
9493 L:      [email protected]
9494 S:      Maintained
9495 F:      drivers/hid/intel-ish-hid/
9496
9497 INTEL IOMMU (VT-d)
9498 M:      David Woodhouse <[email protected]>
9499 M:      Lu Baolu <[email protected]>
9500 L:      [email protected]
9501 S:      Supported
9502 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9503 F:      drivers/iommu/intel/
9504 F:      include/linux/intel-iommu.h
9505 F:      include/linux/intel-svm.h
9506
9507 INTEL IOP-ADMA DMA DRIVER
9508 R:      Dan Williams <[email protected]>
9509 S:      Odd fixes
9510 F:      drivers/dma/iop-adma.c
9511
9512 INTEL IPU3 CSI-2 CIO2 DRIVER
9513 M:      Yong Zhi <[email protected]>
9514 M:      Sakari Ailus <[email protected]>
9515 M:      Bingbu Cao <[email protected]>
9516 M:      Dan Scally <[email protected]>
9517 R:      Tianshu Qiu <[email protected]>
9518 L:      [email protected]
9519 S:      Maintained
9520 T:      git git://linuxtv.org/media_tree.git
9521 F:      Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
9522 F:      drivers/media/pci/intel/ipu3/
9523
9524 INTEL IPU3 CSI-2 IMGU DRIVER
9525 M:      Sakari Ailus <[email protected]>
9526 R:      Bingbu Cao <[email protected]>
9527 R:      Tianshu Qiu <[email protected]>
9528 L:      [email protected]
9529 S:      Maintained
9530 F:      Documentation/admin-guide/media/ipu3.rst
9531 F:      Documentation/admin-guide/media/ipu3_rcb.svg
9532 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
9533 F:      drivers/staging/media/ipu3/
9534
9535 INTEL IXP4XX CRYPTO SUPPORT
9536 M:      Corentin Labbe <[email protected]>
9537 L:      [email protected]
9538 S:      Maintained
9539 F:      drivers/crypto/ixp4xx_crypto.c
9540
9541 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
9542 M:      Krzysztof Halasa <[email protected]>
9543 S:      Maintained
9544 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
9545 F:      drivers/net/wan/ixp4xx_hss.c
9546 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
9547 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
9548 F:      include/linux/soc/ixp4xx/npe.h
9549 F:      include/linux/soc/ixp4xx/qmgr.h
9550
9551 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
9552 M:      Deepak Saxena <[email protected]>
9553 S:      Maintained
9554 F:      Documentation/devicetree/bindings/display/intel,ixp46x-rng.yaml
9555 F:      drivers/char/hw_random/ixp4xx-rng.c
9556
9557 INTEL KEEM BAY DRM DRIVER
9558 M:      Anitha Chrisanthus <[email protected]>
9559 M:      Edmund Dea <[email protected]>
9560 S:      Maintained
9561 F:      Documentation/devicetree/bindings/display/intel,kmb_display.yaml
9562 F:      drivers/gpu/drm/kmb/
9563
9564 INTEL KEEM BAY OCS AES/SM4 CRYPTO DRIVER
9565 M:      Daniele Alessandrelli <[email protected]>
9566 S:      Maintained
9567 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-aes.yaml
9568 F:      drivers/crypto/keembay/Kconfig
9569 F:      drivers/crypto/keembay/Makefile
9570 F:      drivers/crypto/keembay/keembay-ocs-aes-core.c
9571 F:      drivers/crypto/keembay/ocs-aes.c
9572 F:      drivers/crypto/keembay/ocs-aes.h
9573
9574 INTEL KEEM BAY OCS ECC CRYPTO DRIVER
9575 M:      Daniele Alessandrelli <[email protected]>
9576 M:      Prabhjot Khurana <[email protected]>
9577 M:      Mark Gross <[email protected]>
9578 S:      Maintained
9579 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-ecc.yaml
9580 F:      drivers/crypto/keembay/Kconfig
9581 F:      drivers/crypto/keembay/Makefile
9582 F:      drivers/crypto/keembay/keembay-ocs-ecc.c
9583 F:      drivers/crypto/keembay/ocs-ecc-curve-defs.h
9584
9585 INTEL KEEM BAY OCS HCU CRYPTO DRIVER
9586 M:      Daniele Alessandrelli <[email protected]>
9587 M:      Declan Murphy <[email protected]>
9588 S:      Maintained
9589 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-hcu.yaml
9590 F:      drivers/crypto/keembay/Kconfig
9591 F:      drivers/crypto/keembay/Makefile
9592 F:      drivers/crypto/keembay/keembay-ocs-hcu-core.c
9593 F:      drivers/crypto/keembay/ocs-hcu.c
9594 F:      drivers/crypto/keembay/ocs-hcu.h
9595
9596 INTEL MANAGEMENT ENGINE (mei)
9597 M:      Tomas Winkler <[email protected]>
9598 L:      [email protected]
9599 S:      Supported
9600 F:      Documentation/driver-api/mei/*
9601 F:      drivers/misc/mei/
9602 F:      drivers/watchdog/mei_wdt.c
9603 F:      include/linux/mei_cl_bus.h
9604 F:      include/uapi/linux/mei.h
9605 F:      samples/mei/*
9606
9607 INTEL MAX 10 BMC MFD DRIVER
9608 M:      Xu Yilun <[email protected]>
9609 R:      Tom Rix <[email protected]>
9610 S:      Maintained
9611 F:      Documentation/ABI/testing/sysfs-driver-intel-m10-bmc
9612 F:      Documentation/hwmon/intel-m10-bmc-hwmon.rst
9613 F:      drivers/hwmon/intel-m10-bmc-hwmon.c
9614 F:      drivers/mfd/intel-m10-bmc.c
9615 F:      include/linux/mfd/intel-m10-bmc.h
9616
9617 INTEL MENLOW THERMAL DRIVER
9618 M:      Sujith Thomas <[email protected]>
9619 L:      [email protected]
9620 S:      Supported
9621 W:      https://01.org/linux-acpi
9622 F:      drivers/thermal/intel/intel_menlow.c
9623
9624 INTEL P-Unit IPC DRIVER
9625 M:      Zha Qipeng <[email protected]>
9626 L:      [email protected]
9627 S:      Maintained
9628 F:      arch/x86/include/asm/intel_punit_ipc.h
9629 F:      drivers/platform/x86/intel/punit_ipc.c
9630
9631 INTEL PMC CORE DRIVER
9632 M:      Rajneesh Bhardwaj <[email protected]>
9633 M:      David E Box <[email protected]>
9634 L:      [email protected]
9635 S:      Maintained
9636 F:      Documentation/ABI/testing/sysfs-platform-intel-pmc
9637 F:      drivers/platform/x86/intel/pmc/
9638
9639 INTEL PMIC GPIO DRIVERS
9640 M:      Andy Shevchenko <[email protected]>
9641 S:      Maintained
9642 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9643 F:      drivers/gpio/gpio-*cove.c
9644
9645 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
9646 M:      Andy Shevchenko <[email protected]>
9647 S:      Maintained
9648 F:      drivers/mfd/intel_soc_pmic*
9649 F:      include/linux/mfd/intel_soc_pmic*
9650
9651 INTEL PMT DRIVER
9652 M:      "David E. Box" <[email protected]>
9653 S:      Maintained
9654 F:      drivers/mfd/intel_pmt.c
9655 F:      drivers/platform/x86/intel/pmt/
9656
9657 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
9658 M:      Stanislav Yakovlev <[email protected]>
9659 L:      [email protected]
9660 S:      Maintained
9661 F:      Documentation/networking/device_drivers/wifi/intel/ipw2100.rst
9662 F:      Documentation/networking/device_drivers/wifi/intel/ipw2200.rst
9663 F:      drivers/net/wireless/intel/ipw2x00/
9664
9665 INTEL PSTATE DRIVER
9666 M:      Srinivas Pandruvada <[email protected]>
9667 M:      Len Brown <[email protected]>
9668 L:      [email protected]
9669 S:      Supported
9670 F:      drivers/cpufreq/intel_pstate.c
9671
9672 INTEL QUADRATURE ENCODER PERIPHERAL DRIVER
9673 M:      Jarkko Nikula <[email protected]>
9674 L:      [email protected]
9675 F:      drivers/counter/intel-qep.c
9676
9677 INTEL SCU DRIVERS
9678 M:      Mika Westerberg <[email protected]>
9679 S:      Maintained
9680 F:      arch/x86/include/asm/intel_scu_ipc.h
9681 F:      drivers/platform/x86/intel_scu_*
9682
9683 INTEL SKYLAKE INT3472 ACPI DEVICE DRIVER
9684 M:      Daniel Scally <[email protected]>
9685 S:      Maintained
9686 F:      drivers/platform/x86/intel/int3472/
9687
9688 INTEL SPEED SELECT TECHNOLOGY
9689 M:      Srinivas Pandruvada <[email protected]>
9690 L:      [email protected]
9691 S:      Maintained
9692 F:      drivers/platform/x86/intel/speed_select_if/
9693 F:      include/uapi/linux/isst_if.h
9694 F:      tools/power/x86/intel-speed-select/
9695
9696 INTEL STRATIX10 FIRMWARE DRIVERS
9697 M:      Dinh Nguyen <[email protected]>
9698 L:      [email protected]
9699 S:      Maintained
9700 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
9701 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
9702 F:      drivers/firmware/stratix10-rsu.c
9703 F:      drivers/firmware/stratix10-svc.c
9704 F:      include/linux/firmware/intel/stratix10-smc.h
9705 F:      include/linux/firmware/intel/stratix10-svc-client.h
9706
9707 INTEL TELEMETRY DRIVER
9708 M:      Rajneesh Bhardwaj <[email protected]>
9709 M:      "David E. Box" <[email protected]>
9710 L:      [email protected]
9711 S:      Maintained
9712 F:      arch/x86/include/asm/intel_telemetry.h
9713 F:      drivers/platform/x86/intel/telemetry/
9714
9715 INTEL UNCORE FREQUENCY CONTROL
9716 M:      Srinivas Pandruvada <[email protected]>
9717 L:      [email protected]
9718 S:      Maintained
9719 F:      drivers/platform/x86/intel/uncore-frequency.c
9720
9721 INTEL VIRTUAL BUTTON DRIVER
9722 M:      AceLan Kao <[email protected]>
9723 L:      [email protected]
9724 S:      Maintained
9725 F:      drivers/platform/x86/intel/vbtn.c
9726
9727 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
9728 M:      Stanislaw Gruszka <[email protected]>
9729 L:      [email protected]
9730 S:      Supported
9731 F:      drivers/net/wireless/intel/iwlegacy/
9732
9733 INTEL WIRELESS WIFI LINK (iwlwifi)
9734 M:      Luca Coelho <[email protected]>
9735 L:      [email protected]
9736 S:      Supported
9737 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
9738 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
9739 F:      drivers/net/wireless/intel/iwlwifi/
9740
9741 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
9742 M:      Jithu Joseph <[email protected]>
9743 R:      Maurice Ma <[email protected]>
9744 S:      Maintained
9745 W:      https://slimbootloader.github.io/security/firmware-update.html
9746 F:      drivers/platform/x86/intel/wmi/sbl-fw-update.c
9747
9748 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
9749 L:      [email protected]
9750 S:      Maintained
9751 F:      drivers/platform/x86/intel/wmi/thunderbolt.c
9752
9753 INTEL WWAN IOSM DRIVER
9754 M:      M Chetan Kumar <[email protected]>
9755 M:      Intel Corporation <[email protected]>
9756 L:      [email protected]
9757 S:      Maintained
9758 F:      drivers/net/wwan/iosm/
9759
9760 INTEL(R) TRACE HUB
9761 M:      Alexander Shishkin <[email protected]>
9762 S:      Supported
9763 F:      Documentation/trace/intel_th.rst
9764 F:      drivers/hwtracing/intel_th/
9765 F:      include/linux/intel_th.h
9766
9767 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
9768 M:      Ning Sun <[email protected]>
9769 L:      [email protected]
9770 S:      Supported
9771 W:      http://tboot.sourceforge.net
9772 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
9773 F:      Documentation/x86/intel_txt.rst
9774 F:      arch/x86/kernel/tboot.c
9775 F:      include/linux/tboot.h
9776
9777 INTEL SGX
9778 M:      Jarkko Sakkinen <[email protected]>
9779 R:      Dave Hansen <[email protected]>
9780 L:      [email protected]
9781 S:      Supported
9782 Q:      https://patchwork.kernel.org/project/intel-sgx/list/
9783 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/sgx
9784 F:      Documentation/x86/sgx.rst
9785 F:      arch/x86/entry/vdso/vsgx.S
9786 F:      arch/x86/include/asm/sgx.h
9787 F:      arch/x86/include/uapi/asm/sgx.h
9788 F:      arch/x86/kernel/cpu/sgx/*
9789 F:      tools/testing/selftests/sgx/*
9790 K:      \bSGX_
9791
9792 INTERCONNECT API
9793 M:      Georgi Djakov <[email protected]>
9794 L:      [email protected]
9795 S:      Maintained
9796 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/djakov/icc.git
9797 F:      Documentation/devicetree/bindings/interconnect/
9798 F:      Documentation/driver-api/interconnect.rst
9799 F:      drivers/interconnect/
9800 F:      include/dt-bindings/interconnect/
9801 F:      include/linux/interconnect-provider.h
9802 F:      include/linux/interconnect.h
9803
9804 INTERRUPT COUNTER DRIVER
9805 M:      Oleksij Rempel <[email protected]>
9806 R:      Pengutronix Kernel Team <[email protected]>
9807 L:      [email protected]
9808 F:      Documentation/devicetree/bindings/counter/interrupt-counter.yaml
9809 F:      drivers/counter/interrupt-cnt.c
9810
9811 INVENSENSE ICM-426xx IMU DRIVER
9812 M:      Jean-Baptiste Maneyrol <[email protected]>
9813 L:      [email protected]
9814 S:      Maintained
9815 W:      https://invensense.tdk.com/
9816 F:      Documentation/devicetree/bindings/iio/imu/invensense,icm42600.yaml
9817 F:      drivers/iio/imu/inv_icm42600/
9818
9819 INVENSENSE MPU-3050 GYROSCOPE DRIVER
9820 M:      Linus Walleij <[email protected]>
9821 L:      [email protected]
9822 S:      Maintained
9823 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.yaml
9824 F:      drivers/iio/gyro/mpu3050*
9825
9826 IOC3 ETHERNET DRIVER
9827 M:      Ralf Baechle <[email protected]>
9828 L:      [email protected]
9829 S:      Maintained
9830 F:      drivers/net/ethernet/sgi/ioc3-eth.c
9831
9832 IOMAP FILESYSTEM LIBRARY
9833 M:      Christoph Hellwig <[email protected]>
9834 M:      Darrick J. Wong <[email protected]>
9835 M:      [email protected]
9836 M:      [email protected]
9837 L:      [email protected]
9838 L:      [email protected]
9839 S:      Supported
9840 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
9841 F:      fs/iomap/
9842 F:      include/linux/iomap.h
9843
9844 IOMMU DRIVERS
9845 M:      Joerg Roedel <[email protected]>
9846 M:      Will Deacon <[email protected]>
9847 L:      [email protected]
9848 S:      Maintained
9849 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9850 F:      Documentation/devicetree/bindings/iommu/
9851 F:      Documentation/userspace-api/iommu.rst
9852 F:      drivers/iommu/
9853 F:      include/linux/iommu.h
9854 F:      include/linux/iova.h
9855 F:      include/linux/of_iommu.h
9856 F:      include/uapi/linux/iommu.h
9857
9858 IO_URING
9859 M:      Jens Axboe <[email protected]>
9860 R:      Pavel Begunkov <[email protected]>
9861 L:      [email protected]
9862 S:      Maintained
9863 T:      git git://git.kernel.dk/linux-block
9864 T:      git git://git.kernel.dk/liburing
9865 F:      fs/io-wq.c
9866 F:      fs/io-wq.h
9867 F:      fs/io_uring.c
9868 F:      include/linux/io_uring.h
9869 F:      include/uapi/linux/io_uring.h
9870 F:      tools/io_uring/
9871
9872 IPMI SUBSYSTEM
9873 M:      Corey Minyard <[email protected]>
9874 L:      [email protected] (moderated for non-subscribers)
9875 S:      Supported
9876 W:      http://openipmi.sourceforge.net/
9877 F:      Documentation/driver-api/ipmi.rst
9878 F:      Documentation/devicetree/bindings/ipmi/
9879 F:      drivers/char/ipmi/
9880 F:      include/linux/ipmi*
9881 F:      include/uapi/linux/ipmi*
9882
9883 IPS SCSI RAID DRIVER
9884 M:      Adaptec OEM Raid Solutions <[email protected]>
9885 L:      [email protected]
9886 S:      Maintained
9887 W:      http://www.adaptec.com/
9888 F:      drivers/scsi/ips*
9889
9890 IPVS
9891 M:      Simon Horman <[email protected]>
9892 M:      Julian Anastasov <[email protected]>
9893 L:      [email protected]
9894 L:      [email protected]
9895 S:      Maintained
9896 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
9897 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
9898 F:      Documentation/networking/ipvs-sysctl.rst
9899 F:      include/net/ip_vs.h
9900 F:      include/uapi/linux/ip_vs.h
9901 F:      net/netfilter/ipvs/
9902
9903 IPWIRELESS DRIVER
9904 M:      Jiri Kosina <[email protected]>
9905 M:      David Sterba <[email protected]>
9906 S:      Odd Fixes
9907 F:      drivers/tty/ipwireless/
9908
9909 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
9910 M:      Marc Zyngier <[email protected]>
9911 S:      Maintained
9912 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9913 F:      Documentation/core-api/irq/irq-domain.rst
9914 F:      include/linux/irqdomain.h
9915 F:      kernel/irq/irqdomain.c
9916 F:      kernel/irq/msi.c
9917
9918 IRQ SUBSYSTEM
9919 M:      Thomas Gleixner <[email protected]>
9920 L:      [email protected]
9921 S:      Maintained
9922 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9923 F:      kernel/irq/
9924
9925 IRQCHIP DRIVERS
9926 M:      Thomas Gleixner <[email protected]>
9927 M:      Marc Zyngier <[email protected]>
9928 L:      [email protected]
9929 S:      Maintained
9930 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9931 F:      Documentation/devicetree/bindings/interrupt-controller/
9932 F:      drivers/irqchip/
9933
9934 ISA
9935 M:      William Breathitt Gray <[email protected]>
9936 S:      Maintained
9937 F:      Documentation/driver-api/isa.rst
9938 F:      drivers/base/isa.c
9939 F:      include/linux/isa.h
9940
9941 ISA RADIO MODULE
9942 M:      Hans Verkuil <[email protected]>
9943 L:      [email protected]
9944 S:      Maintained
9945 W:      https://linuxtv.org
9946 T:      git git://linuxtv.org/media_tree.git
9947 F:      drivers/media/radio/radio-isa*
9948
9949 ISAPNP
9950 M:      Jaroslav Kysela <[email protected]>
9951 S:      Maintained
9952 F:      Documentation/driver-api/isapnp.rst
9953 F:      drivers/pnp/isapnp/
9954 F:      include/linux/isapnp.h
9955
9956 ISCSI
9957 M:      Lee Duncan <[email protected]>
9958 M:      Chris Leech <[email protected]>
9959 L:      [email protected]
9960 L:      [email protected]
9961 S:      Maintained
9962 W:      www.open-iscsi.com
9963 F:      drivers/scsi/*iscsi*
9964 F:      include/scsi/*iscsi*
9965
9966 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
9967 M:      Peter Jones <[email protected]>
9968 M:      Konrad Rzeszutek Wilk <[email protected]>
9969 S:      Maintained
9970 F:      drivers/firmware/iscsi_ibft*
9971
9972 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
9973 M:      Sagi Grimberg <[email protected]>
9974 M:      Max Gurtovoy <[email protected]>
9975 L:      [email protected]
9976 S:      Supported
9977 W:      http://www.openfabrics.org
9978 W:      www.open-iscsi.org
9979 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9980 F:      drivers/infiniband/ulp/iser/
9981
9982 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
9983 M:      Sagi Grimberg <[email protected]>
9984 L:      [email protected]
9985 L:      [email protected]
9986 S:      Supported
9987 W:      http://www.linux-iscsi.org
9988 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
9989 F:      drivers/infiniband/ulp/isert
9990
9991 ISDN/CMTP OVER BLUETOOTH
9992 M:      Karsten Keil <[email protected]>
9993 L:      [email protected] (subscribers-only)
9994 L:      [email protected]
9995 S:      Odd Fixes
9996 W:      http://www.isdn4linux.de
9997 F:      Documentation/isdn/
9998 F:      drivers/isdn/capi/
9999 F:      include/linux/isdn/
10000 F:      include/uapi/linux/isdn/
10001 F:      net/bluetooth/cmtp/
10002
10003 ISDN/mISDN SUBSYSTEM
10004 M:      Karsten Keil <[email protected]>
10005 L:      [email protected] (subscribers-only)
10006 L:      [email protected]
10007 S:      Maintained
10008 W:      http://www.isdn4linux.de
10009 F:      drivers/isdn/Kconfig
10010 F:      drivers/isdn/Makefile
10011 F:      drivers/isdn/hardware/
10012 F:      drivers/isdn/mISDN/
10013
10014 IT87 HARDWARE MONITORING DRIVER
10015 M:      Jean Delvare <[email protected]>
10016 L:      [email protected]
10017 S:      Maintained
10018 F:      Documentation/hwmon/it87.rst
10019 F:      drivers/hwmon/it87.c
10020
10021 IT913X MEDIA DRIVER
10022 M:      Antti Palosaari <[email protected]>
10023 L:      [email protected]
10024 S:      Maintained
10025 W:      https://linuxtv.org
10026 W:      http://palosaari.fi/linux/
10027 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10028 T:      git git://linuxtv.org/anttip/media_tree.git
10029 F:      drivers/media/tuners/it913x*
10030
10031 ITE IT66121 HDMI BRIDGE DRIVER
10032 M:      Phong LE <[email protected]>
10033 M:      Neil Armstrong <[email protected]>
10034 S:      Maintained
10035 T:      git git://anongit.freedesktop.org/drm/drm-misc
10036 F:      Documentation/devicetree/bindings/display/bridge/ite,it66121.yaml
10037 F:      drivers/gpu/drm/bridge/ite-it66121.c
10038
10039 IVTV VIDEO4LINUX DRIVER
10040 M:      Andy Walls <[email protected]>
10041 L:      [email protected]
10042 S:      Maintained
10043 W:      https://linuxtv.org
10044 T:      git git://linuxtv.org/media_tree.git
10045 F:      Documentation/admin-guide/media/ivtv*
10046 F:      drivers/media/pci/ivtv/
10047 F:      include/uapi/linux/ivtv*
10048
10049 IX2505V MEDIA DRIVER
10050 M:      Malcolm Priestley <[email protected]>
10051 L:      [email protected]
10052 S:      Maintained
10053 W:      https://linuxtv.org
10054 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10055 F:      drivers/media/dvb-frontends/ix2505v*
10056
10057 JAILHOUSE HYPERVISOR INTERFACE
10058 M:      Jan Kiszka <[email protected]>
10059 L:      [email protected]
10060 S:      Maintained
10061 F:      arch/x86/include/asm/jailhouse_para.h
10062 F:      arch/x86/kernel/jailhouse.c
10063
10064 JC42.4 TEMPERATURE SENSOR DRIVER
10065 M:      Guenter Roeck <[email protected]>
10066 L:      [email protected]
10067 S:      Maintained
10068 F:      Documentation/devicetree/bindings/hwmon/jedec,jc42.yaml
10069 F:      Documentation/hwmon/jc42.rst
10070 F:      drivers/hwmon/jc42.c
10071
10072 JFS FILESYSTEM
10073 M:      Dave Kleikamp <[email protected]>
10074 L:      [email protected]
10075 S:      Maintained
10076 W:      http://jfs.sourceforge.net/
10077 T:      git git://github.com/kleikamp/linux-shaggy.git
10078 F:      Documentation/admin-guide/jfs.rst
10079 F:      fs/jfs/
10080
10081 JME NETWORK DRIVER
10082 M:      Guo-Fu Tseng <[email protected]>
10083 L:      [email protected]
10084 S:      Maintained
10085 F:      drivers/net/ethernet/jme.*
10086
10087 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
10088 M:      David Woodhouse <[email protected]>
10089 M:      Richard Weinberger <[email protected]>
10090 L:      [email protected]
10091 S:      Odd Fixes
10092 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
10093 T:      git git://git.infradead.org/ubifs-2.6.git
10094 F:      fs/jffs2/
10095 F:      include/uapi/linux/jffs2.h
10096
10097 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
10098 M:      "Theodore Ts'o" <[email protected]>
10099 M:      Jan Kara <[email protected]>
10100 L:      [email protected]
10101 S:      Maintained
10102 F:      fs/jbd2/
10103 F:      include/linux/jbd2.h
10104
10105 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
10106 M:      Mikhail Ulyanov <[email protected]>
10107 L:      [email protected]
10108 L:      [email protected]
10109 S:      Maintained
10110 F:      drivers/media/platform/rcar_jpu.c
10111
10112 JSM Neo PCI based serial card
10113 L:      [email protected]
10114 S:      Orphan
10115 F:      drivers/tty/serial/jsm/
10116
10117 K10TEMP HARDWARE MONITORING DRIVER
10118 M:      Clemens Ladisch <[email protected]>
10119 L:      [email protected]
10120 S:      Maintained
10121 F:      Documentation/hwmon/k10temp.rst
10122 F:      drivers/hwmon/k10temp.c
10123
10124 K8TEMP HARDWARE MONITORING DRIVER
10125 M:      Rudolf Marek <[email protected]>
10126 L:      [email protected]
10127 S:      Maintained
10128 F:      Documentation/hwmon/k8temp.rst
10129 F:      drivers/hwmon/k8temp.c
10130
10131 KASAN
10132 M:      Andrey Ryabinin <[email protected]>
10133 R:      Alexander Potapenko <[email protected]>
10134 R:      Andrey Konovalov <[email protected]>
10135 R:      Dmitry Vyukov <[email protected]>
10136 L:      [email protected]
10137 S:      Maintained
10138 F:      Documentation/dev-tools/kasan.rst
10139 F:      arch/*/include/asm/*kasan.h
10140 F:      arch/*/mm/kasan_init*
10141 F:      include/linux/kasan*.h
10142 F:      lib/Kconfig.kasan
10143 F:      lib/test_kasan*.c
10144 F:      mm/kasan/
10145 F:      scripts/Makefile.kasan
10146
10147 KCONFIG
10148 M:      Masahiro Yamada <[email protected]>
10149 L:      [email protected]
10150 S:      Maintained
10151 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
10152 F:      Documentation/kbuild/kconfig*
10153 F:      scripts/Kconfig.include
10154 F:      scripts/kconfig/
10155
10156 KCOV
10157 R:      Dmitry Vyukov <[email protected]>
10158 R:      Andrey Konovalov <[email protected]>
10159 L:      [email protected]
10160 S:      Maintained
10161 F:      Documentation/dev-tools/kcov.rst
10162 F:      include/linux/kcov.h
10163 F:      include/uapi/linux/kcov.h
10164 F:      kernel/kcov.c
10165 F:      scripts/Makefile.kcov
10166
10167 KCSAN
10168 M:      Marco Elver <[email protected]>
10169 R:      Dmitry Vyukov <[email protected]>
10170 L:      [email protected]
10171 S:      Maintained
10172 F:      Documentation/dev-tools/kcsan.rst
10173 F:      include/linux/kcsan*.h
10174 F:      kernel/kcsan/
10175 F:      lib/Kconfig.kcsan
10176 F:      scripts/Makefile.kcsan
10177
10178 KDUMP
10179 M:      Dave Young <[email protected]>
10180 M:      Baoquan He <[email protected]>
10181 R:      Vivek Goyal <[email protected]>
10182 L:      [email protected]
10183 S:      Maintained
10184 W:      http://lse.sourceforge.net/kdump/
10185 F:      Documentation/admin-guide/kdump/
10186 F:      fs/proc/vmcore.c
10187 F:      include/linux/crash_core.h
10188 F:      include/linux/crash_dump.h
10189 F:      include/uapi/linux/vmcore.h
10190 F:      kernel/crash_*.c
10191
10192 KEENE FM RADIO TRANSMITTER DRIVER
10193 M:      Hans Verkuil <[email protected]>
10194 L:      [email protected]
10195 S:      Maintained
10196 W:      https://linuxtv.org
10197 T:      git git://linuxtv.org/media_tree.git
10198 F:      drivers/media/radio/radio-keene*
10199
10200 KERNEL AUTOMOUNTER
10201 M:      Ian Kent <[email protected]>
10202 L:      [email protected]
10203 S:      Maintained
10204 F:      fs/autofs/
10205
10206 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
10207 M:      Masahiro Yamada <[email protected]>
10208 M:      Michal Marek <[email protected]>
10209 R:      Nick Desaulniers <[email protected]>
10210 L:      [email protected]
10211 S:      Maintained
10212 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
10213 F:      Documentation/kbuild/
10214 F:      Makefile
10215 F:      scripts/*vmlinux*
10216 F:      scripts/Kbuild*
10217 F:      scripts/Makefile*
10218 F:      scripts/basic/
10219 F:      scripts/dummy-tools/
10220 F:      scripts/mk*
10221 F:      scripts/mod/
10222 F:      scripts/package/
10223
10224 KERNEL JANITORS
10225 L:      [email protected]
10226 S:      Odd Fixes
10227 W:      http://kernelnewbies.org/KernelJanitors
10228
10229 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
10230 M:      "J. Bruce Fields" <[email protected]>
10231 M:      Chuck Lever <[email protected]>
10232 L:      [email protected]
10233 S:      Supported
10234 W:      http://nfs.sourceforge.net/
10235 T:      git git://linux-nfs.org/~bfields/linux.git
10236 F:      fs/lockd/
10237 F:      fs/nfs_common/
10238 F:      fs/nfsd/
10239 F:      include/linux/lockd/
10240 F:      include/linux/sunrpc/
10241 F:      include/uapi/linux/nfsd/
10242 F:      include/uapi/linux/sunrpc/
10243 F:      net/sunrpc/
10244 F:      Documentation/filesystems/nfs/
10245
10246 KERNEL REGRESSIONS
10247 M:      Thorsten Leemhuis <[email protected]>
10248 L:      [email protected]
10249 S:      Supported
10250
10251 KERNEL SELFTEST FRAMEWORK
10252 M:      Shuah Khan <[email protected]>
10253 M:      Shuah Khan <[email protected]>
10254 L:      [email protected]
10255 S:      Maintained
10256 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
10257 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
10258 F:      Documentation/dev-tools/kselftest*
10259 F:      tools/testing/selftests/
10260
10261 KERNEL SMB3 SERVER (KSMBD)
10262 M:      Namjae Jeon <[email protected]>
10263 M:      Sergey Senozhatsky <[email protected]>
10264 M:      Steve French <[email protected]>
10265 M:      Hyunchul Lee <[email protected]>
10266 L:      [email protected]
10267 S:      Maintained
10268 T:      git git://git.samba.org/ksmbd.git
10269 F:      fs/ksmbd/
10270 F:      fs/smbfs_common/
10271
10272 KERNEL UNIT TESTING FRAMEWORK (KUnit)
10273 M:      Brendan Higgins <[email protected]>
10274 L:      [email protected]
10275 L:      [email protected]
10276 S:      Maintained
10277 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
10278 F:      Documentation/dev-tools/kunit/
10279 F:      include/kunit/
10280 F:      lib/kunit/
10281 F:      tools/testing/kunit/
10282
10283 KERNEL USERMODE HELPER
10284 M:      Luis Chamberlain <[email protected]>
10285 L:      [email protected]
10286 S:      Maintained
10287 F:      include/linux/umh.h
10288 F:      kernel/umh.c
10289
10290 KERNEL VIRTUAL MACHINE (KVM)
10291 M:      Paolo Bonzini <[email protected]>
10292 L:      [email protected]
10293 S:      Supported
10294 W:      http://www.linux-kvm.org
10295 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10296 F:      Documentation/virt/kvm/
10297 F:      include/asm-generic/kvm*
10298 F:      include/kvm/iodev.h
10299 F:      include/linux/kvm*
10300 F:      include/trace/events/kvm.h
10301 F:      include/uapi/asm-generic/kvm*
10302 F:      include/uapi/linux/kvm*
10303 F:      tools/kvm/
10304 F:      tools/testing/selftests/kvm/
10305 F:      virt/kvm/*
10306
10307 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
10308 M:      Marc Zyngier <[email protected]>
10309 R:      James Morse <[email protected]>
10310 R:      Alexandru Elisei <[email protected]>
10311 R:      Suzuki K Poulose <[email protected]>
10312 L:      [email protected] (moderated for non-subscribers)
10313 L:      [email protected] (moderated for non-subscribers)
10314 S:      Maintained
10315 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
10316 F:      arch/arm64/include/asm/kvm*
10317 F:      arch/arm64/include/uapi/asm/kvm*
10318 F:      arch/arm64/kvm/
10319 F:      include/kvm/arm_*
10320 F:      tools/testing/selftests/kvm/*/aarch64/
10321 F:      tools/testing/selftests/kvm/aarch64/
10322
10323 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
10324 M:      Huacai Chen <[email protected]>
10325 M:      Aleksandar Markovic <[email protected]>
10326 L:      [email protected]
10327 L:      [email protected]
10328 S:      Maintained
10329 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10330 F:      arch/mips/include/asm/kvm*
10331 F:      arch/mips/include/uapi/asm/kvm*
10332 F:      arch/mips/kvm/
10333
10334 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
10335 M:      Paul Mackerras <[email protected]>
10336 L:      [email protected]
10337 S:      Supported
10338 W:      http://www.linux-kvm.org/
10339 T:      git git://github.com/agraf/linux-2.6.git
10340 F:      arch/powerpc/include/asm/kvm*
10341 F:      arch/powerpc/include/uapi/asm/kvm*
10342 F:      arch/powerpc/kernel/kvm*
10343 F:      arch/powerpc/kvm/
10344
10345 KERNEL VIRTUAL MACHINE FOR RISC-V (KVM/riscv)
10346 M:      Anup Patel <[email protected]>
10347 R:      Atish Patra <[email protected]>
10348 L:      [email protected]
10349 L:      [email protected]
10350 L:      [email protected]
10351 S:      Maintained
10352 T:      git git://github.com/kvm-riscv/linux.git
10353 F:      arch/riscv/include/asm/kvm*
10354 F:      arch/riscv/include/uapi/asm/kvm*
10355 F:      arch/riscv/kvm/
10356
10357 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
10358 M:      Christian Borntraeger <[email protected]>
10359 M:      Janosch Frank <[email protected]>
10360 R:      David Hildenbrand <[email protected]>
10361 R:      Claudio Imbrenda <[email protected]>
10362 L:      [email protected]
10363 S:      Supported
10364 W:      http://www.ibm.com/developerworks/linux/linux390/
10365 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
10366 F:      Documentation/virt/kvm/s390*
10367 F:      arch/s390/include/asm/gmap.h
10368 F:      arch/s390/include/asm/kvm*
10369 F:      arch/s390/include/uapi/asm/kvm*
10370 F:      arch/s390/kernel/uv.c
10371 F:      arch/s390/kvm/
10372 F:      arch/s390/mm/gmap.c
10373 F:      tools/testing/selftests/kvm/*/s390x/
10374 F:      tools/testing/selftests/kvm/s390x/
10375
10376 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
10377 M:      Paolo Bonzini <[email protected]>
10378 R:      Sean Christopherson <[email protected]>
10379 R:      Vitaly Kuznetsov <[email protected]>
10380 R:      Wanpeng Li <[email protected]>
10381 R:      Jim Mattson <[email protected]>
10382 R:      Joerg Roedel <[email protected]>
10383 L:      [email protected]
10384 S:      Supported
10385 W:      http://www.linux-kvm.org
10386 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10387 F:      arch/x86/include/asm/kvm*
10388 F:      arch/x86/include/asm/pvclock-abi.h
10389 F:      arch/x86/include/asm/svm.h
10390 F:      arch/x86/include/asm/vmx*.h
10391 F:      arch/x86/include/uapi/asm/kvm*
10392 F:      arch/x86/include/uapi/asm/svm.h
10393 F:      arch/x86/include/uapi/asm/vmx.h
10394 F:      arch/x86/kernel/kvm.c
10395 F:      arch/x86/kernel/kvmclock.c
10396 F:      arch/x86/kvm/
10397 F:      arch/x86/kvm/*/
10398
10399 KERNFS
10400 M:      Greg Kroah-Hartman <[email protected]>
10401 M:      Tejun Heo <[email protected]>
10402 S:      Supported
10403 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
10404 F:      fs/kernfs/
10405 F:      include/linux/kernfs.h
10406
10407 KEXEC
10408 M:      Eric Biederman <[email protected]>
10409 L:      [email protected]
10410 S:      Maintained
10411 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
10412 F:      include/linux/kexec.h
10413 F:      include/uapi/linux/kexec.h
10414 F:      kernel/kexec*
10415
10416 KEYS-ENCRYPTED
10417 M:      Mimi Zohar <[email protected]>
10418 L:      [email protected]
10419 L:      [email protected]
10420 S:      Supported
10421 F:      Documentation/security/keys/trusted-encrypted.rst
10422 F:      include/keys/encrypted-type.h
10423 F:      security/keys/encrypted-keys/
10424
10425 KEYS-TRUSTED
10426 M:      James Bottomley <[email protected]>
10427 M:      Jarkko Sakkinen <[email protected]>
10428 M:      Mimi Zohar <[email protected]>
10429 L:      [email protected]
10430 L:      [email protected]
10431 S:      Supported
10432 F:      Documentation/security/keys/trusted-encrypted.rst
10433 F:      include/keys/trusted-type.h
10434 F:      include/keys/trusted_tpm.h
10435 F:      security/keys/trusted-keys/
10436
10437 KEYS-TRUSTED-TEE
10438 M:      Sumit Garg <[email protected]>
10439 L:      [email protected]
10440 L:      [email protected]
10441 S:      Supported
10442 F:      include/keys/trusted_tee.h
10443 F:      security/keys/trusted-keys/trusted_tee.c
10444
10445 KEYS/KEYRINGS
10446 M:      David Howells <[email protected]>
10447 M:      Jarkko Sakkinen <[email protected]>
10448 L:      [email protected]
10449 S:      Maintained
10450 F:      Documentation/security/keys/core.rst
10451 F:      include/keys/
10452 F:      include/linux/key-type.h
10453 F:      include/linux/key.h
10454 F:      include/linux/keyctl.h
10455 F:      include/uapi/linux/keyctl.h
10456 F:      security/keys/
10457
10458 KFENCE
10459 M:      Alexander Potapenko <[email protected]>
10460 M:      Marco Elver <[email protected]>
10461 R:      Dmitry Vyukov <[email protected]>
10462 L:      [email protected]
10463 S:      Maintained
10464 F:      Documentation/dev-tools/kfence.rst
10465 F:      arch/*/include/asm/kfence.h
10466 F:      include/linux/kfence.h
10467 F:      lib/Kconfig.kfence
10468 F:      mm/kfence/
10469
10470 KFIFO
10471 M:      Stefani Seibold <[email protected]>
10472 S:      Maintained
10473 F:      include/linux/kfifo.h
10474 F:      lib/kfifo.c
10475 F:      samples/kfifo/
10476
10477 KGDB / KDB /debug_core
10478 M:      Jason Wessel <[email protected]>
10479 M:      Daniel Thompson <[email protected]>
10480 R:      Douglas Anderson <[email protected]>
10481 L:      [email protected]
10482 S:      Maintained
10483 W:      http://kgdb.wiki.kernel.org/
10484 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
10485 F:      Documentation/dev-tools/kgdb.rst
10486 F:      drivers/misc/kgdbts.c
10487 F:      drivers/tty/serial/kgdboc.c
10488 F:      include/linux/kdb.h
10489 F:      include/linux/kgdb.h
10490 F:      kernel/debug/
10491
10492 KHADAS MCU MFD DRIVER
10493 M:      Neil Armstrong <[email protected]>
10494 L:      [email protected]
10495 S:      Maintained
10496 F:      Documentation/devicetree/bindings/mfd/khadas,mcu.yaml
10497 F:      drivers/mfd/khadas-mcu.c
10498 F:      include/linux/mfd/khadas-mcu.h
10499 F:      drivers/thermal/khadas_mcu_fan.c
10500
10501 KMEMLEAK
10502 M:      Catalin Marinas <[email protected]>
10503 S:      Maintained
10504 F:      Documentation/dev-tools/kmemleak.rst
10505 F:      include/linux/kmemleak.h
10506 F:      mm/kmemleak.c
10507 F:      samples/kmemleak/kmemleak-test.c
10508
10509 KMOD KERNEL MODULE LOADER - USERMODE HELPER
10510 M:      Luis Chamberlain <[email protected]>
10511 L:      [email protected]
10512 S:      Maintained
10513 F:      include/linux/kmod.h
10514 F:      kernel/kmod.c
10515 F:      lib/test_kmod.c
10516 F:      tools/testing/selftests/kmod/
10517
10518 KPROBES
10519 M:      Naveen N. Rao <[email protected]>
10520 M:      Anil S Keshavamurthy <[email protected]>
10521 M:      "David S. Miller" <[email protected]>
10522 M:      Masami Hiramatsu <[email protected]>
10523 S:      Maintained
10524 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace.git
10525 F:      Documentation/trace/kprobes.rst
10526 F:      include/asm-generic/kprobes.h
10527 F:      include/linux/kprobes.h
10528 F:      kernel/kprobes.c
10529 F:      lib/test_kprobes.c
10530 F:      samples/kprobes
10531
10532 KS0108 LCD CONTROLLER DRIVER
10533 M:      Miguel Ojeda <[email protected]>
10534 S:      Maintained
10535 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
10536 F:      drivers/auxdisplay/ks0108.c
10537 F:      include/linux/ks0108.h
10538
10539 KTD253 BACKLIGHT DRIVER
10540 M:      Linus Walleij <[email protected]>
10541 S:      Maintained
10542 F:      Documentation/devicetree/bindings/leds/backlight/kinetic,ktd253.yaml
10543 F:      drivers/video/backlight/ktd253-backlight.c
10544
10545 KTEST
10546 M:      Steven Rostedt <[email protected]>
10547 M:      John Hawley <[email protected]>
10548 S:      Maintained
10549 F:      tools/testing/ktest
10550
10551 L3MDEV
10552 M:      David Ahern <[email protected]>
10553 L:      [email protected]
10554 S:      Maintained
10555 F:      include/net/l3mdev.h
10556 F:      net/l3mdev
10557
10558 L7 BPF FRAMEWORK
10559 M:      John Fastabend <[email protected]>
10560 M:      Daniel Borkmann <[email protected]>
10561 M:      Jakub Sitnicki <[email protected]>
10562 M:      Lorenz Bauer <[email protected]>
10563 L:      [email protected]
10564 L:      [email protected]
10565 S:      Maintained
10566 F:      include/linux/skmsg.h
10567 F:      net/core/skmsg.c
10568 F:      net/core/sock_map.c
10569 F:      net/ipv4/tcp_bpf.c
10570 F:      net/ipv4/udp_bpf.c
10571 F:      net/unix/unix_bpf.c
10572
10573 LANDLOCK SECURITY MODULE
10574 M:      Mickaël Salaün <[email protected]>
10575 L:      [email protected]
10576 S:      Supported
10577 W:      https://landlock.io
10578 T:      git https://github.com/landlock-lsm/linux.git
10579 F:      Documentation/security/landlock.rst
10580 F:      Documentation/userspace-api/landlock.rst
10581 F:      include/uapi/linux/landlock.h
10582 F:      samples/landlock/
10583 F:      security/landlock/
10584 F:      tools/testing/selftests/landlock/
10585 K:      landlock
10586 K:      LANDLOCK
10587
10588 LANTIQ / INTEL Ethernet drivers
10589 M:      Hauke Mehrtens <[email protected]>
10590 L:      [email protected]
10591 S:      Maintained
10592 F:      drivers/net/dsa/lantiq_gswip.c
10593 F:      drivers/net/dsa/lantiq_pce.h
10594 F:      drivers/net/ethernet/lantiq_xrx200.c
10595 F:      net/dsa/tag_gswip.c
10596
10597 LANTIQ MIPS ARCHITECTURE
10598 M:      John Crispin <[email protected]>
10599 L:      [email protected]
10600 S:      Maintained
10601 F:      arch/mips/lantiq
10602 F:      drivers/soc/lantiq
10603
10604 LASI 53c700 driver for PARISC
10605 M:      "James E.J. Bottomley" <[email protected]>
10606 L:      [email protected]
10607 S:      Maintained
10608 F:      Documentation/scsi/53c700.rst
10609 F:      drivers/scsi/53c700*
10610
10611 LEAKING_ADDRESSES
10612 M:      Tobin C. Harding <[email protected]>
10613 M:      Tycho Andersen <[email protected]>
10614 L:      [email protected]
10615 S:      Maintained
10616 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
10617 F:      scripts/leaking_addresses.pl
10618
10619 LED SUBSYSTEM
10620 M:      Pavel Machek <[email protected]>
10621 L:      [email protected]
10622 S:      Maintained
10623 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
10624 F:      Documentation/devicetree/bindings/leds/
10625 F:      drivers/leds/
10626 F:      include/linux/leds.h
10627
10628 LEGACY EEPROM DRIVER
10629 M:      Jean Delvare <[email protected]>
10630 S:      Maintained
10631 F:      Documentation/misc-devices/eeprom.rst
10632 F:      drivers/misc/eeprom/eeprom.c
10633
10634 LEGO MINDSTORMS EV3
10635 R:      David Lechner <[email protected]>
10636 S:      Maintained
10637 F:      Documentation/devicetree/bindings/power/supply/lego,ev3-battery.yaml
10638 F:      arch/arm/boot/dts/da850-lego-ev3.dts
10639 F:      drivers/power/supply/lego_ev3_battery.c
10640
10641 LEGO USB Tower driver
10642 M:      Juergen Stuber <[email protected]>
10643 L:      [email protected]
10644 S:      Maintained
10645 W:      http://legousb.sourceforge.net/
10646 F:      drivers/usb/misc/legousbtower.c
10647
10648 LG LAPTOP EXTRAS
10649 M:      Matan Ziv-Av <[email protected]>
10650 L:      [email protected]
10651 S:      Maintained
10652 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
10653 F:      Documentation/admin-guide/laptops/lg-laptop.rst
10654 F:      drivers/platform/x86/lg-laptop.c
10655
10656 LG2160 MEDIA DRIVER
10657 M:      Michael Krufky <[email protected]>
10658 L:      [email protected]
10659 S:      Maintained
10660 W:      https://linuxtv.org
10661 W:      http://github.com/mkrufky
10662 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10663 T:      git git://linuxtv.org/mkrufky/tuners.git
10664 F:      drivers/media/dvb-frontends/lg2160.*
10665
10666 LGDT3305 MEDIA DRIVER
10667 M:      Michael Krufky <[email protected]>
10668 L:      [email protected]
10669 S:      Maintained
10670 W:      https://linuxtv.org
10671 W:      http://github.com/mkrufky
10672 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10673 T:      git git://linuxtv.org/mkrufky/tuners.git
10674 F:      drivers/media/dvb-frontends/lgdt3305.*
10675
10676 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
10677 M:      Viresh Kumar <[email protected]>
10678 L:      [email protected]
10679 S:      Maintained
10680 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10681 F:      drivers/ata/pata_arasan_cf.c
10682 F:      include/linux/pata_arasan_cf_data.h
10683
10684 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
10685 M:      Linus Walleij <[email protected]>
10686 L:      [email protected]
10687 S:      Maintained
10688 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10689 F:      drivers/ata/pata_ftide010.c
10690 F:      drivers/ata/sata_gemini.c
10691 F:      drivers/ata/sata_gemini.h
10692
10693 LIBATA SATA AHCI PLATFORM devices support
10694 M:      Hans de Goede <[email protected]>
10695 M:      Jens Axboe <[email protected]>
10696 L:      [email protected]
10697 S:      Maintained
10698 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10699 F:      drivers/ata/ahci_platform.c
10700 F:      drivers/ata/libahci_platform.c
10701 F:      include/linux/ahci_platform.h
10702
10703 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
10704 M:      Mikael Pettersson <[email protected]>
10705 L:      [email protected]
10706 S:      Maintained
10707 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10708 F:      drivers/ata/sata_promise.*
10709
10710 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
10711 M:      Damien Le Moal <[email protected]>
10712 L:      [email protected]
10713 S:      Maintained
10714 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/libata.git
10715 F:      Documentation/devicetree/bindings/ata/
10716 F:      drivers/ata/
10717 F:      include/linux/ata.h
10718 F:      include/linux/libata.h
10719
10720 LIBLOCKDEP
10721 M:      Sasha Levin <[email protected]>
10722 S:      Maintained
10723 F:      tools/lib/lockdep/
10724
10725 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
10726 M:      Dan Williams <[email protected]>
10727 M:      Vishal Verma <[email protected]>
10728 M:      Dave Jiang <[email protected]>
10729 L:      [email protected]
10730 S:      Supported
10731 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10732 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10733 F:      drivers/nvdimm/blk.c
10734 F:      drivers/nvdimm/region_devs.c
10735
10736 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
10737 M:      Vishal Verma <[email protected]>
10738 M:      Dan Williams <[email protected]>
10739 M:      Dave Jiang <[email protected]>
10740 L:      [email protected]
10741 S:      Supported
10742 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10743 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10744 F:      drivers/nvdimm/btt*
10745
10746 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
10747 M:      Dan Williams <[email protected]>
10748 M:      Vishal Verma <[email protected]>
10749 M:      Dave Jiang <[email protected]>
10750 L:      [email protected]
10751 S:      Supported
10752 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10753 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10754 F:      drivers/nvdimm/pmem*
10755
10756 LIBNVDIMM: DEVICETREE BINDINGS
10757 M:      Oliver O'Halloran <[email protected]>
10758 L:      [email protected]
10759 S:      Supported
10760 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10761 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
10762 F:      drivers/nvdimm/of_pmem.c
10763
10764 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
10765 M:      Dan Williams <[email protected]>
10766 M:      Vishal Verma <[email protected]>
10767 M:      Dave Jiang <[email protected]>
10768 M:      Ira Weiny <[email protected]>
10769 L:      [email protected]
10770 S:      Supported
10771 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10772 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10773 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
10774 F:      drivers/acpi/nfit/*
10775 F:      drivers/nvdimm/*
10776 F:      include/linux/libnvdimm.h
10777 F:      include/linux/nd.h
10778 F:      include/uapi/linux/ndctl.h
10779 F:      tools/testing/nvdimm/
10780
10781 LICENSES and SPDX stuff
10782 M:      Thomas Gleixner <[email protected]>
10783 M:      Greg Kroah-Hartman <[email protected]>
10784 L:      [email protected]
10785 S:      Maintained
10786 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
10787 F:      COPYING
10788 F:      Documentation/process/license-rules.rst
10789 F:      LICENSES/
10790 F:      scripts/spdxcheck-test.sh
10791 F:      scripts/spdxcheck.py
10792
10793 LINEAR RANGES HELPERS
10794 M:      Mark Brown <[email protected]>
10795 R:      Matti Vaittinen <[email protected]>
10796 F:      lib/linear_ranges.c
10797 F:      lib/test_linear_ranges.c
10798 F:      include/linux/linear_range.h
10799
10800 LINUX FOR POWER MACINTOSH
10801 M:      Benjamin Herrenschmidt <[email protected]>
10802 L:      [email protected]
10803 S:      Odd Fixes
10804 F:      arch/powerpc/platforms/powermac/
10805 F:      drivers/macintosh/
10806
10807 LINUX FOR POWERPC (32-BIT AND 64-BIT)
10808 M:      Michael Ellerman <[email protected]>
10809 R:      Benjamin Herrenschmidt <[email protected]>
10810 R:      Paul Mackerras <[email protected]>
10811 L:      [email protected]
10812 S:      Supported
10813 W:      https://github.com/linuxppc/wiki/wiki
10814 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
10815 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
10816 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
10817 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
10818 F:      Documentation/devicetree/bindings/powerpc/
10819 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
10820 F:      Documentation/powerpc/
10821 F:      arch/powerpc/
10822 F:      drivers/*/*/*pasemi*
10823 F:      drivers/*/*pasemi*
10824 F:      drivers/char/tpm/tpm_ibmvtpm*
10825 F:      drivers/crypto/nx/
10826 F:      drivers/crypto/vmx/
10827 F:      drivers/i2c/busses/i2c-opal.c
10828 F:      drivers/net/ethernet/ibm/ibmveth.*
10829 F:      drivers/net/ethernet/ibm/ibmvnic.*
10830 F:      drivers/pci/hotplug/pnv_php.c
10831 F:      drivers/pci/hotplug/rpa*
10832 F:      drivers/rtc/rtc-opal.c
10833 F:      drivers/scsi/ibmvscsi/
10834 F:      drivers/tty/hvc/hvc_opal.c
10835 F:      drivers/watchdog/wdrtas.c
10836 F:      tools/testing/selftests/powerpc
10837 N:      /pmac
10838 N:      powermac
10839 N:      powernv
10840 N:      [^a-z0-9]ps3
10841 N:      pseries
10842
10843 LINUX FOR POWERPC EMBEDDED MPC5XXX
10844 M:      Anatolij Gustschin <[email protected]>
10845 L:      [email protected]
10846 S:      Odd Fixes
10847 F:      arch/powerpc/platforms/512x/
10848 F:      arch/powerpc/platforms/52xx/
10849
10850 LINUX FOR POWERPC EMBEDDED PPC4XX
10851 L:      [email protected]
10852 S:      Orphan
10853 F:      arch/powerpc/platforms/40x/
10854 F:      arch/powerpc/platforms/44x/
10855
10856 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
10857 M:      Scott Wood <[email protected]>
10858 L:      [email protected]
10859 S:      Odd fixes
10860 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
10861 F:      Documentation/devicetree/bindings/powerpc/fsl/
10862 F:      arch/powerpc/platforms/83xx/
10863 F:      arch/powerpc/platforms/85xx/
10864
10865 LINUX FOR POWERPC EMBEDDED PPC8XX
10866 M:      Christophe Leroy <[email protected]>
10867 L:      [email protected]
10868 S:      Maintained
10869 F:      arch/powerpc/platforms/8xx/
10870
10871 LINUX KERNEL DUMP TEST MODULE (LKDTM)
10872 M:      Kees Cook <[email protected]>
10873 S:      Maintained
10874 F:      drivers/misc/lkdtm/*
10875 F:      tools/testing/selftests/lkdtm/*
10876
10877 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
10878 M:      Alan Stern <[email protected]>
10879 M:      Andrea Parri <[email protected]>
10880 M:      Will Deacon <[email protected]>
10881 M:      Peter Zijlstra <[email protected]>
10882 M:      Boqun Feng <[email protected]>
10883 M:      Nicholas Piggin <[email protected]>
10884 M:      David Howells <[email protected]>
10885 M:      Jade Alglave <[email protected]>
10886 M:      Luc Maranget <[email protected]>
10887 M:      "Paul E. McKenney" <[email protected]>
10888 R:      Akira Yokosawa <[email protected]>
10889 R:      Daniel Lustig <[email protected]>
10890 R:      Joel Fernandes <[email protected]>
10891 L:      [email protected]
10892 L:      [email protected]
10893 S:      Supported
10894 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
10895 F:      Documentation/atomic_bitops.txt
10896 F:      Documentation/atomic_t.txt
10897 F:      Documentation/core-api/refcount-vs-atomic.rst
10898 F:      Documentation/litmus-tests/
10899 F:      Documentation/memory-barriers.txt
10900 F:      tools/memory-model/
10901
10902 LIS3LV02D ACCELEROMETER DRIVER
10903 M:      Eric Piel <[email protected]>
10904 S:      Maintained
10905 F:      Documentation/misc-devices/lis3lv02d.rst
10906 F:      drivers/misc/lis3lv02d/
10907 F:      drivers/platform/x86/hp_accel.c
10908
10909 LIST KUNIT TEST
10910 M:      David Gow <[email protected]>
10911 L:      [email protected]
10912 L:      [email protected]
10913 S:      Maintained
10914 F:      lib/list-test.c
10915
10916 LITEX PLATFORM
10917 M:      Karol Gugala <[email protected]>
10918 M:      Mateusz Holenko <[email protected]>
10919 S:      Maintained
10920 F:      Documentation/devicetree/bindings/*/litex,*.yaml
10921 F:      arch/openrisc/boot/dts/or1klitex.dts
10922 F:      drivers/soc/litex/litex_soc_ctrl.c
10923 F:      drivers/tty/serial/liteuart.c
10924 F:      include/linux/litex.h
10925
10926 LIVE PATCHING
10927 M:      Josh Poimboeuf <[email protected]>
10928 M:      Jiri Kosina <[email protected]>
10929 M:      Miroslav Benes <[email protected]>
10930 M:      Petr Mladek <[email protected]>
10931 R:      Joe Lawrence <[email protected]>
10932 L:      [email protected]
10933 S:      Maintained
10934 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
10935 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
10936 F:      Documentation/livepatch/
10937 F:      arch/powerpc/include/asm/livepatch.h
10938 F:      arch/s390/include/asm/livepatch.h
10939 F:      arch/x86/include/asm/livepatch.h
10940 F:      include/linux/livepatch.h
10941 F:      kernel/livepatch/
10942 F:      lib/livepatch/
10943 F:      samples/livepatch/
10944 F:      tools/testing/selftests/livepatch/
10945
10946 LLC (802.2)
10947 L:      [email protected]
10948 S:      Odd fixes
10949 F:      include/linux/llc.h
10950 F:      include/net/llc*
10951 F:      include/uapi/linux/llc.h
10952 F:      net/llc/
10953
10954 LM73 HARDWARE MONITOR DRIVER
10955 M:      Guillaume Ligneul <[email protected]>
10956 L:      [email protected]
10957 S:      Maintained
10958 F:      drivers/hwmon/lm73.c
10959
10960 LM78 HARDWARE MONITOR DRIVER
10961 M:      Jean Delvare <[email protected]>
10962 L:      [email protected]
10963 S:      Maintained
10964 F:      Documentation/hwmon/lm78.rst
10965 F:      drivers/hwmon/lm78.c
10966
10967 LM83 HARDWARE MONITOR DRIVER
10968 M:      Jean Delvare <[email protected]>
10969 L:      [email protected]
10970 S:      Maintained
10971 F:      Documentation/hwmon/lm83.rst
10972 F:      drivers/hwmon/lm83.c
10973
10974 LM90 HARDWARE MONITOR DRIVER
10975 M:      Jean Delvare <[email protected]>
10976 L:      [email protected]
10977 S:      Maintained
10978 F:      Documentation/devicetree/bindings/hwmon/national,lm90.yaml
10979 F:      Documentation/hwmon/lm90.rst
10980 F:      drivers/hwmon/lm90.c
10981 F:      include/dt-bindings/thermal/lm90.h
10982
10983 LM95234 HARDWARE MONITOR DRIVER
10984 M:      Guenter Roeck <[email protected]>
10985 L:      [email protected]
10986 S:      Maintained
10987 F:      Documentation/hwmon/lm95234.rst
10988 F:      drivers/hwmon/lm95234.c
10989
10990 LME2510 MEDIA DRIVER
10991 M:      Malcolm Priestley <[email protected]>
10992 L:      [email protected]
10993 S:      Maintained
10994 W:      https://linuxtv.org
10995 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10996 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
10997
10998 LOADPIN SECURITY MODULE
10999 M:      Kees Cook <[email protected]>
11000 S:      Supported
11001 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
11002 F:      Documentation/admin-guide/LSM/LoadPin.rst
11003 F:      security/loadpin/
11004
11005 LOCKING PRIMITIVES
11006 M:      Peter Zijlstra <[email protected]>
11007 M:      Ingo Molnar <[email protected]>
11008 M:      Will Deacon <[email protected]>
11009 R:      Waiman Long <[email protected]>
11010 R:      Boqun Feng <[email protected]> (LOCKDEP)
11011 L:      [email protected]
11012 S:      Maintained
11013 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
11014 F:      Documentation/locking/
11015 F:      arch/*/include/asm/spinlock*.h
11016 F:      include/linux/lockdep.h
11017 F:      include/linux/mutex*.h
11018 F:      include/linux/rwlock*.h
11019 F:      include/linux/rwsem*.h
11020 F:      include/linux/seqlock.h
11021 F:      include/linux/spinlock*.h
11022 F:      kernel/locking/
11023 F:      lib/locking*.[ch]
11024 X:      kernel/locking/locktorture.c
11025
11026 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
11027 M:      "Richard Russon (FlatCap)" <[email protected]>
11028 L:      [email protected]
11029 S:      Maintained
11030 W:      http://www.linux-ntfs.org/content/view/19/37/
11031 F:      Documentation/admin-guide/ldm.rst
11032 F:      block/partitions/ldm.*
11033
11034 LOGITECH HID GAMING KEYBOARDS
11035 M:      Hans de Goede <[email protected]>
11036 L:      [email protected]
11037 S:      Maintained
11038 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
11039 F:      drivers/hid/hid-lg-g15.c
11040
11041 LONTIUM LT8912B MIPI TO HDMI BRIDGE
11042 M:      Adrien Grassein <[email protected]>
11043 S:      Maintained
11044 F:      Documentation/devicetree/bindings/display/bridge/lontium,lt8912b.yaml
11045 F:      drivers/gpu/drm/bridge/lontium-lt8912b.c
11046
11047 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
11048 M:      Sathya Prakash <[email protected]>
11049 M:      Sreekanth Reddy <[email protected]>
11050 M:      Suganath Prabu Subramani <[email protected]>
11051 L:      [email protected]
11052 L:      [email protected]
11053 S:      Supported
11054 W:      http://www.avagotech.com/support/
11055 F:      drivers/message/fusion/
11056 F:      drivers/scsi/mpt3sas/
11057
11058 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
11059 M:      Matthew Wilcox <[email protected]>
11060 L:      [email protected]
11061 S:      Maintained
11062 F:      drivers/scsi/sym53c8xx_2/
11063
11064 LTC1660 DAC DRIVER
11065 M:      Marcus Folkesson <[email protected]>
11066 L:      [email protected]
11067 S:      Maintained
11068 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
11069 F:      drivers/iio/dac/ltc1660.c
11070
11071 LTC2947 HARDWARE MONITOR DRIVER
11072 M:      Nuno Sá <[email protected]>
11073 L:      [email protected]
11074 S:      Supported
11075 W:      http://ez.analog.com/community/linux-device-drivers
11076 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
11077 F:      drivers/hwmon/ltc2947-core.c
11078 F:      drivers/hwmon/ltc2947-i2c.c
11079 F:      drivers/hwmon/ltc2947-spi.c
11080 F:      drivers/hwmon/ltc2947.h
11081
11082 LTC2983 IIO TEMPERATURE DRIVER
11083 M:      Nuno Sá <[email protected]>
11084 L:      [email protected]
11085 S:      Supported
11086 W:      http://ez.analog.com/community/linux-device-drivers
11087 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
11088 F:      drivers/iio/temperature/ltc2983.c
11089
11090 LTC4261 HARDWARE MONITOR DRIVER
11091 M:      Guenter Roeck <[email protected]>
11092 L:      [email protected]
11093 S:      Maintained
11094 F:      Documentation/hwmon/ltc4261.rst
11095 F:      drivers/hwmon/ltc4261.c
11096
11097 LTC4306 I2C MULTIPLEXER DRIVER
11098 M:      Michael Hennerich <[email protected]>
11099 L:      [email protected]
11100 S:      Supported
11101 W:      http://ez.analog.com/community/linux-device-drivers
11102 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
11103 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
11104
11105 LTP (Linux Test Project)
11106 M:      Mike Frysinger <[email protected]>
11107 M:      Cyril Hrubis <[email protected]>
11108 M:      Wanlong Gao <[email protected]>
11109 M:      Jan Stancek <[email protected]>
11110 M:      Stanislav Kholmanskikh <[email protected]>
11111 M:      Alexey Kodanev <[email protected]>
11112 L:      [email protected] (subscribers-only)
11113 S:      Maintained
11114 W:      http://linux-test-project.github.io/
11115 T:      git git://github.com/linux-test-project/ltp.git
11116
11117 LYNX PCS MODULE
11118 M:      Ioana Ciornei <[email protected]>
11119 L:      [email protected]
11120 S:      Supported
11121 F:      drivers/net/pcs/pcs-lynx.c
11122 F:      include/linux/pcs-lynx.h
11123
11124 M68K ARCHITECTURE
11125 M:      Geert Uytterhoeven <[email protected]>
11126 L:      [email protected]
11127 S:      Maintained
11128 W:      http://www.linux-m68k.org/
11129 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
11130 F:      arch/m68k/
11131 F:      drivers/zorro/
11132
11133 M68K ON APPLE MACINTOSH
11134 M:      Joshua Thompson <[email protected]>
11135 L:      [email protected]
11136 S:      Maintained
11137 W:      http://www.mac.linux-m68k.org/
11138 F:      arch/m68k/mac/
11139 F:      drivers/macintosh/adb-iop.c
11140 F:      drivers/macintosh/via-macii.c
11141
11142 M68K ON HP9000/300
11143 M:      Philip Blundell <[email protected]>
11144 S:      Maintained
11145 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
11146 F:      arch/m68k/hp300/
11147
11148 M88DS3103 MEDIA DRIVER
11149 M:      Antti Palosaari <[email protected]>
11150 L:      [email protected]
11151 S:      Maintained
11152 W:      https://linuxtv.org
11153 W:      http://palosaari.fi/linux/
11154 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11155 T:      git git://linuxtv.org/anttip/media_tree.git
11156 F:      drivers/media/dvb-frontends/m88ds3103*
11157
11158 M88RS2000 MEDIA DRIVER
11159 M:      Malcolm Priestley <[email protected]>
11160 L:      [email protected]
11161 S:      Maintained
11162 W:      https://linuxtv.org
11163 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11164 F:      drivers/media/dvb-frontends/m88rs2000*
11165
11166 MA901 MASTERKIT USB FM RADIO DRIVER
11167 M:      Alexey Klimov <[email protected]>
11168 L:      [email protected]
11169 S:      Maintained
11170 T:      git git://linuxtv.org/media_tree.git
11171 F:      drivers/media/radio/radio-ma901.c
11172
11173 MAC80211
11174 M:      Johannes Berg <[email protected]>
11175 L:      [email protected]
11176 S:      Maintained
11177 W:      https://wireless.wiki.kernel.org/
11178 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
11179 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
11180 F:      Documentation/networking/mac80211-injection.rst
11181 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
11182 F:      drivers/net/wireless/mac80211_hwsim.[ch]
11183 F:      include/net/mac80211.h
11184 F:      net/mac80211/
11185
11186 MAILBOX API
11187 M:      Jassi Brar <[email protected]>
11188 L:      [email protected]
11189 S:      Maintained
11190 F:      drivers/mailbox/
11191 F:      include/linux/mailbox_client.h
11192 F:      include/linux/mailbox_controller.h
11193 F:      include/dt-bindings/mailbox/
11194 F:      Documentation/devicetree/bindings/mailbox/
11195
11196 MAILBOX ARM MHUv2
11197 M:      Viresh Kumar <[email protected]>
11198 M:      Tushar Khandelwal <[email protected]>
11199 L:      [email protected]
11200 S:      Maintained
11201 F:      drivers/mailbox/arm_mhuv2.c
11202 F:      include/linux/mailbox/arm_mhuv2_message.h
11203 F:      Documentation/devicetree/bindings/mailbox/arm,mhuv2.yaml
11204
11205 MANAGEMENT COMPONENT TRANSPORT PROTOCOL (MCTP)
11206 M:      Jeremy Kerr <[email protected]>
11207 M:      Matt Johnston <[email protected]>
11208 L:      [email protected]
11209 S:      Maintained
11210 F:      Documentation/networking/mctp.rst
11211 F:      drivers/net/mctp/
11212 F:      include/net/mctp.h
11213 F:      include/net/mctpdevice.h
11214 F:      include/net/netns/mctp.h
11215 F:      net/mctp/
11216
11217 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
11218 M:      Michael Kerrisk <[email protected]>
11219 L:      [email protected]
11220 S:      Maintained
11221 W:      http://www.kernel.org/doc/man-pages
11222
11223 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
11224 M:      Rahul Bedarkar <[email protected]>
11225 L:      [email protected]
11226 S:      Maintained
11227 F:      arch/mips/boot/dts/img/pistachio*
11228
11229 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
11230 M:      Andrew Lunn <[email protected]>
11231 M:      Vivien Didelot <[email protected]>
11232 L:      [email protected]
11233 S:      Maintained
11234 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
11235 F:      Documentation/networking/devlink/mv88e6xxx.rst
11236 F:      drivers/net/dsa/mv88e6xxx/
11237 F:      include/linux/dsa/mv88e6xxx.h
11238 F:      include/linux/platform_data/mv88e6xxx.h
11239
11240 MARVELL ARMADA 3700 PHY DRIVERS
11241 M:      Miquel Raynal <[email protected]>
11242 S:      Maintained
11243 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
11244 F:      Documentation/devicetree/bindings/phy/marvell,armada-3700-utmi-phy.yaml
11245 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
11246 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
11247
11248 MARVELL ARMADA DRM SUPPORT
11249 M:      Russell King <[email protected]>
11250 S:      Maintained
11251 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
11252 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
11253 F:      Documentation/devicetree/bindings/display/armada/
11254 F:      drivers/gpu/drm/armada/
11255 F:      include/uapi/drm/armada_drm.h
11256
11257 MARVELL CRYPTO DRIVER
11258 M:      Boris Brezillon <[email protected]>
11259 M:      Arnaud Ebalard <[email protected]>
11260 M:      Srujana Challa <[email protected]>
11261 L:      [email protected]
11262 S:      Maintained
11263 F:      drivers/crypto/marvell/
11264 F:      include/linux/soc/marvell/octeontx2/
11265
11266 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
11267 M:      Mirko Lindner <[email protected]>
11268 M:      Stephen Hemminger <[email protected]>
11269 L:      [email protected]
11270 S:      Maintained
11271 F:      drivers/net/ethernet/marvell/sk*
11272
11273 MARVELL LIBERTAS WIRELESS DRIVER
11274 L:      [email protected]
11275 S:      Orphan
11276 F:      drivers/net/wireless/marvell/libertas/
11277
11278 MARVELL MACCHIATOBIN SUPPORT
11279 M:      Russell King <[email protected]>
11280 L:      [email protected] (moderated for non-subscribers)
11281 S:      Maintained
11282 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
11283
11284 MARVELL MV643XX ETHERNET DRIVER
11285 M:      Sebastian Hesselbarth <[email protected]>
11286 L:      [email protected]
11287 S:      Maintained
11288 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
11289 F:      include/linux/mv643xx.h
11290
11291 MARVELL MV88X3310 PHY DRIVER
11292 M:      Russell King <[email protected]>
11293 M:      Marek Behún <[email protected]>
11294 L:      [email protected]
11295 S:      Maintained
11296 F:      drivers/net/phy/marvell10g.c
11297
11298 MARVELL MVEBU THERMAL DRIVER
11299 M:      Miquel Raynal <[email protected]>
11300 S:      Maintained
11301 F:      drivers/thermal/armada_thermal.c
11302
11303 MARVELL MVNETA ETHERNET DRIVER
11304 M:      Thomas Petazzoni <[email protected]>
11305 L:      [email protected]
11306 S:      Maintained
11307 F:      drivers/net/ethernet/marvell/mvneta.*
11308
11309 MARVELL MVPP2 ETHERNET DRIVER
11310 M:      Marcin Wojtas <[email protected]>
11311 M:      Russell King <[email protected]>
11312 L:      [email protected]
11313 S:      Maintained
11314 F:      Documentation/devicetree/bindings/net/marvell-pp2.txt
11315 F:      drivers/net/ethernet/marvell/mvpp2/
11316
11317 MARVELL MWIFIEX WIRELESS DRIVER
11318 M:      Amitkumar Karwar <[email protected]>
11319 M:      Ganapathi Bhat <[email protected]>
11320 M:      Sharvari Harisangam <[email protected]>
11321 M:      Xinming Hu <[email protected]>
11322 L:      [email protected]
11323 S:      Maintained
11324 F:      drivers/net/wireless/marvell/mwifiex/
11325
11326 MARVELL MWL8K WIRELESS DRIVER
11327 M:      Lennert Buytenhek <[email protected]>
11328 L:      [email protected]
11329 S:      Odd Fixes
11330 F:      drivers/net/wireless/marvell/mwl8k.c
11331
11332 MARVELL NAND CONTROLLER DRIVER
11333 M:      Miquel Raynal <[email protected]>
11334 L:      [email protected]
11335 S:      Maintained
11336 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
11337 F:      drivers/mtd/nand/raw/marvell_nand.c
11338
11339 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
11340 M:      Sunil Goutham <[email protected]>
11341 M:      Geetha sowjanya <[email protected]>
11342 M:      Subbaraya Sundeep <[email protected]>
11343 M:      hariprasad <[email protected]>
11344 L:      [email protected]
11345 S:      Supported
11346 F:      drivers/net/ethernet/marvell/octeontx2/nic/
11347 F:      include/linux/soc/marvell/octeontx2/
11348
11349 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
11350 M:      Sunil Goutham <[email protected]>
11351 M:      Linu Cherian <[email protected]>
11352 M:      Geetha sowjanya <[email protected]>
11353 M:      Jerin Jacob <[email protected]>
11354 M:      hariprasad <[email protected]>
11355 M:      Subbaraya Sundeep <[email protected]>
11356 L:      [email protected]
11357 S:      Supported
11358 F:      Documentation/networking/device_drivers/ethernet/marvell/octeontx2.rst
11359 F:      drivers/net/ethernet/marvell/octeontx2/af/
11360
11361 MARVELL PRESTERA ETHERNET SWITCH DRIVER
11362 M:      Taras Chornyi <[email protected]>
11363 S:      Supported
11364 W:      https://github.com/Marvell-switching/switchdev-prestera
11365 F:      drivers/net/ethernet/marvell/prestera/
11366
11367 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
11368 M:      Nicolas Pitre <[email protected]>
11369 S:      Odd Fixes
11370 F:      drivers/mmc/host/mvsdio.*
11371
11372 MARVELL USB MDIO CONTROLLER DRIVER
11373 M:      Tobias Waldekranz <[email protected]>
11374 L:      [email protected]
11375 S:      Maintained
11376 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
11377 F:      drivers/net/mdio/mdio-mvusb.c
11378
11379 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
11380 M:      Hu Ziji <[email protected]>
11381 L:      [email protected]
11382 S:      Supported
11383 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
11384 F:      drivers/mmc/host/sdhci-xenon*
11385
11386 MATROX FRAMEBUFFER DRIVER
11387 L:      [email protected]
11388 S:      Orphan
11389 F:      drivers/video/fbdev/matrox/matroxfb_*
11390 F:      include/uapi/linux/matroxfb.h
11391
11392 MAX15301 DRIVER
11393 M:      Daniel Nilsson <[email protected]>
11394 L:      [email protected]
11395 S:      Maintained
11396 F:      Documentation/hwmon/max15301.rst
11397 F:      drivers/hwmon/pmbus/max15301.c
11398
11399 MAX16065 HARDWARE MONITOR DRIVER
11400 M:      Guenter Roeck <[email protected]>
11401 L:      [email protected]
11402 S:      Maintained
11403 F:      Documentation/hwmon/max16065.rst
11404 F:      drivers/hwmon/max16065.c
11405
11406 MAX2175 SDR TUNER DRIVER
11407 M:      Ramesh Shanmugasundaram <[email protected]>
11408 L:      [email protected]
11409 S:      Maintained
11410 T:      git git://linuxtv.org/media_tree.git
11411 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
11412 F:      Documentation/userspace-api/media/drivers/max2175.rst
11413 F:      drivers/media/i2c/max2175*
11414 F:      include/uapi/linux/max2175.h
11415
11416 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
11417 L:      [email protected]
11418 S:      Orphan
11419 F:      Documentation/hwmon/max6650.rst
11420 F:      drivers/hwmon/max6650.c
11421
11422 MAX6697 HARDWARE MONITOR DRIVER
11423 M:      Guenter Roeck <[email protected]>
11424 L:      [email protected]
11425 S:      Maintained
11426 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
11427 F:      Documentation/hwmon/max6697.rst
11428 F:      drivers/hwmon/max6697.c
11429 F:      include/linux/platform_data/max6697.h
11430
11431 MAX9286 QUAD GMSL DESERIALIZER DRIVER
11432 M:      Jacopo Mondi <[email protected]>
11433 M:      Kieran Bingham <[email protected]>
11434 M:      Laurent Pinchart <[email protected]>
11435 M:      Niklas Söderlund <[email protected]>
11436 L:      [email protected]
11437 S:      Maintained
11438 F:      Documentation/devicetree/bindings/media/i2c/maxim,max9286.yaml
11439 F:      drivers/media/i2c/max9286.c
11440
11441 MAX9860 MONO AUDIO VOICE CODEC DRIVER
11442 M:      Peter Rosin <[email protected]>
11443 L:      [email protected] (moderated for non-subscribers)
11444 S:      Maintained
11445 F:      Documentation/devicetree/bindings/sound/max9860.txt
11446 F:      sound/soc/codecs/max9860.*
11447
11448 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
11449 M:      Andreas Klinger <[email protected]>
11450 L:      [email protected]
11451 S:      Maintained
11452 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
11453 F:      drivers/iio/proximity/mb1232.c
11454
11455 MAXIM MAX77650 PMIC MFD DRIVER
11456 M:      Bartosz Golaszewski <[email protected]>
11457 L:      [email protected]
11458 S:      Maintained
11459 F:      Documentation/devicetree/bindings/*/*max77650.yaml
11460 F:      Documentation/devicetree/bindings/*/max77650*.yaml
11461 F:      drivers/gpio/gpio-max77650.c
11462 F:      drivers/input/misc/max77650-onkey.c
11463 F:      drivers/leds/leds-max77650.c
11464 F:      drivers/mfd/max77650.c
11465 F:      drivers/power/supply/max77650-charger.c
11466 F:      drivers/regulator/max77650-regulator.c
11467 F:      include/linux/mfd/max77650.h
11468
11469 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
11470 M:      Javier Martinez Canillas <[email protected]>
11471 L:      [email protected]
11472 S:      Supported
11473 F:      Documentation/devicetree/bindings/*/*max77802.txt
11474 F:      drivers/regulator/max77802-regulator.c
11475 F:      include/dt-bindings/*/*max77802.h
11476
11477 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
11478 M:      Krzysztof Kozlowski <[email protected]>
11479 M:      Bartlomiej Zolnierkiewicz <[email protected]>
11480 L:      [email protected]
11481 S:      Supported
11482 F:      drivers/power/supply/max14577_charger.c
11483 F:      drivers/power/supply/max77693_charger.c
11484
11485 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
11486 M:      Chanwoo Choi <[email protected]>
11487 M:      Krzysztof Kozlowski <[email protected]>
11488 M:      Bartlomiej Zolnierkiewicz <[email protected]>
11489 L:      [email protected]
11490 S:      Supported
11491 F:      Documentation/devicetree/bindings/*/max77686.txt
11492 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
11493 F:      Documentation/devicetree/bindings/mfd/max14577.txt
11494 F:      Documentation/devicetree/bindings/mfd/max77693.txt
11495 F:      drivers/*/max14577*.c
11496 F:      drivers/*/max77686*.c
11497 F:      drivers/*/max77693*.c
11498 F:      drivers/clk/clk-max77686.c
11499 F:      drivers/extcon/extcon-max14577.c
11500 F:      drivers/extcon/extcon-max77693.c
11501 F:      drivers/rtc/rtc-max77686.c
11502 F:      include/linux/mfd/max14577*.h
11503 F:      include/linux/mfd/max77686*.h
11504 F:      include/linux/mfd/max77693*.h
11505
11506 MAXIRADIO FM RADIO RECEIVER DRIVER
11507 M:      Hans Verkuil <[email protected]>
11508 L:      [email protected]
11509 S:      Maintained
11510 W:      https://linuxtv.org
11511 T:      git git://linuxtv.org/media_tree.git
11512 F:      drivers/media/radio/radio-maxiradio*
11513
11514 MAXLINEAR ETHERNET PHY DRIVER
11515 M:      Xu Liang <[email protected]>
11516 L:      [email protected]
11517 S:      Supported
11518 F:      drivers/net/phy/mxl-gpy.c
11519
11520 MCBA MICROCHIP CAN BUS ANALYZER TOOL DRIVER
11521 R:      Yasushi SHOJI <[email protected]>
11522 L:      [email protected]
11523 S:      Maintained
11524 F:      drivers/net/can/usb/mcba_usb.c
11525
11526 MCAN MMIO DEVICE DRIVER
11527 M:      Chandrasekar Ramakrishnan <[email protected]>
11528 L:      [email protected]
11529 S:      Maintained
11530 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
11531 F:      drivers/net/can/m_can/m_can.c
11532 F:      drivers/net/can/m_can/m_can.h
11533 F:      drivers/net/can/m_can/m_can_platform.c
11534
11535 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
11536 M:      Rishi Gupta <[email protected]>
11537 L:      [email protected]
11538 L:      [email protected]
11539 S:      Maintained
11540 F:      drivers/hid/hid-mcp2221.c
11541
11542 MCP251XFD SPI-CAN NETWORK DRIVER
11543 M:      Marc Kleine-Budde <[email protected]>
11544 M:      Manivannan Sadhasivam <[email protected]>
11545 R:      Thomas Kopp <[email protected]>
11546 L:      [email protected]
11547 S:      Maintained
11548 F:      Documentation/devicetree/bindings/net/can/microchip,mcp251xfd.yaml
11549 F:      drivers/net/can/spi/mcp251xfd/
11550
11551 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
11552 M:      Peter Rosin <[email protected]>
11553 L:      [email protected]
11554 S:      Maintained
11555 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
11556 F:      drivers/iio/potentiometer/mcp4018.c
11557 F:      drivers/iio/potentiometer/mcp4531.c
11558
11559 MCR20A IEEE-802.15.4 RADIO DRIVER
11560 M:      Xue Liu <[email protected]>
11561 L:      [email protected]
11562 S:      Maintained
11563 W:      https://github.com/xueliu/mcr20a-linux
11564 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
11565 F:      drivers/net/ieee802154/mcr20a.c
11566 F:      drivers/net/ieee802154/mcr20a.h
11567
11568 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
11569 M:      William Breathitt Gray <[email protected]>
11570 L:      [email protected]
11571 S:      Maintained
11572 F:      drivers/iio/dac/cio-dac.c
11573
11574 MEDIA CONTROLLER FRAMEWORK
11575 M:      Sakari Ailus <[email protected]>
11576 M:      Laurent Pinchart <[email protected]>
11577 L:      [email protected]
11578 S:      Supported
11579 W:      https://www.linuxtv.org
11580 T:      git git://linuxtv.org/media_tree.git
11581 F:      drivers/media/mc/
11582 F:      include/media/media-*.h
11583 F:      include/uapi/linux/media.h
11584
11585 MEDIA DRIVER FOR FREESCALE IMX PXP
11586 M:      Philipp Zabel <[email protected]>
11587 L:      [email protected]
11588 S:      Maintained
11589 T:      git git://linuxtv.org/media_tree.git
11590 F:      drivers/media/platform/imx-pxp.[ch]
11591
11592 MEDIA DRIVERS FOR ASCOT2E
11593 M:      Sergey Kozlov <[email protected]>
11594 M:      Abylay Ospan <[email protected]>
11595 L:      [email protected]
11596 S:      Supported
11597 W:      https://linuxtv.org
11598 W:      http://netup.tv/
11599 T:      git git://linuxtv.org/media_tree.git
11600 F:      drivers/media/dvb-frontends/ascot2e*
11601
11602 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
11603 M:      Jasmin Jessich <[email protected]>
11604 L:      [email protected]
11605 S:      Maintained
11606 W:      https://linuxtv.org
11607 T:      git git://linuxtv.org/media_tree.git
11608 F:      drivers/media/dvb-frontends/cxd2099*
11609
11610 MEDIA DRIVERS FOR CXD2841ER
11611 M:      Sergey Kozlov <[email protected]>
11612 M:      Abylay Ospan <[email protected]>
11613 L:      [email protected]
11614 S:      Supported
11615 W:      https://linuxtv.org
11616 W:      http://netup.tv/
11617 T:      git git://linuxtv.org/media_tree.git
11618 F:      drivers/media/dvb-frontends/cxd2841er*
11619
11620 MEDIA DRIVERS FOR CXD2880
11621 M:      Yasunari Takiguchi <[email protected]>
11622 L:      [email protected]
11623 S:      Supported
11624 W:      http://linuxtv.org/
11625 T:      git git://linuxtv.org/media_tree.git
11626 F:      drivers/media/dvb-frontends/cxd2880/*
11627 F:      drivers/media/spi/cxd2880*
11628
11629 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
11630 L:      [email protected]
11631 S:      Orphan
11632 W:      https://linuxtv.org
11633 T:      git git://linuxtv.org/media_tree.git
11634 F:      drivers/media/pci/ddbridge/*
11635
11636 MEDIA DRIVERS FOR FREESCALE IMX
11637 M:      Steve Longerbeam <[email protected]>
11638 M:      Philipp Zabel <[email protected]>
11639 L:      [email protected]
11640 S:      Maintained
11641 T:      git git://linuxtv.org/media_tree.git
11642 F:      Documentation/admin-guide/media/imx.rst
11643 F:      Documentation/devicetree/bindings/media/imx.txt
11644 F:      drivers/staging/media/imx/
11645 F:      include/linux/imx-media.h
11646 F:      include/media/imx.h
11647
11648 MEDIA DRIVERS FOR FREESCALE IMX7
11649 M:      Rui Miguel Silva <[email protected]>
11650 M:      Laurent Pinchart <[email protected]>
11651 L:      [email protected]
11652 S:      Maintained
11653 T:      git git://linuxtv.org/media_tree.git
11654 F:      Documentation/admin-guide/media/imx7.rst
11655 F:      Documentation/devicetree/bindings/media/nxp,imx7-csi.yaml
11656 F:      Documentation/devicetree/bindings/media/nxp,imx7-mipi-csi2.yaml
11657 F:      drivers/staging/media/imx/imx7-media-csi.c
11658 F:      drivers/staging/media/imx/imx7-mipi-csis.c
11659
11660 MEDIA DRIVERS FOR HELENE
11661 M:      Abylay Ospan <[email protected]>
11662 L:      [email protected]
11663 S:      Supported
11664 W:      https://linuxtv.org
11665 W:      http://netup.tv/
11666 T:      git git://linuxtv.org/media_tree.git
11667 F:      drivers/media/dvb-frontends/helene*
11668
11669 MEDIA DRIVERS FOR HORUS3A
11670 M:      Sergey Kozlov <[email protected]>
11671 M:      Abylay Ospan <[email protected]>
11672 L:      [email protected]
11673 S:      Supported
11674 W:      https://linuxtv.org
11675 W:      http://netup.tv/
11676 T:      git git://linuxtv.org/media_tree.git
11677 F:      drivers/media/dvb-frontends/horus3a*
11678
11679 MEDIA DRIVERS FOR LNBH25
11680 M:      Sergey Kozlov <[email protected]>
11681 M:      Abylay Ospan <[email protected]>
11682 L:      [email protected]
11683 S:      Supported
11684 W:      https://linuxtv.org
11685 W:      http://netup.tv/
11686 T:      git git://linuxtv.org/media_tree.git
11687 F:      drivers/media/dvb-frontends/lnbh25*
11688
11689 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
11690 L:      [email protected]
11691 S:      Orphan
11692 W:      https://linuxtv.org
11693 T:      git git://linuxtv.org/media_tree.git
11694 F:      drivers/media/dvb-frontends/mxl5xx*
11695
11696 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
11697 M:      Sergey Kozlov <[email protected]>
11698 M:      Abylay Ospan <[email protected]>
11699 L:      [email protected]
11700 S:      Supported
11701 W:      https://linuxtv.org
11702 W:      http://netup.tv/
11703 T:      git git://linuxtv.org/media_tree.git
11704 F:      drivers/media/pci/netup_unidvb/*
11705
11706 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
11707 M:      Dmitry Osipenko <[email protected]>
11708 L:      [email protected]
11709 L:      [email protected]
11710 S:      Maintained
11711 T:      git git://linuxtv.org/media_tree.git
11712 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
11713 F:      drivers/staging/media/tegra-vde/
11714
11715 MEDIA DRIVERS FOR RENESAS - CEU
11716 M:      Jacopo Mondi <[email protected]>
11717 L:      [email protected]
11718 L:      [email protected]
11719 S:      Supported
11720 T:      git git://linuxtv.org/media_tree.git
11721 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
11722 F:      drivers/media/platform/renesas-ceu.c
11723 F:      include/media/drv-intf/renesas-ceu.h
11724
11725 MEDIA DRIVERS FOR RENESAS - DRIF
11726 M:      Fabrizio Castro <[email protected]>
11727 L:      [email protected]
11728 L:      [email protected]
11729 S:      Supported
11730 T:      git git://linuxtv.org/media_tree.git
11731 F:      Documentation/devicetree/bindings/media/renesas,drif.yaml
11732 F:      drivers/media/platform/rcar_drif.c
11733
11734 MEDIA DRIVERS FOR RENESAS - FCP
11735 M:      Laurent Pinchart <[email protected]>
11736 L:      [email protected]
11737 L:      [email protected]
11738 S:      Supported
11739 T:      git git://linuxtv.org/media_tree.git
11740 F:      Documentation/devicetree/bindings/media/renesas,fcp.yaml
11741 F:      drivers/media/platform/rcar-fcp.c
11742 F:      include/media/rcar-fcp.h
11743
11744 MEDIA DRIVERS FOR RENESAS - FDP1
11745 M:      Kieran Bingham <[email protected]>
11746 L:      [email protected]
11747 L:      [email protected]
11748 S:      Supported
11749 T:      git git://linuxtv.org/media_tree.git
11750 F:      Documentation/devicetree/bindings/media/renesas,fdp1.yaml
11751 F:      drivers/media/platform/rcar_fdp1.c
11752
11753 MEDIA DRIVERS FOR RENESAS - VIN
11754 M:      Niklas Söderlund <[email protected]>
11755 L:      [email protected]
11756 L:      [email protected]
11757 S:      Supported
11758 T:      git git://linuxtv.org/media_tree.git
11759 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
11760 F:      Documentation/devicetree/bindings/media/renesas,isp.yaml
11761 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
11762 F:      drivers/media/platform/rcar-isp.c
11763 F:      drivers/media/platform/rcar-vin/
11764
11765 MEDIA DRIVERS FOR RENESAS - VSP1
11766 M:      Laurent Pinchart <[email protected]>
11767 M:      Kieran Bingham <[email protected]>
11768 L:      [email protected]
11769 L:      [email protected]
11770 S:      Supported
11771 T:      git git://linuxtv.org/media_tree.git
11772 F:      Documentation/devicetree/bindings/media/renesas,vsp1.yaml
11773 F:      drivers/media/platform/vsp1/
11774
11775 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
11776 L:      [email protected]
11777 S:      Orphan
11778 W:      https://linuxtv.org
11779 T:      git git://linuxtv.org/media_tree.git
11780 F:      drivers/media/dvb-frontends/stv0910*
11781
11782 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
11783 L:      [email protected]
11784 S:      Orphan
11785 W:      https://linuxtv.org
11786 T:      git git://linuxtv.org/media_tree.git
11787 F:      drivers/media/dvb-frontends/stv6111*
11788
11789 MEDIA DRIVERS FOR STM32 - DCMI
11790 M:      Hugues Fruchet <[email protected]>
11791 L:      [email protected]
11792 S:      Supported
11793 T:      git git://linuxtv.org/media_tree.git
11794 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
11795 F:      drivers/media/platform/stm32/stm32-dcmi.c
11796
11797 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
11798 M:      Mauro Carvalho Chehab <[email protected]>
11799 L:      [email protected]
11800 S:      Maintained
11801 W:      https://linuxtv.org
11802 Q:      http://patchwork.kernel.org/project/linux-media/list/
11803 T:      git git://linuxtv.org/media_tree.git
11804 F:      Documentation/admin-guide/media/
11805 F:      Documentation/devicetree/bindings/media/
11806 F:      Documentation/driver-api/media/
11807 F:      Documentation/userspace-api/media/
11808 F:      drivers/media/
11809 F:      drivers/staging/media/
11810 F:      include/linux/platform_data/media/
11811 F:      include/media/
11812 F:      include/uapi/linux/dvb/
11813 F:      include/uapi/linux/ivtv*
11814 F:      include/uapi/linux/media.h
11815 F:      include/uapi/linux/meye.h
11816 F:      include/uapi/linux/uvcvideo.h
11817 F:      include/uapi/linux/v4l2-*
11818 F:      include/uapi/linux/videodev2.h
11819
11820 MEDIATEK BLUETOOTH DRIVER
11821 M:      Sean Wang <[email protected]>
11822 L:      [email protected]
11823 L:      [email protected] (moderated for non-subscribers)
11824 S:      Maintained
11825 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
11826 F:      drivers/bluetooth/btmtkuart.c
11827
11828 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
11829 M:      Sean Wang <[email protected]>
11830 L:      [email protected]
11831 S:      Maintained
11832 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
11833 F:      drivers/power/reset/mt6323-poweroff.c
11834
11835 MEDIATEK CIR DRIVER
11836 M:      Sean Wang <[email protected]>
11837 S:      Maintained
11838 F:      drivers/media/rc/mtk-cir.c
11839
11840 MEDIATEK DMA DRIVER
11841 M:      Sean Wang <[email protected]>
11842 L:      [email protected]
11843 L:      [email protected] (moderated for non-subscribers)
11844 L:      [email protected] (moderated for non-subscribers)
11845 S:      Maintained
11846 F:      Documentation/devicetree/bindings/dma/mtk-*
11847 F:      drivers/dma/mediatek/
11848
11849 MEDIATEK ETHERNET DRIVER
11850 M:      Felix Fietkau <[email protected]>
11851 M:      John Crispin <[email protected]>
11852 M:      Sean Wang <[email protected]>
11853 M:      Mark Lee <[email protected]>
11854 L:      [email protected]
11855 S:      Maintained
11856 F:      drivers/net/ethernet/mediatek/
11857
11858 MEDIATEK I2C CONTROLLER DRIVER
11859 M:      Qii Wang <[email protected]>
11860 L:      [email protected]
11861 S:      Maintained
11862 F:      Documentation/devicetree/bindings/i2c/i2c-mt65xx.txt
11863 F:      drivers/i2c/busses/i2c-mt65xx.c
11864
11865 MEDIATEK IOMMU DRIVER
11866 M:      Yong Wu <[email protected]>
11867 L:      [email protected]
11868 L:      [email protected] (moderated for non-subscribers)
11869 S:      Supported
11870 F:      Documentation/devicetree/bindings/iommu/mediatek*
11871 F:      drivers/iommu/mtk_iommu*
11872 F:      include/dt-bindings/memory/mt*-port.h
11873
11874 MEDIATEK JPEG DRIVER
11875 M:      Rick Chang <[email protected]>
11876 M:      Bin Liu <[email protected]>
11877 S:      Supported
11878 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
11879 F:      drivers/media/platform/mtk-jpeg/
11880
11881 MEDIATEK MDP DRIVER
11882 M:      Minghsiu Tsai <[email protected]>
11883 M:      Houlong Wei <[email protected]>
11884 M:      Andrew-CT Chen <[email protected]>
11885 S:      Supported
11886 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
11887 F:      drivers/media/platform/mtk-mdp/
11888 F:      drivers/media/platform/mtk-vpu/
11889
11890 MEDIATEK MEDIA DRIVER
11891 M:      Tiffany Lin <[email protected]>
11892 M:      Andrew-CT Chen <[email protected]>
11893 S:      Supported
11894 F:      Documentation/devicetree/bindings/media/mediatek-vcodec.txt
11895 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
11896 F:      drivers/media/platform/mtk-vcodec/
11897 F:      drivers/media/platform/mtk-vpu/
11898
11899 MEDIATEK MMC/SD/SDIO DRIVER
11900 M:      Chaotian Jing <[email protected]>
11901 S:      Maintained
11902 F:      Documentation/devicetree/bindings/mmc/mtk-sd.yaml
11903 F:      drivers/mmc/host/mtk-sd.c
11904
11905 MEDIATEK MT76 WIRELESS LAN DRIVER
11906 M:      Felix Fietkau <[email protected]>
11907 M:      Lorenzo Bianconi <[email protected]>
11908 M:      Ryder Lee <[email protected]>
11909 R:      Shayne Chen <[email protected]>
11910 R:      Sean Wang <[email protected]>
11911 L:      [email protected]
11912 S:      Maintained
11913 F:      drivers/net/wireless/mediatek/mt76/
11914
11915 MEDIATEK MT7601U WIRELESS LAN DRIVER
11916 M:      Jakub Kicinski <[email protected]>
11917 L:      [email protected]
11918 S:      Maintained
11919 F:      drivers/net/wireless/mediatek/mt7601u/
11920
11921 MEDIATEK MT7621 CLOCK DRIVER
11922 M:      Sergio Paracuellos <[email protected]>
11923 S:      Maintained
11924 F:      Documentation/devicetree/bindings/clock/mediatek,mt7621-sysc.yaml
11925 F:      drivers/clk/ralink/clk-mt7621.c
11926
11927 MEDIATEK MT7621/28/88 I2C DRIVER
11928 M:      Stefan Roese <[email protected]>
11929 L:      [email protected]
11930 S:      Maintained
11931 F:      Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
11932 F:      drivers/i2c/busses/i2c-mt7621.c
11933
11934 MEDIATEK MT7621 PHY PCI DRIVER
11935 M:      Sergio Paracuellos <[email protected]>
11936 S:      Maintained
11937 F:      Documentation/devicetree/bindings/phy/mediatek,mt7621-pci-phy.yaml
11938 F:      drivers/phy/ralink/phy-mt7621-pci.c
11939
11940 MEDIATEK NAND CONTROLLER DRIVER
11941 L:      [email protected]
11942 S:      Orphan
11943 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
11944 F:      drivers/mtd/nand/raw/mtk_*
11945
11946 MEDIATEK PMIC LED DRIVER
11947 M:      Sean Wang <[email protected]>
11948 S:      Maintained
11949 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
11950 F:      drivers/leds/leds-mt6323.c
11951
11952 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
11953 M:      Sean Wang <[email protected]>
11954 S:      Maintained
11955 F:      drivers/char/hw_random/mtk-rng.c
11956
11957 MEDIATEK SWITCH DRIVER
11958 M:      Sean Wang <[email protected]>
11959 M:      Landen Chao <[email protected]>
11960 M:      DENG Qingfang <[email protected]>
11961 L:      [email protected]
11962 S:      Maintained
11963 F:      drivers/net/dsa/mt7530.*
11964 F:      net/dsa/tag_mtk.c
11965
11966 MEDIATEK USB3 DRD IP DRIVER
11967 M:      Chunfeng Yun <[email protected]>
11968 L:      [email protected]
11969 L:      [email protected] (moderated for non-subscribers)
11970 L:      [email protected] (moderated for non-subscribers)
11971 S:      Maintained
11972 F:      Documentation/devicetree/bindings/usb/mediatek,*
11973 F:      drivers/usb/host/xhci-mtk*
11974 F:      drivers/usb/mtu3/
11975
11976 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
11977 M:      Peter Senna Tschudin <[email protected]>
11978 M:      Martin Donnelly <[email protected]>
11979 M:      Martyn Welch <[email protected]>
11980 S:      Maintained
11981 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
11982 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
11983
11984 MEGARAID SCSI/SAS DRIVERS
11985 M:      Kashyap Desai <[email protected]>
11986 M:      Sumit Saxena <[email protected]>
11987 M:      Shivasharan S <[email protected]>
11988 L:      [email protected]
11989 L:      [email protected]
11990 S:      Maintained
11991 W:      http://www.avagotech.com/support/
11992 F:      Documentation/scsi/megaraid.rst
11993 F:      drivers/scsi/megaraid.*
11994 F:      drivers/scsi/megaraid/
11995
11996 MELEXIS MLX90614 DRIVER
11997 M:      Crt Mori <[email protected]>
11998 L:      [email protected]
11999 S:      Supported
12000 W:      http://www.melexis.com
12001 F:      drivers/iio/temperature/mlx90614.c
12002
12003 MELEXIS MLX90632 DRIVER
12004 M:      Crt Mori <[email protected]>
12005 L:      [email protected]
12006 S:      Supported
12007 W:      http://www.melexis.com
12008 F:      drivers/iio/temperature/mlx90632.c
12009
12010 MELFAS MIP4 TOUCHSCREEN DRIVER
12011 M:      Sangwon Jee <[email protected]>
12012 S:      Supported
12013 W:      http://www.melfas.com
12014 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
12015 F:      drivers/input/touchscreen/melfas_mip4.c
12016
12017 MELLANOX BLUEFIELD I2C DRIVER
12018 M:      Khalil Blaiech <[email protected]>
12019 L:      [email protected]
12020 S:      Supported
12021 F:      Documentation/devicetree/bindings/i2c/mellanox,i2c-mlxbf.yaml
12022 F:      drivers/i2c/busses/i2c-mlxbf.c
12023
12024 MELLANOX ETHERNET DRIVER (mlx4_en)
12025 M:      Tariq Toukan <[email protected]>
12026 L:      [email protected]
12027 S:      Supported
12028 W:      http://www.mellanox.com
12029 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12030 F:      drivers/net/ethernet/mellanox/mlx4/en_*
12031
12032 MELLANOX ETHERNET DRIVER (mlx5e)
12033 M:      Saeed Mahameed <[email protected]>
12034 L:      [email protected]
12035 S:      Supported
12036 W:      http://www.mellanox.com
12037 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12038 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
12039
12040 MELLANOX ETHERNET INNOVA DRIVERS
12041 R:      Boris Pismenny <[email protected]>
12042 L:      [email protected]
12043 S:      Supported
12044 W:      http://www.mellanox.com
12045 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12046 F:      drivers/net/ethernet/mellanox/mlx5/core/accel/*
12047 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
12048 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
12049 F:      include/linux/mlx5/mlx5_ifc_fpga.h
12050
12051 MELLANOX ETHERNET SWITCH DRIVERS
12052 M:      Jiri Pirko <[email protected]>
12053 M:      Ido Schimmel <[email protected]>
12054 L:      [email protected]
12055 S:      Supported
12056 W:      http://www.mellanox.com
12057 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12058 F:      drivers/net/ethernet/mellanox/mlxsw/
12059 F:      tools/testing/selftests/drivers/net/mlxsw/
12060
12061 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
12062 M:      [email protected]
12063 L:      [email protected]
12064 S:      Supported
12065 W:      http://www.mellanox.com
12066 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12067 F:      drivers/net/ethernet/mellanox/mlxfw/
12068
12069 MELLANOX HARDWARE PLATFORM SUPPORT
12070 M:      Hans de Goede <[email protected]>
12071 M:      Mark Gross <[email protected]>
12072 M:      Vadim Pasternak <[email protected]>
12073 L:      [email protected]
12074 S:      Supported
12075 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
12076 F:      drivers/platform/mellanox/
12077 F:      include/linux/platform_data/mlxreg.h
12078
12079 MELLANOX MLX4 core VPI driver
12080 M:      Tariq Toukan <[email protected]>
12081 L:      [email protected]
12082 L:      [email protected]
12083 S:      Supported
12084 W:      http://www.mellanox.com
12085 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12086 F:      drivers/net/ethernet/mellanox/mlx4/
12087 F:      include/linux/mlx4/
12088
12089 MELLANOX MLX4 IB driver
12090 M:      Yishai Hadas <[email protected]>
12091 L:      [email protected]
12092 S:      Supported
12093 W:      http://www.mellanox.com
12094 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
12095 F:      drivers/infiniband/hw/mlx4/
12096 F:      include/linux/mlx4/
12097 F:      include/uapi/rdma/mlx4-abi.h
12098
12099 MELLANOX MLX5 core VPI driver
12100 M:      Saeed Mahameed <[email protected]>
12101 M:      Leon Romanovsky <[email protected]>
12102 L:      [email protected]
12103 L:      [email protected]
12104 S:      Supported
12105 W:      http://www.mellanox.com
12106 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12107 F:      Documentation/networking/device_drivers/ethernet/mellanox/
12108 F:      drivers/net/ethernet/mellanox/mlx5/core/
12109 F:      include/linux/mlx5/
12110
12111 MELLANOX MLX5 IB driver
12112 M:      Leon Romanovsky <[email protected]>
12113 L:      [email protected]
12114 S:      Supported
12115 W:      http://www.mellanox.com
12116 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
12117 F:      drivers/infiniband/hw/mlx5/
12118 F:      include/linux/mlx5/
12119 F:      include/uapi/rdma/mlx5-abi.h
12120
12121 MELLANOX MLXCPLD I2C AND MUX DRIVER
12122 M:      Vadim Pasternak <[email protected]>
12123 M:      Michael Shych <[email protected]>
12124 L:      [email protected]
12125 S:      Supported
12126 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
12127 F:      drivers/i2c/busses/i2c-mlxcpld.c
12128 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
12129
12130 MELLANOX MLXCPLD LED DRIVER
12131 M:      Vadim Pasternak <[email protected]>
12132 L:      [email protected]
12133 S:      Supported
12134 F:      Documentation/leds/leds-mlxcpld.rst
12135 F:      drivers/leds/leds-mlxcpld.c
12136 F:      drivers/leds/leds-mlxreg.c
12137
12138 MELLANOX PLATFORM DRIVER
12139 M:      Vadim Pasternak <[email protected]>
12140 L:      [email protected]
12141 S:      Supported
12142 F:      drivers/platform/x86/mlx-platform.c
12143
12144 MEMBARRIER SUPPORT
12145 M:      Mathieu Desnoyers <[email protected]>
12146 M:      "Paul E. McKenney" <[email protected]>
12147 L:      [email protected]
12148 S:      Supported
12149 F:      arch/powerpc/include/asm/membarrier.h
12150 F:      include/uapi/linux/membarrier.h
12151 F:      kernel/sched/membarrier.c
12152
12153 MEMBLOCK
12154 M:      Mike Rapoport <[email protected]>
12155 L:      [email protected]
12156 S:      Maintained
12157 F:      Documentation/core-api/boot-time-mm.rst
12158 F:      include/linux/memblock.h
12159 F:      mm/memblock.c
12160
12161 MEMORY CONTROLLER DRIVERS
12162 M:      Krzysztof Kozlowski <[email protected]>
12163 L:      [email protected]
12164 S:      Maintained
12165 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git
12166 F:      Documentation/devicetree/bindings/memory-controllers/
12167 F:      drivers/memory/
12168 F:      include/dt-bindings/memory/
12169 F:      include/memory/
12170
12171 MEMORY FREQUENCY SCALING DRIVERS FOR NVIDIA TEGRA
12172 M:      Dmitry Osipenko <[email protected]>
12173 L:      [email protected]
12174 L:      [email protected]
12175 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
12176 S:      Maintained
12177 F:      drivers/devfreq/tegra30-devfreq.c
12178
12179 MEMORY MANAGEMENT
12180 M:      Andrew Morton <[email protected]>
12181 L:      [email protected]
12182 S:      Maintained
12183 W:      http://www.linux-mm.org
12184 T:      quilt https://ozlabs.org/~akpm/mmotm/
12185 T:      quilt https://ozlabs.org/~akpm/mmots/
12186 T:      git git://github.com/hnaz/linux-mm.git
12187 F:      include/linux/gfp.h
12188 F:      include/linux/memory_hotplug.h
12189 F:      include/linux/mm.h
12190 F:      include/linux/mmzone.h
12191 F:      include/linux/pagewalk.h
12192 F:      include/linux/vmalloc.h
12193 F:      mm/
12194 F:      tools/testing/selftests/vm/
12195
12196 MEMORY TECHNOLOGY DEVICES (MTD)
12197 M:      Miquel Raynal <[email protected]>
12198 M:      Richard Weinberger <[email protected]>
12199 M:      Vignesh Raghavendra <[email protected]>
12200 L:      [email protected]
12201 S:      Maintained
12202 W:      http://www.linux-mtd.infradead.org/
12203 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
12204 C:      irc://irc.oftc.net/mtd
12205 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
12206 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
12207 F:      Documentation/devicetree/bindings/mtd/
12208 F:      drivers/mtd/
12209 F:      include/linux/mtd/
12210 F:      include/uapi/mtd/
12211
12212 MEN A21 WATCHDOG DRIVER
12213 M:      Johannes Thumshirn <[email protected]>
12214 L:      [email protected]
12215 S:      Maintained
12216 F:      drivers/watchdog/mena21_wdt.c
12217
12218 MEN CHAMELEON BUS (mcb)
12219 M:      Johannes Thumshirn <[email protected]>
12220 S:      Maintained
12221 F:      Documentation/driver-api/men-chameleon-bus.rst
12222 F:      drivers/mcb/
12223 F:      include/linux/mcb.h
12224
12225 MEN F21BMC (Board Management Controller)
12226 M:      Andreas Werner <[email protected]>
12227 S:      Supported
12228 F:      Documentation/hwmon/menf21bmc.rst
12229 F:      drivers/hwmon/menf21bmc_hwmon.c
12230 F:      drivers/leds/leds-menf21bmc.c
12231 F:      drivers/mfd/menf21bmc.c
12232 F:      drivers/watchdog/menf21bmc_wdt.c
12233
12234 MEN Z069 WATCHDOG DRIVER
12235 M:      Johannes Thumshirn <[email protected]>
12236 L:      [email protected]
12237 S:      Maintained
12238 F:      drivers/watchdog/menz69_wdt.c
12239
12240 MESON AO CEC DRIVER FOR AMLOGIC SOCS
12241 M:      Neil Armstrong <[email protected]>
12242 L:      [email protected]
12243 L:      [email protected]
12244 S:      Supported
12245 W:      http://linux-meson.com/
12246 T:      git git://linuxtv.org/media_tree.git
12247 F:      Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
12248 F:      drivers/media/cec/platform/meson/ao-cec-g12a.c
12249 F:      drivers/media/cec/platform/meson/ao-cec.c
12250
12251 MESON GE2D DRIVER FOR AMLOGIC SOCS
12252 M:      Neil Armstrong <[email protected]>
12253 L:      [email protected]
12254 L:      [email protected]
12255 S:      Supported
12256 T:      git git://linuxtv.org/media_tree.git
12257 F:      Documentation/devicetree/bindings/media/amlogic,axg-ge2d.yaml
12258 F:      drivers/media/platform/meson/ge2d/
12259
12260 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
12261 M:      Liang Yang <[email protected]>
12262 L:      [email protected]
12263 S:      Maintained
12264 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
12265 F:      drivers/mtd/nand/raw/meson_*
12266
12267 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
12268 M:      Neil Armstrong <[email protected]>
12269 L:      [email protected]
12270 L:      [email protected]
12271 S:      Supported
12272 T:      git git://linuxtv.org/media_tree.git
12273 F:      Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
12274 F:      drivers/staging/media/meson/vdec/
12275
12276 METHODE UDPU SUPPORT
12277 M:      Vladimir Vid <[email protected]>
12278 S:      Maintained
12279 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
12280
12281 MHI BUS
12282 M:      Manivannan Sadhasivam <[email protected]>
12283 M:      Hemant Kumar <[email protected]>
12284 L:      [email protected]
12285 S:      Maintained
12286 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
12287 F:      Documentation/ABI/stable/sysfs-bus-mhi
12288 F:      Documentation/mhi/
12289 F:      drivers/bus/mhi/
12290 F:      include/linux/mhi.h
12291
12292 MICROBLAZE ARCHITECTURE
12293 M:      Michal Simek <[email protected]>
12294 S:      Supported
12295 W:      http://www.monstr.eu/fdt/
12296 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
12297 F:      arch/microblaze/
12298
12299 MICROCHIP AT91 DMA DRIVERS
12300 M:      Ludovic Desroches <[email protected]>
12301 M:      Tudor Ambarus <[email protected]>
12302 L:      [email protected] (moderated for non-subscribers)
12303 L:      [email protected]
12304 S:      Supported
12305 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
12306 F:      drivers/dma/at_hdmac.c
12307 F:      drivers/dma/at_hdmac_regs.h
12308 F:      drivers/dma/at_xdmac.c
12309 F:      include/dt-bindings/dma/at91.h
12310
12311 MICROCHIP AT91 SERIAL DRIVER
12312 M:      Richard Genoud <[email protected]>
12313 S:      Maintained
12314 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12315 F:      drivers/tty/serial/atmel_serial.c
12316 F:      drivers/tty/serial/atmel_serial.h
12317
12318 MICROCHIP AT91 USART MFD DRIVER
12319 M:      Radu Pirea <[email protected]>
12320 L:      [email protected]
12321 S:      Supported
12322 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12323 F:      drivers/mfd/at91-usart.c
12324 F:      include/dt-bindings/mfd/at91-usart.h
12325
12326 MICROCHIP AT91 USART SPI DRIVER
12327 M:      Radu Pirea <[email protected]>
12328 L:      [email protected]
12329 S:      Supported
12330 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12331 F:      drivers/spi/spi-at91-usart.c
12332
12333 MICROCHIP AUDIO ASOC DRIVERS
12334 M:      Codrin Ciubotariu <[email protected]>
12335 L:      [email protected] (moderated for non-subscribers)
12336 S:      Supported
12337 F:      sound/soc/atmel
12338
12339 MICROCHIP ECC DRIVER
12340 M:      Tudor Ambarus <[email protected]>
12341 L:      [email protected]
12342 S:      Maintained
12343 F:      drivers/crypto/atmel-ecc.*
12344
12345 MICROCHIP EIC DRIVER
12346 M:      Claudiu Beznea <[email protected]>
12347 L:      [email protected] (moderated for non-subscribers)
12348 S:      Supported
12349 F:      drivers/irqchip/irq-mchp-eic.c
12350
12351 MICROCHIP I2C DRIVER
12352 M:      Codrin Ciubotariu <[email protected]>
12353 L:      [email protected]
12354 S:      Supported
12355 F:      drivers/i2c/busses/i2c-at91-*.c
12356 F:      drivers/i2c/busses/i2c-at91.h
12357
12358 MICROCHIP ISC DRIVER
12359 M:      Eugen Hristev <[email protected]>
12360 L:      [email protected]
12361 S:      Supported
12362 F:      Documentation/devicetree/bindings/media/atmel,isc.yaml
12363 F:      Documentation/devicetree/bindings/media/microchip,xisc.yaml
12364 F:      drivers/media/platform/atmel/atmel-isc-base.c
12365 F:      drivers/media/platform/atmel/atmel-isc-regs.h
12366 F:      drivers/media/platform/atmel/atmel-isc.h
12367 F:      drivers/media/platform/atmel/atmel-sama5d2-isc.c
12368 F:      drivers/media/platform/atmel/atmel-sama7g5-isc.c
12369 F:      include/linux/atmel-isc-media.h
12370
12371 MICROCHIP ISI DRIVER
12372 M:      Eugen Hristev <[email protected]>
12373 L:      [email protected]
12374 S:      Supported
12375 F:      drivers/media/platform/atmel/atmel-isi.c
12376 F:      drivers/media/platform/atmel/atmel-isi.h
12377
12378 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
12379 M:      Woojung Huh <[email protected]>
12380 M:      [email protected]
12381 L:      [email protected]
12382 S:      Maintained
12383 F:      Documentation/devicetree/bindings/net/dsa/microchip,ksz.yaml
12384 F:      drivers/net/dsa/microchip/*
12385 F:      include/linux/platform_data/microchip-ksz.h
12386 F:      net/dsa/tag_ksz.c
12387
12388 MICROCHIP LAN743X ETHERNET DRIVER
12389 M:      Bryan Whitehead <[email protected]>
12390 M:      [email protected]
12391 L:      [email protected]
12392 S:      Maintained
12393 F:      drivers/net/ethernet/microchip/lan743x_*
12394
12395 MICROCHIP LCDFB DRIVER
12396 M:      Nicolas Ferre <[email protected]>
12397 L:      [email protected]
12398 S:      Maintained
12399 F:      drivers/video/fbdev/atmel_lcdfb.c
12400 F:      include/video/atmel_lcdc.h
12401
12402 MICROCHIP MCP16502 PMIC DRIVER
12403 M:      Claudiu Beznea <[email protected]>
12404 L:      [email protected] (moderated for non-subscribers)
12405 S:      Supported
12406 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
12407 F:      drivers/regulator/mcp16502.c
12408
12409 MICROCHIP MCP3911 ADC DRIVER
12410 M:      Marcus Folkesson <[email protected]>
12411 M:      Kent Gustavsson <[email protected]>
12412 L:      [email protected]
12413 S:      Supported
12414 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
12415 F:      drivers/iio/adc/mcp3911.c
12416
12417 MICROCHIP MMC/SD/SDIO MCI DRIVER
12418 M:      Ludovic Desroches <[email protected]>
12419 S:      Maintained
12420 F:      drivers/mmc/host/atmel-mci.c
12421
12422 MICROCHIP NAND DRIVER
12423 M:      Tudor Ambarus <[email protected]>
12424 L:      [email protected]
12425 S:      Supported
12426 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
12427 F:      drivers/mtd/nand/raw/atmel/*
12428
12429 MICROCHIP PWM DRIVER
12430 M:      Claudiu Beznea <[email protected]>
12431 L:      [email protected] (moderated for non-subscribers)
12432 L:      [email protected]
12433 S:      Supported
12434 F:      Documentation/devicetree/bindings/pwm/atmel-pwm.txt
12435 F:      drivers/pwm/pwm-atmel.c
12436
12437 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
12438 M:      Eugen Hristev <[email protected]>
12439 L:      [email protected]
12440 S:      Supported
12441 F:      Documentation/devicetree/bindings/iio/adc/atmel,sama5d2-adc.yaml
12442 F:      drivers/iio/adc/at91-sama5d2_adc.c
12443 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
12444
12445 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
12446 M:      Claudiu Beznea <[email protected]>
12447 S:      Supported
12448 F:      drivers/power/reset/at91-sama5d2_shdwc.c
12449
12450 MICROCHIP SPI DRIVER
12451 M:      Tudor Ambarus <[email protected]>
12452 S:      Supported
12453 F:      drivers/spi/spi-atmel.*
12454
12455 MICROCHIP SSC DRIVER
12456 M:      Codrin Ciubotariu <[email protected]>
12457 L:      [email protected] (moderated for non-subscribers)
12458 S:      Supported
12459 F:      drivers/misc/atmel-ssc.c
12460 F:      include/linux/atmel-ssc.h
12461
12462 MICROCHIP USB251XB DRIVER
12463 M:      Richard Leitner <[email protected]>
12464 L:      [email protected]
12465 S:      Maintained
12466 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
12467 F:      drivers/usb/misc/usb251xb.c
12468
12469 MICROCHIP USBA UDC DRIVER
12470 M:      Cristian Birsan <[email protected]>
12471 L:      [email protected] (moderated for non-subscribers)
12472 S:      Supported
12473 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
12474
12475 MICROCHIP WILC1000 WIFI DRIVER
12476 M:      Ajay Singh <[email protected]>
12477 M:      Claudiu Beznea <[email protected]>
12478 L:      [email protected]
12479 S:      Supported
12480 F:      drivers/net/wireless/microchip/wilc1000/
12481
12482 MICROSEMI MIPS SOCS
12483 M:      Alexandre Belloni <[email protected]>
12484 M:      [email protected]
12485 L:      [email protected]
12486 S:      Supported
12487 F:      Documentation/devicetree/bindings/mips/mscc.txt
12488 F:      Documentation/devicetree/bindings/power/reset/ocelot-reset.txt
12489 F:      arch/mips/boot/dts/mscc/
12490 F:      arch/mips/configs/generic/board-ocelot.config
12491 F:      arch/mips/generic/board-ocelot.c
12492
12493 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
12494 M:      Don Brace <[email protected]>
12495 L:      [email protected]
12496 L:      [email protected]
12497 S:      Supported
12498 F:      Documentation/scsi/smartpqi.rst
12499 F:      drivers/scsi/smartpqi/Kconfig
12500 F:      drivers/scsi/smartpqi/Makefile
12501 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
12502 F:      include/linux/cciss*.h
12503 F:      include/uapi/linux/cciss*.h
12504
12505 MICROSOFT SURFACE BATTERY AND AC DRIVERS
12506 M:      Maximilian Luz <[email protected]>
12507 L:      [email protected]
12508 L:      [email protected]
12509 S:      Maintained
12510 F:      drivers/power/supply/surface_battery.c
12511 F:      drivers/power/supply/surface_charger.c
12512
12513 MICROSOFT SURFACE DTX DRIVER
12514 M:      Maximilian Luz <[email protected]>
12515 L:      [email protected]
12516 S:      Maintained
12517 F:      Documentation/driver-api/surface_aggregator/clients/dtx.rst
12518 F:      drivers/platform/surface/surface_dtx.c
12519 F:      include/uapi/linux/surface_aggregator/dtx.h
12520
12521 MICROSOFT SURFACE GPE LID SUPPORT DRIVER
12522 M:      Maximilian Luz <[email protected]>
12523 L:      [email protected]
12524 S:      Maintained
12525 F:      drivers/platform/surface/surface_gpe.c
12526
12527 MICROSOFT SURFACE HARDWARE PLATFORM SUPPORT
12528 M:      Hans de Goede <[email protected]>
12529 M:      Mark Gross <[email protected]>
12530 M:      Maximilian Luz <[email protected]>
12531 L:      [email protected]
12532 S:      Maintained
12533 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
12534 F:      drivers/platform/surface/
12535
12536 MICROSOFT SURFACE HID TRANSPORT DRIVER
12537 M:      Maximilian Luz <[email protected]>
12538 L:      [email protected]
12539 L:      [email protected]
12540 S:      Maintained
12541 F:      drivers/hid/surface-hid/
12542
12543 MICROSOFT SURFACE HOT-PLUG DRIVER
12544 M:      Maximilian Luz <[email protected]>
12545 L:      [email protected]
12546 S:      Maintained
12547 F:      drivers/platform/surface/surface_hotplug.c
12548
12549 MICROSOFT SURFACE PLATFORM PROFILE DRIVER
12550 M:      Maximilian Luz <[email protected]>
12551 L:      [email protected]
12552 S:      Maintained
12553 F:      drivers/platform/surface/surface_platform_profile.c
12554
12555 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
12556 M:      Chen Yu <[email protected]>
12557 L:      [email protected]
12558 S:      Supported
12559 F:      drivers/platform/surface/surfacepro3_button.c
12560
12561 MICROSOFT SURFACE SYSTEM AGGREGATOR SUBSYSTEM
12562 M:      Maximilian Luz <[email protected]>
12563 L:      [email protected]
12564 S:      Maintained
12565 W:      https://github.com/linux-surface/surface-aggregator-module
12566 C:      irc://irc.libera.chat/linux-surface
12567 F:      Documentation/driver-api/surface_aggregator/
12568 F:      drivers/platform/surface/aggregator/
12569 F:      drivers/platform/surface/surface_acpi_notify.c
12570 F:      drivers/platform/surface/surface_aggregator_cdev.c
12571 F:      drivers/platform/surface/surface_aggregator_registry.c
12572 F:      include/linux/surface_acpi_notify.h
12573 F:      include/linux/surface_aggregator/
12574 F:      include/uapi/linux/surface_aggregator/
12575
12576 MICROTEK X6 SCANNER
12577 M:      Oliver Neukum <[email protected]>
12578 S:      Maintained
12579 F:      drivers/usb/image/microtek.*
12580
12581 MIKROTIK CRS3XX 98DX3236 BOARD SUPPORT
12582 M:      Luka Kovacic <[email protected]>
12583 M:      Luka Perkov <[email protected]>
12584 S:      Maintained
12585 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s-bit.dts
12586 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s.dts
12587 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s-bit.dts
12588 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s.dts
12589 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s-bit.dts
12590 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s.dts
12591
12592 MIPI CCS, SMIA AND SMIA++ IMAGE SENSOR DRIVER
12593 M:      Sakari Ailus <[email protected]>
12594 L:      [email protected]
12595 S:      Maintained
12596 F:      Documentation/devicetree/bindings/media/i2c/mipi-ccs.yaml
12597 F:      Documentation/driver-api/media/drivers/ccs/
12598 F:      Documentation/userspace-api/media/drivers/ccs.rst
12599 F:      drivers/media/i2c/ccs-pll.c
12600 F:      drivers/media/i2c/ccs-pll.h
12601 F:      drivers/media/i2c/ccs/
12602 F:      include/uapi/linux/ccs.h
12603 F:      include/uapi/linux/smiapp.h
12604
12605 MIPS
12606 M:      Thomas Bogendoerfer <[email protected]>
12607 L:      [email protected]
12608 S:      Maintained
12609 W:      http://www.linux-mips.org/
12610 Q:      https://patchwork.kernel.org/project/linux-mips/list/
12611 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
12612 F:      Documentation/devicetree/bindings/mips/
12613 F:      Documentation/mips/
12614 F:      arch/mips/
12615 F:      drivers/platform/mips/
12616
12617 MIPS BOSTON DEVELOPMENT BOARD
12618 M:      Paul Burton <[email protected]>
12619 L:      [email protected]
12620 S:      Maintained
12621 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
12622 F:      arch/mips/boot/dts/img/boston.dts
12623 F:      arch/mips/configs/generic/board-boston.config
12624 F:      drivers/clk/imgtec/clk-boston.c
12625 F:      include/dt-bindings/clock/boston-clock.h
12626
12627 MIPS CORE DRIVERS
12628 M:      Thomas Bogendoerfer <[email protected]>
12629 M:      Serge Semin <[email protected]>
12630 L:      [email protected]
12631 S:      Supported
12632 F:      drivers/bus/mips_cdmm.c
12633 F:      drivers/clocksource/mips-gic-timer.c
12634 F:      drivers/cpuidle/cpuidle-cps.c
12635 F:      drivers/irqchip/irq-mips-cpu.c
12636 F:      drivers/irqchip/irq-mips-gic.c
12637
12638 MIPS GENERIC PLATFORM
12639 M:      Paul Burton <[email protected]>
12640 L:      [email protected]
12641 S:      Supported
12642 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.yaml
12643 F:      arch/mips/generic/
12644 F:      arch/mips/tools/generic-board-config.sh
12645
12646 MIPS RINT INSTRUCTION EMULATION
12647 M:      Aleksandar Markovic <[email protected]>
12648 L:      [email protected]
12649 S:      Supported
12650 F:      arch/mips/math-emu/dp_rint.c
12651 F:      arch/mips/math-emu/sp_rint.c
12652
12653 MIPS/LOONGSON1 ARCHITECTURE
12654 M:      Keguang Zhang <[email protected]>
12655 L:      [email protected]
12656 S:      Maintained
12657 F:      arch/mips/include/asm/mach-loongson32/
12658 F:      arch/mips/loongson32/
12659 F:      drivers/*/*/*loongson1*
12660 F:      drivers/*/*loongson1*
12661
12662 MIPS/LOONGSON2EF ARCHITECTURE
12663 M:      Jiaxun Yang <[email protected]>
12664 L:      [email protected]
12665 S:      Maintained
12666 F:      arch/mips/include/asm/mach-loongson2ef/
12667 F:      arch/mips/loongson2ef/
12668 F:      drivers/cpufreq/loongson2_cpufreq.c
12669
12670 MIPS/LOONGSON64 ARCHITECTURE
12671 M:      Huacai Chen <[email protected]>
12672 M:      Jiaxun Yang <[email protected]>
12673 L:      [email protected]
12674 S:      Maintained
12675 F:      arch/mips/include/asm/mach-loongson64/
12676 F:      arch/mips/loongson64/
12677 F:      drivers/irqchip/irq-loongson*
12678 F:      drivers/platform/mips/cpu_hwmon.c
12679
12680 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
12681 M:      Hans Verkuil <[email protected]>
12682 L:      [email protected]
12683 S:      Odd Fixes
12684 W:      https://linuxtv.org
12685 T:      git git://linuxtv.org/media_tree.git
12686 F:      drivers/media/radio/radio-miropcm20*
12687
12688 MMP SUPPORT
12689 R:      Lubomir Rintel <[email protected]>
12690 L:      [email protected] (moderated for non-subscribers)
12691 S:      Odd Fixes
12692 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
12693 F:      arch/arm/boot/dts/mmp*
12694 F:      arch/arm/mach-mmp/
12695 F:      include/linux/soc/mmp/
12696
12697 MMP USB PHY DRIVERS
12698 R:      Lubomir Rintel <[email protected]>
12699 L:      [email protected] (moderated for non-subscribers)
12700 S:      Maintained
12701 F:      drivers/phy/marvell/phy-mmp3-usb.c
12702 F:      drivers/phy/marvell/phy-pxa-usb.c
12703
12704 MMU GATHER AND TLB INVALIDATION
12705 M:      Will Deacon <[email protected]>
12706 M:      "Aneesh Kumar K.V" <[email protected]>
12707 M:      Andrew Morton <[email protected]>
12708 M:      Nick Piggin <[email protected]>
12709 M:      Peter Zijlstra <[email protected]>
12710 L:      [email protected]
12711 L:      [email protected]
12712 S:      Maintained
12713 F:      arch/*/include/asm/tlb.h
12714 F:      include/asm-generic/tlb.h
12715 F:      mm/mmu_gather.c
12716
12717 MN88472 MEDIA DRIVER
12718 M:      Antti Palosaari <[email protected]>
12719 L:      [email protected]
12720 S:      Maintained
12721 W:      https://linuxtv.org
12722 W:      http://palosaari.fi/linux/
12723 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12724 F:      drivers/media/dvb-frontends/mn88472*
12725
12726 MN88473 MEDIA DRIVER
12727 M:      Antti Palosaari <[email protected]>
12728 L:      [email protected]
12729 S:      Maintained
12730 W:      https://linuxtv.org
12731 W:      http://palosaari.fi/linux/
12732 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12733 F:      drivers/media/dvb-frontends/mn88473*
12734
12735 MODULE SUPPORT
12736 M:      Luis Chamberlain <[email protected]>
12737 M:      Jessica Yu <[email protected]>
12738 S:      Maintained
12739 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
12740 F:      include/linux/module.h
12741 F:      kernel/module.c
12742
12743 MONOLITHIC POWER SYSTEM PMIC DRIVER
12744 M:      Saravanan Sekar <[email protected]>
12745 S:      Maintained
12746 F:      Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
12747 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
12748 F:      drivers/iio/adc/mp2629_adc.c
12749 F:      drivers/mfd/mp2629.c
12750 F:      drivers/power/supply/mp2629_charger.c
12751 F:      drivers/regulator/mp5416.c
12752 F:      drivers/regulator/mpq7920.c
12753 F:      drivers/regulator/mpq7920.h
12754 F:      include/linux/mfd/mp2629.h
12755
12756 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
12757 S:      Orphan
12758 W:      http://popies.net/meye/
12759 F:      Documentation/userspace-api/media/drivers/meye*
12760 F:      drivers/media/pci/meye/
12761 F:      include/uapi/linux/meye.h
12762
12763 MOTORCOMM PHY DRIVER
12764 M:      Peter Geis <[email protected]>
12765 L:      [email protected]
12766 S:      Maintained
12767 F:      drivers/net/phy/motorcomm.c
12768
12769 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
12770 M:      Jiri Slaby <[email protected]>
12771 S:      Maintained
12772 F:      Documentation/driver-api/serial/moxa-smartio.rst
12773 F:      drivers/tty/mxser.*
12774
12775 MR800 AVERMEDIA USB FM RADIO DRIVER
12776 M:      Alexey Klimov <[email protected]>
12777 L:      [email protected]
12778 S:      Maintained
12779 T:      git git://linuxtv.org/media_tree.git
12780 F:      drivers/media/radio/radio-mr800.c
12781
12782 MRF24J40 IEEE 802.15.4 RADIO DRIVER
12783 M:      Alan Ott <[email protected]>
12784 L:      [email protected]
12785 S:      Maintained
12786 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
12787 F:      drivers/net/ieee802154/mrf24j40.c
12788
12789 MSI LAPTOP SUPPORT
12790 M:      "Lee, Chun-Yi" <[email protected]>
12791 L:      [email protected]
12792 S:      Maintained
12793 F:      drivers/platform/x86/msi-laptop.c
12794
12795 MSI WMI SUPPORT
12796 L:      [email protected]
12797 S:      Orphan
12798 F:      drivers/platform/x86/msi-wmi.c
12799
12800 MSI001 MEDIA DRIVER
12801 M:      Antti Palosaari <[email protected]>
12802 L:      [email protected]
12803 S:      Maintained
12804 W:      https://linuxtv.org
12805 W:      http://palosaari.fi/linux/
12806 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12807 T:      git git://linuxtv.org/anttip/media_tree.git
12808 F:      drivers/media/tuners/msi001*
12809
12810 MSI2500 MEDIA DRIVER
12811 M:      Antti Palosaari <[email protected]>
12812 L:      [email protected]
12813 S:      Maintained
12814 W:      https://linuxtv.org
12815 W:      http://palosaari.fi/linux/
12816 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12817 T:      git git://linuxtv.org/anttip/media_tree.git
12818 F:      drivers/media/usb/msi2500/
12819
12820 MSTAR INTERRUPT CONTROLLER DRIVER
12821 M:      Mark-PK Tsai <[email protected]>
12822 M:      Daniel Palmer <[email protected]>
12823 S:      Maintained
12824 F:      Documentation/devicetree/bindings/interrupt-controller/mstar,mst-intc.yaml
12825 F:      drivers/irqchip/irq-mst-intc.c
12826
12827 MSYSTEMS DISKONCHIP G3 MTD DRIVER
12828 M:      Robert Jarzmik <[email protected]>
12829 L:      [email protected]
12830 S:      Maintained
12831 F:      drivers/mtd/devices/docg3*
12832
12833 MT9M032 APTINA SENSOR DRIVER
12834 M:      Laurent Pinchart <[email protected]>
12835 L:      [email protected]
12836 S:      Maintained
12837 T:      git git://linuxtv.org/media_tree.git
12838 F:      drivers/media/i2c/mt9m032.c
12839 F:      include/media/i2c/mt9m032.h
12840
12841 MT9P031 APTINA CAMERA SENSOR
12842 M:      Laurent Pinchart <[email protected]>
12843 L:      [email protected]
12844 S:      Maintained
12845 T:      git git://linuxtv.org/media_tree.git
12846 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9p031.yaml
12847 F:      drivers/media/i2c/mt9p031.c
12848 F:      include/media/i2c/mt9p031.h
12849
12850 MT9T001 APTINA CAMERA SENSOR
12851 M:      Laurent Pinchart <[email protected]>
12852 L:      [email protected]
12853 S:      Maintained
12854 T:      git git://linuxtv.org/media_tree.git
12855 F:      drivers/media/i2c/mt9t001.c
12856 F:      include/media/i2c/mt9t001.h
12857
12858 MT9T112 APTINA CAMERA SENSOR
12859 M:      Jacopo Mondi <[email protected]>
12860 L:      [email protected]
12861 S:      Odd Fixes
12862 T:      git git://linuxtv.org/media_tree.git
12863 F:      drivers/media/i2c/mt9t112.c
12864 F:      include/media/i2c/mt9t112.h
12865
12866 MT9V032 APTINA CAMERA SENSOR
12867 M:      Laurent Pinchart <[email protected]>
12868 L:      [email protected]
12869 S:      Maintained
12870 T:      git git://linuxtv.org/media_tree.git
12871 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
12872 F:      drivers/media/i2c/mt9v032.c
12873 F:      include/media/i2c/mt9v032.h
12874
12875 MT9V111 APTINA CAMERA SENSOR
12876 M:      Jacopo Mondi <[email protected]>
12877 L:      [email protected]
12878 S:      Maintained
12879 T:      git git://linuxtv.org/media_tree.git
12880 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.yaml
12881 F:      drivers/media/i2c/mt9v111.c
12882
12883 MULTIFUNCTION DEVICES (MFD)
12884 M:      Lee Jones <[email protected]>
12885 S:      Supported
12886 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
12887 F:      Documentation/devicetree/bindings/mfd/
12888 F:      drivers/mfd/
12889 F:      include/dt-bindings/mfd/
12890 F:      include/linux/mfd/
12891
12892 MULTIMEDIA CARD (MMC) ETC. OVER SPI
12893 S:      Orphan
12894 F:      drivers/mmc/host/mmc_spi.c
12895 F:      include/linux/spi/mmc_spi.h
12896
12897 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
12898 M:      Ulf Hansson <[email protected]>
12899 L:      [email protected]
12900 S:      Maintained
12901 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
12902 F:      Documentation/devicetree/bindings/mmc/
12903 F:      drivers/mmc/
12904 F:      include/linux/mmc/
12905 F:      include/uapi/linux/mmc/
12906
12907 MULTIPLEXER SUBSYSTEM
12908 M:      Peter Rosin <[email protected]>
12909 S:      Maintained
12910 F:      Documentation/ABI/testing/sysfs-class-mux*
12911 F:      Documentation/devicetree/bindings/mux/
12912 F:      drivers/mux/
12913 F:      include/dt-bindings/mux/
12914 F:      include/linux/mux/
12915
12916 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
12917 M:      Bin Liu <[email protected]>
12918 L:      [email protected]
12919 S:      Maintained
12920 F:      drivers/usb/musb/
12921
12922 MXL301RF MEDIA DRIVER
12923 M:      Akihiro Tsukada <[email protected]>
12924 L:      [email protected]
12925 S:      Odd Fixes
12926 F:      drivers/media/tuners/mxl301rf*
12927
12928 MXL5007T MEDIA DRIVER
12929 M:      Michael Krufky <[email protected]>
12930 L:      [email protected]
12931 S:      Maintained
12932 W:      https://linuxtv.org
12933 W:      http://github.com/mkrufky
12934 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12935 T:      git git://linuxtv.org/mkrufky/tuners.git
12936 F:      drivers/media/tuners/mxl5007t.*
12937
12938 MXSFB DRM DRIVER
12939 M:      Marek Vasut <[email protected]>
12940 M:      Stefan Agner <[email protected]>
12941 L:      [email protected]
12942 S:      Supported
12943 T:      git git://anongit.freedesktop.org/drm/drm-misc
12944 F:      Documentation/devicetree/bindings/display/fsl,lcdif.yaml
12945 F:      drivers/gpu/drm/mxsfb/
12946
12947 MYLEX DAC960 PCI RAID Controller
12948 M:      Hannes Reinecke <[email protected]>
12949 L:      [email protected]
12950 S:      Supported
12951 F:      drivers/scsi/myrb.*
12952 F:      drivers/scsi/myrs.*
12953
12954 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
12955 M:      Chris Lee <[email protected]>
12956 L:      [email protected]
12957 S:      Supported
12958 W:      https://www.cspi.com/ethernet-products/support/downloads/
12959 F:      drivers/net/ethernet/myricom/myri10ge/
12960
12961 NAND FLASH SUBSYSTEM
12962 M:      Miquel Raynal <[email protected]>
12963 R:      Richard Weinberger <[email protected]>
12964 L:      [email protected]
12965 S:      Maintained
12966 W:      http://www.linux-mtd.infradead.org/
12967 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
12968 C:      irc://irc.oftc.net/mtd
12969 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
12970 F:      drivers/mtd/nand/
12971 F:      include/linux/mtd/*nand*.h
12972
12973 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
12974 M:      Daniel Mack <[email protected]>
12975 L:      [email protected] (moderated for non-subscribers)
12976 S:      Maintained
12977 W:      http://www.native-instruments.com
12978 F:      sound/usb/caiaq/
12979
12980 NATSEMI ETHERNET DRIVER (DP8381x)
12981 S:      Orphan
12982 F:      drivers/net/ethernet/natsemi/natsemi.c
12983
12984 NCR 5380 SCSI DRIVERS
12985 M:      Finn Thain <[email protected]>
12986 M:      Michael Schmitz <[email protected]>
12987 L:      [email protected]
12988 S:      Maintained
12989 F:      Documentation/scsi/g_NCR5380.rst
12990 F:      drivers/scsi/NCR5380.*
12991 F:      drivers/scsi/arm/cumana_1.c
12992 F:      drivers/scsi/arm/oak.c
12993 F:      drivers/scsi/atari_scsi.*
12994 F:      drivers/scsi/dmx3191d.c
12995 F:      drivers/scsi/g_NCR5380.*
12996 F:      drivers/scsi/mac_scsi.*
12997 F:      drivers/scsi/sun3_scsi.*
12998 F:      drivers/scsi/sun3_scsi_vme.c
12999
13000 NCSI LIBRARY
13001 M:      Samuel Mendoza-Jonas <[email protected]>
13002 S:      Maintained
13003 F:      net/ncsi/
13004
13005 NCT6775 HARDWARE MONITOR DRIVER
13006 M:      Guenter Roeck <[email protected]>
13007 L:      [email protected]
13008 S:      Maintained
13009 F:      Documentation/hwmon/nct6775.rst
13010 F:      drivers/hwmon/nct6775.c
13011
13012 NETDEVSIM
13013 M:      Jakub Kicinski <[email protected]>
13014 S:      Maintained
13015 F:      drivers/net/netdevsim/*
13016
13017 NETEM NETWORK EMULATOR
13018 M:      Stephen Hemminger <[email protected]>
13019 L:      [email protected]
13020 S:      Maintained
13021 F:      net/sched/sch_netem.c
13022
13023 NETERION 10GbE DRIVERS (s2io/vxge)
13024 M:      Jon Mason <[email protected]>
13025 L:      [email protected]
13026 S:      Supported
13027 F:      Documentation/networking/device_drivers/ethernet/neterion/s2io.rst
13028 F:      Documentation/networking/device_drivers/ethernet/neterion/vxge.rst
13029 F:      drivers/net/ethernet/neterion/
13030
13031 NETFILTER
13032 M:      Pablo Neira Ayuso <[email protected]>
13033 M:      Jozsef Kadlecsik <[email protected]>
13034 M:      Florian Westphal <[email protected]>
13035 L:      [email protected]
13036 L:      [email protected]
13037 S:      Maintained
13038 W:      http://www.netfilter.org/
13039 W:      http://www.iptables.org/
13040 W:      http://www.nftables.org/
13041 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
13042 C:      irc://irc.libera.chat/netfilter
13043 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
13044 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
13045 F:      include/linux/netfilter*
13046 F:      include/linux/netfilter/
13047 F:      include/net/netfilter/
13048 F:      include/uapi/linux/netfilter*
13049 F:      include/uapi/linux/netfilter/
13050 F:      net/*/netfilter.c
13051 F:      net/*/netfilter/
13052 F:      net/bridge/br_netfilter*.c
13053 F:      net/netfilter/
13054
13055 NETROM NETWORK LAYER
13056 M:      Ralf Baechle <[email protected]>
13057 L:      [email protected]
13058 S:      Maintained
13059 W:      http://www.linux-ax25.org/
13060 F:      include/net/netrom.h
13061 F:      include/uapi/linux/netrom.h
13062 F:      net/netrom/
13063
13064 NETRONIX EMBEDDED CONTROLLER
13065 M:      Jonathan Neuschäfer <[email protected]>
13066 S:      Maintained
13067 F:      Documentation/devicetree/bindings/mfd/netronix,ntxec.yaml
13068 F:      drivers/mfd/ntxec.c
13069 F:      drivers/pwm/pwm-ntxec.c
13070 F:      drivers/rtc/rtc-ntxec.c
13071 F:      include/linux/mfd/ntxec.h
13072
13073 NETRONOME ETHERNET DRIVERS
13074 M:      Simon Horman <[email protected]>
13075 R:      Jakub Kicinski <[email protected]>
13076 L:      [email protected]
13077 S:      Maintained
13078 F:      drivers/net/ethernet/netronome/
13079
13080 NETWORK BLOCK DEVICE (NBD)
13081 M:      Josef Bacik <[email protected]>
13082 L:      [email protected]
13083 L:      [email protected]
13084 S:      Maintained
13085 F:      Documentation/admin-guide/blockdev/nbd.rst
13086 F:      drivers/block/nbd.c
13087 F:      include/trace/events/nbd.h
13088 F:      include/uapi/linux/nbd.h
13089
13090 NETWORK DROP MONITOR
13091 M:      Neil Horman <[email protected]>
13092 L:      [email protected]
13093 S:      Maintained
13094 W:      https://fedorahosted.org/dropwatch/
13095 F:      include/uapi/linux/net_dropmon.h
13096 F:      net/core/drop_monitor.c
13097
13098 NETWORKING DRIVERS
13099 M:      "David S. Miller" <[email protected]>
13100 M:      Jakub Kicinski <[email protected]>
13101 L:      [email protected]
13102 S:      Maintained
13103 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13104 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13105 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
13106 F:      Documentation/devicetree/bindings/net/
13107 F:      drivers/connector/
13108 F:      drivers/net/
13109 F:      include/linux/etherdevice.h
13110 F:      include/linux/fcdevice.h
13111 F:      include/linux/fddidevice.h
13112 F:      include/linux/hippidevice.h
13113 F:      include/linux/if_*
13114 F:      include/linux/inetdevice.h
13115 F:      include/linux/netdevice.h
13116 F:      include/uapi/linux/if_*
13117 F:      include/uapi/linux/netdevice.h
13118
13119 NETWORKING DRIVERS (WIRELESS)
13120 M:      Kalle Valo <[email protected]>
13121 L:      [email protected]
13122 S:      Maintained
13123 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
13124 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
13125 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
13126 F:      Documentation/devicetree/bindings/net/wireless/
13127 F:      drivers/net/wireless/
13128
13129 NETWORKING [DSA]
13130 M:      Andrew Lunn <[email protected]>
13131 M:      Vivien Didelot <[email protected]>
13132 M:      Florian Fainelli <[email protected]>
13133 M:      Vladimir Oltean <[email protected]>
13134 S:      Maintained
13135 F:      Documentation/devicetree/bindings/net/dsa/
13136 F:      drivers/net/dsa/
13137 F:      include/linux/dsa/
13138 F:      include/linux/platform_data/dsa.h
13139 F:      include/net/dsa.h
13140 F:      net/dsa/
13141 F:      tools/testing/selftests/drivers/net/dsa/
13142
13143 NETWORKING [GENERAL]
13144 M:      "David S. Miller" <[email protected]>
13145 M:      Jakub Kicinski <[email protected]>
13146 L:      [email protected]
13147 S:      Maintained
13148 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13149 B:      mailto:[email protected]
13150 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13151 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
13152 F:      Documentation/networking/
13153 F:      include/linux/in.h
13154 F:      include/linux/net.h
13155 F:      include/linux/netdevice.h
13156 F:      include/net/
13157 F:      include/uapi/linux/in.h
13158 F:      include/uapi/linux/net.h
13159 F:      include/uapi/linux/net_namespace.h
13160 F:      include/uapi/linux/netdevice.h
13161 F:      lib/net_utils.c
13162 F:      lib/random32.c
13163 F:      net/
13164 F:      tools/testing/selftests/net/
13165
13166 NETWORKING [IPSEC]
13167 M:      Steffen Klassert <[email protected]>
13168 M:      Herbert Xu <[email protected]>
13169 M:      "David S. Miller" <[email protected]>
13170 L:      [email protected]
13171 S:      Maintained
13172 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
13173 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
13174 F:      include/net/xfrm.h
13175 F:      include/uapi/linux/xfrm.h
13176 F:      net/ipv4/ah4.c
13177 F:      net/ipv4/esp4*
13178 F:      net/ipv4/ip_vti.c
13179 F:      net/ipv4/ipcomp.c
13180 F:      net/ipv4/xfrm*
13181 F:      net/ipv6/ah6.c
13182 F:      net/ipv6/esp6*
13183 F:      net/ipv6/ip6_vti.c
13184 F:      net/ipv6/ipcomp6.c
13185 F:      net/ipv6/xfrm*
13186 F:      net/key/
13187 F:      net/xfrm/
13188 F:      tools/testing/selftests/net/ipsec.c
13189
13190 NETWORKING [IPv4/IPv6]
13191 M:      "David S. Miller" <[email protected]>
13192 M:      Hideaki YOSHIFUJI <[email protected]>
13193 M:      David Ahern <[email protected]>
13194 L:      [email protected]
13195 S:      Maintained
13196 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13197 F:      arch/x86/net/*
13198 F:      include/net/ip*
13199 F:      net/ipv4/
13200 F:      net/ipv6/
13201
13202 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
13203 M:      Paul Moore <[email protected]>
13204 L:      [email protected]
13205 L:      [email protected]
13206 S:      Maintained
13207 W:      https://github.com/netlabel
13208 F:      Documentation/netlabel/
13209 F:      include/net/calipso.h
13210 F:      include/net/cipso_ipv4.h
13211 F:      include/net/netlabel.h
13212 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
13213 F:      include/uapi/linux/netfilter/xt_SECMARK.h
13214 F:      net/ipv4/cipso_ipv4.c
13215 F:      net/ipv6/calipso.c
13216 F:      net/netfilter/xt_CONNSECMARK.c
13217 F:      net/netfilter/xt_SECMARK.c
13218 F:      net/netlabel/
13219
13220 NETWORKING [MPTCP]
13221 M:      Mat Martineau <[email protected]>
13222 M:      Matthieu Baerts <[email protected]>
13223 L:      [email protected]
13224 L:      [email protected]
13225 S:      Maintained
13226 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
13227 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
13228 F:      Documentation/networking/mptcp-sysctl.rst
13229 F:      include/net/mptcp.h
13230 F:      include/trace/events/mptcp.h
13231 F:      include/uapi/linux/mptcp.h
13232 F:      net/mptcp/
13233 F:      tools/testing/selftests/net/mptcp/
13234
13235 NETWORKING [TCP]
13236 M:      Eric Dumazet <[email protected]>
13237 L:      [email protected]
13238 S:      Maintained
13239 F:      include/linux/tcp.h
13240 F:      include/net/tcp.h
13241 F:      include/trace/events/tcp.h
13242 F:      include/uapi/linux/tcp.h
13243 F:      net/ipv4/syncookies.c
13244 F:      net/ipv4/tcp*.c
13245 F:      net/ipv6/syncookies.c
13246 F:      net/ipv6/tcp*.c
13247
13248 NETWORKING [TLS]
13249 M:      Boris Pismenny <[email protected]>
13250 M:      John Fastabend <[email protected]>
13251 M:      Daniel Borkmann <[email protected]>
13252 M:      Jakub Kicinski <[email protected]>
13253 L:      [email protected]
13254 S:      Maintained
13255 F:      include/net/tls.h
13256 F:      include/uapi/linux/tls.h
13257 F:      net/tls/*
13258
13259 NETWORKING [WIRELESS]
13260 L:      [email protected]
13261 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
13262
13263 NETXEN (1/10) GbE SUPPORT
13264 M:      Manish Chopra <[email protected]>
13265 M:      Rahul Verma <[email protected]>
13266 M:      [email protected]
13267 L:      [email protected]
13268 S:      Supported
13269 F:      drivers/net/ethernet/qlogic/netxen/
13270
13271 NET_FAILOVER MODULE
13272 M:      Sridhar Samudrala <[email protected]>
13273 L:      [email protected]
13274 S:      Supported
13275 F:      Documentation/networking/net_failover.rst
13276 F:      drivers/net/net_failover.c
13277 F:      include/net/net_failover.h
13278
13279 NEXTHOP
13280 M:      David Ahern <[email protected]>
13281 L:      [email protected]
13282 S:      Maintained
13283 F:      include/net/netns/nexthop.h
13284 F:      include/net/nexthop.h
13285 F:      include/uapi/linux/nexthop.h
13286 F:      net/ipv4/nexthop.c
13287
13288 NFC SUBSYSTEM
13289 M:      Krzysztof Kozlowski <[email protected]>
13290 L:      [email protected] (subscribers-only)
13291 L:      [email protected]
13292 S:      Maintained
13293 F:      Documentation/devicetree/bindings/net/nfc/
13294 F:      drivers/nfc/
13295 F:      include/linux/platform_data/nfcmrvl.h
13296 F:      include/net/nfc/
13297 F:      include/uapi/linux/nfc.h
13298 F:      net/nfc/
13299
13300 NFC VIRTUAL NCI DEVICE DRIVER
13301 M:      Bongsu Jeon <[email protected]>
13302 L:      [email protected]
13303 L:      [email protected] (subscribers-only)
13304 S:      Supported
13305 F:      drivers/nfc/virtual_ncidev.c
13306 F:      tools/testing/selftests/nci/
13307
13308 NFS, SUNRPC, AND LOCKD CLIENTS
13309 M:      Trond Myklebust <[email protected]>
13310 M:      Anna Schumaker <[email protected]>
13311 L:      [email protected]
13312 S:      Maintained
13313 W:      http://client.linux-nfs.org
13314 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
13315 F:      fs/lockd/
13316 F:      fs/nfs/
13317 F:      fs/nfs_common/
13318 F:      include/linux/lockd/
13319 F:      include/linux/nfs*
13320 F:      include/linux/sunrpc/
13321 F:      include/uapi/linux/nfs*
13322 F:      include/uapi/linux/sunrpc/
13323 F:      net/sunrpc/
13324 F:      Documentation/filesystems/nfs/
13325
13326 NILFS2 FILESYSTEM
13327 M:      Ryusuke Konishi <[email protected]>
13328 L:      [email protected]
13329 S:      Supported
13330 W:      https://nilfs.sourceforge.io/
13331 W:      https://nilfs.osdn.jp/
13332 T:      git git://github.com/konis/nilfs2.git
13333 F:      Documentation/filesystems/nilfs2.rst
13334 F:      fs/nilfs2/
13335 F:      include/trace/events/nilfs2.h
13336 F:      include/uapi/linux/nilfs2_api.h
13337 F:      include/uapi/linux/nilfs2_ondisk.h
13338
13339 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
13340 M:      YOKOTA Hiroshi <[email protected]>
13341 S:      Maintained
13342 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
13343 F:      Documentation/scsi/NinjaSCSI.rst
13344 F:      drivers/scsi/pcmcia/nsp_*
13345
13346 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
13347 M:      GOTO Masanori <[email protected]>
13348 M:      YOKOTA Hiroshi <[email protected]>
13349 S:      Maintained
13350 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
13351 F:      Documentation/scsi/NinjaSCSI.rst
13352 F:      drivers/scsi/nsp32*
13353
13354 NIOS2 ARCHITECTURE
13355 M:      Dinh Nguyen <[email protected]>
13356 S:      Maintained
13357 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
13358 F:      arch/nios2/
13359
13360 NITRO ENCLAVES (NE)
13361 M:      Andra Paraschiv <[email protected]>
13362 M:      Alexandru Vasile <[email protected]>
13363 M:      Alexandru Ciobotaru <[email protected]>
13364 L:      [email protected]
13365 S:      Supported
13366 W:      https://aws.amazon.com/ec2/nitro/nitro-enclaves/
13367 F:      Documentation/virt/ne_overview.rst
13368 F:      drivers/virt/nitro_enclaves/
13369 F:      include/linux/nitro_enclaves.h
13370 F:      include/uapi/linux/nitro_enclaves.h
13371 F:      samples/nitro_enclaves/
13372
13373 NOHZ, DYNTICKS SUPPORT
13374 M:      Frederic Weisbecker <[email protected]>
13375 M:      Thomas Gleixner <[email protected]>
13376 M:      Ingo Molnar <[email protected]>
13377 L:      [email protected]
13378 S:      Maintained
13379 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
13380 F:      include/linux/sched/nohz.h
13381 F:      include/linux/tick.h
13382 F:      kernel/time/tick*.*
13383
13384 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
13385 M:      Pavel Machek <[email protected]>
13386 M:      Sakari Ailus <[email protected]>
13387 L:      [email protected]
13388 S:      Maintained
13389 F:      drivers/media/i2c/ad5820.c
13390 F:      drivers/media/i2c/et8ek8
13391
13392 NOKIA N900 POWER SUPPLY DRIVERS
13393 R:      Pali Rohár <[email protected]>
13394 F:      drivers/power/supply/bq2415x_charger.c
13395 F:      drivers/power/supply/bq27xxx_battery.c
13396 F:      drivers/power/supply/bq27xxx_battery_i2c.c
13397 F:      drivers/power/supply/isp1704_charger.c
13398 F:      drivers/power/supply/rx51_battery.c
13399 F:      include/linux/power/bq2415x_charger.h
13400 F:      include/linux/power/bq27xxx_battery.h
13401
13402 NOLIBC HEADER FILE
13403 M:      Willy Tarreau <[email protected]>
13404 S:      Maintained
13405 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
13406 F:      tools/include/nolibc/
13407
13408 NSDEPS
13409 M:      Matthias Maennich <[email protected]>
13410 S:      Maintained
13411 F:      Documentation/core-api/symbol-namespaces.rst
13412 F:      scripts/nsdeps
13413
13414 NTB AMD DRIVER
13415 M:      Sanjay R Mehta <[email protected]>
13416 M:      Shyam Sundar S K <[email protected]>
13417 L:      [email protected]
13418 S:      Supported
13419 F:      drivers/ntb/hw/amd/
13420
13421 NTB DRIVER CORE
13422 M:      Jon Mason <[email protected]>
13423 M:      Dave Jiang <[email protected]>
13424 M:      Allen Hubbe <[email protected]>
13425 L:      [email protected]
13426 S:      Supported
13427 W:      https://github.com/jonmason/ntb/wiki
13428 T:      git git://github.com/jonmason/ntb.git
13429 F:      drivers/net/ntb_netdev.c
13430 F:      drivers/ntb/
13431 F:      include/linux/ntb.h
13432 F:      include/linux/ntb_transport.h
13433 F:      tools/testing/selftests/ntb/
13434
13435 NTB IDT DRIVER
13436 M:      Serge Semin <[email protected]>
13437 L:      [email protected]
13438 S:      Supported
13439 F:      drivers/ntb/hw/idt/
13440
13441 NTB INTEL DRIVER
13442 M:      Dave Jiang <[email protected]>
13443 L:      [email protected]
13444 S:      Supported
13445 W:      https://github.com/davejiang/linux/wiki
13446 T:      git https://github.com/davejiang/linux.git
13447 F:      drivers/ntb/hw/intel/
13448
13449 NTFS FILESYSTEM
13450 M:      Anton Altaparmakov <[email protected]>
13451 L:      [email protected]
13452 S:      Supported
13453 W:      http://www.tuxera.com/
13454 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
13455 F:      Documentation/filesystems/ntfs.rst
13456 F:      fs/ntfs/
13457
13458 NTFS3 FILESYSTEM
13459 M:      Konstantin Komarov <[email protected]>
13460 L:      [email protected]
13461 S:      Supported
13462 W:      http://www.paragon-software.com/
13463 T:      git https://github.com/Paragon-Software-Group/linux-ntfs3.git
13464 F:      Documentation/filesystems/ntfs3.rst
13465 F:      fs/ntfs3/
13466
13467 NUBUS SUBSYSTEM
13468 M:      Finn Thain <[email protected]>
13469 L:      [email protected]
13470 S:      Maintained
13471 F:      arch/*/include/asm/nubus.h
13472 F:      drivers/nubus/
13473 F:      include/linux/nubus.h
13474 F:      include/uapi/linux/nubus.h
13475
13476 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
13477 M:      Antonino Daplas <[email protected]>
13478 L:      [email protected]
13479 S:      Maintained
13480 F:      drivers/video/fbdev/nvidia/
13481 F:      drivers/video/fbdev/riva/
13482
13483 NVM EXPRESS DRIVER
13484 M:      Keith Busch <[email protected]>
13485 M:      Jens Axboe <[email protected]>
13486 M:      Christoph Hellwig <[email protected]>
13487 M:      Sagi Grimberg <[email protected]>
13488 L:      [email protected]
13489 S:      Supported
13490 W:      http://git.infradead.org/nvme.git
13491 T:      git://git.infradead.org/nvme.git
13492 F:      drivers/nvme/host/
13493 F:      include/linux/nvme.h
13494 F:      include/uapi/linux/nvme_ioctl.h
13495
13496 NVM EXPRESS FC TRANSPORT DRIVERS
13497 M:      James Smart <[email protected]>
13498 L:      [email protected]
13499 S:      Supported
13500 F:      drivers/nvme/host/fc.c
13501 F:      drivers/nvme/target/fc.c
13502 F:      drivers/nvme/target/fcloop.c
13503 F:      include/linux/nvme-fc-driver.h
13504 F:      include/linux/nvme-fc.h
13505
13506 NVM EXPRESS TARGET DRIVER
13507 M:      Christoph Hellwig <[email protected]>
13508 M:      Sagi Grimberg <[email protected]>
13509 M:      Chaitanya Kulkarni <[email protected]>
13510 L:      [email protected]
13511 S:      Supported
13512 W:      http://git.infradead.org/nvme.git
13513 T:      git://git.infradead.org/nvme.git
13514 F:      drivers/nvme/target/
13515
13516 NVMEM FRAMEWORK
13517 M:      Srinivas Kandagatla <[email protected]>
13518 S:      Maintained
13519 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/srini/nvmem.git
13520 F:      Documentation/ABI/stable/sysfs-bus-nvmem
13521 F:      Documentation/devicetree/bindings/nvmem/
13522 F:      drivers/nvmem/
13523 F:      include/linux/nvmem-consumer.h
13524 F:      include/linux/nvmem-provider.h
13525
13526 NXP C45 TJA11XX PHY DRIVER
13527 M:      Radu Pirea <[email protected]>
13528 L:      [email protected]
13529 S:      Maintained
13530 F:      drivers/net/phy/nxp-c45-tja11xx.c
13531
13532 NXP FSPI DRIVER
13533 M:      Ashish Kumar <[email protected]>
13534 R:      Yogesh Gaur <[email protected]>
13535 L:      [email protected]
13536 S:      Maintained
13537 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.yaml
13538 F:      drivers/spi/spi-nxp-fspi.c
13539
13540 NXP FXAS21002C DRIVER
13541 M:      Rui Miguel Silva <[email protected]>
13542 L:      [email protected]
13543 S:      Maintained
13544 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.yaml
13545 F:      drivers/iio/gyro/fxas21002c.h
13546 F:      drivers/iio/gyro/fxas21002c_core.c
13547 F:      drivers/iio/gyro/fxas21002c_i2c.c
13548 F:      drivers/iio/gyro/fxas21002c_spi.c
13549
13550 NXP i.MX CLOCK DRIVERS
13551 M:      Abel Vesa <[email protected]>
13552 L:      [email protected]
13553 L:      [email protected]
13554 S:      Maintained
13555 F:      drivers/clk/imx/
13556
13557 NXP i.MX 8MQ DCSS DRIVER
13558 M:      Laurentiu Palcu <[email protected]>
13559 R:      Lucas Stach <[email protected]>
13560 L:      [email protected]
13561 S:      Maintained
13562 F:      Documentation/devicetree/bindings/display/imx/nxp,imx8mq-dcss.yaml
13563 F:      drivers/gpu/drm/imx/dcss/
13564
13565 NXP PF8100/PF8121A/PF8200 PMIC REGULATOR DEVICE DRIVER
13566 M:      Jagan Teki <[email protected]>
13567 S:      Maintained
13568 F:      Documentation/devicetree/bindings/regulator/nxp,pf8x00-regulator.yaml
13569 F:      drivers/regulator/pf8x00-regulator.c
13570
13571 NXP PTN5150A CC LOGIC AND EXTCON DRIVER
13572 M:      Krzysztof Kozlowski <[email protected]>
13573 L:      [email protected]
13574 S:      Maintained
13575 F:      Documentation/devicetree/bindings/extcon/extcon-ptn5150.yaml
13576 F:      drivers/extcon/extcon-ptn5150.c
13577
13578 NXP SGTL5000 DRIVER
13579 M:      Fabio Estevam <[email protected]>
13580 L:      [email protected] (moderated for non-subscribers)
13581 S:      Maintained
13582 F:      Documentation/devicetree/bindings/sound/sgtl5000.yaml
13583 F:      sound/soc/codecs/sgtl5000*
13584
13585 NXP SJA1105 ETHERNET SWITCH DRIVER
13586 M:      Vladimir Oltean <[email protected]>
13587 L:      [email protected]
13588 S:      Maintained
13589 F:      drivers/net/dsa/sja1105
13590 F:      drivers/net/pcs/pcs-xpcs-nxp.c
13591
13592 NXP TDA998X DRM DRIVER
13593 M:      Russell King <[email protected]>
13594 S:      Maintained
13595 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
13596 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
13597 F:      drivers/gpu/drm/i2c/tda998x_drv.c
13598 F:      include/drm/i2c/tda998x.h
13599 F:      include/dt-bindings/display/tda998x.h
13600 K:      "nxp,tda998x"
13601
13602 NXP TFA9879 DRIVER
13603 M:      Peter Rosin <[email protected]>
13604 L:      [email protected] (moderated for non-subscribers)
13605 S:      Maintained
13606 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
13607 F:      sound/soc/codecs/tfa9879*
13608
13609 NXP/Goodix TFA989X (TFA1) DRIVER
13610 M:      Stephan Gerhold <[email protected]>
13611 L:      [email protected] (moderated for non-subscribers)
13612 S:      Maintained
13613 F:      Documentation/devicetree/bindings/sound/nxp,tfa989x.yaml
13614 F:      sound/soc/codecs/tfa989x.c
13615
13616 NXP-NCI NFC DRIVER
13617 R:      Charles Gorand <[email protected]>
13618 L:      [email protected] (subscribers-only)
13619 S:      Supported
13620 F:      drivers/nfc/nxp-nci
13621
13622 NXP i.MX 8QXP/8QM JPEG V4L2 DRIVER
13623 M:      Mirela Rabulea <[email protected]>
13624 R:      NXP Linux Team <[email protected]>
13625 L:      [email protected]
13626 S:      Maintained
13627 F:      Documentation/devicetree/bindings/media/imx8-jpeg.yaml
13628 F:      drivers/media/platform/imx-jpeg
13629
13630 NZXT-KRAKEN2 HARDWARE MONITORING DRIVER
13631 M:      Jonas Malaco <[email protected]>
13632 L:      [email protected]
13633 S:      Maintained
13634 F:      Documentation/hwmon/nzxt-kraken2.rst
13635 F:      drivers/hwmon/nzxt-kraken2.c
13636
13637 OBJAGG
13638 M:      Jiri Pirko <[email protected]>
13639 L:      [email protected]
13640 S:      Supported
13641 F:      include/linux/objagg.h
13642 F:      lib/objagg.c
13643 F:      lib/test_objagg.c
13644
13645 OBJTOOL
13646 M:      Josh Poimboeuf <[email protected]>
13647 M:      Peter Zijlstra <[email protected]>
13648 S:      Supported
13649 F:      tools/objtool/
13650 F:      include/linux/objtool.h
13651
13652 OCELOT ETHERNET SWITCH DRIVER
13653 M:      Vladimir Oltean <[email protected]>
13654 M:      Claudiu Manoil <[email protected]>
13655 M:      Alexandre Belloni <[email protected]>
13656 M:      [email protected]
13657 L:      [email protected]
13658 S:      Supported
13659 F:      drivers/net/dsa/ocelot/*
13660 F:      drivers/net/ethernet/mscc/
13661 F:      include/soc/mscc/ocelot*
13662 F:      net/dsa/tag_ocelot.c
13663 F:      net/dsa/tag_ocelot_8021q.c
13664 F:      tools/testing/selftests/drivers/net/ocelot/*
13665
13666 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
13667 M:      Frederic Barrat <[email protected]>
13668 M:      Andrew Donnellan <[email protected]>
13669 L:      [email protected]
13670 S:      Supported
13671 F:      Documentation/userspace-api/accelerators/ocxl.rst
13672 F:      arch/powerpc/include/asm/pnv-ocxl.h
13673 F:      arch/powerpc/platforms/powernv/ocxl.c
13674 F:      drivers/misc/ocxl/
13675 F:      include/misc/ocxl*
13676 F:      include/uapi/misc/ocxl.h
13677
13678 OMAP AUDIO SUPPORT
13679 M:      Peter Ujfalusi <[email protected]>
13680 M:      Jarkko Nikula <[email protected]>
13681 L:      [email protected] (moderated for non-subscribers)
13682 L:      [email protected]
13683 S:      Maintained
13684 F:      sound/soc/ti/n810.c
13685 F:      sound/soc/ti/omap*
13686 F:      sound/soc/ti/rx51.c
13687 F:      sound/soc/ti/sdma-pcm.*
13688
13689 OMAP CLOCK FRAMEWORK SUPPORT
13690 M:      Paul Walmsley <[email protected]>
13691 L:      [email protected]
13692 S:      Maintained
13693 F:      arch/arm/*omap*/*clock*
13694
13695 OMAP DEVICE TREE SUPPORT
13696 M:      Benoît Cousson <[email protected]>
13697 M:      Tony Lindgren <[email protected]>
13698 L:      [email protected]
13699 L:      [email protected]
13700 S:      Maintained
13701 F:      arch/arm/boot/dts/*am3*
13702 F:      arch/arm/boot/dts/*am4*
13703 F:      arch/arm/boot/dts/*am5*
13704 F:      arch/arm/boot/dts/*dra7*
13705 F:      arch/arm/boot/dts/*omap*
13706 F:      arch/arm/boot/dts/logicpd-som-lv*
13707 F:      arch/arm/boot/dts/logicpd-torpedo*
13708
13709 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
13710 L:      [email protected]
13711 L:      [email protected]
13712 S:      Orphan
13713 F:      Documentation/arm/omap/dss.rst
13714 F:      drivers/video/fbdev/omap2/
13715
13716 OMAP FRAMEBUFFER SUPPORT
13717 L:      [email protected]
13718 L:      [email protected]
13719 S:      Orphan
13720 F:      drivers/video/fbdev/omap/
13721
13722 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
13723 M:      Roger Quadros <[email protected]>
13724 M:      Tony Lindgren <[email protected]>
13725 L:      [email protected]
13726 S:      Maintained
13727 F:      arch/arm/mach-omap2/*gpmc*
13728 F:      drivers/memory/omap-gpmc.c
13729
13730 OMAP GPIO DRIVER
13731 M:      Grygorii Strashko <[email protected]>
13732 M:      Santosh Shilimkar <[email protected]>
13733 M:      Kevin Hilman <[email protected]>
13734 L:      [email protected]
13735 S:      Maintained
13736 F:      Documentation/devicetree/bindings/gpio/ti,omap-gpio.yaml
13737 F:      drivers/gpio/gpio-omap.c
13738
13739 OMAP HARDWARE SPINLOCK SUPPORT
13740 M:      Ohad Ben-Cohen <[email protected]>
13741 L:      [email protected]
13742 S:      Maintained
13743 F:      drivers/hwspinlock/omap_hwspinlock.c
13744
13745 OMAP HS MMC SUPPORT
13746 L:      [email protected]
13747 L:      [email protected]
13748 S:      Orphan
13749 F:      drivers/mmc/host/omap_hsmmc.c
13750
13751 OMAP HWMOD DATA
13752 M:      Paul Walmsley <[email protected]>
13753 L:      [email protected]
13754 S:      Maintained
13755 F:      arch/arm/mach-omap2/omap_hwmod*data*
13756
13757 OMAP HWMOD SUPPORT
13758 M:      Benoît Cousson <[email protected]>
13759 M:      Paul Walmsley <[email protected]>
13760 L:      [email protected]
13761 S:      Maintained
13762 F:      arch/arm/mach-omap2/omap_hwmod.*
13763
13764 OMAP I2C DRIVER
13765 M:      Vignesh R <[email protected]>
13766 L:      [email protected]
13767 L:      [email protected]
13768 S:      Maintained
13769 F:      Documentation/devicetree/bindings/i2c/ti,omap4-i2c.yaml
13770 F:      drivers/i2c/busses/i2c-omap.c
13771
13772 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
13773 M:      Laurent Pinchart <[email protected]>
13774 L:      [email protected]
13775 S:      Maintained
13776 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
13777 F:      drivers/media/platform/omap3isp/
13778 F:      drivers/staging/media/omap4iss/
13779
13780 OMAP MMC SUPPORT
13781 M:      Aaro Koskinen <[email protected]>
13782 L:      [email protected]
13783 S:      Odd Fixes
13784 F:      drivers/mmc/host/omap.c
13785
13786 OMAP POWER MANAGEMENT SUPPORT
13787 M:      Kevin Hilman <[email protected]>
13788 L:      [email protected]
13789 S:      Maintained
13790 F:      arch/arm/*omap*/*pm*
13791 F:      drivers/cpufreq/omap-cpufreq.c
13792
13793 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
13794 M:      Rajendra Nayak <[email protected]>
13795 M:      Paul Walmsley <[email protected]>
13796 L:      [email protected]
13797 S:      Maintained
13798 F:      arch/arm/mach-omap2/prm*
13799
13800 OMAP RANDOM NUMBER GENERATOR SUPPORT
13801 M:      Deepak Saxena <[email protected]>
13802 S:      Maintained
13803 F:      drivers/char/hw_random/omap-rng.c
13804
13805 OMAP USB SUPPORT
13806 L:      [email protected]
13807 L:      [email protected]
13808 S:      Orphan
13809 F:      arch/arm/*omap*/usb*
13810 F:      drivers/usb/*/*omap*
13811
13812 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
13813 M:      Mark Jackson <[email protected]>
13814 L:      [email protected]
13815 S:      Maintained
13816 F:      arch/arm/boot/dts/am335x-nano.dts
13817
13818 OMAP1 SUPPORT
13819 M:      Aaro Koskinen <[email protected]>
13820 M:      Tony Lindgren <[email protected]>
13821 L:      [email protected]
13822 S:      Maintained
13823 Q:      http://patchwork.kernel.org/project/linux-omap/list/
13824 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
13825 F:      arch/arm/configs/omap1_defconfig
13826 F:      arch/arm/mach-omap1/
13827 F:      arch/arm/plat-omap/
13828 F:      drivers/i2c/busses/i2c-omap.c
13829 F:      include/linux/platform_data/ams-delta-fiq.h
13830 F:      include/linux/platform_data/i2c-omap.h
13831
13832 OMAP2+ SUPPORT
13833 M:      Tony Lindgren <[email protected]>
13834 L:      [email protected]
13835 S:      Maintained
13836 W:      http://www.muru.com/linux/omap/
13837 W:      http://linux.omap.com/
13838 Q:      http://patchwork.kernel.org/project/linux-omap/list/
13839 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
13840 F:      arch/arm/configs/omap2plus_defconfig
13841 F:      arch/arm/mach-omap2/
13842 F:      arch/arm/plat-omap/
13843 F:      drivers/bus/ti-sysc.c
13844 F:      drivers/i2c/busses/i2c-omap.c
13845 F:      drivers/irqchip/irq-omap-intc.c
13846 F:      drivers/mfd/*omap*.c
13847 F:      drivers/mfd/menelaus.c
13848 F:      drivers/mfd/palmas.c
13849 F:      drivers/mfd/tps65217.c
13850 F:      drivers/mfd/tps65218.c
13851 F:      drivers/mfd/tps65910.c
13852 F:      drivers/mfd/twl-core.[ch]
13853 F:      drivers/mfd/twl4030*.c
13854 F:      drivers/mfd/twl6030*.c
13855 F:      drivers/mfd/twl6040*.c
13856 F:      drivers/regulator/palmas-regulator*.c
13857 F:      drivers/regulator/pbias-regulator.c
13858 F:      drivers/regulator/tps65217-regulator.c
13859 F:      drivers/regulator/tps65218-regulator.c
13860 F:      drivers/regulator/tps65910-regulator.c
13861 F:      drivers/regulator/twl-regulator.c
13862 F:      drivers/regulator/twl6030-regulator.c
13863 F:      include/linux/platform_data/i2c-omap.h
13864 F:      include/linux/platform_data/ti-sysc.h
13865
13866 OMFS FILESYSTEM
13867 M:      Bob Copeland <[email protected]>
13868 L:      [email protected]
13869 S:      Maintained
13870 F:      Documentation/filesystems/omfs.rst
13871 F:      fs/omfs/
13872
13873 OMNIKEY CARDMAN 4000 DRIVER
13874 M:      Harald Welte <[email protected]>
13875 S:      Maintained
13876 F:      drivers/char/pcmcia/cm4000_cs.c
13877 F:      include/linux/cm4000_cs.h
13878 F:      include/uapi/linux/cm4000_cs.h
13879
13880 OMNIKEY CARDMAN 4040 DRIVER
13881 M:      Harald Welte <[email protected]>
13882 S:      Maintained
13883 F:      drivers/char/pcmcia/cm4040_cs.*
13884
13885 OMNIVISION OV02A10 SENSOR DRIVER
13886 M:      Dongchun Zhu <[email protected]>
13887 L:      [email protected]
13888 S:      Maintained
13889 T:      git git://linuxtv.org/media_tree.git
13890 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov02a10.yaml
13891 F:      drivers/media/i2c/ov02a10.c
13892
13893 OMNIVISION OV13858 SENSOR DRIVER
13894 M:      Sakari Ailus <[email protected]>
13895 L:      [email protected]
13896 S:      Maintained
13897 T:      git git://linuxtv.org/media_tree.git
13898 F:      drivers/media/i2c/ov13858.c
13899
13900 OMNIVISION OV13B10 SENSOR DRIVER
13901 M:      Arec Kao <[email protected]>
13902 L:      [email protected]
13903 S:      Maintained
13904 T:      git git://linuxtv.org/media_tree.git
13905 F:      drivers/media/i2c/ov13b10.c
13906
13907 OMNIVISION OV2680 SENSOR DRIVER
13908 M:      Rui Miguel Silva <[email protected]>
13909 L:      [email protected]
13910 S:      Maintained
13911 T:      git git://linuxtv.org/media_tree.git
13912 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov2680.yaml
13913 F:      drivers/media/i2c/ov2680.c
13914
13915 OMNIVISION OV2685 SENSOR DRIVER
13916 M:      Shunqian Zheng <[email protected]>
13917 L:      [email protected]
13918 S:      Maintained
13919 T:      git git://linuxtv.org/media_tree.git
13920 F:      drivers/media/i2c/ov2685.c
13921
13922 OMNIVISION OV2740 SENSOR DRIVER
13923 M:      Tianshu Qiu <[email protected]>
13924 R:      Shawn Tu <[email protected]>
13925 R:      Bingbu Cao <[email protected]>
13926 L:      [email protected]
13927 S:      Maintained
13928 T:      git git://linuxtv.org/media_tree.git
13929 F:      drivers/media/i2c/ov2740.c
13930
13931 OMNIVISION OV5640 SENSOR DRIVER
13932 M:      Steve Longerbeam <[email protected]>
13933 L:      [email protected]
13934 S:      Maintained
13935 T:      git git://linuxtv.org/media_tree.git
13936 F:      drivers/media/i2c/ov5640.c
13937
13938 OMNIVISION OV5647 SENSOR DRIVER
13939 M:      Dave Stevenson <[email protected]>
13940 M:      Jacopo Mondi <[email protected]>
13941 L:      [email protected]
13942 S:      Maintained
13943 T:      git git://linuxtv.org/media_tree.git
13944 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5647.yaml
13945 F:      drivers/media/i2c/ov5647.c
13946
13947 OMNIVISION OV5670 SENSOR DRIVER
13948 M:      Chiranjeevi Rapolu <[email protected]>
13949 M:      Hyungwoo Yang <[email protected]>
13950 L:      [email protected]
13951 S:      Maintained
13952 T:      git git://linuxtv.org/media_tree.git
13953 F:      drivers/media/i2c/ov5670.c
13954
13955 OMNIVISION OV5675 SENSOR DRIVER
13956 M:      Shawn Tu <[email protected]>
13957 L:      [email protected]
13958 S:      Maintained
13959 T:      git git://linuxtv.org/media_tree.git
13960 F:      drivers/media/i2c/ov5675.c
13961
13962 OMNIVISION OV5695 SENSOR DRIVER
13963 M:      Shunqian Zheng <[email protected]>
13964 L:      [email protected]
13965 S:      Maintained
13966 T:      git git://linuxtv.org/media_tree.git
13967 F:      drivers/media/i2c/ov5695.c
13968
13969 OMNIVISION OV7670 SENSOR DRIVER
13970 L:      [email protected]
13971 S:      Orphan
13972 T:      git git://linuxtv.org/media_tree.git
13973 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
13974 F:      drivers/media/i2c/ov7670.c
13975
13976 OMNIVISION OV772x SENSOR DRIVER
13977 M:      Jacopo Mondi <[email protected]>
13978 L:      [email protected]
13979 S:      Odd fixes
13980 T:      git git://linuxtv.org/media_tree.git
13981 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov772x.yaml
13982 F:      drivers/media/i2c/ov772x.c
13983 F:      include/media/i2c/ov772x.h
13984
13985 OMNIVISION OV7740 SENSOR DRIVER
13986 M:      Wenyou Yang <[email protected]>
13987 L:      [email protected]
13988 S:      Maintained
13989 T:      git git://linuxtv.org/media_tree.git
13990 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
13991 F:      drivers/media/i2c/ov7740.c
13992
13993 OMNIVISION OV8856 SENSOR DRIVER
13994 M:      Dongchun Zhu <[email protected]>
13995 L:      [email protected]
13996 S:      Maintained
13997 T:      git git://linuxtv.org/media_tree.git
13998 F:      Documentation/devicetree/bindings/media/i2c/ov8856.yaml
13999 F:      drivers/media/i2c/ov8856.c
14000
14001 OMNIVISION OV9282 SENSOR DRIVER
14002 M:      Paul J. Murphy <[email protected]>
14003 M:      Daniele Alessandrelli <[email protected]>
14004 L:      [email protected]
14005 S:      Maintained
14006 T:      git git://linuxtv.org/media_tree.git
14007 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov9282.yaml
14008 F:      drivers/media/i2c/ov9282.c
14009
14010 OMNIVISION OV9640 SENSOR DRIVER
14011 M:      Petr Cvek <[email protected]>
14012 L:      [email protected]
14013 S:      Maintained
14014 F:      drivers/media/i2c/ov9640.*
14015
14016 OMNIVISION OV9650 SENSOR DRIVER
14017 M:      Sakari Ailus <[email protected]>
14018 R:      Akinobu Mita <[email protected]>
14019 R:      Sylwester Nawrocki <[email protected]>
14020 L:      [email protected]
14021 S:      Maintained
14022 T:      git git://linuxtv.org/media_tree.git
14023 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
14024 F:      drivers/media/i2c/ov9650.c
14025
14026 OMNIVISION OV9734 SENSOR DRIVER
14027 M:      Tianshu Qiu <[email protected]>
14028 R:      Bingbu Cao <[email protected]>
14029 L:      [email protected]
14030 S:      Maintained
14031 T:      git git://linuxtv.org/media_tree.git
14032 F:      drivers/media/i2c/ov9734.c
14033
14034 ONENAND FLASH DRIVER
14035 M:      Kyungmin Park <[email protected]>
14036 L:      [email protected]
14037 S:      Maintained
14038 F:      drivers/mtd/nand/onenand/
14039 F:      include/linux/mtd/onenand*.h
14040
14041 ONION OMEGA2+ BOARD
14042 M:      Harvey Hunt <[email protected]>
14043 L:      [email protected]
14044 S:      Maintained
14045 F:      arch/mips/boot/dts/ralink/omega2p.dts
14046
14047 OP-TEE DRIVER
14048 M:      Jens Wiklander <[email protected]>
14049 L:      [email protected]
14050 S:      Maintained
14051 F:      Documentation/ABI/testing/sysfs-bus-optee-devices
14052 F:      drivers/tee/optee/
14053
14054 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
14055 M:      Sumit Garg <[email protected]>
14056 L:      [email protected]
14057 S:      Maintained
14058 F:      drivers/char/hw_random/optee-rng.c
14059
14060 OPA-VNIC DRIVER
14061 M:      Dennis Dalessandro <[email protected]>
14062 M:      Mike Marciniszyn <[email protected]>
14063 L:      [email protected]
14064 S:      Supported
14065 F:      drivers/infiniband/ulp/opa_vnic
14066
14067 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
14068 M:      Pantelis Antoniou <[email protected]>
14069 M:      Frank Rowand <[email protected]>
14070 L:      [email protected]
14071 S:      Maintained
14072 F:      Documentation/devicetree/dynamic-resolution-notes.rst
14073 F:      Documentation/devicetree/overlay-notes.rst
14074 F:      drivers/of/overlay.c
14075 F:      drivers/of/resolver.c
14076 K:      of_overlay_notifier_
14077
14078 OPEN FIRMWARE AND FLATTENED DEVICE TREE
14079 M:      Rob Herring <[email protected]>
14080 M:      Frank Rowand <[email protected]>
14081 L:      [email protected]
14082 S:      Maintained
14083 W:      http://www.devicetree.org/
14084 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
14085 F:      Documentation/ABI/testing/sysfs-firmware-ofw
14086 F:      drivers/of/
14087 F:      include/linux/of*.h
14088 F:      scripts/dtc/
14089
14090 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
14091 M:      Rob Herring <[email protected]>
14092 L:      [email protected]
14093 S:      Maintained
14094 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
14095 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
14096 F:      Documentation/devicetree/
14097 F:      arch/*/boot/dts/
14098 F:      include/dt-bindings/
14099
14100 OPENCOMPUTE PTP CLOCK DRIVER
14101 M:      Jonathan Lemon <[email protected]>
14102 L:      [email protected]
14103 S:      Maintained
14104 F:      drivers/ptp/ptp_ocp.c
14105
14106 OPENCORES I2C BUS DRIVER
14107 M:      Peter Korsgaard <[email protected]>
14108 M:      Andrew Lunn <[email protected]>
14109 L:      [email protected]
14110 S:      Maintained
14111 F:      Documentation/devicetree/bindings/i2c/i2c-ocores.txt
14112 F:      Documentation/i2c/busses/i2c-ocores.rst
14113 F:      drivers/i2c/busses/i2c-ocores.c
14114 F:      include/linux/platform_data/i2c-ocores.h
14115
14116 OPENRISC ARCHITECTURE
14117 M:      Jonas Bonn <[email protected]>
14118 M:      Stefan Kristiansson <[email protected]>
14119 M:      Stafford Horne <[email protected]>
14120 L:      [email protected]
14121 S:      Maintained
14122 W:      http://openrisc.io
14123 T:      git git://github.com/openrisc/linux.git
14124 F:      Documentation/devicetree/bindings/openrisc/
14125 F:      Documentation/openrisc/
14126 F:      arch/openrisc/
14127 F:      drivers/irqchip/irq-ompic.c
14128 F:      drivers/irqchip/irq-or1k-*
14129
14130 OPENVSWITCH
14131 M:      Pravin B Shelar <[email protected]>
14132 L:      [email protected]
14133 L:      [email protected]
14134 S:      Maintained
14135 W:      http://openvswitch.org
14136 F:      include/uapi/linux/openvswitch.h
14137 F:      net/openvswitch/
14138
14139 OPERATING PERFORMANCE POINTS (OPP)
14140 M:      Viresh Kumar <[email protected]>
14141 M:      Nishanth Menon <[email protected]>
14142 M:      Stephen Boyd <[email protected]>
14143 L:      [email protected]
14144 S:      Maintained
14145 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
14146 F:      Documentation/devicetree/bindings/opp/
14147 F:      Documentation/power/opp.rst
14148 F:      drivers/opp/
14149 F:      include/linux/pm_opp.h
14150
14151 OPL4 DRIVER
14152 M:      Clemens Ladisch <[email protected]>
14153 L:      [email protected] (moderated for non-subscribers)
14154 S:      Maintained
14155 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
14156 F:      sound/drivers/opl4/
14157
14158 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
14159 M:      Mark Fasheh <[email protected]>
14160 M:      Joel Becker <[email protected]>
14161 M:      Joseph Qi <[email protected]>
14162 L:      [email protected] (moderated for non-subscribers)
14163 S:      Supported
14164 W:      http://ocfs2.wiki.kernel.org
14165 F:      Documentation/filesystems/dlmfs.rst
14166 F:      Documentation/filesystems/ocfs2.rst
14167 F:      fs/ocfs2/
14168
14169 ORANGEFS FILESYSTEM
14170 M:      Mike Marshall <[email protected]>
14171 R:      Martin Brandenburg <[email protected]>
14172 L:      [email protected]
14173 S:      Supported
14174 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
14175 F:      Documentation/filesystems/orangefs.rst
14176 F:      fs/orangefs/
14177
14178 ORINOCO DRIVER
14179 L:      [email protected]
14180 S:      Orphan
14181 W:      https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
14182 W:      http://www.nongnu.org/orinoco/
14183 F:      drivers/net/wireless/intersil/orinoco/
14184
14185 OV2659 OMNIVISION SENSOR DRIVER
14186 M:      "Lad, Prabhakar" <[email protected]>
14187 L:      [email protected]
14188 S:      Maintained
14189 W:      https://linuxtv.org
14190 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14191 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
14192 F:      drivers/media/i2c/ov2659.c
14193 F:      include/media/i2c/ov2659.h
14194
14195 OVERLAY FILESYSTEM
14196 M:      Miklos Szeredi <[email protected]>
14197 L:      [email protected]
14198 S:      Supported
14199 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
14200 F:      Documentation/filesystems/overlayfs.rst
14201 F:      fs/overlayfs/
14202
14203 P54 WIRELESS DRIVER
14204 M:      Christian Lamparter <[email protected]>
14205 L:      [email protected]
14206 S:      Maintained
14207 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
14208 F:      drivers/net/wireless/intersil/p54/
14209
14210 PACKING
14211 M:      Vladimir Oltean <[email protected]>
14212 L:      [email protected]
14213 S:      Supported
14214 F:      Documentation/core-api/packing.rst
14215 F:      include/linux/packing.h
14216 F:      lib/packing.c
14217
14218 PADATA PARALLEL EXECUTION MECHANISM
14219 M:      Steffen Klassert <[email protected]>
14220 M:      Daniel Jordan <[email protected]>
14221 L:      [email protected]
14222 L:      [email protected]
14223 S:      Maintained
14224 F:      Documentation/core-api/padata.rst
14225 F:      include/linux/padata.h
14226 F:      kernel/padata.c
14227
14228 PAGE POOL
14229 M:      Jesper Dangaard Brouer <[email protected]>
14230 M:      Ilias Apalodimas <[email protected]>
14231 L:      [email protected]
14232 S:      Supported
14233 F:      Documentation/networking/page_pool.rst
14234 F:      include/net/page_pool.h
14235 F:      include/trace/events/page_pool.h
14236 F:      net/core/page_pool.c
14237
14238 PANASONIC LAPTOP ACPI EXTRAS DRIVER
14239 M:      Kenneth Chan <[email protected]>
14240 L:      [email protected]
14241 S:      Maintained
14242 F:      drivers/platform/x86/panasonic-laptop.c
14243
14244 PARALLAX PING IIO SENSOR DRIVER
14245 M:      Andreas Klinger <[email protected]>
14246 L:      [email protected]
14247 S:      Maintained
14248 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
14249 F:      drivers/iio/proximity/ping.c
14250
14251 PARALLEL LCD/KEYPAD PANEL DRIVER
14252 M:      Willy Tarreau <[email protected]>
14253 M:      Ksenija Stanojevic <[email protected]>
14254 S:      Odd Fixes
14255 F:      Documentation/admin-guide/lcd-panel-cgram.rst
14256 F:      drivers/auxdisplay/panel.c
14257
14258 PARALLEL PORT SUBSYSTEM
14259 M:      Sudip Mukherjee <[email protected]>
14260 M:      Sudip Mukherjee <[email protected]>
14261 L:      [email protected] (subscribers-only)
14262 S:      Maintained
14263 F:      Documentation/driver-api/parport*.rst
14264 F:      drivers/char/ppdev.c
14265 F:      drivers/parport/
14266 F:      include/linux/parport*.h
14267 F:      include/uapi/linux/ppdev.h
14268
14269 PARAVIRT_OPS INTERFACE
14270 M:      Juergen Gross <[email protected]>
14271 M:      Deep Shah <[email protected]>
14272 M:      "VMware, Inc." <[email protected]>
14273 L:      [email protected]
14274 S:      Supported
14275 F:      Documentation/virt/paravirt_ops.rst
14276 F:      arch/*/include/asm/paravirt*.h
14277 F:      arch/*/kernel/paravirt*
14278 F:      include/linux/hypervisor.h
14279
14280 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
14281 M:      Tim Waugh <[email protected]>
14282 L:      [email protected] (subscribers-only)
14283 S:      Maintained
14284 F:      Documentation/admin-guide/blockdev/paride.rst
14285 F:      drivers/block/paride/
14286
14287 PARISC ARCHITECTURE
14288 M:      "James E.J. Bottomley" <[email protected]>
14289 M:      Helge Deller <[email protected]>
14290 L:      [email protected]
14291 S:      Maintained
14292 W:      https://parisc.wiki.kernel.org
14293 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
14294 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
14295 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
14296 F:      Documentation/parisc/
14297 F:      arch/parisc/
14298 F:      drivers/char/agp/parisc-agp.c
14299 F:      drivers/input/misc/hp_sdc_rtc.c
14300 F:      drivers/input/serio/gscps2.c
14301 F:      drivers/input/serio/hp_sdc*
14302 F:      drivers/parisc/
14303 F:      drivers/parport/parport_gsc.*
14304 F:      drivers/tty/serial/8250/8250_gsc.c
14305 F:      drivers/video/console/sti*
14306 F:      drivers/video/fbdev/sti*
14307 F:      drivers/video/logo/logo_parisc*
14308 F:      include/linux/hp_sdc.h
14309
14310 PARMAN
14311 M:      Jiri Pirko <[email protected]>
14312 L:      [email protected]
14313 S:      Supported
14314 F:      include/linux/parman.h
14315 F:      lib/parman.c
14316 F:      lib/test_parman.c
14317
14318 PC ENGINES APU BOARD DRIVER
14319 M:      Enrico Weigelt, metux IT consult <[email protected]>
14320 S:      Maintained
14321 F:      drivers/platform/x86/pcengines-apuv2.c
14322
14323 PC87360 HARDWARE MONITORING DRIVER
14324 M:      Jim Cromie <[email protected]>
14325 L:      [email protected]
14326 S:      Maintained
14327 F:      Documentation/hwmon/pc87360.rst
14328 F:      drivers/hwmon/pc87360.c
14329
14330 PC8736x GPIO DRIVER
14331 M:      Jim Cromie <[email protected]>
14332 S:      Maintained
14333 F:      drivers/char/pc8736x_gpio.c
14334
14335 PC87427 HARDWARE MONITORING DRIVER
14336 M:      Jean Delvare <[email protected]>
14337 L:      [email protected]
14338 S:      Maintained
14339 F:      Documentation/hwmon/pc87427.rst
14340 F:      drivers/hwmon/pc87427.c
14341
14342 PCA9532 LED DRIVER
14343 M:      Riku Voipio <[email protected]>
14344 S:      Maintained
14345 F:      drivers/leds/leds-pca9532.c
14346 F:      include/linux/leds-pca9532.h
14347
14348 PCA9541 I2C BUS MASTER SELECTOR DRIVER
14349 M:      Guenter Roeck <[email protected]>
14350 L:      [email protected]
14351 S:      Maintained
14352 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
14353
14354 PCDP - PRIMARY CONSOLE AND DEBUG PORT
14355 M:      Khalid Aziz <[email protected]>
14356 S:      Maintained
14357 F:      drivers/firmware/pcdp.*
14358
14359 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
14360 M:      Thomas Petazzoni <[email protected]>
14361 M:      Pali Rohár <[email protected]>
14362 L:      [email protected]
14363 L:      [email protected] (moderated for non-subscribers)
14364 S:      Maintained
14365 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
14366 F:      drivers/pci/controller/pci-aardvark.c
14367
14368 PCI DRIVER FOR ALTERA PCIE IP
14369 M:      Joyce Ooi <[email protected]>
14370 L:      [email protected]
14371 S:      Supported
14372 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
14373 F:      drivers/pci/controller/pcie-altera.c
14374
14375 PCI DRIVER FOR APPLIEDMICRO XGENE
14376 M:      Toan Le <[email protected]>
14377 L:      [email protected]
14378 L:      [email protected] (moderated for non-subscribers)
14379 S:      Maintained
14380 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
14381 F:      drivers/pci/controller/pci-xgene.c
14382
14383 PCI DRIVER FOR ARM VERSATILE PLATFORM
14384 M:      Rob Herring <[email protected]>
14385 L:      [email protected]
14386 L:      [email protected] (moderated for non-subscribers)
14387 S:      Maintained
14388 F:      Documentation/devicetree/bindings/pci/versatile.yaml
14389 F:      drivers/pci/controller/pci-versatile.c
14390
14391 PCI DRIVER FOR ARMADA 8K
14392 M:      Thomas Petazzoni <[email protected]>
14393 L:      [email protected]
14394 L:      [email protected] (moderated for non-subscribers)
14395 S:      Maintained
14396 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
14397 F:      drivers/pci/controller/dwc/pcie-armada8k.c
14398
14399 PCI DRIVER FOR CADENCE PCIE IP
14400 M:      Tom Joseph <[email protected]>
14401 L:      [email protected]
14402 S:      Maintained
14403 F:      Documentation/devicetree/bindings/pci/cdns,*
14404 F:      drivers/pci/controller/cadence/
14405
14406 PCI DRIVER FOR FREESCALE LAYERSCAPE
14407 M:      Minghuan Lian <[email protected]>
14408 M:      Mingkai Hu <[email protected]>
14409 M:      Roy Zang <[email protected]>
14410 L:      [email protected]
14411 L:      [email protected]
14412 L:      [email protected] (moderated for non-subscribers)
14413 S:      Maintained
14414 F:      drivers/pci/controller/dwc/*layerscape*
14415
14416 PCI DRIVER FOR GENERIC OF HOSTS
14417 M:      Will Deacon <[email protected]>
14418 L:      [email protected]
14419 L:      [email protected] (moderated for non-subscribers)
14420 S:      Maintained
14421 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
14422 F:      drivers/pci/controller/pci-host-common.c
14423 F:      drivers/pci/controller/pci-host-generic.c
14424
14425 PCI DRIVER FOR IMX6
14426 M:      Richard Zhu <[email protected]>
14427 M:      Lucas Stach <[email protected]>
14428 L:      [email protected]
14429 L:      [email protected] (moderated for non-subscribers)
14430 S:      Maintained
14431 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.yaml
14432 F:      drivers/pci/controller/dwc/*imx6*
14433
14434 PCI DRIVER FOR FU740
14435 M:      Paul Walmsley <[email protected]>
14436 M:      Greentime Hu <[email protected]>
14437 L:      [email protected]
14438 S:      Maintained
14439 F:      Documentation/devicetree/bindings/pci/sifive,fu740-pcie.yaml
14440 F:      drivers/pci/controller/dwc/pcie-fu740.c
14441
14442 PCI DRIVER FOR INTEL IXP4XX
14443 M:      Linus Walleij <[email protected]>
14444 S:      Maintained
14445 F:      Documentation/devicetree/bindings/pci/intel,ixp4xx-pci.yaml
14446 F:      drivers/pci/controller/pci-ixp4xx.c
14447
14448 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
14449 M:      Nirmal Patel <[email protected]>
14450 R:      Jonathan Derrick <[email protected]>
14451 L:      [email protected]
14452 S:      Supported
14453 F:      drivers/pci/controller/vmd.c
14454
14455 PCI DRIVER FOR MICROSEMI SWITCHTEC
14456 M:      Kurt Schwemmer <[email protected]>
14457 M:      Logan Gunthorpe <[email protected]>
14458 L:      [email protected]
14459 S:      Maintained
14460 F:      Documentation/ABI/testing/sysfs-class-switchtec
14461 F:      Documentation/driver-api/switchtec.rst
14462 F:      drivers/ntb/hw/mscc/
14463 F:      drivers/pci/switch/switchtec*
14464 F:      include/linux/switchtec.h
14465 F:      include/uapi/linux/switchtec_ioctl.h
14466
14467 PCI DRIVER FOR MOBIVEIL PCIE IP
14468 M:      Karthikeyan Mitran <[email protected]>
14469 M:      Hou Zhiqiang <[email protected]>
14470 L:      [email protected]
14471 S:      Supported
14472 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
14473 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
14474
14475 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
14476 M:      Thomas Petazzoni <[email protected]>
14477 L:      [email protected]
14478 L:      [email protected] (moderated for non-subscribers)
14479 S:      Maintained
14480 F:      drivers/pci/controller/*mvebu*
14481
14482 PCI DRIVER FOR NVIDIA TEGRA
14483 M:      Thierry Reding <[email protected]>
14484 L:      [email protected]
14485 L:      [email protected]
14486 S:      Supported
14487 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
14488 F:      drivers/pci/controller/pci-tegra.c
14489
14490 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
14491 M:      Hou Zhiqiang <[email protected]>
14492 L:      [email protected]
14493 L:      [email protected] (moderated for non-subscribers)
14494 S:      Maintained
14495 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
14496 F:      drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
14497
14498 PCI DRIVER FOR RENESAS R-CAR
14499 M:      Marek Vasut <[email protected]>
14500 M:      Yoshihiro Shimoda <[email protected]>
14501 L:      [email protected]
14502 L:      [email protected]
14503 S:      Maintained
14504 F:      Documentation/devicetree/bindings/pci/*rcar*
14505 F:      drivers/pci/controller/*rcar*
14506
14507 PCI DRIVER FOR SAMSUNG EXYNOS
14508 M:      Jingoo Han <[email protected]>
14509 L:      [email protected]
14510 L:      [email protected] (moderated for non-subscribers)
14511 L:      [email protected]
14512 S:      Maintained
14513 F:      drivers/pci/controller/dwc/pci-exynos.c
14514
14515 PCI DRIVER FOR SYNOPSYS DESIGNWARE
14516 M:      Jingoo Han <[email protected]>
14517 M:      Gustavo Pimentel <[email protected]>
14518 L:      [email protected]
14519 S:      Maintained
14520 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie.yaml
14521 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie-ep.yaml
14522 F:      drivers/pci/controller/dwc/*designware*
14523
14524 PCI DRIVER FOR TI DRA7XX/J721E
14525 M:      Kishon Vijay Abraham I <[email protected]>
14526 L:      [email protected]
14527 L:      [email protected]
14528 L:      [email protected] (moderated for non-subscribers)
14529 S:      Supported
14530 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
14531 F:      drivers/pci/controller/cadence/pci-j721e.c
14532 F:      drivers/pci/controller/dwc/pci-dra7xx.c
14533
14534 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
14535 M:      Linus Walleij <[email protected]>
14536 L:      [email protected]
14537 S:      Maintained
14538 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
14539 F:      drivers/pci/controller/pci-v3-semi.c
14540
14541 PCI ENDPOINT SUBSYSTEM
14542 M:      Kishon Vijay Abraham I <[email protected]>
14543 M:      Lorenzo Pieralisi <[email protected]>
14544 R:      Krzysztof Wilczyński <[email protected]>
14545 L:      [email protected]
14546 S:      Supported
14547 F:      Documentation/PCI/endpoint/*
14548 F:      Documentation/misc-devices/pci-endpoint-test.rst
14549 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git
14550 F:      drivers/misc/pci_endpoint_test.c
14551 F:      drivers/pci/endpoint/
14552 F:      tools/pci/
14553
14554 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
14555 M:      Russell Currey <[email protected]>
14556 M:      Oliver O'Halloran <[email protected]>
14557 L:      [email protected]
14558 S:      Supported
14559 F:      Documentation/PCI/pci-error-recovery.rst
14560 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
14561 F:      arch/powerpc/include/*/eeh*.h
14562 F:      arch/powerpc/kernel/eeh*.c
14563 F:      arch/powerpc/platforms/*/eeh*.c
14564 F:      drivers/pci/pcie/aer.c
14565 F:      drivers/pci/pcie/dpc.c
14566 F:      drivers/pci/pcie/err.c
14567
14568 PCI ERROR RECOVERY
14569 M:      Linas Vepstas <[email protected]>
14570 L:      [email protected]
14571 S:      Supported
14572 F:      Documentation/PCI/pci-error-recovery.rst
14573
14574 PCI MSI DRIVER FOR ALTERA MSI IP
14575 M:      Joyce Ooi <[email protected]>
14576 L:      [email protected]
14577 S:      Supported
14578 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
14579 F:      drivers/pci/controller/pcie-altera-msi.c
14580
14581 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
14582 M:      Toan Le <[email protected]>
14583 L:      [email protected]
14584 L:      [email protected] (moderated for non-subscribers)
14585 S:      Maintained
14586 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
14587 F:      drivers/pci/controller/pci-xgene-msi.c
14588
14589 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
14590 M:      Lorenzo Pieralisi <[email protected]>
14591 R:      Rob Herring <[email protected]>
14592 R:      Krzysztof Wilczyński <[email protected]>
14593 L:      [email protected]
14594 S:      Supported
14595 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
14596 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git/
14597 F:      drivers/pci/controller/
14598
14599 PCI SUBSYSTEM
14600 M:      Bjorn Helgaas <[email protected]>
14601 L:      [email protected]
14602 S:      Supported
14603 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
14604 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
14605 F:      Documentation/PCI/
14606 F:      Documentation/devicetree/bindings/pci/
14607 F:      arch/x86/kernel/early-quirks.c
14608 F:      arch/x86/kernel/quirks.c
14609 F:      arch/x86/pci/
14610 F:      drivers/acpi/pci*
14611 F:      drivers/pci/
14612 F:      include/asm-generic/pci*
14613 F:      include/linux/of_pci.h
14614 F:      include/linux/pci*
14615 F:      include/uapi/linux/pci*
14616 F:      lib/pci*
14617
14618 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
14619 M:      Jonathan Chocron <[email protected]>
14620 L:      [email protected]
14621 S:      Maintained
14622 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
14623 F:      drivers/pci/controller/dwc/pcie-al.c
14624
14625 PCIE DRIVER FOR AMLOGIC MESON
14626 M:      Yue Wang <[email protected]>
14627 L:      [email protected]
14628 L:      [email protected]
14629 S:      Maintained
14630 F:      drivers/pci/controller/dwc/pci-meson.c
14631
14632 PCIE DRIVER FOR AXIS ARTPEC
14633 M:      Jesper Nilsson <[email protected]>
14634 L:      [email protected]
14635 L:      [email protected]
14636 S:      Maintained
14637 F:      Documentation/devicetree/bindings/pci/axis,artpec*
14638 F:      drivers/pci/controller/dwc/*artpec*
14639
14640 PCIE DRIVER FOR CAVIUM THUNDERX
14641 M:      Robert Richter <[email protected]>
14642 L:      [email protected]
14643 L:      [email protected] (moderated for non-subscribers)
14644 S:      Odd Fixes
14645 F:      drivers/pci/controller/pci-thunder-*
14646
14647 PCIE DRIVER FOR HISILICON
14648 M:      Zhou Wang <[email protected]>
14649 L:      [email protected]
14650 S:      Maintained
14651 F:      drivers/pci/controller/dwc/pcie-hisi.c
14652
14653 PCIE DRIVER FOR HISILICON KIRIN
14654 M:      Xiaowei Song <[email protected]>
14655 M:      Binghui Wang <[email protected]>
14656 L:      [email protected]
14657 S:      Maintained
14658 F:      Documentation/devicetree/bindings/pci/hisilicon,kirin-pcie.yaml
14659 F:      drivers/pci/controller/dwc/pcie-kirin.c
14660
14661 PCIE DRIVER FOR HISILICON STB
14662 M:      Shawn Guo <[email protected]>
14663 L:      [email protected]
14664 S:      Maintained
14665 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
14666 F:      drivers/pci/controller/dwc/pcie-histb.c
14667
14668 PCIE DRIVER FOR INTEL KEEM BAY
14669 M:      Srikanth Thokala <[email protected]>
14670 L:      [email protected]
14671 S:      Supported
14672 F:      Documentation/devicetree/bindings/pci/intel,keembay-pcie*
14673 F:      drivers/pci/controller/dwc/pcie-keembay.c
14674
14675 PCIE DRIVER FOR INTEL LGM GW SOC
14676 M:      Rahul Tanwar <[email protected]>
14677 L:      [email protected]
14678 S:      Maintained
14679 F:      Documentation/devicetree/bindings/pci/intel-gw-pcie.yaml
14680 F:      drivers/pci/controller/dwc/pcie-intel-gw.c
14681
14682 PCIE DRIVER FOR MEDIATEK
14683 M:      Ryder Lee <[email protected]>
14684 M:      Jianjun Wang <[email protected]>
14685 L:      [email protected]
14686 L:      [email protected]
14687 S:      Supported
14688 F:      Documentation/devicetree/bindings/pci/mediatek*
14689 F:      drivers/pci/controller/*mediatek*
14690
14691 PCIE DRIVER FOR MICROCHIP
14692 M:      Daire McNamara <[email protected]>
14693 L:      [email protected]
14694 S:      Supported
14695 F:      Documentation/devicetree/bindings/pci/microchip*
14696 F:      drivers/pci/controller/*microchip*
14697
14698 PCIE DRIVER FOR QUALCOMM MSM
14699 M:      Stanimir Varbanov <[email protected]>
14700 L:      [email protected]
14701 L:      [email protected]
14702 S:      Maintained
14703 F:      drivers/pci/controller/dwc/*qcom*
14704
14705 PCIE DRIVER FOR ROCKCHIP
14706 M:      Shawn Lin <[email protected]>
14707 L:      [email protected]
14708 L:      [email protected]
14709 S:      Maintained
14710 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
14711 F:      drivers/pci/controller/pcie-rockchip*
14712
14713 PCIE DRIVER FOR SOCIONEXT UNIPHIER
14714 M:      Kunihiko Hayashi <[email protected]>
14715 L:      [email protected]
14716 S:      Maintained
14717 F:      Documentation/devicetree/bindings/pci/uniphier-pcie*
14718 F:      drivers/pci/controller/dwc/pcie-uniphier*
14719
14720 PCIE DRIVER FOR ST SPEAR13XX
14721 M:      Pratyush Anand <[email protected]>
14722 L:      [email protected]
14723 S:      Maintained
14724 F:      drivers/pci/controller/dwc/*spear*
14725
14726 PCMCIA SUBSYSTEM
14727 M:      Dominik Brodowski <[email protected]>
14728 S:      Odd Fixes
14729 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
14730 F:      Documentation/pcmcia/
14731 F:      drivers/pcmcia/
14732 F:      include/pcmcia/
14733 F:      tools/pcmcia/
14734
14735 PCNET32 NETWORK DRIVER
14736 M:      Don Fry <[email protected]>
14737 L:      [email protected]
14738 S:      Maintained
14739 F:      drivers/net/ethernet/amd/pcnet32.c
14740
14741 PCRYPT PARALLEL CRYPTO ENGINE
14742 M:      Steffen Klassert <[email protected]>
14743 L:      [email protected]
14744 S:      Maintained
14745 F:      crypto/pcrypt.c
14746 F:      include/crypto/pcrypt.h
14747
14748 PEAQ WMI HOTKEYS DRIVER
14749 M:      Hans de Goede <[email protected]>
14750 L:      [email protected]
14751 S:      Maintained
14752 F:      drivers/platform/x86/peaq-wmi.c
14753
14754 PENSANDO ETHERNET DRIVERS
14755 M:      Shannon Nelson <[email protected]>
14756 M:      [email protected]
14757 L:      [email protected]
14758 S:      Supported
14759 F:      Documentation/networking/device_drivers/ethernet/pensando/ionic.rst
14760 F:      drivers/net/ethernet/pensando/
14761
14762 PER-CPU MEMORY ALLOCATOR
14763 M:      Dennis Zhou <[email protected]>
14764 M:      Tejun Heo <[email protected]>
14765 M:      Christoph Lameter <[email protected]>
14766 L:      [email protected]
14767 S:      Maintained
14768 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
14769 F:      arch/*/include/asm/percpu.h
14770 F:      include/linux/percpu*.h
14771 F:      lib/percpu*.c
14772 F:      mm/percpu*.c
14773
14774 PER-TASK DELAY ACCOUNTING
14775 M:      Balbir Singh <[email protected]>
14776 S:      Maintained
14777 F:      include/linux/delayacct.h
14778 F:      kernel/delayacct.c
14779
14780 PERFORMANCE EVENTS SUBSYSTEM
14781 M:      Peter Zijlstra <[email protected]>
14782 M:      Ingo Molnar <[email protected]>
14783 M:      Arnaldo Carvalho de Melo <[email protected]>
14784 R:      Mark Rutland <[email protected]>
14785 R:      Alexander Shishkin <[email protected]>
14786 R:      Jiri Olsa <[email protected]>
14787 R:      Namhyung Kim <[email protected]>
14788 L:      [email protected]
14789 L:      [email protected]
14790 S:      Supported
14791 W:      https://perf.wiki.kernel.org/
14792 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
14793 F:      arch/*/events/*
14794 F:      arch/*/events/*/*
14795 F:      arch/*/include/asm/perf_event.h
14796 F:      arch/*/kernel/*/*/perf_event*.c
14797 F:      arch/*/kernel/*/perf_event*.c
14798 F:      arch/*/kernel/perf_callchain.c
14799 F:      arch/*/kernel/perf_event*.c
14800 F:      include/linux/perf_event.h
14801 F:      include/uapi/linux/perf_event.h
14802 F:      kernel/events/*
14803 F:      tools/lib/perf/
14804 F:      tools/perf/
14805
14806 PERFORMANCE EVENTS TOOLING ARM64
14807 R:      John Garry <[email protected]>
14808 R:      Will Deacon <[email protected]>
14809 R:      Mathieu Poirier <[email protected]>
14810 R:      Leo Yan <[email protected]>
14811 L:      [email protected] (moderated for non-subscribers)
14812 S:      Supported
14813 F:      tools/build/feature/test-libopencsd.c
14814 F:      tools/perf/arch/arm*/
14815 F:      tools/perf/pmu-events/arch/arm64/
14816 F:      tools/perf/util/arm-spe*
14817 F:      tools/perf/util/cs-etm*
14818
14819 PERSONALITY HANDLING
14820 M:      Christoph Hellwig <[email protected]>
14821 L:      [email protected]
14822 S:      Maintained
14823 F:      include/linux/personality.h
14824 F:      include/uapi/linux/personality.h
14825
14826 PHOENIX RC FLIGHT CONTROLLER ADAPTER
14827 M:      Marcus Folkesson <[email protected]>
14828 L:      [email protected]
14829 S:      Maintained
14830 F:      Documentation/input/devices/pxrc.rst
14831 F:      drivers/input/joystick/pxrc.c
14832
14833 PHONET PROTOCOL
14834 M:      Remi Denis-Courmont <[email protected]>
14835 S:      Supported
14836 F:      Documentation/networking/phonet.rst
14837 F:      include/linux/phonet.h
14838 F:      include/net/phonet/
14839 F:      include/uapi/linux/phonet.h
14840 F:      net/phonet/
14841
14842 PHRAM MTD DRIVER
14843 M:      Joern Engel <[email protected]>
14844 L:      [email protected]
14845 S:      Maintained
14846 F:      drivers/mtd/devices/phram.c
14847
14848 PICOLCD HID DRIVER
14849 M:      Bruno Prémont <[email protected]>
14850 L:      [email protected]
14851 S:      Maintained
14852 F:      drivers/hid/hid-picolcd*
14853
14854 PIDFD API
14855 M:      Christian Brauner <[email protected]>
14856 L:      [email protected]
14857 S:      Maintained
14858 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
14859 F:      samples/pidfd/
14860 F:      tools/testing/selftests/clone3/
14861 F:      tools/testing/selftests/pid_namespace/
14862 F:      tools/testing/selftests/pidfd/
14863 K:      (?i)pidfd
14864 K:      (?i)clone3
14865 K:      \b(clone_args|kernel_clone_args)\b
14866
14867 PIN CONTROL SUBSYSTEM
14868 M:      Linus Walleij <[email protected]>
14869 L:      [email protected]
14870 S:      Maintained
14871 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
14872 F:      Documentation/devicetree/bindings/pinctrl/
14873 F:      Documentation/driver-api/pin-control.rst
14874 F:      drivers/pinctrl/
14875 F:      include/linux/pinctrl/
14876
14877 PIN CONTROLLER - AMD
14878 M:      Basavaraj Natikar <[email protected]>
14879 M:      Shyam Sundar S K <[email protected]>
14880 S:      Maintained
14881 F:      drivers/pinctrl/pinctrl-amd.c
14882
14883 PIN CONTROLLER - FREESCALE
14884 M:      Dong Aisheng <[email protected]>
14885 M:      Fabio Estevam <[email protected]>
14886 M:      Shawn Guo <[email protected]>
14887 M:      Stefan Agner <[email protected]>
14888 R:      Pengutronix Kernel Team <[email protected]>
14889 L:      [email protected]
14890 S:      Maintained
14891 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
14892 F:      drivers/pinctrl/freescale/
14893
14894 PIN CONTROLLER - INTEL
14895 M:      Mika Westerberg <[email protected]>
14896 M:      Andy Shevchenko <[email protected]>
14897 S:      Maintained
14898 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
14899 F:      drivers/pinctrl/intel/
14900
14901 PIN CONTROLLER - KEEMBAY
14902 M:      Lakshmi Sowjanya D <[email protected]>
14903 S:      Supported
14904 F:      drivers/pinctrl/pinctrl-keembay*
14905
14906 PIN CONTROLLER - MEDIATEK
14907 M:      Sean Wang <[email protected]>
14908 L:      [email protected] (moderated for non-subscribers)
14909 S:      Maintained
14910 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt65xx-pinctrl.yaml
14911 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt6797-pinctrl.yaml
14912 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt7622-pinctrl.yaml
14913 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt8183-pinctrl.yaml
14914 F:      drivers/pinctrl/mediatek/
14915
14916 PIN CONTROLLER - MICROCHIP AT91
14917 M:      Ludovic Desroches <[email protected]>
14918 L:      [email protected] (moderated for non-subscribers)
14919 L:      [email protected]
14920 S:      Supported
14921 F:      drivers/gpio/gpio-sama5d2-piobu.c
14922 F:      drivers/pinctrl/pinctrl-at91*
14923
14924 PIN CONTROLLER - QUALCOMM
14925 M:      Bjorn Andersson <[email protected]>
14926 L:      [email protected]
14927 S:      Maintained
14928 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
14929 F:      drivers/pinctrl/qcom/
14930
14931 PIN CONTROLLER - RENESAS
14932 M:      Geert Uytterhoeven <[email protected]>
14933 L:      [email protected]
14934 S:      Supported
14935 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-pinctrl
14936 F:      Documentation/devicetree/bindings/pinctrl/renesas,*
14937 F:      drivers/pinctrl/renesas/
14938
14939 PIN CONTROLLER - SAMSUNG
14940 M:      Tomasz Figa <[email protected]>
14941 M:      Krzysztof Kozlowski <[email protected]>
14942 M:      Sylwester Nawrocki <[email protected]>
14943 L:      [email protected] (moderated for non-subscribers)
14944 L:      [email protected]
14945 S:      Maintained
14946 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
14947 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
14948 F:      Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
14949 F:      drivers/pinctrl/samsung/
14950 F:      include/dt-bindings/pinctrl/samsung.h
14951
14952 PIN CONTROLLER - SINGLE
14953 M:      Tony Lindgren <[email protected]>
14954 M:      Haojian Zhuang <[email protected]>
14955 L:      [email protected] (moderated for non-subscribers)
14956 L:      [email protected]
14957 S:      Maintained
14958 F:      drivers/pinctrl/pinctrl-single.c
14959
14960 PIN CONTROLLER - ST SPEAR
14961 M:      Viresh Kumar <[email protected]>
14962 L:      [email protected] (moderated for non-subscribers)
14963 S:      Maintained
14964 W:      http://www.st.com/spear
14965 F:      drivers/pinctrl/spear/
14966
14967 PKTCDVD DRIVER
14968 M:      [email protected]
14969 S:      Orphan
14970 F:      drivers/block/pktcdvd.c
14971 F:      include/linux/pktcdvd.h
14972 F:      include/uapi/linux/pktcdvd.h
14973
14974 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
14975 M:      Tomasz Duszynski <[email protected]>
14976 S:      Maintained
14977 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
14978 F:      drivers/iio/chemical/pms7003.c
14979
14980 PLDMFW LIBRARY
14981 M:      Jacob Keller <[email protected]>
14982 S:      Maintained
14983 F:      Documentation/driver-api/pldmfw/
14984 F:      include/linux/pldmfw.h
14985 F:      lib/pldmfw/
14986
14987 PLX DMA DRIVER
14988 M:      Logan Gunthorpe <[email protected]>
14989 S:      Maintained
14990 F:      drivers/dma/plx_dma.c
14991
14992 PM6764TR DRIVER
14993 M:      Charles Hsu     <[email protected]>
14994 L:      [email protected]
14995 S:      Maintained
14996 F:      Documentation/hwmon/pm6764tr.rst
14997 F:      drivers/hwmon/pmbus/pm6764tr.c
14998
14999 PM-GRAPH UTILITY
15000 M:      "Todd E Brandt" <[email protected]>
15001 L:      [email protected]
15002 S:      Supported
15003 W:      https://01.org/pm-graph
15004 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
15005 T:      git git://github.com/intel/pm-graph
15006 F:      tools/power/pm-graph
15007
15008 PMBUS HARDWARE MONITORING DRIVERS
15009 M:      Guenter Roeck <[email protected]>
15010 L:      [email protected]
15011 S:      Maintained
15012 W:      http://hwmon.wiki.kernel.org/
15013 W:      http://www.roeck-us.net/linux/drivers/
15014 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
15015 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
15016 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
15017 F:      Documentation/hwmon/adm1275.rst
15018 F:      Documentation/hwmon/ibm-cffps.rst
15019 F:      Documentation/hwmon/ir35221.rst
15020 F:      Documentation/hwmon/lm25066.rst
15021 F:      Documentation/hwmon/ltc2978.rst
15022 F:      Documentation/hwmon/ltc3815.rst
15023 F:      Documentation/hwmon/max16064.rst
15024 F:      Documentation/hwmon/max20751.rst
15025 F:      Documentation/hwmon/max31785.rst
15026 F:      Documentation/hwmon/max34440.rst
15027 F:      Documentation/hwmon/max8688.rst
15028 F:      Documentation/hwmon/pmbus-core.rst
15029 F:      Documentation/hwmon/pmbus.rst
15030 F:      Documentation/hwmon/tps40422.rst
15031 F:      Documentation/hwmon/ucd9000.rst
15032 F:      Documentation/hwmon/ucd9200.rst
15033 F:      Documentation/hwmon/zl6100.rst
15034 F:      drivers/hwmon/pmbus/
15035 F:      include/linux/pmbus.h
15036
15037 PMC SIERRA MaxRAID DRIVER
15038 L:      [email protected]
15039 S:      Orphan
15040 W:      http://www.pmc-sierra.com/
15041 F:      drivers/scsi/pmcraid.*
15042
15043 PMC SIERRA PM8001 DRIVER
15044 M:      Jack Wang <[email protected]>
15045 L:      [email protected]
15046 S:      Supported
15047 F:      drivers/scsi/pm8001/
15048
15049 PNI RM3100 IIO DRIVER
15050 M:      Song Qiang <[email protected]>
15051 L:      [email protected]
15052 S:      Maintained
15053 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.yaml
15054 F:      drivers/iio/magnetometer/rm3100*
15055
15056 PNP SUPPORT
15057 M:      "Rafael J. Wysocki" <[email protected]>
15058 L:      [email protected]
15059 S:      Maintained
15060 F:      drivers/pnp/
15061 F:      include/linux/pnp.h
15062
15063 POSIX CLOCKS and TIMERS
15064 M:      Thomas Gleixner <[email protected]>
15065 L:      [email protected]
15066 S:      Maintained
15067 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
15068 F:      fs/timerfd.c
15069 F:      include/linux/time_namespace.h
15070 F:      include/linux/timer*
15071 F:      kernel/time/*timer*
15072 F:      kernel/time/namespace.c
15073
15074 POWER MANAGEMENT CORE
15075 M:      "Rafael J. Wysocki" <[email protected]>
15076 L:      [email protected]
15077 S:      Supported
15078 B:      https://bugzilla.kernel.org
15079 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
15080 F:      drivers/base/power/
15081 F:      drivers/powercap/
15082 F:      include/linux/intel_rapl.h
15083 F:      include/linux/pm.h
15084 F:      include/linux/pm_*
15085 F:      include/linux/powercap.h
15086 F:      kernel/configs/nopm.config
15087
15088 DYNAMIC THERMAL POWER MANAGEMENT (DTPM)
15089 M:      Daniel Lezcano <[email protected]>
15090 L:      [email protected]
15091 S:      Supported
15092 B:      https://bugzilla.kernel.org
15093 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
15094 F:      drivers/powercap/dtpm*
15095 F:      include/linux/dtpm.h
15096
15097 POWER STATE COORDINATION INTERFACE (PSCI)
15098 M:      Mark Rutland <[email protected]>
15099 M:      Lorenzo Pieralisi <[email protected]>
15100 L:      [email protected] (moderated for non-subscribers)
15101 S:      Maintained
15102 F:      drivers/firmware/psci/
15103 F:      include/linux/psci.h
15104 F:      include/uapi/linux/psci.h
15105
15106 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
15107 M:      Sebastian Reichel <[email protected]>
15108 L:      [email protected]
15109 S:      Maintained
15110 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
15111 F:      Documentation/ABI/testing/sysfs-class-power
15112 F:      Documentation/devicetree/bindings/power/supply/
15113 F:      drivers/power/supply/
15114 F:      include/linux/power/
15115 F:      include/linux/power_supply.h
15116
15117 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
15118 M:      Suraj Jitindar Singh <[email protected]>
15119 L:      [email protected]
15120 S:      Maintained
15121 F:      drivers/char/powernv-op-panel.c
15122
15123 PPP OVER ATM (RFC 2364)
15124 M:      Mitchell Blank Jr <[email protected]>
15125 S:      Maintained
15126 F:      include/uapi/linux/atmppp.h
15127 F:      net/atm/pppoatm.c
15128
15129 PPP OVER ETHERNET
15130 M:      Michal Ostrowski <[email protected]>
15131 S:      Maintained
15132 F:      drivers/net/ppp/pppoe.c
15133 F:      drivers/net/ppp/pppox.c
15134
15135 PPP OVER L2TP
15136 M:      James Chapman <[email protected]>
15137 S:      Maintained
15138 F:      include/linux/if_pppol2tp.h
15139 F:      include/uapi/linux/if_pppol2tp.h
15140 F:      net/l2tp/l2tp_ppp.c
15141
15142 PPP PROTOCOL DRIVERS AND COMPRESSORS
15143 M:      Paul Mackerras <[email protected]>
15144 L:      [email protected]
15145 S:      Maintained
15146 F:      drivers/net/ppp/ppp_*
15147
15148 PPS SUPPORT
15149 M:      Rodolfo Giometti <[email protected]>
15150 L:      [email protected] (subscribers-only)
15151 S:      Maintained
15152 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
15153 F:      Documentation/ABI/testing/sysfs-pps
15154 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
15155 F:      Documentation/driver-api/pps.rst
15156 F:      drivers/pps/
15157 F:      include/linux/pps*.h
15158 F:      include/uapi/linux/pps.h
15159
15160 PPTP DRIVER
15161 M:      Dmitry Kozlov <[email protected]>
15162 L:      [email protected]
15163 S:      Maintained
15164 W:      http://sourceforge.net/projects/accel-pptp
15165 F:      drivers/net/ppp/pptp.c
15166
15167 PRESSURE STALL INFORMATION (PSI)
15168 M:      Johannes Weiner <[email protected]>
15169 S:      Maintained
15170 F:      include/linux/psi*
15171 F:      kernel/sched/psi.c
15172
15173 PRINTK
15174 M:      Petr Mladek <[email protected]>
15175 M:      Sergey Senozhatsky <[email protected]>
15176 R:      Steven Rostedt <[email protected]>
15177 R:      John Ogness <[email protected]>
15178 S:      Maintained
15179 F:      include/linux/printk.h
15180 F:      kernel/printk/
15181
15182 PRINTK INDEXING
15183 R:      Chris Down <[email protected]>
15184 S:      Maintained
15185 F:      kernel/printk/index.c
15186
15187 PROC FILESYSTEM
15188 L:      [email protected]
15189 L:      [email protected]
15190 S:      Maintained
15191 F:      Documentation/filesystems/proc.rst
15192 F:      fs/proc/
15193 F:      include/linux/proc_fs.h
15194 F:      tools/testing/selftests/proc/
15195
15196 PROC SYSCTL
15197 M:      Luis Chamberlain <[email protected]>
15198 M:      Kees Cook <[email protected]>
15199 M:      Iurii Zaikin <[email protected]>
15200 L:      [email protected]
15201 L:      [email protected]
15202 S:      Maintained
15203 F:      fs/proc/proc_sysctl.c
15204 F:      include/linux/sysctl.h
15205 F:      kernel/sysctl-test.c
15206 F:      kernel/sysctl.c
15207 F:      tools/testing/selftests/sysctl/
15208
15209 PS3 NETWORK SUPPORT
15210 M:      Geoff Levand <[email protected]>
15211 L:      [email protected]
15212 L:      [email protected]
15213 S:      Maintained
15214 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
15215
15216 PS3 PLATFORM SUPPORT
15217 M:      Geoff Levand <[email protected]>
15218 L:      [email protected]
15219 S:      Maintained
15220 F:      arch/powerpc/boot/ps3*
15221 F:      arch/powerpc/include/asm/lv1call.h
15222 F:      arch/powerpc/include/asm/ps3*.h
15223 F:      arch/powerpc/platforms/ps3/
15224 F:      drivers/*/ps3*
15225 F:      drivers/ps3/
15226 F:      drivers/rtc/rtc-ps3.c
15227 F:      drivers/usb/host/*ps3.c
15228 F:      sound/ppc/snd_ps3*
15229
15230 PS3VRAM DRIVER
15231 M:      Jim Paris <[email protected]>
15232 M:      Geoff Levand <[email protected]>
15233 L:      [email protected]
15234 S:      Maintained
15235 F:      drivers/block/ps3vram.c
15236
15237 PSAMPLE PACKET SAMPLING SUPPORT
15238 M:      Yotam Gigi <[email protected]>
15239 S:      Maintained
15240 F:      include/net/psample.h
15241 F:      include/uapi/linux/psample.h
15242 F:      net/psample
15243
15244 PSTORE FILESYSTEM
15245 M:      Kees Cook <[email protected]>
15246 M:      Anton Vorontsov <[email protected]>
15247 M:      Colin Cross <[email protected]>
15248 M:      Tony Luck <[email protected]>
15249 S:      Maintained
15250 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
15251 F:      Documentation/admin-guide/ramoops.rst
15252 F:      Documentation/admin-guide/pstore-blk.rst
15253 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.txt
15254 F:      drivers/acpi/apei/erst.c
15255 F:      drivers/firmware/efi/efi-pstore.c
15256 F:      fs/pstore/
15257 F:      include/linux/pstore*
15258 K:      \b(pstore|ramoops)
15259
15260 PTP HARDWARE CLOCK SUPPORT
15261 M:      Richard Cochran <[email protected]>
15262 L:      [email protected]
15263 S:      Maintained
15264 W:      http://linuxptp.sourceforge.net/
15265 F:      Documentation/ABI/testing/sysfs-ptp
15266 F:      Documentation/driver-api/ptp.rst
15267 F:      drivers/net/phy/dp83640*
15268 F:      drivers/ptp/*
15269 F:      include/linux/ptp_cl*
15270
15271 PTP VIRTUAL CLOCK SUPPORT
15272 M:      Yangbo Lu <[email protected]>
15273 L:      [email protected]
15274 S:      Maintained
15275 F:      drivers/ptp/ptp_vclock.c
15276 F:      net/ethtool/phc_vclocks.c
15277
15278 PTRACE SUPPORT
15279 M:      Oleg Nesterov <[email protected]>
15280 S:      Maintained
15281 F:      arch/*/*/ptrace*.c
15282 F:      arch/*/include/asm/ptrace*.h
15283 F:      arch/*/ptrace*.c
15284 F:      include/asm-generic/syscall.h
15285 F:      include/linux/ptrace.h
15286 F:      include/linux/regset.h
15287 F:      include/linux/tracehook.h
15288 F:      include/uapi/linux/ptrace.h
15289 F:      include/uapi/linux/ptrace.h
15290 F:      kernel/ptrace.c
15291
15292 PULSE8-CEC DRIVER
15293 M:      Hans Verkuil <[email protected]>
15294 L:      [email protected]
15295 S:      Maintained
15296 T:      git git://linuxtv.org/media_tree.git
15297 F:      Documentation/admin-guide/media/pulse8-cec.rst
15298 F:      drivers/media/cec/usb/pulse8/
15299
15300 PVRUSB2 VIDEO4LINUX DRIVER
15301 M:      Mike Isely <[email protected]>
15302 L:      [email protected]       (subscribers-only)
15303 L:      [email protected]
15304 S:      Maintained
15305 W:      http://www.isely.net/pvrusb2/
15306 T:      git git://linuxtv.org/media_tree.git
15307 F:      Documentation/driver-api/media/drivers/pvrusb2*
15308 F:      drivers/media/usb/pvrusb2/
15309
15310 PWC WEBCAM DRIVER
15311 M:      Hans Verkuil <[email protected]>
15312 L:      [email protected]
15313 S:      Odd Fixes
15314 T:      git git://linuxtv.org/media_tree.git
15315 F:      drivers/media/usb/pwc/*
15316 F:      include/trace/events/pwc.h
15317
15318 PWM FAN DRIVER
15319 M:      Bartlomiej Zolnierkiewicz <[email protected]>
15320 L:      [email protected]
15321 S:      Supported
15322 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
15323 F:      Documentation/hwmon/pwm-fan.rst
15324 F:      drivers/hwmon/pwm-fan.c
15325
15326 PWM IR Transmitter
15327 M:      Sean Young <[email protected]>
15328 L:      [email protected]
15329 S:      Maintained
15330 F:      drivers/media/rc/pwm-ir-tx.c
15331
15332 PWM SUBSYSTEM
15333 M:      Thierry Reding <[email protected]>
15334 R:      Uwe Kleine-König <[email protected]>
15335 M:      Lee Jones <[email protected]>
15336 L:      [email protected]
15337 S:      Maintained
15338 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
15339 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
15340 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
15341 F:      Documentation/devicetree/bindings/pwm/
15342 F:      Documentation/driver-api/pwm.rst
15343 F:      drivers/gpio/gpio-mvebu.c
15344 F:      drivers/pwm/
15345 F:      drivers/video/backlight/pwm_bl.c
15346 F:      include/linux/pwm.h
15347 F:      include/linux/pwm_backlight.h
15348 K:      pwm_(config|apply_state|ops)
15349
15350 PXA GPIO DRIVER
15351 M:      Robert Jarzmik <[email protected]>
15352 L:      [email protected]
15353 S:      Maintained
15354 F:      drivers/gpio/gpio-pxa.c
15355
15356 PXA MMCI DRIVER
15357 S:      Orphan
15358
15359 PXA RTC DRIVER
15360 M:      Robert Jarzmik <[email protected]>
15361 L:      [email protected]
15362 S:      Maintained
15363
15364 PXA2xx/PXA3xx SUPPORT
15365 M:      Daniel Mack <[email protected]>
15366 M:      Haojian Zhuang <[email protected]>
15367 M:      Robert Jarzmik <[email protected]>
15368 L:      [email protected] (moderated for non-subscribers)
15369 S:      Maintained
15370 T:      git git://github.com/hzhuang1/linux.git
15371 T:      git git://github.com/rjarzmik/linux.git
15372 F:      arch/arm/boot/dts/pxa*
15373 F:      arch/arm/mach-pxa/
15374 F:      drivers/dma/pxa*
15375 F:      drivers/pcmcia/pxa2xx*
15376 F:      drivers/pinctrl/pxa/
15377 F:      drivers/spi/spi-pxa2xx*
15378 F:      drivers/usb/gadget/udc/pxa2*
15379 F:      include/sound/pxa2xx-lib.h
15380 F:      sound/arm/pxa*
15381 F:      sound/soc/pxa/
15382
15383 QAT DRIVER
15384 M:      Giovanni Cabiddu <[email protected]>
15385 L:      [email protected]
15386 S:      Supported
15387 F:      drivers/crypto/qat/
15388
15389 QCOM AUDIO (ASoC) DRIVERS
15390 M:      Srinivas Kandagatla <[email protected]>
15391 M:      Banajit Goswami <[email protected]>
15392 L:      [email protected] (moderated for non-subscribers)
15393 S:      Supported
15394 F:      sound/soc/codecs/lpass-va-macro.c
15395 F:      sound/soc/codecs/lpass-wsa-macro.*
15396 F:      sound/soc/codecs/msm8916-wcd-analog.c
15397 F:      sound/soc/codecs/msm8916-wcd-digital.c
15398 F:      sound/soc/codecs/wcd9335.*
15399 F:      sound/soc/codecs/wcd934x.c
15400 F:      sound/soc/codecs/wcd-clsh-v2.*
15401 F:      sound/soc/codecs/wsa881x.c
15402 F:      sound/soc/qcom/
15403
15404 QCOM IPA DRIVER
15405 M:      Alex Elder <[email protected]>
15406 L:      [email protected]
15407 S:      Supported
15408 F:      drivers/net/ipa/
15409
15410 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
15411 M:      Gabriel Somlo <[email protected]>
15412 M:      "Michael S. Tsirkin" <[email protected]>
15413 L:      [email protected]
15414 S:      Maintained
15415 F:      drivers/firmware/qemu_fw_cfg.c
15416 F:      include/uapi/linux/qemu_fw_cfg.h
15417
15418 QIB DRIVER
15419 M:      Dennis Dalessandro <[email protected]>
15420 M:      Mike Marciniszyn <[email protected]>
15421 L:      [email protected]
15422 S:      Supported
15423 F:      drivers/infiniband/hw/qib/
15424
15425 QLOGIC QL41xxx FCOE DRIVER
15426 M:      Saurav Kashyap <[email protected]>
15427 M:      Javed Hasan <[email protected]>
15428 M:      [email protected]
15429 L:      [email protected]
15430 S:      Supported
15431 F:      drivers/scsi/qedf/
15432
15433 QLOGIC QL41xxx ISCSI DRIVER
15434 M:      Nilesh Javali <[email protected]>
15435 M:      Manish Rangankar <[email protected]>
15436 M:      [email protected]
15437 L:      [email protected]
15438 S:      Supported
15439 F:      drivers/scsi/qedi/
15440
15441 QLOGIC QL4xxx ETHERNET DRIVER
15442 M:      Ariel Elior <[email protected]>
15443 M:      [email protected]
15444 L:      [email protected]
15445 S:      Supported
15446 F:      drivers/net/ethernet/qlogic/qed/
15447 F:      drivers/net/ethernet/qlogic/qede/
15448 F:      include/linux/qed/
15449
15450 QLOGIC QL4xxx RDMA DRIVER
15451 M:      Michal Kalderon <[email protected]>
15452 M:      Ariel Elior <[email protected]>
15453 L:      [email protected]
15454 S:      Supported
15455 F:      drivers/infiniband/hw/qedr/
15456 F:      include/uapi/rdma/qedr-abi.h
15457
15458 QLOGIC QLA1280 SCSI DRIVER
15459 M:      Michael Reed <[email protected]>
15460 L:      [email protected]
15461 S:      Maintained
15462 F:      drivers/scsi/qla1280.[ch]
15463
15464 QLOGIC QLA2XXX FC-SCSI DRIVER
15465 M:      Nilesh Javali <[email protected]>
15466 M:      [email protected]
15467 L:      [email protected]
15468 S:      Supported
15469 F:      drivers/scsi/qla2xxx/
15470
15471 QLOGIC QLA3XXX NETWORK DRIVER
15472 M:      [email protected]
15473 L:      [email protected]
15474 S:      Supported
15475 F:      drivers/net/ethernet/qlogic/qla3xxx.*
15476
15477 QLOGIC QLA4XXX iSCSI DRIVER
15478 M:      Nilesh Javali <[email protected]>
15479 M:      Manish Rangankar <[email protected]>
15480 M:      [email protected]
15481 L:      [email protected]
15482 S:      Supported
15483 F:      drivers/scsi/qla4xxx/
15484
15485 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
15486 M:      Shahed Shaikh <[email protected]>
15487 M:      Manish Chopra <[email protected]>
15488 M:      [email protected]
15489 L:      [email protected]
15490 S:      Supported
15491 F:      drivers/net/ethernet/qlogic/qlcnic/
15492
15493 QLOGIC QLGE 10Gb ETHERNET DRIVER
15494 M:      Manish Chopra <[email protected]>
15495 M:      [email protected]
15496 M:      Coiby Xu <[email protected]>
15497 L:      [email protected]
15498 S:      Supported
15499 F:      Documentation/networking/device_drivers/qlogic/qlge.rst
15500 F:      drivers/staging/qlge/
15501
15502 QM1D1B0004 MEDIA DRIVER
15503 M:      Akihiro Tsukada <[email protected]>
15504 L:      [email protected]
15505 S:      Odd Fixes
15506 F:      drivers/media/tuners/qm1d1b0004*
15507
15508 QM1D1C0042 MEDIA DRIVER
15509 M:      Akihiro Tsukada <[email protected]>
15510 L:      [email protected]
15511 S:      Odd Fixes
15512 F:      drivers/media/tuners/qm1d1c0042*
15513
15514 QNX4 FILESYSTEM
15515 M:      Anders Larsen <[email protected]>
15516 S:      Maintained
15517 W:      http://www.alarsen.net/linux/qnx4fs/
15518 F:      fs/qnx4/
15519 F:      include/uapi/linux/qnx4_fs.h
15520 F:      include/uapi/linux/qnxtypes.h
15521
15522 QORIQ DPAA2 FSL-MC BUS DRIVER
15523 M:      Stuart Yoder <[email protected]>
15524 M:      Laurentiu Tudor <[email protected]>
15525 L:      [email protected]
15526 S:      Maintained
15527 F:      Documentation/ABI/stable/sysfs-bus-fsl-mc
15528 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
15529 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/overview.rst
15530 F:      drivers/bus/fsl-mc/
15531 F:      include/uapi/linux/fsl_mc.h
15532
15533 QT1010 MEDIA DRIVER
15534 M:      Antti Palosaari <[email protected]>
15535 L:      [email protected]
15536 S:      Maintained
15537 W:      https://linuxtv.org
15538 W:      http://palosaari.fi/linux/
15539 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15540 T:      git git://linuxtv.org/anttip/media_tree.git
15541 F:      drivers/media/tuners/qt1010*
15542
15543 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
15544 M:      Kalle Valo <[email protected]>
15545 L:      [email protected]
15546 S:      Supported
15547 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
15548 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
15549 F:      drivers/net/wireless/ath/ath10k/
15550
15551 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
15552 M:      Kalle Valo <[email protected]>
15553 L:      [email protected]
15554 S:      Supported
15555 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
15556 F:      drivers/net/wireless/ath/ath11k/
15557
15558 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
15559 M:      [email protected]
15560 L:      [email protected]
15561 S:      Supported
15562 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
15563 F:      Documentation/devicetree/bindings/net/wireless/qca,ath9k.yaml
15564 F:      drivers/net/wireless/ath/ath9k/
15565
15566 QUALCOMM CAMERA SUBSYSTEM DRIVER
15567 M:      Robert Foss <[email protected]>
15568 M:      Todor Tomov <[email protected]>
15569 L:      [email protected]
15570 S:      Maintained
15571 F:      Documentation/admin-guide/media/qcom_camss.rst
15572 F:      Documentation/devicetree/bindings/media/*camss*
15573 F:      drivers/media/platform/qcom/camss/
15574
15575 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
15576 M:      Niklas Cassel <[email protected]>
15577 L:      [email protected]
15578 L:      [email protected]
15579 S:      Maintained
15580 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.txt
15581 F:      drivers/soc/qcom/cpr.c
15582
15583 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
15584 M:      Ilia Lin <[email protected]>
15585 L:      [email protected]
15586 S:      Maintained
15587 F:      Documentation/devicetree/bindings/opp/qcom-nvmem-cpufreq.txt
15588 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
15589
15590 QUALCOMM CRYPTO DRIVERS
15591 M:      Thara Gopinath <[email protected]>
15592 L:      [email protected]
15593 L:      [email protected]
15594 S:      Maintained
15595 F:      drivers/crypto/qce/
15596
15597 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
15598 M:      Timur Tabi <[email protected]>
15599 L:      [email protected]
15600 S:      Maintained
15601 F:      drivers/net/ethernet/qualcomm/emac/
15602
15603 QUALCOMM ETHQOS ETHERNET DRIVER
15604 M:      Vinod Koul <[email protected]>
15605 L:      [email protected]
15606 S:      Maintained
15607 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
15608 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
15609
15610 QUALCOMM GENERIC INTERFACE I2C DRIVER
15611 M:      Akash Asthana <[email protected]>
15612 M:      Mukesh Savaliya <[email protected]>
15613 L:      [email protected]
15614 L:      [email protected]
15615 S:      Supported
15616 F:      drivers/i2c/busses/i2c-qcom-geni.c
15617
15618 QUALCOMM HEXAGON ARCHITECTURE
15619 M:      Brian Cain <[email protected]>
15620 L:      [email protected]
15621 S:      Supported
15622 F:      arch/hexagon/
15623
15624 QUALCOMM HIDMA DRIVER
15625 M:      Sinan Kaya <[email protected]>
15626 L:      [email protected] (moderated for non-subscribers)
15627 L:      [email protected]
15628 L:      [email protected]
15629 S:      Supported
15630 F:      drivers/dma/qcom/hidma*
15631
15632 QUALCOMM I2C CCI DRIVER
15633 M:      Loic Poulain <[email protected]>
15634 M:      Robert Foss <[email protected]>
15635 L:      [email protected]
15636 L:      [email protected]
15637 S:      Maintained
15638 F:      Documentation/devicetree/bindings/i2c/i2c-qcom-cci.txt
15639 F:      drivers/i2c/busses/i2c-qcom-cci.c
15640
15641 QUALCOMM IOMMU
15642 M:      Rob Clark <[email protected]>
15643 L:      [email protected]
15644 L:      [email protected]
15645 S:      Maintained
15646 F:      drivers/iommu/arm/arm-smmu/qcom_iommu.c
15647
15648 QUALCOMM IPC ROUTER (QRTR) DRIVER
15649 M:      Manivannan Sadhasivam <[email protected]>
15650 L:      [email protected]
15651 S:      Maintained
15652 F:      include/trace/events/qrtr.h
15653 F:      include/uapi/linux/qrtr.h
15654 F:      net/qrtr/
15655
15656 QUALCOMM IPCC MAILBOX DRIVER
15657 M:      Manivannan Sadhasivam <[email protected]>
15658 L:      [email protected]
15659 S:      Supported
15660 F:      Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
15661 F:      drivers/mailbox/qcom-ipcc.c
15662 F:      include/dt-bindings/mailbox/qcom-ipcc.h
15663
15664 QUALCOMM IPQ4019 USB PHY DRIVER
15665 M:      Robert Marko <[email protected]>
15666 M:      Luka Perkov <[email protected]>
15667 L:      [email protected]
15668 S:      Maintained
15669 F:      Documentation/devicetree/bindings/phy/qcom-usb-ipq4019-phy.yaml
15670 F:      drivers/phy/qualcomm/phy-qcom-ipq4019-usb.c
15671
15672 QUALCOMM IPQ4019 VQMMC REGULATOR DRIVER
15673 M:      Robert Marko <[email protected]>
15674 M:      Luka Perkov <[email protected]>
15675 L:      [email protected]
15676 S:      Maintained
15677 F:      Documentation/devicetree/bindings/regulator/vqmmc-ipq4019-regulator.yaml
15678 F:      drivers/regulator/vqmmc-ipq4019-regulator.c
15679
15680 QUALCOMM RMNET DRIVER
15681 M:      Subash Abhinov Kasiviswanathan <[email protected]>
15682 M:      Sean Tranchetti <[email protected]>
15683 L:      [email protected]
15684 S:      Maintained
15685 F:      Documentation/networking/device_drivers/cellular/qualcomm/rmnet.rst
15686 F:      drivers/net/ethernet/qualcomm/rmnet/
15687 F:      include/linux/if_rmnet.h
15688
15689 QUALCOMM TSENS THERMAL DRIVER
15690 M:      Amit Kucheria <[email protected]>
15691 M:      Thara Gopinath <[email protected]>
15692 L:      [email protected]
15693 L:      [email protected]
15694 S:      Maintained
15695 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
15696 F:      drivers/thermal/qcom/
15697
15698 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
15699 M:      Stanimir Varbanov <[email protected]>
15700 L:      [email protected]
15701 L:      [email protected]
15702 S:      Maintained
15703 T:      git git://linuxtv.org/media_tree.git
15704 F:      Documentation/devicetree/bindings/media/*venus*
15705 F:      drivers/media/platform/qcom/venus/
15706
15707 QUALCOMM WCN36XX WIRELESS DRIVER
15708 M:      Kalle Valo <[email protected]>
15709 L:      [email protected]
15710 S:      Supported
15711 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
15712 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
15713 F:      drivers/net/wireless/ath/wcn36xx/
15714
15715 QUANTENNA QTNFMAC WIRELESS DRIVER
15716 M:      Igor Mitsyanko <[email protected]>
15717 R:      Sergey Matyukevich <[email protected]>
15718 L:      [email protected]
15719 S:      Maintained
15720 F:      drivers/net/wireless/quantenna
15721
15722 RADEON and AMDGPU DRM DRIVERS
15723 M:      Alex Deucher <[email protected]>
15724 M:      Christian König <[email protected]>
15725 M:      Pan, Xinhui <[email protected]>
15726 L:      [email protected]
15727 S:      Supported
15728 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
15729 B:      https://gitlab.freedesktop.org/drm/amd/-/issues
15730 C:      irc://irc.oftc.net/radeon
15731 F:      drivers/gpu/drm/amd/
15732 F:      drivers/gpu/drm/radeon/
15733 F:      include/uapi/drm/amdgpu_drm.h
15734 F:      include/uapi/drm/radeon_drm.h
15735
15736 RADEON FRAMEBUFFER DISPLAY DRIVER
15737 M:      Benjamin Herrenschmidt <[email protected]>
15738 L:      [email protected]
15739 S:      Maintained
15740 F:      drivers/video/fbdev/aty/radeon*
15741 F:      include/uapi/linux/radeonfb.h
15742
15743 RADIOSHARK RADIO DRIVER
15744 M:      Hans Verkuil <[email protected]>
15745 L:      [email protected]
15746 S:      Maintained
15747 T:      git git://linuxtv.org/media_tree.git
15748 F:      drivers/media/radio/radio-shark.c
15749
15750 RADIOSHARK2 RADIO DRIVER
15751 M:      Hans Verkuil <[email protected]>
15752 L:      [email protected]
15753 S:      Maintained
15754 T:      git git://linuxtv.org/media_tree.git
15755 F:      drivers/media/radio/radio-shark2.c
15756 F:      drivers/media/radio/radio-tea5777.c
15757
15758 RADOS BLOCK DEVICE (RBD)
15759 M:      Ilya Dryomov <[email protected]>
15760 R:      Dongsheng Yang <[email protected]>
15761 L:      [email protected]
15762 S:      Supported
15763 W:      http://ceph.com/
15764 T:      git git://github.com/ceph/ceph-client.git
15765 F:      Documentation/ABI/testing/sysfs-bus-rbd
15766 F:      drivers/block/rbd.c
15767 F:      drivers/block/rbd_types.h
15768
15769 RAGE128 FRAMEBUFFER DISPLAY DRIVER
15770 M:      Paul Mackerras <[email protected]>
15771 L:      [email protected]
15772 S:      Maintained
15773 F:      drivers/video/fbdev/aty/aty128fb.c
15774
15775 RAINSHADOW-CEC DRIVER
15776 M:      Hans Verkuil <[email protected]>
15777 L:      [email protected]
15778 S:      Maintained
15779 T:      git git://linuxtv.org/media_tree.git
15780 F:      drivers/media/cec/usb/rainshadow/
15781
15782 RALINK MIPS ARCHITECTURE
15783 M:      John Crispin <[email protected]>
15784 L:      [email protected]
15785 S:      Maintained
15786 F:      arch/mips/ralink
15787
15788 RALINK RT2X00 WIRELESS LAN DRIVER
15789 M:      Stanislaw Gruszka <[email protected]>
15790 M:      Helmut Schaa <[email protected]>
15791 L:      [email protected]
15792 S:      Maintained
15793 F:      drivers/net/wireless/ralink/rt2x00/
15794
15795 RAMDISK RAM BLOCK DEVICE DRIVER
15796 M:      Jens Axboe <[email protected]>
15797 S:      Maintained
15798 F:      Documentation/admin-guide/blockdev/ramdisk.rst
15799 F:      drivers/block/brd.c
15800
15801 RANCHU VIRTUAL BOARD FOR MIPS
15802 M:      Miodrag Dinic <[email protected]>
15803 L:      [email protected]
15804 S:      Supported
15805 F:      arch/mips/configs/generic/board-ranchu.config
15806 F:      arch/mips/generic/board-ranchu.c
15807
15808 RANDOM NUMBER DRIVER
15809 M:      "Theodore Ts'o" <[email protected]>
15810 S:      Maintained
15811 F:      drivers/char/random.c
15812
15813 RAPIDIO SUBSYSTEM
15814 M:      Matt Porter <[email protected]>
15815 M:      Alexandre Bounine <[email protected]>
15816 S:      Maintained
15817 F:      drivers/rapidio/
15818
15819 RAS INFRASTRUCTURE
15820 M:      Tony Luck <[email protected]>
15821 M:      Borislav Petkov <[email protected]>
15822 L:      [email protected]
15823 S:      Maintained
15824 F:      Documentation/admin-guide/ras.rst
15825 F:      drivers/ras/
15826 F:      include/linux/ras.h
15827 F:      include/ras/ras_event.h
15828
15829 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
15830 L:      [email protected]
15831 S:      Orphan
15832 F:      drivers/net/wireless/ray*
15833
15834 RC-CORE / LIRC FRAMEWORK
15835 M:      Sean Young <[email protected]>
15836 L:      [email protected]
15837 S:      Maintained
15838 W:      http://linuxtv.org
15839 T:      git git://linuxtv.org/media_tree.git
15840 F:      Documentation/driver-api/media/rc-core.rst
15841 F:      Documentation/userspace-api/media/rc/
15842 F:      drivers/media/rc/
15843 F:      include/media/rc-map.h
15844 F:      include/media/rc-core.h
15845 F:      include/uapi/linux/lirc.h
15846
15847 RCMM REMOTE CONTROLS DECODER
15848 M:      Patrick Lerda <[email protected]>
15849 S:      Maintained
15850 F:      drivers/media/rc/ir-rcmm-decoder.c
15851
15852 RCUTORTURE TEST FRAMEWORK
15853 M:      "Paul E. McKenney" <[email protected]>
15854 M:      Josh Triplett <[email protected]>
15855 R:      Steven Rostedt <[email protected]>
15856 R:      Mathieu Desnoyers <[email protected]>
15857 R:      Lai Jiangshan <[email protected]>
15858 L:      [email protected]
15859 S:      Supported
15860 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
15861 F:      tools/testing/selftests/rcutorture
15862
15863 RDACM20 Camera Sensor
15864 M:      Jacopo Mondi <[email protected]>
15865 M:      Kieran Bingham <[email protected]>
15866 M:      Laurent Pinchart <[email protected]>
15867 M:      Niklas Söderlund <[email protected]>
15868 L:      [email protected]
15869 S:      Maintained
15870 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
15871 F:      drivers/media/i2c/max9271.c
15872 F:      drivers/media/i2c/max9271.h
15873 F:      drivers/media/i2c/rdacm20.c
15874
15875 RDACM21 Camera Sensor
15876 M:      Jacopo Mondi <[email protected]>
15877 M:      Kieran Bingham <[email protected]>
15878 M:      Laurent Pinchart <[email protected]>
15879 M:      Niklas Söderlund <[email protected]>
15880 L:      [email protected]
15881 S:      Maintained
15882 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
15883 F:      drivers/media/i2c/max9271.c
15884 F:      drivers/media/i2c/max9271.h
15885 F:      drivers/media/i2c/rdacm21.c
15886
15887 RDC R-321X SoC
15888 M:      Florian Fainelli <[email protected]>
15889 S:      Maintained
15890
15891 RDC R6040 FAST ETHERNET DRIVER
15892 M:      Florian Fainelli <[email protected]>
15893 L:      [email protected]
15894 S:      Maintained
15895 F:      drivers/net/ethernet/rdc/r6040.c
15896
15897 RDMAVT - RDMA verbs software
15898 M:      Dennis Dalessandro <[email protected]>
15899 M:      Mike Marciniszyn <[email protected]>
15900 L:      [email protected]
15901 S:      Supported
15902 F:      drivers/infiniband/sw/rdmavt
15903
15904 RDS - RELIABLE DATAGRAM SOCKETS
15905 M:      Santosh Shilimkar <[email protected]>
15906 L:      [email protected]
15907 L:      [email protected]
15908 L:      [email protected] (moderated for non-subscribers)
15909 S:      Supported
15910 W:      https://oss.oracle.com/projects/rds/
15911 F:      Documentation/networking/rds.rst
15912 F:      net/rds/
15913
15914 RDT - RESOURCE ALLOCATION
15915 M:      Fenghua Yu <[email protected]>
15916 M:      Reinette Chatre <[email protected]>
15917 L:      [email protected]
15918 S:      Supported
15919 F:      Documentation/x86/resctrl*
15920 F:      arch/x86/include/asm/resctrl.h
15921 F:      arch/x86/kernel/cpu/resctrl/
15922 F:      tools/testing/selftests/resctrl/
15923
15924 READ-COPY UPDATE (RCU)
15925 M:      "Paul E. McKenney" <[email protected]>
15926 M:      Josh Triplett <[email protected]>
15927 R:      Steven Rostedt <[email protected]>
15928 R:      Mathieu Desnoyers <[email protected]>
15929 R:      Lai Jiangshan <[email protected]>
15930 R:      Joel Fernandes <[email protected]>
15931 L:      [email protected]
15932 S:      Supported
15933 W:      http://www.rdrop.com/users/paulmck/RCU/
15934 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
15935 F:      Documentation/RCU/
15936 F:      include/linux/rcu*
15937 F:      kernel/rcu/
15938 X:      Documentation/RCU/torture.rst
15939 X:      include/linux/srcu*.h
15940 X:      kernel/rcu/srcu*.c
15941
15942 REAL TIME CLOCK (RTC) SUBSYSTEM
15943 M:      Alessandro Zummo <[email protected]>
15944 M:      Alexandre Belloni <[email protected]>
15945 L:      [email protected]
15946 S:      Maintained
15947 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
15948 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
15949 F:      Documentation/admin-guide/rtc.rst
15950 F:      Documentation/devicetree/bindings/rtc/
15951 F:      drivers/rtc/
15952 F:      include/linux/platform_data/rtc-*
15953 F:      include/linux/rtc.h
15954 F:      include/linux/rtc/
15955 F:      include/uapi/linux/rtc.h
15956 F:      tools/testing/selftests/rtc/
15957
15958 REALTEK AUDIO CODECS
15959 M:      Oder Chiou <[email protected]>
15960 S:      Maintained
15961 F:      include/sound/rt*.h
15962 F:      sound/soc/codecs/rt*
15963
15964 REALTEK RTL83xx SMI DSA ROUTER CHIPS
15965 M:      Linus Walleij <[email protected]>
15966 S:      Maintained
15967 F:      Documentation/devicetree/bindings/net/dsa/realtek-smi.txt
15968 F:      drivers/net/dsa/realtek-smi*
15969 F:      drivers/net/dsa/rtl83*
15970
15971 REALTEK WIRELESS DRIVER (rtlwifi family)
15972 M:      Ping-Ke Shih <[email protected]>
15973 L:      [email protected]
15974 S:      Maintained
15975 W:      https://wireless.wiki.kernel.org/
15976 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
15977 F:      drivers/net/wireless/realtek/rtlwifi/
15978
15979 REALTEK WIRELESS DRIVER (rtw88)
15980 M:      Yan-Hsuan Chuang <[email protected]>
15981 L:      [email protected]
15982 S:      Maintained
15983 F:      drivers/net/wireless/realtek/rtw88/
15984
15985 REALTEK WIRELESS DRIVER (rtw89)
15986 M:      Ping-Ke Shih <[email protected]>
15987 L:      [email protected]
15988 S:      Maintained
15989 F:      drivers/net/wireless/realtek/rtw89/
15990
15991 REDPINE WIRELESS DRIVER
15992 M:      Amitkumar Karwar <[email protected]>
15993 M:      Siva Rebbagondla <[email protected]>
15994 L:      [email protected]
15995 S:      Maintained
15996 F:      drivers/net/wireless/rsi/
15997
15998 REGISTER MAP ABSTRACTION
15999 M:      Mark Brown <[email protected]>
16000 L:      [email protected]
16001 S:      Supported
16002 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
16003 F:      Documentation/devicetree/bindings/regmap/
16004 F:      drivers/base/regmap/
16005 F:      include/linux/regmap.h
16006
16007 REISERFS FILE SYSTEM
16008 L:      [email protected]
16009 S:      Supported
16010 F:      fs/reiserfs/
16011
16012 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
16013 M:      Ohad Ben-Cohen <[email protected]>
16014 M:      Bjorn Andersson <[email protected]>
16015 M:      Mathieu Poirier <[email protected]>
16016 L:      [email protected]
16017 S:      Maintained
16018 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rproc-next
16019 F:      Documentation/ABI/testing/sysfs-class-remoteproc
16020 F:      Documentation/devicetree/bindings/remoteproc/
16021 F:      Documentation/staging/remoteproc.rst
16022 F:      drivers/remoteproc/
16023 F:      include/linux/remoteproc.h
16024 F:      include/linux/remoteproc/
16025
16026 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
16027 M:      Ohad Ben-Cohen <[email protected]>
16028 M:      Bjorn Andersson <[email protected]>
16029 M:      Mathieu Poirier <[email protected]>
16030 L:      [email protected]
16031 S:      Maintained
16032 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rpmsg-next
16033 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
16034 F:      Documentation/staging/rpmsg.rst
16035 F:      drivers/rpmsg/
16036 F:      include/linux/rpmsg.h
16037 F:      include/linux/rpmsg/
16038 F:      include/uapi/linux/rpmsg.h
16039 F:      samples/rpmsg/
16040
16041 REMOTE PROCESSOR MESSAGING (RPMSG) WWAN CONTROL DRIVER
16042 M:      Stephan Gerhold <[email protected]>
16043 L:      [email protected]
16044 L:      [email protected]
16045 S:      Maintained
16046 F:      drivers/net/wwan/rpmsg_wwan_ctrl.c
16047
16048 RENESAS CLOCK DRIVERS
16049 M:      Geert Uytterhoeven <[email protected]>
16050 L:      [email protected]
16051 S:      Supported
16052 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-clk
16053 F:      Documentation/devicetree/bindings/clock/renesas,*
16054 F:      drivers/clk/renesas/
16055
16056 RENESAS EMEV2 I2C DRIVER
16057 M:      Wolfram Sang <[email protected]>
16058 L:      [email protected]
16059 S:      Supported
16060 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.yaml
16061 F:      drivers/i2c/busses/i2c-emev2.c
16062
16063 RENESAS ETHERNET DRIVERS
16064 R:      Sergey Shtylyov <[email protected]>
16065 L:      [email protected]
16066 L:      [email protected]
16067 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
16068 F:      drivers/net/ethernet/renesas/
16069 F:      include/linux/sh_eth.h
16070
16071 RENESAS R-CAR GYROADC DRIVER
16072 M:      Marek Vasut <[email protected]>
16073 L:      [email protected]
16074 S:      Supported
16075 F:      Documentation/devicetree/bindings/iio/adc/renesas,rcar-gyroadc.yaml
16076 F:      drivers/iio/adc/rcar-gyroadc.c
16077
16078 RENESAS R-CAR I2C DRIVERS
16079 M:      Wolfram Sang <[email protected]>
16080 L:      [email protected]
16081 S:      Supported
16082 F:      Documentation/devicetree/bindings/i2c/renesas,rcar-i2c.yaml
16083 F:      Documentation/devicetree/bindings/i2c/renesas,rmobile-iic.yaml
16084 F:      drivers/i2c/busses/i2c-rcar.c
16085 F:      drivers/i2c/busses/i2c-sh_mobile.c
16086
16087 RENESAS R-CAR THERMAL DRIVERS
16088 M:      Niklas Söderlund <[email protected]>
16089 L:      [email protected]
16090 S:      Supported
16091 F:      Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.yaml
16092 F:      Documentation/devicetree/bindings/thermal/rcar-thermal.yaml
16093 F:      drivers/thermal/rcar_gen3_thermal.c
16094 F:      drivers/thermal/rcar_thermal.c
16095
16096 RENESAS RIIC DRIVER
16097 M:      Chris Brandt <[email protected]>
16098 L:      [email protected]
16099 S:      Supported
16100 F:      Documentation/devicetree/bindings/i2c/renesas,riic.yaml
16101 F:      drivers/i2c/busses/i2c-riic.c
16102
16103 RENESAS USB PHY DRIVER
16104 M:      Yoshihiro Shimoda <[email protected]>
16105 L:      [email protected]
16106 S:      Maintained
16107 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
16108
16109 RENESAS RZ/G2L A/D DRIVER
16110 M:      Lad Prabhakar <[email protected]>
16111 L:      [email protected]
16112 L:      [email protected]
16113 S:      Supported
16114 F:      Documentation/devicetree/bindings/iio/adc/renesas,rzg2l-adc.yaml
16115 F:      drivers/iio/adc/rzg2l_adc.c
16116
16117 RESET CONTROLLER FRAMEWORK
16118 M:      Philipp Zabel <[email protected]>
16119 S:      Maintained
16120 T:      git git://git.pengutronix.de/git/pza/linux
16121 F:      Documentation/devicetree/bindings/reset/
16122 F:      Documentation/driver-api/reset.rst
16123 F:      drivers/reset/
16124 F:      include/dt-bindings/reset/
16125 F:      include/linux/reset-controller.h
16126 F:      include/linux/reset.h
16127 F:      include/linux/reset/
16128 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
16129
16130 RESTARTABLE SEQUENCES SUPPORT
16131 M:      Mathieu Desnoyers <[email protected]>
16132 M:      Peter Zijlstra <[email protected]>
16133 M:      "Paul E. McKenney" <[email protected]>
16134 M:      Boqun Feng <[email protected]>
16135 L:      [email protected]
16136 S:      Supported
16137 F:      include/trace/events/rseq.h
16138 F:      include/uapi/linux/rseq.h
16139 F:      kernel/rseq.c
16140 F:      tools/testing/selftests/rseq/
16141
16142 RFKILL
16143 M:      Johannes Berg <[email protected]>
16144 L:      [email protected]
16145 S:      Maintained
16146 W:      https://wireless.wiki.kernel.org/
16147 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
16148 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
16149 F:      Documentation/ABI/stable/sysfs-class-rfkill
16150 F:      Documentation/driver-api/rfkill.rst
16151 F:      include/linux/rfkill.h
16152 F:      include/uapi/linux/rfkill.h
16153 F:      net/rfkill/
16154
16155 RHASHTABLE
16156 M:      Thomas Graf <[email protected]>
16157 M:      Herbert Xu <[email protected]>
16158 L:      [email protected]
16159 S:      Maintained
16160 F:      include/linux/rhashtable-types.h
16161 F:      include/linux/rhashtable.h
16162 F:      lib/rhashtable.c
16163 F:      lib/test_rhashtable.c
16164
16165 RICOH R5C592 MEMORYSTICK DRIVER
16166 M:      Maxim Levitsky <[email protected]>
16167 S:      Maintained
16168 F:      drivers/memstick/host/r592.*
16169
16170 RICOH SMARTMEDIA/XD DRIVER
16171 M:      Maxim Levitsky <[email protected]>
16172 S:      Maintained
16173 F:      drivers/mtd/nand/raw/r852.c
16174 F:      drivers/mtd/nand/raw/r852.h
16175
16176 RISC-V ARCHITECTURE
16177 M:      Paul Walmsley <[email protected]>
16178 M:      Palmer Dabbelt <[email protected]>
16179 M:      Albert Ou <[email protected]>
16180 L:      [email protected]
16181 S:      Supported
16182 P:      Documentation/riscv/patch-acceptance.rst
16183 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
16184 F:      arch/riscv/
16185 N:      riscv
16186 K:      riscv
16187
16188 RISC-V/MICROCHIP POLARFIRE SOC SUPPORT
16189 M:      Lewis Hanly <[email protected]>
16190 L:      [email protected]
16191 S:      Supported
16192 F:      drivers/mailbox/mailbox-mpfs.c
16193 F:      drivers/soc/microchip/
16194 F:      include/soc/microchip/mpfs.h
16195
16196 RNBD BLOCK DRIVERS
16197 M:      Md. Haris Iqbal <[email protected]>
16198 M:      Jack Wang <[email protected]>
16199 L:      [email protected]
16200 S:      Maintained
16201 F:      drivers/block/rnbd/
16202
16203 ROCCAT DRIVERS
16204 M:      Stefan Achatz <[email protected]>
16205 S:      Maintained
16206 W:      http://sourceforge.net/projects/roccat/
16207 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
16208 F:      drivers/hid/hid-roccat*
16209 F:      include/linux/hid-roccat*
16210
16211 ROCKCHIP ISP V1 DRIVER
16212 M:      Helen Koike <[email protected]>
16213 M:      Dafna Hirschfeld <[email protected]>
16214 L:      [email protected]
16215 L:      [email protected]
16216 S:      Maintained
16217 F:      Documentation/admin-guide/media/rkisp1.rst
16218 F:      Documentation/devicetree/bindings/media/rockchip-isp1.yaml
16219 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-rkisp1.rst
16220 F:      drivers/media/platform/rockchip/rkisp1
16221 F:      include/uapi/linux/rkisp1-config.h
16222
16223 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
16224 M:      Jacob Chen <[email protected]>
16225 M:      Ezequiel Garcia <[email protected]>
16226 L:      [email protected]
16227 L:      [email protected]
16228 S:      Maintained
16229 F:      Documentation/devicetree/bindings/media/rockchip-rga.yaml
16230 F:      drivers/media/platform/rockchip/rga/
16231
16232 ROCKCHIP VIDEO DECODER DRIVER
16233 M:      Ezequiel Garcia <[email protected]>
16234 L:      [email protected]
16235 L:      [email protected]
16236 S:      Maintained
16237 F:      Documentation/devicetree/bindings/media/rockchip,vdec.yaml
16238 F:      drivers/staging/media/rkvdec/
16239
16240 ROCKER DRIVER
16241 M:      Jiri Pirko <[email protected]>
16242 L:      [email protected]
16243 S:      Supported
16244 F:      drivers/net/ethernet/rocker/
16245
16246 ROCKETPORT EXPRESS/INFINITY DRIVER
16247 M:      Kevin Cernekee <[email protected]>
16248 L:      [email protected]
16249 S:      Odd Fixes
16250 F:      drivers/tty/serial/rp2.*
16251
16252 ROHM BD99954 CHARGER IC
16253 R:      Matti Vaittinen <[email protected]>
16254 L:      [email protected]
16255 S:      Supported
16256 F:      drivers/power/supply/bd99954-charger.c
16257 F:      drivers/power/supply/bd99954-charger.h
16258
16259 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
16260 M:      Tomasz Duszynski <[email protected]>
16261 S:      Maintained
16262 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
16263 F:      drivers/iio/light/bh1750.c
16264
16265 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
16266 M:      Marek Vasut <[email protected]>
16267 L:      [email protected]
16268 L:      [email protected]
16269 S:      Supported
16270 F:      Documentation/devicetree/bindings/mfd/bd9571mwv.txt
16271 F:      drivers/gpio/gpio-bd9571mwv.c
16272 F:      drivers/mfd/bd9571mwv.c
16273 F:      drivers/regulator/bd9571mwv-regulator.c
16274 F:      include/linux/mfd/bd9571mwv.h
16275
16276 ROHM POWER MANAGEMENT IC DEVICE DRIVERS
16277 R:      Matti Vaittinen <[email protected]>
16278 L:      [email protected]
16279 S:      Supported
16280 F:      Documentation/devicetree/bindings/mfd/rohm,bd70528-pmic.txt
16281 F:      Documentation/devicetree/bindings/regulator/rohm,bd70528-regulator.txt
16282 F:      drivers/clk/clk-bd718x7.c
16283 F:      drivers/gpio/gpio-bd70528.c
16284 F:      drivers/gpio/gpio-bd71815.c
16285 F:      drivers/gpio/gpio-bd71828.c
16286 F:      drivers/mfd/rohm-bd70528.c
16287 F:      drivers/mfd/rohm-bd71828.c
16288 F:      drivers/mfd/rohm-bd718x7.c
16289 F:      drivers/mfd/rohm-bd9576.c
16290 F:      drivers/power/supply/bd70528-charger.c
16291 F:      drivers/regulator/bd70528-regulator.c
16292 F:      drivers/regulator/bd71815-regulator.c
16293 F:      drivers/regulator/bd71828-regulator.c
16294 F:      drivers/regulator/bd718x7-regulator.c
16295 F:      drivers/regulator/bd9576-regulator.c
16296 F:      drivers/regulator/rohm-regulator.c
16297 F:      drivers/rtc/rtc-bd70528.c
16298 F:      drivers/watchdog/bd70528_wdt.c
16299 F:      drivers/watchdog/bd9576_wdt.c
16300 F:      include/linux/mfd/rohm-bd70528.h
16301 F:      include/linux/mfd/rohm-bd71815.h
16302 F:      include/linux/mfd/rohm-bd71828.h
16303 F:      include/linux/mfd/rohm-bd718x7.h
16304 F:      include/linux/mfd/rohm-bd957x.h
16305 F:      include/linux/mfd/rohm-generic.h
16306 F:      include/linux/mfd/rohm-shared.h
16307
16308 ROSE NETWORK LAYER
16309 M:      Ralf Baechle <[email protected]>
16310 L:      [email protected]
16311 S:      Maintained
16312 W:      http://www.linux-ax25.org/
16313 F:      include/net/rose.h
16314 F:      include/uapi/linux/rose.h
16315 F:      net/rose/
16316
16317 ROTATION DRIVER FOR ALLWINNER A83T
16318 M:      Jernej Skrabec <[email protected]>
16319 L:      [email protected]
16320 S:      Maintained
16321 T:      git git://linuxtv.org/media_tree.git
16322 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
16323 F:      drivers/media/platform/sunxi/sun8i-rotate/
16324
16325 RTL2830 MEDIA DRIVER
16326 M:      Antti Palosaari <[email protected]>
16327 L:      [email protected]
16328 S:      Maintained
16329 W:      https://linuxtv.org
16330 W:      http://palosaari.fi/linux/
16331 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16332 T:      git git://linuxtv.org/anttip/media_tree.git
16333 F:      drivers/media/dvb-frontends/rtl2830*
16334
16335 RTL2832 MEDIA DRIVER
16336 M:      Antti Palosaari <[email protected]>
16337 L:      [email protected]
16338 S:      Maintained
16339 W:      https://linuxtv.org
16340 W:      http://palosaari.fi/linux/
16341 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16342 T:      git git://linuxtv.org/anttip/media_tree.git
16343 F:      drivers/media/dvb-frontends/rtl2832*
16344
16345 RTL2832_SDR MEDIA DRIVER
16346 M:      Antti Palosaari <[email protected]>
16347 L:      [email protected]
16348 S:      Maintained
16349 W:      https://linuxtv.org
16350 W:      http://palosaari.fi/linux/
16351 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16352 T:      git git://linuxtv.org/anttip/media_tree.git
16353 F:      drivers/media/dvb-frontends/rtl2832_sdr*
16354
16355 RTL8180 WIRELESS DRIVER
16356 L:      [email protected]
16357 S:      Orphan
16358 W:      https://wireless.wiki.kernel.org/
16359 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
16360 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
16361
16362 RTL8187 WIRELESS DRIVER
16363 M:      Herton Ronaldo Krzesinski <[email protected]>
16364 M:      Hin-Tak Leung <[email protected]>
16365 M:      Larry Finger <[email protected]>
16366 L:      [email protected]
16367 S:      Maintained
16368 W:      https://wireless.wiki.kernel.org/
16369 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
16370 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
16371
16372 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
16373 M:      Jes Sorensen <[email protected]>
16374 L:      [email protected]
16375 S:      Maintained
16376 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
16377 F:      drivers/net/wireless/realtek/rtl8xxxu/
16378
16379 RTRS TRANSPORT DRIVERS
16380 M:      Md. Haris Iqbal <[email protected]>
16381 M:      Jack Wang <[email protected]>
16382 L:      [email protected]
16383 S:      Maintained
16384 F:      drivers/infiniband/ulp/rtrs/
16385
16386 RXRPC SOCKETS (AF_RXRPC)
16387 M:      David Howells <[email protected]>
16388 M:      Marc Dionne <[email protected]>
16389 L:      [email protected]
16390 S:      Supported
16391 W:      https://www.infradead.org/~dhowells/kafs/
16392 F:      Documentation/networking/rxrpc.rst
16393 F:      include/keys/rxrpc-type.h
16394 F:      include/net/af_rxrpc.h
16395 F:      include/trace/events/rxrpc.h
16396 F:      include/uapi/linux/rxrpc.h
16397 F:      net/rxrpc/
16398
16399 S3 SAVAGE FRAMEBUFFER DRIVER
16400 M:      Antonino Daplas <[email protected]>
16401 L:      [email protected]
16402 S:      Maintained
16403 F:      drivers/video/fbdev/savage/
16404
16405 S390
16406 M:      Heiko Carstens <[email protected]>
16407 M:      Vasily Gorbik <[email protected]>
16408 M:      Christian Borntraeger <[email protected]>
16409 R:      Alexander Gordeev <[email protected]>
16410 L:      [email protected]
16411 S:      Supported
16412 W:      http://www.ibm.com/developerworks/linux/linux390/
16413 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
16414 F:      Documentation/driver-api/s390-drivers.rst
16415 F:      Documentation/s390/
16416 F:      arch/s390/
16417 F:      drivers/s390/
16418
16419 S390 COMMON I/O LAYER
16420 M:      Vineeth Vijayan <[email protected]>
16421 M:      Peter Oberparleiter <[email protected]>
16422 L:      [email protected]
16423 S:      Supported
16424 W:      http://www.ibm.com/developerworks/linux/linux390/
16425 F:      drivers/s390/cio/
16426
16427 S390 DASD DRIVER
16428 M:      Stefan Haberland <[email protected]>
16429 M:      Jan Hoeppner <[email protected]>
16430 L:      [email protected]
16431 S:      Supported
16432 W:      http://www.ibm.com/developerworks/linux/linux390/
16433 F:      block/partitions/ibm.c
16434 F:      drivers/s390/block/dasd*
16435 F:      include/linux/dasd_mod.h
16436
16437 S390 IOMMU (PCI)
16438 M:      Matthew Rosato <[email protected]>
16439 M:      Gerald Schaefer <[email protected]>
16440 L:      [email protected]
16441 S:      Supported
16442 W:      http://www.ibm.com/developerworks/linux/linux390/
16443 F:      drivers/iommu/s390-iommu.c
16444
16445 S390 IUCV NETWORK LAYER
16446 M:      Julian Wiedmann <[email protected]>
16447 M:      Karsten Graul <[email protected]>
16448 L:      [email protected]
16449 L:      [email protected]
16450 S:      Supported
16451 W:      http://www.ibm.com/developerworks/linux/linux390/
16452 F:      drivers/s390/net/*iucv*
16453 F:      include/net/iucv/
16454 F:      net/iucv/
16455
16456 S390 NETWORK DRIVERS
16457 M:      Julian Wiedmann <[email protected]>
16458 M:      Karsten Graul <[email protected]>
16459 L:      [email protected]
16460 L:      [email protected]
16461 S:      Supported
16462 W:      http://www.ibm.com/developerworks/linux/linux390/
16463 F:      drivers/s390/net/
16464
16465 S390 PCI SUBSYSTEM
16466 M:      Niklas Schnelle <[email protected]>
16467 M:      Gerald Schaefer <[email protected]>
16468 L:      [email protected]
16469 S:      Supported
16470 W:      http://www.ibm.com/developerworks/linux/linux390/
16471 F:      arch/s390/pci/
16472 F:      drivers/pci/hotplug/s390_pci_hpc.c
16473 F:      Documentation/s390/pci.rst
16474
16475 S390 VFIO AP DRIVER
16476 M:      Tony Krowiak <[email protected]>
16477 M:      Halil Pasic <[email protected]>
16478 M:      Jason Herne <[email protected]>
16479 L:      [email protected]
16480 S:      Supported
16481 W:      http://www.ibm.com/developerworks/linux/linux390/
16482 F:      Documentation/s390/vfio-ap.rst
16483 F:      drivers/s390/crypto/vfio_ap_drv.c
16484 F:      drivers/s390/crypto/vfio_ap_ops.c
16485 F:      drivers/s390/crypto/vfio_ap_private.h
16486
16487 S390 VFIO-CCW DRIVER
16488 M:      Eric Farman <[email protected]>
16489 M:      Matthew Rosato <[email protected]>
16490 R:      Halil Pasic <[email protected]>
16491 L:      [email protected]
16492 L:      [email protected]
16493 S:      Supported
16494 F:      Documentation/s390/vfio-ccw.rst
16495 F:      drivers/s390/cio/vfio_ccw*
16496 F:      include/uapi/linux/vfio_ccw.h
16497
16498 S390 VFIO-PCI DRIVER
16499 M:      Matthew Rosato <[email protected]>
16500 M:      Eric Farman <[email protected]>
16501 L:      [email protected]
16502 L:      [email protected]
16503 S:      Supported
16504 F:      drivers/vfio/pci/vfio_pci_zdev.c
16505 F:      include/uapi/linux/vfio_zdev.h
16506
16507 S390 ZCRYPT DRIVER
16508 M:      Harald Freudenberger <[email protected]>
16509 L:      [email protected]
16510 S:      Supported
16511 W:      http://www.ibm.com/developerworks/linux/linux390/
16512 F:      drivers/s390/crypto/
16513
16514 S390 ZFCP DRIVER
16515 M:      Steffen Maier <[email protected]>
16516 M:      Benjamin Block <[email protected]>
16517 L:      [email protected]
16518 S:      Supported
16519 W:      http://www.ibm.com/developerworks/linux/linux390/
16520 F:      drivers/s390/scsi/zfcp_*
16521
16522 S3C ADC BATTERY DRIVER
16523 M:      Krzysztof Kozlowski <[email protected]>
16524 L:      [email protected]
16525 S:      Odd Fixes
16526 F:      drivers/power/supply/s3c_adc_battery.c
16527 F:      include/linux/s3c_adc_battery.h
16528
16529 S3C24XX SD/MMC Driver
16530 M:      Ben Dooks <[email protected]>
16531 L:      [email protected] (moderated for non-subscribers)
16532 S:      Supported
16533 F:      drivers/mmc/host/s3cmci.*
16534
16535 SAA6588 RDS RECEIVER DRIVER
16536 M:      Hans Verkuil <[email protected]>
16537 L:      [email protected]
16538 S:      Odd Fixes
16539 W:      https://linuxtv.org
16540 T:      git git://linuxtv.org/media_tree.git
16541 F:      drivers/media/i2c/saa6588*
16542
16543 SAA7134 VIDEO4LINUX DRIVER
16544 M:      Mauro Carvalho Chehab <[email protected]>
16545 L:      [email protected]
16546 S:      Odd fixes
16547 W:      https://linuxtv.org
16548 T:      git git://linuxtv.org/media_tree.git
16549 F:      Documentation/driver-api/media/drivers/saa7134*
16550 F:      drivers/media/pci/saa7134/
16551
16552 SAA7146 VIDEO4LINUX-2 DRIVER
16553 M:      Hans Verkuil <[email protected]>
16554 L:      [email protected]
16555 S:      Maintained
16556 T:      git git://linuxtv.org/media_tree.git
16557 F:      drivers/media/common/saa7146/
16558 F:      drivers/media/pci/saa7146/
16559 F:      include/media/drv-intf/saa7146*
16560
16561 SAFESETID SECURITY MODULE
16562 M:      Micah Morton <[email protected]>
16563 S:      Supported
16564 F:      Documentation/admin-guide/LSM/SafeSetID.rst
16565 F:      security/safesetid/
16566
16567 SAMSUNG AUDIO (ASoC) DRIVERS
16568 M:      Krzysztof Kozlowski <[email protected]>
16569 M:      Sylwester Nawrocki <[email protected]>
16570 L:      [email protected] (moderated for non-subscribers)
16571 S:      Supported
16572 F:      Documentation/devicetree/bindings/sound/samsung*
16573 F:      sound/soc/samsung/
16574
16575 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
16576 M:      Krzysztof Kozlowski <[email protected]>
16577 L:      [email protected]
16578 L:      [email protected]
16579 S:      Maintained
16580 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
16581 F:      drivers/crypto/exynos-rng.c
16582
16583 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
16584 M:      Łukasz Stelmach <[email protected]>
16585 L:      [email protected]
16586 S:      Maintained
16587 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.yaml
16588 F:      drivers/char/hw_random/exynos-trng.c
16589
16590 SAMSUNG FRAMEBUFFER DRIVER
16591 M:      Jingoo Han <[email protected]>
16592 L:      [email protected]
16593 S:      Maintained
16594 F:      drivers/video/fbdev/s3c-fb.c
16595
16596 SAMSUNG INTERCONNECT DRIVERS
16597 M:      Sylwester Nawrocki <[email protected]>
16598 M:      Artur Świgoń <[email protected]>
16599 L:      [email protected]
16600 L:      [email protected]
16601 S:      Supported
16602 F:      drivers/interconnect/samsung/
16603
16604 SAMSUNG LAPTOP DRIVER
16605 M:      Corentin Chary <[email protected]>
16606 L:      [email protected]
16607 S:      Maintained
16608 F:      drivers/platform/x86/samsung-laptop.c
16609
16610 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
16611 M:      Krzysztof Kozlowski <[email protected]>
16612 M:      Bartlomiej Zolnierkiewicz <[email protected]>
16613 L:      [email protected]
16614 L:      [email protected]
16615 S:      Supported
16616 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.yaml
16617 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
16618 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.yaml
16619 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.yaml
16620 F:      drivers/clk/clk-s2mps11.c
16621 F:      drivers/mfd/sec*.c
16622 F:      drivers/regulator/s2m*.c
16623 F:      drivers/regulator/s5m*.c
16624 F:      drivers/rtc/rtc-s5m.c
16625 F:      include/linux/mfd/samsung/
16626
16627 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
16628 M:      Sylwester Nawrocki <[email protected]>
16629 L:      [email protected]
16630 L:      [email protected]
16631 S:      Maintained
16632 F:      drivers/media/platform/s3c-camif/
16633 F:      include/media/drv-intf/s3c_camif.h
16634
16635 SAMSUNG S3FWRN5 NFC DRIVER
16636 M:      Krzysztof Kozlowski <[email protected]>
16637 M:      Krzysztof Opasiak <[email protected]>
16638 L:      [email protected] (subscribers-only)
16639 S:      Maintained
16640 F:      Documentation/devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml
16641 F:      drivers/nfc/s3fwrn5
16642
16643 SAMSUNG S5C73M3 CAMERA DRIVER
16644 M:      Andrzej Hajda <[email protected]>
16645 L:      [email protected]
16646 S:      Supported
16647 F:      drivers/media/i2c/s5c73m3/*
16648
16649 SAMSUNG S5K5BAF CAMERA DRIVER
16650 M:      Andrzej Hajda <[email protected]>
16651 L:      [email protected]
16652 S:      Supported
16653 F:      drivers/media/i2c/s5k5baf.c
16654
16655 SAMSUNG S5P Security SubSystem (SSS) DRIVER
16656 M:      Krzysztof Kozlowski <[email protected]>
16657 M:      Vladimir Zapolskiy <[email protected]>
16658 L:      [email protected]
16659 L:      [email protected]
16660 S:      Maintained
16661 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
16662 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
16663 F:      drivers/crypto/s5p-sss.c
16664
16665 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
16666 M:      Sylwester Nawrocki <[email protected]>
16667 L:      [email protected]
16668 S:      Supported
16669 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
16670 F:      drivers/media/platform/exynos4-is/
16671
16672 SAMSUNG SOC CLOCK DRIVERS
16673 M:      Sylwester Nawrocki <[email protected]>
16674 M:      Tomasz Figa <[email protected]>
16675 M:      Chanwoo Choi <[email protected]>
16676 L:      [email protected]
16677 S:      Supported
16678 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
16679 F:      Documentation/devicetree/bindings/clock/exynos*.txt
16680 F:      Documentation/devicetree/bindings/clock/samsung,*.yaml
16681 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
16682 F:      Documentation/devicetree/bindings/clock/samsung,s5p*
16683 F:      drivers/clk/samsung/
16684 F:      include/dt-bindings/clock/exynos*.h
16685 F:      include/dt-bindings/clock/s3c*.h
16686 F:      include/dt-bindings/clock/s5p*.h
16687 F:      include/dt-bindings/clock/samsung,*.h
16688 F:      include/linux/clk/samsung.h
16689 F:      include/linux/platform_data/clk-s3c2410.h
16690
16691 SAMSUNG SPI DRIVERS
16692 M:      Krzysztof Kozlowski <[email protected]>
16693 M:      Andi Shyti <[email protected]>
16694 L:      [email protected]
16695 L:      [email protected]
16696 S:      Maintained
16697 F:      Documentation/devicetree/bindings/spi/spi-samsung.txt
16698 F:      drivers/spi/spi-s3c*
16699 F:      include/linux/platform_data/spi-s3c64xx.h
16700 F:      include/linux/spi/s3c24xx-fiq.h
16701
16702 SAMSUNG SXGBE DRIVERS
16703 M:      Byungho An <[email protected]>
16704 L:      [email protected]
16705 S:      Supported
16706 F:      drivers/net/ethernet/samsung/sxgbe/
16707
16708 SAMSUNG THERMAL DRIVER
16709 M:      Bartlomiej Zolnierkiewicz <[email protected]>
16710 L:      [email protected]
16711 L:      [email protected]
16712 S:      Supported
16713 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
16714 F:      drivers/thermal/samsung/
16715
16716 SAMSUNG USB2 PHY DRIVER
16717 M:      Sylwester Nawrocki <[email protected]>
16718 L:      [email protected]
16719 S:      Supported
16720 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
16721 F:      Documentation/driver-api/phy/samsung-usb2.rst
16722 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
16723 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
16724 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
16725 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
16726 F:      drivers/phy/samsung/phy-samsung-usb2.c
16727 F:      drivers/phy/samsung/phy-samsung-usb2.h
16728
16729 SANCLOUD BEAGLEBONE ENHANCED DEVICE TREE
16730 M:      Paul Barker <[email protected]>
16731 R:      Marc Murphy <[email protected]>
16732 S:      Supported
16733 F:      arch/arm/boot/dts/am335x-sancloud*
16734
16735 SC1200 WDT DRIVER
16736 M:      Zwane Mwaikambo <[email protected]>
16737 S:      Maintained
16738 F:      drivers/watchdog/sc1200wdt.c
16739
16740 SCHEDULER
16741 M:      Ingo Molnar <[email protected]>
16742 M:      Peter Zijlstra <[email protected]>
16743 M:      Juri Lelli <[email protected]> (SCHED_DEADLINE)
16744 M:      Vincent Guittot <[email protected]> (SCHED_NORMAL)
16745 R:      Dietmar Eggemann <[email protected]> (SCHED_NORMAL)
16746 R:      Steven Rostedt <[email protected]> (SCHED_FIFO/SCHED_RR)
16747 R:      Ben Segall <[email protected]> (CONFIG_CFS_BANDWIDTH)
16748 R:      Mel Gorman <[email protected]> (CONFIG_NUMA_BALANCING)
16749 R:      Daniel Bristot de Oliveira <[email protected]> (SCHED_DEADLINE)
16750 L:      [email protected]
16751 S:      Maintained
16752 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
16753 F:      include/linux/preempt.h
16754 F:      include/linux/sched.h
16755 F:      include/linux/wait.h
16756 F:      include/uapi/linux/sched.h
16757 F:      kernel/sched/
16758
16759 SCR24X CHIP CARD INTERFACE DRIVER
16760 M:      Lubomir Rintel <[email protected]>
16761 S:      Supported
16762 F:      drivers/char/pcmcia/scr24x_cs.c
16763
16764 SCSI RDMA PROTOCOL (SRP) INITIATOR
16765 M:      Bart Van Assche <[email protected]>
16766 L:      [email protected]
16767 S:      Supported
16768 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
16769 F:      drivers/infiniband/ulp/srp/
16770 F:      include/scsi/srp.h
16771
16772 SCSI RDMA PROTOCOL (SRP) TARGET
16773 M:      Bart Van Assche <[email protected]>
16774 L:      [email protected]
16775 L:      [email protected]
16776 S:      Supported
16777 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
16778 F:      drivers/infiniband/ulp/srpt/
16779
16780 SCSI SG DRIVER
16781 M:      Doug Gilbert <[email protected]>
16782 L:      [email protected]
16783 S:      Maintained
16784 W:      http://sg.danny.cz/sg
16785 F:      Documentation/scsi/scsi-generic.rst
16786 F:      drivers/scsi/sg.c
16787 F:      include/scsi/sg.h
16788
16789 SCSI SUBSYSTEM
16790 M:      "James E.J. Bottomley" <[email protected]>
16791 M:      "Martin K. Petersen" <[email protected]>
16792 L:      [email protected]
16793 S:      Maintained
16794 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
16795 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
16796 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
16797 F:      Documentation/devicetree/bindings/scsi/
16798 F:      drivers/scsi/
16799 F:      include/scsi/
16800
16801 SCSI TAPE DRIVER
16802 M:      Kai Mäkisara <[email protected]>
16803 L:      [email protected]
16804 S:      Maintained
16805 F:      Documentation/scsi/st.rst
16806 F:      drivers/scsi/st.*
16807 F:      drivers/scsi/st_*.h
16808
16809 SCSI TARGET CORE USER DRIVER
16810 M:      Bodo Stroesser <[email protected]>
16811 L:      [email protected]
16812 L:      [email protected]
16813 S:      Supported
16814 F:      Documentation/target/tcmu-design.rst
16815 F:      drivers/target/target_core_user.c
16816 F:      include/uapi/linux/target_core_user.h
16817
16818 SCSI TARGET SUBSYSTEM
16819 M:      "Martin K. Petersen" <[email protected]>
16820 L:      [email protected]
16821 L:      [email protected]
16822 S:      Supported
16823 W:      http://www.linux-iscsi.org
16824 Q:      https://patchwork.kernel.org/project/target-devel/list/
16825 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
16826 F:      Documentation/target/
16827 F:      drivers/target/
16828 F:      include/target/
16829
16830 SCTP PROTOCOL
16831 M:      Vlad Yasevich <[email protected]>
16832 M:      Neil Horman <[email protected]>
16833 M:      Marcelo Ricardo Leitner <[email protected]>
16834 L:      [email protected]
16835 S:      Maintained
16836 W:      http://lksctp.sourceforge.net
16837 F:      Documentation/networking/sctp.rst
16838 F:      include/linux/sctp.h
16839 F:      include/net/sctp/
16840 F:      include/uapi/linux/sctp.h
16841 F:      net/sctp/
16842
16843 SCx200 CPU SUPPORT
16844 M:      Jim Cromie <[email protected]>
16845 S:      Odd Fixes
16846 F:      Documentation/i2c/busses/scx200_acb.rst
16847 F:      arch/x86/platform/scx200/
16848 F:      drivers/i2c/busses/scx200*
16849 F:      drivers/mtd/maps/scx200_docflash.c
16850 F:      drivers/watchdog/scx200_wdt.c
16851 F:      include/linux/scx200.h
16852
16853 SCx200 GPIO DRIVER
16854 M:      Jim Cromie <[email protected]>
16855 S:      Maintained
16856 F:      drivers/char/scx200_gpio.c
16857 F:      include/linux/scx200_gpio.h
16858
16859 SCx200 HRT CLOCKSOURCE DRIVER
16860 M:      Jim Cromie <[email protected]>
16861 S:      Maintained
16862 F:      drivers/clocksource/scx200_hrt.c
16863
16864 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
16865 M:      Sascha Sommer <[email protected]>
16866 L:      [email protected] (subscribers-only)
16867 S:      Maintained
16868 F:      drivers/mmc/host/sdricoh_cs.c
16869
16870 SECO BOARDS CEC DRIVER
16871 M:      Ettore Chimenti <[email protected]>
16872 S:      Maintained
16873 F:      drivers/media/cec/platform/seco/seco-cec.c
16874 F:      drivers/media/cec/platform/seco/seco-cec.h
16875
16876 SECURE COMPUTING
16877 M:      Kees Cook <[email protected]>
16878 R:      Andy Lutomirski <[email protected]>
16879 R:      Will Drewry <[email protected]>
16880 S:      Supported
16881 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
16882 F:      Documentation/userspace-api/seccomp_filter.rst
16883 F:      include/linux/seccomp.h
16884 F:      include/uapi/linux/seccomp.h
16885 F:      kernel/seccomp.c
16886 F:      tools/testing/selftests/kselftest_harness.h
16887 F:      tools/testing/selftests/seccomp/*
16888 K:      \bsecure_computing
16889 K:      \bTIF_SECCOMP\b
16890
16891 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
16892 M:      Al Cooper <[email protected]>
16893 L:      [email protected]
16894 L:      [email protected]
16895 S:      Maintained
16896 F:      drivers/mmc/host/sdhci-brcmstb*
16897
16898 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
16899 M:      Adrian Hunter <[email protected]>
16900 L:      [email protected]
16901 S:      Maintained
16902 F:      drivers/mmc/host/sdhci*
16903
16904 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
16905 M:      Eugen Hristev <[email protected]>
16906 L:      [email protected]
16907 S:      Supported
16908 F:      drivers/mmc/host/sdhci-of-at91.c
16909
16910 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
16911 M:      Ben Dooks <[email protected]>
16912 M:      Jaehoon Chung <[email protected]>
16913 L:      [email protected]
16914 S:      Maintained
16915 F:      drivers/mmc/host/sdhci-s3c*
16916
16917 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
16918 M:      Viresh Kumar <[email protected]>
16919 L:      [email protected]
16920 S:      Maintained
16921 F:      drivers/mmc/host/sdhci-spear.c
16922
16923 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
16924 M:      Kishon Vijay Abraham I <[email protected]>
16925 L:      [email protected]
16926 S:      Maintained
16927 F:      drivers/mmc/host/sdhci-omap.c
16928
16929 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
16930 M:      Jonathan Derrick <[email protected]>
16931 M:      Revanth Rajashekar <[email protected]>
16932 L:      [email protected]
16933 S:      Supported
16934 F:      block/opal_proto.h
16935 F:      block/sed*
16936 F:      include/linux/sed*
16937 F:      include/uapi/linux/sed*
16938
16939 SECURITY CONTACT
16940 M:      Security Officers <[email protected]>
16941 S:      Supported
16942 F:      Documentation/admin-guide/security-bugs.rst
16943
16944 SECURITY SUBSYSTEM
16945 M:      James Morris <[email protected]>
16946 M:      "Serge E. Hallyn" <[email protected]>
16947 L:      [email protected] (suggested Cc:)
16948 S:      Supported
16949 W:      http://kernsec.org/
16950 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
16951 F:      security/
16952 X:      security/selinux/
16953
16954 SELINUX SECURITY MODULE
16955 M:      Paul Moore <[email protected]>
16956 M:      Stephen Smalley <[email protected]>
16957 M:      Eric Paris <[email protected]>
16958 L:      [email protected]
16959 S:      Supported
16960 W:      https://selinuxproject.org
16961 W:      https://github.com/SELinuxProject
16962 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
16963 F:      Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
16964 F:      Documentation/ABI/obsolete/sysfs-selinux-disable
16965 F:      Documentation/admin-guide/LSM/SELinux.rst
16966 F:      include/trace/events/avc.h
16967 F:      include/uapi/linux/selinux_netlink.h
16968 F:      scripts/selinux/
16969 F:      security/selinux/
16970
16971 SENSABLE PHANTOM
16972 M:      Jiri Slaby <[email protected]>
16973 S:      Maintained
16974 F:      drivers/misc/phantom.c
16975 F:      include/uapi/linux/phantom.h
16976
16977 SENSIRION SCD30 CARBON DIOXIDE SENSOR DRIVER
16978 M:      Tomasz Duszynski <[email protected]>
16979 S:      Maintained
16980 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd30.yaml
16981 F:      drivers/iio/chemical/scd30.h
16982 F:      drivers/iio/chemical/scd30_core.c
16983 F:      drivers/iio/chemical/scd30_i2c.c
16984 F:      drivers/iio/chemical/scd30_serial.c
16985
16986 SENSIRION SGP40 GAS SENSOR DRIVER
16987 M:      Andreas Klinger <[email protected]>
16988 S:      Maintained
16989 F:      Documentation/ABI/testing/sysfs-bus-iio-chemical-sgp40
16990 F:      drivers/iio/chemical/sgp40.c
16991
16992 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
16993 M:      Tomasz Duszynski <[email protected]>
16994 S:      Maintained
16995 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
16996 F:      drivers/iio/chemical/sps30.c
16997 F:      drivers/iio/chemical/sps30_i2c.c
16998 F:      drivers/iio/chemical/sps30_serial.c
16999
17000 SERIAL DEVICE BUS
17001 M:      Rob Herring <[email protected]>
17002 L:      [email protected]
17003 S:      Maintained
17004 F:      Documentation/devicetree/bindings/serial/serial.yaml
17005 F:      drivers/tty/serdev/
17006 F:      include/linux/serdev.h
17007
17008 SERIAL DRIVERS
17009 M:      Greg Kroah-Hartman <[email protected]>
17010 L:      [email protected]
17011 S:      Maintained
17012 F:      Documentation/devicetree/bindings/serial/
17013 F:      drivers/tty/serial/
17014
17015 SERIAL IR RECEIVER
17016 M:      Sean Young <[email protected]>
17017 L:      [email protected]
17018 S:      Maintained
17019 F:      drivers/media/rc/serial_ir.c
17020
17021 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
17022 M:      Srinivas Kandagatla <[email protected]>
17023 L:      [email protected] (moderated for non-subscribers)
17024 S:      Maintained
17025 F:      Documentation/devicetree/bindings/slimbus/
17026 F:      drivers/slimbus/
17027 F:      include/linux/slimbus.h
17028
17029 SFC NETWORK DRIVER
17030 M:      Edward Cree <[email protected]>
17031 M:      Martin Habets <[email protected]>
17032 L:      [email protected]
17033 S:      Supported
17034 F:      drivers/net/ethernet/sfc/
17035
17036 SFF/SFP/SFP+ MODULE SUPPORT
17037 M:      Russell King <[email protected]>
17038 L:      [email protected]
17039 S:      Maintained
17040 F:      drivers/net/phy/phylink.c
17041 F:      drivers/net/phy/sfp*
17042 F:      include/linux/mdio/mdio-i2c.h
17043 F:      include/linux/phylink.h
17044 F:      include/linux/sfp.h
17045 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)
17046
17047 SGI GRU DRIVER
17048 M:      Dimitri Sivanich <[email protected]>
17049 S:      Maintained
17050 F:      drivers/misc/sgi-gru/
17051
17052 SGI XP/XPC/XPNET DRIVER
17053 M:      Robin Holt <[email protected]>
17054 M:      Steve Wahl <[email protected]>
17055 R:      Mike Travis <[email protected]>
17056 S:      Maintained
17057 F:      drivers/misc/sgi-xp/
17058
17059 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
17060 M:      Karsten Graul <[email protected]>
17061 L:      [email protected]
17062 S:      Supported
17063 W:      http://www.ibm.com/developerworks/linux/linux390/
17064 F:      net/smc/
17065
17066 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
17067 M:      Linus Walleij <[email protected]>
17068 L:      [email protected]
17069 S:      Maintained
17070 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
17071 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
17072 F:      drivers/iio/light/gp2ap002.c
17073
17074 SHARP RJ54N1CB0C SENSOR DRIVER
17075 M:      Jacopo Mondi <[email protected]>
17076 L:      [email protected]
17077 S:      Odd fixes
17078 T:      git git://linuxtv.org/media_tree.git
17079 F:      drivers/media/i2c/rj54n1cb0c.c
17080 F:      include/media/i2c/rj54n1cb0c.h
17081
17082 SH_VOU V4L2 OUTPUT DRIVER
17083 L:      [email protected]
17084 S:      Orphan
17085 F:      drivers/media/platform/sh_vou.c
17086 F:      include/media/drv-intf/sh_vou.h
17087
17088 SI2157 MEDIA DRIVER
17089 M:      Antti Palosaari <[email protected]>
17090 L:      [email protected]
17091 S:      Maintained
17092 W:      https://linuxtv.org
17093 W:      http://palosaari.fi/linux/
17094 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17095 T:      git git://linuxtv.org/anttip/media_tree.git
17096 F:      drivers/media/tuners/si2157*
17097
17098 SI2165 MEDIA DRIVER
17099 M:      Matthias Schwarzott <[email protected]>
17100 L:      [email protected]
17101 S:      Maintained
17102 W:      https://linuxtv.org
17103 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17104 F:      drivers/media/dvb-frontends/si2165*
17105
17106 SI2168 MEDIA DRIVER
17107 M:      Antti Palosaari <[email protected]>
17108 L:      [email protected]
17109 S:      Maintained
17110 W:      https://linuxtv.org
17111 W:      http://palosaari.fi/linux/
17112 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17113 T:      git git://linuxtv.org/anttip/media_tree.git
17114 F:      drivers/media/dvb-frontends/si2168*
17115
17116 SI470X FM RADIO RECEIVER I2C DRIVER
17117 M:      Hans Verkuil <[email protected]>
17118 L:      [email protected]
17119 S:      Odd Fixes
17120 W:      https://linuxtv.org
17121 T:      git git://linuxtv.org/media_tree.git
17122 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
17123
17124 SI470X FM RADIO RECEIVER USB DRIVER
17125 M:      Hans Verkuil <[email protected]>
17126 L:      [email protected]
17127 S:      Maintained
17128 W:      https://linuxtv.org
17129 T:      git git://linuxtv.org/media_tree.git
17130 F:      drivers/media/radio/si470x/radio-si470x-common.c
17131 F:      drivers/media/radio/si470x/radio-si470x-usb.c
17132 F:      drivers/media/radio/si470x/radio-si470x.h
17133
17134 SI4713 FM RADIO TRANSMITTER I2C DRIVER
17135 M:      Eduardo Valentin <[email protected]>
17136 L:      [email protected]
17137 S:      Odd Fixes
17138 W:      https://linuxtv.org
17139 T:      git git://linuxtv.org/media_tree.git
17140 F:      drivers/media/radio/si4713/si4713.?
17141
17142 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
17143 M:      Eduardo Valentin <[email protected]>
17144 L:      [email protected]
17145 S:      Odd Fixes
17146 W:      https://linuxtv.org
17147 T:      git git://linuxtv.org/media_tree.git
17148 F:      drivers/media/radio/si4713/radio-platform-si4713.c
17149
17150 SI4713 FM RADIO TRANSMITTER USB DRIVER
17151 M:      Hans Verkuil <[email protected]>
17152 L:      [email protected]
17153 S:      Maintained
17154 W:      https://linuxtv.org
17155 T:      git git://linuxtv.org/media_tree.git
17156 F:      drivers/media/radio/si4713/radio-usb-si4713.c
17157
17158 SIANO DVB DRIVER
17159 M:      Mauro Carvalho Chehab <[email protected]>
17160 L:      [email protected]
17161 S:      Odd fixes
17162 W:      https://linuxtv.org
17163 T:      git git://linuxtv.org/media_tree.git
17164 F:      drivers/media/common/siano/
17165 F:      drivers/media/mmc/siano/
17166 F:      drivers/media/usb/siano/
17167 F:      drivers/media/usb/siano/
17168
17169 SIFIVE DRIVERS
17170 M:      Palmer Dabbelt <[email protected]>
17171 M:      Paul Walmsley <[email protected]>
17172 L:      [email protected]
17173 S:      Supported
17174 T:      git git://github.com/sifive/riscv-linux.git
17175 N:      sifive
17176 K:      [^@]sifive
17177
17178 SIFIVE FU540 SYSTEM-ON-CHIP
17179 M:      Paul Walmsley <[email protected]>
17180 M:      Palmer Dabbelt <[email protected]>
17181 L:      [email protected]
17182 S:      Supported
17183 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
17184 N:      fu540
17185 K:      fu540
17186
17187 SIFIVE PDMA DRIVER
17188 M:      Green Wan <[email protected]>
17189 S:      Maintained
17190 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
17191 F:      drivers/dma/sf-pdma/
17192
17193 SILEAD TOUCHSCREEN DRIVER
17194 M:      Hans de Goede <[email protected]>
17195 L:      [email protected]
17196 L:      [email protected]
17197 S:      Maintained
17198 F:      drivers/input/touchscreen/silead.c
17199 F:      drivers/platform/x86/touchscreen_dmi.c
17200
17201 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
17202 M:      Jérôme Pouiller <[email protected]>
17203 S:      Supported
17204 F:      drivers/staging/wfx/
17205
17206 SILICON MOTION SM712 FRAME BUFFER DRIVER
17207 M:      Sudip Mukherjee <[email protected]>
17208 M:      Teddy Wang <[email protected]>
17209 M:      Sudip Mukherjee <[email protected]>
17210 L:      [email protected]
17211 S:      Maintained
17212 F:      Documentation/fb/sm712fb.rst
17213 F:      drivers/video/fbdev/sm712*
17214
17215 SILVACO I3C DUAL-ROLE MASTER
17216 M:      Miquel Raynal <[email protected]>
17217 M:      Conor Culhane <[email protected]>
17218 L:      [email protected]
17219 S:      Maintained
17220 F:      Documentation/devicetree/bindings/i3c/silvaco,i3c-master.yaml
17221 F:      drivers/i3c/master/svc-i3c-master.c
17222
17223 SIMPLEFB FB DRIVER
17224 M:      Hans de Goede <[email protected]>
17225 L:      [email protected]
17226 S:      Maintained
17227 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
17228 F:      drivers/video/fbdev/simplefb.c
17229 F:      include/linux/platform_data/simplefb.h
17230
17231 SIMTEC EB110ATX (Chalice CATS)
17232 M:      Simtec Linux Team <[email protected]>
17233 S:      Supported
17234 W:      http://www.simtec.co.uk/products/EB110ATX/
17235
17236 SIMTEC EB2410ITX (BAST)
17237 M:      Simtec Linux Team <[email protected]>
17238 S:      Supported
17239 W:      http://www.simtec.co.uk/products/EB2410ITX/
17240 F:      arch/arm/mach-s3c/bast-ide.c
17241 F:      arch/arm/mach-s3c/bast-irq.c
17242 F:      arch/arm/mach-s3c/mach-bast.c
17243
17244 SIOX
17245 M:      Thorsten Scherer <[email protected]>
17246 M:      Uwe Kleine-König <[email protected]>
17247 R:      Pengutronix Kernel Team <[email protected]>
17248 S:      Supported
17249 F:      drivers/gpio/gpio-siox.c
17250 F:      drivers/siox/*
17251 F:      include/trace/events/siox.h
17252
17253 SIPHASH PRF ROUTINES
17254 M:      Jason A. Donenfeld <[email protected]>
17255 S:      Maintained
17256 F:      include/linux/siphash.h
17257 F:      lib/siphash.c
17258 F:      lib/test_siphash.c
17259
17260 SIS 190 ETHERNET DRIVER
17261 M:      Francois Romieu <[email protected]>
17262 L:      [email protected]
17263 S:      Maintained
17264 F:      drivers/net/ethernet/sis/sis190.c
17265
17266 SIS 900/7016 FAST ETHERNET DRIVER
17267 M:      Daniele Venzano <[email protected]>
17268 L:      [email protected]
17269 S:      Maintained
17270 W:      http://www.brownhat.org/sis900.html
17271 F:      drivers/net/ethernet/sis/sis900.*
17272
17273 SIS FRAMEBUFFER DRIVER
17274 M:      Thomas Winischhofer <[email protected]>
17275 S:      Maintained
17276 W:      http://www.winischhofer.net/linuxsisvga.shtml
17277 F:      Documentation/fb/sisfb.rst
17278 F:      drivers/video/fbdev/sis/
17279 F:      include/video/sisfb.h
17280
17281 SIS I2C TOUCHSCREEN DRIVER
17282 M:      Mika Penttilä <[email protected]>
17283 L:      [email protected]
17284 S:      Maintained
17285 F:      Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt
17286 F:      drivers/input/touchscreen/sis_i2c.c
17287
17288 SIS USB2VGA DRIVER
17289 M:      Thomas Winischhofer <[email protected]>
17290 S:      Maintained
17291 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
17292 F:      drivers/usb/misc/sisusbvga/
17293
17294 SLAB ALLOCATOR
17295 M:      Christoph Lameter <[email protected]>
17296 M:      Pekka Enberg <[email protected]>
17297 M:      David Rientjes <[email protected]>
17298 M:      Joonsoo Kim <[email protected]>
17299 M:      Andrew Morton <[email protected]>
17300 M:      Vlastimil Babka <[email protected]>
17301 L:      [email protected]
17302 S:      Maintained
17303 F:      include/linux/sl?b*.h
17304 F:      mm/sl?b*
17305
17306 SLEEPABLE READ-COPY UPDATE (SRCU)
17307 M:      Lai Jiangshan <[email protected]>
17308 M:      "Paul E. McKenney" <[email protected]>
17309 M:      Josh Triplett <[email protected]>
17310 R:      Steven Rostedt <[email protected]>
17311 R:      Mathieu Desnoyers <[email protected]>
17312 L:      [email protected]
17313 S:      Supported
17314 W:      http://www.rdrop.com/users/paulmck/RCU/
17315 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17316 F:      include/linux/srcu*.h
17317 F:      kernel/rcu/srcu*.c
17318
17319 SMACK SECURITY MODULE
17320 M:      Casey Schaufler <[email protected]>
17321 L:      [email protected]
17322 S:      Maintained
17323 W:      http://schaufler-ca.com
17324 T:      git git://github.com/cschaufler/smack-next
17325 F:      Documentation/admin-guide/LSM/Smack.rst
17326 F:      security/smack/
17327
17328 SMC91x ETHERNET DRIVER
17329 M:      Nicolas Pitre <[email protected]>
17330 S:      Odd Fixes
17331 F:      drivers/net/ethernet/smsc/smc91x.*
17332
17333 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
17334 M:      Mark Rutland <[email protected]>
17335 M:      Lorenzo Pieralisi <[email protected]>
17336 M:      Sudeep Holla <[email protected]>
17337 L:      [email protected] (moderated for non-subscribers)
17338 S:      Maintained
17339 F:      drivers/firmware/smccc/
17340 F:      include/linux/arm-smccc.h
17341
17342 SMM665 HARDWARE MONITOR DRIVER
17343 M:      Guenter Roeck <[email protected]>
17344 L:      [email protected]
17345 S:      Maintained
17346 F:      Documentation/hwmon/smm665.rst
17347 F:      drivers/hwmon/smm665.c
17348
17349 SMSC EMC2103 HARDWARE MONITOR DRIVER
17350 M:      Steve Glendinning <[email protected]>
17351 L:      [email protected]
17352 S:      Maintained
17353 F:      Documentation/hwmon/emc2103.rst
17354 F:      drivers/hwmon/emc2103.c
17355
17356 SMSC SCH5627 HARDWARE MONITOR DRIVER
17357 M:      Hans de Goede <[email protected]>
17358 L:      [email protected]
17359 S:      Supported
17360 F:      Documentation/hwmon/sch5627.rst
17361 F:      drivers/hwmon/sch5627.c
17362
17363 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
17364 M:      Steve Glendinning <[email protected]>
17365 L:      [email protected]
17366 S:      Maintained
17367 F:      drivers/video/fbdev/smscufx.c
17368
17369 SMSC47B397 HARDWARE MONITOR DRIVER
17370 M:      Jean Delvare <[email protected]>
17371 L:      [email protected]
17372 S:      Maintained
17373 F:      Documentation/hwmon/smsc47b397.rst
17374 F:      drivers/hwmon/smsc47b397.c
17375
17376 SMSC911x ETHERNET DRIVER
17377 M:      Steve Glendinning <[email protected]>
17378 L:      [email protected]
17379 S:      Maintained
17380 F:      drivers/net/ethernet/smsc/smsc911x.*
17381 F:      include/linux/smsc911x.h
17382
17383 SMSC9420 PCI ETHERNET DRIVER
17384 M:      Steve Glendinning <[email protected]>
17385 L:      [email protected]
17386 S:      Maintained
17387 F:      drivers/net/ethernet/smsc/smsc9420.*
17388
17389 SOCIONEXT (SNI) AVE NETWORK DRIVER
17390 M:      Kunihiko Hayashi <[email protected]>
17391 L:      [email protected]
17392 S:      Maintained
17393 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
17394 F:      drivers/net/ethernet/socionext/sni_ave.c
17395
17396 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
17397 M:      Jassi Brar <[email protected]>
17398 M:      Ilias Apalodimas <[email protected]>
17399 L:      [email protected]
17400 S:      Maintained
17401 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
17402 F:      drivers/net/ethernet/socionext/netsec.c
17403
17404 SOCIONEXT (SNI) Synquacer SPI DRIVER
17405 M:      Masahisa Kojima <[email protected]>
17406 M:      Jassi Brar <[email protected]>
17407 L:      [email protected]
17408 S:      Maintained
17409 F:      Documentation/devicetree/bindings/spi/spi-synquacer.txt
17410 F:      drivers/spi/spi-synquacer.c
17411
17412 SOCIONEXT SYNQUACER I2C DRIVER
17413 M:      Ard Biesheuvel <[email protected]>
17414 L:      [email protected]
17415 S:      Maintained
17416 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
17417 F:      drivers/i2c/busses/i2c-synquacer.c
17418
17419 SOCIONEXT UNIPHIER SOUND DRIVER
17420 L:      [email protected] (moderated for non-subscribers)
17421 S:      Orphan
17422 F:      sound/soc/uniphier/
17423
17424 SOEKRIS NET48XX LED SUPPORT
17425 M:      Chris Boot <[email protected]>
17426 S:      Maintained
17427 F:      drivers/leds/leds-net48xx.c
17428
17429 SOFT-IWARP DRIVER (siw)
17430 M:      Bernard Metzler <[email protected]>
17431 L:      [email protected]
17432 S:      Supported
17433 F:      drivers/infiniband/sw/siw/
17434 F:      include/uapi/rdma/siw-abi.h
17435
17436 SOFT-ROCE DRIVER (rxe)
17437 M:      Zhu Yanjun <[email protected]>
17438 L:      [email protected]
17439 S:      Supported
17440 F:      drivers/infiniband/sw/rxe/
17441 F:      include/uapi/rdma/rdma_user_rxe.h
17442
17443 SOFTLOGIC 6x10 MPEG CODEC
17444 M:      Bluecherry Maintainers <[email protected]>
17445 M:      Anton Sviridenko <[email protected]>
17446 M:      Andrey Utkin <[email protected]>
17447 M:      Ismael Luceno <[email protected]>
17448 L:      [email protected]
17449 S:      Supported
17450 F:      drivers/media/pci/solo6x10/
17451
17452 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
17453 M:      James Morse <[email protected]>
17454 L:      [email protected] (moderated for non-subscribers)
17455 S:      Maintained
17456 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
17457 F:      drivers/firmware/arm_sdei.c
17458 F:      include/linux/arm_sdei.h
17459 F:      include/uapi/linux/arm_sdei.h
17460
17461 SOFTWARE NODES
17462 R:      Andy Shevchenko <[email protected]>
17463 R:      Heikki Krogerus <[email protected]>
17464 L:      [email protected]
17465 S:      Maintained
17466 F:      drivers/base/swnode.c
17467
17468 SOFTWARE RAID (Multiple Disks) SUPPORT
17469 M:      Song Liu <[email protected]>
17470 L:      [email protected]
17471 S:      Supported
17472 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
17473 F:      drivers/md/Kconfig
17474 F:      drivers/md/Makefile
17475 F:      drivers/md/md*
17476 F:      drivers/md/raid*
17477 F:      include/linux/raid/
17478 F:      include/uapi/linux/raid/
17479
17480 SOLIDRUN CLEARFOG SUPPORT
17481 M:      Russell King <[email protected]>
17482 S:      Maintained
17483 F:      arch/arm/boot/dts/armada-388-clearfog*
17484 F:      arch/arm/boot/dts/armada-38x-solidrun-*
17485
17486 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
17487 M:      Russell King <[email protected]>
17488 S:      Maintained
17489 F:      arch/arm/boot/dts/imx6*-cubox-i*
17490 F:      arch/arm/boot/dts/imx6*-hummingboard*
17491 F:      arch/arm/boot/dts/imx6*-sr-*
17492
17493 SONIC NETWORK DRIVER
17494 M:      Thomas Bogendoerfer <[email protected]>
17495 L:      [email protected]
17496 S:      Maintained
17497 F:      drivers/net/ethernet/natsemi/sonic.*
17498
17499 SONICS SILICON BACKPLANE DRIVER (SSB)
17500 M:      Michael Buesch <[email protected]>
17501 L:      [email protected]
17502 S:      Maintained
17503 F:      drivers/ssb/
17504 F:      include/linux/ssb/
17505
17506 SONY IMX208 SENSOR DRIVER
17507 M:      Sakari Ailus <[email protected]>
17508 L:      [email protected]
17509 S:      Maintained
17510 T:      git git://linuxtv.org/media_tree.git
17511 F:      drivers/media/i2c/imx208.c
17512
17513 SONY IMX214 SENSOR DRIVER
17514 M:      Ricardo Ribalda <[email protected]>
17515 L:      [email protected]
17516 S:      Maintained
17517 T:      git git://linuxtv.org/media_tree.git
17518 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.yaml
17519 F:      drivers/media/i2c/imx214.c
17520
17521 SONY IMX219 SENSOR DRIVER
17522 M:      Dave Stevenson <[email protected]>
17523 L:      [email protected]
17524 S:      Maintained
17525 T:      git git://linuxtv.org/media_tree.git
17526 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
17527 F:      drivers/media/i2c/imx219.c
17528
17529 SONY IMX258 SENSOR DRIVER
17530 M:      Sakari Ailus <[email protected]>
17531 L:      [email protected]
17532 S:      Maintained
17533 T:      git git://linuxtv.org/media_tree.git
17534 F:      Documentation/devicetree/bindings/media/i2c/imx258.yaml
17535 F:      drivers/media/i2c/imx258.c
17536
17537 SONY IMX274 SENSOR DRIVER
17538 M:      Leon Luo <[email protected]>
17539 L:      [email protected]
17540 S:      Maintained
17541 T:      git git://linuxtv.org/media_tree.git
17542 F:      Documentation/devicetree/bindings/media/i2c/sony,imx274.yaml
17543 F:      drivers/media/i2c/imx274.c
17544
17545 SONY IMX290 SENSOR DRIVER
17546 M:      Manivannan Sadhasivam <[email protected]>
17547 L:      [email protected]
17548 S:      Maintained
17549 T:      git git://linuxtv.org/media_tree.git
17550 F:      Documentation/devicetree/bindings/media/i2c/imx290.txt
17551 F:      drivers/media/i2c/imx290.c
17552
17553 SONY IMX319 SENSOR DRIVER
17554 M:      Bingbu Cao <[email protected]>
17555 L:      [email protected]
17556 S:      Maintained
17557 T:      git git://linuxtv.org/media_tree.git
17558 F:      drivers/media/i2c/imx319.c
17559
17560 SONY IMX334 SENSOR DRIVER
17561 M:      Paul J. Murphy <[email protected]>
17562 M:      Daniele Alessandrelli <[email protected]>
17563 L:      [email protected]
17564 S:      Maintained
17565 T:      git git://linuxtv.org/media_tree.git
17566 F:      Documentation/devicetree/bindings/media/i2c/sony,imx334.yaml
17567 F:      drivers/media/i2c/imx334.c
17568
17569 SONY IMX335 SENSOR DRIVER
17570 M:      Paul J. Murphy <[email protected]>
17571 M:      Daniele Alessandrelli <[email protected]>
17572 L:      [email protected]
17573 S:      Maintained
17574 T:      git git://linuxtv.org/media_tree.git
17575 F:      Documentation/devicetree/bindings/media/i2c/sony,imx335.yaml
17576 F:      drivers/media/i2c/imx335.c
17577
17578 SONY IMX355 SENSOR DRIVER
17579 M:      Tianshu Qiu <[email protected]>
17580 L:      [email protected]
17581 S:      Maintained
17582 T:      git git://linuxtv.org/media_tree.git
17583 F:      drivers/media/i2c/imx355.c
17584
17585 SONY IMX412 SENSOR DRIVER
17586 M:      Paul J. Murphy <[email protected]>
17587 M:      Daniele Alessandrelli <[email protected]>
17588 L:      [email protected]
17589 S:      Maintained
17590 T:      git git://linuxtv.org/media_tree.git
17591 F:      Documentation/devicetree/bindings/media/i2c/sony,imx412.yaml
17592 F:      drivers/media/i2c/imx412.c
17593
17594 SONY MEMORYSTICK SUBSYSTEM
17595 M:      Maxim Levitsky <[email protected]>
17596 M:      Alex Dubov <[email protected]>
17597 M:      Ulf Hansson <[email protected]>
17598 L:      [email protected]
17599 S:      Maintained
17600 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
17601 F:      drivers/memstick/
17602 F:      include/linux/memstick.h
17603
17604 SONY VAIO CONTROL DEVICE DRIVER
17605 M:      Mattia Dongili <[email protected]>
17606 L:      [email protected]
17607 S:      Maintained
17608 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
17609 F:      Documentation/admin-guide/laptops/sony-laptop.rst
17610 F:      drivers/char/sonypi.c
17611 F:      drivers/platform/x86/sony-laptop.c
17612 F:      include/linux/sony-laptop.h
17613
17614 SOUND
17615 M:      Jaroslav Kysela <[email protected]>
17616 M:      Takashi Iwai <[email protected]>
17617 L:      [email protected] (moderated for non-subscribers)
17618 S:      Maintained
17619 W:      http://www.alsa-project.org/
17620 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
17621 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
17622 F:      Documentation/sound/
17623 F:      include/sound/
17624 F:      include/uapi/sound/
17625 F:      sound/
17626
17627 SOUND - COMPRESSED AUDIO
17628 M:      Vinod Koul <[email protected]>
17629 L:      [email protected] (moderated for non-subscribers)
17630 S:      Supported
17631 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
17632 F:      Documentation/sound/designs/compress-offload.rst
17633 F:      include/sound/compress_driver.h
17634 F:      include/uapi/sound/compress_*
17635 F:      sound/core/compress_offload.c
17636 F:      sound/soc/soc-compress.c
17637
17638 SOUND - DMAENGINE HELPERS
17639 M:      Lars-Peter Clausen <[email protected]>
17640 S:      Supported
17641 F:      include/sound/dmaengine_pcm.h
17642 F:      sound/core/pcm_dmaengine.c
17643 F:      sound/soc/soc-generic-dmaengine-pcm.c
17644
17645 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
17646 M:      Liam Girdwood <[email protected]>
17647 M:      Mark Brown <[email protected]>
17648 L:      [email protected] (moderated for non-subscribers)
17649 S:      Supported
17650 W:      http://alsa-project.org/main/index.php/ASoC
17651 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
17652 F:      Documentation/devicetree/bindings/sound/
17653 F:      Documentation/sound/soc/
17654 F:      include/dt-bindings/sound/
17655 F:      include/sound/soc*
17656 F:      sound/soc/
17657
17658 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
17659 M:      Pierre-Louis Bossart <[email protected]>
17660 M:      Liam Girdwood <[email protected]>
17661 M:      Ranjani Sridharan <[email protected]>
17662 M:      Kai Vehmanen <[email protected]>
17663 M:      Daniel Baluta <[email protected]>
17664 L:      [email protected] (moderated for non-subscribers)
17665 S:      Supported
17666 W:      https://github.com/thesofproject/linux/
17667 F:      sound/soc/sof/
17668
17669 SOUNDWIRE SUBSYSTEM
17670 M:      Vinod Koul <[email protected]>
17671 M:      Bard Liao <[email protected]>
17672 R:      Pierre-Louis Bossart <[email protected]>
17673 R:      Sanyog Kale <[email protected]>
17674 L:      [email protected] (moderated for non-subscribers)
17675 S:      Supported
17676 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire.git
17677 F:      Documentation/driver-api/soundwire/
17678 F:      drivers/soundwire/
17679 F:      include/linux/soundwire/
17680
17681 SP2 MEDIA DRIVER
17682 M:      Olli Salonen <[email protected]>
17683 L:      [email protected]
17684 S:      Maintained
17685 W:      https://linuxtv.org
17686 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17687 F:      drivers/media/dvb-frontends/sp2*
17688
17689 SPARC + UltraSPARC (sparc/sparc64)
17690 M:      "David S. Miller" <[email protected]>
17691 L:      [email protected]
17692 S:      Maintained
17693 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
17694 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
17695 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
17696 F:      arch/sparc/
17697 F:      drivers/sbus/
17698
17699 SPARC SERIAL DRIVERS
17700 M:      "David S. Miller" <[email protected]>
17701 L:      [email protected]
17702 S:      Maintained
17703 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
17704 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
17705 F:      drivers/tty/serial/suncore.c
17706 F:      drivers/tty/serial/sunhv.c
17707 F:      drivers/tty/serial/sunsab.c
17708 F:      drivers/tty/serial/sunsab.h
17709 F:      drivers/tty/serial/sunsu.c
17710 F:      drivers/tty/serial/sunzilog.c
17711 F:      drivers/tty/serial/sunzilog.h
17712 F:      drivers/tty/vcc.c
17713 F:      include/linux/sunserialcore.h
17714
17715 SPARSE CHECKER
17716 M:      "Luc Van Oostenryck" <[email protected]>
17717 L:      [email protected]
17718 S:      Maintained
17719 W:      https://sparse.docs.kernel.org/
17720 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
17721 Q:      https://patchwork.kernel.org/project/linux-sparse/list/
17722 B:      https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
17723 F:      include/linux/compiler.h
17724
17725 SPEAKUP CONSOLE SPEECH DRIVER
17726 M:      William Hubbs <[email protected]>
17727 M:      Chris Brannon <[email protected]>
17728 M:      Kirk Reiser <[email protected]>
17729 M:      Samuel Thibault <[email protected]>
17730 L:      [email protected]
17731 S:      Odd Fixes
17732 W:      http://www.linux-speakup.org/
17733 W:      https://github.com/linux-speakup/speakup
17734 B:      https://github.com/linux-speakup/speakup/issues
17735 F:      drivers/accessibility/speakup/
17736
17737 SPEAR CLOCK FRAMEWORK SUPPORT
17738 M:      Viresh Kumar <[email protected]>
17739 L:      [email protected] (moderated for non-subscribers)
17740 S:      Maintained
17741 W:      http://www.st.com/spear
17742 F:      drivers/clk/spear/
17743
17744 SPEAR PLATFORM SUPPORT
17745 M:      Viresh Kumar <[email protected]>
17746 M:      Shiraz Hashim <[email protected]>
17747 L:      [email protected] (moderated for non-subscribers)
17748 S:      Maintained
17749 W:      http://www.st.com/spear
17750 F:      arch/arm/boot/dts/spear*
17751 F:      arch/arm/mach-spear/
17752
17753 SPI NOR SUBSYSTEM
17754 M:      Tudor Ambarus <[email protected]>
17755 R:      Michael Walle <[email protected]>
17756 R:      Pratyush Yadav <[email protected]>
17757 L:      [email protected]
17758 S:      Maintained
17759 W:      http://www.linux-mtd.infradead.org/
17760 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
17761 C:      irc://irc.oftc.net/mtd
17762 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
17763 F:      drivers/mtd/spi-nor/
17764 F:      include/linux/mtd/spi-nor.h
17765
17766 SPI SUBSYSTEM
17767 M:      Mark Brown <[email protected]>
17768 L:      [email protected]
17769 S:      Maintained
17770 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
17771 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
17772 F:      Documentation/devicetree/bindings/spi/
17773 F:      Documentation/spi/
17774 F:      drivers/spi/
17775 F:      include/linux/spi/
17776 F:      include/uapi/linux/spi/
17777 F:      tools/spi/
17778
17779 SPIDERNET NETWORK DRIVER for CELL
17780 M:      Ishizaki Kou <[email protected]>
17781 M:      Geoff Levand <[email protected]>
17782 L:      [email protected]
17783 L:      [email protected]
17784 S:      Maintained
17785 F:      Documentation/networking/device_drivers/ethernet/toshiba/spider_net.rst
17786 F:      drivers/net/ethernet/toshiba/spider_net*
17787
17788 SPMI SUBSYSTEM
17789 M:      Stephen Boyd <[email protected]>
17790 L:      [email protected]
17791 S:      Maintained
17792 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sboyd/spmi.git
17793 F:      Documentation/devicetree/bindings/spmi/
17794 F:      drivers/spmi/
17795 F:      include/dt-bindings/spmi/spmi.h
17796 F:      include/linux/spmi.h
17797 F:      include/trace/events/spmi.h
17798
17799 SPU FILE SYSTEM
17800 M:      Jeremy Kerr <[email protected]>
17801 L:      [email protected]
17802 S:      Supported
17803 W:      http://www.ibm.com/developerworks/power/cell/
17804 F:      Documentation/filesystems/spufs/spufs.rst
17805 F:      arch/powerpc/platforms/cell/spufs/
17806
17807 SQUASHFS FILE SYSTEM
17808 M:      Phillip Lougher <[email protected]>
17809 L:      [email protected] (subscribers-only)
17810 S:      Maintained
17811 W:      http://squashfs.org.uk
17812 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
17813 F:      Documentation/filesystems/squashfs.rst
17814 F:      fs/squashfs/
17815
17816 SRM (Alpha) environment access
17817 M:      Jan-Benedict Glaw <[email protected]>
17818 S:      Maintained
17819 F:      arch/alpha/kernel/srm_env.c
17820
17821 ST LSM6DSx IMU IIO DRIVER
17822 M:      Lorenzo Bianconi <[email protected]>
17823 L:      [email protected]
17824 S:      Maintained
17825 W:      http://www.st.com/
17826 F:      Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml
17827 F:      drivers/iio/imu/st_lsm6dsx/
17828
17829 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
17830 M:      Mickael Guene <[email protected]>
17831 L:      [email protected]
17832 S:      Maintained
17833 T:      git git://linuxtv.org/media_tree.git
17834 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
17835 F:      drivers/media/i2c/st-mipid02.c
17836
17837 ST STM32 I2C/SMBUS DRIVER
17838 M:      Pierre-Yves MORDRET <[email protected]>
17839 M:      Alain Volmat <[email protected]>
17840 L:      [email protected]
17841 S:      Maintained
17842 F:      drivers/i2c/busses/i2c-stm32*
17843
17844 ST STM32 SPI DRIVER
17845 M:      Alain Volmat <[email protected]>
17846 L:      [email protected]
17847 S:      Maintained
17848 F:      drivers/spi/spi-stm32.c
17849
17850 ST STPDDC60 DRIVER
17851 M:      Daniel Nilsson <[email protected]>
17852 L:      [email protected]
17853 S:      Maintained
17854 F:      Documentation/hwmon/stpddc60.rst
17855 F:      drivers/hwmon/pmbus/stpddc60.c
17856
17857 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
17858 M:      Song Qiang <[email protected]>
17859 L:      [email protected]
17860 S:      Maintained
17861 F:      Documentation/devicetree/bindings/iio/proximity/st,vl53l0x.yaml
17862 F:      drivers/iio/proximity/vl53l0x-i2c.c
17863
17864 STABLE BRANCH
17865 M:      Greg Kroah-Hartman <[email protected]>
17866 M:      Sasha Levin <[email protected]>
17867 L:      [email protected]
17868 S:      Supported
17869 F:      Documentation/process/stable-kernel-rules.rst
17870
17871 STAGING - ATOMISP DRIVER
17872 M:      Mauro Carvalho Chehab <[email protected]>
17873 R:      Sakari Ailus <[email protected]>
17874 L:      [email protected]
17875 S:      Maintained
17876 F:      drivers/staging/media/atomisp/
17877
17878 STAGING - FIELDBUS SUBSYSTEM
17879 M:      Sven Van Asbroeck <[email protected]>
17880 S:      Maintained
17881 F:      drivers/staging/fieldbus/*
17882 F:      drivers/staging/fieldbus/Documentation/
17883
17884 STAGING - HMS ANYBUS-S BUS
17885 M:      Sven Van Asbroeck <[email protected]>
17886 S:      Maintained
17887 F:      drivers/staging/fieldbus/anybuss/
17888
17889 STAGING - INDUSTRIAL IO
17890 M:      Jonathan Cameron <[email protected]>
17891 L:      [email protected]
17892 S:      Odd Fixes
17893 F:      Documentation/devicetree/bindings/staging/iio/
17894 F:      drivers/staging/iio/
17895
17896 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
17897 M:      Marc Dietrich <[email protected]>
17898 L:      [email protected] (moderated for non-subscribers)
17899 L:      [email protected]
17900 S:      Maintained
17901 F:      drivers/staging/nvec/
17902
17903 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
17904 M:      Jens Frederich <[email protected]>
17905 M:      Jon Nettleton <[email protected]>
17906 S:      Maintained
17907 W:      http://wiki.laptop.org/go/DCON
17908 F:      drivers/staging/olpc_dcon/
17909
17910 STAGING - REALTEK RTL8188EU DRIVERS
17911 M:      Larry Finger <[email protected]>
17912 M:      Phillip Potter <[email protected]>
17913 S:      Supported
17914 F:      drivers/staging/r8188eu/
17915
17916 STAGING - REALTEK RTL8712U DRIVERS
17917 M:      Larry Finger <[email protected]>
17918 M:      Florian Schilhabel <[email protected]>.
17919 S:      Odd Fixes
17920 F:      drivers/staging/rtl8712/
17921
17922 STAGING - SEPS525 LCD CONTROLLER DRIVERS
17923 M:      Michael Hennerich <[email protected]>
17924 L:      [email protected]
17925 S:      Supported
17926 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
17927 F:      drivers/staging/fbtft/fb_seps525.c
17928
17929 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
17930 M:      Sudip Mukherjee <[email protected]>
17931 M:      Teddy Wang <[email protected]>
17932 M:      Sudip Mukherjee <[email protected]>
17933 L:      [email protected]
17934 S:      Maintained
17935 F:      drivers/staging/sm750fb/
17936
17937 STAGING - VIA VT665X DRIVERS
17938 M:      Forest Bond <[email protected]>
17939 S:      Odd Fixes
17940 F:      drivers/staging/vt665?/
17941
17942 STAGING SUBSYSTEM
17943 M:      Greg Kroah-Hartman <[email protected]>
17944 L:      [email protected]
17945 S:      Supported
17946 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
17947 F:      drivers/staging/
17948
17949 STARFIRE/DURALAN NETWORK DRIVER
17950 M:      Ion Badulescu <[email protected]>
17951 S:      Odd Fixes
17952 F:      drivers/net/ethernet/adaptec/starfire*
17953
17954 STATIC BRANCH/CALL
17955 M:      Peter Zijlstra <[email protected]>
17956 M:      Josh Poimboeuf <[email protected]>
17957 M:      Jason Baron <[email protected]>
17958 R:      Steven Rostedt <[email protected]>
17959 R:      Ard Biesheuvel <[email protected]>
17960 S:      Supported
17961 F:      arch/*/include/asm/jump_label*.h
17962 F:      arch/*/include/asm/static_call*.h
17963 F:      arch/*/kernel/jump_label.c
17964 F:      arch/*/kernel/static_call.c
17965 F:      include/linux/jump_label*.h
17966 F:      include/linux/static_call*.h
17967 F:      kernel/jump_label.c
17968 F:      kernel/static_call.c
17969
17970 STI AUDIO (ASoC) DRIVERS
17971 M:      Arnaud Pouliquen <[email protected]>
17972 L:      [email protected] (moderated for non-subscribers)
17973 S:      Maintained
17974 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
17975 F:      sound/soc/sti/
17976
17977 STI CEC DRIVER
17978 M:      Benjamin Gaignard <[email protected]>
17979 S:      Maintained
17980 F:      Documentation/devicetree/bindings/media/stih-cec.txt
17981 F:      drivers/media/cec/platform/sti/
17982
17983 STK1160 USB VIDEO CAPTURE DRIVER
17984 M:      Ezequiel Garcia <[email protected]>
17985 L:      [email protected]
17986 S:      Maintained
17987 T:      git git://linuxtv.org/media_tree.git
17988 F:      drivers/media/usb/stk1160/
17989
17990 STM32 AUDIO (ASoC) DRIVERS
17991 M:      Olivier Moysan <[email protected]>
17992 M:      Arnaud Pouliquen <[email protected]>
17993 L:      [email protected] (moderated for non-subscribers)
17994 S:      Maintained
17995 F:      Documentation/devicetree/bindings/iio/adc/st,stm32-dfsdm-adc.yaml
17996 F:      Documentation/devicetree/bindings/sound/st,stm32-*.yaml
17997 F:      sound/soc/stm/
17998
17999 STM32 TIMER/LPTIMER DRIVERS
18000 M:      Fabrice Gasnier <[email protected]>
18001 S:      Maintained
18002 F:      Documentation/ABI/testing/*timer-stm32
18003 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
18004 F:      drivers/*/stm32-*timer*
18005 F:      drivers/pwm/pwm-stm32*
18006 F:      include/linux/*/stm32-*tim*
18007
18008 STMMAC ETHERNET DRIVER
18009 M:      Giuseppe Cavallaro <[email protected]>
18010 M:      Alexandre Torgue <[email protected]>
18011 M:      Jose Abreu <[email protected]>
18012 L:      [email protected]
18013 S:      Supported
18014 W:      http://www.stlinux.com
18015 F:      Documentation/networking/device_drivers/ethernet/stmicro/
18016 F:      drivers/net/ethernet/stmicro/stmmac/
18017
18018 SUN3/3X
18019 M:      Sam Creasey <[email protected]>
18020 S:      Maintained
18021 W:      http://sammy.net/sun3/
18022 F:      arch/m68k/include/asm/sun3*
18023 F:      arch/m68k/kernel/*sun3*
18024 F:      arch/m68k/sun3*/
18025 F:      drivers/net/ethernet/i825xx/sun3*
18026
18027 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
18028 M:      Hans de Goede <[email protected]>
18029 L:      [email protected]
18030 S:      Maintained
18031 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
18032 F:      drivers/input/keyboard/sun4i-lradc-keys.c
18033
18034 SUNDANCE NETWORK DRIVER
18035 M:      Denis Kirjanov <[email protected]>
18036 L:      [email protected]
18037 S:      Maintained
18038 F:      drivers/net/ethernet/dlink/sundance.c
18039
18040 SUPERH
18041 M:      Yoshinori Sato <[email protected]>
18042 M:      Rich Felker <[email protected]>
18043 L:      [email protected]
18044 S:      Maintained
18045 Q:      http://patchwork.kernel.org/project/linux-sh/list/
18046 F:      Documentation/sh/
18047 F:      arch/sh/
18048 F:      drivers/sh/
18049
18050 SUSPEND TO RAM
18051 M:      "Rafael J. Wysocki" <[email protected]>
18052 M:      Len Brown <[email protected]>
18053 M:      Pavel Machek <[email protected]>
18054 L:      [email protected]
18055 S:      Supported
18056 B:      https://bugzilla.kernel.org
18057 F:      Documentation/power/
18058 F:      arch/x86/kernel/acpi/
18059 F:      drivers/base/power/
18060 F:      include/linux/freezer.h
18061 F:      include/linux/pm.h
18062 F:      include/linux/suspend.h
18063 F:      kernel/power/
18064
18065 SVGA HANDLING
18066 M:      Martin Mares <[email protected]>
18067 L:      [email protected]
18068 S:      Maintained
18069 F:      Documentation/admin-guide/svga.rst
18070 F:      arch/x86/boot/video*
18071
18072 SWIOTLB SUBSYSTEM
18073 M:      Christoph Hellwig <[email protected]>
18074 L:      [email protected]
18075 S:      Supported
18076 W:      http://git.infradead.org/users/hch/dma-mapping.git
18077 T:      git git://git.infradead.org/users/hch/dma-mapping.git
18078 F:      arch/*/kernel/pci-swiotlb.c
18079 F:      include/linux/swiotlb.h
18080 F:      kernel/dma/swiotlb.c
18081
18082 SWITCHDEV
18083 M:      Jiri Pirko <[email protected]>
18084 M:      Ivan Vecera <[email protected]>
18085 L:      [email protected]
18086 S:      Supported
18087 F:      include/net/switchdev.h
18088 F:      net/switchdev/
18089
18090 SY8106A REGULATOR DRIVER
18091 M:      Icenowy Zheng <[email protected]>
18092 S:      Maintained
18093 F:      Documentation/devicetree/bindings/regulator/silergy,sy8106a.yaml
18094 F:      drivers/regulator/sy8106a-regulator.c
18095
18096 SYNC FILE FRAMEWORK
18097 M:      Sumit Semwal <[email protected]>
18098 R:      Gustavo Padovan <[email protected]>
18099 L:      [email protected]
18100 L:      [email protected]
18101 S:      Maintained
18102 T:      git git://anongit.freedesktop.org/drm/drm-misc
18103 F:      Documentation/driver-api/sync_file.rst
18104 F:      drivers/dma-buf/dma-fence*
18105 F:      drivers/dma-buf/sw_sync.c
18106 F:      drivers/dma-buf/sync_*
18107 F:      include/linux/sync_file.h
18108 F:      include/uapi/linux/sync_file.h
18109
18110 SYNOPSYS ARC ARCHITECTURE
18111 M:      Vineet Gupta <[email protected]>
18112 L:      [email protected]
18113 S:      Supported
18114 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
18115 F:      Documentation/devicetree/bindings/arc/*
18116 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
18117 F:      arch/arc/
18118 F:      drivers/clocksource/arc_timer.c
18119 F:      drivers/tty/serial/arc_uart.c
18120
18121 SYNOPSYS ARC HSDK SDP pll clock driver
18122 M:      Eugeniy Paltsev <[email protected]>
18123 S:      Supported
18124 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
18125 F:      drivers/clk/clk-hsdk-pll.c
18126
18127 SYNOPSYS ARC SDP clock driver
18128 M:      Eugeniy Paltsev <[email protected]>
18129 S:      Supported
18130 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
18131 F:      drivers/clk/axs10x/*
18132
18133 SYNOPSYS ARC SDP platform support
18134 M:      Alexey Brodkin <[email protected]>
18135 S:      Supported
18136 F:      Documentation/devicetree/bindings/arc/axs10*
18137 F:      arch/arc/boot/dts/ax*
18138 F:      arch/arc/plat-axs10x
18139
18140 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
18141 M:      Eugeniy Paltsev <[email protected]>
18142 S:      Supported
18143 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
18144 F:      drivers/reset/reset-axs10x.c
18145
18146 SYNOPSYS CREG GPIO DRIVER
18147 M:      Eugeniy Paltsev <[email protected]>
18148 S:      Maintained
18149 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
18150 F:      drivers/gpio/gpio-creg-snps.c
18151
18152 SYNOPSYS DESIGNWARE 8250 UART DRIVER
18153 R:      Andy Shevchenko <[email protected]>
18154 S:      Maintained
18155 F:      drivers/tty/serial/8250/8250_dw.c
18156 F:      drivers/tty/serial/8250/8250_dwlib.*
18157 F:      drivers/tty/serial/8250/8250_lpss.c
18158
18159 SYNOPSYS DESIGNWARE APB GPIO DRIVER
18160 M:      Hoan Tran <[email protected]>
18161 M:      Serge Semin <[email protected]>
18162 L:      [email protected]
18163 S:      Maintained
18164 F:      Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
18165 F:      drivers/gpio/gpio-dwapb.c
18166
18167 SYNOPSYS DESIGNWARE APB SSI DRIVER
18168 M:      Serge Semin <[email protected]>
18169 L:      [email protected]
18170 S:      Supported
18171 F:      Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
18172 F:      drivers/spi/spi-dw*
18173
18174 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
18175 M:      Eugeniy Paltsev <[email protected]>
18176 S:      Maintained
18177 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.yaml
18178 F:      drivers/dma/dw-axi-dmac/
18179
18180 SYNOPSYS DESIGNWARE DMAC DRIVER
18181 M:      Viresh Kumar <[email protected]>
18182 R:      Andy Shevchenko <[email protected]>
18183 S:      Maintained
18184 F:      Documentation/devicetree/bindings/dma/snps,dma-spear1340.yaml
18185 F:      drivers/dma/dw/
18186 F:      include/dt-bindings/dma/dw-dmac.h
18187 F:      include/linux/dma/dw.h
18188 F:      include/linux/platform_data/dma-dw.h
18189
18190 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
18191 M:      Jose Abreu <[email protected]>
18192 L:      [email protected]
18193 S:      Supported
18194 F:      drivers/net/ethernet/synopsys/
18195
18196 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
18197 M:      Jose Abreu <[email protected]>
18198 L:      [email protected]
18199 S:      Supported
18200 F:      drivers/net/pcs/pcs-xpcs.c
18201 F:      drivers/net/pcs/pcs-xpcs.h
18202 F:      include/linux/pcs/pcs-xpcs.h
18203
18204 SYNOPSYS DESIGNWARE I2C DRIVER
18205 M:      Jarkko Nikula <[email protected]>
18206 R:      Andy Shevchenko <[email protected]>
18207 R:      Mika Westerberg <[email protected]>
18208 L:      [email protected]
18209 S:      Maintained
18210 F:      drivers/i2c/busses/i2c-designware-*
18211
18212 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
18213 M:      Jaehoon Chung <[email protected]>
18214 L:      [email protected]
18215 S:      Maintained
18216 F:      drivers/mmc/host/dw_mmc*
18217
18218 SYNOPSYS HSDK RESET CONTROLLER DRIVER
18219 M:      Eugeniy Paltsev <[email protected]>
18220 S:      Supported
18221 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
18222 F:      drivers/reset/reset-hsdk.c
18223 F:      include/dt-bindings/reset/snps,hsdk-reset.h
18224
18225 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
18226 M:      Prabu Thangamuthu <[email protected]>
18227 M:      Manjunath M B <[email protected]>
18228 L:      [email protected]
18229 S:      Maintained
18230 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
18231
18232 SYSTEM CONFIGURATION (SYSCON)
18233 M:      Lee Jones <[email protected]>
18234 M:      Arnd Bergmann <[email protected]>
18235 S:      Supported
18236 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
18237 F:      drivers/mfd/syscon.c
18238
18239 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
18240 M:      Sudeep Holla <[email protected]>
18241 R:      Cristian Marussi <[email protected]>
18242 L:      [email protected] (moderated for non-subscribers)
18243 S:      Maintained
18244 F:      Documentation/devicetree/bindings/firmware/arm,sc[mp]i.yaml
18245 F:      drivers/clk/clk-sc[mp]i.c
18246 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
18247 F:      drivers/firmware/arm_scmi/
18248 F:      drivers/firmware/arm_scpi.c
18249 F:      drivers/regulator/scmi-regulator.c
18250 F:      drivers/reset/reset-scmi.c
18251 F:      include/linux/sc[mp]i_protocol.h
18252 F:      include/trace/events/scmi.h
18253 F:      include/uapi/linux/virtio_scmi.h
18254
18255 SYSTEM RESET/SHUTDOWN DRIVERS
18256 M:      Sebastian Reichel <[email protected]>
18257 L:      [email protected]
18258 S:      Maintained
18259 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
18260 F:      Documentation/devicetree/bindings/power/reset/
18261 F:      drivers/power/reset/
18262
18263 SYSTEM TRACE MODULE CLASS
18264 M:      Alexander Shishkin <[email protected]>
18265 S:      Maintained
18266 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
18267 F:      Documentation/trace/stm.rst
18268 F:      drivers/hwtracing/stm/
18269 F:      include/linux/stm.h
18270 F:      include/uapi/linux/stm.h
18271
18272 SYSTEM76 ACPI DRIVER
18273 M:      Jeremy Soller <[email protected]>
18274 M:      System76 Product Development <[email protected]>
18275 L:      [email protected]
18276 S:      Maintained
18277 F:      drivers/platform/x86/system76_acpi.c
18278
18279 SYSV FILESYSTEM
18280 M:      Christoph Hellwig <[email protected]>
18281 S:      Maintained
18282 F:      Documentation/filesystems/sysv-fs.rst
18283 F:      fs/sysv/
18284 F:      include/linux/sysv_fs.h
18285
18286 TASKSTATS STATISTICS INTERFACE
18287 M:      Balbir Singh <[email protected]>
18288 S:      Maintained
18289 F:      Documentation/accounting/taskstats*
18290 F:      include/linux/taskstats*
18291 F:      kernel/taskstats.c
18292
18293 TC subsystem
18294 M:      Jamal Hadi Salim <[email protected]>
18295 M:      Cong Wang <[email protected]>
18296 M:      Jiri Pirko <[email protected]>
18297 L:      [email protected]
18298 S:      Maintained
18299 F:      include/net/pkt_cls.h
18300 F:      include/net/pkt_sched.h
18301 F:      include/net/tc_act/
18302 F:      include/uapi/linux/pkt_cls.h
18303 F:      include/uapi/linux/pkt_sched.h
18304 F:      include/uapi/linux/tc_act/
18305 F:      include/uapi/linux/tc_ematch/
18306 F:      net/sched/
18307
18308 TC90522 MEDIA DRIVER
18309 M:      Akihiro Tsukada <[email protected]>
18310 L:      [email protected]
18311 S:      Odd Fixes
18312 F:      drivers/media/dvb-frontends/tc90522*
18313
18314 TCP LOW PRIORITY MODULE
18315 M:      "Wong Hoi Sing, Edison" <[email protected]>
18316 M:      "Hung Hing Lun, Mike" <[email protected]>
18317 S:      Maintained
18318 W:      http://tcp-lp-mod.sourceforge.net/
18319 F:      net/ipv4/tcp_lp.c
18320
18321 TDA10071 MEDIA DRIVER
18322 M:      Antti Palosaari <[email protected]>
18323 L:      [email protected]
18324 S:      Maintained
18325 W:      https://linuxtv.org
18326 W:      http://palosaari.fi/linux/
18327 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18328 T:      git git://linuxtv.org/anttip/media_tree.git
18329 F:      drivers/media/dvb-frontends/tda10071*
18330
18331 TDA18212 MEDIA DRIVER
18332 M:      Antti Palosaari <[email protected]>
18333 L:      [email protected]
18334 S:      Maintained
18335 W:      https://linuxtv.org
18336 W:      http://palosaari.fi/linux/
18337 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18338 T:      git git://linuxtv.org/anttip/media_tree.git
18339 F:      drivers/media/tuners/tda18212*
18340
18341 TDA18218 MEDIA DRIVER
18342 M:      Antti Palosaari <[email protected]>
18343 L:      [email protected]
18344 S:      Maintained
18345 W:      https://linuxtv.org
18346 W:      http://palosaari.fi/linux/
18347 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18348 T:      git git://linuxtv.org/anttip/media_tree.git
18349 F:      drivers/media/tuners/tda18218*
18350
18351 TDA18250 MEDIA DRIVER
18352 M:      Olli Salonen <[email protected]>
18353 L:      [email protected]
18354 S:      Maintained
18355 W:      https://linuxtv.org
18356 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18357 T:      git git://linuxtv.org/media_tree.git
18358 F:      drivers/media/tuners/tda18250*
18359
18360 TDA18271 MEDIA DRIVER
18361 M:      Michael Krufky <[email protected]>
18362 L:      [email protected]
18363 S:      Maintained
18364 W:      https://linuxtv.org
18365 W:      http://github.com/mkrufky
18366 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18367 T:      git git://linuxtv.org/mkrufky/tuners.git
18368 F:      drivers/media/tuners/tda18271*
18369
18370 TDA1997x MEDIA DRIVER
18371 M:      Tim Harvey <[email protected]>
18372 L:      [email protected]
18373 S:      Maintained
18374 W:      https://linuxtv.org
18375 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18376 F:      drivers/media/i2c/tda1997x.*
18377
18378 TDA827x MEDIA DRIVER
18379 M:      Michael Krufky <[email protected]>
18380 L:      [email protected]
18381 S:      Maintained
18382 W:      https://linuxtv.org
18383 W:      http://github.com/mkrufky
18384 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18385 T:      git git://linuxtv.org/mkrufky/tuners.git
18386 F:      drivers/media/tuners/tda8290.*
18387
18388 TDA8290 MEDIA DRIVER
18389 M:      Michael Krufky <[email protected]>
18390 L:      [email protected]
18391 S:      Maintained
18392 W:      https://linuxtv.org
18393 W:      http://github.com/mkrufky
18394 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18395 T:      git git://linuxtv.org/mkrufky/tuners.git
18396 F:      drivers/media/tuners/tda8290.*
18397
18398 TDA9840 MEDIA DRIVER
18399 M:      Hans Verkuil <[email protected]>
18400 L:      [email protected]
18401 S:      Maintained
18402 W:      https://linuxtv.org
18403 T:      git git://linuxtv.org/media_tree.git
18404 F:      drivers/media/i2c/tda9840*
18405
18406 TEA5761 TUNER DRIVER
18407 M:      Mauro Carvalho Chehab <[email protected]>
18408 L:      [email protected]
18409 S:      Odd fixes
18410 W:      https://linuxtv.org
18411 T:      git git://linuxtv.org/media_tree.git
18412 F:      drivers/media/tuners/tea5761.*
18413
18414 TEA5767 TUNER DRIVER
18415 M:      Mauro Carvalho Chehab <[email protected]>
18416 L:      [email protected]
18417 S:      Maintained
18418 W:      https://linuxtv.org
18419 T:      git git://linuxtv.org/media_tree.git
18420 F:      drivers/media/tuners/tea5767.*
18421
18422 TEA6415C MEDIA DRIVER
18423 M:      Hans Verkuil <[email protected]>
18424 L:      [email protected]
18425 S:      Maintained
18426 W:      https://linuxtv.org
18427 T:      git git://linuxtv.org/media_tree.git
18428 F:      drivers/media/i2c/tea6415c*
18429
18430 TEA6420 MEDIA DRIVER
18431 M:      Hans Verkuil <[email protected]>
18432 L:      [email protected]
18433 S:      Maintained
18434 W:      https://linuxtv.org
18435 T:      git git://linuxtv.org/media_tree.git
18436 F:      drivers/media/i2c/tea6420*
18437
18438 TEAM DRIVER
18439 M:      Jiri Pirko <[email protected]>
18440 L:      [email protected]
18441 S:      Supported
18442 F:      drivers/net/team/
18443 F:      include/linux/if_team.h
18444 F:      include/uapi/linux/if_team.h
18445
18446 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
18447 M:      "Savoir-faire Linux Inc." <[email protected]>
18448 S:      Maintained
18449 F:      arch/x86/platform/ts5500/
18450
18451 TECHNOTREND USB IR RECEIVER
18452 M:      Sean Young <[email protected]>
18453 L:      [email protected]
18454 S:      Maintained
18455 F:      drivers/media/rc/ttusbir.c
18456
18457 TECHWELL TW9910 VIDEO DECODER
18458 L:      [email protected]
18459 S:      Orphan
18460 F:      drivers/media/i2c/tw9910.c
18461 F:      include/media/i2c/tw9910.h
18462
18463 TEE SUBSYSTEM
18464 M:      Jens Wiklander <[email protected]>
18465 R:      Sumit Garg <[email protected]>
18466 L:      [email protected]
18467 S:      Maintained
18468 F:      Documentation/staging/tee.rst
18469 F:      drivers/tee/
18470 F:      include/linux/tee_drv.h
18471 F:      include/uapi/linux/tee.h
18472
18473 TEGRA ARCHITECTURE SUPPORT
18474 M:      Thierry Reding <[email protected]>
18475 M:      Jonathan Hunter <[email protected]>
18476 L:      [email protected]
18477 S:      Supported
18478 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
18479 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
18480 N:      [^a-z]tegra
18481
18482 TEGRA CLOCK DRIVER
18483 M:      Peter De Schrijver <[email protected]>
18484 M:      Prashant Gaikwad <[email protected]>
18485 S:      Supported
18486 F:      drivers/clk/tegra/
18487
18488 TEGRA DMA DRIVERS
18489 M:      Laxman Dewangan <[email protected]>
18490 M:      Jon Hunter <[email protected]>
18491 S:      Supported
18492 F:      drivers/dma/tegra*
18493
18494 TEGRA I2C DRIVER
18495 M:      Laxman Dewangan <[email protected]>
18496 R:      Dmitry Osipenko <[email protected]>
18497 S:      Supported
18498 F:      drivers/i2c/busses/i2c-tegra.c
18499
18500 TEGRA IOMMU DRIVERS
18501 M:      Thierry Reding <[email protected]>
18502 R:      Krishna Reddy <[email protected]>
18503 L:      [email protected]
18504 S:      Supported
18505 F:      drivers/iommu/arm/arm-smmu/arm-smmu-nvidia.c
18506 F:      drivers/iommu/tegra*
18507
18508 TEGRA KBC DRIVER
18509 M:      Laxman Dewangan <[email protected]>
18510 S:      Supported
18511 F:      drivers/input/keyboard/tegra-kbc.c
18512
18513 TEGRA NAND DRIVER
18514 M:      Stefan Agner <[email protected]>
18515 M:      Lucas Stach <[email protected]>
18516 S:      Maintained
18517 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
18518 F:      drivers/mtd/nand/raw/tegra_nand.c
18519
18520 TEGRA PWM DRIVER
18521 M:      Thierry Reding <[email protected]>
18522 S:      Supported
18523 F:      drivers/pwm/pwm-tegra.c
18524
18525 TEGRA SERIAL DRIVER
18526 M:      Laxman Dewangan <[email protected]>
18527 S:      Supported
18528 F:      drivers/tty/serial/serial-tegra.c
18529
18530 TEGRA SPI DRIVER
18531 M:      Laxman Dewangan <[email protected]>
18532 S:      Supported
18533 F:      drivers/spi/spi-tegra*
18534
18535 TEGRA QUAD SPI DRIVER
18536 M:      Thierry Reding <[email protected]>
18537 M:      Jonathan Hunter <[email protected]>
18538 M:      Sowjanya Komatineni <[email protected]>
18539 L:      [email protected]
18540 S:      Maintained
18541 F:      drivers/spi/spi-tegra210-quad.c
18542
18543 TEGRA VIDEO DRIVER
18544 M:      Thierry Reding <[email protected]>
18545 M:      Jonathan Hunter <[email protected]>
18546 M:      Sowjanya Komatineni <[email protected]>
18547 L:      [email protected]
18548 L:      [email protected]
18549 S:      Maintained
18550 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
18551 F:      drivers/staging/media/tegra-video/
18552
18553 TEGRA XUSB PADCTL DRIVER
18554 M:      JC Kuo <[email protected]>
18555 S:      Supported
18556 F:      drivers/phy/tegra/xusb*
18557
18558 TEHUTI ETHERNET DRIVER
18559 M:      Andy Gospodarek <[email protected]>
18560 L:      [email protected]
18561 S:      Supported
18562 F:      drivers/net/ethernet/tehuti/*
18563
18564 TELECOM CLOCK DRIVER FOR MCPL0010
18565 M:      Mark Gross <[email protected]>
18566 S:      Supported
18567 F:      drivers/char/tlclk.c
18568
18569 TEMPO SEMICONDUCTOR DRIVERS
18570 M:      Steven Eckhoff <[email protected]>
18571 S:      Maintained
18572 F:      Documentation/devicetree/bindings/sound/tscs*.txt
18573 F:      sound/soc/codecs/tscs*.c
18574 F:      sound/soc/codecs/tscs*.h
18575
18576 TENSILICA XTENSA PORT (xtensa)
18577 M:      Chris Zankel <[email protected]>
18578 M:      Max Filippov <[email protected]>
18579 L:      [email protected]
18580 S:      Maintained
18581 T:      git git://github.com/czankel/xtensa-linux.git
18582 F:      arch/xtensa/
18583 F:      drivers/irqchip/irq-xtensa-*
18584
18585 TEXAS INSTRUMENTS ASoC DRIVERS
18586 M:      Peter Ujfalusi <[email protected]>
18587 L:      [email protected] (moderated for non-subscribers)
18588 S:      Maintained
18589 F:      sound/soc/ti/
18590
18591 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
18592 M:      Ricardo Ribalda <[email protected]>
18593 L:      [email protected]
18594 S:      Supported
18595 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.yaml
18596 F:      drivers/iio/dac/ti-dac7612.c
18597
18598 TEXAS INSTRUMENTS DMA DRIVERS
18599 M:      Peter Ujfalusi <[email protected]>
18600 L:      [email protected]
18601 S:      Maintained
18602 F:      Documentation/devicetree/bindings/dma/ti-dma-crossbar.txt
18603 F:      Documentation/devicetree/bindings/dma/ti-edma.txt
18604 F:      Documentation/devicetree/bindings/dma/ti/
18605 F:      drivers/dma/ti/
18606 X:      drivers/dma/ti/cppi41.c
18607 F:      include/linux/dma/k3-udma-glue.h
18608 F:      include/linux/dma/ti-cppi5.h
18609 F:      include/linux/dma/k3-psil.h
18610
18611 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
18612 M:      Nishanth Menon <[email protected]>
18613 M:      Tero Kristo <[email protected]>
18614 M:      Santosh Shilimkar <[email protected]>
18615 L:      [email protected] (moderated for non-subscribers)
18616 S:      Maintained
18617 F:      Documentation/devicetree/bindings/arm/keystone/ti,k3-sci-common.yaml
18618 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
18619 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.yaml
18620 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.yaml
18621 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.yaml
18622 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.yaml
18623 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.yaml
18624 F:      drivers/clk/keystone/sci-clk.c
18625 F:      drivers/firmware/ti_sci*
18626 F:      drivers/irqchip/irq-ti-sci-inta.c
18627 F:      drivers/irqchip/irq-ti-sci-intr.c
18628 F:      drivers/reset/reset-ti-sci.c
18629 F:      drivers/soc/ti/ti_sci_inta_msi.c
18630 F:      drivers/soc/ti/ti_sci_pm_domains.c
18631 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
18632 F:      include/linux/soc/ti/ti_sci_inta_msi.h
18633 F:      include/linux/soc/ti/ti_sci_protocol.h
18634
18635 TEXAS INSTRUMENTS TPS23861 PoE PSE DRIVER
18636 M:      Robert Marko <[email protected]>
18637 M:      Luka Perkov <[email protected]>
18638 L:      [email protected]
18639 S:      Maintained
18640 F:      Documentation/devicetree/bindings/hwmon/ti,tps23861.yaml
18641 F:      Documentation/hwmon/tps23861.rst
18642 F:      drivers/hwmon/tps23861.c
18643
18644 TEXAS INSTRUMENTS' TMP117 TEMPERATURE SENSOR DRIVER
18645 M:      Puranjay Mohan <[email protected]>
18646 L:      [email protected]
18647 S:      Supported
18648 F:      Documentation/devicetree/bindings/iio/temperature/ti,tmp117.yaml
18649 F:      drivers/iio/temperature/tmp117.c
18650
18651 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
18652 M:      Hans Verkuil <[email protected]>
18653 L:      [email protected]
18654 S:      Maintained
18655 W:      https://linuxtv.org
18656 T:      git git://linuxtv.org/media_tree.git
18657 F:      drivers/media/radio/radio-raremono.c
18658
18659 THERMAL
18660 M:      Rafael J. Wysocki <[email protected]>
18661 M:      Daniel Lezcano <[email protected]>
18662 R:      Amit Kucheria <[email protected]>
18663 R:      Zhang Rui <[email protected]>
18664 L:      [email protected]
18665 S:      Supported
18666 Q:      https://patchwork.kernel.org/project/linux-pm/list/
18667 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git thermal
18668 F:      Documentation/devicetree/bindings/thermal/
18669 F:      drivers/thermal/
18670 F:      include/linux/cpu_cooling.h
18671 F:      include/linux/thermal.h
18672 F:      include/uapi/linux/thermal.h
18673 F:      tools/thermal/
18674
18675 THERMAL DRIVER FOR AMLOGIC SOCS
18676 M:      Guillaume La Roque <[email protected]>
18677 L:      [email protected]
18678 L:      [email protected]
18679 S:      Supported
18680 W:      http://linux-meson.com/
18681 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
18682 F:      drivers/thermal/amlogic_thermal.c
18683
18684 THERMAL/CPU_COOLING
18685 M:      Amit Daniel Kachhap <[email protected]>
18686 M:      Daniel Lezcano <[email protected]>
18687 M:      Viresh Kumar <[email protected]>
18688 R:      Lukasz Luba <[email protected]>
18689 L:      [email protected]
18690 S:      Supported
18691 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
18692 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
18693 F:      drivers/thermal/cpufreq_cooling.c
18694 F:      drivers/thermal/cpuidle_cooling.c
18695 F:      include/linux/cpu_cooling.h
18696
18697 THERMAL/POWER_ALLOCATOR
18698 M:      Lukasz Luba <[email protected]>
18699 L:      [email protected]
18700 S:      Maintained
18701 F:      Documentation/driver-api/thermal/power_allocator.rst
18702 F:      drivers/thermal/gov_power_allocator.c
18703 F:      include/trace/events/thermal_power_allocator.h
18704
18705 THINKPAD ACPI EXTRAS DRIVER
18706 M:      Henrique de Moraes Holschuh <[email protected]>
18707 L:      [email protected]
18708 L:      [email protected]
18709 S:      Maintained
18710 W:      http://ibm-acpi.sourceforge.net
18711 W:      http://thinkwiki.org/wiki/Ibm-acpi
18712 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
18713 F:      drivers/platform/x86/thinkpad_acpi.c
18714
18715 THINKPAD LMI DRIVER
18716 M:      Mark Pearson <[email protected]>
18717 L:      [email protected]
18718 S:      Maintained
18719 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
18720 F:      drivers/platform/x86/think-lmi.?
18721
18722 THUNDERBOLT DMA TRAFFIC TEST DRIVER
18723 M:      Isaac Hazan <[email protected]>
18724 L:      [email protected]
18725 S:      Maintained
18726 F:      drivers/thunderbolt/dma_test.c
18727
18728 THUNDERBOLT DRIVER
18729 M:      Andreas Noever <[email protected]>
18730 M:      Michael Jamet <[email protected]>
18731 M:      Mika Westerberg <[email protected]>
18732 M:      Yehezkel Bernat <[email protected]>
18733 L:      [email protected]
18734 S:      Maintained
18735 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
18736 F:      Documentation/admin-guide/thunderbolt.rst
18737 F:      drivers/thunderbolt/
18738 F:      include/linux/thunderbolt.h
18739
18740 THUNDERBOLT NETWORK DRIVER
18741 M:      Michael Jamet <[email protected]>
18742 M:      Mika Westerberg <[email protected]>
18743 M:      Yehezkel Bernat <[email protected]>
18744 L:      [email protected]
18745 S:      Maintained
18746 F:      drivers/net/thunderbolt.c
18747
18748 THUNDERX GPIO DRIVER
18749 M:      Robert Richter <[email protected]>
18750 S:      Odd Fixes
18751 F:      drivers/gpio/gpio-thunderx.c
18752
18753 TI ADS131E0X ADC SERIES DRIVER
18754 M:      Tomislav Denis <[email protected]>
18755 L:      [email protected]
18756 S:      Maintained
18757 F:      Documentation/devicetree/bindings/iio/adc/ti,ads131e08.yaml
18758 F:      drivers/iio/adc/ti-ads131e08.c
18759
18760 TI AM437X VPFE DRIVER
18761 M:      "Lad, Prabhakar" <[email protected]>
18762 L:      [email protected]
18763 S:      Maintained
18764 W:      https://linuxtv.org
18765 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18766 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
18767 F:      drivers/media/platform/am437x/
18768
18769 TI BANDGAP AND THERMAL DRIVER
18770 M:      Eduardo Valentin <[email protected]>
18771 M:      Keerthy <[email protected]>
18772 L:      [email protected]
18773 L:      [email protected]
18774 S:      Maintained
18775 F:      drivers/thermal/ti-soc-thermal/
18776
18777 TI BQ27XXX POWER SUPPLY DRIVER
18778 F:      drivers/power/supply/bq27xxx_battery.c
18779 F:      drivers/power/supply/bq27xxx_battery_i2c.c
18780 F:      include/linux/power/bq27xxx_battery.h
18781
18782 TI CDCE706 CLOCK DRIVER
18783 M:      Max Filippov <[email protected]>
18784 S:      Maintained
18785 F:      drivers/clk/clk-cdce706.c
18786
18787 TI CLOCK DRIVER
18788 M:      Tero Kristo <[email protected]>
18789 L:      [email protected]
18790 S:      Odd Fixes
18791 F:      drivers/clk/ti/
18792 F:      include/linux/clk/ti.h
18793
18794 TI DAVINCI MACHINE SUPPORT
18795 M:      Sekhar Nori <[email protected]>
18796 R:      Bartosz Golaszewski <[email protected]>
18797 L:      [email protected] (moderated for non-subscribers)
18798 S:      Supported
18799 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
18800 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
18801 F:      arch/arm/boot/dts/da850*
18802 F:      arch/arm/mach-davinci/
18803 F:      drivers/i2c/busses/i2c-davinci.c
18804
18805 TI DAVINCI SERIES CLOCK DRIVER
18806 M:      David Lechner <[email protected]>
18807 R:      Sekhar Nori <[email protected]>
18808 S:      Maintained
18809 F:      Documentation/devicetree/bindings/clock/ti/davinci/
18810 F:      drivers/clk/davinci/
18811
18812 TI DAVINCI SERIES GPIO DRIVER
18813 M:      Keerthy <[email protected]>
18814 L:      [email protected]
18815 S:      Maintained
18816 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.yaml
18817 F:      drivers/gpio/gpio-davinci.c
18818
18819 TI DAVINCI SERIES MEDIA DRIVER
18820 M:      "Lad, Prabhakar" <[email protected]>
18821 L:      [email protected]
18822 S:      Maintained
18823 W:      https://linuxtv.org
18824 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18825 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
18826 F:      drivers/media/platform/davinci/
18827 F:      include/media/davinci/
18828
18829 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
18830 R:      David Lechner <[email protected]>
18831 L:      [email protected]
18832 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
18833 F:      drivers/counter/ti-eqep.c
18834
18835 TI ETHERNET SWITCH DRIVER (CPSW)
18836 R:      Grygorii Strashko <[email protected]>
18837 L:      [email protected]
18838 L:      [email protected]
18839 S:      Maintained
18840 F:      drivers/net/ethernet/ti/cpsw*
18841 F:      drivers/net/ethernet/ti/davinci*
18842
18843 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
18844 M:      Alex Dubov <[email protected]>
18845 S:      Maintained
18846 W:      http://tifmxx.berlios.de/
18847 F:      drivers/memstick/host/tifm_ms.c
18848 F:      drivers/misc/tifm*
18849 F:      drivers/mmc/host/tifm_sd.c
18850 F:      include/linux/tifm.h
18851
18852 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
18853 M:      Santosh Shilimkar <[email protected]>
18854 L:      [email protected]
18855 L:      [email protected] (moderated for non-subscribers)
18856 S:      Maintained
18857 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
18858 F:      drivers/soc/ti/*
18859
18860 TI LM49xxx FAMILY ASoC CODEC DRIVERS
18861 M:      M R Swami Reddy <[email protected]>
18862 M:      Vishwas A Deshpande <[email protected]>
18863 L:      [email protected] (moderated for non-subscribers)
18864 S:      Maintained
18865 F:      sound/soc/codecs/isabelle*
18866 F:      sound/soc/codecs/lm49453*
18867
18868 TI PCM3060 ASoC CODEC DRIVER
18869 M:      Kirill Marinushkin <[email protected]>
18870 L:      [email protected] (moderated for non-subscribers)
18871 S:      Maintained
18872 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
18873 F:      sound/soc/codecs/pcm3060*
18874
18875 TI TAS571X FAMILY ASoC CODEC DRIVER
18876 M:      Kevin Cernekee <[email protected]>
18877 L:      [email protected] (moderated for non-subscribers)
18878 S:      Odd Fixes
18879 F:      sound/soc/codecs/tas571x*
18880
18881 TI TRF7970A NFC DRIVER
18882 M:      Mark Greer <[email protected]>
18883 L:      [email protected]
18884 L:      [email protected] (subscribers-only)
18885 S:      Supported
18886 F:      Documentation/devicetree/bindings/net/nfc/trf7970a.txt
18887 F:      drivers/nfc/trf7970a.c
18888
18889 TI TSC2046 ADC DRIVER
18890 M:      Oleksij Rempel <[email protected]>
18891 R:      [email protected]
18892 L:      [email protected]
18893 S:      Maintained
18894 F:      Documentation/devicetree/bindings/iio/adc/ti,tsc2046.yaml
18895 F:      drivers/iio/adc/ti-tsc2046.c
18896
18897 TI TWL4030 SERIES SOC CODEC DRIVER
18898 M:      Peter Ujfalusi <[email protected]>
18899 L:      [email protected] (moderated for non-subscribers)
18900 S:      Maintained
18901 F:      sound/soc/codecs/twl4030*
18902
18903 TI VPE/CAL DRIVERS
18904 M:      Benoit Parrot <[email protected]>
18905 L:      [email protected]
18906 S:      Maintained
18907 W:      http://linuxtv.org/
18908 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18909 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
18910 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
18911 F:      drivers/media/platform/ti-vpe/
18912
18913 TI WILINK WIRELESS DRIVERS
18914 L:      [email protected]
18915 S:      Orphan
18916 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
18917 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
18918 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
18919 F:      drivers/net/wireless/ti/
18920 F:      include/linux/wl12xx.h
18921
18922 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
18923 M:      John Stultz <[email protected]>
18924 M:      Thomas Gleixner <[email protected]>
18925 R:      Stephen Boyd <[email protected]>
18926 L:      [email protected]
18927 S:      Supported
18928 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
18929 F:      include/linux/clocksource.h
18930 F:      include/linux/time.h
18931 F:      include/linux/timex.h
18932 F:      include/uapi/linux/time.h
18933 F:      include/uapi/linux/timex.h
18934 F:      kernel/time/alarmtimer.c
18935 F:      kernel/time/clocksource.c
18936 F:      kernel/time/ntp.c
18937 F:      kernel/time/time*.c
18938 F:      tools/testing/selftests/timers/
18939
18940 TIPC NETWORK LAYER
18941 M:      Jon Maloy <[email protected]>
18942 M:      Ying Xue <[email protected]>
18943 L:      [email protected] (core kernel code)
18944 L:      [email protected] (user apps, general discussion)
18945 S:      Maintained
18946 W:      http://tipc.sourceforge.net/
18947 F:      include/uapi/linux/tipc*.h
18948 F:      net/tipc/
18949
18950 TLAN NETWORK DRIVER
18951 M:      Samuel Chessman <[email protected]>
18952 L:      [email protected] (subscribers-only)
18953 S:      Maintained
18954 W:      http://sourceforge.net/projects/tlan/
18955 F:      Documentation/networking/device_drivers/ethernet/ti/tlan.rst
18956 F:      drivers/net/ethernet/ti/tlan.*
18957
18958 TM6000 VIDEO4LINUX DRIVER
18959 M:      Mauro Carvalho Chehab <[email protected]>
18960 L:      [email protected]
18961 S:      Odd fixes
18962 W:      https://linuxtv.org
18963 T:      git git://linuxtv.org/media_tree.git
18964 F:      Documentation/admin-guide/media/tm6000*
18965 F:      drivers/media/usb/tm6000/
18966
18967 TMIO/SDHI MMC DRIVER
18968 M:      Wolfram Sang <[email protected]>
18969 L:      [email protected]
18970 S:      Supported
18971 F:      drivers/mmc/host/renesas_sdhi*
18972 F:      drivers/mmc/host/tmio_mmc*
18973 F:      include/linux/mfd/tmio.h
18974
18975 TMP401 HARDWARE MONITOR DRIVER
18976 M:      Guenter Roeck <[email protected]>
18977 L:      [email protected]
18978 S:      Maintained
18979 F:      Documentation/hwmon/tmp401.rst
18980 F:      drivers/hwmon/tmp401.c
18981
18982 TMP513 HARDWARE MONITOR DRIVER
18983 M:      Eric Tremblay <[email protected]>
18984 L:      [email protected]
18985 S:      Maintained
18986 F:      Documentation/hwmon/tmp513.rst
18987 F:      drivers/hwmon/tmp513.c
18988
18989 TMPFS (SHMEM FILESYSTEM)
18990 M:      Hugh Dickins <[email protected]>
18991 L:      [email protected]
18992 S:      Maintained
18993 F:      include/linux/shmem_fs.h
18994 F:      mm/shmem.c
18995
18996 TOMOYO SECURITY MODULE
18997 M:      Kentaro Takeda <[email protected]>
18998 M:      Tetsuo Handa <[email protected]>
18999 L:      [email protected] (subscribers-only, for developers in English)
19000 L:      [email protected] (subscribers-only, for users in English)
19001 L:      [email protected] (subscribers-only, for developers in Japanese)
19002 L:      [email protected] (subscribers-only, for users in Japanese)
19003 S:      Maintained
19004 W:      https://tomoyo.osdn.jp/
19005 F:      security/tomoyo/
19006
19007 TOPSTAR LAPTOP EXTRAS DRIVER
19008 M:      Herton Ronaldo Krzesinski <[email protected]>
19009 L:      [email protected]
19010 S:      Maintained
19011 F:      drivers/platform/x86/topstar-laptop.c
19012
19013 TORTURE-TEST MODULES
19014 M:      Davidlohr Bueso <[email protected]>
19015 M:      "Paul E. McKenney" <[email protected]>
19016 M:      Josh Triplett <[email protected]>
19017 L:      [email protected]
19018 S:      Supported
19019 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
19020 F:      Documentation/RCU/torture.rst
19021 F:      kernel/locking/locktorture.c
19022 F:      kernel/rcu/rcuscale.c
19023 F:      kernel/rcu/rcutorture.c
19024 F:      kernel/rcu/refscale.c
19025 F:      kernel/torture.c
19026
19027 TOSHIBA ACPI EXTRAS DRIVER
19028 M:      Azael Avalos <[email protected]>
19029 L:      [email protected]
19030 S:      Maintained
19031 F:      drivers/platform/x86/toshiba_acpi.c
19032
19033 TOSHIBA BLUETOOTH DRIVER
19034 M:      Azael Avalos <[email protected]>
19035 L:      [email protected]
19036 S:      Maintained
19037 F:      drivers/platform/x86/toshiba_bluetooth.c
19038
19039 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
19040 M:      Azael Avalos <[email protected]>
19041 L:      [email protected]
19042 S:      Maintained
19043 F:      drivers/platform/x86/toshiba_haps.c
19044
19045 TOSHIBA SMM DRIVER
19046 M:      Jonathan Buzzard <[email protected]>
19047 S:      Maintained
19048 W:      http://www.buzzard.org.uk/toshiba/
19049 F:      drivers/char/toshiba.c
19050 F:      include/linux/toshiba.h
19051 F:      include/uapi/linux/toshiba.h
19052
19053 TOSHIBA TC358743 DRIVER
19054 M:      Mats Randgaard <[email protected]>
19055 L:      [email protected]
19056 S:      Maintained
19057 F:      drivers/media/i2c/tc358743*
19058 F:      include/media/i2c/tc358743.h
19059
19060 TOSHIBA WMI HOTKEYS DRIVER
19061 M:      Azael Avalos <[email protected]>
19062 L:      [email protected]
19063 S:      Maintained
19064 F:      drivers/platform/x86/toshiba-wmi.c
19065
19066 TPM DEVICE DRIVER
19067 M:      Peter Huewe <[email protected]>
19068 M:      Jarkko Sakkinen <[email protected]>
19069 R:      Jason Gunthorpe <[email protected]>
19070 L:      [email protected]
19071 S:      Maintained
19072 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
19073 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
19074 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd.git
19075 F:      drivers/char/tpm/
19076
19077 TRACING
19078 M:      Steven Rostedt <[email protected]>
19079 M:      Ingo Molnar <[email protected]>
19080 S:      Maintained
19081 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace.git
19082 F:      Documentation/trace/ftrace.rst
19083 F:      arch/*/*/*/ftrace.h
19084 F:      arch/*/kernel/ftrace.c
19085 F:      fs/tracefs/
19086 F:      include/*/ftrace.h
19087 F:      include/linux/trace*.h
19088 F:      include/trace/
19089 F:      kernel/trace/
19090 F:      tools/testing/selftests/ftrace/
19091
19092 TRACING MMIO ACCESSES (MMIOTRACE)
19093 M:      Steven Rostedt <[email protected]>
19094 M:      Ingo Molnar <[email protected]>
19095 R:      Karol Herbst <[email protected]>
19096 R:      Pekka Paalanen <[email protected]>
19097 L:      [email protected]
19098 L:      [email protected]
19099 S:      Maintained
19100 F:      arch/x86/mm/kmmio.c
19101 F:      arch/x86/mm/mmio-mod.c
19102 F:      arch/x86/mm/testmmiotrace.c
19103 F:      include/linux/mmiotrace.h
19104 F:      kernel/trace/trace_mmiotrace.c
19105
19106 TRACING OS NOISE / LATENCY TRACERS
19107 M:      Steven Rostedt <[email protected]>
19108 M:      Daniel Bristot de Oliveira <[email protected]>
19109 S:      Maintained
19110 F:      kernel/trace/trace_osnoise.c
19111 F:      include/trace/events/osnoise.h
19112 F:      kernel/trace/trace_hwlat.c
19113 F:      kernel/trace/trace_irqsoff.c
19114 F:      kernel/trace/trace_sched_wakeup.c
19115 F:      Documentation/trace/osnoise-tracer.rst
19116 F:      Documentation/trace/timerlat-tracer.rst
19117 F:      Documentation/trace/hwlat_detector.rst
19118 F:      arch/*/kernel/trace.c
19119
19120 TRADITIONAL CHINESE DOCUMENTATION
19121 M:      Hu Haowen <[email protected]>
19122 L:      [email protected]
19123 S:      Maintained
19124 W:      https://github.com/srcres258/linux-doc
19125 T:      git git://github.com/srcres258/linux-doc.git doc-zh-tw
19126 F:      Documentation/translations/zh_TW/
19127
19128 TRIVIAL PATCHES
19129 M:      Jiri Kosina <[email protected]>
19130 S:      Maintained
19131 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
19132 K:      ^Subject:.*(?i)trivial
19133
19134 TTY LAYER
19135 M:      Greg Kroah-Hartman <[email protected]>
19136 M:      Jiri Slaby <[email protected]>
19137 S:      Supported
19138 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
19139 F:      Documentation/driver-api/serial/
19140 F:      drivers/tty/
19141 F:      drivers/tty/serial/serial_core.c
19142 F:      include/linux/selection.h
19143 F:      include/linux/serial.h
19144 F:      include/linux/serial_core.h
19145 F:      include/linux/sysrq.h
19146 F:      include/linux/tty*.h
19147 F:      include/linux/vt.h
19148 F:      include/linux/vt_*.h
19149 F:      include/uapi/linux/serial.h
19150 F:      include/uapi/linux/serial_core.h
19151 F:      include/uapi/linux/tty.h
19152
19153 TUA9001 MEDIA DRIVER
19154 M:      Antti Palosaari <[email protected]>
19155 L:      [email protected]
19156 S:      Maintained
19157 W:      https://linuxtv.org
19158 W:      http://palosaari.fi/linux/
19159 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19160 T:      git git://linuxtv.org/anttip/media_tree.git
19161 F:      drivers/media/tuners/tua9001*
19162
19163 TULIP NETWORK DRIVERS
19164 L:      [email protected]
19165 L:      [email protected]
19166 S:      Orphan
19167 F:      drivers/net/ethernet/dec/tulip/
19168
19169 TUN/TAP driver
19170 M:      Maxim Krasnyansky <[email protected]>
19171 S:      Maintained
19172 W:      http://vtun.sourceforge.net/tun
19173 F:      Documentation/networking/tuntap.rst
19174 F:      arch/um/os-Linux/drivers/
19175
19176 TURBOCHANNEL SUBSYSTEM
19177 M:      "Maciej W. Rozycki" <[email protected]>
19178 M:      Ralf Baechle <[email protected]>
19179 L:      [email protected]
19180 S:      Maintained
19181 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
19182 F:      drivers/tc/
19183 F:      include/linux/tc.h
19184
19185 TURBOSTAT UTILITY
19186 M:      "Len Brown" <[email protected]>
19187 L:      [email protected]
19188 S:      Supported
19189 Q:      https://patchwork.kernel.org/project/linux-pm/list/
19190 B:      https://bugzilla.kernel.org
19191 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
19192 F:      tools/power/x86/turbostat/
19193
19194 TW5864 VIDEO4LINUX DRIVER
19195 M:      Bluecherry Maintainers <[email protected]>
19196 M:      Anton Sviridenko <[email protected]>
19197 M:      Andrey Utkin <[email protected]>
19198 M:      Andrey Utkin <[email protected]>
19199 L:      [email protected]
19200 S:      Supported
19201 F:      drivers/media/pci/tw5864/
19202
19203 TW68 VIDEO4LINUX DRIVER
19204 M:      Hans Verkuil <[email protected]>
19205 L:      [email protected]
19206 S:      Odd Fixes
19207 W:      https://linuxtv.org
19208 T:      git git://linuxtv.org/media_tree.git
19209 F:      drivers/media/pci/tw68/
19210
19211 TW686X VIDEO4LINUX DRIVER
19212 M:      Ezequiel Garcia <[email protected]>
19213 L:      [email protected]
19214 S:      Maintained
19215 W:      http://linuxtv.org
19216 T:      git git://linuxtv.org/media_tree.git
19217 F:      drivers/media/pci/tw686x/
19218
19219 UACCE ACCELERATOR FRAMEWORK
19220 M:      Zhangfei Gao <[email protected]>
19221 M:      Zhou Wang <[email protected]>
19222 L:      [email protected]
19223 L:      [email protected]
19224 S:      Maintained
19225 F:      Documentation/ABI/testing/sysfs-driver-uacce
19226 F:      Documentation/misc-devices/uacce.rst
19227 F:      drivers/misc/uacce/
19228 F:      include/linux/uacce.h
19229 F:      include/uapi/misc/uacce/
19230
19231 UBI FILE SYSTEM (UBIFS)
19232 M:      Richard Weinberger <[email protected]>
19233 L:      [email protected]
19234 S:      Supported
19235 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
19236 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
19237 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
19238 F:      Documentation/filesystems/ubifs-authentication.rst
19239 F:      Documentation/filesystems/ubifs.rst
19240 F:      fs/ubifs/
19241
19242 UCLINUX (M68KNOMMU AND COLDFIRE)
19243 M:      Greg Ungerer <[email protected]>
19244 L:      [email protected]
19245 L:      [email protected]  (subscribers-only)
19246 S:      Maintained
19247 W:      http://www.linux-m68k.org/
19248 W:      http://www.uclinux.org/
19249 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
19250 F:      arch/m68k/*/*_no.*
19251 F:      arch/m68k/68*/
19252 F:      arch/m68k/coldfire/
19253 F:      arch/m68k/include/asm/*_no.*
19254
19255 UDF FILESYSTEM
19256 M:      Jan Kara <[email protected]>
19257 S:      Maintained
19258 F:      Documentation/filesystems/udf.rst
19259 F:      fs/udf/
19260
19261 UDRAW TABLET
19262 M:      Bastien Nocera <[email protected]>
19263 L:      [email protected]
19264 S:      Maintained
19265 F:      drivers/hid/hid-udraw-ps3.c
19266
19267 UFS FILESYSTEM
19268 M:      Evgeniy Dushistov <[email protected]>
19269 S:      Maintained
19270 F:      Documentation/admin-guide/ufs.rst
19271 F:      fs/ufs/
19272
19273 UHID USERSPACE HID IO DRIVER
19274 M:      David Rheinsberg <[email protected]>
19275 L:      [email protected]
19276 S:      Maintained
19277 F:      drivers/hid/uhid.c
19278 F:      include/uapi/linux/uhid.h
19279
19280 ULPI BUS
19281 M:      Heikki Krogerus <[email protected]>
19282 L:      [email protected]
19283 S:      Maintained
19284 F:      drivers/usb/common/ulpi.c
19285 F:      include/linux/ulpi/
19286
19287 UNICODE SUBSYSTEM
19288 M:      Gabriel Krisman Bertazi <[email protected]>
19289 L:      [email protected]
19290 S:      Supported
19291 F:      fs/unicode/
19292
19293 UNIFDEF
19294 M:      Tony Finch <[email protected]>
19295 S:      Maintained
19296 W:      http://dotat.at/prog/unifdef
19297 F:      scripts/unifdef.c
19298
19299 UNIFORM CDROM DRIVER
19300 M:      Phillip Potter <[email protected]>
19301 S:      Maintained
19302 F:      Documentation/cdrom/
19303 F:      drivers/cdrom/cdrom.c
19304 F:      include/linux/cdrom.h
19305 F:      include/uapi/linux/cdrom.h
19306
19307 UNISYS S-PAR DRIVERS
19308 M:      David Kershner <[email protected]>
19309 L:      [email protected] (Unisys internal)
19310 S:      Supported
19311 F:      drivers/staging/unisys/
19312 F:      drivers/visorbus/
19313 F:      include/linux/visorbus.h
19314
19315 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
19316 R:      Alim Akhtar <[email protected]>
19317 R:      Avri Altman <[email protected]>
19318 L:      [email protected]
19319 S:      Supported
19320 F:      Documentation/scsi/ufs.rst
19321 F:      drivers/scsi/ufs/
19322
19323 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
19324 M:      Pedro Sousa <[email protected]>
19325 L:      [email protected]
19326 S:      Supported
19327 F:      drivers/scsi/ufs/*dwc*
19328
19329 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
19330 M:      Stanley Chu <[email protected]>
19331 L:      [email protected]
19332 L:      [email protected] (moderated for non-subscribers)
19333 S:      Maintained
19334 F:      drivers/scsi/ufs/ufs-mediatek*
19335
19336 UNSORTED BLOCK IMAGES (UBI)
19337 M:      Richard Weinberger <[email protected]>
19338 L:      [email protected]
19339 S:      Supported
19340 W:      http://www.linux-mtd.infradead.org/
19341 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
19342 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
19343 F:      drivers/mtd/ubi/
19344 F:      include/linux/mtd/ubi.h
19345 F:      include/uapi/mtd/ubi-user.h
19346
19347 USB "USBNET" DRIVER FRAMEWORK
19348 M:      Oliver Neukum <[email protected]>
19349 L:      [email protected]
19350 S:      Maintained
19351 W:      http://www.linux-usb.org/usbnet
19352 F:      drivers/net/usb/usbnet.c
19353 F:      include/linux/usb/usbnet.h
19354
19355 USB ACM DRIVER
19356 M:      Oliver Neukum <[email protected]>
19357 L:      [email protected]
19358 S:      Maintained
19359 F:      Documentation/usb/acm.rst
19360 F:      drivers/usb/class/cdc-acm.*
19361
19362 USB APPLE MFI FASTCHARGE DRIVER
19363 M:      Bastien Nocera <[email protected]>
19364 L:      [email protected]
19365 S:      Maintained
19366 F:      drivers/usb/misc/apple-mfi-fastcharge.c
19367
19368 USB AR5523 WIRELESS DRIVER
19369 M:      Pontus Fuchs <[email protected]>
19370 L:      [email protected]
19371 S:      Maintained
19372 F:      drivers/net/wireless/ath/ar5523/
19373
19374 USB ATTACHED SCSI
19375 M:      Oliver Neukum <[email protected]>
19376 L:      [email protected]
19377 L:      [email protected]
19378 S:      Maintained
19379 F:      drivers/usb/storage/uas.c
19380
19381 USB CDC ETHERNET DRIVER
19382 M:      Oliver Neukum <[email protected]>
19383 L:      [email protected]
19384 S:      Maintained
19385 F:      drivers/net/usb/cdc_*.c
19386 F:      include/uapi/linux/usb/cdc.h
19387
19388 USB CHAOSKEY DRIVER
19389 M:      Keith Packard <[email protected]>
19390 L:      [email protected]
19391 S:      Maintained
19392 F:      drivers/usb/misc/chaoskey.c
19393
19394 USB CYPRESS C67X00 DRIVER
19395 L:      [email protected]
19396 S:      Orphan
19397 F:      drivers/usb/c67x00/
19398
19399 USB DAVICOM DM9601 DRIVER
19400 M:      Peter Korsgaard <[email protected]>
19401 L:      [email protected]
19402 S:      Maintained
19403 W:      http://www.linux-usb.org/usbnet
19404 F:      drivers/net/usb/dm9601.c
19405
19406 USB EHCI DRIVER
19407 M:      Alan Stern <[email protected]>
19408 L:      [email protected]
19409 S:      Maintained
19410 F:      Documentation/usb/ehci.rst
19411 F:      drivers/usb/host/ehci*
19412
19413 USB GADGET/PERIPHERAL SUBSYSTEM
19414 M:      Felipe Balbi <[email protected]>
19415 L:      [email protected]
19416 S:      Maintained
19417 W:      http://www.linux-usb.org/gadget
19418 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
19419 F:      drivers/usb/gadget/
19420 F:      include/linux/usb/gadget*
19421
19422 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
19423 M:      Jiri Kosina <[email protected]>
19424 M:      Benjamin Tissoires <[email protected]>
19425 L:      [email protected]
19426 S:      Maintained
19427 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
19428 F:      Documentation/hid/hiddev.rst
19429 F:      drivers/hid/usbhid/
19430
19431 USB INTEL XHCI ROLE MUX DRIVER
19432 M:      Hans de Goede <[email protected]>
19433 L:      [email protected]
19434 S:      Maintained
19435 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
19436
19437 USB IP DRIVER FOR HISILICON KIRIN 960
19438 M:      Yu Chen <[email protected]>
19439 M:      Binghui Wang <[email protected]>
19440 L:      [email protected]
19441 S:      Maintained
19442 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml
19443 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
19444
19445 USB IP DRIVER FOR HISILICON KIRIN 970
19446 M:      Mauro Carvalho Chehab <[email protected]>
19447 L:      [email protected]
19448 S:      Maintained
19449 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3670-usb3.yaml
19450 F:      drivers/phy/hisilicon/phy-hi3670-usb3.c
19451
19452 USB ISP116X DRIVER
19453 M:      Olav Kongas <[email protected]>
19454 L:      [email protected]
19455 S:      Maintained
19456 F:      drivers/usb/host/isp116x*
19457 F:      include/linux/usb/isp116x.h
19458
19459 USB ISP1760 DRIVER
19460 M:      Rui Miguel Silva <[email protected]>
19461 L:      [email protected]
19462 S:      Maintained
19463 F:      drivers/usb/isp1760/*
19464 F:      Documentation/devicetree/bindings/usb/nxp,isp1760.yaml
19465
19466 USB LAN78XX ETHERNET DRIVER
19467 M:      Woojung Huh <[email protected]>
19468 M:      [email protected]
19469 L:      [email protected]
19470 S:      Maintained
19471 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
19472 F:      drivers/net/usb/lan78xx.*
19473 F:      include/dt-bindings/net/microchip-lan78xx.h
19474
19475 USB MASS STORAGE DRIVER
19476 M:      Alan Stern <[email protected]>
19477 L:      [email protected]
19478 L:      [email protected]
19479 S:      Maintained
19480 F:      drivers/usb/storage/
19481
19482 USB MIDI DRIVER
19483 M:      Clemens Ladisch <[email protected]>
19484 L:      [email protected] (moderated for non-subscribers)
19485 S:      Maintained
19486 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
19487 F:      sound/usb/midi.*
19488
19489 USB NETWORKING DRIVERS
19490 L:      [email protected]
19491 S:      Odd Fixes
19492 F:      drivers/net/usb/
19493
19494 USB OHCI DRIVER
19495 M:      Alan Stern <[email protected]>
19496 L:      [email protected]
19497 S:      Maintained
19498 F:      Documentation/usb/ohci.rst
19499 F:      drivers/usb/host/ohci*
19500
19501 USB OTG FSM (Finite State Machine)
19502 M:      Peter Chen <[email protected]>
19503 L:      [email protected]
19504 S:      Maintained
19505 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
19506 F:      drivers/usb/common/usb-otg-fsm.c
19507
19508 USB OVER IP DRIVER
19509 M:      Valentina Manea <[email protected]>
19510 M:      Shuah Khan <[email protected]>
19511 M:      Shuah Khan <[email protected]>
19512 L:      [email protected]
19513 S:      Maintained
19514 F:      Documentation/usb/usbip_protocol.rst
19515 F:      drivers/usb/usbip/
19516 F:      tools/testing/selftests/drivers/usb/usbip/
19517 F:      tools/usb/usbip/
19518
19519 USB PEGASUS DRIVER
19520 M:      Petko Manolov <[email protected]>
19521 L:      [email protected]
19522 L:      [email protected]
19523 S:      Maintained
19524 W:      https://github.com/petkan/pegasus
19525 T:      git git://github.com/petkan/pegasus.git
19526 F:      drivers/net/usb/pegasus.*
19527
19528 USB PHY LAYER
19529 M:      Felipe Balbi <[email protected]>
19530 L:      [email protected]
19531 S:      Maintained
19532 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
19533 F:      drivers/usb/phy/
19534
19535 USB PRINTER DRIVER (usblp)
19536 M:      Pete Zaitcev <[email protected]>
19537 L:      [email protected]
19538 S:      Supported
19539 F:      drivers/usb/class/usblp.c
19540
19541 USB RAW GADGET DRIVER
19542 R:      Andrey Konovalov <[email protected]>
19543 L:      [email protected]
19544 S:      Maintained
19545 F:      Documentation/usb/raw-gadget.rst
19546 F:      drivers/usb/gadget/legacy/raw_gadget.c
19547 F:      include/uapi/linux/usb/raw_gadget.h
19548
19549 USB QMI WWAN NETWORK DRIVER
19550 M:      Bjørn Mork <[email protected]>
19551 L:      [email protected]
19552 S:      Maintained
19553 F:      Documentation/ABI/testing/sysfs-class-net-qmi
19554 F:      drivers/net/usb/qmi_wwan.c
19555
19556 USB RTL8150 DRIVER
19557 M:      Petko Manolov <[email protected]>
19558 L:      [email protected]
19559 L:      [email protected]
19560 S:      Maintained
19561 W:      https://github.com/petkan/rtl8150
19562 T:      git git://github.com/petkan/rtl8150.git
19563 F:      drivers/net/usb/rtl8150.c
19564
19565 USB SERIAL SUBSYSTEM
19566 M:      Johan Hovold <[email protected]>
19567 L:      [email protected]
19568 S:      Maintained
19569 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
19570 F:      Documentation/usb/usb-serial.rst
19571 F:      drivers/usb/serial/
19572 F:      include/linux/usb/serial.h
19573
19574 USB SMSC75XX ETHERNET DRIVER
19575 M:      Steve Glendinning <[email protected]>
19576 L:      [email protected]
19577 S:      Maintained
19578 F:      drivers/net/usb/smsc75xx.*
19579
19580 USB SMSC95XX ETHERNET DRIVER
19581 M:      Steve Glendinning <[email protected]>
19582 M:      [email protected]
19583 L:      [email protected]
19584 S:      Maintained
19585 F:      drivers/net/usb/smsc95xx.*
19586
19587 USB SUBSYSTEM
19588 M:      Greg Kroah-Hartman <[email protected]>
19589 L:      [email protected]
19590 S:      Supported
19591 W:      http://www.linux-usb.org
19592 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
19593 F:      Documentation/devicetree/bindings/usb/
19594 F:      Documentation/usb/
19595 F:      drivers/usb/
19596 F:      include/linux/usb.h
19597 F:      include/linux/usb/
19598
19599 USB TYPEC BUS FOR ALTERNATE MODES
19600 M:      Heikki Krogerus <[email protected]>
19601 L:      [email protected]
19602 S:      Maintained
19603 F:      Documentation/ABI/testing/sysfs-bus-typec
19604 F:      Documentation/driver-api/usb/typec_bus.rst
19605 F:      drivers/usb/typec/altmodes/
19606 F:      include/linux/usb/typec_altmode.h
19607
19608 USB TYPEC CLASS
19609 M:      Heikki Krogerus <[email protected]>
19610 L:      [email protected]
19611 S:      Maintained
19612 F:      Documentation/ABI/testing/sysfs-class-typec
19613 F:      Documentation/driver-api/usb/typec.rst
19614 F:      drivers/usb/typec/
19615 F:      include/linux/usb/typec.h
19616
19617 USB TYPEC INTEL PMC MUX DRIVER
19618 M:      Heikki Krogerus <[email protected]>
19619 L:      [email protected]
19620 S:      Maintained
19621 F:      Documentation/firmware-guide/acpi/intel-pmc-mux.rst
19622 F:      drivers/usb/typec/mux/intel_pmc_mux.c
19623
19624 USB TYPEC PI3USB30532 MUX DRIVER
19625 M:      Hans de Goede <[email protected]>
19626 L:      [email protected]
19627 S:      Maintained
19628 F:      drivers/usb/typec/mux/pi3usb30532.c
19629
19630 USB TYPEC PORT CONTROLLER DRIVERS
19631 M:      Guenter Roeck <[email protected]>
19632 L:      [email protected]
19633 S:      Maintained
19634 F:      drivers/usb/typec/tcpm/
19635
19636 USB UHCI DRIVER
19637 M:      Alan Stern <[email protected]>
19638 L:      [email protected]
19639 S:      Maintained
19640 F:      drivers/usb/host/uhci*
19641
19642 USB VIDEO CLASS
19643 M:      Laurent Pinchart <[email protected]>
19644 L:      [email protected] (subscribers-only)
19645 L:      [email protected]
19646 S:      Maintained
19647 W:      http://www.ideasonboard.org/uvc/
19648 T:      git git://linuxtv.org/media_tree.git
19649 F:      drivers/media/usb/uvc/
19650 F:      include/uapi/linux/uvcvideo.h
19651
19652 USB WEBCAM GADGET
19653 M:      Laurent Pinchart <[email protected]>
19654 L:      [email protected]
19655 S:      Maintained
19656 F:      drivers/usb/gadget/function/*uvc*
19657 F:      drivers/usb/gadget/legacy/webcam.c
19658 F:      include/uapi/linux/usb/g_uvc.h
19659
19660 USB WIRELESS RNDIS DRIVER (rndis_wlan)
19661 M:      Jussi Kivilinna <[email protected]>
19662 L:      [email protected]
19663 S:      Maintained
19664 F:      drivers/net/wireless/rndis_wlan.c
19665
19666 USB XHCI DRIVER
19667 M:      Mathias Nyman <[email protected]>
19668 L:      [email protected]
19669 S:      Supported
19670 F:      drivers/usb/host/pci-quirks*
19671 F:      drivers/usb/host/xhci*
19672
19673 USB ZD1201 DRIVER
19674 L:      [email protected]
19675 S:      Orphan
19676 W:      http://linux-lc100020.sourceforge.net
19677 F:      drivers/net/wireless/zydas/zd1201.*
19678
19679 USB ZR364XX DRIVER
19680 M:      Antoine Jacquet <[email protected]>
19681 L:      [email protected]
19682 L:      [email protected]
19683 S:      Maintained
19684 W:      http://royale.zerezo.com/zr364xx/
19685 T:      git git://linuxtv.org/media_tree.git
19686 F:      Documentation/admin-guide/media/zr364xx*
19687 F:      drivers/media/usb/zr364xx/
19688
19689 USER-MODE LINUX (UML)
19690 M:      Jeff Dike <[email protected]>
19691 M:      Richard Weinberger <[email protected]>
19692 M:      Anton Ivanov <[email protected]>
19693 L:      [email protected]
19694 S:      Maintained
19695 W:      http://user-mode-linux.sourceforge.net
19696 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
19697 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
19698 F:      Documentation/virt/uml/
19699 F:      arch/um/
19700 F:      arch/x86/um/
19701 F:      fs/hostfs/
19702
19703 USERSPACE COPYIN/COPYOUT (UIOVEC)
19704 M:      Alexander Viro <[email protected]>
19705 S:      Maintained
19706 F:      include/linux/uio.h
19707 F:      lib/iov_iter.c
19708
19709 USERSPACE DMA BUFFER DRIVER
19710 M:      Gerd Hoffmann <[email protected]>
19711 L:      [email protected]
19712 S:      Maintained
19713 T:      git git://anongit.freedesktop.org/drm/drm-misc
19714 F:      drivers/dma-buf/udmabuf.c
19715 F:      include/uapi/linux/udmabuf.h
19716
19717 USERSPACE I/O (UIO)
19718 M:      Greg Kroah-Hartman <[email protected]>
19719 S:      Maintained
19720 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
19721 F:      Documentation/driver-api/uio-howto.rst
19722 F:      drivers/uio/
19723 F:      include/linux/uio_driver.h
19724
19725 UTIL-LINUX PACKAGE
19726 M:      Karel Zak <[email protected]>
19727 L:      [email protected]
19728 S:      Maintained
19729 W:      http://en.wikipedia.org/wiki/Util-linux
19730 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
19731
19732 UUID HELPERS
19733 M:      Christoph Hellwig <[email protected]>
19734 R:      Andy Shevchenko <[email protected]>
19735 L:      [email protected]
19736 S:      Maintained
19737 T:      git git://git.infradead.org/users/hch/uuid.git
19738 F:      include/linux/uuid.h
19739 F:      include/uapi/linux/uuid.h
19740 F:      lib/test_uuid.c
19741 F:      lib/uuid.c
19742
19743 UV SYSFS DRIVER
19744 M:      Justin Ernst <[email protected]>
19745 L:      [email protected]
19746 S:      Maintained
19747 F:      drivers/platform/x86/uv_sysfs.c
19748
19749 UVESAFB DRIVER
19750 M:      Michal Januszewski <[email protected]>
19751 L:      [email protected]
19752 S:      Maintained
19753 W:      https://github.com/mjanusz/v86d
19754 F:      Documentation/fb/uvesafb.rst
19755 F:      drivers/video/fbdev/uvesafb.*
19756
19757 Ux500 CLOCK DRIVERS
19758 M:      Ulf Hansson <[email protected]>
19759 L:      [email protected]
19760 L:      [email protected] (moderated for non-subscribers)
19761 S:      Maintained
19762 F:      drivers/clk/ux500/
19763
19764 VF610 NAND DRIVER
19765 M:      Stefan Agner <[email protected]>
19766 L:      [email protected]
19767 S:      Supported
19768 F:      drivers/mtd/nand/raw/vf610_nfc.c
19769
19770 VFAT/FAT/MSDOS FILESYSTEM
19771 M:      OGAWA Hirofumi <[email protected]>
19772 S:      Maintained
19773 F:      Documentation/filesystems/vfat.rst
19774 F:      fs/fat/
19775
19776 VFIO DRIVER
19777 M:      Alex Williamson <[email protected]>
19778 R:      Cornelia Huck <[email protected]>
19779 L:      [email protected]
19780 S:      Maintained
19781 T:      git git://github.com/awilliam/linux-vfio.git
19782 F:      Documentation/driver-api/vfio.rst
19783 F:      drivers/vfio/
19784 F:      include/linux/vfio.h
19785 F:      include/linux/vfio_pci_core.h
19786 F:      include/uapi/linux/vfio.h
19787
19788 VFIO FSL-MC DRIVER
19789 M:      Diana Craciun <[email protected]>
19790 L:      [email protected]
19791 S:      Maintained
19792 F:      drivers/vfio/fsl-mc/
19793
19794 VFIO MEDIATED DEVICE DRIVERS
19795 M:      Kirti Wankhede <[email protected]>
19796 L:      [email protected]
19797 S:      Maintained
19798 F:      Documentation/driver-api/vfio-mediated-device.rst
19799 F:      drivers/vfio/mdev/
19800 F:      include/linux/mdev.h
19801 F:      samples/vfio-mdev/
19802
19803 VFIO PLATFORM DRIVER
19804 M:      Eric Auger <[email protected]>
19805 L:      [email protected]
19806 S:      Maintained
19807 F:      drivers/vfio/platform/
19808
19809 VGA_SWITCHEROO
19810 R:      Lukas Wunner <[email protected]>
19811 S:      Maintained
19812 T:      git git://anongit.freedesktop.org/drm/drm-misc
19813 F:      Documentation/gpu/vga-switcheroo.rst
19814 F:      drivers/gpu/vga/vga_switcheroo.c
19815 F:      include/linux/vga_switcheroo.h
19816
19817 VIA RHINE NETWORK DRIVER
19818 S:      Maintained
19819 M:      Kevin Brace <[email protected]>
19820 F:      drivers/net/ethernet/via/via-rhine.c
19821
19822 VIA SD/MMC CARD CONTROLLER DRIVER
19823 M:      Bruce Chang <[email protected]>
19824 M:      Harald Welte <[email protected]>
19825 S:      Maintained
19826 F:      drivers/mmc/host/via-sdmmc.c
19827
19828 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
19829 M:      Florian Tobias Schandinat <[email protected]>
19830 L:      [email protected]
19831 S:      Maintained
19832 F:      drivers/video/fbdev/via/
19833 F:      include/linux/via-core.h
19834 F:      include/linux/via-gpio.h
19835 F:      include/linux/via_i2c.h
19836
19837 VIA VELOCITY NETWORK DRIVER
19838 M:      Francois Romieu <[email protected]>
19839 L:      [email protected]
19840 S:      Maintained
19841 F:      drivers/net/ethernet/via/via-velocity.*
19842
19843 VICODEC VIRTUAL CODEC DRIVER
19844 M:      Hans Verkuil <[email protected]>
19845 L:      [email protected]
19846 S:      Maintained
19847 W:      https://linuxtv.org
19848 T:      git git://linuxtv.org/media_tree.git
19849 F:      drivers/media/test-drivers/vicodec/*
19850
19851 VIDEO I2C POLLING DRIVER
19852 M:      Matt Ranostay <[email protected]>
19853 L:      [email protected]
19854 S:      Maintained
19855 F:      drivers/media/i2c/video-i2c.c
19856
19857 VIDEO MULTIPLEXER DRIVER
19858 M:      Philipp Zabel <[email protected]>
19859 L:      [email protected]
19860 S:      Maintained
19861 F:      drivers/media/platform/video-mux.c
19862
19863 VIDEOBUF2 FRAMEWORK
19864 M:      Tomasz Figa <[email protected]>
19865 M:      Marek Szyprowski <[email protected]>
19866 L:      [email protected]
19867 S:      Maintained
19868 F:      drivers/media/common/videobuf2/*
19869 F:      include/media/videobuf2-*
19870
19871 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
19872 M:      Helen Koike <[email protected]>
19873 R:      Shuah Khan <[email protected]>
19874 L:      [email protected]
19875 S:      Maintained
19876 W:      https://linuxtv.org
19877 T:      git git://linuxtv.org/media_tree.git
19878 F:      drivers/media/test-drivers/vimc/*
19879
19880 VIRT LIB
19881 M:      Alex Williamson <[email protected]>
19882 M:      Paolo Bonzini <[email protected]>
19883 L:      [email protected]
19884 S:      Supported
19885 F:      virt/lib/
19886
19887 VIRTIO AND VHOST VSOCK DRIVER
19888 M:      Stefan Hajnoczi <[email protected]>
19889 M:      Stefano Garzarella <[email protected]>
19890 L:      [email protected]
19891 L:      [email protected]
19892 L:      [email protected]
19893 S:      Maintained
19894 F:      drivers/vhost/vsock.c
19895 F:      include/linux/virtio_vsock.h
19896 F:      include/uapi/linux/virtio_vsock.h
19897 F:      net/vmw_vsock/virtio_transport.c
19898 F:      net/vmw_vsock/virtio_transport_common.c
19899
19900 VIRTIO BLOCK AND SCSI DRIVERS
19901 M:      "Michael S. Tsirkin" <[email protected]>
19902 M:      Jason Wang <[email protected]>
19903 R:      Paolo Bonzini <[email protected]>
19904 R:      Stefan Hajnoczi <[email protected]>
19905 L:      [email protected]
19906 S:      Maintained
19907 F:      drivers/block/virtio_blk.c
19908 F:      drivers/scsi/virtio_scsi.c
19909 F:      drivers/vhost/scsi.c
19910 F:      include/uapi/linux/virtio_blk.h
19911 F:      include/uapi/linux/virtio_scsi.h
19912
19913 VIRTIO CONSOLE DRIVER
19914 M:      Amit Shah <[email protected]>
19915 L:      [email protected]
19916 S:      Maintained
19917 F:      drivers/char/virtio_console.c
19918 F:      include/linux/virtio_console.h
19919 F:      include/uapi/linux/virtio_console.h
19920
19921 VIRTIO CORE AND NET DRIVERS
19922 M:      "Michael S. Tsirkin" <[email protected]>
19923 M:      Jason Wang <[email protected]>
19924 L:      [email protected]
19925 S:      Maintained
19926 F:      Documentation/devicetree/bindings/virtio/
19927 F:      drivers/block/virtio_blk.c
19928 F:      drivers/crypto/virtio/
19929 F:      drivers/net/virtio_net.c
19930 F:      drivers/vdpa/
19931 F:      drivers/virtio/
19932 F:      include/linux/vdpa.h
19933 F:      include/linux/virtio*.h
19934 F:      include/uapi/linux/virtio_*.h
19935 F:      tools/virtio/
19936
19937 VIRTIO BALLOON
19938 M:      "Michael S. Tsirkin" <[email protected]>
19939 M:      David Hildenbrand <[email protected]>
19940 L:      [email protected]
19941 S:      Maintained
19942 F:      drivers/virtio/virtio_balloon.c
19943 F:      include/uapi/linux/virtio_balloon.h
19944 F:      include/linux/balloon_compaction.h
19945 F:      mm/balloon_compaction.c
19946
19947 VIRTIO CRYPTO DRIVER
19948 M:      Gonglei <[email protected]>
19949 L:      [email protected]
19950 L:      [email protected]
19951 S:      Maintained
19952 F:      drivers/crypto/virtio/
19953 F:      include/uapi/linux/virtio_crypto.h
19954
19955 VIRTIO DRIVERS FOR S390
19956 M:      Cornelia Huck <[email protected]>
19957 M:      Halil Pasic <[email protected]>
19958 L:      [email protected]
19959 L:      [email protected]
19960 L:      [email protected]
19961 S:      Supported
19962 F:      arch/s390/include/uapi/asm/virtio-ccw.h
19963 F:      drivers/s390/virtio/
19964
19965 VIRTIO FILE SYSTEM
19966 M:      Vivek Goyal <[email protected]>
19967 M:      Stefan Hajnoczi <[email protected]>
19968 M:      Miklos Szeredi <[email protected]>
19969 L:      [email protected]
19970 L:      [email protected]
19971 S:      Supported
19972 W:      https://virtio-fs.gitlab.io/
19973 F:      Documentation/filesystems/virtiofs.rst
19974 F:      fs/fuse/virtio_fs.c
19975 F:      include/uapi/linux/virtio_fs.h
19976
19977 VIRTIO GPIO DRIVER
19978 M:      Enrico Weigelt, metux IT consult <[email protected]>
19979 M:      Viresh Kumar <[email protected]>
19980 L:      [email protected]
19981 L:      [email protected]
19982 S:      Maintained
19983 F:      drivers/gpio/gpio-virtio.c
19984 F:      include/uapi/linux/virtio_gpio.h
19985
19986 VIRTIO GPU DRIVER
19987 M:      David Airlie <[email protected]>
19988 M:      Gerd Hoffmann <[email protected]>
19989 L:      [email protected]
19990 L:      [email protected]
19991 S:      Maintained
19992 T:      git git://anongit.freedesktop.org/drm/drm-misc
19993 F:      drivers/gpu/drm/virtio/
19994 F:      include/uapi/linux/virtio_gpu.h
19995
19996 VIRTIO HOST (VHOST)
19997 M:      "Michael S. Tsirkin" <[email protected]>
19998 M:      Jason Wang <[email protected]>
19999 L:      [email protected]
20000 L:      [email protected]
20001 L:      [email protected]
20002 S:      Maintained
20003 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
20004 F:      drivers/vhost/
20005 F:      include/linux/vhost_iotlb.h
20006 F:      include/uapi/linux/vhost.h
20007
20008 VIRTIO INPUT DRIVER
20009 M:      Gerd Hoffmann <[email protected]>
20010 S:      Maintained
20011 F:      drivers/virtio/virtio_input.c
20012 F:      include/uapi/linux/virtio_input.h
20013
20014 VIRTIO IOMMU DRIVER
20015 M:      Jean-Philippe Brucker <[email protected]>
20016 L:      [email protected]
20017 S:      Maintained
20018 F:      drivers/iommu/virtio-iommu.c
20019 F:      include/uapi/linux/virtio_iommu.h
20020
20021 VIRTIO MEM DRIVER
20022 M:      David Hildenbrand <[email protected]>
20023 L:      [email protected]
20024 S:      Maintained
20025 W:      https://virtio-mem.gitlab.io/
20026 F:      drivers/virtio/virtio_mem.c
20027 F:      include/uapi/linux/virtio_mem.h
20028
20029 VIRTIO SOUND DRIVER
20030 M:      Anton Yakovlev <[email protected]>
20031 M:      "Michael S. Tsirkin" <[email protected]>
20032 L:      [email protected]
20033 L:      [email protected] (moderated for non-subscribers)
20034 S:      Maintained
20035 F:      include/uapi/linux/virtio_snd.h
20036 F:      sound/virtio/*
20037
20038 VIRTIO I2C DRIVER
20039 M:      Jie Deng <[email protected]>
20040 M:      Viresh Kumar <[email protected]>
20041 L:      [email protected]
20042 L:      [email protected]
20043 S:      Maintained
20044 F:      drivers/i2c/busses/i2c-virtio.c
20045 F:      include/uapi/linux/virtio_i2c.h
20046
20047 VIRTUAL BOX GUEST DEVICE DRIVER
20048 M:      Hans de Goede <[email protected]>
20049 M:      Arnd Bergmann <[email protected]>
20050 M:      Greg Kroah-Hartman <[email protected]>
20051 S:      Maintained
20052 F:      drivers/virt/vboxguest/
20053 F:      include/linux/vbox_utils.h
20054 F:      include/uapi/linux/vbox*.h
20055
20056 VIRTUAL BOX SHARED FOLDER VFS DRIVER
20057 M:      Hans de Goede <[email protected]>
20058 L:      [email protected]
20059 S:      Maintained
20060 F:      fs/vboxsf/*
20061
20062 VIRTUAL SERIO DEVICE DRIVER
20063 M:      Stephen Chandler Paul <[email protected]>
20064 S:      Maintained
20065 F:      drivers/input/serio/userio.c
20066 F:      include/uapi/linux/userio.h
20067
20068 VIVID VIRTUAL VIDEO DRIVER
20069 M:      Hans Verkuil <[email protected]>
20070 L:      [email protected]
20071 S:      Maintained
20072 W:      https://linuxtv.org
20073 T:      git git://linuxtv.org/media_tree.git
20074 F:      drivers/media/test-drivers/vivid/*
20075
20076 VIDTV VIRTUAL DIGITAL TV DRIVER
20077 M:      Daniel W. S. Almeida <[email protected]>
20078 L:      [email protected]
20079 S:      Maintained
20080 W:      https://linuxtv.org
20081 T:      git git://linuxtv.org/media_tree.git
20082 F:      drivers/media/test-drivers/vidtv/*
20083
20084 VLYNQ BUS
20085 M:      Florian Fainelli <[email protected]>
20086 L:      [email protected] (subscribers-only)
20087 S:      Maintained
20088 F:      drivers/vlynq/vlynq.c
20089 F:      include/linux/vlynq.h
20090
20091 VME SUBSYSTEM
20092 M:      Martyn Welch <[email protected]>
20093 M:      Manohar Vanga <[email protected]>
20094 M:      Greg Kroah-Hartman <[email protected]>
20095 L:      [email protected]
20096 S:      Maintained
20097 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
20098 F:      Documentation/driver-api/vme.rst
20099 F:      drivers/staging/vme/
20100 F:      drivers/vme/
20101 F:      include/linux/vme*
20102
20103 VM SOCKETS (AF_VSOCK)
20104 M:      Stefano Garzarella <[email protected]>
20105 L:      [email protected]
20106 L:      [email protected]
20107 S:      Maintained
20108 F:      drivers/net/vsockmon.c
20109 F:      include/net/af_vsock.h
20110 F:      include/uapi/linux/vm_sockets.h
20111 F:      include/uapi/linux/vm_sockets_diag.h
20112 F:      include/uapi/linux/vsockmon.h
20113 F:      net/vmw_vsock/
20114 F:      tools/testing/vsock/
20115
20116 VMWARE BALLOON DRIVER
20117 M:      Nadav Amit <[email protected]>
20118 M:      "VMware, Inc." <[email protected]>
20119 L:      [email protected]
20120 S:      Maintained
20121 F:      drivers/misc/vmw_balloon.c
20122
20123 VMWARE HYPERVISOR INTERFACE
20124 M:      Deep Shah <[email protected]>
20125 M:      "VMware, Inc." <[email protected]>
20126 L:      [email protected]
20127 S:      Supported
20128 F:      arch/x86/include/asm/vmware.h
20129 F:      arch/x86/kernel/cpu/vmware.c
20130
20131 VMWARE PVRDMA DRIVER
20132 M:      Adit Ranadive <[email protected]>
20133 M:      VMware PV-Drivers <[email protected]>
20134 L:      [email protected]
20135 S:      Maintained
20136 F:      drivers/infiniband/hw/vmw_pvrdma/
20137
20138 VMware PVSCSI driver
20139 M:      Vishal Bhakta <[email protected]>
20140 M:      VMware PV-Drivers <[email protected]>
20141 L:      [email protected]
20142 S:      Maintained
20143 F:      drivers/scsi/vmw_pvscsi.c
20144 F:      drivers/scsi/vmw_pvscsi.h
20145
20146 VMWARE VIRTUAL PTP CLOCK DRIVER
20147 M:      Vivek Thampi <[email protected]>
20148 M:      "VMware, Inc." <[email protected]>
20149 L:      [email protected]
20150 S:      Supported
20151 F:      drivers/ptp/ptp_vmw.c
20152
20153 VMWARE VMCI DRIVER
20154 M:      Jorgen Hansen <[email protected]>
20155 M:      Vishnu Dasa <[email protected]>
20156 L:      [email protected]
20157 L:      [email protected] (private)
20158 S:      Maintained
20159 F:      drivers/misc/vmw_vmci/
20160
20161 VMWARE VMMOUSE SUBDRIVER
20162 M:      "VMware Graphics" <[email protected]>
20163 M:      "VMware, Inc." <[email protected]>
20164 L:      [email protected]
20165 S:      Maintained
20166 F:      drivers/input/mouse/vmmouse.c
20167 F:      drivers/input/mouse/vmmouse.h
20168
20169 VMWARE VMXNET3 ETHERNET DRIVER
20170 M:      Ronak Doshi <[email protected]>
20171 M:      [email protected]
20172 L:      [email protected]
20173 S:      Maintained
20174 F:      drivers/net/vmxnet3/
20175
20176 VOCORE VOCORE2 BOARD
20177 M:      Harvey Hunt <[email protected]>
20178 L:      [email protected]
20179 S:      Maintained
20180 F:      arch/mips/boot/dts/ralink/vocore2.dts
20181
20182 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
20183 M:      Liam Girdwood <[email protected]>
20184 M:      Mark Brown <[email protected]>
20185 L:      [email protected]
20186 S:      Supported
20187 W:      http://www.slimlogic.co.uk/?p=48
20188 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
20189 F:      Documentation/devicetree/bindings/regulator/
20190 F:      Documentation/power/regulator/
20191 F:      drivers/regulator/
20192 F:      include/dt-bindings/regulator/
20193 F:      include/linux/regulator/
20194 K:      regulator_get_optional
20195
20196 VOLTAGE AND CURRENT REGULATOR IRQ HELPERS
20197 R:      Matti Vaittinen <[email protected]>
20198 F:      drivers/regulator/irq_helpers.c
20199
20200 VRF
20201 M:      David Ahern <[email protected]>
20202 L:      [email protected]
20203 S:      Maintained
20204 F:      Documentation/networking/vrf.rst
20205 F:      drivers/net/vrf.c
20206
20207 VSPRINTF
20208 M:      Petr Mladek <[email protected]>
20209 M:      Steven Rostedt <[email protected]>
20210 M:      Sergey Senozhatsky <[email protected]>
20211 R:      Andy Shevchenko <[email protected]>
20212 R:      Rasmus Villemoes <[email protected]>
20213 S:      Maintained
20214 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pmladek/printk.git
20215 F:      Documentation/core-api/printk-formats.rst
20216 F:      lib/test_printf.c
20217 F:      lib/test_scanf.c
20218 F:      lib/vsprintf.c
20219
20220 VT1211 HARDWARE MONITOR DRIVER
20221 M:      Juerg Haefliger <[email protected]>
20222 L:      [email protected]
20223 S:      Maintained
20224 F:      Documentation/hwmon/vt1211.rst
20225 F:      drivers/hwmon/vt1211.c
20226
20227 VT8231 HARDWARE MONITOR DRIVER
20228 M:      Roger Lucas <[email protected]>
20229 L:      [email protected]
20230 S:      Maintained
20231 F:      drivers/hwmon/vt8231.c
20232
20233 VUB300 USB to SDIO/SD/MMC bridge chip
20234 L:      [email protected]
20235 S:      Orphan
20236 F:      drivers/mmc/host/vub300.c
20237
20238 W1 DALLAS'S 1-WIRE BUS
20239 M:      Evgeniy Polyakov <[email protected]>
20240 S:      Maintained
20241 F:      Documentation/devicetree/bindings/w1/
20242 F:      Documentation/w1/
20243 F:      drivers/w1/
20244 F:      include/linux/w1.h
20245
20246 W83791D HARDWARE MONITORING DRIVER
20247 M:      Marc Hulsman <[email protected]>
20248 L:      [email protected]
20249 S:      Maintained
20250 F:      Documentation/hwmon/w83791d.rst
20251 F:      drivers/hwmon/w83791d.c
20252
20253 W83793 HARDWARE MONITORING DRIVER
20254 M:      Rudolf Marek <[email protected]>
20255 L:      [email protected]
20256 S:      Maintained
20257 F:      Documentation/hwmon/w83793.rst
20258 F:      drivers/hwmon/w83793.c
20259
20260 W83795 HARDWARE MONITORING DRIVER
20261 M:      Jean Delvare <[email protected]>
20262 L:      [email protected]
20263 S:      Maintained
20264 F:      drivers/hwmon/w83795.c
20265
20266 W83L51xD SD/MMC CARD INTERFACE DRIVER
20267 M:      Pierre Ossman <[email protected]>
20268 S:      Maintained
20269 F:      drivers/mmc/host/wbsd.*
20270
20271 WACOM PROTOCOL 4 SERIAL TABLETS
20272 M:      Julian Squires <[email protected]>
20273 M:      Hans de Goede <[email protected]>
20274 L:      [email protected]
20275 S:      Maintained
20276 F:      drivers/input/tablet/wacom_serial4.c
20277
20278 WATCHDOG DEVICE DRIVERS
20279 M:      Wim Van Sebroeck <[email protected]>
20280 M:      Guenter Roeck <[email protected]>
20281 L:      [email protected]
20282 S:      Maintained
20283 W:      http://www.linux-watchdog.org/
20284 T:      git git://www.linux-watchdog.org/linux-watchdog.git
20285 F:      Documentation/devicetree/bindings/watchdog/
20286 F:      Documentation/watchdog/
20287 F:      drivers/watchdog/
20288 F:      include/linux/watchdog.h
20289 F:      include/uapi/linux/watchdog.h
20290
20291 WHISKEYCOVE PMIC GPIO DRIVER
20292 M:      Kuppuswamy Sathyanarayanan <[email protected]>
20293 L:      [email protected]
20294 S:      Maintained
20295 F:      drivers/gpio/gpio-wcove.c
20296
20297 WHWAVE RTC DRIVER
20298 M:      Dianlong Li <[email protected]>
20299 L:      [email protected]
20300 S:      Maintained
20301 F:      drivers/rtc/rtc-sd3078.c
20302
20303 WIIMOTE HID DRIVER
20304 M:      David Rheinsberg <[email protected]>
20305 L:      [email protected]
20306 S:      Maintained
20307 F:      drivers/hid/hid-wiimote*
20308
20309 WILOCITY WIL6210 WIRELESS DRIVER
20310 M:      Maya Erez <[email protected]>
20311 L:      [email protected]
20312 L:      [email protected]
20313 S:      Supported
20314 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
20315 F:      drivers/net/wireless/ath/wil6210/
20316
20317 WINBOND CIR DRIVER
20318 M:      David Härdeman <[email protected]>
20319 S:      Maintained
20320 F:      drivers/media/rc/winbond-cir.c
20321
20322 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
20323 M:      William Breathitt Gray <[email protected]>
20324 L:      [email protected]
20325 S:      Maintained
20326 F:      drivers/watchdog/ebc-c384_wdt.c
20327
20328 WINSYSTEMS WS16C48 GPIO DRIVER
20329 M:      William Breathitt Gray <[email protected]>
20330 L:      [email protected]
20331 S:      Maintained
20332 F:      drivers/gpio/gpio-ws16c48.c
20333
20334 WIREGUARD SECURE NETWORK TUNNEL
20335 M:      Jason A. Donenfeld <[email protected]>
20336 L:      [email protected]
20337 L:      [email protected]
20338 S:      Maintained
20339 F:      drivers/net/wireguard/
20340 F:      tools/testing/selftests/wireguard/
20341
20342 WISTRON LAPTOP BUTTON DRIVER
20343 M:      Miloslav Trmac <[email protected]>
20344 S:      Maintained
20345 F:      drivers/input/misc/wistron_btns.c
20346
20347 WL3501 WIRELESS PCMCIA CARD DRIVER
20348 L:      [email protected]
20349 S:      Odd fixes
20350 F:      drivers/net/wireless/wl3501*
20351
20352 WOLFSON MICROELECTRONICS DRIVERS
20353 L:      [email protected]
20354 S:      Supported
20355 W:      https://github.com/CirrusLogic/linux-drivers/wiki
20356 T:      git https://github.com/CirrusLogic/linux-drivers.git
20357 F:      Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
20358 F:      Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
20359 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
20360 F:      Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
20361 F:      Documentation/devicetree/bindings/sound/wlf,*.yaml
20362 F:      Documentation/devicetree/bindings/sound/wm*
20363 F:      Documentation/hwmon/wm83??.rst
20364 F:      arch/arm/mach-s3c/mach-crag6410*
20365 F:      drivers/clk/clk-wm83*.c
20366 F:      drivers/gpio/gpio-*wm*.c
20367 F:      drivers/gpio/gpio-arizona.c
20368 F:      drivers/hwmon/wm83??-hwmon.c
20369 F:      drivers/input/misc/wm831x-on.c
20370 F:      drivers/input/touchscreen/wm831x-ts.c
20371 F:      drivers/input/touchscreen/wm97*.c
20372 F:      drivers/leds/leds-wm83*.c
20373 F:      drivers/mfd/arizona*
20374 F:      drivers/mfd/cs47l24*
20375 F:      drivers/mfd/wm*.c
20376 F:      drivers/power/supply/wm83*.c
20377 F:      drivers/regulator/arizona*
20378 F:      drivers/regulator/wm8*.c
20379 F:      drivers/rtc/rtc-wm83*.c
20380 F:      drivers/video/backlight/wm83*_bl.c
20381 F:      drivers/watchdog/wm83*_wdt.c
20382 F:      include/linux/mfd/arizona/
20383 F:      include/linux/mfd/wm831x/
20384 F:      include/linux/mfd/wm8350/
20385 F:      include/linux/mfd/wm8400*
20386 F:      include/linux/regulator/arizona*
20387 F:      include/linux/wm97xx.h
20388 F:      include/sound/wm????.h
20389 F:      sound/soc/codecs/arizona*
20390 F:      sound/soc/codecs/cs47l24*
20391 F:      sound/soc/codecs/wm*
20392
20393 WORKQUEUE
20394 M:      Tejun Heo <[email protected]>
20395 R:      Lai Jiangshan <[email protected]>
20396 S:      Maintained
20397 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
20398 F:      Documentation/core-api/workqueue.rst
20399 F:      include/linux/workqueue.h
20400 F:      kernel/workqueue.c
20401
20402 WWAN DRIVERS
20403 M:      Loic Poulain <[email protected]>
20404 M:      Sergey Ryazanov <[email protected]>
20405 R:      Johannes Berg <[email protected]>
20406 L:      [email protected]
20407 S:      Maintained
20408 F:      drivers/net/wwan/
20409 F:      include/linux/wwan.h
20410 F:      include/uapi/linux/wwan.h
20411
20412 X-POWERS AXP288 PMIC DRIVERS
20413 M:      Hans de Goede <[email protected]>
20414 S:      Maintained
20415 F:      drivers/acpi/pmic/intel_pmic_xpower.c
20416 N:      axp288
20417
20418 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
20419 M:      Chen-Yu Tsai <[email protected]>
20420 L:      [email protected]
20421 S:      Maintained
20422 N:      axp[128]
20423
20424 X.25 STACK
20425 M:      Martin Schiller <[email protected]>
20426 L:      [email protected]
20427 S:      Maintained
20428 F:      Documentation/networking/lapb-module.rst
20429 F:      Documentation/networking/x25*
20430 F:      drivers/net/wan/hdlc_x25.c
20431 F:      drivers/net/wan/lapbether.c
20432 F:      include/*/lapb.h
20433 F:      include/net/x25*
20434 F:      include/uapi/linux/x25.h
20435 F:      net/lapb/
20436 F:      net/x25/
20437
20438 X86 ARCHITECTURE (32-BIT AND 64-BIT)
20439 M:      Thomas Gleixner <[email protected]>
20440 M:      Ingo Molnar <[email protected]>
20441 M:      Borislav Petkov <[email protected]>
20442 M:      Dave Hansen <[email protected]>
20443 M:      [email protected]
20444 R:      "H. Peter Anvin" <[email protected]>
20445 L:      [email protected]
20446 S:      Maintained
20447 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
20448 F:      Documentation/devicetree/bindings/x86/
20449 F:      Documentation/x86/
20450 F:      arch/x86/
20451
20452 X86 ENTRY CODE
20453 M:      Andy Lutomirski <[email protected]>
20454 L:      [email protected]
20455 S:      Maintained
20456 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
20457 F:      arch/x86/entry/
20458
20459 X86 MCE INFRASTRUCTURE
20460 M:      Tony Luck <[email protected]>
20461 M:      Borislav Petkov <[email protected]>
20462 L:      [email protected]
20463 S:      Maintained
20464 F:      arch/x86/kernel/cpu/mce/*
20465
20466 X86 MICROCODE UPDATE SUPPORT
20467 M:      Borislav Petkov <[email protected]>
20468 S:      Maintained
20469 F:      arch/x86/kernel/cpu/microcode/*
20470
20471 X86 MM
20472 M:      Dave Hansen <[email protected]>
20473 M:      Andy Lutomirski <[email protected]>
20474 M:      Peter Zijlstra <[email protected]>
20475 L:      [email protected]
20476 S:      Maintained
20477 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
20478 F:      arch/x86/mm/
20479
20480 X86 PLATFORM DRIVERS
20481 M:      Hans de Goede <[email protected]>
20482 M:      Mark Gross <[email protected]>
20483 L:      [email protected]
20484 S:      Maintained
20485 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
20486 F:      drivers/platform/olpc/
20487 F:      drivers/platform/x86/
20488
20489 X86 PLATFORM DRIVERS - ARCH
20490 R:      Darren Hart <[email protected]>
20491 R:      Andy Shevchenko <[email protected]>
20492 L:      [email protected]
20493 L:      [email protected]
20494 S:      Maintained
20495 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
20496 F:      arch/x86/platform
20497
20498 X86 PLATFORM UV HPE SUPERDOME FLEX
20499 M:      Steve Wahl <[email protected]>
20500 R:      Mike Travis <[email protected]>
20501 R:      Dimitri Sivanich <[email protected]>
20502 R:      Russ Anderson <[email protected]>
20503 S:      Supported
20504 F:      arch/x86/include/asm/uv/
20505 F:      arch/x86/kernel/apic/x2apic_uv_x.c
20506 F:      arch/x86/platform/uv/
20507
20508 X86 VDSO
20509 M:      Andy Lutomirski <[email protected]>
20510 L:      [email protected]
20511 S:      Maintained
20512 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
20513 F:      arch/x86/entry/vdso/
20514
20515 XARRAY
20516 M:      Matthew Wilcox <[email protected]>
20517 L:      [email protected]
20518 S:      Supported
20519 F:      Documentation/core-api/xarray.rst
20520 F:      include/linux/idr.h
20521 F:      include/linux/xarray.h
20522 F:      lib/idr.c
20523 F:      lib/xarray.c
20524 F:      tools/testing/radix-tree
20525
20526 XBOX DVD IR REMOTE
20527 M:      Benjamin Valentin <[email protected]>
20528 S:      Maintained
20529 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
20530 F:      drivers/media/rc/xbox_remote.c
20531
20532 XC2028/3028 TUNER DRIVER
20533 M:      Mauro Carvalho Chehab <[email protected]>
20534 L:      [email protected]
20535 S:      Maintained
20536 W:      https://linuxtv.org
20537 T:      git git://linuxtv.org/media_tree.git
20538 F:      drivers/media/tuners/tuner-xc2028.*
20539
20540 XDP (eXpress Data Path)
20541 M:      Alexei Starovoitov <[email protected]>
20542 M:      Daniel Borkmann <[email protected]>
20543 M:      David S. Miller <[email protected]>
20544 M:      Jakub Kicinski <[email protected]>
20545 M:      Jesper Dangaard Brouer <[email protected]>
20546 M:      John Fastabend <[email protected]>
20547 L:      [email protected]
20548 L:      [email protected]
20549 S:      Supported
20550 F:      include/net/xdp.h
20551 F:      include/net/xdp_priv.h
20552 F:      include/trace/events/xdp.h
20553 F:      kernel/bpf/cpumap.c
20554 F:      kernel/bpf/devmap.c
20555 F:      net/core/xdp.c
20556 F:      samples/bpf/xdp*
20557 F:      tools/testing/selftests/bpf/*xdp*
20558 F:      tools/testing/selftests/bpf/*/*xdp*
20559 F:      drivers/net/ethernet/*/*/*/*/*xdp*
20560 F:      drivers/net/ethernet/*/*/*xdp*
20561 K:      (?:\b|_)xdp(?:\b|_)
20562
20563 XDP SOCKETS (AF_XDP)
20564 M:      Björn Töpel <[email protected]>
20565 M:      Magnus Karlsson <[email protected]>
20566 R:      Jonathan Lemon <[email protected]>
20567 L:      [email protected]
20568 L:      [email protected]
20569 S:      Maintained
20570 F:      Documentation/networking/af_xdp.rst
20571 F:      include/net/xdp_sock*
20572 F:      include/net/xsk_buff_pool.h
20573 F:      include/uapi/linux/if_xdp.h
20574 F:      include/uapi/linux/xdp_diag.h
20575 F:      include/net/netns/xdp.h
20576 F:      net/xdp/
20577 F:      samples/bpf/xdpsock*
20578 F:      tools/lib/bpf/xsk*
20579
20580 XEN BLOCK SUBSYSTEM
20581 M:      Roger Pau Monné <[email protected]>
20582 L:      [email protected] (moderated for non-subscribers)
20583 S:      Supported
20584 F:      drivers/block/xen*
20585 F:      drivers/block/xen-blkback/*
20586
20587 XEN HYPERVISOR ARM
20588 M:      Stefano Stabellini <[email protected]>
20589 L:      [email protected] (moderated for non-subscribers)
20590 S:      Maintained
20591 F:      arch/arm/include/asm/xen/
20592 F:      arch/arm/xen/
20593
20594 XEN HYPERVISOR ARM64
20595 M:      Stefano Stabellini <[email protected]>
20596 L:      [email protected] (moderated for non-subscribers)
20597 S:      Maintained
20598 F:      arch/arm64/include/asm/xen/
20599 F:      arch/arm64/xen/
20600
20601 XEN HYPERVISOR INTERFACE
20602 M:      Boris Ostrovsky <[email protected]>
20603 M:      Juergen Gross <[email protected]>
20604 R:      Stefano Stabellini <[email protected]>
20605 L:      [email protected] (moderated for non-subscribers)
20606 S:      Supported
20607 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
20608 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
20609 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
20610 F:      arch/x86/include/asm/pvclock-abi.h
20611 F:      arch/x86/include/asm/xen/
20612 F:      arch/x86/platform/pvh/
20613 F:      arch/x86/xen/
20614 F:      drivers/*/xen-*front.c
20615 F:      drivers/xen/
20616 F:      include/uapi/xen/
20617 F:      include/xen/
20618
20619 XEN NETWORK BACKEND DRIVER
20620 M:      Wei Liu <[email protected]>
20621 M:      Paul Durrant <[email protected]>
20622 L:      [email protected] (moderated for non-subscribers)
20623 L:      [email protected]
20624 S:      Supported
20625 F:      drivers/net/xen-netback/*
20626
20627 XEN PCI SUBSYSTEM
20628 M:      Juergen Gross <[email protected]>
20629 L:      [email protected] (moderated for non-subscribers)
20630 S:      Supported
20631 F:      arch/x86/pci/*xen*
20632 F:      drivers/pci/*xen*
20633
20634 XEN PVSCSI DRIVERS
20635 M:      Juergen Gross <[email protected]>
20636 L:      [email protected] (moderated for non-subscribers)
20637 L:      [email protected]
20638 S:      Supported
20639 F:      drivers/scsi/xen-scsifront.c
20640 F:      drivers/xen/xen-scsiback.c
20641 F:      include/xen/interface/io/vscsiif.h
20642
20643 XEN SOUND FRONTEND DRIVER
20644 M:      Oleksandr Andrushchenko <[email protected]>
20645 L:      [email protected] (moderated for non-subscribers)
20646 L:      [email protected] (moderated for non-subscribers)
20647 S:      Supported
20648 F:      sound/xen/*
20649
20650 XEN SWIOTLB SUBSYSTEM
20651 M:      Juergen Gross <[email protected]>
20652 M:      Stefano Stabellini <[email protected]>
20653 L:      [email protected] (moderated for non-subscribers)
20654 L:      [email protected]
20655 S:      Supported
20656 F:      arch/x86/xen/*swiotlb*
20657 F:      drivers/xen/*swiotlb*
20658
20659 XFS FILESYSTEM
20660 C:      irc://irc.oftc.net/xfs
20661 M:      Darrick J. Wong <[email protected]>
20662 M:      [email protected]
20663 L:      [email protected]
20664 S:      Supported
20665 W:      http://xfs.org/
20666 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
20667 F:      Documentation/ABI/testing/sysfs-fs-xfs
20668 F:      Documentation/admin-guide/xfs.rst
20669 F:      Documentation/filesystems/xfs-delayed-logging-design.rst
20670 F:      Documentation/filesystems/xfs-self-describing-metadata.rst
20671 F:      fs/xfs/
20672 F:      include/uapi/linux/dqblk_xfs.h
20673 F:      include/uapi/linux/fsmap.h
20674
20675 XILINX AXI ETHERNET DRIVER
20676 M:      Radhey Shyam Pandey <[email protected]>
20677 S:      Maintained
20678 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
20679
20680 XILINX CAN DRIVER
20681 M:      Appana Durga Kedareswara rao <[email protected]>
20682 R:      Naga Sureshkumar Relli <[email protected]>
20683 L:      [email protected]
20684 S:      Maintained
20685 F:      Documentation/devicetree/bindings/net/can/xilinx_can.txt
20686 F:      drivers/net/can/xilinx_can.c
20687
20688 XILINX GPIO DRIVER
20689 M:      Shubhrajyoti Datta <[email protected]>
20690 R:      Srinivas Neeli <[email protected]>
20691 R:      Michal Simek <[email protected]>
20692 S:      Maintained
20693 F:      Documentation/devicetree/bindings/gpio/gpio-xilinx.txt
20694 F:      Documentation/devicetree/bindings/gpio/gpio-zynq.yaml
20695 F:      drivers/gpio/gpio-xilinx.c
20696 F:      drivers/gpio/gpio-zynq.c
20697
20698 XILINX SD-FEC IP CORES
20699 M:      Derek Kiernan <[email protected]>
20700 M:      Dragan Cvetic <[email protected]>
20701 S:      Maintained
20702 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
20703 F:      Documentation/misc-devices/xilinx_sdfec.rst
20704 F:      drivers/misc/Kconfig
20705 F:      drivers/misc/Makefile
20706 F:      drivers/misc/xilinx_sdfec.c
20707 F:      include/uapi/misc/xilinx_sdfec.h
20708
20709 XILINX UARTLITE SERIAL DRIVER
20710 M:      Peter Korsgaard <[email protected]>
20711 L:      [email protected]
20712 S:      Maintained
20713 F:      drivers/tty/serial/uartlite.c
20714
20715 XILINX VIDEO IP CORES
20716 M:      Hyun Kwon <[email protected]>
20717 M:      Laurent Pinchart <[email protected]>
20718 L:      [email protected]
20719 S:      Supported
20720 T:      git git://linuxtv.org/media_tree.git
20721 F:      Documentation/devicetree/bindings/media/xilinx/
20722 F:      drivers/media/platform/xilinx/
20723 F:      include/uapi/linux/xilinx-v4l2-controls.h
20724
20725 XILINX ZYNQMP DPDMA DRIVER
20726 M:      Hyun Kwon <[email protected]>
20727 M:      Laurent Pinchart <[email protected]>
20728 L:      [email protected]
20729 S:      Supported
20730 F:      Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dpdma.yaml
20731 F:      drivers/dma/xilinx/xilinx_dpdma.c
20732 F:      include/dt-bindings/dma/xlnx-zynqmp-dpdma.h
20733
20734 XILINX ZYNQMP PSGTR PHY DRIVER
20735 M:      Anurag Kumar Vulisha <[email protected]>
20736 M:      Laurent Pinchart <[email protected]>
20737 L:      [email protected]
20738 S:      Supported
20739 T:      git https://github.com/Xilinx/linux-xlnx.git
20740 F:      Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml
20741 F:      drivers/phy/xilinx/phy-zynqmp.c
20742
20743 XILLYBUS DRIVER
20744 M:      Eli Billauer <[email protected]>
20745 L:      [email protected]
20746 S:      Supported
20747 F:      drivers/char/xillybus/
20748
20749 XLP9XX I2C DRIVER
20750 M:      George Cherian <[email protected]>
20751 L:      [email protected]
20752 S:      Supported
20753 W:      http://www.marvell.com
20754 F:      Documentation/devicetree/bindings/i2c/i2c-xlp9xx.txt
20755 F:      drivers/i2c/busses/i2c-xlp9xx.c
20756
20757 XRA1403 GPIO EXPANDER
20758 M:      Nandor Han <[email protected]>
20759 M:      Semi Malinen <[email protected]>
20760 L:      [email protected]
20761 S:      Maintained
20762 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
20763 F:      drivers/gpio/gpio-xra1403.c
20764
20765 XTENSA XTFPGA PLATFORM SUPPORT
20766 M:      Max Filippov <[email protected]>
20767 L:      [email protected]
20768 S:      Maintained
20769 F:      drivers/spi/spi-xtensa-xtfpga.c
20770 F:      sound/soc/xtensa/xtfpga-i2s.c
20771
20772 YAM DRIVER FOR AX.25
20773 M:      Jean-Paul Roubelat <[email protected]>
20774 L:      [email protected]
20775 S:      Maintained
20776 F:      drivers/net/hamradio/yam*
20777 F:      include/linux/yam.h
20778
20779 YAMA SECURITY MODULE
20780 M:      Kees Cook <[email protected]>
20781 S:      Supported
20782 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
20783 F:      Documentation/admin-guide/LSM/Yama.rst
20784 F:      security/yama/
20785
20786 YEALINK PHONE DRIVER
20787 M:      Henk Vergonet <[email protected]>
20788 L:      [email protected]
20789 S:      Maintained
20790 F:      Documentation/input/devices/yealink.rst
20791 F:      drivers/input/misc/yealink.*
20792
20793 Z8530 DRIVER FOR AX.25
20794 M:      Joerg Reuter <[email protected]>
20795 L:      [email protected]
20796 S:      Maintained
20797 W:      http://yaina.de/jreuter/
20798 W:      http://www.qsl.net/dl1bke/
20799 F:      Documentation/networking/device_drivers/hamradio/z8530drv.rst
20800 F:      drivers/net/hamradio/*scc.c
20801 F:      drivers/net/hamradio/z8530.h
20802
20803 ZBUD COMPRESSED PAGE ALLOCATOR
20804 M:      Seth Jennings <[email protected]>
20805 M:      Dan Streetman <[email protected]>
20806 L:      [email protected]
20807 S:      Maintained
20808 F:      mm/zbud.c
20809
20810 ZD1211RW WIRELESS DRIVER
20811 M:      Ulrich Kunitz <[email protected]>
20812 L:      [email protected]
20813 L:      [email protected] (subscribers-only)
20814 S:      Maintained
20815 W:      http://zd1211.ath.cx/wiki/DriverRewrite
20816 F:      drivers/net/wireless/zydas/zd1211rw/
20817
20818 ZD1301 MEDIA DRIVER
20819 M:      Antti Palosaari <[email protected]>
20820 L:      [email protected]
20821 S:      Maintained
20822 W:      https://linuxtv.org/
20823 W:      http://palosaari.fi/linux/
20824 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
20825 F:      drivers/media/usb/dvb-usb-v2/zd1301*
20826
20827 ZD1301_DEMOD MEDIA DRIVER
20828 M:      Antti Palosaari <[email protected]>
20829 L:      [email protected]
20830 S:      Maintained
20831 W:      https://linuxtv.org/
20832 W:      http://palosaari.fi/linux/
20833 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
20834 F:      drivers/media/dvb-frontends/zd1301_demod*
20835
20836 ZHAOXIN PROCESSOR SUPPORT
20837 M:      Tony W Wang-oc <[email protected]>
20838 L:      [email protected]
20839 S:      Maintained
20840 F:      arch/x86/kernel/cpu/zhaoxin.c
20841
20842 ZONEFS FILESYSTEM
20843 M:      Damien Le Moal <[email protected]>
20844 M:      Naohiro Aota <[email protected]>
20845 R:      Johannes Thumshirn <[email protected]>
20846 L:      [email protected]
20847 S:      Maintained
20848 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
20849 F:      Documentation/filesystems/zonefs.rst
20850 F:      fs/zonefs/
20851
20852 ZPOOL COMPRESSED PAGE STORAGE API
20853 M:      Dan Streetman <[email protected]>
20854 L:      [email protected]
20855 S:      Maintained
20856 F:      include/linux/zpool.h
20857 F:      mm/zpool.c
20858
20859 ZR36067 VIDEO FOR LINUX DRIVER
20860 M:      Corentin Labbe <[email protected]>
20861 L:      [email protected]
20862 L:      [email protected]
20863 S:      Maintained
20864 W:      http://mjpeg.sourceforge.net/driver-zoran/
20865 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
20866 F:      Documentation/driver-api/media/drivers/zoran.rst
20867 F:      drivers/staging/media/zoran/
20868
20869 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
20870 M:      Minchan Kim <[email protected]>
20871 M:      Nitin Gupta <[email protected]>
20872 R:      Sergey Senozhatsky <[email protected]>
20873 L:      [email protected]
20874 S:      Maintained
20875 F:      Documentation/admin-guide/blockdev/zram.rst
20876 F:      drivers/block/zram/
20877
20878 ZS DECSTATION Z85C30 SERIAL DRIVER
20879 M:      "Maciej W. Rozycki" <[email protected]>
20880 S:      Maintained
20881 F:      drivers/tty/serial/zs.*
20882
20883 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
20884 M:      Minchan Kim <[email protected]>
20885 M:      Nitin Gupta <[email protected]>
20886 R:      Sergey Senozhatsky <[email protected]>
20887 L:      [email protected]
20888 S:      Maintained
20889 F:      Documentation/vm/zsmalloc.rst
20890 F:      include/linux/zsmalloc.h
20891 F:      mm/zsmalloc.c
20892
20893 ZSWAP COMPRESSED SWAP CACHING
20894 M:      Seth Jennings <[email protected]>
20895 M:      Dan Streetman <[email protected]>
20896 M:      Vitaly Wool <[email protected]>
20897 L:      [email protected]
20898 S:      Maintained
20899 F:      mm/zswap.c
20900
20901 THE REST
20902 M:      Linus Torvalds <[email protected]>
20903 L:      [email protected]
20904 S:      Buried alive in reporters
20905 Q:      http://patchwork.kernel.org/project/LKML/list/
20906 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
20907 F:      *
20908 F:      */
This page took 1.160876 seconds and 4 git commands to generate.